From e0c887b450c0c014cdc9086b1bbf0bfc4dd1b55b Mon Sep 17 00:00:00 2001 From: Jason Morse Date: Fri, 6 Mar 2026 10:28:10 -0800 Subject: [PATCH 1/4] update rnx-kit packages, fix type issues, and turn on the right extensions --- .vscode/extensions.json | 5 +- .vscode/settings.json | 22 +- .yarnrc.yml | 24 +- apps/E2E/package.json | 12 +- apps/tester-core/package.json | 16 +- apps/win32-81/package.json | 10 +- apps/win32/package.json | 2 +- packages/components/Avatar/package.json | 14 +- packages/components/Badge/package.json | 14 +- packages/components/Button/package.json | 14 +- packages/components/Callout/package.json | 14 +- packages/components/Checkbox/package.json | 14 +- packages/components/Chip/package.json | 14 +- .../components/ContextualMenu/package.json | 14 +- packages/components/Divider/package.json | 14 +- .../components/FocusTrapZone/package.json | 14 +- packages/components/FocusZone/package.json | 14 +- packages/components/Icon/package.json | 14 +- packages/components/Input/package.json | 14 +- packages/components/Link/package.json | 14 +- packages/components/Menu/package.json | 14 +- packages/components/MenuButton/package.json | 14 +- packages/components/Notification/package.json | 14 +- packages/components/Persona/package.json | 14 +- packages/components/PersonaCoin/package.json | 14 +- packages/components/Pressable/package.json | 14 +- packages/components/RadioGroup/package.json | 14 +- packages/components/Separator/package.json | 14 +- packages/components/Stack/package.json | 14 +- packages/components/Switch/package.json | 14 +- packages/components/TabList/package.json | 14 +- packages/components/Text/package.json | 14 +- packages/configs/kit-config/furn-preset.ts | 46 ++- packages/configs/kit-config/package.json | 7 +- .../configs/kit-config/rnx-kit.config.cjs | 2 +- .../foundation-composable/package.json | 14 +- .../foundation-compose/package.json | 14 +- .../foundation-settings/package.json | 12 +- .../deprecated/foundation-tokens/package.json | 14 +- .../deprecated/theme-registry/package.json | 12 +- .../deprecated/themed-settings/package.json | 12 +- packages/deprecated/theming-ramp/package.json | 12 +- .../theming-react-native/package.json | 14 +- .../ActivityIndicator/package.json | 14 +- .../AppearanceAdditions/package.json | 14 +- packages/experimental/Avatar/package.json | 14 +- packages/experimental/Checkbox/package.json | 14 +- packages/experimental/Drawer/package.json | 14 +- packages/experimental/Dropdown/package.json | 14 +- packages/experimental/Expander/package.json | 12 +- packages/experimental/MenuButton/package.json | 14 +- .../NativeDatePicker/package.json | 14 +- .../NativeFontMetrics/package.json | 14 +- packages/experimental/Overflow/package.json | 14 +- packages/experimental/Popover/package.json | 14 +- packages/experimental/Shadow/package.json | 14 +- packages/experimental/Shimmer/package.json | 14 +- packages/experimental/Spinner/package.json | 14 +- packages/experimental/Tooltip/package.json | 14 +- .../experimental/VibrancyView/package.json | 14 +- packages/framework-base/package.json | 12 +- packages/framework/composition/package.json | 12 +- packages/framework/framework/package.json | 14 +- packages/framework/theme/package.json | 14 +- .../framework/themed-stylesheet/package.json | 14 +- packages/framework/use-slot/package.json | 12 +- packages/framework/use-slots/package.json | 12 +- packages/framework/use-styling/package.json | 12 +- packages/framework/use-tokens/package.json | 12 +- packages/libraries/core/package.json | 14 +- packages/theming/android-theme/package.json | 14 +- packages/theming/apple-theme/package.json | 14 +- packages/theming/default-theme/package.json | 14 +- packages/theming/theme-tokens/package.json | 14 +- packages/theming/theme-types/package.json | 14 +- packages/theming/theming-utils/package.json | 14 +- packages/theming/win32-theme/package.json | 14 +- packages/utils/adapters/package.json | 14 +- packages/utils/interactive-hooks/package.json | 14 +- packages/utils/styling/package.json | 14 +- packages/utils/tokens/package.json | 14 +- scripts/package.json | 1 + scripts/src/utils/projectRoot.ts | 2 +- yarn.lock | 294 ++++++++++++------ 84 files changed, 769 insertions(+), 646 deletions(-) diff --git a/.vscode/extensions.json b/.vscode/extensions.json index 0d1349ca192..ca1032097f5 100644 --- a/.vscode/extensions.json +++ b/.vscode/extensions.json @@ -4,6 +4,9 @@ "recommendations": [ // Extension identifier format: ${publisher}.${name}. Example: vscode.csharp "dbaeumer.vscode-eslint", - "esbenp.prettier-vscode" + // Use the OXC formatter as the default formatter + "oxc.oxc-vscode", + // Use the native typescript preview to run the editor typescript server + "typescriptteam.native-preview" ] } diff --git a/.vscode/settings.json b/.vscode/settings.json index f19b6d1fd7d..cd67b1d819a 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -7,6 +7,10 @@ "editor.codeActionsOnSave": { "source.fixAll.eslint": "explicit" }, + // Use the OXC formatter as the default formatter which matches what yarn format will do + "editor.defaultFormatter": "oxc.oxc-vscode", + + // Prettier settings for those that are still using the prettier extension "prettier.singleQuote": true, "prettier.tabWidth": 2, "prettier.printWidth": 140, @@ -46,6 +50,9 @@ "json.format.enable": false, + // enable the native preview for typescript, used to build internally as well + "typescript.experimental.useTsgo": true, + "typescript.preferences.quoteStyle": "single", "typescript.format.insertSpaceAfterOpeningAndBeforeClosingJsxExpressionBraces": false, "typescript.format.insertSpaceAfterOpeningAndBeforeClosingNonemptyParenthesis": false, @@ -58,21 +65,6 @@ "**/lib-commonjs": true, "**/dist": true }, - "[json]": { - "editor.defaultFormatter": "esbenp.prettier-vscode" - }, - "[jsonc]": { - "editor.defaultFormatter": "esbenp.prettier-vscode" - }, - "[typescript]": { - "editor.defaultFormatter": "esbenp.prettier-vscode" - }, - "[typescriptreact]": { - "editor.defaultFormatter": "esbenp.prettier-vscode" - }, - "[javascript]": { - "editor.defaultFormatter": "esbenp.prettier-vscode" - }, "[handlebars]": { "editor.formatOnSave": false }, diff --git a/.yarnrc.yml b/.yarnrc.yml index c1f6cd3f124..3969fdd4f0c 100644 --- a/.yarnrc.yml +++ b/.yarnrc.yml @@ -8,19 +8,23 @@ catalog: "@babel/preset-react": ^7.20.0 "@babel/preset-typescript": ^7.20.0 "@babel/runtime": ^7.20.0 - "@rnx-kit/align-deps": ^3.4.0 - "@rnx-kit/babel-preset-metro-react-native": ^3.0.1 - "@rnx-kit/cli": ^1.0.0 - "@rnx-kit/config": ^0.7.4 - "@rnx-kit/eslint-plugin": ^0.9.5 + "@rnx-kit/align-deps": ^3.4.2 + "@rnx-kit/babel-preset-metro-react-native": ^3.0.2 + "@rnx-kit/cli": ^1.1.0 + "@rnx-kit/config": ^0.7.5 + "@rnx-kit/eslint-plugin": ^0.9.8 "@rnx-kit/jest-preset": ^0.3.1 - "@rnx-kit/lint-lockfile": ^0.1.2 - "@rnx-kit/metro-config": ^2.2.3 + "@rnx-kit/lint-lockfile": ^0.1.3 + "@rnx-kit/metro-config": ^2.2.4 "@rnx-kit/metro-resolver-symlinks": ^0.2.11 + "@rnx-kit/metro-serializer": "^2.0.3" + "@rnx-kit/metro-serializer-esbuild": "^0.3.1" "@rnx-kit/reporter": ^0.1.0 - "@rnx-kit/tools-packages": ^0.1.1 - "@rnx-kit/tools-typescript": ^0.1.1 - "@rnx-kit/tsconfig": ^2.1.1 + "@rnx-kit/tools-packages": ^0.1.2 + "@rnx-kit/tools-typescript": ^0.1.3 + "@rnx-kit/tsconfig": ^3.0.0 + "@rnx-kit/types-kit-config": "^1.0.0" + "@rnx-kit/types-node": "^1.0.0" "@types/jasmine": 5.1.13 "@types/node": ^22.19.7 "@wdio/appium-service": ^9.24.0 diff --git a/apps/E2E/package.json b/apps/E2E/package.json index da01ea58a14..c5809cf009e 100644 --- a/apps/E2E/package.json +++ b/apps/E2E/package.json @@ -56,7 +56,7 @@ "@rnx-kit/metro-config": "catalog:", "@types/jasmine": "catalog:", "@types/node": "catalog:", - "@types/react": "~19.1.0", + "@types/react": "~19.1.4", "@wdio/appium-service": "catalog:", "@wdio/cli": "catalog:", "@wdio/globals": "catalog:", @@ -74,8 +74,8 @@ "cross-env": "catalog:", "expect-webdriverio": "catalog:", "metro-config": "^0.80.3", - "react": "19.1.0", - "react-native": "^0.81.0", + "react": "19.1.4", + "react-native": "^0.81.6", "react-native-macos": "^0.81.0", "react-native-windows": "^0.81.0", "rimraf": "catalog:", @@ -84,9 +84,9 @@ }, "peerDependencies": { "@office-iss/react-native-win32": "^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0", - "@types/react": "~18.2.0 || ~19.0.0 || ~19.1.0", - "react": "18.2.0 || 19.0.0 || 19.1.0", - "react-native": "^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0", + "@types/react": "~18.2.0 || ~19.0.0 || ~19.1.4", + "react": "18.2.0 || 19.0.0 || 19.1.4", + "react-native": "^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.6", "react-native-macos": "^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0", "react-native-windows": "^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0" }, diff --git a/apps/tester-core/package.json b/apps/tester-core/package.json index f392d3b894b..40b7185db2f 100644 --- a/apps/tester-core/package.json +++ b/apps/tester-core/package.json @@ -28,9 +28,9 @@ "build-core": "tsgo --outDir lib --module esnext --moduleResolution bundler", "clean": "fluentui-scripts clean", "depcheck": "fluentui-scripts depcheck", + "format": "fluentui-scripts format", "lint": "fluentui-scripts eslint", - "lint-package": "fluentui-scripts lint-package", - "format": "fluentui-scripts format" + "lint-package": "fluentui-scripts lint-package" }, "dependencies": { "@fluentui-react-native/adapters": "workspace:*", @@ -110,7 +110,7 @@ "@rnx-kit/metro-config": "catalog:", "@rnx-kit/metro-resolver-symlinks": "catalog:", "@types/jasmine": "catalog:", - "@types/react": "~19.1.0", + "@types/react": "~19.1.4", "@types/react-test-renderer": "^19.1.0", "@wdio/cli": "catalog:", "@wdio/globals": "catalog:", @@ -120,8 +120,8 @@ "expect-webdriverio": "catalog:", "flow-bin": "^0.113.0", "metro-config": "^0.80.3", - "react": "19.1.0", - "react-native": "^0.81.0", + "react": "19.1.4", + "react-native": "^0.81.6", "react-native-macos": "^0.81.0", "react-native-svg": "^15.12.1", "react-native-svg-transformer": "^1.0.0", @@ -146,9 +146,9 @@ "@fluentui-react-native/tooltip": "workspace:*", "@fluentui-react-native/vibrancy-view": "workspace:*", "@office-iss/react-native-win32": "^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0", - "@types/react": "~18.2.0 || ~19.0.0 || ~19.1.0", - "react": "18.2.0 || 19.0.0 || 19.1.0", - "react-native": "^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0", + "@types/react": "~18.2.0 || ~19.0.0 || ~19.1.4", + "react": "18.2.0 || 19.0.0 || 19.1.4", + "react-native": "^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.6", "react-native-macos": "^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0", "react-native-svg": ">=15.0.0 <15.13.0 || >=15.4.0 <15.13.0 || ^15.11.2 || ^15.12.1", "react-native-windows": "^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0" diff --git a/apps/win32-81/package.json b/apps/win32-81/package.json index 10132f4e216..bb98e4e0d90 100644 --- a/apps/win32-81/package.json +++ b/apps/win32-81/package.json @@ -39,9 +39,9 @@ "dependencies": { "@fluentui-react-native/tester-core": "workspace:*", "@office-iss/react-native-win32": "^0.81.0", - "@types/react": "~19.1.0", - "react": "19.1.0", - "react-native": "^0.81.0", + "@types/react": "~19.1.4", + "react": "19.1.4", + "react-native": "^0.81.6", "react-native-svg": "^15.12.1" }, "devDependencies": { @@ -62,8 +62,8 @@ "@rnx-kit/cli": "catalog:", "@rnx-kit/metro-config": "catalog:", "@rnx-kit/metro-resolver-symlinks": "catalog:", - "@rnx-kit/metro-serializer": "^2.0.3", - "@rnx-kit/metro-serializer-esbuild": "^0.3.0", + "@rnx-kit/metro-serializer": "catalog:", + "@rnx-kit/metro-serializer-esbuild": "catalog:", "@rnx-kit/tools-react-native": "^2.3.2", "@types/react-test-renderer": "^19.1.0", "metro": "^0.83.1", diff --git a/apps/win32/package.json b/apps/win32/package.json index c990b411643..59b7566ee67 100644 --- a/apps/win32/package.json +++ b/apps/win32/package.json @@ -62,7 +62,7 @@ "@rnx-kit/cli": "catalog:", "@rnx-kit/metro-config": "catalog:", "@rnx-kit/metro-resolver-symlinks": "catalog:", - "@rnx-kit/metro-serializer-esbuild": "^0.3.0", + "@rnx-kit/metro-serializer-esbuild": "catalog:", "@types/react-test-renderer": "^18.2.0", "metro-config": "^0.80.3", "oxc-resolver": "catalog:", diff --git a/packages/components/Avatar/package.json b/packages/components/Avatar/package.json index d692bf14b62..5f81c1eb34c 100644 --- a/packages/components/Avatar/package.json +++ b/packages/components/Avatar/package.json @@ -27,9 +27,9 @@ "build-core": "tsgo --outDir lib --module esnext --moduleResolution bundler", "clean": "fluentui-scripts clean", "depcheck": "fluentui-scripts depcheck", + "format": "fluentui-scripts format", "lint": "fluentui-scripts eslint", "lint-package": "fluentui-scripts lint-package", - "format": "fluentui-scripts format", "test": "fluentui-scripts jest", "update-snapshots": "fluentui-scripts jest -u" }, @@ -58,10 +58,10 @@ "@react-native-community/cli-platform-ios": "^20.0.0", "@react-native/babel-preset": "^0.81.0", "@react-native/metro-config": "^0.81.0", - "@types/react": "~19.1.0", + "@types/react": "~19.1.4", "@types/react-test-renderer": "^19.1.0", - "react": "19.1.0", - "react-native": "^0.81.0", + "react": "19.1.4", + "react-native": "^0.81.6", "react-native-macos": "^0.81.0", "react-native-svg": "^15.12.1", "react-native-windows": "^0.81.0", @@ -69,9 +69,9 @@ }, "peerDependencies": { "@office-iss/react-native-win32": "^0.74.0", - "@types/react": "~18.2.0 || ~19.0.0 || ~19.1.0", - "react": "18.2.0 || 19.0.0 || 19.1.0", - "react-native": "^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0", + "@types/react": "~18.2.0 || ~19.0.0 || ~19.1.4", + "react": "18.2.0 || 19.0.0 || 19.1.4", + "react-native": "^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.6", "react-native-macos": "^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0", "react-native-svg": ">=15.0.0 <15.13.0 || >=15.4.0 <15.13.0 || ^15.11.2 || ^15.12.1", "react-native-windows": "^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0" diff --git a/packages/components/Badge/package.json b/packages/components/Badge/package.json index 5728284e4f4..d0aae884ea8 100644 --- a/packages/components/Badge/package.json +++ b/packages/components/Badge/package.json @@ -23,9 +23,9 @@ "build-core": "tsgo --outDir lib --module esnext --moduleResolution bundler", "clean": "fluentui-scripts clean", "depcheck": "fluentui-scripts depcheck", + "format": "fluentui-scripts format", "lint": "fluentui-scripts eslint", "lint-package": "fluentui-scripts lint-package", - "format": "fluentui-scripts format", "test": "fluentui-scripts jest", "update-snapshots": "fluentui-scripts jest -u" }, @@ -57,10 +57,10 @@ "@react-native-community/cli-platform-ios": "^20.0.0", "@react-native/babel-preset": "^0.81.0", "@react-native/metro-config": "^0.81.0", - "@types/react": "~19.1.0", + "@types/react": "~19.1.4", "@types/react-test-renderer": "^19.1.0", - "react": "19.1.0", - "react-native": "^0.81.0", + "react": "19.1.4", + "react-native": "^0.81.6", "react-native-macos": "^0.81.0", "react-native-svg": "^15.12.1", "react-native-windows": "^0.81.0", @@ -68,9 +68,9 @@ }, "peerDependencies": { "@office-iss/react-native-win32": "^0.74.0", - "@types/react": "~18.2.0 || ~19.0.0 || ~19.1.0", - "react": "18.2.0 || 19.0.0 || 19.1.0", - "react-native": "^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0", + "@types/react": "~18.2.0 || ~19.0.0 || ~19.1.4", + "react": "18.2.0 || 19.0.0 || 19.1.4", + "react-native": "^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.6", "react-native-macos": "^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0", "react-native-svg": ">=15.0.0 <15.13.0 || >=15.4.0 <15.13.0 || ^15.11.2 || ^15.12.1", "react-native-windows": "^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0" diff --git a/packages/components/Button/package.json b/packages/components/Button/package.json index 45c96d5b9d3..7824ae8d4d1 100644 --- a/packages/components/Button/package.json +++ b/packages/components/Button/package.json @@ -27,9 +27,9 @@ "build-core": "tsgo --outDir lib --module esnext --moduleResolution bundler", "clean": "fluentui-scripts clean", "depcheck": "fluentui-scripts depcheck", + "format": "fluentui-scripts format", "lint": "fluentui-scripts eslint", "lint-package": "fluentui-scripts lint-package", - "format": "fluentui-scripts format", "test": "fluentui-scripts jest", "update-snapshots": "fluentui-scripts jest -u" }, @@ -67,10 +67,10 @@ "@react-native-community/cli-platform-ios": "^20.0.0", "@react-native/babel-preset": "^0.81.0", "@react-native/metro-config": "^0.81.0", - "@types/react": "~19.1.0", + "@types/react": "~19.1.4", "@types/react-test-renderer": "^19.1.0", - "react": "19.1.0", - "react-native": "^0.81.0", + "react": "19.1.4", + "react-native": "^0.81.6", "react-native-macos": "^0.81.0", "react-native-svg": "^15.12.1", "react-native-windows": "^0.81.0", @@ -78,9 +78,9 @@ }, "peerDependencies": { "@office-iss/react-native-win32": "^0.74.0", - "@types/react": "~18.2.0 || ~19.0.0 || ~19.1.0", - "react": "18.2.0 || 19.0.0 || 19.1.0", - "react-native": "^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0", + "@types/react": "~18.2.0 || ~19.0.0 || ~19.1.4", + "react": "18.2.0 || 19.0.0 || 19.1.4", + "react-native": "^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.6", "react-native-macos": "^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0", "react-native-svg": ">=15.0.0 <15.13.0 || >=15.4.0 <15.13.0 || ^15.11.2 || ^15.12.1", "react-native-windows": "^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0" diff --git a/packages/components/Callout/package.json b/packages/components/Callout/package.json index 28140fbbd8f..b2a3ec34f67 100644 --- a/packages/components/Callout/package.json +++ b/packages/components/Callout/package.json @@ -27,9 +27,9 @@ "build-core": "tsgo --outDir lib --module esnext --moduleResolution bundler", "clean": "fluentui-scripts clean", "depcheck": "fluentui-scripts depcheck", + "format": "fluentui-scripts format", "lint": "fluentui-scripts eslint", "lint-package": "fluentui-scripts lint-package", - "format": "fluentui-scripts format", "test": "fluentui-scripts jest", "update-snapshots": "fluentui-scripts jest -u" }, @@ -53,19 +53,19 @@ "@react-native-community/cli-platform-ios": "^20.0.0", "@react-native/babel-preset": "^0.81.0", "@react-native/metro-config": "^0.81.0", - "@types/react": "~19.1.0", + "@types/react": "~19.1.4", "@types/react-test-renderer": "^19.1.0", - "react": "19.1.0", - "react-native": "^0.81.0", + "react": "19.1.4", + "react-native": "^0.81.6", "react-native-macos": "^0.81.0", "react-native-windows": "^0.81.0", "react-test-renderer": "19.1.0" }, "peerDependencies": { "@office-iss/react-native-win32": "^0.74.0", - "@types/react": "~18.2.0 || ~19.0.0 || ~19.1.0", - "react": "18.2.0 || 19.0.0 || 19.1.0", - "react-native": "^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0", + "@types/react": "~18.2.0 || ~19.0.0 || ~19.1.4", + "react": "18.2.0 || 19.0.0 || 19.1.4", + "react-native": "^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.6", "react-native-macos": "^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0", "react-native-windows": "^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0" }, diff --git a/packages/components/Checkbox/package.json b/packages/components/Checkbox/package.json index 004bcf8a433..a7d2d8800a5 100644 --- a/packages/components/Checkbox/package.json +++ b/packages/components/Checkbox/package.json @@ -27,9 +27,9 @@ "build-core": "tsgo --outDir lib --module esnext --moduleResolution bundler", "clean": "fluentui-scripts clean", "depcheck": "fluentui-scripts depcheck", + "format": "fluentui-scripts format", "lint": "fluentui-scripts eslint", "lint-package": "fluentui-scripts lint-package", - "format": "fluentui-scripts format", "test": "fluentui-scripts jest", "update-snapshots": "fluentui-scripts jest -u" }, @@ -63,10 +63,10 @@ "@react-native-community/cli-platform-ios": "^20.0.0", "@react-native/babel-preset": "^0.81.0", "@react-native/metro-config": "^0.81.0", - "@types/react": "~19.1.0", + "@types/react": "~19.1.4", "@types/react-test-renderer": "^19.1.0", - "react": "19.1.0", - "react-native": "^0.81.0", + "react": "19.1.4", + "react-native": "^0.81.6", "react-native-macos": "^0.81.0", "react-native-svg": "^15.12.1", "react-native-windows": "^0.81.0", @@ -74,9 +74,9 @@ }, "peerDependencies": { "@office-iss/react-native-win32": "^0.74.0", - "@types/react": "~18.2.0 || ~19.0.0 || ~19.1.0", - "react": "18.2.0 || 19.0.0 || 19.1.0", - "react-native": "^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0", + "@types/react": "~18.2.0 || ~19.0.0 || ~19.1.4", + "react": "18.2.0 || 19.0.0 || 19.1.4", + "react-native": "^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.6", "react-native-macos": "^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0", "react-native-svg": ">=15.0.0 <15.13.0 || >=15.4.0 <15.13.0 || ^15.11.2 || ^15.12.1", "react-native-windows": "^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0" diff --git a/packages/components/Chip/package.json b/packages/components/Chip/package.json index bd9fe59fd19..19df8844d87 100644 --- a/packages/components/Chip/package.json +++ b/packages/components/Chip/package.json @@ -22,9 +22,9 @@ "build-core": "tsgo --outDir lib --module esnext --moduleResolution bundler", "clean": "fluentui-scripts clean", "depcheck": "fluentui-scripts depcheck", + "format": "fluentui-scripts format", "lint": "fluentui-scripts eslint", "lint-package": "fluentui-scripts lint-package", - "format": "fluentui-scripts format", "test": "fluentui-scripts jest", "update-snapshots": "fluentui-scripts jest -u" }, @@ -53,10 +53,10 @@ "@react-native-community/cli-platform-ios": "^20.0.0", "@react-native/babel-preset": "^0.81.0", "@react-native/metro-config": "^0.81.0", - "@types/react": "~19.1.0", + "@types/react": "~19.1.4", "@types/react-test-renderer": "^19.1.0", - "react": "19.1.0", - "react-native": "^0.81.0", + "react": "19.1.4", + "react-native": "^0.81.6", "react-native-macos": "^0.81.0", "react-native-svg": "^15.12.1", "react-native-windows": "^0.81.0", @@ -64,9 +64,9 @@ }, "peerDependencies": { "@office-iss/react-native-win32": "^0.74.0", - "@types/react": "~18.2.0 || ~19.0.0 || ~19.1.0", - "react": "18.2.0 || 19.0.0 || 19.1.0", - "react-native": "^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0", + "@types/react": "~18.2.0 || ~19.0.0 || ~19.1.4", + "react": "18.2.0 || 19.0.0 || 19.1.4", + "react-native": "^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.6", "react-native-macos": "^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0", "react-native-svg": ">=15.0.0 <15.13.0 || >=15.4.0 <15.13.0 || ^15.11.2 || ^15.12.1", "react-native-windows": "^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0" diff --git a/packages/components/ContextualMenu/package.json b/packages/components/ContextualMenu/package.json index 0dd57ffbb00..4da47d612ce 100644 --- a/packages/components/ContextualMenu/package.json +++ b/packages/components/ContextualMenu/package.json @@ -27,9 +27,9 @@ "build-core": "tsgo --outDir lib --module esnext --moduleResolution bundler", "clean": "fluentui-scripts clean", "depcheck": "fluentui-scripts depcheck", + "format": "fluentui-scripts format", "lint": "fluentui-scripts eslint", "lint-package": "fluentui-scripts lint-package", - "format": "fluentui-scripts format", "test": "fluentui-scripts jest", "update-snapshots": "fluentui-scripts jest -u" }, @@ -61,11 +61,11 @@ "@react-native/babel-preset": "^0.81.0", "@react-native/metro-babel-transformer": "^0.74.0", "@react-native/metro-config": "^0.81.0", - "@types/react": "~19.1.0", + "@types/react": "~19.1.4", "@types/react-test-renderer": "^19.1.0", "metro-config": "^0.80.3", - "react": "19.1.0", - "react-native": "^0.81.0", + "react": "19.1.4", + "react-native": "^0.81.6", "react-native-macos": "^0.81.0", "react-native-svg": "^15.12.1", "react-native-svg-transformer": "^1.0.0", @@ -74,9 +74,9 @@ }, "peerDependencies": { "@office-iss/react-native-win32": "^0.74.0", - "@types/react": "~18.2.0 || ~19.0.0 || ~19.1.0", - "react": "18.2.0 || 19.0.0 || 19.1.0", - "react-native": "^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0", + "@types/react": "~18.2.0 || ~19.0.0 || ~19.1.4", + "react": "18.2.0 || 19.0.0 || 19.1.4", + "react-native": "^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.6", "react-native-macos": "^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0", "react-native-svg": ">=15.0.0 <15.13.0 || >=15.4.0 <15.13.0 || ^15.11.2 || ^15.12.1", "react-native-windows": "^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0" diff --git a/packages/components/Divider/package.json b/packages/components/Divider/package.json index f03c0a8260e..7daf0082fc1 100644 --- a/packages/components/Divider/package.json +++ b/packages/components/Divider/package.json @@ -26,9 +26,9 @@ "build-core": "tsgo --outDir lib --module esnext --moduleResolution bundler", "clean": "fluentui-scripts clean", "depcheck": "fluentui-scripts depcheck", + "format": "fluentui-scripts format", "lint": "fluentui-scripts eslint", "lint-package": "fluentui-scripts lint-package", - "format": "fluentui-scripts format", "test": "fluentui-scripts jest", "update-snapshots": "fluentui-scripts jest -u" }, @@ -54,10 +54,10 @@ "@react-native-community/cli-platform-ios": "^20.0.0", "@react-native/babel-preset": "^0.81.0", "@react-native/metro-config": "^0.81.0", - "@types/react": "~19.1.0", + "@types/react": "~19.1.4", "@types/react-test-renderer": "^19.1.0", - "react": "19.1.0", - "react-native": "^0.81.0", + "react": "19.1.4", + "react-native": "^0.81.6", "react-native-macos": "^0.81.0", "react-native-svg": "^15.12.1", "react-native-windows": "^0.81.0", @@ -65,9 +65,9 @@ }, "peerDependencies": { "@office-iss/react-native-win32": "^0.74.0", - "@types/react": "~18.2.0 || ~19.0.0 || ~19.1.0", - "react": "18.2.0 || 19.0.0 || 19.1.0", - "react-native": "^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0", + "@types/react": "~18.2.0 || ~19.0.0 || ~19.1.4", + "react": "18.2.0 || 19.0.0 || 19.1.4", + "react-native": "^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.6", "react-native-macos": "^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0", "react-native-svg": ">=15.0.0 <15.13.0 || >=15.4.0 <15.13.0 || ^15.11.2 || ^15.12.1", "react-native-windows": "^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0" diff --git a/packages/components/FocusTrapZone/package.json b/packages/components/FocusTrapZone/package.json index fbf038de511..7d9806cf3a0 100644 --- a/packages/components/FocusTrapZone/package.json +++ b/packages/components/FocusTrapZone/package.json @@ -26,9 +26,9 @@ "build-core": "tsgo --outDir lib --module esnext --moduleResolution bundler", "clean": "fluentui-scripts clean", "depcheck": "fluentui-scripts depcheck", + "format": "fluentui-scripts format", "lint": "fluentui-scripts eslint", "lint-package": "fluentui-scripts lint-package", - "format": "fluentui-scripts format", "test": "fluentui-scripts jest", "update-snapshots": "fluentui-scripts jest -u" }, @@ -51,19 +51,19 @@ "@react-native-community/cli-platform-ios": "^20.0.0", "@react-native/babel-preset": "^0.81.0", "@react-native/metro-config": "^0.81.0", - "@types/react": "~19.1.0", + "@types/react": "~19.1.4", "@types/react-test-renderer": "^19.1.0", - "react": "19.1.0", - "react-native": "^0.81.0", + "react": "19.1.4", + "react-native": "^0.81.6", "react-native-macos": "^0.81.0", "react-native-windows": "^0.81.0", "react-test-renderer": "19.1.0" }, "peerDependencies": { "@office-iss/react-native-win32": "^0.74.0", - "@types/react": "~18.2.0 || ~19.0.0 || ~19.1.0", - "react": "18.2.0 || 19.0.0 || 19.1.0", - "react-native": "^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0", + "@types/react": "~18.2.0 || ~19.0.0 || ~19.1.4", + "react": "18.2.0 || 19.0.0 || 19.1.4", + "react-native": "^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.6", "react-native-macos": "^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0", "react-native-windows": "^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0" }, diff --git a/packages/components/FocusZone/package.json b/packages/components/FocusZone/package.json index d042ef0a0df..3d30a49c857 100644 --- a/packages/components/FocusZone/package.json +++ b/packages/components/FocusZone/package.json @@ -26,9 +26,9 @@ "build-core": "tsgo --outDir lib --module esnext --moduleResolution bundler", "clean": "fluentui-scripts clean", "depcheck": "fluentui-scripts depcheck", + "format": "fluentui-scripts format", "lint": "fluentui-scripts eslint", "lint-package": "fluentui-scripts lint-package", - "format": "fluentui-scripts format", "test": "fluentui-scripts jest", "update-snapshots": "fluentui-scripts jest -u" }, @@ -52,19 +52,19 @@ "@react-native/babel-preset": "^0.81.0", "@react-native/metro-babel-transformer": "^0.81.0", "@react-native/metro-config": "^0.81.0", - "@types/react": "~19.1.0", + "@types/react": "~19.1.4", "@types/react-test-renderer": "^19.1.0", - "react": "19.1.0", - "react-native": "^0.81.0", + "react": "19.1.4", + "react-native": "^0.81.6", "react-native-macos": "^0.81.0", "react-native-windows": "^0.81.0", "react-test-renderer": "19.1.0" }, "peerDependencies": { "@office-iss/react-native-win32": "^0.74.0", - "@types/react": "~18.2.0 || ~19.0.0 || ~19.1.0", - "react": "18.2.0 || 19.0.0 || 19.1.0", - "react-native": "^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0", + "@types/react": "~18.2.0 || ~19.0.0 || ~19.1.4", + "react": "18.2.0 || 19.0.0 || 19.1.4", + "react-native": "^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.6", "react-native-macos": "^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0", "react-native-windows": "^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0" }, diff --git a/packages/components/Icon/package.json b/packages/components/Icon/package.json index af28770dad9..5a6dcbe2258 100644 --- a/packages/components/Icon/package.json +++ b/packages/components/Icon/package.json @@ -26,9 +26,9 @@ "build-core": "tsgo --outDir lib --module esnext --moduleResolution bundler", "clean": "fluentui-scripts clean", "depcheck": "fluentui-scripts depcheck", + "format": "fluentui-scripts format", "lint": "fluentui-scripts eslint", "lint-package": "fluentui-scripts lint-package", - "format": "fluentui-scripts format", "test": "fluentui-scripts jest", "update-snapshots": "fluentui-scripts jest -u" }, @@ -52,10 +52,10 @@ "@react-native-community/cli-platform-ios": "^20.0.0", "@react-native/babel-preset": "^0.81.0", "@react-native/metro-config": "^0.81.0", - "@types/react": "~19.1.0", + "@types/react": "~19.1.4", "@types/react-test-renderer": "^19.1.0", - "react": "19.1.0", - "react-native": "^0.81.0", + "react": "19.1.4", + "react-native": "^0.81.6", "react-native-macos": "^0.81.0", "react-native-svg": "^15.12.1", "react-native-windows": "^0.81.0", @@ -63,9 +63,9 @@ }, "peerDependencies": { "@office-iss/react-native-win32": "^0.74.0", - "@types/react": "~18.2.0 || ~19.0.0 || ~19.1.0", - "react": "18.2.0 || 19.0.0 || 19.1.0", - "react-native": "^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0", + "@types/react": "~18.2.0 || ~19.0.0 || ~19.1.4", + "react": "18.2.0 || 19.0.0 || 19.1.4", + "react-native": "^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.6", "react-native-macos": "^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0", "react-native-svg": ">=15.0.0 <15.13.0 || >=15.4.0 <15.13.0 || ^15.11.2 || ^15.12.1", "react-native-windows": "^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0" diff --git a/packages/components/Input/package.json b/packages/components/Input/package.json index e357f389bed..156294e76c0 100644 --- a/packages/components/Input/package.json +++ b/packages/components/Input/package.json @@ -26,9 +26,9 @@ "build-core": "tsgo --outDir lib --module esnext --moduleResolution bundler", "clean": "fluentui-scripts clean", "depcheck": "fluentui-scripts depcheck", + "format": "fluentui-scripts format", "lint": "fluentui-scripts eslint", "lint-package": "fluentui-scripts lint-package", - "format": "fluentui-scripts format", "test": "fluentui-scripts jest", "update-snapshots": "fluentui-scripts jest -u" }, @@ -56,10 +56,10 @@ "@react-native-community/cli-platform-ios": "^20.0.0", "@react-native/babel-preset": "^0.81.0", "@react-native/metro-config": "^0.81.0", - "@types/react": "~19.1.0", + "@types/react": "~19.1.4", "@types/react-test-renderer": "^19.1.0", - "react": "19.1.0", - "react-native": "^0.81.0", + "react": "19.1.4", + "react-native": "^0.81.6", "react-native-macos": "^0.81.0", "react-native-svg": "^15.12.1", "react-native-windows": "^0.81.0", @@ -67,9 +67,9 @@ }, "peerDependencies": { "@office-iss/react-native-win32": "^0.74.0", - "@types/react": "~18.2.0 || ~19.0.0 || ~19.1.0", - "react": "18.2.0 || 19.0.0 || 19.1.0", - "react-native": "^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0", + "@types/react": "~18.2.0 || ~19.0.0 || ~19.1.4", + "react": "18.2.0 || 19.0.0 || 19.1.4", + "react-native": "^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.6", "react-native-macos": "^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0", "react-native-svg": ">=15.0.0 <15.13.0 || >=15.4.0 <15.13.0 || ^15.11.2 || ^15.12.1", "react-native-windows": "^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0" diff --git a/packages/components/Link/package.json b/packages/components/Link/package.json index a381bed2318..a551773509a 100644 --- a/packages/components/Link/package.json +++ b/packages/components/Link/package.json @@ -26,9 +26,9 @@ "build-core": "tsgo --outDir lib --module esnext --moduleResolution bundler", "clean": "fluentui-scripts clean", "depcheck": "fluentui-scripts depcheck", + "format": "fluentui-scripts format", "lint": "fluentui-scripts eslint", "lint-package": "fluentui-scripts lint-package", - "format": "fluentui-scripts format", "test": "fluentui-scripts jest", "update-snapshots": "fluentui-scripts jest -u" }, @@ -57,19 +57,19 @@ "@react-native-community/cli-platform-ios": "^20.0.0", "@react-native/babel-preset": "^0.81.0", "@react-native/metro-config": "^0.81.0", - "@types/react": "~19.1.0", + "@types/react": "~19.1.4", "@types/react-test-renderer": "^19.1.0", - "react": "19.1.0", - "react-native": "^0.81.0", + "react": "19.1.4", + "react-native": "^0.81.6", "react-native-macos": "^0.81.0", "react-native-windows": "^0.81.0", "react-test-renderer": "19.1.0" }, "peerDependencies": { "@office-iss/react-native-win32": "^0.74.0", - "@types/react": "~18.2.0 || ~19.0.0 || ~19.1.0", - "react": "18.2.0 || 19.0.0 || 19.1.0", - "react-native": "^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0", + "@types/react": "~18.2.0 || ~19.0.0 || ~19.1.4", + "react": "18.2.0 || 19.0.0 || 19.1.4", + "react-native": "^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.6", "react-native-macos": "^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0", "react-native-windows": "^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0" }, diff --git a/packages/components/Menu/package.json b/packages/components/Menu/package.json index edb035592a6..365efe1d12d 100644 --- a/packages/components/Menu/package.json +++ b/packages/components/Menu/package.json @@ -27,9 +27,9 @@ "build-core": "tsgo --outDir lib --module esnext --moduleResolution bundler", "clean": "fluentui-scripts clean", "depcheck": "fluentui-scripts depcheck", + "format": "fluentui-scripts format", "lint": "fluentui-scripts eslint", "lint-package": "fluentui-scripts lint-package", - "format": "fluentui-scripts format", "test": "fluentui-scripts jest", "update-snapshots": "fluentui-scripts jest -u" }, @@ -64,10 +64,10 @@ "@react-native/babel-preset": "^0.81.0", "@react-native/metro-config": "^0.81.0", "@types/node": "catalog:", - "@types/react": "~19.1.0", + "@types/react": "~19.1.4", "@types/react-test-renderer": "^19.1.0", - "react": "19.1.0", - "react-native": "^0.81.0", + "react": "19.1.4", + "react-native": "^0.81.6", "react-native-macos": "^0.81.0", "react-native-svg": "^15.12.1", "react-native-windows": "^0.81.0", @@ -75,9 +75,9 @@ }, "peerDependencies": { "@office-iss/react-native-win32": "^0.74.0", - "@types/react": "~18.2.0 || ~19.0.0 || ~19.1.0", - "react": "18.2.0 || 19.0.0 || 19.1.0", - "react-native": "^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0", + "@types/react": "~18.2.0 || ~19.0.0 || ~19.1.4", + "react": "18.2.0 || 19.0.0 || 19.1.4", + "react-native": "^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.6", "react-native-macos": "^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0", "react-native-svg": ">=15.0.0 <15.13.0 || >=15.4.0 <15.13.0 || ^15.11.2 || ^15.12.1", "react-native-windows": "^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0" diff --git a/packages/components/MenuButton/package.json b/packages/components/MenuButton/package.json index 7792eff3e75..b2cf5bf246c 100644 --- a/packages/components/MenuButton/package.json +++ b/packages/components/MenuButton/package.json @@ -27,9 +27,9 @@ "build-core": "tsgo --outDir lib --module esnext --moduleResolution bundler", "clean": "fluentui-scripts clean", "depcheck": "fluentui-scripts depcheck", + "format": "fluentui-scripts format", "lint": "fluentui-scripts eslint", "lint-package": "fluentui-scripts lint-package", - "format": "fluentui-scripts format", "test": "fluentui-scripts jest", "update-snapshots": "fluentui-scripts jest -u" }, @@ -56,10 +56,10 @@ "@react-native-community/cli-platform-ios": "^20.0.0", "@react-native/babel-preset": "^0.81.0", "@react-native/metro-config": "^0.81.0", - "@types/react": "~19.1.0", + "@types/react": "~19.1.4", "@types/react-test-renderer": "^19.1.0", - "react": "19.1.0", - "react-native": "^0.81.0", + "react": "19.1.4", + "react-native": "^0.81.6", "react-native-macos": "^0.81.0", "react-native-svg": "^15.12.1", "react-native-windows": "^0.81.0", @@ -67,9 +67,9 @@ }, "peerDependencies": { "@office-iss/react-native-win32": "^0.74.0", - "@types/react": "~18.2.0 || ~19.0.0 || ~19.1.0", - "react": "18.2.0 || 19.0.0 || 19.1.0", - "react-native": "^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0", + "@types/react": "~18.2.0 || ~19.0.0 || ~19.1.4", + "react": "18.2.0 || 19.0.0 || 19.1.4", + "react-native": "^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.6", "react-native-macos": "^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0", "react-native-svg": ">=15.0.0 <15.13.0 || >=15.4.0 <15.13.0 || ^15.11.2 || ^15.12.1", "react-native-windows": "^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0" diff --git a/packages/components/Notification/package.json b/packages/components/Notification/package.json index 9d562124fd1..a73d4e81b41 100644 --- a/packages/components/Notification/package.json +++ b/packages/components/Notification/package.json @@ -26,9 +26,9 @@ "build-core": "tsgo --outDir lib --module esnext --moduleResolution bundler", "clean": "fluentui-scripts clean", "depcheck": "fluentui-scripts depcheck", + "format": "fluentui-scripts format", "lint": "fluentui-scripts eslint", "lint-package": "fluentui-scripts lint-package", - "format": "fluentui-scripts format", "test": "fluentui-scripts jest", "update-snapshots": "fluentui-scripts jest -u" }, @@ -62,10 +62,10 @@ "@react-native-community/cli-platform-ios": "^20.0.0", "@react-native/babel-preset": "^0.81.0", "@react-native/metro-config": "^0.81.0", - "@types/react": "~19.1.0", + "@types/react": "~19.1.4", "@types/react-test-renderer": "^19.1.0", - "react": "19.1.0", - "react-native": "^0.81.0", + "react": "19.1.4", + "react-native": "^0.81.6", "react-native-macos": "^0.81.0", "react-native-svg": "^15.12.1", "react-native-windows": "^0.81.0", @@ -73,9 +73,9 @@ }, "peerDependencies": { "@office-iss/react-native-win32": "^0.74.0", - "@types/react": "~18.2.0 || ~19.0.0 || ~19.1.0", - "react": "18.2.0 || 19.0.0 || 19.1.0", - "react-native": "^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0", + "@types/react": "~18.2.0 || ~19.0.0 || ~19.1.4", + "react": "18.2.0 || 19.0.0 || 19.1.4", + "react-native": "^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.6", "react-native-macos": "^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0", "react-native-svg": ">=15.0.0 <15.13.0 || >=15.4.0 <15.13.0 || ^15.11.2 || ^15.12.1", "react-native-windows": "^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0" diff --git a/packages/components/Persona/package.json b/packages/components/Persona/package.json index e9167d1b702..23de0977fbe 100644 --- a/packages/components/Persona/package.json +++ b/packages/components/Persona/package.json @@ -26,9 +26,9 @@ "build-core": "tsgo --outDir lib --module esnext --moduleResolution bundler", "clean": "fluentui-scripts clean", "depcheck": "fluentui-scripts depcheck", + "format": "fluentui-scripts format", "lint": "fluentui-scripts eslint", "lint-package": "fluentui-scripts lint-package", - "format": "fluentui-scripts format", "test": "fluentui-scripts jest", "update-snapshots": "fluentui-scripts jest -u" }, @@ -53,17 +53,17 @@ "@react-native-community/cli-platform-android": "^20.0.0", "@react-native-community/cli-platform-ios": "^20.0.0", "@react-native/metro-config": "^0.81.0", - "@types/react": "~19.1.0", - "react": "19.1.0", - "react-native": "^0.81.0", + "@types/react": "~19.1.4", + "react": "19.1.4", + "react-native": "^0.81.6", "react-native-macos": "^0.81.0", "react-native-windows": "^0.81.0" }, "peerDependencies": { "@office-iss/react-native-win32": "^0.74.0", - "@types/react": "~18.2.0 || ~19.0.0 || ~19.1.0", - "react": "18.2.0 || 19.0.0 || 19.1.0", - "react-native": "^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0", + "@types/react": "~18.2.0 || ~19.0.0 || ~19.1.4", + "react": "18.2.0 || 19.0.0 || 19.1.4", + "react-native": "^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.6", "react-native-macos": "^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0", "react-native-windows": "^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0" }, diff --git a/packages/components/PersonaCoin/package.json b/packages/components/PersonaCoin/package.json index 3fa55eab22a..01275d71d2b 100644 --- a/packages/components/PersonaCoin/package.json +++ b/packages/components/PersonaCoin/package.json @@ -26,9 +26,9 @@ "build-core": "tsgo --outDir lib --module esnext --moduleResolution bundler", "clean": "fluentui-scripts clean", "depcheck": "fluentui-scripts depcheck", + "format": "fluentui-scripts format", "lint": "fluentui-scripts eslint", "lint-package": "fluentui-scripts lint-package", - "format": "fluentui-scripts format", "test": "fluentui-scripts jest", "update-snapshots": "fluentui-scripts jest -u" }, @@ -54,17 +54,17 @@ "@react-native-community/cli-platform-android": "^20.0.0", "@react-native-community/cli-platform-ios": "^20.0.0", "@react-native/metro-config": "^0.81.0", - "@types/react": "~19.1.0", - "react": "19.1.0", - "react-native": "^0.81.0", + "@types/react": "~19.1.4", + "react": "19.1.4", + "react-native": "^0.81.6", "react-native-macos": "^0.81.0", "react-native-windows": "^0.81.0" }, "peerDependencies": { "@office-iss/react-native-win32": "^0.74.0", - "@types/react": "~18.2.0 || ~19.0.0 || ~19.1.0", - "react": "18.2.0 || 19.0.0 || 19.1.0", - "react-native": "^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0", + "@types/react": "~18.2.0 || ~19.0.0 || ~19.1.4", + "react": "18.2.0 || 19.0.0 || 19.1.4", + "react-native": "^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.6", "react-native-macos": "^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0", "react-native-windows": "^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0" }, diff --git a/packages/components/Pressable/package.json b/packages/components/Pressable/package.json index 786007a1d60..52a87a455a9 100644 --- a/packages/components/Pressable/package.json +++ b/packages/components/Pressable/package.json @@ -26,9 +26,9 @@ "build-core": "tsgo --outDir lib --module esnext --moduleResolution bundler", "clean": "fluentui-scripts clean", "depcheck": "fluentui-scripts depcheck", + "format": "fluentui-scripts format", "lint": "fluentui-scripts eslint", "lint-package": "fluentui-scripts lint-package", - "format": "fluentui-scripts format", "test": "fluentui-scripts jest", "update-snapshots": "fluentui-scripts jest -u" }, @@ -48,17 +48,17 @@ "@react-native-community/cli-platform-android": "^20.0.0", "@react-native-community/cli-platform-ios": "^20.0.0", "@react-native/metro-config": "^0.81.0", - "@types/react": "~19.1.0", - "react": "19.1.0", - "react-native": "^0.81.0", + "@types/react": "~19.1.4", + "react": "19.1.4", + "react-native": "^0.81.6", "react-native-macos": "^0.81.0", "react-native-windows": "^0.81.0" }, "peerDependencies": { "@office-iss/react-native-win32": "^0.74.0", - "@types/react": "~18.2.0 || ~19.0.0 || ~19.1.0", - "react": "18.2.0 || 19.0.0 || 19.1.0", - "react-native": "^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0", + "@types/react": "~18.2.0 || ~19.0.0 || ~19.1.4", + "react": "18.2.0 || 19.0.0 || 19.1.4", + "react-native": "^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.6", "react-native-macos": "^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0", "react-native-windows": "^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0" }, diff --git a/packages/components/RadioGroup/package.json b/packages/components/RadioGroup/package.json index 94284e622ae..eaa6b9ee06d 100644 --- a/packages/components/RadioGroup/package.json +++ b/packages/components/RadioGroup/package.json @@ -27,9 +27,9 @@ "build-core": "tsgo --outDir lib --module esnext --moduleResolution bundler", "clean": "fluentui-scripts clean", "depcheck": "fluentui-scripts depcheck", + "format": "fluentui-scripts format", "lint": "fluentui-scripts eslint", "lint-package": "fluentui-scripts lint-package", - "format": "fluentui-scripts format", "test": "fluentui-scripts jest", "update-snapshots": "fluentui-scripts jest -u" }, @@ -62,10 +62,10 @@ "@react-native-community/cli-platform-ios": "^20.0.0", "@react-native/babel-preset": "^0.81.0", "@react-native/metro-config": "^0.81.0", - "@types/react": "~19.1.0", + "@types/react": "~19.1.4", "@types/react-test-renderer": "^19.1.0", - "react": "19.1.0", - "react-native": "^0.81.0", + "react": "19.1.4", + "react-native": "^0.81.6", "react-native-macos": "^0.81.0", "react-native-svg": "^15.12.1", "react-native-windows": "^0.81.0", @@ -73,9 +73,9 @@ }, "peerDependencies": { "@office-iss/react-native-win32": "^0.74.0", - "@types/react": "~18.2.0 || ~19.0.0 || ~19.1.0", - "react": "18.2.0 || 19.0.0 || 19.1.0", - "react-native": "^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0", + "@types/react": "~18.2.0 || ~19.0.0 || ~19.1.4", + "react": "18.2.0 || 19.0.0 || 19.1.4", + "react-native": "^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.6", "react-native-macos": "^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0", "react-native-svg": ">=15.0.0 <15.13.0 || >=15.4.0 <15.13.0 || ^15.11.2 || ^15.12.1", "react-native-windows": "^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0" diff --git a/packages/components/Separator/package.json b/packages/components/Separator/package.json index c9b045106b9..f3f1047a9e2 100644 --- a/packages/components/Separator/package.json +++ b/packages/components/Separator/package.json @@ -26,9 +26,9 @@ "build-core": "tsgo --outDir lib --module esnext --moduleResolution bundler", "clean": "fluentui-scripts clean", "depcheck": "fluentui-scripts depcheck", + "format": "fluentui-scripts format", "lint": "fluentui-scripts eslint", "lint-package": "fluentui-scripts lint-package", - "format": "fluentui-scripts format", "test": "fluentui-scripts jest", "update-snapshots": "fluentui-scripts jest -u" }, @@ -51,19 +51,19 @@ "@react-native-community/cli-platform-ios": "^20.0.0", "@react-native/babel-preset": "^0.81.0", "@react-native/metro-config": "^0.81.0", - "@types/react": "~19.1.0", + "@types/react": "~19.1.4", "@types/react-test-renderer": "^19.1.0", - "react": "19.1.0", - "react-native": "^0.81.0", + "react": "19.1.4", + "react-native": "^0.81.6", "react-native-macos": "^0.81.0", "react-native-windows": "^0.81.0", "react-test-renderer": "19.1.0" }, "peerDependencies": { "@office-iss/react-native-win32": "^0.74.0", - "@types/react": "~18.2.0 || ~19.0.0 || ~19.1.0", - "react": "18.2.0 || 19.0.0 || 19.1.0", - "react-native": "^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0", + "@types/react": "~18.2.0 || ~19.0.0 || ~19.1.4", + "react": "18.2.0 || 19.0.0 || 19.1.4", + "react-native": "^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.6", "react-native-macos": "^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0", "react-native-windows": "^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0" }, diff --git a/packages/components/Stack/package.json b/packages/components/Stack/package.json index dbb43a4b999..e4d9d898ffb 100644 --- a/packages/components/Stack/package.json +++ b/packages/components/Stack/package.json @@ -26,9 +26,9 @@ "build-core": "tsgo --outDir lib --module esnext --moduleResolution bundler", "clean": "fluentui-scripts clean", "depcheck": "fluentui-scripts depcheck", + "format": "fluentui-scripts format", "lint": "fluentui-scripts eslint", "lint-package": "fluentui-scripts lint-package", - "format": "fluentui-scripts format", "test": "fluentui-scripts jest", "update-snapshots": "fluentui-scripts jest -u" }, @@ -55,19 +55,19 @@ "@react-native-community/cli-platform-ios": "^20.0.0", "@react-native/babel-preset": "^0.81.0", "@react-native/metro-config": "^0.81.0", - "@types/react": "~19.1.0", + "@types/react": "~19.1.4", "@types/react-test-renderer": "^19.1.0", - "react": "19.1.0", - "react-native": "^0.81.0", + "react": "19.1.4", + "react-native": "^0.81.6", "react-native-macos": "^0.81.0", "react-native-windows": "^0.81.0", "react-test-renderer": "19.1.0" }, "peerDependencies": { "@office-iss/react-native-win32": "^0.74.0", - "@types/react": "~18.2.0 || ~19.0.0 || ~19.1.0", - "react": "18.2.0 || 19.0.0 || 19.1.0", - "react-native": "^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0", + "@types/react": "~18.2.0 || ~19.0.0 || ~19.1.4", + "react": "18.2.0 || 19.0.0 || 19.1.4", + "react-native": "^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.6", "react-native-macos": "^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0", "react-native-windows": "^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0" }, diff --git a/packages/components/Switch/package.json b/packages/components/Switch/package.json index 2b530813fb2..10a65e452b0 100644 --- a/packages/components/Switch/package.json +++ b/packages/components/Switch/package.json @@ -26,9 +26,9 @@ "build-core": "tsgo --outDir lib --module esnext --moduleResolution bundler", "clean": "fluentui-scripts clean", "depcheck": "fluentui-scripts depcheck", + "format": "fluentui-scripts format", "lint": "fluentui-scripts eslint", "lint-package": "fluentui-scripts lint-package", - "format": "fluentui-scripts format", "test": "fluentui-scripts jest", "update-snapshots": "fluentui-scripts jest -u" }, @@ -56,19 +56,19 @@ "@react-native-community/cli-platform-ios": "^20.0.0", "@react-native/babel-preset": "^0.81.0", "@react-native/metro-config": "^0.81.0", - "@types/react": "~19.1.0", + "@types/react": "~19.1.4", "@types/react-test-renderer": "^19.1.0", - "react": "19.1.0", - "react-native": "^0.81.0", + "react": "19.1.4", + "react-native": "^0.81.6", "react-native-macos": "^0.81.0", "react-native-windows": "^0.81.0", "react-test-renderer": "19.1.0" }, "peerDependencies": { "@office-iss/react-native-win32": "^0.74.0", - "@types/react": "~18.2.0 || ~19.0.0 || ~19.1.0", - "react": "18.2.0 || 19.0.0 || 19.1.0", - "react-native": "^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0", + "@types/react": "~18.2.0 || ~19.0.0 || ~19.1.4", + "react": "18.2.0 || 19.0.0 || 19.1.4", + "react-native": "^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.6", "react-native-macos": "^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0", "react-native-windows": "^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0" }, diff --git a/packages/components/TabList/package.json b/packages/components/TabList/package.json index 712b2f1a47b..8a69283698f 100644 --- a/packages/components/TabList/package.json +++ b/packages/components/TabList/package.json @@ -26,9 +26,9 @@ "build-core": "tsgo --outDir lib --module esnext --moduleResolution bundler", "clean": "fluentui-scripts clean", "depcheck": "fluentui-scripts depcheck", + "format": "fluentui-scripts format", "lint": "fluentui-scripts eslint", "lint-package": "fluentui-scripts lint-package", - "format": "fluentui-scripts format", "test": "fluentui-scripts jest", "update-snapshots": "fluentui-scripts jest -u" }, @@ -58,10 +58,10 @@ "@react-native-community/cli-platform-ios": "^20.0.0", "@react-native/babel-preset": "^0.81.0", "@react-native/metro-config": "^0.81.0", - "@types/react": "~19.1.0", + "@types/react": "~19.1.4", "@types/react-test-renderer": "^19.1.0", - "react": "19.1.0", - "react-native": "^0.81.0", + "react": "19.1.4", + "react-native": "^0.81.6", "react-native-macos": "^0.81.0", "react-native-svg": "^15.12.1", "react-native-windows": "^0.81.0", @@ -69,9 +69,9 @@ }, "peerDependencies": { "@office-iss/react-native-win32": "^0.74.0", - "@types/react": "~18.2.0 || ~19.0.0 || ~19.1.0", - "react": "18.2.0 || 19.0.0 || 19.1.0", - "react-native": "^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0", + "@types/react": "~18.2.0 || ~19.0.0 || ~19.1.4", + "react": "18.2.0 || 19.0.0 || 19.1.4", + "react-native": "^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.6", "react-native-macos": "^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0", "react-native-svg": ">=15.0.0 <15.13.0 || >=15.4.0 <15.13.0 || ^15.11.2 || ^15.12.1", "react-native-windows": "^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0" diff --git a/packages/components/Text/package.json b/packages/components/Text/package.json index ae619c9c373..f1a30f7cee6 100644 --- a/packages/components/Text/package.json +++ b/packages/components/Text/package.json @@ -26,9 +26,9 @@ "build-core": "tsgo --outDir lib --module esnext --moduleResolution bundler", "clean": "fluentui-scripts clean", "depcheck": "fluentui-scripts depcheck", + "format": "fluentui-scripts format", "lint": "fluentui-scripts eslint", "lint-package": "fluentui-scripts lint-package", - "format": "fluentui-scripts format", "test": "fluentui-scripts jest", "update-snapshots": "fluentui-scripts jest -u" }, @@ -54,19 +54,19 @@ "@react-native-community/cli-platform-ios": "^20.0.0", "@react-native/babel-preset": "^0.81.0", "@react-native/metro-config": "^0.81.0", - "@types/react": "~19.1.0", + "@types/react": "~19.1.4", "@types/react-test-renderer": "^19.1.0", - "react": "19.1.0", - "react-native": "^0.81.0", + "react": "19.1.4", + "react-native": "^0.81.6", "react-native-macos": "^0.81.0", "react-native-windows": "^0.81.0", "react-test-renderer": "19.1.0" }, "peerDependencies": { "@office-iss/react-native-win32": "^0.74.0", - "@types/react": "~18.2.0 || ~19.0.0 || ~19.1.0", - "react": "18.2.0 || 19.0.0 || 19.1.0", - "react-native": "^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0", + "@types/react": "~18.2.0 || ~19.0.0 || ~19.1.4", + "react": "18.2.0 || 19.0.0 || 19.1.4", + "react-native": "^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.6", "react-native-macos": "^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0", "react-native-windows": "^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0" }, diff --git a/packages/configs/kit-config/furn-preset.ts b/packages/configs/kit-config/furn-preset.ts index 04cf1f4772f..bd878321897 100644 --- a/packages/configs/kit-config/furn-preset.ts +++ b/packages/configs/kit-config/furn-preset.ts @@ -1,21 +1,51 @@ +// use require because this is directly invoked via rnx-kit.config.cjs and needs to be CommonJS const { presets } = require('@rnx-kit/align-deps'); -import type { Preset, Package } from '@rnx-kit/align-deps'; +// type imports are stripped so can use ESM style imports +import type { Package as RNXPackage, MetaPackage } from '@rnx-kit/align-deps'; /** * Types to make working with align-deps presets easier */ +/** Create our custom capability type */ +type RNXCapability = NonNullable[number]; +type Capability = + | RNXCapability + | 'core-win32' + | 'core-win32-dev-only' + | 'core-dev-only' + | 'core-windows-dev-only' + | 'core-android-dev-only' + | 'core-ios-dev-only' + | 'core-macos-dev-only' + | 'react-types' + | 'react-test-renderer-types' + | 'babel-preset-react-native' + | 'babel-core' + | 'tools-babel' + | 'tools-eslint' + | 'tools-jest' + | 'tools-jest-react' + | 'tools-core' + | 'tools-react-configs'; + +/** Remove the hard Capability type from Package as we are adding custom capabilities */ +type Package = Omit & { + capabilities?: Capability[]; +}; + /** Defined type for a specific version */ -type VersionPreset = Preset[string]; -/** Capability is not exported from @rnx-kit/align-deps */ -type Capability = NonNullable[number]; +type VersionPreset = Readonly>; +/** Presets as a whole */ +type Preset = Record; +/** Create our custom capability type */ /** Helper to remove readonly */ type Mutable = { -readonly [K in keyof T]: T[K] }; /** * Grab the presets from rnx-kit and modify them for Furn's use */ -const rnPresets: Preset = presets['microsoft/react-native']; +const rnPresets = presets['microsoft/react-native'] as Preset; /** * In FURN, there are places where we want to use react-native for testing purposes, but the libraries @@ -50,6 +80,7 @@ function toDevCapability(cap: Capability): Capability { function formFurnPreset(rnPreset: VersionPreset, _version: number): VersionPreset { const presetCore = rnPreset['core'] as Package; const presetReact = rnPreset['react'] as Package; + const presetWindows = rnPreset['core-windows'] as Package; const presetReactTestRenderer = rnPreset['react-test-renderer'] as Package; // create the new version of the preset @@ -72,7 +103,7 @@ function formFurnPreset(rnPreset: VersionPreset, _version: number): VersionPrese }, 'core-win32': { name: '@office-iss/react-native-win32', - version: presetCore.version, + version: presetWindows.version, capabilities: ['core'], }, 'tools-babel': { @@ -118,7 +149,8 @@ function formFurnPreset(rnPreset: VersionPreset, _version: number): VersionPrese }; // now add the dev capabilities and link to catalogs - for (const cap of Object.keys(newPreset)) { + for (const capString of Object.keys(newPreset)) { + const cap = capString as Capability; const pkgEntry = newPreset[cap] as Package; if (pkgEntry) { // patch metro/metro-core/etc packages to not allow progressing beyond 83.1 because diff --git a/packages/configs/kit-config/package.json b/packages/configs/kit-config/package.json index cac852e084d..8cd159e0110 100644 --- a/packages/configs/kit-config/package.json +++ b/packages/configs/kit-config/package.json @@ -20,11 +20,12 @@ "build-core": "tsgo" }, "dependencies": { - "@rnx-kit/align-deps": "^3.4.0", - "@rnx-kit/config": "^0.7.4" + "@rnx-kit/align-deps": "catalog:", + "@rnx-kit/config": "catalog:", + "@rnx-kit/types-kit-config": "catalog:" }, "devDependencies": { - "@rnx-kit/tsconfig": "^2.1.1" + "@rnx-kit/tsconfig": "catalog:" }, "furn": { "packageType": "tooling" diff --git a/packages/configs/kit-config/rnx-kit.config.cjs b/packages/configs/kit-config/rnx-kit.config.cjs index 50f2fcb8e6f..df98b99a83a 100644 --- a/packages/configs/kit-config/rnx-kit.config.cjs +++ b/packages/configs/kit-config/rnx-kit.config.cjs @@ -1,4 +1,4 @@ -/** @type {import('@rnx-kit/config').KitConfig} */ +/** @type {import('@rnx-kit/types-kit-config').KitConfig} */ const config = { kitType: 'library', alignDeps: { diff --git a/packages/deprecated/foundation-composable/package.json b/packages/deprecated/foundation-composable/package.json index c606780dcfb..975bc46dda0 100644 --- a/packages/deprecated/foundation-composable/package.json +++ b/packages/deprecated/foundation-composable/package.json @@ -27,9 +27,9 @@ "build-core": "tsgo --outDir lib --module esnext --moduleResolution bundler", "clean": "fluentui-scripts clean", "depcheck": "fluentui-scripts depcheck", + "format": "fluentui-scripts format", "lint": "fluentui-scripts eslint", "lint-package": "fluentui-scripts lint-package", - "format": "fluentui-scripts format", "start": "fluentui-scripts dev", "start-test": "fluentui-scripts jest-watch", "test": "fluentui-scripts jest", @@ -43,14 +43,14 @@ "@fluentui-react-native/eslint-config-rules": "workspace:*", "@fluentui-react-native/kit-config": "workspace:*", "@fluentui-react-native/scripts": "workspace:*", - "@types/react": "~19.1.0", - "react": "19.1.0", - "react-native": "^0.81.0" + "@types/react": "~19.1.4", + "react": "19.1.4", + "react-native": "^0.81.6" }, "peerDependencies": { - "@types/react": "~18.2.0 || ~19.0.0 || ~19.1.0", - "react": "18.2.0 || 19.0.0 || 19.1.0", - "react-native": "^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0" + "@types/react": "~18.2.0 || ~19.0.0 || ~19.1.4", + "react": "18.2.0 || 19.0.0 || 19.1.4", + "react-native": "^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.6" }, "peerDependenciesMeta": { "@types/react": { diff --git a/packages/deprecated/foundation-compose/package.json b/packages/deprecated/foundation-compose/package.json index 1ed64dc13db..efde898d38f 100644 --- a/packages/deprecated/foundation-compose/package.json +++ b/packages/deprecated/foundation-compose/package.json @@ -27,9 +27,9 @@ "build-core": "tsgo --outDir lib --module esnext --moduleResolution bundler", "clean": "fluentui-scripts clean", "depcheck": "fluentui-scripts depcheck", + "format": "fluentui-scripts format", "lint": "fluentui-scripts eslint", "lint-package": "fluentui-scripts lint-package", - "format": "fluentui-scripts format", "start": "fluentui-scripts dev", "start-test": "fluentui-scripts jest-watch", "test": "fluentui-scripts jest", @@ -50,17 +50,17 @@ "@fluentui-react-native/kit-config": "workspace:*", "@fluentui-react-native/scripts": "workspace:*", "@office-iss/react-native-win32": "^0.81.0", - "@types/react": "~19.1.0", - "react": "19.1.0", - "react-native": "^0.81.0", + "@types/react": "~19.1.4", + "react": "19.1.4", + "react-native": "^0.81.6", "react-native-macos": "^0.81.0", "react-native-windows": "^0.81.0" }, "peerDependencies": { "@office-iss/react-native-win32": "^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0", - "@types/react": "~18.2.0 || ~19.0.0 || ~19.1.0", - "react": "18.2.0 || 19.0.0 || 19.1.0", - "react-native": "^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0", + "@types/react": "~18.2.0 || ~19.0.0 || ~19.1.4", + "react": "18.2.0 || 19.0.0 || 19.1.4", + "react-native": "^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.6", "react-native-macos": "^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0", "react-native-windows": "^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0" }, diff --git a/packages/deprecated/foundation-settings/package.json b/packages/deprecated/foundation-settings/package.json index a16f087c7fb..00fae293ff5 100644 --- a/packages/deprecated/foundation-settings/package.json +++ b/packages/deprecated/foundation-settings/package.json @@ -27,9 +27,9 @@ "build-core": "tsgo --outDir lib --module esnext --moduleResolution bundler", "clean": "fluentui-scripts clean", "depcheck": "fluentui-scripts depcheck", + "format": "fluentui-scripts format", "lint": "fluentui-scripts eslint", "lint-package": "fluentui-scripts lint-package", - "format": "fluentui-scripts format", "start": "fluentui-scripts dev", "start-test": "fluentui-scripts jest-watch", "test": "fluentui-scripts jest", @@ -45,13 +45,13 @@ "@fluentui-react-native/react-configs": "workspace:*", "@fluentui-react-native/scripts": "workspace:*", "@types/jest": "^29.0.0", - "@types/react": "~19.1.0", - "react": "19.1.0", - "react-native": "^0.81.0" + "@types/react": "~19.1.4", + "react": "19.1.4", + "react-native": "^0.81.6" }, "peerDependencies": { - "@types/react": "~18.2.0 || ~19.0.0 || ~19.1.0", - "react": "18.2.0 || 19.0.0 || 19.1.0" + "@types/react": "~18.2.0 || ~19.0.0 || ~19.1.4", + "react": "18.2.0 || 19.0.0 || 19.1.4" }, "peerDependenciesMeta": { "@types/react": { diff --git a/packages/deprecated/foundation-tokens/package.json b/packages/deprecated/foundation-tokens/package.json index b04af38e98f..5a5e69ff4e3 100644 --- a/packages/deprecated/foundation-tokens/package.json +++ b/packages/deprecated/foundation-tokens/package.json @@ -27,9 +27,9 @@ "build-core": "tsgo --outDir lib --module esnext --moduleResolution bundler", "clean": "fluentui-scripts clean", "depcheck": "fluentui-scripts depcheck", + "format": "fluentui-scripts format", "lint": "fluentui-scripts eslint", "lint-package": "fluentui-scripts lint-package", - "format": "fluentui-scripts format", "start": "fluentui-scripts dev", "start-test": "fluentui-scripts jest-watch", "test": "fluentui-scripts jest", @@ -54,17 +54,17 @@ "@react-native/babel-preset": "^0.81.0", "@react-native/metro-config": "^0.81.0", "@types/jest": "^29.0.0", - "@types/react": "~19.1.0", - "react": "19.1.0", - "react-native": "^0.81.0", + "@types/react": "~19.1.4", + "react": "19.1.4", + "react-native": "^0.81.6", "react-native-macos": "^0.81.0", "react-native-windows": "^0.81.0" }, "peerDependencies": { "@office-iss/react-native-win32": "^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0", - "@types/react": "~18.2.0 || ~19.0.0 || ~19.1.0", - "react": "18.2.0 || 19.0.0 || 19.1.0", - "react-native": "^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0", + "@types/react": "~18.2.0 || ~19.0.0 || ~19.1.4", + "react": "18.2.0 || 19.0.0 || 19.1.4", + "react-native": "^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.6", "react-native-macos": "^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0", "react-native-windows": "^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0" }, diff --git a/packages/deprecated/theme-registry/package.json b/packages/deprecated/theme-registry/package.json index 88b79a15c5b..7e61d00c901 100644 --- a/packages/deprecated/theme-registry/package.json +++ b/packages/deprecated/theme-registry/package.json @@ -27,9 +27,9 @@ "build-core": "tsgo --outDir lib --module esnext --moduleResolution bundler", "clean": "fluentui-scripts clean", "depcheck": "fluentui-scripts depcheck", + "format": "fluentui-scripts format", "lint": "fluentui-scripts eslint", "lint-package": "fluentui-scripts lint-package", - "format": "fluentui-scripts format", "start": "fluentui-scripts dev", "start-test": "fluentui-scripts jest-watch", "test": "fluentui-scripts jest", @@ -45,13 +45,13 @@ "@react-native/babel-preset": "^0.74.0", "@react-native/metro-config": "^0.74.0", "@types/jest": "^29.0.0", - "@types/react": "~19.1.0", - "react": "19.1.0", - "react-native": "^0.81.0" + "@types/react": "~19.1.4", + "react": "19.1.4", + "react-native": "^0.81.6" }, "peerDependencies": { - "@types/react": "~18.2.0 || ~19.0.0 || ~19.1.0", - "react": "18.2.0 || 19.0.0 || 19.1.0" + "@types/react": "~18.2.0 || ~19.0.0 || ~19.1.4", + "react": "18.2.0 || 19.0.0 || 19.1.4" }, "peerDependenciesMeta": { "@types/react": { diff --git a/packages/deprecated/themed-settings/package.json b/packages/deprecated/themed-settings/package.json index 9e088a227f7..687c4ed0af3 100644 --- a/packages/deprecated/themed-settings/package.json +++ b/packages/deprecated/themed-settings/package.json @@ -27,9 +27,9 @@ "build-core": "tsgo --outDir lib --module esnext --moduleResolution bundler", "clean": "fluentui-scripts clean", "depcheck": "fluentui-scripts depcheck", + "format": "fluentui-scripts format", "lint": "fluentui-scripts eslint", "lint-package": "fluentui-scripts lint-package", - "format": "fluentui-scripts format", "start": "fluentui-scripts dev", "start-test": "fluentui-scripts jest-watch", "test": "fluentui-scripts jest", @@ -48,13 +48,13 @@ "@react-native/babel-preset": "^0.81.0", "@types/jest": "^29.0.0", "@types/node": "catalog:", - "@types/react": "~19.1.0", - "react": "19.1.0", - "react-native": "^0.81.0" + "@types/react": "~19.1.4", + "react": "19.1.4", + "react-native": "^0.81.6" }, "peerDependencies": { - "@types/react": "~18.2.0 || ~19.0.0 || ~19.1.0", - "react": "18.2.0 || 19.0.0 || 19.1.0" + "@types/react": "~18.2.0 || ~19.0.0 || ~19.1.4", + "react": "18.2.0 || 19.0.0 || 19.1.4" }, "peerDependenciesMeta": { "@types/react": { diff --git a/packages/deprecated/theming-ramp/package.json b/packages/deprecated/theming-ramp/package.json index c4281d1142a..59b32b57056 100644 --- a/packages/deprecated/theming-ramp/package.json +++ b/packages/deprecated/theming-ramp/package.json @@ -27,9 +27,9 @@ "build-core": "tsgo --outDir lib --module esnext --moduleResolution bundler", "clean": "fluentui-scripts clean", "depcheck": "fluentui-scripts depcheck", + "format": "fluentui-scripts format", "lint": "fluentui-scripts eslint", "lint-package": "fluentui-scripts lint-package", - "format": "fluentui-scripts format", "start": "fluentui-scripts dev", "start-test": "fluentui-scripts jest-watch", "test": "fluentui-scripts jest", @@ -48,13 +48,13 @@ "@fluentui-react-native/scripts": "workspace:*", "@fluentui-react-native/test-tools": "workspace:*", "@types/jest": "^29.0.0", - "@types/react": "~19.1.0", - "react": "19.1.0", - "react-native": "^0.81.0" + "@types/react": "~19.1.4", + "react": "19.1.4", + "react-native": "^0.81.6" }, "peerDependencies": { - "@types/react": "~18.2.0 || ~19.0.0 || ~19.1.0", - "react": "18.2.0 || 19.0.0 || 19.1.0", + "@types/react": "~18.2.0 || ~19.0.0 || ~19.1.4", + "react": "18.2.0 || 19.0.0 || 19.1.4", "react-native": "^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0" }, "peerDependenciesMeta": { diff --git a/packages/deprecated/theming-react-native/package.json b/packages/deprecated/theming-react-native/package.json index 5490fbd0bf0..ed61ecda77b 100644 --- a/packages/deprecated/theming-react-native/package.json +++ b/packages/deprecated/theming-react-native/package.json @@ -27,9 +27,9 @@ "build-core": "tsgo --outDir lib --module esnext --moduleResolution bundler", "clean": "fluentui-scripts clean", "depcheck": "fluentui-scripts depcheck", + "format": "fluentui-scripts format", "lint": "fluentui-scripts eslint", "lint-package": "fluentui-scripts lint-package", - "format": "fluentui-scripts format", "start": "fluentui-scripts dev", "start-test": "fluentui-scripts jest-watch", "test": "fluentui-scripts jest", @@ -52,17 +52,17 @@ "@react-native-community/cli-platform-android": "^20.0.0", "@react-native-community/cli-platform-ios": "^20.0.0", "@react-native/metro-config": "^0.81.0", - "@types/react": "~19.1.0", - "react": "19.1.0", - "react-native": "^0.81.0", + "@types/react": "~19.1.4", + "react": "19.1.4", + "react-native": "^0.81.6", "react-native-macos": "^0.81.0", "react-native-windows": "^0.81.0" }, "peerDependencies": { "@office-iss/react-native-win32": "^0.74.0", - "@types/react": "~18.2.0 || ~19.0.0 || ~19.1.0", - "react": "18.2.0 || 19.0.0 || 19.1.0", - "react-native": "^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0", + "@types/react": "~18.2.0 || ~19.0.0 || ~19.1.4", + "react": "18.2.0 || 19.0.0 || 19.1.4", + "react-native": "^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.6", "react-native-macos": "^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0", "react-native-windows": "^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0" }, diff --git a/packages/experimental/ActivityIndicator/package.json b/packages/experimental/ActivityIndicator/package.json index 660c9d81c7a..483feb8ca97 100644 --- a/packages/experimental/ActivityIndicator/package.json +++ b/packages/experimental/ActivityIndicator/package.json @@ -26,9 +26,9 @@ "build-core": "tsgo --outDir lib --module esnext --moduleResolution bundler", "clean": "fluentui-scripts clean", "depcheck": "fluentui-scripts depcheck", + "format": "fluentui-scripts format", "lint": "fluentui-scripts eslint", "lint-package": "fluentui-scripts lint-package", - "format": "fluentui-scripts format", "test": "fluentui-scripts jest", "update-snapshots": "fluentui-scripts jest -u" }, @@ -47,18 +47,18 @@ "@react-native-community/cli-platform-ios": "^20.0.0", "@react-native/babel-preset": "^0.74.0", "@react-native/metro-config": "^0.81.0", - "@types/react": "~19.1.0", - "react": "19.1.0", - "react-native": "^0.81.0", + "@types/react": "~19.1.4", + "react": "19.1.4", + "react-native": "^0.81.6", "react-native-macos": "^0.81.0", "react-native-svg": "^15.12.1", "react-native-windows": "^0.81.0" }, "peerDependencies": { "@office-iss/react-native-win32": "^0.74.0", - "@types/react": "~18.2.0 || ~19.0.0 || ~19.1.0", - "react": "18.2.0 || 19.0.0 || 19.1.0", - "react-native": "^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0", + "@types/react": "~18.2.0 || ~19.0.0 || ~19.1.4", + "react": "18.2.0 || 19.0.0 || 19.1.4", + "react-native": "^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.6", "react-native-macos": "^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0", "react-native-svg": ">=15.0.0 <15.13.0 || >=15.4.0 <15.13.0 || ^15.11.2 || ^15.12.1", "react-native-windows": "^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0" diff --git a/packages/experimental/AppearanceAdditions/package.json b/packages/experimental/AppearanceAdditions/package.json index ad48ee4ce78..5aa44148050 100644 --- a/packages/experimental/AppearanceAdditions/package.json +++ b/packages/experimental/AppearanceAdditions/package.json @@ -27,9 +27,9 @@ "build-core": "tsgo --outDir lib --module esnext --moduleResolution bundler", "clean": "fluentui-scripts clean", "depcheck": "fluentui-scripts depcheck", + "format": "fluentui-scripts format", "lint": "fluentui-scripts eslint", "lint-package": "fluentui-scripts lint-package", - "format": "fluentui-scripts format", "test": "fluentui-scripts jest", "update-snapshots": "fluentui-scripts jest -u" }, @@ -48,18 +48,18 @@ "@react-native-community/cli-platform-android": "^20.0.0", "@react-native-community/cli-platform-ios": "^20.0.0", "@react-native/metro-config": "^0.81.0", - "@types/react": "~19.1.0", + "@types/react": "~19.1.4", "@types/use-subscription": "^1.0.0", - "react": "19.1.0", - "react-native": "^0.81.0", + "react": "19.1.4", + "react-native": "^0.81.6", "react-native-macos": "^0.81.0", "react-native-windows": "^0.81.0" }, "peerDependencies": { "@office-iss/react-native-win32": "^0.74.0", - "@types/react": "~18.2.0 || ~19.0.0 || ~19.1.0", - "react": "18.2.0 || 19.0.0 || 19.1.0", - "react-native": "^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0", + "@types/react": "~18.2.0 || ~19.0.0 || ~19.1.4", + "react": "18.2.0 || 19.0.0 || 19.1.4", + "react-native": "^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.6", "react-native-macos": "^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0", "react-native-windows": "^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0" }, diff --git a/packages/experimental/Avatar/package.json b/packages/experimental/Avatar/package.json index ee6ebe118ab..855e2f86fe8 100644 --- a/packages/experimental/Avatar/package.json +++ b/packages/experimental/Avatar/package.json @@ -27,9 +27,9 @@ "build-core": "tsgo --outDir lib --module esnext --moduleResolution bundler", "clean": "fluentui-scripts clean", "depcheck": "fluentui-scripts depcheck", + "format": "fluentui-scripts format", "lint": "fluentui-scripts eslint", "lint-package": "fluentui-scripts lint-package", - "format": "fluentui-scripts format", "test": "fluentui-scripts jest", "update-snapshots": "fluentui-scripts jest -u" }, @@ -47,19 +47,19 @@ "@react-native-community/cli-platform-android": "^20.0.0", "@react-native-community/cli-platform-ios": "^20.0.0", "@react-native/metro-config": "^0.81.0", - "@types/react": "~19.1.0", + "@types/react": "~19.1.4", "@types/react-test-renderer": "^19.1.0", - "react": "19.1.0", - "react-native": "^0.81.0", + "react": "19.1.4", + "react-native": "^0.81.6", "react-native-macos": "^0.81.0", "react-native-windows": "^0.81.0", "react-test-renderer": "19.1.0" }, "peerDependencies": { "@office-iss/react-native-win32": "^0.74.0", - "@types/react": "~18.2.0 || ~19.0.0 || ~19.1.0", - "react": "18.2.0 || 19.0.0 || 19.1.0", - "react-native": "^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0", + "@types/react": "~18.2.0 || ~19.0.0 || ~19.1.4", + "react": "18.2.0 || 19.0.0 || 19.1.4", + "react-native": "^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.6", "react-native-macos": "^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0", "react-native-windows": "^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0" }, diff --git a/packages/experimental/Checkbox/package.json b/packages/experimental/Checkbox/package.json index 46bcb8a2630..fe49707af8d 100644 --- a/packages/experimental/Checkbox/package.json +++ b/packages/experimental/Checkbox/package.json @@ -26,9 +26,9 @@ "build-core": "tsgo --outDir lib --module esnext --moduleResolution bundler", "clean": "fluentui-scripts clean", "depcheck": "fluentui-scripts depcheck", + "format": "fluentui-scripts format", "lint": "fluentui-scripts eslint", "lint-package": "fluentui-scripts lint-package", - "format": "fluentui-scripts format", "test": "fluentui-scripts jest", "update-snapshots": "fluentui-scripts jest -u" }, @@ -49,18 +49,18 @@ "@react-native-community/cli-platform-ios": "^20.0.0", "@react-native/babel-preset": "^0.74.0", "@react-native/metro-config": "^0.81.0", - "@types/react": "~19.1.0", - "react": "19.1.0", - "react-native": "^0.81.0", + "@types/react": "~19.1.4", + "react": "19.1.4", + "react-native": "^0.81.6", "react-native-macos": "^0.81.0", "react-native-svg": "^15.12.1", "react-native-windows": "^0.81.0" }, "peerDependencies": { "@office-iss/react-native-win32": "^0.74.0", - "@types/react": "~18.2.0 || ~19.0.0 || ~19.1.0", - "react": "18.2.0 || 19.0.0 || 19.1.0", - "react-native": "^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0", + "@types/react": "~18.2.0 || ~19.0.0 || ~19.1.4", + "react": "18.2.0 || 19.0.0 || 19.1.4", + "react-native": "^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.6", "react-native-macos": "^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0", "react-native-svg": ">=15.0.0 <15.13.0 || >=15.4.0 <15.13.0 || ^15.11.2 || ^15.12.1", "react-native-windows": "^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0" diff --git a/packages/experimental/Drawer/package.json b/packages/experimental/Drawer/package.json index 5a32b67c16f..fa2c500fff3 100644 --- a/packages/experimental/Drawer/package.json +++ b/packages/experimental/Drawer/package.json @@ -26,9 +26,9 @@ "build-core": "tsgo --outDir lib --module esnext --moduleResolution bundler", "clean": "fluentui-scripts clean", "depcheck": "fluentui-scripts depcheck", + "format": "fluentui-scripts format", "lint": "fluentui-scripts eslint", "lint-package": "fluentui-scripts lint-package", - "format": "fluentui-scripts format", "test": "fluentui-scripts jest", "update-snapshots": "fluentui-scripts jest -u" }, @@ -51,19 +51,19 @@ "@react-native-community/cli-platform-ios": "^20.0.0", "@react-native/babel-preset": "^0.81.0", "@react-native/metro-config": "^0.81.0", - "@types/react": "~19.1.0", + "@types/react": "~19.1.4", "@types/react-test-renderer": "^19.1.0", - "react": "19.1.0", - "react-native": "^0.81.0", + "react": "19.1.4", + "react-native": "^0.81.6", "react-native-macos": "^0.81.0", "react-native-windows": "^0.81.0", "react-test-renderer": "19.1.0" }, "peerDependencies": { "@office-iss/react-native-win32": "^0.74.0", - "@types/react": "~18.2.0 || ~19.0.0 || ~19.1.0", - "react": "18.2.0 || 19.0.0 || 19.1.0", - "react-native": "^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0", + "@types/react": "~18.2.0 || ~19.0.0 || ~19.1.4", + "react": "18.2.0 || 19.0.0 || 19.1.4", + "react-native": "^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.6", "react-native-macos": "^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0", "react-native-windows": "^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0" }, diff --git a/packages/experimental/Dropdown/package.json b/packages/experimental/Dropdown/package.json index de3564b4169..95320686509 100644 --- a/packages/experimental/Dropdown/package.json +++ b/packages/experimental/Dropdown/package.json @@ -26,9 +26,9 @@ "build-core": "tsgo --outDir lib --module esnext --moduleResolution bundler", "clean": "fluentui-scripts clean", "depcheck": "fluentui-scripts depcheck", + "format": "fluentui-scripts format", "lint": "fluentui-scripts eslint", "lint-package": "fluentui-scripts lint-package", - "format": "fluentui-scripts format", "test": "fluentui-scripts jest", "update-snapshots": "fluentui-scripts jest -u" }, @@ -54,18 +54,18 @@ "@react-native-community/cli-platform-ios": "^20.0.0", "@react-native/babel-preset": "^0.74.0", "@react-native/metro-config": "^0.81.0", - "@types/react": "~19.1.0", - "react": "19.1.0", - "react-native": "^0.81.0", + "@types/react": "~19.1.4", + "react": "19.1.4", + "react-native": "^0.81.6", "react-native-macos": "^0.81.0", "react-native-svg": "^15.12.1", "react-native-windows": "^0.81.0" }, "peerDependencies": { "@office-iss/react-native-win32": "^0.74.0", - "@types/react": "~18.2.0 || ~19.0.0 || ~19.1.0", - "react": "18.2.0 || 19.0.0 || 19.1.0", - "react-native": "^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0", + "@types/react": "~18.2.0 || ~19.0.0 || ~19.1.4", + "react": "18.2.0 || 19.0.0 || 19.1.4", + "react-native": "^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.6", "react-native-macos": "^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0", "react-native-svg": ">=15.0.0 <15.13.0 || >=15.4.0 <15.13.0 || ^15.11.2 || ^15.12.1", "react-native-windows": "^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0" diff --git a/packages/experimental/Expander/package.json b/packages/experimental/Expander/package.json index 1e62c0fd6b8..4cc9ac3203d 100644 --- a/packages/experimental/Expander/package.json +++ b/packages/experimental/Expander/package.json @@ -49,17 +49,17 @@ "@react-native-community/cli-platform-android": "^20.0.0", "@react-native-community/cli-platform-ios": "^20.0.0", "@react-native/metro-config": "^0.81.0", - "@types/react": "~19.1.0", - "react": "19.1.0", - "react-native": "^0.81.0", + "@types/react": "~19.1.4", + "react": "19.1.4", + "react-native": "^0.81.6", "react-native-macos": "^0.81.0", "react-native-windows": "^0.81.0" }, "peerDependencies": { "@office-iss/react-native-win32": "^0.74.0", - "@types/react": "~18.2.0 || ~19.0.0 || ~19.1.0", - "react": "18.2.0 || 19.0.0 || 19.1.0", - "react-native": "^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0", + "@types/react": "~18.2.0 || ~19.0.0 || ~19.1.4", + "react": "18.2.0 || 19.0.0 || 19.1.4", + "react-native": "^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.6", "react-native-macos": "^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0", "react-native-windows": "^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0" }, diff --git a/packages/experimental/MenuButton/package.json b/packages/experimental/MenuButton/package.json index ba54ea8795f..7fe5505f8e7 100644 --- a/packages/experimental/MenuButton/package.json +++ b/packages/experimental/MenuButton/package.json @@ -26,9 +26,9 @@ "build-core": "tsgo --outDir lib --module esnext --moduleResolution bundler", "clean": "fluentui-scripts clean", "depcheck": "fluentui-scripts depcheck", + "format": "fluentui-scripts format", "lint": "fluentui-scripts eslint", "lint-package": "fluentui-scripts lint-package", - "format": "fluentui-scripts format", "test": "fluentui-scripts jest", "update-snapshots": "fluentui-scripts jest -u" }, @@ -52,10 +52,10 @@ "@react-native-community/cli-platform-ios": "^20.0.0", "@react-native/babel-preset": "^0.81.0", "@react-native/metro-config": "^0.81.0", - "@types/react": "~19.1.0", + "@types/react": "~19.1.4", "@types/react-test-renderer": "^19.1.0", - "react": "19.1.0", - "react-native": "^0.81.0", + "react": "19.1.4", + "react-native": "^0.81.6", "react-native-macos": "^0.81.0", "react-native-svg": "^15.12.1", "react-native-windows": "^0.81.0", @@ -63,9 +63,9 @@ }, "peerDependencies": { "@office-iss/react-native-win32": "^0.74.0", - "@types/react": "~18.2.0 || ~19.0.0 || ~19.1.0", - "react": "18.2.0 || 19.0.0 || 19.1.0", - "react-native": "^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0", + "@types/react": "~18.2.0 || ~19.0.0 || ~19.1.4", + "react": "18.2.0 || 19.0.0 || 19.1.4", + "react-native": "^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.6", "react-native-macos": "^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0", "react-native-svg": ">=15.0.0 <15.13.0 || >=15.4.0 <15.13.0 || ^15.11.2 || ^15.12.1", "react-native-windows": "^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0" diff --git a/packages/experimental/NativeDatePicker/package.json b/packages/experimental/NativeDatePicker/package.json index 063d43686ae..91411626ba3 100644 --- a/packages/experimental/NativeDatePicker/package.json +++ b/packages/experimental/NativeDatePicker/package.json @@ -27,9 +27,9 @@ "build-core": "tsgo --outDir lib --module esnext --moduleResolution bundler", "clean": "fluentui-scripts clean", "depcheck": "fluentui-scripts depcheck", + "format": "fluentui-scripts format", "lint": "fluentui-scripts eslint", "lint-package": "fluentui-scripts lint-package", - "format": "fluentui-scripts format", "test": "fluentui-scripts jest", "update-snapshots": "fluentui-scripts jest -u" }, @@ -43,14 +43,14 @@ "@react-native-community/cli-platform-android": "^20.0.0", "@react-native-community/cli-platform-ios": "^20.0.0", "@react-native/metro-config": "^0.81.0", - "@types/react": "~19.1.0", - "react": "19.1.0", - "react-native": "^0.81.0" + "@types/react": "~19.1.4", + "react": "19.1.4", + "react-native": "^0.81.6" }, "peerDependencies": { - "@types/react": "~18.2.0 || ~19.0.0 || ~19.1.0", - "react": "18.2.0 || 19.0.0 || 19.1.0", - "react-native": "^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0" + "@types/react": "~18.2.0 || ~19.0.0 || ~19.1.4", + "react": "18.2.0 || 19.0.0 || 19.1.4", + "react-native": "^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.6" }, "peerDependenciesMeta": { "@types/react": { diff --git a/packages/experimental/NativeFontMetrics/package.json b/packages/experimental/NativeFontMetrics/package.json index d2178d35083..ba7a851f1d6 100644 --- a/packages/experimental/NativeFontMetrics/package.json +++ b/packages/experimental/NativeFontMetrics/package.json @@ -27,9 +27,9 @@ "build-core": "tsgo --outDir lib --module esnext --moduleResolution bundler", "clean": "fluentui-scripts clean", "depcheck": "fluentui-scripts depcheck", + "format": "fluentui-scripts format", "lint": "fluentui-scripts eslint", "lint-package": "fluentui-scripts lint-package", - "format": "fluentui-scripts format", "test": "fluentui-scripts jest", "update-snapshots": "fluentui-scripts jest -u" }, @@ -46,15 +46,15 @@ "@react-native-community/cli-platform-android": "^20.0.0", "@react-native-community/cli-platform-ios": "^20.0.0", "@react-native/metro-config": "^0.81.0", - "@types/react": "~19.1.0", + "@types/react": "~19.1.4", "@types/use-subscription": "^1.0.0", - "react": "19.1.0", - "react-native": "^0.81.0" + "react": "19.1.4", + "react-native": "^0.81.6" }, "peerDependencies": { - "@types/react": "~18.2.0 || ~19.0.0 || ~19.1.0", - "react": "18.2.0 || 19.0.0 || 19.1.0", - "react-native": "^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0" + "@types/react": "~18.2.0 || ~19.0.0 || ~19.1.4", + "react": "18.2.0 || 19.0.0 || 19.1.4", + "react-native": "^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.6" }, "peerDependenciesMeta": { "@types/react": { diff --git a/packages/experimental/Overflow/package.json b/packages/experimental/Overflow/package.json index 957183771d0..ad049e11596 100644 --- a/packages/experimental/Overflow/package.json +++ b/packages/experimental/Overflow/package.json @@ -26,9 +26,9 @@ "build-core": "tsgo --outDir lib --module esnext --moduleResolution bundler", "clean": "fluentui-scripts clean", "depcheck": "fluentui-scripts depcheck", + "format": "fluentui-scripts format", "lint": "fluentui-scripts eslint", "lint-package": "fluentui-scripts lint-package", - "format": "fluentui-scripts format", "test": "fluentui-scripts jest", "update-snapshots": "fluentui-scripts jest -u" }, @@ -48,10 +48,10 @@ "@fluentui-react-native/test-tools": "workspace:*", "@office-iss/react-native-win32": "^0.74.0", "@react-native/babel-preset": "^0.81.0", - "@types/react": "~19.1.0", + "@types/react": "~19.1.4", "@types/react-test-renderer": "^19.1.0", - "react": "19.1.0", - "react-native": "^0.81.0", + "react": "19.1.4", + "react-native": "^0.81.6", "react-native-macos": "^0.81.0", "react-native-svg": "^15.12.1", "react-native-windows": "^0.81.0", @@ -59,9 +59,9 @@ }, "peerDependencies": { "@office-iss/react-native-win32": "^0.74.0", - "@types/react": "~18.2.0 || ~19.0.0 || ~19.1.0", - "react": "18.2.0 || 19.0.0 || 19.1.0", - "react-native": "^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0", + "@types/react": "~18.2.0 || ~19.0.0 || ~19.1.4", + "react": "18.2.0 || 19.0.0 || 19.1.4", + "react-native": "^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.6", "react-native-macos": "^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0", "react-native-svg": ">=15.0.0 <15.13.0 || >=15.4.0 <15.13.0 || ^15.11.2 || ^15.12.1", "react-native-windows": "^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0" diff --git a/packages/experimental/Popover/package.json b/packages/experimental/Popover/package.json index 63b765190d7..8eac64fe6c3 100644 --- a/packages/experimental/Popover/package.json +++ b/packages/experimental/Popover/package.json @@ -26,9 +26,9 @@ "build-core": "tsgo --outDir lib --module esnext --moduleResolution bundler", "clean": "fluentui-scripts clean", "depcheck": "fluentui-scripts depcheck", + "format": "fluentui-scripts format", "lint": "fluentui-scripts eslint", "lint-package": "fluentui-scripts lint-package", - "format": "fluentui-scripts format", "test": "fluentui-scripts jest", "update-snapshots": "fluentui-scripts jest -u" }, @@ -47,17 +47,17 @@ "@react-native-community/cli-platform-android": "^20.0.0", "@react-native-community/cli-platform-ios": "^20.0.0", "@react-native/metro-config": "^0.81.0", - "@types/react": "~19.1.0", - "react": "19.1.0", - "react-native": "^0.81.0", + "@types/react": "~19.1.4", + "react": "19.1.4", + "react-native": "^0.81.6", "react-native-macos": "^0.81.0", "react-native-windows": "^0.81.0" }, "peerDependencies": { "@office-iss/react-native-win32": "^0.74.0", - "@types/react": "~18.2.0 || ~19.0.0 || ~19.1.0", - "react": "18.2.0 || 19.0.0 || 19.1.0", - "react-native": "^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0", + "@types/react": "~18.2.0 || ~19.0.0 || ~19.1.4", + "react": "18.2.0 || 19.0.0 || 19.1.4", + "react-native": "^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.6", "react-native-macos": "^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0", "react-native-windows": "^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0" }, diff --git a/packages/experimental/Shadow/package.json b/packages/experimental/Shadow/package.json index 98c5b56853f..a4371e31e3d 100644 --- a/packages/experimental/Shadow/package.json +++ b/packages/experimental/Shadow/package.json @@ -26,9 +26,9 @@ "build-core": "tsgo --outDir lib --module esnext --moduleResolution bundler", "clean": "fluentui-scripts clean", "depcheck": "fluentui-scripts depcheck", + "format": "fluentui-scripts format", "lint": "fluentui-scripts eslint", "lint-package": "fluentui-scripts lint-package", - "format": "fluentui-scripts format", "test": "fluentui-scripts jest", "update-snapshots": "fluentui-scripts jest -u" }, @@ -51,19 +51,19 @@ "@react-native-community/cli-platform-ios": "^20.0.0", "@react-native/babel-preset": "^0.81.0", "@react-native/metro-config": "^0.81.0", - "@types/react": "~19.1.0", + "@types/react": "~19.1.4", "@types/react-test-renderer": "^19.1.0", - "react": "19.1.0", - "react-native": "^0.81.0", + "react": "19.1.4", + "react-native": "^0.81.6", "react-native-macos": "^0.81.0", "react-native-windows": "^0.81.0", "react-test-renderer": "19.1.0" }, "peerDependencies": { "@office-iss/react-native-win32": "^0.74.0", - "@types/react": "~18.2.0 || ~19.0.0 || ~19.1.0", - "react": "18.2.0 || 19.0.0 || 19.1.0", - "react-native": "^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0", + "@types/react": "~18.2.0 || ~19.0.0 || ~19.1.4", + "react": "18.2.0 || 19.0.0 || 19.1.4", + "react-native": "^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.6", "react-native-macos": "^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0", "react-native-windows": "^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0" }, diff --git a/packages/experimental/Shimmer/package.json b/packages/experimental/Shimmer/package.json index 0cdb6d14e63..bf526498b5e 100644 --- a/packages/experimental/Shimmer/package.json +++ b/packages/experimental/Shimmer/package.json @@ -26,9 +26,9 @@ "build-core": "tsgo --outDir lib --module esnext --moduleResolution bundler", "clean": "fluentui-scripts clean", "depcheck": "fluentui-scripts depcheck", + "format": "fluentui-scripts format", "lint": "fluentui-scripts eslint", "lint-package": "fluentui-scripts lint-package", - "format": "fluentui-scripts format", "test": "fluentui-scripts jest", "update-snapshots": "fluentui-scripts jest -u" }, @@ -52,10 +52,10 @@ "@react-native-community/cli-platform-ios": "^20.0.0", "@react-native/babel-preset": "^0.81.0", "@react-native/metro-config": "^0.81.0", - "@types/react": "~19.1.0", + "@types/react": "~19.1.4", "@types/react-test-renderer": "^19.1.0", - "react": "19.1.0", - "react-native": "^0.81.0", + "react": "19.1.4", + "react-native": "^0.81.6", "react-native-macos": "^0.81.0", "react-native-svg": "^15.12.1", "react-native-windows": "^0.81.0", @@ -63,9 +63,9 @@ }, "peerDependencies": { "@office-iss/react-native-win32": "^0.74.0", - "@types/react": "~18.2.0 || ~19.0.0 || ~19.1.0", - "react": "18.2.0 || 19.0.0 || 19.1.0", - "react-native": "^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0", + "@types/react": "~18.2.0 || ~19.0.0 || ~19.1.4", + "react": "18.2.0 || 19.0.0 || 19.1.4", + "react-native": "^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.6", "react-native-macos": "^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0", "react-native-svg": ">=15.0.0 <15.13.0 || >=15.4.0 <15.13.0 || ^15.11.2 || ^15.12.1", "react-native-windows": "^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0" diff --git a/packages/experimental/Spinner/package.json b/packages/experimental/Spinner/package.json index dbf9a99a8bc..2ed2b59cc01 100644 --- a/packages/experimental/Spinner/package.json +++ b/packages/experimental/Spinner/package.json @@ -26,9 +26,9 @@ "build-core": "tsgo --outDir lib --module esnext --moduleResolution bundler", "clean": "fluentui-scripts clean", "depcheck": "fluentui-scripts depcheck", + "format": "fluentui-scripts format", "lint": "fluentui-scripts eslint", "lint-package": "fluentui-scripts lint-package", - "format": "fluentui-scripts format", "test": "fluentui-scripts jest", "update-snapshots": "fluentui-scripts jest -u" }, @@ -50,18 +50,18 @@ "@react-native-community/cli-platform-ios": "^20.0.0", "@react-native/babel-preset": "^0.74.0", "@react-native/metro-config": "^0.81.0", - "@types/react": "~19.1.0", - "react": "19.1.0", - "react-native": "^0.81.0", + "@types/react": "~19.1.4", + "react": "19.1.4", + "react-native": "^0.81.6", "react-native-macos": "^0.81.0", "react-native-svg": "^15.12.1", "react-native-windows": "^0.81.0" }, "peerDependencies": { "@office-iss/react-native-win32": "^0.74.0", - "@types/react": "~18.2.0 || ~19.0.0 || ~19.1.0", - "react": "18.2.0 || 19.0.0 || 19.1.0", - "react-native": "^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0", + "@types/react": "~18.2.0 || ~19.0.0 || ~19.1.4", + "react": "18.2.0 || 19.0.0 || 19.1.4", + "react-native": "^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.6", "react-native-macos": "^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0", "react-native-svg": ">=15.0.0 <15.13.0 || >=15.4.0 <15.13.0 || ^15.11.2 || ^15.12.1", "react-native-windows": "^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0" diff --git a/packages/experimental/Tooltip/package.json b/packages/experimental/Tooltip/package.json index 61d43e319c1..a7921e91971 100644 --- a/packages/experimental/Tooltip/package.json +++ b/packages/experimental/Tooltip/package.json @@ -26,9 +26,9 @@ "build-core": "tsgo --outDir lib --module esnext --moduleResolution bundler", "clean": "fluentui-scripts clean", "depcheck": "fluentui-scripts depcheck", + "format": "fluentui-scripts format", "lint": "fluentui-scripts eslint", "lint-package": "fluentui-scripts lint-package", - "format": "fluentui-scripts format", "test": "fluentui-scripts jest", "update-snapshots": "fluentui-scripts jest -u" }, @@ -47,10 +47,10 @@ "@fluentui-react-native/test-tools": "workspace:*", "@office-iss/react-native-win32": "^0.74.0", "@react-native/babel-preset": "^0.81.0", - "@types/react": "~19.1.0", + "@types/react": "~19.1.4", "@types/react-test-renderer": "^19.1.0", - "react": "19.1.0", - "react-native": "^0.81.0", + "react": "19.1.4", + "react-native": "^0.81.6", "react-native-macos": "^0.81.0", "react-native-svg": "^15.12.1", "react-native-windows": "^0.81.0", @@ -58,9 +58,9 @@ }, "peerDependencies": { "@office-iss/react-native-win32": "^0.74.0", - "@types/react": "~18.2.0 || ~19.0.0 || ~19.1.0", - "react": "18.2.0 || 19.0.0 || 19.1.0", - "react-native": "^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0", + "@types/react": "~18.2.0 || ~19.0.0 || ~19.1.4", + "react": "18.2.0 || 19.0.0 || 19.1.4", + "react-native": "^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.6", "react-native-macos": "^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0", "react-native-svg": ">=15.0.0 <15.13.0 || >=15.4.0 <15.13.0 || ^15.11.2 || ^15.12.1", "react-native-windows": "^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0" diff --git a/packages/experimental/VibrancyView/package.json b/packages/experimental/VibrancyView/package.json index 2772bb0178f..f8c69996cb8 100644 --- a/packages/experimental/VibrancyView/package.json +++ b/packages/experimental/VibrancyView/package.json @@ -27,9 +27,9 @@ "build-core": "tsgo --outDir lib --module esnext --moduleResolution bundler", "clean": "fluentui-scripts clean", "depcheck": "fluentui-scripts depcheck", + "format": "fluentui-scripts format", "lint": "fluentui-scripts eslint", "lint-package": "fluentui-scripts lint-package", - "format": "fluentui-scripts format", "test": "fluentui-scripts jest", "update-snapshots": "fluentui-scripts jest -u" }, @@ -47,17 +47,17 @@ "@react-native-community/cli-platform-android": "^20.0.0", "@react-native-community/cli-platform-ios": "^20.0.0", "@react-native/metro-config": "^0.81.0", - "@types/react": "~19.1.0", - "react": "19.1.0", - "react-native": "^0.81.0", + "@types/react": "~19.1.4", + "react": "19.1.4", + "react-native": "^0.81.6", "react-native-macos": "^0.81.0", "react-native-windows": "^0.81.0" }, "peerDependencies": { "@office-iss/react-native-win32": "^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0", - "@types/react": "~18.2.0 || ~19.0.0 || ~19.1.0", - "react": "18.2.0 || 19.0.0 || 19.1.0", - "react-native": "^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0", + "@types/react": "~18.2.0 || ~19.0.0 || ~19.1.4", + "react": "18.2.0 || 19.0.0 || 19.1.4", + "react-native": "^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.6", "react-native-macos": "^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0", "react-native-windows": "^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0" }, diff --git a/packages/framework-base/package.json b/packages/framework-base/package.json index f3c0c21e722..664595cfa42 100644 --- a/packages/framework-base/package.json +++ b/packages/framework-base/package.json @@ -33,9 +33,9 @@ "build-core": "tsgo --outDir lib --module esnext --moduleResolution bundler", "clean": "fluentui-scripts clean", "depcheck": "fluentui-scripts depcheck", + "format": "fluentui-scripts format", "lint": "fluentui-scripts eslint", "lint-package": "fluentui-scripts lint-package", - "format": "fluentui-scripts format", "start": "fluentui-scripts dev", "start-test": "fluentui-scripts jest-watch", "test": "fluentui-scripts jest", @@ -49,13 +49,13 @@ "@fluentui-react-native/scripts": "workspace:*", "@types/jest": "^29.0.0", "@types/node": "catalog:", - "@types/react": "~19.1.0", - "react": "19.1.0", - "react-native": "^0.81.0" + "@types/react": "~19.1.4", + "react": "19.1.4", + "react-native": "^0.81.6" }, "peerDependencies": { - "@types/react": "~18.2.0 || ~19.0.0 || ~19.1.0", - "react": "18.2.0 || 19.0.0 || 19.1.0" + "@types/react": "~18.2.0 || ~19.0.0 || ~19.1.4", + "react": "18.2.0 || 19.0.0 || 19.1.4" }, "peerDependenciesMeta": { "@types/react": { diff --git a/packages/framework/composition/package.json b/packages/framework/composition/package.json index 3ab8e6fd85a..9e1f23e39b5 100644 --- a/packages/framework/composition/package.json +++ b/packages/framework/composition/package.json @@ -27,9 +27,9 @@ "build-core": "tsgo --outDir lib --module esnext --moduleResolution bundler", "clean": "fluentui-scripts clean", "depcheck": "fluentui-scripts depcheck", + "format": "fluentui-scripts format", "lint": "fluentui-scripts eslint", "lint-package": "fluentui-scripts lint-package", - "format": "fluentui-scripts format", "start": "fluentui-scripts dev", "start-test": "fluentui-scripts jest-watch", "test": "fluentui-scripts jest", @@ -48,15 +48,15 @@ "@fluentui-react-native/kit-config": "workspace:*", "@fluentui-react-native/scripts": "workspace:*", "@react-native/babel-preset": "^0.81.0", - "@types/react": "~19.1.0", + "@types/react": "~19.1.4", "@types/react-test-renderer": "^19.1.0", - "react": "19.1.0", - "react-native": "^0.81.0", + "react": "19.1.4", + "react-native": "^0.81.6", "react-test-renderer": "19.1.0" }, "peerDependencies": { - "@types/react": "~18.2.0 || ~19.0.0 || ~19.1.0", - "react": "18.2.0 || 19.0.0 || 19.1.0" + "@types/react": "~18.2.0 || ~19.0.0 || ~19.1.4", + "react": "18.2.0 || 19.0.0 || 19.1.4" }, "peerDependenciesMeta": { "@types/react": { diff --git a/packages/framework/framework/package.json b/packages/framework/framework/package.json index bc3b8a9fac2..ea8849d8192 100644 --- a/packages/framework/framework/package.json +++ b/packages/framework/framework/package.json @@ -26,9 +26,9 @@ "build-core": "tsgo --outDir lib --module esnext --moduleResolution bundler", "clean": "fluentui-scripts clean", "depcheck": "fluentui-scripts depcheck", + "format": "fluentui-scripts format", "lint": "fluentui-scripts eslint", "lint-package": "fluentui-scripts lint-package", - "format": "fluentui-scripts format", "start-test": "fluentui-scripts jest-watch", "start:tester": "rnx-cli start", "test": "fluentui-scripts jest", @@ -58,19 +58,19 @@ "@react-native/babel-preset": "^0.81.0", "@react-native/metro-config": "^0.81.0", "@rnx-kit/cli": "catalog:", - "@types/react": "~19.1.0", + "@types/react": "~19.1.4", "@types/react-test-renderer": "^19.1.0", - "react": "19.1.0", - "react-native": "^0.81.0", + "react": "19.1.4", + "react-native": "^0.81.6", "react-native-macos": "^0.81.0", "react-native-windows": "^0.81.0", "react-test-renderer": "19.1.0" }, "peerDependencies": { "@office-iss/react-native-win32": "^0.74.0", - "@types/react": "~18.2.0 || ~19.0.0 || ~19.1.0", - "react": "18.2.0 || 19.0.0 || 19.1.0", - "react-native": "^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0", + "@types/react": "~18.2.0 || ~19.0.0 || ~19.1.4", + "react": "18.2.0 || 19.0.0 || 19.1.4", + "react-native": "^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.6", "react-native-macos": "^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0", "react-native-windows": "^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0" }, diff --git a/packages/framework/theme/package.json b/packages/framework/theme/package.json index 00a723d73f5..70c1198fe50 100644 --- a/packages/framework/theme/package.json +++ b/packages/framework/theme/package.json @@ -27,9 +27,9 @@ "build-core": "tsgo --outDir lib --module esnext --moduleResolution bundler", "clean": "fluentui-scripts clean", "depcheck": "fluentui-scripts depcheck", + "format": "fluentui-scripts format", "lint": "fluentui-scripts eslint", "lint-package": "fluentui-scripts lint-package", - "format": "fluentui-scripts format", "start": "fluentui-scripts dev", "start-test": "fluentui-scripts jest-watch", "test": "fluentui-scripts jest", @@ -52,14 +52,14 @@ "@react-native-community/cli-platform-ios": "^20.0.0", "@react-native/babel-preset": "^0.81.0", "@react-native/metro-config": "^0.81.0", - "@types/react": "~19.1.0", - "react": "19.1.0", - "react-native": "^0.81.0" + "@types/react": "~19.1.4", + "react": "19.1.4", + "react-native": "^0.81.6" }, "peerDependencies": { - "@types/react": "~18.2.0 || ~19.0.0 || ~19.1.0", - "react": "18.2.0 || 19.0.0 || 19.1.0", - "react-native": "^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0" + "@types/react": "~18.2.0 || ~19.0.0 || ~19.1.4", + "react": "18.2.0 || 19.0.0 || 19.1.4", + "react-native": "^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.6" }, "peerDependenciesMeta": { "@types/react": { diff --git a/packages/framework/themed-stylesheet/package.json b/packages/framework/themed-stylesheet/package.json index e1b60aad800..ce520a6ce35 100644 --- a/packages/framework/themed-stylesheet/package.json +++ b/packages/framework/themed-stylesheet/package.json @@ -27,9 +27,9 @@ "build-core": "tsgo --outDir lib --module esnext --moduleResolution bundler", "clean": "fluentui-scripts clean", "depcheck": "fluentui-scripts depcheck", + "format": "fluentui-scripts format", "lint": "fluentui-scripts eslint", "lint-package": "fluentui-scripts lint-package", - "format": "fluentui-scripts format", "start": "fluentui-scripts dev", "start-test": "fluentui-scripts jest-watch", "test": "fluentui-scripts jest", @@ -50,14 +50,14 @@ "@react-native-community/cli-platform-ios": "^20.0.0", "@react-native/babel-preset": "^0.81.0", "@react-native/metro-config": "^0.81.0", - "@types/react": "~19.1.0", - "react": "19.1.0", - "react-native": "^0.81.0" + "@types/react": "~19.1.4", + "react": "19.1.4", + "react-native": "^0.81.6" }, "peerDependencies": { - "@types/react": "~18.2.0 || ~19.0.0 || ~19.1.0", - "react": "18.2.0 || 19.0.0 || 19.1.0", - "react-native": "^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0" + "@types/react": "~18.2.0 || ~19.0.0 || ~19.1.4", + "react": "18.2.0 || 19.0.0 || 19.1.4", + "react-native": "^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.6" }, "peerDependenciesMeta": { "@types/react": { diff --git a/packages/framework/use-slot/package.json b/packages/framework/use-slot/package.json index 741c68b6f4d..359a0d8d094 100644 --- a/packages/framework/use-slot/package.json +++ b/packages/framework/use-slot/package.json @@ -27,9 +27,9 @@ "build-core": "tsgo --outDir lib --module esnext --moduleResolution bundler", "clean": "fluentui-scripts clean", "depcheck": "fluentui-scripts depcheck", + "format": "fluentui-scripts format", "lint": "fluentui-scripts eslint", "lint-package": "fluentui-scripts lint-package", - "format": "fluentui-scripts format", "start": "fluentui-scripts dev", "start-test": "fluentui-scripts jest-watch", "test": "fluentui-scripts jest", @@ -51,15 +51,15 @@ "@react-native/babel-preset": "^0.81.0", "@react-native/metro-config": "^0.81.0", "@types/jest": "^29.0.0", - "@types/react": "~19.1.0", + "@types/react": "~19.1.4", "@types/react-test-renderer": "^19.1.0", - "react": "19.1.0", - "react-native": "^0.81.0", + "react": "19.1.4", + "react-native": "^0.81.6", "react-test-renderer": "19.1.0" }, "peerDependencies": { - "@types/react": "~18.2.0 || ~19.0.0 || ~19.1.0", - "react": "18.2.0 || 19.0.0 || 19.1.0" + "@types/react": "~18.2.0 || ~19.0.0 || ~19.1.4", + "react": "18.2.0 || 19.0.0 || 19.1.4" }, "peerDependenciesMeta": { "@types/react": { diff --git a/packages/framework/use-slots/package.json b/packages/framework/use-slots/package.json index e9c32f5c73b..fbf4e7f6a92 100644 --- a/packages/framework/use-slots/package.json +++ b/packages/framework/use-slots/package.json @@ -27,9 +27,9 @@ "build-core": "tsgo --outDir lib --module esnext --moduleResolution bundler", "clean": "fluentui-scripts clean", "depcheck": "fluentui-scripts depcheck", + "format": "fluentui-scripts format", "lint": "fluentui-scripts eslint", "lint-package": "fluentui-scripts lint-package", - "format": "fluentui-scripts format", "start": "fluentui-scripts dev", "start-test": "fluentui-scripts jest-watch", "test": "fluentui-scripts jest", @@ -51,15 +51,15 @@ "@react-native-community/cli-platform-ios": "^20.0.0", "@react-native/babel-preset": "^0.81.0", "@react-native/metro-config": "^0.81.0", - "@types/react": "~19.1.0", + "@types/react": "~19.1.4", "@types/react-test-renderer": "^19.1.0", - "react": "19.1.0", - "react-native": "^0.81.0", + "react": "19.1.4", + "react-native": "^0.81.6", "react-test-renderer": "19.1.0" }, "peerDependencies": { - "@types/react": "~18.2.0 || ~19.0.0 || ~19.1.0", - "react": "18.2.0 || 19.0.0 || 19.1.0" + "@types/react": "~18.2.0 || ~19.0.0 || ~19.1.4", + "react": "18.2.0 || 19.0.0 || 19.1.4" }, "peerDependenciesMeta": { "@types/react": { diff --git a/packages/framework/use-styling/package.json b/packages/framework/use-styling/package.json index f394823f0ae..1609bee3c10 100644 --- a/packages/framework/use-styling/package.json +++ b/packages/framework/use-styling/package.json @@ -27,9 +27,9 @@ "build-core": "tsgo --outDir lib --module esnext --moduleResolution bundler", "clean": "fluentui-scripts clean", "depcheck": "fluentui-scripts depcheck", + "format": "fluentui-scripts format", "lint": "fluentui-scripts eslint", "lint-package": "fluentui-scripts lint-package", - "format": "fluentui-scripts format", "start": "fluentui-scripts dev", "start-test": "fluentui-scripts jest-watch", "test": "fluentui-scripts jest", @@ -52,15 +52,15 @@ "@react-native/babel-preset": "^0.81.0", "@react-native/metro-config": "^0.81.0", "@types/jest": "^29.0.0", - "@types/react": "~19.1.0", + "@types/react": "~19.1.4", "@types/react-test-renderer": "^19.1.0", - "react": "19.1.0", - "react-native": "^0.81.0", + "react": "19.1.4", + "react-native": "^0.81.6", "react-test-renderer": "19.1.0" }, "peerDependencies": { - "@types/react": "~18.2.0 || ~19.0.0 || ~19.1.0", - "react": "18.2.0 || 19.0.0 || 19.1.0" + "@types/react": "~18.2.0 || ~19.0.0 || ~19.1.4", + "react": "18.2.0 || 19.0.0 || 19.1.4" }, "peerDependenciesMeta": { "@types/react": { diff --git a/packages/framework/use-tokens/package.json b/packages/framework/use-tokens/package.json index 5cd7d749a9b..b014c6198e0 100644 --- a/packages/framework/use-tokens/package.json +++ b/packages/framework/use-tokens/package.json @@ -27,9 +27,9 @@ "build-core": "tsgo --outDir lib --module esnext --moduleResolution bundler", "clean": "fluentui-scripts clean", "depcheck": "fluentui-scripts depcheck", + "format": "fluentui-scripts format", "lint": "fluentui-scripts eslint", "lint-package": "fluentui-scripts lint-package", - "format": "fluentui-scripts format", "start": "fluentui-scripts dev", "start-test": "fluentui-scripts jest-watch", "test": "fluentui-scripts jest", @@ -51,15 +51,15 @@ "@react-native/babel-preset": "^0.81.0", "@react-native/metro-config": "^0.81.0", "@types/jest": "^29.0.0", - "@types/react": "~19.1.0", + "@types/react": "~19.1.4", "@types/react-test-renderer": "^19.1.0", - "react": "19.1.0", - "react-native": "^0.81.0", + "react": "19.1.4", + "react-native": "^0.81.6", "react-test-renderer": "19.1.0" }, "peerDependencies": { - "@types/react": "~18.2.0 || ~19.0.0 || ~19.1.0", - "react": "18.2.0 || 19.0.0 || 19.1.0" + "@types/react": "~18.2.0 || ~19.0.0 || ~19.1.4", + "react": "18.2.0 || 19.0.0 || 19.1.4" }, "peerDependenciesMeta": { "@types/react": { diff --git a/packages/libraries/core/package.json b/packages/libraries/core/package.json index d7a1970ad56..5358e019d7e 100644 --- a/packages/libraries/core/package.json +++ b/packages/libraries/core/package.json @@ -26,9 +26,9 @@ "build-core": "tsgo --outDir lib --module esnext --moduleResolution bundler", "clean": "fluentui-scripts clean", "depcheck": "fluentui-scripts depcheck", + "format": "fluentui-scripts format", "lint": "fluentui-scripts eslint", "lint-package": "fluentui-scripts lint-package", - "format": "fluentui-scripts format", "start-test": "fluentui-scripts jest-watch", "start:tester": "rnx-cli start", "test": "fluentui-scripts jest", @@ -64,18 +64,18 @@ "@react-native/babel-preset": "^0.74.0", "@react-native/metro-config": "^0.81.0", "@rnx-kit/cli": "catalog:", - "@types/react": "~19.1.0", - "react": "19.1.0", - "react-native": "^0.81.0", + "@types/react": "~19.1.4", + "react": "19.1.4", + "react-native": "^0.81.6", "react-native-macos": "^0.81.0", "react-native-svg": "^15.12.1", "react-native-windows": "^0.81.0" }, "peerDependencies": { "@office-iss/react-native-win32": "^0.74.0", - "@types/react": "~18.2.0 || ~19.0.0 || ~19.1.0", - "react": "18.2.0 || 19.0.0 || 19.1.0", - "react-native": "^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0", + "@types/react": "~18.2.0 || ~19.0.0 || ~19.1.4", + "react": "18.2.0 || 19.0.0 || 19.1.4", + "react-native": "^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.6", "react-native-macos": "^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0", "react-native-svg": ">=15.0.0 <15.13.0 || >=15.4.0 <15.13.0 || ^15.11.2 || ^15.12.1", "react-native-windows": "^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0" diff --git a/packages/theming/android-theme/package.json b/packages/theming/android-theme/package.json index 2934dee63d3..9c641f7453c 100644 --- a/packages/theming/android-theme/package.json +++ b/packages/theming/android-theme/package.json @@ -27,9 +27,9 @@ "build-core": "tsgo --outDir lib --module esnext --moduleResolution bundler", "clean": "fluentui-scripts clean", "depcheck": "fluentui-scripts depcheck", + "format": "fluentui-scripts format", "lint": "fluentui-scripts eslint", "lint-package": "fluentui-scripts lint-package", - "format": "fluentui-scripts format", "start": "fluentui-scripts dev", "start-test": "fluentui-scripts jest-watch", "test": "fluentui-scripts jest", @@ -54,17 +54,17 @@ "@react-native-community/cli-platform-ios": "^20.0.0", "@react-native/babel-preset": "^0.81.0", "@react-native/metro-config": "^0.81.0", - "@types/react": "~19.1.0", - "react": "19.1.0", - "react-native": "^0.81.0", + "@types/react": "~19.1.4", + "react": "19.1.4", + "react-native": "^0.81.6", "react-native-macos": "^0.81.0", "react-native-windows": "^0.81.0" }, "peerDependencies": { "@office-iss/react-native-win32": "^0.74.0", - "@types/react": "~18.2.0 || ~19.0.0 || ~19.1.0", - "react": "18.2.0 || 19.0.0 || 19.1.0", - "react-native": "^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0", + "@types/react": "~18.2.0 || ~19.0.0 || ~19.1.4", + "react": "18.2.0 || 19.0.0 || 19.1.4", + "react-native": "^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.6", "react-native-macos": "^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0", "react-native-windows": "^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0" }, diff --git a/packages/theming/apple-theme/package.json b/packages/theming/apple-theme/package.json index 1196e592c28..bcd83b1d12a 100644 --- a/packages/theming/apple-theme/package.json +++ b/packages/theming/apple-theme/package.json @@ -27,9 +27,9 @@ "build-core": "tsgo --outDir lib --module esnext --moduleResolution bundler", "clean": "fluentui-scripts clean", "depcheck": "fluentui-scripts depcheck", + "format": "fluentui-scripts format", "lint": "fluentui-scripts eslint", "lint-package": "fluentui-scripts lint-package", - "format": "fluentui-scripts format", "start": "fluentui-scripts dev", "start-test": "fluentui-scripts jest-watch", "test": "fluentui-scripts jest", @@ -59,17 +59,17 @@ "@react-native-community/cli-platform-ios": "^20.0.0", "@react-native/babel-preset": "^0.81.0", "@react-native/metro-config": "^0.81.0", - "@types/react": "~19.1.0", - "react": "19.1.0", - "react-native": "^0.81.0", + "@types/react": "~19.1.4", + "react": "19.1.4", + "react-native": "^0.81.6", "react-native-macos": "^0.81.0", "react-native-windows": "^0.81.0" }, "peerDependencies": { "@office-iss/react-native-win32": "^0.74.0", - "@types/react": "~18.2.0 || ~19.0.0 || ~19.1.0", - "react": "18.2.0 || 19.0.0 || 19.1.0", - "react-native": "^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0", + "@types/react": "~18.2.0 || ~19.0.0 || ~19.1.4", + "react": "18.2.0 || 19.0.0 || 19.1.4", + "react-native": "^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.6", "react-native-macos": "^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0", "react-native-windows": "^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0" }, diff --git a/packages/theming/default-theme/package.json b/packages/theming/default-theme/package.json index eac8afe9a9e..a494e4118fc 100644 --- a/packages/theming/default-theme/package.json +++ b/packages/theming/default-theme/package.json @@ -27,9 +27,9 @@ "build-core": "tsgo --outDir lib --module esnext --moduleResolution bundler", "clean": "fluentui-scripts clean", "depcheck": "fluentui-scripts depcheck", + "format": "fluentui-scripts format", "lint": "fluentui-scripts eslint", "lint-package": "fluentui-scripts lint-package", - "format": "fluentui-scripts format", "start": "fluentui-scripts dev", "start-test": "fluentui-scripts jest-watch", "test": "fluentui-scripts jest", @@ -56,17 +56,17 @@ "@react-native-community/cli-platform-ios": "^20.0.0", "@react-native/babel-preset": "^0.81.0", "@react-native/metro-config": "^0.81.0", - "@types/react": "~19.1.0", - "react": "19.1.0", - "react-native": "^0.81.0", + "@types/react": "~19.1.4", + "react": "19.1.4", + "react-native": "^0.81.6", "react-native-macos": "^0.81.0", "react-native-windows": "^0.81.0" }, "peerDependencies": { "@office-iss/react-native-win32": "^0.74.0", - "@types/react": "~18.2.0 || ~19.0.0 || ~19.1.0", - "react": "18.2.0 || 19.0.0 || 19.1.0", - "react-native": "^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0", + "@types/react": "~18.2.0 || ~19.0.0 || ~19.1.4", + "react": "18.2.0 || 19.0.0 || 19.1.4", + "react-native": "^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.6", "react-native-macos": "^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0", "react-native-windows": "^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0" }, diff --git a/packages/theming/theme-tokens/package.json b/packages/theming/theme-tokens/package.json index f29b6636de7..5b487d8eed3 100644 --- a/packages/theming/theme-tokens/package.json +++ b/packages/theming/theme-tokens/package.json @@ -27,9 +27,9 @@ "build-core": "tsgo --outDir lib --module esnext --moduleResolution bundler", "clean": "fluentui-scripts clean", "depcheck": "fluentui-scripts depcheck", + "format": "fluentui-scripts format", "lint": "fluentui-scripts eslint", "lint-package": "fluentui-scripts lint-package", - "format": "fluentui-scripts format", "start": "fluentui-scripts dev", "start-test": "fluentui-scripts jest-watch", "test": "fluentui-scripts jest", @@ -53,14 +53,14 @@ "@react-native-community/cli-platform-android": "^20.0.0", "@react-native-community/cli-platform-ios": "^20.0.0", "@react-native/metro-config": "^0.81.0", - "@types/react": "~19.1.0", - "react": "19.1.0", - "react-native": "^0.81.0" + "@types/react": "~19.1.4", + "react": "19.1.4", + "react-native": "^0.81.6" }, "peerDependencies": { - "@types/react": "~18.2.0 || ~19.0.0 || ~19.1.0", - "react": "18.2.0 || 19.0.0 || 19.1.0", - "react-native": "^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0" + "@types/react": "~18.2.0 || ~19.0.0 || ~19.1.4", + "react": "18.2.0 || 19.0.0 || 19.1.4", + "react-native": "^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.6" }, "peerDependenciesMeta": { "@types/react": { diff --git a/packages/theming/theme-types/package.json b/packages/theming/theme-types/package.json index ac7fb93f15e..3754e944713 100644 --- a/packages/theming/theme-types/package.json +++ b/packages/theming/theme-types/package.json @@ -27,9 +27,9 @@ "build-core": "tsgo --outDir lib --module esnext --moduleResolution bundler", "clean": "fluentui-scripts clean", "depcheck": "fluentui-scripts depcheck", + "format": "fluentui-scripts format", "lint": "fluentui-scripts eslint", "lint-package": "fluentui-scripts lint-package", - "format": "fluentui-scripts format", "start": "fluentui-scripts dev", "start-test": "fluentui-scripts jest-watch", "test": "fluentui-scripts jest", @@ -45,14 +45,14 @@ "@react-native-community/cli-platform-android": "^20.0.0", "@react-native-community/cli-platform-ios": "^20.0.0", "@react-native/metro-config": "^0.81.0", - "@types/react": "~19.1.0", - "react": "19.1.0", - "react-native": "^0.81.0" + "@types/react": "~19.1.4", + "react": "19.1.4", + "react-native": "^0.81.6" }, "peerDependencies": { - "@types/react": "~18.2.0 || ~19.0.0 || ~19.1.0", - "react": "18.2.0 || 19.0.0 || 19.1.0", - "react-native": "^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0" + "@types/react": "~18.2.0 || ~19.0.0 || ~19.1.4", + "react": "18.2.0 || 19.0.0 || 19.1.4", + "react-native": "^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.6" }, "peerDependenciesMeta": { "@types/react": { diff --git a/packages/theming/theming-utils/package.json b/packages/theming/theming-utils/package.json index d07c62c901b..f3e79ab99ce 100644 --- a/packages/theming/theming-utils/package.json +++ b/packages/theming/theming-utils/package.json @@ -26,9 +26,9 @@ "build-core": "tsgo --outDir lib --module esnext --moduleResolution bundler", "clean": "fluentui-scripts clean", "depcheck": "fluentui-scripts depcheck", + "format": "fluentui-scripts format", "lint": "fluentui-scripts eslint", "lint-package": "fluentui-scripts lint-package", - "format": "fluentui-scripts format", "test": "fluentui-scripts jest", "update-snapshots": "fluentui-scripts jest -u" }, @@ -50,17 +50,17 @@ "@react-native-community/cli-platform-ios": "^20.0.0", "@react-native/babel-preset": "^0.81.0", "@react-native/metro-config": "^0.81.0", - "@types/react": "~19.1.0", - "react": "19.1.0", - "react-native": "^0.81.0", + "@types/react": "~19.1.4", + "react": "19.1.4", + "react-native": "^0.81.6", "react-native-macos": "^0.81.0", "react-native-windows": "^0.81.0" }, "peerDependencies": { "@office-iss/react-native-win32": "^0.74.0", - "@types/react": "~18.2.0 || ~19.0.0 || ~19.1.0", - "react": "18.2.0 || 19.0.0 || 19.1.0", - "react-native": "^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0", + "@types/react": "~18.2.0 || ~19.0.0 || ~19.1.4", + "react": "18.2.0 || 19.0.0 || 19.1.4", + "react-native": "^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.6", "react-native-macos": "^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0", "react-native-windows": "^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0" }, diff --git a/packages/theming/win32-theme/package.json b/packages/theming/win32-theme/package.json index fcec11f9476..0b758ddeb4a 100644 --- a/packages/theming/win32-theme/package.json +++ b/packages/theming/win32-theme/package.json @@ -27,9 +27,9 @@ "build-core": "tsgo --outDir lib --module esnext --moduleResolution bundler", "clean": "fluentui-scripts clean", "depcheck": "fluentui-scripts depcheck", + "format": "fluentui-scripts format", "lint": "fluentui-scripts eslint", "lint-package": "fluentui-scripts lint-package", - "format": "fluentui-scripts format", "start": "fluentui-scripts dev", "start-test": "fluentui-scripts jest-watch", "test": "fluentui-scripts jest", @@ -57,17 +57,17 @@ "@react-native-community/cli-platform-ios": "^20.0.0", "@react-native/babel-preset": "^0.81.0", "@react-native/metro-config": "^0.81.0", - "@types/react": "~19.1.0", - "react": "19.1.0", - "react-native": "^0.81.0", + "@types/react": "~19.1.4", + "react": "19.1.4", + "react-native": "^0.81.6", "react-native-macos": "^0.81.0", "react-native-windows": "^0.81.0" }, "peerDependencies": { "@office-iss/react-native-win32": "^0.74.0", - "@types/react": "~18.2.0 || ~19.0.0 || ~19.1.0", - "react": "18.2.0 || 19.0.0 || 19.1.0", - "react-native": "^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0", + "@types/react": "~18.2.0 || ~19.0.0 || ~19.1.4", + "react": "18.2.0 || 19.0.0 || 19.1.4", + "react-native": "^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.6", "react-native-macos": "^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0", "react-native-windows": "^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0" }, diff --git a/packages/utils/adapters/package.json b/packages/utils/adapters/package.json index 5d5006bd653..055492ec06a 100644 --- a/packages/utils/adapters/package.json +++ b/packages/utils/adapters/package.json @@ -26,9 +26,9 @@ "build-core": "tsgo --outDir lib --module esnext --moduleResolution bundler", "clean": "fluentui-scripts clean", "depcheck": "fluentui-scripts depcheck", + "format": "fluentui-scripts format", "lint": "fluentui-scripts eslint", "lint-package": "fluentui-scripts lint-package", - "format": "fluentui-scripts format", "test": "fluentui-scripts jest", "update-snapshots": "fluentui-scripts jest -u" }, @@ -43,17 +43,17 @@ "@react-native-community/cli-platform-android": "^20.0.0", "@react-native-community/cli-platform-ios": "^20.0.0", "@react-native/metro-config": "^0.81.0", - "@types/react": "~19.1.0", - "react": "19.1.0", - "react-native": "^0.81.0", + "@types/react": "~19.1.4", + "react": "19.1.4", + "react-native": "^0.81.6", "react-native-macos": "^0.81.0", "react-native-windows": "^0.81.0" }, "peerDependencies": { "@office-iss/react-native-win32": "^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0", - "@types/react": "~18.2.0 || ~19.0.0 || ~19.1.0", - "react": "18.2.0 || 19.0.0 || 19.1.0", - "react-native": "^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0", + "@types/react": "~18.2.0 || ~19.0.0 || ~19.1.4", + "react": "18.2.0 || 19.0.0 || 19.1.4", + "react-native": "^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.6", "react-native-macos": "^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0", "react-native-windows": "^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0" }, diff --git a/packages/utils/interactive-hooks/package.json b/packages/utils/interactive-hooks/package.json index 1e5cd87d60c..fbb6a4433f6 100644 --- a/packages/utils/interactive-hooks/package.json +++ b/packages/utils/interactive-hooks/package.json @@ -26,9 +26,9 @@ "build-core": "tsgo --outDir lib --module esnext --moduleResolution bundler", "clean": "fluentui-scripts clean", "depcheck": "fluentui-scripts depcheck", + "format": "fluentui-scripts format", "lint": "fluentui-scripts eslint", "lint-package": "fluentui-scripts lint-package", - "format": "fluentui-scripts format", "test": "fluentui-scripts jest", "update-snapshots": "fluentui-scripts jest -u" }, @@ -52,19 +52,19 @@ "@react-native/metro-config": "^0.81.0", "@types/invariant": "^2.2.0", "@types/jest": "^29.0.0", - "@types/react": "~19.1.0", + "@types/react": "~19.1.4", "@types/react-test-renderer": "^19.1.0", - "react": "19.1.0", - "react-native": "^0.81.0", + "react": "19.1.4", + "react-native": "^0.81.6", "react-native-macos": "^0.81.0", "react-native-windows": "^0.81.0", "react-test-renderer": "19.1.0" }, "peerDependencies": { "@office-iss/react-native-win32": "^0.74.0", - "@types/react": "~18.2.0 || ~19.0.0 || ~19.1.0", - "react": "18.2.0 || 19.0.0 || 19.1.0", - "react-native": "^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0", + "@types/react": "~18.2.0 || ~19.0.0 || ~19.1.4", + "react": "18.2.0 || 19.0.0 || 19.1.4", + "react-native": "^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.6", "react-native-macos": "^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0", "react-native-windows": "^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0" }, diff --git a/packages/utils/styling/package.json b/packages/utils/styling/package.json index 6dd1d7753f8..8b695262a2a 100644 --- a/packages/utils/styling/package.json +++ b/packages/utils/styling/package.json @@ -26,9 +26,9 @@ "build-core": "tsgo --outDir lib --module esnext --moduleResolution bundler", "clean": "fluentui-scripts clean", "depcheck": "fluentui-scripts depcheck", + "format": "fluentui-scripts format", "lint": "fluentui-scripts eslint", "lint-package": "fluentui-scripts lint-package", - "format": "fluentui-scripts format", "test": "fluentui-scripts jest", "update-snapshots": "fluentui-scripts jest -u" }, @@ -42,14 +42,14 @@ "@react-native-community/cli-platform-android": "^20.0.0", "@react-native-community/cli-platform-ios": "^20.0.0", "@react-native/metro-config": "^0.81.0", - "@types/react": "~19.1.0", - "react": "19.1.0", - "react-native": "^0.81.0" + "@types/react": "~19.1.4", + "react": "19.1.4", + "react-native": "^0.81.6" }, "peerDependencies": { - "@types/react": "~18.2.0 || ~19.0.0 || ~19.1.0", - "react": "18.2.0 || 19.0.0 || 19.1.0", - "react-native": "^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0" + "@types/react": "~18.2.0 || ~19.0.0 || ~19.1.4", + "react": "18.2.0 || 19.0.0 || 19.1.4", + "react-native": "^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.6" }, "peerDependenciesMeta": { "@types/react": { diff --git a/packages/utils/tokens/package.json b/packages/utils/tokens/package.json index 04cb40e8a3f..a9fa73368ba 100644 --- a/packages/utils/tokens/package.json +++ b/packages/utils/tokens/package.json @@ -26,9 +26,9 @@ "build-core": "tsgo --outDir lib --module esnext --moduleResolution bundler", "clean": "fluentui-scripts clean", "depcheck": "fluentui-scripts depcheck", + "format": "fluentui-scripts format", "lint": "fluentui-scripts eslint", "lint-package": "fluentui-scripts lint-package", - "format": "fluentui-scripts format", "test": "fluentui-scripts jest", "update-snapshots": "fluentui-scripts jest -u" }, @@ -46,17 +46,17 @@ "@react-native-community/cli-platform-android": "^20.0.0", "@react-native-community/cli-platform-ios": "^20.0.0", "@react-native/metro-config": "^0.81.0", - "@types/react": "~19.1.0", - "react": "19.1.0", - "react-native": "^0.81.0", + "@types/react": "~19.1.4", + "react": "19.1.4", + "react-native": "^0.81.6", "react-native-macos": "^0.81.0", "react-native-windows": "^0.81.0" }, "peerDependencies": { "@office-iss/react-native-win32": "^0.74.0", - "@types/react": "~18.2.0 || ~19.0.0 || ~19.1.0", - "react": "18.2.0 || 19.0.0 || 19.1.0", - "react-native": "^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0", + "@types/react": "~18.2.0 || ~19.0.0 || ~19.1.4", + "react": "18.2.0 || 19.0.0 || 19.1.4", + "react-native": "^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.6", "react-native-macos": "^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0", "react-native-windows": "^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0" }, diff --git a/scripts/package.json b/scripts/package.json index 38ca7179196..f24ac900e83 100644 --- a/scripts/package.json +++ b/scripts/package.json @@ -33,6 +33,7 @@ "@rnx-kit/tools-packages": "catalog:", "@rnx-kit/tools-typescript": "catalog:", "@rnx-kit/tsconfig": "catalog:", + "@rnx-kit/types-kit-config": "catalog:", "@types/micromatch": "^4.0.9", "@types/node": "catalog:", "@typescript/native-preview": "7.0.0-dev.20260113.1", diff --git a/scripts/src/utils/projectRoot.ts b/scripts/src/utils/projectRoot.ts index 2412cdfb9be..2519a2fbe1e 100644 --- a/scripts/src/utils/projectRoot.ts +++ b/scripts/src/utils/projectRoot.ts @@ -2,7 +2,7 @@ import Module from 'node:module'; import { fileURLToPath } from 'node:url'; import path from 'node:path'; import fs from 'node:fs'; -import type { KitConfig } from '@rnx-kit/config'; +import type { KitConfig } from '@rnx-kit/types-kit-config'; export type ExportSet = { default?: string; diff --git a/yarn.lock b/yarn.lock index 84082a2acf2..4a8cac106ac 100644 --- a/yarn.lock +++ b/yarn.lock @@ -4521,9 +4521,10 @@ __metadata: version: 0.0.0-use.local resolution: "@fluentui-react-native/kit-config@workspace:packages/configs/kit-config" dependencies: - "@rnx-kit/align-deps": "npm:^3.4.0" - "@rnx-kit/config": "npm:^0.7.4" - "@rnx-kit/tsconfig": "npm:^2.1.1" + "@rnx-kit/align-deps": "catalog:" + "@rnx-kit/config": "catalog:" + "@rnx-kit/tsconfig": "catalog:" + "@rnx-kit/types-kit-config": "catalog:" languageName: unknown linkType: soft @@ -5084,6 +5085,7 @@ __metadata: "@rnx-kit/tools-packages": "catalog:" "@rnx-kit/tools-typescript": "catalog:" "@rnx-kit/tsconfig": "catalog:" + "@rnx-kit/types-kit-config": "catalog:" "@types/micromatch": "npm:^4.0.9" "@types/node": "catalog:" "@typescript/native-preview": "npm:7.0.0-dev.20260113.1" @@ -5628,7 +5630,7 @@ __metadata: "@rnx-kit/cli": "catalog:" "@rnx-kit/metro-config": "catalog:" "@rnx-kit/metro-resolver-symlinks": "catalog:" - "@rnx-kit/metro-serializer-esbuild": "npm:^0.3.0" + "@rnx-kit/metro-serializer-esbuild": "catalog:" "@types/react": "npm:~18.2.0" "@types/react-test-renderer": "npm:^18.2.0" metro-config: "npm:^0.80.3" @@ -9107,10 +9109,10 @@ __metadata: languageName: node linkType: hard -"@react-native/eslint-plugin@npm:^0.76.0": - version: 0.76.9 - resolution: "@react-native/eslint-plugin@npm:0.76.9" - checksum: 10c0/752d62aa21f8a37fb456f1b16284bb02a847730ca4a3a24a55cda2e2bfc1f559d06ecf4c4d0d2a1aa5ccfb7bb3e9a4f3397d1cb33aae2d1899539668cd18024b +"@react-native/eslint-plugin@npm:^0.84.0": + version: 0.84.1 + resolution: "@react-native/eslint-plugin@npm:0.84.1" + checksum: 10c0/88d54758d8fd471173dbb3e080b34f667dd75be4e20604fe1a5d27c20caa5386cb97396a482c0064ee364bca08f3b85ab5390640a7da15e28f77fb548ec12e89 languageName: node linkType: hard @@ -9256,18 +9258,21 @@ __metadata: languageName: node linkType: hard -"@rnx-kit/align-deps@npm:^3.3.3, @rnx-kit/align-deps@npm:^3.4.0": - version: 3.4.0 - resolution: "@rnx-kit/align-deps@npm:3.4.0" +"@rnx-kit/align-deps@npm:^3.4.2": + version: 3.4.2 + resolution: "@rnx-kit/align-deps@npm:3.4.2" + dependencies: + "@rnx-kit/types-kit-config": "npm:^1.0.0" + "@rnx-kit/types-node": "npm:^1.0.0" bin: rnx-align-deps: lib/index.js - checksum: 10c0/db917363b7e8b4b24c55f5b10184f1e425820651c7650a8a2a16affc29de281dd804464dae17631594f217df11d98e1f548d0967073ffcf6a28b521aecc92cba + checksum: 10c0/d9d1859c622a9100ebea8c5a0417fc307bd1a78b96a3c32af3017b66ec5f955ee766de3ab65099de7b259661adf0fb3b358a161ef74e4bb456ddbfcc6f34432c languageName: node linkType: hard -"@rnx-kit/babel-preset-metro-react-native@npm:^3.0.1": - version: 3.0.1 - resolution: "@rnx-kit/babel-preset-metro-react-native@npm:3.0.1" +"@rnx-kit/babel-preset-metro-react-native@npm:^3.0.2": + version: 3.0.2 + resolution: "@rnx-kit/babel-preset-metro-react-native@npm:3.0.2" dependencies: "@rnx-kit/console": "npm:^2.0.0" babel-plugin-const-enum: "npm:^1.0.0" @@ -9279,7 +9284,7 @@ __metadata: peerDependenciesMeta: "@babel/plugin-transform-typescript": optional: true - checksum: 10c0/85771c4fec9750d3431fcaaffb68a4b95c2f775dea47503819f42c508e08859779e8f0bf013dcf58411b8160465b06c02f0bfb68aa512d4f5976ddeb34066a2e + checksum: 10c0/d0b8ac66cd12a284afb441a5179cc503e8dd58979c3c9118c30ca19e92a3a786997e68e3713d1cf37dd464514db1b9d61159d1d68f04f6c1160ae3ebdb93df81 languageName: node linkType: hard @@ -9297,26 +9302,29 @@ __metadata: languageName: node linkType: hard -"@rnx-kit/cli@npm:^1.0.0": - version: 1.0.0 - resolution: "@rnx-kit/cli@npm:1.0.0" +"@rnx-kit/cli@npm:^1.1.0": + version: 1.1.0 + resolution: "@rnx-kit/cli@npm:1.1.0" dependencies: - "@rnx-kit/align-deps": "npm:^3.3.3" - "@rnx-kit/config": "npm:^0.7.0" + "@rnx-kit/align-deps": "npm:^3.4.2" + "@rnx-kit/config": "npm:^0.7.5" "@rnx-kit/console": "npm:^2.0.0" - "@rnx-kit/metro-plugin-cyclic-dependencies-detector": "npm:^2.0.0" - "@rnx-kit/metro-plugin-duplicates-checker": "npm:^3.0.0" - "@rnx-kit/metro-plugin-typescript": "npm:^0.5.3" + "@rnx-kit/metro-plugin-cyclic-dependencies-detector": "npm:^2.0.3" + "@rnx-kit/metro-plugin-duplicates-checker": "npm:^3.0.3" + "@rnx-kit/metro-plugin-typescript": "npm:^0.5.4" "@rnx-kit/metro-serializer": "npm:^2.0.0" - "@rnx-kit/metro-serializer-esbuild": "npm:^0.3.0" + "@rnx-kit/metro-serializer-esbuild": "npm:^0.3.1" "@rnx-kit/metro-service": "npm:^4.1.3" "@rnx-kit/third-party-notices": "npm:^2.0.0" "@rnx-kit/tools-android": "npm:^0.2.2" "@rnx-kit/tools-apple": "npm:^0.2.2" - "@rnx-kit/tools-filesystem": "npm:^0.1.0" + "@rnx-kit/tools-filesystem": "npm:^0.2.0" "@rnx-kit/tools-language": "npm:^3.0.1" - "@rnx-kit/tools-node": "npm:^3.0.3" - "@rnx-kit/tools-react-native": "npm:^2.3.2" + "@rnx-kit/tools-node": "npm:^3.0.4" + "@rnx-kit/tools-react-native": "npm:^2.3.4" + "@rnx-kit/types-bundle-config": "npm:^1.0.0" + "@rnx-kit/types-kit-config": "npm:^1.0.0" + "@rnx-kit/types-node": "npm:^1.0.0" commander: "npm:^11.1.0" ora: "npm:^5.4.1" qrcode: "npm:^1.5.0" @@ -9330,20 +9338,23 @@ __metadata: optional: true bin: rnx-cli: bin/rnx-cli.cjs - checksum: 10c0/02573ddb0ba57cfe4ab70f4789f7e23583c8ca36ef5193a6cfab199d90f5250027b08dcadaeaad4465af3ce27f6a03ccaf4de3e276a898c7996846b934c133dd + checksum: 10c0/37d3ed0bea94957aca8e6c2f28bdbd1a7c5baac240fda045dd14ad4c5712ebe4f717a70bc3b7cd6a1018c4d0258a3e06fc42fd6674d82201e38c9be30ee9d400 languageName: node linkType: hard -"@rnx-kit/config@npm:^0.7.0, @rnx-kit/config@npm:^0.7.4": - version: 0.7.4 - resolution: "@rnx-kit/config@npm:0.7.4" +"@rnx-kit/config@npm:^0.7.5": + version: 0.7.5 + resolution: "@rnx-kit/config@npm:0.7.5" dependencies: "@rnx-kit/console": "npm:^2.0.0" - "@rnx-kit/tools-node": "npm:^3.0.0" - "@rnx-kit/tools-packages": "npm:^0.1.0" + "@rnx-kit/tools-node": "npm:^3.0.4" + "@rnx-kit/tools-packages": "npm:^0.1.2" + "@rnx-kit/types-bundle-config": "npm:^1.0.0" + "@rnx-kit/types-kit-config": "npm:^1.0.0" + "@rnx-kit/types-node": "npm:^1.0.0" lodash.merge: "npm:^4.6.2" semver: "npm:^7.0.0" - checksum: 10c0/f237eacf8082eb5068d88a4b8302c115014edc0131475e756e52052426421f0799caa82208e7691b2e1673b859422bd9f5f8a9a192841f0e19c16ab7de090dd5 + checksum: 10c0/daa00e7b591662bd4b5d2fdee99cc03a113776895680777d7e7d7ffc71ae37c1e8f3ad0badd51c55a9015c7cc2b2b7785a5ae684092f42817a359cdcb6b97313 languageName: node linkType: hard @@ -9354,18 +9365,18 @@ __metadata: languageName: node linkType: hard -"@rnx-kit/eslint-plugin@npm:^0.9.5": - version: 0.9.5 - resolution: "@rnx-kit/eslint-plugin@npm:0.9.5" +"@rnx-kit/eslint-plugin@npm:^0.9.8": + version: 0.9.8 + resolution: "@rnx-kit/eslint-plugin@npm:0.9.8" dependencies: - "@react-native/eslint-plugin": "npm:^0.76.0" + "@react-native/eslint-plugin": "npm:^0.84.0" enhanced-resolve: "npm:^5.8.3" eslint-plugin-react: "npm:^7.35.2" eslint-plugin-react-hooks: "npm:^5.2.0" typescript-eslint: "npm:^8.0.0" peerDependencies: eslint: ">=8.57.0" - checksum: 10c0/6b81c331a9ec8690a0f421af72171b1bc1c38f9a7586a0dee86db5bdc752c9adbc19745c4d2fa370b014a4cd15f60a14132e1601a28b1407c65e2ea16c694a76 + checksum: 10c0/5f9abf2b7bae30d289829ce1ba8ef7f34e64e28bb7f62fc4f0ebc1e887117616f6a6728e762430b76b64994078d0843ec728822794e7a1d8a29e22af2abb775c languageName: node linkType: hard @@ -9387,22 +9398,23 @@ __metadata: languageName: node linkType: hard -"@rnx-kit/lint-lockfile@npm:^0.1.2": - version: 0.1.2 - resolution: "@rnx-kit/lint-lockfile@npm:0.1.2" +"@rnx-kit/lint-lockfile@npm:^0.1.3": + version: 0.1.3 + resolution: "@rnx-kit/lint-lockfile@npm:0.1.3" dependencies: - "@rnx-kit/config": "npm:^0.7.4" + "@rnx-kit/config": "npm:^0.7.5" "@rnx-kit/tools-workspaces": "npm:^0.2.3" + "@rnx-kit/types-kit-config": "npm:^1.0.0" js-yaml: "npm:^4.1.1" bin: lint-lockfile: lib/cli.js - checksum: 10c0/778d5f320601ad6d3d4ec40730f4babc6d77c30dd0efa7dc0b5c1dec44306b431c6d16a58f2cb4b9376c33e7575caaf723aaf62758b440abd7949dcc5383b121 + checksum: 10c0/823da6b029a5392d9d3265879d989b8d3e6f4896796e7eeb9328c1db915e54fafbcb7b06394163f3df49caf7243c4bf0094b9302ae4b3bbf19591d523529c0be languageName: node linkType: hard -"@rnx-kit/metro-config@npm:^2.2.3": - version: 2.2.3 - resolution: "@rnx-kit/metro-config@npm:2.2.3" +"@rnx-kit/metro-config@npm:^2.2.4": + version: 2.2.4 + resolution: "@rnx-kit/metro-config@npm:2.2.4" dependencies: "@rnx-kit/tools-node": "npm:^3.0.0" "@rnx-kit/tools-react-native": "npm:^2.3.1" @@ -9414,43 +9426,46 @@ __metadata: peerDependenciesMeta: "@react-native/metro-config": optional: true - checksum: 10c0/82e2bfaa0af95764de4ed9aaede77179f99c33ca675aba68129bc7d619f201b3eadd3ffd39844a6f33cbbb619460e403f0488da4b40f11eaadd5538fd1c3707c + checksum: 10c0/e07553e1fa1dfaea7586e0aeb9f2af10157f7d8fdcb7e1a07d75a5ebb83a02117e44c7899491f8ccc46b2a49b45c55459adfa44378d8070a60b18b55311f5e2c languageName: node linkType: hard -"@rnx-kit/metro-plugin-cyclic-dependencies-detector@npm:^2.0.0": - version: 2.0.0 - resolution: "@rnx-kit/metro-plugin-cyclic-dependencies-detector@npm:2.0.0" +"@rnx-kit/metro-plugin-cyclic-dependencies-detector@npm:^2.0.3": + version: 2.0.3 + resolution: "@rnx-kit/metro-plugin-cyclic-dependencies-detector@npm:2.0.3" dependencies: "@rnx-kit/console": "npm:^2.0.0" - "@rnx-kit/tools-node": "npm:^3.0.0" - checksum: 10c0/8bb5748d339e1f73eaea299ce0e13972c93d7d58e871db316610dbf144814dbc815cce7ca3408274d7544b6ba3c83deb592ecf42be0be08a650f4c456a47f9d2 + "@rnx-kit/tools-node": "npm:^3.0.4" + "@rnx-kit/types-plugin-cyclic-dependencies": "npm:^1.0.0" + checksum: 10c0/c5dc8dc8dd29c22799bf11bef14afe8ef674b943cf8a18b2c6bb2fa1c1b53e89a1b16ba0afce19976ff8e250bcb214daf3b883079db81d8591930d6aff057646 languageName: node linkType: hard -"@rnx-kit/metro-plugin-duplicates-checker@npm:^3.0.0": - version: 3.0.0 - resolution: "@rnx-kit/metro-plugin-duplicates-checker@npm:3.0.0" +"@rnx-kit/metro-plugin-duplicates-checker@npm:^3.0.3": + version: 3.0.3 + resolution: "@rnx-kit/metro-plugin-duplicates-checker@npm:3.0.3" dependencies: "@rnx-kit/console": "npm:^2.0.0" - "@rnx-kit/tools-node": "npm:^3.0.0" + "@rnx-kit/tools-node": "npm:^3.0.4" + "@rnx-kit/types-plugin-duplicates-checker": "npm:^1.0.0" bin: check-duplicates: lib/index.js - checksum: 10c0/6ea966f1bfb1f92817c679c2c7e2f067126b9467fc71e1ed9b58abef4d801323e486082fb300a5532c3f1dd4630f41f83d9691d71ad9ae5bea297759b50c0bd2 + checksum: 10c0/97929c043eda8843e57401688b6c78a83c680fd70bd4bcfae9a9bca6652cf5ad98b828ab50c603fd4022b094aba76396a819a99ecbffdee73c60852997eeb00a languageName: node linkType: hard -"@rnx-kit/metro-plugin-typescript@npm:^0.5.3": - version: 0.5.3 - resolution: "@rnx-kit/metro-plugin-typescript@npm:0.5.3" +"@rnx-kit/metro-plugin-typescript@npm:^0.5.4": + version: 0.5.4 + resolution: "@rnx-kit/metro-plugin-typescript@npm:0.5.4" dependencies: - "@rnx-kit/config": "npm:^0.7.0" "@rnx-kit/console": "npm:^2.0.0" - "@rnx-kit/tools-node": "npm:^3.0.3" - "@rnx-kit/tools-react-native": "npm:^2.3.2" + "@rnx-kit/tools-node": "npm:^3.0.4" + "@rnx-kit/tools-react-native": "npm:^2.3.3" + "@rnx-kit/types-bundle-config": "npm:^1.0.0" + "@rnx-kit/types-plugin-typescript": "npm:^1.0.0" "@rnx-kit/typescript-service": "npm:^2.0.2" typescript: "npm:>=4.7.0" - checksum: 10c0/90925be96ec23acb35ac42e2a3460d7bda79aa64c907f67f016075ec0e44b3ecd9decc7741f673dc41af19d5087d6b271efcf453d9e571bc99be64678c3e5c49 + checksum: 10c0/81949a06b30dd3cd0ad9d655a63030cec060e258fe8a776c58c749e6167378898a3107d84666d96dcda435f9bebb33b7358c03e0f3ea42e17281e199f4d0fed1 languageName: node linkType: hard @@ -9471,16 +9486,17 @@ __metadata: languageName: node linkType: hard -"@rnx-kit/metro-serializer-esbuild@npm:^0.3.0": - version: 0.3.0 - resolution: "@rnx-kit/metro-serializer-esbuild@npm:0.3.0" +"@rnx-kit/metro-serializer-esbuild@npm:^0.3.0, @rnx-kit/metro-serializer-esbuild@npm:^0.3.1": + version: 0.3.1 + resolution: "@rnx-kit/metro-serializer-esbuild@npm:0.3.1" dependencies: "@rnx-kit/console": "npm:^2.0.0" - "@rnx-kit/tools-node": "npm:^3.0.3" - "@rnx-kit/tools-react-native": "npm:^2.3.2" + "@rnx-kit/tools-node": "npm:^3.0.4" + "@rnx-kit/tools-react-native": "npm:^2.3.3" + "@rnx-kit/types-metro-serializer-esbuild": "npm:^1.0.0" esbuild: "npm:^0.27.1" esbuild-plugin-lodash: "npm:^1.2.0" - checksum: 10c0/25b9720cf6b2ec1387c2a773dad1ffc7d5547eace59dbaacdff008c5c03eb94bb4d9af7b762c60826e5c3104f48042a2c6367774bf5469b5006c686846dde895 + checksum: 10c0/df6f592d959361817b653f1dc07a211b3ec2316cab314d27646cc9e9828cd88bd3b63a360f11a74f445a5ca997d97b8b9fbd413f7732766e50307583922af5b5 languageName: node linkType: hard @@ -9567,10 +9583,15 @@ __metadata: languageName: node linkType: hard -"@rnx-kit/tools-filesystem@npm:^0.1.0": - version: 0.1.2 - resolution: "@rnx-kit/tools-filesystem@npm:0.1.2" - checksum: 10c0/36c740b611fd7d6f22f0e379e76274f52c1d57c5e6b56dc4caa4d91f9aacb001633ecb0860503a980c621e16fb18326905d3f21a5acda8614b70e35f33c53fb1 +"@rnx-kit/tools-filesystem@npm:^0.2.0": + version: 0.2.0 + resolution: "@rnx-kit/tools-filesystem@npm:0.2.0" + peerDependencies: + memfs: ">=4.0.0" + peerDependenciesMeta: + memfs: + optional: true + checksum: 10c0/397f3e521b581da733aba81b59f2a084766904f52c063e4f1d153f9972861d6061eae3ddab3b340ffa2ce8971df9a8483e9a8e3cc9d50d7e33ab64f212fe91ac languageName: node linkType: hard @@ -9581,29 +9602,34 @@ __metadata: languageName: node linkType: hard -"@rnx-kit/tools-node@npm:^3.0.0, @rnx-kit/tools-node@npm:^3.0.1, @rnx-kit/tools-node@npm:^3.0.3": - version: 3.0.3 - resolution: "@rnx-kit/tools-node@npm:3.0.3" - checksum: 10c0/5fa2123cb156fc6d268c95b2fa094b3ccf5f264ff5dcfd08f024454f45972093144e5745d4bcbe84e8f731faf01b7bfb6d3bca3e7c97ec89da3fc2e3e1121959 +"@rnx-kit/tools-node@npm:^3.0.0, @rnx-kit/tools-node@npm:^3.0.3, @rnx-kit/tools-node@npm:^3.0.4": + version: 3.0.4 + resolution: "@rnx-kit/tools-node@npm:3.0.4" + dependencies: + "@rnx-kit/types-node": "npm:^1.0.0" + checksum: 10c0/f5fb8c5e09cee58648add26bcba03685df64f11f96c3785e259a7bcf683064a975e1cb62f783bcbaaf80190271c1bd80a83364f82a74bd5ff59af42a1166ad02 languageName: node linkType: hard -"@rnx-kit/tools-packages@npm:^0.1.0, @rnx-kit/tools-packages@npm:^0.1.1": - version: 0.1.1 - resolution: "@rnx-kit/tools-packages@npm:0.1.1" +"@rnx-kit/tools-packages@npm:^0.1.2": + version: 0.1.2 + resolution: "@rnx-kit/tools-packages@npm:0.1.2" dependencies: - "@rnx-kit/tools-node": "npm:^3.0.0" + "@rnx-kit/tools-node": "npm:^3.0.4" "@rnx-kit/tools-workspaces": "npm:^0.2.1" - checksum: 10c0/88b2af4198c572b5079fb436904d50cb211b7ee026d89b4430ad5305200cd6f38a0849b52ba1b099d19b50837318e230e9904dbaeb24a6271aa65db9d30bd5d7 + "@rnx-kit/types-node": "npm:^1.0.0" + checksum: 10c0/c223858bf84bc8aef1776f3990cfecf3325da6df3b138552f41a5bf45f27055144fe0dd2d5baddb7f915e70e57287da3b6a6b73bf78ed40ab9733668325206e2 languageName: node linkType: hard -"@rnx-kit/tools-react-native@npm:^2.0.0, @rnx-kit/tools-react-native@npm:^2.1.0, @rnx-kit/tools-react-native@npm:^2.3.0, @rnx-kit/tools-react-native@npm:^2.3.1, @rnx-kit/tools-react-native@npm:^2.3.2": - version: 2.3.2 - resolution: "@rnx-kit/tools-react-native@npm:2.3.2" +"@rnx-kit/tools-react-native@npm:^2.1.0, @rnx-kit/tools-react-native@npm:^2.3.0, @rnx-kit/tools-react-native@npm:^2.3.1, @rnx-kit/tools-react-native@npm:^2.3.2, @rnx-kit/tools-react-native@npm:^2.3.3, @rnx-kit/tools-react-native@npm:^2.3.4": + version: 2.3.4 + resolution: "@rnx-kit/tools-react-native@npm:2.3.4" dependencies: - "@rnx-kit/tools-node": "npm:^3.0.3" - checksum: 10c0/eb12603e0a036d953689e2fb1db4995830cb74eb28847bf1f7d0600ab771b7c5b12388c0b93277690ae8d9bce03a13c56bbff099e867a957659bb1b14d888c2b + "@rnx-kit/tools-filesystem": "npm:^0.2.0" + "@rnx-kit/tools-node": "npm:^3.0.4" + "@rnx-kit/types-bundle-config": "npm:^1.0.0" + checksum: 10c0/14e1a9862a85d5ae4666ff3bc5184a266b743a305d223f2c79bd57aae7be59a0708d8c83d21fb6f018c296eb68fe010dbb829ca49517a7d50b4aef17bcfc8ce4 languageName: node linkType: hard @@ -9614,19 +9640,20 @@ __metadata: languageName: node linkType: hard -"@rnx-kit/tools-typescript@npm:^0.1.1": - version: 0.1.1 - resolution: "@rnx-kit/tools-typescript@npm:0.1.1" +"@rnx-kit/tools-typescript@npm:^0.1.3": + version: 0.1.3 + resolution: "@rnx-kit/tools-typescript@npm:0.1.3" dependencies: - "@rnx-kit/config": "npm:^0.7.0" + "@rnx-kit/config": "npm:^0.7.5" "@rnx-kit/console": "npm:^2.0.0" - "@rnx-kit/tools-node": "npm:^3.0.1" - "@rnx-kit/tools-packages": "npm:^0.1.1" - "@rnx-kit/tools-react-native": "npm:^2.0.0" + "@rnx-kit/tools-node": "npm:^3.0.4" + "@rnx-kit/tools-packages": "npm:^0.1.2" + "@rnx-kit/tools-react-native": "npm:^2.3.3" + "@rnx-kit/types-bundle-config": "npm:^1.0.0" "@rnx-kit/typescript-service": "npm:^2.0.0" peerDependencies: typescript: ">=4.7.0" - checksum: 10c0/981e1b0c6045ff2a3e18a3bae66c682da59a10c2d7452314ab131faec7d17ae8123cb982ad83f1863beaf83f822d58e8a2581f7c51019f6e85ffbc03fcb0cbd6 + checksum: 10c0/a0c8cc992a8113cf97ed378bb0f5eee6397bc7be42f80977e50bbc68d5c1b9496b9de5076c413dbe571e919c4413b90ec2ac5948ee7d4dfc74c669c03c745b3d languageName: node linkType: hard @@ -9643,10 +9670,73 @@ __metadata: languageName: node linkType: hard -"@rnx-kit/tsconfig@npm:^2.1.1": - version: 2.1.1 - resolution: "@rnx-kit/tsconfig@npm:2.1.1" - checksum: 10c0/53aed185abd644250d95c732e44ecb66bcdf3005cc6eb854ba217346fa29cf0ea892bbd391e15050a5b553fe7dc983130add30c9aa30b1f66a0ca498d3409d94 +"@rnx-kit/tsconfig@npm:^3.0.0": + version: 3.0.0 + resolution: "@rnx-kit/tsconfig@npm:3.0.0" + checksum: 10c0/87725a8b4bff64e998f1babfde4982aab3ec22538d0bde67f4980c019199741a91e796ba047d8cfafb538af3c6c07c1ae07239c9b3d73fe7ba30ab36cfbfe984 + languageName: node + linkType: hard + +"@rnx-kit/types-bundle-config@npm:^1.0.0": + version: 1.0.0 + resolution: "@rnx-kit/types-bundle-config@npm:1.0.0" + dependencies: + "@rnx-kit/types-metro-serializer-esbuild": "npm:^1.0.0" + "@rnx-kit/types-plugin-cyclic-dependencies": "npm:^1.0.0" + "@rnx-kit/types-plugin-duplicates-checker": "npm:^1.0.0" + "@rnx-kit/types-plugin-typescript": "npm:^1.0.0" + peerDependencies: + metro: ">=0.83.0" + peerDependenciesMeta: + metro: + optional: true + checksum: 10c0/854000d0609a140c4719ea2099c5843ac420fc3fdf7274a3ff5be52f1deebd17669025576cc32413279f9df1ffebbb4e128e676839479d76cb5d7c85d8c4640f + languageName: node + linkType: hard + +"@rnx-kit/types-kit-config@npm:^1.0.0": + version: 1.0.0 + resolution: "@rnx-kit/types-kit-config@npm:1.0.0" + dependencies: + "@rnx-kit/types-bundle-config": "npm:^1.0.0" + checksum: 10c0/164809621b7889af879463ba0f89b05ebc6113df5b78615cd2dcc289c4480b15b35a4f9a8f593068c0be352472a8410bc7acdc1e39aa165940e88fccb58a82e2 + languageName: node + linkType: hard + +"@rnx-kit/types-metro-serializer-esbuild@npm:^1.0.0": + version: 1.0.1 + resolution: "@rnx-kit/types-metro-serializer-esbuild@npm:1.0.1" + checksum: 10c0/1907fb5e747d327be004b9479ca40cdd328c10a322b51cbb423df6e0d488a32cfea3bea2f52894f9c3a7f54ee810516362861166b3a513de7b123eeb49aca6bf + languageName: node + linkType: hard + +"@rnx-kit/types-node@npm:^1.0.0": + version: 1.0.0 + resolution: "@rnx-kit/types-node@npm:1.0.0" + dependencies: + "@rnx-kit/types-kit-config": "npm:^1.0.0" + checksum: 10c0/601608822853b7a875adc4945f150a00ee25db9c701922c0e0c09197a6c0ff15c328995fa22b6c39f9081ce4e965898af04e7c3bfb3a68fdb9e7a6e4c780e162 + languageName: node + linkType: hard + +"@rnx-kit/types-plugin-cyclic-dependencies@npm:^1.0.0": + version: 1.0.0 + resolution: "@rnx-kit/types-plugin-cyclic-dependencies@npm:1.0.0" + checksum: 10c0/75d2ad3a17943e01472cb3385287749168d0535b6ab65a9ffc14117c25737c564ef7c06e8ac69645f40fc5d602ead7c4a9219256b8a47c786dc465d982aa845c + languageName: node + linkType: hard + +"@rnx-kit/types-plugin-duplicates-checker@npm:^1.0.0": + version: 1.0.0 + resolution: "@rnx-kit/types-plugin-duplicates-checker@npm:1.0.0" + checksum: 10c0/1d1cb8ef1f7ce28eafc486131f212f836df656bbc6fb6261934e76ca6cd26123b71d9eaec9c0ec86dc3ea803be5fb3487bd1bc0ca940fe5bfbe8a90fb0b1fedf + languageName: node + linkType: hard + +"@rnx-kit/types-plugin-typescript@npm:^1.0.0": + version: 1.0.0 + resolution: "@rnx-kit/types-plugin-typescript@npm:1.0.0" + checksum: 10c0/c792f81a3cbb8e15acbe66d0d23afa8b2e2090e725281bef90dd315bff03c01409601bf910d4d79137009e4246e4d60497fb50690477c96128c1184780ea852d languageName: node linkType: hard From 53d9c4b49c542e16bf1bd4cd78228b4d634ad320 Mon Sep 17 00:00:00 2001 From: Jason Morse Date: Fri, 6 Mar 2026 10:29:26 -0800 Subject: [PATCH 2/4] docs(changeset): Update to the latest rnx-kit versions, fix some typing issues, and correct the vscode settings --- .changeset/bumpy-melons-give.md | 75 +++++++++++++++++++++++++++++++++ 1 file changed, 75 insertions(+) create mode 100644 .changeset/bumpy-melons-give.md diff --git a/.changeset/bumpy-melons-give.md b/.changeset/bumpy-melons-give.md new file mode 100644 index 00000000000..e249ce1c235 --- /dev/null +++ b/.changeset/bumpy-melons-give.md @@ -0,0 +1,75 @@ +--- +"@uifabricshared/foundation-composable": patch +"@fluentui-react-native/experimental-appearance-additions": patch +"@uifabricshared/theming-react-native": patch +"@uifabricshared/foundation-settings": patch +"@fluentui-react-native/experimental-activity-indicator": patch +"@fluentui-react-native/experimental-native-font-metrics": patch +"@uifabricshared/foundation-compose": patch +"@fluentui-react-native/experimental-native-date-picker": patch +"@uifabricshared/foundation-tokens": patch +"@fluentui-react-native/themed-stylesheet": patch +"@uifabricshared/themed-settings": patch +"@fluentui-react-native/contextual-menu": patch +"@uifabricshared/theme-registry": patch +"@fluentui-react-native/vibrancy-view": patch +"@fluentui-react-native/focus-trap-zone": patch +"@fluentui-react-native/notification": patch +"@uifabricshared/theming-ramp": patch +"@fluentui-react-native/experimental-menu-button": patch +"@fluentui-react-native/interactive-hooks": patch +"@fluentui-react-native/persona-coin": patch +"@fluentui-react-native/menu-button": patch +"@fluentui-react-native/radio-group": patch +"@fluentui-react-native/experimental-checkbox": patch +"@fluentui-react-native/dropdown": patch +"@fluentui-react-native/experimental-expander": patch +"@fluentui-react-native/overflow": patch +"@fluentui-react-native/composition": patch +"@fluentui-react-native/use-styling": patch +"@fluentui-react-native/android-theme": patch +"@fluentui-react-native/default-theme": patch +"@fluentui-react-native/theming-utils": patch +"@fluentui-react-native/focus-zone": patch +"@fluentui-react-native/pressable": patch +"@fluentui-react-native/separator": patch +"@fluentui-react-native/popover": patch +"@fluentui-react-native/experimental-shimmer": patch +"@fluentui-react-native/spinner": patch +"@fluentui-react-native/tooltip": patch +"@fluentui-react-native/use-tokens": patch +"@fluentui-react-native/theme-tokens": patch +"@fluentui-react-native/checkbox": patch +"@fluentui-react-native/experimental-avatar": patch +"@fluentui-react-native/drawer": patch +"@fluentui-react-native/experimental-shadow": patch +"@fluentui-react-native/framework": patch +"@fluentui-react-native/use-slots": patch +"@fluentui-react-native/apple-theme": patch +"@fluentui-react-native/theme-types": patch +"@fluentui-react-native/win32-theme": patch +"@fluentui-react-native/callout": patch +"@fluentui-react-native/divider": patch +"@fluentui-react-native/persona": patch +"@fluentui-react-native/tablist": patch +"@fluentui-react-native/use-slot": patch +"@fluentui-react-native/avatar": patch +"@fluentui-react-native/button": patch +"@fluentui-react-native/switch": patch +"@fluentui-react-native/badge": patch +"@fluentui-react-native/input": patch +"@fluentui-react-native/stack": patch +"@fluentui-react-native/chip": patch +"@fluentui-react-native/icon": patch +"@fluentui-react-native/link": patch +"@fluentui-react-native/menu": patch +"@fluentui-react-native/text": patch +"@fluentui-react-native/theme": patch +"@fluentui-react-native/framework-base": patch +"@fluentui/react-native": patch +"@fluentui-react-native/adapters": patch +"@fluentui-react-native/styling-utils": patch +"@fluentui-react-native/tokens": patch +--- + +Update to the latest rnx-kit versions, fix some typing issues, and correct the vscode settings From 263daafc696fc47904d8ffd52f983ec605fe1452 Mon Sep 17 00:00:00 2001 From: Jason Morse Date: Fri, 6 Mar 2026 12:45:41 -0800 Subject: [PATCH 3/4] fix react-test-renderer version mismatch --- .yarnrc.yml | 4 +- apps/tester-core/package.json | 2 +- apps/win32-81/package.json | 2 +- packages/components/Avatar/package.json | 2 +- packages/components/Badge/package.json | 2 +- packages/components/Button/package.json | 2 +- packages/components/Callout/package.json | 2 +- packages/components/Checkbox/package.json | 2 +- packages/components/Chip/package.json | 2 +- .../components/ContextualMenu/package.json | 2 +- packages/components/Divider/package.json | 2 +- .../components/FocusTrapZone/package.json | 2 +- packages/components/FocusZone/package.json | 2 +- packages/components/Icon/package.json | 2 +- packages/components/Input/package.json | 2 +- packages/components/Link/package.json | 2 +- packages/components/Menu/package.json | 2 +- packages/components/MenuButton/package.json | 2 +- packages/components/Notification/package.json | 2 +- packages/components/RadioGroup/package.json | 2 +- packages/components/Separator/package.json | 2 +- packages/components/Stack/package.json | 2 +- packages/components/Switch/package.json | 2 +- packages/components/TabList/package.json | 2 +- packages/components/Text/package.json | 2 +- packages/configs/babel-config/package.json | 2 +- packages/configs/kit-config/furn-preset.ts | 1 + packages/experimental/Avatar/package.json | 2 +- packages/experimental/Drawer/package.json | 2 +- packages/experimental/MenuButton/package.json | 2 +- packages/experimental/Overflow/package.json | 2 +- packages/experimental/Shadow/package.json | 2 +- packages/experimental/Shimmer/package.json | 2 +- packages/experimental/Tooltip/package.json | 2 +- packages/framework/composition/package.json | 2 +- packages/framework/framework/package.json | 2 +- packages/framework/use-slot/package.json | 2 +- packages/framework/use-slots/package.json | 2 +- packages/framework/use-styling/package.json | 2 +- packages/framework/use-tokens/package.json | 2 +- packages/utils/interactive-hooks/package.json | 2 +- packages/utils/test-tools/package.json | 17 +- yarn.lock | 1121 +++++++++-------- 43 files changed, 668 insertions(+), 553 deletions(-) diff --git a/.yarnrc.yml b/.yarnrc.yml index 3969fdd4f0c..9fbce8f4da0 100644 --- a/.yarnrc.yml +++ b/.yarnrc.yml @@ -217,7 +217,7 @@ catalogs: metro-core: ^0.83.1 metro-resolver: ^0.83.1 metro-runtime: ^0.83.1 - react: 19.1.0 + react: 19.1.4 react-dom: ^19.1.0 react-native: ^0.81.0 react-native-base64: ^0.2.1 @@ -237,7 +237,7 @@ catalogs: react-native-test-app: ^4.4.11 react-native-webview: ^13.14.1 react-native-windows: ^0.81.0 - react-test-renderer: 19.1.0 + react-test-renderer: 19.1.4 dynamicPackageExtensions: ./scripts/dynamic.extensions.mjs diff --git a/apps/tester-core/package.json b/apps/tester-core/package.json index 40b7185db2f..300f21266a0 100644 --- a/apps/tester-core/package.json +++ b/apps/tester-core/package.json @@ -127,7 +127,7 @@ "react-native-svg-transformer": "^1.0.0", "react-native-test-app": "^3.9.2", "react-native-windows": "^0.81.0", - "react-test-renderer": "19.1.0", + "react-test-renderer": "19.1.4", "webdriverio": "catalog:" }, "peerDependencies": { diff --git a/apps/win32-81/package.json b/apps/win32-81/package.json index bb98e4e0d90..078f4d5d1ad 100644 --- a/apps/win32-81/package.json +++ b/apps/win32-81/package.json @@ -73,7 +73,7 @@ "oxc-resolver": "catalog:", "react-native-svg-transformer": "^1.0.0", "react-native-test-app": "^4.4.11", - "react-test-renderer": "19.1.0", + "react-test-renderer": "19.1.4", "rimraf": "catalog:" }, "jest": { diff --git a/packages/components/Avatar/package.json b/packages/components/Avatar/package.json index 5f81c1eb34c..7c05f5993ce 100644 --- a/packages/components/Avatar/package.json +++ b/packages/components/Avatar/package.json @@ -65,7 +65,7 @@ "react-native-macos": "^0.81.0", "react-native-svg": "^15.12.1", "react-native-windows": "^0.81.0", - "react-test-renderer": "19.1.0" + "react-test-renderer": "19.1.4" }, "peerDependencies": { "@office-iss/react-native-win32": "^0.74.0", diff --git a/packages/components/Badge/package.json b/packages/components/Badge/package.json index d0aae884ea8..a61d2a09aa3 100644 --- a/packages/components/Badge/package.json +++ b/packages/components/Badge/package.json @@ -64,7 +64,7 @@ "react-native-macos": "^0.81.0", "react-native-svg": "^15.12.1", "react-native-windows": "^0.81.0", - "react-test-renderer": "19.1.0" + "react-test-renderer": "19.1.4" }, "peerDependencies": { "@office-iss/react-native-win32": "^0.74.0", diff --git a/packages/components/Button/package.json b/packages/components/Button/package.json index 7824ae8d4d1..6269de10c34 100644 --- a/packages/components/Button/package.json +++ b/packages/components/Button/package.json @@ -74,7 +74,7 @@ "react-native-macos": "^0.81.0", "react-native-svg": "^15.12.1", "react-native-windows": "^0.81.0", - "react-test-renderer": "19.1.0" + "react-test-renderer": "19.1.4" }, "peerDependencies": { "@office-iss/react-native-win32": "^0.74.0", diff --git a/packages/components/Callout/package.json b/packages/components/Callout/package.json index b2a3ec34f67..d01fe2e0549 100644 --- a/packages/components/Callout/package.json +++ b/packages/components/Callout/package.json @@ -59,7 +59,7 @@ "react-native": "^0.81.6", "react-native-macos": "^0.81.0", "react-native-windows": "^0.81.0", - "react-test-renderer": "19.1.0" + "react-test-renderer": "19.1.4" }, "peerDependencies": { "@office-iss/react-native-win32": "^0.74.0", diff --git a/packages/components/Checkbox/package.json b/packages/components/Checkbox/package.json index a7d2d8800a5..e6e82436c9f 100644 --- a/packages/components/Checkbox/package.json +++ b/packages/components/Checkbox/package.json @@ -70,7 +70,7 @@ "react-native-macos": "^0.81.0", "react-native-svg": "^15.12.1", "react-native-windows": "^0.81.0", - "react-test-renderer": "19.1.0" + "react-test-renderer": "19.1.4" }, "peerDependencies": { "@office-iss/react-native-win32": "^0.74.0", diff --git a/packages/components/Chip/package.json b/packages/components/Chip/package.json index 19df8844d87..79c5d255ddb 100644 --- a/packages/components/Chip/package.json +++ b/packages/components/Chip/package.json @@ -60,7 +60,7 @@ "react-native-macos": "^0.81.0", "react-native-svg": "^15.12.1", "react-native-windows": "^0.81.0", - "react-test-renderer": "19.1.0" + "react-test-renderer": "19.1.4" }, "peerDependencies": { "@office-iss/react-native-win32": "^0.74.0", diff --git a/packages/components/ContextualMenu/package.json b/packages/components/ContextualMenu/package.json index 4da47d612ce..a7f48e5acf5 100644 --- a/packages/components/ContextualMenu/package.json +++ b/packages/components/ContextualMenu/package.json @@ -70,7 +70,7 @@ "react-native-svg": "^15.12.1", "react-native-svg-transformer": "^1.0.0", "react-native-windows": "^0.81.0", - "react-test-renderer": "19.1.0" + "react-test-renderer": "19.1.4" }, "peerDependencies": { "@office-iss/react-native-win32": "^0.74.0", diff --git a/packages/components/Divider/package.json b/packages/components/Divider/package.json index 7daf0082fc1..fd2c72eeb9d 100644 --- a/packages/components/Divider/package.json +++ b/packages/components/Divider/package.json @@ -61,7 +61,7 @@ "react-native-macos": "^0.81.0", "react-native-svg": "^15.12.1", "react-native-windows": "^0.81.0", - "react-test-renderer": "19.1.0" + "react-test-renderer": "19.1.4" }, "peerDependencies": { "@office-iss/react-native-win32": "^0.74.0", diff --git a/packages/components/FocusTrapZone/package.json b/packages/components/FocusTrapZone/package.json index 7d9806cf3a0..7a4548ad829 100644 --- a/packages/components/FocusTrapZone/package.json +++ b/packages/components/FocusTrapZone/package.json @@ -57,7 +57,7 @@ "react-native": "^0.81.6", "react-native-macos": "^0.81.0", "react-native-windows": "^0.81.0", - "react-test-renderer": "19.1.0" + "react-test-renderer": "19.1.4" }, "peerDependencies": { "@office-iss/react-native-win32": "^0.74.0", diff --git a/packages/components/FocusZone/package.json b/packages/components/FocusZone/package.json index 3d30a49c857..c65058cd3a9 100644 --- a/packages/components/FocusZone/package.json +++ b/packages/components/FocusZone/package.json @@ -58,7 +58,7 @@ "react-native": "^0.81.6", "react-native-macos": "^0.81.0", "react-native-windows": "^0.81.0", - "react-test-renderer": "19.1.0" + "react-test-renderer": "19.1.4" }, "peerDependencies": { "@office-iss/react-native-win32": "^0.74.0", diff --git a/packages/components/Icon/package.json b/packages/components/Icon/package.json index 5a6dcbe2258..839d4fe3805 100644 --- a/packages/components/Icon/package.json +++ b/packages/components/Icon/package.json @@ -59,7 +59,7 @@ "react-native-macos": "^0.81.0", "react-native-svg": "^15.12.1", "react-native-windows": "^0.81.0", - "react-test-renderer": "19.1.0" + "react-test-renderer": "19.1.4" }, "peerDependencies": { "@office-iss/react-native-win32": "^0.74.0", diff --git a/packages/components/Input/package.json b/packages/components/Input/package.json index 156294e76c0..08a13344d2d 100644 --- a/packages/components/Input/package.json +++ b/packages/components/Input/package.json @@ -63,7 +63,7 @@ "react-native-macos": "^0.81.0", "react-native-svg": "^15.12.1", "react-native-windows": "^0.81.0", - "react-test-renderer": "19.1.0" + "react-test-renderer": "19.1.4" }, "peerDependencies": { "@office-iss/react-native-win32": "^0.74.0", diff --git a/packages/components/Link/package.json b/packages/components/Link/package.json index a551773509a..f81df8b0828 100644 --- a/packages/components/Link/package.json +++ b/packages/components/Link/package.json @@ -63,7 +63,7 @@ "react-native": "^0.81.6", "react-native-macos": "^0.81.0", "react-native-windows": "^0.81.0", - "react-test-renderer": "19.1.0" + "react-test-renderer": "19.1.4" }, "peerDependencies": { "@office-iss/react-native-win32": "^0.74.0", diff --git a/packages/components/Menu/package.json b/packages/components/Menu/package.json index 365efe1d12d..9eac7646652 100644 --- a/packages/components/Menu/package.json +++ b/packages/components/Menu/package.json @@ -71,7 +71,7 @@ "react-native-macos": "^0.81.0", "react-native-svg": "^15.12.1", "react-native-windows": "^0.81.0", - "react-test-renderer": "19.1.0" + "react-test-renderer": "19.1.4" }, "peerDependencies": { "@office-iss/react-native-win32": "^0.74.0", diff --git a/packages/components/MenuButton/package.json b/packages/components/MenuButton/package.json index b2cf5bf246c..ceb1fd20fc5 100644 --- a/packages/components/MenuButton/package.json +++ b/packages/components/MenuButton/package.json @@ -63,7 +63,7 @@ "react-native-macos": "^0.81.0", "react-native-svg": "^15.12.1", "react-native-windows": "^0.81.0", - "react-test-renderer": "19.1.0" + "react-test-renderer": "19.1.4" }, "peerDependencies": { "@office-iss/react-native-win32": "^0.74.0", diff --git a/packages/components/Notification/package.json b/packages/components/Notification/package.json index a73d4e81b41..b7583f33d75 100644 --- a/packages/components/Notification/package.json +++ b/packages/components/Notification/package.json @@ -69,7 +69,7 @@ "react-native-macos": "^0.81.0", "react-native-svg": "^15.12.1", "react-native-windows": "^0.81.0", - "react-test-renderer": "19.1.0" + "react-test-renderer": "19.1.4" }, "peerDependencies": { "@office-iss/react-native-win32": "^0.74.0", diff --git a/packages/components/RadioGroup/package.json b/packages/components/RadioGroup/package.json index eaa6b9ee06d..dd9cea1473c 100644 --- a/packages/components/RadioGroup/package.json +++ b/packages/components/RadioGroup/package.json @@ -69,7 +69,7 @@ "react-native-macos": "^0.81.0", "react-native-svg": "^15.12.1", "react-native-windows": "^0.81.0", - "react-test-renderer": "19.1.0" + "react-test-renderer": "19.1.4" }, "peerDependencies": { "@office-iss/react-native-win32": "^0.74.0", diff --git a/packages/components/Separator/package.json b/packages/components/Separator/package.json index f3f1047a9e2..e08b5aa51e2 100644 --- a/packages/components/Separator/package.json +++ b/packages/components/Separator/package.json @@ -57,7 +57,7 @@ "react-native": "^0.81.6", "react-native-macos": "^0.81.0", "react-native-windows": "^0.81.0", - "react-test-renderer": "19.1.0" + "react-test-renderer": "19.1.4" }, "peerDependencies": { "@office-iss/react-native-win32": "^0.74.0", diff --git a/packages/components/Stack/package.json b/packages/components/Stack/package.json index e4d9d898ffb..fd1835500ab 100644 --- a/packages/components/Stack/package.json +++ b/packages/components/Stack/package.json @@ -61,7 +61,7 @@ "react-native": "^0.81.6", "react-native-macos": "^0.81.0", "react-native-windows": "^0.81.0", - "react-test-renderer": "19.1.0" + "react-test-renderer": "19.1.4" }, "peerDependencies": { "@office-iss/react-native-win32": "^0.74.0", diff --git a/packages/components/Switch/package.json b/packages/components/Switch/package.json index 10a65e452b0..786f52fd5e2 100644 --- a/packages/components/Switch/package.json +++ b/packages/components/Switch/package.json @@ -62,7 +62,7 @@ "react-native": "^0.81.6", "react-native-macos": "^0.81.0", "react-native-windows": "^0.81.0", - "react-test-renderer": "19.1.0" + "react-test-renderer": "19.1.4" }, "peerDependencies": { "@office-iss/react-native-win32": "^0.74.0", diff --git a/packages/components/TabList/package.json b/packages/components/TabList/package.json index 8a69283698f..93afcf022eb 100644 --- a/packages/components/TabList/package.json +++ b/packages/components/TabList/package.json @@ -65,7 +65,7 @@ "react-native-macos": "^0.81.0", "react-native-svg": "^15.12.1", "react-native-windows": "^0.81.0", - "react-test-renderer": "19.1.0" + "react-test-renderer": "19.1.4" }, "peerDependencies": { "@office-iss/react-native-win32": "^0.74.0", diff --git a/packages/components/Text/package.json b/packages/components/Text/package.json index f1a30f7cee6..e917ddf7d54 100644 --- a/packages/components/Text/package.json +++ b/packages/components/Text/package.json @@ -60,7 +60,7 @@ "react-native": "^0.81.6", "react-native-macos": "^0.81.0", "react-native-windows": "^0.81.0", - "react-test-renderer": "19.1.0" + "react-test-renderer": "19.1.4" }, "peerDependencies": { "@office-iss/react-native-win32": "^0.74.0", diff --git a/packages/configs/babel-config/package.json b/packages/configs/babel-config/package.json index 00f93cc8d1f..0942d809e38 100644 --- a/packages/configs/babel-config/package.json +++ b/packages/configs/babel-config/package.json @@ -25,7 +25,7 @@ "devDependencies": { "@babel/core": "catalog:", "@babel/runtime": "catalog:", - "@react-native/babel-preset": "catalog:0.74", + "@react-native/babel-preset": "catalog:0.81", "@rnx-kit/babel-preset-metro-react-native": "catalog:" }, "peerDependencies": { diff --git a/packages/configs/kit-config/furn-preset.ts b/packages/configs/kit-config/furn-preset.ts index bd878321897..c4a994754e8 100644 --- a/packages/configs/kit-config/furn-preset.ts +++ b/packages/configs/kit-config/furn-preset.ts @@ -90,6 +90,7 @@ function formFurnPreset(rnPreset: VersionPreset, _version: number): VersionPrese react: { ...presetReact, capabilities: ['react-types'] }, 'react-test-renderer': { ...presetReactTestRenderer, + version: presetReact.version, capabilities: ['react', 'react-test-renderer-types'], }, 'react-types': { diff --git a/packages/experimental/Avatar/package.json b/packages/experimental/Avatar/package.json index 855e2f86fe8..40d25a4429b 100644 --- a/packages/experimental/Avatar/package.json +++ b/packages/experimental/Avatar/package.json @@ -53,7 +53,7 @@ "react-native": "^0.81.6", "react-native-macos": "^0.81.0", "react-native-windows": "^0.81.0", - "react-test-renderer": "19.1.0" + "react-test-renderer": "19.1.4" }, "peerDependencies": { "@office-iss/react-native-win32": "^0.74.0", diff --git a/packages/experimental/Drawer/package.json b/packages/experimental/Drawer/package.json index fa2c500fff3..2bec16bd57f 100644 --- a/packages/experimental/Drawer/package.json +++ b/packages/experimental/Drawer/package.json @@ -57,7 +57,7 @@ "react-native": "^0.81.6", "react-native-macos": "^0.81.0", "react-native-windows": "^0.81.0", - "react-test-renderer": "19.1.0" + "react-test-renderer": "19.1.4" }, "peerDependencies": { "@office-iss/react-native-win32": "^0.74.0", diff --git a/packages/experimental/MenuButton/package.json b/packages/experimental/MenuButton/package.json index 7fe5505f8e7..b0833efe400 100644 --- a/packages/experimental/MenuButton/package.json +++ b/packages/experimental/MenuButton/package.json @@ -59,7 +59,7 @@ "react-native-macos": "^0.81.0", "react-native-svg": "^15.12.1", "react-native-windows": "^0.81.0", - "react-test-renderer": "19.1.0" + "react-test-renderer": "19.1.4" }, "peerDependencies": { "@office-iss/react-native-win32": "^0.74.0", diff --git a/packages/experimental/Overflow/package.json b/packages/experimental/Overflow/package.json index ad049e11596..e0e6c7ee82b 100644 --- a/packages/experimental/Overflow/package.json +++ b/packages/experimental/Overflow/package.json @@ -55,7 +55,7 @@ "react-native-macos": "^0.81.0", "react-native-svg": "^15.12.1", "react-native-windows": "^0.81.0", - "react-test-renderer": "19.1.0" + "react-test-renderer": "19.1.4" }, "peerDependencies": { "@office-iss/react-native-win32": "^0.74.0", diff --git a/packages/experimental/Shadow/package.json b/packages/experimental/Shadow/package.json index a4371e31e3d..9a2823f8adf 100644 --- a/packages/experimental/Shadow/package.json +++ b/packages/experimental/Shadow/package.json @@ -57,7 +57,7 @@ "react-native": "^0.81.6", "react-native-macos": "^0.81.0", "react-native-windows": "^0.81.0", - "react-test-renderer": "19.1.0" + "react-test-renderer": "19.1.4" }, "peerDependencies": { "@office-iss/react-native-win32": "^0.74.0", diff --git a/packages/experimental/Shimmer/package.json b/packages/experimental/Shimmer/package.json index bf526498b5e..a92e77471d1 100644 --- a/packages/experimental/Shimmer/package.json +++ b/packages/experimental/Shimmer/package.json @@ -59,7 +59,7 @@ "react-native-macos": "^0.81.0", "react-native-svg": "^15.12.1", "react-native-windows": "^0.81.0", - "react-test-renderer": "19.1.0" + "react-test-renderer": "19.1.4" }, "peerDependencies": { "@office-iss/react-native-win32": "^0.74.0", diff --git a/packages/experimental/Tooltip/package.json b/packages/experimental/Tooltip/package.json index a7921e91971..f9b60f6a389 100644 --- a/packages/experimental/Tooltip/package.json +++ b/packages/experimental/Tooltip/package.json @@ -54,7 +54,7 @@ "react-native-macos": "^0.81.0", "react-native-svg": "^15.12.1", "react-native-windows": "^0.81.0", - "react-test-renderer": "19.1.0" + "react-test-renderer": "19.1.4" }, "peerDependencies": { "@office-iss/react-native-win32": "^0.74.0", diff --git a/packages/framework/composition/package.json b/packages/framework/composition/package.json index 9e1f23e39b5..fca31e12f37 100644 --- a/packages/framework/composition/package.json +++ b/packages/framework/composition/package.json @@ -52,7 +52,7 @@ "@types/react-test-renderer": "^19.1.0", "react": "19.1.4", "react-native": "^0.81.6", - "react-test-renderer": "19.1.0" + "react-test-renderer": "19.1.4" }, "peerDependencies": { "@types/react": "~18.2.0 || ~19.0.0 || ~19.1.4", diff --git a/packages/framework/framework/package.json b/packages/framework/framework/package.json index ea8849d8192..e44ceda1b64 100644 --- a/packages/framework/framework/package.json +++ b/packages/framework/framework/package.json @@ -64,7 +64,7 @@ "react-native": "^0.81.6", "react-native-macos": "^0.81.0", "react-native-windows": "^0.81.0", - "react-test-renderer": "19.1.0" + "react-test-renderer": "19.1.4" }, "peerDependencies": { "@office-iss/react-native-win32": "^0.74.0", diff --git a/packages/framework/use-slot/package.json b/packages/framework/use-slot/package.json index 359a0d8d094..64cbae3f298 100644 --- a/packages/framework/use-slot/package.json +++ b/packages/framework/use-slot/package.json @@ -55,7 +55,7 @@ "@types/react-test-renderer": "^19.1.0", "react": "19.1.4", "react-native": "^0.81.6", - "react-test-renderer": "19.1.0" + "react-test-renderer": "19.1.4" }, "peerDependencies": { "@types/react": "~18.2.0 || ~19.0.0 || ~19.1.4", diff --git a/packages/framework/use-slots/package.json b/packages/framework/use-slots/package.json index fbf4e7f6a92..53bc5a2aaba 100644 --- a/packages/framework/use-slots/package.json +++ b/packages/framework/use-slots/package.json @@ -55,7 +55,7 @@ "@types/react-test-renderer": "^19.1.0", "react": "19.1.4", "react-native": "^0.81.6", - "react-test-renderer": "19.1.0" + "react-test-renderer": "19.1.4" }, "peerDependencies": { "@types/react": "~18.2.0 || ~19.0.0 || ~19.1.4", diff --git a/packages/framework/use-styling/package.json b/packages/framework/use-styling/package.json index 1609bee3c10..5ee144eb775 100644 --- a/packages/framework/use-styling/package.json +++ b/packages/framework/use-styling/package.json @@ -56,7 +56,7 @@ "@types/react-test-renderer": "^19.1.0", "react": "19.1.4", "react-native": "^0.81.6", - "react-test-renderer": "19.1.0" + "react-test-renderer": "19.1.4" }, "peerDependencies": { "@types/react": "~18.2.0 || ~19.0.0 || ~19.1.4", diff --git a/packages/framework/use-tokens/package.json b/packages/framework/use-tokens/package.json index b014c6198e0..f8d1a1623d5 100644 --- a/packages/framework/use-tokens/package.json +++ b/packages/framework/use-tokens/package.json @@ -55,7 +55,7 @@ "@types/react-test-renderer": "^19.1.0", "react": "19.1.4", "react-native": "^0.81.6", - "react-test-renderer": "19.1.0" + "react-test-renderer": "19.1.4" }, "peerDependencies": { "@types/react": "~18.2.0 || ~19.0.0 || ~19.1.4", diff --git a/packages/utils/interactive-hooks/package.json b/packages/utils/interactive-hooks/package.json index fbb6a4433f6..1ba8bd5d65c 100644 --- a/packages/utils/interactive-hooks/package.json +++ b/packages/utils/interactive-hooks/package.json @@ -58,7 +58,7 @@ "react-native": "^0.81.6", "react-native-macos": "^0.81.0", "react-native-windows": "^0.81.0", - "react-test-renderer": "19.1.0" + "react-test-renderer": "19.1.4" }, "peerDependencies": { "@office-iss/react-native-win32": "^0.74.0", diff --git a/packages/utils/test-tools/package.json b/packages/utils/test-tools/package.json index 23cb4fe3175..79d6bc139c6 100644 --- a/packages/utils/test-tools/package.json +++ b/packages/utils/test-tools/package.json @@ -42,16 +42,16 @@ "@fluentui-react-native/theme-types": "workspace:*", "@react-native/babel-preset": "^0.81.0", "@types/jest": "^29.0.0", - "@types/react": "~19.1.0", + "@types/react": "~19.1.4", "@types/react-test-renderer": "^19.1.0", - "react": "19.1.0", - "react-native": "^0.81.0", - "react-test-renderer": "19.1.0" + "react": "19.1.4", + "react-native": "^0.81.6", + "react-test-renderer": "19.1.4" }, "peerDependencies": { - "@types/react": "~18.2.0 || ~19.0.0 || ~19.1.0", - "react": "18.2.0 || 19.0.0 || 19.1.0", - "react-native": "^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0" + "@types/react": "~18.2.0 || ~19.0.0 || ~19.1.4", + "react": "18.2.0 || 19.0.0 || 19.1.4", + "react-native": "^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.6" }, "peerDependenciesMeta": { "@types/react": { @@ -63,6 +63,9 @@ "extends": "@fluentui-react-native/kit-config", "alignDeps": { "capabilities": [ + "core", + "react", + "react-test-renderer", "tools-core", "tools-jest" ] diff --git a/yarn.lock b/yarn.lock index 4a8cac106ac..7fd7126fa54 100644 --- a/yarn.lock +++ b/yarn.lock @@ -2669,16 +2669,16 @@ __metadata: "@react-native-community/cli-platform-android": "npm:^20.0.0" "@react-native-community/cli-platform-ios": "npm:^20.0.0" "@react-native/metro-config": "npm:^0.81.0" - "@types/react": "npm:~19.1.0" - react: "npm:19.1.0" - react-native: "npm:^0.81.0" + "@types/react": "npm:~19.1.4" + react: "npm:19.1.4" + react-native: "npm:^0.81.6" react-native-macos: "npm:^0.81.0" react-native-windows: "npm:^0.81.0" peerDependencies: "@office-iss/react-native-win32": ^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0 - "@types/react": ~18.2.0 || ~19.0.0 || ~19.1.0 - react: 18.2.0 || 19.0.0 || 19.1.0 - react-native: ^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0 + "@types/react": ~18.2.0 || ~19.0.0 || ~19.1.4 + react: 18.2.0 || 19.0.0 || 19.1.4 + react-native: ^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.6 react-native-macos: ^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0 react-native-windows: ^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0 peerDependenciesMeta: @@ -2713,16 +2713,16 @@ __metadata: "@react-native-community/cli-platform-ios": "npm:^20.0.0" "@react-native/babel-preset": "npm:^0.81.0" "@react-native/metro-config": "npm:^0.81.0" - "@types/react": "npm:~19.1.0" - react: "npm:19.1.0" - react-native: "npm:^0.81.0" + "@types/react": "npm:~19.1.4" + react: "npm:19.1.4" + react-native: "npm:^0.81.6" react-native-macos: "npm:^0.81.0" react-native-windows: "npm:^0.81.0" peerDependencies: "@office-iss/react-native-win32": ^0.74.0 - "@types/react": ~18.2.0 || ~19.0.0 || ~19.1.0 - react: 18.2.0 || 19.0.0 || 19.1.0 - react-native: ^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0 + "@types/react": ~18.2.0 || ~19.0.0 || ~19.1.4 + react: 18.2.0 || 19.0.0 || 19.1.4 + react-native: ^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.6 react-native-macos: ^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0 react-native-windows: ^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0 peerDependenciesMeta: @@ -2761,17 +2761,17 @@ __metadata: "@react-native-community/cli-platform-ios": "npm:^20.0.0" "@react-native/babel-preset": "npm:^0.81.0" "@react-native/metro-config": "npm:^0.81.0" - "@types/react": "npm:~19.1.0" + "@types/react": "npm:~19.1.4" assert-never: "npm:^1.2.1" - react: "npm:19.1.0" - react-native: "npm:^0.81.0" + react: "npm:19.1.4" + react-native: "npm:^0.81.6" react-native-macos: "npm:^0.81.0" react-native-windows: "npm:^0.81.0" peerDependencies: "@office-iss/react-native-win32": ^0.74.0 - "@types/react": ~18.2.0 || ~19.0.0 || ~19.1.0 - react: 18.2.0 || 19.0.0 || 19.1.0 - react-native: ^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0 + "@types/react": ~18.2.0 || ~19.0.0 || ~19.1.4 + react: 18.2.0 || 19.0.0 || 19.1.4 + react-native: ^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.6 react-native-macos: ^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0 react-native-windows: ^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0 peerDependenciesMeta: @@ -2811,20 +2811,20 @@ __metadata: "@react-native-community/cli-platform-ios": "npm:^20.0.0" "@react-native/babel-preset": "npm:^0.81.0" "@react-native/metro-config": "npm:^0.81.0" - "@types/react": "npm:~19.1.0" + "@types/react": "npm:~19.1.4" "@types/react-test-renderer": "npm:^19.1.0" - react: "npm:19.1.0" - react-native: "npm:^0.81.0" + react: "npm:19.1.4" + react-native: "npm:^0.81.6" react-native-macos: "npm:^0.81.0" react-native-svg: "npm:^15.12.1" react-native-windows: "npm:^0.81.0" - react-test-renderer: "npm:19.1.0" + react-test-renderer: "npm:19.1.4" unicode-segmenter: "npm:^0.14.4" peerDependencies: "@office-iss/react-native-win32": ^0.74.0 - "@types/react": ~18.2.0 || ~19.0.0 || ~19.1.0 - react: 18.2.0 || 19.0.0 || 19.1.0 - react-native: ^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0 + "@types/react": ~18.2.0 || ~19.0.0 || ~19.1.4 + react: 18.2.0 || 19.0.0 || 19.1.4 + react-native: ^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.6 react-native-macos: ^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0 react-native-svg: ">=15.0.0 <15.13.0 || >=15.4.0 <15.13.0 || ^15.11.2 || ^15.12.1" react-native-windows: ^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0 @@ -2852,7 +2852,7 @@ __metadata: "@babel/preset-react": "catalog:" "@babel/preset-typescript": "catalog:" "@babel/runtime": "catalog:" - "@react-native/babel-preset": "catalog:0.74" + "@react-native/babel-preset": "catalog:0.81" "@rnx-kit/babel-preset-metro-react-native": "catalog:" peerDependencies: "@babel/core": "*" @@ -2889,19 +2889,19 @@ __metadata: "@react-native-community/cli-platform-ios": "npm:^20.0.0" "@react-native/babel-preset": "npm:^0.81.0" "@react-native/metro-config": "npm:^0.81.0" - "@types/react": "npm:~19.1.0" + "@types/react": "npm:~19.1.4" "@types/react-test-renderer": "npm:^19.1.0" - react: "npm:19.1.0" - react-native: "npm:^0.81.0" + react: "npm:19.1.4" + react-native: "npm:^0.81.6" react-native-macos: "npm:^0.81.0" react-native-svg: "npm:^15.12.1" react-native-windows: "npm:^0.81.0" - react-test-renderer: "npm:19.1.0" + react-test-renderer: "npm:19.1.4" peerDependencies: "@office-iss/react-native-win32": ^0.74.0 - "@types/react": ~18.2.0 || ~19.0.0 || ~19.1.0 - react: 18.2.0 || 19.0.0 || 19.1.0 - react-native: ^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0 + "@types/react": ~18.2.0 || ~19.0.0 || ~19.1.4 + react: 18.2.0 || 19.0.0 || 19.1.4 + react-native: ^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.6 react-native-macos: ^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0 react-native-svg: ">=15.0.0 <15.13.0 || >=15.4.0 <15.13.0 || ^15.11.2 || ^15.12.1" react-native-windows: ^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0 @@ -2949,22 +2949,22 @@ __metadata: "@react-native-community/cli-platform-ios": "npm:^20.0.0" "@react-native/babel-preset": "npm:^0.81.0" "@react-native/metro-config": "npm:^0.81.0" - "@types/react": "npm:~19.1.0" + "@types/react": "npm:~19.1.4" "@types/react-test-renderer": "npm:^19.1.0" "@uifabricshared/foundation-composable": "workspace:*" "@uifabricshared/foundation-compose": "workspace:*" "@uifabricshared/foundation-settings": "workspace:*" - react: "npm:19.1.0" - react-native: "npm:^0.81.0" + react: "npm:19.1.4" + react-native: "npm:^0.81.6" react-native-macos: "npm:^0.81.0" react-native-svg: "npm:^15.12.1" react-native-windows: "npm:^0.81.0" - react-test-renderer: "npm:19.1.0" + react-test-renderer: "npm:19.1.4" peerDependencies: "@office-iss/react-native-win32": ^0.74.0 - "@types/react": ~18.2.0 || ~19.0.0 || ~19.1.0 - react: 18.2.0 || 19.0.0 || 19.1.0 - react-native: ^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0 + "@types/react": ~18.2.0 || ~19.0.0 || ~19.1.4 + react: 18.2.0 || 19.0.0 || 19.1.4 + react-native: ^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.6 react-native-macos: ^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0 react-native-svg: ">=15.0.0 <15.13.0 || >=15.4.0 <15.13.0 || ^15.11.2 || ^15.12.1" react-native-windows: ^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0 @@ -2998,21 +2998,21 @@ __metadata: "@react-native-community/cli-platform-ios": "npm:^20.0.0" "@react-native/babel-preset": "npm:^0.81.0" "@react-native/metro-config": "npm:^0.81.0" - "@types/react": "npm:~19.1.0" + "@types/react": "npm:~19.1.4" "@types/react-test-renderer": "npm:^19.1.0" "@uifabricshared/foundation-composable": "workspace:*" "@uifabricshared/foundation-compose": "workspace:*" "@uifabricshared/foundation-settings": "workspace:*" - react: "npm:19.1.0" - react-native: "npm:^0.81.0" + react: "npm:19.1.4" + react-native: "npm:^0.81.6" react-native-macos: "npm:^0.81.0" react-native-windows: "npm:^0.81.0" - react-test-renderer: "npm:19.1.0" + react-test-renderer: "npm:19.1.4" peerDependencies: "@office-iss/react-native-win32": ^0.74.0 - "@types/react": ~18.2.0 || ~19.0.0 || ~19.1.0 - react: 18.2.0 || 19.0.0 || 19.1.0 - react-native: ^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0 + "@types/react": ~18.2.0 || ~19.0.0 || ~19.1.4 + react: 18.2.0 || 19.0.0 || 19.1.4 + react-native: ^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.6 react-native-macos: ^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0 react-native-windows: ^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0 peerDependenciesMeta: @@ -3055,22 +3055,22 @@ __metadata: "@react-native-community/cli-platform-ios": "npm:^20.0.0" "@react-native/babel-preset": "npm:^0.81.0" "@react-native/metro-config": "npm:^0.81.0" - "@types/react": "npm:~19.1.0" + "@types/react": "npm:~19.1.4" "@types/react-test-renderer": "npm:^19.1.0" "@uifabricshared/foundation-composable": "workspace:*" "@uifabricshared/foundation-compose": "workspace:*" "@uifabricshared/foundation-settings": "workspace:*" - react: "npm:19.1.0" - react-native: "npm:^0.81.0" + react: "npm:19.1.4" + react-native: "npm:^0.81.6" react-native-macos: "npm:^0.81.0" react-native-svg: "npm:^15.12.1" react-native-windows: "npm:^0.81.0" - react-test-renderer: "npm:19.1.0" + react-test-renderer: "npm:19.1.4" peerDependencies: "@office-iss/react-native-win32": ^0.74.0 - "@types/react": ~18.2.0 || ~19.0.0 || ~19.1.0 - react: 18.2.0 || 19.0.0 || 19.1.0 - react-native: ^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0 + "@types/react": ~18.2.0 || ~19.0.0 || ~19.1.4 + react: 18.2.0 || 19.0.0 || 19.1.4 + react-native: ^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.6 react-native-macos: ^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0 react-native-svg: ">=15.0.0 <15.13.0 || >=15.4.0 <15.13.0 || ^15.11.2 || ^15.12.1" react-native-windows: ^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0 @@ -3112,19 +3112,19 @@ __metadata: "@react-native-community/cli-platform-ios": "npm:^20.0.0" "@react-native/babel-preset": "npm:^0.81.0" "@react-native/metro-config": "npm:^0.81.0" - "@types/react": "npm:~19.1.0" + "@types/react": "npm:~19.1.4" "@types/react-test-renderer": "npm:^19.1.0" - react: "npm:19.1.0" - react-native: "npm:^0.81.0" + react: "npm:19.1.4" + react-native: "npm:^0.81.6" react-native-macos: "npm:^0.81.0" react-native-svg: "npm:^15.12.1" react-native-windows: "npm:^0.81.0" - react-test-renderer: "npm:19.1.0" + react-test-renderer: "npm:19.1.4" peerDependencies: "@office-iss/react-native-win32": ^0.74.0 - "@types/react": ~18.2.0 || ~19.0.0 || ~19.1.0 - react: 18.2.0 || 19.0.0 || 19.1.0 - react-native: ^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0 + "@types/react": ~18.2.0 || ~19.0.0 || ~19.1.4 + react: 18.2.0 || 19.0.0 || 19.1.4 + react-native: ^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.6 react-native-macos: ^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0 react-native-svg: ">=15.0.0 <15.13.0 || >=15.4.0 <15.13.0 || ^15.11.2 || ^15.12.1" react-native-windows: ^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0 @@ -3174,14 +3174,14 @@ __metadata: "@fluentui-react-native/use-slots": "workspace:*" "@fluentui-react-native/use-styling": "workspace:*" "@react-native/babel-preset": "npm:^0.81.0" - "@types/react": "npm:~19.1.0" + "@types/react": "npm:~19.1.4" "@types/react-test-renderer": "npm:^19.1.0" - react: "npm:19.1.0" - react-native: "npm:^0.81.0" - react-test-renderer: "npm:19.1.0" + react: "npm:19.1.4" + react-native: "npm:^0.81.6" + react-test-renderer: "npm:19.1.4" peerDependencies: - "@types/react": ~18.2.0 || ~19.0.0 || ~19.1.0 - react: 18.2.0 || 19.0.0 || 19.1.0 + "@types/react": ~18.2.0 || ~19.0.0 || ~19.1.4 + react: 18.2.0 || 19.0.0 || 19.1.4 peerDependenciesMeta: "@types/react": optional: true @@ -3214,24 +3214,24 @@ __metadata: "@react-native/babel-preset": "npm:^0.81.0" "@react-native/metro-babel-transformer": "npm:^0.74.0" "@react-native/metro-config": "npm:^0.81.0" - "@types/react": "npm:~19.1.0" + "@types/react": "npm:~19.1.4" "@types/react-test-renderer": "npm:^19.1.0" "@uifabricshared/foundation-composable": "workspace:*" "@uifabricshared/foundation-compose": "workspace:*" "@uifabricshared/foundation-settings": "workspace:*" metro-config: "npm:^0.80.3" - react: "npm:19.1.0" - react-native: "npm:^0.81.0" + react: "npm:19.1.4" + react-native: "npm:^0.81.6" react-native-macos: "npm:^0.81.0" react-native-svg: "npm:^15.12.1" react-native-svg-transformer: "npm:^1.0.0" react-native-windows: "npm:^0.81.0" - react-test-renderer: "npm:19.1.0" + react-test-renderer: "npm:19.1.4" peerDependencies: "@office-iss/react-native-win32": ^0.74.0 - "@types/react": ~18.2.0 || ~19.0.0 || ~19.1.0 - react: 18.2.0 || 19.0.0 || 19.1.0 - react-native: ^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0 + "@types/react": ~18.2.0 || ~19.0.0 || ~19.1.4 + react: 18.2.0 || 19.0.0 || 19.1.4 + react-native: ^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.6 react-native-macos: ^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0 react-native-svg: ">=15.0.0 <15.13.0 || >=15.4.0 <15.13.0 || ^15.11.2 || ^15.12.1" react-native-windows: ^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0 @@ -3268,17 +3268,17 @@ __metadata: "@react-native-community/cli-platform-ios": "npm:^20.0.0" "@react-native/babel-preset": "npm:^0.81.0" "@react-native/metro-config": "npm:^0.81.0" - "@types/react": "npm:~19.1.0" + "@types/react": "npm:~19.1.4" assert-never: "npm:^1.2.1" - react: "npm:19.1.0" - react-native: "npm:^0.81.0" + react: "npm:19.1.4" + react-native: "npm:^0.81.6" react-native-macos: "npm:^0.81.0" react-native-windows: "npm:^0.81.0" peerDependencies: "@office-iss/react-native-win32": ^0.74.0 - "@types/react": ~18.2.0 || ~19.0.0 || ~19.1.0 - react: 18.2.0 || 19.0.0 || 19.1.0 - react-native: ^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0 + "@types/react": ~18.2.0 || ~19.0.0 || ~19.1.4 + react: 18.2.0 || 19.0.0 || 19.1.4 + react-native: ^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.6 react-native-macos: ^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0 react-native-windows: ^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0 peerDependenciesMeta: @@ -3581,19 +3581,19 @@ __metadata: "@react-native-community/cli-platform-ios": "npm:^20.0.0" "@react-native/babel-preset": "npm:^0.81.0" "@react-native/metro-config": "npm:^0.81.0" - "@types/react": "npm:~19.1.0" + "@types/react": "npm:~19.1.4" "@types/react-test-renderer": "npm:^19.1.0" - react: "npm:19.1.0" - react-native: "npm:^0.81.0" + react: "npm:19.1.4" + react-native: "npm:^0.81.6" react-native-macos: "npm:^0.81.0" react-native-svg: "npm:^15.12.1" react-native-windows: "npm:^0.81.0" - react-test-renderer: "npm:19.1.0" + react-test-renderer: "npm:19.1.4" peerDependencies: "@office-iss/react-native-win32": ^0.74.0 - "@types/react": ~18.2.0 || ~19.0.0 || ~19.1.0 - react: 18.2.0 || 19.0.0 || 19.1.0 - react-native: ^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0 + "@types/react": ~18.2.0 || ~19.0.0 || ~19.1.4 + react: 18.2.0 || 19.0.0 || 19.1.4 + react-native: ^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.6 react-native-macos: ^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0 react-native-svg: ">=15.0.0 <15.13.0 || >=15.4.0 <15.13.0 || ^15.11.2 || ^15.12.1" react-native-windows: ^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0 @@ -3629,18 +3629,18 @@ __metadata: "@react-native-community/cli-platform-ios": "npm:^20.0.0" "@react-native/babel-preset": "npm:^0.81.0" "@react-native/metro-config": "npm:^0.81.0" - "@types/react": "npm:~19.1.0" + "@types/react": "npm:~19.1.4" "@types/react-test-renderer": "npm:^19.1.0" - react: "npm:19.1.0" - react-native: "npm:^0.81.0" + react: "npm:19.1.4" + react-native: "npm:^0.81.6" react-native-macos: "npm:^0.81.0" react-native-windows: "npm:^0.81.0" - react-test-renderer: "npm:19.1.0" + react-test-renderer: "npm:19.1.4" peerDependencies: "@office-iss/react-native-win32": ^0.74.0 - "@types/react": ~18.2.0 || ~19.0.0 || ~19.1.0 - react: 18.2.0 || 19.0.0 || 19.1.0 - react-native: ^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0 + "@types/react": ~18.2.0 || ~19.0.0 || ~19.1.4 + react: 18.2.0 || 19.0.0 || 19.1.4 + react-native: ^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.6 react-native-macos: ^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0 react-native-windows: ^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0 peerDependenciesMeta: @@ -3678,17 +3678,17 @@ __metadata: "@react-native-community/cli-platform-ios": "npm:^20.0.0" "@react-native/babel-preset": "npm:^0.74.0" "@react-native/metro-config": "npm:^0.81.0" - "@types/react": "npm:~19.1.0" - react: "npm:19.1.0" - react-native: "npm:^0.81.0" + "@types/react": "npm:~19.1.4" + react: "npm:19.1.4" + react-native: "npm:^0.81.6" react-native-macos: "npm:^0.81.0" react-native-svg: "npm:^15.12.1" react-native-windows: "npm:^0.81.0" peerDependencies: "@office-iss/react-native-win32": ^0.74.0 - "@types/react": ~18.2.0 || ~19.0.0 || ~19.1.0 - react: 18.2.0 || 19.0.0 || 19.1.0 - react-native: ^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0 + "@types/react": ~18.2.0 || ~19.0.0 || ~19.1.4 + react: 18.2.0 || 19.0.0 || 19.1.4 + react-native: ^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.6 react-native-macos: ^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0 react-native-svg: ">=15.0.0 <15.13.0 || >=15.4.0 <15.13.0 || ^15.11.2 || ^15.12.1" react-native-windows: ^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0 @@ -3720,7 +3720,7 @@ __metadata: "@rnx-kit/metro-config": "catalog:" "@types/jasmine": "catalog:" "@types/node": "catalog:" - "@types/react": "npm:~19.1.0" + "@types/react": "npm:~19.1.4" "@wdio/appium-service": "catalog:" "@wdio/cli": "catalog:" "@wdio/globals": "catalog:" @@ -3738,8 +3738,8 @@ __metadata: cross-env: "catalog:" expect-webdriverio: "catalog:" metro-config: "npm:^0.80.3" - react: "npm:19.1.0" - react-native: "npm:^0.81.0" + react: "npm:19.1.4" + react-native: "npm:^0.81.6" react-native-macos: "npm:^0.81.0" react-native-windows: "npm:^0.81.0" rimraf: "catalog:" @@ -3747,9 +3747,9 @@ __metadata: webdriverio: "catalog:" peerDependencies: "@office-iss/react-native-win32": ^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0 - "@types/react": ~18.2.0 || ~19.0.0 || ~19.1.0 - react: 18.2.0 || 19.0.0 || 19.1.0 - react-native: ^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0 + "@types/react": ~18.2.0 || ~19.0.0 || ~19.1.4 + react: 18.2.0 || 19.0.0 || 19.1.4 + react-native: ^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.6 react-native-macos: ^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0 react-native-windows: ^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0 peerDependenciesMeta: @@ -3793,18 +3793,18 @@ __metadata: "@react-native-community/cli-platform-ios": "npm:^20.0.0" "@react-native/babel-preset": "npm:^0.74.0" "@react-native/metro-config": "npm:^0.81.0" - "@types/react": "npm:~19.1.0" + "@types/react": "npm:~19.1.4" assert-never: "npm:^1.2.1" - react: "npm:19.1.0" - react-native: "npm:^0.81.0" + react: "npm:19.1.4" + react-native: "npm:^0.81.6" react-native-macos: "npm:^0.81.0" react-native-svg: "npm:^15.12.1" react-native-windows: "npm:^0.81.0" peerDependencies: "@office-iss/react-native-win32": ^0.74.0 - "@types/react": ~18.2.0 || ~19.0.0 || ~19.1.0 - react: 18.2.0 || 19.0.0 || 19.1.0 - react-native: ^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0 + "@types/react": ~18.2.0 || ~19.0.0 || ~19.1.4 + react: 18.2.0 || 19.0.0 || 19.1.4 + react-native: ^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.6 react-native-macos: ^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0 react-native-svg: ">=15.0.0 <15.13.0 || >=15.4.0 <15.13.0 || ^15.11.2 || ^15.12.1" react-native-windows: ^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0 @@ -3834,18 +3834,18 @@ __metadata: "@react-native-community/cli-platform-android": "npm:^20.0.0" "@react-native-community/cli-platform-ios": "npm:^20.0.0" "@react-native/metro-config": "npm:^0.81.0" - "@types/react": "npm:~19.1.0" + "@types/react": "npm:~19.1.4" "@types/use-subscription": "npm:^1.0.0" - react: "npm:19.1.0" - react-native: "npm:^0.81.0" + react: "npm:19.1.4" + react-native: "npm:^0.81.6" react-native-macos: "npm:^0.81.0" react-native-windows: "npm:^0.81.0" use-subscription: "npm:^1.11.0" peerDependencies: "@office-iss/react-native-win32": ^0.74.0 - "@types/react": ~18.2.0 || ~19.0.0 || ~19.1.0 - react: 18.2.0 || 19.0.0 || 19.1.0 - react-native: ^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0 + "@types/react": ~18.2.0 || ~19.0.0 || ~19.1.4 + react: 18.2.0 || 19.0.0 || 19.1.4 + react-native: ^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.6 react-native-macos: ^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0 react-native-windows: ^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0 peerDependenciesMeta: @@ -3875,18 +3875,18 @@ __metadata: "@react-native-community/cli-platform-android": "npm:^20.0.0" "@react-native-community/cli-platform-ios": "npm:^20.0.0" "@react-native/metro-config": "npm:^0.81.0" - "@types/react": "npm:~19.1.0" + "@types/react": "npm:~19.1.4" "@types/react-test-renderer": "npm:^19.1.0" - react: "npm:19.1.0" - react-native: "npm:^0.81.0" + react: "npm:19.1.4" + react-native: "npm:^0.81.6" react-native-macos: "npm:^0.81.0" react-native-windows: "npm:^0.81.0" - react-test-renderer: "npm:19.1.0" + react-test-renderer: "npm:19.1.4" peerDependencies: "@office-iss/react-native-win32": ^0.74.0 - "@types/react": ~18.2.0 || ~19.0.0 || ~19.1.0 - react: 18.2.0 || 19.0.0 || 19.1.0 - react-native: ^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0 + "@types/react": ~18.2.0 || ~19.0.0 || ~19.1.4 + react: 18.2.0 || 19.0.0 || 19.1.4 + react-native: ^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.6 react-native-macos: ^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0 react-native-windows: ^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0 peerDependenciesMeta: @@ -3919,17 +3919,17 @@ __metadata: "@react-native-community/cli-platform-ios": "npm:^20.0.0" "@react-native/babel-preset": "npm:^0.74.0" "@react-native/metro-config": "npm:^0.81.0" - "@types/react": "npm:~19.1.0" - react: "npm:19.1.0" - react-native: "npm:^0.81.0" + "@types/react": "npm:~19.1.4" + react: "npm:19.1.4" + react-native: "npm:^0.81.6" react-native-macos: "npm:^0.81.0" react-native-svg: "npm:^15.12.1" react-native-windows: "npm:^0.81.0" peerDependencies: "@office-iss/react-native-win32": ^0.74.0 - "@types/react": ~18.2.0 || ~19.0.0 || ~19.1.0 - react: 18.2.0 || 19.0.0 || 19.1.0 - react-native: ^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0 + "@types/react": ~18.2.0 || ~19.0.0 || ~19.1.4 + react: 18.2.0 || 19.0.0 || 19.1.4 + react-native: ^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.6 react-native-macos: ^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0 react-native-svg: ">=15.0.0 <15.13.0 || >=15.4.0 <15.13.0 || ^15.11.2 || ^15.12.1" react-native-windows: ^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0 @@ -3960,16 +3960,16 @@ __metadata: "@react-native-community/cli-platform-android": "npm:^20.0.0" "@react-native-community/cli-platform-ios": "npm:^20.0.0" "@react-native/metro-config": "npm:^0.81.0" - "@types/react": "npm:~19.1.0" - react: "npm:19.1.0" - react-native: "npm:^0.81.0" + "@types/react": "npm:~19.1.4" + react: "npm:19.1.4" + react-native: "npm:^0.81.6" react-native-macos: "npm:^0.81.0" react-native-windows: "npm:^0.81.0" peerDependencies: "@office-iss/react-native-win32": ^0.74.0 - "@types/react": ~18.2.0 || ~19.0.0 || ~19.1.0 - react: 18.2.0 || 19.0.0 || 19.1.0 - react-native: ^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0 + "@types/react": ~18.2.0 || ~19.0.0 || ~19.1.4 + react: 18.2.0 || 19.0.0 || 19.1.4 + react-native: ^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.6 react-native-macos: ^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0 react-native-windows: ^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0 peerDependenciesMeta: @@ -4005,19 +4005,19 @@ __metadata: "@react-native-community/cli-platform-ios": "npm:^20.0.0" "@react-native/babel-preset": "npm:^0.81.0" "@react-native/metro-config": "npm:^0.81.0" - "@types/react": "npm:~19.1.0" + "@types/react": "npm:~19.1.4" "@types/react-test-renderer": "npm:^19.1.0" - react: "npm:19.1.0" - react-native: "npm:^0.81.0" + react: "npm:19.1.4" + react-native: "npm:^0.81.6" react-native-macos: "npm:^0.81.0" react-native-svg: "npm:^15.12.1" react-native-windows: "npm:^0.81.0" - react-test-renderer: "npm:19.1.0" + react-test-renderer: "npm:19.1.4" peerDependencies: "@office-iss/react-native-win32": ^0.74.0 - "@types/react": ~18.2.0 || ~19.0.0 || ~19.1.0 - react: 18.2.0 || 19.0.0 || 19.1.0 - react-native: ^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0 + "@types/react": ~18.2.0 || ~19.0.0 || ~19.1.4 + react: 18.2.0 || 19.0.0 || 19.1.4 + react-native: ^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.6 react-native-macos: ^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0 react-native-svg: ">=15.0.0 <15.13.0 || >=15.4.0 <15.13.0 || ^15.11.2 || ^15.12.1" react-native-windows: ^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0 @@ -4046,13 +4046,13 @@ __metadata: "@react-native-community/cli-platform-android": "npm:^20.0.0" "@react-native-community/cli-platform-ios": "npm:^20.0.0" "@react-native/metro-config": "npm:^0.81.0" - "@types/react": "npm:~19.1.0" - react: "npm:19.1.0" - react-native: "npm:^0.81.0" + "@types/react": "npm:~19.1.4" + react: "npm:19.1.4" + react-native: "npm:^0.81.6" peerDependencies: - "@types/react": ~18.2.0 || ~19.0.0 || ~19.1.0 - react: 18.2.0 || 19.0.0 || 19.1.0 - react-native: ^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0 + "@types/react": ~18.2.0 || ~19.0.0 || ~19.1.4 + react: 18.2.0 || 19.0.0 || 19.1.4 + react-native: ^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.6 peerDependenciesMeta: "@types/react": optional: true @@ -4072,15 +4072,15 @@ __metadata: "@react-native-community/cli-platform-android": "npm:^20.0.0" "@react-native-community/cli-platform-ios": "npm:^20.0.0" "@react-native/metro-config": "npm:^0.81.0" - "@types/react": "npm:~19.1.0" + "@types/react": "npm:~19.1.4" "@types/use-subscription": "npm:^1.0.0" - react: "npm:19.1.0" - react-native: "npm:^0.81.0" + react: "npm:19.1.4" + react-native: "npm:^0.81.6" use-subscription: "npm:^1.11.0" peerDependencies: - "@types/react": ~18.2.0 || ~19.0.0 || ~19.1.0 - react: 18.2.0 || 19.0.0 || 19.1.0 - react-native: ^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0 + "@types/react": ~18.2.0 || ~19.0.0 || ~19.1.4 + react: 18.2.0 || 19.0.0 || 19.1.4 + react-native: ^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.6 peerDependenciesMeta: "@types/react": optional: true @@ -4107,18 +4107,18 @@ __metadata: "@react-native-community/cli-platform-ios": "npm:^20.0.0" "@react-native/babel-preset": "npm:^0.81.0" "@react-native/metro-config": "npm:^0.81.0" - "@types/react": "npm:~19.1.0" + "@types/react": "npm:~19.1.4" "@types/react-test-renderer": "npm:^19.1.0" - react: "npm:19.1.0" - react-native: "npm:^0.81.0" + react: "npm:19.1.4" + react-native: "npm:^0.81.6" react-native-macos: "npm:^0.81.0" react-native-windows: "npm:^0.81.0" - react-test-renderer: "npm:19.1.0" + react-test-renderer: "npm:19.1.4" peerDependencies: "@office-iss/react-native-win32": ^0.74.0 - "@types/react": ~18.2.0 || ~19.0.0 || ~19.1.0 - react: 18.2.0 || 19.0.0 || 19.1.0 - react-native: ^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0 + "@types/react": ~18.2.0 || ~19.0.0 || ~19.1.4 + react: 18.2.0 || 19.0.0 || 19.1.4 + react-native: ^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.6 react-native-macos: ^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0 react-native-windows: ^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0 peerDependenciesMeta: @@ -4153,20 +4153,20 @@ __metadata: "@react-native-community/cli-platform-ios": "npm:^20.0.0" "@react-native/babel-preset": "npm:^0.81.0" "@react-native/metro-config": "npm:^0.81.0" - "@types/react": "npm:~19.1.0" + "@types/react": "npm:~19.1.4" "@types/react-test-renderer": "npm:^19.1.0" assert-never: "npm:^1.2.1" - react: "npm:19.1.0" - react-native: "npm:^0.81.0" + react: "npm:19.1.4" + react-native: "npm:^0.81.6" react-native-macos: "npm:^0.81.0" react-native-svg: "npm:^15.12.1" react-native-windows: "npm:^0.81.0" - react-test-renderer: "npm:19.1.0" + react-test-renderer: "npm:19.1.4" peerDependencies: "@office-iss/react-native-win32": ^0.74.0 - "@types/react": ~18.2.0 || ~19.0.0 || ~19.1.0 - react: 18.2.0 || 19.0.0 || 19.1.0 - react-native: ^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0 + "@types/react": ~18.2.0 || ~19.0.0 || ~19.1.4 + react: 18.2.0 || 19.0.0 || 19.1.4 + react-native: ^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.6 react-native-macos: ^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0 react-native-svg: ">=15.0.0 <15.13.0 || >=15.4.0 <15.13.0 || ^15.11.2 || ^15.12.1" react-native-windows: ^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0 @@ -4200,20 +4200,20 @@ __metadata: "@react-native-community/cli-platform-ios": "npm:^20.0.0" "@react-native/babel-preset": "npm:^0.81.0" "@react-native/metro-config": "npm:^0.81.0" - "@types/react": "npm:~19.1.0" + "@types/react": "npm:~19.1.4" "@types/react-test-renderer": "npm:^19.1.0" "@uifabricshared/foundation-composable": "workspace:*" "@uifabricshared/foundation-settings": "workspace:*" - react: "npm:19.1.0" - react-native: "npm:^0.81.0" + react: "npm:19.1.4" + react-native: "npm:^0.81.6" react-native-macos: "npm:^0.81.0" react-native-windows: "npm:^0.81.0" - react-test-renderer: "npm:19.1.0" + react-test-renderer: "npm:19.1.4" peerDependencies: "@office-iss/react-native-win32": ^0.74.0 - "@types/react": ~18.2.0 || ~19.0.0 || ~19.1.0 - react: 18.2.0 || 19.0.0 || 19.1.0 - react-native: ^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0 + "@types/react": ~18.2.0 || ~19.0.0 || ~19.1.4 + react: 18.2.0 || 19.0.0 || 19.1.4 + react-native: ^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.6 react-native-macos: ^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0 react-native-windows: ^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0 peerDependenciesMeta: @@ -4247,20 +4247,20 @@ __metadata: "@react-native/babel-preset": "npm:^0.81.0" "@react-native/metro-babel-transformer": "npm:^0.81.0" "@react-native/metro-config": "npm:^0.81.0" - "@types/react": "npm:~19.1.0" + "@types/react": "npm:~19.1.4" "@types/react-test-renderer": "npm:^19.1.0" "@uifabricshared/foundation-composable": "workspace:*" "@uifabricshared/foundation-settings": "workspace:*" - react: "npm:19.1.0" - react-native: "npm:^0.81.0" + react: "npm:19.1.4" + react-native: "npm:^0.81.6" react-native-macos: "npm:^0.81.0" react-native-windows: "npm:^0.81.0" - react-test-renderer: "npm:19.1.0" + react-test-renderer: "npm:19.1.4" peerDependencies: "@office-iss/react-native-win32": ^0.74.0 - "@types/react": ~18.2.0 || ~19.0.0 || ~19.1.0 - react: 18.2.0 || 19.0.0 || 19.1.0 - react-native: ^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0 + "@types/react": ~18.2.0 || ~19.0.0 || ~19.1.4 + react: 18.2.0 || 19.0.0 || 19.1.4 + react-native: ^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.6 react-native-macos: ^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0 react-native-windows: ^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0 peerDependenciesMeta: @@ -4286,12 +4286,12 @@ __metadata: "@fluentui-react-native/scripts": "workspace:*" "@types/jest": "npm:^29.0.0" "@types/node": "catalog:" - "@types/react": "npm:~19.1.0" - react: "npm:19.1.0" - react-native: "npm:^0.81.0" + "@types/react": "npm:~19.1.4" + react: "npm:19.1.4" + react-native: "npm:^0.81.6" peerDependencies: - "@types/react": ~18.2.0 || ~19.0.0 || ~19.1.0 - react: 18.2.0 || 19.0.0 || 19.1.0 + "@types/react": ~18.2.0 || ~19.0.0 || ~19.1.4 + react: 18.2.0 || 19.0.0 || 19.1.4 peerDependenciesMeta: "@types/react": optional: true @@ -4323,18 +4323,18 @@ __metadata: "@react-native/babel-preset": "npm:^0.81.0" "@react-native/metro-config": "npm:^0.81.0" "@rnx-kit/cli": "catalog:" - "@types/react": "npm:~19.1.0" + "@types/react": "npm:~19.1.4" "@types/react-test-renderer": "npm:^19.1.0" - react: "npm:19.1.0" - react-native: "npm:^0.81.0" + react: "npm:19.1.4" + react-native: "npm:^0.81.6" react-native-macos: "npm:^0.81.0" react-native-windows: "npm:^0.81.0" - react-test-renderer: "npm:19.1.0" + react-test-renderer: "npm:19.1.4" peerDependencies: "@office-iss/react-native-win32": ^0.74.0 - "@types/react": ~18.2.0 || ~19.0.0 || ~19.1.0 - react: 18.2.0 || 19.0.0 || 19.1.0 - react-native: ^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0 + "@types/react": ~18.2.0 || ~19.0.0 || ~19.1.4 + react: 18.2.0 || 19.0.0 || 19.1.4 + react-native: ^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.6 react-native-macos: ^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0 react-native-windows: ^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0 peerDependenciesMeta: @@ -4370,19 +4370,19 @@ __metadata: "@react-native-community/cli-platform-ios": "npm:^20.0.0" "@react-native/babel-preset": "npm:^0.81.0" "@react-native/metro-config": "npm:^0.81.0" - "@types/react": "npm:~19.1.0" + "@types/react": "npm:~19.1.4" "@types/react-test-renderer": "npm:^19.1.0" - react: "npm:19.1.0" - react-native: "npm:^0.81.0" + react: "npm:19.1.4" + react-native: "npm:^0.81.6" react-native-macos: "npm:^0.81.0" react-native-svg: "npm:^15.12.1" react-native-windows: "npm:^0.81.0" - react-test-renderer: "npm:19.1.0" + react-test-renderer: "npm:19.1.4" peerDependencies: "@office-iss/react-native-win32": ^0.74.0 - "@types/react": ~18.2.0 || ~19.0.0 || ~19.1.0 - react: 18.2.0 || 19.0.0 || 19.1.0 - react-native: ^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0 + "@types/react": ~18.2.0 || ~19.0.0 || ~19.1.4 + react: 18.2.0 || 19.0.0 || 19.1.4 + react-native: ^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.6 react-native-macos: ^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0 react-native-svg: ">=15.0.0 <15.13.0 || >=15.4.0 <15.13.0 || ^15.11.2 || ^15.12.1" react-native-windows: ^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0 @@ -4423,19 +4423,19 @@ __metadata: "@react-native-community/cli-platform-ios": "npm:^20.0.0" "@react-native/babel-preset": "npm:^0.81.0" "@react-native/metro-config": "npm:^0.81.0" - "@types/react": "npm:~19.1.0" + "@types/react": "npm:~19.1.4" "@types/react-test-renderer": "npm:^19.1.0" - react: "npm:19.1.0" - react-native: "npm:^0.81.0" + react: "npm:19.1.4" + react-native: "npm:^0.81.6" react-native-macos: "npm:^0.81.0" react-native-svg: "npm:^15.12.1" react-native-windows: "npm:^0.81.0" - react-test-renderer: "npm:19.1.0" + react-test-renderer: "npm:19.1.4" peerDependencies: "@office-iss/react-native-win32": ^0.74.0 - "@types/react": ~18.2.0 || ~19.0.0 || ~19.1.0 - react: 18.2.0 || 19.0.0 || 19.1.0 - react-native: ^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0 + "@types/react": ~18.2.0 || ~19.0.0 || ~19.1.4 + react: 18.2.0 || 19.0.0 || 19.1.4 + react-native: ^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.6 react-native-macos: ^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0 react-native-svg: ">=15.0.0 <15.13.0 || >=15.4.0 <15.13.0 || ^15.11.2 || ^15.12.1" react-native-windows: ^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0 @@ -4472,18 +4472,18 @@ __metadata: "@react-native/metro-config": "npm:^0.81.0" "@types/invariant": "npm:^2.2.0" "@types/jest": "npm:^29.0.0" - "@types/react": "npm:~19.1.0" + "@types/react": "npm:~19.1.4" "@types/react-test-renderer": "npm:^19.1.0" - react: "npm:19.1.0" - react-native: "npm:^0.81.0" + react: "npm:19.1.4" + react-native: "npm:^0.81.6" react-native-macos: "npm:^0.81.0" react-native-windows: "npm:^0.81.0" - react-test-renderer: "npm:19.1.0" + react-test-renderer: "npm:19.1.4" peerDependencies: "@office-iss/react-native-win32": ^0.74.0 - "@types/react": ~18.2.0 || ~19.0.0 || ~19.1.0 - react: 18.2.0 || 19.0.0 || 19.1.0 - react-native: ^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0 + "@types/react": ~18.2.0 || ~19.0.0 || ~19.1.4 + react: 18.2.0 || 19.0.0 || 19.1.4 + react-native: ^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.6 react-native-macos: ^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0 react-native-windows: ^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0 peerDependenciesMeta: @@ -4551,21 +4551,21 @@ __metadata: "@react-native-community/cli-platform-ios": "npm:^20.0.0" "@react-native/babel-preset": "npm:^0.81.0" "@react-native/metro-config": "npm:^0.81.0" - "@types/react": "npm:~19.1.0" + "@types/react": "npm:~19.1.4" "@types/react-test-renderer": "npm:^19.1.0" "@uifabricshared/foundation-composable": "workspace:*" "@uifabricshared/foundation-compose": "workspace:*" "@uifabricshared/foundation-settings": "workspace:*" - react: "npm:19.1.0" - react-native: "npm:^0.81.0" + react: "npm:19.1.4" + react-native: "npm:^0.81.6" react-native-macos: "npm:^0.81.0" react-native-windows: "npm:^0.81.0" - react-test-renderer: "npm:19.1.0" + react-test-renderer: "npm:19.1.4" peerDependencies: "@office-iss/react-native-win32": ^0.74.0 - "@types/react": ~18.2.0 || ~19.0.0 || ~19.1.0 - react: 18.2.0 || 19.0.0 || 19.1.0 - react-native: ^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0 + "@types/react": ~18.2.0 || ~19.0.0 || ~19.1.4 + react: 18.2.0 || 19.0.0 || 19.1.4 + react-native: ^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.6 react-native-macos: ^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0 react-native-windows: ^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0 peerDependenciesMeta: @@ -4601,22 +4601,22 @@ __metadata: "@react-native-community/cli-platform-ios": "npm:^20.0.0" "@react-native/babel-preset": "npm:^0.81.0" "@react-native/metro-config": "npm:^0.81.0" - "@types/react": "npm:~19.1.0" + "@types/react": "npm:~19.1.4" "@types/react-test-renderer": "npm:^19.1.0" "@uifabricshared/foundation-composable": "workspace:*" "@uifabricshared/foundation-compose": "workspace:*" "@uifabricshared/foundation-settings": "workspace:*" - react: "npm:19.1.0" - react-native: "npm:^0.81.0" + react: "npm:19.1.4" + react-native: "npm:^0.81.6" react-native-macos: "npm:^0.81.0" react-native-svg: "npm:^15.12.1" react-native-windows: "npm:^0.81.0" - react-test-renderer: "npm:19.1.0" + react-test-renderer: "npm:19.1.4" peerDependencies: "@office-iss/react-native-win32": ^0.74.0 - "@types/react": ~18.2.0 || ~19.0.0 || ~19.1.0 - react: 18.2.0 || 19.0.0 || 19.1.0 - react-native: ^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0 + "@types/react": ~18.2.0 || ~19.0.0 || ~19.1.4 + react: 18.2.0 || 19.0.0 || 19.1.4 + react-native: ^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.6 react-native-macos: ^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0 react-native-svg: ">=15.0.0 <15.13.0 || >=15.4.0 <15.13.0 || ^15.11.2 || ^15.12.1" react-native-windows: ^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0 @@ -4663,19 +4663,19 @@ __metadata: "@react-native/babel-preset": "npm:^0.81.0" "@react-native/metro-config": "npm:^0.81.0" "@types/node": "catalog:" - "@types/react": "npm:~19.1.0" + "@types/react": "npm:~19.1.4" "@types/react-test-renderer": "npm:^19.1.0" - react: "npm:19.1.0" - react-native: "npm:^0.81.0" + react: "npm:19.1.4" + react-native: "npm:^0.81.6" react-native-macos: "npm:^0.81.0" react-native-svg: "npm:^15.12.1" react-native-windows: "npm:^0.81.0" - react-test-renderer: "npm:19.1.0" + react-test-renderer: "npm:19.1.4" peerDependencies: "@office-iss/react-native-win32": ^0.74.0 - "@types/react": ~18.2.0 || ~19.0.0 || ~19.1.0 - react: 18.2.0 || 19.0.0 || 19.1.0 - react-native: ^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0 + "@types/react": ~18.2.0 || ~19.0.0 || ~19.1.4 + react: 18.2.0 || 19.0.0 || 19.1.4 + react-native: ^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.6 react-native-macos: ^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0 react-native-svg: ">=15.0.0 <15.13.0 || >=15.4.0 <15.13.0 || ^15.11.2 || ^15.12.1" react-native-windows: ^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0 @@ -4722,19 +4722,19 @@ __metadata: "@react-native-community/cli-platform-ios": "npm:^20.0.0" "@react-native/babel-preset": "npm:^0.81.0" "@react-native/metro-config": "npm:^0.81.0" - "@types/react": "npm:~19.1.0" + "@types/react": "npm:~19.1.4" "@types/react-test-renderer": "npm:^19.1.0" - react: "npm:19.1.0" - react-native: "npm:^0.81.0" + react: "npm:19.1.4" + react-native: "npm:^0.81.6" react-native-macos: "npm:^0.81.0" react-native-svg: "npm:^15.12.1" react-native-windows: "npm:^0.81.0" - react-test-renderer: "npm:19.1.0" + react-test-renderer: "npm:19.1.4" peerDependencies: "@office-iss/react-native-win32": ^0.74.0 - "@types/react": ~18.2.0 || ~19.0.0 || ~19.1.0 - react: 18.2.0 || 19.0.0 || 19.1.0 - react-native: ^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0 + "@types/react": ~18.2.0 || ~19.0.0 || ~19.1.4 + react: 18.2.0 || 19.0.0 || 19.1.4 + react-native: ^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.6 react-native-macos: ^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0 react-native-svg: ">=15.0.0 <15.13.0 || >=15.4.0 <15.13.0 || ^15.11.2 || ^15.12.1" react-native-windows: ^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0 @@ -4767,19 +4767,19 @@ __metadata: "@fluentui-react-native/test-tools": "workspace:*" "@office-iss/react-native-win32": "npm:^0.74.0" "@react-native/babel-preset": "npm:^0.81.0" - "@types/react": "npm:~19.1.0" + "@types/react": "npm:~19.1.4" "@types/react-test-renderer": "npm:^19.1.0" - react: "npm:19.1.0" - react-native: "npm:^0.81.0" + react: "npm:19.1.4" + react-native: "npm:^0.81.6" react-native-macos: "npm:^0.81.0" react-native-svg: "npm:^15.12.1" react-native-windows: "npm:^0.81.0" - react-test-renderer: "npm:19.1.0" + react-test-renderer: "npm:19.1.4" peerDependencies: "@office-iss/react-native-win32": ^0.74.0 - "@types/react": ~18.2.0 || ~19.0.0 || ~19.1.0 - react: 18.2.0 || 19.0.0 || 19.1.0 - react-native: ^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0 + "@types/react": ~18.2.0 || ~19.0.0 || ~19.1.4 + react: 18.2.0 || 19.0.0 || 19.1.4 + react-native: ^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.6 react-native-macos: ^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0 react-native-svg: ">=15.0.0 <15.13.0 || >=15.4.0 <15.13.0 || ^15.11.2 || ^15.12.1" react-native-windows: ^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0 @@ -4814,20 +4814,20 @@ __metadata: "@react-native-community/cli-platform-android": "npm:^20.0.0" "@react-native-community/cli-platform-ios": "npm:^20.0.0" "@react-native/metro-config": "npm:^0.81.0" - "@types/react": "npm:~19.1.0" + "@types/react": "npm:~19.1.4" "@uifabricshared/foundation-composable": "workspace:*" "@uifabricshared/foundation-compose": "workspace:*" "@uifabricshared/foundation-settings": "workspace:*" "@uifabricshared/foundation-tokens": "workspace:*" - react: "npm:19.1.0" - react-native: "npm:^0.81.0" + react: "npm:19.1.4" + react-native: "npm:^0.81.6" react-native-macos: "npm:^0.81.0" react-native-windows: "npm:^0.81.0" peerDependencies: "@office-iss/react-native-win32": ^0.74.0 - "@types/react": ~18.2.0 || ~19.0.0 || ~19.1.0 - react: 18.2.0 || 19.0.0 || 19.1.0 - react-native: ^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0 + "@types/react": ~18.2.0 || ~19.0.0 || ~19.1.4 + react: 18.2.0 || 19.0.0 || 19.1.4 + react-native: ^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.6 react-native-macos: ^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0 react-native-windows: ^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0 peerDependenciesMeta: @@ -4860,20 +4860,20 @@ __metadata: "@react-native-community/cli-platform-android": "npm:^20.0.0" "@react-native-community/cli-platform-ios": "npm:^20.0.0" "@react-native/metro-config": "npm:^0.81.0" - "@types/react": "npm:~19.1.0" + "@types/react": "npm:~19.1.4" "@uifabricshared/foundation-composable": "workspace:*" "@uifabricshared/foundation-compose": "workspace:*" "@uifabricshared/foundation-settings": "workspace:*" "@uifabricshared/foundation-tokens": "workspace:*" - react: "npm:19.1.0" - react-native: "npm:^0.81.0" + react: "npm:19.1.4" + react-native: "npm:^0.81.6" react-native-macos: "npm:^0.81.0" react-native-windows: "npm:^0.81.0" peerDependencies: "@office-iss/react-native-win32": ^0.74.0 - "@types/react": ~18.2.0 || ~19.0.0 || ~19.1.0 - react: 18.2.0 || 19.0.0 || 19.1.0 - react-native: ^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0 + "@types/react": ~18.2.0 || ~19.0.0 || ~19.1.4 + react: 18.2.0 || 19.0.0 || 19.1.4 + react-native: ^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.6 react-native-macos: ^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0 react-native-windows: ^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0 peerDependenciesMeta: @@ -4904,16 +4904,16 @@ __metadata: "@react-native-community/cli-platform-android": "npm:^20.0.0" "@react-native-community/cli-platform-ios": "npm:^20.0.0" "@react-native/metro-config": "npm:^0.81.0" - "@types/react": "npm:~19.1.0" - react: "npm:19.1.0" - react-native: "npm:^0.81.0" + "@types/react": "npm:~19.1.4" + react: "npm:19.1.4" + react-native: "npm:^0.81.6" react-native-macos: "npm:^0.81.0" react-native-windows: "npm:^0.81.0" peerDependencies: "@office-iss/react-native-win32": ^0.74.0 - "@types/react": ~18.2.0 || ~19.0.0 || ~19.1.0 - react: 18.2.0 || 19.0.0 || 19.1.0 - react-native: ^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0 + "@types/react": ~18.2.0 || ~19.0.0 || ~19.1.4 + react: 18.2.0 || 19.0.0 || 19.1.4 + react-native: ^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.6 react-native-macos: ^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0 react-native-windows: ^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0 peerDependenciesMeta: @@ -4943,18 +4943,18 @@ __metadata: "@react-native-community/cli-platform-android": "npm:^20.0.0" "@react-native-community/cli-platform-ios": "npm:^20.0.0" "@react-native/metro-config": "npm:^0.81.0" - "@types/react": "npm:~19.1.0" + "@types/react": "npm:~19.1.4" "@uifabricshared/foundation-composable": "workspace:*" "@uifabricshared/foundation-settings": "workspace:*" - react: "npm:19.1.0" - react-native: "npm:^0.81.0" + react: "npm:19.1.4" + react-native: "npm:^0.81.6" react-native-macos: "npm:^0.81.0" react-native-windows: "npm:^0.81.0" peerDependencies: "@office-iss/react-native-win32": ^0.74.0 - "@types/react": ~18.2.0 || ~19.0.0 || ~19.1.0 - react: 18.2.0 || 19.0.0 || 19.1.0 - react-native: ^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0 + "@types/react": ~18.2.0 || ~19.0.0 || ~19.1.4 + react: 18.2.0 || 19.0.0 || 19.1.4 + react-native: ^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.6 react-native-macos: ^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0 react-native-windows: ^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0 peerDependenciesMeta: @@ -4996,22 +4996,22 @@ __metadata: "@react-native-community/cli-platform-ios": "npm:^20.0.0" "@react-native/babel-preset": "npm:^0.81.0" "@react-native/metro-config": "npm:^0.81.0" - "@types/react": "npm:~19.1.0" + "@types/react": "npm:~19.1.4" "@types/react-test-renderer": "npm:^19.1.0" "@uifabricshared/foundation-composable": "workspace:*" "@uifabricshared/foundation-compose": "workspace:*" "@uifabricshared/foundation-settings": "workspace:*" - react: "npm:19.1.0" - react-native: "npm:^0.81.0" + react: "npm:19.1.4" + react-native: "npm:^0.81.6" react-native-macos: "npm:^0.81.0" react-native-svg: "npm:^15.12.1" react-native-windows: "npm:^0.81.0" - react-test-renderer: "npm:19.1.0" + react-test-renderer: "npm:19.1.4" peerDependencies: "@office-iss/react-native-win32": ^0.74.0 - "@types/react": ~18.2.0 || ~19.0.0 || ~19.1.0 - react: 18.2.0 || 19.0.0 || 19.1.0 - react-native: ^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0 + "@types/react": ~18.2.0 || ~19.0.0 || ~19.1.4 + react: 18.2.0 || 19.0.0 || 19.1.4 + react-native: ^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.6 react-native-macos: ^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0 react-native-svg: ">=15.0.0 <15.13.0 || >=15.4.0 <15.13.0 || ^15.11.2 || ^15.12.1" react-native-windows: ^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0 @@ -5128,18 +5128,18 @@ __metadata: "@react-native-community/cli-platform-ios": "npm:^20.0.0" "@react-native/babel-preset": "npm:^0.81.0" "@react-native/metro-config": "npm:^0.81.0" - "@types/react": "npm:~19.1.0" + "@types/react": "npm:~19.1.4" "@types/react-test-renderer": "npm:^19.1.0" - react: "npm:19.1.0" - react-native: "npm:^0.81.0" + react: "npm:19.1.4" + react-native: "npm:^0.81.6" react-native-macos: "npm:^0.81.0" react-native-windows: "npm:^0.81.0" - react-test-renderer: "npm:19.1.0" + react-test-renderer: "npm:19.1.4" peerDependencies: "@office-iss/react-native-win32": ^0.74.0 - "@types/react": ~18.2.0 || ~19.0.0 || ~19.1.0 - react: 18.2.0 || 19.0.0 || 19.1.0 - react-native: ^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0 + "@types/react": ~18.2.0 || ~19.0.0 || ~19.1.4 + react: 18.2.0 || 19.0.0 || 19.1.4 + react-native: ^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.6 react-native-macos: ^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0 react-native-windows: ^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0 peerDependenciesMeta: @@ -5173,17 +5173,17 @@ __metadata: "@react-native-community/cli-platform-ios": "npm:^20.0.0" "@react-native/babel-preset": "npm:^0.74.0" "@react-native/metro-config": "npm:^0.81.0" - "@types/react": "npm:~19.1.0" - react: "npm:19.1.0" - react-native: "npm:^0.81.0" + "@types/react": "npm:~19.1.4" + react: "npm:19.1.4" + react-native: "npm:^0.81.6" react-native-macos: "npm:^0.81.0" react-native-svg: "npm:^15.12.1" react-native-windows: "npm:^0.81.0" peerDependencies: "@office-iss/react-native-win32": ^0.74.0 - "@types/react": ~18.2.0 || ~19.0.0 || ~19.1.0 - react: 18.2.0 || 19.0.0 || 19.1.0 - react-native: ^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0 + "@types/react": ~18.2.0 || ~19.0.0 || ~19.1.4 + react: 18.2.0 || 19.0.0 || 19.1.4 + react-native: ^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.6 react-native-macos: ^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0 react-native-svg: ">=15.0.0 <15.13.0 || >=15.4.0 <15.13.0 || ^15.11.2 || ^15.12.1" react-native-windows: ^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0 @@ -5219,22 +5219,22 @@ __metadata: "@react-native-community/cli-platform-ios": "npm:^20.0.0" "@react-native/babel-preset": "npm:^0.81.0" "@react-native/metro-config": "npm:^0.81.0" - "@types/react": "npm:~19.1.0" + "@types/react": "npm:~19.1.4" "@types/react-test-renderer": "npm:^19.1.0" "@uifabricshared/foundation-composable": "workspace:*" "@uifabricshared/foundation-compose": "workspace:*" "@uifabricshared/foundation-settings": "workspace:*" "@uifabricshared/foundation-tokens": "workspace:*" - react: "npm:19.1.0" - react-native: "npm:^0.81.0" + react: "npm:19.1.4" + react-native: "npm:^0.81.6" react-native-macos: "npm:^0.81.0" react-native-windows: "npm:^0.81.0" - react-test-renderer: "npm:19.1.0" + react-test-renderer: "npm:19.1.4" peerDependencies: "@office-iss/react-native-win32": ^0.74.0 - "@types/react": ~18.2.0 || ~19.0.0 || ~19.1.0 - react: 18.2.0 || 19.0.0 || 19.1.0 - react-native: ^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0 + "@types/react": ~18.2.0 || ~19.0.0 || ~19.1.4 + react: 18.2.0 || 19.0.0 || 19.1.4 + react-native: ^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.6 react-native-macos: ^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0 react-native-windows: ^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0 peerDependenciesMeta: @@ -5262,13 +5262,13 @@ __metadata: "@react-native-community/cli-platform-android": "npm:^20.0.0" "@react-native-community/cli-platform-ios": "npm:^20.0.0" "@react-native/metro-config": "npm:^0.81.0" - "@types/react": "npm:~19.1.0" - react: "npm:19.1.0" - react-native: "npm:^0.81.0" + "@types/react": "npm:~19.1.4" + react: "npm:19.1.4" + react-native: "npm:^0.81.6" peerDependencies: - "@types/react": ~18.2.0 || ~19.0.0 || ~19.1.0 - react: 18.2.0 || 19.0.0 || 19.1.0 - react-native: ^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0 + "@types/react": ~18.2.0 || ~19.0.0 || ~19.1.4 + react: 18.2.0 || 19.0.0 || 19.1.4 + react-native: ^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.6 peerDependenciesMeta: "@types/react": optional: true @@ -5299,18 +5299,18 @@ __metadata: "@react-native-community/cli-platform-ios": "npm:^20.0.0" "@react-native/babel-preset": "npm:^0.81.0" "@react-native/metro-config": "npm:^0.81.0" - "@types/react": "npm:~19.1.0" + "@types/react": "npm:~19.1.4" "@types/react-test-renderer": "npm:^19.1.0" - react: "npm:19.1.0" - react-native: "npm:^0.81.0" + react: "npm:19.1.4" + react-native: "npm:^0.81.6" react-native-macos: "npm:^0.81.0" react-native-windows: "npm:^0.81.0" - react-test-renderer: "npm:19.1.0" + react-test-renderer: "npm:19.1.4" peerDependencies: "@office-iss/react-native-win32": ^0.74.0 - "@types/react": ~18.2.0 || ~19.0.0 || ~19.1.0 - react: 18.2.0 || 19.0.0 || 19.1.0 - react-native: ^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0 + "@types/react": ~18.2.0 || ~19.0.0 || ~19.1.4 + react: 18.2.0 || 19.0.0 || 19.1.4 + react-native: ^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.6 react-native-macos: ^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0 react-native-windows: ^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0 peerDependenciesMeta: @@ -5352,19 +5352,19 @@ __metadata: "@react-native-community/cli-platform-ios": "npm:^20.0.0" "@react-native/babel-preset": "npm:^0.81.0" "@react-native/metro-config": "npm:^0.81.0" - "@types/react": "npm:~19.1.0" + "@types/react": "npm:~19.1.4" "@types/react-test-renderer": "npm:^19.1.0" - react: "npm:19.1.0" - react-native: "npm:^0.81.0" + react: "npm:19.1.4" + react-native: "npm:^0.81.6" react-native-macos: "npm:^0.81.0" react-native-svg: "npm:^15.12.1" react-native-windows: "npm:^0.81.0" - react-test-renderer: "npm:19.1.0" + react-test-renderer: "npm:19.1.4" peerDependencies: "@office-iss/react-native-win32": ^0.74.0 - "@types/react": ~18.2.0 || ~19.0.0 || ~19.1.0 - react: 18.2.0 || 19.0.0 || 19.1.0 - react-native: ^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0 + "@types/react": ~18.2.0 || ~19.0.0 || ~19.1.4 + react: 18.2.0 || 19.0.0 || 19.1.4 + react-native: ^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.6 react-native-macos: ^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0 react-native-svg: ">=15.0.0 <15.13.0 || >=15.4.0 <15.13.0 || ^15.11.2 || ^15.12.1" react-native-windows: ^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0 @@ -5393,15 +5393,15 @@ __metadata: "@fluentui-react-native/theme-types": "workspace:*" "@react-native/babel-preset": "npm:^0.81.0" "@types/jest": "npm:^29.0.0" - "@types/react": "npm:~19.1.0" + "@types/react": "npm:~19.1.4" "@types/react-test-renderer": "npm:^19.1.0" - react: "npm:19.1.0" - react-native: "npm:^0.81.0" - react-test-renderer: "npm:19.1.0" + react: "npm:19.1.4" + react-native: "npm:^0.81.6" + react-test-renderer: "npm:19.1.4" peerDependencies: - "@types/react": ~18.2.0 || ~19.0.0 || ~19.1.0 - react: 18.2.0 || 19.0.0 || 19.1.0 - react-native: ^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0 + "@types/react": ~18.2.0 || ~19.0.0 || ~19.1.4 + react: 18.2.0 || 19.0.0 || 19.1.4 + react-native: ^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.6 peerDependenciesMeta: "@types/react": optional: true @@ -5487,7 +5487,7 @@ __metadata: "@rnx-kit/metro-resolver-symlinks": "catalog:" "@types/jasmine": "catalog:" "@types/node": "catalog:" - "@types/react": "npm:~19.1.0" + "@types/react": "npm:~19.1.4" "@types/react-test-renderer": "npm:^19.1.0" "@wdio/cli": "catalog:" "@wdio/globals": "catalog:" @@ -5497,14 +5497,14 @@ __metadata: expect-webdriverio: "catalog:" flow-bin: "npm:^0.113.0" metro-config: "npm:^0.80.3" - react: "npm:19.1.0" - react-native: "npm:^0.81.0" + react: "npm:19.1.4" + react-native: "npm:^0.81.6" react-native-macos: "npm:^0.81.0" react-native-svg: "npm:^15.12.1" react-native-svg-transformer: "npm:^1.0.0" react-native-test-app: "npm:^3.9.2" react-native-windows: "npm:^0.81.0" - react-test-renderer: "npm:19.1.0" + react-test-renderer: "npm:19.1.4" webdriverio: "catalog:" peerDependencies: "@fluentui-react-native/callout": "workspace:*" @@ -5522,9 +5522,9 @@ __metadata: "@fluentui-react-native/tooltip": "workspace:*" "@fluentui-react-native/vibrancy-view": "workspace:*" "@office-iss/react-native-win32": ^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0 - "@types/react": ~18.2.0 || ~19.0.0 || ~19.1.0 - react: 18.2.0 || 19.0.0 || 19.1.0 - react-native: ^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0 + "@types/react": ~18.2.0 || ~19.0.0 || ~19.1.4 + react: 18.2.0 || 19.0.0 || 19.1.4 + react-native: ^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.6 react-native-macos: ^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0 react-native-svg: ">=15.0.0 <15.13.0 || >=15.4.0 <15.13.0 || ^15.11.2 || ^15.12.1" react-native-windows: ^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0 @@ -5587,22 +5587,22 @@ __metadata: "@rnx-kit/cli": "catalog:" "@rnx-kit/metro-config": "catalog:" "@rnx-kit/metro-resolver-symlinks": "catalog:" - "@rnx-kit/metro-serializer": "npm:^2.0.3" - "@rnx-kit/metro-serializer-esbuild": "npm:^0.3.0" + "@rnx-kit/metro-serializer": "catalog:" + "@rnx-kit/metro-serializer-esbuild": "catalog:" "@rnx-kit/tools-react-native": "npm:^2.3.2" - "@types/react": "npm:~19.1.0" + "@types/react": "npm:~19.1.4" "@types/react-test-renderer": "npm:^19.1.0" metro: "npm:^0.83.1" metro-config: "npm:0.83.1" metro-core: "npm:^0.83.1" metro-runtime: "npm:^0.83.1" oxc-resolver: "catalog:" - react: "npm:19.1.0" - react-native: "npm:^0.81.0" + react: "npm:19.1.4" + react-native: "npm:^0.81.6" react-native-svg: "npm:^15.12.1" react-native-svg-transformer: "npm:^1.0.0" react-native-test-app: "npm:^4.4.11" - react-test-renderer: "npm:19.1.0" + react-test-renderer: "npm:19.1.4" rimraf: "catalog:" languageName: unknown linkType: soft @@ -5730,19 +5730,19 @@ __metadata: "@react-native-community/cli-platform-ios": "npm:^20.0.0" "@react-native/babel-preset": "npm:^0.81.0" "@react-native/metro-config": "npm:^0.81.0" - "@types/react": "npm:~19.1.0" + "@types/react": "npm:~19.1.4" "@types/react-test-renderer": "npm:^19.1.0" "@uifabricshared/foundation-compose": "workspace:*" - react: "npm:19.1.0" - react-native: "npm:^0.81.0" + react: "npm:19.1.4" + react-native: "npm:^0.81.6" react-native-macos: "npm:^0.81.0" react-native-windows: "npm:^0.81.0" - react-test-renderer: "npm:19.1.0" + react-test-renderer: "npm:19.1.4" peerDependencies: "@office-iss/react-native-win32": ^0.74.0 - "@types/react": ~18.2.0 || ~19.0.0 || ~19.1.0 - react: 18.2.0 || 19.0.0 || 19.1.0 - react-native: ^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0 + "@types/react": ~18.2.0 || ~19.0.0 || ~19.1.4 + react: 18.2.0 || 19.0.0 || 19.1.4 + react-native: ^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.6 react-native-macos: ^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0 react-native-windows: ^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0 peerDependenciesMeta: @@ -5775,14 +5775,14 @@ __metadata: "@react-native-community/cli-platform-android": "npm:^20.0.0" "@react-native-community/cli-platform-ios": "npm:^20.0.0" "@react-native/metro-config": "npm:^0.81.0" - "@types/react": "npm:~19.1.0" + "@types/react": "npm:~19.1.4" assert-never: "npm:^1.2.1" - react: "npm:19.1.0" - react-native: "npm:^0.81.0" + react: "npm:19.1.4" + react-native: "npm:^0.81.6" peerDependencies: - "@types/react": ~18.2.0 || ~19.0.0 || ~19.1.0 - react: 18.2.0 || 19.0.0 || 19.1.0 - react-native: ^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0 + "@types/react": ~18.2.0 || ~19.0.0 || ~19.1.4 + react: 18.2.0 || 19.0.0 || 19.1.4 + react-native: ^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.6 peerDependenciesMeta: "@types/react": optional: true @@ -5802,13 +5802,13 @@ __metadata: "@react-native-community/cli-platform-android": "npm:^20.0.0" "@react-native-community/cli-platform-ios": "npm:^20.0.0" "@react-native/metro-config": "npm:^0.81.0" - "@types/react": "npm:~19.1.0" - react: "npm:19.1.0" - react-native: "npm:^0.81.0" + "@types/react": "npm:~19.1.4" + react: "npm:19.1.4" + react-native: "npm:^0.81.6" peerDependencies: - "@types/react": ~18.2.0 || ~19.0.0 || ~19.1.0 - react: 18.2.0 || 19.0.0 || 19.1.0 - react-native: ^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0 + "@types/react": ~18.2.0 || ~19.0.0 || ~19.1.4 + react: 18.2.0 || 19.0.0 || 19.1.4 + react-native: ^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.6 peerDependenciesMeta: "@types/react": optional: true @@ -5833,13 +5833,13 @@ __metadata: "@react-native-community/cli-platform-ios": "npm:^20.0.0" "@react-native/babel-preset": "npm:^0.81.0" "@react-native/metro-config": "npm:^0.81.0" - "@types/react": "npm:~19.1.0" - react: "npm:19.1.0" - react-native: "npm:^0.81.0" + "@types/react": "npm:~19.1.4" + react: "npm:19.1.4" + react-native: "npm:^0.81.6" peerDependencies: - "@types/react": ~18.2.0 || ~19.0.0 || ~19.1.0 - react: 18.2.0 || 19.0.0 || 19.1.0 - react-native: ^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0 + "@types/react": ~18.2.0 || ~19.0.0 || ~19.1.4 + react: 18.2.0 || 19.0.0 || 19.1.4 + react-native: ^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.6 peerDependenciesMeta: "@types/react": optional: true @@ -5862,13 +5862,13 @@ __metadata: "@react-native-community/cli-platform-ios": "npm:^20.0.0" "@react-native/babel-preset": "npm:^0.81.0" "@react-native/metro-config": "npm:^0.81.0" - "@types/react": "npm:~19.1.0" - react: "npm:19.1.0" - react-native: "npm:^0.81.0" + "@types/react": "npm:~19.1.4" + react: "npm:19.1.4" + react-native: "npm:^0.81.6" peerDependencies: - "@types/react": ~18.2.0 || ~19.0.0 || ~19.1.0 - react: 18.2.0 || 19.0.0 || 19.1.0 - react-native: ^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0 + "@types/react": ~18.2.0 || ~19.0.0 || ~19.1.4 + react: 18.2.0 || 19.0.0 || 19.1.4 + react-native: ^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.6 peerDependenciesMeta: "@types/react": optional: true @@ -5894,16 +5894,16 @@ __metadata: "@react-native-community/cli-platform-ios": "npm:^20.0.0" "@react-native/babel-preset": "npm:^0.81.0" "@react-native/metro-config": "npm:^0.81.0" - "@types/react": "npm:~19.1.0" - react: "npm:19.1.0" - react-native: "npm:^0.81.0" + "@types/react": "npm:~19.1.4" + react: "npm:19.1.4" + react-native: "npm:^0.81.6" react-native-macos: "npm:^0.81.0" react-native-windows: "npm:^0.81.0" peerDependencies: "@office-iss/react-native-win32": ^0.74.0 - "@types/react": ~18.2.0 || ~19.0.0 || ~19.1.0 - react: 18.2.0 || 19.0.0 || 19.1.0 - react-native: ^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0 + "@types/react": ~18.2.0 || ~19.0.0 || ~19.1.4 + react: 18.2.0 || 19.0.0 || 19.1.4 + react-native: ^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.6 react-native-macos: ^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0 react-native-windows: ^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0 peerDependenciesMeta: @@ -5933,16 +5933,16 @@ __metadata: "@react-native-community/cli-platform-android": "npm:^20.0.0" "@react-native-community/cli-platform-ios": "npm:^20.0.0" "@react-native/metro-config": "npm:^0.81.0" - "@types/react": "npm:~19.1.0" - react: "npm:19.1.0" - react-native: "npm:^0.81.0" + "@types/react": "npm:~19.1.4" + react: "npm:19.1.4" + react-native: "npm:^0.81.6" react-native-macos: "npm:^0.81.0" react-native-windows: "npm:^0.81.0" peerDependencies: "@office-iss/react-native-win32": ^0.74.0 - "@types/react": ~18.2.0 || ~19.0.0 || ~19.1.0 - react: 18.2.0 || 19.0.0 || 19.1.0 - react-native: ^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0 + "@types/react": ~18.2.0 || ~19.0.0 || ~19.1.4 + react: 18.2.0 || 19.0.0 || 19.1.4 + react-native: ^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.6 react-native-macos: ^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0 react-native-windows: ^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0 peerDependenciesMeta: @@ -5973,19 +5973,19 @@ __metadata: "@fluentui-react-native/test-tools": "workspace:*" "@office-iss/react-native-win32": "npm:^0.74.0" "@react-native/babel-preset": "npm:^0.81.0" - "@types/react": "npm:~19.1.0" + "@types/react": "npm:~19.1.4" "@types/react-test-renderer": "npm:^19.1.0" - react: "npm:19.1.0" - react-native: "npm:^0.81.0" + react: "npm:19.1.4" + react-native: "npm:^0.81.6" react-native-macos: "npm:^0.81.0" react-native-svg: "npm:^15.12.1" react-native-windows: "npm:^0.81.0" - react-test-renderer: "npm:19.1.0" + react-test-renderer: "npm:19.1.4" peerDependencies: "@office-iss/react-native-win32": ^0.74.0 - "@types/react": ~18.2.0 || ~19.0.0 || ~19.1.0 - react: 18.2.0 || 19.0.0 || 19.1.0 - react-native: ^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0 + "@types/react": ~18.2.0 || ~19.0.0 || ~19.1.4 + react: 18.2.0 || 19.0.0 || 19.1.4 + react-native: ^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.6 react-native-macos: ^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0 react-native-svg: ">=15.0.0 <15.13.0 || >=15.4.0 <15.13.0 || ^15.11.2 || ^15.12.1" react-native-windows: ^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0 @@ -6018,14 +6018,14 @@ __metadata: "@react-native/babel-preset": "npm:^0.81.0" "@react-native/metro-config": "npm:^0.81.0" "@types/jest": "npm:^29.0.0" - "@types/react": "npm:~19.1.0" + "@types/react": "npm:~19.1.4" "@types/react-test-renderer": "npm:^19.1.0" - react: "npm:19.1.0" - react-native: "npm:^0.81.0" - react-test-renderer: "npm:19.1.0" + react: "npm:19.1.4" + react-native: "npm:^0.81.6" + react-test-renderer: "npm:19.1.4" peerDependencies: - "@types/react": ~18.2.0 || ~19.0.0 || ~19.1.0 - react: 18.2.0 || 19.0.0 || 19.1.0 + "@types/react": ~18.2.0 || ~19.0.0 || ~19.1.4 + react: 18.2.0 || 19.0.0 || 19.1.4 peerDependenciesMeta: "@types/react": optional: true @@ -6049,14 +6049,14 @@ __metadata: "@react-native-community/cli-platform-ios": "npm:^20.0.0" "@react-native/babel-preset": "npm:^0.81.0" "@react-native/metro-config": "npm:^0.81.0" - "@types/react": "npm:~19.1.0" + "@types/react": "npm:~19.1.4" "@types/react-test-renderer": "npm:^19.1.0" - react: "npm:19.1.0" - react-native: "npm:^0.81.0" - react-test-renderer: "npm:19.1.0" + react: "npm:19.1.4" + react-native: "npm:^0.81.6" + react-test-renderer: "npm:19.1.4" peerDependencies: - "@types/react": ~18.2.0 || ~19.0.0 || ~19.1.0 - react: 18.2.0 || 19.0.0 || 19.1.0 + "@types/react": ~18.2.0 || ~19.0.0 || ~19.1.4 + react: 18.2.0 || 19.0.0 || 19.1.4 peerDependenciesMeta: "@types/react": optional: true @@ -6081,14 +6081,14 @@ __metadata: "@react-native/babel-preset": "npm:^0.81.0" "@react-native/metro-config": "npm:^0.81.0" "@types/jest": "npm:^29.0.0" - "@types/react": "npm:~19.1.0" + "@types/react": "npm:~19.1.4" "@types/react-test-renderer": "npm:^19.1.0" - react: "npm:19.1.0" - react-native: "npm:^0.81.0" - react-test-renderer: "npm:19.1.0" + react: "npm:19.1.4" + react-native: "npm:^0.81.6" + react-test-renderer: "npm:19.1.4" peerDependencies: - "@types/react": ~18.2.0 || ~19.0.0 || ~19.1.0 - react: 18.2.0 || 19.0.0 || 19.1.0 + "@types/react": ~18.2.0 || ~19.0.0 || ~19.1.4 + react: 18.2.0 || 19.0.0 || 19.1.4 peerDependenciesMeta: "@types/react": optional: true @@ -6112,14 +6112,14 @@ __metadata: "@react-native/babel-preset": "npm:^0.81.0" "@react-native/metro-config": "npm:^0.81.0" "@types/jest": "npm:^29.0.0" - "@types/react": "npm:~19.1.0" + "@types/react": "npm:~19.1.4" "@types/react-test-renderer": "npm:^19.1.0" - react: "npm:19.1.0" - react-native: "npm:^0.81.0" - react-test-renderer: "npm:19.1.0" + react: "npm:19.1.4" + react-native: "npm:^0.81.6" + react-test-renderer: "npm:19.1.4" peerDependencies: - "@types/react": ~18.2.0 || ~19.0.0 || ~19.1.0 - react: 18.2.0 || 19.0.0 || 19.1.0 + "@types/react": ~18.2.0 || ~19.0.0 || ~19.1.4 + react: 18.2.0 || 19.0.0 || 19.1.4 peerDependenciesMeta: "@types/react": optional: true @@ -6141,16 +6141,16 @@ __metadata: "@react-native-community/cli-platform-android": "npm:^20.0.0" "@react-native-community/cli-platform-ios": "npm:^20.0.0" "@react-native/metro-config": "npm:^0.81.0" - "@types/react": "npm:~19.1.0" - react: "npm:19.1.0" - react-native: "npm:^0.81.0" + "@types/react": "npm:~19.1.4" + react: "npm:19.1.4" + react-native: "npm:^0.81.6" react-native-macos: "npm:^0.81.0" react-native-windows: "npm:^0.81.0" peerDependencies: "@office-iss/react-native-win32": ^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0 - "@types/react": ~18.2.0 || ~19.0.0 || ~19.1.0 - react: 18.2.0 || 19.0.0 || 19.1.0 - react-native: ^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0 + "@types/react": ~18.2.0 || ~19.0.0 || ~19.1.4 + react: 18.2.0 || 19.0.0 || 19.1.4 + react-native: ^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.6 react-native-macos: ^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0 react-native-windows: ^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0 peerDependenciesMeta: @@ -6188,16 +6188,16 @@ __metadata: "@react-native-community/cli-platform-ios": "npm:^20.0.0" "@react-native/babel-preset": "npm:^0.81.0" "@react-native/metro-config": "npm:^0.81.0" - "@types/react": "npm:~19.1.0" - react: "npm:19.1.0" - react-native: "npm:^0.81.0" + "@types/react": "npm:~19.1.4" + react: "npm:19.1.4" + react-native: "npm:^0.81.6" react-native-macos: "npm:^0.81.0" react-native-windows: "npm:^0.81.0" peerDependencies: "@office-iss/react-native-win32": ^0.74.0 - "@types/react": ~18.2.0 || ~19.0.0 || ~19.1.0 - react: 18.2.0 || 19.0.0 || 19.1.0 - react-native: ^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0 + "@types/react": ~18.2.0 || ~19.0.0 || ~19.1.4 + react: 18.2.0 || 19.0.0 || 19.1.4 + react-native: ^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.6 react-native-macos: ^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0 react-native-windows: ^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0 peerDependenciesMeta: @@ -6256,17 +6256,17 @@ __metadata: "@react-native/babel-preset": "npm:^0.74.0" "@react-native/metro-config": "npm:^0.81.0" "@rnx-kit/cli": "catalog:" - "@types/react": "npm:~19.1.0" - react: "npm:19.1.0" - react-native: "npm:^0.81.0" + "@types/react": "npm:~19.1.4" + react: "npm:19.1.4" + react-native: "npm:^0.81.6" react-native-macos: "npm:^0.81.0" react-native-svg: "npm:^15.12.1" react-native-windows: "npm:^0.81.0" peerDependencies: "@office-iss/react-native-win32": ^0.74.0 - "@types/react": ~18.2.0 || ~19.0.0 || ~19.1.0 - react: 18.2.0 || 19.0.0 || 19.1.0 - react-native: ^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0 + "@types/react": ~18.2.0 || ~19.0.0 || ~19.1.4 + react: 18.2.0 || 19.0.0 || 19.1.4 + react-native: ^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.6 react-native-macos: ^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0 react-native-svg: ">=15.0.0 <15.13.0 || >=15.4.0 <15.13.0 || ^15.11.2 || ^15.12.1" react-native-windows: ^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0 @@ -8843,6 +8843,13 @@ __metadata: languageName: node linkType: hard +"@react-native/assets-registry@npm:0.81.6": + version: 0.81.6 + resolution: "@react-native/assets-registry@npm:0.81.6" + checksum: 10c0/b02921d95263d73bb584a41cf41bfc0e67b4e3b4a6237218eb9134f769a26abb12fbd16e87b44ecd199eb831665d94da29d52a70adb4c893ff32c5f63681361b + languageName: node + linkType: hard + "@react-native/assets@npm:1.0.0": version: 1.0.0 resolution: "@react-native/assets@npm:1.0.0" @@ -9012,6 +9019,23 @@ __metadata: languageName: node linkType: hard +"@react-native/codegen@npm:0.81.6": + version: 0.81.6 + resolution: "@react-native/codegen@npm:0.81.6" + dependencies: + "@babel/core": "npm:^7.25.2" + "@babel/parser": "npm:^7.25.3" + glob: "npm:^7.1.1" + hermes-parser: "npm:0.29.1" + invariant: "npm:^2.2.4" + nullthrows: "npm:^1.1.1" + yargs: "npm:^17.6.2" + peerDependencies: + "@babel/core": "*" + checksum: 10c0/1a6117949057f65476a95191137f0ff7799c11d6219e06e3b3c633174e62f3aa0bf06afc093be5a9fcab2ec1b3a4456446ef467b88714f686982f8834f79041b + languageName: node + linkType: hard + "@react-native/community-cli-plugin@npm:0.74.89": version: 0.74.89 resolution: "@react-native/community-cli-plugin@npm:0.74.89" @@ -9055,6 +9079,29 @@ __metadata: languageName: node linkType: hard +"@react-native/community-cli-plugin@npm:0.81.6": + version: 0.81.6 + resolution: "@react-native/community-cli-plugin@npm:0.81.6" + dependencies: + "@react-native/dev-middleware": "npm:0.81.6" + debug: "npm:^4.4.0" + invariant: "npm:^2.2.4" + metro: "npm:^0.83.1" + metro-config: "npm:^0.83.1" + metro-core: "npm:^0.83.1" + semver: "npm:^7.1.3" + peerDependencies: + "@react-native-community/cli": "*" + "@react-native/metro-config": "*" + peerDependenciesMeta: + "@react-native-community/cli": + optional: true + "@react-native/metro-config": + optional: true + checksum: 10c0/aa2c210421e6f963e3bfcfde37bd6ec0cfa7ec961d84c8e167754283fa288bfbce74cbeb90aabb70e041d4a593f65e10b4a8c668a78f6dcd61d5fde352a07604 + languageName: node + linkType: hard + "@react-native/debugger-frontend@npm:0.74.89": version: 0.74.89 resolution: "@react-native/debugger-frontend@npm:0.74.89" @@ -9069,6 +9116,13 @@ __metadata: languageName: node linkType: hard +"@react-native/debugger-frontend@npm:0.81.6": + version: 0.81.6 + resolution: "@react-native/debugger-frontend@npm:0.81.6" + checksum: 10c0/d0987d33e8ab8847bf9392eeb4bec6559970c82581ca5c0839ac234c3c88e2c0d87a8ae746c8597a4316faf27533c9165b9a18a305359e5968564ca5aaab385e + languageName: node + linkType: hard + "@react-native/dev-middleware@npm:0.74.89": version: 0.74.89 resolution: "@react-native/dev-middleware@npm:0.74.89" @@ -9109,6 +9163,25 @@ __metadata: languageName: node linkType: hard +"@react-native/dev-middleware@npm:0.81.6": + version: 0.81.6 + resolution: "@react-native/dev-middleware@npm:0.81.6" + dependencies: + "@isaacs/ttlcache": "npm:^1.4.1" + "@react-native/debugger-frontend": "npm:0.81.6" + chrome-launcher: "npm:^0.15.2" + chromium-edge-launcher: "npm:^0.2.0" + connect: "npm:^3.6.5" + debug: "npm:^4.4.0" + invariant: "npm:^2.2.4" + nullthrows: "npm:^1.1.1" + open: "npm:^7.0.3" + serve-static: "npm:^1.16.2" + ws: "npm:^6.2.3" + checksum: 10c0/cc60df7eab7ca0af735499c3e3c7fb199bd75f7a9cef10fd2bc4a5f7aeb7147844e15320fe287704821e8fe4d20f8af5cfa722888aa1332459581edb9b84393c + languageName: node + linkType: hard + "@react-native/eslint-plugin@npm:^0.84.0": version: 0.84.1 resolution: "@react-native/eslint-plugin@npm:0.84.1" @@ -9130,6 +9203,13 @@ __metadata: languageName: node linkType: hard +"@react-native/gradle-plugin@npm:0.81.6": + version: 0.81.6 + resolution: "@react-native/gradle-plugin@npm:0.81.6" + checksum: 10c0/a653380073af624bac408eb696fcf67f8500a7a4bf6cefa4a157a8db3d1bfad51d5f3abf942635e96e2aa4a20e56143a6f1a3f52ff027448775041ce80604ced + languageName: node + linkType: hard + "@react-native/js-polyfills@npm:0.74.89": version: 0.74.89 resolution: "@react-native/js-polyfills@npm:0.74.89" @@ -9144,6 +9224,13 @@ __metadata: languageName: node linkType: hard +"@react-native/js-polyfills@npm:0.81.6": + version: 0.81.6 + resolution: "@react-native/js-polyfills@npm:0.81.6" + checksum: 10c0/85fe2892b590eeb1cad627fe003bd8b617197fa82e820bbdf5dc15a008290d73d54f616e3d191e1dd4d52a06c0e70b175f22d127f06f74c9189e4159370e528b + languageName: node + linkType: hard + "@react-native/metro-babel-transformer@npm:0.74.89, @react-native/metro-babel-transformer@npm:^0.74.0": version: 0.74.89 resolution: "@react-native/metro-babel-transformer@npm:0.74.89" @@ -9224,6 +9311,13 @@ __metadata: languageName: node linkType: hard +"@react-native/normalize-colors@npm:0.81.6": + version: 0.81.6 + resolution: "@react-native/normalize-colors@npm:0.81.6" + checksum: 10c0/e1f35b9b44b76d16bfe299b44c37fd8699e435a76b22eaebb8450905b05b4a47a720fe14502a7014c19a024900fd9d1d193c7bb2a7e8011c72fa222cfed9028c + languageName: node + linkType: hard + "@react-native/virtualized-lists@npm:0.74.89": version: 0.74.89 resolution: "@react-native/virtualized-lists@npm:0.74.89" @@ -9258,6 +9352,23 @@ __metadata: languageName: node linkType: hard +"@react-native/virtualized-lists@npm:0.81.6": + version: 0.81.6 + resolution: "@react-native/virtualized-lists@npm:0.81.6" + dependencies: + invariant: "npm:^2.2.4" + nullthrows: "npm:^1.1.1" + peerDependencies: + "@types/react": ^19.1.4 + react: "*" + react-native: "*" + peerDependenciesMeta: + "@types/react": + optional: true + checksum: 10c0/345e8b4b444364daa6d439821040180b11c4001c3b28e384a30f46dcc98cd64d98a7184b47282786e98513685457d78bb98f1a5b94284e46281b694956ca3319 + languageName: node + linkType: hard + "@rnx-kit/align-deps@npm:^3.4.2": version: 3.4.2 resolution: "@rnx-kit/align-deps@npm:3.4.2" @@ -9486,7 +9597,7 @@ __metadata: languageName: node linkType: hard -"@rnx-kit/metro-serializer-esbuild@npm:^0.3.0, @rnx-kit/metro-serializer-esbuild@npm:^0.3.1": +"@rnx-kit/metro-serializer-esbuild@npm:^0.3.1": version: 0.3.1 resolution: "@rnx-kit/metro-serializer-esbuild@npm:0.3.1" dependencies: @@ -10363,7 +10474,7 @@ __metadata: languageName: node linkType: hard -"@types/react@npm:~19.1.0": +"@types/react@npm:~19.1.4": version: 19.1.17 resolution: "@types/react@npm:19.1.17" dependencies: @@ -10688,14 +10799,14 @@ __metadata: "@fluentui-react-native/framework-base": "workspace:*" "@fluentui-react-native/kit-config": "workspace:*" "@fluentui-react-native/scripts": "workspace:*" - "@types/react": "npm:~19.1.0" + "@types/react": "npm:~19.1.4" "@uifabricshared/foundation-settings": "workspace:*" - react: "npm:19.1.0" - react-native: "npm:^0.81.0" + react: "npm:19.1.4" + react-native: "npm:^0.81.6" peerDependencies: - "@types/react": ~18.2.0 || ~19.0.0 || ~19.1.0 - react: 18.2.0 || 19.0.0 || 19.1.0 - react-native: ^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0 + "@types/react": ~18.2.0 || ~19.0.0 || ~19.1.4 + react: 18.2.0 || 19.0.0 || 19.1.4 + react-native: ^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.6 peerDependenciesMeta: "@types/react": optional: true @@ -10713,21 +10824,21 @@ __metadata: "@fluentui-react-native/scripts": "workspace:*" "@fluentui-react-native/theme-types": "workspace:*" "@office-iss/react-native-win32": "npm:^0.81.0" - "@types/react": "npm:~19.1.0" + "@types/react": "npm:~19.1.4" "@uifabricshared/foundation-composable": "workspace:*" "@uifabricshared/foundation-settings": "workspace:*" "@uifabricshared/foundation-tokens": "workspace:*" "@uifabricshared/themed-settings": "workspace:*" "@uifabricshared/theming-ramp": "workspace:*" - react: "npm:19.1.0" - react-native: "npm:^0.81.0" + react: "npm:19.1.4" + react-native: "npm:^0.81.6" react-native-macos: "npm:^0.81.0" react-native-windows: "npm:^0.81.0" peerDependencies: "@office-iss/react-native-win32": ^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0 - "@types/react": ~18.2.0 || ~19.0.0 || ~19.1.0 - react: 18.2.0 || 19.0.0 || 19.1.0 - react-native: ^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0 + "@types/react": ~18.2.0 || ~19.0.0 || ~19.1.4 + react: 18.2.0 || 19.0.0 || 19.1.4 + react-native: ^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.6 react-native-macos: ^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0 react-native-windows: ^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0 peerDependenciesMeta: @@ -10753,12 +10864,12 @@ __metadata: "@fluentui-react-native/react-configs": "workspace:*" "@fluentui-react-native/scripts": "workspace:*" "@types/jest": "npm:^29.0.0" - "@types/react": "npm:~19.1.0" - react: "npm:19.1.0" - react-native: "npm:^0.81.0" + "@types/react": "npm:~19.1.4" + react: "npm:19.1.4" + react-native: "npm:^0.81.6" peerDependencies: - "@types/react": ~18.2.0 || ~19.0.0 || ~19.1.0 - react: 18.2.0 || 19.0.0 || 19.1.0 + "@types/react": ~18.2.0 || ~19.0.0 || ~19.1.4 + react: 18.2.0 || 19.0.0 || 19.1.4 peerDependenciesMeta: "@types/react": optional: true @@ -10784,17 +10895,17 @@ __metadata: "@react-native/metro-config": "npm:^0.81.0" "@types/jest": "npm:^29.0.0" "@types/node": "catalog:" - "@types/react": "npm:~19.1.0" + "@types/react": "npm:~19.1.4" "@uifabricshared/foundation-settings": "workspace:*" - react: "npm:19.1.0" - react-native: "npm:^0.81.0" + react: "npm:19.1.4" + react-native: "npm:^0.81.6" react-native-macos: "npm:^0.81.0" react-native-windows: "npm:^0.81.0" peerDependencies: "@office-iss/react-native-win32": ^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0 - "@types/react": ~18.2.0 || ~19.0.0 || ~19.1.0 - react: 18.2.0 || 19.0.0 || 19.1.0 - react-native: ^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0 + "@types/react": ~18.2.0 || ~19.0.0 || ~19.1.4 + react: 18.2.0 || 19.0.0 || 19.1.4 + react-native: ^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.6 react-native-macos: ^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0 react-native-windows: ^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0 peerDependenciesMeta: @@ -10822,12 +10933,12 @@ __metadata: "@react-native/babel-preset": "npm:^0.74.0" "@react-native/metro-config": "npm:^0.74.0" "@types/jest": "npm:^29.0.0" - "@types/react": "npm:~19.1.0" - react: "npm:19.1.0" - react-native: "npm:^0.81.0" + "@types/react": "npm:~19.1.4" + react: "npm:19.1.4" + react-native: "npm:^0.81.6" peerDependencies: - "@types/react": ~18.2.0 || ~19.0.0 || ~19.1.0 - react: 18.2.0 || 19.0.0 || 19.1.0 + "@types/react": ~18.2.0 || ~19.0.0 || ~19.1.4 + react: 18.2.0 || 19.0.0 || 19.1.4 peerDependenciesMeta: "@types/react": optional: true @@ -10847,13 +10958,13 @@ __metadata: "@react-native/babel-preset": "npm:^0.81.0" "@types/jest": "npm:^29.0.0" "@types/node": "catalog:" - "@types/react": "npm:~19.1.0" + "@types/react": "npm:~19.1.4" "@uifabricshared/foundation-settings": "workspace:*" - react: "npm:19.1.0" - react-native: "npm:^0.81.0" + react: "npm:19.1.4" + react-native: "npm:^0.81.6" peerDependencies: - "@types/react": ~18.2.0 || ~19.0.0 || ~19.1.0 - react: 18.2.0 || 19.0.0 || 19.1.0 + "@types/react": ~18.2.0 || ~19.0.0 || ~19.1.4 + react: 18.2.0 || 19.0.0 || 19.1.4 peerDependenciesMeta: "@types/react": optional: true @@ -10873,13 +10984,13 @@ __metadata: "@fluentui-react-native/test-tools": "workspace:*" "@fluentui-react-native/theme-types": "workspace:*" "@types/jest": "npm:^29.0.0" - "@types/react": "npm:~19.1.0" + "@types/react": "npm:~19.1.4" "@uifabricshared/foundation-settings": "workspace:*" - react: "npm:19.1.0" - react-native: "npm:^0.81.0" + react: "npm:19.1.4" + react-native: "npm:^0.81.6" peerDependencies: - "@types/react": ~18.2.0 || ~19.0.0 || ~19.1.0 - react: 18.2.0 || 19.0.0 || 19.1.0 + "@types/react": ~18.2.0 || ~19.0.0 || ~19.1.4 + react: 18.2.0 || 19.0.0 || 19.1.4 react-native: ^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0 peerDependenciesMeta: "@types/react": @@ -10903,18 +11014,18 @@ __metadata: "@react-native-community/cli-platform-android": "npm:^20.0.0" "@react-native-community/cli-platform-ios": "npm:^20.0.0" "@react-native/metro-config": "npm:^0.81.0" - "@types/react": "npm:~19.1.0" + "@types/react": "npm:~19.1.4" "@uifabricshared/theme-registry": "workspace:*" "@uifabricshared/theming-ramp": "workspace:*" - react: "npm:19.1.0" - react-native: "npm:^0.81.0" + react: "npm:19.1.4" + react-native: "npm:^0.81.6" react-native-macos: "npm:^0.81.0" react-native-windows: "npm:^0.81.0" peerDependencies: "@office-iss/react-native-win32": ^0.74.0 - "@types/react": ~18.2.0 || ~19.0.0 || ~19.1.0 - react: 18.2.0 || 19.0.0 || 19.1.0 - react-native: ^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0 + "@types/react": ~18.2.0 || ~19.0.0 || ~19.1.4 + react: 18.2.0 || 19.0.0 || 19.1.4 + react-native: ^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.6 react-native-macos: ^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0 react-native-windows: ^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0 peerDependenciesMeta: @@ -21790,7 +21901,7 @@ __metadata: languageName: node linkType: hard -"react-is@npm:^19.1.0": +"react-is@npm:^19.1.4": version: 19.2.4 resolution: "react-is@npm:19.2.4" checksum: 10c0/477a7cfc900f24194606e315fa353856a3a13487ea8eca841678817cad4daef64339ea0d1e84e58459fc75dbe0d9ba00bb0cc626db3d07e0cf31edc64cb4fa37 @@ -22186,18 +22297,18 @@ __metadata: languageName: node linkType: hard -"react-native@npm:^0.81.0": - version: 0.81.5 - resolution: "react-native@npm:0.81.5" +"react-native@npm:^0.81.6": + version: 0.81.6 + resolution: "react-native@npm:0.81.6" dependencies: "@jest/create-cache-key-function": "npm:^29.7.0" - "@react-native/assets-registry": "npm:0.81.5" - "@react-native/codegen": "npm:0.81.5" - "@react-native/community-cli-plugin": "npm:0.81.5" - "@react-native/gradle-plugin": "npm:0.81.5" - "@react-native/js-polyfills": "npm:0.81.5" - "@react-native/normalize-colors": "npm:0.81.5" - "@react-native/virtualized-lists": "npm:0.81.5" + "@react-native/assets-registry": "npm:0.81.6" + "@react-native/codegen": "npm:0.81.6" + "@react-native/community-cli-plugin": "npm:0.81.6" + "@react-native/gradle-plugin": "npm:0.81.6" + "@react-native/js-polyfills": "npm:0.81.6" + "@react-native/normalize-colors": "npm:0.81.6" + "@react-native/virtualized-lists": "npm:0.81.6" abort-controller: "npm:^3.0.0" anser: "npm:^1.4.9" ansi-regex: "npm:^5.0.0" @@ -22225,14 +22336,14 @@ __metadata: ws: "npm:^6.2.3" yargs: "npm:^17.6.2" peerDependencies: - "@types/react": ^19.1.0 - react: ^19.1.0 + "@types/react": ^19.1.4 + react: ^19.1.4 peerDependenciesMeta: "@types/react": optional: true bin: react-native: cli.js - checksum: 10c0/59b861b461e47a476dfe546b305f1b68b5248bedf2174f32c8aa02b0d1da8dc44fe8d0d60b426532353ff2b61d06d40a32a01dcc53043a3425e29b346065d159 + checksum: 10c0/ff42d33412091c0e22d2366c9aea726e33637d2e34c6a5b2703687923078aeb615b3cd38da637ffd2105d681cecb9e2da0b371a77452931347dcc8171b9d7d72 languageName: node linkType: hard @@ -22268,15 +22379,15 @@ __metadata: languageName: node linkType: hard -"react-test-renderer@npm:19.1.0": - version: 19.1.0 - resolution: "react-test-renderer@npm:19.1.0" +"react-test-renderer@npm:19.1.4": + version: 19.1.4 + resolution: "react-test-renderer@npm:19.1.4" dependencies: - react-is: "npm:^19.1.0" + react-is: "npm:^19.1.4" scheduler: "npm:^0.26.0" peerDependencies: - react: ^19.1.0 - checksum: 10c0/34ed4a37ba8b0beb96c048de6ff28574f018a18dd1042c24f8f46142d48eb5b27f82ff7c2823d082932fd3983c5a3529ab8cc8f15191d4306df0082f9f84678f + react: ^19.1.4 + checksum: 10c0/3b2be2f631e0a022df5f59fe15240a99a4e8dfeba73c5239f588e4bc78135ff8eb4273273e6255b43f24b5b14f93a8cda801ba90c6c6b946d7f9fc0960280cac languageName: node linkType: hard @@ -22289,10 +22400,10 @@ __metadata: languageName: node linkType: hard -"react@npm:19.1.0": - version: 19.1.0 - resolution: "react@npm:19.1.0" - checksum: 10c0/530fb9a62237d54137a13d2cfb67a7db6a2156faed43eecc423f4713d9b20c6f2728b026b45e28fcd72e8eadb9e9ed4b089e99f5e295d2f0ad3134251bdd3698 +"react@npm:19.1.4": + version: 19.1.4 + resolution: "react@npm:19.1.4" + checksum: 10c0/159257dbaf168facecc0a34825114e2b00624d315b7dca8468afcc790eadf5a49f90c0234be7492c7207239292e789e443ca419a83121898b82b0824454900f2 languageName: node linkType: hard From 651eb75dc6541667016b26b4acd03a779ea400a1 Mon Sep 17 00:00:00 2001 From: Jason Morse Date: Fri, 6 Mar 2026 13:12:03 -0800 Subject: [PATCH 4/4] fix issue with windows test component embedding the wrong react-test-renderer version --- packages/components/Badge/jest.config.js | 2 +- .../__snapshots__/Badge.test.tsx.snap | 99 ++--- packages/components/MenuButton/jest.config.js | 2 +- .../__snapshots__/MenuButton.test.tsx.snap | 18 +- packages/components/TabList/jest.config.js | 2 +- .../__tests__/__snapshots__/Tab.test.tsx.snap | 105 ++--- .../__snapshots__/TabList.test.tsx.snap | 391 ++++++------------ 7 files changed, 207 insertions(+), 412 deletions(-) diff --git a/packages/components/Badge/jest.config.js b/packages/components/Badge/jest.config.js index ae7531f1cb7..012dd1d9c5b 100644 --- a/packages/components/Badge/jest.config.js +++ b/packages/components/Badge/jest.config.js @@ -1,2 +1,2 @@ const { configureReactNativeJest } = require('@fluentui-react-native/jest-config'); -module.exports = configureReactNativeJest('windows'); +module.exports = configureReactNativeJest('ios'); diff --git a/packages/components/Badge/src/__tests__/__snapshots__/Badge.test.tsx.snap b/packages/components/Badge/src/__tests__/__snapshots__/Badge.test.tsx.snap index 738e39738bc..42e26f68f83 100644 --- a/packages/components/Badge/src/__tests__/__snapshots__/Badge.test.tsx.snap +++ b/packages/components/Badge/src/__tests__/__snapshots__/Badge.test.tsx.snap @@ -8,8 +8,8 @@ exports[`Badge component tests Badge all props 1`] = ` { "alignItems": "center", "alignSelf": "flex-start", - "backgroundColor": "#00000000", - "borderColor": "#185abd", + "backgroundColor": undefined, + "borderColor": "#0f6cbd", "borderRadius": 4, "borderWidth": 1, "bottom": 0, @@ -44,9 +44,9 @@ exports[`Badge component tests Badge all props 1`] = ` numberOfLines={0} style={ { - "color": "#185abd", - "fontFamily": "Segoe UI", - "fontSize": 12, + "color": "#0f6cbd", + "fontFamily": "System", + "fontSize": 13, "fontWeight": "400", "margin": 0, "marginEnd": 2, @@ -64,8 +64,8 @@ exports[`Badge component tests Badge tokens 1`] = ` { "alignItems": "center", "alignSelf": "flex-start", - "backgroundColor": "#185abd", - "borderColor": "#00000000", + "backgroundColor": "yellow", + "borderColor": "#f09", "borderRadius": 9999, "borderWidth": 4, "bottom": 0, @@ -86,9 +86,8 @@ exports[`Badge component tests Badge tokens 1`] = ` numberOfLines={0} style={ { - "color": "#ffffff", - "fontFamily": "Segoe UI", - "fontSize": 10, + "fontFamily": "System", + "fontSize": 12, "fontWeight": "400", "margin": 0, } @@ -105,8 +104,7 @@ exports[`Badge component tests Empty Badge 1`] = ` { "alignItems": "center", "alignSelf": "flex-start", - "backgroundColor": "#185abd", - "borderColor": "#00000000", + "backgroundColor": undefined, "borderRadius": 9999, "borderWidth": 1, "bottom": 0, @@ -128,8 +126,6 @@ exports[`Badge component tests Filled badge with shadow 1`] = ` style={ { "alignSelf": "flex-start", - "backgroundColor": "#185abd", - "borderColor": "#00000000", "borderRadius": 9999, "bottom": 0, "justifyContent": "center", @@ -143,7 +139,7 @@ exports[`Badge component tests Filled badge with shadow 1`] = ` "width": 0, }, "shadowOpacity": 0.2, - "shadowRadius": 8, + "shadowRadius": 4, } } > @@ -153,8 +149,6 @@ exports[`Badge component tests Filled badge with shadow 1`] = ` { "alignItems": "center", "alignSelf": "flex-start", - "backgroundColor": "#185abd", - "borderColor": "#00000000", "borderRadius": 9999, "borderWidth": 1, "flexDirection": "row", @@ -169,7 +163,7 @@ exports[`Badge component tests Filled badge with shadow 1`] = ` "width": 0, }, "shadowOpacity": 0.24, - "shadowRadius": 64, + "shadowRadius": 32, } } > @@ -179,9 +173,8 @@ exports[`Badge component tests Filled badge with shadow 1`] = ` numberOfLines={0} style={ { - "color": "#ffffff", - "fontFamily": "Segoe UI", - "fontSize": 10, + "fontFamily": "System", + "fontSize": 12, "fontWeight": "400", "margin": 0, } @@ -202,8 +195,7 @@ exports[`CounterBadge component tests CounterBadge all props 1`] = ` { "alignItems": "center", "alignSelf": "flex-start", - "backgroundColor": "#00000000", - "borderColor": "#00000000", + "backgroundColor": undefined, "borderRadius": 4, "borderWidth": 1, "bottom": 0, @@ -236,9 +228,9 @@ exports[`CounterBadge component tests CounterBadge all props 1`] = ` numberOfLines={0} style={ { - "color": "#ffffff", - "fontFamily": "Segoe UI", - "fontSize": 12, + "color": "#323130", + "fontFamily": "System", + "fontSize": 13, "fontStyle": undefined, "fontWeight": "400", "letterSpacing": undefined, @@ -260,8 +252,7 @@ exports[`CounterBadge component tests CounterBadge shows 99+ 1`] = ` { "alignItems": "center", "alignSelf": "flex-start", - "backgroundColor": "#185abd", - "borderColor": "#00000000", + "backgroundColor": undefined, "borderRadius": 9999, "borderWidth": 1, "bottom": 0, @@ -280,9 +271,9 @@ exports[`CounterBadge component tests CounterBadge shows 99+ 1`] = ` numberOfLines={0} style={ { - "color": "#ffffff", - "fontFamily": "Segoe UI", - "fontSize": 12, + "color": "#323130", + "fontFamily": "System", + "fontSize": 13, "fontStyle": undefined, "fontWeight": "400", "letterSpacing": undefined, @@ -304,8 +295,7 @@ exports[`CounterBadge component tests CounterBadge shows 1000+ 1`] = ` { "alignItems": "center", "alignSelf": "flex-start", - "backgroundColor": "#185abd", - "borderColor": "#00000000", + "backgroundColor": undefined, "borderRadius": 9999, "borderWidth": 1, "bottom": 0, @@ -324,9 +314,9 @@ exports[`CounterBadge component tests CounterBadge shows 1000+ 1`] = ` numberOfLines={0} style={ { - "color": "#ffffff", - "fontFamily": "Segoe UI", - "fontSize": 12, + "color": "#323130", + "fontFamily": "System", + "fontSize": 13, "fontStyle": undefined, "fontWeight": "400", "letterSpacing": undefined, @@ -349,8 +339,7 @@ exports[`CounterBadge component tests CounterBadge shows zero 1`] = ` { "alignItems": "center", "alignSelf": "flex-start", - "backgroundColor": "#185abd", - "borderColor": "#00000000", + "backgroundColor": undefined, "borderRadius": 9999, "borderWidth": 1, "bottom": 0, @@ -369,9 +358,9 @@ exports[`CounterBadge component tests CounterBadge shows zero 1`] = ` numberOfLines={0} style={ { - "color": "#ffffff", - "fontFamily": "Segoe UI", - "fontSize": 12, + "color": "#323130", + "fontFamily": "System", + "fontSize": 13, "fontStyle": undefined, "fontWeight": "400", "letterSpacing": undefined, @@ -413,9 +402,9 @@ exports[`CounterBadge component tests CounterBadge tokens 1`] = ` numberOfLines={0} style={ { - "color": "#ffffff", - "fontFamily": "Segoe UI", - "fontSize": 12, + "color": "#323130", + "fontFamily": "System", + "fontSize": 13, "fontStyle": undefined, "fontWeight": "400", "letterSpacing": undefined, @@ -446,21 +435,21 @@ exports[`PresenceBadge component tests PresenceBadge props 1`] = ` "borderColor": "#ffffff", "borderRadius": 9999, "borderWidth": 2, - "bottom": -2, + "bottom": 0, "flexDirection": "row", - "height": 24, + "height": 20, "justifyContent": "center", "paddingHorizontal": 4, "position": "relative", - "right": -2, - "width": 24, + "right": 0, + "width": 20, } } >