diff --git a/.github/workflows/check-packages.yml b/.github/workflows/check-packages.yml index 5d1f822240a0c5..6d093cf878521d 100644 --- a/.github/workflows/check-packages.yml +++ b/.github/workflows/check-packages.yml @@ -85,5 +85,5 @@ jobs: core.exportVariable('BEACHBALL_VERSION', beachballVersion); - run: | - npx beachball@$BEACHBALL_VERSION check -b web-components-v3 + npx beachball@$BEACHBALL_VERSION check --scope packages/web-components -b web-components-v3 node ./scripts/beachball/check-wc-3-changefiles diff --git a/.storybook/preview.js b/.storybook/preview.js index e9d735bb68ed75..a6a71eb7df6b10 100644 --- a/.storybook/preview.js +++ b/.storybook/preview.js @@ -39,6 +39,8 @@ export const parameters = { excludeDecorators: true, type: 'source', }, + // This config reuses sources generated for CodeSandbox export feature (storybook-addon-export-to-codesandbox). + transformSource: (snippet, story) => story.parameters.fullSource, }, exportToSandbox: { provider: 'stackblitz-cloud', diff --git a/apps/ssr-tests/test/test.js b/apps/ssr-tests/test/test.js index bb3db9b7743290..6d39288154e94e 100644 --- a/apps/ssr-tests/test/test.js +++ b/apps/ssr-tests/test/test.js @@ -50,6 +50,12 @@ describe('Utilities', () => { assert.equal(library.getDocument(), undefined); }); }); + + describe('canUseDOM', () => { + it('returns false in server environment', () => { + assert.equal(library.canUseDOM(), false); + }); + }); }); function testRender(componentName, component) { @@ -60,7 +66,7 @@ function testRender(componentName, component) { ReactDOMServer.renderToString(elem); done(); } catch (e) { - done(new Error(e)); + done(e); } }); } diff --git a/apps/vr-tests-react-components/src/stories/InfoButton.stories.tsx b/apps/vr-tests-react-components/src/stories/InfoButton.stories.tsx new file mode 100644 index 00000000000000..81f93526e95552 --- /dev/null +++ b/apps/vr-tests-react-components/src/stories/InfoButton.stories.tsx @@ -0,0 +1,59 @@ +import * as React from 'react'; +import { Steps, StoryWright } from 'storywright'; +import { InfoButton } from '@fluentui/react-infobutton'; +import { storiesOf } from '@storybook/react'; +import { TestWrapperDecoratorFixedWidth } from '../utilities/TestWrapperDecorator'; + +storiesOf('InfoButton', module) + .addDecorator(TestWrapperDecoratorFixedWidth) + .addDecorator(story => ( + + {story()} + + )) + .addStory( + 'default', + () => ( +
+ +
+ ), + { + includeHighContrast: true, + includeDarkMode: true, + }, + ); + +storiesOf('InfoButton', module) + .addDecorator(TestWrapperDecoratorFixedWidth) + .addDecorator(story => ( + {story()} + )) + .addStory('size', () => ( +
+ + + +
+ )); diff --git a/change/@fluentui-web-components-cc0e9fdb-5c71-485b-aff4-c3dcf50d49ac.json b/change/@fluentui-web-components-cc0e9fdb-5c71-485b-aff4-c3dcf50d49ac.json new file mode 100644 index 00000000000000..948d27e2c7c22d --- /dev/null +++ b/change/@fluentui-web-components-cc0e9fdb-5c71-485b-aff4-c3dcf50d49ac.json @@ -0,0 +1,7 @@ +{ + "type": "none", + "comment": "style: fix formatting in files that were silently passed previously", + "packageName": "@fluentui/web-components", + "email": "martinhochel@microsoft.com", + "dependentChangeType": "none" +} diff --git a/packages/api-docs/.npmignore b/packages/api-docs/.npmignore index 5333ec287d27a2..f8b8288c5e4025 100644 --- a/packages/api-docs/.npmignore +++ b/packages/api-docs/.npmignore @@ -36,4 +36,4 @@ project.json !lib !lib-commonjs !lib-amd -!dist \ No newline at end of file +!dist diff --git a/packages/api-docs/src/const-enum-overrides.ts b/packages/api-docs/src/const-enum-overrides.ts new file mode 100644 index 00000000000000..805bc12117ccb6 --- /dev/null +++ b/packages/api-docs/src/const-enum-overrides.ts @@ -0,0 +1,101 @@ +/** + * ☝️ NOTE: + * Types in this file provide const enums replacement that will compile with isolatedModules + */ + +import type { ApiItemKind as _ApiItemKind } from '@microsoft/api-extractor-model'; + +import type { DocNodeKind as _DocNodeKind } from '@microsoft/tsdoc'; + +export enum ApiItemKind { + CallSignature = 'CallSignature', + Class = 'Class', + Constructor = 'Constructor', + ConstructSignature = 'ConstructSignature', + EntryPoint = 'EntryPoint', + Enum = 'Enum', + EnumMember = 'EnumMember', + Function = 'Function', + IndexSignature = 'IndexSignature', + Interface = 'Interface', + Method = 'Method', + MethodSignature = 'MethodSignature', + Model = 'Model', + Namespace = 'Namespace', + Package = 'Package', + Property = 'Property', + PropertySignature = 'PropertySignature', + TypeAlias = 'TypeAlias', + Variable = 'Variable', + None = 'None', +} + +export enum DocNodeKind { + Block = 'Block', + BlockTag = 'BlockTag', + Excerpt = 'Excerpt', + FencedCode = 'FencedCode', + CodeSpan = 'CodeSpan', + Comment = 'Comment', + DeclarationReference = 'DeclarationReference', + ErrorText = 'ErrorText', + EscapedText = 'EscapedText', + HtmlAttribute = 'HtmlAttribute', + HtmlEndTag = 'HtmlEndTag', + HtmlStartTag = 'HtmlStartTag', + InheritDocTag = 'InheritDocTag', + InlineTag = 'InlineTag', + LinkTag = 'LinkTag', + MemberIdentifier = 'MemberIdentifier', + MemberReference = 'MemberReference', + MemberSelector = 'MemberSelector', + MemberSymbol = 'MemberSymbol', + Paragraph = 'Paragraph', + ParamBlock = 'ParamBlock', + ParamCollection = 'ParamCollection', + PlainText = 'PlainText', + Section = 'Section', + SoftBreak = 'SoftBreak', +} + +// Following function is used to keep 3rd party types in sync with our custom ones. test on "type level" +// If anything will go wrong this will throw TSC error +// +// Why do we need this? +// To be able to use `isolateModules` we cannot use nor consume const enums. +// @ts-expect-error - this function is only for type compat test + +function _testEnumsCompatibility() { + testApiItemKind(); + testDocNodeKind(); + + function testDocNodeKind() { + // @ts-expect-error - _DocNodeKind is const enum - cannot be used with isolateModules - this does the trick + type Keys = keyof typeof _DocNodeKind; + type Keys2 = keyof typeof DocNodeKind; + + let test = {} as Keys; + let test2 = {} as Keys2; + + test = test2; + test2 = test; + + // eslint-disable-next-line no-console + console.log(test, test2); + } + + function testApiItemKind() { + // @ts-expect-error - _ApiItemKind is const enum - cannot be used with isolateModules - this does the trick + type Keys = keyof typeof _ApiItemKind; + type Keys2 = keyof typeof ApiItemKind; + + let test = {} as Keys; + let test2 = {} as Keys2; + + test = test2; + test2 = test; + + // eslint-disable-next-line no-console + console.log(test, test2); + } +} diff --git a/packages/api-docs/src/rendering.ts b/packages/api-docs/src/rendering.ts index 2853f3fad386cf..65bb01c6c8afec 100644 --- a/packages/api-docs/src/rendering.ts +++ b/packages/api-docs/src/rendering.ts @@ -14,6 +14,7 @@ import { DocNodeKind, } from '@microsoft/tsdoc'; import { ApiItem, ApiModel, ExcerptToken, IExcerptTokenRange } from '@microsoft/api-extractor-model'; +import { DocNodeKind } from './const-enum-overrides'; import { ILinkToken } from './types'; import { ICollectedData } from './types-private'; diff --git a/packages/common-styles/CHANGELOG.md b/packages/common-styles/CHANGELOG.md index 6ade32da8fbd20..ade8945f86cc9a 100644 --- a/packages/common-styles/CHANGELOG.md +++ b/packages/common-styles/CHANGELOG.md @@ -6,7 +6,7 @@ This log was last generated on Wed, 28 Jun 2023 07:37:32 GMT and should not be m ## [1.2.32](https://github.com/microsoft/fluentui/tree/@fluentui/common-styles_v1.2.32) -Wed, 28 Jun 2023 07:37:32 GMT +Wed, 28 Jun 2023 07:37:32 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/common-styles_v1.2.31..@fluentui/common-styles_v1.2.32) ### Patches @@ -15,7 +15,7 @@ Wed, 28 Jun 2023 07:37:32 GMT ## [1.2.31](https://github.com/microsoft/fluentui/tree/@fluentui/common-styles_v1.2.31) -Mon, 19 Jun 2023 07:36:39 GMT +Mon, 19 Jun 2023 07:36:39 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/common-styles_v1.2.30..@fluentui/common-styles_v1.2.31) ### Patches @@ -24,7 +24,7 @@ Mon, 19 Jun 2023 07:36:39 GMT ## [1.2.30](https://github.com/microsoft/fluentui/tree/@fluentui/common-styles_v1.2.30) -Thu, 01 Jun 2023 07:38:37 GMT +Thu, 01 Jun 2023 07:38:37 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/common-styles_v1.2.29..@fluentui/common-styles_v1.2.30) ### Patches @@ -33,7 +33,7 @@ Thu, 01 Jun 2023 07:38:37 GMT ## [1.2.29](https://github.com/microsoft/fluentui/tree/@fluentui/common-styles_v1.2.29) -Wed, 31 May 2023 07:38:40 GMT +Wed, 31 May 2023 07:38:40 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/common-styles_v1.2.28..@fluentui/common-styles_v1.2.29) ### Patches @@ -42,7 +42,7 @@ Wed, 31 May 2023 07:38:40 GMT ## [1.2.28](https://github.com/microsoft/fluentui/tree/@fluentui/common-styles_v1.2.28) -Tue, 30 May 2023 07:36:09 GMT +Tue, 30 May 2023 07:36:09 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/common-styles_v1.2.27..@fluentui/common-styles_v1.2.28) ### Patches @@ -51,7 +51,7 @@ Tue, 30 May 2023 07:36:09 GMT ## [1.2.27](https://github.com/microsoft/fluentui/tree/@fluentui/common-styles_v1.2.27) -Fri, 26 May 2023 07:37:02 GMT +Fri, 26 May 2023 07:37:02 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/common-styles_v1.2.26..@fluentui/common-styles_v1.2.27) ### Patches @@ -60,7 +60,7 @@ Fri, 26 May 2023 07:37:02 GMT ## [1.2.26](https://github.com/microsoft/fluentui/tree/@fluentui/common-styles_v1.2.26) -Fri, 05 May 2023 18:14:02 GMT +Fri, 05 May 2023 18:14:02 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/common-styles_v1.2.25..@fluentui/common-styles_v1.2.26) ### Patches @@ -70,7 +70,7 @@ Fri, 05 May 2023 18:14:02 GMT ## [1.2.25](https://github.com/microsoft/fluentui/tree/@fluentui/common-styles_v1.2.25) -Tue, 02 May 2023 22:20:25 GMT +Tue, 02 May 2023 22:20:25 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/common-styles_v1.2.24..@fluentui/common-styles_v1.2.25) ### Patches @@ -79,7 +79,7 @@ Tue, 02 May 2023 22:20:25 GMT ## [1.2.24](https://github.com/microsoft/fluentui/tree/@fluentui/common-styles_v1.2.24) -Tue, 02 May 2023 00:58:19 GMT +Tue, 02 May 2023 00:58:19 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/common-styles_v1.2.23..@fluentui/common-styles_v1.2.24) ### Patches @@ -88,7 +88,7 @@ Tue, 02 May 2023 00:58:19 GMT ## [1.2.23](https://github.com/microsoft/fluentui/tree/@fluentui/common-styles_v1.2.23) -Mon, 01 May 2023 07:39:54 GMT +Mon, 01 May 2023 07:39:54 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/common-styles_v1.2.22..@fluentui/common-styles_v1.2.23) ### Patches @@ -97,7 +97,7 @@ Mon, 01 May 2023 07:39:54 GMT ## [1.2.22](https://github.com/microsoft/fluentui/tree/@fluentui/common-styles_v1.2.22) -Fri, 17 Mar 2023 08:15:56 GMT +Fri, 17 Mar 2023 08:15:56 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/common-styles_v1.2.21..@fluentui/common-styles_v1.2.22) ### Patches @@ -106,7 +106,7 @@ Fri, 17 Mar 2023 08:15:56 GMT ## [1.2.21](https://github.com/microsoft/fluentui/tree/@fluentui/common-styles_v1.2.21) -Thu, 09 Mar 2023 07:39:12 GMT +Thu, 09 Mar 2023 07:39:12 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/common-styles_v1.2.20..@fluentui/common-styles_v1.2.21) ### Patches @@ -115,7 +115,7 @@ Thu, 09 Mar 2023 07:39:12 GMT ## [1.2.20](https://github.com/microsoft/fluentui/tree/@fluentui/common-styles_v1.2.20) -Mon, 06 Mar 2023 07:43:04 GMT +Mon, 06 Mar 2023 07:43:04 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/common-styles_v1.2.19..@fluentui/common-styles_v1.2.20) ### Patches @@ -124,7 +124,7 @@ Mon, 06 Mar 2023 07:43:04 GMT ## [1.2.19](https://github.com/microsoft/fluentui/tree/@fluentui/common-styles_v1.2.19) -Wed, 01 Mar 2023 07:45:41 GMT +Wed, 01 Mar 2023 07:45:41 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/common-styles_v1.2.18..@fluentui/common-styles_v1.2.19) ### Patches @@ -133,7 +133,7 @@ Wed, 01 Mar 2023 07:45:41 GMT ## [1.2.18](https://github.com/microsoft/fluentui/tree/@fluentui/common-styles_v1.2.18) -Sat, 18 Feb 2023 01:37:02 GMT +Sat, 18 Feb 2023 01:37:02 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/common-styles_v1.2.17..@fluentui/common-styles_v1.2.18) ### Patches @@ -142,7 +142,7 @@ Sat, 18 Feb 2023 01:37:02 GMT ## [1.2.17](https://github.com/microsoft/fluentui/tree/@fluentui/common-styles_v1.2.17) -Fri, 03 Feb 2023 07:50:06 GMT +Fri, 03 Feb 2023 07:50:06 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/common-styles_v1.2.16..@fluentui/common-styles_v1.2.17) ### Patches @@ -151,7 +151,7 @@ Fri, 03 Feb 2023 07:50:06 GMT ## [1.2.16](https://github.com/microsoft/fluentui/tree/@fluentui/common-styles_v1.2.16) -Fri, 27 Jan 2023 07:37:51 GMT +Fri, 27 Jan 2023 07:37:51 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/common-styles_v1.2.15..@fluentui/common-styles_v1.2.16) ### Patches @@ -160,7 +160,7 @@ Fri, 27 Jan 2023 07:37:51 GMT ## [1.2.15](https://github.com/microsoft/fluentui/tree/@fluentui/common-styles_v1.2.15) -Tue, 10 Jan 2023 07:50:15 GMT +Tue, 10 Jan 2023 07:50:15 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/common-styles_v1.2.14..@fluentui/common-styles_v1.2.15) ### Patches @@ -169,7 +169,7 @@ Tue, 10 Jan 2023 07:50:15 GMT ## [1.2.14](https://github.com/microsoft/fluentui/tree/@fluentui/common-styles_v1.2.14) -Tue, 20 Dec 2022 07:53:34 GMT +Tue, 20 Dec 2022 07:53:34 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/common-styles_v1.2.13..@fluentui/common-styles_v1.2.14) ### Patches @@ -178,7 +178,7 @@ Tue, 20 Dec 2022 07:53:34 GMT ## [1.2.13](https://github.com/microsoft/fluentui/tree/@fluentui/common-styles_v1.2.13) -Tue, 15 Nov 2022 07:44:59 GMT +Tue, 15 Nov 2022 07:44:59 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/common-styles_v1.2.12..@fluentui/common-styles_v1.2.13) ### Patches @@ -187,7 +187,7 @@ Tue, 15 Nov 2022 07:44:59 GMT ## [1.2.12](https://github.com/microsoft/fluentui/tree/@fluentui/common-styles_v1.2.12) -Wed, 09 Nov 2022 07:48:12 GMT +Wed, 09 Nov 2022 07:48:12 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/common-styles_v1.2.11..@fluentui/common-styles_v1.2.12) ### Patches @@ -196,7 +196,7 @@ Wed, 09 Nov 2022 07:48:12 GMT ## [1.2.11](https://github.com/microsoft/fluentui/tree/@fluentui/common-styles_v1.2.11) -Thu, 20 Oct 2022 07:43:14 GMT +Thu, 20 Oct 2022 07:43:14 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/common-styles_v1.2.10..@fluentui/common-styles_v1.2.11) ### Patches @@ -205,7 +205,7 @@ Thu, 20 Oct 2022 07:43:14 GMT ## [1.2.10](https://github.com/microsoft/fluentui/tree/@fluentui/common-styles_v1.2.10) -Mon, 10 Oct 2022 07:38:24 GMT +Mon, 10 Oct 2022 07:38:24 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/common-styles_v1.2.9..@fluentui/common-styles_v1.2.10) ### Patches @@ -214,7 +214,7 @@ Mon, 10 Oct 2022 07:38:24 GMT ## [1.2.9](https://github.com/microsoft/fluentui/tree/@fluentui/common-styles_v1.2.9) -Fri, 02 Sep 2022 07:48:53 GMT +Fri, 02 Sep 2022 07:48:53 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/common-styles_v1.2.8..@fluentui/common-styles_v1.2.9) ### Patches @@ -223,7 +223,7 @@ Fri, 02 Sep 2022 07:48:53 GMT ## [1.2.8](https://github.com/microsoft/fluentui/tree/@fluentui/common-styles_v1.2.8) -Thu, 01 Sep 2022 07:48:11 GMT +Thu, 01 Sep 2022 07:48:11 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/common-styles_v1.2.7..@fluentui/common-styles_v1.2.8) ### Patches @@ -232,7 +232,7 @@ Thu, 01 Sep 2022 07:48:11 GMT ## [1.2.7](https://github.com/microsoft/fluentui/tree/@fluentui/common-styles_v1.2.7) -Mon, 29 Aug 2022 07:44:38 GMT +Mon, 29 Aug 2022 07:44:38 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/common-styles_v1.2.6..@fluentui/common-styles_v1.2.7) ### Patches @@ -241,7 +241,7 @@ Mon, 29 Aug 2022 07:44:38 GMT ## [1.2.6](https://github.com/microsoft/fluentui/tree/@fluentui/common-styles_v1.2.6) -Wed, 24 Aug 2022 16:36:06 GMT +Wed, 24 Aug 2022 16:36:06 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/common-styles_v1.2.5..@fluentui/common-styles_v1.2.6) ### Patches @@ -250,7 +250,7 @@ Wed, 24 Aug 2022 16:36:06 GMT ## [1.2.5](https://github.com/microsoft/fluentui/tree/@fluentui/common-styles_v1.2.5) -Tue, 23 Aug 2022 07:22:50 GMT +Tue, 23 Aug 2022 07:22:50 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/common-styles_v1.2.4..@fluentui/common-styles_v1.2.5) ### Patches @@ -259,7 +259,7 @@ Tue, 23 Aug 2022 07:22:50 GMT ## [1.2.4](https://github.com/microsoft/fluentui/tree/@fluentui/common-styles_v1.2.4) -Thu, 18 Aug 2022 23:39:31 GMT +Thu, 18 Aug 2022 23:39:31 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/common-styles_v1.2.3..@fluentui/common-styles_v1.2.4) ### Patches @@ -268,7 +268,7 @@ Thu, 18 Aug 2022 23:39:31 GMT ## [1.2.3](https://github.com/microsoft/fluentui/tree/@fluentui/common-styles_v1.2.3) -Mon, 15 Aug 2022 07:39:41 GMT +Mon, 15 Aug 2022 07:39:41 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/common-styles_v1.2.2..@fluentui/common-styles_v1.2.3) ### Patches @@ -277,7 +277,7 @@ Mon, 15 Aug 2022 07:39:41 GMT ## [1.2.2](https://github.com/microsoft/fluentui/tree/@fluentui/common-styles_v1.2.2) -Mon, 08 Aug 2022 07:39:33 GMT +Mon, 08 Aug 2022 07:39:33 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/common-styles_v1.2.1..@fluentui/common-styles_v1.2.2) ### Patches @@ -286,7 +286,7 @@ Mon, 08 Aug 2022 07:39:33 GMT ## [1.2.1](https://github.com/microsoft/fluentui/tree/@fluentui/common-styles_v1.2.1) -Tue, 02 Aug 2022 07:44:44 GMT +Tue, 02 Aug 2022 07:44:44 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/common-styles_v1.2.0..@fluentui/common-styles_v1.2.1) ### Patches @@ -295,7 +295,7 @@ Tue, 02 Aug 2022 07:44:44 GMT ## [1.2.0](https://github.com/microsoft/fluentui/tree/@fluentui/common-styles_v1.2.0) -Wed, 27 Jul 2022 07:37:42 GMT +Wed, 27 Jul 2022 07:37:42 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/common-styles_v1.1.3..@fluentui/common-styles_v1.2.0) ### Minor changes @@ -304,7 +304,7 @@ Wed, 27 Jul 2022 07:37:42 GMT ## [1.1.3](https://github.com/microsoft/fluentui/tree/@fluentui/common-styles_v1.1.3) -Tue, 26 Jul 2022 07:39:35 GMT +Tue, 26 Jul 2022 07:39:35 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/common-styles_v1.1.2..@fluentui/common-styles_v1.1.3) ### Patches @@ -313,7 +313,7 @@ Tue, 26 Jul 2022 07:39:35 GMT ## [1.1.2](https://github.com/microsoft/fluentui/tree/@fluentui/common-styles_v1.1.2) -Tue, 12 Jul 2022 07:41:00 GMT +Tue, 12 Jul 2022 07:41:00 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/common-styles_v1.1.1..@fluentui/common-styles_v1.1.2) ### Patches @@ -322,7 +322,7 @@ Tue, 12 Jul 2022 07:41:00 GMT ## [1.1.1](https://github.com/microsoft/fluentui/tree/@fluentui/common-styles_v1.1.1) -Tue, 28 Jun 2022 07:39:04 GMT +Tue, 28 Jun 2022 07:39:04 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/common-styles_v1.1.0..@fluentui/common-styles_v1.1.1) ### Patches @@ -331,7 +331,7 @@ Tue, 28 Jun 2022 07:39:04 GMT ## [1.1.0](https://github.com/microsoft/fluentui/tree/@fluentui/common-styles_v1.1.0) -Tue, 07 Jun 2022 07:48:02 GMT +Tue, 07 Jun 2022 07:48:02 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/common-styles_v1.0.39..@fluentui/common-styles_v1.1.0) ### Minor changes @@ -341,7 +341,7 @@ Tue, 07 Jun 2022 07:48:02 GMT ## [1.0.39](https://github.com/microsoft/fluentui/tree/@fluentui/common-styles_v1.0.39) -Fri, 13 May 2022 07:45:35 GMT +Fri, 13 May 2022 07:45:35 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/common-styles_v1.0.38..@fluentui/common-styles_v1.0.39) ### Patches @@ -350,7 +350,7 @@ Fri, 13 May 2022 07:45:35 GMT ## [1.0.38](https://github.com/microsoft/fluentui/tree/@fluentui/common-styles_v1.0.38) -Fri, 15 Apr 2022 07:42:48 GMT +Fri, 15 Apr 2022 07:42:48 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/common-styles_v1.0.37..@fluentui/common-styles_v1.0.38) ### Patches @@ -359,7 +359,7 @@ Fri, 15 Apr 2022 07:42:48 GMT ## [1.0.37](https://github.com/microsoft/fluentui/tree/@fluentui/common-styles_v1.0.37) -Tue, 15 Mar 2022 07:45:54 GMT +Tue, 15 Mar 2022 07:45:54 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/common-styles_v1.0.36..@fluentui/common-styles_v1.0.37) ### Patches @@ -368,7 +368,7 @@ Tue, 15 Mar 2022 07:45:54 GMT ## [1.0.36](https://github.com/microsoft/fluentui/tree/@fluentui/common-styles_v1.0.36) -Fri, 11 Mar 2022 07:34:41 GMT +Fri, 11 Mar 2022 07:34:41 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/common-styles_v1.0.35..@fluentui/common-styles_v1.0.36) ### Patches @@ -377,7 +377,7 @@ Fri, 11 Mar 2022 07:34:41 GMT ## [1.0.35](https://github.com/microsoft/fluentui/tree/@fluentui/common-styles_v1.0.35) -Thu, 10 Mar 2022 07:34:50 GMT +Thu, 10 Mar 2022 07:34:50 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/common-styles_v1.0.34..@fluentui/common-styles_v1.0.35) ### Patches @@ -386,7 +386,7 @@ Thu, 10 Mar 2022 07:34:50 GMT ## [1.0.34](https://github.com/microsoft/fluentui/tree/@fluentui/common-styles_v1.0.34) -Wed, 09 Mar 2022 07:37:30 GMT +Wed, 09 Mar 2022 07:37:30 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/common-styles_v1.0.33..@fluentui/common-styles_v1.0.34) ### Patches @@ -395,7 +395,7 @@ Wed, 09 Mar 2022 07:37:30 GMT ## [1.0.33](https://github.com/microsoft/fluentui/tree/@fluentui/common-styles_v1.0.33) -Tue, 08 Mar 2022 23:29:58 GMT +Tue, 08 Mar 2022 23:29:58 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/common-styles_v1.0.32..@fluentui/common-styles_v1.0.33) ### Patches @@ -404,7 +404,7 @@ Tue, 08 Mar 2022 23:29:58 GMT ## [1.0.32](https://github.com/microsoft/fluentui/tree/@fluentui/common-styles_v1.0.32) -Thu, 03 Mar 2022 07:24:29 GMT +Thu, 03 Mar 2022 07:24:29 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/common-styles_v1.0.31..@fluentui/common-styles_v1.0.32) ### Patches @@ -413,7 +413,7 @@ Thu, 03 Mar 2022 07:24:29 GMT ## [1.0.31](https://github.com/microsoft/fluentui/tree/@fluentui/common-styles_v1.0.31) -Tue, 01 Mar 2022 07:23:43 GMT +Tue, 01 Mar 2022 07:23:43 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/common-styles_v1.0.30..@fluentui/common-styles_v1.0.31) ### Patches @@ -422,7 +422,7 @@ Tue, 01 Mar 2022 07:23:43 GMT ## [1.0.30](https://github.com/microsoft/fluentui/tree/@fluentui/common-styles_v1.0.30) -Thu, 24 Feb 2022 07:29:50 GMT +Thu, 24 Feb 2022 07:29:50 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/common-styles_v1.0.29..@fluentui/common-styles_v1.0.30) ### Patches @@ -431,7 +431,7 @@ Thu, 24 Feb 2022 07:29:50 GMT ## [1.0.29](https://github.com/microsoft/fluentui/tree/@fluentui/common-styles_v1.0.29) -Thu, 17 Feb 2022 07:28:31 GMT +Thu, 17 Feb 2022 07:28:31 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/common-styles_v1.0.28..@fluentui/common-styles_v1.0.29) ### Patches @@ -440,7 +440,7 @@ Thu, 17 Feb 2022 07:28:31 GMT ## [1.0.28](https://github.com/microsoft/fluentui/tree/@fluentui/common-styles_v1.0.28) -Fri, 11 Feb 2022 07:27:49 GMT +Fri, 11 Feb 2022 07:27:49 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/common-styles_v1.0.27..@fluentui/common-styles_v1.0.28) ### Patches @@ -449,7 +449,7 @@ Fri, 11 Feb 2022 07:27:49 GMT ## [1.0.27](https://github.com/microsoft/fluentui/tree/@fluentui/common-styles_v1.0.27) -Wed, 09 Feb 2022 07:30:50 GMT +Wed, 09 Feb 2022 07:30:50 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/common-styles_v1.0.26..@fluentui/common-styles_v1.0.27) ### Patches @@ -458,7 +458,7 @@ Wed, 09 Feb 2022 07:30:50 GMT ## [1.0.26](https://github.com/microsoft/fluentui/tree/@fluentui/common-styles_v1.0.26) -Thu, 03 Feb 2022 07:29:41 GMT +Thu, 03 Feb 2022 07:29:41 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/common-styles_v1.0.25..@fluentui/common-styles_v1.0.26) ### Patches @@ -467,7 +467,7 @@ Thu, 03 Feb 2022 07:29:41 GMT ## [1.0.25](https://github.com/microsoft/fluentui/tree/@fluentui/common-styles_v1.0.25) -Mon, 03 Jan 2022 23:32:11 GMT +Mon, 03 Jan 2022 23:32:11 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/common-styles_v1.0.24..@fluentui/common-styles_v1.0.25) ### Patches @@ -476,7 +476,7 @@ Mon, 03 Jan 2022 23:32:11 GMT ## [1.0.24](https://github.com/microsoft/fluentui/tree/@fluentui/common-styles_v1.0.24) -Wed, 15 Dec 2021 07:31:29 GMT +Wed, 15 Dec 2021 07:31:29 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/common-styles_v1.0.23..@fluentui/common-styles_v1.0.24) ### Patches @@ -485,7 +485,7 @@ Wed, 15 Dec 2021 07:31:29 GMT ## [1.0.23](https://github.com/microsoft/fluentui/tree/@fluentui/common-styles_v1.0.23) -Thu, 25 Nov 2021 14:54:16 GMT +Thu, 25 Nov 2021 14:54:16 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/common-styles_v1.0.22..@fluentui/common-styles_v1.0.23) ### Patches @@ -494,7 +494,7 @@ Thu, 25 Nov 2021 14:54:16 GMT ## [1.0.22](https://github.com/microsoft/fluentui/tree/@fluentui/common-styles_v1.0.22) -Wed, 10 Nov 2021 07:31:59 GMT +Wed, 10 Nov 2021 07:31:59 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/common-styles_v1.0.21..@fluentui/common-styles_v1.0.22) ### Patches @@ -503,7 +503,7 @@ Wed, 10 Nov 2021 07:31:59 GMT ## [1.0.21](https://github.com/microsoft/fluentui/tree/@fluentui/common-styles_v1.0.21) -Tue, 02 Nov 2021 07:37:02 GMT +Tue, 02 Nov 2021 07:37:02 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/common-styles_v1.0.20..@fluentui/common-styles_v1.0.21) ### Patches @@ -512,7 +512,7 @@ Tue, 02 Nov 2021 07:37:02 GMT ## [1.0.20](https://github.com/microsoft/fluentui/tree/@fluentui/common-styles_v1.0.20) -Mon, 01 Nov 2021 07:32:08 GMT +Mon, 01 Nov 2021 07:32:08 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/common-styles_v1.0.19..@fluentui/common-styles_v1.0.20) ### Patches @@ -521,7 +521,7 @@ Mon, 01 Nov 2021 07:32:08 GMT ## [1.0.19](https://github.com/microsoft/fluentui/tree/@fluentui/common-styles_v1.0.19) -Tue, 05 Oct 2021 07:37:17 GMT +Tue, 05 Oct 2021 07:37:17 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/common-styles_v1.0.18..@fluentui/common-styles_v1.0.19) ### Patches @@ -530,7 +530,7 @@ Tue, 05 Oct 2021 07:37:17 GMT ## [1.0.18](https://github.com/microsoft/fluentui/tree/@fluentui/common-styles_v1.0.18) -Tue, 28 Sep 2021 22:17:07 GMT +Tue, 28 Sep 2021 22:17:07 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/common-styles_v1.0.17..@fluentui/common-styles_v1.0.18) ### Patches @@ -539,7 +539,7 @@ Tue, 28 Sep 2021 22:17:07 GMT ## [1.0.17](https://github.com/microsoft/fluentui/tree/@fluentui/common-styles_v1.0.17) -Thu, 02 Sep 2021 07:36:46 GMT +Thu, 02 Sep 2021 07:36:46 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/common-styles_v1.0.16..@fluentui/common-styles_v1.0.17) ### Patches @@ -548,7 +548,7 @@ Thu, 02 Sep 2021 07:36:46 GMT ## [1.0.16](https://github.com/microsoft/fluentui/tree/@fluentui/common-styles_v1.0.16) -Wed, 25 Aug 2021 07:35:19 GMT +Wed, 25 Aug 2021 07:35:19 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/common-styles_v1.0.15..@fluentui/common-styles_v1.0.16) ### Patches @@ -557,7 +557,7 @@ Wed, 25 Aug 2021 07:35:19 GMT ## [1.0.15](https://github.com/microsoft/fluentui/tree/@fluentui/common-styles_v1.0.15) -Thu, 19 Aug 2021 07:41:35 GMT +Thu, 19 Aug 2021 07:41:35 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/common-styles_v1.0.14..@fluentui/common-styles_v1.0.15) ### Patches @@ -566,7 +566,7 @@ Thu, 19 Aug 2021 07:41:35 GMT ## [1.0.14](https://github.com/microsoft/fluentui/tree/@fluentui/common-styles_v1.0.14) -Tue, 03 Aug 2021 07:39:30 GMT +Tue, 03 Aug 2021 07:39:30 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/common-styles_v1.0.13..@fluentui/common-styles_v1.0.14) ### Patches @@ -575,7 +575,7 @@ Tue, 03 Aug 2021 07:39:30 GMT ## [1.0.13](https://github.com/microsoft/fluentui/tree/@fluentui/common-styles_v1.0.13) -Thu, 29 Jul 2021 07:35:37 GMT +Thu, 29 Jul 2021 07:35:37 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/common-styles_v1.0.12..@fluentui/common-styles_v1.0.13) ### Patches @@ -584,7 +584,7 @@ Thu, 29 Jul 2021 07:35:37 GMT ## [1.0.12](https://github.com/microsoft/fluentui/tree/@fluentui/common-styles_v1.0.12) -Tue, 13 Jul 2021 07:35:36 GMT +Tue, 13 Jul 2021 07:35:36 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/common-styles_v1.0.11..@fluentui/common-styles_v1.0.12) ### Patches @@ -593,7 +593,7 @@ Tue, 13 Jul 2021 07:35:36 GMT ## [1.0.11](https://github.com/microsoft/fluentui/tree/@fluentui/common-styles_v1.0.11) -Fri, 09 Jul 2021 07:39:31 GMT +Fri, 09 Jul 2021 07:39:31 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/common-styles_v1.0.10..@fluentui/common-styles_v1.0.11) ### Patches @@ -602,7 +602,7 @@ Fri, 09 Jul 2021 07:39:31 GMT ## [1.0.10](https://github.com/microsoft/fluentui/tree/@fluentui/common-styles_v1.0.10) -Mon, 28 Jun 2021 07:35:16 GMT +Mon, 28 Jun 2021 07:35:16 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/common-styles_v1.0.9..@fluentui/common-styles_v1.0.10) ### Patches @@ -611,7 +611,7 @@ Mon, 28 Jun 2021 07:35:16 GMT ## [1.0.9](https://github.com/microsoft/fluentui/tree/@fluentui/common-styles_v1.0.9) -Tue, 15 Jun 2021 07:40:20 GMT +Tue, 15 Jun 2021 07:40:20 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/common-styles_v1.0.8..@fluentui/common-styles_v1.0.9) ### Patches @@ -620,7 +620,7 @@ Tue, 15 Jun 2021 07:40:20 GMT ## [1.0.8](https://github.com/microsoft/fluentui/tree/@fluentui/common-styles_v1.0.8) -Mon, 07 Jun 2021 07:38:15 GMT +Mon, 07 Jun 2021 07:38:15 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/common-styles_v1.0.7..@fluentui/common-styles_v1.0.8) ### Patches @@ -629,7 +629,7 @@ Mon, 07 Jun 2021 07:38:15 GMT ## [1.0.7](https://github.com/microsoft/fluentui/tree/@fluentui/common-styles_v1.0.7) -Thu, 20 May 2021 07:41:54 GMT +Thu, 20 May 2021 07:41:54 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/common-styles_v1.0.6..@fluentui/common-styles_v1.0.7) ### Patches @@ -638,7 +638,7 @@ Thu, 20 May 2021 07:41:54 GMT ## [1.0.6](https://github.com/microsoft/fluentui/tree/@fluentui/common-styles_v1.0.6) -Fri, 30 Apr 2021 07:42:23 GMT +Fri, 30 Apr 2021 07:42:23 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/common-styles_v1.0.5..@fluentui/common-styles_v1.0.6) ### Patches @@ -647,7 +647,7 @@ Fri, 30 Apr 2021 07:42:23 GMT ## [1.0.5](https://github.com/microsoft/fluentui/tree/@fluentui/common-styles_v1.0.5) -Fri, 23 Apr 2021 07:37:10 GMT +Fri, 23 Apr 2021 07:37:10 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/common-styles_v1.0.4..@fluentui/common-styles_v1.0.5) ### Patches @@ -656,7 +656,7 @@ Fri, 23 Apr 2021 07:37:10 GMT ## [1.0.4](https://github.com/microsoft/fluentui/tree/@fluentui/common-styles_v1.0.4) -Tue, 13 Apr 2021 14:55:56 GMT +Tue, 13 Apr 2021 14:55:56 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/common-styles_v1.0.3..@fluentui/common-styles_v1.0.4) ### Patches @@ -665,7 +665,7 @@ Tue, 13 Apr 2021 14:55:56 GMT ## [1.0.3](https://github.com/microsoft/fluentui/tree/@fluentui/common-styles_v1.0.3) -Wed, 31 Mar 2021 00:53:43 GMT +Wed, 31 Mar 2021 00:53:43 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/common-styles_v1.0.2..@fluentui/common-styles_v1.0.3) ### Patches @@ -674,7 +674,7 @@ Wed, 31 Mar 2021 00:53:43 GMT ## [1.0.2](https://github.com/microsoft/fluentui/tree/@fluentui/common-styles_v1.0.2) -Wed, 03 Mar 2021 00:10:09 GMT +Wed, 03 Mar 2021 00:10:09 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/common-styles_v1.0.1..@fluentui/common-styles_v1.0.2) ### Patches @@ -683,7 +683,7 @@ Wed, 03 Mar 2021 00:10:09 GMT ## [1.0.1](https://github.com/microsoft/fluentui/tree/@fluentui/common-styles_v1.0.1) -Fri, 26 Feb 2021 01:16:27 GMT +Fri, 26 Feb 2021 01:16:27 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/common-styles_v1.0.0-beta.19..@fluentui/common-styles_v1.0.1) ### Patches @@ -692,7 +692,7 @@ Fri, 26 Feb 2021 01:16:27 GMT ## [1.0.0-beta.19](https://github.com/microsoft/fluentui/tree/@fluentui/common-styles_v1.0.0-beta.19) -Mon, 22 Feb 2021 12:26:22 GMT +Mon, 22 Feb 2021 12:26:22 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/common-styles_v1.0.0-beta.18..@fluentui/common-styles_v1.0.0-beta.19) ### Changes @@ -701,7 +701,7 @@ Mon, 22 Feb 2021 12:26:22 GMT ## [1.0.0-beta.18](https://github.com/microsoft/fluentui/tree/@fluentui/common-styles_v1.0.0-beta.18) -Thu, 18 Feb 2021 19:38:50 GMT +Thu, 18 Feb 2021 19:38:50 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/common-styles_v1.0.0-beta.17..@fluentui/common-styles_v1.0.0-beta.18) ### Changes @@ -710,7 +710,7 @@ Thu, 18 Feb 2021 19:38:50 GMT ## [1.0.0-beta.17](https://github.com/microsoft/fluentui/tree/@fluentui/common-styles_v1.0.0-beta.17) -Thu, 18 Feb 2021 12:27:34 GMT +Thu, 18 Feb 2021 12:27:34 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/common-styles_v1.0.0-beta.16..@fluentui/common-styles_v1.0.0-beta.17) ### Changes @@ -719,7 +719,7 @@ Thu, 18 Feb 2021 12:27:34 GMT ## [1.0.0-beta.16](https://github.com/microsoft/fluentui/tree/@fluentui/common-styles_v1.0.0-beta.16) -Mon, 15 Feb 2021 12:22:00 GMT +Mon, 15 Feb 2021 12:22:00 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/common-styles_v1.0.0-beta.15..@fluentui/common-styles_v1.0.0-beta.16) ### Changes @@ -728,7 +728,7 @@ Mon, 15 Feb 2021 12:22:00 GMT ## [1.0.0-beta.15](https://github.com/microsoft/fluentui/tree/@fluentui/common-styles_v1.0.0-beta.15) -Fri, 12 Feb 2021 12:26:20 GMT +Fri, 12 Feb 2021 12:26:20 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/common-styles_v1.0.0-beta.14..@fluentui/common-styles_v1.0.0-beta.15) ### Changes @@ -737,7 +737,7 @@ Fri, 12 Feb 2021 12:26:20 GMT ## [1.0.0-beta.14](https://github.com/microsoft/fluentui/tree/@fluentui/common-styles_v1.0.0-beta.14) -Thu, 11 Feb 2021 00:58:10 GMT +Thu, 11 Feb 2021 00:58:10 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/common-styles_v1.0.0-beta.13..@fluentui/common-styles_v1.0.0-beta.14) ### Changes @@ -746,7 +746,7 @@ Thu, 11 Feb 2021 00:58:10 GMT ## [1.0.0-beta.0](https://github.com/microsoft/fluentui/tree/@fluentui/common-styles_v1.0.0-beta.0) -Fri, 23 Oct 2020 03:26:15 GMT +Fri, 23 Oct 2020 03:26:15 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/common-styles_v0.2.4..@fluentui/common-styles_v1.0.0-beta.0) ### Changes @@ -757,7 +757,7 @@ Fri, 23 Oct 2020 03:26:15 GMT ## [0.2.4](https://github.com/microsoft/fluentui/tree/@fluentui/common-styles_v0.2.4) -Wed, 19 Aug 2020 12:44:33 GMT +Wed, 19 Aug 2020 12:44:33 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/common-styles_v0.2.0..@fluentui/common-styles_v0.2.4) ### Patches @@ -766,7 +766,7 @@ Wed, 19 Aug 2020 12:44:33 GMT ## [0.2.0](https://github.com/microsoft/fluentui/tree/@fluentui/common-styles_v0.2.0) -Mon, 27 Jul 2020 12:42:21 GMT +Mon, 27 Jul 2020 12:42:21 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/common-styles_v0.1.1..@fluentui/common-styles_v0.2.0) ### Minor changes diff --git a/packages/date-time-utilities/CHANGELOG.md b/packages/date-time-utilities/CHANGELOG.md index 6a50a69b255844..7ad8cb748c13c0 100644 --- a/packages/date-time-utilities/CHANGELOG.md +++ b/packages/date-time-utilities/CHANGELOG.md @@ -6,7 +6,7 @@ This log was last generated on Wed, 24 Apr 2024 07:27:48 GMT and should not be m ## [8.6.3](https://github.com/microsoft/fluentui/tree/@fluentui/date-time-utilities_v8.6.3) -Wed, 24 Apr 2024 07:27:48 GMT +Wed, 24 Apr 2024 07:27:48 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/date-time-utilities_v8.6.2..@fluentui/date-time-utilities_v8.6.3) ### Patches @@ -15,7 +15,7 @@ Wed, 24 Apr 2024 07:27:48 GMT ## [8.6.2](https://github.com/microsoft/fluentui/tree/@fluentui/date-time-utilities_v8.6.2) -Fri, 12 Apr 2024 07:29:11 GMT +Fri, 12 Apr 2024 07:29:11 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/date-time-utilities_v8.6.1..@fluentui/date-time-utilities_v8.6.2) ### Patches @@ -24,7 +24,7 @@ Fri, 12 Apr 2024 07:29:11 GMT ## [8.6.1](https://github.com/microsoft/fluentui/tree/@fluentui/date-time-utilities_v8.6.1) -Wed, 03 Apr 2024 07:29:31 GMT +Wed, 03 Apr 2024 07:29:31 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/date-time-utilities_v8.6.0..@fluentui/date-time-utilities_v8.6.1) ### Patches @@ -33,7 +33,7 @@ Wed, 03 Apr 2024 07:29:31 GMT ## [8.6.0](https://github.com/microsoft/fluentui/tree/@fluentui/date-time-utilities_v8.6.0) -Fri, 22 Mar 2024 07:28:52 GMT +Fri, 22 Mar 2024 07:28:52 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/date-time-utilities_v8.5.16..@fluentui/date-time-utilities_v8.6.0) ### Minor changes @@ -42,7 +42,7 @@ Fri, 22 Mar 2024 07:28:52 GMT ## [8.5.16](https://github.com/microsoft/fluentui/tree/@fluentui/date-time-utilities_v8.5.16) -Wed, 10 Jan 2024 07:28:50 GMT +Wed, 10 Jan 2024 07:28:50 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/date-time-utilities_v8.5.15..@fluentui/date-time-utilities_v8.5.16) ### Patches @@ -51,7 +51,7 @@ Wed, 10 Jan 2024 07:28:50 GMT ## [8.5.15](https://github.com/microsoft/fluentui/tree/@fluentui/date-time-utilities_v8.5.15) -Thu, 14 Dec 2023 07:30:10 GMT +Thu, 14 Dec 2023 07:30:10 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/date-time-utilities_v8.5.14..@fluentui/date-time-utilities_v8.5.15) ### Patches @@ -60,7 +60,7 @@ Thu, 14 Dec 2023 07:30:10 GMT ## [8.5.14](https://github.com/microsoft/fluentui/tree/@fluentui/date-time-utilities_v8.5.14) -Sat, 28 Oct 2023 00:29:16 GMT +Sat, 28 Oct 2023 00:29:16 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/date-time-utilities_v8.5.13..@fluentui/date-time-utilities_v8.5.14) ### Patches @@ -69,7 +69,7 @@ Sat, 28 Oct 2023 00:29:16 GMT ## [8.5.13](https://github.com/microsoft/fluentui/tree/@fluentui/date-time-utilities_v8.5.13) -Mon, 19 Jun 2023 07:36:39 GMT +Mon, 19 Jun 2023 07:36:39 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/date-time-utilities_v8.5.12..@fluentui/date-time-utilities_v8.5.13) ### Patches @@ -78,7 +78,7 @@ Mon, 19 Jun 2023 07:36:39 GMT ## [8.5.12](https://github.com/microsoft/fluentui/tree/@fluentui/date-time-utilities_v8.5.12) -Wed, 31 May 2023 07:38:40 GMT +Wed, 31 May 2023 07:38:40 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/date-time-utilities_v8.5.11..@fluentui/date-time-utilities_v8.5.12) ### Patches @@ -87,7 +87,7 @@ Wed, 31 May 2023 07:38:40 GMT ## [8.5.11](https://github.com/microsoft/fluentui/tree/@fluentui/date-time-utilities_v8.5.11) -Tue, 30 May 2023 07:36:09 GMT +Tue, 30 May 2023 07:36:09 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/date-time-utilities_v8.5.10..@fluentui/date-time-utilities_v8.5.11) ### Patches @@ -96,7 +96,7 @@ Tue, 30 May 2023 07:36:09 GMT ## [8.5.10](https://github.com/microsoft/fluentui/tree/@fluentui/date-time-utilities_v8.5.10) -Fri, 05 May 2023 18:14:03 GMT +Fri, 05 May 2023 18:14:03 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/date-time-utilities_v8.5.9..@fluentui/date-time-utilities_v8.5.10) ### Patches @@ -106,7 +106,7 @@ Fri, 05 May 2023 18:14:03 GMT ## [8.5.9](https://github.com/microsoft/fluentui/tree/@fluentui/date-time-utilities_v8.5.9) -Tue, 02 May 2023 00:58:14 GMT +Tue, 02 May 2023 00:58:14 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/date-time-utilities_v8.5.8..@fluentui/date-time-utilities_v8.5.9) ### Patches @@ -116,7 +116,7 @@ Tue, 02 May 2023 00:58:14 GMT ## [8.5.8](https://github.com/microsoft/fluentui/tree/@fluentui/date-time-utilities_v8.5.8) -Mon, 01 May 2023 07:39:54 GMT +Mon, 01 May 2023 07:39:54 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/date-time-utilities_v8.5.7..@fluentui/date-time-utilities_v8.5.8) ### Patches @@ -125,7 +125,7 @@ Mon, 01 May 2023 07:39:54 GMT ## [8.5.7](https://github.com/microsoft/fluentui/tree/@fluentui/date-time-utilities_v8.5.7) -Tue, 25 Apr 2023 07:38:31 GMT +Tue, 25 Apr 2023 07:38:31 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/date-time-utilities_v8.5.6..@fluentui/date-time-utilities_v8.5.7) ### Patches @@ -134,7 +134,7 @@ Tue, 25 Apr 2023 07:38:31 GMT ## [8.5.6](https://github.com/microsoft/fluentui/tree/@fluentui/date-time-utilities_v8.5.6) -Fri, 17 Mar 2023 08:15:56 GMT +Fri, 17 Mar 2023 08:15:56 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/date-time-utilities_v8.5.5..@fluentui/date-time-utilities_v8.5.6) ### Patches @@ -143,7 +143,7 @@ Fri, 17 Mar 2023 08:15:56 GMT ## [8.5.5](https://github.com/microsoft/fluentui/tree/@fluentui/date-time-utilities_v8.5.5) -Fri, 03 Feb 2023 07:50:06 GMT +Fri, 03 Feb 2023 07:50:06 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/date-time-utilities_v8.5.4..@fluentui/date-time-utilities_v8.5.5) ### Patches @@ -152,7 +152,7 @@ Fri, 03 Feb 2023 07:50:06 GMT ## [8.5.4](https://github.com/microsoft/fluentui/tree/@fluentui/date-time-utilities_v8.5.4) -Tue, 10 Jan 2023 07:50:15 GMT +Tue, 10 Jan 2023 07:50:15 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/date-time-utilities_v8.5.3..@fluentui/date-time-utilities_v8.5.4) ### Patches @@ -161,7 +161,7 @@ Tue, 10 Jan 2023 07:50:15 GMT ## [8.5.3](https://github.com/microsoft/fluentui/tree/@fluentui/date-time-utilities_v8.5.3) -Wed, 09 Nov 2022 07:48:12 GMT +Wed, 09 Nov 2022 07:48:12 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/date-time-utilities_v8.5.2..@fluentui/date-time-utilities_v8.5.3) ### Patches @@ -170,7 +170,7 @@ Wed, 09 Nov 2022 07:48:12 GMT ## [8.5.2](https://github.com/microsoft/fluentui/tree/@fluentui/date-time-utilities_v8.5.2) -Mon, 08 Aug 2022 07:39:33 GMT +Mon, 08 Aug 2022 07:39:33 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/date-time-utilities_v8.5.1..@fluentui/date-time-utilities_v8.5.2) ### Patches @@ -179,7 +179,7 @@ Mon, 08 Aug 2022 07:39:33 GMT ## [8.5.1](https://github.com/microsoft/fluentui/tree/@fluentui/date-time-utilities_v8.5.1) -Fri, 13 May 2022 07:45:35 GMT +Fri, 13 May 2022 07:45:35 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/date-time-utilities_v8.5.0..@fluentui/date-time-utilities_v8.5.1) ### Patches @@ -188,7 +188,7 @@ Fri, 13 May 2022 07:45:35 GMT ## [8.5.0](https://github.com/microsoft/fluentui/tree/@fluentui/date-time-utilities_v8.5.0) -Fri, 11 Mar 2022 19:51:47 GMT +Fri, 11 Mar 2022 19:51:47 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/date-time-utilities_v8.4.0..@fluentui/date-time-utilities_v8.5.0) ### Minor changes @@ -201,7 +201,7 @@ Fri, 11 Mar 2022 19:51:47 GMT ## [8.4.0](https://github.com/microsoft/fluentui/tree/@fluentui/date-time-utilities_v8.4.0) -Thu, 03 Mar 2022 07:24:25 GMT +Thu, 03 Mar 2022 07:24:25 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/date-time-utilities_v8.3.0..@fluentui/date-time-utilities_v8.4.0) ### Minor changes @@ -211,7 +211,7 @@ Thu, 03 Mar 2022 07:24:25 GMT ## [8.3.0](https://github.com/microsoft/fluentui/tree/@fluentui/date-time-utilities_v8.3.0) -Tue, 25 Jan 2022 07:30:05 GMT +Tue, 25 Jan 2022 07:30:05 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/date-time-utilities_v8.2.3..@fluentui/date-time-utilities_v8.3.0) ### Minor changes @@ -220,7 +220,7 @@ Tue, 25 Jan 2022 07:30:05 GMT ## [8.2.3](https://github.com/microsoft/fluentui/tree/@fluentui/date-time-utilities_v8.2.3) -Thu, 25 Nov 2021 14:54:16 GMT +Thu, 25 Nov 2021 14:54:16 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/date-time-utilities_v8.2.2..@fluentui/date-time-utilities_v8.2.3) ### Patches @@ -229,7 +229,7 @@ Thu, 25 Nov 2021 14:54:16 GMT ## [8.2.2](https://github.com/microsoft/fluentui/tree/@fluentui/date-time-utilities_v8.2.2) -Tue, 03 Aug 2021 07:39:30 GMT +Tue, 03 Aug 2021 07:39:30 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/date-time-utilities_v8.2.1..@fluentui/date-time-utilities_v8.2.2) ### Patches @@ -238,7 +238,7 @@ Tue, 03 Aug 2021 07:39:30 GMT ## [8.2.1](https://github.com/microsoft/fluentui/tree/@fluentui/date-time-utilities_v8.2.1) -Fri, 09 Jul 2021 07:39:31 GMT +Fri, 09 Jul 2021 07:39:31 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/date-time-utilities_v8.2.0..@fluentui/date-time-utilities_v8.2.1) ### Patches @@ -247,7 +247,7 @@ Fri, 09 Jul 2021 07:39:31 GMT ## [8.2.0](https://github.com/microsoft/fluentui/tree/@fluentui/date-time-utilities_v8.2.0) -Mon, 28 Jun 2021 07:35:16 GMT +Mon, 28 Jun 2021 07:35:16 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/date-time-utilities_v8.1.2..@fluentui/date-time-utilities_v8.2.0) ### Minor changes @@ -256,7 +256,7 @@ Mon, 28 Jun 2021 07:35:16 GMT ## [8.1.2](https://github.com/microsoft/fluentui/tree/@fluentui/date-time-utilities_v8.1.2) -Mon, 07 Jun 2021 07:38:15 GMT +Mon, 07 Jun 2021 07:38:15 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/date-time-utilities_v8.1.1..@fluentui/date-time-utilities_v8.1.2) ### Patches @@ -265,7 +265,7 @@ Mon, 07 Jun 2021 07:38:15 GMT ## [8.1.1](https://github.com/microsoft/fluentui/tree/@fluentui/date-time-utilities_v8.1.1) -Thu, 20 May 2021 07:41:54 GMT +Thu, 20 May 2021 07:41:54 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/date-time-utilities_v8.1.0..@fluentui/date-time-utilities_v8.1.1) ### Patches @@ -274,7 +274,7 @@ Thu, 20 May 2021 07:41:54 GMT ## [8.1.0](https://github.com/microsoft/fluentui/tree/@fluentui/date-time-utilities_v8.1.0) -Fri, 30 Apr 2021 07:42:23 GMT +Fri, 30 Apr 2021 07:42:23 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/date-time-utilities_v8.0.3..@fluentui/date-time-utilities_v8.1.0) ### Minor changes @@ -289,7 +289,7 @@ Fri, 30 Apr 2021 07:42:23 GMT ## [8.0.3](https://github.com/microsoft/fluentui/tree/@fluentui/date-time-utilities_v8.0.3) -Fri, 23 Apr 2021 07:37:10 GMT +Fri, 23 Apr 2021 07:37:10 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/date-time-utilities_v8.0.2..@fluentui/date-time-utilities_v8.0.3) ### Patches @@ -298,7 +298,7 @@ Fri, 23 Apr 2021 07:37:10 GMT ## [8.0.2](https://github.com/microsoft/fluentui/tree/@fluentui/date-time-utilities_v8.0.2) -Wed, 31 Mar 2021 00:53:43 GMT +Wed, 31 Mar 2021 00:53:43 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/date-time-utilities_v8.0.1..@fluentui/date-time-utilities_v8.0.2) ### Patches @@ -307,7 +307,7 @@ Wed, 31 Mar 2021 00:53:43 GMT ## [8.0.1](https://github.com/microsoft/fluentui/tree/@fluentui/date-time-utilities_v8.0.1) -Fri, 26 Feb 2021 01:16:27 GMT +Fri, 26 Feb 2021 01:16:27 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/date-time-utilities_v8.0.0-beta.4..@fluentui/date-time-utilities_v8.0.1) ### Patches @@ -316,7 +316,7 @@ Fri, 26 Feb 2021 01:16:27 GMT ## [8.0.0-beta.4](https://github.com/microsoft/fluentui/tree/@fluentui/date-time-utilities_v8.0.0-beta.4) -Thu, 18 Feb 2021 12:27:34 GMT +Thu, 18 Feb 2021 12:27:34 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/date-time-utilities_v8.0.0-beta.3..@fluentui/date-time-utilities_v8.0.0-beta.4) ### Changes @@ -325,7 +325,7 @@ Thu, 18 Feb 2021 12:27:34 GMT ## [8.0.0-beta.3](https://github.com/microsoft/fluentui/tree/@fluentui/date-time-utilities_v8.0.0-beta.3) -Wed, 17 Feb 2021 12:21:39 GMT +Wed, 17 Feb 2021 12:21:39 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/date-time-utilities_v8.0.0-beta.2..@fluentui/date-time-utilities_v8.0.0-beta.3) ### Changes @@ -334,7 +334,7 @@ Wed, 17 Feb 2021 12:21:39 GMT ## [8.0.0-beta.2](https://github.com/microsoft/fluentui/tree/@fluentui/date-time-utilities_v8.0.0-beta.2) -Thu, 28 Jan 2021 12:25:56 GMT +Thu, 28 Jan 2021 12:25:56 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/date-time-utilities_v8.0.0-beta.1..@fluentui/date-time-utilities_v8.0.0-beta.2) ### Changes @@ -344,7 +344,7 @@ Thu, 28 Jan 2021 12:25:56 GMT ## [8.0.0-beta.1](https://github.com/microsoft/fluentui/tree/@fluentui/date-time-utilities_v8.0.0-beta.1) -Mon, 07 Dec 2020 12:29:34 GMT +Mon, 07 Dec 2020 12:29:34 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/date-time-utilities_v8.0.0-beta.0..@fluentui/date-time-utilities_v8.0.0-beta.1) ### Changes @@ -353,7 +353,7 @@ Mon, 07 Dec 2020 12:29:34 GMT ## [8.0.0-beta.0](https://github.com/microsoft/fluentui/tree/@fluentui/date-time-utilities_v8.0.0-beta.0) -Fri, 23 Oct 2020 03:26:15 GMT +Fri, 23 Oct 2020 03:26:15 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/date-time-utilities_v7.9.0..@fluentui/date-time-utilities_v8.0.0-beta.0) ### Changes @@ -364,7 +364,7 @@ Fri, 23 Oct 2020 03:26:15 GMT ## [7.9.0](https://github.com/microsoft/fluentui/tree/@fluentui/date-time-utilities_v7.9.0) -Thu, 24 Sep 2020 00:46:56 GMT +Thu, 24 Sep 2020 00:46:56 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/date-time-utilities_v7.8.1..@fluentui/date-time-utilities_v7.9.0) ### Minor changes @@ -373,7 +373,7 @@ Thu, 24 Sep 2020 00:46:56 GMT ## [7.8.0](https://github.com/microsoft/fluentui/tree/@fluentui/date-time-utilities_v7.8.0) -Fri, 04 Sep 2020 12:28:23 GMT +Fri, 04 Sep 2020 12:28:23 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/date-time-utilities_v7.7.0..@fluentui/date-time-utilities_v7.8.0) ### Minor changes @@ -382,7 +382,7 @@ Fri, 04 Sep 2020 12:28:23 GMT ## [7.7.0](https://github.com/microsoft/fluentui/tree/@fluentui/date-time-utilities_v7.7.0) -Wed, 02 Sep 2020 12:26:41 GMT +Wed, 02 Sep 2020 12:26:41 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/date-time-utilities_v7.6.1..@fluentui/date-time-utilities_v7.7.0) ### Minor changes @@ -391,7 +391,7 @@ Wed, 02 Sep 2020 12:26:41 GMT ## [7.6.1](https://github.com/microsoft/fluentui/tree/@fluentui/date-time-utilities_v7.6.1) -Fri, 28 Aug 2020 12:29:20 GMT +Fri, 28 Aug 2020 12:29:20 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/date-time-utilities_v7.6.0..@fluentui/date-time-utilities_v7.6.1) ### Patches @@ -400,7 +400,7 @@ Fri, 28 Aug 2020 12:29:20 GMT ## [7.6.0](https://github.com/microsoft/fluentui/tree/@fluentui/date-time-utilities_v7.6.0) -Fri, 21 Aug 2020 12:34:55 GMT +Fri, 21 Aug 2020 12:34:55 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/date-time-utilities_v7.5.0..@fluentui/date-time-utilities_v7.6.0) ### Minor changes @@ -409,7 +409,7 @@ Fri, 21 Aug 2020 12:34:55 GMT ## [7.5.0](https://github.com/microsoft/fluentui/tree/@fluentui/date-time-utilities_v7.5.0) -Thu, 13 Aug 2020 12:41:58 GMT +Thu, 13 Aug 2020 12:41:58 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/date-time-utilities_v7.4.1..@fluentui/date-time-utilities_v7.5.0) ### Minor changes @@ -418,7 +418,7 @@ Thu, 13 Aug 2020 12:41:58 GMT ## [7.4.1](https://github.com/microsoft/fluentui/tree/@fluentui/date-time-utilities_v7.4.1) -Mon, 10 Aug 2020 06:19:21 GMT +Mon, 10 Aug 2020 06:19:21 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/date-time-utilities_v7.4.0..@fluentui/date-time-utilities_v7.4.1) ### Patches @@ -427,7 +427,7 @@ Mon, 10 Aug 2020 06:19:21 GMT ## [7.4.0](https://github.com/microsoft/fluentui/tree/@fluentui/date-time-utilities_v7.4.0) -Thu, 06 Aug 2020 00:30:40 GMT +Thu, 06 Aug 2020 00:30:40 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/date-time-utilities_v7.3.0..@fluentui/date-time-utilities_v7.4.0) ### Minor changes @@ -436,7 +436,7 @@ Thu, 06 Aug 2020 00:30:40 GMT ## [7.3.0](https://github.com/microsoft/fluentui/tree/@fluentui/date-time-utilities_v7.3.0) -Fri, 24 Jul 2020 12:45:55 GMT +Fri, 24 Jul 2020 12:45:55 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/date-time-utilities_v7.2.0..@fluentui/date-time-utilities_v7.3.0) ### Minor changes @@ -445,7 +445,7 @@ Fri, 24 Jul 2020 12:45:55 GMT ## [7.2.0](https://github.com/microsoft/fluentui/tree/@fluentui/date-time-utilities_v7.2.0) -Thu, 23 Jul 2020 12:43:51 GMT +Thu, 23 Jul 2020 12:43:51 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/date-time-utilities_v7.1.3..@fluentui/date-time-utilities_v7.2.0) ### Minor changes @@ -454,7 +454,7 @@ Thu, 23 Jul 2020 12:43:51 GMT ## [7.1.0](https://github.com/microsoft/fluentui/tree/@fluentui/date-time-utilities_v7.1.0) -Fri, 19 Jun 2020 12:38:09 GMT +Fri, 19 Jun 2020 12:38:09 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/date-time-utilities_v7.0.1..@fluentui/date-time-utilities_v7.1.0) ### Minor changes diff --git a/packages/dom-utilities/CHANGELOG.md b/packages/dom-utilities/CHANGELOG.md index d6eeab591baf31..137aa36980bb14 100644 --- a/packages/dom-utilities/CHANGELOG.md +++ b/packages/dom-utilities/CHANGELOG.md @@ -6,7 +6,7 @@ This log was last generated on Wed, 24 Apr 2024 07:27:48 GMT and should not be m ## [2.3.1](https://github.com/microsoft/fluentui/tree/@fluentui/dom-utilities_v2.3.1) -Wed, 24 Apr 2024 07:27:48 GMT +Wed, 24 Apr 2024 07:27:48 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/dom-utilities_v2.3.0..@fluentui/dom-utilities_v2.3.1) ### Patches @@ -15,7 +15,7 @@ Wed, 24 Apr 2024 07:27:48 GMT ## [2.3.0](https://github.com/microsoft/fluentui/tree/@fluentui/dom-utilities_v2.3.0) -Mon, 22 Apr 2024 07:28:25 GMT +Mon, 22 Apr 2024 07:28:25 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/dom-utilities_v2.2.16..@fluentui/dom-utilities_v2.3.0) ### Minor changes @@ -24,7 +24,7 @@ Mon, 22 Apr 2024 07:28:25 GMT ## [2.2.16](https://github.com/microsoft/fluentui/tree/@fluentui/dom-utilities_v2.2.16) -Fri, 12 Apr 2024 07:29:11 GMT +Fri, 12 Apr 2024 07:29:11 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/dom-utilities_v2.2.15..@fluentui/dom-utilities_v2.2.16) ### Patches @@ -33,7 +33,7 @@ Fri, 12 Apr 2024 07:29:11 GMT ## [2.2.15](https://github.com/microsoft/fluentui/tree/@fluentui/dom-utilities_v2.2.15) -Wed, 03 Apr 2024 07:29:31 GMT +Wed, 03 Apr 2024 07:29:31 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/dom-utilities_v2.2.14..@fluentui/dom-utilities_v2.2.15) ### Patches @@ -42,7 +42,7 @@ Wed, 03 Apr 2024 07:29:31 GMT ## [2.2.14](https://github.com/microsoft/fluentui/tree/@fluentui/dom-utilities_v2.2.14) -Wed, 10 Jan 2024 07:28:48 GMT +Wed, 10 Jan 2024 07:28:48 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/dom-utilities_v2.2.13..@fluentui/dom-utilities_v2.2.14) ### Patches @@ -52,7 +52,7 @@ Wed, 10 Jan 2024 07:28:48 GMT ## [2.2.13](https://github.com/microsoft/fluentui/tree/@fluentui/dom-utilities_v2.2.13) -Thu, 14 Dec 2023 07:30:10 GMT +Thu, 14 Dec 2023 07:30:10 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/dom-utilities_v2.2.12..@fluentui/dom-utilities_v2.2.13) ### Patches @@ -61,7 +61,7 @@ Thu, 14 Dec 2023 07:30:10 GMT ## [2.2.12](https://github.com/microsoft/fluentui/tree/@fluentui/dom-utilities_v2.2.12) -Sat, 28 Oct 2023 00:29:16 GMT +Sat, 28 Oct 2023 00:29:16 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/dom-utilities_v2.2.11..@fluentui/dom-utilities_v2.2.12) ### Patches @@ -70,7 +70,7 @@ Sat, 28 Oct 2023 00:29:16 GMT ## [2.2.11](https://github.com/microsoft/fluentui/tree/@fluentui/dom-utilities_v2.2.11) -Wed, 31 May 2023 07:38:40 GMT +Wed, 31 May 2023 07:38:40 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/dom-utilities_v2.2.10..@fluentui/dom-utilities_v2.2.11) ### Patches @@ -79,7 +79,7 @@ Wed, 31 May 2023 07:38:40 GMT ## [2.2.10](https://github.com/microsoft/fluentui/tree/@fluentui/dom-utilities_v2.2.10) -Tue, 30 May 2023 07:36:09 GMT +Tue, 30 May 2023 07:36:09 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/dom-utilities_v2.2.9..@fluentui/dom-utilities_v2.2.10) ### Patches @@ -88,7 +88,7 @@ Tue, 30 May 2023 07:36:09 GMT ## [2.2.9](https://github.com/microsoft/fluentui/tree/@fluentui/dom-utilities_v2.2.9) -Fri, 05 May 2023 18:14:03 GMT +Fri, 05 May 2023 18:14:03 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/dom-utilities_v2.2.8..@fluentui/dom-utilities_v2.2.9) ### Patches @@ -98,7 +98,7 @@ Fri, 05 May 2023 18:14:03 GMT ## [2.2.8](https://github.com/microsoft/fluentui/tree/@fluentui/dom-utilities_v2.2.8) -Tue, 02 May 2023 00:58:14 GMT +Tue, 02 May 2023 00:58:14 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/dom-utilities_v2.2.7..@fluentui/dom-utilities_v2.2.8) ### Patches @@ -108,7 +108,7 @@ Tue, 02 May 2023 00:58:14 GMT ## [2.2.7](https://github.com/microsoft/fluentui/tree/@fluentui/dom-utilities_v2.2.7) -Mon, 01 May 2023 07:39:54 GMT +Mon, 01 May 2023 07:39:54 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/dom-utilities_v2.2.6..@fluentui/dom-utilities_v2.2.7) ### Patches @@ -117,7 +117,7 @@ Mon, 01 May 2023 07:39:54 GMT ## [2.2.6](https://github.com/microsoft/fluentui/tree/@fluentui/dom-utilities_v2.2.6) -Fri, 17 Mar 2023 08:15:56 GMT +Fri, 17 Mar 2023 08:15:56 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/dom-utilities_v2.2.5..@fluentui/dom-utilities_v2.2.6) ### Patches @@ -126,7 +126,7 @@ Fri, 17 Mar 2023 08:15:56 GMT ## [2.2.5](https://github.com/microsoft/fluentui/tree/@fluentui/dom-utilities_v2.2.5) -Fri, 03 Feb 2023 07:50:06 GMT +Fri, 03 Feb 2023 07:50:06 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/dom-utilities_v2.2.4..@fluentui/dom-utilities_v2.2.5) ### Patches @@ -135,7 +135,7 @@ Fri, 03 Feb 2023 07:50:06 GMT ## [2.2.4](https://github.com/microsoft/fluentui/tree/@fluentui/dom-utilities_v2.2.4) -Tue, 10 Jan 2023 07:50:15 GMT +Tue, 10 Jan 2023 07:50:15 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/dom-utilities_v2.2.3..@fluentui/dom-utilities_v2.2.4) ### Patches @@ -144,7 +144,7 @@ Tue, 10 Jan 2023 07:50:15 GMT ## [2.2.3](https://github.com/microsoft/fluentui/tree/@fluentui/dom-utilities_v2.2.3) -Wed, 09 Nov 2022 07:48:12 GMT +Wed, 09 Nov 2022 07:48:12 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/dom-utilities_v2.2.2..@fluentui/dom-utilities_v2.2.3) ### Patches @@ -153,7 +153,7 @@ Wed, 09 Nov 2022 07:48:12 GMT ## [2.2.2](https://github.com/microsoft/fluentui/tree/@fluentui/dom-utilities_v2.2.2) -Mon, 08 Aug 2022 07:39:33 GMT +Mon, 08 Aug 2022 07:39:33 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/dom-utilities_v2.2.1..@fluentui/dom-utilities_v2.2.2) ### Patches @@ -162,7 +162,7 @@ Mon, 08 Aug 2022 07:39:33 GMT ## [2.2.1](https://github.com/microsoft/fluentui/tree/@fluentui/dom-utilities_v2.2.1) -Fri, 13 May 2022 07:45:35 GMT +Fri, 13 May 2022 07:45:35 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/dom-utilities_v2.2.0..@fluentui/dom-utilities_v2.2.1) ### Patches @@ -171,7 +171,7 @@ Fri, 13 May 2022 07:45:35 GMT ## [2.2.0](https://github.com/microsoft/fluentui/tree/@fluentui/dom-utilities_v2.2.0) -Thu, 03 Mar 2022 07:24:26 GMT +Thu, 03 Mar 2022 07:24:26 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/dom-utilities_v2.1.5..@fluentui/dom-utilities_v2.2.0) ### Minor changes @@ -181,7 +181,7 @@ Thu, 03 Mar 2022 07:24:26 GMT ## [2.1.5](https://github.com/microsoft/fluentui/tree/@fluentui/dom-utilities_v2.1.5) -Thu, 25 Nov 2021 14:54:16 GMT +Thu, 25 Nov 2021 14:54:16 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/dom-utilities_v2.1.4..@fluentui/dom-utilities_v2.1.5) ### Patches @@ -190,7 +190,7 @@ Thu, 25 Nov 2021 14:54:16 GMT ## [2.1.4](https://github.com/microsoft/fluentui/tree/@fluentui/dom-utilities_v2.1.4) -Tue, 03 Aug 2021 07:39:30 GMT +Tue, 03 Aug 2021 07:39:30 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/dom-utilities_v2.1.3..@fluentui/dom-utilities_v2.1.4) ### Patches @@ -199,7 +199,7 @@ Tue, 03 Aug 2021 07:39:30 GMT ## [2.1.3](https://github.com/microsoft/fluentui/tree/@fluentui/dom-utilities_v2.1.3) -Fri, 09 Jul 2021 07:39:31 GMT +Fri, 09 Jul 2021 07:39:31 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/dom-utilities_v2.1.2..@fluentui/dom-utilities_v2.1.3) ### Patches @@ -208,7 +208,7 @@ Fri, 09 Jul 2021 07:39:31 GMT ## [2.1.2](https://github.com/microsoft/fluentui/tree/@fluentui/dom-utilities_v2.1.2) -Mon, 07 Jun 2021 07:38:15 GMT +Mon, 07 Jun 2021 07:38:15 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/dom-utilities_v2.1.1..@fluentui/dom-utilities_v2.1.2) ### Patches @@ -217,7 +217,7 @@ Mon, 07 Jun 2021 07:38:15 GMT ## [2.1.1](https://github.com/microsoft/fluentui/tree/@fluentui/dom-utilities_v2.1.1) -Thu, 20 May 2021 07:41:54 GMT +Thu, 20 May 2021 07:41:54 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/dom-utilities_v2.1.0..@fluentui/dom-utilities_v2.1.1) ### Patches @@ -226,7 +226,7 @@ Thu, 20 May 2021 07:41:54 GMT ## [2.1.0](https://github.com/microsoft/fluentui/tree/@fluentui/dom-utilities_v2.1.0) -Fri, 30 Apr 2021 07:42:23 GMT +Fri, 30 Apr 2021 07:42:23 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/dom-utilities_v2.0.3..@fluentui/dom-utilities_v2.1.0) ### Minor changes @@ -241,7 +241,7 @@ Fri, 30 Apr 2021 07:42:23 GMT ## [2.0.3](https://github.com/microsoft/fluentui/tree/@fluentui/dom-utilities_v2.0.3) -Fri, 23 Apr 2021 07:37:10 GMT +Fri, 23 Apr 2021 07:37:10 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/dom-utilities_v2.0.2..@fluentui/dom-utilities_v2.0.3) ### Patches @@ -250,7 +250,7 @@ Fri, 23 Apr 2021 07:37:10 GMT ## [2.0.2](https://github.com/microsoft/fluentui/tree/@fluentui/dom-utilities_v2.0.2) -Wed, 31 Mar 2021 00:53:43 GMT +Wed, 31 Mar 2021 00:53:43 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/dom-utilities_v2.0.1..@fluentui/dom-utilities_v2.0.2) ### Patches @@ -259,7 +259,7 @@ Wed, 31 Mar 2021 00:53:43 GMT ## [2.0.1](https://github.com/microsoft/fluentui/tree/@fluentui/dom-utilities_v2.0.1) -Fri, 26 Feb 2021 01:16:27 GMT +Fri, 26 Feb 2021 01:16:27 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/dom-utilities_v2.0.0-beta.2..@fluentui/dom-utilities_v2.0.1) ### Patches @@ -268,7 +268,7 @@ Fri, 26 Feb 2021 01:16:27 GMT ## [2.0.0-beta.2](https://github.com/microsoft/fluentui/tree/@fluentui/dom-utilities_v2.0.0-beta.2) -Thu, 18 Feb 2021 12:27:34 GMT +Thu, 18 Feb 2021 12:27:34 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/dom-utilities_v2.0.0-beta.1..@fluentui/dom-utilities_v2.0.0-beta.2) ### Changes @@ -277,7 +277,7 @@ Thu, 18 Feb 2021 12:27:34 GMT ## [2.0.0-beta.0](https://github.com/microsoft/fluentui/tree/@fluentui/dom-utilities_v2.0.0-beta.0) -Fri, 23 Oct 2020 03:26:15 GMT +Fri, 23 Oct 2020 03:26:15 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/dom-utilities_v1.1.1..@fluentui/dom-utilities_v2.0.0-beta.0) ### Changes @@ -287,7 +287,7 @@ Fri, 23 Oct 2020 03:26:15 GMT ## [1.1.1](https://github.com/microsoft/fluentui/tree/@fluentui/dom-utilities_v1.1.1) -Thu, 17 Sep 2020 15:52:49 GMT +Thu, 17 Sep 2020 15:52:49 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/dom-utilities_v1.1.0..@fluentui/dom-utilities_v1.1.1) ### Patches diff --git a/packages/font-icons-mdl2/CHANGELOG.md b/packages/font-icons-mdl2/CHANGELOG.md index 8ffb1e60e6528a..86c7168259e3f1 100644 --- a/packages/font-icons-mdl2/CHANGELOG.md +++ b/packages/font-icons-mdl2/CHANGELOG.md @@ -6,7 +6,7 @@ This log was last generated on Wed, 24 Apr 2024 07:27:48 GMT and should not be m ## [8.5.38](https://github.com/microsoft/fluentui/tree/@fluentui/font-icons-mdl2_v8.5.38) -Wed, 24 Apr 2024 07:27:48 GMT +Wed, 24 Apr 2024 07:27:48 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/font-icons-mdl2_v8.5.37..@fluentui/font-icons-mdl2_v8.5.38) ### Patches @@ -17,7 +17,7 @@ Wed, 24 Apr 2024 07:27:48 GMT ## [8.5.37](https://github.com/microsoft/fluentui/tree/@fluentui/font-icons-mdl2_v8.5.37) -Mon, 22 Apr 2024 07:28:27 GMT +Mon, 22 Apr 2024 07:28:27 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/font-icons-mdl2_v8.5.36..@fluentui/font-icons-mdl2_v8.5.37) ### Patches @@ -27,7 +27,7 @@ Mon, 22 Apr 2024 07:28:27 GMT ## [8.5.36](https://github.com/microsoft/fluentui/tree/@fluentui/font-icons-mdl2_v8.5.36) -Fri, 12 Apr 2024 07:29:11 GMT +Fri, 12 Apr 2024 07:29:11 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/font-icons-mdl2_v8.5.35..@fluentui/font-icons-mdl2_v8.5.36) ### Patches @@ -38,7 +38,7 @@ Fri, 12 Apr 2024 07:29:11 GMT ## [8.5.35](https://github.com/microsoft/fluentui/tree/@fluentui/font-icons-mdl2_v8.5.35) -Wed, 03 Apr 2024 07:29:31 GMT +Wed, 03 Apr 2024 07:29:31 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/font-icons-mdl2_v8.5.34..@fluentui/font-icons-mdl2_v8.5.35) ### Patches @@ -49,7 +49,7 @@ Wed, 03 Apr 2024 07:29:31 GMT ## [8.5.34](https://github.com/microsoft/fluentui/tree/@fluentui/font-icons-mdl2_v8.5.34) -Fri, 22 Mar 2024 07:28:53 GMT +Fri, 22 Mar 2024 07:28:53 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/font-icons-mdl2_v8.5.33..@fluentui/font-icons-mdl2_v8.5.34) ### Patches @@ -59,7 +59,7 @@ Fri, 22 Mar 2024 07:28:53 GMT ## [8.5.33](https://github.com/microsoft/fluentui/tree/@fluentui/font-icons-mdl2_v8.5.33) -Wed, 13 Mar 2024 07:30:28 GMT +Wed, 13 Mar 2024 07:30:28 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/font-icons-mdl2_v8.5.32..@fluentui/font-icons-mdl2_v8.5.33) ### Patches @@ -69,7 +69,7 @@ Wed, 13 Mar 2024 07:30:28 GMT ## [8.5.32](https://github.com/microsoft/fluentui/tree/@fluentui/font-icons-mdl2_v8.5.32) -Wed, 31 Jan 2024 07:27:57 GMT +Wed, 31 Jan 2024 07:27:57 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/font-icons-mdl2_v8.5.31..@fluentui/font-icons-mdl2_v8.5.32) ### Patches @@ -78,7 +78,7 @@ Wed, 31 Jan 2024 07:27:57 GMT ## [8.5.31](https://github.com/microsoft/fluentui/tree/@fluentui/font-icons-mdl2_v8.5.31) -Fri, 19 Jan 2024 07:29:32 GMT +Fri, 19 Jan 2024 07:29:32 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/font-icons-mdl2_v8.5.30..@fluentui/font-icons-mdl2_v8.5.31) ### Patches @@ -88,7 +88,7 @@ Fri, 19 Jan 2024 07:29:32 GMT ## [8.5.30](https://github.com/microsoft/fluentui/tree/@fluentui/font-icons-mdl2_v8.5.30) -Wed, 10 Jan 2024 07:28:50 GMT +Wed, 10 Jan 2024 07:28:50 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/font-icons-mdl2_v8.5.29..@fluentui/font-icons-mdl2_v8.5.30) ### Patches @@ -99,7 +99,7 @@ Wed, 10 Jan 2024 07:28:50 GMT ## [8.5.29](https://github.com/microsoft/fluentui/tree/@fluentui/font-icons-mdl2_v8.5.29) -Tue, 09 Jan 2024 07:33:09 GMT +Tue, 09 Jan 2024 07:33:09 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/font-icons-mdl2_v8.5.28..@fluentui/font-icons-mdl2_v8.5.29) ### Patches @@ -108,7 +108,7 @@ Tue, 09 Jan 2024 07:33:09 GMT ## [8.5.28](https://github.com/microsoft/fluentui/tree/@fluentui/font-icons-mdl2_v8.5.28) -Thu, 14 Dec 2023 07:30:10 GMT +Thu, 14 Dec 2023 07:30:10 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/font-icons-mdl2_v8.5.27..@fluentui/font-icons-mdl2_v8.5.28) ### Patches @@ -119,7 +119,7 @@ Thu, 14 Dec 2023 07:30:10 GMT ## [8.5.27](https://github.com/microsoft/fluentui/tree/@fluentui/font-icons-mdl2_v8.5.27) -Thu, 09 Nov 2023 07:29:20 GMT +Thu, 09 Nov 2023 07:29:20 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/font-icons-mdl2_v8.5.26..@fluentui/font-icons-mdl2_v8.5.27) ### Patches @@ -129,7 +129,7 @@ Thu, 09 Nov 2023 07:29:20 GMT ## [8.5.26](https://github.com/microsoft/fluentui/tree/@fluentui/font-icons-mdl2_v8.5.26) -Sat, 28 Oct 2023 00:29:16 GMT +Sat, 28 Oct 2023 00:29:16 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/font-icons-mdl2_v8.5.25..@fluentui/font-icons-mdl2_v8.5.26) ### Patches @@ -140,7 +140,7 @@ Sat, 28 Oct 2023 00:29:16 GMT ## [8.5.25](https://github.com/microsoft/fluentui/tree/@fluentui/font-icons-mdl2_v8.5.25) -Fri, 29 Sep 2023 07:45:30 GMT +Fri, 29 Sep 2023 07:45:30 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/font-icons-mdl2_v8.5.24..@fluentui/font-icons-mdl2_v8.5.25) ### Patches @@ -150,7 +150,7 @@ Fri, 29 Sep 2023 07:45:30 GMT ## [8.5.24](https://github.com/microsoft/fluentui/tree/@fluentui/font-icons-mdl2_v8.5.24) -Fri, 18 Aug 2023 07:35:26 GMT +Fri, 18 Aug 2023 07:35:26 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/font-icons-mdl2_v8.5.23..@fluentui/font-icons-mdl2_v8.5.24) ### Patches @@ -159,7 +159,7 @@ Fri, 18 Aug 2023 07:35:26 GMT ## [8.5.23](https://github.com/microsoft/fluentui/tree/@fluentui/font-icons-mdl2_v8.5.23) -Wed, 28 Jun 2023 07:37:33 GMT +Wed, 28 Jun 2023 07:37:33 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/font-icons-mdl2_v8.5.22..@fluentui/font-icons-mdl2_v8.5.23) ### Patches @@ -169,7 +169,7 @@ Wed, 28 Jun 2023 07:37:33 GMT ## [8.5.22](https://github.com/microsoft/fluentui/tree/@fluentui/font-icons-mdl2_v8.5.22) -Mon, 19 Jun 2023 07:36:39 GMT +Mon, 19 Jun 2023 07:36:39 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/font-icons-mdl2_v8.5.21..@fluentui/font-icons-mdl2_v8.5.22) ### Patches @@ -179,7 +179,7 @@ Mon, 19 Jun 2023 07:36:39 GMT ## [8.5.21](https://github.com/microsoft/fluentui/tree/@fluentui/font-icons-mdl2_v8.5.21) -Thu, 01 Jun 2023 07:38:37 GMT +Thu, 01 Jun 2023 07:38:37 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/font-icons-mdl2_v8.5.20..@fluentui/font-icons-mdl2_v8.5.21) ### Patches @@ -189,7 +189,7 @@ Thu, 01 Jun 2023 07:38:37 GMT ## [8.5.20](https://github.com/microsoft/fluentui/tree/@fluentui/font-icons-mdl2_v8.5.20) -Wed, 31 May 2023 07:38:40 GMT +Wed, 31 May 2023 07:38:40 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/font-icons-mdl2_v8.5.19..@fluentui/font-icons-mdl2_v8.5.20) ### Patches @@ -200,7 +200,7 @@ Wed, 31 May 2023 07:38:40 GMT ## [8.5.19](https://github.com/microsoft/fluentui/tree/@fluentui/font-icons-mdl2_v8.5.19) -Tue, 30 May 2023 07:36:09 GMT +Tue, 30 May 2023 07:36:09 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/font-icons-mdl2_v8.5.18..@fluentui/font-icons-mdl2_v8.5.19) ### Patches @@ -211,7 +211,7 @@ Tue, 30 May 2023 07:36:09 GMT ## [8.5.18](https://github.com/microsoft/fluentui/tree/@fluentui/font-icons-mdl2_v8.5.18) -Fri, 26 May 2023 07:37:02 GMT +Fri, 26 May 2023 07:37:02 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/font-icons-mdl2_v8.5.17..@fluentui/font-icons-mdl2_v8.5.18) ### Patches @@ -220,7 +220,7 @@ Fri, 26 May 2023 07:37:02 GMT ## [8.5.17](https://github.com/microsoft/fluentui/tree/@fluentui/font-icons-mdl2_v8.5.17) -Fri, 05 May 2023 18:14:04 GMT +Fri, 05 May 2023 18:14:04 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/font-icons-mdl2_v8.5.16..@fluentui/font-icons-mdl2_v8.5.17) ### Patches @@ -232,7 +232,7 @@ Fri, 05 May 2023 18:14:04 GMT ## [8.5.16](https://github.com/microsoft/fluentui/tree/@fluentui/font-icons-mdl2_v8.5.16) -Tue, 02 May 2023 22:20:25 GMT +Tue, 02 May 2023 22:20:25 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/font-icons-mdl2_v8.5.15..@fluentui/font-icons-mdl2_v8.5.16) ### Patches @@ -242,7 +242,7 @@ Tue, 02 May 2023 22:20:25 GMT ## [8.5.15](https://github.com/microsoft/fluentui/tree/@fluentui/font-icons-mdl2_v8.5.15) -Tue, 02 May 2023 00:58:14 GMT +Tue, 02 May 2023 00:58:14 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/font-icons-mdl2_v8.5.14..@fluentui/font-icons-mdl2_v8.5.15) ### Patches @@ -254,7 +254,7 @@ Tue, 02 May 2023 00:58:14 GMT ## [8.5.14](https://github.com/microsoft/fluentui/tree/@fluentui/font-icons-mdl2_v8.5.14) -Mon, 01 May 2023 07:39:54 GMT +Mon, 01 May 2023 07:39:54 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/font-icons-mdl2_v8.5.13..@fluentui/font-icons-mdl2_v8.5.14) ### Patches @@ -265,7 +265,7 @@ Mon, 01 May 2023 07:39:54 GMT ## [8.5.13](https://github.com/microsoft/fluentui/tree/@fluentui/font-icons-mdl2_v8.5.13) -Fri, 17 Mar 2023 08:15:56 GMT +Fri, 17 Mar 2023 08:15:56 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/font-icons-mdl2_v8.5.12..@fluentui/font-icons-mdl2_v8.5.13) ### Patches @@ -276,7 +276,7 @@ Fri, 17 Mar 2023 08:15:56 GMT ## [8.5.12](https://github.com/microsoft/fluentui/tree/@fluentui/font-icons-mdl2_v8.5.12) -Thu, 09 Mar 2023 07:39:12 GMT +Thu, 09 Mar 2023 07:39:12 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/font-icons-mdl2_v8.5.11..@fluentui/font-icons-mdl2_v8.5.12) ### Patches @@ -285,7 +285,7 @@ Thu, 09 Mar 2023 07:39:12 GMT ## [8.5.11](https://github.com/microsoft/fluentui/tree/@fluentui/font-icons-mdl2_v8.5.11) -Mon, 06 Mar 2023 07:43:03 GMT +Mon, 06 Mar 2023 07:43:03 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/font-icons-mdl2_v8.5.10..@fluentui/font-icons-mdl2_v8.5.11) ### Patches @@ -295,7 +295,7 @@ Mon, 06 Mar 2023 07:43:03 GMT ## [8.5.10](https://github.com/microsoft/fluentui/tree/@fluentui/font-icons-mdl2_v8.5.10) -Wed, 01 Mar 2023 07:45:41 GMT +Wed, 01 Mar 2023 07:45:41 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/font-icons-mdl2_v8.5.9..@fluentui/font-icons-mdl2_v8.5.10) ### Patches @@ -305,7 +305,7 @@ Wed, 01 Mar 2023 07:45:41 GMT ## [8.5.9](https://github.com/microsoft/fluentui/tree/@fluentui/font-icons-mdl2_v8.5.9) -Sat, 18 Feb 2023 01:37:02 GMT +Sat, 18 Feb 2023 01:37:02 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/font-icons-mdl2_v8.5.8..@fluentui/font-icons-mdl2_v8.5.9) ### Patches @@ -315,7 +315,7 @@ Sat, 18 Feb 2023 01:37:02 GMT ## [8.5.8](https://github.com/microsoft/fluentui/tree/@fluentui/font-icons-mdl2_v8.5.8) -Fri, 03 Feb 2023 07:50:06 GMT +Fri, 03 Feb 2023 07:50:06 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/font-icons-mdl2_v8.5.7..@fluentui/font-icons-mdl2_v8.5.8) ### Patches @@ -326,7 +326,7 @@ Fri, 03 Feb 2023 07:50:06 GMT ## [8.5.7](https://github.com/microsoft/fluentui/tree/@fluentui/font-icons-mdl2_v8.5.7) -Fri, 27 Jan 2023 07:37:51 GMT +Fri, 27 Jan 2023 07:37:51 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/font-icons-mdl2_v8.5.6..@fluentui/font-icons-mdl2_v8.5.7) ### Patches @@ -335,7 +335,7 @@ Fri, 27 Jan 2023 07:37:51 GMT ## [8.5.6](https://github.com/microsoft/fluentui/tree/@fluentui/font-icons-mdl2_v8.5.6) -Tue, 10 Jan 2023 07:50:15 GMT +Tue, 10 Jan 2023 07:50:15 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/font-icons-mdl2_v8.5.5..@fluentui/font-icons-mdl2_v8.5.6) ### Patches @@ -346,7 +346,7 @@ Tue, 10 Jan 2023 07:50:15 GMT ## [8.5.5](https://github.com/microsoft/fluentui/tree/@fluentui/font-icons-mdl2_v8.5.5) -Tue, 20 Dec 2022 07:53:34 GMT +Tue, 20 Dec 2022 07:53:34 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/font-icons-mdl2_v8.5.4..@fluentui/font-icons-mdl2_v8.5.5) ### Patches @@ -355,7 +355,7 @@ Tue, 20 Dec 2022 07:53:34 GMT ## [8.5.4](https://github.com/microsoft/fluentui/tree/@fluentui/font-icons-mdl2_v8.5.4) -Tue, 15 Nov 2022 07:44:59 GMT +Tue, 15 Nov 2022 07:44:59 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/font-icons-mdl2_v8.5.3..@fluentui/font-icons-mdl2_v8.5.4) ### Patches @@ -365,7 +365,7 @@ Tue, 15 Nov 2022 07:44:59 GMT ## [8.5.3](https://github.com/microsoft/fluentui/tree/@fluentui/font-icons-mdl2_v8.5.3) -Wed, 09 Nov 2022 07:48:12 GMT +Wed, 09 Nov 2022 07:48:12 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/font-icons-mdl2_v8.5.2..@fluentui/font-icons-mdl2_v8.5.3) ### Patches @@ -376,7 +376,7 @@ Wed, 09 Nov 2022 07:48:12 GMT ## [8.5.2](https://github.com/microsoft/fluentui/tree/@fluentui/font-icons-mdl2_v8.5.2) -Thu, 20 Oct 2022 07:43:14 GMT +Thu, 20 Oct 2022 07:43:14 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/font-icons-mdl2_v8.5.1..@fluentui/font-icons-mdl2_v8.5.2) ### Patches @@ -386,7 +386,7 @@ Thu, 20 Oct 2022 07:43:14 GMT ## [8.5.1](https://github.com/microsoft/fluentui/tree/@fluentui/font-icons-mdl2_v8.5.1) -Mon, 10 Oct 2022 07:38:24 GMT +Mon, 10 Oct 2022 07:38:24 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/font-icons-mdl2_v8.5.0..@fluentui/font-icons-mdl2_v8.5.1) ### Patches @@ -395,7 +395,7 @@ Mon, 10 Oct 2022 07:38:24 GMT ## [8.5.0](https://github.com/microsoft/fluentui/tree/@fluentui/font-icons-mdl2_v8.5.0) -Mon, 03 Oct 2022 07:37:49 GMT +Mon, 03 Oct 2022 07:37:49 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/font-icons-mdl2_v8.4.13..@fluentui/font-icons-mdl2_v8.5.0) ### Minor changes @@ -404,7 +404,7 @@ Mon, 03 Oct 2022 07:37:49 GMT ## [8.4.13](https://github.com/microsoft/fluentui/tree/@fluentui/font-icons-mdl2_v8.4.13) -Fri, 02 Sep 2022 07:48:53 GMT +Fri, 02 Sep 2022 07:48:53 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/font-icons-mdl2_v8.4.12..@fluentui/font-icons-mdl2_v8.4.13) ### Patches @@ -414,7 +414,7 @@ Fri, 02 Sep 2022 07:48:53 GMT ## [8.4.12](https://github.com/microsoft/fluentui/tree/@fluentui/font-icons-mdl2_v8.4.12) -Thu, 01 Sep 2022 07:48:11 GMT +Thu, 01 Sep 2022 07:48:11 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/font-icons-mdl2_v8.4.11..@fluentui/font-icons-mdl2_v8.4.12) ### Patches @@ -423,7 +423,7 @@ Thu, 01 Sep 2022 07:48:11 GMT ## [8.4.11](https://github.com/microsoft/fluentui/tree/@fluentui/font-icons-mdl2_v8.4.11) -Mon, 29 Aug 2022 07:44:38 GMT +Mon, 29 Aug 2022 07:44:38 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/font-icons-mdl2_v8.4.10..@fluentui/font-icons-mdl2_v8.4.11) ### Patches @@ -433,7 +433,7 @@ Mon, 29 Aug 2022 07:44:38 GMT ## [8.4.10](https://github.com/microsoft/fluentui/tree/@fluentui/font-icons-mdl2_v8.4.10) -Wed, 24 Aug 2022 16:36:06 GMT +Wed, 24 Aug 2022 16:36:06 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/font-icons-mdl2_v8.4.9..@fluentui/font-icons-mdl2_v8.4.10) ### Patches @@ -442,7 +442,7 @@ Wed, 24 Aug 2022 16:36:06 GMT ## [8.4.9](https://github.com/microsoft/fluentui/tree/@fluentui/font-icons-mdl2_v8.4.9) -Tue, 23 Aug 2022 07:22:50 GMT +Tue, 23 Aug 2022 07:22:50 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/font-icons-mdl2_v8.4.8..@fluentui/font-icons-mdl2_v8.4.9) ### Patches @@ -451,7 +451,7 @@ Tue, 23 Aug 2022 07:22:50 GMT ## [8.4.8](https://github.com/microsoft/fluentui/tree/@fluentui/font-icons-mdl2_v8.4.8) -Thu, 18 Aug 2022 23:39:31 GMT +Thu, 18 Aug 2022 23:39:31 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/font-icons-mdl2_v8.4.7..@fluentui/font-icons-mdl2_v8.4.8) ### Patches @@ -461,7 +461,7 @@ Thu, 18 Aug 2022 23:39:31 GMT ## [8.4.7](https://github.com/microsoft/fluentui/tree/@fluentui/font-icons-mdl2_v8.4.7) -Mon, 15 Aug 2022 07:39:41 GMT +Mon, 15 Aug 2022 07:39:41 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/font-icons-mdl2_v8.4.6..@fluentui/font-icons-mdl2_v8.4.7) ### Patches @@ -471,7 +471,7 @@ Mon, 15 Aug 2022 07:39:41 GMT ## [8.4.6](https://github.com/microsoft/fluentui/tree/@fluentui/font-icons-mdl2_v8.4.6) -Mon, 08 Aug 2022 07:39:33 GMT +Mon, 08 Aug 2022 07:39:33 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/font-icons-mdl2_v8.4.5..@fluentui/font-icons-mdl2_v8.4.6) ### Patches @@ -482,7 +482,7 @@ Mon, 08 Aug 2022 07:39:33 GMT ## [8.4.5](https://github.com/microsoft/fluentui/tree/@fluentui/font-icons-mdl2_v8.4.5) -Tue, 02 Aug 2022 07:44:44 GMT +Tue, 02 Aug 2022 07:44:44 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/font-icons-mdl2_v8.4.4..@fluentui/font-icons-mdl2_v8.4.5) ### Patches @@ -492,7 +492,7 @@ Tue, 02 Aug 2022 07:44:44 GMT ## [8.4.4](https://github.com/microsoft/fluentui/tree/@fluentui/font-icons-mdl2_v8.4.4) -Tue, 26 Jul 2022 07:39:35 GMT +Tue, 26 Jul 2022 07:39:35 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/font-icons-mdl2_v8.4.3..@fluentui/font-icons-mdl2_v8.4.4) ### Patches @@ -502,7 +502,7 @@ Tue, 26 Jul 2022 07:39:35 GMT ## [8.4.3](https://github.com/microsoft/fluentui/tree/@fluentui/font-icons-mdl2_v8.4.3) -Tue, 12 Jul 2022 07:41:00 GMT +Tue, 12 Jul 2022 07:41:00 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/font-icons-mdl2_v8.4.2..@fluentui/font-icons-mdl2_v8.4.3) ### Patches @@ -512,7 +512,7 @@ Tue, 12 Jul 2022 07:41:00 GMT ## [8.4.2](https://github.com/microsoft/fluentui/tree/@fluentui/font-icons-mdl2_v8.4.2) -Tue, 28 Jun 2022 07:39:04 GMT +Tue, 28 Jun 2022 07:39:04 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/font-icons-mdl2_v8.4.1..@fluentui/font-icons-mdl2_v8.4.2) ### Patches @@ -521,7 +521,7 @@ Tue, 28 Jun 2022 07:39:04 GMT ## [8.4.1](https://github.com/microsoft/fluentui/tree/@fluentui/font-icons-mdl2_v8.4.1) -Tue, 07 Jun 2022 07:48:04 GMT +Tue, 07 Jun 2022 07:48:04 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/font-icons-mdl2_v8.4.0..@fluentui/font-icons-mdl2_v8.4.1) ### Patches @@ -530,7 +530,7 @@ Tue, 07 Jun 2022 07:48:04 GMT ## [8.4.0](https://github.com/microsoft/fluentui/tree/@fluentui/font-icons-mdl2_v8.4.0) -Thu, 19 May 2022 07:41:26 GMT +Thu, 19 May 2022 07:41:26 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/font-icons-mdl2_v8.3.3..@fluentui/font-icons-mdl2_v8.4.0) ### Minor changes @@ -539,7 +539,7 @@ Thu, 19 May 2022 07:41:26 GMT ## [8.3.3](https://github.com/microsoft/fluentui/tree/@fluentui/font-icons-mdl2_v8.3.3) -Fri, 13 May 2022 07:45:35 GMT +Fri, 13 May 2022 07:45:35 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/font-icons-mdl2_v8.3.2..@fluentui/font-icons-mdl2_v8.3.3) ### Patches @@ -550,7 +550,7 @@ Fri, 13 May 2022 07:45:35 GMT ## [8.3.2](https://github.com/microsoft/fluentui/tree/@fluentui/font-icons-mdl2_v8.3.2) -Tue, 19 Apr 2022 21:39:15 GMT +Tue, 19 Apr 2022 21:39:15 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/font-icons-mdl2_v8.3.1..@fluentui/font-icons-mdl2_v8.3.2) ### Patches @@ -559,7 +559,7 @@ Tue, 19 Apr 2022 21:39:15 GMT ## [8.3.1](https://github.com/microsoft/fluentui/tree/@fluentui/font-icons-mdl2_v8.3.1) -Fri, 15 Apr 2022 07:42:48 GMT +Fri, 15 Apr 2022 07:42:48 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/font-icons-mdl2_v8.3.0..@fluentui/font-icons-mdl2_v8.3.1) ### Patches @@ -569,7 +569,7 @@ Fri, 15 Apr 2022 07:42:48 GMT ## [8.3.0](https://github.com/microsoft/fluentui/tree/@fluentui/font-icons-mdl2_v8.3.0) -Tue, 12 Apr 2022 07:39:32 GMT +Tue, 12 Apr 2022 07:39:32 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/font-icons-mdl2_v8.2.5..@fluentui/font-icons-mdl2_v8.3.0) ### Minor changes @@ -578,7 +578,7 @@ Tue, 12 Apr 2022 07:39:32 GMT ## [8.2.5](https://github.com/microsoft/fluentui/tree/@fluentui/font-icons-mdl2_v8.2.5) -Tue, 15 Mar 2022 07:45:54 GMT +Tue, 15 Mar 2022 07:45:54 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/font-icons-mdl2_v8.2.4..@fluentui/font-icons-mdl2_v8.2.5) ### Patches @@ -587,7 +587,7 @@ Tue, 15 Mar 2022 07:45:54 GMT ## [8.2.4](https://github.com/microsoft/fluentui/tree/@fluentui/font-icons-mdl2_v8.2.4) -Fri, 11 Mar 2022 07:34:41 GMT +Fri, 11 Mar 2022 07:34:41 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/font-icons-mdl2_v8.2.3..@fluentui/font-icons-mdl2_v8.2.4) ### Patches @@ -596,7 +596,7 @@ Fri, 11 Mar 2022 07:34:41 GMT ## [8.2.3](https://github.com/microsoft/fluentui/tree/@fluentui/font-icons-mdl2_v8.2.3) -Thu, 10 Mar 2022 07:34:50 GMT +Thu, 10 Mar 2022 07:34:50 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/font-icons-mdl2_v8.2.2..@fluentui/font-icons-mdl2_v8.2.3) ### Patches @@ -605,7 +605,7 @@ Thu, 10 Mar 2022 07:34:50 GMT ## [8.2.2](https://github.com/microsoft/fluentui/tree/@fluentui/font-icons-mdl2_v8.2.2) -Wed, 09 Mar 2022 07:37:30 GMT +Wed, 09 Mar 2022 07:37:30 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/font-icons-mdl2_v8.2.1..@fluentui/font-icons-mdl2_v8.2.2) ### Patches @@ -614,7 +614,7 @@ Wed, 09 Mar 2022 07:37:30 GMT ## [8.2.1](https://github.com/microsoft/fluentui/tree/@fluentui/font-icons-mdl2_v8.2.1) -Tue, 08 Mar 2022 23:29:58 GMT +Tue, 08 Mar 2022 23:29:58 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/font-icons-mdl2_v8.2.0..@fluentui/font-icons-mdl2_v8.2.1) ### Patches @@ -623,7 +623,7 @@ Tue, 08 Mar 2022 23:29:58 GMT ## [8.2.0](https://github.com/microsoft/fluentui/tree/@fluentui/font-icons-mdl2_v8.2.0) -Thu, 03 Mar 2022 07:24:26 GMT +Thu, 03 Mar 2022 07:24:26 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/font-icons-mdl2_v8.1.26..@fluentui/font-icons-mdl2_v8.2.0) ### Minor changes @@ -634,7 +634,7 @@ Thu, 03 Mar 2022 07:24:26 GMT ## [8.1.26](https://github.com/microsoft/fluentui/tree/@fluentui/font-icons-mdl2_v8.1.26) -Tue, 01 Mar 2022 07:23:43 GMT +Tue, 01 Mar 2022 07:23:43 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/font-icons-mdl2_v8.1.25..@fluentui/font-icons-mdl2_v8.1.26) ### Patches @@ -643,7 +643,7 @@ Tue, 01 Mar 2022 07:23:43 GMT ## [8.1.25](https://github.com/microsoft/fluentui/tree/@fluentui/font-icons-mdl2_v8.1.25) -Thu, 24 Feb 2022 07:29:50 GMT +Thu, 24 Feb 2022 07:29:50 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/font-icons-mdl2_v8.1.24..@fluentui/font-icons-mdl2_v8.1.25) ### Patches @@ -652,7 +652,7 @@ Thu, 24 Feb 2022 07:29:50 GMT ## [8.1.24](https://github.com/microsoft/fluentui/tree/@fluentui/font-icons-mdl2_v8.1.24) -Thu, 17 Feb 2022 07:28:31 GMT +Thu, 17 Feb 2022 07:28:31 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/font-icons-mdl2_v8.1.23..@fluentui/font-icons-mdl2_v8.1.24) ### Patches @@ -661,7 +661,7 @@ Thu, 17 Feb 2022 07:28:31 GMT ## [8.1.23](https://github.com/microsoft/fluentui/tree/@fluentui/font-icons-mdl2_v8.1.23) -Fri, 11 Feb 2022 07:27:49 GMT +Fri, 11 Feb 2022 07:27:49 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/font-icons-mdl2_v8.1.22..@fluentui/font-icons-mdl2_v8.1.23) ### Patches @@ -670,7 +670,7 @@ Fri, 11 Feb 2022 07:27:49 GMT ## [8.1.22](https://github.com/microsoft/fluentui/tree/@fluentui/font-icons-mdl2_v8.1.22) -Wed, 09 Feb 2022 07:30:50 GMT +Wed, 09 Feb 2022 07:30:50 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/font-icons-mdl2_v8.1.21..@fluentui/font-icons-mdl2_v8.1.22) ### Patches @@ -679,7 +679,7 @@ Wed, 09 Feb 2022 07:30:50 GMT ## [8.1.21](https://github.com/microsoft/fluentui/tree/@fluentui/font-icons-mdl2_v8.1.21) -Thu, 03 Feb 2022 07:29:41 GMT +Thu, 03 Feb 2022 07:29:41 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/font-icons-mdl2_v8.1.20..@fluentui/font-icons-mdl2_v8.1.21) ### Patches @@ -688,7 +688,7 @@ Thu, 03 Feb 2022 07:29:41 GMT ## [8.1.20](https://github.com/microsoft/fluentui/tree/@fluentui/font-icons-mdl2_v8.1.20) -Mon, 03 Jan 2022 23:32:11 GMT +Mon, 03 Jan 2022 23:32:11 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/font-icons-mdl2_v8.1.19..@fluentui/font-icons-mdl2_v8.1.20) ### Patches @@ -697,7 +697,7 @@ Mon, 03 Jan 2022 23:32:11 GMT ## [8.1.19](https://github.com/microsoft/fluentui/tree/@fluentui/font-icons-mdl2_v8.1.19) -Wed, 15 Dec 2021 07:31:29 GMT +Wed, 15 Dec 2021 07:31:29 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/font-icons-mdl2_v8.1.18..@fluentui/font-icons-mdl2_v8.1.19) ### Patches @@ -706,7 +706,7 @@ Wed, 15 Dec 2021 07:31:29 GMT ## [8.1.18](https://github.com/microsoft/fluentui/tree/@fluentui/font-icons-mdl2_v8.1.18) -Thu, 25 Nov 2021 14:54:16 GMT +Thu, 25 Nov 2021 14:54:16 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/font-icons-mdl2_v8.1.17..@fluentui/font-icons-mdl2_v8.1.18) ### Patches @@ -716,7 +716,7 @@ Thu, 25 Nov 2021 14:54:16 GMT ## [8.1.17](https://github.com/microsoft/fluentui/tree/@fluentui/font-icons-mdl2_v8.1.17) -Wed, 10 Nov 2021 07:31:59 GMT +Wed, 10 Nov 2021 07:31:59 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/font-icons-mdl2_v8.1.16..@fluentui/font-icons-mdl2_v8.1.17) ### Patches @@ -725,7 +725,7 @@ Wed, 10 Nov 2021 07:31:59 GMT ## [8.1.16](https://github.com/microsoft/fluentui/tree/@fluentui/font-icons-mdl2_v8.1.16) -Tue, 02 Nov 2021 07:37:02 GMT +Tue, 02 Nov 2021 07:37:02 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/font-icons-mdl2_v8.1.15..@fluentui/font-icons-mdl2_v8.1.16) ### Patches @@ -734,7 +734,7 @@ Tue, 02 Nov 2021 07:37:02 GMT ## [8.1.15](https://github.com/microsoft/fluentui/tree/@fluentui/font-icons-mdl2_v8.1.15) -Mon, 01 Nov 2021 07:32:08 GMT +Mon, 01 Nov 2021 07:32:08 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/font-icons-mdl2_v8.1.14..@fluentui/font-icons-mdl2_v8.1.15) ### Patches @@ -743,7 +743,7 @@ Mon, 01 Nov 2021 07:32:08 GMT ## [8.1.14](https://github.com/microsoft/fluentui/tree/@fluentui/font-icons-mdl2_v8.1.14) -Tue, 05 Oct 2021 07:37:17 GMT +Tue, 05 Oct 2021 07:37:17 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/font-icons-mdl2_v8.1.13..@fluentui/font-icons-mdl2_v8.1.14) ### Patches @@ -752,7 +752,7 @@ Tue, 05 Oct 2021 07:37:17 GMT ## [8.1.13](https://github.com/microsoft/fluentui/tree/@fluentui/font-icons-mdl2_v8.1.13) -Mon, 04 Oct 2021 07:27:12 GMT +Mon, 04 Oct 2021 07:27:12 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/font-icons-mdl2_v8.1.12..@fluentui/font-icons-mdl2_v8.1.13) ### Patches @@ -761,7 +761,7 @@ Mon, 04 Oct 2021 07:27:12 GMT ## [8.1.12](https://github.com/microsoft/fluentui/tree/@fluentui/font-icons-mdl2_v8.1.12) -Tue, 28 Sep 2021 22:17:07 GMT +Tue, 28 Sep 2021 22:17:07 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/font-icons-mdl2_v8.1.11..@fluentui/font-icons-mdl2_v8.1.12) ### Patches @@ -770,7 +770,7 @@ Tue, 28 Sep 2021 22:17:07 GMT ## [8.1.11](https://github.com/microsoft/fluentui/tree/@fluentui/font-icons-mdl2_v8.1.11) -Thu, 02 Sep 2021 07:36:46 GMT +Thu, 02 Sep 2021 07:36:46 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/font-icons-mdl2_v8.1.10..@fluentui/font-icons-mdl2_v8.1.11) ### Patches @@ -779,7 +779,7 @@ Thu, 02 Sep 2021 07:36:46 GMT ## [8.1.10](https://github.com/microsoft/fluentui/tree/@fluentui/font-icons-mdl2_v8.1.10) -Wed, 25 Aug 2021 07:35:19 GMT +Wed, 25 Aug 2021 07:35:19 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/font-icons-mdl2_v8.1.9..@fluentui/font-icons-mdl2_v8.1.10) ### Patches @@ -788,7 +788,7 @@ Wed, 25 Aug 2021 07:35:19 GMT ## [8.1.9](https://github.com/microsoft/fluentui/tree/@fluentui/font-icons-mdl2_v8.1.9) -Thu, 19 Aug 2021 07:41:35 GMT +Thu, 19 Aug 2021 07:41:35 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/font-icons-mdl2_v8.1.8..@fluentui/font-icons-mdl2_v8.1.9) ### Patches @@ -797,7 +797,7 @@ Thu, 19 Aug 2021 07:41:35 GMT ## [8.1.8](https://github.com/microsoft/fluentui/tree/@fluentui/font-icons-mdl2_v8.1.8) -Tue, 03 Aug 2021 07:39:30 GMT +Tue, 03 Aug 2021 07:39:30 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/font-icons-mdl2_v8.1.7..@fluentui/font-icons-mdl2_v8.1.8) ### Patches @@ -806,7 +806,7 @@ Tue, 03 Aug 2021 07:39:30 GMT ## [8.1.7](https://github.com/microsoft/fluentui/tree/@fluentui/font-icons-mdl2_v8.1.7) -Thu, 29 Jul 2021 07:35:37 GMT +Thu, 29 Jul 2021 07:35:37 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/font-icons-mdl2_v8.1.6..@fluentui/font-icons-mdl2_v8.1.7) ### Patches @@ -815,7 +815,7 @@ Thu, 29 Jul 2021 07:35:37 GMT ## [8.1.6](https://github.com/microsoft/fluentui/tree/@fluentui/font-icons-mdl2_v8.1.6) -Tue, 13 Jul 2021 07:35:36 GMT +Tue, 13 Jul 2021 07:35:36 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/font-icons-mdl2_v8.1.5..@fluentui/font-icons-mdl2_v8.1.6) ### Patches @@ -824,7 +824,7 @@ Tue, 13 Jul 2021 07:35:36 GMT ## [8.1.5](https://github.com/microsoft/fluentui/tree/@fluentui/font-icons-mdl2_v8.1.5) -Fri, 09 Jul 2021 07:39:31 GMT +Fri, 09 Jul 2021 07:39:31 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/font-icons-mdl2_v8.1.4..@fluentui/font-icons-mdl2_v8.1.5) ### Patches @@ -833,7 +833,7 @@ Fri, 09 Jul 2021 07:39:31 GMT ## [8.1.4](https://github.com/microsoft/fluentui/tree/@fluentui/font-icons-mdl2_v8.1.4) -Mon, 28 Jun 2021 07:35:16 GMT +Mon, 28 Jun 2021 07:35:16 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/font-icons-mdl2_v8.1.3..@fluentui/font-icons-mdl2_v8.1.4) ### Patches @@ -842,7 +842,7 @@ Mon, 28 Jun 2021 07:35:16 GMT ## [8.1.3](https://github.com/microsoft/fluentui/tree/@fluentui/font-icons-mdl2_v8.1.3) -Tue, 15 Jun 2021 07:40:20 GMT +Tue, 15 Jun 2021 07:40:20 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/font-icons-mdl2_v8.1.2..@fluentui/font-icons-mdl2_v8.1.3) ### Patches @@ -851,7 +851,7 @@ Tue, 15 Jun 2021 07:40:20 GMT ## [8.1.2](https://github.com/microsoft/fluentui/tree/@fluentui/font-icons-mdl2_v8.1.2) -Mon, 07 Jun 2021 07:38:15 GMT +Mon, 07 Jun 2021 07:38:15 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/font-icons-mdl2_v8.1.1..@fluentui/font-icons-mdl2_v8.1.2) ### Patches @@ -860,7 +860,7 @@ Mon, 07 Jun 2021 07:38:15 GMT ## [8.1.1](https://github.com/microsoft/fluentui/tree/@fluentui/font-icons-mdl2_v8.1.1) -Thu, 20 May 2021 07:41:54 GMT +Thu, 20 May 2021 07:41:54 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/font-icons-mdl2_v8.1.0..@fluentui/font-icons-mdl2_v8.1.1) ### Patches @@ -869,7 +869,7 @@ Thu, 20 May 2021 07:41:54 GMT ## [8.1.0](https://github.com/microsoft/fluentui/tree/@fluentui/font-icons-mdl2_v8.1.0) -Fri, 30 Apr 2021 07:42:23 GMT +Fri, 30 Apr 2021 07:42:23 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/font-icons-mdl2_v8.0.5..@fluentui/font-icons-mdl2_v8.1.0) ### Minor changes @@ -885,7 +885,7 @@ Fri, 30 Apr 2021 07:42:23 GMT ## [8.0.5](https://github.com/microsoft/fluentui/tree/@fluentui/font-icons-mdl2_v8.0.5) -Fri, 23 Apr 2021 07:37:10 GMT +Fri, 23 Apr 2021 07:37:10 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/font-icons-mdl2_v8.0.4..@fluentui/font-icons-mdl2_v8.0.5) ### Patches @@ -894,7 +894,7 @@ Fri, 23 Apr 2021 07:37:10 GMT ## [8.0.4](https://github.com/microsoft/fluentui/tree/@fluentui/font-icons-mdl2_v8.0.4) -Tue, 13 Apr 2021 14:55:56 GMT +Tue, 13 Apr 2021 14:55:56 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/font-icons-mdl2_v8.0.3..@fluentui/font-icons-mdl2_v8.0.4) ### Patches @@ -903,7 +903,7 @@ Tue, 13 Apr 2021 14:55:56 GMT ## [8.0.3](https://github.com/microsoft/fluentui/tree/@fluentui/font-icons-mdl2_v8.0.3) -Wed, 31 Mar 2021 00:53:43 GMT +Wed, 31 Mar 2021 00:53:43 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/font-icons-mdl2_v8.0.2..@fluentui/font-icons-mdl2_v8.0.3) ### Patches @@ -912,7 +912,7 @@ Wed, 31 Mar 2021 00:53:43 GMT ## [8.0.2](https://github.com/microsoft/fluentui/tree/@fluentui/font-icons-mdl2_v8.0.2) -Wed, 03 Mar 2021 00:10:09 GMT +Wed, 03 Mar 2021 00:10:09 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/font-icons-mdl2_v8.0.1..@fluentui/font-icons-mdl2_v8.0.2) ### Patches @@ -921,7 +921,7 @@ Wed, 03 Mar 2021 00:10:09 GMT ## [8.0.1](https://github.com/microsoft/fluentui/tree/@fluentui/font-icons-mdl2_v8.0.1) -Fri, 26 Feb 2021 01:16:27 GMT +Fri, 26 Feb 2021 01:16:27 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/font-icons-mdl2_v8.0.0-beta.19..@fluentui/font-icons-mdl2_v8.0.1) ### Patches @@ -930,7 +930,7 @@ Fri, 26 Feb 2021 01:16:27 GMT ## [8.0.0-beta.19](https://github.com/microsoft/fluentui/tree/@fluentui/font-icons-mdl2_v8.0.0-beta.19) -Mon, 22 Feb 2021 12:26:22 GMT +Mon, 22 Feb 2021 12:26:22 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/font-icons-mdl2_v8.0.0-beta.18..@fluentui/font-icons-mdl2_v8.0.0-beta.19) ### Changes @@ -939,7 +939,7 @@ Mon, 22 Feb 2021 12:26:22 GMT ## [8.0.0-beta.18](https://github.com/microsoft/fluentui/tree/@fluentui/font-icons-mdl2_v8.0.0-beta.18) -Thu, 18 Feb 2021 19:38:50 GMT +Thu, 18 Feb 2021 19:38:50 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/font-icons-mdl2_v8.0.0-beta.17..@fluentui/font-icons-mdl2_v8.0.0-beta.18) ### Changes @@ -948,7 +948,7 @@ Thu, 18 Feb 2021 19:38:50 GMT ## [8.0.0-beta.17](https://github.com/microsoft/fluentui/tree/@fluentui/font-icons-mdl2_v8.0.0-beta.17) -Thu, 18 Feb 2021 12:27:34 GMT +Thu, 18 Feb 2021 12:27:34 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/font-icons-mdl2_v8.0.0-beta.16..@fluentui/font-icons-mdl2_v8.0.0-beta.17) ### Changes @@ -957,7 +957,7 @@ Thu, 18 Feb 2021 12:27:34 GMT ## [8.0.0-beta.16](https://github.com/microsoft/fluentui/tree/@fluentui/font-icons-mdl2_v8.0.0-beta.16) -Mon, 15 Feb 2021 12:22:00 GMT +Mon, 15 Feb 2021 12:22:00 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/font-icons-mdl2_v8.0.0-beta.15..@fluentui/font-icons-mdl2_v8.0.0-beta.16) ### Changes @@ -966,7 +966,7 @@ Mon, 15 Feb 2021 12:22:00 GMT ## [8.0.0-beta.15](https://github.com/microsoft/fluentui/tree/@fluentui/font-icons-mdl2_v8.0.0-beta.15) -Fri, 12 Feb 2021 12:26:20 GMT +Fri, 12 Feb 2021 12:26:20 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/font-icons-mdl2_v8.0.0-beta.14..@fluentui/font-icons-mdl2_v8.0.0-beta.15) ### Changes @@ -975,7 +975,7 @@ Fri, 12 Feb 2021 12:26:20 GMT ## [8.0.0-beta.14](https://github.com/microsoft/fluentui/tree/@fluentui/font-icons-mdl2_v8.0.0-beta.14) -Thu, 11 Feb 2021 00:58:10 GMT +Thu, 11 Feb 2021 00:58:10 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/font-icons-mdl2_v8.0.0-beta.13..@fluentui/font-icons-mdl2_v8.0.0-beta.14) ### Changes @@ -984,7 +984,7 @@ Thu, 11 Feb 2021 00:58:10 GMT ## [8.0.0-beta.13](https://github.com/microsoft/fluentui/tree/@fluentui/font-icons-mdl2_v8.0.0-beta.13) -Thu, 28 Jan 2021 12:25:56 GMT +Thu, 28 Jan 2021 12:25:56 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/font-icons-mdl2_v8.0.0-beta.0..@fluentui/font-icons-mdl2_v8.0.0-beta.13) ### Changes @@ -993,7 +993,7 @@ Thu, 28 Jan 2021 12:25:56 GMT ## [8.0.0-beta.0](https://github.com/microsoft/fluentui/tree/@fluentui/font-icons-mdl2_v8.0.0-beta.0) -Fri, 23 Oct 2020 03:26:15 GMT +Fri, 23 Oct 2020 03:26:15 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@uifabric/icons_v7.5.2..@fluentui/font-icons-mdl2_v8.0.0-beta.0) ### Changes @@ -1005,7 +1005,7 @@ Fri, 23 Oct 2020 03:26:15 GMT ## [7.3.36](https://github.com/microsoft/fluentui/tree/@uifabric/icons_v7.3.36) -Thu, 07 May 2020 01:06:55 GMT +Thu, 07 May 2020 01:06:55 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@uifabric/icons_v7.3.26..@uifabric/icons_v7.3.36) ### Patches @@ -1014,7 +1014,7 @@ Thu, 07 May 2020 01:06:55 GMT ## [7.3.26](https://github.com/microsoft/fluentui/tree/@uifabric/icons_v7.3.26) -Thu, 16 Apr 2020 04:01:45 GMT +Thu, 16 Apr 2020 04:01:45 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@uifabric/icons_v7.3.22..@uifabric/icons_v7.3.26) ### Patches diff --git a/packages/foundation-legacy/CHANGELOG.md b/packages/foundation-legacy/CHANGELOG.md index 47ab5bf5554560..0bb93e59bbc460 100644 --- a/packages/foundation-legacy/CHANGELOG.md +++ b/packages/foundation-legacy/CHANGELOG.md @@ -6,7 +6,7 @@ This log was last generated on Wed, 24 Apr 2024 07:27:48 GMT and should not be m ## [8.4.4](https://github.com/microsoft/fluentui/tree/@fluentui/foundation-legacy_v8.4.4) -Wed, 24 Apr 2024 07:27:48 GMT +Wed, 24 Apr 2024 07:27:48 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/foundation-legacy_v8.4.3..@fluentui/foundation-legacy_v8.4.4) ### Patches @@ -18,7 +18,7 @@ Wed, 24 Apr 2024 07:27:48 GMT ## [8.4.3](https://github.com/microsoft/fluentui/tree/@fluentui/foundation-legacy_v8.4.3) -Mon, 22 Apr 2024 07:28:27 GMT +Mon, 22 Apr 2024 07:28:27 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/foundation-legacy_v8.4.2..@fluentui/foundation-legacy_v8.4.3) ### Patches @@ -29,7 +29,7 @@ Mon, 22 Apr 2024 07:28:27 GMT ## [8.4.2](https://github.com/microsoft/fluentui/tree/@fluentui/foundation-legacy_v8.4.2) -Fri, 12 Apr 2024 07:29:11 GMT +Fri, 12 Apr 2024 07:29:11 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/foundation-legacy_v8.4.1..@fluentui/foundation-legacy_v8.4.2) ### Patches @@ -41,7 +41,7 @@ Fri, 12 Apr 2024 07:29:11 GMT ## [8.4.1](https://github.com/microsoft/fluentui/tree/@fluentui/foundation-legacy_v8.4.1) -Wed, 03 Apr 2024 07:29:31 GMT +Wed, 03 Apr 2024 07:29:31 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/foundation-legacy_v8.4.0..@fluentui/foundation-legacy_v8.4.1) ### Patches @@ -53,7 +53,7 @@ Wed, 03 Apr 2024 07:29:31 GMT ## [8.4.0](https://github.com/microsoft/fluentui/tree/@fluentui/foundation-legacy_v8.4.0) -Fri, 22 Mar 2024 07:28:52 GMT +Fri, 22 Mar 2024 07:28:52 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/foundation-legacy_v8.3.0..@fluentui/foundation-legacy_v8.4.0) ### Minor changes @@ -64,7 +64,7 @@ Fri, 22 Mar 2024 07:28:52 GMT ## [8.3.0](https://github.com/microsoft/fluentui/tree/@fluentui/foundation-legacy_v8.3.0) -Wed, 13 Mar 2024 07:30:27 GMT +Wed, 13 Mar 2024 07:30:27 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/foundation-legacy_v8.2.52..@fluentui/foundation-legacy_v8.3.0) ### Minor changes @@ -76,7 +76,7 @@ Wed, 13 Mar 2024 07:30:27 GMT ## [8.2.52](https://github.com/microsoft/fluentui/tree/@fluentui/foundation-legacy_v8.2.52) -Wed, 31 Jan 2024 07:27:57 GMT +Wed, 31 Jan 2024 07:27:57 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/foundation-legacy_v8.2.51..@fluentui/foundation-legacy_v8.2.52) ### Patches @@ -85,7 +85,7 @@ Wed, 31 Jan 2024 07:27:57 GMT ## [8.2.51](https://github.com/microsoft/fluentui/tree/@fluentui/foundation-legacy_v8.2.51) -Fri, 19 Jan 2024 07:29:32 GMT +Fri, 19 Jan 2024 07:29:32 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/foundation-legacy_v8.2.50..@fluentui/foundation-legacy_v8.2.51) ### Patches @@ -95,7 +95,7 @@ Fri, 19 Jan 2024 07:29:32 GMT ## [8.2.50](https://github.com/microsoft/fluentui/tree/@fluentui/foundation-legacy_v8.2.50) -Wed, 10 Jan 2024 07:28:50 GMT +Wed, 10 Jan 2024 07:28:50 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/foundation-legacy_v8.2.49..@fluentui/foundation-legacy_v8.2.50) ### Patches @@ -107,7 +107,7 @@ Wed, 10 Jan 2024 07:28:50 GMT ## [8.2.49](https://github.com/microsoft/fluentui/tree/@fluentui/foundation-legacy_v8.2.49) -Tue, 09 Jan 2024 07:33:09 GMT +Tue, 09 Jan 2024 07:33:09 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/foundation-legacy_v8.2.48..@fluentui/foundation-legacy_v8.2.49) ### Patches @@ -116,7 +116,7 @@ Tue, 09 Jan 2024 07:33:09 GMT ## [8.2.48](https://github.com/microsoft/fluentui/tree/@fluentui/foundation-legacy_v8.2.48) -Thu, 14 Dec 2023 07:30:10 GMT +Thu, 14 Dec 2023 07:30:10 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/foundation-legacy_v8.2.47..@fluentui/foundation-legacy_v8.2.48) ### Patches @@ -128,7 +128,7 @@ Thu, 14 Dec 2023 07:30:10 GMT ## [8.2.47](https://github.com/microsoft/fluentui/tree/@fluentui/foundation-legacy_v8.2.47) -Thu, 09 Nov 2023 07:29:20 GMT +Thu, 09 Nov 2023 07:29:20 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/foundation-legacy_v8.2.46..@fluentui/foundation-legacy_v8.2.47) ### Patches @@ -138,7 +138,7 @@ Thu, 09 Nov 2023 07:29:20 GMT ## [8.2.46](https://github.com/microsoft/fluentui/tree/@fluentui/foundation-legacy_v8.2.46) -Sat, 28 Oct 2023 00:29:16 GMT +Sat, 28 Oct 2023 00:29:16 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/foundation-legacy_v8.2.45..@fluentui/foundation-legacy_v8.2.46) ### Patches @@ -150,7 +150,7 @@ Sat, 28 Oct 2023 00:29:16 GMT ## [8.2.45](https://github.com/microsoft/fluentui/tree/@fluentui/foundation-legacy_v8.2.45) -Fri, 29 Sep 2023 07:45:30 GMT +Fri, 29 Sep 2023 07:45:30 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/foundation-legacy_v8.2.44..@fluentui/foundation-legacy_v8.2.45) ### Patches @@ -160,7 +160,7 @@ Fri, 29 Sep 2023 07:45:30 GMT ## [8.2.44](https://github.com/microsoft/fluentui/tree/@fluentui/foundation-legacy_v8.2.44) -Fri, 18 Aug 2023 07:35:26 GMT +Fri, 18 Aug 2023 07:35:26 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/foundation-legacy_v8.2.43..@fluentui/foundation-legacy_v8.2.44) ### Patches @@ -169,7 +169,7 @@ Fri, 18 Aug 2023 07:35:26 GMT ## [8.2.43](https://github.com/microsoft/fluentui/tree/@fluentui/foundation-legacy_v8.2.43) -Wed, 28 Jun 2023 07:37:33 GMT +Wed, 28 Jun 2023 07:37:33 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/foundation-legacy_v8.2.42..@fluentui/foundation-legacy_v8.2.43) ### Patches @@ -179,7 +179,7 @@ Wed, 28 Jun 2023 07:37:33 GMT ## [8.2.42](https://github.com/microsoft/fluentui/tree/@fluentui/foundation-legacy_v8.2.42) -Mon, 19 Jun 2023 07:36:39 GMT +Mon, 19 Jun 2023 07:36:39 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/foundation-legacy_v8.2.41..@fluentui/foundation-legacy_v8.2.42) ### Patches @@ -189,7 +189,7 @@ Mon, 19 Jun 2023 07:36:39 GMT ## [8.2.41](https://github.com/microsoft/fluentui/tree/@fluentui/foundation-legacy_v8.2.41) -Thu, 01 Jun 2023 07:38:37 GMT +Thu, 01 Jun 2023 07:38:37 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/foundation-legacy_v8.2.40..@fluentui/foundation-legacy_v8.2.41) ### Patches @@ -199,7 +199,7 @@ Thu, 01 Jun 2023 07:38:37 GMT ## [8.2.40](https://github.com/microsoft/fluentui/tree/@fluentui/foundation-legacy_v8.2.40) -Wed, 31 May 2023 07:38:40 GMT +Wed, 31 May 2023 07:38:40 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/foundation-legacy_v8.2.39..@fluentui/foundation-legacy_v8.2.40) ### Patches @@ -212,7 +212,7 @@ Wed, 31 May 2023 07:38:40 GMT ## [8.2.39](https://github.com/microsoft/fluentui/tree/@fluentui/foundation-legacy_v8.2.39) -Tue, 30 May 2023 07:36:09 GMT +Tue, 30 May 2023 07:36:09 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/foundation-legacy_v8.2.38..@fluentui/foundation-legacy_v8.2.39) ### Patches @@ -225,7 +225,7 @@ Tue, 30 May 2023 07:36:09 GMT ## [8.2.38](https://github.com/microsoft/fluentui/tree/@fluentui/foundation-legacy_v8.2.38) -Fri, 26 May 2023 07:37:02 GMT +Fri, 26 May 2023 07:37:02 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/foundation-legacy_v8.2.37..@fluentui/foundation-legacy_v8.2.38) ### Patches @@ -234,7 +234,7 @@ Fri, 26 May 2023 07:37:02 GMT ## [8.2.37](https://github.com/microsoft/fluentui/tree/@fluentui/foundation-legacy_v8.2.37) -Fri, 05 May 2023 18:14:04 GMT +Fri, 05 May 2023 18:14:04 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/foundation-legacy_v8.2.36..@fluentui/foundation-legacy_v8.2.37) ### Patches @@ -248,7 +248,7 @@ Fri, 05 May 2023 18:14:04 GMT ## [8.2.36](https://github.com/microsoft/fluentui/tree/@fluentui/foundation-legacy_v8.2.36) -Tue, 02 May 2023 22:20:25 GMT +Tue, 02 May 2023 22:20:25 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/foundation-legacy_v8.2.35..@fluentui/foundation-legacy_v8.2.36) ### Patches @@ -258,7 +258,7 @@ Tue, 02 May 2023 22:20:25 GMT ## [8.2.35](https://github.com/microsoft/fluentui/tree/@fluentui/foundation-legacy_v8.2.35) -Tue, 02 May 2023 00:58:15 GMT +Tue, 02 May 2023 00:58:15 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/foundation-legacy_v8.2.34..@fluentui/foundation-legacy_v8.2.35) ### Patches @@ -272,7 +272,7 @@ Tue, 02 May 2023 00:58:15 GMT ## [8.2.34](https://github.com/microsoft/fluentui/tree/@fluentui/foundation-legacy_v8.2.34) -Mon, 01 May 2023 07:39:54 GMT +Mon, 01 May 2023 07:39:54 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/foundation-legacy_v8.2.33..@fluentui/foundation-legacy_v8.2.34) ### Patches @@ -285,7 +285,7 @@ Mon, 01 May 2023 07:39:54 GMT ## [8.2.33](https://github.com/microsoft/fluentui/tree/@fluentui/foundation-legacy_v8.2.33) -Fri, 17 Mar 2023 08:15:56 GMT +Fri, 17 Mar 2023 08:15:56 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/foundation-legacy_v8.2.32..@fluentui/foundation-legacy_v8.2.33) ### Patches @@ -298,7 +298,7 @@ Fri, 17 Mar 2023 08:15:56 GMT ## [8.2.32](https://github.com/microsoft/fluentui/tree/@fluentui/foundation-legacy_v8.2.32) -Thu, 09 Mar 2023 07:39:12 GMT +Thu, 09 Mar 2023 07:39:12 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/foundation-legacy_v8.2.31..@fluentui/foundation-legacy_v8.2.32) ### Patches @@ -307,7 +307,7 @@ Thu, 09 Mar 2023 07:39:12 GMT ## [8.2.31](https://github.com/microsoft/fluentui/tree/@fluentui/foundation-legacy_v8.2.31) -Mon, 06 Mar 2023 07:43:04 GMT +Mon, 06 Mar 2023 07:43:04 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/foundation-legacy_v8.2.30..@fluentui/foundation-legacy_v8.2.31) ### Patches @@ -316,7 +316,7 @@ Mon, 06 Mar 2023 07:43:04 GMT ## [8.2.30](https://github.com/microsoft/fluentui/tree/@fluentui/foundation-legacy_v8.2.30) -Wed, 01 Mar 2023 07:45:41 GMT +Wed, 01 Mar 2023 07:45:41 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/foundation-legacy_v8.2.29..@fluentui/foundation-legacy_v8.2.30) ### Patches @@ -326,7 +326,7 @@ Wed, 01 Mar 2023 07:45:41 GMT ## [8.2.29](https://github.com/microsoft/fluentui/tree/@fluentui/foundation-legacy_v8.2.29) -Sat, 18 Feb 2023 01:37:02 GMT +Sat, 18 Feb 2023 01:37:02 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/foundation-legacy_v8.2.28..@fluentui/foundation-legacy_v8.2.29) ### Patches @@ -336,7 +336,7 @@ Sat, 18 Feb 2023 01:37:02 GMT ## [8.2.28](https://github.com/microsoft/fluentui/tree/@fluentui/foundation-legacy_v8.2.28) -Fri, 03 Feb 2023 07:50:06 GMT +Fri, 03 Feb 2023 07:50:06 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/foundation-legacy_v8.2.27..@fluentui/foundation-legacy_v8.2.28) ### Patches @@ -349,7 +349,7 @@ Fri, 03 Feb 2023 07:50:06 GMT ## [8.2.27](https://github.com/microsoft/fluentui/tree/@fluentui/foundation-legacy_v8.2.27) -Fri, 27 Jan 2023 07:37:51 GMT +Fri, 27 Jan 2023 07:37:51 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/foundation-legacy_v8.2.26..@fluentui/foundation-legacy_v8.2.27) ### Patches @@ -358,7 +358,7 @@ Fri, 27 Jan 2023 07:37:51 GMT ## [8.2.26](https://github.com/microsoft/fluentui/tree/@fluentui/foundation-legacy_v8.2.26) -Tue, 10 Jan 2023 07:50:15 GMT +Tue, 10 Jan 2023 07:50:15 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/foundation-legacy_v8.2.25..@fluentui/foundation-legacy_v8.2.26) ### Patches @@ -371,7 +371,7 @@ Tue, 10 Jan 2023 07:50:15 GMT ## [8.2.25](https://github.com/microsoft/fluentui/tree/@fluentui/foundation-legacy_v8.2.25) -Tue, 20 Dec 2022 07:53:34 GMT +Tue, 20 Dec 2022 07:53:34 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/foundation-legacy_v8.2.24..@fluentui/foundation-legacy_v8.2.25) ### Patches @@ -380,7 +380,7 @@ Tue, 20 Dec 2022 07:53:34 GMT ## [8.2.24](https://github.com/microsoft/fluentui/tree/@fluentui/foundation-legacy_v8.2.24) -Tue, 15 Nov 2022 07:44:59 GMT +Tue, 15 Nov 2022 07:44:59 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/foundation-legacy_v8.2.23..@fluentui/foundation-legacy_v8.2.24) ### Patches @@ -390,7 +390,7 @@ Tue, 15 Nov 2022 07:44:59 GMT ## [8.2.23](https://github.com/microsoft/fluentui/tree/@fluentui/foundation-legacy_v8.2.23) -Wed, 09 Nov 2022 07:48:12 GMT +Wed, 09 Nov 2022 07:48:12 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/foundation-legacy_v8.2.22..@fluentui/foundation-legacy_v8.2.23) ### Patches @@ -403,7 +403,7 @@ Wed, 09 Nov 2022 07:48:12 GMT ## [8.2.22](https://github.com/microsoft/fluentui/tree/@fluentui/foundation-legacy_v8.2.22) -Thu, 20 Oct 2022 07:43:14 GMT +Thu, 20 Oct 2022 07:43:14 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/foundation-legacy_v8.2.21..@fluentui/foundation-legacy_v8.2.22) ### Patches @@ -414,7 +414,7 @@ Thu, 20 Oct 2022 07:43:14 GMT ## [8.2.21](https://github.com/microsoft/fluentui/tree/@fluentui/foundation-legacy_v8.2.21) -Mon, 10 Oct 2022 07:38:24 GMT +Mon, 10 Oct 2022 07:38:24 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/foundation-legacy_v8.2.20..@fluentui/foundation-legacy_v8.2.21) ### Patches @@ -423,7 +423,7 @@ Mon, 10 Oct 2022 07:38:24 GMT ## [8.2.20](https://github.com/microsoft/fluentui/tree/@fluentui/foundation-legacy_v8.2.20) -Fri, 02 Sep 2022 07:48:53 GMT +Fri, 02 Sep 2022 07:48:53 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/foundation-legacy_v8.2.19..@fluentui/foundation-legacy_v8.2.20) ### Patches @@ -433,7 +433,7 @@ Fri, 02 Sep 2022 07:48:53 GMT ## [8.2.19](https://github.com/microsoft/fluentui/tree/@fluentui/foundation-legacy_v8.2.19) -Thu, 01 Sep 2022 07:48:11 GMT +Thu, 01 Sep 2022 07:48:11 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/foundation-legacy_v8.2.18..@fluentui/foundation-legacy_v8.2.19) ### Patches @@ -442,7 +442,7 @@ Thu, 01 Sep 2022 07:48:11 GMT ## [8.2.18](https://github.com/microsoft/fluentui/tree/@fluentui/foundation-legacy_v8.2.18) -Mon, 29 Aug 2022 07:44:38 GMT +Mon, 29 Aug 2022 07:44:38 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/foundation-legacy_v8.2.17..@fluentui/foundation-legacy_v8.2.18) ### Patches @@ -452,7 +452,7 @@ Mon, 29 Aug 2022 07:44:38 GMT ## [8.2.17](https://github.com/microsoft/fluentui/tree/@fluentui/foundation-legacy_v8.2.17) -Wed, 24 Aug 2022 16:36:05 GMT +Wed, 24 Aug 2022 16:36:05 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/foundation-legacy_v8.2.16..@fluentui/foundation-legacy_v8.2.17) ### Patches @@ -462,7 +462,7 @@ Wed, 24 Aug 2022 16:36:05 GMT ## [8.2.16](https://github.com/microsoft/fluentui/tree/@fluentui/foundation-legacy_v8.2.16) -Tue, 23 Aug 2022 07:22:50 GMT +Tue, 23 Aug 2022 07:22:50 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/foundation-legacy_v8.2.15..@fluentui/foundation-legacy_v8.2.16) ### Patches @@ -472,7 +472,7 @@ Tue, 23 Aug 2022 07:22:50 GMT ## [8.2.15](https://github.com/microsoft/fluentui/tree/@fluentui/foundation-legacy_v8.2.15) -Thu, 18 Aug 2022 23:39:31 GMT +Thu, 18 Aug 2022 23:39:31 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/foundation-legacy_v8.2.14..@fluentui/foundation-legacy_v8.2.15) ### Patches @@ -482,7 +482,7 @@ Thu, 18 Aug 2022 23:39:31 GMT ## [8.2.14](https://github.com/microsoft/fluentui/tree/@fluentui/foundation-legacy_v8.2.14) -Mon, 15 Aug 2022 07:39:41 GMT +Mon, 15 Aug 2022 07:39:41 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/foundation-legacy_v8.2.13..@fluentui/foundation-legacy_v8.2.14) ### Patches @@ -492,7 +492,7 @@ Mon, 15 Aug 2022 07:39:41 GMT ## [8.2.13](https://github.com/microsoft/fluentui/tree/@fluentui/foundation-legacy_v8.2.13) -Mon, 08 Aug 2022 07:39:33 GMT +Mon, 08 Aug 2022 07:39:33 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/foundation-legacy_v8.2.12..@fluentui/foundation-legacy_v8.2.13) ### Patches @@ -505,7 +505,7 @@ Mon, 08 Aug 2022 07:39:33 GMT ## [8.2.12](https://github.com/microsoft/fluentui/tree/@fluentui/foundation-legacy_v8.2.12) -Tue, 02 Aug 2022 07:44:44 GMT +Tue, 02 Aug 2022 07:44:44 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/foundation-legacy_v8.2.11..@fluentui/foundation-legacy_v8.2.12) ### Patches @@ -515,7 +515,7 @@ Tue, 02 Aug 2022 07:44:44 GMT ## [8.2.11](https://github.com/microsoft/fluentui/tree/@fluentui/foundation-legacy_v8.2.11) -Tue, 26 Jul 2022 07:39:35 GMT +Tue, 26 Jul 2022 07:39:35 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/foundation-legacy_v8.2.10..@fluentui/foundation-legacy_v8.2.11) ### Patches @@ -525,7 +525,7 @@ Tue, 26 Jul 2022 07:39:35 GMT ## [8.2.10](https://github.com/microsoft/fluentui/tree/@fluentui/foundation-legacy_v8.2.10) -Tue, 12 Jul 2022 07:41:00 GMT +Tue, 12 Jul 2022 07:41:00 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/foundation-legacy_v8.2.9..@fluentui/foundation-legacy_v8.2.10) ### Patches @@ -535,7 +535,7 @@ Tue, 12 Jul 2022 07:41:00 GMT ## [8.2.9](https://github.com/microsoft/fluentui/tree/@fluentui/foundation-legacy_v8.2.9) -Tue, 28 Jun 2022 07:39:04 GMT +Tue, 28 Jun 2022 07:39:04 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/foundation-legacy_v8.2.8..@fluentui/foundation-legacy_v8.2.9) ### Patches @@ -544,7 +544,7 @@ Tue, 28 Jun 2022 07:39:04 GMT ## [8.2.8](https://github.com/microsoft/fluentui/tree/@fluentui/foundation-legacy_v8.2.8) -Tue, 07 Jun 2022 07:48:04 GMT +Tue, 07 Jun 2022 07:48:04 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/foundation-legacy_v8.2.7..@fluentui/foundation-legacy_v8.2.8) ### Patches @@ -553,7 +553,7 @@ Tue, 07 Jun 2022 07:48:04 GMT ## [8.2.7](https://github.com/microsoft/fluentui/tree/@fluentui/foundation-legacy_v8.2.7) -Fri, 13 May 2022 07:45:35 GMT +Fri, 13 May 2022 07:45:35 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/foundation-legacy_v8.2.6..@fluentui/foundation-legacy_v8.2.7) ### Patches @@ -566,7 +566,7 @@ Fri, 13 May 2022 07:45:35 GMT ## [8.2.6](https://github.com/microsoft/fluentui/tree/@fluentui/foundation-legacy_v8.2.6) -Fri, 15 Apr 2022 07:42:48 GMT +Fri, 15 Apr 2022 07:42:48 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/foundation-legacy_v8.2.5..@fluentui/foundation-legacy_v8.2.6) ### Patches @@ -578,7 +578,7 @@ Fri, 15 Apr 2022 07:42:48 GMT ## [8.2.5](https://github.com/microsoft/fluentui/tree/@fluentui/foundation-legacy_v8.2.5) -Tue, 15 Mar 2022 07:45:54 GMT +Tue, 15 Mar 2022 07:45:54 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/foundation-legacy_v8.2.4..@fluentui/foundation-legacy_v8.2.5) ### Patches @@ -588,7 +588,7 @@ Tue, 15 Mar 2022 07:45:54 GMT ## [8.2.4](https://github.com/microsoft/fluentui/tree/@fluentui/foundation-legacy_v8.2.4) -Fri, 11 Mar 2022 07:34:41 GMT +Fri, 11 Mar 2022 07:34:41 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/foundation-legacy_v8.2.3..@fluentui/foundation-legacy_v8.2.4) ### Patches @@ -600,7 +600,7 @@ Fri, 11 Mar 2022 07:34:41 GMT ## [8.2.3](https://github.com/microsoft/fluentui/tree/@fluentui/foundation-legacy_v8.2.3) -Thu, 10 Mar 2022 07:34:50 GMT +Thu, 10 Mar 2022 07:34:50 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/foundation-legacy_v8.2.2..@fluentui/foundation-legacy_v8.2.3) ### Patches @@ -609,7 +609,7 @@ Thu, 10 Mar 2022 07:34:50 GMT ## [8.2.2](https://github.com/microsoft/fluentui/tree/@fluentui/foundation-legacy_v8.2.2) -Wed, 09 Mar 2022 07:37:30 GMT +Wed, 09 Mar 2022 07:37:30 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/foundation-legacy_v8.2.1..@fluentui/foundation-legacy_v8.2.2) ### Patches @@ -619,7 +619,7 @@ Wed, 09 Mar 2022 07:37:30 GMT ## [8.2.1](https://github.com/microsoft/fluentui/tree/@fluentui/foundation-legacy_v8.2.1) -Tue, 08 Mar 2022 23:29:58 GMT +Tue, 08 Mar 2022 23:29:58 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/foundation-legacy_v8.2.0..@fluentui/foundation-legacy_v8.2.1) ### Patches @@ -628,7 +628,7 @@ Tue, 08 Mar 2022 23:29:58 GMT ## [8.2.0](https://github.com/microsoft/fluentui/tree/@fluentui/foundation-legacy_v8.2.0) -Thu, 03 Mar 2022 07:24:26 GMT +Thu, 03 Mar 2022 07:24:26 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/foundation-legacy_v8.1.25..@fluentui/foundation-legacy_v8.2.0) ### Minor changes @@ -642,7 +642,7 @@ Thu, 03 Mar 2022 07:24:26 GMT ## [8.1.25](https://github.com/microsoft/fluentui/tree/@fluentui/foundation-legacy_v8.1.25) -Tue, 01 Mar 2022 07:23:43 GMT +Tue, 01 Mar 2022 07:23:43 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/foundation-legacy_v8.1.24..@fluentui/foundation-legacy_v8.1.25) ### Patches @@ -652,7 +652,7 @@ Tue, 01 Mar 2022 07:23:43 GMT ## [8.1.24](https://github.com/microsoft/fluentui/tree/@fluentui/foundation-legacy_v8.1.24) -Thu, 24 Feb 2022 07:29:50 GMT +Thu, 24 Feb 2022 07:29:50 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/foundation-legacy_v8.1.23..@fluentui/foundation-legacy_v8.1.24) ### Patches @@ -662,7 +662,7 @@ Thu, 24 Feb 2022 07:29:50 GMT ## [8.1.23](https://github.com/microsoft/fluentui/tree/@fluentui/foundation-legacy_v8.1.23) -Thu, 17 Feb 2022 07:28:31 GMT +Thu, 17 Feb 2022 07:28:31 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/foundation-legacy_v8.1.22..@fluentui/foundation-legacy_v8.1.23) ### Patches @@ -672,7 +672,7 @@ Thu, 17 Feb 2022 07:28:31 GMT ## [8.1.22](https://github.com/microsoft/fluentui/tree/@fluentui/foundation-legacy_v8.1.22) -Fri, 11 Feb 2022 07:27:49 GMT +Fri, 11 Feb 2022 07:27:49 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/foundation-legacy_v8.1.21..@fluentui/foundation-legacy_v8.1.22) ### Patches @@ -682,7 +682,7 @@ Fri, 11 Feb 2022 07:27:49 GMT ## [8.1.21](https://github.com/microsoft/fluentui/tree/@fluentui/foundation-legacy_v8.1.21) -Wed, 09 Feb 2022 07:30:50 GMT +Wed, 09 Feb 2022 07:30:50 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/foundation-legacy_v8.1.20..@fluentui/foundation-legacy_v8.1.21) ### Patches @@ -692,7 +692,7 @@ Wed, 09 Feb 2022 07:30:50 GMT ## [8.1.20](https://github.com/microsoft/fluentui/tree/@fluentui/foundation-legacy_v8.1.20) -Thu, 03 Feb 2022 07:29:41 GMT +Thu, 03 Feb 2022 07:29:41 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/foundation-legacy_v8.1.19..@fluentui/foundation-legacy_v8.1.20) ### Patches @@ -704,7 +704,7 @@ Thu, 03 Feb 2022 07:29:41 GMT ## [8.1.19](https://github.com/microsoft/fluentui/tree/@fluentui/foundation-legacy_v8.1.19) -Mon, 03 Jan 2022 23:32:11 GMT +Mon, 03 Jan 2022 23:32:11 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/foundation-legacy_v8.1.18..@fluentui/foundation-legacy_v8.1.19) ### Patches @@ -716,7 +716,7 @@ Mon, 03 Jan 2022 23:32:11 GMT ## [8.1.18](https://github.com/microsoft/fluentui/tree/@fluentui/foundation-legacy_v8.1.18) -Wed, 15 Dec 2021 07:31:29 GMT +Wed, 15 Dec 2021 07:31:29 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/foundation-legacy_v8.1.17..@fluentui/foundation-legacy_v8.1.18) ### Patches @@ -726,7 +726,7 @@ Wed, 15 Dec 2021 07:31:29 GMT ## [8.1.17](https://github.com/microsoft/fluentui/tree/@fluentui/foundation-legacy_v8.1.17) -Thu, 25 Nov 2021 14:54:16 GMT +Thu, 25 Nov 2021 14:54:16 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/foundation-legacy_v8.1.16..@fluentui/foundation-legacy_v8.1.17) ### Patches @@ -739,7 +739,7 @@ Thu, 25 Nov 2021 14:54:16 GMT ## [8.1.16](https://github.com/microsoft/fluentui/tree/@fluentui/foundation-legacy_v8.1.16) -Wed, 10 Nov 2021 07:31:59 GMT +Wed, 10 Nov 2021 07:31:59 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/foundation-legacy_v8.1.15..@fluentui/foundation-legacy_v8.1.16) ### Patches @@ -751,7 +751,7 @@ Wed, 10 Nov 2021 07:31:59 GMT ## [8.1.15](https://github.com/microsoft/fluentui/tree/@fluentui/foundation-legacy_v8.1.15) -Tue, 02 Nov 2021 07:37:02 GMT +Tue, 02 Nov 2021 07:37:02 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/foundation-legacy_v8.1.14..@fluentui/foundation-legacy_v8.1.15) ### Patches @@ -761,7 +761,7 @@ Tue, 02 Nov 2021 07:37:02 GMT ## [8.1.14](https://github.com/microsoft/fluentui/tree/@fluentui/foundation-legacy_v8.1.14) -Mon, 01 Nov 2021 07:32:08 GMT +Mon, 01 Nov 2021 07:32:08 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/foundation-legacy_v8.1.13..@fluentui/foundation-legacy_v8.1.14) ### Patches @@ -770,7 +770,7 @@ Mon, 01 Nov 2021 07:32:08 GMT ## [8.1.13](https://github.com/microsoft/fluentui/tree/@fluentui/foundation-legacy_v8.1.13) -Tue, 05 Oct 2021 07:37:17 GMT +Tue, 05 Oct 2021 07:37:17 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/foundation-legacy_v8.1.12..@fluentui/foundation-legacy_v8.1.13) ### Patches @@ -780,7 +780,7 @@ Tue, 05 Oct 2021 07:37:17 GMT ## [8.1.12](https://github.com/microsoft/fluentui/tree/@fluentui/foundation-legacy_v8.1.12) -Tue, 28 Sep 2021 22:17:07 GMT +Tue, 28 Sep 2021 22:17:07 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/foundation-legacy_v8.1.11..@fluentui/foundation-legacy_v8.1.12) ### Patches @@ -792,7 +792,7 @@ Tue, 28 Sep 2021 22:17:07 GMT ## [8.1.11](https://github.com/microsoft/fluentui/tree/@fluentui/foundation-legacy_v8.1.11) -Thu, 02 Sep 2021 07:36:46 GMT +Thu, 02 Sep 2021 07:36:46 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/foundation-legacy_v8.1.10..@fluentui/foundation-legacy_v8.1.11) ### Patches @@ -801,7 +801,7 @@ Thu, 02 Sep 2021 07:36:46 GMT ## [8.1.10](https://github.com/microsoft/fluentui/tree/@fluentui/foundation-legacy_v8.1.10) -Wed, 25 Aug 2021 07:35:19 GMT +Wed, 25 Aug 2021 07:35:19 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/foundation-legacy_v8.1.9..@fluentui/foundation-legacy_v8.1.10) ### Patches @@ -810,7 +810,7 @@ Wed, 25 Aug 2021 07:35:19 GMT ## [8.1.9](https://github.com/microsoft/fluentui/tree/@fluentui/foundation-legacy_v8.1.9) -Thu, 19 Aug 2021 07:41:35 GMT +Thu, 19 Aug 2021 07:41:35 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/foundation-legacy_v8.1.8..@fluentui/foundation-legacy_v8.1.9) ### Patches @@ -819,7 +819,7 @@ Thu, 19 Aug 2021 07:41:35 GMT ## [8.1.8](https://github.com/microsoft/fluentui/tree/@fluentui/foundation-legacy_v8.1.8) -Tue, 03 Aug 2021 07:39:30 GMT +Tue, 03 Aug 2021 07:39:30 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/foundation-legacy_v8.1.7..@fluentui/foundation-legacy_v8.1.8) ### Patches @@ -828,7 +828,7 @@ Tue, 03 Aug 2021 07:39:30 GMT ## [8.1.7](https://github.com/microsoft/fluentui/tree/@fluentui/foundation-legacy_v8.1.7) -Thu, 29 Jul 2021 07:35:37 GMT +Thu, 29 Jul 2021 07:35:37 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/foundation-legacy_v8.1.6..@fluentui/foundation-legacy_v8.1.7) ### Patches @@ -837,7 +837,7 @@ Thu, 29 Jul 2021 07:35:37 GMT ## [8.1.6](https://github.com/microsoft/fluentui/tree/@fluentui/foundation-legacy_v8.1.6) -Tue, 13 Jul 2021 07:35:36 GMT +Tue, 13 Jul 2021 07:35:36 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/foundation-legacy_v8.1.5..@fluentui/foundation-legacy_v8.1.6) ### Patches @@ -846,7 +846,7 @@ Tue, 13 Jul 2021 07:35:36 GMT ## [8.1.5](https://github.com/microsoft/fluentui/tree/@fluentui/foundation-legacy_v8.1.5) -Fri, 09 Jul 2021 07:39:31 GMT +Fri, 09 Jul 2021 07:39:31 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/foundation-legacy_v8.1.4..@fluentui/foundation-legacy_v8.1.5) ### Patches @@ -855,7 +855,7 @@ Fri, 09 Jul 2021 07:39:31 GMT ## [8.1.4](https://github.com/microsoft/fluentui/tree/@fluentui/foundation-legacy_v8.1.4) -Mon, 28 Jun 2021 07:35:16 GMT +Mon, 28 Jun 2021 07:35:16 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/foundation-legacy_v8.1.3..@fluentui/foundation-legacy_v8.1.4) ### Patches @@ -864,7 +864,7 @@ Mon, 28 Jun 2021 07:35:16 GMT ## [8.1.3](https://github.com/microsoft/fluentui/tree/@fluentui/foundation-legacy_v8.1.3) -Tue, 15 Jun 2021 07:40:20 GMT +Tue, 15 Jun 2021 07:40:20 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/foundation-legacy_v8.1.2..@fluentui/foundation-legacy_v8.1.3) ### Patches @@ -873,7 +873,7 @@ Tue, 15 Jun 2021 07:40:20 GMT ## [8.1.2](https://github.com/microsoft/fluentui/tree/@fluentui/foundation-legacy_v8.1.2) -Mon, 07 Jun 2021 07:38:15 GMT +Mon, 07 Jun 2021 07:38:15 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/foundation-legacy_v8.1.1..@fluentui/foundation-legacy_v8.1.2) ### Patches @@ -882,7 +882,7 @@ Mon, 07 Jun 2021 07:38:15 GMT ## [8.1.1](https://github.com/microsoft/fluentui/tree/@fluentui/foundation-legacy_v8.1.1) -Thu, 20 May 2021 07:41:54 GMT +Thu, 20 May 2021 07:41:54 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/foundation-legacy_v8.1.0..@fluentui/foundation-legacy_v8.1.1) ### Patches @@ -891,7 +891,7 @@ Thu, 20 May 2021 07:41:54 GMT ## [8.1.0](https://github.com/microsoft/fluentui/tree/@fluentui/foundation-legacy_v8.1.0) -Fri, 30 Apr 2021 07:42:23 GMT +Fri, 30 Apr 2021 07:42:23 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/foundation-legacy_v8.0.5..@fluentui/foundation-legacy_v8.1.0) ### Minor changes @@ -910,7 +910,7 @@ Fri, 30 Apr 2021 07:42:23 GMT ## [8.0.5](https://github.com/microsoft/fluentui/tree/@fluentui/foundation-legacy_v8.0.5) -Fri, 23 Apr 2021 07:37:10 GMT +Fri, 23 Apr 2021 07:37:10 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/foundation-legacy_v8.0.4..@fluentui/foundation-legacy_v8.0.5) ### Patches @@ -919,7 +919,7 @@ Fri, 23 Apr 2021 07:37:10 GMT ## [8.0.4](https://github.com/microsoft/fluentui/tree/@fluentui/foundation-legacy_v8.0.4) -Tue, 13 Apr 2021 14:55:56 GMT +Tue, 13 Apr 2021 14:55:56 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/foundation-legacy_v8.0.3..@fluentui/foundation-legacy_v8.0.4) ### Patches @@ -928,7 +928,7 @@ Tue, 13 Apr 2021 14:55:56 GMT ## [8.0.3](https://github.com/microsoft/fluentui/tree/@fluentui/foundation-legacy_v8.0.3) -Wed, 31 Mar 2021 00:53:43 GMT +Wed, 31 Mar 2021 00:53:43 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/foundation-legacy_v8.0.2..@fluentui/foundation-legacy_v8.0.3) ### Patches @@ -937,7 +937,7 @@ Wed, 31 Mar 2021 00:53:43 GMT ## [8.0.2](https://github.com/microsoft/fluentui/tree/@fluentui/foundation-legacy_v8.0.2) -Wed, 03 Mar 2021 00:10:09 GMT +Wed, 03 Mar 2021 00:10:09 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/foundation-legacy_v8.0.1..@fluentui/foundation-legacy_v8.0.2) ### Patches @@ -946,7 +946,7 @@ Wed, 03 Mar 2021 00:10:09 GMT ## [8.0.1](https://github.com/microsoft/fluentui/tree/@fluentui/foundation-legacy_v8.0.1) -Fri, 26 Feb 2021 01:16:27 GMT +Fri, 26 Feb 2021 01:16:27 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/foundation-legacy_v8.0.0-beta.19..@fluentui/foundation-legacy_v8.0.1) ### Patches @@ -955,7 +955,7 @@ Fri, 26 Feb 2021 01:16:27 GMT ## [8.0.0-beta.19](https://github.com/microsoft/fluentui/tree/@fluentui/foundation-legacy_v8.0.0-beta.19) -Mon, 22 Feb 2021 12:26:22 GMT +Mon, 22 Feb 2021 12:26:22 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/foundation-legacy_v8.0.0-beta.18..@fluentui/foundation-legacy_v8.0.0-beta.19) ### Changes @@ -964,7 +964,7 @@ Mon, 22 Feb 2021 12:26:22 GMT ## [8.0.0-beta.18](https://github.com/microsoft/fluentui/tree/@fluentui/foundation-legacy_v8.0.0-beta.18) -Thu, 18 Feb 2021 19:38:50 GMT +Thu, 18 Feb 2021 19:38:50 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/foundation-legacy_v8.0.0-beta.17..@fluentui/foundation-legacy_v8.0.0-beta.18) ### Changes @@ -973,7 +973,7 @@ Thu, 18 Feb 2021 19:38:50 GMT ## [8.0.0-beta.17](https://github.com/microsoft/fluentui/tree/@fluentui/foundation-legacy_v8.0.0-beta.17) -Thu, 18 Feb 2021 12:27:34 GMT +Thu, 18 Feb 2021 12:27:34 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/foundation-legacy_v8.0.0-beta.16..@fluentui/foundation-legacy_v8.0.0-beta.17) ### Changes @@ -982,7 +982,7 @@ Thu, 18 Feb 2021 12:27:34 GMT ## [8.0.0-beta.16](https://github.com/microsoft/fluentui/tree/@fluentui/foundation-legacy_v8.0.0-beta.16) -Mon, 15 Feb 2021 12:22:00 GMT +Mon, 15 Feb 2021 12:22:00 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/foundation-legacy_v8.0.0-beta.15..@fluentui/foundation-legacy_v8.0.0-beta.16) ### Changes @@ -991,7 +991,7 @@ Mon, 15 Feb 2021 12:22:00 GMT ## [8.0.0-beta.15](https://github.com/microsoft/fluentui/tree/@fluentui/foundation-legacy_v8.0.0-beta.15) -Fri, 12 Feb 2021 12:26:20 GMT +Fri, 12 Feb 2021 12:26:20 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/foundation-legacy_v8.0.0-beta.14..@fluentui/foundation-legacy_v8.0.0-beta.15) ### Changes @@ -1000,7 +1000,7 @@ Fri, 12 Feb 2021 12:26:20 GMT ## [8.0.0-beta.14](https://github.com/microsoft/fluentui/tree/@fluentui/foundation-legacy_v8.0.0-beta.14) -Thu, 11 Feb 2021 00:58:10 GMT +Thu, 11 Feb 2021 00:58:10 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/foundation-legacy_v8.0.0-beta.13..@fluentui/foundation-legacy_v8.0.0-beta.14) ### Changes @@ -1009,7 +1009,7 @@ Thu, 11 Feb 2021 00:58:10 GMT ## [8.0.0-beta.12](https://github.com/microsoft/fluentui/tree/@fluentui/foundation-legacy_v8.0.0-beta.12) -Thu, 21 Jan 2021 12:36:12 GMT +Thu, 21 Jan 2021 12:36:12 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/foundation-legacy_v8.0.0-beta.4..@fluentui/foundation-legacy_v8.0.0-beta.12) ### Changes @@ -1018,7 +1018,7 @@ Thu, 21 Jan 2021 12:36:12 GMT ## [8.0.0-beta.4](https://github.com/microsoft/fluentui/tree/@fluentui/foundation-legacy_v8.0.0-beta.4) -Mon, 02 Nov 2020 12:32:47 GMT +Mon, 02 Nov 2020 12:32:47 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/foundation-legacy_v8.0.0-beta.0..@fluentui/foundation-legacy_v8.0.0-beta.4) ### Changes @@ -1027,7 +1027,7 @@ Mon, 02 Nov 2020 12:32:47 GMT ## [8.0.0-beta.0](https://github.com/microsoft/fluentui/tree/@fluentui/foundation-legacy_v8.0.0-beta.0) -Fri, 23 Oct 2020 03:26:15 GMT +Fri, 23 Oct 2020 03:26:15 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@uifabric/foundation_v7.9.8..@fluentui/foundation-legacy_v8.0.0-beta.0) ### Changes @@ -1041,7 +1041,7 @@ Fri, 23 Oct 2020 03:26:15 GMT ## [7.9.8](https://github.com/microsoft/fluentui/tree/@uifabric/foundation_v7.9.8) -Fri, 25 Sep 2020 12:25:17 GMT +Fri, 25 Sep 2020 12:25:17 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@uifabric/foundation_v7.9.2..@uifabric/foundation_v7.9.8) ### Patches @@ -1050,7 +1050,7 @@ Fri, 25 Sep 2020 12:25:17 GMT ## [7.8.1](https://github.com/microsoft/fluentui/tree/@uifabric/foundation_v7.8.1) -Thu, 20 Aug 2020 12:37:22 GMT +Thu, 20 Aug 2020 12:37:22 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@uifabric/foundation_v7.7.38..@uifabric/foundation_v7.8.1) ### Patches @@ -1059,7 +1059,7 @@ Thu, 20 Aug 2020 12:37:22 GMT ## [7.7.38](https://github.com/microsoft/fluentui/tree/@uifabric/foundation_v7.7.38) -Tue, 21 Jul 2020 12:43:08 GMT +Tue, 21 Jul 2020 12:43:08 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@uifabric/foundation_v7.7.35..@uifabric/foundation_v7.7.38) ### Patches @@ -1068,7 +1068,7 @@ Tue, 21 Jul 2020 12:43:08 GMT ## [7.7.10](https://github.com/microsoft/fluentui/tree/@uifabric/foundation_v7.7.10) -Thu, 07 May 2020 01:06:55 GMT +Thu, 07 May 2020 01:06:55 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@uifabric/foundation_v7.7.0..@uifabric/foundation_v7.7.10) ### Patches @@ -1077,7 +1077,7 @@ Thu, 07 May 2020 01:06:55 GMT ## [7.7.0](https://github.com/microsoft/fluentui/tree/@uifabric/foundation_v7.7.0) -Thu, 16 Apr 2020 04:01:45 GMT +Thu, 16 Apr 2020 04:01:45 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@uifabric/foundation_v7.5.25..@uifabric/foundation_v7.7.0) ### Minor changes diff --git a/packages/jest-serializer-merge-styles/CHANGELOG.md b/packages/jest-serializer-merge-styles/CHANGELOG.md index 7b0ede24004c81..223ac8b1a3ebc9 100644 --- a/packages/jest-serializer-merge-styles/CHANGELOG.md +++ b/packages/jest-serializer-merge-styles/CHANGELOG.md @@ -6,7 +6,7 @@ This log was last generated on Wed, 24 Apr 2024 07:27:48 GMT and should not be m ## [8.0.37](https://github.com/microsoft/fluentui/tree/@fluentui/jest-serializer-merge-styles_v8.0.37) -Wed, 24 Apr 2024 07:27:48 GMT +Wed, 24 Apr 2024 07:27:48 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/jest-serializer-merge-styles_v8.0.36..@fluentui/jest-serializer-merge-styles_v8.0.37) ### Patches @@ -15,7 +15,7 @@ Wed, 24 Apr 2024 07:27:48 GMT ## [8.0.36](https://github.com/microsoft/fluentui/tree/@fluentui/jest-serializer-merge-styles_v8.0.36) -Mon, 22 Apr 2024 07:28:25 GMT +Mon, 22 Apr 2024 07:28:25 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/jest-serializer-merge-styles_v8.0.35..@fluentui/jest-serializer-merge-styles_v8.0.36) ### Patches @@ -25,7 +25,7 @@ Mon, 22 Apr 2024 07:28:25 GMT ## [8.0.35](https://github.com/microsoft/fluentui/tree/@fluentui/jest-serializer-merge-styles_v8.0.35) -Fri, 12 Apr 2024 07:29:11 GMT +Fri, 12 Apr 2024 07:29:11 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/jest-serializer-merge-styles_v8.0.34..@fluentui/jest-serializer-merge-styles_v8.0.35) ### Patches @@ -34,7 +34,7 @@ Fri, 12 Apr 2024 07:29:11 GMT ## [8.0.34](https://github.com/microsoft/fluentui/tree/@fluentui/jest-serializer-merge-styles_v8.0.34) -Wed, 03 Apr 2024 07:29:31 GMT +Wed, 03 Apr 2024 07:29:31 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/jest-serializer-merge-styles_v8.0.33..@fluentui/jest-serializer-merge-styles_v8.0.34) ### Patches @@ -43,7 +43,7 @@ Wed, 03 Apr 2024 07:29:31 GMT ## [8.0.33](https://github.com/microsoft/fluentui/tree/@fluentui/jest-serializer-merge-styles_v8.0.33) -Wed, 13 Mar 2024 07:30:28 GMT +Wed, 13 Mar 2024 07:30:28 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/jest-serializer-merge-styles_v8.0.32..@fluentui/jest-serializer-merge-styles_v8.0.33) ### Patches @@ -52,7 +52,7 @@ Wed, 13 Mar 2024 07:30:28 GMT ## [8.0.32](https://github.com/microsoft/fluentui/tree/@fluentui/jest-serializer-merge-styles_v8.0.32) -Wed, 10 Jan 2024 07:28:50 GMT +Wed, 10 Jan 2024 07:28:50 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/jest-serializer-merge-styles_v8.0.31..@fluentui/jest-serializer-merge-styles_v8.0.32) ### Patches @@ -61,7 +61,7 @@ Wed, 10 Jan 2024 07:28:50 GMT ## [8.0.31](https://github.com/microsoft/fluentui/tree/@fluentui/jest-serializer-merge-styles_v8.0.31) -Thu, 14 Dec 2023 07:30:10 GMT +Thu, 14 Dec 2023 07:30:10 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/jest-serializer-merge-styles_v8.0.30..@fluentui/jest-serializer-merge-styles_v8.0.31) ### Patches @@ -70,7 +70,7 @@ Thu, 14 Dec 2023 07:30:10 GMT ## [8.0.30](https://github.com/microsoft/fluentui/tree/@fluentui/jest-serializer-merge-styles_v8.0.30) -Sat, 28 Oct 2023 00:29:16 GMT +Sat, 28 Oct 2023 00:29:16 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/jest-serializer-merge-styles_v8.0.29..@fluentui/jest-serializer-merge-styles_v8.0.30) ### Patches @@ -79,7 +79,7 @@ Sat, 28 Oct 2023 00:29:16 GMT ## [8.0.29](https://github.com/microsoft/fluentui/tree/@fluentui/jest-serializer-merge-styles_v8.0.29) -Wed, 31 May 2023 07:38:40 GMT +Wed, 31 May 2023 07:38:40 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/jest-serializer-merge-styles_v8.0.28..@fluentui/jest-serializer-merge-styles_v8.0.29) ### Patches @@ -88,7 +88,7 @@ Wed, 31 May 2023 07:38:40 GMT ## [8.0.28](https://github.com/microsoft/fluentui/tree/@fluentui/jest-serializer-merge-styles_v8.0.28) -Tue, 30 May 2023 07:36:09 GMT +Tue, 30 May 2023 07:36:09 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/jest-serializer-merge-styles_v8.0.27..@fluentui/jest-serializer-merge-styles_v8.0.28) ### Patches @@ -97,7 +97,7 @@ Tue, 30 May 2023 07:36:09 GMT ## [8.0.27](https://github.com/microsoft/fluentui/tree/@fluentui/jest-serializer-merge-styles_v8.0.27) -Fri, 05 May 2023 18:14:04 GMT +Fri, 05 May 2023 18:14:04 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/jest-serializer-merge-styles_v8.0.26..@fluentui/jest-serializer-merge-styles_v8.0.27) ### Patches @@ -107,7 +107,7 @@ Fri, 05 May 2023 18:14:04 GMT ## [8.0.26](https://github.com/microsoft/fluentui/tree/@fluentui/jest-serializer-merge-styles_v8.0.26) -Tue, 02 May 2023 00:58:19 GMT +Tue, 02 May 2023 00:58:19 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/jest-serializer-merge-styles_v8.0.25..@fluentui/jest-serializer-merge-styles_v8.0.26) ### Patches @@ -116,7 +116,7 @@ Tue, 02 May 2023 00:58:19 GMT ## [8.0.25](https://github.com/microsoft/fluentui/tree/@fluentui/jest-serializer-merge-styles_v8.0.25) -Mon, 01 May 2023 07:39:54 GMT +Mon, 01 May 2023 07:39:54 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/jest-serializer-merge-styles_v8.0.24..@fluentui/jest-serializer-merge-styles_v8.0.25) ### Patches @@ -125,7 +125,7 @@ Mon, 01 May 2023 07:39:54 GMT ## [8.0.24](https://github.com/microsoft/fluentui/tree/@fluentui/jest-serializer-merge-styles_v8.0.24) -Fri, 17 Mar 2023 08:15:56 GMT +Fri, 17 Mar 2023 08:15:56 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/jest-serializer-merge-styles_v8.0.23..@fluentui/jest-serializer-merge-styles_v8.0.24) ### Patches @@ -134,7 +134,7 @@ Fri, 17 Mar 2023 08:15:56 GMT ## [8.0.23](https://github.com/microsoft/fluentui/tree/@fluentui/jest-serializer-merge-styles_v8.0.23) -Fri, 03 Feb 2023 07:50:06 GMT +Fri, 03 Feb 2023 07:50:06 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/jest-serializer-merge-styles_v8.0.22..@fluentui/jest-serializer-merge-styles_v8.0.23) ### Patches @@ -143,7 +143,7 @@ Fri, 03 Feb 2023 07:50:06 GMT ## [8.0.22](https://github.com/microsoft/fluentui/tree/@fluentui/jest-serializer-merge-styles_v8.0.22) -Tue, 10 Jan 2023 07:50:15 GMT +Tue, 10 Jan 2023 07:50:15 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/jest-serializer-merge-styles_v8.0.21..@fluentui/jest-serializer-merge-styles_v8.0.22) ### Patches @@ -152,7 +152,7 @@ Tue, 10 Jan 2023 07:50:15 GMT ## [8.0.21](https://github.com/microsoft/fluentui/tree/@fluentui/jest-serializer-merge-styles_v8.0.21) -Wed, 09 Nov 2022 07:48:12 GMT +Wed, 09 Nov 2022 07:48:12 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/jest-serializer-merge-styles_v8.0.20..@fluentui/jest-serializer-merge-styles_v8.0.21) ### Patches @@ -161,7 +161,7 @@ Wed, 09 Nov 2022 07:48:12 GMT ## [8.0.20](https://github.com/microsoft/fluentui/tree/@fluentui/jest-serializer-merge-styles_v8.0.20) -Mon, 08 Aug 2022 07:39:33 GMT +Mon, 08 Aug 2022 07:39:33 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/jest-serializer-merge-styles_v8.0.19..@fluentui/jest-serializer-merge-styles_v8.0.20) ### Patches @@ -170,7 +170,7 @@ Mon, 08 Aug 2022 07:39:33 GMT ## [8.0.19](https://github.com/microsoft/fluentui/tree/@fluentui/jest-serializer-merge-styles_v8.0.19) -Fri, 13 May 2022 07:45:35 GMT +Fri, 13 May 2022 07:45:35 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/jest-serializer-merge-styles_v8.0.18..@fluentui/jest-serializer-merge-styles_v8.0.19) ### Patches @@ -179,7 +179,7 @@ Fri, 13 May 2022 07:45:35 GMT ## [8.0.18](https://github.com/microsoft/fluentui/tree/@fluentui/jest-serializer-merge-styles_v8.0.18) -Fri, 15 Apr 2022 07:42:48 GMT +Fri, 15 Apr 2022 07:42:48 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/jest-serializer-merge-styles_v8.0.17..@fluentui/jest-serializer-merge-styles_v8.0.18) ### Patches @@ -188,7 +188,7 @@ Fri, 15 Apr 2022 07:42:48 GMT ## [8.0.17](https://github.com/microsoft/fluentui/tree/@fluentui/jest-serializer-merge-styles_v8.0.17) -Fri, 11 Mar 2022 07:34:41 GMT +Fri, 11 Mar 2022 07:34:41 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/jest-serializer-merge-styles_v8.0.16..@fluentui/jest-serializer-merge-styles_v8.0.17) ### Patches @@ -197,7 +197,7 @@ Fri, 11 Mar 2022 07:34:41 GMT ## [8.0.16](https://github.com/microsoft/fluentui/tree/@fluentui/jest-serializer-merge-styles_v8.0.16) -Thu, 03 Mar 2022 07:24:29 GMT +Thu, 03 Mar 2022 07:24:29 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/jest-serializer-merge-styles_v8.0.15..@fluentui/jest-serializer-merge-styles_v8.0.16) ### Patches @@ -206,7 +206,7 @@ Thu, 03 Mar 2022 07:24:29 GMT ## [8.0.15](https://github.com/microsoft/fluentui/tree/@fluentui/jest-serializer-merge-styles_v8.0.15) -Thu, 03 Feb 2022 07:29:41 GMT +Thu, 03 Feb 2022 07:29:41 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/jest-serializer-merge-styles_v8.0.14..@fluentui/jest-serializer-merge-styles_v8.0.15) ### Patches @@ -215,7 +215,7 @@ Thu, 03 Feb 2022 07:29:41 GMT ## [8.0.14](https://github.com/microsoft/fluentui/tree/@fluentui/jest-serializer-merge-styles_v8.0.14) -Mon, 03 Jan 2022 23:32:11 GMT +Mon, 03 Jan 2022 23:32:11 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/jest-serializer-merge-styles_v8.0.13..@fluentui/jest-serializer-merge-styles_v8.0.14) ### Patches @@ -224,7 +224,7 @@ Mon, 03 Jan 2022 23:32:11 GMT ## [8.0.13](https://github.com/microsoft/fluentui/tree/@fluentui/jest-serializer-merge-styles_v8.0.13) -Thu, 25 Nov 2021 14:54:16 GMT +Thu, 25 Nov 2021 14:54:16 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/jest-serializer-merge-styles_v8.0.12..@fluentui/jest-serializer-merge-styles_v8.0.13) ### Patches @@ -233,7 +233,7 @@ Thu, 25 Nov 2021 14:54:16 GMT ## [8.0.12](https://github.com/microsoft/fluentui/tree/@fluentui/jest-serializer-merge-styles_v8.0.12) -Wed, 10 Nov 2021 07:31:59 GMT +Wed, 10 Nov 2021 07:31:59 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/jest-serializer-merge-styles_v8.0.11..@fluentui/jest-serializer-merge-styles_v8.0.12) ### Patches @@ -242,7 +242,7 @@ Wed, 10 Nov 2021 07:31:59 GMT ## [8.0.11](https://github.com/microsoft/fluentui/tree/@fluentui/jest-serializer-merge-styles_v8.0.11) -Tue, 28 Sep 2021 22:17:07 GMT +Tue, 28 Sep 2021 22:17:07 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/jest-serializer-merge-styles_v8.0.10..@fluentui/jest-serializer-merge-styles_v8.0.11) ### Patches @@ -251,7 +251,7 @@ Tue, 28 Sep 2021 22:17:07 GMT ## [8.0.10](https://github.com/microsoft/fluentui/tree/@fluentui/jest-serializer-merge-styles_v8.0.10) -Wed, 25 Aug 2021 07:35:19 GMT +Wed, 25 Aug 2021 07:35:19 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/jest-serializer-merge-styles_v8.0.9..@fluentui/jest-serializer-merge-styles_v8.0.10) ### Patches @@ -260,7 +260,7 @@ Wed, 25 Aug 2021 07:35:19 GMT ## [8.0.9](https://github.com/microsoft/fluentui/tree/@fluentui/jest-serializer-merge-styles_v8.0.9) -Tue, 03 Aug 2021 07:39:30 GMT +Tue, 03 Aug 2021 07:39:30 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/jest-serializer-merge-styles_v8.0.8..@fluentui/jest-serializer-merge-styles_v8.0.9) ### Patches @@ -269,7 +269,7 @@ Tue, 03 Aug 2021 07:39:30 GMT ## [8.0.8](https://github.com/microsoft/fluentui/tree/@fluentui/jest-serializer-merge-styles_v8.0.8) -Fri, 09 Jul 2021 07:39:31 GMT +Fri, 09 Jul 2021 07:39:31 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/jest-serializer-merge-styles_v8.0.7..@fluentui/jest-serializer-merge-styles_v8.0.8) ### Patches @@ -278,7 +278,7 @@ Fri, 09 Jul 2021 07:39:31 GMT ## [8.0.7](https://github.com/microsoft/fluentui/tree/@fluentui/jest-serializer-merge-styles_v8.0.7) -Mon, 07 Jun 2021 07:38:15 GMT +Mon, 07 Jun 2021 07:38:15 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/jest-serializer-merge-styles_v8.0.6..@fluentui/jest-serializer-merge-styles_v8.0.7) ### Patches @@ -287,7 +287,7 @@ Mon, 07 Jun 2021 07:38:15 GMT ## [8.0.6](https://github.com/microsoft/fluentui/tree/@fluentui/jest-serializer-merge-styles_v8.0.6) -Thu, 20 May 2021 07:41:54 GMT +Thu, 20 May 2021 07:41:54 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/jest-serializer-merge-styles_v8.0.5..@fluentui/jest-serializer-merge-styles_v8.0.6) ### Patches @@ -296,7 +296,7 @@ Thu, 20 May 2021 07:41:54 GMT ## [8.0.5](https://github.com/microsoft/fluentui/tree/@fluentui/jest-serializer-merge-styles_v8.0.5) -Fri, 30 Apr 2021 07:42:23 GMT +Fri, 30 Apr 2021 07:42:23 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/jest-serializer-merge-styles_v8.0.4..@fluentui/jest-serializer-merge-styles_v8.0.5) ### Patches @@ -305,7 +305,7 @@ Fri, 30 Apr 2021 07:42:23 GMT ## [8.0.4](https://github.com/microsoft/fluentui/tree/@fluentui/jest-serializer-merge-styles_v8.0.4) -Fri, 23 Apr 2021 07:37:10 GMT +Fri, 23 Apr 2021 07:37:10 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/jest-serializer-merge-styles_v8.0.3..@fluentui/jest-serializer-merge-styles_v8.0.4) ### Patches @@ -314,7 +314,7 @@ Fri, 23 Apr 2021 07:37:10 GMT ## [8.0.3](https://github.com/microsoft/fluentui/tree/@fluentui/jest-serializer-merge-styles_v8.0.3) -Wed, 31 Mar 2021 00:53:43 GMT +Wed, 31 Mar 2021 00:53:43 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/jest-serializer-merge-styles_v8.0.2..@fluentui/jest-serializer-merge-styles_v8.0.3) ### Patches @@ -323,7 +323,7 @@ Wed, 31 Mar 2021 00:53:43 GMT ## [8.0.2](https://github.com/microsoft/fluentui/tree/@fluentui/jest-serializer-merge-styles_v8.0.2) -Wed, 03 Mar 2021 00:10:09 GMT +Wed, 03 Mar 2021 00:10:09 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/jest-serializer-merge-styles_v8.0.1..@fluentui/jest-serializer-merge-styles_v8.0.2) ### Patches @@ -332,7 +332,7 @@ Wed, 03 Mar 2021 00:10:09 GMT ## [8.0.1](https://github.com/microsoft/fluentui/tree/@fluentui/jest-serializer-merge-styles_v8.0.1) -Fri, 26 Feb 2021 01:16:27 GMT +Fri, 26 Feb 2021 01:16:27 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/jest-serializer-merge-styles_v8.0.0-beta.7..@fluentui/jest-serializer-merge-styles_v8.0.1) ### Patches @@ -341,7 +341,7 @@ Fri, 26 Feb 2021 01:16:27 GMT ## [8.0.0-beta.7](https://github.com/microsoft/fluentui/tree/@fluentui/jest-serializer-merge-styles_v8.0.0-beta.7) -Mon, 22 Feb 2021 12:26:22 GMT +Mon, 22 Feb 2021 12:26:22 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/jest-serializer-merge-styles_v8.0.0-beta.6..@fluentui/jest-serializer-merge-styles_v8.0.0-beta.7) ### Changes @@ -350,7 +350,7 @@ Mon, 22 Feb 2021 12:26:22 GMT ## [8.0.0-beta.6](https://github.com/microsoft/fluentui/tree/@fluentui/jest-serializer-merge-styles_v8.0.0-beta.6) -Thu, 18 Feb 2021 12:27:34 GMT +Thu, 18 Feb 2021 12:27:34 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/jest-serializer-merge-styles_v8.0.0-beta.5..@fluentui/jest-serializer-merge-styles_v8.0.0-beta.6) ### Changes @@ -359,7 +359,7 @@ Thu, 18 Feb 2021 12:27:34 GMT ## [8.0.0-beta.4](https://github.com/microsoft/fluentui/tree/@fluentui/jest-serializer-merge-styles_v8.0.0-beta.4) -Thu, 21 Jan 2021 12:36:12 GMT +Thu, 21 Jan 2021 12:36:12 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/jest-serializer-merge-styles_v8.0.0-beta.0..@fluentui/jest-serializer-merge-styles_v8.0.0-beta.4) ### Changes @@ -368,7 +368,7 @@ Thu, 21 Jan 2021 12:36:12 GMT ## [8.0.0-beta.0](https://github.com/microsoft/fluentui/tree/@fluentui/jest-serializer-merge-styles_v8.0.0-beta.0) -Fri, 23 Oct 2020 03:26:15 GMT +Fri, 23 Oct 2020 03:26:15 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@uifabric/jest-serializer-merge-styles_v7.1.0..@fluentui/jest-serializer-merge-styles_v8.0.0-beta.0) ### Changes @@ -379,7 +379,7 @@ Fri, 23 Oct 2020 03:26:15 GMT ## [7.1.0](https://github.com/microsoft/fluentui/tree/@uifabric/jest-serializer-merge-styles_v7.1.0) -Tue, 25 Aug 2020 12:36:19 GMT +Tue, 25 Aug 2020 12:36:19 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@uifabric/jest-serializer-merge-styles_v7.0.30..@uifabric/jest-serializer-merge-styles_v7.1.0) ### Minor changes @@ -388,7 +388,7 @@ Tue, 25 Aug 2020 12:36:19 GMT ## [7.0.21](https://github.com/microsoft/fluentui/tree/@uifabric/jest-serializer-merge-styles_v7.0.21) -Thu, 07 May 2020 01:06:55 GMT +Thu, 07 May 2020 01:06:55 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@uifabric/jest-serializer-merge-styles_v7.0.16..@uifabric/jest-serializer-merge-styles_v7.0.21) ### Patches diff --git a/packages/merge-styles/CHANGELOG.md b/packages/merge-styles/CHANGELOG.md index 5f8d3193e73261..872a615d88f723 100644 --- a/packages/merge-styles/CHANGELOG.md +++ b/packages/merge-styles/CHANGELOG.md @@ -6,7 +6,7 @@ This log was last generated on Wed, 24 Apr 2024 07:27:48 GMT and should not be m ## [8.6.4](https://github.com/microsoft/fluentui/tree/@fluentui/merge-styles_v8.6.4) -Wed, 24 Apr 2024 07:27:48 GMT +Wed, 24 Apr 2024 07:27:48 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/merge-styles_v8.6.3..@fluentui/merge-styles_v8.6.4) ### Patches @@ -15,7 +15,7 @@ Wed, 24 Apr 2024 07:27:48 GMT ## [8.6.3](https://github.com/microsoft/fluentui/tree/@fluentui/merge-styles_v8.6.3) -Mon, 22 Apr 2024 07:28:25 GMT +Mon, 22 Apr 2024 07:28:25 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/merge-styles_v8.6.2..@fluentui/merge-styles_v8.6.3) ### Patches @@ -24,7 +24,7 @@ Mon, 22 Apr 2024 07:28:25 GMT ## [8.6.2](https://github.com/microsoft/fluentui/tree/@fluentui/merge-styles_v8.6.2) -Fri, 12 Apr 2024 07:29:11 GMT +Fri, 12 Apr 2024 07:29:11 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/merge-styles_v8.6.1..@fluentui/merge-styles_v8.6.2) ### Patches @@ -33,7 +33,7 @@ Fri, 12 Apr 2024 07:29:11 GMT ## [8.6.1](https://github.com/microsoft/fluentui/tree/@fluentui/merge-styles_v8.6.1) -Wed, 03 Apr 2024 07:29:31 GMT +Wed, 03 Apr 2024 07:29:31 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/merge-styles_v8.6.0..@fluentui/merge-styles_v8.6.1) ### Patches @@ -42,7 +42,7 @@ Wed, 03 Apr 2024 07:29:31 GMT ## [8.6.0](https://github.com/microsoft/fluentui/tree/@fluentui/merge-styles_v8.6.0) -Wed, 13 Mar 2024 07:30:28 GMT +Wed, 13 Mar 2024 07:30:28 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/merge-styles_v8.5.15..@fluentui/merge-styles_v8.6.0) ### Minor changes @@ -51,7 +51,7 @@ Wed, 13 Mar 2024 07:30:28 GMT ## [8.5.15](https://github.com/microsoft/fluentui/tree/@fluentui/merge-styles_v8.5.15) -Wed, 10 Jan 2024 07:28:48 GMT +Wed, 10 Jan 2024 07:28:48 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/merge-styles_v8.5.14..@fluentui/merge-styles_v8.5.15) ### Patches @@ -61,7 +61,7 @@ Wed, 10 Jan 2024 07:28:48 GMT ## [8.5.14](https://github.com/microsoft/fluentui/tree/@fluentui/merge-styles_v8.5.14) -Thu, 14 Dec 2023 07:30:10 GMT +Thu, 14 Dec 2023 07:30:10 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/merge-styles_v8.5.13..@fluentui/merge-styles_v8.5.14) ### Patches @@ -70,7 +70,7 @@ Thu, 14 Dec 2023 07:30:10 GMT ## [8.5.13](https://github.com/microsoft/fluentui/tree/@fluentui/merge-styles_v8.5.13) -Sat, 28 Oct 2023 00:29:16 GMT +Sat, 28 Oct 2023 00:29:16 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/merge-styles_v8.5.12..@fluentui/merge-styles_v8.5.13) ### Patches @@ -79,7 +79,7 @@ Sat, 28 Oct 2023 00:29:16 GMT ## [8.5.12](https://github.com/microsoft/fluentui/tree/@fluentui/merge-styles_v8.5.12) -Wed, 31 May 2023 07:38:39 GMT +Wed, 31 May 2023 07:38:39 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/merge-styles_v8.5.11..@fluentui/merge-styles_v8.5.12) ### Patches @@ -89,7 +89,7 @@ Wed, 31 May 2023 07:38:39 GMT ## [8.5.11](https://github.com/microsoft/fluentui/tree/@fluentui/merge-styles_v8.5.11) -Tue, 30 May 2023 07:36:09 GMT +Tue, 30 May 2023 07:36:09 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/merge-styles_v8.5.10..@fluentui/merge-styles_v8.5.11) ### Patches @@ -98,7 +98,7 @@ Tue, 30 May 2023 07:36:09 GMT ## [8.5.10](https://github.com/microsoft/fluentui/tree/@fluentui/merge-styles_v8.5.10) -Fri, 05 May 2023 18:14:05 GMT +Fri, 05 May 2023 18:14:05 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/merge-styles_v8.5.9..@fluentui/merge-styles_v8.5.10) ### Patches @@ -108,7 +108,7 @@ Fri, 05 May 2023 18:14:05 GMT ## [8.5.9](https://github.com/microsoft/fluentui/tree/@fluentui/merge-styles_v8.5.9) -Tue, 02 May 2023 00:58:15 GMT +Tue, 02 May 2023 00:58:15 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/merge-styles_v8.5.8..@fluentui/merge-styles_v8.5.9) ### Patches @@ -118,7 +118,7 @@ Tue, 02 May 2023 00:58:15 GMT ## [8.5.8](https://github.com/microsoft/fluentui/tree/@fluentui/merge-styles_v8.5.8) -Mon, 01 May 2023 07:39:54 GMT +Mon, 01 May 2023 07:39:54 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/merge-styles_v8.5.7..@fluentui/merge-styles_v8.5.8) ### Patches @@ -127,7 +127,7 @@ Mon, 01 May 2023 07:39:54 GMT ## [8.5.7](https://github.com/microsoft/fluentui/tree/@fluentui/merge-styles_v8.5.7) -Fri, 17 Mar 2023 08:15:56 GMT +Fri, 17 Mar 2023 08:15:56 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/merge-styles_v8.5.6..@fluentui/merge-styles_v8.5.7) ### Patches @@ -136,7 +136,7 @@ Fri, 17 Mar 2023 08:15:56 GMT ## [8.5.6](https://github.com/microsoft/fluentui/tree/@fluentui/merge-styles_v8.5.6) -Fri, 03 Feb 2023 07:50:06 GMT +Fri, 03 Feb 2023 07:50:06 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/merge-styles_v8.5.5..@fluentui/merge-styles_v8.5.6) ### Patches @@ -145,7 +145,7 @@ Fri, 03 Feb 2023 07:50:06 GMT ## [8.5.5](https://github.com/microsoft/fluentui/tree/@fluentui/merge-styles_v8.5.5) -Tue, 10 Jan 2023 07:50:15 GMT +Tue, 10 Jan 2023 07:50:15 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/merge-styles_v8.5.4..@fluentui/merge-styles_v8.5.5) ### Patches @@ -154,7 +154,7 @@ Tue, 10 Jan 2023 07:50:15 GMT ## [8.5.4](https://github.com/microsoft/fluentui/tree/@fluentui/merge-styles_v8.5.4) -Wed, 09 Nov 2022 07:48:12 GMT +Wed, 09 Nov 2022 07:48:12 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/merge-styles_v8.5.3..@fluentui/merge-styles_v8.5.4) ### Patches @@ -163,7 +163,7 @@ Wed, 09 Nov 2022 07:48:12 GMT ## [8.5.3](https://github.com/microsoft/fluentui/tree/@fluentui/merge-styles_v8.5.3) -Mon, 08 Aug 2022 07:39:33 GMT +Mon, 08 Aug 2022 07:39:33 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/merge-styles_v8.5.2..@fluentui/merge-styles_v8.5.3) ### Patches @@ -172,7 +172,7 @@ Mon, 08 Aug 2022 07:39:33 GMT ## [8.5.2](https://github.com/microsoft/fluentui/tree/@fluentui/merge-styles_v8.5.2) -Fri, 13 May 2022 07:45:35 GMT +Fri, 13 May 2022 07:45:35 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/merge-styles_v8.5.1..@fluentui/merge-styles_v8.5.2) ### Patches @@ -181,7 +181,7 @@ Fri, 13 May 2022 07:45:35 GMT ## [8.5.1](https://github.com/microsoft/fluentui/tree/@fluentui/merge-styles_v8.5.1) -Fri, 15 Apr 2022 07:42:46 GMT +Fri, 15 Apr 2022 07:42:46 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/merge-styles_v8.5.0..@fluentui/merge-styles_v8.5.1) ### Patches @@ -190,7 +190,7 @@ Fri, 15 Apr 2022 07:42:46 GMT ## [8.5.0](https://github.com/microsoft/fluentui/tree/@fluentui/merge-styles_v8.5.0) -Fri, 11 Mar 2022 07:34:40 GMT +Fri, 11 Mar 2022 07:34:40 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/merge-styles_v8.4.0..@fluentui/merge-styles_v8.5.0) ### Minor changes @@ -199,7 +199,7 @@ Fri, 11 Mar 2022 07:34:40 GMT ## [8.4.0](https://github.com/microsoft/fluentui/tree/@fluentui/merge-styles_v8.4.0) -Thu, 03 Mar 2022 07:24:27 GMT +Thu, 03 Mar 2022 07:24:27 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/merge-styles_v8.3.0..@fluentui/merge-styles_v8.4.0) ### Minor changes @@ -209,7 +209,7 @@ Thu, 03 Mar 2022 07:24:27 GMT ## [8.3.0](https://github.com/microsoft/fluentui/tree/@fluentui/merge-styles_v8.3.0) -Thu, 03 Feb 2022 07:29:40 GMT +Thu, 03 Feb 2022 07:29:40 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/merge-styles_v8.2.3..@fluentui/merge-styles_v8.3.0) ### Minor changes @@ -218,7 +218,7 @@ Thu, 03 Feb 2022 07:29:40 GMT ## [8.2.3](https://github.com/microsoft/fluentui/tree/@fluentui/merge-styles_v8.2.3) -Mon, 03 Jan 2022 23:32:10 GMT +Mon, 03 Jan 2022 23:32:10 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/merge-styles_v8.2.2..@fluentui/merge-styles_v8.2.3) ### Patches @@ -227,7 +227,7 @@ Mon, 03 Jan 2022 23:32:10 GMT ## [8.2.2](https://github.com/microsoft/fluentui/tree/@fluentui/merge-styles_v8.2.2) -Thu, 25 Nov 2021 14:54:16 GMT +Thu, 25 Nov 2021 14:54:16 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/merge-styles_v8.2.1..@fluentui/merge-styles_v8.2.2) ### Patches @@ -236,7 +236,7 @@ Thu, 25 Nov 2021 14:54:16 GMT ## [8.2.1](https://github.com/microsoft/fluentui/tree/@fluentui/merge-styles_v8.2.1) -Wed, 10 Nov 2021 07:31:58 GMT +Wed, 10 Nov 2021 07:31:58 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/merge-styles_v8.2.0..@fluentui/merge-styles_v8.2.1) ### Patches @@ -245,7 +245,7 @@ Wed, 10 Nov 2021 07:31:58 GMT ## [8.2.0](https://github.com/microsoft/fluentui/tree/@fluentui/merge-styles_v8.2.0) -Tue, 28 Sep 2021 22:17:07 GMT +Tue, 28 Sep 2021 22:17:07 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/merge-styles_v8.1.5..@fluentui/merge-styles_v8.2.0) ### Minor changes @@ -254,7 +254,7 @@ Tue, 28 Sep 2021 22:17:07 GMT ## [8.1.5](https://github.com/microsoft/fluentui/tree/@fluentui/merge-styles_v8.1.5) -Wed, 25 Aug 2021 07:35:19 GMT +Wed, 25 Aug 2021 07:35:19 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/merge-styles_v8.1.4..@fluentui/merge-styles_v8.1.5) ### Patches @@ -263,7 +263,7 @@ Wed, 25 Aug 2021 07:35:19 GMT ## [8.1.4](https://github.com/microsoft/fluentui/tree/@fluentui/merge-styles_v8.1.4) -Tue, 03 Aug 2021 07:39:30 GMT +Tue, 03 Aug 2021 07:39:30 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/merge-styles_v8.1.3..@fluentui/merge-styles_v8.1.4) ### Patches @@ -272,7 +272,7 @@ Tue, 03 Aug 2021 07:39:30 GMT ## [8.1.3](https://github.com/microsoft/fluentui/tree/@fluentui/merge-styles_v8.1.3) -Fri, 09 Jul 2021 07:39:31 GMT +Fri, 09 Jul 2021 07:39:31 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/merge-styles_v8.1.2..@fluentui/merge-styles_v8.1.3) ### Patches @@ -281,7 +281,7 @@ Fri, 09 Jul 2021 07:39:31 GMT ## [8.1.2](https://github.com/microsoft/fluentui/tree/@fluentui/merge-styles_v8.1.2) -Mon, 07 Jun 2021 07:38:15 GMT +Mon, 07 Jun 2021 07:38:15 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/merge-styles_v8.1.1..@fluentui/merge-styles_v8.1.2) ### Patches @@ -290,7 +290,7 @@ Mon, 07 Jun 2021 07:38:15 GMT ## [8.1.1](https://github.com/microsoft/fluentui/tree/@fluentui/merge-styles_v8.1.1) -Thu, 20 May 2021 07:41:54 GMT +Thu, 20 May 2021 07:41:54 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/merge-styles_v8.1.0..@fluentui/merge-styles_v8.1.1) ### Patches @@ -299,7 +299,7 @@ Thu, 20 May 2021 07:41:54 GMT ## [8.1.0](https://github.com/microsoft/fluentui/tree/@fluentui/merge-styles_v8.1.0) -Fri, 30 Apr 2021 07:42:23 GMT +Fri, 30 Apr 2021 07:42:23 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/merge-styles_v8.0.4..@fluentui/merge-styles_v8.1.0) ### Minor changes @@ -314,7 +314,7 @@ Fri, 30 Apr 2021 07:42:23 GMT ## [8.0.4](https://github.com/microsoft/fluentui/tree/@fluentui/merge-styles_v8.0.4) -Fri, 23 Apr 2021 07:37:10 GMT +Fri, 23 Apr 2021 07:37:10 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/merge-styles_v8.0.3..@fluentui/merge-styles_v8.0.4) ### Patches @@ -323,7 +323,7 @@ Fri, 23 Apr 2021 07:37:10 GMT ## [8.0.3](https://github.com/microsoft/fluentui/tree/@fluentui/merge-styles_v8.0.3) -Wed, 31 Mar 2021 00:53:43 GMT +Wed, 31 Mar 2021 00:53:43 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/merge-styles_v8.0.2..@fluentui/merge-styles_v8.0.3) ### Patches @@ -332,7 +332,7 @@ Wed, 31 Mar 2021 00:53:43 GMT ## [8.0.2](https://github.com/microsoft/fluentui/tree/@fluentui/merge-styles_v8.0.2) -Wed, 03 Mar 2021 00:10:09 GMT +Wed, 03 Mar 2021 00:10:09 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/merge-styles_v8.0.1..@fluentui/merge-styles_v8.0.2) ### Patches @@ -341,7 +341,7 @@ Wed, 03 Mar 2021 00:10:09 GMT ## [8.0.1](https://github.com/microsoft/fluentui/tree/@fluentui/merge-styles_v8.0.1) -Fri, 26 Feb 2021 01:16:27 GMT +Fri, 26 Feb 2021 01:16:27 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/merge-styles_v8.0.0-beta.5..@fluentui/merge-styles_v8.0.1) ### Patches @@ -350,7 +350,7 @@ Fri, 26 Feb 2021 01:16:27 GMT ## [8.0.0-beta.5](https://github.com/microsoft/fluentui/tree/@fluentui/merge-styles_v8.0.0-beta.5) -Thu, 18 Feb 2021 12:27:34 GMT +Thu, 18 Feb 2021 12:27:34 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/merge-styles_v8.0.0-beta.4..@fluentui/merge-styles_v8.0.0-beta.5) ### Changes @@ -359,7 +359,7 @@ Thu, 18 Feb 2021 12:27:34 GMT ## [8.0.0-beta.3](https://github.com/microsoft/fluentui/tree/@fluentui/merge-styles_v8.0.0-beta.3) -Thu, 03 Dec 2020 12:32:57 GMT +Thu, 03 Dec 2020 12:32:57 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/merge-styles_v8.0.0-beta.2..@fluentui/merge-styles_v8.0.0-beta.3) ### Changes @@ -368,7 +368,7 @@ Thu, 03 Dec 2020 12:32:57 GMT ## [8.0.0-beta.2](https://github.com/microsoft/fluentui/tree/@fluentui/merge-styles_v8.0.0-beta.2) -Wed, 02 Dec 2020 12:37:40 GMT +Wed, 02 Dec 2020 12:37:40 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/merge-styles_v8.0.0-beta.1..@fluentui/merge-styles_v8.0.0-beta.2) ### Changes @@ -377,7 +377,7 @@ Wed, 02 Dec 2020 12:37:40 GMT ## [8.0.0-beta.1](https://github.com/microsoft/fluentui/tree/@fluentui/merge-styles_v8.0.0-beta.1) -Mon, 02 Nov 2020 12:32:47 GMT +Mon, 02 Nov 2020 12:32:47 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/merge-styles_v8.0.0-beta.0..@fluentui/merge-styles_v8.0.0-beta.1) ### Changes @@ -386,7 +386,7 @@ Mon, 02 Nov 2020 12:32:47 GMT ## [8.0.0-beta.0](https://github.com/microsoft/fluentui/tree/@fluentui/merge-styles_v8.0.0-beta.0) -Fri, 23 Oct 2020 03:26:15 GMT +Fri, 23 Oct 2020 03:26:15 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@uifabric/merge-styles_v7.19.1..@fluentui/merge-styles_v8.0.0-beta.0) ### Changes @@ -398,7 +398,7 @@ Fri, 23 Oct 2020 03:26:15 GMT ## [7.19.0](https://github.com/microsoft/fluentui/tree/@uifabric/merge-styles_v7.19.0) -Tue, 15 Sep 2020 12:26:06 GMT +Tue, 15 Sep 2020 12:26:06 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@uifabric/merge-styles_v7.18.0..@uifabric/merge-styles_v7.19.0) ### Minor changes @@ -407,7 +407,7 @@ Tue, 15 Sep 2020 12:26:06 GMT ## [7.18.0](https://github.com/microsoft/fluentui/tree/@uifabric/merge-styles_v7.18.0) -Fri, 28 Aug 2020 12:29:20 GMT +Fri, 28 Aug 2020 12:29:20 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@uifabric/merge-styles_v7.17.0..@uifabric/merge-styles_v7.18.0) ### Minor changes @@ -416,7 +416,7 @@ Fri, 28 Aug 2020 12:29:20 GMT ## [7.17.0](https://github.com/microsoft/fluentui/tree/@uifabric/merge-styles_v7.17.0) -Tue, 25 Aug 2020 12:36:19 GMT +Tue, 25 Aug 2020 12:36:19 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@uifabric/merge-styles_v7.16.1..@uifabric/merge-styles_v7.17.0) ### Minor changes @@ -425,7 +425,7 @@ Tue, 25 Aug 2020 12:36:19 GMT ## [7.16.1](https://github.com/microsoft/fluentui/tree/@uifabric/merge-styles_v7.16.1) -Mon, 13 Jul 2020 23:14:39 GMT +Mon, 13 Jul 2020 23:14:39 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@uifabric/merge-styles_v7.16.0..@uifabric/merge-styles_v7.16.1) ### Patches @@ -434,7 +434,7 @@ Mon, 13 Jul 2020 23:14:39 GMT ## [7.16.0](https://github.com/microsoft/fluentui/tree/@uifabric/merge-styles_v7.16.0) -Tue, 30 Jun 2020 12:33:36 GMT +Tue, 30 Jun 2020 12:33:36 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@uifabric/merge-styles_v7.15.1..@uifabric/merge-styles_v7.16.0) ### Minor changes @@ -443,7 +443,7 @@ Tue, 30 Jun 2020 12:33:36 GMT ## [7.15.0](https://github.com/microsoft/fluentui/tree/@uifabric/merge-styles_v7.15.0) -Thu, 25 Jun 2020 12:50:17 GMT +Thu, 25 Jun 2020 12:50:17 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@uifabric/merge-styles_v7.14.1..@uifabric/merge-styles_v7.15.0) ### Minor changes @@ -452,7 +452,7 @@ Thu, 25 Jun 2020 12:50:17 GMT ## [7.14.0](https://github.com/microsoft/fluentui/tree/@uifabric/merge-styles_v7.14.0) -Fri, 15 May 2020 20:33:16 GMT +Fri, 15 May 2020 20:33:16 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@uifabric/merge-styles_v7.13.0..@uifabric/merge-styles_v7.14.0) ### Minor changes @@ -461,7 +461,7 @@ Fri, 15 May 2020 20:33:16 GMT ## [7.13.0](https://github.com/microsoft/fluentui/tree/@uifabric/merge-styles_v7.13.0) -Fri, 15 May 2020 00:07:39 GMT +Fri, 15 May 2020 00:07:39 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@uifabric/merge-styles_v7.12.0..@uifabric/merge-styles_v7.13.0) ### Minor changes @@ -470,7 +470,7 @@ Fri, 15 May 2020 00:07:39 GMT ## [7.12.0](https://github.com/microsoft/fluentui/tree/@uifabric/merge-styles_v7.12.0) -Mon, 11 May 2020 12:36:34 GMT +Mon, 11 May 2020 12:36:34 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@uifabric/merge-styles_v7.11.4..@uifabric/merge-styles_v7.12.0) ### Minor changes @@ -479,7 +479,7 @@ Mon, 11 May 2020 12:36:34 GMT ## [7.11.4](https://github.com/microsoft/fluentui/tree/@uifabric/merge-styles_v7.11.4) -Fri, 08 May 2020 12:35:40 GMT +Fri, 08 May 2020 12:35:40 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@uifabric/merge-styles_v7.11.3..@uifabric/merge-styles_v7.11.4) ### Patches @@ -489,7 +489,7 @@ Fri, 08 May 2020 12:35:40 GMT ## [7.11.3](https://github.com/microsoft/fluentui/tree/@uifabric/merge-styles_v7.11.3) -Thu, 07 May 2020 01:06:55 GMT +Thu, 07 May 2020 01:06:55 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@uifabric/merge-styles_v7.11.2..@uifabric/merge-styles_v7.11.3) ### Patches @@ -498,7 +498,7 @@ Thu, 07 May 2020 01:06:55 GMT ## [7.11.2](https://github.com/microsoft/fluentui/tree/@uifabric/merge-styles_v7.11.2) -Tue, 05 May 2020 12:34:22 GMT +Tue, 05 May 2020 12:34:22 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@uifabric/merge-styles_v7.11.0..@uifabric/merge-styles_v7.11.2) ### Patches @@ -507,7 +507,7 @@ Tue, 05 May 2020 12:34:22 GMT ## [7.11.0](https://github.com/microsoft/fluentui/tree/@uifabric/merge-styles_v7.11.0) -Fri, 17 Apr 2020 12:34:08 GMT +Fri, 17 Apr 2020 12:34:08 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@uifabric/merge-styles_v7.10.0..@uifabric/merge-styles_v7.11.0) ### Minor changes @@ -516,7 +516,7 @@ Fri, 17 Apr 2020 12:34:08 GMT ## [7.10.0](https://github.com/microsoft/fluentui/tree/@uifabric/merge-styles_v7.10.0) -Thu, 16 Apr 2020 04:01:45 GMT +Thu, 16 Apr 2020 04:01:45 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@uifabric/merge-styles_v7.8.11..@uifabric/merge-styles_v7.10.0) ### Minor changes diff --git a/packages/react-charting/src/components/DonutChart/DonutChart.test.tsx b/packages/react-charting/src/components/DonutChart/DonutChart.test.tsx index fff76a6bae94fe..3e50a4aeb097e9 100644 --- a/packages/react-charting/src/components/DonutChart/DonutChart.test.tsx +++ b/packages/react-charting/src/components/DonutChart/DonutChart.test.tsx @@ -136,6 +136,18 @@ describe('DonutChart snapShot testing', () => { const tree = component!.toJSON(); expect(tree).toMatchSnapshot(); }); + + it('Should render arc labels in percentage format', () => { + const component = renderer.create(); + const tree = component.toJSON(); + expect(tree).toMatchSnapshot(); + }); + + it('Should not render arc labels', () => { + const component = renderer.create(); + const tree = component.toJSON(); + expect(tree).toMatchSnapshot(); + }); }); describe('DonutChart - basic props', () => { diff --git a/packages/react-components/babel-preset-storybook-full-source/src/__fixtures__/storybook-stories-modifyImports/relative-import-declaration/package.json b/packages/react-components/babel-preset-storybook-full-source/src/__fixtures__/storybook-stories-modifyImports/relative-import-declaration/package.json new file mode 100644 index 00000000000000..6cd53f47fea40b --- /dev/null +++ b/packages/react-components/babel-preset-storybook-full-source/src/__fixtures__/storybook-stories-modifyImports/relative-import-declaration/package.json @@ -0,0 +1,3 @@ +{ + "name": "@fluentui/react-button" +} diff --git a/packages/react-components/babel-preset-storybook-full-source/src/index.dev.d.ts b/packages/react-components/babel-preset-storybook-full-source/src/index.dev.d.ts new file mode 100644 index 00000000000000..2cb9de9550e8f3 --- /dev/null +++ b/packages/react-components/babel-preset-storybook-full-source/src/index.dev.d.ts @@ -0,0 +1,2 @@ +export { fullSourcePlugin } from './index'; +export type { BabelPluginOptions } from './index'; diff --git a/packages/react-components/babel-preset-storybook-full-source/src/index.dev.js b/packages/react-components/babel-preset-storybook-full-source/src/index.dev.js new file mode 100644 index 00000000000000..e916ec2369091d --- /dev/null +++ b/packages/react-components/babel-preset-storybook-full-source/src/index.dev.js @@ -0,0 +1,11 @@ +// This is internal code and should be a dev dependency +/* eslint-disable import/no-extraneous-dependencies */ +const { registerTsProject } = require('nx/src/utils/register'); + +// This is internal code and should be a dev dependency +const { workspaceRoot } = require('@nrwl/devkit'); +/* eslint-enable import/no-extraneous-dependencies */ + +registerTsProject(workspaceRoot, 'tsconfig.base.json'); + +module.exports = require('./index.ts'); diff --git a/packages/react-components/react-avatar/CHANGELOG.md b/packages/react-components/react-avatar/CHANGELOG.md index 6029e256392a2a..a8f70d9ac7c6bb 100644 --- a/packages/react-components/react-avatar/CHANGELOG.md +++ b/packages/react-components/react-avatar/CHANGELOG.md @@ -6,7 +6,7 @@ This log was last generated on Tue, 23 Apr 2024 08:17:49 GMT and should not be m ## [9.6.22](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.6.22) -Tue, 23 Apr 2024 08:17:49 GMT +Tue, 23 Apr 2024 08:17:49 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.6.21..@fluentui/react-avatar_v9.6.22) ### Patches @@ -22,7 +22,7 @@ Tue, 23 Apr 2024 08:17:49 GMT ## [9.6.21](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.6.21) -Wed, 17 Apr 2024 21:53:47 GMT +Wed, 17 Apr 2024 21:53:47 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.6.20..@fluentui/react-avatar_v9.6.21) ### Patches @@ -35,7 +35,7 @@ Wed, 17 Apr 2024 21:53:47 GMT ## [9.6.20](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.6.20) -Tue, 02 Apr 2024 09:48:01 GMT +Tue, 02 Apr 2024 09:48:01 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.6.19..@fluentui/react-avatar_v9.6.20) ### Patches @@ -51,7 +51,7 @@ Tue, 02 Apr 2024 09:48:01 GMT ## [9.6.19](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.6.19) -Mon, 18 Mar 2024 19:50:46 GMT +Mon, 18 Mar 2024 19:50:46 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.6.18..@fluentui/react-avatar_v9.6.19) ### Patches @@ -68,7 +68,7 @@ Mon, 18 Mar 2024 19:50:46 GMT ## [9.6.18](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.6.18) -Fri, 15 Mar 2024 21:43:49 GMT +Fri, 15 Mar 2024 21:43:49 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.6.17..@fluentui/react-avatar_v9.6.18) ### Patches @@ -85,7 +85,7 @@ Fri, 15 Mar 2024 21:43:49 GMT ## [9.6.17](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.6.17) -Thu, 07 Mar 2024 19:33:21 GMT +Thu, 07 Mar 2024 19:33:21 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.6.16..@fluentui/react-avatar_v9.6.17) ### Patches @@ -103,7 +103,7 @@ Thu, 07 Mar 2024 19:33:21 GMT ## [9.6.16](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.6.16) -Wed, 28 Feb 2024 02:34:19 GMT +Wed, 28 Feb 2024 02:34:19 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.6.15..@fluentui/react-avatar_v9.6.16) ### Patches @@ -119,7 +119,7 @@ Wed, 28 Feb 2024 02:34:19 GMT ## [9.6.15](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.6.15) -Tue, 20 Feb 2024 14:22:30 GMT +Tue, 20 Feb 2024 14:22:30 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.6.14..@fluentui/react-avatar_v9.6.15) ### Patches @@ -134,7 +134,7 @@ Tue, 20 Feb 2024 14:22:30 GMT ## [9.6.14](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.6.14) -Tue, 06 Feb 2024 17:55:21 GMT +Tue, 06 Feb 2024 17:55:21 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.6.13..@fluentui/react-avatar_v9.6.14) ### Patches @@ -145,7 +145,7 @@ Tue, 06 Feb 2024 17:55:21 GMT ## [9.6.13](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.6.13) -Tue, 30 Jan 2024 23:16:54 GMT +Tue, 30 Jan 2024 23:16:54 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.6.12..@fluentui/react-avatar_v9.6.13) ### Patches @@ -160,7 +160,7 @@ Tue, 30 Jan 2024 23:16:54 GMT ## [9.6.12](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.6.12) -Mon, 29 Jan 2024 13:56:06 GMT +Mon, 29 Jan 2024 13:56:06 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.6.11..@fluentui/react-avatar_v9.6.12) ### Patches @@ -170,7 +170,7 @@ Mon, 29 Jan 2024 13:56:06 GMT ## [9.6.11](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.6.11) -Fri, 26 Jan 2024 10:40:22 GMT +Fri, 26 Jan 2024 10:40:22 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.6.10..@fluentui/react-avatar_v9.6.11) ### Patches @@ -180,7 +180,7 @@ Fri, 26 Jan 2024 10:40:22 GMT ## [9.6.10](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.6.10) -Tue, 23 Jan 2024 15:11:00 GMT +Tue, 23 Jan 2024 15:11:00 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.6.9..@fluentui/react-avatar_v9.6.10) ### Patches @@ -195,7 +195,7 @@ Tue, 23 Jan 2024 15:11:00 GMT ## [9.6.9](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.6.9) -Thu, 18 Jan 2024 14:25:03 GMT +Thu, 18 Jan 2024 14:25:03 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.6.8..@fluentui/react-avatar_v9.6.9) ### Patches @@ -211,7 +211,7 @@ Thu, 18 Jan 2024 14:25:03 GMT ## [9.6.8](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.6.8) -Wed, 17 Jan 2024 16:18:50 GMT +Wed, 17 Jan 2024 16:18:50 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.6.7..@fluentui/react-avatar_v9.6.8) ### Patches @@ -226,7 +226,7 @@ Wed, 17 Jan 2024 16:18:50 GMT ## [9.6.7](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.6.7) -Tue, 16 Jan 2024 13:14:14 GMT +Tue, 16 Jan 2024 13:14:14 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.6.6..@fluentui/react-avatar_v9.6.7) ### Patches @@ -241,7 +241,7 @@ Tue, 16 Jan 2024 13:14:14 GMT ## [9.6.6](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.6.6) -Thu, 11 Jan 2024 09:04:29 GMT +Thu, 11 Jan 2024 09:04:29 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.6.5..@fluentui/react-avatar_v9.6.6) ### Patches @@ -251,7 +251,7 @@ Thu, 11 Jan 2024 09:04:29 GMT ## [9.6.5](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.6.5) -Tue, 09 Jan 2024 10:21:34 GMT +Tue, 09 Jan 2024 10:21:34 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.6.4..@fluentui/react-avatar_v9.6.5) ### Patches @@ -261,7 +261,7 @@ Tue, 09 Jan 2024 10:21:34 GMT ## [9.6.4](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.6.4) -Mon, 08 Jan 2024 16:24:20 GMT +Mon, 08 Jan 2024 16:24:20 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.6.3..@fluentui/react-avatar_v9.6.4) ### Patches @@ -277,7 +277,7 @@ Mon, 08 Jan 2024 16:24:20 GMT ## [9.6.3](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.6.3) -Wed, 03 Jan 2024 09:26:44 GMT +Wed, 03 Jan 2024 09:26:44 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.6.2..@fluentui/react-avatar_v9.6.3) ### Patches @@ -292,7 +292,7 @@ Wed, 03 Jan 2024 09:26:44 GMT ## [9.6.2](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.6.2) -Mon, 18 Dec 2023 17:48:16 GMT +Mon, 18 Dec 2023 17:48:16 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.6.1..@fluentui/react-avatar_v9.6.2) ### Patches @@ -302,7 +302,7 @@ Mon, 18 Dec 2023 17:48:16 GMT ## [9.6.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.6.1) -Mon, 18 Dec 2023 14:40:46 GMT +Mon, 18 Dec 2023 14:40:46 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.6.0..@fluentui/react-avatar_v9.6.1) ### Patches @@ -318,7 +318,7 @@ Mon, 18 Dec 2023 14:40:46 GMT ## [9.6.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.6.0) -Thu, 14 Dec 2023 09:58:42 GMT +Thu, 14 Dec 2023 09:58:42 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.5.48..@fluentui/react-avatar_v9.6.0) ### Minor changes @@ -335,7 +335,7 @@ Thu, 14 Dec 2023 09:58:42 GMT ## [9.5.48](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.5.48) -Thu, 30 Nov 2023 13:42:08 GMT +Thu, 30 Nov 2023 13:42:08 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.5.47..@fluentui/react-avatar_v9.5.48) ### Patches @@ -348,7 +348,7 @@ Thu, 30 Nov 2023 13:42:08 GMT ## [9.5.47](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.5.47) -Mon, 20 Nov 2023 09:55:10 GMT +Mon, 20 Nov 2023 09:55:10 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.5.46..@fluentui/react-avatar_v9.5.47) ### Patches @@ -361,7 +361,7 @@ Mon, 20 Nov 2023 09:55:10 GMT ## [9.5.46](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.5.46) -Tue, 14 Nov 2023 17:51:27 GMT +Tue, 14 Nov 2023 17:51:27 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.5.45..@fluentui/react-avatar_v9.5.46) ### Patches @@ -372,7 +372,7 @@ Tue, 14 Nov 2023 17:51:27 GMT ## [9.5.45](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.5.45) -Thu, 09 Nov 2023 17:29:50 GMT +Thu, 09 Nov 2023 17:29:50 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.5.44..@fluentui/react-avatar_v9.5.45) ### Patches @@ -390,7 +390,7 @@ Thu, 09 Nov 2023 17:29:50 GMT ## [9.5.44](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.5.44) -Wed, 01 Nov 2023 12:55:59 GMT +Wed, 01 Nov 2023 12:55:59 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.5.43..@fluentui/react-avatar_v9.5.44) ### Patches @@ -404,7 +404,7 @@ Wed, 01 Nov 2023 12:55:59 GMT ## [9.5.43](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.5.43) -Sat, 28 Oct 2023 23:35:59 GMT +Sat, 28 Oct 2023 23:35:59 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.5.42..@fluentui/react-avatar_v9.5.43) ### Patches @@ -417,7 +417,7 @@ Sat, 28 Oct 2023 23:35:59 GMT ## [9.5.42](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.5.42) -Mon, 23 Oct 2023 09:51:57 GMT +Mon, 23 Oct 2023 09:51:57 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.5.41..@fluentui/react-avatar_v9.5.42) ### Patches @@ -428,7 +428,7 @@ Mon, 23 Oct 2023 09:51:57 GMT ## [9.5.41](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.5.41) -Wed, 18 Oct 2023 17:54:01 GMT +Wed, 18 Oct 2023 17:54:01 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.5.40..@fluentui/react-avatar_v9.5.41) ### Patches @@ -444,7 +444,7 @@ Wed, 18 Oct 2023 17:54:01 GMT ## [9.5.40](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.5.40) -Thu, 12 Oct 2023 14:55:44 GMT +Thu, 12 Oct 2023 14:55:44 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.5.39..@fluentui/react-avatar_v9.5.40) ### Patches @@ -456,7 +456,7 @@ Thu, 12 Oct 2023 14:55:44 GMT ## [9.5.39](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.5.39) -Wed, 11 Oct 2023 13:54:26 GMT +Wed, 11 Oct 2023 13:54:26 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.5.38..@fluentui/react-avatar_v9.5.39) ### Patches @@ -471,7 +471,7 @@ Wed, 11 Oct 2023 13:54:26 GMT ## [9.5.38](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.5.38) -Mon, 09 Oct 2023 20:45:44 GMT +Mon, 09 Oct 2023 20:45:44 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.5.37..@fluentui/react-avatar_v9.5.38) ### Patches @@ -487,7 +487,7 @@ Mon, 09 Oct 2023 20:45:44 GMT ## [9.5.37](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.5.37) -Thu, 05 Oct 2023 15:25:35 GMT +Thu, 05 Oct 2023 15:25:35 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.5.36..@fluentui/react-avatar_v9.5.37) ### Patches @@ -502,7 +502,7 @@ Thu, 05 Oct 2023 15:25:35 GMT ## [9.5.36](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.5.36) -Wed, 04 Oct 2023 08:45:47 GMT +Wed, 04 Oct 2023 08:45:47 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.5.35..@fluentui/react-avatar_v9.5.36) ### Patches @@ -517,7 +517,7 @@ Wed, 04 Oct 2023 08:45:47 GMT ## [9.5.35](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.5.35) -Mon, 02 Oct 2023 08:56:05 GMT +Mon, 02 Oct 2023 08:56:05 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.5.34..@fluentui/react-avatar_v9.5.35) ### Patches @@ -530,7 +530,7 @@ Mon, 02 Oct 2023 08:56:05 GMT ## [9.5.34](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.5.34) -Tue, 26 Sep 2023 17:49:02 GMT +Tue, 26 Sep 2023 17:49:02 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.5.33..@fluentui/react-avatar_v9.5.34) ### Patches @@ -548,7 +548,7 @@ Tue, 26 Sep 2023 17:49:02 GMT ## [9.5.33](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.5.33) -Tue, 26 Sep 2023 15:32:06 GMT +Tue, 26 Sep 2023 15:32:06 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.5.32..@fluentui/react-avatar_v9.5.33) ### Patches @@ -567,7 +567,7 @@ Tue, 26 Sep 2023 15:32:06 GMT ## [9.5.32](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.5.32) -Wed, 20 Sep 2023 17:47:34 GMT +Wed, 20 Sep 2023 17:47:34 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.5.31..@fluentui/react-avatar_v9.5.32) ### Patches @@ -582,7 +582,7 @@ Wed, 20 Sep 2023 17:47:34 GMT ## [9.5.31](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.5.31) -Wed, 20 Sep 2023 14:59:53 GMT +Wed, 20 Sep 2023 14:59:53 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.5.30..@fluentui/react-avatar_v9.5.31) ### Patches @@ -596,7 +596,7 @@ Wed, 20 Sep 2023 14:59:53 GMT ## [9.5.30](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.5.30) -Thu, 14 Sep 2023 16:44:47 GMT +Thu, 14 Sep 2023 16:44:47 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.5.29..@fluentui/react-avatar_v9.5.30) ### Patches @@ -608,7 +608,7 @@ Thu, 14 Sep 2023 16:44:47 GMT ## [9.5.29](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.5.29) -Tue, 12 Sep 2023 08:51:34 GMT +Tue, 12 Sep 2023 08:51:34 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.5.28..@fluentui/react-avatar_v9.5.29) ### Patches @@ -621,7 +621,7 @@ Tue, 12 Sep 2023 08:51:34 GMT ## [9.5.28](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.5.28) -Wed, 06 Sep 2023 13:31:31 GMT +Wed, 06 Sep 2023 13:31:31 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.5.27..@fluentui/react-avatar_v9.5.28) ### Patches @@ -636,7 +636,7 @@ Wed, 06 Sep 2023 13:31:31 GMT ## [9.5.27](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.5.27) -Tue, 05 Sep 2023 15:39:04 GMT +Tue, 05 Sep 2023 15:39:04 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.5.26..@fluentui/react-avatar_v9.5.27) ### Patches @@ -651,7 +651,7 @@ Tue, 05 Sep 2023 15:39:04 GMT ## [9.5.26](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.5.26) -Tue, 05 Sep 2023 13:29:15 GMT +Tue, 05 Sep 2023 13:29:15 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.5.25..@fluentui/react-avatar_v9.5.26) ### Patches @@ -670,7 +670,7 @@ Tue, 05 Sep 2023 13:29:15 GMT ## [9.5.25](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.5.25) -Tue, 29 Aug 2023 12:57:36 GMT +Tue, 29 Aug 2023 12:57:36 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.5.24..@fluentui/react-avatar_v9.5.25) ### Patches @@ -685,7 +685,7 @@ Tue, 29 Aug 2023 12:57:36 GMT ## [9.5.24](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.5.24) -Thu, 24 Aug 2023 10:26:35 GMT +Thu, 24 Aug 2023 10:26:35 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.5.23..@fluentui/react-avatar_v9.5.24) ### Patches @@ -700,7 +700,7 @@ Thu, 24 Aug 2023 10:26:35 GMT ## [9.5.23](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.5.23) -Wed, 23 Aug 2023 12:01:49 GMT +Wed, 23 Aug 2023 12:01:49 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.5.22..@fluentui/react-avatar_v9.5.23) ### Patches @@ -715,7 +715,7 @@ Wed, 23 Aug 2023 12:01:49 GMT ## [9.5.22](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.5.22) -Mon, 21 Aug 2023 11:38:03 GMT +Mon, 21 Aug 2023 11:38:03 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.5.21..@fluentui/react-avatar_v9.5.22) ### Patches @@ -725,7 +725,7 @@ Mon, 21 Aug 2023 11:38:03 GMT ## [9.5.21](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.5.21) -Wed, 16 Aug 2023 17:41:08 GMT +Wed, 16 Aug 2023 17:41:08 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.5.20..@fluentui/react-avatar_v9.5.21) ### Patches @@ -737,7 +737,7 @@ Wed, 16 Aug 2023 17:41:08 GMT ## [9.5.20](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.5.20) -Wed, 16 Aug 2023 11:38:33 GMT +Wed, 16 Aug 2023 11:38:33 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.5.19..@fluentui/react-avatar_v9.5.20) ### Patches @@ -749,7 +749,7 @@ Wed, 16 Aug 2023 11:38:33 GMT ## [9.5.19](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.5.19) -Fri, 11 Aug 2023 12:14:26 GMT +Fri, 11 Aug 2023 12:14:26 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.5.18..@fluentui/react-avatar_v9.5.19) ### Patches @@ -764,7 +764,7 @@ Fri, 11 Aug 2023 12:14:26 GMT ## [9.5.18](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.5.18) -Wed, 09 Aug 2023 13:16:49 GMT +Wed, 09 Aug 2023 13:16:49 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.5.17..@fluentui/react-avatar_v9.5.18) ### Patches @@ -781,7 +781,7 @@ Wed, 09 Aug 2023 13:16:49 GMT ## [9.5.17](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.5.17) -Fri, 04 Aug 2023 08:52:58 GMT +Fri, 04 Aug 2023 08:52:58 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.5.16..@fluentui/react-avatar_v9.5.17) ### Patches @@ -798,7 +798,7 @@ Fri, 04 Aug 2023 08:52:58 GMT ## [9.5.16](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.5.16) -Tue, 01 Aug 2023 10:17:21 GMT +Tue, 01 Aug 2023 10:17:21 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.5.15..@fluentui/react-avatar_v9.5.16) ### Patches @@ -811,7 +811,7 @@ Tue, 01 Aug 2023 10:17:21 GMT ## [9.5.15](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.5.15) -Thu, 27 Jul 2023 10:34:14 GMT +Thu, 27 Jul 2023 10:34:14 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.5.14..@fluentui/react-avatar_v9.5.15) ### Patches @@ -821,7 +821,7 @@ Thu, 27 Jul 2023 10:34:14 GMT ## [9.5.14](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.5.14) -Tue, 25 Jul 2023 13:29:16 GMT +Tue, 25 Jul 2023 13:29:16 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.5.13..@fluentui/react-avatar_v9.5.14) ### Patches @@ -834,7 +834,7 @@ Tue, 25 Jul 2023 13:29:16 GMT ## [9.5.13](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.5.13) -Thu, 20 Jul 2023 18:27:25 GMT +Thu, 20 Jul 2023 18:27:25 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.5.12..@fluentui/react-avatar_v9.5.13) ### Patches @@ -846,7 +846,7 @@ Thu, 20 Jul 2023 18:27:25 GMT ## [9.5.12](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.5.12) -Tue, 11 Jul 2023 18:46:36 GMT +Tue, 11 Jul 2023 18:46:36 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.5.11..@fluentui/react-avatar_v9.5.12) ### Patches @@ -859,7 +859,7 @@ Tue, 11 Jul 2023 18:46:36 GMT ## [9.5.11](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.5.11) -Mon, 03 Jul 2023 13:34:28 GMT +Mon, 03 Jul 2023 13:34:28 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.5.10..@fluentui/react-avatar_v9.5.11) ### Patches @@ -870,7 +870,7 @@ Mon, 03 Jul 2023 13:34:28 GMT ## [9.5.10](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.5.10) -Mon, 03 Jul 2023 11:57:14 GMT +Mon, 03 Jul 2023 11:57:14 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.5.9..@fluentui/react-avatar_v9.5.10) ### Patches @@ -886,7 +886,7 @@ Mon, 03 Jul 2023 11:57:14 GMT ## [9.5.9](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.5.9) -Wed, 28 Jun 2023 11:12:23 GMT +Wed, 28 Jun 2023 11:12:23 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.5.8..@fluentui/react-avatar_v9.5.9) ### Patches @@ -901,7 +901,7 @@ Wed, 28 Jun 2023 11:12:23 GMT ## [9.5.8](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.5.8) -Tue, 27 Jun 2023 11:21:23 GMT +Tue, 27 Jun 2023 11:21:23 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.5.7..@fluentui/react-avatar_v9.5.8) ### Patches @@ -912,7 +912,7 @@ Tue, 27 Jun 2023 11:21:23 GMT ## [9.5.7](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.5.7) -Mon, 26 Jun 2023 09:53:55 GMT +Mon, 26 Jun 2023 09:53:55 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.5.6..@fluentui/react-avatar_v9.5.7) ### Patches @@ -927,7 +927,7 @@ Mon, 26 Jun 2023 09:53:55 GMT ## [9.5.6](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.5.6) -Tue, 20 Jun 2023 12:38:54 GMT +Tue, 20 Jun 2023 12:38:54 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.5.5..@fluentui/react-avatar_v9.5.6) ### Patches @@ -947,7 +947,7 @@ Tue, 20 Jun 2023 12:38:54 GMT ## [9.5.5](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.5.5) -Wed, 31 May 2023 06:46:09 GMT +Wed, 31 May 2023 06:46:09 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.5.4..@fluentui/react-avatar_v9.5.5) ### Patches @@ -964,7 +964,7 @@ Wed, 31 May 2023 06:46:09 GMT ## [9.5.4](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.5.4) -Thu, 25 May 2023 10:00:48 GMT +Thu, 25 May 2023 10:00:48 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.5.3..@fluentui/react-avatar_v9.5.4) ### Patches @@ -979,7 +979,7 @@ Thu, 25 May 2023 10:00:48 GMT ## [9.5.3](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.5.3) -Wed, 24 May 2023 20:45:23 GMT +Wed, 24 May 2023 20:45:23 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.5.2..@fluentui/react-avatar_v9.5.3) ### Patches @@ -992,7 +992,7 @@ Wed, 24 May 2023 20:45:23 GMT ## [9.5.2](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.5.2) -Thu, 18 May 2023 13:11:08 GMT +Thu, 18 May 2023 13:11:08 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.5.1..@fluentui/react-avatar_v9.5.2) ### Patches @@ -1003,7 +1003,7 @@ Thu, 18 May 2023 13:11:08 GMT ## [9.5.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.5.1) -Thu, 18 May 2023 00:39:02 GMT +Thu, 18 May 2023 00:39:02 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.5.0..@fluentui/react-avatar_v9.5.1) ### Patches @@ -1018,7 +1018,7 @@ Thu, 18 May 2023 00:39:02 GMT ## [9.5.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.5.0) -Fri, 12 May 2023 20:28:13 GMT +Fri, 12 May 2023 20:28:13 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.4.10..@fluentui/react-avatar_v9.5.0) ### Minor changes @@ -1046,7 +1046,7 @@ Fri, 12 May 2023 20:28:13 GMT ## [9.4.10](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.4.10) -Mon, 24 Apr 2023 08:12:31 GMT +Mon, 24 Apr 2023 08:12:31 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.4.9..@fluentui/react-avatar_v9.4.10) ### Patches @@ -1059,7 +1059,7 @@ Mon, 24 Apr 2023 08:12:31 GMT ## [9.4.9](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.4.9) -Mon, 17 Apr 2023 17:53:45 GMT +Mon, 17 Apr 2023 17:53:45 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.4.8..@fluentui/react-avatar_v9.4.9) ### Patches @@ -1074,7 +1074,7 @@ Mon, 17 Apr 2023 17:53:45 GMT ## [9.4.8](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.4.8) -Wed, 12 Apr 2023 09:31:45 GMT +Wed, 12 Apr 2023 09:31:45 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.4.7..@fluentui/react-avatar_v9.4.8) ### Patches @@ -1088,7 +1088,7 @@ Wed, 12 Apr 2023 09:31:45 GMT ## [9.4.7](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.4.7) -Tue, 04 Apr 2023 18:44:50 GMT +Tue, 04 Apr 2023 18:44:50 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.4.5..@fluentui/react-avatar_v9.4.7) ### Patches @@ -1102,7 +1102,7 @@ Tue, 04 Apr 2023 18:44:50 GMT ## [9.4.5](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.4.5) -Tue, 21 Mar 2023 21:23:23 GMT +Tue, 21 Mar 2023 21:23:23 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.4.4..@fluentui/react-avatar_v9.4.5) ### Patches @@ -1122,7 +1122,7 @@ Tue, 21 Mar 2023 21:23:23 GMT ## [9.4.4](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.4.4) -Thu, 16 Mar 2023 14:36:59 GMT +Thu, 16 Mar 2023 14:36:59 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.4.3..@fluentui/react-avatar_v9.4.4) ### Patches @@ -1136,7 +1136,7 @@ Thu, 16 Mar 2023 14:36:59 GMT ## [9.4.3](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.4.3) -Wed, 15 Mar 2023 10:19:53 GMT +Wed, 15 Mar 2023 10:19:53 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.4.2..@fluentui/react-avatar_v9.4.3) ### Patches @@ -1150,7 +1150,7 @@ Wed, 15 Mar 2023 10:19:53 GMT ## [9.4.2](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.4.2) -Mon, 13 Mar 2023 08:58:26 GMT +Mon, 13 Mar 2023 08:58:26 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.4.1..@fluentui/react-avatar_v9.4.2) ### Patches @@ -1164,7 +1164,7 @@ Mon, 13 Mar 2023 08:58:26 GMT ## [9.4.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.4.1) -Fri, 10 Mar 2023 07:14:01 GMT +Fri, 10 Mar 2023 07:14:01 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.4.0..@fluentui/react-avatar_v9.4.1) ### Patches @@ -1178,7 +1178,7 @@ Fri, 10 Mar 2023 07:14:01 GMT ## [9.4.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.4.0) -Wed, 08 Mar 2023 17:42:26 GMT +Wed, 08 Mar 2023 17:42:26 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.3.7..@fluentui/react-avatar_v9.4.0) ### Minor changes @@ -1194,7 +1194,7 @@ Wed, 08 Mar 2023 17:42:26 GMT ## [9.3.7](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.3.7) -Wed, 22 Feb 2023 23:06:07 GMT +Wed, 22 Feb 2023 23:06:07 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.3.6..@fluentui/react-avatar_v9.3.7) ### Patches @@ -1204,7 +1204,7 @@ Wed, 22 Feb 2023 23:06:07 GMT ## [9.3.6](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.3.6) -Wed, 15 Feb 2023 11:44:52 GMT +Wed, 15 Feb 2023 11:44:52 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.3.5..@fluentui/react-avatar_v9.3.6) ### Patches @@ -1218,7 +1218,7 @@ Wed, 15 Feb 2023 11:44:52 GMT ## [9.3.5](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.3.5) -Mon, 13 Feb 2023 23:43:14 GMT +Mon, 13 Feb 2023 23:43:14 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.3.4..@fluentui/react-avatar_v9.3.5) ### Patches @@ -1233,7 +1233,7 @@ Mon, 13 Feb 2023 23:43:14 GMT ## [9.3.4](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.3.4) -Mon, 13 Feb 2023 09:35:48 GMT +Mon, 13 Feb 2023 09:35:48 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.3.3..@fluentui/react-avatar_v9.3.4) ### Patches @@ -1243,7 +1243,7 @@ Mon, 13 Feb 2023 09:35:48 GMT ## [9.3.3](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.3.3) -Fri, 10 Feb 2023 08:49:58 GMT +Fri, 10 Feb 2023 08:49:58 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.3.2..@fluentui/react-avatar_v9.3.3) ### Patches @@ -1257,7 +1257,7 @@ Fri, 10 Feb 2023 08:49:58 GMT ## [9.3.2](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.3.2) -Tue, 07 Feb 2023 14:13:10 GMT +Tue, 07 Feb 2023 14:13:10 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.3.1..@fluentui/react-avatar_v9.3.2) ### Patches @@ -1269,7 +1269,7 @@ Tue, 07 Feb 2023 14:13:10 GMT ## [9.3.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.3.1) -Tue, 31 Jan 2023 19:53:58 GMT +Tue, 31 Jan 2023 19:53:58 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.3.0..@fluentui/react-avatar_v9.3.1) ### Patches @@ -1283,7 +1283,7 @@ Tue, 31 Jan 2023 19:53:58 GMT ## [9.3.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.3.0) -Thu, 26 Jan 2023 13:30:51 GMT +Thu, 26 Jan 2023 13:30:51 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.2.16..@fluentui/react-avatar_v9.3.0) ### Minor changes @@ -1299,7 +1299,7 @@ Thu, 26 Jan 2023 13:30:51 GMT ## [9.2.16](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.2.16) -Mon, 23 Jan 2023 16:43:12 GMT +Mon, 23 Jan 2023 16:43:12 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.2.15..@fluentui/react-avatar_v9.2.16) ### Patches @@ -1309,7 +1309,7 @@ Mon, 23 Jan 2023 16:43:12 GMT ## [9.2.15](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.2.15) -Wed, 18 Jan 2023 16:32:57 GMT +Wed, 18 Jan 2023 16:32:57 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.2.14..@fluentui/react-avatar_v9.2.15) ### Patches @@ -1320,7 +1320,7 @@ Wed, 18 Jan 2023 16:32:57 GMT ## [9.2.14](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.2.14) -Tue, 17 Jan 2023 12:22:56 GMT +Tue, 17 Jan 2023 12:22:56 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.2.13..@fluentui/react-avatar_v9.2.14) ### Patches @@ -1329,7 +1329,7 @@ Tue, 17 Jan 2023 12:22:56 GMT ## [9.2.13](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.2.13) -Mon, 16 Jan 2023 08:38:55 GMT +Mon, 16 Jan 2023 08:38:55 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.2.12..@fluentui/react-avatar_v9.2.13) ### Patches @@ -1342,7 +1342,7 @@ Mon, 16 Jan 2023 08:38:55 GMT ## [9.2.12](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.2.12) -Mon, 09 Jan 2023 14:34:55 GMT +Mon, 09 Jan 2023 14:34:55 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.2.11..@fluentui/react-avatar_v9.2.12) ### Patches @@ -1356,7 +1356,7 @@ Mon, 09 Jan 2023 14:34:55 GMT ## [9.2.11](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.2.11) -Wed, 04 Jan 2023 01:40:51 GMT +Wed, 04 Jan 2023 01:40:51 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.2.10..@fluentui/react-avatar_v9.2.11) ### Patches @@ -1372,7 +1372,7 @@ Wed, 04 Jan 2023 01:40:51 GMT ## [9.2.10](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.2.10) -Wed, 21 Dec 2022 10:20:33 GMT +Wed, 21 Dec 2022 10:20:33 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.2.9..@fluentui/react-avatar_v9.2.10) ### Patches @@ -1386,7 +1386,7 @@ Wed, 21 Dec 2022 10:20:33 GMT ## [9.2.9](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.2.9) -Tue, 20 Dec 2022 14:59:21 GMT +Tue, 20 Dec 2022 14:59:21 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.2.8..@fluentui/react-avatar_v9.2.9) ### Patches @@ -1403,7 +1403,7 @@ Tue, 20 Dec 2022 14:59:21 GMT ## [9.2.8](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.2.8) -Mon, 05 Dec 2022 18:29:20 GMT +Mon, 05 Dec 2022 18:29:20 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.2.7..@fluentui/react-avatar_v9.2.8) ### Patches @@ -1418,7 +1418,7 @@ Mon, 05 Dec 2022 18:29:20 GMT ## [9.2.7](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.2.7) -Thu, 17 Nov 2022 23:05:33 GMT +Thu, 17 Nov 2022 23:05:33 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.2.6..@fluentui/react-avatar_v9.2.7) ### Patches @@ -1432,7 +1432,7 @@ Thu, 17 Nov 2022 23:05:33 GMT ## [9.2.6](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.2.6) -Fri, 11 Nov 2022 14:57:52 GMT +Fri, 11 Nov 2022 14:57:52 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.2.5..@fluentui/react-avatar_v9.2.6) ### Patches @@ -1454,7 +1454,7 @@ Fri, 11 Nov 2022 14:57:52 GMT ## [9.2.5](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.2.5) -Wed, 02 Nov 2022 11:57:47 GMT +Wed, 02 Nov 2022 11:57:47 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.2.4..@fluentui/react-avatar_v9.2.5) ### Patches @@ -1472,7 +1472,7 @@ Wed, 02 Nov 2022 11:57:47 GMT ## [9.2.4](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.2.4) -Tue, 25 Oct 2022 00:35:28 GMT +Tue, 25 Oct 2022 00:35:28 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.2.3..@fluentui/react-avatar_v9.2.4) ### Patches @@ -1482,7 +1482,7 @@ Tue, 25 Oct 2022 00:35:28 GMT ## [9.2.3](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.2.3) -Thu, 20 Oct 2022 08:39:58 GMT +Thu, 20 Oct 2022 08:39:58 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.2.2..@fluentui/react-avatar_v9.2.3) ### Patches @@ -1501,7 +1501,7 @@ Thu, 20 Oct 2022 08:39:58 GMT ## [9.2.2](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.2.2) -Thu, 13 Oct 2022 12:56:30 GMT +Thu, 13 Oct 2022 12:56:30 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.2.1..@fluentui/react-avatar_v9.2.2) ### Patches @@ -1510,7 +1510,7 @@ Thu, 13 Oct 2022 12:56:30 GMT ## [9.2.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.2.1) -Thu, 13 Oct 2022 11:02:43 GMT +Thu, 13 Oct 2022 11:02:43 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.2.0..@fluentui/react-avatar_v9.2.1) ### Patches @@ -1526,7 +1526,7 @@ Thu, 13 Oct 2022 11:02:43 GMT ## [9.2.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.2.0) -Mon, 03 Oct 2022 22:24:34 GMT +Mon, 03 Oct 2022 22:24:34 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.1.1..@fluentui/react-avatar_v9.2.0) ### Minor changes @@ -1544,7 +1544,7 @@ Mon, 03 Oct 2022 22:24:34 GMT ## [9.1.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.1.1) -Tue, 20 Sep 2022 20:55:45 GMT +Tue, 20 Sep 2022 20:55:45 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.1.0..@fluentui/react-avatar_v9.1.1) ### Patches @@ -1556,7 +1556,7 @@ Tue, 20 Sep 2022 20:55:45 GMT ## [9.1.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.1.0) -Thu, 15 Sep 2022 09:49:49 GMT +Thu, 15 Sep 2022 09:49:49 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.0.4..@fluentui/react-avatar_v9.1.0) ### Minor changes @@ -1589,7 +1589,7 @@ Thu, 15 Sep 2022 09:49:49 GMT ## [9.0.4](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.0.4) -Wed, 03 Aug 2022 16:03:37 GMT +Wed, 03 Aug 2022 16:03:37 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.0.3..@fluentui/react-avatar_v9.0.4) ### Patches @@ -1604,7 +1604,7 @@ Wed, 03 Aug 2022 16:03:37 GMT ## [9.0.3](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.0.3) -Thu, 14 Jul 2022 21:21:08 GMT +Thu, 14 Jul 2022 21:21:08 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.0.2..@fluentui/react-avatar_v9.0.3) ### Patches @@ -1619,7 +1619,7 @@ Thu, 14 Jul 2022 21:21:08 GMT ## [9.0.2](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.0.2) -Thu, 14 Jul 2022 17:06:13 GMT +Thu, 14 Jul 2022 17:06:13 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.0.1..@fluentui/react-avatar_v9.0.2) ### Patches @@ -1637,7 +1637,7 @@ Thu, 14 Jul 2022 17:06:13 GMT ## [9.0.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.0.1) -Tue, 28 Jun 2022 17:39:46 GMT +Tue, 28 Jun 2022 17:39:46 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.0.0..@fluentui/react-avatar_v9.0.1) ### Patches @@ -1651,7 +1651,7 @@ Tue, 28 Jun 2022 17:39:46 GMT ## [9.0.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.0.0) -Tue, 28 Jun 2022 15:14:14 GMT +Tue, 28 Jun 2022 15:14:14 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.0.0-rc.13..@fluentui/react-avatar_v9.0.0) ### Patches @@ -1685,7 +1685,7 @@ Tue, 28 Jun 2022 15:14:14 GMT ## [9.0.0-rc.13](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.0.0-rc.13) -Thu, 23 Jun 2022 14:25:31 GMT +Thu, 23 Jun 2022 14:25:31 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.0.0-rc.12..@fluentui/react-avatar_v9.0.0-rc.13) ### Changes @@ -1699,7 +1699,7 @@ Thu, 23 Jun 2022 14:25:31 GMT ## [9.0.0-rc.12](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.0.0-rc.12) -Tue, 31 May 2022 21:28:35 GMT +Tue, 31 May 2022 21:28:35 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.0.0-rc.11..@fluentui/react-avatar_v9.0.0-rc.12) ### Changes @@ -1718,7 +1718,7 @@ Tue, 31 May 2022 21:28:35 GMT ## [9.0.0-rc.11](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.0.0-rc.11) -Thu, 26 May 2022 21:01:22 GMT +Thu, 26 May 2022 21:01:22 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.0.0-rc.10..@fluentui/react-avatar_v9.0.0-rc.11) ### Changes @@ -1731,7 +1731,7 @@ Thu, 26 May 2022 21:01:22 GMT ## [9.0.0-rc.10](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.0.0-rc.10) -Mon, 23 May 2022 18:56:40 GMT +Mon, 23 May 2022 18:56:40 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.0.0-rc.9..@fluentui/react-avatar_v9.0.0-rc.10) ### Changes @@ -1748,7 +1748,7 @@ Mon, 23 May 2022 18:56:40 GMT ## [9.0.0-rc.9](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.0.0-rc.9) -Mon, 23 May 2022 12:14:00 GMT +Mon, 23 May 2022 12:14:00 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.0.0-rc.8..@fluentui/react-avatar_v9.0.0-rc.9) ### Changes @@ -1768,7 +1768,7 @@ Mon, 23 May 2022 12:14:00 GMT ## [9.0.0-rc.8](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.0.0-rc.8) -Thu, 05 May 2022 18:26:29 GMT +Thu, 05 May 2022 18:26:29 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.0.0-rc.7..@fluentui/react-avatar_v9.0.0-rc.8) ### Changes @@ -1785,7 +1785,7 @@ Thu, 05 May 2022 18:26:29 GMT ## [9.0.0-rc.7](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.0.0-rc.7) -Wed, 04 May 2022 13:26:37 GMT +Wed, 04 May 2022 13:26:37 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.0.0-rc.6..@fluentui/react-avatar_v9.0.0-rc.7) ### Changes diff --git a/packages/react-components/react-avatar/src/components/Avatar/useAvatarStyles.styles.ts b/packages/react-components/react-avatar/src/components/Avatar/useAvatarStyles.styles.ts index 5152c8930da4b6..ab0af97480c998 100644 --- a/packages/react-components/react-avatar/src/components/Avatar/useAvatarStyles.styles.ts +++ b/packages/react-components/react-avatar/src/components/Avatar/useAvatarStyles.styles.ts @@ -259,130 +259,163 @@ const useColorStyles = makeStyles({ neutral: { color: tokens.colorNeutralForeground3, backgroundColor: tokens.colorNeutralBackground6, + // The ::before element is the ring when active + '::before': { color: tokens.colorBrandStroke1 }, }, brand: { color: tokens.colorNeutralForegroundStaticInverted, backgroundColor: tokens.colorBrandBackgroundStatic, + '::before': { color: tokens.colorBrandStroke1 }, }, 'dark-red': { color: tokens.colorPaletteDarkRedForeground2, backgroundColor: tokens.colorPaletteDarkRedBackground2, + '::before': { color: tokens.colorPaletteDarkRedBorderActive }, }, cranberry: { color: tokens.colorPaletteCranberryForeground2, backgroundColor: tokens.colorPaletteCranberryBackground2, + '::before': { color: tokens.colorPaletteCranberryBorderActive }, }, red: { color: tokens.colorPaletteRedForeground2, backgroundColor: tokens.colorPaletteRedBackground2, + '::before': { color: tokens.colorPaletteRedBorderActive }, }, pumpkin: { color: tokens.colorPalettePumpkinForeground2, backgroundColor: tokens.colorPalettePumpkinBackground2, + '::before': { color: tokens.colorPalettePumpkinBorderActive }, }, peach: { color: tokens.colorPalettePeachForeground2, backgroundColor: tokens.colorPalettePeachBackground2, + '::before': { color: tokens.colorPalettePeachBorderActive }, }, marigold: { color: tokens.colorPaletteMarigoldForeground2, backgroundColor: tokens.colorPaletteMarigoldBackground2, + '::before': { color: tokens.colorPaletteMarigoldBorderActive }, }, gold: { color: tokens.colorPaletteGoldForeground2, backgroundColor: tokens.colorPaletteGoldBackground2, + '::before': { color: tokens.colorPaletteGoldBorderActive }, }, brass: { color: tokens.colorPaletteBrassForeground2, backgroundColor: tokens.colorPaletteBrassBackground2, + '::before': { color: tokens.colorPaletteBrassBorderActive }, }, brown: { color: tokens.colorPaletteBrownForeground2, backgroundColor: tokens.colorPaletteBrownBackground2, + '::before': { color: tokens.colorPaletteBrownBorderActive }, }, forest: { color: tokens.colorPaletteForestForeground2, backgroundColor: tokens.colorPaletteForestBackground2, + '::before': { color: tokens.colorPaletteForestBorderActive }, }, seafoam: { color: tokens.colorPaletteSeafoamForeground2, backgroundColor: tokens.colorPaletteSeafoamBackground2, + '::before': { color: tokens.colorPaletteSeafoamBorderActive }, }, 'dark-green': { color: tokens.colorPaletteDarkGreenForeground2, backgroundColor: tokens.colorPaletteDarkGreenBackground2, + '::before': { color: tokens.colorPaletteDarkGreenBorderActive }, }, 'light-teal': { color: tokens.colorPaletteLightTealForeground2, backgroundColor: tokens.colorPaletteLightTealBackground2, + '::before': { color: tokens.colorPaletteLightTealBorderActive }, }, teal: { color: tokens.colorPaletteTealForeground2, backgroundColor: tokens.colorPaletteTealBackground2, + '::before': { color: tokens.colorPaletteTealBorderActive }, }, steel: { color: tokens.colorPaletteSteelForeground2, backgroundColor: tokens.colorPaletteSteelBackground2, + '::before': { color: tokens.colorPaletteSteelBorderActive }, }, blue: { color: tokens.colorPaletteBlueForeground2, backgroundColor: tokens.colorPaletteBlueBackground2, + '::before': { color: tokens.colorPaletteBlueBorderActive }, }, 'royal-blue': { color: tokens.colorPaletteRoyalBlueForeground2, backgroundColor: tokens.colorPaletteRoyalBlueBackground2, + '::before': { color: tokens.colorPaletteRoyalBlueBorderActive }, }, cornflower: { color: tokens.colorPaletteCornflowerForeground2, backgroundColor: tokens.colorPaletteCornflowerBackground2, + '::before': { color: tokens.colorPaletteCornflowerBorderActive }, }, navy: { color: tokens.colorPaletteNavyForeground2, backgroundColor: tokens.colorPaletteNavyBackground2, + '::before': { color: tokens.colorPaletteNavyBorderActive }, }, lavender: { color: tokens.colorPaletteLavenderForeground2, backgroundColor: tokens.colorPaletteLavenderBackground2, + '::before': { color: tokens.colorPaletteLavenderBorderActive }, }, purple: { color: tokens.colorPalettePurpleForeground2, backgroundColor: tokens.colorPalettePurpleBackground2, + '::before': { color: tokens.colorPalettePurpleBorderActive }, }, grape: { color: tokens.colorPaletteGrapeForeground2, backgroundColor: tokens.colorPaletteGrapeBackground2, + '::before': { color: tokens.colorPaletteGrapeBorderActive }, }, lilac: { color: tokens.colorPaletteLilacForeground2, backgroundColor: tokens.colorPaletteLilacBackground2, + '::before': { color: tokens.colorPaletteLilacBorderActive }, }, pink: { color: tokens.colorPalettePinkForeground2, backgroundColor: tokens.colorPalettePinkBackground2, + '::before': { color: tokens.colorPalettePinkBorderActive }, }, magenta: { color: tokens.colorPaletteMagentaForeground2, backgroundColor: tokens.colorPaletteMagentaBackground2, + '::before': { color: tokens.colorPaletteMagentaBorderActive }, }, plum: { color: tokens.colorPalettePlumForeground2, backgroundColor: tokens.colorPalettePlumBackground2, + '::before': { color: tokens.colorPalettePlumBorderActive }, }, beige: { color: tokens.colorPaletteBeigeForeground2, backgroundColor: tokens.colorPaletteBeigeBackground2, + '::before': { color: tokens.colorPaletteBeigeBorderActive }, }, mink: { color: tokens.colorPaletteMinkForeground2, backgroundColor: tokens.colorPaletteMinkBackground2, + '::before': { color: tokens.colorPaletteMinkBorderActive }, }, platinum: { color: tokens.colorPalettePlatinumForeground2, backgroundColor: tokens.colorPalettePlatinumBackground2, + '::before': { color: tokens.colorPalettePlatinumBorderActive }, }, anchor: { color: tokens.colorPaletteAnchorForeground2, backgroundColor: tokens.colorPaletteAnchorBackground2, + '::before': { color: tokens.colorPaletteAnchorBorderActive }, }, }); diff --git a/packages/react-components/react-breadcrumb/.npmignore b/packages/react-components/react-breadcrumb/.npmignore new file mode 100644 index 00000000000000..f7ce568a6dbf7c --- /dev/null +++ b/packages/react-components/react-breadcrumb/.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-breadcrumb/src/components/Breadcrumb/__snapshots__/Breadcrumb.test.tsx.snap b/packages/react-components/react-breadcrumb/src/components/Breadcrumb/__snapshots__/Breadcrumb.test.tsx.snap new file mode 100644 index 00000000000000..a022df483a4292 --- /dev/null +++ b/packages/react-components/react-breadcrumb/src/components/Breadcrumb/__snapshots__/Breadcrumb.test.tsx.snap @@ -0,0 +1,11 @@ +// Jest Snapshot v1, https://goo.gl/fbAQLP + +exports[`Breadcrumb renders a default state 1`] = ` +
+
+ Default Breadcrumb +
+
+`; diff --git a/packages/react-components/react-breadcrumb/src/components/Breadcrumb/useBreadcrumbStyles.ts b/packages/react-components/react-breadcrumb/src/components/Breadcrumb/useBreadcrumbStyles.ts new file mode 100644 index 00000000000000..826f00b3b0fd2d --- /dev/null +++ b/packages/react-components/react-breadcrumb/src/components/Breadcrumb/useBreadcrumbStyles.ts @@ -0,0 +1,33 @@ +import { makeStyles, mergeClasses } from '@griffel/react'; +import type { BreadcrumbSlots, BreadcrumbState } from './Breadcrumb.types'; +import type { SlotClassNames } from '@fluentui/react-utilities'; + +export const breadcrumbClassNames: SlotClassNames = { + root: 'fui-Breadcrumb', + // TODO: add class names for all slots on BreadcrumbSlots. + // Should be of the form `: 'fui-Breadcrumb__` +}; + +/** + * Styles for the root slot + */ +const useStyles = makeStyles({ + root: { + // TODO Add default styles for the root element + }, + + // TODO add additional classes for different states and/or slots +}); + +/** + * Apply styling to the Breadcrumb slots based on the state + */ +export const useBreadcrumbStyles_unstable = (state: BreadcrumbState): BreadcrumbState => { + const styles = useStyles(); + state.root.className = mergeClasses(breadcrumbClassNames.root, styles.root, state.root.className); + + // TODO Add class names to slots, for example: + // state.mySlot.className = mergeClasses(styles.mySlot, state.mySlot.className); + + return state; +}; diff --git a/packages/react-components/react-button/src/components/SplitButton/useSplitButtonStyles.styles.ts b/packages/react-components/react-button/src/components/SplitButton/useSplitButtonStyles.styles.ts index 7115b633bda11c..fdb417fc9260f7 100644 --- a/packages/react-components/react-button/src/components/SplitButton/useSplitButtonStyles.styles.ts +++ b/packages/react-components/react-button/src/components/SplitButton/useSplitButtonStyles.styles.ts @@ -82,6 +82,24 @@ const useRootStyles = makeStyles({ }, }, }, + + '@media (forced-colors: active)': { + [`& .${splitButtonClassNames.primaryActionButton}`]: { + borderRightColor: 'HighlightText', + }, + + ':hover': { + [`& .${splitButtonClassNames.primaryActionButton}`]: { + borderRightColor: 'Highlight', + }, + }, + + ':hover:active': { + [`& .${splitButtonClassNames.primaryActionButton}`]: { + borderRightColor: 'Highlight', + }, + }, + }, }, secondary: { /* The secondary styles are exactly the same as the base styles. */ diff --git a/packages/react-components/react-card/CHANGELOG.md b/packages/react-components/react-card/CHANGELOG.md index a5b5754a37b0d9..4e8d628293c468 100644 --- a/packages/react-components/react-card/CHANGELOG.md +++ b/packages/react-components/react-card/CHANGELOG.md @@ -6,7 +6,7 @@ This log was last generated on Tue, 23 Apr 2024 08:17:49 GMT and should not be m ## [9.0.75](https://github.com/microsoft/fluentui/tree/@fluentui/react-card_v9.0.75) -Tue, 23 Apr 2024 08:17:49 GMT +Tue, 23 Apr 2024 08:17:49 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-card_v9.0.74..@fluentui/react-card_v9.0.75) ### Patches @@ -17,7 +17,7 @@ Tue, 23 Apr 2024 08:17:49 GMT ## [9.0.74](https://github.com/microsoft/fluentui/tree/@fluentui/react-card_v9.0.74) -Wed, 17 Apr 2024 21:53:49 GMT +Wed, 17 Apr 2024 21:53:49 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-card_v9.0.73..@fluentui/react-card_v9.0.74) ### Patches @@ -27,7 +27,7 @@ Wed, 17 Apr 2024 21:53:49 GMT ## [9.0.73](https://github.com/microsoft/fluentui/tree/@fluentui/react-card_v9.0.73) -Tue, 02 Apr 2024 09:48:01 GMT +Tue, 02 Apr 2024 09:48:01 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-card_v9.0.72..@fluentui/react-card_v9.0.73) ### Patches @@ -38,7 +38,7 @@ Tue, 02 Apr 2024 09:48:01 GMT ## [9.0.72](https://github.com/microsoft/fluentui/tree/@fluentui/react-card_v9.0.72) -Mon, 18 Mar 2024 19:50:46 GMT +Mon, 18 Mar 2024 19:50:46 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-card_v9.0.71..@fluentui/react-card_v9.0.72) ### Patches @@ -50,7 +50,7 @@ Mon, 18 Mar 2024 19:50:46 GMT ## [9.0.71](https://github.com/microsoft/fluentui/tree/@fluentui/react-card_v9.0.71) -Fri, 15 Mar 2024 21:43:49 GMT +Fri, 15 Mar 2024 21:43:49 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-card_v9.0.70..@fluentui/react-card_v9.0.71) ### Patches @@ -62,7 +62,7 @@ Fri, 15 Mar 2024 21:43:49 GMT ## [9.0.70](https://github.com/microsoft/fluentui/tree/@fluentui/react-card_v9.0.70) -Thu, 07 Mar 2024 19:33:27 GMT +Thu, 07 Mar 2024 19:33:27 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-card_v9.0.69..@fluentui/react-card_v9.0.70) ### Patches @@ -74,7 +74,7 @@ Thu, 07 Mar 2024 19:33:27 GMT ## [9.0.69](https://github.com/microsoft/fluentui/tree/@fluentui/react-card_v9.0.69) -Wed, 28 Feb 2024 02:34:19 GMT +Wed, 28 Feb 2024 02:34:19 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-card_v9.0.68..@fluentui/react-card_v9.0.69) ### Patches @@ -85,7 +85,7 @@ Wed, 28 Feb 2024 02:34:19 GMT ## [9.0.68](https://github.com/microsoft/fluentui/tree/@fluentui/react-card_v9.0.68) -Tue, 20 Feb 2024 14:22:18 GMT +Tue, 20 Feb 2024 14:22:18 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-card_v9.0.67..@fluentui/react-card_v9.0.68) ### Patches @@ -96,7 +96,7 @@ Tue, 20 Feb 2024 14:22:18 GMT ## [9.0.67](https://github.com/microsoft/fluentui/tree/@fluentui/react-card_v9.0.67) -Tue, 06 Feb 2024 17:55:21 GMT +Tue, 06 Feb 2024 17:55:21 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-card_v9.0.66..@fluentui/react-card_v9.0.67) ### Patches @@ -105,7 +105,7 @@ Tue, 06 Feb 2024 17:55:21 GMT ## [9.0.66](https://github.com/microsoft/fluentui/tree/@fluentui/react-card_v9.0.66) -Tue, 30 Jan 2024 23:16:54 GMT +Tue, 30 Jan 2024 23:16:54 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-card_v9.0.65..@fluentui/react-card_v9.0.66) ### Patches @@ -116,7 +116,7 @@ Tue, 30 Jan 2024 23:16:54 GMT ## [9.0.65](https://github.com/microsoft/fluentui/tree/@fluentui/react-card_v9.0.65) -Tue, 23 Jan 2024 15:11:00 GMT +Tue, 23 Jan 2024 15:11:00 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-card_v9.0.64..@fluentui/react-card_v9.0.65) ### Patches @@ -127,7 +127,7 @@ Tue, 23 Jan 2024 15:11:00 GMT ## [9.0.64](https://github.com/microsoft/fluentui/tree/@fluentui/react-card_v9.0.64) -Thu, 18 Jan 2024 14:25:03 GMT +Thu, 18 Jan 2024 14:25:03 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-card_v9.0.63..@fluentui/react-card_v9.0.64) ### Patches @@ -138,7 +138,7 @@ Thu, 18 Jan 2024 14:25:03 GMT ## [9.0.63](https://github.com/microsoft/fluentui/tree/@fluentui/react-card_v9.0.63) -Wed, 17 Jan 2024 16:18:50 GMT +Wed, 17 Jan 2024 16:18:50 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-card_v9.0.62..@fluentui/react-card_v9.0.63) ### Patches @@ -149,7 +149,7 @@ Wed, 17 Jan 2024 16:18:50 GMT ## [9.0.62](https://github.com/microsoft/fluentui/tree/@fluentui/react-card_v9.0.62) -Tue, 16 Jan 2024 13:14:15 GMT +Tue, 16 Jan 2024 13:14:15 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-card_v9.0.61..@fluentui/react-card_v9.0.62) ### Patches @@ -160,7 +160,7 @@ Tue, 16 Jan 2024 13:14:15 GMT ## [9.0.61](https://github.com/microsoft/fluentui/tree/@fluentui/react-card_v9.0.61) -Thu, 11 Jan 2024 09:04:28 GMT +Thu, 11 Jan 2024 09:04:28 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-card_v9.0.60..@fluentui/react-card_v9.0.61) ### Patches @@ -170,7 +170,7 @@ Thu, 11 Jan 2024 09:04:28 GMT ## [9.0.60](https://github.com/microsoft/fluentui/tree/@fluentui/react-card_v9.0.60) -Mon, 08 Jan 2024 16:24:28 GMT +Mon, 08 Jan 2024 16:24:28 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-card_v9.0.59..@fluentui/react-card_v9.0.60) ### Patches @@ -181,7 +181,7 @@ Mon, 08 Jan 2024 16:24:28 GMT ## [9.0.59](https://github.com/microsoft/fluentui/tree/@fluentui/react-card_v9.0.59) -Wed, 03 Jan 2024 09:26:44 GMT +Wed, 03 Jan 2024 09:26:44 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-card_v9.0.58..@fluentui/react-card_v9.0.59) ### Patches @@ -192,7 +192,7 @@ Wed, 03 Jan 2024 09:26:44 GMT ## [9.0.58](https://github.com/microsoft/fluentui/tree/@fluentui/react-card_v9.0.58) -Mon, 18 Dec 2023 14:40:45 GMT +Mon, 18 Dec 2023 14:40:45 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-card_v9.0.57..@fluentui/react-card_v9.0.58) ### Patches @@ -204,7 +204,7 @@ Mon, 18 Dec 2023 14:40:45 GMT ## [9.0.57](https://github.com/microsoft/fluentui/tree/@fluentui/react-card_v9.0.57) -Thu, 14 Dec 2023 09:58:46 GMT +Thu, 14 Dec 2023 09:58:46 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-card_v9.0.56..@fluentui/react-card_v9.0.57) ### Patches @@ -215,7 +215,7 @@ Thu, 14 Dec 2023 09:58:46 GMT ## [9.0.56](https://github.com/microsoft/fluentui/tree/@fluentui/react-card_v9.0.56) -Thu, 30 Nov 2023 13:42:08 GMT +Thu, 30 Nov 2023 13:42:08 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-card_v9.0.55..@fluentui/react-card_v9.0.56) ### Patches @@ -225,7 +225,7 @@ Thu, 30 Nov 2023 13:42:08 GMT ## [9.0.55](https://github.com/microsoft/fluentui/tree/@fluentui/react-card_v9.0.55) -Mon, 20 Nov 2023 09:55:10 GMT +Mon, 20 Nov 2023 09:55:10 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-card_v9.0.54..@fluentui/react-card_v9.0.55) ### Patches @@ -234,7 +234,7 @@ Mon, 20 Nov 2023 09:55:10 GMT ## [9.0.54](https://github.com/microsoft/fluentui/tree/@fluentui/react-card_v9.0.54) -Tue, 14 Nov 2023 17:51:27 GMT +Tue, 14 Nov 2023 17:51:27 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-card_v9.0.53..@fluentui/react-card_v9.0.54) ### Patches @@ -243,7 +243,7 @@ Tue, 14 Nov 2023 17:51:27 GMT ## [9.0.53](https://github.com/microsoft/fluentui/tree/@fluentui/react-card_v9.0.53) -Thu, 09 Nov 2023 17:29:51 GMT +Thu, 09 Nov 2023 17:29:51 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-card_v9.0.52..@fluentui/react-card_v9.0.53) ### Patches @@ -257,7 +257,7 @@ Thu, 09 Nov 2023 17:29:51 GMT ## [9.0.52](https://github.com/microsoft/fluentui/tree/@fluentui/react-card_v9.0.52) -Wed, 01 Nov 2023 12:55:59 GMT +Wed, 01 Nov 2023 12:55:59 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-card_v9.0.51..@fluentui/react-card_v9.0.52) ### Patches @@ -267,7 +267,7 @@ Wed, 01 Nov 2023 12:55:59 GMT ## [9.0.51](https://github.com/microsoft/fluentui/tree/@fluentui/react-card_v9.0.51) -Sat, 28 Oct 2023 23:35:59 GMT +Sat, 28 Oct 2023 23:35:59 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-card_v9.0.50..@fluentui/react-card_v9.0.51) ### Patches @@ -276,7 +276,7 @@ Sat, 28 Oct 2023 23:35:59 GMT ## [9.0.50](https://github.com/microsoft/fluentui/tree/@fluentui/react-card_v9.0.50) -Mon, 23 Oct 2023 09:51:57 GMT +Mon, 23 Oct 2023 09:51:57 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-card_v9.0.49..@fluentui/react-card_v9.0.50) ### Patches @@ -285,7 +285,7 @@ Mon, 23 Oct 2023 09:51:57 GMT ## [9.0.49](https://github.com/microsoft/fluentui/tree/@fluentui/react-card_v9.0.49) -Wed, 18 Oct 2023 17:54:08 GMT +Wed, 18 Oct 2023 17:54:08 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-card_v9.0.48..@fluentui/react-card_v9.0.49) ### Patches @@ -296,7 +296,7 @@ Wed, 18 Oct 2023 17:54:08 GMT ## [9.0.48](https://github.com/microsoft/fluentui/tree/@fluentui/react-card_v9.0.48) -Thu, 12 Oct 2023 14:55:43 GMT +Thu, 12 Oct 2023 14:55:43 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-card_v9.0.47..@fluentui/react-card_v9.0.48) ### Patches @@ -306,7 +306,7 @@ Thu, 12 Oct 2023 14:55:43 GMT ## [9.0.47](https://github.com/microsoft/fluentui/tree/@fluentui/react-card_v9.0.47) -Wed, 11 Oct 2023 13:54:26 GMT +Wed, 11 Oct 2023 13:54:26 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-card_v9.0.46..@fluentui/react-card_v9.0.47) ### Patches @@ -317,7 +317,7 @@ Wed, 11 Oct 2023 13:54:26 GMT ## [9.0.46](https://github.com/microsoft/fluentui/tree/@fluentui/react-card_v9.0.46) -Mon, 09 Oct 2023 20:45:44 GMT +Mon, 09 Oct 2023 20:45:44 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-card_v9.0.45..@fluentui/react-card_v9.0.46) ### Patches @@ -328,7 +328,7 @@ Mon, 09 Oct 2023 20:45:44 GMT ## [9.0.45](https://github.com/microsoft/fluentui/tree/@fluentui/react-card_v9.0.45) -Thu, 05 Oct 2023 15:25:35 GMT +Thu, 05 Oct 2023 15:25:35 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-card_v9.0.44..@fluentui/react-card_v9.0.45) ### Patches @@ -339,7 +339,7 @@ Thu, 05 Oct 2023 15:25:35 GMT ## [9.0.44](https://github.com/microsoft/fluentui/tree/@fluentui/react-card_v9.0.44) -Wed, 04 Oct 2023 08:45:47 GMT +Wed, 04 Oct 2023 08:45:47 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-card_v9.0.43..@fluentui/react-card_v9.0.44) ### Patches @@ -350,7 +350,7 @@ Wed, 04 Oct 2023 08:45:47 GMT ## [9.0.43](https://github.com/microsoft/fluentui/tree/@fluentui/react-card_v9.0.43) -Mon, 02 Oct 2023 08:56:05 GMT +Mon, 02 Oct 2023 08:56:05 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-card_v9.0.42..@fluentui/react-card_v9.0.43) ### Patches @@ -359,7 +359,7 @@ Mon, 02 Oct 2023 08:56:05 GMT ## [9.0.42](https://github.com/microsoft/fluentui/tree/@fluentui/react-card_v9.0.42) -Tue, 26 Sep 2023 17:49:03 GMT +Tue, 26 Sep 2023 17:49:03 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-card_v9.0.41..@fluentui/react-card_v9.0.42) ### Patches @@ -373,7 +373,7 @@ Tue, 26 Sep 2023 17:49:03 GMT ## [9.0.41](https://github.com/microsoft/fluentui/tree/@fluentui/react-card_v9.0.41) -Tue, 26 Sep 2023 15:32:03 GMT +Tue, 26 Sep 2023 15:32:03 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-card_v9.0.40..@fluentui/react-card_v9.0.41) ### Patches @@ -388,7 +388,7 @@ Tue, 26 Sep 2023 15:32:03 GMT ## [9.0.40](https://github.com/microsoft/fluentui/tree/@fluentui/react-card_v9.0.40) -Wed, 20 Sep 2023 17:47:35 GMT +Wed, 20 Sep 2023 17:47:35 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-card_v9.0.39..@fluentui/react-card_v9.0.40) ### Patches @@ -399,7 +399,7 @@ Wed, 20 Sep 2023 17:47:35 GMT ## [9.0.39](https://github.com/microsoft/fluentui/tree/@fluentui/react-card_v9.0.39) -Wed, 20 Sep 2023 14:59:53 GMT +Wed, 20 Sep 2023 14:59:53 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-card_v9.0.38..@fluentui/react-card_v9.0.39) ### Patches @@ -409,7 +409,7 @@ Wed, 20 Sep 2023 14:59:53 GMT ## [9.0.38](https://github.com/microsoft/fluentui/tree/@fluentui/react-card_v9.0.38) -Thu, 14 Sep 2023 16:44:47 GMT +Thu, 14 Sep 2023 16:44:47 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-card_v9.0.37..@fluentui/react-card_v9.0.38) ### Patches @@ -418,7 +418,7 @@ Thu, 14 Sep 2023 16:44:47 GMT ## [9.0.37](https://github.com/microsoft/fluentui/tree/@fluentui/react-card_v9.0.37) -Tue, 12 Sep 2023 08:51:34 GMT +Tue, 12 Sep 2023 08:51:34 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-card_v9.0.36..@fluentui/react-card_v9.0.37) ### Patches @@ -428,7 +428,7 @@ Tue, 12 Sep 2023 08:51:34 GMT ## [9.0.36](https://github.com/microsoft/fluentui/tree/@fluentui/react-card_v9.0.36) -Wed, 06 Sep 2023 13:31:31 GMT +Wed, 06 Sep 2023 13:31:31 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-card_v9.0.35..@fluentui/react-card_v9.0.36) ### Patches @@ -439,7 +439,7 @@ Wed, 06 Sep 2023 13:31:31 GMT ## [9.0.35](https://github.com/microsoft/fluentui/tree/@fluentui/react-card_v9.0.35) -Tue, 05 Sep 2023 15:39:04 GMT +Tue, 05 Sep 2023 15:39:04 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-card_v9.0.34..@fluentui/react-card_v9.0.35) ### Patches @@ -450,7 +450,7 @@ Tue, 05 Sep 2023 15:39:04 GMT ## [9.0.34](https://github.com/microsoft/fluentui/tree/@fluentui/react-card_v9.0.34) -Tue, 05 Sep 2023 13:29:17 GMT +Tue, 05 Sep 2023 13:29:17 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-card_v9.0.33..@fluentui/react-card_v9.0.34) ### Patches @@ -465,7 +465,7 @@ Tue, 05 Sep 2023 13:29:17 GMT ## [9.0.33](https://github.com/microsoft/fluentui/tree/@fluentui/react-card_v9.0.33) -Tue, 29 Aug 2023 12:57:33 GMT +Tue, 29 Aug 2023 12:57:33 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-card_v9.0.32..@fluentui/react-card_v9.0.33) ### Patches @@ -477,7 +477,7 @@ Tue, 29 Aug 2023 12:57:33 GMT ## [9.0.32](https://github.com/microsoft/fluentui/tree/@fluentui/react-card_v9.0.32) -Thu, 24 Aug 2023 10:26:32 GMT +Thu, 24 Aug 2023 10:26:32 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-card_v9.0.31..@fluentui/react-card_v9.0.32) ### Patches @@ -489,7 +489,7 @@ Thu, 24 Aug 2023 10:26:32 GMT ## [9.0.31](https://github.com/microsoft/fluentui/tree/@fluentui/react-card_v9.0.31) -Wed, 23 Aug 2023 12:01:49 GMT +Wed, 23 Aug 2023 12:01:49 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-card_v9.0.30..@fluentui/react-card_v9.0.31) ### Patches @@ -500,7 +500,7 @@ Wed, 23 Aug 2023 12:01:49 GMT ## [9.0.30](https://github.com/microsoft/fluentui/tree/@fluentui/react-card_v9.0.30) -Wed, 16 Aug 2023 17:41:08 GMT +Wed, 16 Aug 2023 17:41:08 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-card_v9.0.29..@fluentui/react-card_v9.0.30) ### Patches @@ -509,7 +509,7 @@ Wed, 16 Aug 2023 17:41:08 GMT ## [9.0.29](https://github.com/microsoft/fluentui/tree/@fluentui/react-card_v9.0.29) -Wed, 16 Aug 2023 11:38:33 GMT +Wed, 16 Aug 2023 11:38:33 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-card_v9.0.28..@fluentui/react-card_v9.0.29) ### Patches @@ -518,7 +518,7 @@ Wed, 16 Aug 2023 11:38:33 GMT ## [9.0.28](https://github.com/microsoft/fluentui/tree/@fluentui/react-card_v9.0.28) -Fri, 11 Aug 2023 12:14:26 GMT +Fri, 11 Aug 2023 12:14:26 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-card_v9.0.27..@fluentui/react-card_v9.0.28) ### Patches @@ -529,7 +529,7 @@ Fri, 11 Aug 2023 12:14:26 GMT ## [9.0.27](https://github.com/microsoft/fluentui/tree/@fluentui/react-card_v9.0.27) -Wed, 09 Aug 2023 13:16:52 GMT +Wed, 09 Aug 2023 13:16:52 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-card_v9.0.26..@fluentui/react-card_v9.0.27) ### Patches @@ -542,7 +542,7 @@ Wed, 09 Aug 2023 13:16:52 GMT ## [9.0.26](https://github.com/microsoft/fluentui/tree/@fluentui/react-card_v9.0.26) -Fri, 04 Aug 2023 08:52:58 GMT +Fri, 04 Aug 2023 08:52:58 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-card_v9.0.25..@fluentui/react-card_v9.0.26) ### Patches @@ -554,7 +554,7 @@ Fri, 04 Aug 2023 08:52:58 GMT ## [9.0.25](https://github.com/microsoft/fluentui/tree/@fluentui/react-card_v9.0.25) -Tue, 01 Aug 2023 10:17:21 GMT +Tue, 01 Aug 2023 10:17:21 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-card_v9.0.24..@fluentui/react-card_v9.0.25) ### Patches @@ -563,7 +563,7 @@ Tue, 01 Aug 2023 10:17:21 GMT ## [9.0.24](https://github.com/microsoft/fluentui/tree/@fluentui/react-card_v9.0.24) -Tue, 25 Jul 2023 13:29:23 GMT +Tue, 25 Jul 2023 13:29:23 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-card_v9.0.23..@fluentui/react-card_v9.0.24) ### Patches @@ -572,7 +572,7 @@ Tue, 25 Jul 2023 13:29:23 GMT ## [9.0.23](https://github.com/microsoft/fluentui/tree/@fluentui/react-card_v9.0.23) -Thu, 20 Jul 2023 18:27:27 GMT +Thu, 20 Jul 2023 18:27:27 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-card_v9.0.22..@fluentui/react-card_v9.0.23) ### Patches @@ -581,7 +581,7 @@ Thu, 20 Jul 2023 18:27:27 GMT ## [9.0.22](https://github.com/microsoft/fluentui/tree/@fluentui/react-card_v9.0.22) -Mon, 17 Jul 2023 21:27:35 GMT +Mon, 17 Jul 2023 21:27:35 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-card_v9.0.21..@fluentui/react-card_v9.0.22) ### Patches @@ -590,7 +590,7 @@ Mon, 17 Jul 2023 21:27:35 GMT ## [9.0.21](https://github.com/microsoft/fluentui/tree/@fluentui/react-card_v9.0.21) -Tue, 11 Jul 2023 18:46:36 GMT +Tue, 11 Jul 2023 18:46:36 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-card_v9.0.20..@fluentui/react-card_v9.0.21) ### Patches @@ -601,7 +601,7 @@ Tue, 11 Jul 2023 18:46:36 GMT ## [9.0.20](https://github.com/microsoft/fluentui/tree/@fluentui/react-card_v9.0.20) -Mon, 03 Jul 2023 13:34:28 GMT +Mon, 03 Jul 2023 13:34:28 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-card_v9.0.19..@fluentui/react-card_v9.0.20) ### Patches @@ -611,7 +611,7 @@ Mon, 03 Jul 2023 13:34:28 GMT ## [9.0.19](https://github.com/microsoft/fluentui/tree/@fluentui/react-card_v9.0.19) -Mon, 03 Jul 2023 11:57:14 GMT +Mon, 03 Jul 2023 11:57:14 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-card_v9.0.18..@fluentui/react-card_v9.0.19) ### Patches @@ -623,7 +623,7 @@ Mon, 03 Jul 2023 11:57:14 GMT ## [9.0.18](https://github.com/microsoft/fluentui/tree/@fluentui/react-card_v9.0.18) -Wed, 28 Jun 2023 11:12:23 GMT +Wed, 28 Jun 2023 11:12:23 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-card_v9.0.17..@fluentui/react-card_v9.0.18) ### Patches @@ -635,7 +635,7 @@ Wed, 28 Jun 2023 11:12:23 GMT ## [9.0.17](https://github.com/microsoft/fluentui/tree/@fluentui/react-card_v9.0.17) -Tue, 27 Jun 2023 11:21:23 GMT +Tue, 27 Jun 2023 11:21:23 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-card_v9.0.16..@fluentui/react-card_v9.0.17) ### Patches @@ -645,7 +645,7 @@ Tue, 27 Jun 2023 11:21:23 GMT ## [9.0.16](https://github.com/microsoft/fluentui/tree/@fluentui/react-card_v9.0.16) -Mon, 26 Jun 2023 09:53:53 GMT +Mon, 26 Jun 2023 09:53:53 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-card_v9.0.15..@fluentui/react-card_v9.0.16) ### Patches @@ -658,7 +658,7 @@ Mon, 26 Jun 2023 09:53:53 GMT ## [9.0.15](https://github.com/microsoft/fluentui/tree/@fluentui/react-card_v9.0.15) -Tue, 20 Jun 2023 12:39:07 GMT +Tue, 20 Jun 2023 12:39:07 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-card_v9.0.14..@fluentui/react-card_v9.0.15) ### Patches @@ -672,7 +672,7 @@ Tue, 20 Jun 2023 12:39:07 GMT ## [9.0.14](https://github.com/microsoft/fluentui/tree/@fluentui/react-card_v9.0.14) -Wed, 31 May 2023 06:46:09 GMT +Wed, 31 May 2023 06:46:09 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-card_v9.0.13..@fluentui/react-card_v9.0.14) ### Patches @@ -688,7 +688,7 @@ Wed, 31 May 2023 06:46:09 GMT ## [9.0.13](https://github.com/microsoft/fluentui/tree/@fluentui/react-card_v9.0.13) -Thu, 25 May 2023 10:00:48 GMT +Thu, 25 May 2023 10:00:48 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-card_v9.0.12..@fluentui/react-card_v9.0.13) ### Patches @@ -700,7 +700,7 @@ Thu, 25 May 2023 10:00:48 GMT ## [9.0.12](https://github.com/microsoft/fluentui/tree/@fluentui/react-card_v9.0.12) -Wed, 24 May 2023 20:45:24 GMT +Wed, 24 May 2023 20:45:24 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-card_v9.0.11..@fluentui/react-card_v9.0.12) ### Patches @@ -710,7 +710,7 @@ Wed, 24 May 2023 20:45:24 GMT ## [9.0.11](https://github.com/microsoft/fluentui/tree/@fluentui/react-card_v9.0.11) -Thu, 18 May 2023 13:11:08 GMT +Thu, 18 May 2023 13:11:08 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-card_v9.0.10..@fluentui/react-card_v9.0.11) ### Patches @@ -720,7 +720,7 @@ Thu, 18 May 2023 13:11:08 GMT ## [9.0.10](https://github.com/microsoft/fluentui/tree/@fluentui/react-card_v9.0.10) -Thu, 18 May 2023 00:39:03 GMT +Thu, 18 May 2023 00:39:03 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-card_v9.0.9..@fluentui/react-card_v9.0.10) ### Patches @@ -732,7 +732,7 @@ Thu, 18 May 2023 00:39:03 GMT ## [9.0.9](https://github.com/microsoft/fluentui/tree/@fluentui/react-card_v9.0.9) -Fri, 12 May 2023 20:28:18 GMT +Fri, 12 May 2023 20:28:18 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-card_v9.0.8..@fluentui/react-card_v9.0.9) ### Patches @@ -749,7 +749,7 @@ Fri, 12 May 2023 20:28:18 GMT ## [9.0.8](https://github.com/microsoft/fluentui/tree/@fluentui/react-card_v9.0.8) -Mon, 24 Apr 2023 08:12:32 GMT +Mon, 24 Apr 2023 08:12:32 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-card_v9.0.7..@fluentui/react-card_v9.0.8) ### Patches @@ -760,7 +760,7 @@ Mon, 24 Apr 2023 08:12:32 GMT ## [9.0.7](https://github.com/microsoft/fluentui/tree/@fluentui/react-card_v9.0.7) -Mon, 17 Apr 2023 17:53:45 GMT +Mon, 17 Apr 2023 17:53:45 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-card_v9.0.6..@fluentui/react-card_v9.0.7) ### Patches @@ -772,7 +772,7 @@ Mon, 17 Apr 2023 17:53:45 GMT ## [9.0.6](https://github.com/microsoft/fluentui/tree/@fluentui/react-card_v9.0.6) -Wed, 12 Apr 2023 09:31:45 GMT +Wed, 12 Apr 2023 09:31:45 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-card_v9.0.5..@fluentui/react-card_v9.0.6) ### Patches @@ -783,7 +783,7 @@ Wed, 12 Apr 2023 09:31:45 GMT ## [9.0.5](https://github.com/microsoft/fluentui/tree/@fluentui/react-card_v9.0.5) -Tue, 04 Apr 2023 18:44:50 GMT +Tue, 04 Apr 2023 18:44:50 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-card_v9.0.3..@fluentui/react-card_v9.0.5) ### Patches @@ -794,7 +794,7 @@ Tue, 04 Apr 2023 18:44:50 GMT ## [9.0.3](https://github.com/microsoft/fluentui/tree/@fluentui/react-card_v9.0.3) -Tue, 21 Mar 2023 21:23:26 GMT +Tue, 21 Mar 2023 21:23:26 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-card_v9.0.2..@fluentui/react-card_v9.0.3) ### Patches @@ -810,7 +810,7 @@ Tue, 21 Mar 2023 21:23:26 GMT ## [9.0.2](https://github.com/microsoft/fluentui/tree/@fluentui/react-card_v9.0.2) -Thu, 16 Mar 2023 14:36:59 GMT +Thu, 16 Mar 2023 14:36:59 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-card_v9.0.1..@fluentui/react-card_v9.0.2) ### Patches @@ -821,7 +821,7 @@ Thu, 16 Mar 2023 14:36:59 GMT ## [9.0.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-card_v9.0.1) -Wed, 15 Mar 2023 10:19:50 GMT +Wed, 15 Mar 2023 10:19:50 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-card_v9.0.0..@fluentui/react-card_v9.0.1) ### Patches @@ -833,7 +833,7 @@ Wed, 15 Mar 2023 10:19:50 GMT ## [9.0.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-card_v9.0.0) -Mon, 13 Mar 2023 08:58:23 GMT +Mon, 13 Mar 2023 08:58:23 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-card_v9.0.0-rc.2..@fluentui/react-card_v9.0.0) ### Patches @@ -845,7 +845,7 @@ Mon, 13 Mar 2023 08:58:23 GMT ## [9.0.0-rc.2](https://github.com/microsoft/fluentui/tree/@fluentui/react-card_v9.0.0-rc.2) -Fri, 10 Mar 2023 07:14:01 GMT +Fri, 10 Mar 2023 07:14:01 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-card_v9.0.0-rc.1..@fluentui/react-card_v9.0.0-rc.2) ### Changes @@ -856,7 +856,7 @@ Fri, 10 Mar 2023 07:14:01 GMT ## [9.0.0-rc.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-card_v9.0.0-rc.1) -Wed, 08 Mar 2023 17:42:28 GMT +Wed, 08 Mar 2023 17:42:28 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-card_v9.0.0-beta.47..@fluentui/react-card_v9.0.0-rc.1) ### Changes @@ -868,7 +868,7 @@ Wed, 08 Mar 2023 17:42:28 GMT ## [9.0.0-beta.47](https://github.com/microsoft/fluentui/tree/@fluentui/react-card_v9.0.0-beta.47) -Wed, 22 Feb 2023 23:06:04 GMT +Wed, 22 Feb 2023 23:06:04 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-card_v9.0.0-beta.46..@fluentui/react-card_v9.0.0-beta.47) ### Changes @@ -877,7 +877,7 @@ Wed, 22 Feb 2023 23:06:04 GMT ## [9.0.0-beta.46](https://github.com/microsoft/fluentui/tree/@fluentui/react-card_v9.0.0-beta.46) -Wed, 15 Feb 2023 11:44:52 GMT +Wed, 15 Feb 2023 11:44:52 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-card_v9.0.0-beta.45..@fluentui/react-card_v9.0.0-beta.46) ### Changes @@ -888,7 +888,7 @@ Wed, 15 Feb 2023 11:44:52 GMT ## [9.0.0-beta.45](https://github.com/microsoft/fluentui/tree/@fluentui/react-card_v9.0.0-beta.45) -Mon, 13 Feb 2023 23:43:14 GMT +Mon, 13 Feb 2023 23:43:14 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-card_v9.0.0-beta.44..@fluentui/react-card_v9.0.0-beta.45) ### Changes @@ -899,7 +899,7 @@ Mon, 13 Feb 2023 23:43:14 GMT ## [9.0.0-beta.44](https://github.com/microsoft/fluentui/tree/@fluentui/react-card_v9.0.0-beta.44) -Fri, 10 Feb 2023 08:49:58 GMT +Fri, 10 Feb 2023 08:49:58 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-card_v9.0.0-beta.43..@fluentui/react-card_v9.0.0-beta.44) ### Changes @@ -911,7 +911,7 @@ Fri, 10 Feb 2023 08:49:58 GMT ## [9.0.0-beta.43](https://github.com/microsoft/fluentui/tree/@fluentui/react-card_v9.0.0-beta.43) -Tue, 07 Feb 2023 14:13:09 GMT +Tue, 07 Feb 2023 14:13:09 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-card_v9.0.0-beta.42..@fluentui/react-card_v9.0.0-beta.43) ### Changes @@ -922,7 +922,7 @@ Tue, 07 Feb 2023 14:13:09 GMT ## [9.0.0-beta.42](https://github.com/microsoft/fluentui/tree/@fluentui/react-card_v9.0.0-beta.42) -Tue, 31 Jan 2023 19:53:58 GMT +Tue, 31 Jan 2023 19:53:58 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-card_v9.0.0-beta.41..@fluentui/react-card_v9.0.0-beta.42) ### Changes @@ -933,7 +933,7 @@ Tue, 31 Jan 2023 19:53:58 GMT ## [9.0.0-beta.41](https://github.com/microsoft/fluentui/tree/@fluentui/react-card_v9.0.0-beta.41) -Thu, 26 Jan 2023 13:31:03 GMT +Thu, 26 Jan 2023 13:31:03 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-card_v9.0.0-beta.40..@fluentui/react-card_v9.0.0-beta.41) ### Changes @@ -944,7 +944,7 @@ Thu, 26 Jan 2023 13:31:03 GMT ## [9.0.0-beta.40](https://github.com/microsoft/fluentui/tree/@fluentui/react-card_v9.0.0-beta.40) -Wed, 18 Jan 2023 16:32:57 GMT +Wed, 18 Jan 2023 16:32:57 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-card_v9.0.0-beta.39..@fluentui/react-card_v9.0.0-beta.40) ### Changes @@ -954,7 +954,7 @@ Wed, 18 Jan 2023 16:32:57 GMT ## [9.0.0-beta.39](https://github.com/microsoft/fluentui/tree/@fluentui/react-card_v9.0.0-beta.39) -Mon, 16 Jan 2023 08:38:56 GMT +Mon, 16 Jan 2023 08:38:56 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-card_v9.0.0-beta.38..@fluentui/react-card_v9.0.0-beta.39) ### Changes @@ -964,7 +964,7 @@ Mon, 16 Jan 2023 08:38:56 GMT ## [9.0.0-beta.38](https://github.com/microsoft/fluentui/tree/@fluentui/react-card_v9.0.0-beta.38) -Mon, 09 Jan 2023 14:34:55 GMT +Mon, 09 Jan 2023 14:34:55 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-card_v9.0.0-beta.37..@fluentui/react-card_v9.0.0-beta.38) ### Changes @@ -975,7 +975,7 @@ Mon, 09 Jan 2023 14:34:55 GMT ## [9.0.0-beta.37](https://github.com/microsoft/fluentui/tree/@fluentui/react-card_v9.0.0-beta.37) -Wed, 04 Jan 2023 01:40:54 GMT +Wed, 04 Jan 2023 01:40:54 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-card_v9.0.0-beta.36..@fluentui/react-card_v9.0.0-beta.37) ### Changes @@ -988,7 +988,7 @@ Wed, 04 Jan 2023 01:40:54 GMT ## [9.0.0-beta.36](https://github.com/microsoft/fluentui/tree/@fluentui/react-card_v9.0.0-beta.36) -Wed, 21 Dec 2022 10:20:33 GMT +Wed, 21 Dec 2022 10:20:33 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-card_v9.0.0-beta.35..@fluentui/react-card_v9.0.0-beta.36) ### Changes @@ -999,7 +999,7 @@ Wed, 21 Dec 2022 10:20:33 GMT ## [9.0.0-beta.35](https://github.com/microsoft/fluentui/tree/@fluentui/react-card_v9.0.0-beta.35) -Tue, 20 Dec 2022 14:59:21 GMT +Tue, 20 Dec 2022 14:59:21 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-card_v9.0.0-beta.34..@fluentui/react-card_v9.0.0-beta.35) ### Changes @@ -1013,7 +1013,7 @@ Tue, 20 Dec 2022 14:59:21 GMT ## [9.0.0-beta.34](https://github.com/microsoft/fluentui/tree/@fluentui/react-card_v9.0.0-beta.34) -Mon, 05 Dec 2022 18:29:39 GMT +Mon, 05 Dec 2022 18:29:39 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-card_v9.0.0-beta.33..@fluentui/react-card_v9.0.0-beta.34) ### Changes @@ -1024,7 +1024,7 @@ Mon, 05 Dec 2022 18:29:39 GMT ## [9.0.0-beta.33](https://github.com/microsoft/fluentui/tree/@fluentui/react-card_v9.0.0-beta.33) -Thu, 17 Nov 2022 23:05:35 GMT +Thu, 17 Nov 2022 23:05:35 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-card_v9.0.0-beta.32..@fluentui/react-card_v9.0.0-beta.33) ### Changes @@ -1035,7 +1035,7 @@ Thu, 17 Nov 2022 23:05:35 GMT ## [9.0.0-beta.32](https://github.com/microsoft/fluentui/tree/@fluentui/react-card_v9.0.0-beta.32) -Fri, 11 Nov 2022 14:57:56 GMT +Fri, 11 Nov 2022 14:57:56 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-card_v9.0.0-beta.31..@fluentui/react-card_v9.0.0-beta.32) ### Changes @@ -1050,7 +1050,7 @@ Fri, 11 Nov 2022 14:57:56 GMT ## [9.0.0-beta.31](https://github.com/microsoft/fluentui/tree/@fluentui/react-card_v9.0.0-beta.31) -Wed, 02 Nov 2022 11:57:49 GMT +Wed, 02 Nov 2022 11:57:49 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-card_v9.0.0-beta.30..@fluentui/react-card_v9.0.0-beta.31) ### Changes @@ -1064,7 +1064,7 @@ Wed, 02 Nov 2022 11:57:49 GMT ## [9.0.0-beta.30](https://github.com/microsoft/fluentui/tree/@fluentui/react-card_v9.0.0-beta.30) -Tue, 25 Oct 2022 00:35:40 GMT +Tue, 25 Oct 2022 00:35:40 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-card_v9.0.0-beta.29..@fluentui/react-card_v9.0.0-beta.30) ### Changes @@ -1074,7 +1074,7 @@ Tue, 25 Oct 2022 00:35:40 GMT ## [9.0.0-beta.29](https://github.com/microsoft/fluentui/tree/@fluentui/react-card_v9.0.0-beta.29) -Thu, 20 Oct 2022 08:39:28 GMT +Thu, 20 Oct 2022 08:39:28 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-card_v9.0.0-beta.28..@fluentui/react-card_v9.0.0-beta.29) ### Changes @@ -1091,7 +1091,7 @@ Thu, 20 Oct 2022 08:39:28 GMT ## [9.0.0-beta.28](https://github.com/microsoft/fluentui/tree/@fluentui/react-card_v9.0.0-beta.28) -Thu, 13 Oct 2022 11:02:44 GMT +Thu, 13 Oct 2022 11:02:44 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-card_v9.0.0-beta.27..@fluentui/react-card_v9.0.0-beta.28) ### Changes @@ -1105,7 +1105,7 @@ Thu, 13 Oct 2022 11:02:44 GMT ## [9.0.0-beta.27](https://github.com/microsoft/fluentui/tree/@fluentui/react-card_v9.0.0-beta.27) -Mon, 03 Oct 2022 22:24:42 GMT +Mon, 03 Oct 2022 22:24:42 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-card_v9.0.0-beta.26..@fluentui/react-card_v9.0.0-beta.27) ### Changes @@ -1115,7 +1115,7 @@ Mon, 03 Oct 2022 22:24:42 GMT ## [9.0.0-beta.26](https://github.com/microsoft/fluentui/tree/@fluentui/react-card_v9.0.0-beta.26) -Tue, 20 Sep 2022 20:55:45 GMT +Tue, 20 Sep 2022 20:55:45 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-card_v9.0.0-beta.25..@fluentui/react-card_v9.0.0-beta.26) ### Changes @@ -1126,7 +1126,7 @@ Tue, 20 Sep 2022 20:55:45 GMT ## [9.0.0-beta.25](https://github.com/microsoft/fluentui/tree/@fluentui/react-card_v9.0.0-beta.25) -Thu, 15 Sep 2022 09:49:58 GMT +Thu, 15 Sep 2022 09:49:58 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-card_v9.0.0-beta.24..@fluentui/react-card_v9.0.0-beta.25) ### Changes @@ -1141,7 +1141,7 @@ Thu, 15 Sep 2022 09:49:58 GMT ## [9.0.0-beta.24](https://github.com/microsoft/fluentui/tree/@fluentui/react-card_v9.0.0-beta.24) -Wed, 03 Aug 2022 16:03:40 GMT +Wed, 03 Aug 2022 16:03:40 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-card_v9.0.0-beta.23..@fluentui/react-card_v9.0.0-beta.24) ### Changes @@ -1154,7 +1154,7 @@ Wed, 03 Aug 2022 16:03:40 GMT ## [9.0.0-beta.23](https://github.com/microsoft/fluentui/tree/@fluentui/react-card_v9.0.0-beta.23) -Thu, 14 Jul 2022 21:21:09 GMT +Thu, 14 Jul 2022 21:21:09 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-card_v9.0.0-beta.22..@fluentui/react-card_v9.0.0-beta.23) ### Changes @@ -1167,7 +1167,7 @@ Thu, 14 Jul 2022 21:21:09 GMT ## [9.0.0-beta.22](https://github.com/microsoft/fluentui/tree/@fluentui/react-card_v9.0.0-beta.22) -Thu, 14 Jul 2022 17:06:16 GMT +Thu, 14 Jul 2022 17:06:16 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-card_v9.0.0-beta.21..@fluentui/react-card_v9.0.0-beta.22) ### Changes @@ -1182,7 +1182,7 @@ Thu, 14 Jul 2022 17:06:16 GMT ## [9.0.0-beta.21](https://github.com/microsoft/fluentui/tree/@fluentui/react-card_v9.0.0-beta.21) -Tue, 28 Jun 2022 17:39:47 GMT +Tue, 28 Jun 2022 17:39:47 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-card_v9.0.0-beta.20..@fluentui/react-card_v9.0.0-beta.21) ### Changes @@ -1195,7 +1195,7 @@ Tue, 28 Jun 2022 17:39:47 GMT ## [9.0.0-beta.20](https://github.com/microsoft/fluentui/tree/@fluentui/react-card_v9.0.0-beta.20) -Tue, 28 Jun 2022 15:13:27 GMT +Tue, 28 Jun 2022 15:13:27 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-card_v9.0.0-beta.19..@fluentui/react-card_v9.0.0-beta.20) ### Changes @@ -1214,7 +1214,7 @@ Tue, 28 Jun 2022 15:13:27 GMT ## [9.0.0-beta.19](https://github.com/microsoft/fluentui/tree/@fluentui/react-card_v9.0.0-beta.19) -Thu, 23 Jun 2022 14:25:31 GMT +Thu, 23 Jun 2022 14:25:31 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-card_v9.0.0-beta.18..@fluentui/react-card_v9.0.0-beta.19) ### Changes @@ -1226,7 +1226,7 @@ Thu, 23 Jun 2022 14:25:31 GMT ## [9.0.0-beta.18](https://github.com/microsoft/fluentui/tree/@fluentui/react-card_v9.0.0-beta.18) -Tue, 31 May 2022 21:28:36 GMT +Tue, 31 May 2022 21:28:36 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-card_v9.0.0-beta.17..@fluentui/react-card_v9.0.0-beta.18) ### Changes @@ -1241,7 +1241,7 @@ Tue, 31 May 2022 21:28:36 GMT ## [9.0.0-beta.17](https://github.com/microsoft/fluentui/tree/@fluentui/react-card_v9.0.0-beta.17) -Thu, 26 May 2022 21:01:32 GMT +Thu, 26 May 2022 21:01:32 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-card_v9.0.0-beta.16..@fluentui/react-card_v9.0.0-beta.17) ### Changes @@ -1251,7 +1251,7 @@ Thu, 26 May 2022 21:01:32 GMT ## [9.0.0-beta.16](https://github.com/microsoft/fluentui/tree/@fluentui/react-card_v9.0.0-beta.16) -Mon, 23 May 2022 18:56:42 GMT +Mon, 23 May 2022 18:56:42 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-card_v9.0.0-beta.15..@fluentui/react-card_v9.0.0-beta.16) ### Changes @@ -1266,7 +1266,7 @@ Mon, 23 May 2022 18:56:42 GMT ## [9.0.0-beta.15](https://github.com/microsoft/fluentui/tree/@fluentui/react-card_v9.0.0-beta.15) -Mon, 23 May 2022 12:14:05 GMT +Mon, 23 May 2022 12:14:05 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-card_v9.0.0-beta.14..@fluentui/react-card_v9.0.0-beta.15) ### Changes @@ -1285,7 +1285,7 @@ Mon, 23 May 2022 12:14:05 GMT ## [9.0.0-beta.14](https://github.com/microsoft/fluentui/tree/@fluentui/react-card_v9.0.0-beta.14) -Thu, 05 May 2022 18:26:29 GMT +Thu, 05 May 2022 18:26:29 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-card_v9.0.0-beta.13..@fluentui/react-card_v9.0.0-beta.14) ### Changes @@ -1300,7 +1300,7 @@ Thu, 05 May 2022 18:26:29 GMT ## [9.0.0-beta.13](https://github.com/microsoft/fluentui/tree/@fluentui/react-card_v9.0.0-beta.13) -Wed, 04 May 2022 13:26:38 GMT +Wed, 04 May 2022 13:26:38 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-card_v9.0.0-beta.12..@fluentui/react-card_v9.0.0-beta.13) ### Changes diff --git a/packages/react-components/react-checkbox/bundle-size/CheckboxField.fixture.js b/packages/react-components/react-checkbox/bundle-size/CheckboxField.fixture.js new file mode 100644 index 00000000000000..a609d637d14281 --- /dev/null +++ b/packages/react-components/react-checkbox/bundle-size/CheckboxField.fixture.js @@ -0,0 +1,7 @@ +import { CheckboxField_unstable } from '@fluentui/react-checkbox'; + +console.log(CheckboxField_unstable); + +export default { + name: 'CheckboxField', +}; diff --git a/packages/react-components/react-checkbox/etc/react-checkbox.api.md b/packages/react-components/react-checkbox/etc/react-checkbox.api.md index c49f11c4a11863..11259dcceffeb9 100644 --- a/packages/react-components/react-checkbox/etc/react-checkbox.api.md +++ b/packages/react-components/react-checkbox/etc/react-checkbox.api.md @@ -8,6 +8,8 @@ import { ComponentProps } from '@fluentui/react-utilities'; import { ComponentState } from '@fluentui/react-utilities'; +import { DeprecatedFieldProps } from '@fluentui/react-field'; +import { FieldProps } from '@fluentui/react-field'; import type { ForwardRefComponent } from '@fluentui/react-utilities'; import { Label } from '@fluentui/react-label'; import * as React_2 from 'react'; @@ -20,6 +22,25 @@ export const Checkbox: ForwardRefComponent; // @public (undocumented) export const checkboxClassNames: SlotClassNames; +// @public @deprecated (undocumented) +export const CheckboxField_unstable: ForwardRefComponent; + +// @public @deprecated (undocumented) +export const checkboxFieldClassNames: { + control: string; + root: string; + label: string; + validationMessage: string; + validationMessageIcon: string; + hint: string; +}; + +// @public @deprecated (undocumented) +export type CheckboxFieldProps_unstable = Omit, 'label'> & { + label?: CheckboxProps['label']; + fieldLabel?: FieldProps['label']; +}; + // @public export interface CheckboxOnChangeData { // (undocumented) diff --git a/packages/react-components/react-checkbox/src/components/CheckboxField/CheckboxField.tsx b/packages/react-components/react-checkbox/src/components/CheckboxField/CheckboxField.tsx new file mode 100644 index 00000000000000..fa6e75870f1a9e --- /dev/null +++ b/packages/react-components/react-checkbox/src/components/CheckboxField/CheckboxField.tsx @@ -0,0 +1,28 @@ +/* eslint-disable deprecation/deprecation */ +import { + DeprecatedFieldProps, + FieldProps, + getDeprecatedFieldClassNames, + makeDeprecatedField, +} from '@fluentui/react-field'; +import type { ForwardRefComponent } from '@fluentui/react-utilities'; +import { Checkbox, checkboxClassNames, CheckboxProps } from '../../Checkbox'; + +/** @deprecated Use Field with a Checkbox inside: `` */ +export type CheckboxFieldProps = Omit, 'label'> & { + label?: CheckboxProps['label']; + fieldLabel?: FieldProps['label']; +}; + +/** @deprecated Use Field with a Checkbox inside: `` */ +export const checkboxFieldClassNames = getDeprecatedFieldClassNames(checkboxClassNames.root); + +/** @deprecated Use Field with a Checkbox inside: `` */ +export const CheckboxField: ForwardRefComponent = makeDeprecatedField(Checkbox, { + mapProps: (props: CheckboxFieldProps) => ({ + ...props, + label: props.fieldLabel, + required: undefined, + control: { ...props.control, required: props.required, label: props.label }, + }), +}); diff --git a/packages/react-components/react-checkbox/src/index.ts b/packages/react-components/react-checkbox/src/index.ts index 1bb3babd0ea8bb..9d8af4ef3f85b8 100644 --- a/packages/react-components/react-checkbox/src/index.ts +++ b/packages/react-components/react-checkbox/src/index.ts @@ -6,3 +6,8 @@ export { useCheckbox_unstable, } from './Checkbox'; export type { CheckboxOnChangeData, CheckboxProps, CheckboxSlots, CheckboxState } from './Checkbox'; + +// eslint-disable-next-line deprecation/deprecation +export { CheckboxField as CheckboxField_unstable, checkboxFieldClassNames } from './CheckboxField'; +// eslint-disable-next-line deprecation/deprecation +export type { CheckboxFieldProps as CheckboxFieldProps_unstable } from './CheckboxField'; diff --git a/packages/react-components/react-combobox/bundle-size/ComboboxField.fixture.js b/packages/react-components/react-combobox/bundle-size/ComboboxField.fixture.js new file mode 100644 index 00000000000000..c7342daccaf6a8 --- /dev/null +++ b/packages/react-components/react-combobox/bundle-size/ComboboxField.fixture.js @@ -0,0 +1,7 @@ +import { ComboboxField_unstable } from '@fluentui/react-combobox'; + +console.log(ComboboxField_unstable); + +export default { + name: 'ComboboxField', +}; diff --git a/packages/react-components/react-combobox/src/components/ComboboxField/ComboboxField.tsx b/packages/react-components/react-combobox/src/components/ComboboxField/ComboboxField.tsx new file mode 100644 index 00000000000000..3cab43ec2b7328 --- /dev/null +++ b/packages/react-components/react-combobox/src/components/ComboboxField/ComboboxField.tsx @@ -0,0 +1,11 @@ +/* eslint-disable deprecation/deprecation */ +import { DeprecatedFieldProps, getDeprecatedFieldClassNames, makeDeprecatedField } from '@fluentui/react-field'; +import type { ForwardRefComponent } from '@fluentui/react-utilities'; +import { Combobox, comboboxClassNames, ComboboxProps } from '../../Combobox'; + +/** @deprecated Use Field with Combobox: `` */ +export type ComboboxFieldProps = DeprecatedFieldProps; +/** @deprecated Use Field with Combobox: `` */ +export const comboboxFieldClassNames = getDeprecatedFieldClassNames(comboboxClassNames.root); +/** @deprecated Use Field with Combobox: `` */ +export const ComboboxField: ForwardRefComponent = makeDeprecatedField(Combobox); diff --git a/packages/react-components/react-components/CHANGELOG.md b/packages/react-components/react-components/CHANGELOG.md index 0d7c6b4b9480ee..26cfc548faa7c7 100644 --- a/packages/react-components/react-components/CHANGELOG.md +++ b/packages/react-components/react-components/CHANGELOG.md @@ -6,7 +6,7 @@ This log was last generated on Tue, 23 Apr 2024 08:17:46 GMT and should not be m ## [9.49.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-components_v9.49.0) -Tue, 23 Apr 2024 08:17:46 GMT +Tue, 23 Apr 2024 08:17:46 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-components_v9.48.0..@fluentui/react-components_v9.49.0) ### Minor changes @@ -36,7 +36,7 @@ Tue, 23 Apr 2024 08:17:46 GMT ## [9.48.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-components_v9.48.0) -Thu, 18 Apr 2024 12:43:14 GMT +Thu, 18 Apr 2024 12:43:14 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-components_v9.48.0..@fluentui/react-components_v9.48.0) ### Patches @@ -46,7 +46,7 @@ Thu, 18 Apr 2024 12:43:14 GMT ## [9.48.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-components_v9.48.0) -Wed, 17 Apr 2024 21:53:46 GMT +Wed, 17 Apr 2024 21:53:46 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-components_v9.47.5..@fluentui/react-components_v9.48.0) ### Minor changes @@ -177,7 +177,7 @@ Wed, 17 Apr 2024 21:53:46 GMT ## [9.47.5](https://github.com/microsoft/fluentui/tree/@fluentui/react-components_v9.47.5) -Fri, 05 Apr 2024 14:17:26 GMT +Fri, 05 Apr 2024 14:17:26 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-components_v9.47.4..@fluentui/react-components_v9.47.5) ### Patches @@ -187,7 +187,7 @@ Fri, 05 Apr 2024 14:17:26 GMT ## [9.47.4](https://github.com/microsoft/fluentui/tree/@fluentui/react-components_v9.47.4) -Thu, 04 Apr 2024 12:08:06 GMT +Thu, 04 Apr 2024 12:08:06 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-components_v9.47.3..@fluentui/react-components_v9.47.4) ### Minor changes @@ -214,7 +214,7 @@ Thu, 04 Apr 2024 12:08:06 GMT ## [9.47.3](https://github.com/microsoft/fluentui/tree/@fluentui/react-components_v9.47.3) -Tue, 02 Apr 2024 09:47:59 GMT +Tue, 02 Apr 2024 09:47:59 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-components_v9.47.2..@fluentui/react-components_v9.47.3) ### Minor changes @@ -233,7 +233,7 @@ Tue, 02 Apr 2024 09:47:59 GMT ## [9.47.2](https://github.com/microsoft/fluentui/tree/@fluentui/react-components_v9.47.2) -Thu, 28 Mar 2024 10:43:54 GMT +Thu, 28 Mar 2024 10:43:54 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-components_v9.47.2..@fluentui/react-components_v9.47.2) ### Minor changes @@ -245,7 +245,7 @@ Thu, 28 Mar 2024 10:43:54 GMT ## [9.47.2](https://github.com/microsoft/fluentui/tree/@fluentui/react-components_v9.47.2) -Wed, 27 Mar 2024 10:29:33 GMT +Wed, 27 Mar 2024 10:29:33 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-components_v9.47.2..@fluentui/react-components_v9.47.2) ### Minor changes @@ -260,7 +260,7 @@ Wed, 27 Mar 2024 10:29:33 GMT ## [9.47.2](https://github.com/microsoft/fluentui/tree/@fluentui/react-components_v9.47.2) -Mon, 25 Mar 2024 11:12:13 GMT +Mon, 25 Mar 2024 11:12:13 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-components_v9.47.1..@fluentui/react-components_v9.47.2) ### Minor changes @@ -291,7 +291,7 @@ Mon, 25 Mar 2024 11:12:13 GMT ## [9.47.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-components_v9.47.1) -Mon, 18 Mar 2024 19:50:46 GMT +Mon, 18 Mar 2024 19:50:46 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-components_v9.47.0..@fluentui/react-components_v9.47.1) ### Changes @@ -301,7 +301,7 @@ Mon, 18 Mar 2024 19:50:46 GMT ## [9.47.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-components_v9.47.0) -Fri, 15 Mar 2024 21:43:48 GMT +Fri, 15 Mar 2024 21:43:48 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-components_v9.46.8..@fluentui/react-components_v9.47.0) ### Minor changes @@ -325,7 +325,7 @@ Fri, 15 Mar 2024 21:43:48 GMT ## [9.46.8](https://github.com/microsoft/fluentui/tree/@fluentui/react-components_v9.46.8) -Thu, 07 Mar 2024 19:33:20 GMT +Thu, 07 Mar 2024 19:33:20 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-components_v9.46.7..@fluentui/react-components_v9.46.8) ### Minor changes @@ -396,7 +396,7 @@ Thu, 07 Mar 2024 19:33:20 GMT ## [9.46.7](https://github.com/microsoft/fluentui/tree/@fluentui/react-components_v9.46.7) -Thu, 29 Feb 2024 14:44:20 GMT +Thu, 29 Feb 2024 14:44:20 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-components_v9.46.6..@fluentui/react-components_v9.46.7) ### Minor changes @@ -406,7 +406,7 @@ Thu, 29 Feb 2024 14:44:20 GMT ## [9.46.6](https://github.com/microsoft/fluentui/tree/@fluentui/react-components_v9.46.6) -Wed, 28 Feb 2024 02:34:17 GMT +Wed, 28 Feb 2024 02:34:17 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-components_v9.46.5..@fluentui/react-components_v9.46.6) ### Minor changes @@ -434,7 +434,7 @@ Wed, 28 Feb 2024 02:34:17 GMT ## [9.46.5](https://github.com/microsoft/fluentui/tree/@fluentui/react-components_v9.46.5) -Tue, 20 Feb 2024 14:22:17 GMT +Tue, 20 Feb 2024 14:22:17 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-components_v9.46.4..@fluentui/react-components_v9.46.5) ### Minor changes @@ -496,7 +496,7 @@ Tue, 20 Feb 2024 14:22:17 GMT ## [9.46.4](https://github.com/microsoft/fluentui/tree/@fluentui/react-components_v9.46.4) -Tue, 06 Feb 2024 17:55:17 GMT +Tue, 06 Feb 2024 17:55:17 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-components_v9.46.3..@fluentui/react-components_v9.46.4) ### Minor changes @@ -532,7 +532,7 @@ Tue, 06 Feb 2024 17:55:17 GMT ## [9.46.3](https://github.com/microsoft/fluentui/tree/@fluentui/react-components_v9.46.3) -Tue, 30 Jan 2024 23:16:53 GMT +Tue, 30 Jan 2024 23:16:53 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-components_v9.46.2..@fluentui/react-components_v9.46.3) ### Minor changes @@ -551,7 +551,7 @@ Tue, 30 Jan 2024 23:16:53 GMT ## [9.46.2](https://github.com/microsoft/fluentui/tree/@fluentui/react-components_v9.46.2) -Mon, 29 Jan 2024 13:56:05 GMT +Mon, 29 Jan 2024 13:56:05 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-components_v9.46.1..@fluentui/react-components_v9.46.2) ### Patches @@ -568,7 +568,7 @@ Mon, 29 Jan 2024 13:56:05 GMT ## [9.46.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-components_v9.46.1) -Fri, 26 Jan 2024 10:40:21 GMT +Fri, 26 Jan 2024 10:40:21 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-components_v9.46.0..@fluentui/react-components_v9.46.1) ### Minor changes @@ -580,7 +580,7 @@ Fri, 26 Jan 2024 10:40:21 GMT ## [9.46.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-components_v9.46.0) -Tue, 23 Jan 2024 15:10:57 GMT +Tue, 23 Jan 2024 15:10:57 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-components_v9.45.0..@fluentui/react-components_v9.46.0) ### Minor changes @@ -610,7 +610,7 @@ Tue, 23 Jan 2024 15:10:57 GMT ## [9.45.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-components_v9.45.0) -Thu, 18 Jan 2024 14:25:01 GMT +Thu, 18 Jan 2024 14:25:01 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-components_v9.44.5..@fluentui/react-components_v9.45.0) ### Minor changes @@ -630,7 +630,7 @@ Thu, 18 Jan 2024 14:25:01 GMT ## [9.44.5](https://github.com/microsoft/fluentui/tree/@fluentui/react-components_v9.44.5) -Wed, 17 Jan 2024 16:18:49 GMT +Wed, 17 Jan 2024 16:18:49 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-components_v9.44.4..@fluentui/react-components_v9.44.5) ### Minor changes @@ -651,7 +651,7 @@ Wed, 17 Jan 2024 16:18:49 GMT ## [9.44.4](https://github.com/microsoft/fluentui/tree/@fluentui/react-components_v9.44.4) -Tue, 16 Jan 2024 13:14:07 GMT +Tue, 16 Jan 2024 13:14:07 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-components_v9.44.3..@fluentui/react-components_v9.44.4) ### Minor changes @@ -792,7 +792,7 @@ Tue, 16 Jan 2024 13:14:07 GMT ## [9.44.3](https://github.com/microsoft/fluentui/tree/@fluentui/react-components_v9.44.3) -Thu, 11 Jan 2024 09:04:28 GMT +Thu, 11 Jan 2024 09:04:28 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-components_v9.44.2..@fluentui/react-components_v9.44.3) ### Minor changes @@ -818,7 +818,7 @@ Thu, 11 Jan 2024 09:04:28 GMT ## [9.44.2](https://github.com/microsoft/fluentui/tree/@fluentui/react-components_v9.44.2) -Tue, 09 Jan 2024 10:21:33 GMT +Tue, 09 Jan 2024 10:21:33 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-components_v9.44.1..@fluentui/react-components_v9.44.2) ### Minor changes @@ -832,7 +832,7 @@ Tue, 09 Jan 2024 10:21:33 GMT ## [9.44.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-components_v9.44.1) -Mon, 08 Jan 2024 16:24:19 GMT +Mon, 08 Jan 2024 16:24:19 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-components_v9.44.0..@fluentui/react-components_v9.44.1) ### Minor changes @@ -918,7 +918,7 @@ Mon, 08 Jan 2024 16:24:19 GMT ## [9.44.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-components_v9.44.0) -Thu, 04 Jan 2024 09:48:05 GMT +Thu, 04 Jan 2024 09:48:05 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-components_v9.44.0..@fluentui/react-components_v9.44.0) ### Patches @@ -933,7 +933,7 @@ Thu, 04 Jan 2024 09:48:05 GMT ## [9.44.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-components_v9.44.0) -Wed, 03 Jan 2024 09:26:42 GMT +Wed, 03 Jan 2024 09:26:42 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-components_v9.43.3..@fluentui/react-components_v9.44.0) ### Minor changes @@ -958,7 +958,7 @@ Wed, 03 Jan 2024 09:26:42 GMT ## [9.43.3](https://github.com/microsoft/fluentui/tree/@fluentui/react-components_v9.43.3) -Thu, 21 Dec 2023 17:00:40 GMT +Thu, 21 Dec 2023 17:00:40 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-components_v9.43.2..@fluentui/react-components_v9.43.3) ### Minor changes @@ -977,7 +977,7 @@ Thu, 21 Dec 2023 17:00:40 GMT ## [9.43.2](https://github.com/microsoft/fluentui/tree/@fluentui/react-components_v9.43.2) -Mon, 18 Dec 2023 17:48:15 GMT +Mon, 18 Dec 2023 17:48:15 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-components_v9.43.1..@fluentui/react-components_v9.43.2) ### Patches @@ -991,7 +991,7 @@ Mon, 18 Dec 2023 17:48:15 GMT ## [9.43.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-components_v9.43.1) -Mon, 18 Dec 2023 14:40:42 GMT +Mon, 18 Dec 2023 14:40:42 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-components_v9.43.0..@fluentui/react-components_v9.43.1) ### Minor changes @@ -1033,7 +1033,7 @@ Mon, 18 Dec 2023 14:40:42 GMT ## [9.43.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-components_v9.43.0) -Thu, 14 Dec 2023 09:58:41 GMT +Thu, 14 Dec 2023 09:58:41 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-components_v9.42.0..@fluentui/react-components_v9.43.0) ### Minor changes @@ -1086,7 +1086,7 @@ Thu, 14 Dec 2023 09:58:41 GMT ## [9.42.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-components_v9.42.0) -Thu, 30 Nov 2023 13:42:05 GMT +Thu, 30 Nov 2023 13:42:05 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-components_v9.41.0..@fluentui/react-components_v9.42.0) ### Minor changes @@ -1123,7 +1123,7 @@ Thu, 30 Nov 2023 13:42:05 GMT ## [9.41.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-components_v9.41.0) -Mon, 20 Nov 2023 09:55:08 GMT +Mon, 20 Nov 2023 09:55:08 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-components_v9.40.0..@fluentui/react-components_v9.41.0) ### Minor changes @@ -1152,7 +1152,7 @@ Mon, 20 Nov 2023 09:55:08 GMT ## [9.40.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-components_v9.40.0) -Tue, 14 Nov 2023 17:51:26 GMT +Tue, 14 Nov 2023 17:51:26 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-components_v9.39.0..@fluentui/react-components_v9.40.0) ### Minor changes @@ -1173,7 +1173,7 @@ Tue, 14 Nov 2023 17:51:26 GMT ## [9.39.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-components_v9.39.0) -Fri, 10 Nov 2023 13:46:32 GMT +Fri, 10 Nov 2023 13:46:32 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-components_v9.38.0..@fluentui/react-components_v9.39.0) ### Minor changes @@ -1197,7 +1197,7 @@ Fri, 10 Nov 2023 13:46:32 GMT ## [9.38.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-components_v9.38.0) -Thu, 09 Nov 2023 17:29:30 GMT +Thu, 09 Nov 2023 17:29:30 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-components_v9.37.4..@fluentui/react-components_v9.38.0) ### Minor changes @@ -1368,7 +1368,7 @@ Thu, 09 Nov 2023 17:29:30 GMT ## [9.37.4](https://github.com/microsoft/fluentui/tree/@fluentui/react-components_v9.37.4) -Mon, 06 Nov 2023 13:16:03 GMT +Mon, 06 Nov 2023 13:16:03 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-components_v9.37.3..@fluentui/react-components_v9.37.4) ### Patches @@ -1380,7 +1380,7 @@ Mon, 06 Nov 2023 13:16:03 GMT ## [9.37.3](https://github.com/microsoft/fluentui/tree/@fluentui/react-components_v9.37.3) -Thu, 02 Nov 2023 17:38:45 GMT +Thu, 02 Nov 2023 17:38:45 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-components_v9.37.2..@fluentui/react-components_v9.37.3) ### Patches @@ -1395,7 +1395,7 @@ Thu, 02 Nov 2023 17:38:45 GMT ## [9.37.2](https://github.com/microsoft/fluentui/tree/@fluentui/react-components_v9.37.2) -Wed, 01 Nov 2023 19:15:55 GMT +Wed, 01 Nov 2023 19:15:55 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-components_v9.37.1..@fluentui/react-components_v9.37.2) ### Minor changes @@ -1410,7 +1410,7 @@ Wed, 01 Nov 2023 19:15:55 GMT ## [9.37.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-components_v9.37.1) -Wed, 01 Nov 2023 12:55:58 GMT +Wed, 01 Nov 2023 12:55:58 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-components_v9.37.0..@fluentui/react-components_v9.37.1) ### Minor changes @@ -1434,7 +1434,7 @@ Wed, 01 Nov 2023 12:55:58 GMT ## [9.37.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-components_v9.37.0) -Sat, 28 Oct 2023 23:35:54 GMT +Sat, 28 Oct 2023 23:35:54 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-components_v9.36.0..@fluentui/react-components_v9.37.0) ### Major changes @@ -1485,7 +1485,7 @@ Sat, 28 Oct 2023 23:35:54 GMT ## [9.36.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-components_v9.36.0) -Mon, 23 Oct 2023 09:51:55 GMT +Mon, 23 Oct 2023 09:51:55 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-components_v9.35.1..@fluentui/react-components_v9.36.0) ### Minor changes @@ -1517,7 +1517,7 @@ Mon, 23 Oct 2023 09:51:55 GMT ## [9.35.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-components_v9.35.1) -Wed, 18 Oct 2023 17:54:01 GMT +Wed, 18 Oct 2023 17:54:01 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-components_v9.35.0..@fluentui/react-components_v9.35.1) ### Minor changes @@ -1583,7 +1583,7 @@ Wed, 18 Oct 2023 17:54:01 GMT ## [9.35.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-components_v9.35.0) -Thu, 12 Oct 2023 14:55:42 GMT +Thu, 12 Oct 2023 14:55:42 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-components_v9.34.3..@fluentui/react-components_v9.35.0) ### Minor changes @@ -1617,7 +1617,7 @@ Thu, 12 Oct 2023 14:55:42 GMT ## [9.34.3](https://github.com/microsoft/fluentui/tree/@fluentui/react-components_v9.34.3) -Wed, 11 Oct 2023 13:54:22 GMT +Wed, 11 Oct 2023 13:54:22 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-components_v9.34.2..@fluentui/react-components_v9.34.3) ### Minor changes @@ -1660,7 +1660,7 @@ Wed, 11 Oct 2023 13:54:22 GMT ## [9.34.2](https://github.com/microsoft/fluentui/tree/@fluentui/react-components_v9.34.2) -Mon, 09 Oct 2023 20:45:41 GMT +Mon, 09 Oct 2023 20:45:41 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-components_v9.34.1..@fluentui/react-components_v9.34.2) ### Minor changes @@ -1699,7 +1699,7 @@ Mon, 09 Oct 2023 20:45:41 GMT ## [9.34.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-components_v9.34.1) -Thu, 05 Oct 2023 15:25:29 GMT +Thu, 05 Oct 2023 15:25:29 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-components_v9.34.0..@fluentui/react-components_v9.34.1) ### Minor changes @@ -1756,7 +1756,7 @@ Thu, 05 Oct 2023 15:25:29 GMT ## [9.34.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-components_v9.34.0) -Wed, 04 Oct 2023 08:45:45 GMT +Wed, 04 Oct 2023 08:45:45 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-components_v9.33.0..@fluentui/react-components_v9.34.0) ### Minor changes @@ -1784,7 +1784,7 @@ Wed, 04 Oct 2023 08:45:45 GMT ## [9.33.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-components_v9.33.0) -Mon, 02 Oct 2023 08:56:03 GMT +Mon, 02 Oct 2023 08:56:03 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-components_v9.32.3..@fluentui/react-components_v9.33.0) ### Minor changes @@ -1813,7 +1813,7 @@ Mon, 02 Oct 2023 08:56:03 GMT ## [9.32.3](https://github.com/microsoft/fluentui/tree/@fluentui/react-components_v9.32.3) -Tue, 26 Sep 2023 17:49:00 GMT +Tue, 26 Sep 2023 17:49:00 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-components_v9.32.2..@fluentui/react-components_v9.32.3) ### Patches @@ -1956,7 +1956,7 @@ Tue, 26 Sep 2023 17:49:00 GMT ## [9.32.2](https://github.com/microsoft/fluentui/tree/@fluentui/react-components_v9.32.2) -Tue, 26 Sep 2023 15:31:34 GMT +Tue, 26 Sep 2023 15:31:34 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-components_v9.32.1..@fluentui/react-components_v9.32.2) ### Minor changes @@ -2157,7 +2157,7 @@ Tue, 26 Sep 2023 15:31:34 GMT ## [9.32.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-components_v9.32.1) -Wed, 20 Sep 2023 17:47:33 GMT +Wed, 20 Sep 2023 17:47:33 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-components_v9.32.0..@fluentui/react-components_v9.32.1) ### Patches @@ -2272,7 +2272,7 @@ Wed, 20 Sep 2023 17:47:33 GMT ## [9.32.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-components_v9.32.0) -Wed, 20 Sep 2023 14:59:51 GMT +Wed, 20 Sep 2023 14:59:51 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-components_v9.31.1..@fluentui/react-components_v9.32.0) ### Minor changes @@ -2321,7 +2321,7 @@ Wed, 20 Sep 2023 14:59:51 GMT ## [9.31.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-components_v9.31.1) -Thu, 14 Sep 2023 16:44:47 GMT +Thu, 14 Sep 2023 16:44:47 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-components_v9.31.0..@fluentui/react-components_v9.31.1) ### Patches @@ -2331,7 +2331,7 @@ Thu, 14 Sep 2023 16:44:47 GMT ## [9.31.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-components_v9.31.0) -Tue, 12 Sep 2023 08:51:31 GMT +Tue, 12 Sep 2023 08:51:31 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-components_v9.30.4..@fluentui/react-components_v9.31.0) ### Major changes @@ -2375,7 +2375,7 @@ Tue, 12 Sep 2023 08:51:31 GMT ## [9.30.4](https://github.com/microsoft/fluentui/tree/@fluentui/react-components_v9.30.4) -Wed, 06 Sep 2023 13:31:30 GMT +Wed, 06 Sep 2023 13:31:30 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-components_v9.30.3..@fluentui/react-components_v9.30.4) ### Minor changes @@ -2392,7 +2392,7 @@ Wed, 06 Sep 2023 13:31:30 GMT ## [9.30.3](https://github.com/microsoft/fluentui/tree/@fluentui/react-components_v9.30.3) -Tue, 05 Sep 2023 15:39:03 GMT +Tue, 05 Sep 2023 15:39:03 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-components_v9.30.2..@fluentui/react-components_v9.30.3) ### Patches @@ -2408,7 +2408,7 @@ Tue, 05 Sep 2023 15:39:03 GMT ## [9.30.2](https://github.com/microsoft/fluentui/tree/@fluentui/react-components_v9.30.2) -Tue, 05 Sep 2023 13:28:54 GMT +Tue, 05 Sep 2023 13:28:54 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-components_v9.30.1..@fluentui/react-components_v9.30.2) ### Minor changes @@ -2627,7 +2627,7 @@ Tue, 05 Sep 2023 13:28:54 GMT ## [9.30.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-components_v9.30.1) -Tue, 29 Aug 2023 12:57:33 GMT +Tue, 29 Aug 2023 12:57:33 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-components_v9.30.0..@fluentui/react-components_v9.30.1) ### Minor changes @@ -2667,7 +2667,7 @@ Tue, 29 Aug 2023 12:57:33 GMT ## [9.30.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-components_v9.30.0) -Thu, 24 Aug 2023 10:26:32 GMT +Thu, 24 Aug 2023 10:26:32 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-components_v9.29.5..@fluentui/react-components_v9.30.0) ### Minor changes @@ -2698,7 +2698,7 @@ Thu, 24 Aug 2023 10:26:32 GMT ## [9.29.5](https://github.com/microsoft/fluentui/tree/@fluentui/react-components_v9.29.5) -Wed, 23 Aug 2023 12:01:48 GMT +Wed, 23 Aug 2023 12:01:48 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-components_v9.29.4..@fluentui/react-components_v9.29.5) ### Patches @@ -2710,7 +2710,7 @@ Wed, 23 Aug 2023 12:01:48 GMT ## [9.29.4](https://github.com/microsoft/fluentui/tree/@fluentui/react-components_v9.29.4) -Mon, 21 Aug 2023 11:38:00 GMT +Mon, 21 Aug 2023 11:38:00 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-components_v9.29.3..@fluentui/react-components_v9.29.4) ### Patches @@ -2744,7 +2744,7 @@ Mon, 21 Aug 2023 11:38:00 GMT ## [9.29.3](https://github.com/microsoft/fluentui/tree/@fluentui/react-components_v9.29.3) -Thu, 17 Aug 2023 13:49:56 GMT +Thu, 17 Aug 2023 13:49:56 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-components_v9.29.2..@fluentui/react-components_v9.29.3) ### Patches @@ -2754,7 +2754,7 @@ Thu, 17 Aug 2023 13:49:56 GMT ## [9.29.2](https://github.com/microsoft/fluentui/tree/@fluentui/react-components_v9.29.2) -Wed, 16 Aug 2023 17:41:07 GMT +Wed, 16 Aug 2023 17:41:07 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-components_v9.29.1..@fluentui/react-components_v9.29.2) ### Patches @@ -2775,7 +2775,7 @@ Wed, 16 Aug 2023 17:41:07 GMT ## [9.29.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-components_v9.29.1) -Wed, 16 Aug 2023 11:38:32 GMT +Wed, 16 Aug 2023 11:38:32 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-components_v9.29.0..@fluentui/react-components_v9.29.1) ### Minor changes @@ -2799,7 +2799,7 @@ Wed, 16 Aug 2023 11:38:32 GMT ## [9.29.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-components_v9.29.0) -Mon, 14 Aug 2023 21:22:22 GMT +Mon, 14 Aug 2023 21:22:22 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-components_v9.28.1..@fluentui/react-components_v9.29.0) ### Minor changes @@ -2814,7 +2814,7 @@ Mon, 14 Aug 2023 21:22:22 GMT ## [9.28.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-components_v9.28.1) -Fri, 11 Aug 2023 12:14:24 GMT +Fri, 11 Aug 2023 12:14:24 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-components_v9.28.0..@fluentui/react-components_v9.28.1) ### Minor changes @@ -2842,7 +2842,7 @@ Fri, 11 Aug 2023 12:14:24 GMT ## [9.28.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-components_v9.28.0) -Wed, 09 Aug 2023 13:16:47 GMT +Wed, 09 Aug 2023 13:16:47 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-components_v9.27.4..@fluentui/react-components_v9.28.0) ### Minor changes @@ -3014,7 +3014,7 @@ Wed, 09 Aug 2023 13:16:47 GMT ## [9.27.4](https://github.com/microsoft/fluentui/tree/@fluentui/react-components_v9.27.4) -Fri, 04 Aug 2023 08:52:55 GMT +Fri, 04 Aug 2023 08:52:55 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-components_v9.27.3..@fluentui/react-components_v9.27.4) ### Minor changes @@ -3055,7 +3055,7 @@ Fri, 04 Aug 2023 08:52:55 GMT ## [9.27.3](https://github.com/microsoft/fluentui/tree/@fluentui/react-components_v9.27.3) -Tue, 01 Aug 2023 13:04:24 GMT +Tue, 01 Aug 2023 13:04:24 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-components_v9.27.2..@fluentui/react-components_v9.27.3) ### Minor changes @@ -3072,7 +3072,7 @@ Tue, 01 Aug 2023 13:04:24 GMT ## [9.27.2](https://github.com/microsoft/fluentui/tree/@fluentui/react-components_v9.27.2) -Tue, 01 Aug 2023 10:17:19 GMT +Tue, 01 Aug 2023 10:17:19 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-components_v9.27.1..@fluentui/react-components_v9.27.2) ### Minor changes @@ -3102,7 +3102,7 @@ Tue, 01 Aug 2023 10:17:19 GMT ## [9.27.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-components_v9.27.1) -Thu, 27 Jul 2023 10:34:13 GMT +Thu, 27 Jul 2023 10:34:13 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-components_v9.27.0..@fluentui/react-components_v9.27.1) ### Minor changes @@ -3120,7 +3120,7 @@ Thu, 27 Jul 2023 10:34:13 GMT ## [9.27.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-components_v9.27.0) -Tue, 25 Jul 2023 13:29:15 GMT +Tue, 25 Jul 2023 13:29:15 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-components_v9.26.2..@fluentui/react-components_v9.27.0) ### Minor changes @@ -3199,7 +3199,7 @@ Tue, 25 Jul 2023 13:29:15 GMT ## [9.26.2](https://github.com/microsoft/fluentui/tree/@fluentui/react-components_v9.26.2) -Thu, 20 Jul 2023 18:27:24 GMT +Thu, 20 Jul 2023 18:27:24 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-components_v9.26.1..@fluentui/react-components_v9.26.2) ### Minor changes @@ -3230,7 +3230,7 @@ Thu, 20 Jul 2023 18:27:24 GMT ## [9.26.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-components_v9.26.1) -Mon, 17 Jul 2023 21:27:34 GMT +Mon, 17 Jul 2023 21:27:34 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-components_v9.26.0..@fluentui/react-components_v9.26.1) ### Minor changes @@ -3259,7 +3259,7 @@ Mon, 17 Jul 2023 21:27:34 GMT ## [9.26.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-components_v9.26.0) -Tue, 11 Jul 2023 18:46:34 GMT +Tue, 11 Jul 2023 18:46:34 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-components_v9.25.1..@fluentui/react-components_v9.26.0) ### Minor changes @@ -3294,7 +3294,7 @@ Tue, 11 Jul 2023 18:46:34 GMT ## [9.25.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-components_v9.25.1) -Mon, 03 Jul 2023 20:43:09 GMT +Mon, 03 Jul 2023 20:43:09 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-components_v9.25.0..@fluentui/react-components_v9.25.1) ### Patches @@ -3304,7 +3304,7 @@ Mon, 03 Jul 2023 20:43:09 GMT ## [9.25.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-components_v9.25.0) -Mon, 03 Jul 2023 13:34:27 GMT +Mon, 03 Jul 2023 13:34:27 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-components_v9.24.0..@fluentui/react-components_v9.25.0) ### Minor changes @@ -3323,7 +3323,7 @@ Mon, 03 Jul 2023 13:34:27 GMT ## [9.24.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-components_v9.24.0) -Mon, 03 Jul 2023 11:57:11 GMT +Mon, 03 Jul 2023 11:57:11 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-components_v9.23.1..@fluentui/react-components_v9.24.0) ### Minor changes @@ -3360,7 +3360,7 @@ Mon, 03 Jul 2023 11:57:11 GMT ## [9.23.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-components_v9.23.1) -Wed, 28 Jun 2023 11:12:21 GMT +Wed, 28 Jun 2023 11:12:21 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-components_v9.23.0..@fluentui/react-components_v9.23.1) ### Minor changes @@ -3384,7 +3384,7 @@ Wed, 28 Jun 2023 11:12:21 GMT ## [9.23.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-components_v9.23.0) -Tue, 27 Jun 2023 11:21:22 GMT +Tue, 27 Jun 2023 11:21:22 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-components_v9.22.1..@fluentui/react-components_v9.23.0) ### Minor changes @@ -3409,7 +3409,7 @@ Tue, 27 Jun 2023 11:21:22 GMT ## [9.22.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-components_v9.22.1) -Mon, 26 Jun 2023 09:53:53 GMT +Mon, 26 Jun 2023 09:53:53 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-components_v9.22.0..@fluentui/react-components_v9.22.1) ### Patches @@ -3433,7 +3433,7 @@ Mon, 26 Jun 2023 09:53:53 GMT ## [9.22.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-components_v9.22.0) -Tue, 20 Jun 2023 12:38:53 GMT +Tue, 20 Jun 2023 12:38:53 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-components_v9.21.0..@fluentui/react-components_v9.22.0) ### Minor changes @@ -3544,7 +3544,7 @@ Tue, 20 Jun 2023 12:38:53 GMT ## [9.21.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-components_v9.21.0) -Wed, 31 May 2023 06:46:07 GMT +Wed, 31 May 2023 06:46:07 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-components_v9.20.4..@fluentui/react-components_v9.21.0) ### Minor changes @@ -3670,7 +3670,7 @@ Wed, 31 May 2023 06:46:07 GMT ## [9.20.4](https://github.com/microsoft/fluentui/tree/@fluentui/react-components_v9.20.4) -Thu, 25 May 2023 10:00:48 GMT +Thu, 25 May 2023 10:00:48 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-components_v9.20.3..@fluentui/react-components_v9.20.4) ### Patches @@ -3682,7 +3682,7 @@ Thu, 25 May 2023 10:00:48 GMT ## [9.20.3](https://github.com/microsoft/fluentui/tree/@fluentui/react-components_v9.20.3) -Wed, 24 May 2023 20:45:21 GMT +Wed, 24 May 2023 20:45:21 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-components_v9.20.2..@fluentui/react-components_v9.20.3) ### Minor changes @@ -3714,7 +3714,7 @@ Wed, 24 May 2023 20:45:21 GMT ## [9.20.2](https://github.com/microsoft/fluentui/tree/@fluentui/react-components_v9.20.2) -Thu, 18 May 2023 13:11:07 GMT +Thu, 18 May 2023 13:11:07 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-components_v9.20.1..@fluentui/react-components_v9.20.2) ### Patches @@ -3724,7 +3724,7 @@ Thu, 18 May 2023 13:11:07 GMT ## [9.20.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-components_v9.20.1) -Thu, 18 May 2023 00:39:00 GMT +Thu, 18 May 2023 00:39:00 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-components_v9.20.0..@fluentui/react-components_v9.20.1) ### Minor changes @@ -3748,7 +3748,7 @@ Thu, 18 May 2023 00:39:00 GMT ## [9.20.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-components_v9.20.0) -Fri, 12 May 2023 20:27:14 GMT +Fri, 12 May 2023 20:27:14 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-components_v9.19.1..@fluentui/react-components_v9.20.0) ### Minor changes @@ -3989,7 +3989,7 @@ Fri, 12 May 2023 20:27:14 GMT ## [9.19.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-components_v9.19.1) -Mon, 24 Apr 2023 08:12:30 GMT +Mon, 24 Apr 2023 08:12:30 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-components_v9.19.0..@fluentui/react-components_v9.19.1) ### Minor changes @@ -4093,7 +4093,7 @@ Mon, 24 Apr 2023 08:12:30 GMT ## [9.19.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-components_v9.19.0) -Mon, 17 Apr 2023 17:53:43 GMT +Mon, 17 Apr 2023 17:53:43 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-components_v9.18.9..@fluentui/react-components_v9.19.0) ### Minor changes @@ -4181,7 +4181,7 @@ Mon, 17 Apr 2023 17:53:43 GMT ## [9.18.9](https://github.com/microsoft/fluentui/tree/@fluentui/react-components_v9.18.9) -Wed, 12 Apr 2023 09:31:42 GMT +Wed, 12 Apr 2023 09:31:42 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-components_v9.18.8..@fluentui/react-components_v9.18.9) ### Patches @@ -4208,7 +4208,7 @@ Wed, 12 Apr 2023 09:31:42 GMT ## [9.18.8](https://github.com/microsoft/fluentui/tree/@fluentui/react-components_v9.18.8) -Fri, 07 Apr 2023 00:01:35 GMT +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 @@ -4267,7 +4267,7 @@ Fri, 07 Apr 2023 00:01:35 GMT ## [9.18.7](https://github.com/microsoft/fluentui/tree/@fluentui/react-components_v9.18.7) -Tue, 04 Apr 2023 18:44:47 GMT +Tue, 04 Apr 2023 18:44:47 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-components_v9.18.6..@fluentui/react-components_v9.18.7) ### Patches @@ -4296,7 +4296,7 @@ Tue, 04 Apr 2023 18:44:47 GMT ## [9.18.6](https://github.com/microsoft/fluentui/tree/@fluentui/react-components_v9.18.6) -Fri, 24 Mar 2023 17:36:41 GMT +Fri, 24 Mar 2023 17:36:41 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-components_v9.18.5..@fluentui/react-components_v9.18.6) ### Patches @@ -4306,7 +4306,7 @@ Fri, 24 Mar 2023 17:36:41 GMT ## [9.18.5](https://github.com/microsoft/fluentui/tree/@fluentui/react-components_v9.18.5) -Fri, 24 Mar 2023 14:58:55 GMT +Fri, 24 Mar 2023 14:58:55 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-components_v9.18.4..@fluentui/react-components_v9.18.5) ### Patches @@ -4316,7 +4316,7 @@ Fri, 24 Mar 2023 14:58:55 GMT ## [9.18.4](https://github.com/microsoft/fluentui/tree/@fluentui/react-components_v9.18.4) -Fri, 24 Mar 2023 10:15:26 GMT +Fri, 24 Mar 2023 10:15:26 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-components_v9.18.3..@fluentui/react-components_v9.18.4) ### Minor changes @@ -4338,7 +4338,7 @@ Fri, 24 Mar 2023 10:15:26 GMT ## [9.18.3](https://github.com/microsoft/fluentui/tree/@fluentui/react-components_v9.18.3) -Tue, 21 Mar 2023 21:22:58 GMT +Tue, 21 Mar 2023 21:22:58 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-components_v9.18.2..@fluentui/react-components_v9.18.3) ### Patches @@ -4544,7 +4544,7 @@ Tue, 21 Mar 2023 21:22:58 GMT ## [9.18.2](https://github.com/microsoft/fluentui/tree/@fluentui/react-components_v9.18.2) -Thu, 16 Mar 2023 14:36:56 GMT +Thu, 16 Mar 2023 14:36:56 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-components_v9.18.1..@fluentui/react-components_v9.18.2) ### Minor changes @@ -4572,7 +4572,7 @@ Thu, 16 Mar 2023 14:36:56 GMT ## [9.18.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-components_v9.18.1) -Wed, 15 Mar 2023 10:19:50 GMT +Wed, 15 Mar 2023 10:19:50 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-components_v9.18.0..@fluentui/react-components_v9.18.1) ### Minor changes @@ -4604,7 +4604,7 @@ Wed, 15 Mar 2023 10:19:50 GMT ## [9.18.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-components_v9.18.0) -Mon, 13 Mar 2023 08:58:23 GMT +Mon, 13 Mar 2023 08:58:23 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-components_v9.17.1..@fluentui/react-components_v9.18.0) ### Minor changes @@ -4634,7 +4634,7 @@ Mon, 13 Mar 2023 08:58:23 GMT ## [9.17.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-components_v9.17.1) -Fri, 10 Mar 2023 13:28:39 GMT +Fri, 10 Mar 2023 13:28:39 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-components_v9.17.0..@fluentui/react-components_v9.17.1) ### Changes @@ -4644,7 +4644,7 @@ Fri, 10 Mar 2023 13:28:39 GMT ## [9.17.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-components_v9.17.0) -Fri, 10 Mar 2023 07:13:59 GMT +Fri, 10 Mar 2023 07:13:59 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-components_v9.16.0..@fluentui/react-components_v9.17.0) ### Minor changes @@ -4668,7 +4668,7 @@ Fri, 10 Mar 2023 07:13:59 GMT ## [9.16.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-components_v9.16.0) -Wed, 08 Mar 2023 17:42:23 GMT +Wed, 08 Mar 2023 17:42:23 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-components_v9.15.6..@fluentui/react-components_v9.16.0) ### Minor changes @@ -4769,7 +4769,7 @@ Wed, 08 Mar 2023 17:42:23 GMT ## [9.15.6](https://github.com/microsoft/fluentui/tree/@fluentui/react-components_v9.15.6) -Wed, 22 Feb 2023 23:06:04 GMT +Wed, 22 Feb 2023 23:06:04 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-components_v9.15.5..@fluentui/react-components_v9.15.6) ### Minor changes @@ -4800,7 +4800,7 @@ Wed, 22 Feb 2023 23:06:04 GMT ## [9.15.5](https://github.com/microsoft/fluentui/tree/@fluentui/react-components_v9.15.5) -Thu, 16 Feb 2023 19:18:47 GMT +Thu, 16 Feb 2023 19:18:47 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-components_v9.15.4..@fluentui/react-components_v9.15.5) ### Patches @@ -4825,7 +4825,7 @@ Thu, 16 Feb 2023 19:18:47 GMT ## [9.15.4](https://github.com/microsoft/fluentui/tree/@fluentui/react-components_v9.15.4) -Thu, 16 Feb 2023 16:18:01 GMT +Thu, 16 Feb 2023 16:18:01 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-components_v9.15.3..@fluentui/react-components_v9.15.4) ### Patches @@ -4840,7 +4840,7 @@ Thu, 16 Feb 2023 16:18:01 GMT ## [9.15.3](https://github.com/microsoft/fluentui/tree/@fluentui/react-components_v9.15.3) -Wed, 15 Feb 2023 11:44:51 GMT +Wed, 15 Feb 2023 11:44:51 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-components_v9.15.2..@fluentui/react-components_v9.15.3) ### Minor changes @@ -4860,7 +4860,7 @@ Wed, 15 Feb 2023 11:44:51 GMT ## [9.15.2](https://github.com/microsoft/fluentui/tree/@fluentui/react-components_v9.15.2) -Mon, 13 Feb 2023 23:43:13 GMT +Mon, 13 Feb 2023 23:43:13 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-components_v9.15.1..@fluentui/react-components_v9.15.2) ### Patches @@ -4876,7 +4876,7 @@ Mon, 13 Feb 2023 23:43:13 GMT ## [9.15.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-components_v9.15.1) -Mon, 13 Feb 2023 09:35:46 GMT +Mon, 13 Feb 2023 09:35:46 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-components_v9.15.0..@fluentui/react-components_v9.15.1) ### Patches @@ -4893,7 +4893,7 @@ Mon, 13 Feb 2023 09:35:46 GMT ## [9.15.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-components_v9.15.0) -Fri, 10 Feb 2023 08:49:57 GMT +Fri, 10 Feb 2023 08:49:57 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-components_v9.14.0..@fluentui/react-components_v9.15.0) ### Minor changes @@ -4925,7 +4925,7 @@ Fri, 10 Feb 2023 08:49:57 GMT ## [9.14.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-components_v9.14.0) -Tue, 07 Feb 2023 14:13:04 GMT +Tue, 07 Feb 2023 14:13:04 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-components_v9.13.0..@fluentui/react-components_v9.14.0) ### Minor changes @@ -4967,7 +4967,7 @@ Tue, 07 Feb 2023 14:13:04 GMT ## [9.13.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-components_v9.13.0) -Tue, 31 Jan 2023 19:53:53 GMT +Tue, 31 Jan 2023 19:53:53 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-components_v9.12.0..@fluentui/react-components_v9.13.0) ### Minor changes @@ -5009,7 +5009,7 @@ Tue, 31 Jan 2023 19:53:53 GMT ## [9.12.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-components_v9.12.0) -Thu, 26 Jan 2023 13:30:51 GMT +Thu, 26 Jan 2023 13:30:51 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-components_v9.11.1..@fluentui/react-components_v9.12.0) ### Minor changes @@ -5090,7 +5090,7 @@ Thu, 26 Jan 2023 13:30:51 GMT ## [9.11.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-components_v9.11.1) -Mon, 23 Jan 2023 16:43:09 GMT +Mon, 23 Jan 2023 16:43:09 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-components_v9.11.0..@fluentui/react-components_v9.11.1) ### Patches @@ -5117,7 +5117,7 @@ Mon, 23 Jan 2023 16:43:09 GMT ## [9.11.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-components_v9.11.0) -Wed, 18 Jan 2023 16:32:53 GMT +Wed, 18 Jan 2023 16:32:53 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-components_v9.10.1..@fluentui/react-components_v9.11.0) ### Minor changes @@ -5149,7 +5149,7 @@ Wed, 18 Jan 2023 16:32:53 GMT ## [9.10.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-components_v9.10.1) -Tue, 17 Jan 2023 12:22:54 GMT +Tue, 17 Jan 2023 12:22:54 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-components_v9.10.0..@fluentui/react-components_v9.10.1) ### Patches @@ -5167,7 +5167,7 @@ Tue, 17 Jan 2023 12:22:54 GMT ## [9.10.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-components_v9.10.0) -Mon, 16 Jan 2023 08:38:45 GMT +Mon, 16 Jan 2023 08:38:45 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-components_v9.9.1..@fluentui/react-components_v9.10.0) ### Minor changes @@ -5208,7 +5208,7 @@ Mon, 16 Jan 2023 08:38:45 GMT ## [9.9.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-components_v9.9.1) -Mon, 09 Jan 2023 21:51:23 GMT +Mon, 09 Jan 2023 21:51:23 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-components_v9.9.0..@fluentui/react-components_v9.9.1) ### Patches @@ -5227,7 +5227,7 @@ Mon, 09 Jan 2023 21:51:23 GMT ## [9.9.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-components_v9.9.0) -Mon, 09 Jan 2023 14:34:54 GMT +Mon, 09 Jan 2023 14:34:54 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-components_v9.8.0..@fluentui/react-components_v9.9.0) ### Minor changes @@ -5264,7 +5264,7 @@ Mon, 09 Jan 2023 14:34:54 GMT ## [9.8.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-components_v9.8.0) -Wed, 04 Jan 2023 01:40:03 GMT +Wed, 04 Jan 2023 01:40:03 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-components_v9.7.4..@fluentui/react-components_v9.8.0) ### Minor changes @@ -5372,7 +5372,7 @@ Wed, 04 Jan 2023 01:40:03 GMT ## [9.7.4](https://github.com/microsoft/fluentui/tree/@fluentui/react-components_v9.7.4) -Wed, 21 Dec 2022 10:20:28 GMT +Wed, 21 Dec 2022 10:20:28 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-components_v9.7.3..@fluentui/react-components_v9.7.4) ### Patches @@ -5391,7 +5391,7 @@ Wed, 21 Dec 2022 10:20:28 GMT ## [9.7.3](https://github.com/microsoft/fluentui/tree/@fluentui/react-components_v9.7.3) -Tue, 20 Dec 2022 14:59:20 GMT +Tue, 20 Dec 2022 14:59:20 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-components_v9.7.2..@fluentui/react-components_v9.7.3) ### Minor changes @@ -5454,7 +5454,7 @@ Tue, 20 Dec 2022 14:59:20 GMT ## [9.7.2](https://github.com/microsoft/fluentui/tree/@fluentui/react-components_v9.7.2) -Mon, 05 Dec 2022 18:29:19 GMT +Mon, 05 Dec 2022 18:29:19 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-components_v9.7.1..@fluentui/react-components_v9.7.2) ### Patches @@ -5531,7 +5531,7 @@ Mon, 05 Dec 2022 18:29:19 GMT ## [9.7.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-components_v9.7.1) -Thu, 17 Nov 2022 23:05:30 GMT +Thu, 17 Nov 2022 23:05:30 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-components_v9.7.0..@fluentui/react-components_v9.7.1) ### Minor changes @@ -5572,7 +5572,7 @@ Thu, 17 Nov 2022 23:05:30 GMT ## [9.7.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-components_v9.7.0) -Fri, 11 Nov 2022 14:57:29 GMT +Fri, 11 Nov 2022 14:57:29 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-components_v9.6.3..@fluentui/react-components_v9.7.0) ### Minor changes @@ -5721,7 +5721,7 @@ Fri, 11 Nov 2022 14:57:29 GMT ## [9.6.3](https://github.com/microsoft/fluentui/tree/@fluentui/react-components_v9.6.3) -Wed, 02 Nov 2022 14:27:34 GMT +Wed, 02 Nov 2022 14:27:34 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-components_v9.6.2..@fluentui/react-components_v9.6.3) ### Changes @@ -5731,7 +5731,7 @@ Wed, 02 Nov 2022 14:27:34 GMT ## [9.6.2](https://github.com/microsoft/fluentui/tree/@fluentui/react-components_v9.6.2) -Wed, 02 Nov 2022 11:57:45 GMT +Wed, 02 Nov 2022 11:57:45 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-components_v9.6.1..@fluentui/react-components_v9.6.2) ### Minor changes @@ -5853,7 +5853,7 @@ Wed, 02 Nov 2022 11:57:45 GMT ## [9.6.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-components_v9.6.1) -Wed, 26 Oct 2022 18:05:51 GMT +Wed, 26 Oct 2022 18:05:51 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-components_v9.6.0..@fluentui/react-components_v9.6.1) ### Patches @@ -5863,7 +5863,7 @@ Wed, 26 Oct 2022 18:05:51 GMT ## [9.6.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-components_v9.6.0) -Tue, 25 Oct 2022 22:09:49 GMT +Tue, 25 Oct 2022 22:09:49 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-components_v9.5.3..@fluentui/react-components_v9.6.0) ### Minor changes @@ -5878,7 +5878,7 @@ Tue, 25 Oct 2022 22:09:49 GMT ## [9.5.3](https://github.com/microsoft/fluentui/tree/@fluentui/react-components_v9.5.3) -Tue, 25 Oct 2022 00:35:26 GMT +Tue, 25 Oct 2022 00:35:26 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-components_v9.5.2..@fluentui/react-components_v9.5.3) ### Patches @@ -5918,7 +5918,7 @@ Tue, 25 Oct 2022 00:35:26 GMT ## [9.5.2](https://github.com/microsoft/fluentui/tree/@fluentui/react-components_v9.5.2) -Thu, 20 Oct 2022 08:39:25 GMT +Thu, 20 Oct 2022 08:39:25 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-components_v9.5.1..@fluentui/react-components_v9.5.2) ### Minor changes @@ -6083,7 +6083,7 @@ Thu, 20 Oct 2022 08:39:25 GMT ## [9.5.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-components_v9.5.1) -Thu, 13 Oct 2022 12:56:29 GMT +Thu, 13 Oct 2022 12:56:29 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-components_v9.5.0..@fluentui/react-components_v9.5.1) ### Minor changes @@ -6100,7 +6100,7 @@ Thu, 13 Oct 2022 12:56:29 GMT ## [9.5.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-components_v9.5.0) -Thu, 13 Oct 2022 11:02:40 GMT +Thu, 13 Oct 2022 11:02:40 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-components_v9.4.0..@fluentui/react-components_v9.5.0) ### Minor changes @@ -6227,7 +6227,7 @@ Thu, 13 Oct 2022 11:02:40 GMT ## [9.4.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-components_v9.4.0) -Mon, 03 Oct 2022 22:24:33 GMT +Mon, 03 Oct 2022 22:24:33 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-components_v9.3.2..@fluentui/react-components_v9.4.0) ### Minor changes @@ -6283,7 +6283,7 @@ Mon, 03 Oct 2022 22:24:33 GMT ## [9.3.2](https://github.com/microsoft/fluentui/tree/@fluentui/react-components_v9.3.2) -Fri, 23 Sep 2022 10:32:29 GMT +Fri, 23 Sep 2022 10:32:29 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-components_v9.3.1..@fluentui/react-components_v9.3.2) ### Patches @@ -6298,7 +6298,7 @@ Fri, 23 Sep 2022 10:32:29 GMT ## [9.3.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-components_v9.3.1) -Tue, 20 Sep 2022 20:55:42 GMT +Tue, 20 Sep 2022 20:55:42 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-components_v9.3.0..@fluentui/react-components_v9.3.1) ### Minor changes @@ -6329,7 +6329,7 @@ Tue, 20 Sep 2022 20:55:42 GMT ## [9.3.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-components_v9.3.0) -Thu, 15 Sep 2022 09:48:53 GMT +Thu, 15 Sep 2022 09:48:53 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-components_v9.2.0..@fluentui/react-components_v9.3.0) ### Minor changes @@ -6558,7 +6558,7 @@ Thu, 15 Sep 2022 09:48:53 GMT ## [9.2.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-components_v9.2.0) -Wed, 03 Aug 2022 16:03:34 GMT +Wed, 03 Aug 2022 16:03:34 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-components_v9.1.1..@fluentui/react-components_v9.2.0) ### Minor changes @@ -6684,7 +6684,7 @@ Wed, 03 Aug 2022 16:03:34 GMT ## [9.1.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-components_v9.1.1) -Fri, 15 Jul 2022 18:27:26 GMT +Fri, 15 Jul 2022 18:27:26 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-components_v9.1.1..@fluentui/react-components_v9.1.1) ### Patches @@ -6694,7 +6694,7 @@ Fri, 15 Jul 2022 18:27:26 GMT ## [9.1.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-components_v9.1.1) -Thu, 14 Jul 2022 21:21:00 GMT +Thu, 14 Jul 2022 21:21:00 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-components_v9.1.0..@fluentui/react-components_v9.1.1) ### Patches @@ -6777,7 +6777,7 @@ Thu, 14 Jul 2022 21:21:00 GMT ## [9.1.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-components_v9.1.0) -Thu, 14 Jul 2022 17:06:12 GMT +Thu, 14 Jul 2022 17:06:12 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-components_v9.0.1..@fluentui/react-components_v9.1.0) ### Minor changes @@ -6841,7 +6841,7 @@ Thu, 14 Jul 2022 17:06:12 GMT ## [9.0.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-components_v9.0.1) -Tue, 28 Jun 2022 17:39:45 GMT +Tue, 28 Jun 2022 17:39:45 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-components_v9.0.0..@fluentui/react-components_v9.0.1) ### Patches @@ -6918,7 +6918,7 @@ Tue, 28 Jun 2022 17:39:45 GMT ## [9.0.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-components_v9.0.0) -Tue, 28 Jun 2022 15:13:15 GMT +Tue, 28 Jun 2022 15:13:15 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-components_v9.0.0-rc.15..@fluentui/react-components_v9.0.0) ### Patches @@ -7203,7 +7203,7 @@ Tue, 28 Jun 2022 15:13:15 GMT ## [9.0.0-rc.15](https://github.com/microsoft/fluentui/tree/@fluentui/react-components_v9.0.0-rc.15) -Thu, 23 Jun 2022 14:25:31 GMT +Thu, 23 Jun 2022 14:25:31 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-components_v9.0.0-rc.14..@fluentui/react-components_v9.0.0-rc.15) ### Changes @@ -7213,7 +7213,7 @@ Thu, 23 Jun 2022 14:25:31 GMT ## [9.0.0-rc.14](https://github.com/microsoft/fluentui/tree/@fluentui/react-components_v9.0.0-rc.14) -Tue, 31 May 2022 21:28:34 GMT +Tue, 31 May 2022 21:28:34 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-components_v9.0.0-rc.13..@fluentui/react-components_v9.0.0-rc.14) ### Changes @@ -7313,7 +7313,7 @@ Tue, 31 May 2022 21:28:34 GMT ## [9.0.0-rc.13](https://github.com/microsoft/fluentui/tree/@fluentui/react-components_v9.0.0-rc.13) -Thu, 26 May 2022 21:01:21 GMT +Thu, 26 May 2022 21:01:21 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-components_v9.0.0-rc.12..@fluentui/react-components_v9.0.0-rc.13) ### Changes @@ -7360,7 +7360,7 @@ Thu, 26 May 2022 21:01:21 GMT ## [9.0.0-rc.12](https://github.com/microsoft/fluentui/tree/@fluentui/react-components_v9.0.0-rc.12) -Mon, 23 May 2022 18:56:39 GMT +Mon, 23 May 2022 18:56:39 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-components_v9.0.0-rc.11..@fluentui/react-components_v9.0.0-rc.12) ### Changes @@ -7437,7 +7437,7 @@ Mon, 23 May 2022 18:56:39 GMT ## [9.0.0-rc.11](https://github.com/microsoft/fluentui/tree/@fluentui/react-components_v9.0.0-rc.11) -Mon, 23 May 2022 12:13:29 GMT +Mon, 23 May 2022 12:13:29 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-components_v9.0.0-rc.10..@fluentui/react-components_v9.0.0-rc.11) ### Changes @@ -7641,7 +7641,7 @@ Mon, 23 May 2022 12:13:29 GMT ## [9.0.0-rc.10](https://github.com/microsoft/fluentui/tree/@fluentui/react-components_v9.0.0-rc.10) -Thu, 05 May 2022 18:26:23 GMT +Thu, 05 May 2022 18:26:23 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-components_v9.0.0-rc.9..@fluentui/react-components_v9.0.0-rc.10) ### Changes @@ -7689,7 +7689,7 @@ Thu, 05 May 2022 18:26:23 GMT ## [9.0.0-rc.9](https://github.com/microsoft/fluentui/tree/@fluentui/react-components_v9.0.0-rc.9) -Wed, 04 May 2022 13:26:33 GMT +Wed, 04 May 2022 13:26:33 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-components_v9.0.0-rc.8..@fluentui/react-components_v9.0.0-rc.9) ### Changes @@ -7767,7 +7767,7 @@ Wed, 04 May 2022 13:26:33 GMT ## [9.0.0-rc.8](https://github.com/microsoft/fluentui/tree/@fluentui/react-components_v9.0.0-rc.8) -Mon, 25 Apr 2022 09:32:14 GMT +Mon, 25 Apr 2022 09:32:14 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-components_v9.0.0-rc.7..@fluentui/react-components_v9.0.0-rc.8) ### Changes @@ -7801,7 +7801,7 @@ Mon, 25 Apr 2022 09:32:14 GMT ## [9.0.0-rc.7](https://github.com/microsoft/fluentui/tree/@fluentui/react-components_v9.0.0-rc.7) -Tue, 19 Apr 2022 19:16:44 GMT +Tue, 19 Apr 2022 19:16:44 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-components_v9.0.0-rc.6..@fluentui/react-components_v9.0.0-rc.7) ### Changes diff --git a/packages/react-components/react-dialog/CHANGELOG.md b/packages/react-components/react-dialog/CHANGELOG.md index b3eb9636436dd0..a05ea27570b0f7 100644 --- a/packages/react-components/react-dialog/CHANGELOG.md +++ b/packages/react-components/react-dialog/CHANGELOG.md @@ -6,7 +6,7 @@ This log was last generated on Tue, 23 Apr 2024 08:17:49 GMT and should not be m ## [9.10.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-dialog_v9.10.1) -Tue, 23 Apr 2024 08:17:49 GMT +Tue, 23 Apr 2024 08:17:49 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-dialog_v9.10.0..@fluentui/react-dialog_v9.10.1) ### Patches @@ -21,7 +21,7 @@ Tue, 23 Apr 2024 08:17:49 GMT ## [9.10.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-dialog_v9.10.0) -Wed, 17 Apr 2024 21:53:51 GMT +Wed, 17 Apr 2024 21:53:51 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-dialog_v9.9.16..@fluentui/react-dialog_v9.10.0) ### Minor changes @@ -38,7 +38,7 @@ Wed, 17 Apr 2024 21:53:51 GMT ## [9.9.16](https://github.com/microsoft/fluentui/tree/@fluentui/react-dialog_v9.9.16) -Tue, 02 Apr 2024 09:48:01 GMT +Tue, 02 Apr 2024 09:48:01 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-dialog_v9.9.15..@fluentui/react-dialog_v9.9.16) ### Patches @@ -53,7 +53,7 @@ Tue, 02 Apr 2024 09:48:01 GMT ## [9.9.15](https://github.com/microsoft/fluentui/tree/@fluentui/react-dialog_v9.9.15) -Mon, 18 Mar 2024 19:50:46 GMT +Mon, 18 Mar 2024 19:50:46 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-dialog_v9.9.14..@fluentui/react-dialog_v9.9.15) ### Patches @@ -69,7 +69,7 @@ Mon, 18 Mar 2024 19:50:46 GMT ## [9.9.14](https://github.com/microsoft/fluentui/tree/@fluentui/react-dialog_v9.9.14) -Fri, 15 Mar 2024 21:43:49 GMT +Fri, 15 Mar 2024 21:43:49 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-dialog_v9.9.13..@fluentui/react-dialog_v9.9.14) ### Patches @@ -85,7 +85,7 @@ Fri, 15 Mar 2024 21:43:49 GMT ## [9.9.13](https://github.com/microsoft/fluentui/tree/@fluentui/react-dialog_v9.9.13) -Thu, 07 Mar 2024 19:33:27 GMT +Thu, 07 Mar 2024 19:33:27 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-dialog_v9.9.12..@fluentui/react-dialog_v9.9.13) ### Patches @@ -101,7 +101,7 @@ Thu, 07 Mar 2024 19:33:27 GMT ## [9.9.12](https://github.com/microsoft/fluentui/tree/@fluentui/react-dialog_v9.9.12) -Wed, 28 Feb 2024 02:34:19 GMT +Wed, 28 Feb 2024 02:34:19 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-dialog_v9.9.11..@fluentui/react-dialog_v9.9.12) ### Patches @@ -116,7 +116,7 @@ Wed, 28 Feb 2024 02:34:19 GMT ## [9.9.11](https://github.com/microsoft/fluentui/tree/@fluentui/react-dialog_v9.9.11) -Tue, 20 Feb 2024 14:22:20 GMT +Tue, 20 Feb 2024 14:22:20 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-dialog_v9.9.10..@fluentui/react-dialog_v9.9.11) ### Patches @@ -130,7 +130,7 @@ Tue, 20 Feb 2024 14:22:20 GMT ## [9.9.10](https://github.com/microsoft/fluentui/tree/@fluentui/react-dialog_v9.9.10) -Tue, 06 Feb 2024 17:55:21 GMT +Tue, 06 Feb 2024 17:55:21 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-dialog_v9.9.9..@fluentui/react-dialog_v9.9.10) ### Patches @@ -141,7 +141,7 @@ Tue, 06 Feb 2024 17:55:21 GMT ## [9.9.9](https://github.com/microsoft/fluentui/tree/@fluentui/react-dialog_v9.9.9) -Tue, 30 Jan 2024 23:16:54 GMT +Tue, 30 Jan 2024 23:16:54 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-dialog_v9.9.8..@fluentui/react-dialog_v9.9.9) ### Patches @@ -155,7 +155,7 @@ Tue, 30 Jan 2024 23:16:54 GMT ## [9.9.8](https://github.com/microsoft/fluentui/tree/@fluentui/react-dialog_v9.9.8) -Tue, 23 Jan 2024 15:11:00 GMT +Tue, 23 Jan 2024 15:11:00 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-dialog_v9.9.7..@fluentui/react-dialog_v9.9.8) ### Patches @@ -169,7 +169,7 @@ Tue, 23 Jan 2024 15:11:00 GMT ## [9.9.7](https://github.com/microsoft/fluentui/tree/@fluentui/react-dialog_v9.9.7) -Thu, 18 Jan 2024 14:25:03 GMT +Thu, 18 Jan 2024 14:25:03 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-dialog_v9.9.6..@fluentui/react-dialog_v9.9.7) ### Patches @@ -184,7 +184,7 @@ Thu, 18 Jan 2024 14:25:03 GMT ## [9.9.6](https://github.com/microsoft/fluentui/tree/@fluentui/react-dialog_v9.9.6) -Wed, 17 Jan 2024 16:18:49 GMT +Wed, 17 Jan 2024 16:18:49 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-dialog_v9.9.5..@fluentui/react-dialog_v9.9.6) ### Patches @@ -199,7 +199,7 @@ Wed, 17 Jan 2024 16:18:49 GMT ## [9.9.5](https://github.com/microsoft/fluentui/tree/@fluentui/react-dialog_v9.9.5) -Tue, 16 Jan 2024 13:14:17 GMT +Tue, 16 Jan 2024 13:14:17 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-dialog_v9.9.4..@fluentui/react-dialog_v9.9.5) ### Patches @@ -213,7 +213,7 @@ Tue, 16 Jan 2024 13:14:17 GMT ## [9.9.4](https://github.com/microsoft/fluentui/tree/@fluentui/react-dialog_v9.9.4) -Thu, 11 Jan 2024 09:04:29 GMT +Thu, 11 Jan 2024 09:04:29 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-dialog_v9.9.3..@fluentui/react-dialog_v9.9.4) ### Patches @@ -222,7 +222,7 @@ Thu, 11 Jan 2024 09:04:29 GMT ## [9.9.3](https://github.com/microsoft/fluentui/tree/@fluentui/react-dialog_v9.9.3) -Mon, 08 Jan 2024 16:24:21 GMT +Mon, 08 Jan 2024 16:24:21 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-dialog_v9.9.2..@fluentui/react-dialog_v9.9.3) ### Patches @@ -237,7 +237,7 @@ Mon, 08 Jan 2024 16:24:21 GMT ## [9.9.2](https://github.com/microsoft/fluentui/tree/@fluentui/react-dialog_v9.9.2) -Wed, 03 Jan 2024 09:26:44 GMT +Wed, 03 Jan 2024 09:26:44 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-dialog_v9.9.1..@fluentui/react-dialog_v9.9.2) ### Patches @@ -251,7 +251,7 @@ Wed, 03 Jan 2024 09:26:44 GMT ## [9.9.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-dialog_v9.9.1) -Mon, 18 Dec 2023 14:40:46 GMT +Mon, 18 Dec 2023 14:40:46 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-dialog_v9.9.0..@fluentui/react-dialog_v9.9.1) ### Patches @@ -266,7 +266,7 @@ Mon, 18 Dec 2023 14:40:46 GMT ## [9.9.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-dialog_v9.9.0) -Thu, 14 Dec 2023 09:58:43 GMT +Thu, 14 Dec 2023 09:58:43 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-dialog_v9.8.7..@fluentui/react-dialog_v9.9.0) ### Minor changes @@ -282,7 +282,7 @@ Thu, 14 Dec 2023 09:58:43 GMT ## [9.8.7](https://github.com/microsoft/fluentui/tree/@fluentui/react-dialog_v9.8.7) -Thu, 30 Nov 2023 13:42:08 GMT +Thu, 30 Nov 2023 13:42:08 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-dialog_v9.8.6..@fluentui/react-dialog_v9.8.7) ### Patches @@ -294,7 +294,7 @@ Thu, 30 Nov 2023 13:42:08 GMT ## [9.8.6](https://github.com/microsoft/fluentui/tree/@fluentui/react-dialog_v9.8.6) -Mon, 20 Nov 2023 09:55:09 GMT +Mon, 20 Nov 2023 09:55:09 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-dialog_v9.8.5..@fluentui/react-dialog_v9.8.6) ### Patches @@ -306,7 +306,7 @@ Mon, 20 Nov 2023 09:55:09 GMT ## [9.8.5](https://github.com/microsoft/fluentui/tree/@fluentui/react-dialog_v9.8.5) -Tue, 14 Nov 2023 17:51:27 GMT +Tue, 14 Nov 2023 17:51:27 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-dialog_v9.8.4..@fluentui/react-dialog_v9.8.5) ### Patches @@ -316,7 +316,7 @@ Tue, 14 Nov 2023 17:51:27 GMT ## [9.8.4](https://github.com/microsoft/fluentui/tree/@fluentui/react-dialog_v9.8.4) -Thu, 09 Nov 2023 17:29:34 GMT +Thu, 09 Nov 2023 17:29:34 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-dialog_v9.8.3..@fluentui/react-dialog_v9.8.4) ### Patches @@ -334,7 +334,7 @@ Thu, 09 Nov 2023 17:29:34 GMT ## [9.8.3](https://github.com/microsoft/fluentui/tree/@fluentui/react-dialog_v9.8.3) -Mon, 06 Nov 2023 13:16:03 GMT +Mon, 06 Nov 2023 13:16:03 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-dialog_v9.8.2..@fluentui/react-dialog_v9.8.3) ### Patches @@ -343,7 +343,7 @@ Mon, 06 Nov 2023 13:16:03 GMT ## [9.8.2](https://github.com/microsoft/fluentui/tree/@fluentui/react-dialog_v9.8.2) -Wed, 01 Nov 2023 12:55:58 GMT +Wed, 01 Nov 2023 12:55:58 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-dialog_v9.8.1..@fluentui/react-dialog_v9.8.2) ### Patches @@ -356,7 +356,7 @@ Wed, 01 Nov 2023 12:55:58 GMT ## [9.8.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-dialog_v9.8.1) -Sat, 28 Oct 2023 23:35:59 GMT +Sat, 28 Oct 2023 23:35:59 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-dialog_v9.8.0..@fluentui/react-dialog_v9.8.1) ### Patches @@ -367,7 +367,7 @@ Sat, 28 Oct 2023 23:35:59 GMT ## [9.8.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-dialog_v9.8.0) -Mon, 23 Oct 2023 09:51:56 GMT +Mon, 23 Oct 2023 09:51:56 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-dialog_v9.7.10..@fluentui/react-dialog_v9.8.0) ### Minor changes @@ -378,7 +378,7 @@ Mon, 23 Oct 2023 09:51:56 GMT ## [9.7.10](https://github.com/microsoft/fluentui/tree/@fluentui/react-dialog_v9.7.10) -Wed, 18 Oct 2023 17:54:03 GMT +Wed, 18 Oct 2023 17:54:03 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-dialog_v9.7.9..@fluentui/react-dialog_v9.7.10) ### Patches @@ -392,7 +392,7 @@ Wed, 18 Oct 2023 17:54:03 GMT ## [9.7.9](https://github.com/microsoft/fluentui/tree/@fluentui/react-dialog_v9.7.9) -Thu, 12 Oct 2023 14:55:44 GMT +Thu, 12 Oct 2023 14:55:44 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-dialog_v9.7.8..@fluentui/react-dialog_v9.7.9) ### Patches @@ -401,7 +401,7 @@ Thu, 12 Oct 2023 14:55:44 GMT ## [9.7.8](https://github.com/microsoft/fluentui/tree/@fluentui/react-dialog_v9.7.8) -Wed, 11 Oct 2023 13:54:23 GMT +Wed, 11 Oct 2023 13:54:23 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-dialog_v9.7.7..@fluentui/react-dialog_v9.7.8) ### Patches @@ -416,7 +416,7 @@ Wed, 11 Oct 2023 13:54:23 GMT ## [9.7.7](https://github.com/microsoft/fluentui/tree/@fluentui/react-dialog_v9.7.7) -Mon, 09 Oct 2023 20:45:41 GMT +Mon, 09 Oct 2023 20:45:41 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-dialog_v9.7.6..@fluentui/react-dialog_v9.7.7) ### Patches @@ -432,7 +432,7 @@ Mon, 09 Oct 2023 20:45:41 GMT ## [9.7.6](https://github.com/microsoft/fluentui/tree/@fluentui/react-dialog_v9.7.6) -Thu, 05 Oct 2023 15:25:30 GMT +Thu, 05 Oct 2023 15:25:30 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-dialog_v9.7.5..@fluentui/react-dialog_v9.7.6) ### Patches @@ -449,7 +449,7 @@ Thu, 05 Oct 2023 15:25:30 GMT ## [9.7.5](https://github.com/microsoft/fluentui/tree/@fluentui/react-dialog_v9.7.5) -Wed, 04 Oct 2023 08:45:47 GMT +Wed, 04 Oct 2023 08:45:47 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-dialog_v9.7.4..@fluentui/react-dialog_v9.7.5) ### Patches @@ -463,7 +463,7 @@ Wed, 04 Oct 2023 08:45:47 GMT ## [9.7.4](https://github.com/microsoft/fluentui/tree/@fluentui/react-dialog_v9.7.4) -Mon, 02 Oct 2023 08:56:05 GMT +Mon, 02 Oct 2023 08:56:05 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-dialog_v9.7.3..@fluentui/react-dialog_v9.7.4) ### Patches @@ -474,7 +474,7 @@ Mon, 02 Oct 2023 08:56:05 GMT ## [9.7.3](https://github.com/microsoft/fluentui/tree/@fluentui/react-dialog_v9.7.3) -Tue, 26 Sep 2023 17:49:05 GMT +Tue, 26 Sep 2023 17:49:05 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-dialog_v9.7.2..@fluentui/react-dialog_v9.7.3) ### Patches @@ -492,7 +492,7 @@ Tue, 26 Sep 2023 17:49:05 GMT ## [9.7.2](https://github.com/microsoft/fluentui/tree/@fluentui/react-dialog_v9.7.2) -Tue, 26 Sep 2023 15:32:01 GMT +Tue, 26 Sep 2023 15:32:01 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-dialog_v9.7.1..@fluentui/react-dialog_v9.7.2) ### Patches @@ -514,7 +514,7 @@ Tue, 26 Sep 2023 15:32:01 GMT ## [9.7.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-dialog_v9.7.1) -Wed, 20 Sep 2023 17:47:36 GMT +Wed, 20 Sep 2023 17:47:36 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-dialog_v9.7.0..@fluentui/react-dialog_v9.7.1) ### Patches @@ -527,7 +527,7 @@ Wed, 20 Sep 2023 17:47:36 GMT ## [9.7.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-dialog_v9.7.0) -Wed, 20 Sep 2023 14:59:52 GMT +Wed, 20 Sep 2023 14:59:52 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-dialog_v9.6.5..@fluentui/react-dialog_v9.7.0) ### Minor changes @@ -544,7 +544,7 @@ Wed, 20 Sep 2023 14:59:52 GMT ## [9.6.5](https://github.com/microsoft/fluentui/tree/@fluentui/react-dialog_v9.6.5) -Thu, 14 Sep 2023 16:44:47 GMT +Thu, 14 Sep 2023 16:44:47 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-dialog_v9.6.4..@fluentui/react-dialog_v9.6.5) ### Patches @@ -553,7 +553,7 @@ Thu, 14 Sep 2023 16:44:47 GMT ## [9.6.4](https://github.com/microsoft/fluentui/tree/@fluentui/react-dialog_v9.6.4) -Tue, 12 Sep 2023 08:51:34 GMT +Tue, 12 Sep 2023 08:51:34 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-dialog_v9.6.3..@fluentui/react-dialog_v9.6.4) ### Patches @@ -564,7 +564,7 @@ Tue, 12 Sep 2023 08:51:34 GMT ## [9.6.3](https://github.com/microsoft/fluentui/tree/@fluentui/react-dialog_v9.6.3) -Wed, 06 Sep 2023 13:31:31 GMT +Wed, 06 Sep 2023 13:31:31 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-dialog_v9.6.2..@fluentui/react-dialog_v9.6.3) ### Patches @@ -578,7 +578,7 @@ Wed, 06 Sep 2023 13:31:31 GMT ## [9.6.2](https://github.com/microsoft/fluentui/tree/@fluentui/react-dialog_v9.6.2) -Tue, 05 Sep 2023 15:39:04 GMT +Tue, 05 Sep 2023 15:39:04 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-dialog_v9.6.1..@fluentui/react-dialog_v9.6.2) ### Patches @@ -592,7 +592,7 @@ Tue, 05 Sep 2023 15:39:04 GMT ## [9.6.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-dialog_v9.6.1) -Tue, 05 Sep 2023 13:29:20 GMT +Tue, 05 Sep 2023 13:29:20 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-dialog_v9.6.0..@fluentui/react-dialog_v9.6.1) ### Patches @@ -613,7 +613,7 @@ Tue, 05 Sep 2023 13:29:20 GMT ## [9.6.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-dialog_v9.6.0) -Tue, 29 Aug 2023 12:57:33 GMT +Tue, 29 Aug 2023 12:57:33 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-dialog_v9.5.26..@fluentui/react-dialog_v9.6.0) ### Minor changes @@ -628,7 +628,7 @@ Tue, 29 Aug 2023 12:57:33 GMT ## [9.5.26](https://github.com/microsoft/fluentui/tree/@fluentui/react-dialog_v9.5.26) -Thu, 24 Aug 2023 10:26:35 GMT +Thu, 24 Aug 2023 10:26:35 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-dialog_v9.5.25..@fluentui/react-dialog_v9.5.26) ### Patches @@ -642,7 +642,7 @@ Thu, 24 Aug 2023 10:26:35 GMT ## [9.5.25](https://github.com/microsoft/fluentui/tree/@fluentui/react-dialog_v9.5.25) -Wed, 23 Aug 2023 12:01:49 GMT +Wed, 23 Aug 2023 12:01:49 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-dialog_v9.5.24..@fluentui/react-dialog_v9.5.25) ### Patches @@ -656,7 +656,7 @@ Wed, 23 Aug 2023 12:01:49 GMT ## [9.5.24](https://github.com/microsoft/fluentui/tree/@fluentui/react-dialog_v9.5.24) -Wed, 16 Aug 2023 17:41:08 GMT +Wed, 16 Aug 2023 17:41:08 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-dialog_v9.5.23..@fluentui/react-dialog_v9.5.24) ### Patches @@ -665,7 +665,7 @@ Wed, 16 Aug 2023 17:41:08 GMT ## [9.5.23](https://github.com/microsoft/fluentui/tree/@fluentui/react-dialog_v9.5.23) -Wed, 16 Aug 2023 11:38:33 GMT +Wed, 16 Aug 2023 11:38:33 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-dialog_v9.5.22..@fluentui/react-dialog_v9.5.23) ### Patches @@ -674,7 +674,7 @@ Wed, 16 Aug 2023 11:38:33 GMT ## [9.5.22](https://github.com/microsoft/fluentui/tree/@fluentui/react-dialog_v9.5.22) -Fri, 11 Aug 2023 12:14:26 GMT +Fri, 11 Aug 2023 12:14:26 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-dialog_v9.5.21..@fluentui/react-dialog_v9.5.22) ### Patches @@ -688,7 +688,7 @@ Fri, 11 Aug 2023 12:14:26 GMT ## [9.5.21](https://github.com/microsoft/fluentui/tree/@fluentui/react-dialog_v9.5.21) -Wed, 09 Aug 2023 13:16:54 GMT +Wed, 09 Aug 2023 13:16:54 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-dialog_v9.5.20..@fluentui/react-dialog_v9.5.21) ### Patches @@ -704,7 +704,7 @@ Wed, 09 Aug 2023 13:16:54 GMT ## [9.5.20](https://github.com/microsoft/fluentui/tree/@fluentui/react-dialog_v9.5.20) -Fri, 04 Aug 2023 08:52:58 GMT +Fri, 04 Aug 2023 08:52:58 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-dialog_v9.5.19..@fluentui/react-dialog_v9.5.20) ### Patches @@ -720,7 +720,7 @@ Fri, 04 Aug 2023 08:52:58 GMT ## [9.5.19](https://github.com/microsoft/fluentui/tree/@fluentui/react-dialog_v9.5.19) -Tue, 01 Aug 2023 10:17:21 GMT +Tue, 01 Aug 2023 10:17:21 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-dialog_v9.5.18..@fluentui/react-dialog_v9.5.19) ### Patches @@ -731,7 +731,7 @@ Tue, 01 Aug 2023 10:17:21 GMT ## [9.5.18](https://github.com/microsoft/fluentui/tree/@fluentui/react-dialog_v9.5.18) -Tue, 25 Jul 2023 13:29:18 GMT +Tue, 25 Jul 2023 13:29:18 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-dialog_v9.5.17..@fluentui/react-dialog_v9.5.18) ### Patches @@ -743,7 +743,7 @@ Tue, 25 Jul 2023 13:29:18 GMT ## [9.5.17](https://github.com/microsoft/fluentui/tree/@fluentui/react-dialog_v9.5.17) -Thu, 20 Jul 2023 18:27:28 GMT +Thu, 20 Jul 2023 18:27:28 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-dialog_v9.5.16..@fluentui/react-dialog_v9.5.17) ### Patches @@ -755,7 +755,7 @@ Thu, 20 Jul 2023 18:27:28 GMT ## [9.5.16](https://github.com/microsoft/fluentui/tree/@fluentui/react-dialog_v9.5.16) -Tue, 11 Jul 2023 18:46:36 GMT +Tue, 11 Jul 2023 18:46:36 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-dialog_v9.5.15..@fluentui/react-dialog_v9.5.16) ### Patches @@ -765,7 +765,7 @@ Tue, 11 Jul 2023 18:46:36 GMT ## [9.5.15](https://github.com/microsoft/fluentui/tree/@fluentui/react-dialog_v9.5.15) -Mon, 03 Jul 2023 13:34:28 GMT +Mon, 03 Jul 2023 13:34:28 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-dialog_v9.5.14..@fluentui/react-dialog_v9.5.15) ### Patches @@ -775,7 +775,7 @@ Mon, 03 Jul 2023 13:34:28 GMT ## [9.5.14](https://github.com/microsoft/fluentui/tree/@fluentui/react-dialog_v9.5.14) -Mon, 03 Jul 2023 11:57:14 GMT +Mon, 03 Jul 2023 11:57:14 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-dialog_v9.5.13..@fluentui/react-dialog_v9.5.14) ### Patches @@ -790,7 +790,7 @@ Mon, 03 Jul 2023 11:57:14 GMT ## [9.5.13](https://github.com/microsoft/fluentui/tree/@fluentui/react-dialog_v9.5.13) -Wed, 28 Jun 2023 11:12:25 GMT +Wed, 28 Jun 2023 11:12:25 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-dialog_v9.5.12..@fluentui/react-dialog_v9.5.13) ### Patches @@ -804,7 +804,7 @@ Wed, 28 Jun 2023 11:12:25 GMT ## [9.5.12](https://github.com/microsoft/fluentui/tree/@fluentui/react-dialog_v9.5.12) -Tue, 27 Jun 2023 11:21:23 GMT +Tue, 27 Jun 2023 11:21:23 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-dialog_v9.5.11..@fluentui/react-dialog_v9.5.12) ### Patches @@ -814,7 +814,7 @@ Tue, 27 Jun 2023 11:21:23 GMT ## [9.5.11](https://github.com/microsoft/fluentui/tree/@fluentui/react-dialog_v9.5.11) -Mon, 26 Jun 2023 09:53:54 GMT +Mon, 26 Jun 2023 09:53:54 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-dialog_v9.5.10..@fluentui/react-dialog_v9.5.11) ### Patches @@ -830,7 +830,7 @@ Mon, 26 Jun 2023 09:53:54 GMT ## [9.5.10](https://github.com/microsoft/fluentui/tree/@fluentui/react-dialog_v9.5.10) -Tue, 20 Jun 2023 12:38:58 GMT +Tue, 20 Jun 2023 12:38:58 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-dialog_v9.5.9..@fluentui/react-dialog_v9.5.10) ### Patches @@ -850,7 +850,7 @@ Tue, 20 Jun 2023 12:38:58 GMT ## [9.5.9](https://github.com/microsoft/fluentui/tree/@fluentui/react-dialog_v9.5.9) -Wed, 31 May 2023 06:46:12 GMT +Wed, 31 May 2023 06:46:12 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-dialog_v9.5.8..@fluentui/react-dialog_v9.5.9) ### Patches @@ -866,7 +866,7 @@ Wed, 31 May 2023 06:46:12 GMT ## [9.5.8](https://github.com/microsoft/fluentui/tree/@fluentui/react-dialog_v9.5.8) -Thu, 25 May 2023 10:00:48 GMT +Thu, 25 May 2023 10:00:48 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-dialog_v9.5.7..@fluentui/react-dialog_v9.5.8) ### Patches @@ -881,7 +881,7 @@ Thu, 25 May 2023 10:00:48 GMT ## [9.5.7](https://github.com/microsoft/fluentui/tree/@fluentui/react-dialog_v9.5.7) -Wed, 24 May 2023 20:45:26 GMT +Wed, 24 May 2023 20:45:26 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-dialog_v9.5.6..@fluentui/react-dialog_v9.5.7) ### Patches @@ -892,7 +892,7 @@ Wed, 24 May 2023 20:45:26 GMT ## [9.5.6](https://github.com/microsoft/fluentui/tree/@fluentui/react-dialog_v9.5.6) -Thu, 18 May 2023 13:11:08 GMT +Thu, 18 May 2023 13:11:08 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-dialog_v9.5.5..@fluentui/react-dialog_v9.5.6) ### Patches @@ -902,7 +902,7 @@ Thu, 18 May 2023 13:11:08 GMT ## [9.5.5](https://github.com/microsoft/fluentui/tree/@fluentui/react-dialog_v9.5.5) -Thu, 18 May 2023 00:39:06 GMT +Thu, 18 May 2023 00:39:06 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-dialog_v9.5.4..@fluentui/react-dialog_v9.5.5) ### Patches @@ -917,7 +917,7 @@ Thu, 18 May 2023 00:39:06 GMT ## [9.5.4](https://github.com/microsoft/fluentui/tree/@fluentui/react-dialog_v9.5.4) -Fri, 12 May 2023 20:27:17 GMT +Fri, 12 May 2023 20:27:17 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-dialog_v9.5.3..@fluentui/react-dialog_v9.5.4) ### Patches @@ -939,7 +939,7 @@ Fri, 12 May 2023 20:27:17 GMT ## [9.5.3](https://github.com/microsoft/fluentui/tree/@fluentui/react-dialog_v9.5.3) -Mon, 24 Apr 2023 08:12:35 GMT +Mon, 24 Apr 2023 08:12:35 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-dialog_v9.5.2..@fluentui/react-dialog_v9.5.3) ### Patches @@ -951,7 +951,7 @@ Mon, 24 Apr 2023 08:12:35 GMT ## [9.5.2](https://github.com/microsoft/fluentui/tree/@fluentui/react-dialog_v9.5.2) -Mon, 17 Apr 2023 17:53:49 GMT +Mon, 17 Apr 2023 17:53:49 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-dialog_v9.5.1..@fluentui/react-dialog_v9.5.2) ### Patches @@ -966,7 +966,7 @@ Mon, 17 Apr 2023 17:53:49 GMT ## [9.5.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-dialog_v9.5.1) -Wed, 12 Apr 2023 09:31:43 GMT +Wed, 12 Apr 2023 09:31:43 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-dialog_v9.5.0..@fluentui/react-dialog_v9.5.1) ### Patches @@ -980,7 +980,7 @@ Wed, 12 Apr 2023 09:31:43 GMT ## [9.5.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-dialog_v9.5.0) -Fri, 07 Apr 2023 00:01:38 GMT +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 @@ -989,7 +989,7 @@ Fri, 07 Apr 2023 00:01:38 GMT ## [9.4.3](https://github.com/microsoft/fluentui/tree/@fluentui/react-dialog_v9.4.3) -Tue, 04 Apr 2023 18:44:48 GMT +Tue, 04 Apr 2023 18:44:48 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-dialog_v9.4.1..@fluentui/react-dialog_v9.4.3) ### Patches @@ -1003,7 +1003,7 @@ Tue, 04 Apr 2023 18:44:48 GMT ## [9.4.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-dialog_v9.4.1) -Tue, 21 Mar 2023 21:23:32 GMT +Tue, 21 Mar 2023 21:23:32 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-dialog_v9.4.0..@fluentui/react-dialog_v9.4.1) ### Patches @@ -1024,7 +1024,7 @@ Tue, 21 Mar 2023 21:23:32 GMT ## [9.4.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-dialog_v9.4.0) -Thu, 16 Mar 2023 14:36:57 GMT +Thu, 16 Mar 2023 14:36:57 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-dialog_v9.3.2..@fluentui/react-dialog_v9.4.0) ### Minor changes @@ -1042,7 +1042,7 @@ Thu, 16 Mar 2023 14:36:57 GMT ## [9.3.2](https://github.com/microsoft/fluentui/tree/@fluentui/react-dialog_v9.3.2) -Wed, 15 Mar 2023 10:19:53 GMT +Wed, 15 Mar 2023 10:19:53 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-dialog_v9.3.1..@fluentui/react-dialog_v9.3.2) ### Patches @@ -1054,7 +1054,7 @@ Wed, 15 Mar 2023 10:19:53 GMT ## [9.3.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-dialog_v9.3.1) -Mon, 13 Mar 2023 08:58:26 GMT +Mon, 13 Mar 2023 08:58:26 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-dialog_v9.3.0..@fluentui/react-dialog_v9.3.1) ### Patches @@ -1067,7 +1067,7 @@ Mon, 13 Mar 2023 08:58:26 GMT ## [9.3.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-dialog_v9.3.0) -Fri, 10 Mar 2023 07:14:00 GMT +Fri, 10 Mar 2023 07:14:00 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-dialog_v9.2.0..@fluentui/react-dialog_v9.3.0) ### Minor changes @@ -1081,7 +1081,7 @@ Fri, 10 Mar 2023 07:14:00 GMT ## [9.2.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-dialog_v9.2.0) -Wed, 08 Mar 2023 17:42:32 GMT +Wed, 08 Mar 2023 17:42:32 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-dialog_v9.1.16..@fluentui/react-dialog_v9.2.0) ### Minor changes @@ -1100,7 +1100,7 @@ Wed, 08 Mar 2023 17:42:32 GMT ## [9.1.16](https://github.com/microsoft/fluentui/tree/@fluentui/react-dialog_v9.1.16) -Wed, 15 Feb 2023 11:44:52 GMT +Wed, 15 Feb 2023 11:44:52 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-dialog_v9.1.15..@fluentui/react-dialog_v9.1.16) ### Patches @@ -1113,7 +1113,7 @@ Wed, 15 Feb 2023 11:44:52 GMT ## [9.1.15](https://github.com/microsoft/fluentui/tree/@fluentui/react-dialog_v9.1.15) -Mon, 13 Feb 2023 23:43:14 GMT +Mon, 13 Feb 2023 23:43:14 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-dialog_v9.1.14..@fluentui/react-dialog_v9.1.15) ### Patches @@ -1126,7 +1126,7 @@ Mon, 13 Feb 2023 23:43:14 GMT ## [9.1.14](https://github.com/microsoft/fluentui/tree/@fluentui/react-dialog_v9.1.14) -Fri, 10 Feb 2023 08:50:02 GMT +Fri, 10 Feb 2023 08:50:02 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-dialog_v9.1.13..@fluentui/react-dialog_v9.1.14) ### Patches @@ -1139,7 +1139,7 @@ Fri, 10 Feb 2023 08:50:02 GMT ## [9.1.13](https://github.com/microsoft/fluentui/tree/@fluentui/react-dialog_v9.1.13) -Tue, 07 Feb 2023 14:13:10 GMT +Tue, 07 Feb 2023 14:13:10 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-dialog_v9.1.12..@fluentui/react-dialog_v9.1.13) ### Patches @@ -1149,7 +1149,7 @@ Tue, 07 Feb 2023 14:13:10 GMT ## [9.1.12](https://github.com/microsoft/fluentui/tree/@fluentui/react-dialog_v9.1.12) -Tue, 31 Jan 2023 19:53:55 GMT +Tue, 31 Jan 2023 19:53:55 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-dialog_v9.1.11..@fluentui/react-dialog_v9.1.12) ### Patches @@ -1163,7 +1163,7 @@ Tue, 31 Jan 2023 19:53:55 GMT ## [9.1.11](https://github.com/microsoft/fluentui/tree/@fluentui/react-dialog_v9.1.11) -Thu, 26 Jan 2023 13:31:03 GMT +Thu, 26 Jan 2023 13:31:03 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-dialog_v9.1.10..@fluentui/react-dialog_v9.1.11) ### Patches @@ -1177,7 +1177,7 @@ Thu, 26 Jan 2023 13:31:03 GMT ## [9.1.10](https://github.com/microsoft/fluentui/tree/@fluentui/react-dialog_v9.1.10) -Mon, 23 Jan 2023 16:43:12 GMT +Mon, 23 Jan 2023 16:43:12 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-dialog_v9.1.9..@fluentui/react-dialog_v9.1.10) ### Patches @@ -1186,7 +1186,7 @@ Mon, 23 Jan 2023 16:43:12 GMT ## [9.1.9](https://github.com/microsoft/fluentui/tree/@fluentui/react-dialog_v9.1.9) -Wed, 18 Jan 2023 16:32:57 GMT +Wed, 18 Jan 2023 16:32:57 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-dialog_v9.1.8..@fluentui/react-dialog_v9.1.9) ### Patches @@ -1196,7 +1196,7 @@ Wed, 18 Jan 2023 16:32:57 GMT ## [9.1.8](https://github.com/microsoft/fluentui/tree/@fluentui/react-dialog_v9.1.8) -Mon, 16 Jan 2023 08:39:00 GMT +Mon, 16 Jan 2023 08:39:00 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-dialog_v9.1.7..@fluentui/react-dialog_v9.1.8) ### Patches @@ -1207,7 +1207,7 @@ Mon, 16 Jan 2023 08:39:00 GMT ## [9.1.7](https://github.com/microsoft/fluentui/tree/@fluentui/react-dialog_v9.1.7) -Mon, 09 Jan 2023 14:34:56 GMT +Mon, 09 Jan 2023 14:34:56 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-dialog_v9.1.6..@fluentui/react-dialog_v9.1.7) ### Patches @@ -1220,7 +1220,7 @@ Mon, 09 Jan 2023 14:34:56 GMT ## [9.1.6](https://github.com/microsoft/fluentui/tree/@fluentui/react-dialog_v9.1.6) -Wed, 04 Jan 2023 01:41:02 GMT +Wed, 04 Jan 2023 01:41:02 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-dialog_v9.1.5..@fluentui/react-dialog_v9.1.6) ### Patches @@ -1235,7 +1235,7 @@ Wed, 04 Jan 2023 01:41:02 GMT ## [9.1.5](https://github.com/microsoft/fluentui/tree/@fluentui/react-dialog_v9.1.5) -Wed, 21 Dec 2022 10:20:33 GMT +Wed, 21 Dec 2022 10:20:33 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-dialog_v9.1.4..@fluentui/react-dialog_v9.1.5) ### Patches @@ -1247,7 +1247,7 @@ Wed, 21 Dec 2022 10:20:33 GMT ## [9.1.4](https://github.com/microsoft/fluentui/tree/@fluentui/react-dialog_v9.1.4) -Tue, 20 Dec 2022 14:59:24 GMT +Tue, 20 Dec 2022 14:59:24 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-dialog_v9.1.3..@fluentui/react-dialog_v9.1.4) ### Patches @@ -1262,7 +1262,7 @@ Tue, 20 Dec 2022 14:59:24 GMT ## [9.1.3](https://github.com/microsoft/fluentui/tree/@fluentui/react-dialog_v9.1.3) -Mon, 05 Dec 2022 18:29:39 GMT +Mon, 05 Dec 2022 18:29:39 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-dialog_v9.1.2..@fluentui/react-dialog_v9.1.3) ### Patches @@ -1274,7 +1274,7 @@ Mon, 05 Dec 2022 18:29:39 GMT ## [9.1.2](https://github.com/microsoft/fluentui/tree/@fluentui/react-dialog_v9.1.2) -Thu, 17 Nov 2022 23:05:38 GMT +Thu, 17 Nov 2022 23:05:38 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-dialog_v9.1.1..@fluentui/react-dialog_v9.1.2) ### Patches @@ -1288,7 +1288,7 @@ Thu, 17 Nov 2022 23:05:38 GMT ## [9.1.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-dialog_v9.1.1) -Fri, 11 Nov 2022 14:58:02 GMT +Fri, 11 Nov 2022 14:58:02 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-dialog_v9.1.0..@fluentui/react-dialog_v9.1.1) ### Patches @@ -1307,7 +1307,7 @@ Fri, 11 Nov 2022 14:58:02 GMT ## [9.1.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-dialog_v9.1.0) -Wed, 02 Nov 2022 11:57:50 GMT +Wed, 02 Nov 2022 11:57:50 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-dialog_v9.0.3..@fluentui/react-dialog_v9.1.0) ### Minor changes @@ -1327,7 +1327,7 @@ Wed, 02 Nov 2022 11:57:50 GMT ## [9.0.3](https://github.com/microsoft/fluentui/tree/@fluentui/react-dialog_v9.0.3) -Tue, 25 Oct 2022 00:35:31 GMT +Tue, 25 Oct 2022 00:35:31 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-dialog_v9.0.2..@fluentui/react-dialog_v9.0.3) ### Patches @@ -1336,7 +1336,7 @@ Tue, 25 Oct 2022 00:35:31 GMT ## [9.0.2](https://github.com/microsoft/fluentui/tree/@fluentui/react-dialog_v9.0.2) -Thu, 20 Oct 2022 08:39:32 GMT +Thu, 20 Oct 2022 08:39:32 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-dialog_v9.0.1-0..@fluentui/react-dialog_v9.0.2) ### Patches @@ -1355,7 +1355,7 @@ Thu, 20 Oct 2022 08:39:32 GMT ## [9.0.1-0](https://github.com/microsoft/fluentui/tree/@fluentui/react-dialog_v9.0.1-0) -Thu, 13 Oct 2022 12:56:29 GMT +Thu, 13 Oct 2022 12:56:29 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-dialog_v9.0.0..@fluentui/react-dialog_v9.0.1-0) ### Changes @@ -1364,7 +1364,7 @@ Thu, 13 Oct 2022 12:56:29 GMT ## [9.0.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-dialog_v9.0.0) -Thu, 13 Oct 2022 11:02:48 GMT +Thu, 13 Oct 2022 11:02:48 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-dialog_v9.0.0-beta.11..@fluentui/react-dialog_v9.0.0) ### Patches @@ -1387,7 +1387,7 @@ Thu, 13 Oct 2022 11:02:48 GMT ## [9.0.0-beta.11](https://github.com/microsoft/fluentui/tree/@fluentui/react-dialog_v9.0.0-beta.11) -Mon, 03 Oct 2022 22:24:36 GMT +Mon, 03 Oct 2022 22:24:36 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-dialog_v9.0.0-beta.10..@fluentui/react-dialog_v9.0.0-beta.11) ### Changes @@ -1399,7 +1399,7 @@ Mon, 03 Oct 2022 22:24:36 GMT ## [9.0.0-beta.10](https://github.com/microsoft/fluentui/tree/@fluentui/react-dialog_v9.0.0-beta.10) -Fri, 23 Sep 2022 10:32:29 GMT +Fri, 23 Sep 2022 10:32:29 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-dialog_v9.0.0-beta.9..@fluentui/react-dialog_v9.0.0-beta.10) ### Changes @@ -1408,7 +1408,7 @@ Fri, 23 Sep 2022 10:32:29 GMT ## [9.0.0-beta.9](https://github.com/microsoft/fluentui/tree/@fluentui/react-dialog_v9.0.0-beta.9) -Tue, 20 Sep 2022 20:55:44 GMT +Tue, 20 Sep 2022 20:55:44 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-dialog_v9.0.0-beta.8..@fluentui/react-dialog_v9.0.0-beta.9) ### Changes @@ -1418,7 +1418,7 @@ Tue, 20 Sep 2022 20:55:44 GMT ## [9.0.0-beta.8](https://github.com/microsoft/fluentui/tree/@fluentui/react-dialog_v9.0.0-beta.8) -Thu, 15 Sep 2022 09:48:59 GMT +Thu, 15 Sep 2022 09:48:59 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-dialog_v9.0.0-beta.7..@fluentui/react-dialog_v9.0.0-beta.8) ### Changes @@ -1446,7 +1446,7 @@ Thu, 15 Sep 2022 09:48:59 GMT ## [9.0.0-beta.7](https://github.com/microsoft/fluentui/tree/@fluentui/react-dialog_v9.0.0-beta.7) -Wed, 03 Aug 2022 16:03:47 GMT +Wed, 03 Aug 2022 16:03:47 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-dialog_v9.0.0-beta.6..@fluentui/react-dialog_v9.0.0-beta.7) ### Changes @@ -1460,7 +1460,7 @@ Wed, 03 Aug 2022 16:03:47 GMT ## [9.0.0-beta.6](https://github.com/microsoft/fluentui/tree/@fluentui/react-dialog_v9.0.0-beta.6) -Thu, 14 Jul 2022 21:21:13 GMT +Thu, 14 Jul 2022 21:21:13 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-dialog_v9.0.0-beta.6..@fluentui/react-dialog_v9.0.0-beta.6) ### Changes @@ -1469,7 +1469,7 @@ Thu, 14 Jul 2022 21:21:13 GMT ## [9.0.0-beta.6](https://github.com/microsoft/fluentui/tree/@fluentui/react-dialog_v9.0.0-beta.6) -Thu, 14 Jul 2022 17:06:26 GMT +Thu, 14 Jul 2022 17:06:26 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-dialog_v9.0.0-beta.6..@fluentui/react-dialog_v9.0.0-beta.6) ### Changes @@ -1479,7 +1479,7 @@ Thu, 14 Jul 2022 17:06:26 GMT ## [9.0.0-beta.6](https://github.com/microsoft/fluentui/tree/@fluentui/react-dialog_v9.0.0-beta.6) -Tue, 28 Jun 2022 17:39:54 GMT +Tue, 28 Jun 2022 17:39:54 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-dialog_v9.0.0-beta.6..@fluentui/react-dialog_v9.0.0-beta.6) ### Changes @@ -1488,7 +1488,7 @@ Tue, 28 Jun 2022 17:39:54 GMT ## [9.0.0-beta.6](https://github.com/microsoft/fluentui/tree/@fluentui/react-dialog_v9.0.0-beta.6) -Tue, 28 Jun 2022 15:14:23 GMT +Tue, 28 Jun 2022 15:14:23 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-dialog_v9.0.0-beta.6..@fluentui/react-dialog_v9.0.0-beta.6) ### Changes @@ -1498,7 +1498,7 @@ Tue, 28 Jun 2022 15:14:23 GMT ## [9.0.0-beta.6](https://github.com/microsoft/fluentui/tree/@fluentui/react-dialog_v9.0.0-beta.6) -Tue, 31 May 2022 21:28:50 GMT +Tue, 31 May 2022 21:28:50 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-dialog_v9.0.0-beta.6..@fluentui/react-dialog_v9.0.0-beta.6) ### Changes @@ -1508,7 +1508,7 @@ Tue, 31 May 2022 21:28:50 GMT ## [9.0.0-beta.6](https://github.com/microsoft/fluentui/tree/@fluentui/react-dialog_v9.0.0-beta.6) -Mon, 23 May 2022 18:56:51 GMT +Mon, 23 May 2022 18:56:51 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-dialog_v9.0.0-beta.6..@fluentui/react-dialog_v9.0.0-beta.6) ### Changes @@ -1517,7 +1517,7 @@ Mon, 23 May 2022 18:56:51 GMT ## [9.0.0-beta.6](https://github.com/microsoft/fluentui/tree/@fluentui/react-dialog_v9.0.0-beta.6) -Mon, 23 May 2022 12:14:24 GMT +Mon, 23 May 2022 12:14:24 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-dialog_v9.0.0-beta.6..@fluentui/react-dialog_v9.0.0-beta.6) ### Changes @@ -1527,7 +1527,7 @@ Mon, 23 May 2022 12:14:24 GMT ## [9.0.0-beta.6](https://github.com/microsoft/fluentui/tree/@fluentui/react-dialog_v9.0.0-beta.6) -Thu, 05 May 2022 18:26:30 GMT +Thu, 05 May 2022 18:26:30 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-dialog_v9.0.0-beta.6..@fluentui/react-dialog_v9.0.0-beta.6) ### Changes @@ -1537,7 +1537,7 @@ Thu, 05 May 2022 18:26:30 GMT ## [9.0.0-beta.6](https://github.com/microsoft/fluentui/tree/@fluentui/react-dialog_v9.0.0-beta.6) -Wed, 04 May 2022 13:26:54 GMT +Wed, 04 May 2022 13:26:54 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-dialog_v9.0.0-beta.6..@fluentui/react-dialog_v9.0.0-beta.6) ### Changes diff --git a/packages/react-components/react-drawer/.npmignore b/packages/react-components/react-drawer/.npmignore new file mode 100644 index 00000000000000..f7ce568a6dbf7c --- /dev/null +++ b/packages/react-components/react-drawer/.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-drawer/src/components/Drawer/useDrawerStyles.ts b/packages/react-components/react-drawer/src/components/Drawer/useDrawerStyles.ts new file mode 100644 index 00000000000000..0f37809a1bba8c --- /dev/null +++ b/packages/react-components/react-drawer/src/components/Drawer/useDrawerStyles.ts @@ -0,0 +1,33 @@ +import { makeStyles, mergeClasses } from '@griffel/react'; +import type { DrawerSlots, DrawerState } from './Drawer.types'; +import type { SlotClassNames } from '@fluentui/react-utilities'; + +export const drawerClassNames: SlotClassNames = { + root: 'fui-Drawer', + // TODO: add class names for all slots on DrawerSlots. + // Should be of the form `: 'fui-Drawer__` +}; + +/** + * Styles for the root slot + */ +const useStyles = makeStyles({ + root: { + // TODO Add default styles for the root element + }, + + // TODO add additional classes for different states and/or slots +}); + +/** + * Apply styling to the Drawer slots based on the state + */ +export const useDrawerStyles_unstable = (state: DrawerState): DrawerState => { + const styles = useStyles(); + state.root.className = mergeClasses(drawerClassNames.root, styles.root, state.root.className); + + // TODO Add class names to slots, for example: + // state.mySlot.className = mergeClasses(styles.mySlot, state.mySlot.className); + + return state; +}; diff --git a/packages/react-components/react-field/CHANGELOG.md b/packages/react-components/react-field/CHANGELOG.md index 0c9e341baf58e5..d36ee49607f2c2 100644 --- a/packages/react-components/react-field/CHANGELOG.md +++ b/packages/react-components/react-field/CHANGELOG.md @@ -6,7 +6,7 @@ This log was last generated on Tue, 23 Apr 2024 08:17:49 GMT and should not be m ## [9.1.62](https://github.com/microsoft/fluentui/tree/@fluentui/react-field_v9.1.62) -Tue, 23 Apr 2024 08:17:49 GMT +Tue, 23 Apr 2024 08:17:49 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-field_v9.1.61..@fluentui/react-field_v9.1.62) ### Patches @@ -18,7 +18,7 @@ Tue, 23 Apr 2024 08:17:49 GMT ## [9.1.61](https://github.com/microsoft/fluentui/tree/@fluentui/react-field_v9.1.61) -Wed, 17 Apr 2024 21:53:52 GMT +Wed, 17 Apr 2024 21:53:52 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-field_v9.1.60..@fluentui/react-field_v9.1.61) ### Patches @@ -27,7 +27,7 @@ Wed, 17 Apr 2024 21:53:52 GMT ## [9.1.60](https://github.com/microsoft/fluentui/tree/@fluentui/react-field_v9.1.60) -Tue, 02 Apr 2024 09:48:01 GMT +Tue, 02 Apr 2024 09:48:01 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-field_v9.1.59..@fluentui/react-field_v9.1.60) ### Patches @@ -39,7 +39,7 @@ Tue, 02 Apr 2024 09:48:01 GMT ## [9.1.59](https://github.com/microsoft/fluentui/tree/@fluentui/react-field_v9.1.59) -Mon, 25 Mar 2024 11:12:13 GMT +Mon, 25 Mar 2024 11:12:13 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-field_v9.1.58..@fluentui/react-field_v9.1.59) ### Patches @@ -48,7 +48,7 @@ Mon, 25 Mar 2024 11:12:13 GMT ## [9.1.58](https://github.com/microsoft/fluentui/tree/@fluentui/react-field_v9.1.58) -Mon, 18 Mar 2024 19:50:46 GMT +Mon, 18 Mar 2024 19:50:46 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-field_v9.1.57..@fluentui/react-field_v9.1.58) ### Patches @@ -61,7 +61,7 @@ Mon, 18 Mar 2024 19:50:46 GMT ## [9.1.57](https://github.com/microsoft/fluentui/tree/@fluentui/react-field_v9.1.57) -Fri, 15 Mar 2024 21:43:49 GMT +Fri, 15 Mar 2024 21:43:49 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-field_v9.1.56..@fluentui/react-field_v9.1.57) ### Patches @@ -74,7 +74,7 @@ Fri, 15 Mar 2024 21:43:49 GMT ## [9.1.56](https://github.com/microsoft/fluentui/tree/@fluentui/react-field_v9.1.56) -Thu, 07 Mar 2024 19:33:27 GMT +Thu, 07 Mar 2024 19:33:27 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-field_v9.1.55..@fluentui/react-field_v9.1.56) ### Patches @@ -87,7 +87,7 @@ Thu, 07 Mar 2024 19:33:27 GMT ## [9.1.55](https://github.com/microsoft/fluentui/tree/@fluentui/react-field_v9.1.55) -Wed, 28 Feb 2024 02:34:19 GMT +Wed, 28 Feb 2024 02:34:19 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-field_v9.1.54..@fluentui/react-field_v9.1.55) ### Patches @@ -99,7 +99,7 @@ Wed, 28 Feb 2024 02:34:19 GMT ## [9.1.54](https://github.com/microsoft/fluentui/tree/@fluentui/react-field_v9.1.54) -Tue, 20 Feb 2024 14:22:20 GMT +Tue, 20 Feb 2024 14:22:20 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-field_v9.1.53..@fluentui/react-field_v9.1.54) ### Patches @@ -112,7 +112,7 @@ Tue, 20 Feb 2024 14:22:20 GMT ## [9.1.53](https://github.com/microsoft/fluentui/tree/@fluentui/react-field_v9.1.53) -Tue, 30 Jan 2024 23:16:54 GMT +Tue, 30 Jan 2024 23:16:54 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-field_v9.1.52..@fluentui/react-field_v9.1.53) ### Patches @@ -124,7 +124,7 @@ Tue, 30 Jan 2024 23:16:54 GMT ## [9.1.52](https://github.com/microsoft/fluentui/tree/@fluentui/react-field_v9.1.52) -Mon, 29 Jan 2024 13:56:06 GMT +Mon, 29 Jan 2024 13:56:06 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-field_v9.1.51..@fluentui/react-field_v9.1.52) ### Patches @@ -133,7 +133,7 @@ Mon, 29 Jan 2024 13:56:06 GMT ## [9.1.51](https://github.com/microsoft/fluentui/tree/@fluentui/react-field_v9.1.51) -Tue, 23 Jan 2024 15:11:00 GMT +Tue, 23 Jan 2024 15:11:00 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-field_v9.1.50..@fluentui/react-field_v9.1.51) ### Patches @@ -145,7 +145,7 @@ Tue, 23 Jan 2024 15:11:00 GMT ## [9.1.50](https://github.com/microsoft/fluentui/tree/@fluentui/react-field_v9.1.50) -Thu, 18 Jan 2024 14:25:03 GMT +Thu, 18 Jan 2024 14:25:03 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-field_v9.1.49..@fluentui/react-field_v9.1.50) ### Patches @@ -157,7 +157,7 @@ Thu, 18 Jan 2024 14:25:03 GMT ## [9.1.49](https://github.com/microsoft/fluentui/tree/@fluentui/react-field_v9.1.49) -Wed, 17 Jan 2024 16:18:50 GMT +Wed, 17 Jan 2024 16:18:50 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-field_v9.1.48..@fluentui/react-field_v9.1.49) ### Patches @@ -169,7 +169,7 @@ Wed, 17 Jan 2024 16:18:50 GMT ## [9.1.48](https://github.com/microsoft/fluentui/tree/@fluentui/react-field_v9.1.48) -Tue, 16 Jan 2024 13:14:18 GMT +Tue, 16 Jan 2024 13:14:18 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-field_v9.1.47..@fluentui/react-field_v9.1.48) ### Patches @@ -181,7 +181,7 @@ Tue, 16 Jan 2024 13:14:18 GMT ## [9.1.47](https://github.com/microsoft/fluentui/tree/@fluentui/react-field_v9.1.47) -Mon, 08 Jan 2024 16:24:22 GMT +Mon, 08 Jan 2024 16:24:22 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-field_v9.1.46..@fluentui/react-field_v9.1.47) ### Patches @@ -194,7 +194,7 @@ Mon, 08 Jan 2024 16:24:22 GMT ## [9.1.46](https://github.com/microsoft/fluentui/tree/@fluentui/react-field_v9.1.46) -Wed, 03 Jan 2024 09:26:44 GMT +Wed, 03 Jan 2024 09:26:44 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-field_v9.1.45..@fluentui/react-field_v9.1.46) ### Patches @@ -206,7 +206,7 @@ Wed, 03 Jan 2024 09:26:44 GMT ## [9.1.45](https://github.com/microsoft/fluentui/tree/@fluentui/react-field_v9.1.45) -Mon, 18 Dec 2023 14:40:46 GMT +Mon, 18 Dec 2023 14:40:46 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-field_v9.1.44..@fluentui/react-field_v9.1.45) ### Patches @@ -218,7 +218,7 @@ Mon, 18 Dec 2023 14:40:46 GMT ## [9.1.44](https://github.com/microsoft/fluentui/tree/@fluentui/react-field_v9.1.44) -Thu, 14 Dec 2023 09:58:46 GMT +Thu, 14 Dec 2023 09:58:46 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-field_v9.1.43..@fluentui/react-field_v9.1.44) ### Patches @@ -230,7 +230,7 @@ Thu, 14 Dec 2023 09:58:46 GMT ## [9.1.43](https://github.com/microsoft/fluentui/tree/@fluentui/react-field_v9.1.43) -Thu, 30 Nov 2023 13:42:08 GMT +Thu, 30 Nov 2023 13:42:08 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-field_v9.1.42..@fluentui/react-field_v9.1.43) ### Patches @@ -240,7 +240,7 @@ Thu, 30 Nov 2023 13:42:08 GMT ## [9.1.42](https://github.com/microsoft/fluentui/tree/@fluentui/react-field_v9.1.42) -Mon, 20 Nov 2023 09:55:10 GMT +Mon, 20 Nov 2023 09:55:10 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-field_v9.1.41..@fluentui/react-field_v9.1.42) ### Patches @@ -249,7 +249,7 @@ Mon, 20 Nov 2023 09:55:10 GMT ## [9.1.41](https://github.com/microsoft/fluentui/tree/@fluentui/react-field_v9.1.41) -Thu, 09 Nov 2023 17:29:35 GMT +Thu, 09 Nov 2023 17:29:35 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-field_v9.1.40..@fluentui/react-field_v9.1.41) ### Patches @@ -263,7 +263,7 @@ Thu, 09 Nov 2023 17:29:35 GMT ## [9.1.40](https://github.com/microsoft/fluentui/tree/@fluentui/react-field_v9.1.40) -Wed, 01 Nov 2023 12:55:59 GMT +Wed, 01 Nov 2023 12:55:59 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-field_v9.1.39..@fluentui/react-field_v9.1.40) ### Patches @@ -273,7 +273,7 @@ Wed, 01 Nov 2023 12:55:59 GMT ## [9.1.39](https://github.com/microsoft/fluentui/tree/@fluentui/react-field_v9.1.39) -Sat, 28 Oct 2023 23:35:59 GMT +Sat, 28 Oct 2023 23:35:59 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-field_v9.1.38..@fluentui/react-field_v9.1.39) ### Patches @@ -282,7 +282,7 @@ Sat, 28 Oct 2023 23:35:59 GMT ## [9.1.38](https://github.com/microsoft/fluentui/tree/@fluentui/react-field_v9.1.38) -Wed, 18 Oct 2023 17:54:03 GMT +Wed, 18 Oct 2023 17:54:03 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-field_v9.1.37..@fluentui/react-field_v9.1.38) ### Patches @@ -295,7 +295,7 @@ Wed, 18 Oct 2023 17:54:03 GMT ## [9.1.37](https://github.com/microsoft/fluentui/tree/@fluentui/react-field_v9.1.37) -Thu, 12 Oct 2023 14:55:44 GMT +Thu, 12 Oct 2023 14:55:44 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-field_v9.1.36..@fluentui/react-field_v9.1.37) ### Patches @@ -305,7 +305,7 @@ Thu, 12 Oct 2023 14:55:44 GMT ## [9.1.36](https://github.com/microsoft/fluentui/tree/@fluentui/react-field_v9.1.36) -Wed, 11 Oct 2023 13:54:26 GMT +Wed, 11 Oct 2023 13:54:26 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-field_v9.1.35..@fluentui/react-field_v9.1.36) ### Patches @@ -317,7 +317,7 @@ Wed, 11 Oct 2023 13:54:26 GMT ## [9.1.35](https://github.com/microsoft/fluentui/tree/@fluentui/react-field_v9.1.35) -Mon, 09 Oct 2023 20:45:44 GMT +Mon, 09 Oct 2023 20:45:44 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-field_v9.1.34..@fluentui/react-field_v9.1.35) ### Patches @@ -329,7 +329,7 @@ Mon, 09 Oct 2023 20:45:44 GMT ## [9.1.34](https://github.com/microsoft/fluentui/tree/@fluentui/react-field_v9.1.34) -Thu, 05 Oct 2023 15:25:35 GMT +Thu, 05 Oct 2023 15:25:35 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-field_v9.1.33..@fluentui/react-field_v9.1.34) ### Patches @@ -341,7 +341,7 @@ Thu, 05 Oct 2023 15:25:35 GMT ## [9.1.33](https://github.com/microsoft/fluentui/tree/@fluentui/react-field_v9.1.33) -Wed, 04 Oct 2023 08:45:47 GMT +Wed, 04 Oct 2023 08:45:47 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-field_v9.1.32..@fluentui/react-field_v9.1.33) ### Patches @@ -353,7 +353,7 @@ Wed, 04 Oct 2023 08:45:47 GMT ## [9.1.32](https://github.com/microsoft/fluentui/tree/@fluentui/react-field_v9.1.32) -Mon, 02 Oct 2023 08:56:05 GMT +Mon, 02 Oct 2023 08:56:05 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-field_v9.1.31..@fluentui/react-field_v9.1.32) ### Patches @@ -362,7 +362,7 @@ Mon, 02 Oct 2023 08:56:05 GMT ## [9.1.31](https://github.com/microsoft/fluentui/tree/@fluentui/react-field_v9.1.31) -Tue, 26 Sep 2023 17:49:05 GMT +Tue, 26 Sep 2023 17:49:05 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-field_v9.1.30..@fluentui/react-field_v9.1.31) ### Patches @@ -376,7 +376,7 @@ Tue, 26 Sep 2023 17:49:05 GMT ## [9.1.30](https://github.com/microsoft/fluentui/tree/@fluentui/react-field_v9.1.30) -Tue, 26 Sep 2023 15:31:59 GMT +Tue, 26 Sep 2023 15:31:59 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-field_v9.1.29..@fluentui/react-field_v9.1.30) ### Patches @@ -391,7 +391,7 @@ Tue, 26 Sep 2023 15:31:59 GMT ## [9.1.29](https://github.com/microsoft/fluentui/tree/@fluentui/react-field_v9.1.29) -Wed, 20 Sep 2023 17:47:37 GMT +Wed, 20 Sep 2023 17:47:37 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-field_v9.1.28..@fluentui/react-field_v9.1.29) ### Patches @@ -402,7 +402,7 @@ Wed, 20 Sep 2023 17:47:37 GMT ## [9.1.28](https://github.com/microsoft/fluentui/tree/@fluentui/react-field_v9.1.28) -Wed, 20 Sep 2023 14:59:53 GMT +Wed, 20 Sep 2023 14:59:53 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-field_v9.1.27..@fluentui/react-field_v9.1.28) ### Patches @@ -412,7 +412,7 @@ Wed, 20 Sep 2023 14:59:53 GMT ## [9.1.27](https://github.com/microsoft/fluentui/tree/@fluentui/react-field_v9.1.27) -Thu, 14 Sep 2023 16:44:47 GMT +Thu, 14 Sep 2023 16:44:47 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-field_v9.1.26..@fluentui/react-field_v9.1.27) ### Patches @@ -422,7 +422,7 @@ Thu, 14 Sep 2023 16:44:47 GMT ## [9.1.26](https://github.com/microsoft/fluentui/tree/@fluentui/react-field_v9.1.26) -Tue, 12 Sep 2023 08:51:34 GMT +Tue, 12 Sep 2023 08:51:34 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-field_v9.1.25..@fluentui/react-field_v9.1.26) ### Patches @@ -432,7 +432,7 @@ Tue, 12 Sep 2023 08:51:34 GMT ## [9.1.25](https://github.com/microsoft/fluentui/tree/@fluentui/react-field_v9.1.25) -Wed, 06 Sep 2023 13:31:31 GMT +Wed, 06 Sep 2023 13:31:31 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-field_v9.1.24..@fluentui/react-field_v9.1.25) ### Patches @@ -444,7 +444,7 @@ Wed, 06 Sep 2023 13:31:31 GMT ## [9.1.24](https://github.com/microsoft/fluentui/tree/@fluentui/react-field_v9.1.24) -Tue, 05 Sep 2023 15:39:04 GMT +Tue, 05 Sep 2023 15:39:04 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-field_v9.1.23..@fluentui/react-field_v9.1.24) ### Patches @@ -456,7 +456,7 @@ Tue, 05 Sep 2023 15:39:04 GMT ## [9.1.23](https://github.com/microsoft/fluentui/tree/@fluentui/react-field_v9.1.23) -Tue, 05 Sep 2023 13:29:23 GMT +Tue, 05 Sep 2023 13:29:23 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-field_v9.1.22..@fluentui/react-field_v9.1.23) ### Patches @@ -471,7 +471,7 @@ Tue, 05 Sep 2023 13:29:23 GMT ## [9.1.22](https://github.com/microsoft/fluentui/tree/@fluentui/react-field_v9.1.22) -Tue, 29 Aug 2023 12:57:36 GMT +Tue, 29 Aug 2023 12:57:36 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-field_v9.1.21..@fluentui/react-field_v9.1.22) ### Patches @@ -483,7 +483,7 @@ Tue, 29 Aug 2023 12:57:36 GMT ## [9.1.21](https://github.com/microsoft/fluentui/tree/@fluentui/react-field_v9.1.21) -Thu, 24 Aug 2023 10:26:35 GMT +Thu, 24 Aug 2023 10:26:35 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-field_v9.1.20..@fluentui/react-field_v9.1.21) ### Patches @@ -495,7 +495,7 @@ Thu, 24 Aug 2023 10:26:35 GMT ## [9.1.20](https://github.com/microsoft/fluentui/tree/@fluentui/react-field_v9.1.20) -Wed, 23 Aug 2023 12:01:49 GMT +Wed, 23 Aug 2023 12:01:49 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-field_v9.1.19..@fluentui/react-field_v9.1.20) ### Patches @@ -507,7 +507,7 @@ Wed, 23 Aug 2023 12:01:49 GMT ## [9.1.19](https://github.com/microsoft/fluentui/tree/@fluentui/react-field_v9.1.19) -Wed, 16 Aug 2023 17:41:08 GMT +Wed, 16 Aug 2023 17:41:08 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-field_v9.1.18..@fluentui/react-field_v9.1.19) ### Patches @@ -517,7 +517,7 @@ Wed, 16 Aug 2023 17:41:08 GMT ## [9.1.18](https://github.com/microsoft/fluentui/tree/@fluentui/react-field_v9.1.18) -Wed, 16 Aug 2023 11:38:33 GMT +Wed, 16 Aug 2023 11:38:33 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-field_v9.1.17..@fluentui/react-field_v9.1.18) ### Patches @@ -527,7 +527,7 @@ Wed, 16 Aug 2023 11:38:33 GMT ## [9.1.17](https://github.com/microsoft/fluentui/tree/@fluentui/react-field_v9.1.17) -Fri, 11 Aug 2023 12:14:26 GMT +Fri, 11 Aug 2023 12:14:26 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-field_v9.1.16..@fluentui/react-field_v9.1.17) ### Patches @@ -539,7 +539,7 @@ Fri, 11 Aug 2023 12:14:26 GMT ## [9.1.16](https://github.com/microsoft/fluentui/tree/@fluentui/react-field_v9.1.16) -Wed, 09 Aug 2023 13:16:56 GMT +Wed, 09 Aug 2023 13:16:56 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-field_v9.1.15..@fluentui/react-field_v9.1.16) ### Patches @@ -552,7 +552,7 @@ Wed, 09 Aug 2023 13:16:56 GMT ## [9.1.15](https://github.com/microsoft/fluentui/tree/@fluentui/react-field_v9.1.15) -Fri, 04 Aug 2023 08:52:58 GMT +Fri, 04 Aug 2023 08:52:58 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-field_v9.1.14..@fluentui/react-field_v9.1.15) ### Patches @@ -565,7 +565,7 @@ Fri, 04 Aug 2023 08:52:58 GMT ## [9.1.14](https://github.com/microsoft/fluentui/tree/@fluentui/react-field_v9.1.14) -Tue, 01 Aug 2023 10:17:21 GMT +Tue, 01 Aug 2023 10:17:21 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-field_v9.1.13..@fluentui/react-field_v9.1.14) ### Patches @@ -574,7 +574,7 @@ Tue, 01 Aug 2023 10:17:21 GMT ## [9.1.13](https://github.com/microsoft/fluentui/tree/@fluentui/react-field_v9.1.13) -Tue, 25 Jul 2023 13:29:19 GMT +Tue, 25 Jul 2023 13:29:19 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-field_v9.1.12..@fluentui/react-field_v9.1.13) ### Patches @@ -583,7 +583,7 @@ Tue, 25 Jul 2023 13:29:19 GMT ## [9.1.12](https://github.com/microsoft/fluentui/tree/@fluentui/react-field_v9.1.12) -Thu, 20 Jul 2023 18:27:29 GMT +Thu, 20 Jul 2023 18:27:29 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-field_v9.1.11..@fluentui/react-field_v9.1.12) ### Patches @@ -593,7 +593,7 @@ Thu, 20 Jul 2023 18:27:29 GMT ## [9.1.11](https://github.com/microsoft/fluentui/tree/@fluentui/react-field_v9.1.11) -Tue, 11 Jul 2023 18:46:36 GMT +Tue, 11 Jul 2023 18:46:36 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-field_v9.1.10..@fluentui/react-field_v9.1.11) ### Patches @@ -604,7 +604,7 @@ Tue, 11 Jul 2023 18:46:36 GMT ## [9.1.10](https://github.com/microsoft/fluentui/tree/@fluentui/react-field_v9.1.10) -Mon, 03 Jul 2023 11:57:14 GMT +Mon, 03 Jul 2023 11:57:14 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-field_v9.1.9..@fluentui/react-field_v9.1.10) ### Patches @@ -616,7 +616,7 @@ Mon, 03 Jul 2023 11:57:14 GMT ## [9.1.9](https://github.com/microsoft/fluentui/tree/@fluentui/react-field_v9.1.9) -Wed, 28 Jun 2023 11:12:26 GMT +Wed, 28 Jun 2023 11:12:26 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-field_v9.1.8..@fluentui/react-field_v9.1.9) ### Patches @@ -628,7 +628,7 @@ Wed, 28 Jun 2023 11:12:26 GMT ## [9.1.8](https://github.com/microsoft/fluentui/tree/@fluentui/react-field_v9.1.8) -Mon, 26 Jun 2023 09:53:55 GMT +Mon, 26 Jun 2023 09:53:55 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-field_v9.1.7..@fluentui/react-field_v9.1.8) ### Patches @@ -640,7 +640,7 @@ Mon, 26 Jun 2023 09:53:55 GMT ## [9.1.7](https://github.com/microsoft/fluentui/tree/@fluentui/react-field_v9.1.7) -Tue, 20 Jun 2023 12:38:58 GMT +Tue, 20 Jun 2023 12:38:58 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-field_v9.1.6..@fluentui/react-field_v9.1.7) ### Patches @@ -655,7 +655,7 @@ Tue, 20 Jun 2023 12:38:58 GMT ## [9.1.6](https://github.com/microsoft/fluentui/tree/@fluentui/react-field_v9.1.6) -Wed, 31 May 2023 06:46:14 GMT +Wed, 31 May 2023 06:46:14 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-field_v9.1.5..@fluentui/react-field_v9.1.6) ### Patches @@ -669,7 +669,7 @@ Wed, 31 May 2023 06:46:14 GMT ## [9.1.5](https://github.com/microsoft/fluentui/tree/@fluentui/react-field_v9.1.5) -Thu, 25 May 2023 10:00:48 GMT +Thu, 25 May 2023 10:00:48 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-field_v9.1.4..@fluentui/react-field_v9.1.5) ### Patches @@ -681,7 +681,7 @@ Thu, 25 May 2023 10:00:48 GMT ## [9.1.4](https://github.com/microsoft/fluentui/tree/@fluentui/react-field_v9.1.4) -Wed, 24 May 2023 20:45:27 GMT +Wed, 24 May 2023 20:45:27 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-field_v9.1.3..@fluentui/react-field_v9.1.4) ### Patches @@ -690,7 +690,7 @@ Wed, 24 May 2023 20:45:27 GMT ## [9.1.3](https://github.com/microsoft/fluentui/tree/@fluentui/react-field_v9.1.3) -Thu, 18 May 2023 00:39:07 GMT +Thu, 18 May 2023 00:39:07 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-field_v9.1.2..@fluentui/react-field_v9.1.3) ### Patches @@ -702,7 +702,7 @@ Thu, 18 May 2023 00:39:07 GMT ## [9.1.2](https://github.com/microsoft/fluentui/tree/@fluentui/react-field_v9.1.2) -Fri, 12 May 2023 20:27:18 GMT +Fri, 12 May 2023 20:27:18 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-field_v9.1.1..@fluentui/react-field_v9.1.2) ### Patches @@ -718,7 +718,7 @@ Fri, 12 May 2023 20:27:18 GMT ## [9.1.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-field_v9.1.1) -Mon, 24 Apr 2023 08:12:36 GMT +Mon, 24 Apr 2023 08:12:36 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-field_v9.1.0..@fluentui/react-field_v9.1.1) ### Patches @@ -729,7 +729,7 @@ Mon, 24 Apr 2023 08:12:36 GMT ## [9.1.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-field_v9.1.0) -Mon, 17 Apr 2023 17:53:50 GMT +Mon, 17 Apr 2023 17:53:50 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-field_v9.0.0-beta.2..@fluentui/react-field_v9.1.0) ### Minor changes @@ -745,7 +745,7 @@ Mon, 17 Apr 2023 17:53:50 GMT ## [9.0.0-beta.2](https://github.com/microsoft/fluentui/tree/@fluentui/react-field_v9.0.0-beta.2) -Wed, 12 Apr 2023 09:31:44 GMT +Wed, 12 Apr 2023 09:31:44 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-field_v9.0.0-beta.1..@fluentui/react-field_v9.0.0-beta.2) ### Changes @@ -757,7 +757,7 @@ Wed, 12 Apr 2023 09:31:44 GMT ## [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 +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 @@ -767,7 +767,7 @@ Fri, 07 Apr 2023 00:01:38 GMT ## [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 +Tue, 04 Apr 2023 18:44:50 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-field_v9.0.0-alpha.27..@fluentui/react-field_v9.0.0-alpha.29) ### Changes @@ -778,7 +778,7 @@ Tue, 04 Apr 2023 18:44:50 GMT ## [9.0.0-alpha.27](https://github.com/microsoft/fluentui/tree/@fluentui/react-field_v9.0.0-alpha.27) -Tue, 21 Mar 2023 21:23:34 GMT +Tue, 21 Mar 2023 21:23:34 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-field_v9.0.0-alpha.26..@fluentui/react-field_v9.0.0-alpha.27) ### Changes @@ -794,7 +794,7 @@ Tue, 21 Mar 2023 21:23:34 GMT ## [9.0.0-alpha.26](https://github.com/microsoft/fluentui/tree/@fluentui/react-field_v9.0.0-alpha.26) -Thu, 16 Mar 2023 14:36:59 GMT +Thu, 16 Mar 2023 14:36:59 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-field_v9.0.0-alpha.25..@fluentui/react-field_v9.0.0-alpha.26) ### Changes @@ -805,7 +805,7 @@ Thu, 16 Mar 2023 14:36:59 GMT ## [9.0.0-alpha.25](https://github.com/microsoft/fluentui/tree/@fluentui/react-field_v9.0.0-alpha.25) -Wed, 15 Mar 2023 10:19:53 GMT +Wed, 15 Mar 2023 10:19:53 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-field_v9.0.0-alpha.24..@fluentui/react-field_v9.0.0-alpha.25) ### Changes @@ -815,7 +815,7 @@ Wed, 15 Mar 2023 10:19:53 GMT ## [9.0.0-alpha.24](https://github.com/microsoft/fluentui/tree/@fluentui/react-field_v9.0.0-alpha.24) -Mon, 13 Mar 2023 08:58:26 GMT +Mon, 13 Mar 2023 08:58:26 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-field_v9.0.0-alpha.23..@fluentui/react-field_v9.0.0-alpha.24) ### Changes @@ -826,7 +826,7 @@ Mon, 13 Mar 2023 08:58:26 GMT ## [9.0.0-alpha.23](https://github.com/microsoft/fluentui/tree/@fluentui/react-field_v9.0.0-alpha.23) -Fri, 10 Mar 2023 07:14:01 GMT +Fri, 10 Mar 2023 07:14:01 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-field_v9.0.0-alpha.22..@fluentui/react-field_v9.0.0-alpha.23) ### Changes @@ -837,7 +837,7 @@ Fri, 10 Mar 2023 07:14:01 GMT ## [9.0.0-alpha.22](https://github.com/microsoft/fluentui/tree/@fluentui/react-field_v9.0.0-alpha.22) -Wed, 08 Mar 2023 17:42:51 GMT +Wed, 08 Mar 2023 17:42:51 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-field_v9.0.0-alpha.21..@fluentui/react-field_v9.0.0-alpha.22) ### Changes @@ -848,7 +848,7 @@ Wed, 08 Mar 2023 17:42:51 GMT ## [9.0.0-alpha.21](https://github.com/microsoft/fluentui/tree/@fluentui/react-field_v9.0.0-alpha.21) -Wed, 15 Feb 2023 11:44:52 GMT +Wed, 15 Feb 2023 11:44:52 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-field_v9.0.0-alpha.20..@fluentui/react-field_v9.0.0-alpha.21) ### Changes @@ -859,7 +859,7 @@ Wed, 15 Feb 2023 11:44:52 GMT ## [9.0.0-alpha.20](https://github.com/microsoft/fluentui/tree/@fluentui/react-field_v9.0.0-alpha.20) -Mon, 13 Feb 2023 23:43:14 GMT +Mon, 13 Feb 2023 23:43:14 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-field_v9.0.0-alpha.19..@fluentui/react-field_v9.0.0-alpha.20) ### Changes @@ -870,7 +870,7 @@ Mon, 13 Feb 2023 23:43:14 GMT ## [9.0.0-alpha.19](https://github.com/microsoft/fluentui/tree/@fluentui/react-field_v9.0.0-alpha.19) -Fri, 10 Feb 2023 08:49:59 GMT +Fri, 10 Feb 2023 08:49:59 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-field_v9.0.0-alpha.18..@fluentui/react-field_v9.0.0-alpha.19) ### Changes @@ -881,7 +881,7 @@ Fri, 10 Feb 2023 08:49:59 GMT ## [9.0.0-alpha.18](https://github.com/microsoft/fluentui/tree/@fluentui/react-field_v9.0.0-alpha.18) -Tue, 31 Jan 2023 19:53:56 GMT +Tue, 31 Jan 2023 19:53:56 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-field_v9.0.0-alpha.17..@fluentui/react-field_v9.0.0-alpha.18) ### Changes @@ -893,7 +893,7 @@ Tue, 31 Jan 2023 19:53:56 GMT ## [9.0.0-alpha.17](https://github.com/microsoft/fluentui/tree/@fluentui/react-field_v9.0.0-alpha.17) -Thu, 26 Jan 2023 13:30:56 GMT +Thu, 26 Jan 2023 13:30:56 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-field_v9.0.0-alpha.16..@fluentui/react-field_v9.0.0-alpha.17) ### Changes @@ -905,7 +905,7 @@ Thu, 26 Jan 2023 13:30:56 GMT ## [9.0.0-alpha.16](https://github.com/microsoft/fluentui/tree/@fluentui/react-field_v9.0.0-alpha.16) -Mon, 23 Jan 2023 16:43:09 GMT +Mon, 23 Jan 2023 16:43:09 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-field_v9.0.0-alpha.15..@fluentui/react-field_v9.0.0-alpha.16) ### Changes @@ -917,7 +917,7 @@ Mon, 23 Jan 2023 16:43:09 GMT ## [9.0.0-alpha.15](https://github.com/microsoft/fluentui/tree/@fluentui/react-field_v9.0.0-alpha.15) -Mon, 16 Jan 2023 08:39:01 GMT +Mon, 16 Jan 2023 08:39:01 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-field_v9.0.0-alpha.14..@fluentui/react-field_v9.0.0-alpha.15) ### Changes @@ -927,7 +927,7 @@ Mon, 16 Jan 2023 08:39:01 GMT ## [9.0.0-alpha.14](https://github.com/microsoft/fluentui/tree/@fluentui/react-field_v9.0.0-alpha.14) -Mon, 09 Jan 2023 14:35:02 GMT +Mon, 09 Jan 2023 14:35:02 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-field_v9.0.0-alpha.13..@fluentui/react-field_v9.0.0-alpha.14) ### Changes @@ -938,7 +938,7 @@ Mon, 09 Jan 2023 14:35:02 GMT ## [9.0.0-alpha.13](https://github.com/microsoft/fluentui/tree/@fluentui/react-field_v9.0.0-alpha.13) -Wed, 04 Jan 2023 01:40:06 GMT +Wed, 04 Jan 2023 01:40:06 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-field_v9.0.0-alpha.12..@fluentui/react-field_v9.0.0-alpha.13) ### Changes @@ -951,7 +951,7 @@ Wed, 04 Jan 2023 01:40:06 GMT ## [9.0.0-alpha.12](https://github.com/microsoft/fluentui/tree/@fluentui/react-field_v9.0.0-alpha.12) -Wed, 21 Dec 2022 10:20:33 GMT +Wed, 21 Dec 2022 10:20:33 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-field_v9.0.0-alpha.11..@fluentui/react-field_v9.0.0-alpha.12) ### Changes @@ -961,7 +961,7 @@ Wed, 21 Dec 2022 10:20:33 GMT ## [9.0.0-alpha.11](https://github.com/microsoft/fluentui/tree/@fluentui/react-field_v9.0.0-alpha.11) -Tue, 20 Dec 2022 14:59:25 GMT +Tue, 20 Dec 2022 14:59:25 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-field_v9.0.0-alpha.10..@fluentui/react-field_v9.0.0-alpha.11) ### Changes @@ -973,7 +973,7 @@ Tue, 20 Dec 2022 14:59:25 GMT ## [9.0.0-alpha.10](https://github.com/microsoft/fluentui/tree/@fluentui/react-field_v9.0.0-alpha.10) -Mon, 05 Dec 2022 18:29:23 GMT +Mon, 05 Dec 2022 18:29:23 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-field_v9.0.0-alpha.9..@fluentui/react-field_v9.0.0-alpha.10) ### Changes @@ -985,7 +985,7 @@ Mon, 05 Dec 2022 18:29:23 GMT ## [9.0.0-alpha.9](https://github.com/microsoft/fluentui/tree/@fluentui/react-field_v9.0.0-alpha.9) -Thu, 17 Nov 2022 23:05:39 GMT +Thu, 17 Nov 2022 23:05:39 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-field_v9.0.0-alpha.8..@fluentui/react-field_v9.0.0-alpha.9) ### Changes @@ -996,7 +996,7 @@ Thu, 17 Nov 2022 23:05:39 GMT ## [9.0.0-alpha.8](https://github.com/microsoft/fluentui/tree/@fluentui/react-field_v9.0.0-alpha.8) -Fri, 11 Nov 2022 14:58:03 GMT +Fri, 11 Nov 2022 14:58:03 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-field_v9.0.0-alpha.7..@fluentui/react-field_v9.0.0-alpha.8) ### Changes @@ -1012,7 +1012,7 @@ Fri, 11 Nov 2022 14:58:03 GMT ## [9.0.0-alpha.7](https://github.com/microsoft/fluentui/tree/@fluentui/react-field_v9.0.0-alpha.7) -Wed, 02 Nov 2022 11:57:52 GMT +Wed, 02 Nov 2022 11:57:52 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-field_v9.0.0-alpha.6..@fluentui/react-field_v9.0.0-alpha.7) ### Changes @@ -1035,7 +1035,7 @@ Wed, 02 Nov 2022 11:57:52 GMT ## [9.0.0-alpha.6](https://github.com/microsoft/fluentui/tree/@fluentui/react-field_v9.0.0-alpha.6) -Tue, 25 Oct 2022 00:35:32 GMT +Tue, 25 Oct 2022 00:35:32 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-field_v9.0.0-alpha.5..@fluentui/react-field_v9.0.0-alpha.6) ### Changes @@ -1048,7 +1048,7 @@ Tue, 25 Oct 2022 00:35:32 GMT ## [9.0.0-alpha.5](https://github.com/microsoft/fluentui/tree/@fluentui/react-field_v9.0.0-alpha.5) -Thu, 20 Oct 2022 08:39:33 GMT +Thu, 20 Oct 2022 08:39:33 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-field_v9.0.0-alpha.4..@fluentui/react-field_v9.0.0-alpha.5) ### Changes @@ -1073,7 +1073,7 @@ Thu, 20 Oct 2022 08:39:33 GMT ## [9.0.0-alpha.4](https://github.com/microsoft/fluentui/tree/@fluentui/react-field_v9.0.0-alpha.4) -Thu, 13 Oct 2022 11:02:50 GMT +Thu, 13 Oct 2022 11:02:50 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-field_v9.0.0-alpha.3..@fluentui/react-field_v9.0.0-alpha.4) ### Changes @@ -1099,7 +1099,7 @@ Thu, 13 Oct 2022 11:02:50 GMT ## [9.0.0-alpha.3](https://github.com/microsoft/fluentui/tree/@fluentui/react-field_v9.0.0-alpha.3) -Mon, 03 Oct 2022 22:24:37 GMT +Mon, 03 Oct 2022 22:24:37 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-field_v9.0.0-alpha.2..@fluentui/react-field_v9.0.0-alpha.3) ### Changes @@ -1116,7 +1116,7 @@ Mon, 03 Oct 2022 22:24:37 GMT ## [9.0.0-alpha.2](https://github.com/microsoft/fluentui/tree/@fluentui/react-field_v9.0.0-alpha.2) -Tue, 20 Sep 2022 20:55:45 GMT +Tue, 20 Sep 2022 20:55:45 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-field_v9.0.0-alpha.1..@fluentui/react-field_v9.0.0-alpha.2) ### Changes @@ -1135,7 +1135,7 @@ Tue, 20 Sep 2022 20:55:45 GMT ## [9.0.0-alpha.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-field_v9.0.0-alpha.1) -Thu, 15 Sep 2022 09:49:04 GMT +Thu, 15 Sep 2022 09:49:04 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-field_v9.0.0-alpha.0..@fluentui/react-field_v9.0.0-alpha.1) ### Changes diff --git a/packages/react-components/react-field/src/util/makeDeprecatedField.tsx b/packages/react-components/react-field/src/util/makeDeprecatedField.tsx new file mode 100644 index 00000000000000..14c870e335de26 --- /dev/null +++ b/packages/react-components/react-field/src/util/makeDeprecatedField.tsx @@ -0,0 +1,106 @@ +/* eslint-disable deprecation/deprecation */ +import * as React from 'react'; +import { ForwardRefComponent } from '@fluentui/react-utilities'; +import type { FieldProps } from '../Field'; +import { Field, fieldClassNames } from '../Field'; + +/** + * @deprecated Only for use to make deprecated [Control]Field shim components. + * @internal + */ +export type DeprecatedFieldProps = ControlProps & { + root?: FieldProps; + control?: ControlProps; +} & Pick< + FieldProps, + | 'className' + | 'hint' + | 'label' + | 'orientation' + | 'style' + | 'validationMessage' + | 'validationMessageIcon' + | 'validationState' + >; + +/** + * Partition the props used by the Field itself, from the props that are passed to the underlying field component. + */ +function getPartitionedFieldProps( + props: DeprecatedFieldProps & Pick, +) { + const { + className, + control, + hint, + label, + orientation, + required, + root, + size, + style, + validationMessage, + validationMessageIcon, + validationState = 'none', + ...restOfProps + } = props; + + return [ + { + className, + hint, + label, + orientation, + required, + size, + style, + validationMessage, + validationMessageIcon, + validationState, + ...root, + }, + { + required, + size, + ...restOfProps, + ...control, + }, + ]; +} + +/** + * @deprecated Only for use to make deprecated [Control]Field shim components. + * @internal + */ +export function makeDeprecatedField( + Control: React.ComponentType, + options: { + mapProps?: (props: DeprecatedFieldProps) => DeprecatedFieldProps; + displayName?: string; + } = {}, +) { + const { mapProps = props => props, displayName = `${Control.displayName}Field` } = options; + + const DeprecatedField = React.forwardRef((props, ref) => { + const [fieldProps, controlProps] = getPartitionedFieldProps(mapProps(props)); + return ( + + {/* eslint-disable-next-line @typescript-eslint/no-explicit-any */} + + + ); + }) as ForwardRefComponent>; + + DeprecatedField.displayName = displayName; + + return DeprecatedField; +} + +/** + * @deprecated Only for use to make deprecated [Control]Field shim components. + * @internal + */ +export const getDeprecatedFieldClassNames = (controlRootClassName: string) => ({ + ...fieldClassNames, + control: controlRootClassName, +}); diff --git a/packages/react-components/react-infobutton/CHANGELOG.md b/packages/react-components/react-infobutton/CHANGELOG.md index d7e95f41dee30a..b26637da8f1f12 100644 --- a/packages/react-components/react-infobutton/CHANGELOG.md +++ b/packages/react-components/react-infobutton/CHANGELOG.md @@ -6,7 +6,7 @@ This log was last generated on Tue, 23 Apr 2024 08:17:49 GMT and should not be m ## [9.0.0-beta.101](https://github.com/microsoft/fluentui/tree/@fluentui/react-infobutton_v9.0.0-beta.101) -Tue, 23 Apr 2024 08:17:49 GMT +Tue, 23 Apr 2024 08:17:49 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-infobutton_v9.0.0-beta.100..@fluentui/react-infobutton_v9.0.0-beta.101) ### Changes @@ -19,7 +19,7 @@ Tue, 23 Apr 2024 08:17:49 GMT ## [9.0.0-beta.100](https://github.com/microsoft/fluentui/tree/@fluentui/react-infobutton_v9.0.0-beta.100) -Wed, 17 Apr 2024 21:53:53 GMT +Wed, 17 Apr 2024 21:53:53 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-infobutton_v9.0.0-beta.99..@fluentui/react-infobutton_v9.0.0-beta.100) ### Changes @@ -30,7 +30,7 @@ Wed, 17 Apr 2024 21:53:53 GMT ## [9.0.0-beta.99](https://github.com/microsoft/fluentui/tree/@fluentui/react-infobutton_v9.0.0-beta.99) -Tue, 02 Apr 2024 09:48:01 GMT +Tue, 02 Apr 2024 09:48:01 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-infobutton_v9.0.0-beta.98..@fluentui/react-infobutton_v9.0.0-beta.99) ### Changes @@ -43,7 +43,7 @@ Tue, 02 Apr 2024 09:48:01 GMT ## [9.0.0-beta.98](https://github.com/microsoft/fluentui/tree/@fluentui/react-infobutton_v9.0.0-beta.98) -Mon, 18 Mar 2024 19:50:46 GMT +Mon, 18 Mar 2024 19:50:46 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-infobutton_v9.0.0-beta.97..@fluentui/react-infobutton_v9.0.0-beta.98) ### Changes @@ -57,7 +57,7 @@ Mon, 18 Mar 2024 19:50:46 GMT ## [9.0.0-beta.97](https://github.com/microsoft/fluentui/tree/@fluentui/react-infobutton_v9.0.0-beta.97) -Fri, 15 Mar 2024 21:43:49 GMT +Fri, 15 Mar 2024 21:43:49 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-infobutton_v9.0.0-beta.96..@fluentui/react-infobutton_v9.0.0-beta.97) ### Changes @@ -71,7 +71,7 @@ Fri, 15 Mar 2024 21:43:49 GMT ## [9.0.0-beta.96](https://github.com/microsoft/fluentui/tree/@fluentui/react-infobutton_v9.0.0-beta.96) -Thu, 07 Mar 2024 19:33:27 GMT +Thu, 07 Mar 2024 19:33:27 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-infobutton_v9.0.0-beta.95..@fluentui/react-infobutton_v9.0.0-beta.96) ### Changes @@ -85,7 +85,7 @@ Thu, 07 Mar 2024 19:33:27 GMT ## [9.0.0-beta.95](https://github.com/microsoft/fluentui/tree/@fluentui/react-infobutton_v9.0.0-beta.95) -Wed, 28 Feb 2024 02:34:19 GMT +Wed, 28 Feb 2024 02:34:19 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-infobutton_v9.0.0-beta.94..@fluentui/react-infobutton_v9.0.0-beta.95) ### Changes @@ -98,7 +98,7 @@ Wed, 28 Feb 2024 02:34:19 GMT ## [9.0.0-beta.94](https://github.com/microsoft/fluentui/tree/@fluentui/react-infobutton_v9.0.0-beta.94) -Tue, 20 Feb 2024 14:22:30 GMT +Tue, 20 Feb 2024 14:22:30 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-infobutton_v9.0.0-beta.93..@fluentui/react-infobutton_v9.0.0-beta.94) ### Changes @@ -111,7 +111,7 @@ Tue, 20 Feb 2024 14:22:30 GMT ## [9.0.0-beta.93](https://github.com/microsoft/fluentui/tree/@fluentui/react-infobutton_v9.0.0-beta.93) -Tue, 06 Feb 2024 17:55:21 GMT +Tue, 06 Feb 2024 17:55:21 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-infobutton_v9.0.0-beta.92..@fluentui/react-infobutton_v9.0.0-beta.93) ### Changes @@ -121,7 +121,7 @@ Tue, 06 Feb 2024 17:55:21 GMT ## [9.0.0-beta.92](https://github.com/microsoft/fluentui/tree/@fluentui/react-infobutton_v9.0.0-beta.92) -Tue, 30 Jan 2024 23:16:54 GMT +Tue, 30 Jan 2024 23:16:54 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-infobutton_v9.0.0-beta.91..@fluentui/react-infobutton_v9.0.0-beta.92) ### Changes @@ -134,7 +134,7 @@ Tue, 30 Jan 2024 23:16:54 GMT ## [9.0.0-beta.91](https://github.com/microsoft/fluentui/tree/@fluentui/react-infobutton_v9.0.0-beta.91) -Mon, 29 Jan 2024 13:56:06 GMT +Mon, 29 Jan 2024 13:56:06 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-infobutton_v9.0.0-beta.90..@fluentui/react-infobutton_v9.0.0-beta.91) ### Changes @@ -144,7 +144,7 @@ Mon, 29 Jan 2024 13:56:06 GMT ## [9.0.0-beta.90](https://github.com/microsoft/fluentui/tree/@fluentui/react-infobutton_v9.0.0-beta.90) -Fri, 26 Jan 2024 10:40:22 GMT +Fri, 26 Jan 2024 10:40:22 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-infobutton_v9.0.0-beta.89..@fluentui/react-infobutton_v9.0.0-beta.90) ### Changes @@ -153,7 +153,7 @@ Fri, 26 Jan 2024 10:40:22 GMT ## [9.0.0-beta.89](https://github.com/microsoft/fluentui/tree/@fluentui/react-infobutton_v9.0.0-beta.89) -Tue, 23 Jan 2024 15:11:00 GMT +Tue, 23 Jan 2024 15:11:00 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-infobutton_v9.0.0-beta.88..@fluentui/react-infobutton_v9.0.0-beta.89) ### Changes @@ -166,7 +166,7 @@ Tue, 23 Jan 2024 15:11:00 GMT ## [9.0.0-beta.88](https://github.com/microsoft/fluentui/tree/@fluentui/react-infobutton_v9.0.0-beta.88) -Thu, 18 Jan 2024 14:25:03 GMT +Thu, 18 Jan 2024 14:25:03 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-infobutton_v9.0.0-beta.87..@fluentui/react-infobutton_v9.0.0-beta.88) ### Changes @@ -179,7 +179,7 @@ Thu, 18 Jan 2024 14:25:03 GMT ## [9.0.0-beta.87](https://github.com/microsoft/fluentui/tree/@fluentui/react-infobutton_v9.0.0-beta.87) -Wed, 17 Jan 2024 16:18:50 GMT +Wed, 17 Jan 2024 16:18:50 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-infobutton_v9.0.0-beta.86..@fluentui/react-infobutton_v9.0.0-beta.87) ### Changes @@ -192,7 +192,7 @@ Wed, 17 Jan 2024 16:18:50 GMT ## [9.0.0-beta.86](https://github.com/microsoft/fluentui/tree/@fluentui/react-infobutton_v9.0.0-beta.86) -Tue, 16 Jan 2024 13:14:19 GMT +Tue, 16 Jan 2024 13:14:19 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-infobutton_v9.0.0-beta.85..@fluentui/react-infobutton_v9.0.0-beta.86) ### Changes @@ -205,7 +205,7 @@ Tue, 16 Jan 2024 13:14:19 GMT ## [9.0.0-beta.85](https://github.com/microsoft/fluentui/tree/@fluentui/react-infobutton_v9.0.0-beta.85) -Thu, 11 Jan 2024 09:04:29 GMT +Thu, 11 Jan 2024 09:04:29 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-infobutton_v9.0.0-beta.84..@fluentui/react-infobutton_v9.0.0-beta.85) ### Changes @@ -214,7 +214,7 @@ Thu, 11 Jan 2024 09:04:29 GMT ## [9.0.0-beta.84](https://github.com/microsoft/fluentui/tree/@fluentui/react-infobutton_v9.0.0-beta.84) -Tue, 09 Jan 2024 10:21:34 GMT +Tue, 09 Jan 2024 10:21:34 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-infobutton_v9.0.0-beta.83..@fluentui/react-infobutton_v9.0.0-beta.84) ### Changes @@ -223,7 +223,7 @@ Tue, 09 Jan 2024 10:21:34 GMT ## [9.0.0-beta.83](https://github.com/microsoft/fluentui/tree/@fluentui/react-infobutton_v9.0.0-beta.83) -Mon, 08 Jan 2024 16:24:22 GMT +Mon, 08 Jan 2024 16:24:22 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-infobutton_v9.0.0-beta.82..@fluentui/react-infobutton_v9.0.0-beta.83) ### Changes @@ -237,7 +237,7 @@ Mon, 08 Jan 2024 16:24:22 GMT ## [9.0.0-beta.82](https://github.com/microsoft/fluentui/tree/@fluentui/react-infobutton_v9.0.0-beta.82) -Wed, 03 Jan 2024 09:26:44 GMT +Wed, 03 Jan 2024 09:26:44 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-infobutton_v9.0.0-beta.81..@fluentui/react-infobutton_v9.0.0-beta.82) ### Changes @@ -250,7 +250,7 @@ Wed, 03 Jan 2024 09:26:44 GMT ## [9.0.0-beta.81](https://github.com/microsoft/fluentui/tree/@fluentui/react-infobutton_v9.0.0-beta.81) -Mon, 18 Dec 2023 17:48:16 GMT +Mon, 18 Dec 2023 17:48:16 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-infobutton_v9.0.0-beta.80..@fluentui/react-infobutton_v9.0.0-beta.81) ### Changes @@ -259,7 +259,7 @@ Mon, 18 Dec 2023 17:48:16 GMT ## [9.0.0-beta.80](https://github.com/microsoft/fluentui/tree/@fluentui/react-infobutton_v9.0.0-beta.80) -Mon, 18 Dec 2023 14:40:46 GMT +Mon, 18 Dec 2023 14:40:46 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-infobutton_v9.0.0-beta.79..@fluentui/react-infobutton_v9.0.0-beta.80) ### Changes @@ -272,7 +272,7 @@ Mon, 18 Dec 2023 14:40:46 GMT ## [9.0.0-beta.79](https://github.com/microsoft/fluentui/tree/@fluentui/react-infobutton_v9.0.0-beta.79) -Thu, 14 Dec 2023 09:58:46 GMT +Thu, 14 Dec 2023 09:58:46 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-infobutton_v9.0.0-beta.78..@fluentui/react-infobutton_v9.0.0-beta.79) ### Changes @@ -285,7 +285,7 @@ Thu, 14 Dec 2023 09:58:46 GMT ## [9.0.0-beta.78](https://github.com/microsoft/fluentui/tree/@fluentui/react-infobutton_v9.0.0-beta.78) -Thu, 30 Nov 2023 13:42:08 GMT +Thu, 30 Nov 2023 13:42:08 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-infobutton_v9.0.0-beta.77..@fluentui/react-infobutton_v9.0.0-beta.78) ### Changes @@ -297,7 +297,7 @@ Thu, 30 Nov 2023 13:42:08 GMT ## [9.0.0-beta.77](https://github.com/microsoft/fluentui/tree/@fluentui/react-infobutton_v9.0.0-beta.77) -Mon, 20 Nov 2023 09:55:10 GMT +Mon, 20 Nov 2023 09:55:10 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-infobutton_v9.0.0-beta.76..@fluentui/react-infobutton_v9.0.0-beta.77) ### Changes @@ -308,7 +308,7 @@ Mon, 20 Nov 2023 09:55:10 GMT ## [9.0.0-beta.76](https://github.com/microsoft/fluentui/tree/@fluentui/react-infobutton_v9.0.0-beta.76) -Tue, 14 Nov 2023 17:51:27 GMT +Tue, 14 Nov 2023 17:51:27 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-infobutton_v9.0.0-beta.75..@fluentui/react-infobutton_v9.0.0-beta.76) ### Changes @@ -318,7 +318,7 @@ Tue, 14 Nov 2023 17:51:27 GMT ## [9.0.0-beta.75](https://github.com/microsoft/fluentui/tree/@fluentui/react-infobutton_v9.0.0-beta.75) -Thu, 09 Nov 2023 17:29:36 GMT +Thu, 09 Nov 2023 17:29:36 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-infobutton_v9.0.0-beta.74..@fluentui/react-infobutton_v9.0.0-beta.75) ### Changes @@ -332,7 +332,7 @@ Thu, 09 Nov 2023 17:29:36 GMT ## [9.0.0-beta.74](https://github.com/microsoft/fluentui/tree/@fluentui/react-infobutton_v9.0.0-beta.74) -Wed, 01 Nov 2023 12:55:59 GMT +Wed, 01 Nov 2023 12:55:59 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-infobutton_v9.0.0-beta.73..@fluentui/react-infobutton_v9.0.0-beta.74) ### Changes @@ -344,7 +344,7 @@ Wed, 01 Nov 2023 12:55:59 GMT ## [9.0.0-beta.73](https://github.com/microsoft/fluentui/tree/@fluentui/react-infobutton_v9.0.0-beta.73) -Sat, 28 Oct 2023 23:35:57 GMT +Sat, 28 Oct 2023 23:35:57 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-infobutton_v9.0.0-beta.72..@fluentui/react-infobutton_v9.0.0-beta.73) ### Changes @@ -356,7 +356,7 @@ Sat, 28 Oct 2023 23:35:57 GMT ## [9.0.0-beta.72](https://github.com/microsoft/fluentui/tree/@fluentui/react-infobutton_v9.0.0-beta.72) -Mon, 23 Oct 2023 09:51:57 GMT +Mon, 23 Oct 2023 09:51:57 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-infobutton_v9.0.0-beta.71..@fluentui/react-infobutton_v9.0.0-beta.72) ### Changes @@ -366,7 +366,7 @@ Mon, 23 Oct 2023 09:51:57 GMT ## [9.0.0-beta.71](https://github.com/microsoft/fluentui/tree/@fluentui/react-infobutton_v9.0.0-beta.71) -Wed, 18 Oct 2023 17:54:03 GMT +Wed, 18 Oct 2023 17:54:03 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-infobutton_v9.0.0-beta.70..@fluentui/react-infobutton_v9.0.0-beta.71) ### Changes @@ -380,7 +380,7 @@ Wed, 18 Oct 2023 17:54:03 GMT ## [9.0.0-beta.70](https://github.com/microsoft/fluentui/tree/@fluentui/react-infobutton_v9.0.0-beta.70) -Thu, 12 Oct 2023 14:55:44 GMT +Thu, 12 Oct 2023 14:55:44 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-infobutton_v9.0.0-beta.69..@fluentui/react-infobutton_v9.0.0-beta.70) ### Changes @@ -391,7 +391,7 @@ Thu, 12 Oct 2023 14:55:44 GMT ## [9.0.0-beta.69](https://github.com/microsoft/fluentui/tree/@fluentui/react-infobutton_v9.0.0-beta.69) -Wed, 11 Oct 2023 13:54:23 GMT +Wed, 11 Oct 2023 13:54:23 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-infobutton_v9.0.0-beta.68..@fluentui/react-infobutton_v9.0.0-beta.69) ### Changes @@ -405,7 +405,7 @@ Wed, 11 Oct 2023 13:54:23 GMT ## [9.0.0-beta.68](https://github.com/microsoft/fluentui/tree/@fluentui/react-infobutton_v9.0.0-beta.68) -Mon, 09 Oct 2023 20:45:41 GMT +Mon, 09 Oct 2023 20:45:41 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-infobutton_v9.0.0-beta.67..@fluentui/react-infobutton_v9.0.0-beta.68) ### Changes @@ -420,7 +420,7 @@ Mon, 09 Oct 2023 20:45:41 GMT ## [9.0.0-beta.67](https://github.com/microsoft/fluentui/tree/@fluentui/react-infobutton_v9.0.0-beta.67) -Thu, 05 Oct 2023 15:25:35 GMT +Thu, 05 Oct 2023 15:25:35 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-infobutton_v9.0.0-beta.66..@fluentui/react-infobutton_v9.0.0-beta.67) ### Changes @@ -434,7 +434,7 @@ Thu, 05 Oct 2023 15:25:35 GMT ## [9.0.0-beta.66](https://github.com/microsoft/fluentui/tree/@fluentui/react-infobutton_v9.0.0-beta.66) -Wed, 04 Oct 2023 08:45:47 GMT +Wed, 04 Oct 2023 08:45:47 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-infobutton_v9.0.0-beta.65..@fluentui/react-infobutton_v9.0.0-beta.66) ### Changes @@ -448,7 +448,7 @@ Wed, 04 Oct 2023 08:45:47 GMT ## [9.0.0-beta.65](https://github.com/microsoft/fluentui/tree/@fluentui/react-infobutton_v9.0.0-beta.65) -Mon, 02 Oct 2023 08:56:05 GMT +Mon, 02 Oct 2023 08:56:05 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-infobutton_v9.0.0-beta.64..@fluentui/react-infobutton_v9.0.0-beta.65) ### Changes @@ -460,7 +460,7 @@ Mon, 02 Oct 2023 08:56:05 GMT ## [9.0.0-beta.64](https://github.com/microsoft/fluentui/tree/@fluentui/react-infobutton_v9.0.0-beta.64) -Tue, 26 Sep 2023 17:49:06 GMT +Tue, 26 Sep 2023 17:49:06 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-infobutton_v9.0.0-beta.63..@fluentui/react-infobutton_v9.0.0-beta.64) ### Changes @@ -476,7 +476,7 @@ Tue, 26 Sep 2023 17:49:06 GMT ## [9.0.0-beta.63](https://github.com/microsoft/fluentui/tree/@fluentui/react-infobutton_v9.0.0-beta.63) -Tue, 26 Sep 2023 15:31:58 GMT +Tue, 26 Sep 2023 15:31:58 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-infobutton_v9.0.0-beta.62..@fluentui/react-infobutton_v9.0.0-beta.63) ### Changes @@ -493,7 +493,7 @@ Tue, 26 Sep 2023 15:31:58 GMT ## [9.0.0-beta.62](https://github.com/microsoft/fluentui/tree/@fluentui/react-infobutton_v9.0.0-beta.62) -Wed, 20 Sep 2023 17:47:37 GMT +Wed, 20 Sep 2023 17:47:37 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-infobutton_v9.0.0-beta.61..@fluentui/react-infobutton_v9.0.0-beta.62) ### Changes @@ -507,7 +507,7 @@ Wed, 20 Sep 2023 17:47:37 GMT ## [9.0.0-beta.61](https://github.com/microsoft/fluentui/tree/@fluentui/react-infobutton_v9.0.0-beta.61) -Wed, 20 Sep 2023 14:59:53 GMT +Wed, 20 Sep 2023 14:59:53 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-infobutton_v9.0.0-beta.60..@fluentui/react-infobutton_v9.0.0-beta.61) ### Changes @@ -520,7 +520,7 @@ Wed, 20 Sep 2023 14:59:53 GMT ## [9.0.0-beta.60](https://github.com/microsoft/fluentui/tree/@fluentui/react-infobutton_v9.0.0-beta.60) -Thu, 14 Sep 2023 16:44:47 GMT +Thu, 14 Sep 2023 16:44:47 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-infobutton_v9.0.0-beta.59..@fluentui/react-infobutton_v9.0.0-beta.60) ### Changes @@ -531,7 +531,7 @@ Thu, 14 Sep 2023 16:44:47 GMT ## [9.0.0-beta.59](https://github.com/microsoft/fluentui/tree/@fluentui/react-infobutton_v9.0.0-beta.59) -Tue, 12 Sep 2023 08:51:32 GMT +Tue, 12 Sep 2023 08:51:32 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-infobutton_v9.0.0-beta.58..@fluentui/react-infobutton_v9.0.0-beta.59) ### Changes @@ -546,7 +546,7 @@ Tue, 12 Sep 2023 08:51:32 GMT ## [9.0.0-beta.58](https://github.com/microsoft/fluentui/tree/@fluentui/react-infobutton_v9.0.0-beta.58) -Wed, 06 Sep 2023 13:31:31 GMT +Wed, 06 Sep 2023 13:31:31 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-infobutton_v9.0.0-beta.57..@fluentui/react-infobutton_v9.0.0-beta.58) ### Changes @@ -559,7 +559,7 @@ Wed, 06 Sep 2023 13:31:31 GMT ## [9.0.0-beta.57](https://github.com/microsoft/fluentui/tree/@fluentui/react-infobutton_v9.0.0-beta.57) -Tue, 05 Sep 2023 15:39:04 GMT +Tue, 05 Sep 2023 15:39:04 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-infobutton_v9.0.0-beta.56..@fluentui/react-infobutton_v9.0.0-beta.57) ### Changes @@ -572,7 +572,7 @@ Tue, 05 Sep 2023 15:39:04 GMT ## [9.0.0-beta.56](https://github.com/microsoft/fluentui/tree/@fluentui/react-infobutton_v9.0.0-beta.56) -Tue, 05 Sep 2023 13:29:24 GMT +Tue, 05 Sep 2023 13:29:24 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-infobutton_v9.0.0-beta.55..@fluentui/react-infobutton_v9.0.0-beta.56) ### Changes @@ -588,7 +588,7 @@ Tue, 05 Sep 2023 13:29:24 GMT ## [9.0.0-beta.55](https://github.com/microsoft/fluentui/tree/@fluentui/react-infobutton_v9.0.0-beta.55) -Tue, 29 Aug 2023 12:57:34 GMT +Tue, 29 Aug 2023 12:57:34 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-infobutton_v9.0.0-beta.54..@fluentui/react-infobutton_v9.0.0-beta.55) ### Changes @@ -602,7 +602,7 @@ Tue, 29 Aug 2023 12:57:34 GMT ## [9.0.0-beta.54](https://github.com/microsoft/fluentui/tree/@fluentui/react-infobutton_v9.0.0-beta.54) -Thu, 24 Aug 2023 10:26:35 GMT +Thu, 24 Aug 2023 10:26:35 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-infobutton_v9.0.0-beta.53..@fluentui/react-infobutton_v9.0.0-beta.54) ### Changes @@ -615,7 +615,7 @@ Thu, 24 Aug 2023 10:26:35 GMT ## [9.0.0-beta.53](https://github.com/microsoft/fluentui/tree/@fluentui/react-infobutton_v9.0.0-beta.53) -Wed, 23 Aug 2023 12:01:49 GMT +Wed, 23 Aug 2023 12:01:49 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-infobutton_v9.0.0-beta.52..@fluentui/react-infobutton_v9.0.0-beta.53) ### Changes @@ -628,7 +628,7 @@ Wed, 23 Aug 2023 12:01:49 GMT ## [9.0.0-beta.52](https://github.com/microsoft/fluentui/tree/@fluentui/react-infobutton_v9.0.0-beta.52) -Mon, 21 Aug 2023 11:38:00 GMT +Mon, 21 Aug 2023 11:38:00 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-infobutton_v9.0.0-beta.51..@fluentui/react-infobutton_v9.0.0-beta.52) ### Changes @@ -638,7 +638,7 @@ Mon, 21 Aug 2023 11:38:00 GMT ## [9.0.0-beta.51](https://github.com/microsoft/fluentui/tree/@fluentui/react-infobutton_v9.0.0-beta.51) -Wed, 16 Aug 2023 17:41:08 GMT +Wed, 16 Aug 2023 17:41:08 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-infobutton_v9.0.0-beta.50..@fluentui/react-infobutton_v9.0.0-beta.51) ### Changes @@ -649,7 +649,7 @@ Wed, 16 Aug 2023 17:41:08 GMT ## [9.0.0-beta.50](https://github.com/microsoft/fluentui/tree/@fluentui/react-infobutton_v9.0.0-beta.50) -Wed, 16 Aug 2023 11:38:33 GMT +Wed, 16 Aug 2023 11:38:33 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-infobutton_v9.0.0-beta.49..@fluentui/react-infobutton_v9.0.0-beta.50) ### Changes @@ -660,7 +660,7 @@ Wed, 16 Aug 2023 11:38:33 GMT ## [9.0.0-beta.49](https://github.com/microsoft/fluentui/tree/@fluentui/react-infobutton_v9.0.0-beta.49) -Fri, 11 Aug 2023 12:14:26 GMT +Fri, 11 Aug 2023 12:14:26 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-infobutton_v9.0.0-beta.48..@fluentui/react-infobutton_v9.0.0-beta.49) ### Changes @@ -673,7 +673,7 @@ Fri, 11 Aug 2023 12:14:26 GMT ## [9.0.0-beta.48](https://github.com/microsoft/fluentui/tree/@fluentui/react-infobutton_v9.0.0-beta.48) -Wed, 09 Aug 2023 13:16:57 GMT +Wed, 09 Aug 2023 13:16:57 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-infobutton_v9.0.0-beta.47..@fluentui/react-infobutton_v9.0.0-beta.48) ### Changes @@ -688,7 +688,7 @@ Wed, 09 Aug 2023 13:16:57 GMT ## [9.0.0-beta.47](https://github.com/microsoft/fluentui/tree/@fluentui/react-infobutton_v9.0.0-beta.47) -Fri, 04 Aug 2023 08:52:58 GMT +Fri, 04 Aug 2023 08:52:58 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-infobutton_v9.0.0-beta.46..@fluentui/react-infobutton_v9.0.0-beta.47) ### Changes @@ -702,7 +702,7 @@ Fri, 04 Aug 2023 08:52:58 GMT ## [9.0.0-beta.46](https://github.com/microsoft/fluentui/tree/@fluentui/react-infobutton_v9.0.0-beta.46) -Tue, 01 Aug 2023 10:17:21 GMT +Tue, 01 Aug 2023 10:17:21 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-infobutton_v9.0.0-beta.45..@fluentui/react-infobutton_v9.0.0-beta.46) ### Changes @@ -713,7 +713,7 @@ Tue, 01 Aug 2023 10:17:21 GMT ## [9.0.0-beta.45](https://github.com/microsoft/fluentui/tree/@fluentui/react-infobutton_v9.0.0-beta.45) -Thu, 27 Jul 2023 10:34:14 GMT +Thu, 27 Jul 2023 10:34:14 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-infobutton_v9.0.0-beta.44..@fluentui/react-infobutton_v9.0.0-beta.45) ### Changes @@ -722,7 +722,7 @@ Thu, 27 Jul 2023 10:34:14 GMT ## [9.0.0-beta.44](https://github.com/microsoft/fluentui/tree/@fluentui/react-infobutton_v9.0.0-beta.44) -Tue, 25 Jul 2023 13:29:19 GMT +Tue, 25 Jul 2023 13:29:19 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-infobutton_v9.0.0-beta.43..@fluentui/react-infobutton_v9.0.0-beta.44) ### Changes @@ -733,7 +733,7 @@ Tue, 25 Jul 2023 13:29:19 GMT ## [9.0.0-beta.43](https://github.com/microsoft/fluentui/tree/@fluentui/react-infobutton_v9.0.0-beta.43) -Thu, 20 Jul 2023 18:27:29 GMT +Thu, 20 Jul 2023 18:27:29 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-infobutton_v9.0.0-beta.42..@fluentui/react-infobutton_v9.0.0-beta.43) ### Changes @@ -744,7 +744,7 @@ Thu, 20 Jul 2023 18:27:29 GMT ## [9.0.0-beta.42](https://github.com/microsoft/fluentui/tree/@fluentui/react-infobutton_v9.0.0-beta.42) -Mon, 17 Jul 2023 21:27:35 GMT +Mon, 17 Jul 2023 21:27:35 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-infobutton_v9.0.0-beta.41..@fluentui/react-infobutton_v9.0.0-beta.42) ### Changes @@ -754,7 +754,7 @@ Mon, 17 Jul 2023 21:27:35 GMT ## [9.0.0-beta.41](https://github.com/microsoft/fluentui/tree/@fluentui/react-infobutton_v9.0.0-beta.41) -Tue, 11 Jul 2023 18:46:36 GMT +Tue, 11 Jul 2023 18:46:36 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-infobutton_v9.0.0-beta.40..@fluentui/react-infobutton_v9.0.0-beta.41) ### Changes @@ -766,7 +766,7 @@ Tue, 11 Jul 2023 18:46:36 GMT ## [9.0.0-beta.40](https://github.com/microsoft/fluentui/tree/@fluentui/react-infobutton_v9.0.0-beta.40) -Mon, 03 Jul 2023 13:34:28 GMT +Mon, 03 Jul 2023 13:34:28 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-infobutton_v9.0.0-beta.39..@fluentui/react-infobutton_v9.0.0-beta.40) ### Changes @@ -776,7 +776,7 @@ Mon, 03 Jul 2023 13:34:28 GMT ## [9.0.0-beta.39](https://github.com/microsoft/fluentui/tree/@fluentui/react-infobutton_v9.0.0-beta.39) -Mon, 03 Jul 2023 11:57:14 GMT +Mon, 03 Jul 2023 11:57:14 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-infobutton_v9.0.0-beta.38..@fluentui/react-infobutton_v9.0.0-beta.39) ### Changes @@ -789,7 +789,7 @@ Mon, 03 Jul 2023 11:57:14 GMT ## [9.0.0-beta.38](https://github.com/microsoft/fluentui/tree/@fluentui/react-infobutton_v9.0.0-beta.38) -Wed, 28 Jun 2023 11:12:27 GMT +Wed, 28 Jun 2023 11:12:27 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-infobutton_v9.0.0-beta.37..@fluentui/react-infobutton_v9.0.0-beta.38) ### Changes @@ -802,7 +802,7 @@ Wed, 28 Jun 2023 11:12:27 GMT ## [9.0.0-beta.37](https://github.com/microsoft/fluentui/tree/@fluentui/react-infobutton_v9.0.0-beta.37) -Tue, 27 Jun 2023 11:21:23 GMT +Tue, 27 Jun 2023 11:21:23 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-infobutton_v9.0.0-beta.36..@fluentui/react-infobutton_v9.0.0-beta.37) ### Changes @@ -812,7 +812,7 @@ Tue, 27 Jun 2023 11:21:23 GMT ## [9.0.0-beta.36](https://github.com/microsoft/fluentui/tree/@fluentui/react-infobutton_v9.0.0-beta.36) -Mon, 26 Jun 2023 09:53:55 GMT +Mon, 26 Jun 2023 09:53:55 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-infobutton_v9.0.0-beta.35..@fluentui/react-infobutton_v9.0.0-beta.36) ### Changes @@ -825,7 +825,7 @@ Mon, 26 Jun 2023 09:53:55 GMT ## [9.0.0-beta.35](https://github.com/microsoft/fluentui/tree/@fluentui/react-infobutton_v9.0.0-beta.35) -Tue, 20 Jun 2023 12:38:58 GMT +Tue, 20 Jun 2023 12:38:58 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-infobutton_v9.0.0-beta.34..@fluentui/react-infobutton_v9.0.0-beta.35) ### Changes @@ -844,7 +844,7 @@ Tue, 20 Jun 2023 12:38:58 GMT ## [9.0.0-beta.34](https://github.com/microsoft/fluentui/tree/@fluentui/react-infobutton_v9.0.0-beta.34) -Wed, 31 May 2023 06:46:14 GMT +Wed, 31 May 2023 06:46:14 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-infobutton_v9.0.0-beta.33..@fluentui/react-infobutton_v9.0.0-beta.34) ### Changes @@ -859,7 +859,7 @@ Wed, 31 May 2023 06:46:14 GMT ## [9.0.0-beta.33](https://github.com/microsoft/fluentui/tree/@fluentui/react-infobutton_v9.0.0-beta.33) -Thu, 25 May 2023 10:00:48 GMT +Thu, 25 May 2023 10:00:48 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-infobutton_v9.0.0-beta.32..@fluentui/react-infobutton_v9.0.0-beta.33) ### Changes @@ -872,7 +872,7 @@ Thu, 25 May 2023 10:00:48 GMT ## [9.0.0-beta.32](https://github.com/microsoft/fluentui/tree/@fluentui/react-infobutton_v9.0.0-beta.32) -Wed, 24 May 2023 20:45:27 GMT +Wed, 24 May 2023 20:45:27 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-infobutton_v9.0.0-beta.31..@fluentui/react-infobutton_v9.0.0-beta.32) ### Changes @@ -883,7 +883,7 @@ Wed, 24 May 2023 20:45:27 GMT ## [9.0.0-beta.31](https://github.com/microsoft/fluentui/tree/@fluentui/react-infobutton_v9.0.0-beta.31) -Thu, 18 May 2023 13:11:08 GMT +Thu, 18 May 2023 13:11:08 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-infobutton_v9.0.0-beta.30..@fluentui/react-infobutton_v9.0.0-beta.31) ### Changes @@ -893,7 +893,7 @@ Thu, 18 May 2023 13:11:08 GMT ## [9.0.0-beta.30](https://github.com/microsoft/fluentui/tree/@fluentui/react-infobutton_v9.0.0-beta.30) -Thu, 18 May 2023 00:39:07 GMT +Thu, 18 May 2023 00:39:07 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-infobutton_v9.0.0-beta.29..@fluentui/react-infobutton_v9.0.0-beta.30) ### Changes @@ -907,7 +907,7 @@ Thu, 18 May 2023 00:39:07 GMT ## [9.0.0-beta.29](https://github.com/microsoft/fluentui/tree/@fluentui/react-infobutton_v9.0.0-beta.29) -Fri, 12 May 2023 20:27:20 GMT +Fri, 12 May 2023 20:27:20 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-infobutton_v9.0.0-beta.28..@fluentui/react-infobutton_v9.0.0-beta.29) ### Changes @@ -924,7 +924,7 @@ Fri, 12 May 2023 20:27:20 GMT ## [9.0.0-beta.28](https://github.com/microsoft/fluentui/tree/@fluentui/react-infobutton_v9.0.0-beta.28) -Mon, 24 Apr 2023 08:12:37 GMT +Mon, 24 Apr 2023 08:12:37 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-infobutton_v9.0.0-beta.27..@fluentui/react-infobutton_v9.0.0-beta.28) ### Changes @@ -936,7 +936,7 @@ Mon, 24 Apr 2023 08:12:37 GMT ## [9.0.0-beta.27](https://github.com/microsoft/fluentui/tree/@fluentui/react-infobutton_v9.0.0-beta.27) -Mon, 17 Apr 2023 17:54:02 GMT +Mon, 17 Apr 2023 17:54:02 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-infobutton_v9.0.0-beta.26..@fluentui/react-infobutton_v9.0.0-beta.27) ### Changes @@ -948,7 +948,7 @@ Mon, 17 Apr 2023 17:54:02 GMT ## [9.0.0-beta.26](https://github.com/microsoft/fluentui/tree/@fluentui/react-infobutton_v9.0.0-beta.26) -Wed, 12 Apr 2023 09:31:45 GMT +Wed, 12 Apr 2023 09:31:45 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-infobutton_v9.0.0-beta.25..@fluentui/react-infobutton_v9.0.0-beta.26) ### Changes @@ -960,7 +960,7 @@ Wed, 12 Apr 2023 09:31:45 GMT ## [9.0.0-beta.25](https://github.com/microsoft/fluentui/tree/@fluentui/react-infobutton_v9.0.0-beta.25) -Tue, 04 Apr 2023 18:44:48 GMT +Tue, 04 Apr 2023 18:44:48 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-infobutton_v9.0.0-beta.23..@fluentui/react-infobutton_v9.0.0-beta.25) ### Changes @@ -973,7 +973,7 @@ Tue, 04 Apr 2023 18:44:48 GMT ## [9.0.0-beta.23](https://github.com/microsoft/fluentui/tree/@fluentui/react-infobutton_v9.0.0-beta.23) -Tue, 21 Mar 2023 21:23:36 GMT +Tue, 21 Mar 2023 21:23:36 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-infobutton_v9.0.0-beta.22..@fluentui/react-infobutton_v9.0.0-beta.23) ### Changes @@ -990,7 +990,7 @@ Tue, 21 Mar 2023 21:23:36 GMT ## [9.0.0-beta.22](https://github.com/microsoft/fluentui/tree/@fluentui/react-infobutton_v9.0.0-beta.22) -Thu, 16 Mar 2023 14:36:57 GMT +Thu, 16 Mar 2023 14:36:57 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-infobutton_v9.0.0-beta.21..@fluentui/react-infobutton_v9.0.0-beta.22) ### Changes @@ -1003,7 +1003,7 @@ Thu, 16 Mar 2023 14:36:57 GMT ## [9.0.0-beta.21](https://github.com/microsoft/fluentui/tree/@fluentui/react-infobutton_v9.0.0-beta.21) -Wed, 15 Mar 2023 10:19:53 GMT +Wed, 15 Mar 2023 10:19:53 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-infobutton_v9.0.0-beta.20..@fluentui/react-infobutton_v9.0.0-beta.21) ### Changes @@ -1014,7 +1014,7 @@ Wed, 15 Mar 2023 10:19:53 GMT ## [9.0.0-beta.20](https://github.com/microsoft/fluentui/tree/@fluentui/react-infobutton_v9.0.0-beta.20) -Mon, 13 Mar 2023 08:58:26 GMT +Mon, 13 Mar 2023 08:58:26 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-infobutton_v9.0.0-beta.19..@fluentui/react-infobutton_v9.0.0-beta.20) ### Changes @@ -1025,7 +1025,7 @@ Mon, 13 Mar 2023 08:58:26 GMT ## [9.0.0-beta.19](https://github.com/microsoft/fluentui/tree/@fluentui/react-infobutton_v9.0.0-beta.19) -Fri, 10 Mar 2023 07:14:01 GMT +Fri, 10 Mar 2023 07:14:01 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-infobutton_v9.0.0-beta.18..@fluentui/react-infobutton_v9.0.0-beta.19) ### Changes @@ -1036,7 +1036,7 @@ Fri, 10 Mar 2023 07:14:01 GMT ## [9.0.0-beta.18](https://github.com/microsoft/fluentui/tree/@fluentui/react-infobutton_v9.0.0-beta.18) -Wed, 08 Mar 2023 17:42:51 GMT +Wed, 08 Mar 2023 17:42:51 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-infobutton_v9.0.0-beta.17..@fluentui/react-infobutton_v9.0.0-beta.18) ### Changes @@ -1047,7 +1047,7 @@ Wed, 08 Mar 2023 17:42:51 GMT ## [9.0.0-beta.17](https://github.com/microsoft/fluentui/tree/@fluentui/react-infobutton_v9.0.0-beta.17) -Wed, 22 Feb 2023 23:06:07 GMT +Wed, 22 Feb 2023 23:06:07 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-infobutton_v9.0.0-beta.16..@fluentui/react-infobutton_v9.0.0-beta.17) ### Changes @@ -1056,7 +1056,7 @@ Wed, 22 Feb 2023 23:06:07 GMT ## [9.0.0-beta.16](https://github.com/microsoft/fluentui/tree/@fluentui/react-infobutton_v9.0.0-beta.16) -Wed, 15 Feb 2023 11:44:52 GMT +Wed, 15 Feb 2023 11:44:52 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-infobutton_v9.0.0-beta.15..@fluentui/react-infobutton_v9.0.0-beta.16) ### Changes @@ -1067,7 +1067,7 @@ Wed, 15 Feb 2023 11:44:52 GMT ## [9.0.0-beta.15](https://github.com/microsoft/fluentui/tree/@fluentui/react-infobutton_v9.0.0-beta.15) -Mon, 13 Feb 2023 23:43:14 GMT +Mon, 13 Feb 2023 23:43:14 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-infobutton_v9.0.0-beta.14..@fluentui/react-infobutton_v9.0.0-beta.15) ### Changes @@ -1078,7 +1078,7 @@ Mon, 13 Feb 2023 23:43:14 GMT ## [9.0.0-beta.14](https://github.com/microsoft/fluentui/tree/@fluentui/react-infobutton_v9.0.0-beta.14) -Mon, 13 Feb 2023 09:35:48 GMT +Mon, 13 Feb 2023 09:35:48 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-infobutton_v9.0.0-beta.13..@fluentui/react-infobutton_v9.0.0-beta.14) ### Changes @@ -1087,7 +1087,7 @@ Mon, 13 Feb 2023 09:35:48 GMT ## [9.0.0-beta.13](https://github.com/microsoft/fluentui/tree/@fluentui/react-infobutton_v9.0.0-beta.13) -Fri, 10 Feb 2023 08:50:02 GMT +Fri, 10 Feb 2023 08:50:02 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-infobutton_v9.0.0-beta.12..@fluentui/react-infobutton_v9.0.0-beta.13) ### Changes @@ -1098,7 +1098,7 @@ Fri, 10 Feb 2023 08:50:02 GMT ## [9.0.0-beta.12](https://github.com/microsoft/fluentui/tree/@fluentui/react-infobutton_v9.0.0-beta.12) -Tue, 07 Feb 2023 14:13:05 GMT +Tue, 07 Feb 2023 14:13:05 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-infobutton_v9.0.0-beta.11..@fluentui/react-infobutton_v9.0.0-beta.12) ### Changes @@ -1110,7 +1110,7 @@ Tue, 07 Feb 2023 14:13:05 GMT ## [9.0.0-beta.11](https://github.com/microsoft/fluentui/tree/@fluentui/react-infobutton_v9.0.0-beta.11) -Tue, 31 Jan 2023 19:53:58 GMT +Tue, 31 Jan 2023 19:53:58 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-infobutton_v9.0.0-beta.10..@fluentui/react-infobutton_v9.0.0-beta.11) ### Changes @@ -1121,7 +1121,7 @@ Tue, 31 Jan 2023 19:53:58 GMT ## [9.0.0-beta.10](https://github.com/microsoft/fluentui/tree/@fluentui/react-infobutton_v9.0.0-beta.10) -Thu, 26 Jan 2023 13:31:03 GMT +Thu, 26 Jan 2023 13:31:03 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-infobutton_v9.0.0-beta.9..@fluentui/react-infobutton_v9.0.0-beta.10) ### Changes @@ -1132,7 +1132,7 @@ Thu, 26 Jan 2023 13:31:03 GMT ## [9.0.0-beta.9](https://github.com/microsoft/fluentui/tree/@fluentui/react-infobutton_v9.0.0-beta.9) -Mon, 23 Jan 2023 16:43:12 GMT +Mon, 23 Jan 2023 16:43:12 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-infobutton_v9.0.0-beta.8..@fluentui/react-infobutton_v9.0.0-beta.9) ### Changes @@ -1141,7 +1141,7 @@ Mon, 23 Jan 2023 16:43:12 GMT ## [9.0.0-beta.8](https://github.com/microsoft/fluentui/tree/@fluentui/react-infobutton_v9.0.0-beta.8) -Wed, 18 Jan 2023 16:32:57 GMT +Wed, 18 Jan 2023 16:32:57 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-infobutton_v9.0.0-beta.7..@fluentui/react-infobutton_v9.0.0-beta.8) ### Changes @@ -1151,7 +1151,7 @@ Wed, 18 Jan 2023 16:32:57 GMT ## [9.0.0-beta.7](https://github.com/microsoft/fluentui/tree/@fluentui/react-infobutton_v9.0.0-beta.7) -Mon, 16 Jan 2023 08:39:02 GMT +Mon, 16 Jan 2023 08:39:02 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-infobutton_v9.0.0-beta.6..@fluentui/react-infobutton_v9.0.0-beta.7) ### Changes @@ -1163,7 +1163,7 @@ Mon, 16 Jan 2023 08:39:02 GMT ## [9.0.0-beta.6](https://github.com/microsoft/fluentui/tree/@fluentui/react-infobutton_v9.0.0-beta.6) -Mon, 09 Jan 2023 14:35:02 GMT +Mon, 09 Jan 2023 14:35:02 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-infobutton_v9.0.0-beta.5..@fluentui/react-infobutton_v9.0.0-beta.6) ### Changes @@ -1174,7 +1174,7 @@ Mon, 09 Jan 2023 14:35:02 GMT ## [9.0.0-beta.5](https://github.com/microsoft/fluentui/tree/@fluentui/react-infobutton_v9.0.0-beta.5) -Wed, 04 Jan 2023 01:40:08 GMT +Wed, 04 Jan 2023 01:40:08 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-infobutton_v9.0.0-beta.4..@fluentui/react-infobutton_v9.0.0-beta.5) ### Changes @@ -1188,7 +1188,7 @@ Wed, 04 Jan 2023 01:40:08 GMT ## [9.0.0-beta.4](https://github.com/microsoft/fluentui/tree/@fluentui/react-infobutton_v9.0.0-beta.4) -Wed, 21 Dec 2022 10:20:33 GMT +Wed, 21 Dec 2022 10:20:33 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-infobutton_v9.0.0-beta.3..@fluentui/react-infobutton_v9.0.0-beta.4) ### Changes @@ -1199,7 +1199,7 @@ Wed, 21 Dec 2022 10:20:33 GMT ## [9.0.0-beta.3](https://github.com/microsoft/fluentui/tree/@fluentui/react-infobutton_v9.0.0-beta.3) -Tue, 20 Dec 2022 14:59:34 GMT +Tue, 20 Dec 2022 14:59:34 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-infobutton_v9.0.0-beta.2..@fluentui/react-infobutton_v9.0.0-beta.3) ### Changes @@ -1211,7 +1211,7 @@ Tue, 20 Dec 2022 14:59:34 GMT ## [9.0.0-beta.2](https://github.com/microsoft/fluentui/tree/@fluentui/react-infobutton_v9.0.0-beta.2) -Mon, 05 Dec 2022 18:29:39 GMT +Mon, 05 Dec 2022 18:29:39 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-infobutton_v9.0.0-beta.1..@fluentui/react-infobutton_v9.0.0-beta.2) ### Changes diff --git a/packages/react-components/react-infobutton/stories/Infobutton/InfoButtonBestPractices.md b/packages/react-components/react-infobutton/stories/Infobutton/InfoButtonBestPractices.md new file mode 100644 index 00000000000000..1fca418c2bf226 --- /dev/null +++ b/packages/react-components/react-infobutton/stories/Infobutton/InfoButtonBestPractices.md @@ -0,0 +1,14 @@ +
+ +Best Practices + + +### Do's + +- Set `aria-labelledby` to the id of the label that the InfoButton provides more information about and the button's id. See the `InfoButton with Label` example below for more information. + +### Don't + +- Because the Popover isn't always visible, don't include information that people must know in order to complete the field. + +
diff --git a/packages/react-components/react-infobutton/stories/Infobutton/InfoButtonDefault.stories.tsx b/packages/react-components/react-infobutton/stories/Infobutton/InfoButtonDefault.stories.tsx new file mode 100644 index 00000000000000..63dd8419d45426 --- /dev/null +++ b/packages/react-components/react-infobutton/stories/Infobutton/InfoButtonDefault.stories.tsx @@ -0,0 +1,14 @@ +import * as React from 'react'; +import { InfoButton, InfoButtonProps } from '@fluentui/react-infobutton'; +import { Link } from '@fluentui/react-components'; + +export const Default = (props: Partial) => ( + + This is example content for an InfoButton. Learn more + + } + /> +); diff --git a/packages/react-components/react-infobutton/stories/Infobutton/InfoButtonSize.stories.tsx b/packages/react-components/react-infobutton/stories/Infobutton/InfoButtonSize.stories.tsx new file mode 100644 index 00000000000000..030ce8b15c7bc8 --- /dev/null +++ b/packages/react-components/react-infobutton/stories/Infobutton/InfoButtonSize.stories.tsx @@ -0,0 +1,56 @@ +import * as React from 'react'; +import { InfoButton } from '@fluentui/react-infobutton'; +import { Link, makeStyles, shorthands } from '@fluentui/react-components'; + +const useStyles = makeStyles({ + base: { + alignItems: 'start', + display: 'flex', + flexDirection: 'column', + ...shorthands.gap('80px'), + ...shorthands.padding('20px'), + }, +}); + +export const Size = () => { + const styles = useStyles(); + + return ( +
+ + This is example content for a small InfoButton. Learn more. + + } + /> + + + This is example content for a medium InfoButton. Learn more. + + } + /> + + + This is example content for a large InfoButton. Learn more. + + } + /> +
+ ); +}; + +Size.parameters = { + docs: { + description: { + story: 'An InfoButton supports a range of sizes from small to large. The default is medium.', + }, + }, +}; diff --git a/packages/react-components/react-infobutton/stories/Infobutton/InfoButtonWithLabel.stories.tsx b/packages/react-components/react-infobutton/stories/Infobutton/InfoButtonWithLabel.stories.tsx new file mode 100644 index 00000000000000..1b1dfeb863db81 --- /dev/null +++ b/packages/react-components/react-infobutton/stories/Infobutton/InfoButtonWithLabel.stories.tsx @@ -0,0 +1,50 @@ +import * as React from 'react'; +import { InfoButton } from '@fluentui/react-infobutton'; +import { Label, Input, makeStyles, shorthands, useId } from '@fluentui/react-components'; + +const useStyles = makeStyles({ + base: { + alignItems: 'start', + display: 'flex', + flexDirection: 'column', + ...shorthands.padding('20px'), + ...shorthands.gap('10px'), + }, + labelSpacing: { + display: 'flex', + ...shorthands.gap('4px'), + }, +}); + +export const InfoButtonWithLabel = () => { + const styles = useStyles(); + const infoButtonId = useId(); + const inputId = useId(); + const labelId = useId(); + + return ( +
+
+ + +
+ +
+ ); +}; + +InfoButtonWithLabel.parameters = { + docs: { + description: { + story: + "An InfoButton's `aria-labelledby` should include the label's id to correctly" + + ' associate the label with the InfoButton.', + }, + }, +}; diff --git a/packages/react-components/react-input/bundle-size/InputField.fixture.js b/packages/react-components/react-input/bundle-size/InputField.fixture.js new file mode 100644 index 00000000000000..d8ba8cb9070ac0 --- /dev/null +++ b/packages/react-components/react-input/bundle-size/InputField.fixture.js @@ -0,0 +1,7 @@ +import { InputField_unstable } from '@fluentui/react-input'; + +console.log(InputField_unstable); + +export default { + name: 'InputField', +}; diff --git a/packages/react-components/react-input/etc/react-input.api.md b/packages/react-components/react-input/etc/react-input.api.md index f45330387f14ea..b4ec0b26e345ef 100644 --- a/packages/react-components/react-input/etc/react-input.api.md +++ b/packages/react-components/react-input/etc/react-input.api.md @@ -8,6 +8,7 @@ import type { ComponentProps } from '@fluentui/react-utilities'; import type { ComponentState } from '@fluentui/react-utilities'; +import { DeprecatedFieldProps } from '@fluentui/react-field'; import type { ForwardRefComponent } from '@fluentui/react-utilities'; import * as React_2 from 'react'; import type { Slot } from '@fluentui/react-utilities'; @@ -19,6 +20,22 @@ export const Input: ForwardRefComponent; // @public (undocumented) export const inputClassNames: SlotClassNames; +// @public @deprecated (undocumented) +export const InputField_unstable: ForwardRefComponent; + +// @public @deprecated (undocumented) +export const inputFieldClassNames: { + control: string; + root: string; + label: string; + validationMessage: string; + validationMessageIcon: string; + hint: string; +}; + +// @public @deprecated (undocumented) +export type InputFieldProps_unstable = DeprecatedFieldProps; + // @public export type InputOnChangeData = { value: string; diff --git a/packages/react-components/react-input/src/components/InputField/InputField.tsx b/packages/react-components/react-input/src/components/InputField/InputField.tsx new file mode 100644 index 00000000000000..a8e0bd264cfc1f --- /dev/null +++ b/packages/react-components/react-input/src/components/InputField/InputField.tsx @@ -0,0 +1,11 @@ +/* eslint-disable deprecation/deprecation */ +import { DeprecatedFieldProps, getDeprecatedFieldClassNames, makeDeprecatedField } from '@fluentui/react-field'; +import type { ForwardRefComponent } from '@fluentui/react-utilities'; +import { Input, inputClassNames, InputProps } from '../../Input'; + +/** @deprecated Use Field with Input: `` */ +export type InputFieldProps = DeprecatedFieldProps; +/** @deprecated Use Field with Input: `` */ +export const inputFieldClassNames = getDeprecatedFieldClassNames(inputClassNames.root); +/** @deprecated Use Field with Input: `` */ +export const InputField: ForwardRefComponent = makeDeprecatedField(Input); diff --git a/packages/react-components/react-input/src/index.ts b/packages/react-components/react-input/src/index.ts index 3deb992114c004..ece2e8670d05b1 100644 --- a/packages/react-components/react-input/src/index.ts +++ b/packages/react-components/react-input/src/index.ts @@ -1,2 +1,7 @@ export { Input, inputClassNames, renderInput_unstable, useInputStyles_unstable, useInput_unstable } from './Input'; export type { InputOnChangeData, InputProps, InputSlots, InputState } from './Input'; + +// eslint-disable-next-line deprecation/deprecation +export { InputField as InputField_unstable, inputFieldClassNames } from './InputField'; +// eslint-disable-next-line deprecation/deprecation +export type { InputFieldProps as InputFieldProps_unstable } from './InputField'; diff --git a/packages/react-components/react-menu/stories/MenuList/MenuListDefault.stories.tsx b/packages/react-components/react-menu/stories/MenuList/MenuListDefault.stories.tsx index 33a8df06eae549..cd90e44919306c 100644 --- a/packages/react-components/react-menu/stories/MenuList/MenuListDefault.stories.tsx +++ b/packages/react-components/react-menu/stories/MenuList/MenuListDefault.stories.tsx @@ -18,11 +18,13 @@ export const Default = () => { const styles = useMenuListContainerStyles(); return (
+ Cut Paste Edit +
); }; diff --git a/packages/react-components/react-migration-v0-v9/src/stories/FormFieldShim/Description.md b/packages/react-components/react-migration-v0-v9/src/stories/FormFieldShim/Description.md new file mode 100644 index 00000000000000..59101f79de4ce6 --- /dev/null +++ b/packages/react-components/react-migration-v0-v9/src/stories/FormFieldShim/Description.md @@ -0,0 +1 @@ +The FormFieldShim component accepts the same props as a v0 FormField and renders a v9 Field. diff --git a/packages/react-components/react-migration-v0-v9/src/stories/FormFieldShim/index.stories.tsx b/packages/react-components/react-migration-v0-v9/src/stories/FormFieldShim/index.stories.tsx new file mode 100644 index 00000000000000..5fe76d6e236bde --- /dev/null +++ b/packages/react-components/react-migration-v0-v9/src/stories/FormFieldShim/index.stories.tsx @@ -0,0 +1,63 @@ +import * as React from 'react'; + +import descriptionMd from './Description.md'; + +import { FormField, Input, Provider, teamsTheme } from '@fluentui/react-northstar'; +import { makeStyles, shorthands } from '@fluentui/react-components'; +import { Field } from '@fluentui/react-components/unstable'; +import { FormFieldShim } from '../../components/FormField/FormFieldShim'; + +const useStyles = makeStyles({ + root: { + display: 'grid', + gridTemplateColumns: 'auto auto auto', + gridTemplateRows: '1fr', + width: 'fit-content', + alignContent: 'center', + alignItems: 'center', + justifyItems: 'center', + columnGap: '10px', + rowGap: '10px', + }, + componentName: { + justifySelf: 'end', + ...shorthands.margin(0, '10px', 0, 0), + }, +}); + +export const Default = () => { + const styles = useStyles(); + + return ( +
+

v0

+

shim

+

v9

+ + + + + + + + + + + + + +
+ ); +}; + +export default { + title: 'Migration Shims/V0/FormFieldShim', + component: FormFieldShim, + parameters: { + docs: { + description: { + component: [descriptionMd].join('\n'), + }, + }, + }, +}; diff --git a/packages/react-components/react-migration-v0-v9/src/stories/GridShim/Description.md b/packages/react-components/react-migration-v0-v9/src/stories/GridShim/Description.md new file mode 100644 index 00000000000000..991b41312c1a84 --- /dev/null +++ b/packages/react-components/react-migration-v0-v9/src/stories/GridShim/Description.md @@ -0,0 +1 @@ +The GridShim serves as shim to replace V0 Grid component. diff --git a/packages/react-components/react-migration-v0-v9/src/stories/GridShim/index.stories.tsx b/packages/react-components/react-migration-v0-v9/src/stories/GridShim/index.stories.tsx new file mode 100644 index 00000000000000..2b48f9ac7ba57f --- /dev/null +++ b/packages/react-components/react-migration-v0-v9/src/stories/GridShim/index.stories.tsx @@ -0,0 +1,86 @@ +import * as React from 'react'; +import descriptionMd from './Description.md'; +import { Grid, Image } from '@fluentui/react-northstar'; +import { makeStyles } from '@fluentui/react-components'; +import { GridShim } from '../../components/Grid/GridShim'; + +const useStyles = makeStyles({ + root: { + width: 'fit-content', + }, +}); + +const images = [ + , + , + , + , + , + , + , + , + , + , +]; + +export const Default = () => { + const styles = useStyles(); + + return ( +
+
+

v0

+ +
+ +
+

shim

+ {images} +
+
+ ); +}; + +export default { + title: 'Migration Shims/V0/GridShim', + component: GridShim, + parameters: { + docs: { + description: { + component: [descriptionMd].join('\n'), + }, + }, + }, +}; diff --git a/packages/react-components/react-migration-v8-v9/CHANGELOG.md b/packages/react-components/react-migration-v8-v9/CHANGELOG.md index 63b42106220df1..5ac36695329fc6 100644 --- a/packages/react-components/react-migration-v8-v9/CHANGELOG.md +++ b/packages/react-components/react-migration-v8-v9/CHANGELOG.md @@ -6,7 +6,7 @@ This log was last generated on Tue, 23 Apr 2024 08:17:49 GMT and should not be m ## [9.6.8](https://github.com/microsoft/fluentui/tree/@fluentui/react-migration-v8-v9_v9.6.8) -Tue, 23 Apr 2024 08:17:49 GMT +Tue, 23 Apr 2024 08:17:49 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-migration-v8-v9_v9.6.7..@fluentui/react-migration-v8-v9_v9.6.8) ### Patches @@ -16,7 +16,7 @@ Tue, 23 Apr 2024 08:17:49 GMT ## [9.6.7](https://github.com/microsoft/fluentui/tree/@fluentui/react-migration-v8-v9_v9.6.7) -Wed, 17 Apr 2024 21:53:55 GMT +Wed, 17 Apr 2024 21:53:55 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-migration-v8-v9_v9.6.6..@fluentui/react-migration-v8-v9_v9.6.7) ### Patches @@ -26,7 +26,7 @@ Wed, 17 Apr 2024 21:53:55 GMT ## [9.6.6](https://github.com/microsoft/fluentui/tree/@fluentui/react-migration-v8-v9_v9.6.6) -Fri, 05 Apr 2024 14:17:26 GMT +Fri, 05 Apr 2024 14:17:26 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-migration-v8-v9_v9.6.5..@fluentui/react-migration-v8-v9_v9.6.6) ### Patches @@ -35,7 +35,7 @@ Fri, 05 Apr 2024 14:17:26 GMT ## [9.6.5](https://github.com/microsoft/fluentui/tree/@fluentui/react-migration-v8-v9_v9.6.5) -Thu, 04 Apr 2024 12:08:09 GMT +Thu, 04 Apr 2024 12:08:09 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-migration-v8-v9_v9.6.4..@fluentui/react-migration-v8-v9_v9.6.5) ### Patches @@ -44,7 +44,7 @@ Thu, 04 Apr 2024 12:08:09 GMT ## [9.6.4](https://github.com/microsoft/fluentui/tree/@fluentui/react-migration-v8-v9_v9.6.4) -Tue, 02 Apr 2024 09:48:01 GMT +Tue, 02 Apr 2024 09:48:01 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-migration-v8-v9_v9.6.3..@fluentui/react-migration-v8-v9_v9.6.4) ### Patches @@ -54,7 +54,7 @@ Tue, 02 Apr 2024 09:48:01 GMT ## [9.6.3](https://github.com/microsoft/fluentui/tree/@fluentui/react-migration-v8-v9_v9.6.3) -Mon, 25 Mar 2024 11:12:15 GMT +Mon, 25 Mar 2024 11:12:15 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-migration-v8-v9_v9.6.2..@fluentui/react-migration-v8-v9_v9.6.3) ### Patches @@ -63,7 +63,7 @@ Mon, 25 Mar 2024 11:12:15 GMT ## [9.6.2](https://github.com/microsoft/fluentui/tree/@fluentui/react-migration-v8-v9_v9.6.2) -Mon, 18 Mar 2024 19:50:46 GMT +Mon, 18 Mar 2024 19:50:46 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-migration-v8-v9_v9.6.1..@fluentui/react-migration-v8-v9_v9.6.2) ### Patches @@ -74,7 +74,7 @@ Mon, 18 Mar 2024 19:50:46 GMT ## [9.6.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-migration-v8-v9_v9.6.1) -Fri, 15 Mar 2024 21:43:49 GMT +Fri, 15 Mar 2024 21:43:49 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-migration-v8-v9_v9.6.0..@fluentui/react-migration-v8-v9_v9.6.1) ### Patches @@ -85,7 +85,7 @@ Fri, 15 Mar 2024 21:43:49 GMT ## [9.6.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-migration-v8-v9_v9.6.0) -Thu, 07 Mar 2024 19:33:23 GMT +Thu, 07 Mar 2024 19:33:23 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-migration-v8-v9_v9.5.11..@fluentui/react-migration-v8-v9_v9.6.0) ### Minor changes @@ -97,7 +97,7 @@ Thu, 07 Mar 2024 19:33:23 GMT ## [9.5.11](https://github.com/microsoft/fluentui/tree/@fluentui/react-migration-v8-v9_v9.5.11) -Thu, 29 Feb 2024 14:44:21 GMT +Thu, 29 Feb 2024 14:44:21 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-migration-v8-v9_v9.5.10..@fluentui/react-migration-v8-v9_v9.5.11) ### Patches @@ -106,7 +106,7 @@ Thu, 29 Feb 2024 14:44:21 GMT ## [9.5.10](https://github.com/microsoft/fluentui/tree/@fluentui/react-migration-v8-v9_v9.5.10) -Wed, 28 Feb 2024 02:34:19 GMT +Wed, 28 Feb 2024 02:34:19 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-migration-v8-v9_v9.5.9..@fluentui/react-migration-v8-v9_v9.5.10) ### Patches @@ -116,7 +116,7 @@ Wed, 28 Feb 2024 02:34:19 GMT ## [9.5.9](https://github.com/microsoft/fluentui/tree/@fluentui/react-migration-v8-v9_v9.5.9) -Tue, 20 Feb 2024 14:22:30 GMT +Tue, 20 Feb 2024 14:22:30 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-migration-v8-v9_v9.5.8..@fluentui/react-migration-v8-v9_v9.5.9) ### Patches @@ -126,7 +126,7 @@ Tue, 20 Feb 2024 14:22:30 GMT ## [9.5.8](https://github.com/microsoft/fluentui/tree/@fluentui/react-migration-v8-v9_v9.5.8) -Tue, 06 Feb 2024 17:55:21 GMT +Tue, 06 Feb 2024 17:55:21 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-migration-v8-v9_v9.5.7..@fluentui/react-migration-v8-v9_v9.5.8) ### Patches @@ -135,7 +135,7 @@ Tue, 06 Feb 2024 17:55:21 GMT ## [9.5.7](https://github.com/microsoft/fluentui/tree/@fluentui/react-migration-v8-v9_v9.5.7) -Tue, 30 Jan 2024 23:16:54 GMT +Tue, 30 Jan 2024 23:16:54 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-migration-v8-v9_v9.5.6..@fluentui/react-migration-v8-v9_v9.5.7) ### Patches @@ -145,7 +145,7 @@ Tue, 30 Jan 2024 23:16:54 GMT ## [9.5.6](https://github.com/microsoft/fluentui/tree/@fluentui/react-migration-v8-v9_v9.5.6) -Mon, 29 Jan 2024 13:56:06 GMT +Mon, 29 Jan 2024 13:56:06 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-migration-v8-v9_v9.5.5..@fluentui/react-migration-v8-v9_v9.5.6) ### Patches @@ -154,7 +154,7 @@ Mon, 29 Jan 2024 13:56:06 GMT ## [9.5.5](https://github.com/microsoft/fluentui/tree/@fluentui/react-migration-v8-v9_v9.5.5) -Fri, 26 Jan 2024 10:40:22 GMT +Fri, 26 Jan 2024 10:40:22 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-migration-v8-v9_v9.5.4..@fluentui/react-migration-v8-v9_v9.5.5) ### Patches @@ -163,7 +163,7 @@ Fri, 26 Jan 2024 10:40:22 GMT ## [9.5.4](https://github.com/microsoft/fluentui/tree/@fluentui/react-migration-v8-v9_v9.5.4) -Tue, 23 Jan 2024 15:11:00 GMT +Tue, 23 Jan 2024 15:11:00 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-migration-v8-v9_v9.5.3..@fluentui/react-migration-v8-v9_v9.5.4) ### Patches @@ -173,7 +173,7 @@ Tue, 23 Jan 2024 15:11:00 GMT ## [9.5.3](https://github.com/microsoft/fluentui/tree/@fluentui/react-migration-v8-v9_v9.5.3) -Thu, 18 Jan 2024 14:25:03 GMT +Thu, 18 Jan 2024 14:25:03 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-migration-v8-v9_v9.5.2..@fluentui/react-migration-v8-v9_v9.5.3) ### Patches @@ -183,7 +183,7 @@ Thu, 18 Jan 2024 14:25:03 GMT ## [9.5.2](https://github.com/microsoft/fluentui/tree/@fluentui/react-migration-v8-v9_v9.5.2) -Wed, 17 Jan 2024 16:18:50 GMT +Wed, 17 Jan 2024 16:18:50 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-migration-v8-v9_v9.5.1..@fluentui/react-migration-v8-v9_v9.5.2) ### Patches @@ -193,7 +193,7 @@ Wed, 17 Jan 2024 16:18:50 GMT ## [9.5.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-migration-v8-v9_v9.5.1) -Tue, 16 Jan 2024 13:14:21 GMT +Tue, 16 Jan 2024 13:14:21 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-migration-v8-v9_v9.5.0..@fluentui/react-migration-v8-v9_v9.5.1) ### Patches @@ -203,7 +203,7 @@ Tue, 16 Jan 2024 13:14:21 GMT ## [9.5.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-migration-v8-v9_v9.5.0) -Thu, 11 Jan 2024 09:04:29 GMT +Thu, 11 Jan 2024 09:04:29 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-migration-v8-v9_v9.4.44..@fluentui/react-migration-v8-v9_v9.5.0) ### Minor changes @@ -213,7 +213,7 @@ Thu, 11 Jan 2024 09:04:29 GMT ## [9.4.44](https://github.com/microsoft/fluentui/tree/@fluentui/react-migration-v8-v9_v9.4.44) -Tue, 09 Jan 2024 10:21:34 GMT +Tue, 09 Jan 2024 10:21:34 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-migration-v8-v9_v9.4.43..@fluentui/react-migration-v8-v9_v9.4.44) ### Patches @@ -222,7 +222,7 @@ Tue, 09 Jan 2024 10:21:34 GMT ## [9.4.43](https://github.com/microsoft/fluentui/tree/@fluentui/react-migration-v8-v9_v9.4.43) -Mon, 08 Jan 2024 16:24:23 GMT +Mon, 08 Jan 2024 16:24:23 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-migration-v8-v9_v9.4.42..@fluentui/react-migration-v8-v9_v9.4.43) ### Patches @@ -233,7 +233,7 @@ Mon, 08 Jan 2024 16:24:23 GMT ## [9.4.42](https://github.com/microsoft/fluentui/tree/@fluentui/react-migration-v8-v9_v9.4.42) -Wed, 03 Jan 2024 09:26:44 GMT +Wed, 03 Jan 2024 09:26:44 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-migration-v8-v9_v9.4.41..@fluentui/react-migration-v8-v9_v9.4.42) ### Patches @@ -243,7 +243,7 @@ Wed, 03 Jan 2024 09:26:44 GMT ## [9.4.41](https://github.com/microsoft/fluentui/tree/@fluentui/react-migration-v8-v9_v9.4.41) -Thu, 21 Dec 2023 17:00:41 GMT +Thu, 21 Dec 2023 17:00:41 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-migration-v8-v9_v9.4.40..@fluentui/react-migration-v8-v9_v9.4.41) ### Patches @@ -252,7 +252,7 @@ Thu, 21 Dec 2023 17:00:41 GMT ## [9.4.40](https://github.com/microsoft/fluentui/tree/@fluentui/react-migration-v8-v9_v9.4.40) -Mon, 18 Dec 2023 17:48:16 GMT +Mon, 18 Dec 2023 17:48:16 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-migration-v8-v9_v9.4.39..@fluentui/react-migration-v8-v9_v9.4.40) ### Patches @@ -261,7 +261,7 @@ Mon, 18 Dec 2023 17:48:16 GMT ## [9.4.39](https://github.com/microsoft/fluentui/tree/@fluentui/react-migration-v8-v9_v9.4.39) -Mon, 18 Dec 2023 14:40:46 GMT +Mon, 18 Dec 2023 14:40:46 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-migration-v8-v9_v9.4.38..@fluentui/react-migration-v8-v9_v9.4.39) ### Patches @@ -271,7 +271,7 @@ Mon, 18 Dec 2023 14:40:46 GMT ## [9.4.38](https://github.com/microsoft/fluentui/tree/@fluentui/react-migration-v8-v9_v9.4.38) -Thu, 14 Dec 2023 09:58:46 GMT +Thu, 14 Dec 2023 09:58:46 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-migration-v8-v9_v9.4.37..@fluentui/react-migration-v8-v9_v9.4.38) ### Patches @@ -281,7 +281,7 @@ Thu, 14 Dec 2023 09:58:46 GMT ## [9.4.37](https://github.com/microsoft/fluentui/tree/@fluentui/react-migration-v8-v9_v9.4.37) -Thu, 30 Nov 2023 13:42:08 GMT +Thu, 30 Nov 2023 13:42:08 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-migration-v8-v9_v9.4.36..@fluentui/react-migration-v8-v9_v9.4.37) ### Patches @@ -290,7 +290,7 @@ Thu, 30 Nov 2023 13:42:08 GMT ## [9.4.36](https://github.com/microsoft/fluentui/tree/@fluentui/react-migration-v8-v9_v9.4.36) -Mon, 20 Nov 2023 09:55:10 GMT +Mon, 20 Nov 2023 09:55:10 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-migration-v8-v9_v9.4.35..@fluentui/react-migration-v8-v9_v9.4.36) ### Patches @@ -299,7 +299,7 @@ Mon, 20 Nov 2023 09:55:10 GMT ## [9.4.35](https://github.com/microsoft/fluentui/tree/@fluentui/react-migration-v8-v9_v9.4.35) -Tue, 14 Nov 2023 17:51:27 GMT +Tue, 14 Nov 2023 17:51:27 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-migration-v8-v9_v9.4.34..@fluentui/react-migration-v8-v9_v9.4.35) ### Patches @@ -308,7 +308,7 @@ Tue, 14 Nov 2023 17:51:27 GMT ## [9.4.34](https://github.com/microsoft/fluentui/tree/@fluentui/react-migration-v8-v9_v9.4.34) -Fri, 10 Nov 2023 13:46:33 GMT +Fri, 10 Nov 2023 13:46:33 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-migration-v8-v9_v9.4.33..@fluentui/react-migration-v8-v9_v9.4.34) ### Patches @@ -317,7 +317,7 @@ Fri, 10 Nov 2023 13:46:33 GMT ## [9.4.33](https://github.com/microsoft/fluentui/tree/@fluentui/react-migration-v8-v9_v9.4.33) -Thu, 09 Nov 2023 17:29:38 GMT +Thu, 09 Nov 2023 17:29:38 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-migration-v8-v9_v9.4.32..@fluentui/react-migration-v8-v9_v9.4.33) ### Patches @@ -329,7 +329,7 @@ Thu, 09 Nov 2023 17:29:38 GMT ## [9.4.32](https://github.com/microsoft/fluentui/tree/@fluentui/react-migration-v8-v9_v9.4.32) -Mon, 06 Nov 2023 13:16:04 GMT +Mon, 06 Nov 2023 13:16:04 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-migration-v8-v9_v9.4.31..@fluentui/react-migration-v8-v9_v9.4.32) ### Patches @@ -338,7 +338,7 @@ Mon, 06 Nov 2023 13:16:04 GMT ## [9.4.31](https://github.com/microsoft/fluentui/tree/@fluentui/react-migration-v8-v9_v9.4.31) -Thu, 02 Nov 2023 17:38:46 GMT +Thu, 02 Nov 2023 17:38:46 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-migration-v8-v9_v9.4.30..@fluentui/react-migration-v8-v9_v9.4.31) ### Patches @@ -347,7 +347,7 @@ Thu, 02 Nov 2023 17:38:46 GMT ## [9.4.30](https://github.com/microsoft/fluentui/tree/@fluentui/react-migration-v8-v9_v9.4.30) -Wed, 01 Nov 2023 19:15:55 GMT +Wed, 01 Nov 2023 19:15:55 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-migration-v8-v9_v9.4.29..@fluentui/react-migration-v8-v9_v9.4.30) ### Patches @@ -356,7 +356,7 @@ Wed, 01 Nov 2023 19:15:55 GMT ## [9.4.29](https://github.com/microsoft/fluentui/tree/@fluentui/react-migration-v8-v9_v9.4.29) -Wed, 01 Nov 2023 12:55:59 GMT +Wed, 01 Nov 2023 12:55:59 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-migration-v8-v9_v9.4.28..@fluentui/react-migration-v8-v9_v9.4.29) ### Patches @@ -366,7 +366,7 @@ Wed, 01 Nov 2023 12:55:59 GMT ## [9.4.28](https://github.com/microsoft/fluentui/tree/@fluentui/react-migration-v8-v9_v9.4.28) -Sat, 28 Oct 2023 23:35:59 GMT +Sat, 28 Oct 2023 23:35:59 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-migration-v8-v9_v9.4.27..@fluentui/react-migration-v8-v9_v9.4.28) ### Patches @@ -375,7 +375,7 @@ Sat, 28 Oct 2023 23:35:59 GMT ## [9.4.27](https://github.com/microsoft/fluentui/tree/@fluentui/react-migration-v8-v9_v9.4.27) -Mon, 23 Oct 2023 09:51:57 GMT +Mon, 23 Oct 2023 09:51:57 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-migration-v8-v9_v9.4.26..@fluentui/react-migration-v8-v9_v9.4.27) ### Patches @@ -384,7 +384,7 @@ Mon, 23 Oct 2023 09:51:57 GMT ## [9.4.26](https://github.com/microsoft/fluentui/tree/@fluentui/react-migration-v8-v9_v9.4.26) -Wed, 18 Oct 2023 17:54:08 GMT +Wed, 18 Oct 2023 17:54:08 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-migration-v8-v9_v9.4.25..@fluentui/react-migration-v8-v9_v9.4.26) ### Patches @@ -394,7 +394,7 @@ Wed, 18 Oct 2023 17:54:08 GMT ## [9.4.25](https://github.com/microsoft/fluentui/tree/@fluentui/react-migration-v8-v9_v9.4.25) -Thu, 12 Oct 2023 14:55:44 GMT +Thu, 12 Oct 2023 14:55:44 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-migration-v8-v9_v9.4.24..@fluentui/react-migration-v8-v9_v9.4.25) ### Patches @@ -404,7 +404,7 @@ Thu, 12 Oct 2023 14:55:44 GMT ## [9.4.24](https://github.com/microsoft/fluentui/tree/@fluentui/react-migration-v8-v9_v9.4.24) -Wed, 11 Oct 2023 13:54:26 GMT +Wed, 11 Oct 2023 13:54:26 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-migration-v8-v9_v9.4.23..@fluentui/react-migration-v8-v9_v9.4.24) ### Patches @@ -414,7 +414,7 @@ Wed, 11 Oct 2023 13:54:26 GMT ## [9.4.23](https://github.com/microsoft/fluentui/tree/@fluentui/react-migration-v8-v9_v9.4.23) -Mon, 09 Oct 2023 20:45:44 GMT +Mon, 09 Oct 2023 20:45:44 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-migration-v8-v9_v9.4.22..@fluentui/react-migration-v8-v9_v9.4.23) ### Patches @@ -424,7 +424,7 @@ Mon, 09 Oct 2023 20:45:44 GMT ## [9.4.22](https://github.com/microsoft/fluentui/tree/@fluentui/react-migration-v8-v9_v9.4.22) -Thu, 05 Oct 2023 15:25:35 GMT +Thu, 05 Oct 2023 15:25:35 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-migration-v8-v9_v9.4.21..@fluentui/react-migration-v8-v9_v9.4.22) ### Patches @@ -434,7 +434,7 @@ Thu, 05 Oct 2023 15:25:35 GMT ## [9.4.21](https://github.com/microsoft/fluentui/tree/@fluentui/react-migration-v8-v9_v9.4.21) -Wed, 04 Oct 2023 08:45:47 GMT +Wed, 04 Oct 2023 08:45:47 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-migration-v8-v9_v9.4.20..@fluentui/react-migration-v8-v9_v9.4.21) ### Patches @@ -444,7 +444,7 @@ Wed, 04 Oct 2023 08:45:47 GMT ## [9.4.20](https://github.com/microsoft/fluentui/tree/@fluentui/react-migration-v8-v9_v9.4.20) -Mon, 02 Oct 2023 08:56:05 GMT +Mon, 02 Oct 2023 08:56:05 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-migration-v8-v9_v9.4.19..@fluentui/react-migration-v8-v9_v9.4.20) ### Patches @@ -453,7 +453,7 @@ Mon, 02 Oct 2023 08:56:05 GMT ## [9.4.19](https://github.com/microsoft/fluentui/tree/@fluentui/react-migration-v8-v9_v9.4.19) -Tue, 26 Sep 2023 17:49:07 GMT +Tue, 26 Sep 2023 17:49:07 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-migration-v8-v9_v9.4.18..@fluentui/react-migration-v8-v9_v9.4.19) ### Patches @@ -465,7 +465,7 @@ Tue, 26 Sep 2023 17:49:07 GMT ## [9.4.18](https://github.com/microsoft/fluentui/tree/@fluentui/react-migration-v8-v9_v9.4.18) -Tue, 26 Sep 2023 15:31:55 GMT +Tue, 26 Sep 2023 15:31:55 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-migration-v8-v9_v9.4.17..@fluentui/react-migration-v8-v9_v9.4.18) ### Patches @@ -478,7 +478,7 @@ Tue, 26 Sep 2023 15:31:55 GMT ## [9.4.17](https://github.com/microsoft/fluentui/tree/@fluentui/react-migration-v8-v9_v9.4.17) -Wed, 20 Sep 2023 17:47:39 GMT +Wed, 20 Sep 2023 17:47:39 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-migration-v8-v9_v9.4.16..@fluentui/react-migration-v8-v9_v9.4.17) ### Patches @@ -488,7 +488,7 @@ Wed, 20 Sep 2023 17:47:39 GMT ## [9.4.16](https://github.com/microsoft/fluentui/tree/@fluentui/react-migration-v8-v9_v9.4.16) -Wed, 20 Sep 2023 14:59:53 GMT +Wed, 20 Sep 2023 14:59:53 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-migration-v8-v9_v9.4.15..@fluentui/react-migration-v8-v9_v9.4.16) ### Patches @@ -497,7 +497,7 @@ Wed, 20 Sep 2023 14:59:53 GMT ## [9.4.15](https://github.com/microsoft/fluentui/tree/@fluentui/react-migration-v8-v9_v9.4.15) -Thu, 14 Sep 2023 16:44:47 GMT +Thu, 14 Sep 2023 16:44:47 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-migration-v8-v9_v9.4.14..@fluentui/react-migration-v8-v9_v9.4.15) ### Patches @@ -506,7 +506,7 @@ Thu, 14 Sep 2023 16:44:47 GMT ## [9.4.14](https://github.com/microsoft/fluentui/tree/@fluentui/react-migration-v8-v9_v9.4.14) -Tue, 12 Sep 2023 08:51:34 GMT +Tue, 12 Sep 2023 08:51:34 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-migration-v8-v9_v9.4.13..@fluentui/react-migration-v8-v9_v9.4.14) ### Patches @@ -515,7 +515,7 @@ Tue, 12 Sep 2023 08:51:34 GMT ## [9.4.13](https://github.com/microsoft/fluentui/tree/@fluentui/react-migration-v8-v9_v9.4.13) -Wed, 06 Sep 2023 13:31:31 GMT +Wed, 06 Sep 2023 13:31:31 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-migration-v8-v9_v9.4.12..@fluentui/react-migration-v8-v9_v9.4.13) ### Patches @@ -525,7 +525,7 @@ Wed, 06 Sep 2023 13:31:31 GMT ## [9.4.12](https://github.com/microsoft/fluentui/tree/@fluentui/react-migration-v8-v9_v9.4.12) -Tue, 05 Sep 2023 15:39:04 GMT +Tue, 05 Sep 2023 15:39:04 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-migration-v8-v9_v9.4.11..@fluentui/react-migration-v8-v9_v9.4.12) ### Patches @@ -535,7 +535,7 @@ Tue, 05 Sep 2023 15:39:04 GMT ## [9.4.11](https://github.com/microsoft/fluentui/tree/@fluentui/react-migration-v8-v9_v9.4.11) -Tue, 05 Sep 2023 13:29:27 GMT +Tue, 05 Sep 2023 13:29:27 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-migration-v8-v9_v9.4.10..@fluentui/react-migration-v8-v9_v9.4.11) ### Patches @@ -548,7 +548,7 @@ Tue, 05 Sep 2023 13:29:27 GMT ## [9.4.10](https://github.com/microsoft/fluentui/tree/@fluentui/react-migration-v8-v9_v9.4.10) -Tue, 29 Aug 2023 12:57:36 GMT +Tue, 29 Aug 2023 12:57:36 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-migration-v8-v9_v9.4.9..@fluentui/react-migration-v8-v9_v9.4.10) ### Patches @@ -558,7 +558,7 @@ Tue, 29 Aug 2023 12:57:36 GMT ## [9.4.9](https://github.com/microsoft/fluentui/tree/@fluentui/react-migration-v8-v9_v9.4.9) -Thu, 24 Aug 2023 10:26:35 GMT +Thu, 24 Aug 2023 10:26:35 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-migration-v8-v9_v9.4.8..@fluentui/react-migration-v8-v9_v9.4.9) ### Patches @@ -568,7 +568,7 @@ Thu, 24 Aug 2023 10:26:35 GMT ## [9.4.8](https://github.com/microsoft/fluentui/tree/@fluentui/react-migration-v8-v9_v9.4.8) -Wed, 23 Aug 2023 12:01:49 GMT +Wed, 23 Aug 2023 12:01:49 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-migration-v8-v9_v9.4.7..@fluentui/react-migration-v8-v9_v9.4.8) ### Patches @@ -578,7 +578,7 @@ Wed, 23 Aug 2023 12:01:49 GMT ## [9.4.7](https://github.com/microsoft/fluentui/tree/@fluentui/react-migration-v8-v9_v9.4.7) -Mon, 21 Aug 2023 11:38:03 GMT +Mon, 21 Aug 2023 11:38:03 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-migration-v8-v9_v9.4.6..@fluentui/react-migration-v8-v9_v9.4.7) ### Patches @@ -587,7 +587,7 @@ Mon, 21 Aug 2023 11:38:03 GMT ## [9.4.6](https://github.com/microsoft/fluentui/tree/@fluentui/react-migration-v8-v9_v9.4.6) -Thu, 17 Aug 2023 13:49:56 GMT +Thu, 17 Aug 2023 13:49:56 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-migration-v8-v9_v9.4.5..@fluentui/react-migration-v8-v9_v9.4.6) ### Patches @@ -596,7 +596,7 @@ Thu, 17 Aug 2023 13:49:56 GMT ## [9.4.5](https://github.com/microsoft/fluentui/tree/@fluentui/react-migration-v8-v9_v9.4.5) -Wed, 16 Aug 2023 17:41:08 GMT +Wed, 16 Aug 2023 17:41:08 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-migration-v8-v9_v9.4.4..@fluentui/react-migration-v8-v9_v9.4.5) ### Patches @@ -605,7 +605,7 @@ Wed, 16 Aug 2023 17:41:08 GMT ## [9.4.4](https://github.com/microsoft/fluentui/tree/@fluentui/react-migration-v8-v9_v9.4.4) -Wed, 16 Aug 2023 11:38:33 GMT +Wed, 16 Aug 2023 11:38:33 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-migration-v8-v9_v9.4.3..@fluentui/react-migration-v8-v9_v9.4.4) ### Patches @@ -614,7 +614,7 @@ Wed, 16 Aug 2023 11:38:33 GMT ## [9.4.3](https://github.com/microsoft/fluentui/tree/@fluentui/react-migration-v8-v9_v9.4.3) -Mon, 14 Aug 2023 21:22:22 GMT +Mon, 14 Aug 2023 21:22:22 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-migration-v8-v9_v9.4.2..@fluentui/react-migration-v8-v9_v9.4.3) ### Patches @@ -623,7 +623,7 @@ Mon, 14 Aug 2023 21:22:22 GMT ## [9.4.2](https://github.com/microsoft/fluentui/tree/@fluentui/react-migration-v8-v9_v9.4.2) -Fri, 11 Aug 2023 12:14:26 GMT +Fri, 11 Aug 2023 12:14:26 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-migration-v8-v9_v9.4.1..@fluentui/react-migration-v8-v9_v9.4.2) ### Patches @@ -633,7 +633,7 @@ Fri, 11 Aug 2023 12:14:26 GMT ## [9.4.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-migration-v8-v9_v9.4.1) -Wed, 09 Aug 2023 13:16:59 GMT +Wed, 09 Aug 2023 13:16:59 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-migration-v8-v9_v9.4.0..@fluentui/react-migration-v8-v9_v9.4.1) ### Patches @@ -644,7 +644,7 @@ Wed, 09 Aug 2023 13:16:59 GMT ## [9.4.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-migration-v8-v9_v9.4.0) -Fri, 04 Aug 2023 08:52:56 GMT +Fri, 04 Aug 2023 08:52:56 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-migration-v8-v9_v9.3.13..@fluentui/react-migration-v8-v9_v9.4.0) ### Minor changes @@ -656,7 +656,7 @@ Fri, 04 Aug 2023 08:52:56 GMT ## [9.3.13](https://github.com/microsoft/fluentui/tree/@fluentui/react-migration-v8-v9_v9.3.13) -Tue, 01 Aug 2023 13:04:25 GMT +Tue, 01 Aug 2023 13:04:25 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-migration-v8-v9_v9.3.12..@fluentui/react-migration-v8-v9_v9.3.13) ### Patches @@ -665,7 +665,7 @@ Tue, 01 Aug 2023 13:04:25 GMT ## [9.3.12](https://github.com/microsoft/fluentui/tree/@fluentui/react-migration-v8-v9_v9.3.12) -Tue, 01 Aug 2023 10:17:21 GMT +Tue, 01 Aug 2023 10:17:21 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-migration-v8-v9_v9.3.11..@fluentui/react-migration-v8-v9_v9.3.12) ### Patches @@ -674,7 +674,7 @@ Tue, 01 Aug 2023 10:17:21 GMT ## [9.3.11](https://github.com/microsoft/fluentui/tree/@fluentui/react-migration-v8-v9_v9.3.11) -Thu, 27 Jul 2023 10:34:14 GMT +Thu, 27 Jul 2023 10:34:14 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-migration-v8-v9_v9.3.10..@fluentui/react-migration-v8-v9_v9.3.11) ### Patches @@ -683,7 +683,7 @@ Thu, 27 Jul 2023 10:34:14 GMT ## [9.3.10](https://github.com/microsoft/fluentui/tree/@fluentui/react-migration-v8-v9_v9.3.10) -Tue, 25 Jul 2023 13:29:20 GMT +Tue, 25 Jul 2023 13:29:20 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-migration-v8-v9_v9.3.9..@fluentui/react-migration-v8-v9_v9.3.10) ### Patches @@ -693,7 +693,7 @@ Tue, 25 Jul 2023 13:29:20 GMT ## [9.3.9](https://github.com/microsoft/fluentui/tree/@fluentui/react-migration-v8-v9_v9.3.9) -Thu, 20 Jul 2023 18:27:36 GMT +Thu, 20 Jul 2023 18:27:36 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-migration-v8-v9_v9.3.8..@fluentui/react-migration-v8-v9_v9.3.9) ### Patches @@ -702,7 +702,7 @@ Thu, 20 Jul 2023 18:27:36 GMT ## [9.3.8](https://github.com/microsoft/fluentui/tree/@fluentui/react-migration-v8-v9_v9.3.8) -Mon, 17 Jul 2023 21:27:36 GMT +Mon, 17 Jul 2023 21:27:36 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-migration-v8-v9_v9.3.7..@fluentui/react-migration-v8-v9_v9.3.8) ### Patches @@ -711,7 +711,7 @@ Mon, 17 Jul 2023 21:27:36 GMT ## [9.3.7](https://github.com/microsoft/fluentui/tree/@fluentui/react-migration-v8-v9_v9.3.7) -Tue, 11 Jul 2023 18:46:36 GMT +Tue, 11 Jul 2023 18:46:36 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-migration-v8-v9_v9.3.6..@fluentui/react-migration-v8-v9_v9.3.7) ### Patches @@ -721,7 +721,7 @@ Tue, 11 Jul 2023 18:46:36 GMT ## [9.3.6](https://github.com/microsoft/fluentui/tree/@fluentui/react-migration-v8-v9_v9.3.6) -Mon, 03 Jul 2023 20:43:09 GMT +Mon, 03 Jul 2023 20:43:09 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-migration-v8-v9_v9.3.5..@fluentui/react-migration-v8-v9_v9.3.6) ### Patches @@ -730,7 +730,7 @@ Mon, 03 Jul 2023 20:43:09 GMT ## [9.3.5](https://github.com/microsoft/fluentui/tree/@fluentui/react-migration-v8-v9_v9.3.5) -Mon, 03 Jul 2023 13:34:28 GMT +Mon, 03 Jul 2023 13:34:28 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-migration-v8-v9_v9.3.4..@fluentui/react-migration-v8-v9_v9.3.5) ### Patches @@ -739,7 +739,7 @@ Mon, 03 Jul 2023 13:34:28 GMT ## [9.3.4](https://github.com/microsoft/fluentui/tree/@fluentui/react-migration-v8-v9_v9.3.4) -Mon, 03 Jul 2023 11:57:12 GMT +Mon, 03 Jul 2023 11:57:12 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-migration-v8-v9_v9.3.3..@fluentui/react-migration-v8-v9_v9.3.4) ### Patches @@ -750,7 +750,7 @@ Mon, 03 Jul 2023 11:57:12 GMT ## [9.3.3](https://github.com/microsoft/fluentui/tree/@fluentui/react-migration-v8-v9_v9.3.3) -Wed, 28 Jun 2023 11:12:28 GMT +Wed, 28 Jun 2023 11:12:28 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-migration-v8-v9_v9.3.2..@fluentui/react-migration-v8-v9_v9.3.3) ### Patches @@ -761,7 +761,7 @@ Wed, 28 Jun 2023 11:12:28 GMT ## [9.3.2](https://github.com/microsoft/fluentui/tree/@fluentui/react-migration-v8-v9_v9.3.2) -Tue, 27 Jun 2023 11:21:23 GMT +Tue, 27 Jun 2023 11:21:23 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-migration-v8-v9_v9.3.1..@fluentui/react-migration-v8-v9_v9.3.2) ### Patches @@ -770,7 +770,7 @@ Tue, 27 Jun 2023 11:21:23 GMT ## [9.3.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-migration-v8-v9_v9.3.1) -Mon, 26 Jun 2023 09:53:55 GMT +Mon, 26 Jun 2023 09:53:55 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-migration-v8-v9_v9.3.0..@fluentui/react-migration-v8-v9_v9.3.1) ### Patches @@ -780,7 +780,7 @@ Mon, 26 Jun 2023 09:53:55 GMT ## [9.3.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-migration-v8-v9_v9.3.0) -Tue, 20 Jun 2023 12:39:00 GMT +Tue, 20 Jun 2023 12:39:00 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-migration-v8-v9_v9.2.16..@fluentui/react-migration-v8-v9_v9.3.0) ### Minor changes @@ -798,7 +798,7 @@ Tue, 20 Jun 2023 12:39:00 GMT ## [9.2.16](https://github.com/microsoft/fluentui/tree/@fluentui/react-migration-v8-v9_v9.2.16) -Wed, 31 May 2023 06:46:15 GMT +Wed, 31 May 2023 06:46:15 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-migration-v8-v9_v9.2.15..@fluentui/react-migration-v8-v9_v9.2.16) ### Patches @@ -810,7 +810,7 @@ Wed, 31 May 2023 06:46:15 GMT ## [9.2.15](https://github.com/microsoft/fluentui/tree/@fluentui/react-migration-v8-v9_v9.2.15) -Thu, 25 May 2023 10:00:48 GMT +Thu, 25 May 2023 10:00:48 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-migration-v8-v9_v9.2.14..@fluentui/react-migration-v8-v9_v9.2.15) ### Patches @@ -820,7 +820,7 @@ Thu, 25 May 2023 10:00:48 GMT ## [9.2.14](https://github.com/microsoft/fluentui/tree/@fluentui/react-migration-v8-v9_v9.2.14) -Wed, 24 May 2023 20:45:29 GMT +Wed, 24 May 2023 20:45:29 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-migration-v8-v9_v9.2.13..@fluentui/react-migration-v8-v9_v9.2.14) ### Patches @@ -829,7 +829,7 @@ Wed, 24 May 2023 20:45:29 GMT ## [9.2.13](https://github.com/microsoft/fluentui/tree/@fluentui/react-migration-v8-v9_v9.2.13) -Thu, 18 May 2023 13:11:08 GMT +Thu, 18 May 2023 13:11:08 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-migration-v8-v9_v9.2.12..@fluentui/react-migration-v8-v9_v9.2.13) ### Patches @@ -838,7 +838,7 @@ Thu, 18 May 2023 13:11:08 GMT ## [9.2.12](https://github.com/microsoft/fluentui/tree/@fluentui/react-migration-v8-v9_v9.2.12) -Thu, 18 May 2023 00:39:09 GMT +Thu, 18 May 2023 00:39:09 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-migration-v8-v9_v9.2.11..@fluentui/react-migration-v8-v9_v9.2.12) ### Patches @@ -848,7 +848,7 @@ Thu, 18 May 2023 00:39:09 GMT ## [9.2.11](https://github.com/microsoft/fluentui/tree/@fluentui/react-migration-v8-v9_v9.2.11) -Fri, 12 May 2023 20:27:28 GMT +Fri, 12 May 2023 20:27:28 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-migration-v8-v9_v9.2.10..@fluentui/react-migration-v8-v9_v9.2.11) ### Patches @@ -862,7 +862,7 @@ Fri, 12 May 2023 20:27:28 GMT ## [9.2.10](https://github.com/microsoft/fluentui/tree/@fluentui/react-migration-v8-v9_v9.2.10) -Mon, 24 Apr 2023 08:12:46 GMT +Mon, 24 Apr 2023 08:12:46 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-migration-v8-v9_v9.2.9..@fluentui/react-migration-v8-v9_v9.2.10) ### Patches @@ -871,7 +871,7 @@ Mon, 24 Apr 2023 08:12:46 GMT ## [9.2.9](https://github.com/microsoft/fluentui/tree/@fluentui/react-migration-v8-v9_v9.2.9) -Mon, 17 Apr 2023 17:54:02 GMT +Mon, 17 Apr 2023 17:54:02 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-migration-v8-v9_v9.2.8..@fluentui/react-migration-v8-v9_v9.2.9) ### Patches @@ -881,7 +881,7 @@ Mon, 17 Apr 2023 17:54:02 GMT ## [9.2.8](https://github.com/microsoft/fluentui/tree/@fluentui/react-migration-v8-v9_v9.2.8) -Wed, 12 Apr 2023 09:31:45 GMT +Wed, 12 Apr 2023 09:31:45 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-migration-v8-v9_v9.2.7..@fluentui/react-migration-v8-v9_v9.2.8) ### Patches @@ -891,7 +891,7 @@ Wed, 12 Apr 2023 09:31:45 GMT ## [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 +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 @@ -900,7 +900,7 @@ Fri, 07 Apr 2023 00:01:45 GMT ## [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 +Tue, 04 Apr 2023 18:44:50 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-migration-v8-v9_v9.2.5..@fluentui/react-migration-v8-v9_v9.2.6) ### Patches @@ -910,7 +910,7 @@ Tue, 04 Apr 2023 18:44:50 GMT ## [9.2.5](https://github.com/microsoft/fluentui/tree/@fluentui/react-migration-v8-v9_v9.2.5) -Fri, 24 Mar 2023 17:36:41 GMT +Fri, 24 Mar 2023 17:36:41 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-migration-v8-v9_v9.2.4..@fluentui/react-migration-v8-v9_v9.2.5) ### Patches @@ -919,7 +919,7 @@ Fri, 24 Mar 2023 17:36:41 GMT ## [9.2.4](https://github.com/microsoft/fluentui/tree/@fluentui/react-migration-v8-v9_v9.2.4) -Fri, 24 Mar 2023 14:58:55 GMT +Fri, 24 Mar 2023 14:58:55 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-migration-v8-v9_v9.2.3..@fluentui/react-migration-v8-v9_v9.2.4) ### Patches @@ -928,7 +928,7 @@ Fri, 24 Mar 2023 14:58:55 GMT ## [9.2.3](https://github.com/microsoft/fluentui/tree/@fluentui/react-migration-v8-v9_v9.2.3) -Fri, 24 Mar 2023 10:15:28 GMT +Fri, 24 Mar 2023 10:15:28 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-migration-v8-v9_v9.2.2..@fluentui/react-migration-v8-v9_v9.2.3) ### Patches @@ -937,7 +937,7 @@ Fri, 24 Mar 2023 10:15:28 GMT ## [9.2.2](https://github.com/microsoft/fluentui/tree/@fluentui/react-migration-v8-v9_v9.2.2) -Tue, 21 Mar 2023 21:23:40 GMT +Tue, 21 Mar 2023 21:23:40 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-migration-v8-v9_v9.2.1..@fluentui/react-migration-v8-v9_v9.2.2) ### Patches @@ -952,7 +952,7 @@ Tue, 21 Mar 2023 21:23:40 GMT ## [9.2.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-migration-v8-v9_v9.2.1) -Thu, 16 Mar 2023 14:36:59 GMT +Thu, 16 Mar 2023 14:36:59 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-migration-v8-v9_v9.2.0..@fluentui/react-migration-v8-v9_v9.2.1) ### Patches @@ -962,7 +962,7 @@ Thu, 16 Mar 2023 14:36:59 GMT ## [9.2.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-migration-v8-v9_v9.2.0) -Wed, 15 Mar 2023 10:19:51 GMT +Wed, 15 Mar 2023 10:19:51 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-migration-v8-v9_v9.1.13..@fluentui/react-migration-v8-v9_v9.2.0) ### Minor changes @@ -973,7 +973,7 @@ Wed, 15 Mar 2023 10:19:51 GMT ## [9.1.13](https://github.com/microsoft/fluentui/tree/@fluentui/react-migration-v8-v9_v9.1.13) -Mon, 13 Mar 2023 08:58:26 GMT +Mon, 13 Mar 2023 08:58:26 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-migration-v8-v9_v9.1.12..@fluentui/react-migration-v8-v9_v9.1.13) ### Patches @@ -983,7 +983,7 @@ Mon, 13 Mar 2023 08:58:26 GMT ## [9.1.12](https://github.com/microsoft/fluentui/tree/@fluentui/react-migration-v8-v9_v9.1.12) -Fri, 10 Mar 2023 13:28:40 GMT +Fri, 10 Mar 2023 13:28:40 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-migration-v8-v9_v9.1.11..@fluentui/react-migration-v8-v9_v9.1.12) ### Patches @@ -992,7 +992,7 @@ Fri, 10 Mar 2023 13:28:40 GMT ## [9.1.11](https://github.com/microsoft/fluentui/tree/@fluentui/react-migration-v8-v9_v9.1.11) -Fri, 10 Mar 2023 07:14:01 GMT +Fri, 10 Mar 2023 07:14:01 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-migration-v8-v9_v9.1.10..@fluentui/react-migration-v8-v9_v9.1.11) ### Patches @@ -1002,7 +1002,7 @@ Fri, 10 Mar 2023 07:14:01 GMT ## [9.1.10](https://github.com/microsoft/fluentui/tree/@fluentui/react-migration-v8-v9_v9.1.10) -Wed, 08 Mar 2023 17:42:35 GMT +Wed, 08 Mar 2023 17:42:35 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-migration-v8-v9_v9.1.9..@fluentui/react-migration-v8-v9_v9.1.10) ### Patches @@ -1012,7 +1012,7 @@ Wed, 08 Mar 2023 17:42:35 GMT ## [9.1.9](https://github.com/microsoft/fluentui/tree/@fluentui/react-migration-v8-v9_v9.1.9) -Wed, 22 Feb 2023 23:06:05 GMT +Wed, 22 Feb 2023 23:06:05 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-migration-v8-v9_v9.1.8..@fluentui/react-migration-v8-v9_v9.1.9) ### Patches @@ -1021,7 +1021,7 @@ Wed, 22 Feb 2023 23:06:05 GMT ## [9.1.8](https://github.com/microsoft/fluentui/tree/@fluentui/react-migration-v8-v9_v9.1.8) -Thu, 16 Feb 2023 19:18:48 GMT +Thu, 16 Feb 2023 19:18:48 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-migration-v8-v9_v9.1.7..@fluentui/react-migration-v8-v9_v9.1.8) ### Patches @@ -1031,7 +1031,7 @@ Thu, 16 Feb 2023 19:18:48 GMT ## [9.1.7](https://github.com/microsoft/fluentui/tree/@fluentui/react-migration-v8-v9_v9.1.7) -Thu, 16 Feb 2023 16:18:01 GMT +Thu, 16 Feb 2023 16:18:01 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-migration-v8-v9_v9.1.6..@fluentui/react-migration-v8-v9_v9.1.7) ### Patches @@ -1040,7 +1040,7 @@ Thu, 16 Feb 2023 16:18:01 GMT ## [9.1.6](https://github.com/microsoft/fluentui/tree/@fluentui/react-migration-v8-v9_v9.1.6) -Wed, 15 Feb 2023 11:44:52 GMT +Wed, 15 Feb 2023 11:44:52 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-migration-v8-v9_v9.1.5..@fluentui/react-migration-v8-v9_v9.1.6) ### Patches @@ -1050,7 +1050,7 @@ Wed, 15 Feb 2023 11:44:52 GMT ## [9.1.5](https://github.com/microsoft/fluentui/tree/@fluentui/react-migration-v8-v9_v9.1.5) -Mon, 13 Feb 2023 23:43:14 GMT +Mon, 13 Feb 2023 23:43:14 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-migration-v8-v9_v9.1.4..@fluentui/react-migration-v8-v9_v9.1.5) ### Patches @@ -1060,7 +1060,7 @@ Mon, 13 Feb 2023 23:43:14 GMT ## [9.1.4](https://github.com/microsoft/fluentui/tree/@fluentui/react-migration-v8-v9_v9.1.4) -Mon, 13 Feb 2023 09:35:48 GMT +Mon, 13 Feb 2023 09:35:48 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-migration-v8-v9_v9.1.3..@fluentui/react-migration-v8-v9_v9.1.4) ### Patches @@ -1069,7 +1069,7 @@ Mon, 13 Feb 2023 09:35:48 GMT ## [9.1.3](https://github.com/microsoft/fluentui/tree/@fluentui/react-migration-v8-v9_v9.1.3) -Fri, 10 Feb 2023 08:50:02 GMT +Fri, 10 Feb 2023 08:50:02 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-migration-v8-v9_v9.1.2..@fluentui/react-migration-v8-v9_v9.1.3) ### Patches @@ -1079,7 +1079,7 @@ Fri, 10 Feb 2023 08:50:02 GMT ## [9.1.2](https://github.com/microsoft/fluentui/tree/@fluentui/react-migration-v8-v9_v9.1.2) -Tue, 07 Feb 2023 14:13:10 GMT +Tue, 07 Feb 2023 14:13:10 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-migration-v8-v9_v9.1.1..@fluentui/react-migration-v8-v9_v9.1.2) ### Patches @@ -1088,7 +1088,7 @@ Tue, 07 Feb 2023 14:13:10 GMT ## [9.1.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-migration-v8-v9_v9.1.1) -Tue, 31 Jan 2023 19:53:56 GMT +Tue, 31 Jan 2023 19:53:56 GMT [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-migration-v8-v9_v9.1.0..@fluentui/react-migration-v8-v9_v9.1.1) ### Patches diff --git a/packages/react-components/react-migration-v8-v9/src/stories/ActionButtonShim/Description.md b/packages/react-components/react-migration-v8-v9/src/stories/ActionButtonShim/Description.md new file mode 100644 index 00000000000000..730bd7ad9e986f --- /dev/null +++ b/packages/react-components/react-migration-v8-v9/src/stories/ActionButtonShim/Description.md @@ -0,0 +1 @@ +The ActionButtonShim component accepts the same props as a v8 ActionButton and renders a v9 Button. diff --git a/packages/react-components/react-migration-v8-v9/src/stories/ActionButtonShim/index.stories.tsx b/packages/react-components/react-migration-v8-v9/src/stories/ActionButtonShim/index.stories.tsx new file mode 100644 index 00000000000000..9da5f90d1e5cb8 --- /dev/null +++ b/packages/react-components/react-migration-v8-v9/src/stories/ActionButtonShim/index.stories.tsx @@ -0,0 +1,63 @@ +import * as React from 'react'; + +import descriptionMd from './Description.md'; + +import { ActionButton, Icon, initializeIcons } from '@fluentui/react'; +import type { IIconProps } from '@fluentui/react'; +import { FluentProvider, Button, webLightTheme, makeStyles, shorthands } from '@fluentui/react-components'; +import { ActionButtonShim } from '@fluentui/react-migration-v8-v9'; + +initializeIcons(); + +const useStyles = makeStyles({ + root: { + display: 'grid', + gridTemplateColumns: 'auto auto auto', + gridTemplateRows: '1fr', + width: 'fit-content', + alignContent: 'center', + alignItems: 'center', + justifyItems: 'center', + columnGap: '10px', + rowGap: '10px', + }, + componentName: { + justifySelf: 'end', + ...shorthands.margin(0, '10px', 0, 0), + }, +}); + +const addIcon: IIconProps = { iconName: 'Add' }; + +export const Default = () => { + const styles = useStyles(); + + return ( +
+

v8

+

shim

+

v9

+ Action + + Action + + + + +
+ ); +}; + +export default { + title: 'Migration Shims/V8/Button/ActionButtonShim', + component: ActionButtonShim, + parameters: { + docs: { + description: { + component: [descriptionMd].join('\n'), + }, + }, + }, +}; diff --git a/packages/react-components/react-migration-v8-v9/src/stories/CommandButtonShim/Description.md b/packages/react-components/react-migration-v8-v9/src/stories/CommandButtonShim/Description.md new file mode 100644 index 00000000000000..85f4f38aca9b33 --- /dev/null +++ b/packages/react-components/react-migration-v8-v9/src/stories/CommandButtonShim/Description.md @@ -0,0 +1 @@ +The DefaultButtonShim component accepts the same props as a v8 DefaultButton and renders a v9 Button. diff --git a/packages/react-components/react-migration-v8-v9/src/stories/CommandButtonShim/index.stories.tsx b/packages/react-components/react-migration-v8-v9/src/stories/CommandButtonShim/index.stories.tsx new file mode 100644 index 00000000000000..e0cff6e36d7551 --- /dev/null +++ b/packages/react-components/react-migration-v8-v9/src/stories/CommandButtonShim/index.stories.tsx @@ -0,0 +1,61 @@ +import * as React from 'react'; + +import descriptionMd from './Description.md'; + +import { CommandButton, Icon } from '@fluentui/react'; +import type { IIconProps } from '@fluentui/react'; +import { FluentProvider, Button, webLightTheme, makeStyles, shorthands } from '@fluentui/react-components'; +import { CommandButtonShim } from '@fluentui/react-migration-v8-v9'; + +const useStyles = makeStyles({ + root: { + display: 'grid', + gridTemplateColumns: 'auto auto auto', + gridTemplateRows: '1fr', + width: 'fit-content', + alignContent: 'center', + alignItems: 'center', + justifyItems: 'center', + columnGap: '10px', + rowGap: '10px', + }, + componentName: { + justifySelf: 'end', + ...shorthands.margin(0, '10px', 0, 0), + }, +}); + +const addIcon: IIconProps = { iconName: 'Add' }; + +export const Default = () => { + const styles = useStyles(); + + return ( +
+

v8

+

shim

+

v9

+ Command + + Command + + + + +
+ ); +}; + +export default { + title: 'Migration Shims/V8/Button/CommandButtonShim', + component: CommandButtonShim, + parameters: { + docs: { + description: { + component: [descriptionMd].join('\n'), + }, + }, + }, +}; diff --git a/packages/react-components/react-migration-v8-v9/src/stories/CompoundButtonShim/Description.md b/packages/react-components/react-migration-v8-v9/src/stories/CompoundButtonShim/Description.md new file mode 100644 index 00000000000000..2e29a7a34226fd --- /dev/null +++ b/packages/react-components/react-migration-v8-v9/src/stories/CompoundButtonShim/Description.md @@ -0,0 +1 @@ +The CompoundButtonShim component accepts the same props as a v8 CompoundButton and renders a v9 CompoundButton. diff --git a/packages/react-components/react-migration-v8-v9/src/stories/CompoundButtonShim/index.stories.tsx b/packages/react-components/react-migration-v8-v9/src/stories/CompoundButtonShim/index.stories.tsx new file mode 100644 index 00000000000000..6bca88b243f7ec --- /dev/null +++ b/packages/react-components/react-migration-v8-v9/src/stories/CompoundButtonShim/index.stories.tsx @@ -0,0 +1,62 @@ +import * as React from 'react'; + +import descriptionMd from './Description.md'; + +import { CompoundButton as CompoundButtonV8 } from '@fluentui/react'; +import { + CompoundButton as CompoundButtonV9, + webLightTheme, + FluentProvider, + makeStyles, + shorthands, +} from '@fluentui/react-components'; +import { CompoundButtonShim } from '@fluentui/react-migration-v8-v9'; + +const useStyles = makeStyles({ + root: { + display: 'grid', + gridTemplateColumns: 'auto auto auto', + gridTemplateRows: '1fr', + width: 'fit-content', + alignContent: 'center', + alignItems: 'center', + justifyItems: 'center', + columnGap: '10px', + rowGap: '10px', + }, + componentName: { + justifySelf: 'end', + ...shorthands.margin(0, '10px', 0, 0), + }, +}); + +export const Default = () => { + const styles = useStyles(); + + return ( +
+

v8

+

shim

+

v9

+ Compound + + Compound + + + Compound + +
+ ); +}; + +export default { + title: 'Migration Shims/V8/Button/CompoundButtonShim', + component: CompoundButtonShim, + parameters: { + docs: { + description: { + component: [descriptionMd].join('\n'), + }, + }, + }, +}; diff --git a/packages/react-components/react-migration-v8-v9/src/stories/DefaultButtonShim/Description.md b/packages/react-components/react-migration-v8-v9/src/stories/DefaultButtonShim/Description.md new file mode 100644 index 00000000000000..85f4f38aca9b33 --- /dev/null +++ b/packages/react-components/react-migration-v8-v9/src/stories/DefaultButtonShim/Description.md @@ -0,0 +1 @@ +The DefaultButtonShim component accepts the same props as a v8 DefaultButton and renders a v9 Button. diff --git a/packages/react-components/react-migration-v8-v9/src/stories/DefaultButtonShim/index.stories.tsx b/packages/react-components/react-migration-v8-v9/src/stories/DefaultButtonShim/index.stories.tsx new file mode 100644 index 00000000000000..103ee5d62848a2 --- /dev/null +++ b/packages/react-components/react-migration-v8-v9/src/stories/DefaultButtonShim/index.stories.tsx @@ -0,0 +1,56 @@ +import * as React from 'react'; + +import descriptionMd from './Description.md'; + +import { DefaultButton } from '@fluentui/react'; +import { FluentProvider, Button, webLightTheme, makeStyles, shorthands } from '@fluentui/react-components'; +import { DefaultButtonShim } from '@fluentui/react-migration-v8-v9'; + +const useStyles = makeStyles({ + root: { + display: 'grid', + gridTemplateColumns: 'auto auto auto', + gridTemplateRows: '1fr', + width: 'fit-content', + alignContent: 'center', + alignItems: 'center', + justifyItems: 'center', + columnGap: '10px', + rowGap: '10px', + }, + componentName: { + justifySelf: 'end', + ...shorthands.margin(0, '10px', 0, 0), + }, +}); + +export const Default = () => { + const styles = useStyles(); + + return ( +
+

v8

+

DefaultButtonShim

+

v9

+ Default + + Default + + + + +
+ ); +}; + +export default { + title: 'Migration Shims/V8/Button/DefaultButtonShim', + component: DefaultButtonShim, + parameters: { + docs: { + description: { + component: [descriptionMd].join('\n'), + }, + }, + }, +}; diff --git a/packages/react-components/react-migration-v8-v9/src/stories/MenuButtonShim/Description.md b/packages/react-components/react-migration-v8-v9/src/stories/MenuButtonShim/Description.md new file mode 100644 index 00000000000000..4aceb0bb481836 --- /dev/null +++ b/packages/react-components/react-migration-v8-v9/src/stories/MenuButtonShim/Description.md @@ -0,0 +1 @@ +The MenuButtonShim component accepts the same props as a v8 DefaultButton with menuProps and renders a v9 MenuButton. diff --git a/packages/react-components/react-migration-v8-v9/src/stories/MenuButtonShim/index.stories.tsx b/packages/react-components/react-migration-v8-v9/src/stories/MenuButtonShim/index.stories.tsx new file mode 100644 index 00000000000000..bf5df9499c9690 --- /dev/null +++ b/packages/react-components/react-migration-v8-v9/src/stories/MenuButtonShim/index.stories.tsx @@ -0,0 +1,193 @@ +import * as React from 'react'; + +import descriptionMd from './Description.md'; + +import { ContextualMenuItemType, DefaultButton, Icon, initializeIcons } from '@fluentui/react'; +import type { IContextualMenuItem, IContextualMenuProps, IIconProps } from '@fluentui/react'; +import { + FluentProvider, + webLightTheme, + makeStyles, + shorthands, + Menu, + MenuButton, + MenuDivider, + MenuItem, + MenuItemCheckbox, + MenuList, + MenuPopover, + MenuTrigger, +} from '@fluentui/react-components'; +import { MenuButtonShim } from '@fluentui/react-migration-v8-v9'; + +initializeIcons(); + +const useStyles = makeStyles({ + root: { + display: 'grid', + gridTemplateColumns: 'auto auto auto', + gridTemplateRows: '1fr', + width: 'fit-content', + alignContent: 'center', + alignItems: 'center', + justifyItems: 'center', + columnGap: '10px', + rowGap: '10px', + }, + componentName: { + justifySelf: 'end', + ...shorthands.margin(0, '10px', 0, 0), + }, +}); + +const addIcon: IIconProps = { iconName: 'Add' }; +const mailIcon: IIconProps = { iconName: 'Mail' }; +const calendarIcon: IIconProps = { iconName: 'Calendar' }; +const shareIcon: IIconProps = { iconName: 'Share', style: { color: 'salmon' } }; + +export const Default = () => { + const styles = useStyles(); + + const [selection, setSelection] = React.useState<{ [key: string]: boolean }>({}); + + const onToggleSelect = React.useCallback( + (ev?: React.MouseEvent, item?: IContextualMenuItem): void => { + ev && ev.preventDefault(); + + if (item) { + setSelection({ + ...selection, + [item.key]: selection[item.key] === undefined ? true : !selection[item.key], + }); + } + }, + [selection], + ); + + const menuProps: IContextualMenuProps = { + // For example: disable dismiss if shift key is held down while dismissing + onDismiss: ev => { + if (ev && 'shiftKey' in ev) { + ev.preventDefault(); + } + }, + items: [ + { + key: 'newItem', + iconProps: addIcon, + text: 'New', + subMenuProps: { + items: [ + { + key: 'newMailMessage', + text: 'Mail Message', + iconProps: mailIcon, + secondaryText: 'Ctrl+Shift+M', + onClick: () => { + alert('New -> Mail Message clicked'); + }, + }, + { + key: 'newCalendarItem', + text: 'Calendar Item', + iconProps: calendarIcon, + onClick: () => { + alert('New --> Calendar Item clicked'); + }, + }, + ], + }, + }, + + { key: 'divider_1', itemType: ContextualMenuItemType.Divider }, + { + key: 'edit', + text: 'Edit', + onClick: () => { + alert('Edit clicked'); + }, + }, + { + key: 'delete', + text: 'Delete', + onClick: () => { + alert('Delete clicked'); + }, + }, + { key: 'divider_2', itemType: ContextualMenuItemType.Divider }, + { + key: 'favorite', + text: 'Favorite', + canCheck: true, + checked: selection.favorite, + onClick: onToggleSelect as IContextualMenuItem['onClick'], + }, + { + key: 'share', + iconProps: shareIcon, + text: 'Share', + title: 'Share', + onClick: () => { + alert('Share clicked'); + }, + }, + ], + directionalHintFixed: true, + }; + + return ( +
+

v8

+

shim

+

v9

+ + + + + + + + Menu Button + + + + + + }>New + + + + } secondaryContent="Ctrl+Shift+M"> + Mail Message + + }>Calendar Item + + + + + Edit + Delete + + + Favorite + + }>Share + + + + +
+ ); +}; + +export default { + title: 'Migration Shims/V8/Button/MenuButtonShim', + component: MenuButtonShim, + parameters: { + docs: { + description: { + component: [descriptionMd].join('\n'), + }, + }, + }, +}; diff --git a/packages/react-components/react-migration-v8-v9/src/stories/PrimaryButtonShim/Description.md b/packages/react-components/react-migration-v8-v9/src/stories/PrimaryButtonShim/Description.md new file mode 100644 index 00000000000000..1dbebd59b5ad2d --- /dev/null +++ b/packages/react-components/react-migration-v8-v9/src/stories/PrimaryButtonShim/Description.md @@ -0,0 +1 @@ +The PrimaryButtonShim component accepts the same props as a v8 PrimaryButton and renders a v9 Button. diff --git a/packages/react-components/react-migration-v8-v9/src/stories/PrimaryButtonShim/index.stories.tsx b/packages/react-components/react-migration-v8-v9/src/stories/PrimaryButtonShim/index.stories.tsx new file mode 100644 index 00000000000000..a2ad2e4402836e --- /dev/null +++ b/packages/react-components/react-migration-v8-v9/src/stories/PrimaryButtonShim/index.stories.tsx @@ -0,0 +1,56 @@ +import * as React from 'react'; + +import descriptionMd from './Description.md'; + +import { PrimaryButton } from '@fluentui/react'; +import { FluentProvider, Button, webLightTheme, makeStyles, shorthands } from '@fluentui/react-components'; +import { PrimaryButtonShim } from '@fluentui/react-migration-v8-v9'; + +const useStyles = makeStyles({ + root: { + display: 'grid', + gridTemplateColumns: 'auto auto auto', + gridTemplateRows: '1fr', + width: 'fit-content', + alignContent: 'center', + alignItems: 'center', + justifyItems: 'center', + columnGap: '10px', + rowGap: '10px', + }, + componentName: { + justifySelf: 'end', + ...shorthands.margin(0, '10px', 0, 0), + }, +}); + +export const Default = () => { + const styles = useStyles(); + + return ( +
+

v8

+

shim

+

v9

+ Primary + + Primary + + + + +
+ ); +}; + +export default { + title: 'Migration Shims/V8/Button/PrimaryButtonShim', + component: PrimaryButtonShim, + parameters: { + docs: { + description: { + component: [descriptionMd].join('\n'), + }, + }, + }, +}; diff --git a/packages/react-components/react-migration-v8-v9/src/stories/Stack/Description.md b/packages/react-components/react-migration-v8-v9/src/stories/Stack/Description.md new file mode 100644 index 00000000000000..a721f4a26ba38f --- /dev/null +++ b/packages/react-components/react-migration-v8-v9/src/stories/Stack/Description.md @@ -0,0 +1,3 @@ +The StackShim and StackItemShim accept the same props a v8 Stack and StackItem and render equivalent HTML and stylings to provide layout using CSS flexbox. + +The Stack and StackItem components are not included in v9. Providing components that expose equivalent layout properties as CSS flexbox required learning another set of props without adding signficant value. diff --git a/packages/react-components/react-migration-v8-v9/src/stories/Stack/index.stories.tsx b/packages/react-components/react-migration-v8-v9/src/stories/Stack/index.stories.tsx new file mode 100644 index 00000000000000..31010d6669aa15 --- /dev/null +++ b/packages/react-components/react-migration-v8-v9/src/stories/Stack/index.stories.tsx @@ -0,0 +1,225 @@ +import * as React from 'react'; +import { makeStyles } from '@fluentui/react-components'; +import { Checkbox, Dropdown, DropdownMenuItemType, Stack, TextField } from '@fluentui/react'; +import type { IDropdownOption } from '@fluentui/react'; +import { StackShim, StackItemShim } from '@fluentui/react-migration-v8-v9'; + +import descriptionMd from './Description.md'; + +const horizontalAlignOptions: IDropdownOption[] = [ + { + key: 'HorizontalAlignOptions', + text: 'Horizontal Align Options', + itemType: DropdownMenuItemType.Header, + }, + { key: 'horizontalAlign-baseline', text: 'baseline' }, + { key: 'horizontalAlign-center', text: 'center' }, + { key: 'horizontalAlign-start', text: 'start' }, + { key: 'horizontalAlign-end', text: 'end' }, + { key: 'horizontalAlign-stretch', text: 'stretch' }, + { key: 'horizontalAlign-space-between', text: 'space-between' }, + { key: 'horizontalAlign-space-around', text: 'space-around' }, + { key: 'horizontalAlign-space-evenly', text: 'space-evenly' }, +]; + +const verticalAlignOptions: IDropdownOption[] = [ + { + key: 'VerticalAlignOptions', + text: 'VerticalAlignOptions Align Options', + itemType: DropdownMenuItemType.Header, + }, + { key: 'verticalAlign-baseline', text: 'baseline' }, + { key: 'verticalAlign-center', text: 'center' }, + { key: 'verticalAlign-start', text: 'start' }, + { key: 'verticalAlign-end', text: 'end' }, + { key: 'verticalAlign-stretch', text: 'stretch' }, + { key: 'verticalAlign-space-between', text: 'space-between' }, + { key: 'verticalAlign-space-around', text: 'space-around' }, + { key: 'verticalAlign-space-evenly', text: 'space-evenly' }, +]; + +const styles = { + root: { + maxWidth: '200px', + }, +}; + +const useCustomStyles = makeStyles({ + stackWrapper: { + width: '100%', + }, + stack: { + backgroundColor: 'pink', + minHeight: '200px', + }, + stackItem: { + backgroundColor: 'lightblue', + }, +}); + +export const Playground = () => { + const [state, setState] = React.useState({ + verticalFill: false, + horizontal: false, + reversed: false, + wrap: false, + disableShrink: false, + + horizontalAlign: undefined, + verticalAlign: undefined, + grow: false, + }); + const [childrenGapToken, setChildrenGapToken] = React.useState('10'); + const [paddingToken, setPaddingToken] = React.useState('10px'); + + const onCheckboxChange = (ev?: React.FormEvent, checked?: boolean) => { + const { name } = ev?.target as HTMLInputElement; + + setState({ ...state, [name]: checked }); + }; + + const onDropdownChange = (ev: React.FormEvent, option?: IDropdownOption) => { + const name = option!.key.toString().split('-')[0]; + const value = option!.text; + setState({ + ...state, + [name]: value, + }); + }; + + const onChildrenGapTokenChange = (ev: React.FormEvent, newValue?: string) => { + setChildrenGapToken(newValue!); + }; + + const onPaddingTokenChange = (ev: React.FormEvent, newValue?: string) => { + setPaddingToken(newValue!); + }; + const shimStyles = useCustomStyles(); + const stackShimStyles = shimStyles.stack; + const stackStyles = { + root: { backgroundColor: 'pink', minHeight: '200px' }, + }; + const stackItemStyles = { root: { backgroundColor: 'lightblue' } }; + const stackItemShimStyles = shimStyles.stackItem; + return ( + +

Stack Playground

+ + + + + + + + + + + + + + + + +
+

v8

+ + Stack Item + + Stack Item Self Aligned + + + Stack Item Grow + + + + +
+
+

StackShim

+ + Stack Item + + Stack Item Self Aligned + + + Stack Item Grow + + + + +
+
+
+ ); +}; + +export default { + title: 'Migration Shims/V8/StackShim', + component: StackShim, + parameters: { + docs: { + description: { + component: [descriptionMd].join('\n'), + }, + }, + }, +}; diff --git a/packages/react-components/react-migration-v8-v9/src/stories/ThemeShim/ThemePreviewV8.tsx b/packages/react-components/react-migration-v8-v9/src/stories/ThemeShim/ThemePreviewV8.tsx new file mode 100644 index 00000000000000..e13261b64319ac --- /dev/null +++ b/packages/react-components/react-migration-v8-v9/src/stories/ThemeShim/ThemePreviewV8.tsx @@ -0,0 +1,309 @@ +/* eslint-disable no-console */ +/* eslint-disable @typescript-eslint/naming-convention */ +import * as React from 'react'; +import { Checkbox } from '@fluentui/react/lib/Checkbox'; +import { ChoiceGroup } from '@fluentui/react/lib/ChoiceGroup'; +import { CommandBar } from '@fluentui/react/lib/CommandBar'; +import { DefaultButton, PrimaryButton, IconButton } from '@fluentui/react/lib/Button'; +import { Dropdown } from '@fluentui/react/lib/Dropdown'; +import { Icon } from '@fluentui/react/lib/Icon'; +import { Link } from '@fluentui/react/lib/Link'; +import { mergeStyles } from '@fluentui/react'; +import { Persona, PersonaPresence } from '@fluentui/react/lib/Persona'; +import { Pivot, PivotItem } from '@fluentui/react/lib/Pivot'; +import { Slider } from '@fluentui/react/lib/Slider'; +import { IStackTokens, Stack } from '@fluentui/react/lib/Stack'; +import { Text } from '@fluentui/react/lib/Text'; +import { TextField } from '@fluentui/react/lib/TextField'; +import { Toggle } from '@fluentui/react/lib/Toggle'; + +export interface ISamplesProps { + backgroundColor: string; + textColor: string; +} + +export interface ISamplesState { + learnMoreLinkDisabled: boolean; + selectOneDropdownDisabled: boolean; + textFieldDisabled: boolean; + checkboxOneDisabled: boolean; + checkboxTwoDisabled: boolean; + checkboxThreeDisabled: boolean; + choicegroupDisabled: boolean; + sliderDisabled: boolean; + likeIconButtonDisabled: boolean; + bookmarkIconButtonDisabled: boolean; + sunnyIconButtonDisabled: boolean; + primaryButtonDisabled: boolean; + defaultButtonDisabled: boolean; +} + +const iconButtonStyles = mergeStyles({ + color: '#0078D4', +}); + +const commandBarItems = [ + { + key: 'newItem', + name: 'New', + cacheKey: 'myCacheKey', // changing this key will invalidate this item's cache + iconProps: { + iconName: 'Add', + }, + ariaLabel: 'New', + subMenuProps: { + items: [ + { + key: 'emailMessage', + name: 'Email message', + iconProps: { + iconName: 'Mail', + }, + ['data-automation-id']: 'newEmailButton', + }, + { + key: 'calendarEvent', + name: 'Calendar event', + iconProps: { + iconName: 'Calendar', + }, + }, + ], + }, + }, + { + key: 'upload', + name: 'Upload', + iconProps: { + iconName: 'Upload', + }, + onClick: () => console.log('Upload'), + ['data-automation-id']: 'uploadButton', + }, + { + key: 'share', + name: 'Share', + iconProps: { + iconName: 'Share', + }, + onClick: () => console.log('Share'), + }, + { + key: 'download', + name: 'Download', + iconProps: { + iconName: 'Download', + }, + onClick: () => console.log('Download'), + }, + { + key: 'more', + name: 'More', + iconProps: { + iconName: 'More', + }, + onClick: () => console.log('More'), + }, +]; + +const commandBarFarItems = [ + { + key: 'search', + ariaLabel: 'Search', + iconProps: { + iconName: 'Search', + }, + onClick: () => console.log('Search'), + }, + { + key: 'filter', + name: 'Filter', + ariaLabel: 'Filter', + iconProps: { + iconName: 'Filter', + }, + iconOnly: true, + onClick: () => console.log('Filter'), + }, + { + key: 'list', + name: 'List', + ariaLabel: 'List', + iconProps: { + iconName: 'List', + }, + iconOnly: true, + onClick: () => console.log('List'), + }, +]; + +const layoutStyles = { + root: mergeStyles({ + display: 'grid', + gridTemplateColumns: '1fr 1fr 1fr', + gridTemplateRows: 'auto', + gridColumnGap: '32px', + gridRowGap: '32px', + padding: '16px', + }), + commandBar: mergeStyles({ + gridColumnStart: '1', + gridColumnEnd: '4', + }), +}; + +const stackXXXLGap: IStackTokens = { childrenGap: 32 }; +const stackXLGap: IStackTokens = { childrenGap: 20 }; +const stackLGap: IStackTokens = { childrenGap: 16 }; +const stackMNudgeGap: IStackTokens = { childrenGap: 10 }; + +const checkboxStackTokens: IStackTokens = { + childrenGap: 13, +}; + +export class ThemePreviewV8 extends React.Component { + constructor(props: ISamplesProps) { + super(props); + this.state = { + learnMoreLinkDisabled: false, + selectOneDropdownDisabled: false, + textFieldDisabled: false, + checkboxOneDisabled: false, + checkboxTwoDisabled: false, + checkboxThreeDisabled: false, + choicegroupDisabled: false, + sliderDisabled: false, + likeIconButtonDisabled: false, + bookmarkIconButtonDisabled: false, + sunnyIconButtonDisabled: false, + primaryButtonDisabled: false, + defaultButtonDisabled: false, + }; + this._onToggleChange = this._onToggleChange.bind(this); + } + public render() { + return ( +
+
+
+ +
+
+ + + + STORIES + + + Make an impression + + + Make a big impression with this clean, modern, and mobile-friendly site. Use it to communicate + information to people inside or outisde your team. Share your ideas, results, and more in this + visually compelling format. + + + Learn more + + + + +
+
+ + + + + +
+ + + + + + + + + +
+
+ + + + + + + + + + + + + + + + + + + +
+
+
+ ); + } + + private _onToggleChange() { + this.setState({ + learnMoreLinkDisabled: !this.state.learnMoreLinkDisabled, + selectOneDropdownDisabled: !this.state.selectOneDropdownDisabled, + textFieldDisabled: !this.state.textFieldDisabled, + checkboxOneDisabled: !this.state.checkboxOneDisabled, + checkboxTwoDisabled: !this.state.checkboxTwoDisabled, + checkboxThreeDisabled: !this.state.checkboxThreeDisabled, + sliderDisabled: !this.state.sliderDisabled, + likeIconButtonDisabled: !this.state.likeIconButtonDisabled, + bookmarkIconButtonDisabled: !this.state.bookmarkIconButtonDisabled, + sunnyIconButtonDisabled: !this.state.sunnyIconButtonDisabled, + primaryButtonDisabled: !this.state.primaryButtonDisabled, + defaultButtonDisabled: !this.state.defaultButtonDisabled, + }); + } +} diff --git a/packages/react-components/react-migration-v8-v9/src/stories/ThemeShim/ThemePreviewV9.tsx b/packages/react-components/react-migration-v8-v9/src/stories/ThemeShim/ThemePreviewV9.tsx new file mode 100644 index 00000000000000..682b44782b29d1 --- /dev/null +++ b/packages/react-components/react-migration-v8-v9/src/stories/ThemeShim/ThemePreviewV9.tsx @@ -0,0 +1,204 @@ +import * as React from 'react'; +import { makeStyles, mergeClasses, shorthands } from '@griffel/react'; +import { + tokens, + Body1, + Title3, + TabList, + Tab, + Input, + Button, + Caption1, + Dropdown, + Option, + Slider, + Badge, + Switch, + Radio, + RadioGroup, + Checkbox, + Avatar, + useId, + Caption2, +} from '@fluentui/react-components'; +import { + SearchRegular, + bundleIcon, + ChevronRightRegular, + MeetNowRegular, + MeetNowFilled, + CalendarLtrFilled, + CalendarLtrRegular, +} from '@fluentui/react-icons'; + +export interface ContentProps { + className?: string; +} + +const useStyles = makeStyles({ + root: { + ...shorthands.padding('16px'), + }, + threeCol: { + display: 'grid', + alignItems: 'start', + justifyContent: 'center', + gridTemplateColumns: 'repeat(3, 1fr)', + gridTemplateRows: 'auto', + gridColumnGap: tokens.spacingHorizontalXXXL, + }, + col1: { + display: 'flex', + justifyContent: 'space-between', + flexDirection: 'column', + ...shorthands.gap(tokens.spacingVerticalL), + }, + col2: { + display: 'flex', + flexDirection: 'column', + alignItems: 'center', + ...shorthands.gap(tokens.spacingVerticalL), + }, + col3: { + display: 'grid', + gridTemplateColumns: '1fr 1fr', + gridTemplateRows: 'repeat(4, auto)', + gridRowGap: tokens.spacingVerticalS, + gridColumnGap: tokens.spacingHorizontalS, + justifyContent: 'center', + alignItems: 'center', + }, + twoCol: { + gridColumnStart: 1, + gridColumnEnd: 3, + }, + controls: { + display: 'flex', + flexDirection: 'column', + alignItems: 'center', + justifyContent: 'center', + }, + icons: { + display: 'grid', + gridTemplateColumns: 'auto auto', + gridTemplateRows: 'auto auto', + gridRowGap: tokens.spacingVerticalS, + gridColumnGap: tokens.spacingHorizontalS, + justifyContent: 'center', + }, + avatar: { + display: 'flex', + ...shorthands.gap(tokens.spacingVerticalL), + }, + avatarText: { + display: 'flex', + flexDirection: 'column', + justifyContent: 'left', + }, +}); + +const Column1 = () => { + const styles = useStyles(); + return ( +
+ Make an impression + + Make a big impression with this clean, modern, and mobile-friendly site. Use it to communicate information to + people inside or outside your team. Share your ideas, results, and more in this visually compelling format. + +
+ +
+ Cameron Evans + Senior Researcher at Contoso +
+
+
+ ); +}; + +const Column2 = () => { + const styles = useStyles(); + const dropdownId = useId('dropdown-default'); + return ( +
+ + Home + Pages + Documents + + } size="small" />} + /> + + + + + +
+ ); +}; + +const DemoIcons = () => { + const styles = useStyles(); + const MeetNowIcon = bundleIcon(MeetNowFilled, MeetNowRegular); + const CalendarLtrIcon = bundleIcon(CalendarLtrFilled, CalendarLtrRegular); + return ( +
+ } /> + } /> + } /> + } /> +
+ ); +}; + +const Column3 = () => { + const styles = useStyles(); + return ( +
+ + + + +
+ + +
+
+ + +
+
+ + + + +
+
+ ); +}; + +export const ThemePreviewV9: React.FC = props => { + const styles = useStyles(); + return ( +
+ Examples +
+ + + +
+
+ ); +}; diff --git a/packages/react-components/react-migration-v8-v9/src/stories/ThemeShim/createBrandVariants/Description.md b/packages/react-components/react-migration-v8-v9/src/stories/ThemeShim/createBrandVariants/Description.md new file mode 100644 index 00000000000000..13999a2a7ea483 --- /dev/null +++ b/packages/react-components/react-migration-v8-v9/src/stories/ThemeShim/createBrandVariants/Description.md @@ -0,0 +1,8 @@ +The createBrandVariants shim method allows you to create a v9 BrandVariants (a.k.a brand ramp) from a v8 Palette. + +The v9 BrandVariants has 16 colors while the v8 Palette has 9 brand colors. You can choose between two algorithms when calling the shim. + +- pairs (default): This interpolates the colors between each pair of palette colors (e.g. themeDarker and themeDark). This works best for palettes that are a gradient of the same color. +- primaryAndEnds: This interpolates the colors between the themeDarker and themePrimary and then between themePrimary and themeLighterAlt. Each interpolation is a mix based on the step between BrandVariants colors (e.g. 40, 50, 60). This works best to create a smooth gradient from a palette that has varied colors. + +You should also feel free to make changes to the BrandVariants after using the shim to handle special palette cases. diff --git a/packages/react-components/react-migration-v8-v9/src/stories/ThemeShim/createBrandVariants/index.stories.tsx b/packages/react-components/react-migration-v8-v9/src/stories/ThemeShim/createBrandVariants/index.stories.tsx new file mode 100644 index 00000000000000..be3f94c1a64b7d --- /dev/null +++ b/packages/react-components/react-migration-v8-v9/src/stories/ThemeShim/createBrandVariants/index.stories.tsx @@ -0,0 +1,117 @@ +import * as React from 'react'; + +import { DefaultPalette } from '@fluentui/react'; +import { Button, makeStyles, Textarea, TextareaProps, shorthands, RadioGroup, Radio } from '@fluentui/react-components'; +import { createBrandVariants } from '@fluentui/react-migration-v8-v9'; + +import descriptionMd from './Description.md'; +import { Meta } from '@storybook/react'; + +const useStyles = makeStyles({ + root: { + display: 'grid', + gridTemplateColumns: 'auto', + gridTemplateRows: 'auto', + gridRowGap: '10px', + justifyItems: 'start', + ...shorthands.padding('5px'), + }, + editor: { + width: '400px', + height: '300px', + }, + actions: { + display: 'grid', + gridTemplateColumns: 'auto auto', + gridColumnGap: '10px', + justifyItems: 'start', + }, + result: { + display: 'grid', + gridTemplateColumns: 'auto auto', + gridTemplateRows: 'auto', + columnGap: '10px', + rowGap: '5px', + }, + colorBlock: { + display: 'inline-block', + width: '10px', + height: '10px', + ...shorthands.border('1px', 'solid', 'black'), + }, +}); + +export const Default = () => { + const styles = useStyles(); + + const defaultPaletteText = JSON.stringify(DefaultPalette, null, 4); + + const [interpolation, setInterpolation] = React.useState('pairs'); + const [v8PaletteText, setV8PaletteText] = React.useState(defaultPaletteText); + const [brandVariants, setBrandVariants] = React.useState({} as Record); + + const [message, setMessage] = React.useState(''); + + const onV8PaletteTextChange: TextareaProps['onChange'] = (_, data) => { + setV8PaletteText(data.value); + }; + + const onResetPalette = () => { + setV8PaletteText(defaultPaletteText); + }; + + const onCreateBrand = React.useCallback(() => { + try { + const v8Palette = JSON.parse(v8PaletteText); + const brand = createBrandVariants(v8Palette, interpolation as 'pairs' | 'primaryAndEnds'); + setBrandVariants(brand as unknown as Record); + } catch (e) { + setMessage((e as Error).message); + } + }, [interpolation, v8PaletteText]); + + return ( +
+

v8 Palette

+