From 5540f06227b9750fa3089dc9ca0f8ef080a52a7d Mon Sep 17 00:00:00 2001 From: Sarah Higley Date: Wed, 5 Apr 2023 16:51:07 -0700 Subject: [PATCH 01/51] fix: v8 ComboBox needs to update aria-activedescendant value (#27457) --- ...-d4744099-358e-4a73-991b-8d917fc90753.json | 7 +++++++ .../src/components/ComboBox/ComboBox.test.tsx | 19 +++++++++++++++++++ .../src/components/ComboBox/ComboBox.tsx | 6 +++--- 3 files changed, 29 insertions(+), 3 deletions(-) create mode 100644 change/@fluentui-react-d4744099-358e-4a73-991b-8d917fc90753.json diff --git a/change/@fluentui-react-d4744099-358e-4a73-991b-8d917fc90753.json b/change/@fluentui-react-d4744099-358e-4a73-991b-8d917fc90753.json new file mode 100644 index 0000000000000..1a30dee6bdfd5 --- /dev/null +++ b/change/@fluentui-react-d4744099-358e-4a73-991b-8d917fc90753.json @@ -0,0 +1,7 @@ +{ + "type": "patch", + "comment": "fix: ComboBox updates activeDescendant value", + "packageName": "@fluentui/react", + "email": "sarah.higley@microsoft.com", + "dependentChangeType": "patch" +} diff --git a/packages/react/src/components/ComboBox/ComboBox.test.tsx b/packages/react/src/components/ComboBox/ComboBox.test.tsx index 6356b5153c09d..cd1c4eb315c51 100644 --- a/packages/react/src/components/ComboBox/ComboBox.test.tsx +++ b/packages/react/src/components/ComboBox/ComboBox.test.tsx @@ -530,6 +530,25 @@ describe('ComboBox', () => { expect(combobox.getAttribute('value')).toEqual('One'); }); + it('Updates aria-activedescendant with keyboard', () => { + const options: IComboBoxOption[] = [ + { key: '1', text: '1', id: 'one' }, + { key: '2', text: '2', id: 'two' }, + { key: '3', text: '3', id: 'three' }, + ]; + const { getByRole } = render(); + const combobox = getByRole('combobox'); + // open combobox + userEvent.tab(); + userEvent.keyboard('{enter}'); + expect(combobox.getAttribute('aria-expanded')).toEqual('true'); + expect(combobox.getAttribute('aria-activedescendant')).toEqual('one'); + + // arrow down + userEvent.keyboard('{arrowdown}'); + expect(combobox.getAttribute('aria-activedescendant')).toEqual('two'); + }); + it('Cannot insert text while disabled', () => { const { getByRole } = render(); const combobox = getByRole('combobox'); diff --git a/packages/react/src/components/ComboBox/ComboBox.tsx b/packages/react/src/components/ComboBox/ComboBox.tsx index ac7e4fa8f33a6..8c4f9ce65d514 100644 --- a/packages/react/src/components/ComboBox/ComboBox.tsx +++ b/packages/react/src/components/ComboBox/ComboBox.tsx @@ -425,11 +425,11 @@ class ComboBoxInternal extends React.Component Date: Thu, 6 Apr 2023 07:39:12 +0000 Subject: [PATCH 02/51] applying package updates --- apps/perf-test/package.json | 2 +- apps/public-docsite-resources/package.json | 10 ++++----- apps/public-docsite-v9/package.json | 2 +- apps/public-docsite/package.json | 12 +++++------ apps/react-18-tests-v8/package.json | 2 +- apps/ssr-tests/package.json | 2 +- apps/stress-test/package.json | 2 +- apps/theming-designer/package.json | 4 ++-- apps/ts-minbar-test-react/package.json | 2 +- apps/vr-tests/package.json | 4 ++-- ...-d4744099-358e-4a73-991b-8d917fc90753.json | 7 ------- packages/azure-themes/CHANGELOG.json | 15 +++++++++++++ packages/azure-themes/CHANGELOG.md | 11 +++++++++- packages/azure-themes/package.json | 4 ++-- packages/cra-template/CHANGELOG.json | 15 +++++++++++++ packages/cra-template/CHANGELOG.md | 11 +++++++++- packages/cra-template/package.json | 4 ++-- packages/fluent2-theme/CHANGELOG.json | 15 +++++++++++++ packages/fluent2-theme/CHANGELOG.md | 11 +++++++++- packages/fluent2-theme/package.json | 4 ++-- packages/react-cards/CHANGELOG.json | 15 +++++++++++++ packages/react-cards/CHANGELOG.md | 11 +++++++++- packages/react-cards/package.json | 4 ++-- packages/react-charting/CHANGELOG.json | 15 +++++++++++++ packages/react-charting/CHANGELOG.md | 11 +++++++++- packages/react-charting/package.json | 6 +++--- .../react-migration-v8-v9/package.json | 4 ++-- packages/react-date-time/CHANGELOG.json | 15 +++++++++++++ packages/react-date-time/CHANGELOG.md | 11 +++++++++- packages/react-date-time/package.json | 4 ++-- .../react-docsite-components/CHANGELOG.json | 21 +++++++++++++++++++ .../react-docsite-components/CHANGELOG.md | 12 ++++++++++- .../react-docsite-components/package.json | 6 +++--- packages/react-examples/package.json | 14 ++++++------- packages/react-experiments/CHANGELOG.json | 15 +++++++++++++ packages/react-experiments/CHANGELOG.md | 11 +++++++++- packages/react-experiments/package.json | 4 ++-- packages/react-monaco-editor/CHANGELOG.json | 15 +++++++++++++ packages/react-monaco-editor/CHANGELOG.md | 11 +++++++++- packages/react-monaco-editor/package.json | 4 ++-- packages/react/CHANGELOG.json | 15 +++++++++++++ packages/react/CHANGELOG.md | 11 +++++++++- packages/react/package.json | 2 +- packages/storybook/package.json | 6 +++--- packages/theme-samples/CHANGELOG.json | 15 +++++++++++++ packages/theme-samples/CHANGELOG.md | 11 +++++++++- packages/theme-samples/package.json | 4 ++-- 47 files changed, 338 insertions(+), 74 deletions(-) delete mode 100644 change/@fluentui-react-d4744099-358e-4a73-991b-8d917fc90753.json diff --git a/apps/perf-test/package.json b/apps/perf-test/package.json index ee66074e234e5..662f4ae2eab1f 100644 --- a/apps/perf-test/package.json +++ b/apps/perf-test/package.json @@ -20,7 +20,7 @@ "dependencies": { "@fluentui/scripts-perf-test-flamegrill": "*", "@fluentui/example-data": "^8.4.7", - "@fluentui/react": "^8.107.1", + "@fluentui/react": "^8.107.2", "@microsoft/load-themed-styles": "^1.10.26", "react": "17.0.2", "react-dom": "17.0.2", diff --git a/apps/public-docsite-resources/package.json b/apps/public-docsite-resources/package.json index b8a3c9bba7e98..37e4d365e1a96 100644 --- a/apps/public-docsite-resources/package.json +++ b/apps/public-docsite-resources/package.json @@ -34,15 +34,15 @@ "@fluentui/scripts-webpack": "*" }, "dependencies": { - "@fluentui/react": "^8.107.1", + "@fluentui/react": "^8.107.2", "@fluentui/react-examples": "^8.34.4", "@microsoft/load-themed-styles": "^1.10.26", - "@fluentui/azure-themes": "^8.5.75", - "@fluentui/react-docsite-components": "^8.11.36", + "@fluentui/azure-themes": "^8.5.76", + "@fluentui/react-docsite-components": "^8.11.37", "@fluentui/font-icons-mdl2": "^8.5.13", "@fluentui/set-version": "^8.2.6", - "@fluentui/theme-samples": "^8.7.71", - "@fluentui/react-monaco-editor": "^1.7.71", + "@fluentui/theme-samples": "^8.7.72", + "@fluentui/react-monaco-editor": "^1.7.72", "office-ui-fabric-core": "^11.0.0", "react": "17.0.2", "react-dom": "17.0.2", diff --git a/apps/public-docsite-v9/package.json b/apps/public-docsite-v9/package.json index bb7fcceef6d0c..219bf48d64944 100644 --- a/apps/public-docsite-v9/package.json +++ b/apps/public-docsite-v9/package.json @@ -25,7 +25,7 @@ "@fluentui/react-datepicker-compat": "0.0.0-alpha.0", "@fluentui/react-migration-v8-v9": "^9.2.6", "@fluentui/react-migration-v0-v9": "9.0.0-alpha.0", - "@fluentui/react": "^8.107.1", + "@fluentui/react": "^8.107.2", "@fluentui/react-northstar": "^0.66.4", "@fluentui/react-icons-northstar": "^0.66.4", "@fluentui/react-components": "^9.18.7", diff --git a/apps/public-docsite/package.json b/apps/public-docsite/package.json index 8624c732fc047..9a99bde5b5f21 100644 --- a/apps/public-docsite/package.json +++ b/apps/public-docsite/package.json @@ -25,7 +25,7 @@ "devDependencies": { "@fluentui/common-styles": "^1.2.22", "@fluentui/eslint-plugin": "*", - "@fluentui/react-monaco-editor": "^1.7.71", + "@fluentui/react-monaco-editor": "^1.7.72", "write-file-webpack-plugin": "^4.1.0", "@fluentui/scripts-tasks": "*", "@fluentui/scripts-webpack": "*" @@ -34,17 +34,17 @@ "@fluentui/font-icons-mdl2": "^8.5.13", "@fluentui/public-docsite-resources": "^8.1.41", "@fluentui/public-docsite-setup": "^0.3.18", - "@fluentui/react": "^8.107.1", - "@fluentui/react-docsite-components": "^8.11.36", + "@fluentui/react": "^8.107.2", + "@fluentui/react-docsite-components": "^8.11.37", "@fluentui/react-examples": "^8.34.4", - "@fluentui/react-experiments": "^8.14.66", - "@fluentui/fluent2-theme": "^8.106.8", + "@fluentui/react-experiments": "^8.14.67", + "@fluentui/fluent2-theme": "^8.106.9", "@fluentui/react-file-type-icons": "^8.8.13", "@fluentui/react-icons-mdl2": "^1.3.37", "@fluentui/react-icons-mdl2-branded": "^1.2.38", "@fluentui/set-version": "^8.2.6", "@fluentui/theme": "^2.6.25", - "@fluentui/theme-samples": "^8.7.71", + "@fluentui/theme-samples": "^8.7.72", "@fluentui/utilities": "^8.13.9", "@microsoft/load-themed-styles": "^1.10.26", "office-ui-fabric-core": "^11.0.0", diff --git a/apps/react-18-tests-v8/package.json b/apps/react-18-tests-v8/package.json index dd7fea5ae4092..d30b1cdb0c328 100644 --- a/apps/react-18-tests-v8/package.json +++ b/apps/react-18-tests-v8/package.json @@ -21,7 +21,7 @@ "@fluentui/scripts-webpack": "*" }, "dependencies": { - "@fluentui/react": "^8.107.1", + "@fluentui/react": "^8.107.2", "@fluentui/react-hooks": "^8.6.20", "@types/react": "18.0.14", "@types/react-dom": "18.0.6", diff --git a/apps/ssr-tests/package.json b/apps/ssr-tests/package.json index 39ae288590720..385705816db50 100644 --- a/apps/ssr-tests/package.json +++ b/apps/ssr-tests/package.json @@ -13,7 +13,7 @@ }, "license": "MIT", "devDependencies": { - "@fluentui/react": "^8.107.1", + "@fluentui/react": "^8.107.2", "@microsoft/load-themed-styles": "^1.10.26", "@types/mocha": "7.0.2", "@fluentui/public-docsite-resources": "^8.1.41", diff --git a/apps/stress-test/package.json b/apps/stress-test/package.json index c7798bfb4eeda..04a29ab2067bc 100644 --- a/apps/stress-test/package.json +++ b/apps/stress-test/package.json @@ -10,7 +10,7 @@ "type-check": "tsc -b tsconfig.type.json" }, "dependencies": { - "@fluentui/react": "^8.107.1", + "@fluentui/react": "^8.107.2", "@fluentui/react-components": "^9.18.7", "@fluentui/react-icons": "^2.0.196", "@fluentui/web-components": "^2.5.12", diff --git a/apps/theming-designer/package.json b/apps/theming-designer/package.json index 03bb4a50809ba..f4391dda7b453 100644 --- a/apps/theming-designer/package.json +++ b/apps/theming-designer/package.json @@ -19,9 +19,9 @@ "@fluentui/scripts-webpack": "*" }, "dependencies": { - "@fluentui/react": "^8.107.1", + "@fluentui/react": "^8.107.2", "@fluentui/merge-styles": "^8.5.7", - "@fluentui/react-docsite-components": "^8.11.36", + "@fluentui/react-docsite-components": "^8.11.37", "@fluentui/foundation-legacy": "^8.2.33", "@fluentui/scheme-utilities": "^8.3.26", "@fluentui/set-version": "^8.2.6", diff --git a/apps/ts-minbar-test-react/package.json b/apps/ts-minbar-test-react/package.json index 57275d0b902fe..142f9a64f98de 100644 --- a/apps/ts-minbar-test-react/package.json +++ b/apps/ts-minbar-test-react/package.json @@ -5,7 +5,7 @@ "description": "Testing Fluent UI React compatibility with Typescript 3.9", "license": "MIT", "dependencies": { - "@fluentui/react": "^8.107.1" + "@fluentui/react": "^8.107.2" }, "scripts": { "type-check": "tsc -p .", diff --git a/apps/vr-tests/package.json b/apps/vr-tests/package.json index 564a506faa948..8d77f9698a729 100644 --- a/apps/vr-tests/package.json +++ b/apps/vr-tests/package.json @@ -22,8 +22,8 @@ "dependencies": { "@fluentui/example-data": "^8.4.7", "@fluentui/font-icons-mdl2": "^8.5.13", - "@fluentui/react": "^8.107.1", - "@fluentui/react-experiments": "^8.14.66", + "@fluentui/react": "^8.107.2", + "@fluentui/react-experiments": "^8.14.67", "@fluentui/react-hooks": "^8.6.20", "@fluentui/react-icons-mdl2": "^1.3.37", "@fluentui/storybook": "^1.0.0", diff --git a/change/@fluentui-react-d4744099-358e-4a73-991b-8d917fc90753.json b/change/@fluentui-react-d4744099-358e-4a73-991b-8d917fc90753.json deleted file mode 100644 index 1a30dee6bdfd5..0000000000000 --- a/change/@fluentui-react-d4744099-358e-4a73-991b-8d917fc90753.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "type": "patch", - "comment": "fix: ComboBox updates activeDescendant value", - "packageName": "@fluentui/react", - "email": "sarah.higley@microsoft.com", - "dependentChangeType": "patch" -} diff --git a/packages/azure-themes/CHANGELOG.json b/packages/azure-themes/CHANGELOG.json index 3d20b961a76b8..9605b19ab9217 100644 --- a/packages/azure-themes/CHANGELOG.json +++ b/packages/azure-themes/CHANGELOG.json @@ -1,6 +1,21 @@ { "name": "@fluentui/azure-themes", "entries": [ + { + "date": "Thu, 06 Apr 2023 07:39:05 GMT", + "tag": "@fluentui/azure-themes_v8.5.76", + "version": "8.5.76", + "comments": { + "patch": [ + { + "author": "beachball", + "package": "@fluentui/azure-themes", + "comment": "Bump @fluentui/react to v8.107.2", + "commit": "5540f06227b9750fa3089dc9ca0f8ef080a52a7d" + } + ] + } + }, { "date": "Mon, 03 Apr 2023 07:37:18 GMT", "tag": "@fluentui/azure-themes_v8.5.75", diff --git a/packages/azure-themes/CHANGELOG.md b/packages/azure-themes/CHANGELOG.md index 95f54bcc27819..f3af6a868b915 100644 --- a/packages/azure-themes/CHANGELOG.md +++ b/packages/azure-themes/CHANGELOG.md @@ -1,9 +1,18 @@ # Change Log - @fluentui/azure-themes -This log was last generated on Mon, 03 Apr 2023 07:37:18 GMT and should not be manually modified. +This log was last generated on Thu, 06 Apr 2023 07:39:05 GMT and should not be manually modified. +## [8.5.76](https://github.com/microsoft/fluentui/tree/@fluentui/azure-themes_v8.5.76) + +Thu, 06 Apr 2023 07:39:05 GMT +[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/azure-themes_v8.5.75..@fluentui/azure-themes_v8.5.76) + +### Patches + +- Bump @fluentui/react to v8.107.2 ([PR #27457](https://github.com/microsoft/fluentui/pull/27457) by beachball) + ## [8.5.75](https://github.com/microsoft/fluentui/tree/@fluentui/azure-themes_v8.5.75) Mon, 03 Apr 2023 07:37:18 GMT diff --git a/packages/azure-themes/package.json b/packages/azure-themes/package.json index e841168600b0a..03069f0e97de0 100644 --- a/packages/azure-themes/package.json +++ b/packages/azure-themes/package.json @@ -1,6 +1,6 @@ { "name": "@fluentui/azure-themes", - "version": "8.5.75", + "version": "8.5.76", "description": "Azure themes for Fluent UI React", "main": "lib-commonjs/index.js", "module": "lib/index.js", @@ -28,7 +28,7 @@ "@fluentui/scripts-webpack": "*" }, "dependencies": { - "@fluentui/react": "^8.107.1", + "@fluentui/react": "^8.107.2", "@fluentui/set-version": "^8.2.6", "tslib": "^2.1.0" } diff --git a/packages/cra-template/CHANGELOG.json b/packages/cra-template/CHANGELOG.json index 00d57b5a0b27d..6969fba0a3977 100644 --- a/packages/cra-template/CHANGELOG.json +++ b/packages/cra-template/CHANGELOG.json @@ -1,6 +1,21 @@ { "name": "@fluentui/cra-template", "entries": [ + { + "date": "Thu, 06 Apr 2023 07:39:05 GMT", + "tag": "@fluentui/cra-template_v8.4.73", + "version": "8.4.73", + "comments": { + "patch": [ + { + "author": "beachball", + "package": "@fluentui/cra-template", + "comment": "Bump @fluentui/react to v8.107.2", + "commit": "5540f06227b9750fa3089dc9ca0f8ef080a52a7d" + } + ] + } + }, { "date": "Mon, 03 Apr 2023 07:37:18 GMT", "tag": "@fluentui/cra-template_v8.4.72", diff --git a/packages/cra-template/CHANGELOG.md b/packages/cra-template/CHANGELOG.md index 47d0a7ac953e9..02a1555849039 100644 --- a/packages/cra-template/CHANGELOG.md +++ b/packages/cra-template/CHANGELOG.md @@ -1,9 +1,18 @@ # Change Log - @fluentui/cra-template -This log was last generated on Mon, 03 Apr 2023 07:37:18 GMT and should not be manually modified. +This log was last generated on Thu, 06 Apr 2023 07:39:05 GMT and should not be manually modified. +## [8.4.73](https://github.com/microsoft/fluentui/tree/@fluentui/cra-template_v8.4.73) + +Thu, 06 Apr 2023 07:39:05 GMT +[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/cra-template_v8.4.72..@fluentui/cra-template_v8.4.73) + +### Patches + +- Bump @fluentui/react to v8.107.2 ([PR #27457](https://github.com/microsoft/fluentui/pull/27457) by beachball) + ## [8.4.72](https://github.com/microsoft/fluentui/tree/@fluentui/cra-template_v8.4.72) Mon, 03 Apr 2023 07:37:18 GMT diff --git a/packages/cra-template/package.json b/packages/cra-template/package.json index 168cb8b821854..16d08900a4693 100644 --- a/packages/cra-template/package.json +++ b/packages/cra-template/package.json @@ -1,6 +1,6 @@ { "name": "@fluentui/cra-template", - "version": "8.4.72", + "version": "8.4.73", "description": "Create React App template for Fluent UI React (@fluentui/react)", "repository": { "type": "git", @@ -18,7 +18,7 @@ "template.json" ], "devDependencies": { - "@fluentui/react": "^8.107.1", + "@fluentui/react": "^8.107.2", "@fluentui/scripts-projects-test": "*", "@fluentui/scripts-monorepo": "*" } diff --git a/packages/fluent2-theme/CHANGELOG.json b/packages/fluent2-theme/CHANGELOG.json index dd423f0a42710..dc0a62ecfaab0 100644 --- a/packages/fluent2-theme/CHANGELOG.json +++ b/packages/fluent2-theme/CHANGELOG.json @@ -1,6 +1,21 @@ { "name": "@fluentui/fluent2-theme", "entries": [ + { + "date": "Thu, 06 Apr 2023 07:39:05 GMT", + "tag": "@fluentui/fluent2-theme_v8.106.9", + "version": "8.106.9", + "comments": { + "patch": [ + { + "author": "beachball", + "package": "@fluentui/fluent2-theme", + "comment": "Bump @fluentui/react to v8.107.2", + "commit": "5540f06227b9750fa3089dc9ca0f8ef080a52a7d" + } + ] + } + }, { "date": "Mon, 03 Apr 2023 07:37:18 GMT", "tag": "@fluentui/fluent2-theme_v8.106.8", diff --git a/packages/fluent2-theme/CHANGELOG.md b/packages/fluent2-theme/CHANGELOG.md index ffed7b568a995..74036569263f2 100644 --- a/packages/fluent2-theme/CHANGELOG.md +++ b/packages/fluent2-theme/CHANGELOG.md @@ -1,9 +1,18 @@ # Change Log - @fluentui/fluent2-theme -This log was last generated on Mon, 03 Apr 2023 07:37:18 GMT and should not be manually modified. +This log was last generated on Thu, 06 Apr 2023 07:39:05 GMT and should not be manually modified. +## [8.106.9](https://github.com/microsoft/fluentui/tree/@fluentui/fluent2-theme_v8.106.9) + +Thu, 06 Apr 2023 07:39:05 GMT +[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/fluent2-theme_v8.106.8..@fluentui/fluent2-theme_v8.106.9) + +### Patches + +- Bump @fluentui/react to v8.107.2 ([PR #27457](https://github.com/microsoft/fluentui/pull/27457) by beachball) + ## [8.106.8](https://github.com/microsoft/fluentui/tree/@fluentui/fluent2-theme_v8.106.8) Mon, 03 Apr 2023 07:37:18 GMT diff --git a/packages/fluent2-theme/package.json b/packages/fluent2-theme/package.json index da517ff743d9f..8da6055d20c3f 100644 --- a/packages/fluent2-theme/package.json +++ b/packages/fluent2-theme/package.json @@ -1,6 +1,6 @@ { "name": "@fluentui/fluent2-theme", - "version": "8.106.8", + "version": "8.106.9", "description": "A Fluent2 theme for Fluent UI React 8.x", "main": "lib-commonjs/index.js", "module": "lib/index.js", @@ -28,7 +28,7 @@ "@fluentui/scripts-webpack": "*" }, "dependencies": { - "@fluentui/react": "^8.107.1", + "@fluentui/react": "^8.107.2", "@fluentui/set-version": "^8.2.6", "tslib": "^2.1.0" } diff --git a/packages/react-cards/CHANGELOG.json b/packages/react-cards/CHANGELOG.json index 913d1ee86016b..913bcf4d607e7 100644 --- a/packages/react-cards/CHANGELOG.json +++ b/packages/react-cards/CHANGELOG.json @@ -1,6 +1,21 @@ { "name": "@fluentui/react-cards", "entries": [ + { + "date": "Thu, 06 Apr 2023 07:39:05 GMT", + "tag": "@fluentui/react-cards_v0.205.72", + "version": "0.205.72", + "comments": { + "patch": [ + { + "author": "beachball", + "package": "@fluentui/react-cards", + "comment": "Bump @fluentui/react to v8.107.2", + "commit": "5540f06227b9750fa3089dc9ca0f8ef080a52a7d" + } + ] + } + }, { "date": "Mon, 03 Apr 2023 07:37:18 GMT", "tag": "@fluentui/react-cards_v0.205.71", diff --git a/packages/react-cards/CHANGELOG.md b/packages/react-cards/CHANGELOG.md index f2bfb2eae2c7f..f575fed3e67c7 100644 --- a/packages/react-cards/CHANGELOG.md +++ b/packages/react-cards/CHANGELOG.md @@ -1,9 +1,18 @@ # Change Log - @fluentui/react-cards -This log was last generated on Mon, 03 Apr 2023 07:37:18 GMT and should not be manually modified. +This log was last generated on Thu, 06 Apr 2023 07:39:05 GMT and should not be manually modified. +## [0.205.72](https://github.com/microsoft/fluentui/tree/@fluentui/react-cards_v0.205.72) + +Thu, 06 Apr 2023 07:39:05 GMT +[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-cards_v0.205.71..@fluentui/react-cards_v0.205.72) + +### Patches + +- Bump @fluentui/react to v8.107.2 ([PR #27457](https://github.com/microsoft/fluentui/pull/27457) by beachball) + ## [0.205.71](https://github.com/microsoft/fluentui/tree/@fluentui/react-cards_v0.205.71) Mon, 03 Apr 2023 07:37:18 GMT diff --git a/packages/react-cards/package.json b/packages/react-cards/package.json index a02fe5fcac98c..de7f49c3307d8 100644 --- a/packages/react-cards/package.json +++ b/packages/react-cards/package.json @@ -1,6 +1,6 @@ { "name": "@fluentui/react-cards", - "version": "0.205.71", + "version": "0.205.72", "description": "Deprecated experimental Card container components for Fluent UI React.", "main": "lib-commonjs/index.js", "module": "lib/index.js", @@ -34,7 +34,7 @@ "@fluentui/scripts-webpack": "*" }, "dependencies": { - "@fluentui/react": "^8.107.1", + "@fluentui/react": "^8.107.2", "@fluentui/foundation-legacy": "^8.2.33", "@fluentui/set-version": "^8.2.6", "@microsoft/load-themed-styles": "^1.10.26", diff --git a/packages/react-charting/CHANGELOG.json b/packages/react-charting/CHANGELOG.json index c82c66f4f99c7..f5314697586a6 100644 --- a/packages/react-charting/CHANGELOG.json +++ b/packages/react-charting/CHANGELOG.json @@ -1,6 +1,21 @@ { "name": "@fluentui/react-charting", "entries": [ + { + "date": "Thu, 06 Apr 2023 07:39:05 GMT", + "tag": "@fluentui/react-charting_v5.16.12", + "version": "5.16.12", + "comments": { + "patch": [ + { + "author": "beachball", + "package": "@fluentui/react-charting", + "comment": "Bump @fluentui/react to v8.107.2", + "commit": "5540f06227b9750fa3089dc9ca0f8ef080a52a7d" + } + ] + } + }, { "date": "Mon, 03 Apr 2023 07:37:18 GMT", "tag": "@fluentui/react-charting_v5.16.11", diff --git a/packages/react-charting/CHANGELOG.md b/packages/react-charting/CHANGELOG.md index 9c9f06fd58f5b..58f3bf95e7cdd 100644 --- a/packages/react-charting/CHANGELOG.md +++ b/packages/react-charting/CHANGELOG.md @@ -1,9 +1,18 @@ # Change Log - @fluentui/react-charting -This log was last generated on Mon, 03 Apr 2023 07:37:18 GMT and should not be manually modified. +This log was last generated on Thu, 06 Apr 2023 07:39:05 GMT and should not be manually modified. +## [5.16.12](https://github.com/microsoft/fluentui/tree/@fluentui/react-charting_v5.16.12) + +Thu, 06 Apr 2023 07:39:05 GMT +[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-charting_v5.16.11..@fluentui/react-charting_v5.16.12) + +### Patches + +- Bump @fluentui/react to v8.107.2 ([PR #27457](https://github.com/microsoft/fluentui/pull/27457) by beachball) + ## [5.16.11](https://github.com/microsoft/fluentui/tree/@fluentui/react-charting_v5.16.11) Mon, 03 Apr 2023 07:37:18 GMT diff --git a/packages/react-charting/package.json b/packages/react-charting/package.json index d67e3618b2a79..930669b946d7c 100644 --- a/packages/react-charting/package.json +++ b/packages/react-charting/package.json @@ -1,6 +1,6 @@ { "name": "@fluentui/react-charting", - "version": "5.16.11", + "version": "5.16.12", "description": "Experimental React charting components for building experiences for Microsoft 365.", "main": "lib-commonjs/index.js", "module": "lib/index.js", @@ -28,7 +28,7 @@ }, "devDependencies": { "@fluentui/eslint-plugin": "*", - "@fluentui/react": "^8.107.1", + "@fluentui/react": "^8.107.2", "@types/react-addons-test-utils": "0.14.18", "@fluentui/jest-serializer-merge-styles": "^8.0.24", "@fluentui/scripts-jest": "*", @@ -62,7 +62,7 @@ "tslib": "^2.1.0" }, "peerDependencies": { - "@fluentui/react": "^8.107.1", + "@fluentui/react": "^8.107.2", "@types/react": ">=16.8.0 <19.0.0", "@types/react-dom": ">=16.8.0 <19.0.0", "react": ">=16.8.0 <19.0.0", diff --git a/packages/react-components/react-migration-v8-v9/package.json b/packages/react-components/react-migration-v8-v9/package.json index dc6dcb5722f5b..70a849474fa83 100644 --- a/packages/react-components/react-migration-v8-v9/package.json +++ b/packages/react-components/react-migration-v8-v9/package.json @@ -32,8 +32,8 @@ }, "dependencies": { "@ctrl/tinycolor": "3.3.4", - "@fluentui/fluent2-theme": "^8.106.8", - "@fluentui/react": "^8.107.1", + "@fluentui/fluent2-theme": "^8.106.9", + "@fluentui/react": "^8.107.2", "@fluentui/react-components": "^9.18.7", "@fluentui/react-icons": "^2.0.196", "@fluentui/react-theme": "^9.1.7", diff --git a/packages/react-date-time/CHANGELOG.json b/packages/react-date-time/CHANGELOG.json index d0e2d9dfa871e..ad53164335a67 100644 --- a/packages/react-date-time/CHANGELOG.json +++ b/packages/react-date-time/CHANGELOG.json @@ -1,6 +1,21 @@ { "name": "@fluentui/react-date-time", "entries": [ + { + "date": "Thu, 06 Apr 2023 07:39:05 GMT", + "tag": "@fluentui/react-date-time_v8.7.72", + "version": "8.7.72", + "comments": { + "patch": [ + { + "author": "beachball", + "package": "@fluentui/react-date-time", + "comment": "Bump @fluentui/react to v8.107.2", + "commit": "5540f06227b9750fa3089dc9ca0f8ef080a52a7d" + } + ] + } + }, { "date": "Mon, 03 Apr 2023 07:37:18 GMT", "tag": "@fluentui/react-date-time_v8.7.71", diff --git a/packages/react-date-time/CHANGELOG.md b/packages/react-date-time/CHANGELOG.md index 624fef4ffce69..2a22017636587 100644 --- a/packages/react-date-time/CHANGELOG.md +++ b/packages/react-date-time/CHANGELOG.md @@ -1,9 +1,18 @@ # Change Log - @fluentui/react-date-time -This log was last generated on Mon, 03 Apr 2023 07:37:18 GMT and should not be manually modified. +This log was last generated on Thu, 06 Apr 2023 07:39:05 GMT and should not be manually modified. +## [8.7.72](https://github.com/microsoft/fluentui/tree/@fluentui/react-date-time_v8.7.72) + +Thu, 06 Apr 2023 07:39:05 GMT +[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-date-time_v8.7.71..@fluentui/react-date-time_v8.7.72) + +### Patches + +- Bump @fluentui/react to v8.107.2 ([PR #27457](https://github.com/microsoft/fluentui/pull/27457) by beachball) + ## [8.7.71](https://github.com/microsoft/fluentui/tree/@fluentui/react-date-time_v8.7.71) Mon, 03 Apr 2023 07:37:18 GMT diff --git a/packages/react-date-time/package.json b/packages/react-date-time/package.json index a2c148d1c2af2..23f704e37a8df 100644 --- a/packages/react-date-time/package.json +++ b/packages/react-date-time/package.json @@ -1,6 +1,6 @@ { "name": "@fluentui/react-date-time", - "version": "8.7.71", + "version": "8.7.72", "description": "Date and time related React components for building experiences for Microsoft 365.", "main": "lib-commonjs/index.js", "module": "lib/index.js", @@ -28,7 +28,7 @@ "@fluentui/scripts-webpack": "*" }, "dependencies": { - "@fluentui/react": "^8.107.1", + "@fluentui/react": "^8.107.2", "@fluentui/set-version": "^8.2.6", "tslib": "^2.1.0" }, diff --git a/packages/react-docsite-components/CHANGELOG.json b/packages/react-docsite-components/CHANGELOG.json index a19390487e336..3ca18c24d9332 100644 --- a/packages/react-docsite-components/CHANGELOG.json +++ b/packages/react-docsite-components/CHANGELOG.json @@ -1,6 +1,27 @@ { "name": "@fluentui/react-docsite-components", "entries": [ + { + "date": "Thu, 06 Apr 2023 07:39:05 GMT", + "tag": "@fluentui/react-docsite-components_v8.11.37", + "version": "8.11.37", + "comments": { + "patch": [ + { + "author": "beachball", + "package": "@fluentui/react-docsite-components", + "comment": "Bump @fluentui/react to v8.107.2", + "commit": "5540f06227b9750fa3089dc9ca0f8ef080a52a7d" + }, + { + "author": "beachball", + "package": "@fluentui/react-docsite-components", + "comment": "Bump @fluentui/react-monaco-editor to v1.7.72", + "commit": "5540f06227b9750fa3089dc9ca0f8ef080a52a7d" + } + ] + } + }, { "date": "Mon, 03 Apr 2023 07:37:18 GMT", "tag": "@fluentui/react-docsite-components_v8.11.36", diff --git a/packages/react-docsite-components/CHANGELOG.md b/packages/react-docsite-components/CHANGELOG.md index f04813124fc25..1d9cba4b45954 100644 --- a/packages/react-docsite-components/CHANGELOG.md +++ b/packages/react-docsite-components/CHANGELOG.md @@ -1,9 +1,19 @@ # Change Log - @fluentui/react-docsite-components -This log was last generated on Mon, 03 Apr 2023 07:37:18 GMT and should not be manually modified. +This log was last generated on Thu, 06 Apr 2023 07:39:05 GMT and should not be manually modified. +## [8.11.37](https://github.com/microsoft/fluentui/tree/@fluentui/react-docsite-components_v8.11.37) + +Thu, 06 Apr 2023 07:39:05 GMT +[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-docsite-components_v8.11.36..@fluentui/react-docsite-components_v8.11.37) + +### Patches + +- Bump @fluentui/react to v8.107.2 ([PR #27457](https://github.com/microsoft/fluentui/pull/27457) by beachball) +- Bump @fluentui/react-monaco-editor to v1.7.72 ([PR #27457](https://github.com/microsoft/fluentui/pull/27457) by beachball) + ## [8.11.36](https://github.com/microsoft/fluentui/tree/@fluentui/react-docsite-components_v8.11.36) Mon, 03 Apr 2023 07:37:18 GMT diff --git a/packages/react-docsite-components/package.json b/packages/react-docsite-components/package.json index 4a9cdbb60eb24..0dfcf3701f51c 100644 --- a/packages/react-docsite-components/package.json +++ b/packages/react-docsite-components/package.json @@ -1,6 +1,6 @@ { "name": "@fluentui/react-docsite-components", - "version": "8.11.36", + "version": "8.11.37", "description": "Fluent UI React components for building documentation sites.", "main": "lib-commonjs/index.js", "module": "lib/index.js", @@ -35,14 +35,14 @@ "react-dom": ">=16.8.0 <19.0.0" }, "dependencies": { - "@fluentui/react": "^8.107.1", + "@fluentui/react": "^8.107.2", "@fluentui/theme": "^2.6.25", "@microsoft/load-themed-styles": "^1.10.26", "@fluentui/example-data": "^8.4.7", "@fluentui/public-docsite-setup": "^0.3.18", "@fluentui/react-hooks": "^8.6.20", "@fluentui/set-version": "^8.2.6", - "@fluentui/react-monaco-editor": "^1.7.71", + "@fluentui/react-monaco-editor": "^1.7.72", "color-check": "0.0.2", "markdown-to-jsx": "^7.0.0", "office-ui-fabric-core": "^11.0.0", diff --git a/packages/react-examples/package.json b/packages/react-examples/package.json index dff1b0eb3efdf..78440839cfd45 100644 --- a/packages/react-examples/package.json +++ b/packages/react-examples/package.json @@ -25,18 +25,18 @@ "@fluentui/scripts-tasks": "*" }, "dependencies": { - "@fluentui/azure-themes": "^8.5.75", + "@fluentui/azure-themes": "^8.5.76", "@fluentui/date-time-utilities": "^8.5.6", "@fluentui/dom-utilities": "^2.2.6", "@fluentui/example-data": "^8.4.7", "@fluentui/font-icons-mdl2": "^8.5.13", "@fluentui/foundation-legacy": "^8.2.33", "@fluentui/merge-styles": "^8.5.7", - "@fluentui/react": "^8.107.1", - "@fluentui/react-cards": "^0.205.71", - "@fluentui/react-charting": "^5.16.11", - "@fluentui/react-docsite-components": "^8.11.36", - "@fluentui/react-experiments": "^8.14.66", + "@fluentui/react": "^8.107.2", + "@fluentui/react-cards": "^0.205.72", + "@fluentui/react-charting": "^5.16.12", + "@fluentui/react-docsite-components": "^8.11.37", + "@fluentui/react-experiments": "^8.14.67", "@fluentui/react-file-type-icons": "^8.8.13", "@fluentui/react-focus": "^8.8.19", "@fluentui/react-hooks": "^8.6.20", @@ -44,7 +44,7 @@ "@fluentui/scheme-utilities": "^8.3.26", "@fluentui/style-utilities": "^8.9.6", "@fluentui/theme": "^2.6.25", - "@fluentui/theme-samples": "^8.7.71", + "@fluentui/theme-samples": "^8.7.72", "@fluentui/utilities": "^8.13.9", "@microsoft/load-themed-styles": "^1.10.26", "d3-fetch": "3.0.1", diff --git a/packages/react-experiments/CHANGELOG.json b/packages/react-experiments/CHANGELOG.json index 8e69012d3b6b4..e7a0e77c14e07 100644 --- a/packages/react-experiments/CHANGELOG.json +++ b/packages/react-experiments/CHANGELOG.json @@ -1,6 +1,21 @@ { "name": "@fluentui/react-experiments", "entries": [ + { + "date": "Thu, 06 Apr 2023 07:39:05 GMT", + "tag": "@fluentui/react-experiments_v8.14.67", + "version": "8.14.67", + "comments": { + "patch": [ + { + "author": "beachball", + "package": "@fluentui/react-experiments", + "comment": "Bump @fluentui/react to v8.107.2", + "commit": "5540f06227b9750fa3089dc9ca0f8ef080a52a7d" + } + ] + } + }, { "date": "Mon, 03 Apr 2023 07:37:18 GMT", "tag": "@fluentui/react-experiments_v8.14.66", diff --git a/packages/react-experiments/CHANGELOG.md b/packages/react-experiments/CHANGELOG.md index da0d0f8223d53..43d32ce2e8020 100644 --- a/packages/react-experiments/CHANGELOG.md +++ b/packages/react-experiments/CHANGELOG.md @@ -1,9 +1,18 @@ # Change Log - @fluentui/react-experiments -This log was last generated on Mon, 03 Apr 2023 07:37:18 GMT and should not be manually modified. +This log was last generated on Thu, 06 Apr 2023 07:39:05 GMT and should not be manually modified. +## [8.14.67](https://github.com/microsoft/fluentui/tree/@fluentui/react-experiments_v8.14.67) + +Thu, 06 Apr 2023 07:39:05 GMT +[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-experiments_v8.14.66..@fluentui/react-experiments_v8.14.67) + +### Patches + +- Bump @fluentui/react to v8.107.2 ([PR #27457](https://github.com/microsoft/fluentui/pull/27457) by beachball) + ## [8.14.66](https://github.com/microsoft/fluentui/tree/@fluentui/react-experiments_v8.14.66) Mon, 03 Apr 2023 07:37:18 GMT diff --git a/packages/react-experiments/package.json b/packages/react-experiments/package.json index a51fad6a2ac9d..e9d8809fe3ed5 100644 --- a/packages/react-experiments/package.json +++ b/packages/react-experiments/package.json @@ -1,6 +1,6 @@ { "name": "@fluentui/react-experiments", - "version": "8.14.66", + "version": "8.14.67", "description": "Experimental React components for building experiences for Microsoft 365.", "main": "lib-commonjs/index.js", "module": "lib/index.js", @@ -39,7 +39,7 @@ "@fluentui/scripts-webpack": "*" }, "dependencies": { - "@fluentui/react": "^8.107.1", + "@fluentui/react": "^8.107.2", "@fluentui/theme": "^2.6.25", "@microsoft/load-themed-styles": "^1.10.26", "@fluentui/example-data": "^8.4.7", diff --git a/packages/react-monaco-editor/CHANGELOG.json b/packages/react-monaco-editor/CHANGELOG.json index 51c8a82974f94..bea368f1667a7 100644 --- a/packages/react-monaco-editor/CHANGELOG.json +++ b/packages/react-monaco-editor/CHANGELOG.json @@ -1,6 +1,21 @@ { "name": "@fluentui/react-monaco-editor", "entries": [ + { + "date": "Thu, 06 Apr 2023 07:39:05 GMT", + "tag": "@fluentui/react-monaco-editor_v1.7.72", + "version": "1.7.72", + "comments": { + "patch": [ + { + "author": "beachball", + "package": "@fluentui/react-monaco-editor", + "comment": "Bump @fluentui/react to v8.107.2", + "commit": "5540f06227b9750fa3089dc9ca0f8ef080a52a7d" + } + ] + } + }, { "date": "Mon, 03 Apr 2023 07:37:18 GMT", "tag": "@fluentui/react-monaco-editor_v1.7.71", diff --git a/packages/react-monaco-editor/CHANGELOG.md b/packages/react-monaco-editor/CHANGELOG.md index b9f4b1d8e18a0..623a9f430f070 100644 --- a/packages/react-monaco-editor/CHANGELOG.md +++ b/packages/react-monaco-editor/CHANGELOG.md @@ -1,9 +1,18 @@ # Change Log - @fluentui/react-monaco-editor -This log was last generated on Mon, 03 Apr 2023 07:37:18 GMT and should not be manually modified. +This log was last generated on Thu, 06 Apr 2023 07:39:05 GMT and should not be manually modified. +## [1.7.72](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.7.72) + +Thu, 06 Apr 2023 07:39:05 GMT +[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.7.71..@fluentui/react-monaco-editor_v1.7.72) + +### Patches + +- Bump @fluentui/react to v8.107.2 ([PR #27457](https://github.com/microsoft/fluentui/pull/27457) by beachball) + ## [1.7.71](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.7.71) Mon, 03 Apr 2023 07:37:18 GMT diff --git a/packages/react-monaco-editor/package.json b/packages/react-monaco-editor/package.json index 707f08a07e76c..da2dba835616b 100644 --- a/packages/react-monaco-editor/package.json +++ b/packages/react-monaco-editor/package.json @@ -1,6 +1,6 @@ { "name": "@fluentui/react-monaco-editor", - "version": "1.7.71", + "version": "1.7.72", "description": "Live React example editing using monaco", "main": "lib-commonjs/index.js", "module": "lib/index.js", @@ -30,7 +30,7 @@ "@fluentui/scripts-webpack": "*" }, "dependencies": { - "@fluentui/react": "^8.107.1", + "@fluentui/react": "^8.107.2", "@microsoft/load-themed-styles": "^1.10.26", "@fluentui/example-data": "^8.4.7", "@fluentui/monaco-editor": "^1.3.6", diff --git a/packages/react/CHANGELOG.json b/packages/react/CHANGELOG.json index 0f9a2f70a484d..6957b6ac7f870 100644 --- a/packages/react/CHANGELOG.json +++ b/packages/react/CHANGELOG.json @@ -1,6 +1,21 @@ { "name": "@fluentui/react", "entries": [ + { + "date": "Thu, 06 Apr 2023 07:39:05 GMT", + "tag": "@fluentui/react_v8.107.2", + "version": "8.107.2", + "comments": { + "patch": [ + { + "author": "sarah.higley@microsoft.com", + "package": "@fluentui/react", + "commit": "5540f06227b9750fa3089dc9ca0f8ef080a52a7d", + "comment": "fix: ComboBox updates activeDescendant value" + } + ] + } + }, { "date": "Mon, 03 Apr 2023 07:37:18 GMT", "tag": "@fluentui/react_v8.107.1", diff --git a/packages/react/CHANGELOG.md b/packages/react/CHANGELOG.md index ee50c4d625b39..8bc9a01fb1a9c 100644 --- a/packages/react/CHANGELOG.md +++ b/packages/react/CHANGELOG.md @@ -1,9 +1,18 @@ # Change Log - @fluentui/react -This log was last generated on Mon, 03 Apr 2023 07:37:18 GMT and should not be manually modified. +This log was last generated on Thu, 06 Apr 2023 07:39:05 GMT and should not be manually modified. +## [8.107.2](https://github.com/microsoft/fluentui/tree/@fluentui/react_v8.107.2) + +Thu, 06 Apr 2023 07:39:05 GMT +[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react_v8.107.1..@fluentui/react_v8.107.2) + +### Patches + +- fix: ComboBox updates activeDescendant value ([PR #27457](https://github.com/microsoft/fluentui/pull/27457) by sarah.higley@microsoft.com) + ## [8.107.1](https://github.com/microsoft/fluentui/tree/@fluentui/react_v8.107.1) Mon, 03 Apr 2023 07:37:18 GMT diff --git a/packages/react/package.json b/packages/react/package.json index 33d863b930863..c9db67c0cb230 100644 --- a/packages/react/package.json +++ b/packages/react/package.json @@ -1,6 +1,6 @@ { "name": "@fluentui/react", - "version": "8.107.1", + "version": "8.107.2", "description": "Reusable React components for building web experiences.", "main": "lib-commonjs/index.js", "module": "lib/index.js", diff --git a/packages/storybook/package.json b/packages/storybook/package.json index 2addfa627d268..5651d2ebc4035 100644 --- a/packages/storybook/package.json +++ b/packages/storybook/package.json @@ -22,13 +22,13 @@ "@fluentui/scripts-tasks": "*" }, "dependencies": { - "@fluentui/react": "^8.107.1", + "@fluentui/react": "^8.107.2", "@fluentui/theme": "^2.6.25", "@storybook/addon-knobs": "6.4.0", "@storybook/addon-essentials": "6.5.15", "@storybook/addons": "6.5.15", - "@fluentui/azure-themes": "^8.5.75", - "@fluentui/theme-samples": "^8.7.71", + "@fluentui/azure-themes": "^8.5.76", + "@fluentui/theme-samples": "^8.7.72", "tslib": "^2.1.0" }, "peerDependencies": { diff --git a/packages/theme-samples/CHANGELOG.json b/packages/theme-samples/CHANGELOG.json index 08b21e404c98d..574d9f7fecb24 100644 --- a/packages/theme-samples/CHANGELOG.json +++ b/packages/theme-samples/CHANGELOG.json @@ -1,6 +1,21 @@ { "name": "@fluentui/theme-samples", "entries": [ + { + "date": "Thu, 06 Apr 2023 07:39:05 GMT", + "tag": "@fluentui/theme-samples_v8.7.72", + "version": "8.7.72", + "comments": { + "patch": [ + { + "author": "beachball", + "package": "@fluentui/theme-samples", + "comment": "Bump @fluentui/react to v8.107.2", + "commit": "5540f06227b9750fa3089dc9ca0f8ef080a52a7d" + } + ] + } + }, { "date": "Mon, 03 Apr 2023 07:37:18 GMT", "tag": "@fluentui/theme-samples_v8.7.71", diff --git a/packages/theme-samples/CHANGELOG.md b/packages/theme-samples/CHANGELOG.md index 99856a9ee0a32..2eeac95d1c932 100644 --- a/packages/theme-samples/CHANGELOG.md +++ b/packages/theme-samples/CHANGELOG.md @@ -1,9 +1,18 @@ # Change Log - @fluentui/theme-samples -This log was last generated on Mon, 03 Apr 2023 07:37:18 GMT and should not be manually modified. +This log was last generated on Thu, 06 Apr 2023 07:39:05 GMT and should not be manually modified. +## [8.7.72](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.7.72) + +Thu, 06 Apr 2023 07:39:05 GMT +[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.7.71..@fluentui/theme-samples_v8.7.72) + +### Patches + +- Bump @fluentui/react to v8.107.2 ([PR #27457](https://github.com/microsoft/fluentui/pull/27457) by beachball) + ## [8.7.71](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.7.71) Mon, 03 Apr 2023 07:37:18 GMT diff --git a/packages/theme-samples/package.json b/packages/theme-samples/package.json index 901e188d815c2..c8b2dc789123a 100644 --- a/packages/theme-samples/package.json +++ b/packages/theme-samples/package.json @@ -1,6 +1,6 @@ { "name": "@fluentui/theme-samples", - "version": "8.7.71", + "version": "8.7.72", "description": "Sample themes for use with Fabric components.", "main": "lib-commonjs/index.js", "module": "lib/index.js", @@ -27,7 +27,7 @@ "@fluentui/scripts-webpack": "*" }, "dependencies": { - "@fluentui/react": "^8.107.1", + "@fluentui/react": "^8.107.2", "@fluentui/set-version": "^8.2.6", "@fluentui/scheme-utilities": "^8.3.26", "tslib": "^2.1.0" From ba56da096fffa6b2f114a910afbf12482313ba28 Mon Sep 17 00:00:00 2001 From: Bernardo Sunderhus Date: Thu, 6 Apr 2023 09:58:05 +0200 Subject: [PATCH 03/51] feat(react-dialog): removes `aria-expanded` from `DialogTrigger` (#27372) * feat: removes aria-expanded from DialogTrigger * chore: updates snapshots --- ...eact-dialog-4ec18194-91df-4b16-9fdd-3f79ba3bc6a0.json | 7 +++++++ .../src/components/DialogTrigger/DialogTrigger.test.tsx | 2 -- .../src/components/DialogTrigger/DialogTrigger.tsx | 7 +++---- .../__snapshots__/DialogTrigger.test.tsx.snap | 1 - .../src/components/DialogTrigger/useDialogTrigger.ts | 2 -- .../stories/Dialog/DialogTriggerOutsideDialog.md | 9 +-------- .../Dialog/DialogTriggerOutsideDialog.stories.tsx | 4 +--- 7 files changed, 12 insertions(+), 20 deletions(-) create mode 100644 change/@fluentui-react-dialog-4ec18194-91df-4b16-9fdd-3f79ba3bc6a0.json diff --git a/change/@fluentui-react-dialog-4ec18194-91df-4b16-9fdd-3f79ba3bc6a0.json b/change/@fluentui-react-dialog-4ec18194-91df-4b16-9fdd-3f79ba3bc6a0.json new file mode 100644 index 0000000000000..bd95b70bc8ef2 --- /dev/null +++ b/change/@fluentui-react-dialog-4ec18194-91df-4b16-9fdd-3f79ba3bc6a0.json @@ -0,0 +1,7 @@ +{ + "type": "minor", + "comment": "feat: removes aria-expanded from DialogTrigger", + "packageName": "@fluentui/react-dialog", + "email": "bernardo.sunderhus@gmail.com", + "dependentChangeType": "patch" +} diff --git a/packages/react-components/react-dialog/src/components/DialogTrigger/DialogTrigger.test.tsx b/packages/react-components/react-dialog/src/components/DialogTrigger/DialogTrigger.test.tsx index 227c5ac9a84f4..e515177f2691e 100644 --- a/packages/react-components/react-dialog/src/components/DialogTrigger/DialogTrigger.test.tsx +++ b/packages/react-components/react-dialog/src/components/DialogTrigger/DialogTrigger.test.tsx @@ -56,7 +56,6 @@ describe('DialogTrigger', () => { expect(ref.mock.calls[0]).toMatchInlineSnapshot(` Array [ + setOpen(data.open)}> From ae395e3df3e5ab09946953157b2d3d5434c4db0e Mon Sep 17 00:00:00 2001 From: Bernardo Sunderhus Date: Thu, 6 Apr 2023 11:05:27 +0200 Subject: [PATCH 04/51] feat(react-jsx-runtime): scaffolds `react-jsx-runtime` package (#27379) * feat: creates react-jsx-runtime package * Apply suggestions from code review * chore: fix package.json * chore: remove Spec.md --------- Co-authored-by: Oleksandr Fediashov --- .github/CODEOWNERS | 1 + .../react-jsx-runtime/.babelrc.json | 4 ++ .../react-jsx-runtime/.eslintrc.json | 4 ++ .../react-jsx-runtime/.npmignore | 30 ++++++++++ .../react-components/react-jsx-runtime/.swcrc | 30 ++++++++++ .../react-jsx-runtime/LICENSE | 15 +++++ .../react-jsx-runtime/README.md | 5 ++ .../config/api-extractor.json | 4 ++ .../react-jsx-runtime/config/tests.js | 1 + .../etc/react-jsx-runtime.api.md | 9 +++ .../react-jsx-runtime/jest.config.js | 21 +++++++ .../react-jsx-runtime/just.config.ts | 5 ++ .../react-jsx-runtime/package.json | 55 +++++++++++++++++++ .../react-jsx-runtime/src/index.ts | 2 + .../react-jsx-runtime/tsconfig.json | 22 ++++++++ .../react-jsx-runtime/tsconfig.lib.json | 14 +++++ .../react-jsx-runtime/tsconfig.spec.json | 9 +++ tsconfig.base.json | 1 + workspace.json | 7 +++ 19 files changed, 239 insertions(+) create mode 100644 packages/react-components/react-jsx-runtime/.babelrc.json create mode 100644 packages/react-components/react-jsx-runtime/.eslintrc.json create mode 100644 packages/react-components/react-jsx-runtime/.npmignore create mode 100644 packages/react-components/react-jsx-runtime/.swcrc create mode 100644 packages/react-components/react-jsx-runtime/LICENSE create mode 100644 packages/react-components/react-jsx-runtime/README.md create mode 100644 packages/react-components/react-jsx-runtime/config/api-extractor.json create mode 100644 packages/react-components/react-jsx-runtime/config/tests.js create mode 100644 packages/react-components/react-jsx-runtime/etc/react-jsx-runtime.api.md create mode 100644 packages/react-components/react-jsx-runtime/jest.config.js create mode 100644 packages/react-components/react-jsx-runtime/just.config.ts create mode 100644 packages/react-components/react-jsx-runtime/package.json create mode 100644 packages/react-components/react-jsx-runtime/src/index.ts create mode 100644 packages/react-components/react-jsx-runtime/tsconfig.json create mode 100644 packages/react-components/react-jsx-runtime/tsconfig.lib.json create mode 100644 packages/react-components/react-jsx-runtime/tsconfig.spec.json diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS index bdab14b28026b..e07c57865cfd6 100644 --- a/.github/CODEOWNERS +++ b/.github/CODEOWNERS @@ -233,6 +233,7 @@ packages/react-components/react-breadcrumb @microsoft/cxe-prg packages/react-components/react-drawer @microsoft/cxe-prg packages/react-components/react-storybook-addon-codesandbox @microsoft/fluentui-react-build packages/react-components/babel-preset-storybook-full-source @microsoft/fluentui-react-build +packages/react-components/react-jsx-runtime @microsoft/teams-prg # <%= NX-CODEOWNER-PLACEHOLDER %> ## Components diff --git a/packages/react-components/react-jsx-runtime/.babelrc.json b/packages/react-components/react-jsx-runtime/.babelrc.json new file mode 100644 index 0000000000000..45fb71ca16d2c --- /dev/null +++ b/packages/react-components/react-jsx-runtime/.babelrc.json @@ -0,0 +1,4 @@ +{ + "extends": "../../../.babelrc-v9.json", + "plugins": ["annotate-pure-calls", "@babel/transform-react-pure-annotations"] +} diff --git a/packages/react-components/react-jsx-runtime/.eslintrc.json b/packages/react-components/react-jsx-runtime/.eslintrc.json new file mode 100644 index 0000000000000..ceea884c70dcc --- /dev/null +++ b/packages/react-components/react-jsx-runtime/.eslintrc.json @@ -0,0 +1,4 @@ +{ + "extends": ["plugin:@fluentui/eslint-plugin/react"], + "root": true +} diff --git a/packages/react-components/react-jsx-runtime/.npmignore b/packages/react-components/react-jsx-runtime/.npmignore new file mode 100644 index 0000000000000..f7ce568a6dbf7 --- /dev/null +++ b/packages/react-components/react-jsx-runtime/.npmignore @@ -0,0 +1,30 @@ +.storybook/ +.vscode/ +bundle-size/ +config/ +coverage/ +docs/ +etc/ +node_modules/ +src/ +stories/ +dist/types/ +temp/ +__fixtures__ +__mocks__ +__tests__ + +*.api.json +*.log +*.spec.* +*.cy.* +*.test.* +*.yml + +# config files +*config.* +*rc.* +.editorconfig +.eslint* +.git* +.prettierignore diff --git a/packages/react-components/react-jsx-runtime/.swcrc b/packages/react-components/react-jsx-runtime/.swcrc new file mode 100644 index 0000000000000..b4ffa86dee306 --- /dev/null +++ b/packages/react-components/react-jsx-runtime/.swcrc @@ -0,0 +1,30 @@ +{ + "$schema": "https://json.schemastore.org/swcrc", + "exclude": [ + "/testing", + "/**/*.cy.ts", + "/**/*.cy.tsx", + "/**/*.spec.ts", + "/**/*.spec.tsx", + "/**/*.test.ts", + "/**/*.test.tsx" + ], + "jsc": { + "parser": { + "syntax": "typescript", + "tsx": true, + "decorators": false, + "dynamicImport": false + }, + "externalHelpers": true, + "transform": { + "react": { + "runtime": "classic", + "useSpread": true + } + }, + "target": "es2019" + }, + "minify": false, + "sourceMaps": true +} diff --git a/packages/react-components/react-jsx-runtime/LICENSE b/packages/react-components/react-jsx-runtime/LICENSE new file mode 100644 index 0000000000000..3345fffa9bb17 --- /dev/null +++ b/packages/react-components/react-jsx-runtime/LICENSE @@ -0,0 +1,15 @@ +@fluentui/react-jsx-runtime + +Copyright (c) Microsoft Corporation + +All rights reserved. + +MIT License + +Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the ""Software""), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED *AS IS*, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + +Note: Usage of the fonts and icons referenced in Fluent UI React is subject to the terms listed at https://aka.ms/fluentui-assets-license diff --git a/packages/react-components/react-jsx-runtime/README.md b/packages/react-components/react-jsx-runtime/README.md new file mode 100644 index 0000000000000..5e40fe7bcc7be --- /dev/null +++ b/packages/react-components/react-jsx-runtime/README.md @@ -0,0 +1,5 @@ +# @fluentui/react-jsx-runtime + +**React Jsx Runtime components for [Fluent UI React](https://react.fluentui.dev/)** + +These are not production-ready components and **should never be used in product**. This space is useful for testing new components whose APIs might change before final release. diff --git a/packages/react-components/react-jsx-runtime/config/api-extractor.json b/packages/react-components/react-jsx-runtime/config/api-extractor.json new file mode 100644 index 0000000000000..e533bf30b48a2 --- /dev/null +++ b/packages/react-components/react-jsx-runtime/config/api-extractor.json @@ -0,0 +1,4 @@ +{ + "$schema": "https://developer.microsoft.com/json-schemas/api-extractor/v7/api-extractor.schema.json", + "extends": "@fluentui/scripts-api-extractor/api-extractor.common.v-next.json" +} diff --git a/packages/react-components/react-jsx-runtime/config/tests.js b/packages/react-components/react-jsx-runtime/config/tests.js new file mode 100644 index 0000000000000..2e211ae9e2142 --- /dev/null +++ b/packages/react-components/react-jsx-runtime/config/tests.js @@ -0,0 +1 @@ +/** Jest test setup file. */ diff --git a/packages/react-components/react-jsx-runtime/etc/react-jsx-runtime.api.md b/packages/react-components/react-jsx-runtime/etc/react-jsx-runtime.api.md new file mode 100644 index 0000000000000..85ea2e96e04b4 --- /dev/null +++ b/packages/react-components/react-jsx-runtime/etc/react-jsx-runtime.api.md @@ -0,0 +1,9 @@ +## API Report File for "@fluentui/react-jsx-runtime" + +> Do not edit this file. It is a report generated by [API Extractor](https://api-extractor.com/). + +```ts + +// (No @packageDocumentation comment for this package) + +``` diff --git a/packages/react-components/react-jsx-runtime/jest.config.js b/packages/react-components/react-jsx-runtime/jest.config.js new file mode 100644 index 0000000000000..b3440c12005ef --- /dev/null +++ b/packages/react-components/react-jsx-runtime/jest.config.js @@ -0,0 +1,21 @@ +// @ts-check + +/** + * @type {import('@jest/types').Config.InitialOptions} + */ +module.exports = { + displayName: 'react-jsx-runtime', + preset: '../../../jest.preset.js', + globals: { + 'ts-jest': { + tsconfig: '/tsconfig.spec.json', + diagnostics: false, + }, + }, + transform: { + '^.+\\.tsx?$': 'ts-jest', + }, + coverageDirectory: './coverage', + setupFilesAfterEnv: ['./config/tests.js'], + snapshotSerializers: ['@griffel/jest-serializer'], +}; diff --git a/packages/react-components/react-jsx-runtime/just.config.ts b/packages/react-components/react-jsx-runtime/just.config.ts new file mode 100644 index 0000000000000..b7b2c9a33bf43 --- /dev/null +++ b/packages/react-components/react-jsx-runtime/just.config.ts @@ -0,0 +1,5 @@ +import { preset, task } from '@fluentui/scripts-tasks'; + +preset(); + +task('build', 'build:react-components').cached?.(); diff --git a/packages/react-components/react-jsx-runtime/package.json b/packages/react-components/react-jsx-runtime/package.json new file mode 100644 index 0000000000000..8ad4f1b06971d --- /dev/null +++ b/packages/react-components/react-jsx-runtime/package.json @@ -0,0 +1,55 @@ +{ + "name": "@fluentui/react-jsx-runtime", + "version": "9.0.0-alpha.0", + "private": true, + "description": "React components for building web experiences", + "main": "lib-commonjs/index.js", + "module": "lib/index.js", + "typings": "./dist/index.d.ts", + "sideEffects": false, + "repository": { + "type": "git", + "url": "https://github.com/microsoft/fluentui" + }, + "license": "MIT", + "scripts": { + "build": "just-scripts build", + "clean": "just-scripts clean", + "code-style": "just-scripts code-style", + "just": "just-scripts", + "lint": "just-scripts lint", + "test": "jest --passWithNoTests", + "type-check": "tsc -b tsconfig.json", + "generate-api": "just-scripts generate-api" + }, + "devDependencies": { + "@fluentui/eslint-plugin": "*", + "@fluentui/react-conformance": "*", + "@fluentui/react-conformance-griffel": "9.0.0-beta.20", + "@fluentui/scripts-api-extractor": "*", + "@fluentui/scripts-tasks": "*" + }, + "dependencies": { + "@swc/helpers": "^0.4.14" + }, + "peerDependencies": { + "@types/react": ">=16.8.0 <19.0.0", + "react": ">=16.8.0 <19.0.0" + }, + "beachball": { + "disallowedChangeTypes": [ + "major", + "minor", + "patch" + ] + }, + "exports": { + ".": { + "types": "./dist/index.d.ts", + "node": "./lib-commonjs/index.js", + "import": "./lib/index.js", + "require": "./lib-commonjs/index.js" + }, + "./package.json": "./package.json" + } +} diff --git a/packages/react-components/react-jsx-runtime/src/index.ts b/packages/react-components/react-jsx-runtime/src/index.ts new file mode 100644 index 0000000000000..aacbad0068e24 --- /dev/null +++ b/packages/react-components/react-jsx-runtime/src/index.ts @@ -0,0 +1,2 @@ +// TODO: replace with real exports +export {}; diff --git a/packages/react-components/react-jsx-runtime/tsconfig.json b/packages/react-components/react-jsx-runtime/tsconfig.json new file mode 100644 index 0000000000000..12ca516af1c5b --- /dev/null +++ b/packages/react-components/react-jsx-runtime/tsconfig.json @@ -0,0 +1,22 @@ +{ + "extends": "../../../tsconfig.base.json", + "compilerOptions": { + "target": "ES2019", + "noEmit": true, + "isolatedModules": true, + "importHelpers": true, + "jsx": "react", + "noUnusedLocals": true, + "preserveConstEnums": true + }, + "include": [], + "files": [], + "references": [ + { + "path": "./tsconfig.lib.json" + }, + { + "path": "./tsconfig.spec.json" + } + ] +} diff --git a/packages/react-components/react-jsx-runtime/tsconfig.lib.json b/packages/react-components/react-jsx-runtime/tsconfig.lib.json new file mode 100644 index 0000000000000..b2da24eff1b32 --- /dev/null +++ b/packages/react-components/react-jsx-runtime/tsconfig.lib.json @@ -0,0 +1,14 @@ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "noEmit": false, + "lib": ["ES2019", "dom"], + "declaration": true, + "declarationDir": "../../../dist/out-tsc/types", + "outDir": "../../../dist/out-tsc", + "inlineSources": true, + "types": ["static-assets", "environment"] + }, + "exclude": ["**/*.spec.ts", "**/*.spec.tsx", "**/*.test.ts", "**/*.test.tsx"], + "include": ["./src/**/*.ts", "./src/**/*.tsx"] +} diff --git a/packages/react-components/react-jsx-runtime/tsconfig.spec.json b/packages/react-components/react-jsx-runtime/tsconfig.spec.json new file mode 100644 index 0000000000000..469fcba4d7ba7 --- /dev/null +++ b/packages/react-components/react-jsx-runtime/tsconfig.spec.json @@ -0,0 +1,9 @@ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "module": "CommonJS", + "outDir": "dist", + "types": ["jest", "node"] + }, + "include": ["**/*.spec.ts", "**/*.spec.tsx", "**/*.test.ts", "**/*.test.tsx", "**/*.d.ts"] +} diff --git a/tsconfig.base.json b/tsconfig.base.json index 0e79fcf4d48ce..b994a894ae86f 100644 --- a/tsconfig.base.json +++ b/tsconfig.base.json @@ -47,6 +47,7 @@ "@fluentui/react-image": ["packages/react-components/react-image/src/index.ts"], "@fluentui/react-infobutton": ["packages/react-components/react-infobutton/src/index.ts"], "@fluentui/react-input": ["packages/react-components/react-input/src/index.ts"], + "@fluentui/react-jsx-runtime": ["packages/react-components/react-jsx-runtime/src/index.ts"], "@fluentui/react-label": ["packages/react-components/react-label/src/index.ts"], "@fluentui/react-link": ["packages/react-components/react-link/src/index.ts"], "@fluentui/react-menu": ["packages/react-components/react-menu/src/index.ts"], diff --git a/workspace.json b/workspace.json index 5734b81403817..426abf087bf6b 100644 --- a/workspace.json +++ b/workspace.json @@ -553,6 +553,13 @@ "tags": ["vNext", "platform:web"], "implicitDependencies": [] }, + "@fluentui/react-jsx-runtime": { + "root": "packages/react-components/react-jsx-runtime", + "projectType": "library", + "implicitDependencies": [], + "sourceRoot": "packages/react-components/react-jsx-runtime/src", + "tags": ["vNext", "platform:web"] + }, "@fluentui/react-label": { "root": "packages/react-components/react-label", "projectType": "library", From 776b322ed2526dc3e05bdbb169405a331ac57f92 Mon Sep 17 00:00:00 2001 From: Bernardo Sunderhus Date: Thu, 6 Apr 2023 11:48:38 +0200 Subject: [PATCH 05/51] feat(react-jsx-runtime): adds runtime to create-package generator (#27465) --- .../create-package/plop-templates-react/package.json.hbs | 1 + 1 file changed, 1 insertion(+) diff --git a/scripts/generators/create-package/plop-templates-react/package.json.hbs b/scripts/generators/create-package/plop-templates-react/package.json.hbs index d6fcc92bef0fa..d905c2b226cb6 100644 --- a/scripts/generators/create-package/plop-templates-react/package.json.hbs +++ b/scripts/generators/create-package/plop-templates-react/package.json.hbs @@ -31,6 +31,7 @@ "@fluentui/scripts-tasks": "" }, "dependencies": { + "@fluentui/react-jsx-runtime": "", "@fluentui/react-theme": "", "@fluentui/react-utilities": "", "@griffel/react": "", From dea94a8242b70bbc94c4c020cbf1df8e962740cd Mon Sep 17 00:00:00 2001 From: Martin Hochel Date: Thu, 6 Apr 2023 12:35:19 +0200 Subject: [PATCH 06/51] chore: remove obsolete configs and decouple type-check from bundling in v0 `perf` app (#26421) * chore(scripts): remove obsolete configs and fix webpack perf tsconfig path * refactor(fluentui/perf): dont pollute nodejs global scope * chore(fluentui/perf): move tsc check to separat task to speed bundling --- packages/fluentui/perf/gulp/perf.ts | 18 +++++++++------- packages/fluentui/perf/gulp/shared.ts | 6 ++++++ packages/fluentui/perf/gulp/webpack.config.ts | 21 +++++-------------- packages/fluentui/perf/package.json | 3 ++- packages/fluentui/perf/src/globals.ts | 9 ++++++++ packages/fluentui/perf/src/index.tsx | 2 +- packages/fluentui/perf/tsconfig.json | 1 + packages/fluentui/perf/types.ts | 6 ------ .../gulp/src/webpack/webpack.config.e2e.ts | 8 ++----- tsconfig.base.v0.json | 1 + 10 files changed, 37 insertions(+), 38 deletions(-) create mode 100644 packages/fluentui/perf/gulp/shared.ts create mode 100644 packages/fluentui/perf/src/globals.ts diff --git a/packages/fluentui/perf/gulp/perf.ts b/packages/fluentui/perf/gulp/perf.ts index 6b4664e98bb9b..f202c43fcfbe7 100644 --- a/packages/fluentui/perf/gulp/perf.ts +++ b/packages/fluentui/perf/gulp/perf.ts @@ -1,5 +1,6 @@ import express from 'express'; -import fs from 'fs'; +import * as fs from 'fs'; +import * as path from 'path'; import type { Server } from 'http'; import { series, task } from 'gulp'; import { colors, log } from 'gulp-util'; @@ -20,7 +21,7 @@ import type { ReducedMeasures, } from '../types'; -const { paths } = config; +import { packageDist } from './shared'; const DEFAULT_RUN_TIMES = 10; let server: Server; @@ -114,6 +115,7 @@ const createMarkdownTable = (perExamplePerfMeasures: PerExamplePerfMeasures) => async function runMeasures( browser: Browser, + url: string, filter: string, mode: string, times: number, @@ -129,7 +131,7 @@ async function runMeasures( if (mode === 'new-page') { for (let i = 0; i < times; i++) { - const page = await browser.openPage(`http://${config.server_host}:${config.perf_port}`); + const page = await browser.openPage(url); const measuresFromStep = await page.executeJavaScript(codeToExecute); measures.push(measuresFromStep); @@ -138,7 +140,7 @@ async function runMeasures( await page.close(); } } else if (mode === 'same-page') { - const page = await browser.openPage(`http://${config.server_host}:${config.perf_port}`); + const page = await browser.openPage(url); // Empty run to skip slow first run await page.executeJavaScript(codeToExecute); @@ -158,7 +160,7 @@ async function runMeasures( return measures; } -task('perf:clean', () => del(paths.perfDist(), { force: true })); +task('perf:clean', () => del(packageDist, { force: true })); task('perf:build', cb => { webpackPlugin(require('./webpack.config').webpackConfig, cb); @@ -187,12 +189,12 @@ task('perf:run', async () => { let measures: ProfilerMeasureCycle[]; try { - measures = await runMeasures(browser, filter, mode, times); + measures = await runMeasures(browser, `http://${config.server_host}:${config.perf_port}`, filter, mode, times); } finally { await browser.close(); } - const resultsFile = paths.perfDist('result.json'); + const resultsFile = path.join(packageDist, 'result.json'); const perExamplePerfMeasures = sumByExample(measures); fs.writeFileSync(resultsFile, JSON.stringify(perExamplePerfMeasures, null, 2)); @@ -204,7 +206,7 @@ task('perf:run', async () => { task('perf:serve', cb => { server = express() - .use(express.static(paths.perfDist())) + .use(express.static(packageDist)) .listen(config.perf_port, config.server_host, () => { log(colors.yellow('Server running at http://%s:%d'), config.server_host, config.perf_port); cb(); diff --git a/packages/fluentui/perf/gulp/shared.ts b/packages/fluentui/perf/gulp/shared.ts new file mode 100644 index 0000000000000..ed07710100b9d --- /dev/null +++ b/packages/fluentui/perf/gulp/shared.ts @@ -0,0 +1,6 @@ +import * as path from 'path'; + +export const packageRoot = path.join(__dirname, '..'); + +export const packageDist = path.join(packageRoot, 'dist'); +export const packageSrc = path.join(packageRoot, 'src'); diff --git a/packages/fluentui/perf/gulp/webpack.config.ts b/packages/fluentui/perf/gulp/webpack.config.ts index 2a7bdce5ede26..7469e569b24ae 100644 --- a/packages/fluentui/perf/gulp/webpack.config.ts +++ b/packages/fluentui/perf/gulp/webpack.config.ts @@ -1,13 +1,12 @@ import * as path from 'path'; import CopyWebpackPlugin from 'copy-webpack-plugin'; -import ForkTsCheckerWebpackPlugin from 'fork-ts-checker-webpack-plugin'; import { argv } from 'yargs'; import webpack from 'webpack'; import { config } from '@fluentui/scripts-gulp'; import { getDefaultEnvironmentVars } from '@fluentui/scripts-monorepo'; -const { paths } = config; +import { packageDist, packageSrc, packageRoot } from './shared'; export const webpackConfig: webpack.Configuration = { name: 'client', @@ -15,11 +14,11 @@ export const webpackConfig: webpack.Configuration = { // eslint-disable-next-line no-extra-boolean-cast mode: Boolean(argv.debug) ? 'development' : 'production', entry: { - app: path.join(__dirname, '..', 'src/index'), + app: path.join(packageSrc, 'index'), }, output: { filename: `[name].js`, - path: path.join(__dirname, '..', 'dist'), + path: packageDist, pathinfo: true, publicPath: config.compiler_public_path, }, @@ -42,16 +41,11 @@ export const webpackConfig: webpack.Configuration = { }, plugins: [ new webpack.DefinePlugin(getDefaultEnvironmentVars(!argv.debug)), - new ForkTsCheckerWebpackPlugin({ - typescript: { - configFile: paths.e2e('tsconfig.json'), - }, - }), new CopyWebpackPlugin({ patterns: [ { - from: path.join(__dirname, '..', 'src/index.html'), - to: path.join(__dirname, '..', 'dist'), + from: path.join(packageRoot, 'src/index.html'), + to: packageDist, }, ], }), @@ -63,16 +57,11 @@ export const webpackConfig: webpack.Configuration = { extensions: ['.ts', '.tsx', '.js', '.json'], alias: { ...config.lernaAliases({ type: 'webpack' }), - src: paths.packageSrc('react-northstar'), // We are using React in production mode with tracing. // https://gist.github.com/bvaughn/25e6233aeb1b4f0cdb8d8366e54a3977 'react-dom$': 'react-dom/profiling', 'scheduler/tracing': 'scheduler/tracing-profiling', - - // Can be removed once Prettier will be upgraded to v2 - // https://github.com/prettier/prettier/issues/6903 - '@microsoft/typescript-etw': false, }, }, performance: { diff --git a/packages/fluentui/perf/package.json b/packages/fluentui/perf/package.json index 993d0845a6cca..8a2537feed749 100644 --- a/packages/fluentui/perf/package.json +++ b/packages/fluentui/perf/package.json @@ -23,6 +23,7 @@ "perf:test": "cross-env PERF=true gulp perf --times=100", "perf:test:debug": "cross-env PERF=true gulp perf:debug --debug", "lint": "eslint --ext .js,.ts,.tsx .", - "lint:fix": "yarn lint --fix" + "lint:fix": "yarn lint --fix", + "type-check": "tsc -p ." } } diff --git a/packages/fluentui/perf/src/globals.ts b/packages/fluentui/perf/src/globals.ts new file mode 100644 index 0000000000000..8671f56aea541 --- /dev/null +++ b/packages/fluentui/perf/src/globals.ts @@ -0,0 +1,9 @@ +import type { ProfilerMeasureCycle, ProfilerMeasure } from '../types'; + +declare global { + interface Window { + runMeasures: (filter?: string) => Promise; + } +} + +export type { ProfilerMeasureCycle, ProfilerMeasure }; diff --git a/packages/fluentui/perf/src/index.tsx b/packages/fluentui/perf/src/index.tsx index 82c400b4e192b..6cba7b0ba3170 100644 --- a/packages/fluentui/perf/src/index.tsx +++ b/packages/fluentui/perf/src/index.tsx @@ -6,7 +6,7 @@ import * as minimatch from 'minimatch'; import * as React from 'react'; import * as ReactDOM from 'react-dom'; -import { ProfilerMeasure, ProfilerMeasureCycle } from '../types'; +import type { ProfilerMeasure, ProfilerMeasureCycle } from './globals'; const mountNode = document.querySelector('#root'); const performanceExamplesContext = require.context('@fluentui/docs/src/examples/', true, /.perf.tsx$/); diff --git a/packages/fluentui/perf/tsconfig.json b/packages/fluentui/perf/tsconfig.json index 6f727b649e9da..b6b2b56975a4d 100644 --- a/packages/fluentui/perf/tsconfig.json +++ b/packages/fluentui/perf/tsconfig.json @@ -1,6 +1,7 @@ { "extends": "../../../tsconfig.base.v0.json", "compilerOptions": { + "noEmit": true, "module": "esnext", "types": ["node", "webpack-env"] }, diff --git a/packages/fluentui/perf/types.ts b/packages/fluentui/perf/types.ts index 61f0b60cfacb2..d6f6576d4f993 100644 --- a/packages/fluentui/perf/types.ts +++ b/packages/fluentui/perf/types.ts @@ -1,9 +1,3 @@ -declare global { - interface Window { - runMeasures: (filter?: string) => Promise; - } -} - export type MeasuredValues = 'actualTime' | 'renderComponentTime' | 'componentCount'; export type ProfilerMeasure = { [key in MeasuredValues]: number } & { diff --git a/scripts/gulp/src/webpack/webpack.config.e2e.ts b/scripts/gulp/src/webpack/webpack.config.e2e.ts index cd6dd42555f95..850ec70a551ad 100644 --- a/scripts/gulp/src/webpack/webpack.config.e2e.ts +++ b/scripts/gulp/src/webpack/webpack.config.e2e.ts @@ -1,9 +1,8 @@ +import { getDefaultEnvironmentVars } from '@fluentui/scripts-monorepo'; import CopyWebpackPlugin from 'copy-webpack-plugin'; import ForkTsCheckerWebpackPlugin from 'fork-ts-checker-webpack-plugin'; import webpack from 'webpack'; -import { getDefaultEnvironmentVars } from '@fluentui/scripts-monorepo'; - import config from '../config'; const { paths } = config; @@ -25,10 +24,7 @@ const webpackConfig: webpack.Configuration = { global: true, }, module: { - noParse: [ - /anchor-js/, - /prettier\/parser-typescript/, // prettier issue, should be solved after upgrade prettier to version 2 https://github.com/prettier/prettier/issues/6903 - ], + noParse: [/anchor-js/], rules: [ { test: /\.(js|ts|tsx)$/, diff --git a/tsconfig.base.v0.json b/tsconfig.base.v0.json index 28a91f73c3369..ad82302a2bfa0 100644 --- a/tsconfig.base.v0.json +++ b/tsconfig.base.v0.json @@ -15,6 +15,7 @@ "strictNullChecks": false, "noUnusedLocals": true, "forceConsistentCasingInFileNames": true, + "skipLibCheck": true, "typeRoots": ["node_modules/@types", "./typings"], "baseUrl": ".", "paths": { From e559c1b8d025801f799e0fedd8a4f04281767bfd Mon Sep 17 00:00:00 2001 From: Marcos Moura Date: Thu, 6 Apr 2023 18:51:30 +0200 Subject: [PATCH 07/51] fix: background color not following theme --- .../react-drawer/src/components/Drawer/useDrawerStyles.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/packages/react-components/react-drawer/src/components/Drawer/useDrawerStyles.ts b/packages/react-components/react-drawer/src/components/Drawer/useDrawerStyles.ts index eb0f10fe73741..10257b941a709 100644 --- a/packages/react-components/react-drawer/src/components/Drawer/useDrawerStyles.ts +++ b/packages/react-components/react-drawer/src/components/Drawer/useDrawerStyles.ts @@ -29,6 +29,7 @@ const useStyles = makeStyles({ height: 'auto', top: 0, bottom: 0, + backgroundColor: tokens.colorNeutralBackground1, }, leftDrawer: { From 798446e54b50e52d7fd76b2dbc375294e0705487 Mon Sep 17 00:00:00 2001 From: Marcos Moura Date: Thu, 6 Apr 2023 18:51:51 +0200 Subject: [PATCH 08/51] docs: add more examples of drawer --- .../Drawer/DrawerAlwaysOpen.stories.tsx | 38 ++++++++++++++++ .../Drawer/DrawerDefaultOpen.stories.tsx | 44 +++++++++++++++++++ .../stories/Drawer/index.stories.tsx | 2 + 3 files changed, 84 insertions(+) create mode 100644 packages/react-components/react-drawer/stories/Drawer/DrawerAlwaysOpen.stories.tsx create mode 100644 packages/react-components/react-drawer/stories/Drawer/DrawerDefaultOpen.stories.tsx diff --git a/packages/react-components/react-drawer/stories/Drawer/DrawerAlwaysOpen.stories.tsx b/packages/react-components/react-drawer/stories/Drawer/DrawerAlwaysOpen.stories.tsx new file mode 100644 index 0000000000000..25e4528aaff8d --- /dev/null +++ b/packages/react-components/react-drawer/stories/Drawer/DrawerAlwaysOpen.stories.tsx @@ -0,0 +1,38 @@ +import * as React from 'react'; +import { Drawer } from '@fluentui/react-drawer'; +import { makeStyles, shorthands } from '@fluentui/react-components'; + +const useStyles = makeStyles({ + root: { + ...shorthands.border('2px', 'solid', '#ccc'), + ...shorthands.overflow('hidden'), + display: 'flex', + height: '480px', + backgroundColor: '#fff', + }, + + content: { + ...shorthands.flex(1), + ...shorthands.padding('16px'), + display: 'flex', + justifyContent: 'center', + alignItems: 'flex-start', + backgroundColor: 'lightblue', + }, +}); + +export const AlwaysOpen = () => { + const styles = useStyles(); + + return ( +
+ +

Always open

+
+ +
+

This is the page content

+
+
+ ); +}; diff --git a/packages/react-components/react-drawer/stories/Drawer/DrawerDefaultOpen.stories.tsx b/packages/react-components/react-drawer/stories/Drawer/DrawerDefaultOpen.stories.tsx new file mode 100644 index 0000000000000..e591b217ac07d --- /dev/null +++ b/packages/react-components/react-drawer/stories/Drawer/DrawerDefaultOpen.stories.tsx @@ -0,0 +1,44 @@ +import * as React from 'react'; +import { Drawer } from '@fluentui/react-drawer'; +import { Button, makeStyles, shorthands } from '@fluentui/react-components'; + +const useStyles = makeStyles({ + root: { + ...shorthands.border('2px', 'solid', '#ccc'), + ...shorthands.overflow('hidden'), + display: 'flex', + height: '480px', + backgroundColor: '#fff', + }, + + content: { + ...shorthands.flex(1), + ...shorthands.padding('16px'), + display: 'flex', + justifyContent: 'center', + alignItems: 'flex-start', + }, +}); + +export const DefaultOpen = () => { + const styles = useStyles(); + + const [isOpen, setIsOpen] = React.useState(true); + + return ( +
+ setIsOpen(open)}> + +

Open by default

+
+ +
+ +
+
+ ); +}; diff --git a/packages/react-components/react-drawer/stories/Drawer/index.stories.tsx b/packages/react-components/react-drawer/stories/Drawer/index.stories.tsx index 37ae6f3312bf5..8b2289360c37c 100644 --- a/packages/react-components/react-drawer/stories/Drawer/index.stories.tsx +++ b/packages/react-components/react-drawer/stories/Drawer/index.stories.tsx @@ -7,6 +7,8 @@ export { Default } from './DrawerDefault.stories'; export { Inline } from './DrawerInline.stories'; export { Size } from './DrawerSize.stories'; export { CustomSize } from './DrawerCustomSize.stories'; +export { DefaultOpen } from './DrawerDefaultOpen.stories'; +export { AlwaysOpen } from './DrawerAlwaysOpen.stories'; export default { title: 'Preview Components/Drawer/Drawer', From 1be0ef1b7ee5164f704f3f3f8768de39ea198690 Mon Sep 17 00:00:00 2001 From: Marcos Moura Date: Thu, 6 Apr 2023 19:03:16 +0200 Subject: [PATCH 09/51] docs: create dedicated documentation for the position prop --- .../stories/Drawer/DrawerDefault.stories.tsx | 25 ++++---------- .../stories/Drawer/DrawerPosition.stories.tsx | 34 +++++++++++++++++++ .../stories/Drawer/index.stories.tsx | 1 + 3 files changed, 42 insertions(+), 18 deletions(-) create mode 100644 packages/react-components/react-drawer/stories/Drawer/DrawerPosition.stories.tsx diff --git a/packages/react-components/react-drawer/stories/Drawer/DrawerDefault.stories.tsx b/packages/react-components/react-drawer/stories/Drawer/DrawerDefault.stories.tsx index b5cc308c3f1a8..9ed625ce57115 100644 --- a/packages/react-components/react-drawer/stories/Drawer/DrawerDefault.stories.tsx +++ b/packages/react-components/react-drawer/stories/Drawer/DrawerDefault.stories.tsx @@ -3,32 +3,21 @@ import { Drawer } from '@fluentui/react-drawer'; import { Button } from '@fluentui/react-components'; export const Default = () => { - const [leftOpen, setLeftOpen] = React.useState(false); - const [rightOpen, setRightOpen] = React.useState(false); + const [isOpen, setIsOpen] = React.useState(false); return (
- setLeftOpen(open)}> - -

Left Drawer

-
- +

Drawer content

+ - - - setRightOpen(open)}> - -

Right Drawer

-
); }; diff --git a/packages/react-components/react-drawer/stories/Drawer/DrawerPosition.stories.tsx b/packages/react-components/react-drawer/stories/Drawer/DrawerPosition.stories.tsx new file mode 100644 index 0000000000000..3a9fa813114f8 --- /dev/null +++ b/packages/react-components/react-drawer/stories/Drawer/DrawerPosition.stories.tsx @@ -0,0 +1,34 @@ +import * as React from 'react'; +import { Drawer } from '@fluentui/react-drawer'; +import { Button } from '@fluentui/react-components'; + +export const Position = () => { + const [leftOpen, setLeftOpen] = React.useState(false); + const [rightOpen, setRightOpen] = React.useState(false); + + return ( +
+ setLeftOpen(open)}> + +

Left Drawer

+
+ + + + + + setRightOpen(open)}> + +

Right Drawer

+
+
+ ); +}; diff --git a/packages/react-components/react-drawer/stories/Drawer/index.stories.tsx b/packages/react-components/react-drawer/stories/Drawer/index.stories.tsx index 8b2289360c37c..345c886a0d62c 100644 --- a/packages/react-components/react-drawer/stories/Drawer/index.stories.tsx +++ b/packages/react-components/react-drawer/stories/Drawer/index.stories.tsx @@ -4,6 +4,7 @@ import bestPracticesMd from './DrawerBestPractices.md'; import previewMd from './DrawerPreview.md'; export { Default } from './DrawerDefault.stories'; +export { Position } from './DrawerPosition.stories'; export { Inline } from './DrawerInline.stories'; export { Size } from './DrawerSize.stories'; export { CustomSize } from './DrawerCustomSize.stories'; From e5dda7b4c37d9784cef0ba7cdb68d6bc41804343 Mon Sep 17 00:00:00 2001 From: Marcos Moura Date: Thu, 6 Apr 2023 19:04:49 +0200 Subject: [PATCH 10/51] fix: remove invalid size option --- .../react-drawer/stories/Drawer/DrawerSize.stories.tsx | 1 - 1 file changed, 1 deletion(-) diff --git a/packages/react-components/react-drawer/stories/Drawer/DrawerSize.stories.tsx b/packages/react-components/react-drawer/stories/Drawer/DrawerSize.stories.tsx index 9c43ea6720501..13814b41ac624 100644 --- a/packages/react-components/react-drawer/stories/Drawer/DrawerSize.stories.tsx +++ b/packages/react-components/react-drawer/stories/Drawer/DrawerSize.stories.tsx @@ -51,7 +51,6 @@ export const Size = () => { - From fe885a29eaaae84a902c66ea0af118c22358228b Mon Sep 17 00:00:00 2001 From: "Geoff Cox (Microsoft)" Date: Thu, 6 Apr 2023 11:10:43 -0700 Subject: [PATCH 11/51] Merged onClick callback in Tab (#27477) --- ...-tabs-e7f77370-547e-4ec6-acac-40a7008f2ed6.json | 7 +++++++ .../react-tabs/src/components/Tab/useTab.ts | 14 ++++++++++---- 2 files changed, 17 insertions(+), 4 deletions(-) create mode 100644 change/@fluentui-react-tabs-e7f77370-547e-4ec6-acac-40a7008f2ed6.json diff --git a/change/@fluentui-react-tabs-e7f77370-547e-4ec6-acac-40a7008f2ed6.json b/change/@fluentui-react-tabs-e7f77370-547e-4ec6-acac-40a7008f2ed6.json new file mode 100644 index 0000000000000..01596d6e11c01 --- /dev/null +++ b/change/@fluentui-react-tabs-e7f77370-547e-4ec6-acac-40a7008f2ed6.json @@ -0,0 +1,7 @@ +{ + "type": "patch", + "comment": "fix: Merged onClick callbacks in Tab", + "packageName": "@fluentui/react-tabs", + "email": "gcox@microsoft.com", + "dependentChangeType": "patch" +} diff --git a/packages/react-components/react-tabs/src/components/Tab/useTab.ts b/packages/react-components/react-tabs/src/components/Tab/useTab.ts index 8f1b98f320554..3068dfa52e0c4 100644 --- a/packages/react-components/react-tabs/src/components/Tab/useTab.ts +++ b/packages/react-components/react-tabs/src/components/Tab/useTab.ts @@ -1,5 +1,11 @@ import * as React from 'react'; -import { getNativeElementProps, resolveShorthand, useEventCallback, useMergedRefs } from '@fluentui/react-utilities'; +import { + getNativeElementProps, + mergeCallbacks, + resolveShorthand, + useEventCallback, + useMergedRefs, +} from '@fluentui/react-utilities'; import type { TabProps, TabState } from './Tab.types'; import { useTabListContext_unstable } from '../TabList/TabListContext'; import { SelectTabEvent } from '../TabList/TabList.types'; @@ -14,7 +20,7 @@ import { SelectTabEvent } from '../TabList/TabList.types'; * @param ref - reference to root HTMLElement of Tab */ export const useTab_unstable = (props: TabProps, ref: React.Ref): TabState => { - const { content, disabled: tabDisabled = false, icon, value } = props; + const { content, disabled: tabDisabled = false, icon, onClick, value } = props; const appearance = useTabListContext_unstable(ctx => ctx.appearance); const reserveSelectedTabSpace = useTabListContext_unstable(ctx => ctx.reserveSelectedTabSpace); @@ -28,7 +34,7 @@ export const useTab_unstable = (props: TabProps, ref: React.Ref): T const disabled = listDisabled || tabDisabled; const innerRef = React.useRef(null); - const onClick = useEventCallback((event: SelectTabEvent) => onSelect(event, { value })); + const onTabClick = useEventCallback(mergeCallbacks(onClick, (event: SelectTabEvent) => onSelect(event, { value }))); React.useEffect(() => { onRegister({ @@ -58,7 +64,7 @@ export const useTab_unstable = (props: TabProps, ref: React.Ref): T 'aria-selected': disabled ? undefined : `${selected}`, ...props, disabled, - onClick, + onClick: onTabClick, }), icon: iconShorthand, iconOnly: Boolean(iconShorthand?.children && !contentShorthand.children), From eee5716e76dc6a5bef9316546a352694bbe5750a Mon Sep 17 00:00:00 2001 From: Ben Howell <48106640+behowell@users.noreply.github.com> Date: Thu, 6 Apr 2023 12:56:53 -0700 Subject: [PATCH 12/51] chore: Bump react-field to beta (#27458) --- apps/perf-test-react-components/package.json | 2 +- apps/vr-tests-react-components/package.json | 2 +- ...eact-checkbox-fe3ad8e3-f1a0-4b4e-ba0d-b268b6ec3fa4.json | 7 +++++++ ...eact-combobox-3cb36c90-c714-4dbd-bfaf-7b4f7c3faaea.json | 7 +++++++ ...ct-components-3b6d9ef5-a02f-449f-92de-055cb6c9bb7b.json | 7 +++++++ ...i-react-field-73595ff6-5dc9-4ca2-b6f1-f4d41c54e76d.json | 7 +++++++ ...i-react-input-e2ec96b6-faeb-445e-b279-4d62b8caf2f0.json | 7 +++++++ ...eact-progress-0ec5d775-02d1-42a2-845d-7afc5bbaf4ff.json | 7 +++++++ ...i-react-radio-d2047407-8c63-41d9-801c-497393d8505b.json | 7 +++++++ ...-react-select-5a1ba613-14bb-44bf-9c07-4ace04f79c4a.json | 7 +++++++ ...eact-skeleton-648ff7dc-d4db-42ea-9c18-3c0c03691c13.json | 7 +++++++ ...-react-slider-7cbf75c0-04ac-4b34-a49d-3d427f769ce8.json | 7 +++++++ ...ct-spinbutton-14be635e-f886-4b19-9ed2-6688c48711be.json | 7 +++++++ ...-react-switch-fb84b5ad-f9a3-433b-b571-6a8a6437b916.json | 7 +++++++ ...eact-textarea-32917679-c767-4e69-9733-16279ddb4063.json | 7 +++++++ packages/react-components/react-checkbox/package.json | 2 +- packages/react-components/react-combobox/package.json | 2 +- packages/react-components/react-components/package.json | 2 +- .../react-components/react-datepicker-compat/package.json | 2 +- packages/react-components/react-field/package.json | 2 +- packages/react-components/react-input/package.json | 2 +- packages/react-components/react-progress/package.json | 2 +- packages/react-components/react-radio/package.json | 2 +- packages/react-components/react-select/package.json | 2 +- packages/react-components/react-skeleton/package.json | 2 +- packages/react-components/react-slider/package.json | 2 +- packages/react-components/react-spinbutton/package.json | 2 +- packages/react-components/react-switch/package.json | 2 +- packages/react-components/react-textarea/package.json | 2 +- 29 files changed, 107 insertions(+), 16 deletions(-) create mode 100644 change/@fluentui-react-checkbox-fe3ad8e3-f1a0-4b4e-ba0d-b268b6ec3fa4.json create mode 100644 change/@fluentui-react-combobox-3cb36c90-c714-4dbd-bfaf-7b4f7c3faaea.json create mode 100644 change/@fluentui-react-components-3b6d9ef5-a02f-449f-92de-055cb6c9bb7b.json create mode 100644 change/@fluentui-react-field-73595ff6-5dc9-4ca2-b6f1-f4d41c54e76d.json create mode 100644 change/@fluentui-react-input-e2ec96b6-faeb-445e-b279-4d62b8caf2f0.json create mode 100644 change/@fluentui-react-progress-0ec5d775-02d1-42a2-845d-7afc5bbaf4ff.json create mode 100644 change/@fluentui-react-radio-d2047407-8c63-41d9-801c-497393d8505b.json create mode 100644 change/@fluentui-react-select-5a1ba613-14bb-44bf-9c07-4ace04f79c4a.json create mode 100644 change/@fluentui-react-skeleton-648ff7dc-d4db-42ea-9c18-3c0c03691c13.json create mode 100644 change/@fluentui-react-slider-7cbf75c0-04ac-4b34-a49d-3d427f769ce8.json create mode 100644 change/@fluentui-react-spinbutton-14be635e-f886-4b19-9ed2-6688c48711be.json create mode 100644 change/@fluentui-react-switch-fb84b5ad-f9a3-433b-b571-6a8a6437b916.json create mode 100644 change/@fluentui-react-textarea-32917679-c767-4e69-9733-16279ddb4063.json diff --git a/apps/perf-test-react-components/package.json b/apps/perf-test-react-components/package.json index 619967baa2ab6..bf1922a494b66 100644 --- a/apps/perf-test-react-components/package.json +++ b/apps/perf-test-react-components/package.json @@ -22,7 +22,7 @@ "@griffel/core": "^1.9.0", "@fluentui/react-avatar": "^9.4.7", "@fluentui/react-button": "^9.3.7", - "@fluentui/react-field": "9.0.0-alpha.29", + "@fluentui/react-field": "9.0.0-beta.0", "@fluentui/react-infobutton": "9.0.0-beta.25", "@fluentui/react-persona": "^9.2.6", "@fluentui/react-provider": "^9.5.1", diff --git a/apps/vr-tests-react-components/package.json b/apps/vr-tests-react-components/package.json index 006b5bdd744dd..d97bbab3203c1 100644 --- a/apps/vr-tests-react-components/package.json +++ b/apps/vr-tests-react-components/package.json @@ -30,7 +30,7 @@ "@fluentui/react-datepicker-compat": "0.0.0-alpha.0", "@fluentui/react-dialog": "^9.4.3", "@fluentui/react-divider": "^9.2.7", - "@fluentui/react-field": "9.0.0-alpha.29", + "@fluentui/react-field": "9.0.0-beta.0", "@fluentui/react-icons": "^2.0.196", "@fluentui/react-image": "^9.1.4", "@fluentui/react-infobutton": "9.0.0-beta.25", diff --git a/change/@fluentui-react-checkbox-fe3ad8e3-f1a0-4b4e-ba0d-b268b6ec3fa4.json b/change/@fluentui-react-checkbox-fe3ad8e3-f1a0-4b4e-ba0d-b268b6ec3fa4.json new file mode 100644 index 0000000000000..d9c0a1aa9f138 --- /dev/null +++ b/change/@fluentui-react-checkbox-fe3ad8e3-f1a0-4b4e-ba0d-b268b6ec3fa4.json @@ -0,0 +1,7 @@ +{ + "type": "patch", + "comment": "chore: Update package version of react-field", + "packageName": "@fluentui/react-checkbox", + "email": "behowell@microsoft.com", + "dependentChangeType": "patch" +} diff --git a/change/@fluentui-react-combobox-3cb36c90-c714-4dbd-bfaf-7b4f7c3faaea.json b/change/@fluentui-react-combobox-3cb36c90-c714-4dbd-bfaf-7b4f7c3faaea.json new file mode 100644 index 0000000000000..a0c727657654d --- /dev/null +++ b/change/@fluentui-react-combobox-3cb36c90-c714-4dbd-bfaf-7b4f7c3faaea.json @@ -0,0 +1,7 @@ +{ + "type": "patch", + "comment": "chore: Update package version of react-field", + "packageName": "@fluentui/react-combobox", + "email": "behowell@microsoft.com", + "dependentChangeType": "patch" +} diff --git a/change/@fluentui-react-components-3b6d9ef5-a02f-449f-92de-055cb6c9bb7b.json b/change/@fluentui-react-components-3b6d9ef5-a02f-449f-92de-055cb6c9bb7b.json new file mode 100644 index 0000000000000..1cabdf4c514a1 --- /dev/null +++ b/change/@fluentui-react-components-3b6d9ef5-a02f-449f-92de-055cb6c9bb7b.json @@ -0,0 +1,7 @@ +{ + "type": "patch", + "comment": "chore: Update package version of react-field", + "packageName": "@fluentui/react-components", + "email": "behowell@microsoft.com", + "dependentChangeType": "patch" +} diff --git a/change/@fluentui-react-field-73595ff6-5dc9-4ca2-b6f1-f4d41c54e76d.json b/change/@fluentui-react-field-73595ff6-5dc9-4ca2-b6f1-f4d41c54e76d.json new file mode 100644 index 0000000000000..d8ff269c28996 --- /dev/null +++ b/change/@fluentui-react-field-73595ff6-5dc9-4ca2-b6f1-f4d41c54e76d.json @@ -0,0 +1,7 @@ +{ + "type": "prerelease", + "comment": "chore: Bump react-field version to beta", + "packageName": "@fluentui/react-field", + "email": "behowell@microsoft.com", + "dependentChangeType": "patch" +} diff --git a/change/@fluentui-react-input-e2ec96b6-faeb-445e-b279-4d62b8caf2f0.json b/change/@fluentui-react-input-e2ec96b6-faeb-445e-b279-4d62b8caf2f0.json new file mode 100644 index 0000000000000..3d5f1a69cacf1 --- /dev/null +++ b/change/@fluentui-react-input-e2ec96b6-faeb-445e-b279-4d62b8caf2f0.json @@ -0,0 +1,7 @@ +{ + "type": "patch", + "comment": "chore: Update package version of react-field", + "packageName": "@fluentui/react-input", + "email": "behowell@microsoft.com", + "dependentChangeType": "patch" +} diff --git a/change/@fluentui-react-progress-0ec5d775-02d1-42a2-845d-7afc5bbaf4ff.json b/change/@fluentui-react-progress-0ec5d775-02d1-42a2-845d-7afc5bbaf4ff.json new file mode 100644 index 0000000000000..3df5fec25ffe5 --- /dev/null +++ b/change/@fluentui-react-progress-0ec5d775-02d1-42a2-845d-7afc5bbaf4ff.json @@ -0,0 +1,7 @@ +{ + "type": "patch", + "comment": "chore: Update package version of react-field", + "packageName": "@fluentui/react-progress", + "email": "behowell@microsoft.com", + "dependentChangeType": "patch" +} diff --git a/change/@fluentui-react-radio-d2047407-8c63-41d9-801c-497393d8505b.json b/change/@fluentui-react-radio-d2047407-8c63-41d9-801c-497393d8505b.json new file mode 100644 index 0000000000000..b679b66aa74b1 --- /dev/null +++ b/change/@fluentui-react-radio-d2047407-8c63-41d9-801c-497393d8505b.json @@ -0,0 +1,7 @@ +{ + "type": "patch", + "comment": "chore: Update package version of react-field", + "packageName": "@fluentui/react-radio", + "email": "behowell@microsoft.com", + "dependentChangeType": "patch" +} diff --git a/change/@fluentui-react-select-5a1ba613-14bb-44bf-9c07-4ace04f79c4a.json b/change/@fluentui-react-select-5a1ba613-14bb-44bf-9c07-4ace04f79c4a.json new file mode 100644 index 0000000000000..5187f91ab7b79 --- /dev/null +++ b/change/@fluentui-react-select-5a1ba613-14bb-44bf-9c07-4ace04f79c4a.json @@ -0,0 +1,7 @@ +{ + "type": "patch", + "comment": "chore: Update package version of react-field", + "packageName": "@fluentui/react-select", + "email": "behowell@microsoft.com", + "dependentChangeType": "patch" +} diff --git a/change/@fluentui-react-skeleton-648ff7dc-d4db-42ea-9c18-3c0c03691c13.json b/change/@fluentui-react-skeleton-648ff7dc-d4db-42ea-9c18-3c0c03691c13.json new file mode 100644 index 0000000000000..6cddd30fbe8a7 --- /dev/null +++ b/change/@fluentui-react-skeleton-648ff7dc-d4db-42ea-9c18-3c0c03691c13.json @@ -0,0 +1,7 @@ +{ + "type": "prerelease", + "comment": "chore: Update package version of react-field", + "packageName": "@fluentui/react-skeleton", + "email": "behowell@microsoft.com", + "dependentChangeType": "patch" +} diff --git a/change/@fluentui-react-slider-7cbf75c0-04ac-4b34-a49d-3d427f769ce8.json b/change/@fluentui-react-slider-7cbf75c0-04ac-4b34-a49d-3d427f769ce8.json new file mode 100644 index 0000000000000..a0d7f2d722f0b --- /dev/null +++ b/change/@fluentui-react-slider-7cbf75c0-04ac-4b34-a49d-3d427f769ce8.json @@ -0,0 +1,7 @@ +{ + "type": "patch", + "comment": "chore: Update package version of react-field", + "packageName": "@fluentui/react-slider", + "email": "behowell@microsoft.com", + "dependentChangeType": "patch" +} diff --git a/change/@fluentui-react-spinbutton-14be635e-f886-4b19-9ed2-6688c48711be.json b/change/@fluentui-react-spinbutton-14be635e-f886-4b19-9ed2-6688c48711be.json new file mode 100644 index 0000000000000..9931868fc043a --- /dev/null +++ b/change/@fluentui-react-spinbutton-14be635e-f886-4b19-9ed2-6688c48711be.json @@ -0,0 +1,7 @@ +{ + "type": "patch", + "comment": "chore: Update package version of react-field", + "packageName": "@fluentui/react-spinbutton", + "email": "behowell@microsoft.com", + "dependentChangeType": "patch" +} diff --git a/change/@fluentui-react-switch-fb84b5ad-f9a3-433b-b571-6a8a6437b916.json b/change/@fluentui-react-switch-fb84b5ad-f9a3-433b-b571-6a8a6437b916.json new file mode 100644 index 0000000000000..64c27d88db27d --- /dev/null +++ b/change/@fluentui-react-switch-fb84b5ad-f9a3-433b-b571-6a8a6437b916.json @@ -0,0 +1,7 @@ +{ + "type": "patch", + "comment": "chore: Update package version of react-field", + "packageName": "@fluentui/react-switch", + "email": "behowell@microsoft.com", + "dependentChangeType": "patch" +} diff --git a/change/@fluentui-react-textarea-32917679-c767-4e69-9733-16279ddb4063.json b/change/@fluentui-react-textarea-32917679-c767-4e69-9733-16279ddb4063.json new file mode 100644 index 0000000000000..40a10c4bf0c8d --- /dev/null +++ b/change/@fluentui-react-textarea-32917679-c767-4e69-9733-16279ddb4063.json @@ -0,0 +1,7 @@ +{ + "type": "patch", + "comment": "chore: Update package version of react-field", + "packageName": "@fluentui/react-textarea", + "email": "behowell@microsoft.com", + "dependentChangeType": "patch" +} diff --git a/packages/react-components/react-checkbox/package.json b/packages/react-components/react-checkbox/package.json index 9262148af3add..597612f66fd2b 100644 --- a/packages/react-components/react-checkbox/package.json +++ b/packages/react-components/react-checkbox/package.json @@ -32,7 +32,7 @@ "@fluentui/scripts-tasks": "*" }, "dependencies": { - "@fluentui/react-field": "9.0.0-alpha.29", + "@fluentui/react-field": "9.0.0-beta.0", "@fluentui/react-icons": "^2.0.196", "@fluentui/react-label": "^9.1.7", "@fluentui/react-shared-contexts": "^9.3.3", diff --git a/packages/react-components/react-combobox/package.json b/packages/react-components/react-combobox/package.json index ae57e2ebfca27..af613c384d470 100644 --- a/packages/react-components/react-combobox/package.json +++ b/packages/react-components/react-combobox/package.json @@ -34,7 +34,7 @@ "dependencies": { "@fluentui/keyboard-keys": "^9.0.2", "@fluentui/react-context-selector": "^9.1.16", - "@fluentui/react-field": "9.0.0-alpha.29", + "@fluentui/react-field": "9.0.0-beta.0", "@fluentui/react-icons": "^2.0.196", "@fluentui/react-portal": "^9.2.4", "@fluentui/react-positioning": "^9.5.8", diff --git a/packages/react-components/react-components/package.json b/packages/react-components/react-components/package.json index 7f92a2892601b..c470d98b3e9e7 100644 --- a/packages/react-components/react-components/package.json +++ b/packages/react-components/react-components/package.json @@ -41,7 +41,7 @@ "@fluentui/react-combobox": "^9.2.7", "@fluentui/react-dialog": "^9.4.3", "@fluentui/react-divider": "^9.2.7", - "@fluentui/react-field": "9.0.0-alpha.29", + "@fluentui/react-field": "9.0.0-beta.0", "@fluentui/react-image": "^9.1.4", "@fluentui/react-infobutton": "9.0.0-beta.25", "@fluentui/react-input": "^9.4.7", diff --git a/packages/react-components/react-datepicker-compat/package.json b/packages/react-components/react-datepicker-compat/package.json index 43a34d26a0b81..4d3ca65b93897 100644 --- a/packages/react-components/react-datepicker-compat/package.json +++ b/packages/react-components/react-datepicker-compat/package.json @@ -38,7 +38,7 @@ "@fluentui/react-theme": "^9.1.7", "@fluentui/react-utilities": "^9.7.3", "@fluentui/keyboard-keys": "^9.0.2", - "@fluentui/react-field": "9.0.0-alpha.29", + "@fluentui/react-field": "9.0.0-beta.0", "@fluentui/react-icons": "^2.0.196", "@fluentui/react-shared-contexts": "^9.3.3", "@fluentui/react-tabster": "^9.6.3", diff --git a/packages/react-components/react-field/package.json b/packages/react-components/react-field/package.json index 099938a08e2be..64ebaf029d4ec 100644 --- a/packages/react-components/react-field/package.json +++ b/packages/react-components/react-field/package.json @@ -1,6 +1,6 @@ { "name": "@fluentui/react-field", - "version": "9.0.0-alpha.29", + "version": "9.0.0-beta.0", "description": "Fluent UI Field components", "main": "lib-commonjs/index.js", "module": "lib/index.js", diff --git a/packages/react-components/react-input/package.json b/packages/react-components/react-input/package.json index 968d1021dcd17..cc7be4e8bbf68 100644 --- a/packages/react-components/react-input/package.json +++ b/packages/react-components/react-input/package.json @@ -33,7 +33,7 @@ "@fluentui/scripts-tasks": "*" }, "dependencies": { - "@fluentui/react-field": "9.0.0-alpha.29", + "@fluentui/react-field": "9.0.0-beta.0", "@fluentui/react-shared-contexts": "^9.3.3", "@fluentui/react-theme": "^9.1.7", "@fluentui/react-utilities": "^9.7.3", diff --git a/packages/react-components/react-progress/package.json b/packages/react-components/react-progress/package.json index fb6c7233ddae4..c7c34f3c2ea79 100644 --- a/packages/react-components/react-progress/package.json +++ b/packages/react-components/react-progress/package.json @@ -32,7 +32,7 @@ "@fluentui/scripts-tasks": "*" }, "dependencies": { - "@fluentui/react-field": "9.0.0-alpha.29", + "@fluentui/react-field": "9.0.0-beta.0", "@fluentui/react-shared-contexts": "^9.3.3", "@fluentui/react-theme": "^9.1.7", "@fluentui/react-utilities": "^9.7.3", diff --git a/packages/react-components/react-radio/package.json b/packages/react-components/react-radio/package.json index 4ba8b783faeaa..cc5dc7b834a30 100644 --- a/packages/react-components/react-radio/package.json +++ b/packages/react-components/react-radio/package.json @@ -33,7 +33,7 @@ }, "dependencies": { "@fluentui/react-context-selector": "^9.1.16", - "@fluentui/react-field": "9.0.0-alpha.29", + "@fluentui/react-field": "9.0.0-beta.0", "@fluentui/react-icons": "^2.0.196", "@fluentui/react-label": "^9.1.7", "@fluentui/react-shared-contexts": "^9.3.3", diff --git a/packages/react-components/react-select/package.json b/packages/react-components/react-select/package.json index 8f05b34ee6e20..0834329204c2f 100644 --- a/packages/react-components/react-select/package.json +++ b/packages/react-components/react-select/package.json @@ -32,7 +32,7 @@ "@fluentui/scripts-tasks": "*" }, "dependencies": { - "@fluentui/react-field": "9.0.0-alpha.29", + "@fluentui/react-field": "9.0.0-beta.0", "@fluentui/react-icons": "^2.0.196", "@fluentui/react-shared-contexts": "^9.3.3", "@fluentui/react-theme": "^9.1.7", diff --git a/packages/react-components/react-skeleton/package.json b/packages/react-components/react-skeleton/package.json index ec50f8fbcc039..bc9586d1c725d 100644 --- a/packages/react-components/react-skeleton/package.json +++ b/packages/react-components/react-skeleton/package.json @@ -31,7 +31,7 @@ "@fluentui/scripts-tasks": "*" }, "dependencies": { - "@fluentui/react-field": "9.0.0-alpha.29", + "@fluentui/react-field": "9.0.0-beta.0", "@fluentui/react-shared-contexts": "^9.3.3", "@fluentui/react-theme": "^9.1.7", "@fluentui/react-utilities": "^9.7.3", diff --git a/packages/react-components/react-slider/package.json b/packages/react-components/react-slider/package.json index 5f9088585b4b2..bd53205b1e09c 100644 --- a/packages/react-components/react-slider/package.json +++ b/packages/react-components/react-slider/package.json @@ -34,7 +34,7 @@ }, "dependencies": { "@griffel/react": "^1.5.2", - "@fluentui/react-field": "9.0.0-alpha.29", + "@fluentui/react-field": "9.0.0-beta.0", "@fluentui/react-shared-contexts": "^9.3.3", "@fluentui/react-tabster": "^9.6.3", "@fluentui/react-theme": "^9.1.7", diff --git a/packages/react-components/react-spinbutton/package.json b/packages/react-components/react-spinbutton/package.json index bced745109c95..fae8f7818406d 100644 --- a/packages/react-components/react-spinbutton/package.json +++ b/packages/react-components/react-spinbutton/package.json @@ -35,7 +35,7 @@ "dependencies": { "@griffel/react": "^1.5.2", "@fluentui/keyboard-keys": "^9.0.2", - "@fluentui/react-field": "9.0.0-alpha.29", + "@fluentui/react-field": "9.0.0-beta.0", "@fluentui/react-icons": "^2.0.196", "@fluentui/react-shared-contexts": "^9.3.3", "@fluentui/react-theme": "^9.1.7", diff --git a/packages/react-components/react-switch/package.json b/packages/react-components/react-switch/package.json index c3976e3531553..e0c826cd056f7 100644 --- a/packages/react-components/react-switch/package.json +++ b/packages/react-components/react-switch/package.json @@ -32,7 +32,7 @@ "@fluentui/scripts-tasks": "*" }, "dependencies": { - "@fluentui/react-field": "9.0.0-alpha.29", + "@fluentui/react-field": "9.0.0-beta.0", "@fluentui/react-icons": "^2.0.196", "@fluentui/react-label": "^9.1.7", "@fluentui/react-shared-contexts": "^9.3.3", diff --git a/packages/react-components/react-textarea/package.json b/packages/react-components/react-textarea/package.json index 3342aad5e7346..10dd83ff940eb 100644 --- a/packages/react-components/react-textarea/package.json +++ b/packages/react-components/react-textarea/package.json @@ -32,7 +32,7 @@ "@fluentui/scripts-tasks": "*" }, "dependencies": { - "@fluentui/react-field": "9.0.0-alpha.29", + "@fluentui/react-field": "9.0.0-beta.0", "@fluentui/react-shared-contexts": "^9.3.3", "@fluentui/react-theme": "^9.1.7", "@fluentui/react-utilities": "^9.7.3", From 4f7b946067bda04d92953cf5e9ed90059a98a8fb Mon Sep 17 00:00:00 2001 From: Karan Kakroo Date: Thu, 6 Apr 2023 23:39:21 +0100 Subject: [PATCH 13/51] SpinButton: updated base resetstyle for input of spin button (#27421) * updated style for input of spin button * yarn change update * added vr test for custom width provided by consumer --------- Co-authored-by: Sean Monahan --- .../src/stories/SpinButton.stories.tsx | 18 +++++++++++++++++- ...n-07f32e82-c12b-4728-bf74-cf2085373fbd.json | 7 +++++++ .../SpinButton/useSpinButtonStyles.ts | 1 + 3 files changed, 25 insertions(+), 1 deletion(-) create mode 100644 change/@fluentui-react-spinbutton-07f32e82-c12b-4728-bf74-cf2085373fbd.json diff --git a/apps/vr-tests-react-components/src/stories/SpinButton.stories.tsx b/apps/vr-tests-react-components/src/stories/SpinButton.stories.tsx index d911ba558dbc3..b1cc9feec01f2 100644 --- a/apps/vr-tests-react-components/src/stories/SpinButton.stories.tsx +++ b/apps/vr-tests-react-components/src/stories/SpinButton.stories.tsx @@ -4,6 +4,7 @@ import { storiesOf } from '@storybook/react'; import { SpinButton, spinButtonClassNames } from '@fluentui/react-spinbutton'; import { TestWrapperDecoratorFixedWidth } from '../utilities/TestWrapperDecorator'; import { FluentProvider } from '@fluentui/react-provider'; +import { makeStyles } from '@griffel/react'; const cropTo = '.testWrapper'; @@ -181,4 +182,19 @@ storiesOf('SpinButton Converged', module) - )); + )) + .addStory( + 'Custom Width', + () => { + const useStyles = makeStyles({ + customWidth: { width: '50px' }, + }); + const classes = useStyles(); + return ; + }, + { + includeRtl: true, + includeHighContrast: true, + includeDarkMode: true, + }, + ); diff --git a/change/@fluentui-react-spinbutton-07f32e82-c12b-4728-bf74-cf2085373fbd.json b/change/@fluentui-react-spinbutton-07f32e82-c12b-4728-bf74-cf2085373fbd.json new file mode 100644 index 0000000000000..c62f6442059f4 --- /dev/null +++ b/change/@fluentui-react-spinbutton-07f32e82-c12b-4728-bf74-cf2085373fbd.json @@ -0,0 +1,7 @@ +{ + "type": "patch", + "comment": "added width 100% to input of spin button", + "packageName": "@fluentui/react-spinbutton", + "email": "kakrookaran@gmail.com", + "dependentChangeType": "patch" +} diff --git a/packages/react-components/react-spinbutton/src/components/SpinButton/useSpinButtonStyles.ts b/packages/react-components/react-spinbutton/src/components/SpinButton/useSpinButtonStyles.ts index 65dbfa2901c30..6c3239d348325 100644 --- a/packages/react-components/react-spinbutton/src/components/SpinButton/useSpinButtonStyles.ts +++ b/packages/react-components/react-spinbutton/src/components/SpinButton/useSpinButtonStyles.ts @@ -223,6 +223,7 @@ const useInputClassName = makeResetStyles({ fontSize: 'inherit', fontWeight: 'inherit', lineHeight: 'inherit', + width: '100%', '::placeholder': { color: tokens.colorNeutralForeground4, From 7a46cab3d31a233b89b7188e994b24712af5393c Mon Sep 17 00:00:00 2001 From: Sean Monahan Date: Thu, 6 Apr 2023 16:20:22 -0700 Subject: [PATCH 14/51] fix: GroupedListV2 properly collapsed groups (#27420) * fix: GroupedListV2 properly collapsed groups When using the "toggle collapse all" feature all groups are correctly toggled (either collapsed or expanded depending on state). * fix test errors --- ...-4f3932ed-9bb5-4652-a084-dcbc18f898e2.json | 7 ++ .../GroupedList/GroupedListV2.base.tsx | 2 +- .../GroupedList/GroupedListV2.test.tsx | 76 ++++++++++++++++++- 3 files changed, 83 insertions(+), 2 deletions(-) create mode 100644 change/@fluentui-react-4f3932ed-9bb5-4652-a084-dcbc18f898e2.json diff --git a/change/@fluentui-react-4f3932ed-9bb5-4652-a084-dcbc18f898e2.json b/change/@fluentui-react-4f3932ed-9bb5-4652-a084-dcbc18f898e2.json new file mode 100644 index 0000000000000..0e3289e510c86 --- /dev/null +++ b/change/@fluentui-react-4f3932ed-9bb5-4652-a084-dcbc18f898e2.json @@ -0,0 +1,7 @@ +{ + "type": "patch", + "comment": "fix: GroupedListV2 properly toggles groups", + "packageName": "@fluentui/react", + "email": "seanmonahan@microsoft.com", + "dependentChangeType": "patch" +} diff --git a/packages/react/src/components/GroupedList/GroupedListV2.base.tsx b/packages/react/src/components/GroupedList/GroupedListV2.base.tsx index ed1335ace174f..b8aced4ed7eca 100644 --- a/packages/react/src/components/GroupedList/GroupedListV2.base.tsx +++ b/packages/react/src/components/GroupedList/GroupedListV2.base.tsx @@ -308,7 +308,7 @@ export const GroupedListV2FC: React.FC = props => { const listView = React.useMemo(() => { return flattenItems(groups, items, flatList.current, groupProps?.getGroupItemLimit); // eslint-disable-next-line react-hooks/exhaustive-deps - }, [groups, groupProps?.getGroupItemLimit, items, toggleVersion, flatList]); + }, [groups, groupProps?.getGroupItemLimit, items, toggleVersion, flatList, groupExpandedVersion]); const getPageSpecification = React.useCallback( (flattenedIndex: number): { key?: string } => { diff --git a/packages/react/src/components/GroupedList/GroupedListV2.test.tsx b/packages/react/src/components/GroupedList/GroupedListV2.test.tsx index 3b98bc292e377..d3f5e9ccfc554 100644 --- a/packages/react/src/components/GroupedList/GroupedListV2.test.tsx +++ b/packages/react/src/components/GroupedList/GroupedListV2.test.tsx @@ -10,7 +10,7 @@ import { GroupHeader } from './GroupHeader'; import { getTheme } from '../../Styling'; import * as path from 'path'; import { isConformant } from '../../common/isConformant'; -import type { IGroup } from './GroupedList.types'; +import type { IGroup, IGroupedList } from './GroupedList.types'; import type { IColumn } from '../DetailsList/DetailsList.types'; describe('GroupedListV2', () => { @@ -337,4 +337,78 @@ describe('GroupedListV2', () => { wrapper.setProps({ items: initialItems }); expect(wrapper.contains(
)).toEqual(true); }); + + it('toggles all groups when `toggleCollapseAll` is called', () => { + const _selection = new Selection(); + const _items: Array<{ key: string }> = [{ key: '1' }, { key: '2' }, { key: '3' }]; + const _groups: Array = [ + { + count: 0, + hasMoreData: true, + isCollapsed: false, + key: 'group0', + name: 'group 0', + startIndex: 0, + level: 0, + children: [ + { + count: 3, + hasMoreData: true, + isCollapsed: false, + key: 'subgroup0', + name: 'subgroup 0', + startIndex: 0, + level: 1, + children: [], + }, + ], + }, + ]; + + function _onRenderCell(nestingDepth: number, item: any, itemIndex: number): JSX.Element { + return ( + { + return { + key: value, + name: value, + fieldName: value, + minWidth: 300, + }; + })} + groupNestingDepth={nestingDepth} + item={item} + itemIndex={itemIndex} + selection={_selection} + selectionMode={SelectionMode.multiple} + /> + ); + } + + const ref = React.createRef(); + + const wrapper = mount( + , + ); + + expect(wrapper.find(DetailsRow)).toHaveLength(3); + + ref.current?.toggleCollapseAll(true); + wrapper.update(); + expect(wrapper.find(DetailsRow)).toHaveLength(0); + + ref.current?.toggleCollapseAll(false); + wrapper.update(); + expect(wrapper.find(DetailsRow)).toHaveLength(3); + + wrapper.unmount(); + }); }); From 336f91dc2ffd1e85880e1b12187d5ac1bf500f6d Mon Sep 17 00:00:00 2001 From: Fluent UI Build Date: Fri, 7 Apr 2023 00:01:52 +0000 Subject: [PATCH 15/51] applying package updates --- apps/perf-test-react-components/package.json | 4 +- apps/public-docsite-v9/package.json | 4 +- apps/react-18-tests-v9/package.json | 2 +- apps/recipes-react-components/package.json | 2 +- apps/ssr-tests-v9/package.json | 2 +- apps/stress-test/package.json | 2 +- .../package.json | 2 +- apps/vr-tests-react-components/package.json | 32 +-- ...-7491f15b-367b-482c-9bfc-aa897546d57f.json | 7 - ...-fe3ad8e3-f1a0-4b4e-ba0d-b268b6ec3fa4.json | 7 - ...-3cb36c90-c714-4dbd-bfaf-7b4f7c3faaea.json | 7 - ...-95bf9a08-b64f-4a05-81ac-4debdb1a6662.json | 7 - ...-3b6d9ef5-a02f-449f-92de-055cb6c9bb7b.json | 7 - ...-903a28f2-111a-4bce-bb47-396da6422862.json | 7 - ...-4ec18194-91df-4b16-9fdd-3f79ba3bc6a0.json | 7 - ...-2c40a846-0df9-4d61-9472-ec59670b77a2.json | 7 - ...-73595ff6-5dc9-4ca2-b6f1-f4d41c54e76d.json | 7 - ...-b5935497-9fbb-4d7f-ba38-e498bba5acd2.json | 7 - ...-e2ec96b6-faeb-445e-b279-4d62b8caf2f0.json | 7 - ...-f482108b-7c52-491d-9d83-56b720095442.json | 7 - ...-0ec5d775-02d1-42a2-845d-7afc5bbaf4ff.json | 7 - ...-97ad2a19-e138-4e89-b753-89b83e0b42d7.json | 7 - ...-b2e01e06-ab25-451c-af2b-8f7a04175bde.json | 7 - ...-d2047407-8c63-41d9-801c-497393d8505b.json | 7 - ...-1136d423-6f0b-422f-a1e1-c90accc1dccb.json | 7 - ...-5a1ba613-14bb-44bf-9c07-4ace04f79c4a.json | 7 - ...-648ff7dc-d4db-42ea-9c18-3c0c03691c13.json | 7 - ...-7cbf75c0-04ac-4b34-a49d-3d427f769ce8.json | 7 - ...-bc337120-f0bf-4b83-bbdd-93ce62b6216e.json | 7 - ...-07f32e82-c12b-4728-bf74-cf2085373fbd.json | 7 - ...-14be635e-f886-4b19-9ed2-6688c48711be.json | 7 - ...-184fd4ef-de9a-4395-858e-45b5dda2e51a.json | 7 - ...-3d5f6b94-a231-42e7-8dd0-72a9f4756362.json | 7 - ...-fb84b5ad-f9a3-433b-b571-6a8a6437b916.json | 7 - ...-e7f77370-547e-4ec6-acac-40a7008f2ed6.json | 7 - ...-32917679-c767-4e69-9733-16279ddb4063.json | 7 - ...-6e6be83f-e5ec-4a39-86b5-296f450658c2.json | 7 - .../react-checkbox/CHANGELOG.json | 27 +++ .../react-checkbox/CHANGELOG.md | 13 +- .../react-checkbox/package.json | 4 +- .../react-combobox/CHANGELOG.json | 27 +++ .../react-combobox/CHANGELOG.md | 13 +- .../react-combobox/package.json | 4 +- .../react-components/CHANGELOG.json | 187 ++++++++++++++++++ .../react-components/CHANGELOG.md | 61 +++++- .../react-components/package.json | 34 ++-- .../CHANGELOG.json | 21 ++ .../react-data-grid-react-window/CHANGELOG.md | 12 +- .../react-data-grid-react-window/package.json | 6 +- .../react-datepicker-compat/package.json | 4 +- .../react-dialog/CHANGELOG.json | 15 ++ .../react-dialog/CHANGELOG.md | 11 +- .../react-dialog/package.json | 2 +- .../react-field/CHANGELOG.json | 21 ++ .../react-components/react-field/CHANGELOG.md | 12 +- .../react-components/react-field/package.json | 2 +- .../react-input/CHANGELOG.json | 27 +++ .../react-components/react-input/CHANGELOG.md | 13 +- .../react-components/react-input/package.json | 4 +- .../react-migration-v0-v9/package.json | 2 +- .../react-migration-v8-v9/CHANGELOG.json | 15 ++ .../react-migration-v8-v9/CHANGELOG.md | 11 +- .../react-migration-v8-v9/package.json | 4 +- .../react-portal-compat/CHANGELOG.json | 21 ++ .../react-portal-compat/CHANGELOG.md | 12 +- .../react-portal-compat/package.json | 6 +- .../react-progress/CHANGELOG.json | 27 +++ .../react-progress/CHANGELOG.md | 13 +- .../react-progress/package.json | 4 +- .../react-radio/CHANGELOG.json | 27 +++ .../react-components/react-radio/CHANGELOG.md | 13 +- .../react-components/react-radio/package.json | 4 +- .../react-select/CHANGELOG.json | 27 +++ .../react-select/CHANGELOG.md | 13 +- .../react-select/package.json | 4 +- .../react-skeleton/CHANGELOG.json | 21 ++ .../react-skeleton/CHANGELOG.md | 12 +- .../react-skeleton/package.json | 4 +- .../react-slider/CHANGELOG.json | 27 +++ .../react-slider/CHANGELOG.md | 13 +- .../react-slider/package.json | 4 +- .../react-spinbutton/CHANGELOG.json | 33 ++++ .../react-spinbutton/CHANGELOG.md | 14 +- .../react-spinbutton/package.json | 4 +- .../react-switch/CHANGELOG.json | 27 +++ .../react-switch/CHANGELOG.md | 13 +- .../react-switch/package.json | 4 +- .../react-table/CHANGELOG.json | 21 ++ .../react-components/react-table/CHANGELOG.md | 12 +- .../react-components/react-table/package.json | 6 +- .../react-tabs/CHANGELOG.json | 15 ++ .../react-components/react-tabs/CHANGELOG.md | 11 +- .../react-components/react-tabs/package.json | 2 +- .../react-textarea/CHANGELOG.json | 27 +++ .../react-textarea/CHANGELOG.md | 13 +- .../react-textarea/package.json | 4 +- .../react-toolbar/CHANGELOG.json | 15 ++ .../react-toolbar/CHANGELOG.md | 11 +- .../react-toolbar/package.json | 4 +- .../theme-designer/package.json | 2 +- 100 files changed, 988 insertions(+), 307 deletions(-) delete mode 100644 change/@fluentui-react-checkbox-7491f15b-367b-482c-9bfc-aa897546d57f.json delete mode 100644 change/@fluentui-react-checkbox-fe3ad8e3-f1a0-4b4e-ba0d-b268b6ec3fa4.json delete mode 100644 change/@fluentui-react-combobox-3cb36c90-c714-4dbd-bfaf-7b4f7c3faaea.json delete mode 100644 change/@fluentui-react-combobox-95bf9a08-b64f-4a05-81ac-4debdb1a6662.json delete mode 100644 change/@fluentui-react-components-3b6d9ef5-a02f-449f-92de-055cb6c9bb7b.json delete mode 100644 change/@fluentui-react-components-903a28f2-111a-4bce-bb47-396da6422862.json delete mode 100644 change/@fluentui-react-dialog-4ec18194-91df-4b16-9fdd-3f79ba3bc6a0.json delete mode 100644 change/@fluentui-react-field-2c40a846-0df9-4d61-9472-ec59670b77a2.json delete mode 100644 change/@fluentui-react-field-73595ff6-5dc9-4ca2-b6f1-f4d41c54e76d.json delete mode 100644 change/@fluentui-react-input-b5935497-9fbb-4d7f-ba38-e498bba5acd2.json delete mode 100644 change/@fluentui-react-input-e2ec96b6-faeb-445e-b279-4d62b8caf2f0.json delete mode 100644 change/@fluentui-react-portal-compat-f482108b-7c52-491d-9d83-56b720095442.json delete mode 100644 change/@fluentui-react-progress-0ec5d775-02d1-42a2-845d-7afc5bbaf4ff.json delete mode 100644 change/@fluentui-react-progress-97ad2a19-e138-4e89-b753-89b83e0b42d7.json delete mode 100644 change/@fluentui-react-radio-b2e01e06-ab25-451c-af2b-8f7a04175bde.json delete mode 100644 change/@fluentui-react-radio-d2047407-8c63-41d9-801c-497393d8505b.json delete mode 100644 change/@fluentui-react-select-1136d423-6f0b-422f-a1e1-c90accc1dccb.json delete mode 100644 change/@fluentui-react-select-5a1ba613-14bb-44bf-9c07-4ace04f79c4a.json delete mode 100644 change/@fluentui-react-skeleton-648ff7dc-d4db-42ea-9c18-3c0c03691c13.json delete mode 100644 change/@fluentui-react-slider-7cbf75c0-04ac-4b34-a49d-3d427f769ce8.json delete mode 100644 change/@fluentui-react-slider-bc337120-f0bf-4b83-bbdd-93ce62b6216e.json delete mode 100644 change/@fluentui-react-spinbutton-07f32e82-c12b-4728-bf74-cf2085373fbd.json delete mode 100644 change/@fluentui-react-spinbutton-14be635e-f886-4b19-9ed2-6688c48711be.json delete mode 100644 change/@fluentui-react-spinbutton-184fd4ef-de9a-4395-858e-45b5dda2e51a.json delete mode 100644 change/@fluentui-react-switch-3d5f6b94-a231-42e7-8dd0-72a9f4756362.json delete mode 100644 change/@fluentui-react-switch-fb84b5ad-f9a3-433b-b571-6a8a6437b916.json delete mode 100644 change/@fluentui-react-tabs-e7f77370-547e-4ec6-acac-40a7008f2ed6.json delete mode 100644 change/@fluentui-react-textarea-32917679-c767-4e69-9733-16279ddb4063.json delete mode 100644 change/@fluentui-react-textarea-6e6be83f-e5ec-4a39-86b5-296f450658c2.json diff --git a/apps/perf-test-react-components/package.json b/apps/perf-test-react-components/package.json index bf1922a494b66..da6ae7ae66ace 100644 --- a/apps/perf-test-react-components/package.json +++ b/apps/perf-test-react-components/package.json @@ -22,11 +22,11 @@ "@griffel/core": "^1.9.0", "@fluentui/react-avatar": "^9.4.7", "@fluentui/react-button": "^9.3.7", - "@fluentui/react-field": "9.0.0-beta.0", + "@fluentui/react-field": "9.0.0-beta.1", "@fluentui/react-infobutton": "9.0.0-beta.25", "@fluentui/react-persona": "^9.2.6", "@fluentui/react-provider": "^9.5.1", - "@fluentui/react-spinbutton": "^9.2.7", + "@fluentui/react-spinbutton": "^9.2.8", "@fluentui/react-theme": "^9.1.7", "@microsoft/load-themed-styles": "^1.10.26", "react": "17.0.2", diff --git a/apps/public-docsite-v9/package.json b/apps/public-docsite-v9/package.json index 219bf48d64944..903e3e39b58ef 100644 --- a/apps/public-docsite-v9/package.json +++ b/apps/public-docsite-v9/package.json @@ -23,12 +23,12 @@ }, "dependencies": { "@fluentui/react-datepicker-compat": "0.0.0-alpha.0", - "@fluentui/react-migration-v8-v9": "^9.2.6", + "@fluentui/react-migration-v8-v9": "^9.2.7", "@fluentui/react-migration-v0-v9": "9.0.0-alpha.0", "@fluentui/react": "^8.107.2", "@fluentui/react-northstar": "^0.66.4", "@fluentui/react-icons-northstar": "^0.66.4", - "@fluentui/react-components": "^9.18.7", + "@fluentui/react-components": "^9.18.8", "@fluentui/react-storybook-addon": "9.0.0-rc.1", "@fluentui/react-storybook-addon-codesandbox": "9.0.0-alpha.0", "@griffel/react": "^1.5.2", diff --git a/apps/react-18-tests-v9/package.json b/apps/react-18-tests-v9/package.json index c7ba5e563834a..3df08a07916de 100644 --- a/apps/react-18-tests-v9/package.json +++ b/apps/react-18-tests-v9/package.json @@ -19,7 +19,7 @@ "@fluentui/scripts-tasks": "*" }, "dependencies": { - "@fluentui/react-components": "^9.18.7", + "@fluentui/react-components": "^9.18.8", "@types/react": "18.0.14", "@types/react-dom": "18.0.6", "react": "18.2.0", diff --git a/apps/recipes-react-components/package.json b/apps/recipes-react-components/package.json index 35ab900e572e6..708470f1c2ded 100644 --- a/apps/recipes-react-components/package.json +++ b/apps/recipes-react-components/package.json @@ -16,7 +16,7 @@ "@fluentui/scripts-tasks": "*" }, "dependencies": { - "@fluentui/react-components": "^9.18.7", + "@fluentui/react-components": "^9.18.8", "@fluentui/react-icons": "^2.0.196", "@fluentui/react-theme": "^9.1.7", "@fluentui/react-provider": "^9.5.1", diff --git a/apps/ssr-tests-v9/package.json b/apps/ssr-tests-v9/package.json index 4d6c324df50e0..74ed459dca736 100644 --- a/apps/ssr-tests-v9/package.json +++ b/apps/ssr-tests-v9/package.json @@ -20,7 +20,7 @@ "type-check": "tsc -b tsconfig.json" }, "dependencies": { - "@fluentui/react-components": "^9.18.7" + "@fluentui/react-components": "^9.18.8" }, "devDependencies": { "@fluentui/eslint-plugin": "*", diff --git a/apps/stress-test/package.json b/apps/stress-test/package.json index 04a29ab2067bc..73f5e4958dc2b 100644 --- a/apps/stress-test/package.json +++ b/apps/stress-test/package.json @@ -11,7 +11,7 @@ }, "dependencies": { "@fluentui/react": "^8.107.2", - "@fluentui/react-components": "^9.18.7", + "@fluentui/react-components": "^9.18.8", "@fluentui/react-icons": "^2.0.196", "@fluentui/web-components": "^2.5.12", "@microsoft/fast-element": "^1.11.0", diff --git a/apps/ts-minbar-test-react-components/package.json b/apps/ts-minbar-test-react-components/package.json index 69aab137e4368..5ed6202397012 100644 --- a/apps/ts-minbar-test-react-components/package.json +++ b/apps/ts-minbar-test-react-components/package.json @@ -5,7 +5,7 @@ "description": "Testing Fluent UI React Components compatibility with Typescript 3.9", "license": "MIT", "dependencies": { - "@fluentui/react-components": "^9.18.7" + "@fluentui/react-components": "^9.18.8" }, "scripts": { "type-check": "tsc -p .", diff --git a/apps/vr-tests-react-components/package.json b/apps/vr-tests-react-components/package.json index d97bbab3203c1..113337be79f5b 100644 --- a/apps/vr-tests-react-components/package.json +++ b/apps/vr-tests-react-components/package.json @@ -25,16 +25,16 @@ "@fluentui/react-badge": "^9.1.7", "@fluentui/react-button": "^9.3.7", "@fluentui/react-card": "^9.0.5", - "@fluentui/react-checkbox": "^9.1.7", - "@fluentui/react-combobox": "^9.2.7", + "@fluentui/react-checkbox": "^9.1.8", + "@fluentui/react-combobox": "^9.2.8", "@fluentui/react-datepicker-compat": "0.0.0-alpha.0", - "@fluentui/react-dialog": "^9.4.3", + "@fluentui/react-dialog": "^9.5.0", "@fluentui/react-divider": "^9.2.7", - "@fluentui/react-field": "9.0.0-beta.0", + "@fluentui/react-field": "9.0.0-beta.1", "@fluentui/react-icons": "^2.0.196", "@fluentui/react-image": "^9.1.4", "@fluentui/react-infobutton": "9.0.0-beta.25", - "@fluentui/react-input": "^9.4.7", + "@fluentui/react-input": "^9.4.8", "@fluentui/react-label": "^9.1.7", "@fluentui/react-link": "^9.0.33", "@fluentui/react-menu": "^9.7.7", @@ -42,25 +42,25 @@ "@fluentui/react-popover": "^9.5.7", "@fluentui/react-portal": "^9.2.4", "@fluentui/react-positioning": "^9.5.8", - "@fluentui/react-progress": "^9.1.7", + "@fluentui/react-progress": "^9.1.8", "@fluentui/react-provider": "^9.5.1", - "@fluentui/react-radio": "^9.1.7", - "@fluentui/react-select": "^9.1.7", + "@fluentui/react-radio": "^9.1.8", + "@fluentui/react-select": "^9.1.8", "@fluentui/react-shared-contexts": "^9.3.3", - "@fluentui/react-skeleton": "9.0.0-beta.6", - "@fluentui/react-slider": "^9.1.7", + "@fluentui/react-skeleton": "9.0.0-beta.7", + "@fluentui/react-slider": "^9.1.8", "@fluentui/react-spinner": "^9.1.7", - "@fluentui/react-spinbutton": "^9.2.7", + "@fluentui/react-spinbutton": "^9.2.8", "@fluentui/react-storybook-addon": "9.0.0-rc.1", "@fluentui/react-storybook-addon-codesandbox": "9.0.0-alpha.0", - "@fluentui/react-switch": "^9.1.7", - "@fluentui/react-tabs": "^9.3.7", - "@fluentui/react-table": "^9.2.3", + "@fluentui/react-switch": "^9.1.8", + "@fluentui/react-tabs": "^9.3.8", + "@fluentui/react-table": "^9.2.4", "@fluentui/react-text": "^9.3.4", - "@fluentui/react-textarea": "^9.3.7", + "@fluentui/react-textarea": "^9.3.8", "@fluentui/react-theme": "^9.1.7", "@fluentui/react-tooltip": "^9.2.7", - "@fluentui/react-toolbar": "^9.1.7", + "@fluentui/react-toolbar": "^9.1.8", "@fluentui/react-utilities": "^9.7.3", "@griffel/react": "^1.5.2", "react": "17.0.2", diff --git a/change/@fluentui-react-checkbox-7491f15b-367b-482c-9bfc-aa897546d57f.json b/change/@fluentui-react-checkbox-7491f15b-367b-482c-9bfc-aa897546d57f.json deleted file mode 100644 index 9aac4fc865903..0000000000000 --- a/change/@fluentui-react-checkbox-7491f15b-367b-482c-9bfc-aa897546d57f.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "type": "patch", - "comment": "chore: Hook up FieldContext for use inside a Field", - "packageName": "@fluentui/react-checkbox", - "email": "behowell@microsoft.com", - "dependentChangeType": "patch" -} diff --git a/change/@fluentui-react-checkbox-fe3ad8e3-f1a0-4b4e-ba0d-b268b6ec3fa4.json b/change/@fluentui-react-checkbox-fe3ad8e3-f1a0-4b4e-ba0d-b268b6ec3fa4.json deleted file mode 100644 index d9c0a1aa9f138..0000000000000 --- a/change/@fluentui-react-checkbox-fe3ad8e3-f1a0-4b4e-ba0d-b268b6ec3fa4.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "type": "patch", - "comment": "chore: Update package version of react-field", - "packageName": "@fluentui/react-checkbox", - "email": "behowell@microsoft.com", - "dependentChangeType": "patch" -} diff --git a/change/@fluentui-react-combobox-3cb36c90-c714-4dbd-bfaf-7b4f7c3faaea.json b/change/@fluentui-react-combobox-3cb36c90-c714-4dbd-bfaf-7b4f7c3faaea.json deleted file mode 100644 index a0c727657654d..0000000000000 --- a/change/@fluentui-react-combobox-3cb36c90-c714-4dbd-bfaf-7b4f7c3faaea.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "type": "patch", - "comment": "chore: Update package version of react-field", - "packageName": "@fluentui/react-combobox", - "email": "behowell@microsoft.com", - "dependentChangeType": "patch" -} diff --git a/change/@fluentui-react-combobox-95bf9a08-b64f-4a05-81ac-4debdb1a6662.json b/change/@fluentui-react-combobox-95bf9a08-b64f-4a05-81ac-4debdb1a6662.json deleted file mode 100644 index 8920812a2c944..0000000000000 --- a/change/@fluentui-react-combobox-95bf9a08-b64f-4a05-81ac-4debdb1a6662.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "type": "patch", - "comment": "chore: Hook up FieldContext for use inside a Field", - "packageName": "@fluentui/react-combobox", - "email": "behowell@microsoft.com", - "dependentChangeType": "patch" -} diff --git a/change/@fluentui-react-components-3b6d9ef5-a02f-449f-92de-055cb6c9bb7b.json b/change/@fluentui-react-components-3b6d9ef5-a02f-449f-92de-055cb6c9bb7b.json deleted file mode 100644 index 1cabdf4c514a1..0000000000000 --- a/change/@fluentui-react-components-3b6d9ef5-a02f-449f-92de-055cb6c9bb7b.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "type": "patch", - "comment": "chore: Update package version of react-field", - "packageName": "@fluentui/react-components", - "email": "behowell@microsoft.com", - "dependentChangeType": "patch" -} diff --git a/change/@fluentui-react-components-903a28f2-111a-4bce-bb47-396da6422862.json b/change/@fluentui-react-components-903a28f2-111a-4bce-bb47-396da6422862.json deleted file mode 100644 index 1a652bcec2259..0000000000000 --- a/change/@fluentui-react-components-903a28f2-111a-4bce-bb47-396da6422862.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "type": "patch", - "comment": "chore: Export hooks for FieldContext", - "packageName": "@fluentui/react-components", - "email": "behowell@microsoft.com", - "dependentChangeType": "patch" -} diff --git a/change/@fluentui-react-dialog-4ec18194-91df-4b16-9fdd-3f79ba3bc6a0.json b/change/@fluentui-react-dialog-4ec18194-91df-4b16-9fdd-3f79ba3bc6a0.json deleted file mode 100644 index bd95b70bc8ef2..0000000000000 --- a/change/@fluentui-react-dialog-4ec18194-91df-4b16-9fdd-3f79ba3bc6a0.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "type": "minor", - "comment": "feat: removes aria-expanded from DialogTrigger", - "packageName": "@fluentui/react-dialog", - "email": "bernardo.sunderhus@gmail.com", - "dependentChangeType": "patch" -} diff --git a/change/@fluentui-react-field-2c40a846-0df9-4d61-9472-ec59670b77a2.json b/change/@fluentui-react-field-2c40a846-0df9-4d61-9472-ec59670b77a2.json deleted file mode 100644 index 6d898a76e8b2b..0000000000000 --- a/change/@fluentui-react-field-2c40a846-0df9-4d61-9472-ec59670b77a2.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "type": "prerelease", - "comment": "feat: Add FieldContext to pass props to controls inside Field", - "packageName": "@fluentui/react-field", - "email": "behowell@microsoft.com", - "dependentChangeType": "patch" -} diff --git a/change/@fluentui-react-field-73595ff6-5dc9-4ca2-b6f1-f4d41c54e76d.json b/change/@fluentui-react-field-73595ff6-5dc9-4ca2-b6f1-f4d41c54e76d.json deleted file mode 100644 index d8ff269c28996..0000000000000 --- a/change/@fluentui-react-field-73595ff6-5dc9-4ca2-b6f1-f4d41c54e76d.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "type": "prerelease", - "comment": "chore: Bump react-field version to beta", - "packageName": "@fluentui/react-field", - "email": "behowell@microsoft.com", - "dependentChangeType": "patch" -} diff --git a/change/@fluentui-react-input-b5935497-9fbb-4d7f-ba38-e498bba5acd2.json b/change/@fluentui-react-input-b5935497-9fbb-4d7f-ba38-e498bba5acd2.json deleted file mode 100644 index cad4d2623cdfa..0000000000000 --- a/change/@fluentui-react-input-b5935497-9fbb-4d7f-ba38-e498bba5acd2.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "type": "patch", - "comment": "chore: Hook up FieldContext for use inside a Field", - "packageName": "@fluentui/react-input", - "email": "behowell@microsoft.com", - "dependentChangeType": "patch" -} diff --git a/change/@fluentui-react-input-e2ec96b6-faeb-445e-b279-4d62b8caf2f0.json b/change/@fluentui-react-input-e2ec96b6-faeb-445e-b279-4d62b8caf2f0.json deleted file mode 100644 index 3d5f1a69cacf1..0000000000000 --- a/change/@fluentui-react-input-e2ec96b6-faeb-445e-b279-4d62b8caf2f0.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "type": "patch", - "comment": "chore: Update package version of react-field", - "packageName": "@fluentui/react-input", - "email": "behowell@microsoft.com", - "dependentChangeType": "patch" -} diff --git a/change/@fluentui-react-portal-compat-f482108b-7c52-491d-9d83-56b720095442.json b/change/@fluentui-react-portal-compat-f482108b-7c52-491d-9d83-56b720095442.json deleted file mode 100644 index 98ecb6f85d32e..0000000000000 --- a/change/@fluentui-react-portal-compat-f482108b-7c52-491d-9d83-56b720095442.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "type": "patch", - "comment": "fix: React 18 support in typings", - "packageName": "@fluentui/react-portal-compat", - "email": "miroslav.stastny@microsoft.com", - "dependentChangeType": "patch" -} diff --git a/change/@fluentui-react-progress-0ec5d775-02d1-42a2-845d-7afc5bbaf4ff.json b/change/@fluentui-react-progress-0ec5d775-02d1-42a2-845d-7afc5bbaf4ff.json deleted file mode 100644 index 3df5fec25ffe5..0000000000000 --- a/change/@fluentui-react-progress-0ec5d775-02d1-42a2-845d-7afc5bbaf4ff.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "type": "patch", - "comment": "chore: Update package version of react-field", - "packageName": "@fluentui/react-progress", - "email": "behowell@microsoft.com", - "dependentChangeType": "patch" -} diff --git a/change/@fluentui-react-progress-97ad2a19-e138-4e89-b753-89b83e0b42d7.json b/change/@fluentui-react-progress-97ad2a19-e138-4e89-b753-89b83e0b42d7.json deleted file mode 100644 index df99849bfabaf..0000000000000 --- a/change/@fluentui-react-progress-97ad2a19-e138-4e89-b753-89b83e0b42d7.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "type": "patch", - "comment": "chore: Hook up FieldContext for use inside a Field", - "packageName": "@fluentui/react-progress", - "email": "behowell@microsoft.com", - "dependentChangeType": "patch" -} diff --git a/change/@fluentui-react-radio-b2e01e06-ab25-451c-af2b-8f7a04175bde.json b/change/@fluentui-react-radio-b2e01e06-ab25-451c-af2b-8f7a04175bde.json deleted file mode 100644 index 488ff3537c7ea..0000000000000 --- a/change/@fluentui-react-radio-b2e01e06-ab25-451c-af2b-8f7a04175bde.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "type": "patch", - "comment": "chore: Hook up FieldContext for use inside a Field", - "packageName": "@fluentui/react-radio", - "email": "behowell@microsoft.com", - "dependentChangeType": "patch" -} diff --git a/change/@fluentui-react-radio-d2047407-8c63-41d9-801c-497393d8505b.json b/change/@fluentui-react-radio-d2047407-8c63-41d9-801c-497393d8505b.json deleted file mode 100644 index b679b66aa74b1..0000000000000 --- a/change/@fluentui-react-radio-d2047407-8c63-41d9-801c-497393d8505b.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "type": "patch", - "comment": "chore: Update package version of react-field", - "packageName": "@fluentui/react-radio", - "email": "behowell@microsoft.com", - "dependentChangeType": "patch" -} diff --git a/change/@fluentui-react-select-1136d423-6f0b-422f-a1e1-c90accc1dccb.json b/change/@fluentui-react-select-1136d423-6f0b-422f-a1e1-c90accc1dccb.json deleted file mode 100644 index cee38737a038e..0000000000000 --- a/change/@fluentui-react-select-1136d423-6f0b-422f-a1e1-c90accc1dccb.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "type": "patch", - "comment": "chore: Hook up FieldContext for use inside a Field", - "packageName": "@fluentui/react-select", - "email": "behowell@microsoft.com", - "dependentChangeType": "patch" -} diff --git a/change/@fluentui-react-select-5a1ba613-14bb-44bf-9c07-4ace04f79c4a.json b/change/@fluentui-react-select-5a1ba613-14bb-44bf-9c07-4ace04f79c4a.json deleted file mode 100644 index 5187f91ab7b79..0000000000000 --- a/change/@fluentui-react-select-5a1ba613-14bb-44bf-9c07-4ace04f79c4a.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "type": "patch", - "comment": "chore: Update package version of react-field", - "packageName": "@fluentui/react-select", - "email": "behowell@microsoft.com", - "dependentChangeType": "patch" -} diff --git a/change/@fluentui-react-skeleton-648ff7dc-d4db-42ea-9c18-3c0c03691c13.json b/change/@fluentui-react-skeleton-648ff7dc-d4db-42ea-9c18-3c0c03691c13.json deleted file mode 100644 index 6cddd30fbe8a7..0000000000000 --- a/change/@fluentui-react-skeleton-648ff7dc-d4db-42ea-9c18-3c0c03691c13.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "type": "prerelease", - "comment": "chore: Update package version of react-field", - "packageName": "@fluentui/react-skeleton", - "email": "behowell@microsoft.com", - "dependentChangeType": "patch" -} diff --git a/change/@fluentui-react-slider-7cbf75c0-04ac-4b34-a49d-3d427f769ce8.json b/change/@fluentui-react-slider-7cbf75c0-04ac-4b34-a49d-3d427f769ce8.json deleted file mode 100644 index a0d7f2d722f0b..0000000000000 --- a/change/@fluentui-react-slider-7cbf75c0-04ac-4b34-a49d-3d427f769ce8.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "type": "patch", - "comment": "chore: Update package version of react-field", - "packageName": "@fluentui/react-slider", - "email": "behowell@microsoft.com", - "dependentChangeType": "patch" -} diff --git a/change/@fluentui-react-slider-bc337120-f0bf-4b83-bbdd-93ce62b6216e.json b/change/@fluentui-react-slider-bc337120-f0bf-4b83-bbdd-93ce62b6216e.json deleted file mode 100644 index abb481e8701fe..0000000000000 --- a/change/@fluentui-react-slider-bc337120-f0bf-4b83-bbdd-93ce62b6216e.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "type": "patch", - "comment": "chore: Hook up FieldContext for use inside a Field", - "packageName": "@fluentui/react-slider", - "email": "behowell@microsoft.com", - "dependentChangeType": "patch" -} diff --git a/change/@fluentui-react-spinbutton-07f32e82-c12b-4728-bf74-cf2085373fbd.json b/change/@fluentui-react-spinbutton-07f32e82-c12b-4728-bf74-cf2085373fbd.json deleted file mode 100644 index c62f6442059f4..0000000000000 --- a/change/@fluentui-react-spinbutton-07f32e82-c12b-4728-bf74-cf2085373fbd.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "type": "patch", - "comment": "added width 100% to input of spin button", - "packageName": "@fluentui/react-spinbutton", - "email": "kakrookaran@gmail.com", - "dependentChangeType": "patch" -} diff --git a/change/@fluentui-react-spinbutton-14be635e-f886-4b19-9ed2-6688c48711be.json b/change/@fluentui-react-spinbutton-14be635e-f886-4b19-9ed2-6688c48711be.json deleted file mode 100644 index 9931868fc043a..0000000000000 --- a/change/@fluentui-react-spinbutton-14be635e-f886-4b19-9ed2-6688c48711be.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "type": "patch", - "comment": "chore: Update package version of react-field", - "packageName": "@fluentui/react-spinbutton", - "email": "behowell@microsoft.com", - "dependentChangeType": "patch" -} diff --git a/change/@fluentui-react-spinbutton-184fd4ef-de9a-4395-858e-45b5dda2e51a.json b/change/@fluentui-react-spinbutton-184fd4ef-de9a-4395-858e-45b5dda2e51a.json deleted file mode 100644 index 2af2d5b139744..0000000000000 --- a/change/@fluentui-react-spinbutton-184fd4ef-de9a-4395-858e-45b5dda2e51a.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "type": "patch", - "comment": "chore: Hook up FieldContext for use inside a Field", - "packageName": "@fluentui/react-spinbutton", - "email": "behowell@microsoft.com", - "dependentChangeType": "patch" -} diff --git a/change/@fluentui-react-switch-3d5f6b94-a231-42e7-8dd0-72a9f4756362.json b/change/@fluentui-react-switch-3d5f6b94-a231-42e7-8dd0-72a9f4756362.json deleted file mode 100644 index 2c161d383efb8..0000000000000 --- a/change/@fluentui-react-switch-3d5f6b94-a231-42e7-8dd0-72a9f4756362.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "type": "patch", - "comment": "chore: Hook up FieldContext for use inside a Field", - "packageName": "@fluentui/react-switch", - "email": "behowell@microsoft.com", - "dependentChangeType": "patch" -} diff --git a/change/@fluentui-react-switch-fb84b5ad-f9a3-433b-b571-6a8a6437b916.json b/change/@fluentui-react-switch-fb84b5ad-f9a3-433b-b571-6a8a6437b916.json deleted file mode 100644 index 64c27d88db27d..0000000000000 --- a/change/@fluentui-react-switch-fb84b5ad-f9a3-433b-b571-6a8a6437b916.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "type": "patch", - "comment": "chore: Update package version of react-field", - "packageName": "@fluentui/react-switch", - "email": "behowell@microsoft.com", - "dependentChangeType": "patch" -} diff --git a/change/@fluentui-react-tabs-e7f77370-547e-4ec6-acac-40a7008f2ed6.json b/change/@fluentui-react-tabs-e7f77370-547e-4ec6-acac-40a7008f2ed6.json deleted file mode 100644 index 01596d6e11c01..0000000000000 --- a/change/@fluentui-react-tabs-e7f77370-547e-4ec6-acac-40a7008f2ed6.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "type": "patch", - "comment": "fix: Merged onClick callbacks in Tab", - "packageName": "@fluentui/react-tabs", - "email": "gcox@microsoft.com", - "dependentChangeType": "patch" -} diff --git a/change/@fluentui-react-textarea-32917679-c767-4e69-9733-16279ddb4063.json b/change/@fluentui-react-textarea-32917679-c767-4e69-9733-16279ddb4063.json deleted file mode 100644 index 40a10c4bf0c8d..0000000000000 --- a/change/@fluentui-react-textarea-32917679-c767-4e69-9733-16279ddb4063.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "type": "patch", - "comment": "chore: Update package version of react-field", - "packageName": "@fluentui/react-textarea", - "email": "behowell@microsoft.com", - "dependentChangeType": "patch" -} diff --git a/change/@fluentui-react-textarea-6e6be83f-e5ec-4a39-86b5-296f450658c2.json b/change/@fluentui-react-textarea-6e6be83f-e5ec-4a39-86b5-296f450658c2.json deleted file mode 100644 index 863c7c2442509..0000000000000 --- a/change/@fluentui-react-textarea-6e6be83f-e5ec-4a39-86b5-296f450658c2.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "type": "patch", - "comment": "chore: Hook up FieldContext for use inside a Field", - "packageName": "@fluentui/react-textarea", - "email": "behowell@microsoft.com", - "dependentChangeType": "patch" -} diff --git a/packages/react-components/react-checkbox/CHANGELOG.json b/packages/react-components/react-checkbox/CHANGELOG.json index 8a13dd7a8d2f7..511096f06526c 100644 --- a/packages/react-components/react-checkbox/CHANGELOG.json +++ b/packages/react-components/react-checkbox/CHANGELOG.json @@ -1,6 +1,33 @@ { "name": "@fluentui/react-checkbox", "entries": [ + { + "date": "Fri, 07 Apr 2023 00:01:36 GMT", + "tag": "@fluentui/react-checkbox_v9.1.8", + "version": "9.1.8", + "comments": { + "patch": [ + { + "author": "behowell@microsoft.com", + "package": "@fluentui/react-checkbox", + "commit": "5a8d7a29645b3b500eb7145d2e42ac34fcafc4c6", + "comment": "chore: Hook up FieldContext for use inside a Field" + }, + { + "author": "behowell@microsoft.com", + "package": "@fluentui/react-checkbox", + "commit": "eee5716e76dc6a5bef9316546a352694bbe5750a", + "comment": "chore: Update package version of react-field" + }, + { + "author": "beachball", + "package": "@fluentui/react-checkbox", + "comment": "Bump @fluentui/react-field to v9.0.0-beta.1", + "commit": "7a46cab3d31a233b89b7188e994b24712af5393c" + } + ] + } + }, { "date": "Tue, 04 Apr 2023 18:44:47 GMT", "tag": "@fluentui/react-checkbox_v9.1.7", diff --git a/packages/react-components/react-checkbox/CHANGELOG.md b/packages/react-components/react-checkbox/CHANGELOG.md index 2604b59fc4325..16d660cbee3a1 100644 --- a/packages/react-components/react-checkbox/CHANGELOG.md +++ b/packages/react-components/react-checkbox/CHANGELOG.md @@ -1,9 +1,20 @@ # Change Log - @fluentui/react-checkbox -This log was last generated on Tue, 04 Apr 2023 18:44:47 GMT and should not be manually modified. +This log was last generated on Fri, 07 Apr 2023 00:01:36 GMT and should not be manually modified. +## [9.1.8](https://github.com/microsoft/fluentui/tree/@fluentui/react-checkbox_v9.1.8) + +Fri, 07 Apr 2023 00:01:36 GMT +[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-checkbox_v9.1.7..@fluentui/react-checkbox_v9.1.8) + +### Patches + +- chore: Hook up FieldContext for use inside a Field ([PR #27399](https://github.com/microsoft/fluentui/pull/27399) by behowell@microsoft.com) +- chore: Update package version of react-field ([PR #27458](https://github.com/microsoft/fluentui/pull/27458) by behowell@microsoft.com) +- Bump @fluentui/react-field to v9.0.0-beta.1 ([PR #27420](https://github.com/microsoft/fluentui/pull/27420) by beachball) + ## [9.1.7](https://github.com/microsoft/fluentui/tree/@fluentui/react-checkbox_v9.1.7) Tue, 04 Apr 2023 18:44:47 GMT diff --git a/packages/react-components/react-checkbox/package.json b/packages/react-components/react-checkbox/package.json index 597612f66fd2b..61d853f098cbf 100644 --- a/packages/react-components/react-checkbox/package.json +++ b/packages/react-components/react-checkbox/package.json @@ -1,6 +1,6 @@ { "name": "@fluentui/react-checkbox", - "version": "9.1.7", + "version": "9.1.8", "description": "Fluent UI checkbox component", "main": "lib-commonjs/index.js", "module": "lib/index.js", @@ -32,7 +32,7 @@ "@fluentui/scripts-tasks": "*" }, "dependencies": { - "@fluentui/react-field": "9.0.0-beta.0", + "@fluentui/react-field": "9.0.0-beta.1", "@fluentui/react-icons": "^2.0.196", "@fluentui/react-label": "^9.1.7", "@fluentui/react-shared-contexts": "^9.3.3", diff --git a/packages/react-components/react-combobox/CHANGELOG.json b/packages/react-components/react-combobox/CHANGELOG.json index 3641bc6514f06..44ff518b97148 100644 --- a/packages/react-components/react-combobox/CHANGELOG.json +++ b/packages/react-components/react-combobox/CHANGELOG.json @@ -1,6 +1,33 @@ { "name": "@fluentui/react-combobox", "entries": [ + { + "date": "Fri, 07 Apr 2023 00:01:37 GMT", + "tag": "@fluentui/react-combobox_v9.2.8", + "version": "9.2.8", + "comments": { + "patch": [ + { + "author": "behowell@microsoft.com", + "package": "@fluentui/react-combobox", + "commit": "eee5716e76dc6a5bef9316546a352694bbe5750a", + "comment": "chore: Update package version of react-field" + }, + { + "author": "behowell@microsoft.com", + "package": "@fluentui/react-combobox", + "commit": "5a8d7a29645b3b500eb7145d2e42ac34fcafc4c6", + "comment": "chore: Hook up FieldContext for use inside a Field" + }, + { + "author": "beachball", + "package": "@fluentui/react-combobox", + "comment": "Bump @fluentui/react-field to v9.0.0-beta.1", + "commit": "7a46cab3d31a233b89b7188e994b24712af5393c" + } + ] + } + }, { "date": "Tue, 04 Apr 2023 18:44:48 GMT", "tag": "@fluentui/react-combobox_v9.2.7", diff --git a/packages/react-components/react-combobox/CHANGELOG.md b/packages/react-components/react-combobox/CHANGELOG.md index d06c9cfd56f85..cfa51fa8394ea 100644 --- a/packages/react-components/react-combobox/CHANGELOG.md +++ b/packages/react-components/react-combobox/CHANGELOG.md @@ -1,9 +1,20 @@ # Change Log - @fluentui/react-combobox -This log was last generated on Tue, 04 Apr 2023 18:44:48 GMT and should not be manually modified. +This log was last generated on Fri, 07 Apr 2023 00:01:37 GMT and should not be manually modified. +## [9.2.8](https://github.com/microsoft/fluentui/tree/@fluentui/react-combobox_v9.2.8) + +Fri, 07 Apr 2023 00:01:37 GMT +[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-combobox_v9.2.7..@fluentui/react-combobox_v9.2.8) + +### Patches + +- chore: Update package version of react-field ([PR #27458](https://github.com/microsoft/fluentui/pull/27458) by behowell@microsoft.com) +- chore: Hook up FieldContext for use inside a Field ([PR #27399](https://github.com/microsoft/fluentui/pull/27399) by behowell@microsoft.com) +- Bump @fluentui/react-field to v9.0.0-beta.1 ([PR #27420](https://github.com/microsoft/fluentui/pull/27420) by beachball) + ## [9.2.7](https://github.com/microsoft/fluentui/tree/@fluentui/react-combobox_v9.2.7) Tue, 04 Apr 2023 18:44:48 GMT diff --git a/packages/react-components/react-combobox/package.json b/packages/react-components/react-combobox/package.json index af613c384d470..c172df852cc6c 100644 --- a/packages/react-components/react-combobox/package.json +++ b/packages/react-components/react-combobox/package.json @@ -1,6 +1,6 @@ { "name": "@fluentui/react-combobox", - "version": "9.2.7", + "version": "9.2.8", "description": "Fluent UI React Combobox component", "main": "lib-commonjs/index.js", "module": "lib/index.js", @@ -34,7 +34,7 @@ "dependencies": { "@fluentui/keyboard-keys": "^9.0.2", "@fluentui/react-context-selector": "^9.1.16", - "@fluentui/react-field": "9.0.0-beta.0", + "@fluentui/react-field": "9.0.0-beta.1", "@fluentui/react-icons": "^2.0.196", "@fluentui/react-portal": "^9.2.4", "@fluentui/react-positioning": "^9.5.8", diff --git a/packages/react-components/react-components/CHANGELOG.json b/packages/react-components/react-components/CHANGELOG.json index ca37822741ecc..0f6083aba1d4e 100644 --- a/packages/react-components/react-components/CHANGELOG.json +++ b/packages/react-components/react-components/CHANGELOG.json @@ -1,6 +1,193 @@ { "name": "@fluentui/react-components", "entries": [ + { + "date": "Fri, 07 Apr 2023 00:01:35 GMT", + "tag": "@fluentui/react-components_v9.18.8", + "version": "9.18.8", + "comments": { + "patch": [ + { + "author": "behowell@microsoft.com", + "package": "@fluentui/react-checkbox", + "commit": "5a8d7a29645b3b500eb7145d2e42ac34fcafc4c6", + "comment": "chore: Hook up FieldContext for use inside a Field" + }, + { + "author": "behowell@microsoft.com", + "package": "@fluentui/react-checkbox", + "commit": "eee5716e76dc6a5bef9316546a352694bbe5750a", + "comment": "chore: Update package version of react-field" + }, + { + "author": "behowell@microsoft.com", + "package": "@fluentui/react-combobox", + "commit": "eee5716e76dc6a5bef9316546a352694bbe5750a", + "comment": "chore: Update package version of react-field" + }, + { + "author": "behowell@microsoft.com", + "package": "@fluentui/react-combobox", + "commit": "5a8d7a29645b3b500eb7145d2e42ac34fcafc4c6", + "comment": "chore: Hook up FieldContext for use inside a Field" + }, + { + "author": "behowell@microsoft.com", + "package": "@fluentui/react-components", + "commit": "eee5716e76dc6a5bef9316546a352694bbe5750a", + "comment": "chore: Update package version of react-field" + }, + { + "author": "behowell@microsoft.com", + "package": "@fluentui/react-components", + "commit": "5a8d7a29645b3b500eb7145d2e42ac34fcafc4c6", + "comment": "chore: Export hooks for FieldContext" + }, + { + "author": "behowell@microsoft.com", + "package": "@fluentui/react-input", + "commit": "5a8d7a29645b3b500eb7145d2e42ac34fcafc4c6", + "comment": "chore: Hook up FieldContext for use inside a Field" + }, + { + "author": "behowell@microsoft.com", + "package": "@fluentui/react-input", + "commit": "eee5716e76dc6a5bef9316546a352694bbe5750a", + "comment": "chore: Update package version of react-field" + }, + { + "author": "miroslav.stastny@microsoft.com", + "package": "@fluentui/react-portal-compat", + "commit": "ef38eed066906073d7b6e50b1d50afab1c62b3a5", + "comment": "fix: React 18 support in typings" + }, + { + "author": "behowell@microsoft.com", + "package": "@fluentui/react-progress", + "commit": "eee5716e76dc6a5bef9316546a352694bbe5750a", + "comment": "chore: Update package version of react-field" + }, + { + "author": "behowell@microsoft.com", + "package": "@fluentui/react-progress", + "commit": "5a8d7a29645b3b500eb7145d2e42ac34fcafc4c6", + "comment": "chore: Hook up FieldContext for use inside a Field" + }, + { + "author": "behowell@microsoft.com", + "package": "@fluentui/react-radio", + "commit": "5a8d7a29645b3b500eb7145d2e42ac34fcafc4c6", + "comment": "chore: Hook up FieldContext for use inside a Field" + }, + { + "author": "behowell@microsoft.com", + "package": "@fluentui/react-radio", + "commit": "eee5716e76dc6a5bef9316546a352694bbe5750a", + "comment": "chore: Update package version of react-field" + }, + { + "author": "behowell@microsoft.com", + "package": "@fluentui/react-select", + "commit": "5a8d7a29645b3b500eb7145d2e42ac34fcafc4c6", + "comment": "chore: Hook up FieldContext for use inside a Field" + }, + { + "author": "behowell@microsoft.com", + "package": "@fluentui/react-select", + "commit": "eee5716e76dc6a5bef9316546a352694bbe5750a", + "comment": "chore: Update package version of react-field" + }, + { + "author": "behowell@microsoft.com", + "package": "@fluentui/react-slider", + "commit": "eee5716e76dc6a5bef9316546a352694bbe5750a", + "comment": "chore: Update package version of react-field" + }, + { + "author": "behowell@microsoft.com", + "package": "@fluentui/react-slider", + "commit": "5a8d7a29645b3b500eb7145d2e42ac34fcafc4c6", + "comment": "chore: Hook up FieldContext for use inside a Field" + }, + { + "author": "kakrookaran@gmail.com", + "package": "@fluentui/react-spinbutton", + "commit": "4f7b946067bda04d92953cf5e9ed90059a98a8fb", + "comment": "added width 100% to input of spin button" + }, + { + "author": "behowell@microsoft.com", + "package": "@fluentui/react-spinbutton", + "commit": "eee5716e76dc6a5bef9316546a352694bbe5750a", + "comment": "chore: Update package version of react-field" + }, + { + "author": "behowell@microsoft.com", + "package": "@fluentui/react-spinbutton", + "commit": "5a8d7a29645b3b500eb7145d2e42ac34fcafc4c6", + "comment": "chore: Hook up FieldContext for use inside a Field" + }, + { + "author": "behowell@microsoft.com", + "package": "@fluentui/react-switch", + "commit": "5a8d7a29645b3b500eb7145d2e42ac34fcafc4c6", + "comment": "chore: Hook up FieldContext for use inside a Field" + }, + { + "author": "behowell@microsoft.com", + "package": "@fluentui/react-switch", + "commit": "eee5716e76dc6a5bef9316546a352694bbe5750a", + "comment": "chore: Update package version of react-field" + }, + { + "author": "gcox@microsoft.com", + "package": "@fluentui/react-tabs", + "commit": "fe885a29eaaae84a902c66ea0af118c22358228b", + "comment": "fix: Merged onClick callbacks in Tab" + }, + { + "author": "behowell@microsoft.com", + "package": "@fluentui/react-textarea", + "commit": "eee5716e76dc6a5bef9316546a352694bbe5750a", + "comment": "chore: Update package version of react-field" + }, + { + "author": "behowell@microsoft.com", + "package": "@fluentui/react-textarea", + "commit": "5a8d7a29645b3b500eb7145d2e42ac34fcafc4c6", + "comment": "chore: Hook up FieldContext for use inside a Field" + } + ], + "minor": [ + { + "author": "bernardo.sunderhus@gmail.com", + "package": "@fluentui/react-dialog", + "commit": "ba56da096fffa6b2f114a910afbf12482313ba28", + "comment": "feat: removes aria-expanded from DialogTrigger" + } + ], + "prerelease": [ + { + "author": "behowell@microsoft.com", + "package": "@fluentui/react-field", + "commit": "5a8d7a29645b3b500eb7145d2e42ac34fcafc4c6", + "comment": "feat: Add FieldContext to pass props to controls inside Field" + }, + { + "author": "behowell@microsoft.com", + "package": "@fluentui/react-field", + "commit": "eee5716e76dc6a5bef9316546a352694bbe5750a", + "comment": "chore: Bump react-field version to beta" + }, + { + "author": "behowell@microsoft.com", + "package": "@fluentui/react-skeleton", + "commit": "eee5716e76dc6a5bef9316546a352694bbe5750a", + "comment": "chore: Update package version of react-field" + } + ] + } + }, { "date": "Tue, 04 Apr 2023 18:44:47 GMT", "tag": "@fluentui/react-components_v9.18.7", diff --git a/packages/react-components/react-components/CHANGELOG.md b/packages/react-components/react-components/CHANGELOG.md index e219f28b751ac..a5f7e88b2ac64 100644 --- a/packages/react-components/react-components/CHANGELOG.md +++ b/packages/react-components/react-components/CHANGELOG.md @@ -1,9 +1,68 @@ # Change Log - @fluentui/react-components -This log was last generated on Tue, 04 Apr 2023 18:44:47 GMT and should not be manually modified. +This log was last generated on Fri, 07 Apr 2023 00:01:35 GMT and should not be manually modified. +## [9.18.8](https://github.com/microsoft/fluentui/tree/@fluentui/react-components_v9.18.8) + +Fri, 07 Apr 2023 00:01:35 GMT +[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-components_v9.18.7..@fluentui/react-components_v9.18.8) + +### Minor changes + +- `@fluentui/react-dialog` + - feat: removes aria-expanded from DialogTrigger ([PR #27372](https://github.com/microsoft/fluentui/pull/27372) by bernardo.sunderhus@gmail.com) + +### Patches + +- `@fluentui/react-checkbox` + - chore: Hook up FieldContext for use inside a Field ([PR #27399](https://github.com/microsoft/fluentui/pull/27399) by behowell@microsoft.com) + - chore: Update package version of react-field ([PR #27458](https://github.com/microsoft/fluentui/pull/27458) by behowell@microsoft.com) +- `@fluentui/react-combobox` + - chore: Update package version of react-field ([PR #27458](https://github.com/microsoft/fluentui/pull/27458) by behowell@microsoft.com) + - chore: Hook up FieldContext for use inside a Field ([PR #27399](https://github.com/microsoft/fluentui/pull/27399) by behowell@microsoft.com) +- `@fluentui/react-components` + - chore: Update package version of react-field ([PR #27458](https://github.com/microsoft/fluentui/pull/27458) by behowell@microsoft.com) + - chore: Export hooks for FieldContext ([PR #27399](https://github.com/microsoft/fluentui/pull/27399) by behowell@microsoft.com) +- `@fluentui/react-input` + - chore: Hook up FieldContext for use inside a Field ([PR #27399](https://github.com/microsoft/fluentui/pull/27399) by behowell@microsoft.com) + - chore: Update package version of react-field ([PR #27458](https://github.com/microsoft/fluentui/pull/27458) by behowell@microsoft.com) +- `@fluentui/react-portal-compat` + - fix: React 18 support in typings ([PR #27439](https://github.com/microsoft/fluentui/pull/27439) by miroslav.stastny@microsoft.com) +- `@fluentui/react-progress` + - chore: Update package version of react-field ([PR #27458](https://github.com/microsoft/fluentui/pull/27458) by behowell@microsoft.com) + - chore: Hook up FieldContext for use inside a Field ([PR #27399](https://github.com/microsoft/fluentui/pull/27399) by behowell@microsoft.com) +- `@fluentui/react-radio` + - chore: Hook up FieldContext for use inside a Field ([PR #27399](https://github.com/microsoft/fluentui/pull/27399) by behowell@microsoft.com) + - chore: Update package version of react-field ([PR #27458](https://github.com/microsoft/fluentui/pull/27458) by behowell@microsoft.com) +- `@fluentui/react-select` + - chore: Hook up FieldContext for use inside a Field ([PR #27399](https://github.com/microsoft/fluentui/pull/27399) by behowell@microsoft.com) + - chore: Update package version of react-field ([PR #27458](https://github.com/microsoft/fluentui/pull/27458) by behowell@microsoft.com) +- `@fluentui/react-slider` + - chore: Update package version of react-field ([PR #27458](https://github.com/microsoft/fluentui/pull/27458) by behowell@microsoft.com) + - chore: Hook up FieldContext for use inside a Field ([PR #27399](https://github.com/microsoft/fluentui/pull/27399) by behowell@microsoft.com) +- `@fluentui/react-spinbutton` + - added width 100% to input of spin button ([PR #27421](https://github.com/microsoft/fluentui/pull/27421) by kakrookaran@gmail.com) + - chore: Update package version of react-field ([PR #27458](https://github.com/microsoft/fluentui/pull/27458) by behowell@microsoft.com) + - chore: Hook up FieldContext for use inside a Field ([PR #27399](https://github.com/microsoft/fluentui/pull/27399) by behowell@microsoft.com) +- `@fluentui/react-switch` + - chore: Hook up FieldContext for use inside a Field ([PR #27399](https://github.com/microsoft/fluentui/pull/27399) by behowell@microsoft.com) + - chore: Update package version of react-field ([PR #27458](https://github.com/microsoft/fluentui/pull/27458) by behowell@microsoft.com) +- `@fluentui/react-tabs` + - fix: Merged onClick callbacks in Tab ([PR #27477](https://github.com/microsoft/fluentui/pull/27477) by gcox@microsoft.com) +- `@fluentui/react-textarea` + - chore: Update package version of react-field ([PR #27458](https://github.com/microsoft/fluentui/pull/27458) by behowell@microsoft.com) + - chore: Hook up FieldContext for use inside a Field ([PR #27399](https://github.com/microsoft/fluentui/pull/27399) by behowell@microsoft.com) + +### Changes + +- `@fluentui/react-field` + - feat: Add FieldContext to pass props to controls inside Field ([PR #27399](https://github.com/microsoft/fluentui/pull/27399) by behowell@microsoft.com) + - chore: Bump react-field version to beta ([PR #27458](https://github.com/microsoft/fluentui/pull/27458) by behowell@microsoft.com) +- `@fluentui/react-skeleton` + - chore: Update package version of react-field ([PR #27458](https://github.com/microsoft/fluentui/pull/27458) by behowell@microsoft.com) + ## [9.18.7](https://github.com/microsoft/fluentui/tree/@fluentui/react-components_v9.18.7) Tue, 04 Apr 2023 18:44:47 GMT diff --git a/packages/react-components/react-components/package.json b/packages/react-components/react-components/package.json index c470d98b3e9e7..8aa2f2291b86a 100644 --- a/packages/react-components/react-components/package.json +++ b/packages/react-components/react-components/package.json @@ -1,6 +1,6 @@ { "name": "@fluentui/react-components", - "version": "9.18.7", + "version": "9.18.8", "description": "Suite package for converged React components", "main": "lib-commonjs/index.js", "module": "lib/index.js", @@ -37,14 +37,14 @@ "@fluentui/react-badge": "^9.1.7", "@fluentui/react-button": "^9.3.7", "@fluentui/react-card": "^9.0.5", - "@fluentui/react-checkbox": "^9.1.7", - "@fluentui/react-combobox": "^9.2.7", - "@fluentui/react-dialog": "^9.4.3", + "@fluentui/react-checkbox": "^9.1.8", + "@fluentui/react-combobox": "^9.2.8", + "@fluentui/react-dialog": "^9.5.0", "@fluentui/react-divider": "^9.2.7", - "@fluentui/react-field": "9.0.0-beta.0", + "@fluentui/react-field": "9.0.0-beta.1", "@fluentui/react-image": "^9.1.4", "@fluentui/react-infobutton": "9.0.0-beta.25", - "@fluentui/react-input": "^9.4.7", + "@fluentui/react-input": "^9.4.8", "@fluentui/react-label": "^9.1.7", "@fluentui/react-link": "^9.0.33", "@fluentui/react-menu": "^9.7.7", @@ -53,22 +53,22 @@ "@fluentui/react-portal": "^9.2.4", "@fluentui/react-popover": "^9.5.7", "@fluentui/react-positioning": "^9.5.8", - "@fluentui/react-progress": "^9.1.7", + "@fluentui/react-progress": "^9.1.8", "@fluentui/react-provider": "^9.5.1", - "@fluentui/react-radio": "^9.1.7", - "@fluentui/react-select": "^9.1.7", + "@fluentui/react-radio": "^9.1.8", + "@fluentui/react-select": "^9.1.8", "@fluentui/react-shared-contexts": "^9.3.3", - "@fluentui/react-skeleton": "9.0.0-beta.6", - "@fluentui/react-slider": "^9.1.7", - "@fluentui/react-spinbutton": "^9.2.7", + "@fluentui/react-skeleton": "9.0.0-beta.7", + "@fluentui/react-slider": "^9.1.8", + "@fluentui/react-spinbutton": "^9.2.8", "@fluentui/react-spinner": "^9.1.7", - "@fluentui/react-switch": "^9.1.7", - "@fluentui/react-table": "^9.2.3", - "@fluentui/react-tabs": "^9.3.7", + "@fluentui/react-switch": "^9.1.8", + "@fluentui/react-table": "^9.2.4", + "@fluentui/react-tabs": "^9.3.8", "@fluentui/react-tabster": "^9.6.3", - "@fluentui/react-textarea": "^9.3.7", + "@fluentui/react-textarea": "^9.3.8", "@fluentui/react-theme": "^9.1.7", - "@fluentui/react-toolbar": "^9.1.7", + "@fluentui/react-toolbar": "^9.1.8", "@fluentui/react-tooltip": "^9.2.7", "@fluentui/react-utilities": "^9.7.3", "@fluentui/react-text": "^9.3.4", diff --git a/packages/react-components/react-data-grid-react-window/CHANGELOG.json b/packages/react-components/react-data-grid-react-window/CHANGELOG.json index bc444380b5580..09f93063b0afd 100644 --- a/packages/react-components/react-data-grid-react-window/CHANGELOG.json +++ b/packages/react-components/react-data-grid-react-window/CHANGELOG.json @@ -1,6 +1,27 @@ { "name": "@fluentui/react-data-grid-react-window", "entries": [ + { + "date": "Fri, 07 Apr 2023 00:01:45 GMT", + "tag": "@fluentui/react-data-grid-react-window_v9.0.0-beta.20", + "version": "9.0.0-beta.20", + "comments": { + "prerelease": [ + { + "author": "beachball", + "package": "@fluentui/react-data-grid-react-window", + "comment": "Bump @fluentui/react-table to v9.2.4", + "commit": "7a46cab3d31a233b89b7188e994b24712af5393c" + }, + { + "author": "beachball", + "package": "@fluentui/react-data-grid-react-window", + "comment": "Bump @fluentui/react-components to v9.18.8", + "commit": "7a46cab3d31a233b89b7188e994b24712af5393c" + } + ] + } + }, { "date": "Tue, 04 Apr 2023 18:44:50 GMT", "tag": "@fluentui/react-data-grid-react-window_v9.0.0-beta.19", diff --git a/packages/react-components/react-data-grid-react-window/CHANGELOG.md b/packages/react-components/react-data-grid-react-window/CHANGELOG.md index e9fcfdc5a115d..e8b3cde1bd2ca 100644 --- a/packages/react-components/react-data-grid-react-window/CHANGELOG.md +++ b/packages/react-components/react-data-grid-react-window/CHANGELOG.md @@ -1,9 +1,19 @@ # Change Log - @fluentui/react-data-grid-react-window -This log was last generated on Tue, 04 Apr 2023 18:44:50 GMT and should not be manually modified. +This log was last generated on Fri, 07 Apr 2023 00:01:45 GMT and should not be manually modified. +## [9.0.0-beta.20](https://github.com/microsoft/fluentui/tree/@fluentui/react-data-grid-react-window_v9.0.0-beta.20) + +Fri, 07 Apr 2023 00:01:45 GMT +[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-data-grid-react-window_v9.0.0-beta.19..@fluentui/react-data-grid-react-window_v9.0.0-beta.20) + +### Changes + +- Bump @fluentui/react-table to v9.2.4 ([PR #27420](https://github.com/microsoft/fluentui/pull/27420) by beachball) +- Bump @fluentui/react-components to v9.18.8 ([PR #27420](https://github.com/microsoft/fluentui/pull/27420) by beachball) + ## [9.0.0-beta.19](https://github.com/microsoft/fluentui/tree/@fluentui/react-data-grid-react-window_v9.0.0-beta.19) Tue, 04 Apr 2023 18:44:50 GMT diff --git a/packages/react-components/react-data-grid-react-window/package.json b/packages/react-components/react-data-grid-react-window/package.json index 6228874f76ad0..3a2824cb941ea 100644 --- a/packages/react-components/react-data-grid-react-window/package.json +++ b/packages/react-components/react-data-grid-react-window/package.json @@ -1,6 +1,6 @@ { "name": "@fluentui/react-data-grid-react-window", - "version": "9.0.0-beta.19", + "version": "9.0.0-beta.20", "description": "Virtualized DataGrid components and utilities powered by react-window", "main": "lib-commonjs/index.js", "module": "lib/index.js", @@ -29,13 +29,13 @@ "@fluentui/scripts-tasks": "*" }, "dependencies": { - "@fluentui/react-table": "^9.2.3", + "@fluentui/react-table": "^9.2.4", "@fluentui/react-utilities": "^9.7.3", "@swc/helpers": "^0.4.14", "react-window": "^1.8.6" }, "peerDependencies": { - "@fluentui/react-components": "^9.18.7", + "@fluentui/react-components": "^9.18.8", "@types/react": ">=16.8.0 <19.0.0", "@types/react-dom": ">=16.8.0 <19.0.0", "react": ">=16.8.0 <19.0.0", diff --git a/packages/react-components/react-datepicker-compat/package.json b/packages/react-components/react-datepicker-compat/package.json index 4d3ca65b93897..8967193f6b8c6 100644 --- a/packages/react-components/react-datepicker-compat/package.json +++ b/packages/react-components/react-datepicker-compat/package.json @@ -38,13 +38,13 @@ "@fluentui/react-theme": "^9.1.7", "@fluentui/react-utilities": "^9.7.3", "@fluentui/keyboard-keys": "^9.0.2", - "@fluentui/react-field": "9.0.0-beta.0", + "@fluentui/react-field": "9.0.0-beta.1", "@fluentui/react-icons": "^2.0.196", "@fluentui/react-shared-contexts": "^9.3.3", "@fluentui/react-tabster": "^9.6.3", "@fluentui/react-popover": "^9.5.7", "@fluentui/react-positioning": "^9.5.8", - "@fluentui/react-input": "^9.4.7", + "@fluentui/react-input": "^9.4.8", "@griffel/react": "^1.5.2", "@swc/helpers": "^0.4.14" }, diff --git a/packages/react-components/react-dialog/CHANGELOG.json b/packages/react-components/react-dialog/CHANGELOG.json index 722af24a0f6b1..22105698aa0a0 100644 --- a/packages/react-components/react-dialog/CHANGELOG.json +++ b/packages/react-components/react-dialog/CHANGELOG.json @@ -1,6 +1,21 @@ { "name": "@fluentui/react-dialog", "entries": [ + { + "date": "Fri, 07 Apr 2023 00:01:38 GMT", + "tag": "@fluentui/react-dialog_v9.5.0", + "version": "9.5.0", + "comments": { + "minor": [ + { + "author": "bernardo.sunderhus@gmail.com", + "package": "@fluentui/react-dialog", + "commit": "ba56da096fffa6b2f114a910afbf12482313ba28", + "comment": "feat: removes aria-expanded from DialogTrigger" + } + ] + } + }, { "date": "Tue, 04 Apr 2023 18:44:48 GMT", "tag": "@fluentui/react-dialog_v9.4.3", diff --git a/packages/react-components/react-dialog/CHANGELOG.md b/packages/react-components/react-dialog/CHANGELOG.md index 5d292c5fdacd6..579e27be5b19b 100644 --- a/packages/react-components/react-dialog/CHANGELOG.md +++ b/packages/react-components/react-dialog/CHANGELOG.md @@ -1,9 +1,18 @@ # Change Log - @fluentui/react-dialog -This log was last generated on Tue, 04 Apr 2023 18:44:48 GMT and should not be manually modified. +This log was last generated on Fri, 07 Apr 2023 00:01:38 GMT and should not be manually modified. +## [9.5.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-dialog_v9.5.0) + +Fri, 07 Apr 2023 00:01:38 GMT +[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-dialog_v9.4.3..@fluentui/react-dialog_v9.5.0) + +### Minor changes + +- feat: removes aria-expanded from DialogTrigger ([PR #27372](https://github.com/microsoft/fluentui/pull/27372) by bernardo.sunderhus@gmail.com) + ## [9.4.3](https://github.com/microsoft/fluentui/tree/@fluentui/react-dialog_v9.4.3) Tue, 04 Apr 2023 18:44:48 GMT diff --git a/packages/react-components/react-dialog/package.json b/packages/react-components/react-dialog/package.json index 0d983be711f3c..d57ddbdc505bb 100644 --- a/packages/react-components/react-dialog/package.json +++ b/packages/react-components/react-dialog/package.json @@ -1,6 +1,6 @@ { "name": "@fluentui/react-dialog", - "version": "9.4.3", + "version": "9.5.0", "description": "Dialog component for Fluent UI React", "main": "lib-commonjs/index.js", "module": "lib/index.js", diff --git a/packages/react-components/react-field/CHANGELOG.json b/packages/react-components/react-field/CHANGELOG.json index 2ff9036deb595..ad3a1a91c75fe 100644 --- a/packages/react-components/react-field/CHANGELOG.json +++ b/packages/react-components/react-field/CHANGELOG.json @@ -1,6 +1,27 @@ { "name": "@fluentui/react-field", "entries": [ + { + "date": "Fri, 07 Apr 2023 00:01:38 GMT", + "tag": "@fluentui/react-field_v9.0.0-beta.1", + "version": "9.0.0-beta.1", + "comments": { + "prerelease": [ + { + "author": "behowell@microsoft.com", + "package": "@fluentui/react-field", + "commit": "5a8d7a29645b3b500eb7145d2e42ac34fcafc4c6", + "comment": "feat: Add FieldContext to pass props to controls inside Field" + }, + { + "author": "behowell@microsoft.com", + "package": "@fluentui/react-field", + "commit": "eee5716e76dc6a5bef9316546a352694bbe5750a", + "comment": "chore: Bump react-field version to beta" + } + ] + } + }, { "date": "Tue, 04 Apr 2023 18:44:50 GMT", "tag": "@fluentui/react-field_v9.0.0-alpha.29", diff --git a/packages/react-components/react-field/CHANGELOG.md b/packages/react-components/react-field/CHANGELOG.md index 7513ce5843ba2..5f55509fe6a82 100644 --- a/packages/react-components/react-field/CHANGELOG.md +++ b/packages/react-components/react-field/CHANGELOG.md @@ -1,9 +1,19 @@ # Change Log - @fluentui/react-field -This log was last generated on Tue, 04 Apr 2023 18:44:50 GMT and should not be manually modified. +This log was last generated on Fri, 07 Apr 2023 00:01:38 GMT and should not be manually modified. +## [9.0.0-beta.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-field_v9.0.0-beta.1) + +Fri, 07 Apr 2023 00:01:38 GMT +[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-field_v9.0.0-alpha.29..@fluentui/react-field_v9.0.0-beta.1) + +### Changes + +- feat: Add FieldContext to pass props to controls inside Field ([PR #27399](https://github.com/microsoft/fluentui/pull/27399) by behowell@microsoft.com) +- chore: Bump react-field version to beta ([PR #27458](https://github.com/microsoft/fluentui/pull/27458) by behowell@microsoft.com) + ## [9.0.0-alpha.29](https://github.com/microsoft/fluentui/tree/@fluentui/react-field_v9.0.0-alpha.29) Tue, 04 Apr 2023 18:44:50 GMT diff --git a/packages/react-components/react-field/package.json b/packages/react-components/react-field/package.json index 64ebaf029d4ec..40ac2e24c2516 100644 --- a/packages/react-components/react-field/package.json +++ b/packages/react-components/react-field/package.json @@ -1,6 +1,6 @@ { "name": "@fluentui/react-field", - "version": "9.0.0-beta.0", + "version": "9.0.0-beta.1", "description": "Fluent UI Field components", "main": "lib-commonjs/index.js", "module": "lib/index.js", diff --git a/packages/react-components/react-input/CHANGELOG.json b/packages/react-components/react-input/CHANGELOG.json index 35cf3f0236e2d..e97333db37510 100644 --- a/packages/react-components/react-input/CHANGELOG.json +++ b/packages/react-components/react-input/CHANGELOG.json @@ -1,6 +1,33 @@ { "name": "@fluentui/react-input", "entries": [ + { + "date": "Fri, 07 Apr 2023 00:01:39 GMT", + "tag": "@fluentui/react-input_v9.4.8", + "version": "9.4.8", + "comments": { + "patch": [ + { + "author": "behowell@microsoft.com", + "package": "@fluentui/react-input", + "commit": "5a8d7a29645b3b500eb7145d2e42ac34fcafc4c6", + "comment": "chore: Hook up FieldContext for use inside a Field" + }, + { + "author": "behowell@microsoft.com", + "package": "@fluentui/react-input", + "commit": "eee5716e76dc6a5bef9316546a352694bbe5750a", + "comment": "chore: Update package version of react-field" + }, + { + "author": "beachball", + "package": "@fluentui/react-input", + "comment": "Bump @fluentui/react-field to v9.0.0-beta.1", + "commit": "7a46cab3d31a233b89b7188e994b24712af5393c" + } + ] + } + }, { "date": "Tue, 04 Apr 2023 18:44:50 GMT", "tag": "@fluentui/react-input_v9.4.7", diff --git a/packages/react-components/react-input/CHANGELOG.md b/packages/react-components/react-input/CHANGELOG.md index 655e92489633a..25d9354ef07fa 100644 --- a/packages/react-components/react-input/CHANGELOG.md +++ b/packages/react-components/react-input/CHANGELOG.md @@ -1,9 +1,20 @@ # Change Log - @fluentui/react-input -This log was last generated on Tue, 04 Apr 2023 18:44:50 GMT and should not be manually modified. +This log was last generated on Fri, 07 Apr 2023 00:01:39 GMT and should not be manually modified. +## [9.4.8](https://github.com/microsoft/fluentui/tree/@fluentui/react-input_v9.4.8) + +Fri, 07 Apr 2023 00:01:39 GMT +[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-input_v9.4.7..@fluentui/react-input_v9.4.8) + +### Patches + +- chore: Hook up FieldContext for use inside a Field ([PR #27399](https://github.com/microsoft/fluentui/pull/27399) by behowell@microsoft.com) +- chore: Update package version of react-field ([PR #27458](https://github.com/microsoft/fluentui/pull/27458) by behowell@microsoft.com) +- Bump @fluentui/react-field to v9.0.0-beta.1 ([PR #27420](https://github.com/microsoft/fluentui/pull/27420) by beachball) + ## [9.4.7](https://github.com/microsoft/fluentui/tree/@fluentui/react-input_v9.4.7) Tue, 04 Apr 2023 18:44:50 GMT diff --git a/packages/react-components/react-input/package.json b/packages/react-components/react-input/package.json index cc7be4e8bbf68..81518ecf933bc 100644 --- a/packages/react-components/react-input/package.json +++ b/packages/react-components/react-input/package.json @@ -1,6 +1,6 @@ { "name": "@fluentui/react-input", - "version": "9.4.7", + "version": "9.4.8", "description": "Fluent UI React Input component", "main": "lib-commonjs/index.js", "module": "lib/index.js", @@ -33,7 +33,7 @@ "@fluentui/scripts-tasks": "*" }, "dependencies": { - "@fluentui/react-field": "9.0.0-beta.0", + "@fluentui/react-field": "9.0.0-beta.1", "@fluentui/react-shared-contexts": "^9.3.3", "@fluentui/react-theme": "^9.1.7", "@fluentui/react-utilities": "^9.7.3", diff --git a/packages/react-components/react-migration-v0-v9/package.json b/packages/react-components/react-migration-v0-v9/package.json index 768d687cec816..48b5590f12f93 100644 --- a/packages/react-components/react-migration-v0-v9/package.json +++ b/packages/react-components/react-migration-v0-v9/package.json @@ -37,7 +37,7 @@ "@fluentui/react-theme": "^9.1.7", "@fluentui/react-utilities": "^9.7.3", "@griffel/react": "^1.5.2", - "@fluentui/react-components": "^9.18.7", + "@fluentui/react-components": "^9.18.8", "@fluentui/react-northstar": "^0.66.4", "@swc/helpers": "^0.4.14" }, diff --git a/packages/react-components/react-migration-v8-v9/CHANGELOG.json b/packages/react-components/react-migration-v8-v9/CHANGELOG.json index c6bb6c04a649f..18b4023fc789d 100644 --- a/packages/react-components/react-migration-v8-v9/CHANGELOG.json +++ b/packages/react-components/react-migration-v8-v9/CHANGELOG.json @@ -1,6 +1,21 @@ { "name": "@fluentui/react-migration-v8-v9", "entries": [ + { + "date": "Fri, 07 Apr 2023 00:01:45 GMT", + "tag": "@fluentui/react-migration-v8-v9_v9.2.7", + "version": "9.2.7", + "comments": { + "patch": [ + { + "author": "beachball", + "package": "@fluentui/react-migration-v8-v9", + "comment": "Bump @fluentui/react-components to v9.18.8", + "commit": "7a46cab3d31a233b89b7188e994b24712af5393c" + } + ] + } + }, { "date": "Tue, 04 Apr 2023 18:44:50 GMT", "tag": "@fluentui/react-migration-v8-v9_v9.2.6", diff --git a/packages/react-components/react-migration-v8-v9/CHANGELOG.md b/packages/react-components/react-migration-v8-v9/CHANGELOG.md index 272661eebe15d..3bd780f0b88ca 100644 --- a/packages/react-components/react-migration-v8-v9/CHANGELOG.md +++ b/packages/react-components/react-migration-v8-v9/CHANGELOG.md @@ -1,9 +1,18 @@ # Change Log - @fluentui/react-migration-v8-v9 -This log was last generated on Tue, 04 Apr 2023 18:44:50 GMT and should not be manually modified. +This log was last generated on Fri, 07 Apr 2023 00:01:45 GMT and should not be manually modified. +## [9.2.7](https://github.com/microsoft/fluentui/tree/@fluentui/react-migration-v8-v9_v9.2.7) + +Fri, 07 Apr 2023 00:01:45 GMT +[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-migration-v8-v9_v9.2.6..@fluentui/react-migration-v8-v9_v9.2.7) + +### Patches + +- Bump @fluentui/react-components to v9.18.8 ([PR #27420](https://github.com/microsoft/fluentui/pull/27420) by beachball) + ## [9.2.6](https://github.com/microsoft/fluentui/tree/@fluentui/react-migration-v8-v9_v9.2.6) Tue, 04 Apr 2023 18:44:50 GMT diff --git a/packages/react-components/react-migration-v8-v9/package.json b/packages/react-components/react-migration-v8-v9/package.json index 70a849474fa83..8847dd784365b 100644 --- a/packages/react-components/react-migration-v8-v9/package.json +++ b/packages/react-components/react-migration-v8-v9/package.json @@ -1,6 +1,6 @@ { "name": "@fluentui/react-migration-v8-v9", - "version": "9.2.6", + "version": "9.2.7", "description": "Migration shim components and methods for hybrid v8/v9 applications building on Fluent UI React.", "main": "lib-commonjs/index.js", "module": "lib/index.js", @@ -34,7 +34,7 @@ "@ctrl/tinycolor": "3.3.4", "@fluentui/fluent2-theme": "^8.106.9", "@fluentui/react": "^8.107.2", - "@fluentui/react-components": "^9.18.7", + "@fluentui/react-components": "^9.18.8", "@fluentui/react-icons": "^2.0.196", "@fluentui/react-theme": "^9.1.7", "@fluentui/react-utilities": "^9.7.3", diff --git a/packages/react-components/react-portal-compat/CHANGELOG.json b/packages/react-components/react-portal-compat/CHANGELOG.json index 68befbff32051..31e40c7f538d7 100644 --- a/packages/react-components/react-portal-compat/CHANGELOG.json +++ b/packages/react-components/react-portal-compat/CHANGELOG.json @@ -1,6 +1,27 @@ { "name": "@fluentui/react-portal-compat", "entries": [ + { + "date": "Fri, 07 Apr 2023 00:01:39 GMT", + "tag": "@fluentui/react-portal-compat_v9.0.51", + "version": "9.0.51", + "comments": { + "patch": [ + { + "author": "miroslav.stastny@microsoft.com", + "package": "@fluentui/react-portal-compat", + "commit": "ef38eed066906073d7b6e50b1d50afab1c62b3a5", + "comment": "fix: React 18 support in typings" + }, + { + "author": "beachball", + "package": "@fluentui/react-portal-compat", + "comment": "Bump @fluentui/react-components to v9.18.8", + "commit": "7a46cab3d31a233b89b7188e994b24712af5393c" + } + ] + } + }, { "date": "Tue, 04 Apr 2023 18:44:50 GMT", "tag": "@fluentui/react-portal-compat_v9.0.50", diff --git a/packages/react-components/react-portal-compat/CHANGELOG.md b/packages/react-components/react-portal-compat/CHANGELOG.md index 9a5eb4eca1c92..4861e591f7c9a 100644 --- a/packages/react-components/react-portal-compat/CHANGELOG.md +++ b/packages/react-components/react-portal-compat/CHANGELOG.md @@ -1,9 +1,19 @@ # Change Log - @fluentui/react-portal-compat -This log was last generated on Tue, 04 Apr 2023 18:44:50 GMT and should not be manually modified. +This log was last generated on Fri, 07 Apr 2023 00:01:39 GMT and should not be manually modified. +## [9.0.51](https://github.com/microsoft/fluentui/tree/@fluentui/react-portal-compat_v9.0.51) + +Fri, 07 Apr 2023 00:01:39 GMT +[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-portal-compat_v9.0.50..@fluentui/react-portal-compat_v9.0.51) + +### Patches + +- fix: React 18 support in typings ([PR #27439](https://github.com/microsoft/fluentui/pull/27439) by miroslav.stastny@microsoft.com) +- Bump @fluentui/react-components to v9.18.8 ([PR #27420](https://github.com/microsoft/fluentui/pull/27420) by beachball) + ## [9.0.50](https://github.com/microsoft/fluentui/tree/@fluentui/react-portal-compat_v9.0.50) Tue, 04 Apr 2023 18:44:50 GMT diff --git a/packages/react-components/react-portal-compat/package.json b/packages/react-components/react-portal-compat/package.json index 8785e4e74e514..f8736a50dc366 100644 --- a/packages/react-components/react-portal-compat/package.json +++ b/packages/react-components/react-portal-compat/package.json @@ -1,6 +1,6 @@ { "name": "@fluentui/react-portal-compat", - "version": "9.0.50", + "version": "9.0.51", "description": "A package that contains compatibility layer for React Portals", "main": "lib-commonjs/index.js", "module": "lib/index.js", @@ -26,7 +26,7 @@ }, "devDependencies": { "@fluentui/eslint-plugin": "*", - "@fluentui/react-components": "^9.18.7", + "@fluentui/react-components": "^9.18.8", "@fluentui/react-shared-contexts": "^9.3.3", "@fluentui/scripts-api-extractor": "*", "@fluentui/scripts-cypress": "*", @@ -38,7 +38,7 @@ "@swc/helpers": "^0.4.14" }, "peerDependencies": { - "@fluentui/react-components": "^9.18.7", + "@fluentui/react-components": "^9.18.8", "@types/react": ">=16.8.0 <19.0.0", "react": ">=16.8.0 <19.0.0" }, diff --git a/packages/react-components/react-progress/CHANGELOG.json b/packages/react-components/react-progress/CHANGELOG.json index ecd159ed81ef0..0b1a0df62033e 100644 --- a/packages/react-components/react-progress/CHANGELOG.json +++ b/packages/react-components/react-progress/CHANGELOG.json @@ -1,6 +1,33 @@ { "name": "@fluentui/react-progress", "entries": [ + { + "date": "Fri, 07 Apr 2023 00:01:40 GMT", + "tag": "@fluentui/react-progress_v9.1.8", + "version": "9.1.8", + "comments": { + "patch": [ + { + "author": "behowell@microsoft.com", + "package": "@fluentui/react-progress", + "commit": "eee5716e76dc6a5bef9316546a352694bbe5750a", + "comment": "chore: Update package version of react-field" + }, + { + "author": "behowell@microsoft.com", + "package": "@fluentui/react-progress", + "commit": "5a8d7a29645b3b500eb7145d2e42ac34fcafc4c6", + "comment": "chore: Hook up FieldContext for use inside a Field" + }, + { + "author": "beachball", + "package": "@fluentui/react-progress", + "comment": "Bump @fluentui/react-field to v9.0.0-beta.1", + "commit": "7a46cab3d31a233b89b7188e994b24712af5393c" + } + ] + } + }, { "date": "Tue, 04 Apr 2023 18:44:50 GMT", "tag": "@fluentui/react-progress_v9.1.7", diff --git a/packages/react-components/react-progress/CHANGELOG.md b/packages/react-components/react-progress/CHANGELOG.md index c76f57669cb2c..a849864d8021c 100644 --- a/packages/react-components/react-progress/CHANGELOG.md +++ b/packages/react-components/react-progress/CHANGELOG.md @@ -1,9 +1,20 @@ # Change Log - @fluentui/react-progress -This log was last generated on Tue, 04 Apr 2023 18:44:50 GMT and should not be manually modified. +This log was last generated on Fri, 07 Apr 2023 00:01:40 GMT and should not be manually modified. +## [9.1.8](https://github.com/microsoft/fluentui/tree/@fluentui/react-progress_v9.1.8) + +Fri, 07 Apr 2023 00:01:40 GMT +[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-progress_v9.1.7..@fluentui/react-progress_v9.1.8) + +### Patches + +- chore: Update package version of react-field ([PR #27458](https://github.com/microsoft/fluentui/pull/27458) by behowell@microsoft.com) +- chore: Hook up FieldContext for use inside a Field ([PR #27399](https://github.com/microsoft/fluentui/pull/27399) by behowell@microsoft.com) +- Bump @fluentui/react-field to v9.0.0-beta.1 ([PR #27420](https://github.com/microsoft/fluentui/pull/27420) by beachball) + ## [9.1.7](https://github.com/microsoft/fluentui/tree/@fluentui/react-progress_v9.1.7) Tue, 04 Apr 2023 18:44:50 GMT diff --git a/packages/react-components/react-progress/package.json b/packages/react-components/react-progress/package.json index c7c34f3c2ea79..2a01ce4210c20 100644 --- a/packages/react-components/react-progress/package.json +++ b/packages/react-components/react-progress/package.json @@ -1,6 +1,6 @@ { "name": "@fluentui/react-progress", - "version": "9.1.7", + "version": "9.1.8", "description": "Progress component for FluentUI v9", "main": "lib-commonjs/index.js", "module": "lib/index.js", @@ -32,7 +32,7 @@ "@fluentui/scripts-tasks": "*" }, "dependencies": { - "@fluentui/react-field": "9.0.0-beta.0", + "@fluentui/react-field": "9.0.0-beta.1", "@fluentui/react-shared-contexts": "^9.3.3", "@fluentui/react-theme": "^9.1.7", "@fluentui/react-utilities": "^9.7.3", diff --git a/packages/react-components/react-radio/CHANGELOG.json b/packages/react-components/react-radio/CHANGELOG.json index 233371a1a3ccb..e0401de75d053 100644 --- a/packages/react-components/react-radio/CHANGELOG.json +++ b/packages/react-components/react-radio/CHANGELOG.json @@ -1,6 +1,33 @@ { "name": "@fluentui/react-radio", "entries": [ + { + "date": "Fri, 07 Apr 2023 00:01:40 GMT", + "tag": "@fluentui/react-radio_v9.1.8", + "version": "9.1.8", + "comments": { + "patch": [ + { + "author": "behowell@microsoft.com", + "package": "@fluentui/react-radio", + "commit": "5a8d7a29645b3b500eb7145d2e42ac34fcafc4c6", + "comment": "chore: Hook up FieldContext for use inside a Field" + }, + { + "author": "behowell@microsoft.com", + "package": "@fluentui/react-radio", + "commit": "eee5716e76dc6a5bef9316546a352694bbe5750a", + "comment": "chore: Update package version of react-field" + }, + { + "author": "beachball", + "package": "@fluentui/react-radio", + "comment": "Bump @fluentui/react-field to v9.0.0-beta.1", + "commit": "7a46cab3d31a233b89b7188e994b24712af5393c" + } + ] + } + }, { "date": "Tue, 04 Apr 2023 18:44:50 GMT", "tag": "@fluentui/react-radio_v9.1.7", diff --git a/packages/react-components/react-radio/CHANGELOG.md b/packages/react-components/react-radio/CHANGELOG.md index 0090cedfde4ad..39ae521451396 100644 --- a/packages/react-components/react-radio/CHANGELOG.md +++ b/packages/react-components/react-radio/CHANGELOG.md @@ -1,9 +1,20 @@ # Change Log - @fluentui/react-radio -This log was last generated on Tue, 04 Apr 2023 18:44:50 GMT and should not be manually modified. +This log was last generated on Fri, 07 Apr 2023 00:01:40 GMT and should not be manually modified. +## [9.1.8](https://github.com/microsoft/fluentui/tree/@fluentui/react-radio_v9.1.8) + +Fri, 07 Apr 2023 00:01:40 GMT +[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-radio_v9.1.7..@fluentui/react-radio_v9.1.8) + +### Patches + +- chore: Hook up FieldContext for use inside a Field ([PR #27399](https://github.com/microsoft/fluentui/pull/27399) by behowell@microsoft.com) +- chore: Update package version of react-field ([PR #27458](https://github.com/microsoft/fluentui/pull/27458) by behowell@microsoft.com) +- Bump @fluentui/react-field to v9.0.0-beta.1 ([PR #27420](https://github.com/microsoft/fluentui/pull/27420) by beachball) + ## [9.1.7](https://github.com/microsoft/fluentui/tree/@fluentui/react-radio_v9.1.7) Tue, 04 Apr 2023 18:44:50 GMT diff --git a/packages/react-components/react-radio/package.json b/packages/react-components/react-radio/package.json index cc5dc7b834a30..b2ce7c3f2bd5e 100644 --- a/packages/react-components/react-radio/package.json +++ b/packages/react-components/react-radio/package.json @@ -1,6 +1,6 @@ { "name": "@fluentui/react-radio", - "version": "9.1.7", + "version": "9.1.8", "description": "Fluent UI Radio component", "main": "lib-commonjs/index.js", "module": "lib/index.js", @@ -33,7 +33,7 @@ }, "dependencies": { "@fluentui/react-context-selector": "^9.1.16", - "@fluentui/react-field": "9.0.0-beta.0", + "@fluentui/react-field": "9.0.0-beta.1", "@fluentui/react-icons": "^2.0.196", "@fluentui/react-label": "^9.1.7", "@fluentui/react-shared-contexts": "^9.3.3", diff --git a/packages/react-components/react-select/CHANGELOG.json b/packages/react-components/react-select/CHANGELOG.json index 34f47b3705f10..d35c379b5a8ee 100644 --- a/packages/react-components/react-select/CHANGELOG.json +++ b/packages/react-components/react-select/CHANGELOG.json @@ -1,6 +1,33 @@ { "name": "@fluentui/react-select", "entries": [ + { + "date": "Fri, 07 Apr 2023 00:01:41 GMT", + "tag": "@fluentui/react-select_v9.1.8", + "version": "9.1.8", + "comments": { + "patch": [ + { + "author": "behowell@microsoft.com", + "package": "@fluentui/react-select", + "commit": "5a8d7a29645b3b500eb7145d2e42ac34fcafc4c6", + "comment": "chore: Hook up FieldContext for use inside a Field" + }, + { + "author": "behowell@microsoft.com", + "package": "@fluentui/react-select", + "commit": "eee5716e76dc6a5bef9316546a352694bbe5750a", + "comment": "chore: Update package version of react-field" + }, + { + "author": "beachball", + "package": "@fluentui/react-select", + "comment": "Bump @fluentui/react-field to v9.0.0-beta.1", + "commit": "7a46cab3d31a233b89b7188e994b24712af5393c" + } + ] + } + }, { "date": "Tue, 04 Apr 2023 18:44:50 GMT", "tag": "@fluentui/react-select_v9.1.7", diff --git a/packages/react-components/react-select/CHANGELOG.md b/packages/react-components/react-select/CHANGELOG.md index 00928bff68647..b66ea90130f0c 100644 --- a/packages/react-components/react-select/CHANGELOG.md +++ b/packages/react-components/react-select/CHANGELOG.md @@ -1,9 +1,20 @@ # Change Log - @fluentui/react-select -This log was last generated on Tue, 04 Apr 2023 18:44:50 GMT and should not be manually modified. +This log was last generated on Fri, 07 Apr 2023 00:01:41 GMT and should not be manually modified. +## [9.1.8](https://github.com/microsoft/fluentui/tree/@fluentui/react-select_v9.1.8) + +Fri, 07 Apr 2023 00:01:41 GMT +[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-select_v9.1.7..@fluentui/react-select_v9.1.8) + +### Patches + +- chore: Hook up FieldContext for use inside a Field ([PR #27399](https://github.com/microsoft/fluentui/pull/27399) by behowell@microsoft.com) +- chore: Update package version of react-field ([PR #27458](https://github.com/microsoft/fluentui/pull/27458) by behowell@microsoft.com) +- Bump @fluentui/react-field to v9.0.0-beta.1 ([PR #27420](https://github.com/microsoft/fluentui/pull/27420) by beachball) + ## [9.1.7](https://github.com/microsoft/fluentui/tree/@fluentui/react-select_v9.1.7) Tue, 04 Apr 2023 18:44:50 GMT diff --git a/packages/react-components/react-select/package.json b/packages/react-components/react-select/package.json index 0834329204c2f..8162aa36386ce 100644 --- a/packages/react-components/react-select/package.json +++ b/packages/react-components/react-select/package.json @@ -1,6 +1,6 @@ { "name": "@fluentui/react-select", - "version": "9.1.7", + "version": "9.1.8", "description": "Fluent UI React Select component", "main": "lib-commonjs/index.js", "module": "lib/index.js", @@ -32,7 +32,7 @@ "@fluentui/scripts-tasks": "*" }, "dependencies": { - "@fluentui/react-field": "9.0.0-beta.0", + "@fluentui/react-field": "9.0.0-beta.1", "@fluentui/react-icons": "^2.0.196", "@fluentui/react-shared-contexts": "^9.3.3", "@fluentui/react-theme": "^9.1.7", diff --git a/packages/react-components/react-skeleton/CHANGELOG.json b/packages/react-components/react-skeleton/CHANGELOG.json index 5202f9b76ce5a..937d05249a66a 100644 --- a/packages/react-components/react-skeleton/CHANGELOG.json +++ b/packages/react-components/react-skeleton/CHANGELOG.json @@ -1,6 +1,27 @@ { "name": "@fluentui/react-skeleton", "entries": [ + { + "date": "Fri, 07 Apr 2023 00:01:42 GMT", + "tag": "@fluentui/react-skeleton_v9.0.0-beta.7", + "version": "9.0.0-beta.7", + "comments": { + "prerelease": [ + { + "author": "behowell@microsoft.com", + "package": "@fluentui/react-skeleton", + "commit": "eee5716e76dc6a5bef9316546a352694bbe5750a", + "comment": "chore: Update package version of react-field" + }, + { + "author": "beachball", + "package": "@fluentui/react-skeleton", + "comment": "Bump @fluentui/react-field to v9.0.0-beta.1", + "commit": "7a46cab3d31a233b89b7188e994b24712af5393c" + } + ] + } + }, { "date": "Tue, 04 Apr 2023 18:44:50 GMT", "tag": "@fluentui/react-skeleton_v9.0.0-beta.6", diff --git a/packages/react-components/react-skeleton/CHANGELOG.md b/packages/react-components/react-skeleton/CHANGELOG.md index ea223b1af6192..24e0f0c467a55 100644 --- a/packages/react-components/react-skeleton/CHANGELOG.md +++ b/packages/react-components/react-skeleton/CHANGELOG.md @@ -1,9 +1,19 @@ # Change Log - @fluentui/react-skeleton -This log was last generated on Tue, 04 Apr 2023 18:44:50 GMT and should not be manually modified. +This log was last generated on Fri, 07 Apr 2023 00:01:42 GMT and should not be manually modified. +## [9.0.0-beta.7](https://github.com/microsoft/fluentui/tree/@fluentui/react-skeleton_v9.0.0-beta.7) + +Fri, 07 Apr 2023 00:01:42 GMT +[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-skeleton_v9.0.0-beta.6..@fluentui/react-skeleton_v9.0.0-beta.7) + +### Changes + +- chore: Update package version of react-field ([PR #27458](https://github.com/microsoft/fluentui/pull/27458) by behowell@microsoft.com) +- Bump @fluentui/react-field to v9.0.0-beta.1 ([PR #27420](https://github.com/microsoft/fluentui/pull/27420) by beachball) + ## [9.0.0-beta.6](https://github.com/microsoft/fluentui/tree/@fluentui/react-skeleton_v9.0.0-beta.6) Tue, 04 Apr 2023 18:44:50 GMT diff --git a/packages/react-components/react-skeleton/package.json b/packages/react-components/react-skeleton/package.json index bc9586d1c725d..14a6dc6e2e022 100644 --- a/packages/react-components/react-skeleton/package.json +++ b/packages/react-components/react-skeleton/package.json @@ -1,6 +1,6 @@ { "name": "@fluentui/react-skeleton", - "version": "9.0.0-beta.6", + "version": "9.0.0-beta.7", "description": "Converged v9 Skeleton Component", "main": "lib-commonjs/index.js", "module": "lib/index.js", @@ -31,7 +31,7 @@ "@fluentui/scripts-tasks": "*" }, "dependencies": { - "@fluentui/react-field": "9.0.0-beta.0", + "@fluentui/react-field": "9.0.0-beta.1", "@fluentui/react-shared-contexts": "^9.3.3", "@fluentui/react-theme": "^9.1.7", "@fluentui/react-utilities": "^9.7.3", diff --git a/packages/react-components/react-slider/CHANGELOG.json b/packages/react-components/react-slider/CHANGELOG.json index 0fd4ff825030e..f549fcbd68c14 100644 --- a/packages/react-components/react-slider/CHANGELOG.json +++ b/packages/react-components/react-slider/CHANGELOG.json @@ -1,6 +1,33 @@ { "name": "@fluentui/react-slider", "entries": [ + { + "date": "Fri, 07 Apr 2023 00:01:42 GMT", + "tag": "@fluentui/react-slider_v9.1.8", + "version": "9.1.8", + "comments": { + "patch": [ + { + "author": "behowell@microsoft.com", + "package": "@fluentui/react-slider", + "commit": "eee5716e76dc6a5bef9316546a352694bbe5750a", + "comment": "chore: Update package version of react-field" + }, + { + "author": "behowell@microsoft.com", + "package": "@fluentui/react-slider", + "commit": "5a8d7a29645b3b500eb7145d2e42ac34fcafc4c6", + "comment": "chore: Hook up FieldContext for use inside a Field" + }, + { + "author": "beachball", + "package": "@fluentui/react-slider", + "comment": "Bump @fluentui/react-field to v9.0.0-beta.1", + "commit": "7a46cab3d31a233b89b7188e994b24712af5393c" + } + ] + } + }, { "date": "Tue, 04 Apr 2023 18:44:50 GMT", "tag": "@fluentui/react-slider_v9.1.7", diff --git a/packages/react-components/react-slider/CHANGELOG.md b/packages/react-components/react-slider/CHANGELOG.md index f828379bbb2d9..69a5add299bc1 100644 --- a/packages/react-components/react-slider/CHANGELOG.md +++ b/packages/react-components/react-slider/CHANGELOG.md @@ -1,9 +1,20 @@ # Change Log - @fluentui/react-slider -This log was last generated on Tue, 04 Apr 2023 18:44:50 GMT and should not be manually modified. +This log was last generated on Fri, 07 Apr 2023 00:01:42 GMT and should not be manually modified. +## [9.1.8](https://github.com/microsoft/fluentui/tree/@fluentui/react-slider_v9.1.8) + +Fri, 07 Apr 2023 00:01:42 GMT +[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-slider_v9.1.7..@fluentui/react-slider_v9.1.8) + +### Patches + +- chore: Update package version of react-field ([PR #27458](https://github.com/microsoft/fluentui/pull/27458) by behowell@microsoft.com) +- chore: Hook up FieldContext for use inside a Field ([PR #27399](https://github.com/microsoft/fluentui/pull/27399) by behowell@microsoft.com) +- Bump @fluentui/react-field to v9.0.0-beta.1 ([PR #27420](https://github.com/microsoft/fluentui/pull/27420) by beachball) + ## [9.1.7](https://github.com/microsoft/fluentui/tree/@fluentui/react-slider_v9.1.7) Tue, 04 Apr 2023 18:44:50 GMT diff --git a/packages/react-components/react-slider/package.json b/packages/react-components/react-slider/package.json index bd53205b1e09c..1251ceefab815 100644 --- a/packages/react-components/react-slider/package.json +++ b/packages/react-components/react-slider/package.json @@ -1,6 +1,6 @@ { "name": "@fluentui/react-slider", - "version": "9.1.7", + "version": "9.1.8", "description": "Fluent UI React Slider component.", "main": "lib-commonjs/index.js", "module": "lib/index.js", @@ -34,7 +34,7 @@ }, "dependencies": { "@griffel/react": "^1.5.2", - "@fluentui/react-field": "9.0.0-beta.0", + "@fluentui/react-field": "9.0.0-beta.1", "@fluentui/react-shared-contexts": "^9.3.3", "@fluentui/react-tabster": "^9.6.3", "@fluentui/react-theme": "^9.1.7", diff --git a/packages/react-components/react-spinbutton/CHANGELOG.json b/packages/react-components/react-spinbutton/CHANGELOG.json index e28645b913b16..f3fff5813c89e 100644 --- a/packages/react-components/react-spinbutton/CHANGELOG.json +++ b/packages/react-components/react-spinbutton/CHANGELOG.json @@ -1,6 +1,39 @@ { "name": "@fluentui/react-spinbutton", "entries": [ + { + "date": "Fri, 07 Apr 2023 00:01:43 GMT", + "tag": "@fluentui/react-spinbutton_v9.2.8", + "version": "9.2.8", + "comments": { + "patch": [ + { + "author": "kakrookaran@gmail.com", + "package": "@fluentui/react-spinbutton", + "commit": "4f7b946067bda04d92953cf5e9ed90059a98a8fb", + "comment": "added width 100% to input of spin button" + }, + { + "author": "behowell@microsoft.com", + "package": "@fluentui/react-spinbutton", + "commit": "eee5716e76dc6a5bef9316546a352694bbe5750a", + "comment": "chore: Update package version of react-field" + }, + { + "author": "behowell@microsoft.com", + "package": "@fluentui/react-spinbutton", + "commit": "5a8d7a29645b3b500eb7145d2e42ac34fcafc4c6", + "comment": "chore: Hook up FieldContext for use inside a Field" + }, + { + "author": "beachball", + "package": "@fluentui/react-spinbutton", + "comment": "Bump @fluentui/react-field to v9.0.0-beta.1", + "commit": "7a46cab3d31a233b89b7188e994b24712af5393c" + } + ] + } + }, { "date": "Tue, 04 Apr 2023 18:44:50 GMT", "tag": "@fluentui/react-spinbutton_v9.2.7", diff --git a/packages/react-components/react-spinbutton/CHANGELOG.md b/packages/react-components/react-spinbutton/CHANGELOG.md index 30016355c9480..6e82c2e6d24a1 100644 --- a/packages/react-components/react-spinbutton/CHANGELOG.md +++ b/packages/react-components/react-spinbutton/CHANGELOG.md @@ -1,9 +1,21 @@ # Change Log - @fluentui/react-spinbutton -This log was last generated on Tue, 04 Apr 2023 18:44:50 GMT and should not be manually modified. +This log was last generated on Fri, 07 Apr 2023 00:01:43 GMT and should not be manually modified. +## [9.2.8](https://github.com/microsoft/fluentui/tree/@fluentui/react-spinbutton_v9.2.8) + +Fri, 07 Apr 2023 00:01:43 GMT +[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-spinbutton_v9.2.7..@fluentui/react-spinbutton_v9.2.8) + +### Patches + +- added width 100% to input of spin button ([PR #27421](https://github.com/microsoft/fluentui/pull/27421) by kakrookaran@gmail.com) +- chore: Update package version of react-field ([PR #27458](https://github.com/microsoft/fluentui/pull/27458) by behowell@microsoft.com) +- chore: Hook up FieldContext for use inside a Field ([PR #27399](https://github.com/microsoft/fluentui/pull/27399) by behowell@microsoft.com) +- Bump @fluentui/react-field to v9.0.0-beta.1 ([PR #27420](https://github.com/microsoft/fluentui/pull/27420) by beachball) + ## [9.2.7](https://github.com/microsoft/fluentui/tree/@fluentui/react-spinbutton_v9.2.7) Tue, 04 Apr 2023 18:44:50 GMT diff --git a/packages/react-components/react-spinbutton/package.json b/packages/react-components/react-spinbutton/package.json index fae8f7818406d..c6ead120dd77c 100644 --- a/packages/react-components/react-spinbutton/package.json +++ b/packages/react-components/react-spinbutton/package.json @@ -1,6 +1,6 @@ { "name": "@fluentui/react-spinbutton", - "version": "9.2.7", + "version": "9.2.8", "description": "Fluent UI React SpinButton component.", "main": "lib-commonjs/index.js", "module": "lib/index.js", @@ -35,7 +35,7 @@ "dependencies": { "@griffel/react": "^1.5.2", "@fluentui/keyboard-keys": "^9.0.2", - "@fluentui/react-field": "9.0.0-beta.0", + "@fluentui/react-field": "9.0.0-beta.1", "@fluentui/react-icons": "^2.0.196", "@fluentui/react-shared-contexts": "^9.3.3", "@fluentui/react-theme": "^9.1.7", diff --git a/packages/react-components/react-switch/CHANGELOG.json b/packages/react-components/react-switch/CHANGELOG.json index b3a5e79464271..f9ab2ae247fb5 100644 --- a/packages/react-components/react-switch/CHANGELOG.json +++ b/packages/react-components/react-switch/CHANGELOG.json @@ -1,6 +1,33 @@ { "name": "@fluentui/react-switch", "entries": [ + { + "date": "Fri, 07 Apr 2023 00:01:44 GMT", + "tag": "@fluentui/react-switch_v9.1.8", + "version": "9.1.8", + "comments": { + "patch": [ + { + "author": "behowell@microsoft.com", + "package": "@fluentui/react-switch", + "commit": "5a8d7a29645b3b500eb7145d2e42ac34fcafc4c6", + "comment": "chore: Hook up FieldContext for use inside a Field" + }, + { + "author": "behowell@microsoft.com", + "package": "@fluentui/react-switch", + "commit": "eee5716e76dc6a5bef9316546a352694bbe5750a", + "comment": "chore: Update package version of react-field" + }, + { + "author": "beachball", + "package": "@fluentui/react-switch", + "comment": "Bump @fluentui/react-field to v9.0.0-beta.1", + "commit": "7a46cab3d31a233b89b7188e994b24712af5393c" + } + ] + } + }, { "date": "Tue, 04 Apr 2023 18:44:50 GMT", "tag": "@fluentui/react-switch_v9.1.7", diff --git a/packages/react-components/react-switch/CHANGELOG.md b/packages/react-components/react-switch/CHANGELOG.md index 0238f6691adaf..5e20c4099b9a7 100644 --- a/packages/react-components/react-switch/CHANGELOG.md +++ b/packages/react-components/react-switch/CHANGELOG.md @@ -1,9 +1,20 @@ # Change Log - @fluentui/react-switch -This log was last generated on Tue, 04 Apr 2023 18:44:50 GMT and should not be manually modified. +This log was last generated on Fri, 07 Apr 2023 00:01:44 GMT and should not be manually modified. +## [9.1.8](https://github.com/microsoft/fluentui/tree/@fluentui/react-switch_v9.1.8) + +Fri, 07 Apr 2023 00:01:44 GMT +[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-switch_v9.1.7..@fluentui/react-switch_v9.1.8) + +### Patches + +- chore: Hook up FieldContext for use inside a Field ([PR #27399](https://github.com/microsoft/fluentui/pull/27399) by behowell@microsoft.com) +- chore: Update package version of react-field ([PR #27458](https://github.com/microsoft/fluentui/pull/27458) by behowell@microsoft.com) +- Bump @fluentui/react-field to v9.0.0-beta.1 ([PR #27420](https://github.com/microsoft/fluentui/pull/27420) by beachball) + ## [9.1.7](https://github.com/microsoft/fluentui/tree/@fluentui/react-switch_v9.1.7) Tue, 04 Apr 2023 18:44:50 GMT diff --git a/packages/react-components/react-switch/package.json b/packages/react-components/react-switch/package.json index e0c826cd056f7..37616d229aef1 100644 --- a/packages/react-components/react-switch/package.json +++ b/packages/react-components/react-switch/package.json @@ -1,6 +1,6 @@ { "name": "@fluentui/react-switch", - "version": "9.1.7", + "version": "9.1.8", "description": "Fluent UI React Switch component.", "main": "lib-commonjs/index.js", "module": "lib/index.js", @@ -32,7 +32,7 @@ "@fluentui/scripts-tasks": "*" }, "dependencies": { - "@fluentui/react-field": "9.0.0-beta.0", + "@fluentui/react-field": "9.0.0-beta.1", "@fluentui/react-icons": "^2.0.196", "@fluentui/react-label": "^9.1.7", "@fluentui/react-shared-contexts": "^9.3.3", diff --git a/packages/react-components/react-table/CHANGELOG.json b/packages/react-components/react-table/CHANGELOG.json index 0b4e561daa1c6..9c362454756a2 100644 --- a/packages/react-components/react-table/CHANGELOG.json +++ b/packages/react-components/react-table/CHANGELOG.json @@ -1,6 +1,27 @@ { "name": "@fluentui/react-table", "entries": [ + { + "date": "Fri, 07 Apr 2023 00:01:45 GMT", + "tag": "@fluentui/react-table_v9.2.4", + "version": "9.2.4", + "comments": { + "patch": [ + { + "author": "beachball", + "package": "@fluentui/react-table", + "comment": "Bump @fluentui/react-checkbox to v9.1.8", + "commit": "7a46cab3d31a233b89b7188e994b24712af5393c" + }, + { + "author": "beachball", + "package": "@fluentui/react-table", + "comment": "Bump @fluentui/react-radio to v9.1.8", + "commit": "7a46cab3d31a233b89b7188e994b24712af5393c" + } + ] + } + }, { "date": "Tue, 04 Apr 2023 18:44:50 GMT", "tag": "@fluentui/react-table_v9.2.3", diff --git a/packages/react-components/react-table/CHANGELOG.md b/packages/react-components/react-table/CHANGELOG.md index 761488cc04d05..870489857cc89 100644 --- a/packages/react-components/react-table/CHANGELOG.md +++ b/packages/react-components/react-table/CHANGELOG.md @@ -1,9 +1,19 @@ # Change Log - @fluentui/react-table -This log was last generated on Tue, 04 Apr 2023 18:44:50 GMT and should not be manually modified. +This log was last generated on Fri, 07 Apr 2023 00:01:45 GMT and should not be manually modified. +## [9.2.4](https://github.com/microsoft/fluentui/tree/@fluentui/react-table_v9.2.4) + +Fri, 07 Apr 2023 00:01:45 GMT +[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-table_v9.2.3..@fluentui/react-table_v9.2.4) + +### Patches + +- Bump @fluentui/react-checkbox to v9.1.8 ([PR #27420](https://github.com/microsoft/fluentui/pull/27420) by beachball) +- Bump @fluentui/react-radio to v9.1.8 ([PR #27420](https://github.com/microsoft/fluentui/pull/27420) by beachball) + ## [9.2.3](https://github.com/microsoft/fluentui/tree/@fluentui/react-table_v9.2.3) Tue, 04 Apr 2023 18:44:50 GMT diff --git a/packages/react-components/react-table/package.json b/packages/react-components/react-table/package.json index e6e87a044b059..6aede37a51167 100644 --- a/packages/react-components/react-table/package.json +++ b/packages/react-components/react-table/package.json @@ -1,6 +1,6 @@ { "name": "@fluentui/react-table", - "version": "9.2.3", + "version": "9.2.4", "description": "React components for building web experiences", "main": "lib-commonjs/index.js", "module": "lib/index.js", @@ -35,10 +35,10 @@ "@fluentui/keyboard-keys": "^9.0.2", "@fluentui/react-aria": "^9.3.16", "@fluentui/react-avatar": "^9.4.7", - "@fluentui/react-checkbox": "^9.1.7", + "@fluentui/react-checkbox": "^9.1.8", "@fluentui/react-context-selector": "^9.1.16", "@fluentui/react-icons": "^2.0.196", - "@fluentui/react-radio": "^9.1.7", + "@fluentui/react-radio": "^9.1.8", "@fluentui/react-shared-contexts": "^9.3.3", "@fluentui/react-tabster": "^9.6.3", "@fluentui/react-theme": "^9.1.7", diff --git a/packages/react-components/react-tabs/CHANGELOG.json b/packages/react-components/react-tabs/CHANGELOG.json index 1d5790d7a154e..155545e7d2b62 100644 --- a/packages/react-components/react-tabs/CHANGELOG.json +++ b/packages/react-components/react-tabs/CHANGELOG.json @@ -1,6 +1,21 @@ { "name": "@fluentui/react-tabs", "entries": [ + { + "date": "Fri, 07 Apr 2023 00:01:44 GMT", + "tag": "@fluentui/react-tabs_v9.3.8", + "version": "9.3.8", + "comments": { + "patch": [ + { + "author": "gcox@microsoft.com", + "package": "@fluentui/react-tabs", + "commit": "fe885a29eaaae84a902c66ea0af118c22358228b", + "comment": "fix: Merged onClick callbacks in Tab" + } + ] + } + }, { "date": "Tue, 04 Apr 2023 18:44:50 GMT", "tag": "@fluentui/react-tabs_v9.3.7", diff --git a/packages/react-components/react-tabs/CHANGELOG.md b/packages/react-components/react-tabs/CHANGELOG.md index b5268b625950f..ad5fcfb94e739 100644 --- a/packages/react-components/react-tabs/CHANGELOG.md +++ b/packages/react-components/react-tabs/CHANGELOG.md @@ -1,9 +1,18 @@ # Change Log - @fluentui/react-tabs -This log was last generated on Tue, 04 Apr 2023 18:44:50 GMT and should not be manually modified. +This log was last generated on Fri, 07 Apr 2023 00:01:44 GMT and should not be manually modified. +## [9.3.8](https://github.com/microsoft/fluentui/tree/@fluentui/react-tabs_v9.3.8) + +Fri, 07 Apr 2023 00:01:44 GMT +[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-tabs_v9.3.7..@fluentui/react-tabs_v9.3.8) + +### Patches + +- fix: Merged onClick callbacks in Tab ([PR #27477](https://github.com/microsoft/fluentui/pull/27477) by gcox@microsoft.com) + ## [9.3.7](https://github.com/microsoft/fluentui/tree/@fluentui/react-tabs_v9.3.7) Tue, 04 Apr 2023 18:44:50 GMT diff --git a/packages/react-components/react-tabs/package.json b/packages/react-components/react-tabs/package.json index acff3993f4a8d..ff5b781006bbb 100644 --- a/packages/react-components/react-tabs/package.json +++ b/packages/react-components/react-tabs/package.json @@ -1,6 +1,6 @@ { "name": "@fluentui/react-tabs", - "version": "9.3.7", + "version": "9.3.8", "description": "Fluent UI React tabs components", "main": "lib-commonjs/index.js", "module": "lib/index.js", diff --git a/packages/react-components/react-textarea/CHANGELOG.json b/packages/react-components/react-textarea/CHANGELOG.json index ef68d361f43f9..a249ac66bb70f 100644 --- a/packages/react-components/react-textarea/CHANGELOG.json +++ b/packages/react-components/react-textarea/CHANGELOG.json @@ -1,6 +1,33 @@ { "name": "@fluentui/react-textarea", "entries": [ + { + "date": "Fri, 07 Apr 2023 00:01:45 GMT", + "tag": "@fluentui/react-textarea_v9.3.8", + "version": "9.3.8", + "comments": { + "patch": [ + { + "author": "behowell@microsoft.com", + "package": "@fluentui/react-textarea", + "commit": "eee5716e76dc6a5bef9316546a352694bbe5750a", + "comment": "chore: Update package version of react-field" + }, + { + "author": "behowell@microsoft.com", + "package": "@fluentui/react-textarea", + "commit": "5a8d7a29645b3b500eb7145d2e42ac34fcafc4c6", + "comment": "chore: Hook up FieldContext for use inside a Field" + }, + { + "author": "beachball", + "package": "@fluentui/react-textarea", + "comment": "Bump @fluentui/react-field to v9.0.0-beta.1", + "commit": "7a46cab3d31a233b89b7188e994b24712af5393c" + } + ] + } + }, { "date": "Tue, 04 Apr 2023 18:44:50 GMT", "tag": "@fluentui/react-textarea_v9.3.7", diff --git a/packages/react-components/react-textarea/CHANGELOG.md b/packages/react-components/react-textarea/CHANGELOG.md index 4d169771f0cfe..05a12b39b51ba 100644 --- a/packages/react-components/react-textarea/CHANGELOG.md +++ b/packages/react-components/react-textarea/CHANGELOG.md @@ -1,9 +1,20 @@ # Change Log - @fluentui/react-textarea -This log was last generated on Tue, 04 Apr 2023 18:44:50 GMT and should not be manually modified. +This log was last generated on Fri, 07 Apr 2023 00:01:45 GMT and should not be manually modified. +## [9.3.8](https://github.com/microsoft/fluentui/tree/@fluentui/react-textarea_v9.3.8) + +Fri, 07 Apr 2023 00:01:45 GMT +[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-textarea_v9.3.7..@fluentui/react-textarea_v9.3.8) + +### Patches + +- chore: Update package version of react-field ([PR #27458](https://github.com/microsoft/fluentui/pull/27458) by behowell@microsoft.com) +- chore: Hook up FieldContext for use inside a Field ([PR #27399](https://github.com/microsoft/fluentui/pull/27399) by behowell@microsoft.com) +- Bump @fluentui/react-field to v9.0.0-beta.1 ([PR #27420](https://github.com/microsoft/fluentui/pull/27420) by beachball) + ## [9.3.7](https://github.com/microsoft/fluentui/tree/@fluentui/react-textarea_v9.3.7) Tue, 04 Apr 2023 18:44:50 GMT diff --git a/packages/react-components/react-textarea/package.json b/packages/react-components/react-textarea/package.json index 10dd83ff940eb..cb3aaeb6e27e1 100644 --- a/packages/react-components/react-textarea/package.json +++ b/packages/react-components/react-textarea/package.json @@ -1,6 +1,6 @@ { "name": "@fluentui/react-textarea", - "version": "9.3.7", + "version": "9.3.8", "description": "Fluent UI TextArea component", "main": "lib-commonjs/index.js", "module": "lib/index.js", @@ -32,7 +32,7 @@ "@fluentui/scripts-tasks": "*" }, "dependencies": { - "@fluentui/react-field": "9.0.0-beta.0", + "@fluentui/react-field": "9.0.0-beta.1", "@fluentui/react-shared-contexts": "^9.3.3", "@fluentui/react-theme": "^9.1.7", "@fluentui/react-utilities": "^9.7.3", diff --git a/packages/react-components/react-toolbar/CHANGELOG.json b/packages/react-components/react-toolbar/CHANGELOG.json index 2571fddf7f42a..ac0bdd480a14a 100644 --- a/packages/react-components/react-toolbar/CHANGELOG.json +++ b/packages/react-components/react-toolbar/CHANGELOG.json @@ -1,6 +1,21 @@ { "name": "@fluentui/react-toolbar", "entries": [ + { + "date": "Fri, 07 Apr 2023 00:01:45 GMT", + "tag": "@fluentui/react-toolbar_v9.1.8", + "version": "9.1.8", + "comments": { + "patch": [ + { + "author": "beachball", + "package": "@fluentui/react-toolbar", + "comment": "Bump @fluentui/react-radio to v9.1.8", + "commit": "7a46cab3d31a233b89b7188e994b24712af5393c" + } + ] + } + }, { "date": "Tue, 04 Apr 2023 18:44:50 GMT", "tag": "@fluentui/react-toolbar_v9.1.7", diff --git a/packages/react-components/react-toolbar/CHANGELOG.md b/packages/react-components/react-toolbar/CHANGELOG.md index 7e111e5748957..15d4d70a0166f 100644 --- a/packages/react-components/react-toolbar/CHANGELOG.md +++ b/packages/react-components/react-toolbar/CHANGELOG.md @@ -1,9 +1,18 @@ # Change Log - @fluentui/react-toolbar -This log was last generated on Tue, 04 Apr 2023 18:44:50 GMT and should not be manually modified. +This log was last generated on Fri, 07 Apr 2023 00:01:45 GMT and should not be manually modified. +## [9.1.8](https://github.com/microsoft/fluentui/tree/@fluentui/react-toolbar_v9.1.8) + +Fri, 07 Apr 2023 00:01:45 GMT +[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-toolbar_v9.1.7..@fluentui/react-toolbar_v9.1.8) + +### Patches + +- Bump @fluentui/react-radio to v9.1.8 ([PR #27420](https://github.com/microsoft/fluentui/pull/27420) by beachball) + ## [9.1.7](https://github.com/microsoft/fluentui/tree/@fluentui/react-toolbar_v9.1.7) Tue, 04 Apr 2023 18:44:50 GMT diff --git a/packages/react-components/react-toolbar/package.json b/packages/react-components/react-toolbar/package.json index b3294b2748f60..65eef627fe9d9 100644 --- a/packages/react-components/react-toolbar/package.json +++ b/packages/react-components/react-toolbar/package.json @@ -1,6 +1,6 @@ { "name": "@fluentui/react-toolbar", - "version": "9.1.7", + "version": "9.1.8", "description": "React components for building web experiences", "main": "lib-commonjs/index.js", "module": "lib/index.js", @@ -39,7 +39,7 @@ "@fluentui/react-theme": "^9.1.7", "@fluentui/react-utilities": "^9.7.3", "@fluentui/react-context-selector": "^9.1.16", - "@fluentui/react-radio": "^9.1.7", + "@fluentui/react-radio": "^9.1.8", "@fluentui/react-shared-contexts": "^9.3.3", "@fluentui/react-tabster": "^9.6.3", "@griffel/react": "^1.5.2", diff --git a/packages/react-components/theme-designer/package.json b/packages/react-components/theme-designer/package.json index 3c2d61591f4cb..e78b41a54889e 100644 --- a/packages/react-components/theme-designer/package.json +++ b/packages/react-components/theme-designer/package.json @@ -32,7 +32,7 @@ }, "dependencies": { "@fluentui/react-alert": "9.0.0-beta.42", - "@fluentui/react-components": "^9.18.7", + "@fluentui/react-components": "^9.18.8", "@fluentui/react-context-selector": "^9.1.16", "@fluentui/react-icons": "^2.0.196", "@fluentui/react-storybook-addon-codesandbox": "9.0.0-alpha.0", From d8f32b68ec87fa322f72616f3e9d21cb679cc205 Mon Sep 17 00:00:00 2001 From: Fluent UI Build Date: Fri, 7 Apr 2023 07:39:28 +0000 Subject: [PATCH 16/51] applying package updates --- apps/perf-test/package.json | 2 +- apps/public-docsite-resources/package.json | 10 ++++----- apps/public-docsite-v9/package.json | 2 +- apps/public-docsite/package.json | 12 +++++------ apps/react-18-tests-v8/package.json | 2 +- apps/ssr-tests/package.json | 2 +- apps/stress-test/package.json | 2 +- apps/theming-designer/package.json | 4 ++-- apps/ts-minbar-test-react/package.json | 2 +- apps/vr-tests/package.json | 4 ++-- ...-4f3932ed-9bb5-4652-a084-dcbc18f898e2.json | 7 ------- packages/azure-themes/CHANGELOG.json | 15 +++++++++++++ packages/azure-themes/CHANGELOG.md | 11 +++++++++- packages/azure-themes/package.json | 4 ++-- packages/cra-template/CHANGELOG.json | 15 +++++++++++++ packages/cra-template/CHANGELOG.md | 11 +++++++++- packages/cra-template/package.json | 4 ++-- packages/fluent2-theme/CHANGELOG.json | 15 +++++++++++++ packages/fluent2-theme/CHANGELOG.md | 11 +++++++++- packages/fluent2-theme/package.json | 4 ++-- packages/react-cards/CHANGELOG.json | 15 +++++++++++++ packages/react-cards/CHANGELOG.md | 11 +++++++++- packages/react-cards/package.json | 4 ++-- packages/react-charting/CHANGELOG.json | 15 +++++++++++++ packages/react-charting/CHANGELOG.md | 11 +++++++++- packages/react-charting/package.json | 6 +++--- .../react-migration-v8-v9/package.json | 4 ++-- packages/react-date-time/CHANGELOG.json | 15 +++++++++++++ packages/react-date-time/CHANGELOG.md | 11 +++++++++- packages/react-date-time/package.json | 4 ++-- .../react-docsite-components/CHANGELOG.json | 21 +++++++++++++++++++ .../react-docsite-components/CHANGELOG.md | 12 ++++++++++- .../react-docsite-components/package.json | 6 +++--- packages/react-examples/package.json | 14 ++++++------- packages/react-experiments/CHANGELOG.json | 15 +++++++++++++ packages/react-experiments/CHANGELOG.md | 11 +++++++++- packages/react-experiments/package.json | 4 ++-- packages/react-monaco-editor/CHANGELOG.json | 15 +++++++++++++ packages/react-monaco-editor/CHANGELOG.md | 11 +++++++++- packages/react-monaco-editor/package.json | 4 ++-- packages/react/CHANGELOG.json | 15 +++++++++++++ packages/react/CHANGELOG.md | 11 +++++++++- packages/react/package.json | 2 +- packages/storybook/package.json | 6 +++--- packages/theme-samples/CHANGELOG.json | 15 +++++++++++++ packages/theme-samples/CHANGELOG.md | 11 +++++++++- packages/theme-samples/package.json | 4 ++-- 47 files changed, 338 insertions(+), 74 deletions(-) delete mode 100644 change/@fluentui-react-4f3932ed-9bb5-4652-a084-dcbc18f898e2.json diff --git a/apps/perf-test/package.json b/apps/perf-test/package.json index 662f4ae2eab1f..4578a16ca2b09 100644 --- a/apps/perf-test/package.json +++ b/apps/perf-test/package.json @@ -20,7 +20,7 @@ "dependencies": { "@fluentui/scripts-perf-test-flamegrill": "*", "@fluentui/example-data": "^8.4.7", - "@fluentui/react": "^8.107.2", + "@fluentui/react": "^8.107.3", "@microsoft/load-themed-styles": "^1.10.26", "react": "17.0.2", "react-dom": "17.0.2", diff --git a/apps/public-docsite-resources/package.json b/apps/public-docsite-resources/package.json index 37e4d365e1a96..32312ceeb7784 100644 --- a/apps/public-docsite-resources/package.json +++ b/apps/public-docsite-resources/package.json @@ -34,15 +34,15 @@ "@fluentui/scripts-webpack": "*" }, "dependencies": { - "@fluentui/react": "^8.107.2", + "@fluentui/react": "^8.107.3", "@fluentui/react-examples": "^8.34.4", "@microsoft/load-themed-styles": "^1.10.26", - "@fluentui/azure-themes": "^8.5.76", - "@fluentui/react-docsite-components": "^8.11.37", + "@fluentui/azure-themes": "^8.5.77", + "@fluentui/react-docsite-components": "^8.11.38", "@fluentui/font-icons-mdl2": "^8.5.13", "@fluentui/set-version": "^8.2.6", - "@fluentui/theme-samples": "^8.7.72", - "@fluentui/react-monaco-editor": "^1.7.72", + "@fluentui/theme-samples": "^8.7.73", + "@fluentui/react-monaco-editor": "^1.7.73", "office-ui-fabric-core": "^11.0.0", "react": "17.0.2", "react-dom": "17.0.2", diff --git a/apps/public-docsite-v9/package.json b/apps/public-docsite-v9/package.json index 903e3e39b58ef..b142a459abd00 100644 --- a/apps/public-docsite-v9/package.json +++ b/apps/public-docsite-v9/package.json @@ -25,7 +25,7 @@ "@fluentui/react-datepicker-compat": "0.0.0-alpha.0", "@fluentui/react-migration-v8-v9": "^9.2.7", "@fluentui/react-migration-v0-v9": "9.0.0-alpha.0", - "@fluentui/react": "^8.107.2", + "@fluentui/react": "^8.107.3", "@fluentui/react-northstar": "^0.66.4", "@fluentui/react-icons-northstar": "^0.66.4", "@fluentui/react-components": "^9.18.8", diff --git a/apps/public-docsite/package.json b/apps/public-docsite/package.json index 9a99bde5b5f21..fd971f8fc2a26 100644 --- a/apps/public-docsite/package.json +++ b/apps/public-docsite/package.json @@ -25,7 +25,7 @@ "devDependencies": { "@fluentui/common-styles": "^1.2.22", "@fluentui/eslint-plugin": "*", - "@fluentui/react-monaco-editor": "^1.7.72", + "@fluentui/react-monaco-editor": "^1.7.73", "write-file-webpack-plugin": "^4.1.0", "@fluentui/scripts-tasks": "*", "@fluentui/scripts-webpack": "*" @@ -34,17 +34,17 @@ "@fluentui/font-icons-mdl2": "^8.5.13", "@fluentui/public-docsite-resources": "^8.1.41", "@fluentui/public-docsite-setup": "^0.3.18", - "@fluentui/react": "^8.107.2", - "@fluentui/react-docsite-components": "^8.11.37", + "@fluentui/react": "^8.107.3", + "@fluentui/react-docsite-components": "^8.11.38", "@fluentui/react-examples": "^8.34.4", - "@fluentui/react-experiments": "^8.14.67", - "@fluentui/fluent2-theme": "^8.106.9", + "@fluentui/react-experiments": "^8.14.68", + "@fluentui/fluent2-theme": "^8.106.10", "@fluentui/react-file-type-icons": "^8.8.13", "@fluentui/react-icons-mdl2": "^1.3.37", "@fluentui/react-icons-mdl2-branded": "^1.2.38", "@fluentui/set-version": "^8.2.6", "@fluentui/theme": "^2.6.25", - "@fluentui/theme-samples": "^8.7.72", + "@fluentui/theme-samples": "^8.7.73", "@fluentui/utilities": "^8.13.9", "@microsoft/load-themed-styles": "^1.10.26", "office-ui-fabric-core": "^11.0.0", diff --git a/apps/react-18-tests-v8/package.json b/apps/react-18-tests-v8/package.json index d30b1cdb0c328..be054df8bd819 100644 --- a/apps/react-18-tests-v8/package.json +++ b/apps/react-18-tests-v8/package.json @@ -21,7 +21,7 @@ "@fluentui/scripts-webpack": "*" }, "dependencies": { - "@fluentui/react": "^8.107.2", + "@fluentui/react": "^8.107.3", "@fluentui/react-hooks": "^8.6.20", "@types/react": "18.0.14", "@types/react-dom": "18.0.6", diff --git a/apps/ssr-tests/package.json b/apps/ssr-tests/package.json index 385705816db50..df855f4868047 100644 --- a/apps/ssr-tests/package.json +++ b/apps/ssr-tests/package.json @@ -13,7 +13,7 @@ }, "license": "MIT", "devDependencies": { - "@fluentui/react": "^8.107.2", + "@fluentui/react": "^8.107.3", "@microsoft/load-themed-styles": "^1.10.26", "@types/mocha": "7.0.2", "@fluentui/public-docsite-resources": "^8.1.41", diff --git a/apps/stress-test/package.json b/apps/stress-test/package.json index 73f5e4958dc2b..8d602279e2657 100644 --- a/apps/stress-test/package.json +++ b/apps/stress-test/package.json @@ -10,7 +10,7 @@ "type-check": "tsc -b tsconfig.type.json" }, "dependencies": { - "@fluentui/react": "^8.107.2", + "@fluentui/react": "^8.107.3", "@fluentui/react-components": "^9.18.8", "@fluentui/react-icons": "^2.0.196", "@fluentui/web-components": "^2.5.12", diff --git a/apps/theming-designer/package.json b/apps/theming-designer/package.json index f4391dda7b453..dcfadcb2bb9f9 100644 --- a/apps/theming-designer/package.json +++ b/apps/theming-designer/package.json @@ -19,9 +19,9 @@ "@fluentui/scripts-webpack": "*" }, "dependencies": { - "@fluentui/react": "^8.107.2", + "@fluentui/react": "^8.107.3", "@fluentui/merge-styles": "^8.5.7", - "@fluentui/react-docsite-components": "^8.11.37", + "@fluentui/react-docsite-components": "^8.11.38", "@fluentui/foundation-legacy": "^8.2.33", "@fluentui/scheme-utilities": "^8.3.26", "@fluentui/set-version": "^8.2.6", diff --git a/apps/ts-minbar-test-react/package.json b/apps/ts-minbar-test-react/package.json index 142f9a64f98de..c18245f25bf8c 100644 --- a/apps/ts-minbar-test-react/package.json +++ b/apps/ts-minbar-test-react/package.json @@ -5,7 +5,7 @@ "description": "Testing Fluent UI React compatibility with Typescript 3.9", "license": "MIT", "dependencies": { - "@fluentui/react": "^8.107.2" + "@fluentui/react": "^8.107.3" }, "scripts": { "type-check": "tsc -p .", diff --git a/apps/vr-tests/package.json b/apps/vr-tests/package.json index 8d77f9698a729..dc9c4c1c7dd27 100644 --- a/apps/vr-tests/package.json +++ b/apps/vr-tests/package.json @@ -22,8 +22,8 @@ "dependencies": { "@fluentui/example-data": "^8.4.7", "@fluentui/font-icons-mdl2": "^8.5.13", - "@fluentui/react": "^8.107.2", - "@fluentui/react-experiments": "^8.14.67", + "@fluentui/react": "^8.107.3", + "@fluentui/react-experiments": "^8.14.68", "@fluentui/react-hooks": "^8.6.20", "@fluentui/react-icons-mdl2": "^1.3.37", "@fluentui/storybook": "^1.0.0", diff --git a/change/@fluentui-react-4f3932ed-9bb5-4652-a084-dcbc18f898e2.json b/change/@fluentui-react-4f3932ed-9bb5-4652-a084-dcbc18f898e2.json deleted file mode 100644 index 0e3289e510c86..0000000000000 --- a/change/@fluentui-react-4f3932ed-9bb5-4652-a084-dcbc18f898e2.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "type": "patch", - "comment": "fix: GroupedListV2 properly toggles groups", - "packageName": "@fluentui/react", - "email": "seanmonahan@microsoft.com", - "dependentChangeType": "patch" -} diff --git a/packages/azure-themes/CHANGELOG.json b/packages/azure-themes/CHANGELOG.json index 9605b19ab9217..57acd54450096 100644 --- a/packages/azure-themes/CHANGELOG.json +++ b/packages/azure-themes/CHANGELOG.json @@ -1,6 +1,21 @@ { "name": "@fluentui/azure-themes", "entries": [ + { + "date": "Fri, 07 Apr 2023 07:39:19 GMT", + "tag": "@fluentui/azure-themes_v8.5.77", + "version": "8.5.77", + "comments": { + "patch": [ + { + "author": "beachball", + "package": "@fluentui/azure-themes", + "comment": "Bump @fluentui/react to v8.107.3", + "commit": "336f91dc2ffd1e85880e1b12187d5ac1bf500f6d" + } + ] + } + }, { "date": "Thu, 06 Apr 2023 07:39:05 GMT", "tag": "@fluentui/azure-themes_v8.5.76", diff --git a/packages/azure-themes/CHANGELOG.md b/packages/azure-themes/CHANGELOG.md index f3af6a868b915..f41bd8e21968c 100644 --- a/packages/azure-themes/CHANGELOG.md +++ b/packages/azure-themes/CHANGELOG.md @@ -1,9 +1,18 @@ # Change Log - @fluentui/azure-themes -This log was last generated on Thu, 06 Apr 2023 07:39:05 GMT and should not be manually modified. +This log was last generated on Fri, 07 Apr 2023 07:39:19 GMT and should not be manually modified. +## [8.5.77](https://github.com/microsoft/fluentui/tree/@fluentui/azure-themes_v8.5.77) + +Fri, 07 Apr 2023 07:39:19 GMT +[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/azure-themes_v8.5.76..@fluentui/azure-themes_v8.5.77) + +### Patches + +- Bump @fluentui/react to v8.107.3 ([commit](https://github.com/microsoft/fluentui/commit/336f91dc2ffd1e85880e1b12187d5ac1bf500f6d) by beachball) + ## [8.5.76](https://github.com/microsoft/fluentui/tree/@fluentui/azure-themes_v8.5.76) Thu, 06 Apr 2023 07:39:05 GMT diff --git a/packages/azure-themes/package.json b/packages/azure-themes/package.json index 03069f0e97de0..653f17590872c 100644 --- a/packages/azure-themes/package.json +++ b/packages/azure-themes/package.json @@ -1,6 +1,6 @@ { "name": "@fluentui/azure-themes", - "version": "8.5.76", + "version": "8.5.77", "description": "Azure themes for Fluent UI React", "main": "lib-commonjs/index.js", "module": "lib/index.js", @@ -28,7 +28,7 @@ "@fluentui/scripts-webpack": "*" }, "dependencies": { - "@fluentui/react": "^8.107.2", + "@fluentui/react": "^8.107.3", "@fluentui/set-version": "^8.2.6", "tslib": "^2.1.0" } diff --git a/packages/cra-template/CHANGELOG.json b/packages/cra-template/CHANGELOG.json index 6969fba0a3977..55d5a7460734c 100644 --- a/packages/cra-template/CHANGELOG.json +++ b/packages/cra-template/CHANGELOG.json @@ -1,6 +1,21 @@ { "name": "@fluentui/cra-template", "entries": [ + { + "date": "Fri, 07 Apr 2023 07:39:19 GMT", + "tag": "@fluentui/cra-template_v8.4.74", + "version": "8.4.74", + "comments": { + "patch": [ + { + "author": "beachball", + "package": "@fluentui/cra-template", + "comment": "Bump @fluentui/react to v8.107.3", + "commit": "336f91dc2ffd1e85880e1b12187d5ac1bf500f6d" + } + ] + } + }, { "date": "Thu, 06 Apr 2023 07:39:05 GMT", "tag": "@fluentui/cra-template_v8.4.73", diff --git a/packages/cra-template/CHANGELOG.md b/packages/cra-template/CHANGELOG.md index 02a1555849039..b30331d07d07b 100644 --- a/packages/cra-template/CHANGELOG.md +++ b/packages/cra-template/CHANGELOG.md @@ -1,9 +1,18 @@ # Change Log - @fluentui/cra-template -This log was last generated on Thu, 06 Apr 2023 07:39:05 GMT and should not be manually modified. +This log was last generated on Fri, 07 Apr 2023 07:39:19 GMT and should not be manually modified. +## [8.4.74](https://github.com/microsoft/fluentui/tree/@fluentui/cra-template_v8.4.74) + +Fri, 07 Apr 2023 07:39:19 GMT +[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/cra-template_v8.4.73..@fluentui/cra-template_v8.4.74) + +### Patches + +- Bump @fluentui/react to v8.107.3 ([commit](https://github.com/microsoft/fluentui/commit/336f91dc2ffd1e85880e1b12187d5ac1bf500f6d) by beachball) + ## [8.4.73](https://github.com/microsoft/fluentui/tree/@fluentui/cra-template_v8.4.73) Thu, 06 Apr 2023 07:39:05 GMT diff --git a/packages/cra-template/package.json b/packages/cra-template/package.json index 16d08900a4693..a9818c39bfe65 100644 --- a/packages/cra-template/package.json +++ b/packages/cra-template/package.json @@ -1,6 +1,6 @@ { "name": "@fluentui/cra-template", - "version": "8.4.73", + "version": "8.4.74", "description": "Create React App template for Fluent UI React (@fluentui/react)", "repository": { "type": "git", @@ -18,7 +18,7 @@ "template.json" ], "devDependencies": { - "@fluentui/react": "^8.107.2", + "@fluentui/react": "^8.107.3", "@fluentui/scripts-projects-test": "*", "@fluentui/scripts-monorepo": "*" } diff --git a/packages/fluent2-theme/CHANGELOG.json b/packages/fluent2-theme/CHANGELOG.json index dc0a62ecfaab0..30444d527f875 100644 --- a/packages/fluent2-theme/CHANGELOG.json +++ b/packages/fluent2-theme/CHANGELOG.json @@ -1,6 +1,21 @@ { "name": "@fluentui/fluent2-theme", "entries": [ + { + "date": "Fri, 07 Apr 2023 07:39:19 GMT", + "tag": "@fluentui/fluent2-theme_v8.106.10", + "version": "8.106.10", + "comments": { + "patch": [ + { + "author": "beachball", + "package": "@fluentui/fluent2-theme", + "comment": "Bump @fluentui/react to v8.107.3", + "commit": "336f91dc2ffd1e85880e1b12187d5ac1bf500f6d" + } + ] + } + }, { "date": "Thu, 06 Apr 2023 07:39:05 GMT", "tag": "@fluentui/fluent2-theme_v8.106.9", diff --git a/packages/fluent2-theme/CHANGELOG.md b/packages/fluent2-theme/CHANGELOG.md index 74036569263f2..530aac8d86699 100644 --- a/packages/fluent2-theme/CHANGELOG.md +++ b/packages/fluent2-theme/CHANGELOG.md @@ -1,9 +1,18 @@ # Change Log - @fluentui/fluent2-theme -This log was last generated on Thu, 06 Apr 2023 07:39:05 GMT and should not be manually modified. +This log was last generated on Fri, 07 Apr 2023 07:39:19 GMT and should not be manually modified. +## [8.106.10](https://github.com/microsoft/fluentui/tree/@fluentui/fluent2-theme_v8.106.10) + +Fri, 07 Apr 2023 07:39:19 GMT +[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/fluent2-theme_v8.106.9..@fluentui/fluent2-theme_v8.106.10) + +### Patches + +- Bump @fluentui/react to v8.107.3 ([commit](https://github.com/microsoft/fluentui/commit/336f91dc2ffd1e85880e1b12187d5ac1bf500f6d) by beachball) + ## [8.106.9](https://github.com/microsoft/fluentui/tree/@fluentui/fluent2-theme_v8.106.9) Thu, 06 Apr 2023 07:39:05 GMT diff --git a/packages/fluent2-theme/package.json b/packages/fluent2-theme/package.json index 8da6055d20c3f..0b7773810c86b 100644 --- a/packages/fluent2-theme/package.json +++ b/packages/fluent2-theme/package.json @@ -1,6 +1,6 @@ { "name": "@fluentui/fluent2-theme", - "version": "8.106.9", + "version": "8.106.10", "description": "A Fluent2 theme for Fluent UI React 8.x", "main": "lib-commonjs/index.js", "module": "lib/index.js", @@ -28,7 +28,7 @@ "@fluentui/scripts-webpack": "*" }, "dependencies": { - "@fluentui/react": "^8.107.2", + "@fluentui/react": "^8.107.3", "@fluentui/set-version": "^8.2.6", "tslib": "^2.1.0" } diff --git a/packages/react-cards/CHANGELOG.json b/packages/react-cards/CHANGELOG.json index 913bcf4d607e7..8633dc221e438 100644 --- a/packages/react-cards/CHANGELOG.json +++ b/packages/react-cards/CHANGELOG.json @@ -1,6 +1,21 @@ { "name": "@fluentui/react-cards", "entries": [ + { + "date": "Fri, 07 Apr 2023 07:39:19 GMT", + "tag": "@fluentui/react-cards_v0.205.73", + "version": "0.205.73", + "comments": { + "patch": [ + { + "author": "beachball", + "package": "@fluentui/react-cards", + "comment": "Bump @fluentui/react to v8.107.3", + "commit": "336f91dc2ffd1e85880e1b12187d5ac1bf500f6d" + } + ] + } + }, { "date": "Thu, 06 Apr 2023 07:39:05 GMT", "tag": "@fluentui/react-cards_v0.205.72", diff --git a/packages/react-cards/CHANGELOG.md b/packages/react-cards/CHANGELOG.md index f575fed3e67c7..d248c6c8c8719 100644 --- a/packages/react-cards/CHANGELOG.md +++ b/packages/react-cards/CHANGELOG.md @@ -1,9 +1,18 @@ # Change Log - @fluentui/react-cards -This log was last generated on Thu, 06 Apr 2023 07:39:05 GMT and should not be manually modified. +This log was last generated on Fri, 07 Apr 2023 07:39:19 GMT and should not be manually modified. +## [0.205.73](https://github.com/microsoft/fluentui/tree/@fluentui/react-cards_v0.205.73) + +Fri, 07 Apr 2023 07:39:19 GMT +[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-cards_v0.205.72..@fluentui/react-cards_v0.205.73) + +### Patches + +- Bump @fluentui/react to v8.107.3 ([commit](https://github.com/microsoft/fluentui/commit/336f91dc2ffd1e85880e1b12187d5ac1bf500f6d) by beachball) + ## [0.205.72](https://github.com/microsoft/fluentui/tree/@fluentui/react-cards_v0.205.72) Thu, 06 Apr 2023 07:39:05 GMT diff --git a/packages/react-cards/package.json b/packages/react-cards/package.json index de7f49c3307d8..1850933e12b6d 100644 --- a/packages/react-cards/package.json +++ b/packages/react-cards/package.json @@ -1,6 +1,6 @@ { "name": "@fluentui/react-cards", - "version": "0.205.72", + "version": "0.205.73", "description": "Deprecated experimental Card container components for Fluent UI React.", "main": "lib-commonjs/index.js", "module": "lib/index.js", @@ -34,7 +34,7 @@ "@fluentui/scripts-webpack": "*" }, "dependencies": { - "@fluentui/react": "^8.107.2", + "@fluentui/react": "^8.107.3", "@fluentui/foundation-legacy": "^8.2.33", "@fluentui/set-version": "^8.2.6", "@microsoft/load-themed-styles": "^1.10.26", diff --git a/packages/react-charting/CHANGELOG.json b/packages/react-charting/CHANGELOG.json index f5314697586a6..9e69a592128b9 100644 --- a/packages/react-charting/CHANGELOG.json +++ b/packages/react-charting/CHANGELOG.json @@ -1,6 +1,21 @@ { "name": "@fluentui/react-charting", "entries": [ + { + "date": "Fri, 07 Apr 2023 07:39:19 GMT", + "tag": "@fluentui/react-charting_v5.16.13", + "version": "5.16.13", + "comments": { + "patch": [ + { + "author": "beachball", + "package": "@fluentui/react-charting", + "comment": "Bump @fluentui/react to v8.107.3", + "commit": "336f91dc2ffd1e85880e1b12187d5ac1bf500f6d" + } + ] + } + }, { "date": "Thu, 06 Apr 2023 07:39:05 GMT", "tag": "@fluentui/react-charting_v5.16.12", diff --git a/packages/react-charting/CHANGELOG.md b/packages/react-charting/CHANGELOG.md index 58f3bf95e7cdd..bca105a659493 100644 --- a/packages/react-charting/CHANGELOG.md +++ b/packages/react-charting/CHANGELOG.md @@ -1,9 +1,18 @@ # Change Log - @fluentui/react-charting -This log was last generated on Thu, 06 Apr 2023 07:39:05 GMT and should not be manually modified. +This log was last generated on Fri, 07 Apr 2023 07:39:19 GMT and should not be manually modified. +## [5.16.13](https://github.com/microsoft/fluentui/tree/@fluentui/react-charting_v5.16.13) + +Fri, 07 Apr 2023 07:39:19 GMT +[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-charting_v5.16.12..@fluentui/react-charting_v5.16.13) + +### Patches + +- Bump @fluentui/react to v8.107.3 ([commit](https://github.com/microsoft/fluentui/commit/336f91dc2ffd1e85880e1b12187d5ac1bf500f6d) by beachball) + ## [5.16.12](https://github.com/microsoft/fluentui/tree/@fluentui/react-charting_v5.16.12) Thu, 06 Apr 2023 07:39:05 GMT diff --git a/packages/react-charting/package.json b/packages/react-charting/package.json index 930669b946d7c..ba90eae81f801 100644 --- a/packages/react-charting/package.json +++ b/packages/react-charting/package.json @@ -1,6 +1,6 @@ { "name": "@fluentui/react-charting", - "version": "5.16.12", + "version": "5.16.13", "description": "Experimental React charting components for building experiences for Microsoft 365.", "main": "lib-commonjs/index.js", "module": "lib/index.js", @@ -28,7 +28,7 @@ }, "devDependencies": { "@fluentui/eslint-plugin": "*", - "@fluentui/react": "^8.107.2", + "@fluentui/react": "^8.107.3", "@types/react-addons-test-utils": "0.14.18", "@fluentui/jest-serializer-merge-styles": "^8.0.24", "@fluentui/scripts-jest": "*", @@ -62,7 +62,7 @@ "tslib": "^2.1.0" }, "peerDependencies": { - "@fluentui/react": "^8.107.2", + "@fluentui/react": "^8.107.3", "@types/react": ">=16.8.0 <19.0.0", "@types/react-dom": ">=16.8.0 <19.0.0", "react": ">=16.8.0 <19.0.0", diff --git a/packages/react-components/react-migration-v8-v9/package.json b/packages/react-components/react-migration-v8-v9/package.json index 8847dd784365b..6503d86f06577 100644 --- a/packages/react-components/react-migration-v8-v9/package.json +++ b/packages/react-components/react-migration-v8-v9/package.json @@ -32,8 +32,8 @@ }, "dependencies": { "@ctrl/tinycolor": "3.3.4", - "@fluentui/fluent2-theme": "^8.106.9", - "@fluentui/react": "^8.107.2", + "@fluentui/fluent2-theme": "^8.106.10", + "@fluentui/react": "^8.107.3", "@fluentui/react-components": "^9.18.8", "@fluentui/react-icons": "^2.0.196", "@fluentui/react-theme": "^9.1.7", diff --git a/packages/react-date-time/CHANGELOG.json b/packages/react-date-time/CHANGELOG.json index ad53164335a67..95cea92eabad6 100644 --- a/packages/react-date-time/CHANGELOG.json +++ b/packages/react-date-time/CHANGELOG.json @@ -1,6 +1,21 @@ { "name": "@fluentui/react-date-time", "entries": [ + { + "date": "Fri, 07 Apr 2023 07:39:19 GMT", + "tag": "@fluentui/react-date-time_v8.7.73", + "version": "8.7.73", + "comments": { + "patch": [ + { + "author": "beachball", + "package": "@fluentui/react-date-time", + "comment": "Bump @fluentui/react to v8.107.3", + "commit": "336f91dc2ffd1e85880e1b12187d5ac1bf500f6d" + } + ] + } + }, { "date": "Thu, 06 Apr 2023 07:39:05 GMT", "tag": "@fluentui/react-date-time_v8.7.72", diff --git a/packages/react-date-time/CHANGELOG.md b/packages/react-date-time/CHANGELOG.md index 2a22017636587..ef88ffbd0347f 100644 --- a/packages/react-date-time/CHANGELOG.md +++ b/packages/react-date-time/CHANGELOG.md @@ -1,9 +1,18 @@ # Change Log - @fluentui/react-date-time -This log was last generated on Thu, 06 Apr 2023 07:39:05 GMT and should not be manually modified. +This log was last generated on Fri, 07 Apr 2023 07:39:19 GMT and should not be manually modified. +## [8.7.73](https://github.com/microsoft/fluentui/tree/@fluentui/react-date-time_v8.7.73) + +Fri, 07 Apr 2023 07:39:19 GMT +[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-date-time_v8.7.72..@fluentui/react-date-time_v8.7.73) + +### Patches + +- Bump @fluentui/react to v8.107.3 ([commit](https://github.com/microsoft/fluentui/commit/336f91dc2ffd1e85880e1b12187d5ac1bf500f6d) by beachball) + ## [8.7.72](https://github.com/microsoft/fluentui/tree/@fluentui/react-date-time_v8.7.72) Thu, 06 Apr 2023 07:39:05 GMT diff --git a/packages/react-date-time/package.json b/packages/react-date-time/package.json index 23f704e37a8df..c5395536a5f02 100644 --- a/packages/react-date-time/package.json +++ b/packages/react-date-time/package.json @@ -1,6 +1,6 @@ { "name": "@fluentui/react-date-time", - "version": "8.7.72", + "version": "8.7.73", "description": "Date and time related React components for building experiences for Microsoft 365.", "main": "lib-commonjs/index.js", "module": "lib/index.js", @@ -28,7 +28,7 @@ "@fluentui/scripts-webpack": "*" }, "dependencies": { - "@fluentui/react": "^8.107.2", + "@fluentui/react": "^8.107.3", "@fluentui/set-version": "^8.2.6", "tslib": "^2.1.0" }, diff --git a/packages/react-docsite-components/CHANGELOG.json b/packages/react-docsite-components/CHANGELOG.json index 3ca18c24d9332..a860c9eabcb7a 100644 --- a/packages/react-docsite-components/CHANGELOG.json +++ b/packages/react-docsite-components/CHANGELOG.json @@ -1,6 +1,27 @@ { "name": "@fluentui/react-docsite-components", "entries": [ + { + "date": "Fri, 07 Apr 2023 07:39:19 GMT", + "tag": "@fluentui/react-docsite-components_v8.11.38", + "version": "8.11.38", + "comments": { + "patch": [ + { + "author": "beachball", + "package": "@fluentui/react-docsite-components", + "comment": "Bump @fluentui/react to v8.107.3", + "commit": "336f91dc2ffd1e85880e1b12187d5ac1bf500f6d" + }, + { + "author": "beachball", + "package": "@fluentui/react-docsite-components", + "comment": "Bump @fluentui/react-monaco-editor to v1.7.73", + "commit": "336f91dc2ffd1e85880e1b12187d5ac1bf500f6d" + } + ] + } + }, { "date": "Thu, 06 Apr 2023 07:39:05 GMT", "tag": "@fluentui/react-docsite-components_v8.11.37", diff --git a/packages/react-docsite-components/CHANGELOG.md b/packages/react-docsite-components/CHANGELOG.md index 1d9cba4b45954..d00af280facaf 100644 --- a/packages/react-docsite-components/CHANGELOG.md +++ b/packages/react-docsite-components/CHANGELOG.md @@ -1,9 +1,19 @@ # Change Log - @fluentui/react-docsite-components -This log was last generated on Thu, 06 Apr 2023 07:39:05 GMT and should not be manually modified. +This log was last generated on Fri, 07 Apr 2023 07:39:19 GMT and should not be manually modified. +## [8.11.38](https://github.com/microsoft/fluentui/tree/@fluentui/react-docsite-components_v8.11.38) + +Fri, 07 Apr 2023 07:39:19 GMT +[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-docsite-components_v8.11.37..@fluentui/react-docsite-components_v8.11.38) + +### Patches + +- Bump @fluentui/react to v8.107.3 ([commit](https://github.com/microsoft/fluentui/commit/336f91dc2ffd1e85880e1b12187d5ac1bf500f6d) by beachball) +- Bump @fluentui/react-monaco-editor to v1.7.73 ([commit](https://github.com/microsoft/fluentui/commit/336f91dc2ffd1e85880e1b12187d5ac1bf500f6d) by beachball) + ## [8.11.37](https://github.com/microsoft/fluentui/tree/@fluentui/react-docsite-components_v8.11.37) Thu, 06 Apr 2023 07:39:05 GMT diff --git a/packages/react-docsite-components/package.json b/packages/react-docsite-components/package.json index 0dfcf3701f51c..97ff6a34f8149 100644 --- a/packages/react-docsite-components/package.json +++ b/packages/react-docsite-components/package.json @@ -1,6 +1,6 @@ { "name": "@fluentui/react-docsite-components", - "version": "8.11.37", + "version": "8.11.38", "description": "Fluent UI React components for building documentation sites.", "main": "lib-commonjs/index.js", "module": "lib/index.js", @@ -35,14 +35,14 @@ "react-dom": ">=16.8.0 <19.0.0" }, "dependencies": { - "@fluentui/react": "^8.107.2", + "@fluentui/react": "^8.107.3", "@fluentui/theme": "^2.6.25", "@microsoft/load-themed-styles": "^1.10.26", "@fluentui/example-data": "^8.4.7", "@fluentui/public-docsite-setup": "^0.3.18", "@fluentui/react-hooks": "^8.6.20", "@fluentui/set-version": "^8.2.6", - "@fluentui/react-monaco-editor": "^1.7.72", + "@fluentui/react-monaco-editor": "^1.7.73", "color-check": "0.0.2", "markdown-to-jsx": "^7.0.0", "office-ui-fabric-core": "^11.0.0", diff --git a/packages/react-examples/package.json b/packages/react-examples/package.json index 78440839cfd45..a3bc253822578 100644 --- a/packages/react-examples/package.json +++ b/packages/react-examples/package.json @@ -25,18 +25,18 @@ "@fluentui/scripts-tasks": "*" }, "dependencies": { - "@fluentui/azure-themes": "^8.5.76", + "@fluentui/azure-themes": "^8.5.77", "@fluentui/date-time-utilities": "^8.5.6", "@fluentui/dom-utilities": "^2.2.6", "@fluentui/example-data": "^8.4.7", "@fluentui/font-icons-mdl2": "^8.5.13", "@fluentui/foundation-legacy": "^8.2.33", "@fluentui/merge-styles": "^8.5.7", - "@fluentui/react": "^8.107.2", - "@fluentui/react-cards": "^0.205.72", - "@fluentui/react-charting": "^5.16.12", - "@fluentui/react-docsite-components": "^8.11.37", - "@fluentui/react-experiments": "^8.14.67", + "@fluentui/react": "^8.107.3", + "@fluentui/react-cards": "^0.205.73", + "@fluentui/react-charting": "^5.16.13", + "@fluentui/react-docsite-components": "^8.11.38", + "@fluentui/react-experiments": "^8.14.68", "@fluentui/react-file-type-icons": "^8.8.13", "@fluentui/react-focus": "^8.8.19", "@fluentui/react-hooks": "^8.6.20", @@ -44,7 +44,7 @@ "@fluentui/scheme-utilities": "^8.3.26", "@fluentui/style-utilities": "^8.9.6", "@fluentui/theme": "^2.6.25", - "@fluentui/theme-samples": "^8.7.72", + "@fluentui/theme-samples": "^8.7.73", "@fluentui/utilities": "^8.13.9", "@microsoft/load-themed-styles": "^1.10.26", "d3-fetch": "3.0.1", diff --git a/packages/react-experiments/CHANGELOG.json b/packages/react-experiments/CHANGELOG.json index e7a0e77c14e07..7c487db095659 100644 --- a/packages/react-experiments/CHANGELOG.json +++ b/packages/react-experiments/CHANGELOG.json @@ -1,6 +1,21 @@ { "name": "@fluentui/react-experiments", "entries": [ + { + "date": "Fri, 07 Apr 2023 07:39:19 GMT", + "tag": "@fluentui/react-experiments_v8.14.68", + "version": "8.14.68", + "comments": { + "patch": [ + { + "author": "beachball", + "package": "@fluentui/react-experiments", + "comment": "Bump @fluentui/react to v8.107.3", + "commit": "336f91dc2ffd1e85880e1b12187d5ac1bf500f6d" + } + ] + } + }, { "date": "Thu, 06 Apr 2023 07:39:05 GMT", "tag": "@fluentui/react-experiments_v8.14.67", diff --git a/packages/react-experiments/CHANGELOG.md b/packages/react-experiments/CHANGELOG.md index 43d32ce2e8020..2a06eda746383 100644 --- a/packages/react-experiments/CHANGELOG.md +++ b/packages/react-experiments/CHANGELOG.md @@ -1,9 +1,18 @@ # Change Log - @fluentui/react-experiments -This log was last generated on Thu, 06 Apr 2023 07:39:05 GMT and should not be manually modified. +This log was last generated on Fri, 07 Apr 2023 07:39:19 GMT and should not be manually modified. +## [8.14.68](https://github.com/microsoft/fluentui/tree/@fluentui/react-experiments_v8.14.68) + +Fri, 07 Apr 2023 07:39:19 GMT +[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-experiments_v8.14.67..@fluentui/react-experiments_v8.14.68) + +### Patches + +- Bump @fluentui/react to v8.107.3 ([commit](https://github.com/microsoft/fluentui/commit/336f91dc2ffd1e85880e1b12187d5ac1bf500f6d) by beachball) + ## [8.14.67](https://github.com/microsoft/fluentui/tree/@fluentui/react-experiments_v8.14.67) Thu, 06 Apr 2023 07:39:05 GMT diff --git a/packages/react-experiments/package.json b/packages/react-experiments/package.json index e9d8809fe3ed5..43ebe903fc9ad 100644 --- a/packages/react-experiments/package.json +++ b/packages/react-experiments/package.json @@ -1,6 +1,6 @@ { "name": "@fluentui/react-experiments", - "version": "8.14.67", + "version": "8.14.68", "description": "Experimental React components for building experiences for Microsoft 365.", "main": "lib-commonjs/index.js", "module": "lib/index.js", @@ -39,7 +39,7 @@ "@fluentui/scripts-webpack": "*" }, "dependencies": { - "@fluentui/react": "^8.107.2", + "@fluentui/react": "^8.107.3", "@fluentui/theme": "^2.6.25", "@microsoft/load-themed-styles": "^1.10.26", "@fluentui/example-data": "^8.4.7", diff --git a/packages/react-monaco-editor/CHANGELOG.json b/packages/react-monaco-editor/CHANGELOG.json index bea368f1667a7..6510c55acdf91 100644 --- a/packages/react-monaco-editor/CHANGELOG.json +++ b/packages/react-monaco-editor/CHANGELOG.json @@ -1,6 +1,21 @@ { "name": "@fluentui/react-monaco-editor", "entries": [ + { + "date": "Fri, 07 Apr 2023 07:39:19 GMT", + "tag": "@fluentui/react-monaco-editor_v1.7.73", + "version": "1.7.73", + "comments": { + "patch": [ + { + "author": "beachball", + "package": "@fluentui/react-monaco-editor", + "comment": "Bump @fluentui/react to v8.107.3", + "commit": "336f91dc2ffd1e85880e1b12187d5ac1bf500f6d" + } + ] + } + }, { "date": "Thu, 06 Apr 2023 07:39:05 GMT", "tag": "@fluentui/react-monaco-editor_v1.7.72", diff --git a/packages/react-monaco-editor/CHANGELOG.md b/packages/react-monaco-editor/CHANGELOG.md index 623a9f430f070..f8dbe6294563b 100644 --- a/packages/react-monaco-editor/CHANGELOG.md +++ b/packages/react-monaco-editor/CHANGELOG.md @@ -1,9 +1,18 @@ # Change Log - @fluentui/react-monaco-editor -This log was last generated on Thu, 06 Apr 2023 07:39:05 GMT and should not be manually modified. +This log was last generated on Fri, 07 Apr 2023 07:39:19 GMT and should not be manually modified. +## [1.7.73](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.7.73) + +Fri, 07 Apr 2023 07:39:19 GMT +[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.7.72..@fluentui/react-monaco-editor_v1.7.73) + +### Patches + +- Bump @fluentui/react to v8.107.3 ([commit](https://github.com/microsoft/fluentui/commit/336f91dc2ffd1e85880e1b12187d5ac1bf500f6d) by beachball) + ## [1.7.72](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.7.72) Thu, 06 Apr 2023 07:39:05 GMT diff --git a/packages/react-monaco-editor/package.json b/packages/react-monaco-editor/package.json index da2dba835616b..68f831f316138 100644 --- a/packages/react-monaco-editor/package.json +++ b/packages/react-monaco-editor/package.json @@ -1,6 +1,6 @@ { "name": "@fluentui/react-monaco-editor", - "version": "1.7.72", + "version": "1.7.73", "description": "Live React example editing using monaco", "main": "lib-commonjs/index.js", "module": "lib/index.js", @@ -30,7 +30,7 @@ "@fluentui/scripts-webpack": "*" }, "dependencies": { - "@fluentui/react": "^8.107.2", + "@fluentui/react": "^8.107.3", "@microsoft/load-themed-styles": "^1.10.26", "@fluentui/example-data": "^8.4.7", "@fluentui/monaco-editor": "^1.3.6", diff --git a/packages/react/CHANGELOG.json b/packages/react/CHANGELOG.json index 6957b6ac7f870..cfe9aa5eba87d 100644 --- a/packages/react/CHANGELOG.json +++ b/packages/react/CHANGELOG.json @@ -1,6 +1,21 @@ { "name": "@fluentui/react", "entries": [ + { + "date": "Fri, 07 Apr 2023 07:39:19 GMT", + "tag": "@fluentui/react_v8.107.3", + "version": "8.107.3", + "comments": { + "patch": [ + { + "author": "seanmonahan@microsoft.com", + "package": "@fluentui/react", + "commit": "7a46cab3d31a233b89b7188e994b24712af5393c", + "comment": "fix: GroupedListV2 properly toggles groups" + } + ] + } + }, { "date": "Thu, 06 Apr 2023 07:39:05 GMT", "tag": "@fluentui/react_v8.107.2", diff --git a/packages/react/CHANGELOG.md b/packages/react/CHANGELOG.md index 8bc9a01fb1a9c..d24d714d6ff5e 100644 --- a/packages/react/CHANGELOG.md +++ b/packages/react/CHANGELOG.md @@ -1,9 +1,18 @@ # Change Log - @fluentui/react -This log was last generated on Thu, 06 Apr 2023 07:39:05 GMT and should not be manually modified. +This log was last generated on Fri, 07 Apr 2023 07:39:19 GMT and should not be manually modified. +## [8.107.3](https://github.com/microsoft/fluentui/tree/@fluentui/react_v8.107.3) + +Fri, 07 Apr 2023 07:39:19 GMT +[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react_v8.107.2..@fluentui/react_v8.107.3) + +### Patches + +- fix: GroupedListV2 properly toggles groups ([PR #27420](https://github.com/microsoft/fluentui/pull/27420) by seanmonahan@microsoft.com) + ## [8.107.2](https://github.com/microsoft/fluentui/tree/@fluentui/react_v8.107.2) Thu, 06 Apr 2023 07:39:05 GMT diff --git a/packages/react/package.json b/packages/react/package.json index c9db67c0cb230..684f876c85b14 100644 --- a/packages/react/package.json +++ b/packages/react/package.json @@ -1,6 +1,6 @@ { "name": "@fluentui/react", - "version": "8.107.2", + "version": "8.107.3", "description": "Reusable React components for building web experiences.", "main": "lib-commonjs/index.js", "module": "lib/index.js", diff --git a/packages/storybook/package.json b/packages/storybook/package.json index 5651d2ebc4035..dae380acda4c2 100644 --- a/packages/storybook/package.json +++ b/packages/storybook/package.json @@ -22,13 +22,13 @@ "@fluentui/scripts-tasks": "*" }, "dependencies": { - "@fluentui/react": "^8.107.2", + "@fluentui/react": "^8.107.3", "@fluentui/theme": "^2.6.25", "@storybook/addon-knobs": "6.4.0", "@storybook/addon-essentials": "6.5.15", "@storybook/addons": "6.5.15", - "@fluentui/azure-themes": "^8.5.76", - "@fluentui/theme-samples": "^8.7.72", + "@fluentui/azure-themes": "^8.5.77", + "@fluentui/theme-samples": "^8.7.73", "tslib": "^2.1.0" }, "peerDependencies": { diff --git a/packages/theme-samples/CHANGELOG.json b/packages/theme-samples/CHANGELOG.json index 574d9f7fecb24..a7542409f5b5d 100644 --- a/packages/theme-samples/CHANGELOG.json +++ b/packages/theme-samples/CHANGELOG.json @@ -1,6 +1,21 @@ { "name": "@fluentui/theme-samples", "entries": [ + { + "date": "Fri, 07 Apr 2023 07:39:19 GMT", + "tag": "@fluentui/theme-samples_v8.7.73", + "version": "8.7.73", + "comments": { + "patch": [ + { + "author": "beachball", + "package": "@fluentui/theme-samples", + "comment": "Bump @fluentui/react to v8.107.3", + "commit": "336f91dc2ffd1e85880e1b12187d5ac1bf500f6d" + } + ] + } + }, { "date": "Thu, 06 Apr 2023 07:39:05 GMT", "tag": "@fluentui/theme-samples_v8.7.72", diff --git a/packages/theme-samples/CHANGELOG.md b/packages/theme-samples/CHANGELOG.md index 2eeac95d1c932..b5baa2ce2b853 100644 --- a/packages/theme-samples/CHANGELOG.md +++ b/packages/theme-samples/CHANGELOG.md @@ -1,9 +1,18 @@ # Change Log - @fluentui/theme-samples -This log was last generated on Thu, 06 Apr 2023 07:39:05 GMT and should not be manually modified. +This log was last generated on Fri, 07 Apr 2023 07:39:19 GMT and should not be manually modified. +## [8.7.73](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.7.73) + +Fri, 07 Apr 2023 07:39:19 GMT +[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.7.72..@fluentui/theme-samples_v8.7.73) + +### Patches + +- Bump @fluentui/react to v8.107.3 ([commit](https://github.com/microsoft/fluentui/commit/336f91dc2ffd1e85880e1b12187d5ac1bf500f6d) by beachball) + ## [8.7.72](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.7.72) Thu, 06 Apr 2023 07:39:05 GMT diff --git a/packages/theme-samples/package.json b/packages/theme-samples/package.json index c8b2dc789123a..0efe9927415d5 100644 --- a/packages/theme-samples/package.json +++ b/packages/theme-samples/package.json @@ -1,6 +1,6 @@ { "name": "@fluentui/theme-samples", - "version": "8.7.72", + "version": "8.7.73", "description": "Sample themes for use with Fabric components.", "main": "lib-commonjs/index.js", "module": "lib/index.js", @@ -27,7 +27,7 @@ "@fluentui/scripts-webpack": "*" }, "dependencies": { - "@fluentui/react": "^8.107.2", + "@fluentui/react": "^8.107.3", "@fluentui/set-version": "^8.2.6", "@fluentui/scheme-utilities": "^8.3.26", "tslib": "^2.1.0" From 08d6a93f03f220c813bad65a9bb569372048305f Mon Sep 17 00:00:00 2001 From: Ben Howell <48106640+behowell@users.noreply.github.com> Date: Fri, 7 Apr 2023 09:42:30 -0700 Subject: [PATCH 17/51] chore: Update Field spec for FieldContext (#27454) --- .../react-components/react-field/docs/Spec.md | 164 +++++++++++++----- 1 file changed, 117 insertions(+), 47 deletions(-) diff --git a/packages/react-components/react-field/docs/Spec.md b/packages/react-components/react-field/docs/Spec.md index a1283134468be..5b10dc8868b63 100644 --- a/packages/react-components/react-field/docs/Spec.md +++ b/packages/react-components/react-field/docs/Spec.md @@ -2,7 +2,7 @@ ## Background -Field adds a label, validation text, and hint text to form input components. It can be added around any input components, such as `` or `` from this library, or intrinsic `` elements, or custom form controls. +Field adds a label, validation text, and hint text to form input components. It can be added around any form components from this library, such as `` or ``. Its child can also be a render function, which allows it to be used with intrinsic `` elements, or custom form controls. Epic issue tracking implementation: https://github.com/microsoft/fluentui/issues/19627 @@ -22,19 +22,24 @@ Existing libraries take one of several approaches to Field. The basic problem th - **Ant** - [`Form.Item`](https://ant.design/components/form/#Form.Item) (uses context to do some of the hooking up between the control and the Form.Item component). - **Atlaskit** - [`Field`](https://atlaskit.atlassian.com/packages/design-system/form/docs/fields) (uses a render function as the child of the Field to pass props). -The Field implementation in this spec follows pattern (4). Field passes props to its child to connect the field's label and message text. There are several reasons: +The Field implementation in this spec follows pattern (4). Field uses context for its child child to connect the field's label and message text. There are several reasons: -- **Accessibility**: All of the accessibility props like `aria-labelledby` and `aria-describedby` are set correctly on the child for "free". -- **Simplicity**: Passing props down to the children allows any form control to be used as the child of Field. -- **Consistency**: The Field component provides props like label, validationState, hint, etc. for any form control. +- **Accessibility**: All of the accessibility props like `aria-labelledby` and `aria-describedby` can be set correctly on the child via context. - **Bundle size**: When the label and other field functionality is not needed, it is still possible to use the core components like `Input` without pulling in unnecessary dependencies (like `Label` and the field styling). +- **Flexibility**: Using a context allows other components like Form validators or Tooltips between the field and its component. ## Sample Code ```jsx <> - - + + @@ -74,39 +79,10 @@ The Field implementation in this spec follows pattern (4). Field passes props to Field also forwards some props to its Label: - **Size**: Affects the size of the Label text (but not validationMessage or hint text). -- **Required**: If set, the Label will get a required asterisk: `*` +- **Required**: If set, the Label will get a required asterisk: `*`, and the component will set either `required` (if supported), or `aria-required`. ## API -`Field` applies props to its child component, to connect the label and message text to the control, and make the component accessible by default. - -The props added are: - -- `id` - Uses the child's `id` prop if set; otherwise generates an ID and sets it on the child. This is used as the label's `htmlFor`. -- `aria-labelledby` - The label's ID. -- `aria-describedby` - The validationMessage and/or hint's ID. -- `aria-invalid` - If validationState is error (which is the default when a validationMessage is set). -- `aria-required` - If the required prop is set. - -This is done one of two ways: - -- If the child is a component, uses `cloneElement` to add the props to the child's props. -- If the child is a render function, passes the props to the render function. That function is expected to spread the props in the appropriate place in its render tree. - -### FieldChildProps - -The `FieldChildProps` type defines the props that may be set on the child of Field (or passed to the child render function). - -```ts -/** - * The props added to the Field's child element. Or if the child is a render function, the props passed to the function. - */ -export type FieldChildProps = Pick< - React.HTMLAttributes, - 'id' | 'aria-labelledby' | 'aria-describedby' | 'aria-invalid' | 'aria-required' ->; -``` - ### Slots ```ts @@ -152,11 +128,11 @@ export type FieldProps = Omit, 'children'> & { * * All form controls in this library can be used directly as children (such as `` or ``), as well * as intrinsic form controls like `` or `