From e279277bc1f86af657b97228460a42dd4021d422 Mon Sep 17 00:00:00 2001 From: Martin Hochel Date: Fri, 25 Nov 2022 12:54:16 +0100 Subject: [PATCH 1/3] feat(react-storybook-addon): migrate react-strict mode knob to react-storybook-addon --- .../src/components/ReactStrictMode.tsx | 25 +++++++++++++++++++ .../react-storybook-addon/src/constants.ts | 2 ++ .../src/decorators/withReactStrictMode.tsx | 14 +++++++++++ .../react-storybook-addon/src/hooks.ts | 3 ++- .../src/preset/manager.ts | 9 ++++++- .../src/preset/preview.ts | 3 ++- 6 files changed, 53 insertions(+), 3 deletions(-) create mode 100644 packages/react-components/react-storybook-addon/src/components/ReactStrictMode.tsx create mode 100644 packages/react-components/react-storybook-addon/src/decorators/withReactStrictMode.tsx diff --git a/packages/react-components/react-storybook-addon/src/components/ReactStrictMode.tsx b/packages/react-components/react-storybook-addon/src/components/ReactStrictMode.tsx new file mode 100644 index 00000000000000..f247ebcbdfc443 --- /dev/null +++ b/packages/react-components/react-storybook-addon/src/components/ReactStrictMode.tsx @@ -0,0 +1,25 @@ +import * as React from 'react'; +import { IconButton, Icons } from '@storybook/components'; + +import { STRICT_MODE_ID } from '../constants'; +import { useGlobals } from '../hooks'; + +export const ReactStrictMode = () => { + const [globals, updateGlobals] = useGlobals(); + + const isActive = globals[STRICT_MODE_ID] ?? false; + + const toggleStrictMode = React.useCallback( + () => + updateGlobals({ + [STRICT_MODE_ID]: !isActive, + }), + [isActive, updateGlobals], + ); + + return ( + + + + ); +}; diff --git a/packages/react-components/react-storybook-addon/src/constants.ts b/packages/react-components/react-storybook-addon/src/constants.ts index feac8295cbb2b3..7ebd04f5e2810c 100644 --- a/packages/react-components/react-storybook-addon/src/constants.ts +++ b/packages/react-components/react-storybook-addon/src/constants.ts @@ -1,2 +1,4 @@ export const ADDON_ID = 'storybook/fluentui-react-addon'; export const THEME_ID = `${ADDON_ID}/theme` as const; + +export const STRICT_MODE_ID = `${ADDON_ID}/strict-mode` as const; diff --git a/packages/react-components/react-storybook-addon/src/decorators/withReactStrictMode.tsx b/packages/react-components/react-storybook-addon/src/decorators/withReactStrictMode.tsx new file mode 100644 index 00000000000000..d1aab6613e2d5b --- /dev/null +++ b/packages/react-components/react-storybook-addon/src/decorators/withReactStrictMode.tsx @@ -0,0 +1,14 @@ +import * as React from 'react'; + +import { STRICT_MODE_ID } from '../constants'; +import { FluentStoryContext } from '../hooks'; + +export const withReactStrictMode = (StoryFn: () => JSX.Element, context: FluentStoryContext) => { + const isActive = context.globals[STRICT_MODE_ID] ?? false; + + return {StoryFn()}; +}; + +const StrictModeWrapper = (props: { strictMode: boolean; children: React.ReactElement }) => { + return props.strictMode ? {props.children} : props.children; +}; diff --git a/packages/react-components/react-storybook-addon/src/hooks.ts b/packages/react-components/react-storybook-addon/src/hooks.ts index 79d3cc56323f94..21f31e96e7503a 100644 --- a/packages/react-components/react-storybook-addon/src/hooks.ts +++ b/packages/react-components/react-storybook-addon/src/hooks.ts @@ -1,7 +1,7 @@ import { useGlobals as useStorybookGlobals, Args as StorybookArgs } from '@storybook/api'; import { StoryContext as StorybookContext, Parameters } from '@storybook/addons'; -import { THEME_ID } from './constants'; +import { STRICT_MODE_ID, THEME_ID } from './constants'; import { ThemeIds } from './theme'; export interface FluentStoryContext extends StorybookContext { @@ -14,6 +14,7 @@ export interface FluentStoryContext extends StorybookContext { */ export interface FluentGlobals extends StorybookArgs { [THEME_ID]?: ThemeIds; + [STRICT_MODE_ID]?: boolean; } /** diff --git a/packages/react-components/react-storybook-addon/src/preset/manager.ts b/packages/react-components/react-storybook-addon/src/preset/manager.ts index e052cd5e4c6ed9..3c7cd31adf07a1 100644 --- a/packages/react-components/react-storybook-addon/src/preset/manager.ts +++ b/packages/react-components/react-storybook-addon/src/preset/manager.ts @@ -1,7 +1,8 @@ import { addons, types } from '@storybook/addons'; -import { ADDON_ID, THEME_ID } from '../constants'; +import { ADDON_ID, STRICT_MODE_ID, THEME_ID } from '../constants'; import { ThemePicker } from '../components/ThemePicker'; +import { ReactStrictMode } from '../components/ReactStrictMode'; addons.register(ADDON_ID, () => { addons.add(THEME_ID, { @@ -10,4 +11,10 @@ addons.register(ADDON_ID, () => { match: ({ viewMode }) => !!(viewMode && viewMode.match(/^(story|docs)$/)), render: ThemePicker, }); + addons.add(STRICT_MODE_ID, { + type: types.TOOL, + title: 'React Strict Mode', + match: ({ viewMode }) => !!(viewMode && viewMode.match(/^(story|docs)$/)), + render: ReactStrictMode, + }); }); diff --git a/packages/react-components/react-storybook-addon/src/preset/preview.ts b/packages/react-components/react-storybook-addon/src/preset/preview.ts index a4e2db0acf3d78..9e381daa303ca5 100644 --- a/packages/react-components/react-storybook-addon/src/preset/preview.ts +++ b/packages/react-components/react-storybook-addon/src/preset/preview.ts @@ -10,5 +10,6 @@ */ import { withFluentProvider } from '../decorators/withFluentProvider'; +import { withReactStrictMode } from '../decorators/withReactStrictMode'; -export const decorators = [withFluentProvider]; +export const decorators = [withFluentProvider, withReactStrictMode]; From f50cd2826d3c643cd41ea4edcc497cc064a16024 Mon Sep 17 00:00:00 2001 From: Martin Hochel Date: Fri, 25 Nov 2022 12:58:22 +0100 Subject: [PATCH 2/3] refactor: replace react-storybook with react-storybook-addon and remove the package --- .github/CODEOWNERS | 1 - .storybook/preview.js | 3 +- .../react-storybook/.babelrc.json | 4 - .../react-storybook/.eslintrc.json | 4 - .../react-storybook/.npmignore | 30 - .../react-storybook/CHANGELOG.json | 1731 ----------------- .../react-storybook/CHANGELOG.md | 825 -------- .../react-components/react-storybook/LICENSE | 15 - .../react-storybook/README.md | 29 - .../react-storybook/config/api-extractor.json | 4 - .../react-storybook/config/tests.js | 1 - .../etc/react-storybook.api.md | 15 - .../react-storybook/jest.config.js | 20 - .../react-storybook/just.config.ts | 3 - .../react-storybook/package.json | 53 - .../react-storybook/src/decorators/index.ts | 2 - .../src/decorators/withFluentProvider.tsx | 20 - .../src/decorators/withStrictMode.tsx | 11 - .../react-storybook/src/index.test.ts | 12 - .../react-storybook/src/index.ts | 1 - .../src/knobs/useFluentTheme.ts | 30 - .../src/knobs/useStrictMode.ts | 3 - .../react-storybook/tsconfig.json | 22 - .../react-storybook/tsconfig.lib.json | 14 - .../react-storybook/tsconfig.spec.json | 9 - tsconfig.base.json | 1 - workspace.json | 7 - 27 files changed, 1 insertion(+), 2869 deletions(-) delete mode 100644 packages/react-components/react-storybook/.babelrc.json delete mode 100644 packages/react-components/react-storybook/.eslintrc.json delete mode 100644 packages/react-components/react-storybook/.npmignore delete mode 100644 packages/react-components/react-storybook/CHANGELOG.json delete mode 100644 packages/react-components/react-storybook/CHANGELOG.md delete mode 100644 packages/react-components/react-storybook/LICENSE delete mode 100644 packages/react-components/react-storybook/README.md delete mode 100644 packages/react-components/react-storybook/config/api-extractor.json delete mode 100644 packages/react-components/react-storybook/config/tests.js delete mode 100644 packages/react-components/react-storybook/etc/react-storybook.api.md delete mode 100644 packages/react-components/react-storybook/jest.config.js delete mode 100644 packages/react-components/react-storybook/just.config.ts delete mode 100644 packages/react-components/react-storybook/package.json delete mode 100644 packages/react-components/react-storybook/src/decorators/index.ts delete mode 100644 packages/react-components/react-storybook/src/decorators/withFluentProvider.tsx delete mode 100644 packages/react-components/react-storybook/src/decorators/withStrictMode.tsx delete mode 100644 packages/react-components/react-storybook/src/index.test.ts delete mode 100644 packages/react-components/react-storybook/src/index.ts delete mode 100644 packages/react-components/react-storybook/src/knobs/useFluentTheme.ts delete mode 100644 packages/react-components/react-storybook/src/knobs/useStrictMode.ts delete mode 100644 packages/react-components/react-storybook/tsconfig.json delete mode 100644 packages/react-components/react-storybook/tsconfig.lib.json delete mode 100644 packages/react-components/react-storybook/tsconfig.spec.json diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS index 6bf56b66cffa5d..18211eb2c3281f 100644 --- a/.github/CODEOWNERS +++ b/.github/CODEOWNERS @@ -111,7 +111,6 @@ packages/react-monaco-editor @microsoft/fluentui-v8-website packages/react-components/react-positioning @microsoft/teams-prg packages/react-components/react-overflow @microsoft/teams-prg packages/react-components/react-shared-contexts @microsoft/teams-prg -packages/react-components/react-storybook @microsoft/cxe-prg @microsoft/teams-prg packages/react-components/react-storybook-addon @microsoft/cxe-prg packages/react-components/react-tabster @microsoft/teams-prg packages/react-components/react-theme @microsoft/teams-prg diff --git a/.storybook/preview.js b/.storybook/preview.js index 4d5b76dfc83a87..13c76fc65d54bd 100644 --- a/.storybook/preview.js +++ b/.storybook/preview.js @@ -1,4 +1,3 @@ -import { withFluentProvider, withStrictMode } from '@fluentui/react-storybook'; import 'cypress-storybook/react'; import * as dedent from 'dedent'; import './docs-root.css'; @@ -23,7 +22,7 @@ window.__setCurrentStory = function (categorization, story) { }; /** @type {NonNullable} */ -export const decorators = [withFluentProvider, withStrictMode]; +export const decorators = []; /** @type {import('@storybook/addons').Parameters} */ export const parameters = { diff --git a/packages/react-components/react-storybook/.babelrc.json b/packages/react-components/react-storybook/.babelrc.json deleted file mode 100644 index 0b00fa93139ead..00000000000000 --- a/packages/react-components/react-storybook/.babelrc.json +++ /dev/null @@ -1,4 +0,0 @@ -{ - "presets": [], - "plugins": ["annotate-pure-calls", "@babel/transform-react-pure-annotations"] -} diff --git a/packages/react-components/react-storybook/.eslintrc.json b/packages/react-components/react-storybook/.eslintrc.json deleted file mode 100644 index ceea884c70dccc..00000000000000 --- a/packages/react-components/react-storybook/.eslintrc.json +++ /dev/null @@ -1,4 +0,0 @@ -{ - "extends": ["plugin:@fluentui/eslint-plugin/react"], - "root": true -} diff --git a/packages/react-components/react-storybook/.npmignore b/packages/react-components/react-storybook/.npmignore deleted file mode 100644 index f7ce568a6dbf7c..00000000000000 --- a/packages/react-components/react-storybook/.npmignore +++ /dev/null @@ -1,30 +0,0 @@ -.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-storybook/CHANGELOG.json b/packages/react-components/react-storybook/CHANGELOG.json deleted file mode 100644 index 93e35ff3343ff6..00000000000000 --- a/packages/react-components/react-storybook/CHANGELOG.json +++ /dev/null @@ -1,1731 +0,0 @@ -{ - "name": "@fluentui/react-storybook", - "entries": [ - { - "date": "Tue, 20 Sep 2022 20:55:45 GMT", - "tag": "@fluentui/react-storybook_v9.0.0-rc.1", - "version": "9.0.0-rc.1", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@fluentui/react-storybook", - "comment": "Bump @fluentui/react-provider to v9.1.2", - "commit": "4ceba844c804a2f49b0465389100e7a3dabf116e" - } - ] - } - }, - { - "date": "Thu, 15 Sep 2022 09:50:08 GMT", - "tag": "@fluentui/react-storybook_v9.0.0-rc.1", - "version": "9.0.0-rc.1", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@fluentui/react-storybook", - "comment": "Bump @fluentui/react-provider to v9.1.1", - "commit": "a33448fe4a0f4117686c378f80b893d1406d95a8" - }, - { - "author": "beachball", - "package": "@fluentui/react-storybook", - "comment": "Bump @fluentui/react-theme to v9.1.0", - "commit": "a33448fe4a0f4117686c378f80b893d1406d95a8" - } - ] - } - }, - { - "date": "Wed, 03 Aug 2022 16:04:10 GMT", - "tag": "@fluentui/react-storybook_v9.0.0-rc.1", - "version": "9.0.0-rc.1", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@fluentui/react-storybook", - "comment": "Bump @fluentui/react-provider to v9.1.0", - "commit": "ee4a8be0d0831a6615f878f98db6a97cc61a802d" - } - ] - } - }, - { - "date": "Thu, 14 Jul 2022 21:21:13 GMT", - "tag": "@fluentui/react-storybook_v9.0.0-rc.1", - "version": "9.0.0-rc.1", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@fluentui/react-storybook", - "comment": "Bump @fluentui/react-provider to v9.0.3", - "commit": "79b513146194367544160f364b0a7dd749ed93e4" - } - ] - } - }, - { - "date": "Thu, 14 Jul 2022 17:06:26 GMT", - "tag": "@fluentui/react-storybook_v9.0.0-rc.1", - "version": "9.0.0-rc.1", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@fluentui/react-storybook", - "comment": "Bump @fluentui/react-provider to v9.0.2", - "commit": "35237381e941c8935b1892c9217096cea3e5601f" - } - ] - } - }, - { - "date": "Tue, 28 Jun 2022 17:39:54 GMT", - "tag": "@fluentui/react-storybook_v9.0.0-rc.1", - "version": "9.0.0-rc.1", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@fluentui/react-storybook", - "comment": "Bump @fluentui/react-provider to v9.0.1", - "commit": "3deda1fbbfb6ac2b1ad150d4dc6343f1f7fda85b" - } - ] - } - }, - { - "date": "Tue, 28 Jun 2022 15:14:23 GMT", - "tag": "@fluentui/react-storybook_v9.0.0-rc.1", - "version": "9.0.0-rc.1", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@fluentui/react-storybook", - "comment": "Bump @fluentui/react-provider to v9.0.0", - "commit": "ba6c5d651559b91c815429c9a9357c4d5a390f3e" - }, - { - "author": "beachball", - "package": "@fluentui/react-storybook", - "comment": "Bump @fluentui/react-theme to v9.0.0", - "commit": "ba6c5d651559b91c815429c9a9357c4d5a390f3e" - } - ] - } - }, - { - "date": "Thu, 23 Jun 2022 14:25:31 GMT", - "tag": "@fluentui/react-storybook_v9.0.0-rc.1", - "version": "9.0.0-rc.1", - "comments": { - "prerelease": [ - { - "author": "beachball", - "package": "@fluentui/react-storybook", - "comment": "Bump @fluentui/react-provider to v9.0.0-rc.14", - "commit": "b00790b7a0ea1473d8c3cc49c7ca0088002957ed" - }, - { - "author": "beachball", - "package": "@fluentui/react-storybook", - "comment": "Bump @fluentui/react-theme to v9.0.0-rc.10", - "commit": "b00790b7a0ea1473d8c3cc49c7ca0088002957ed" - } - ] - } - }, - { - "date": "Tue, 31 May 2022 21:28:50 GMT", - "tag": "@fluentui/react-storybook_v9.0.0-rc.1", - "version": "9.0.0-rc.1", - "comments": { - "prerelease": [ - { - "author": "beachball", - "package": "@fluentui/react-storybook", - "comment": "Bump @fluentui/react-provider to v9.0.0-rc.13", - "commit": "335ebfcfd47005003901b5e319782bfe9ccd89fd" - } - ] - } - }, - { - "date": "Thu, 26 May 2022 21:01:32 GMT", - "tag": "@fluentui/react-storybook_v9.0.0-rc.1", - "version": "9.0.0-rc.1", - "comments": { - "prerelease": [ - { - "author": "beachball", - "package": "@fluentui/react-storybook", - "comment": "Bump @fluentui/react-provider to v9.0.0-rc.12", - "commit": "3cf55ce998048554bf6a550de44403843ea8ede0" - } - ] - } - }, - { - "date": "Mon, 23 May 2022 18:56:51 GMT", - "tag": "@fluentui/react-storybook_v9.0.0-rc.1", - "version": "9.0.0-rc.1", - "comments": { - "prerelease": [ - { - "author": "beachball", - "package": "@fluentui/react-storybook", - "comment": "Bump @fluentui/react-provider to v9.0.0-rc.11", - "commit": "d4f80b17690e962d6a24e68959608d1ffe84aef6" - }, - { - "author": "beachball", - "package": "@fluentui/react-storybook", - "comment": "Bump @fluentui/react-theme to v9.0.0-rc.9", - "commit": "d4f80b17690e962d6a24e68959608d1ffe84aef6" - } - ] - } - }, - { - "date": "Mon, 23 May 2022 12:14:24 GMT", - "tag": "@fluentui/react-storybook_v9.0.0-rc.1", - "version": "9.0.0-rc.1", - "comments": { - "prerelease": [ - { - "author": "beachball", - "package": "@fluentui/react-storybook", - "comment": "Bump @fluentui/react-provider to v9.0.0-rc.10", - "commit": "8d58f08997acf595e3eb7f628123e7fa7830c394" - }, - { - "author": "beachball", - "package": "@fluentui/react-storybook", - "comment": "Bump @fluentui/react-theme to v9.0.0-rc.8", - "commit": "8d58f08997acf595e3eb7f628123e7fa7830c394" - } - ] - } - }, - { - "date": "Thu, 05 May 2022 18:26:30 GMT", - "tag": "@fluentui/react-storybook_v9.0.0-rc.1", - "version": "9.0.0-rc.1", - "comments": { - "prerelease": [ - { - "author": "beachball", - "package": "@fluentui/react-storybook", - "comment": "Bump @fluentui/react-provider to v9.0.0-rc.9", - "commit": "c5abb9c480ac94d12aa644d68d30773d77f2a159" - }, - { - "author": "beachball", - "package": "@fluentui/react-storybook", - "comment": "Bump @fluentui/react-theme to v9.0.0-rc.7", - "commit": "c5abb9c480ac94d12aa644d68d30773d77f2a159" - } - ] - } - }, - { - "date": "Wed, 04 May 2022 13:26:54 GMT", - "tag": "@fluentui/react-storybook_v9.0.0-rc.1", - "version": "9.0.0-rc.1", - "comments": { - "prerelease": [ - { - "author": "beachball", - "package": "@fluentui/react-storybook", - "comment": "Bump @fluentui/react-provider to v9.0.0-rc.8", - "commit": "65f94192ed3b2cde7e52b9c7e12d6f38b81965dd" - }, - { - "author": "beachball", - "package": "@fluentui/react-storybook", - "comment": "Bump @fluentui/react-theme to v9.0.0-rc.6", - "commit": "65f94192ed3b2cde7e52b9c7e12d6f38b81965dd" - } - ] - } - }, - { - "date": "Mon, 25 Apr 2022 09:32:19 GMT", - "tag": "@fluentui/react-storybook_v9.0.0-rc.1", - "version": "9.0.0-rc.1", - "comments": { - "prerelease": [ - { - "author": "beachball", - "package": "@fluentui/react-storybook", - "comment": "Bump @fluentui/react-provider to v9.0.0-rc.7", - "commit": "02ca1d3c198452c1693067f5f18bd01b2ed5d6e6" - } - ] - } - }, - { - "date": "Tue, 19 Apr 2022 19:17:29 GMT", - "tag": "@fluentui/react-storybook_v9.0.0-rc.1", - "version": "9.0.0-rc.1", - "comments": { - "prerelease": [ - { - "author": "beachball", - "package": "@fluentui/react-storybook", - "comment": "Bump @fluentui/react-provider to v9.0.0-rc.6", - "commit": "f94b48c825ca8c8b2e3b6755bdd29fe15c7d435d" - }, - { - "author": "beachball", - "package": "@fluentui/react-storybook", - "comment": "Bump @fluentui/react-theme to v9.0.0-rc.5", - "commit": "f94b48c825ca8c8b2e3b6755bdd29fe15c7d435d" - } - ] - } - }, - { - "date": "Fri, 04 Mar 2022 05:17:40 GMT", - "tag": "@fluentui/react-storybook_v9.0.0-rc.1", - "version": "9.0.0-rc.1", - "comments": { - "prerelease": [ - { - "author": "beachball", - "package": "@fluentui/react-storybook", - "comment": "Bump @fluentui/react-provider to v9.0.0-rc.5", - "commit": "1494f0b620f6d5aae7f0aef33fc9e8f6eb7f8749" - }, - { - "author": "beachball", - "package": "@fluentui/react-storybook", - "comment": "Bump @fluentui/react-theme to v9.0.0-rc.4", - "commit": "1494f0b620f6d5aae7f0aef33fc9e8f6eb7f8749" - } - ] - } - }, - { - "date": "Tue, 01 Mar 2022 02:17:40 GMT", - "tag": "@fluentui/react-storybook_v9.0.0-rc.1", - "version": "9.0.0-rc.1", - "comments": { - "prerelease": [ - { - "author": "beachball", - "package": "@fluentui/react-storybook", - "comment": "Bump @fluentui/react-provider to v9.0.0-rc.4", - "commit": "0bc1e755543ed69443d5d03e1976c630583242f7" - } - ] - } - }, - { - "date": "Fri, 18 Feb 2022 13:35:38 GMT", - "tag": "@fluentui/react-storybook_v9.0.0-rc.1", - "version": "9.0.0-rc.1", - "comments": { - "prerelease": [ - { - "author": "beachball", - "package": "@fluentui/react-storybook", - "comment": "Bump @fluentui/react-provider to v9.0.0-rc.3", - "commit": "3b9c1e931c23173da3d1af0c696cdc58516ce504" - }, - { - "author": "beachball", - "package": "@fluentui/react-storybook", - "comment": "Bump @fluentui/react-theme to v9.0.0-rc.3", - "commit": "3b9c1e931c23173da3d1af0c696cdc58516ce504" - } - ] - } - }, - { - "date": "Thu, 10 Feb 2022 08:52:26 GMT", - "tag": "@fluentui/react-storybook_v9.0.0-rc.0", - "version": "9.0.0-rc.0", - "comments": { - "prerelease": [ - { - "author": "beachball", - "package": "@fluentui/react-storybook", - "comment": "Bump @fluentui/react-provider to v9.0.0-rc.1", - "commit": "e6c855f6d9019d6c73668d15fc9bc3a13291a6c8" - }, - { - "author": "beachball", - "package": "@fluentui/react-storybook", - "comment": "Bump @fluentui/react-theme to v9.0.0-rc.1", - "commit": "e6c855f6d9019d6c73668d15fc9bc3a13291a6c8" - } - ] - } - }, - { - "date": "Thu, 25 Nov 2021 08:34:17 GMT", - "tag": "@fluentui/react-storybook_v9.0.0-beta.0", - "version": "9.0.0-beta.0", - "comments": { - "prerelease": [ - { - "author": "beachball", - "package": "@fluentui/react-storybook", - "comment": "Bump @fluentui/react-provider to v9.0.0-beta.5", - "commit": "48d236ac53a4950fabc3ddd52f91dac93ca0195b" - }, - { - "author": "beachball", - "package": "@fluentui/react-storybook", - "comment": "Bump @fluentui/react-theme to v9.0.0-beta.4", - "commit": "48d236ac53a4950fabc3ddd52f91dac93ca0195b" - }, - { - "author": "beachball", - "package": "@fluentui/react-storybook", - "comment": "Bump @fluentui/jest-serializer-make-styles to v9.0.0-beta.4", - "commit": "48d236ac53a4950fabc3ddd52f91dac93ca0195b" - } - ] - } - }, - { - "date": "Fri, 12 Nov 2021 13:25:34 GMT", - "tag": "@fluentui/react-storybook_v9.0.0-beta.0", - "version": "9.0.0-beta.0", - "comments": { - "prerelease": [ - { - "author": "beachball", - "package": "@fluentui/react-storybook", - "comment": "Bump @fluentui/react-provider to v9.0.0-beta.4", - "commit": "742342e52c65066f779232e4e1302fedf0dd460d" - }, - { - "author": "beachball", - "package": "@fluentui/react-storybook", - "comment": "Bump @fluentui/react-theme to v9.0.0-beta.3", - "commit": "742342e52c65066f779232e4e1302fedf0dd460d" - }, - { - "author": "beachball", - "package": "@fluentui/react-storybook", - "comment": "Bump @fluentui/jest-serializer-make-styles to v9.0.0-beta.3", - "commit": "742342e52c65066f779232e4e1302fedf0dd460d" - } - ] - } - }, - { - "date": "Wed, 27 Oct 2021 12:14:24 GMT", - "tag": "@fluentui/react-storybook_v9.0.0-beta.0", - "version": "9.0.0-beta.0", - "comments": { - "prerelease": [ - { - "author": "beachball", - "package": "@fluentui/react-storybook", - "comment": "Bump @fluentui/react-provider to v9.0.0-beta.3", - "commit": "0f8f1ae7c2d908e51e29dd342d79e041f86fac08" - }, - { - "author": "beachball", - "package": "@fluentui/react-storybook", - "comment": "Bump @fluentui/react-theme to v9.0.0-beta.2", - "commit": "0f8f1ae7c2d908e51e29dd342d79e041f86fac08" - }, - { - "author": "beachball", - "package": "@fluentui/react-storybook", - "comment": "Bump @fluentui/jest-serializer-make-styles to v9.0.0-beta.2", - "commit": "0f8f1ae7c2d908e51e29dd342d79e041f86fac08" - } - ] - } - }, - { - "date": "Tue, 12 Oct 2021 19:45:58 GMT", - "tag": "@fluentui/react-storybook_v9.0.0-beta.0", - "version": "9.0.0-beta.0", - "comments": { - "prerelease": [ - { - "author": "beachball", - "package": "@fluentui/react-storybook", - "comment": "Bump @fluentui/react-provider to v9.0.0-beta.2", - "commit": "bdd19e2bb827fc1d8eb329e6ed48cd0542048358" - } - ] - } - }, - { - "date": "Wed, 06 Oct 2021 10:37:22 GMT", - "tag": "@fluentui/react-storybook_v9.0.0-beta.0", - "version": "9.0.0-beta.0", - "comments": { - "prerelease": [ - { - "author": "beachball", - "package": "@fluentui/react-storybook", - "comment": "Bump @fluentui/react-provider to v9.0.0-beta.1", - "commit": "5553164c190a4beb4780745d0e6403109e057913" - }, - { - "author": "beachball", - "package": "@fluentui/react-storybook", - "comment": "Bump @fluentui/react-theme to v9.0.0-beta.1", - "commit": "5553164c190a4beb4780745d0e6403109e057913" - }, - { - "author": "beachball", - "package": "@fluentui/react-storybook", - "comment": "Bump @fluentui/jest-serializer-make-styles to v9.0.0-beta.1", - "commit": "5553164c190a4beb4780745d0e6403109e057913" - } - ] - } - }, - { - "date": "Tue, 05 Oct 2021 12:47:58 GMT", - "tag": "@fluentui/react-storybook_v9.0.0-alpha.0", - "version": "9.0.0-alpha.0", - "comments": { - "prerelease": [ - { - "author": "beachball", - "package": "@fluentui/react-storybook", - "comment": "Bump @fluentui/react-provider to v9.0.0-alpha.90", - "commit": "c41b8f8996acd5b970d894fc910cc4d661f8e3cb" - }, - { - "author": "beachball", - "package": "@fluentui/react-storybook", - "comment": "Bump @fluentui/jest-serializer-make-styles to v9.0.0-alpha.53", - "commit": "c41b8f8996acd5b970d894fc910cc4d661f8e3cb" - } - ] - } - }, - { - "date": "Tue, 05 Oct 2021 09:28:07 GMT", - "tag": "@fluentui/react-storybook_v9.0.0-alpha.0", - "version": "9.0.0-alpha.0", - "comments": { - "prerelease": [ - { - "author": "beachball", - "package": "@fluentui/react-storybook", - "comment": "Bump @fluentui/react-provider to v9.0.0-alpha.89", - "commit": "3b16677a03035dcf03c1297268b85c6d4bd3f839" - }, - { - "author": "beachball", - "package": "@fluentui/react-storybook", - "comment": "Bump @fluentui/jest-serializer-make-styles to v9.0.0-alpha.52", - "commit": "3b16677a03035dcf03c1297268b85c6d4bd3f839" - } - ] - } - }, - { - "date": "Fri, 01 Oct 2021 14:13:08 GMT", - "tag": "@fluentui/react-storybook_v9.0.0-alpha.0", - "version": "9.0.0-alpha.0", - "comments": { - "prerelease": [ - { - "author": "beachball", - "package": "@fluentui/react-storybook", - "comment": "Bump @fluentui/react-provider to v9.0.0-alpha.88", - "commit": "4fa0856ad0353b787b8ae59229e6f64ef0719824" - }, - { - "author": "beachball", - "package": "@fluentui/react-storybook", - "comment": "Bump @fluentui/react-theme to v9.0.0-alpha.26", - "commit": "4fa0856ad0353b787b8ae59229e6f64ef0719824" - }, - { - "author": "beachball", - "package": "@fluentui/react-storybook", - "comment": "Bump @fluentui/jest-serializer-make-styles to v9.0.0-alpha.51", - "commit": "4fa0856ad0353b787b8ae59229e6f64ef0719824" - } - ] - } - }, - { - "date": "Fri, 01 Oct 2021 09:44:56 GMT", - "tag": "@fluentui/react-storybook_v9.0.0-alpha.0", - "version": "9.0.0-alpha.0", - "comments": { - "prerelease": [ - { - "author": "beachball", - "package": "@fluentui/react-storybook", - "comment": "Bump @fluentui/react-provider to v9.0.0-alpha.86", - "commit": "0ebd18ceaba3d032748f76da4ce06fcf8942c6c5" - } - ] - } - }, - { - "date": "Wed, 29 Sep 2021 08:06:11 GMT", - "tag": "@fluentui/react-storybook_v9.0.0-alpha.0", - "version": "9.0.0-alpha.0", - "comments": { - "prerelease": [ - { - "author": "beachball", - "package": "@fluentui/react-storybook", - "comment": "Bump @fluentui/react-provider to v9.0.0-alpha.85", - "commit": "ede1575b3a5c8f893124af9415c53968564fb923" - }, - { - "author": "beachball", - "package": "@fluentui/react-storybook", - "comment": "Bump @fluentui/react-theme to v9.0.0-alpha.24", - "commit": "ede1575b3a5c8f893124af9415c53968564fb923" - }, - { - "author": "beachball", - "package": "@fluentui/react-storybook", - "comment": "Bump @fluentui/jest-serializer-make-styles to v9.0.0-alpha.49", - "commit": "ede1575b3a5c8f893124af9415c53968564fb923" - } - ] - } - }, - { - "date": "Mon, 27 Sep 2021 08:06:00 GMT", - "tag": "@fluentui/react-storybook_v9.0.0-alpha.0", - "version": "9.0.0-alpha.0", - "comments": { - "prerelease": [ - { - "author": "beachball", - "package": "@fluentui/react-storybook", - "comment": "Bump @fluentui/react-provider to v9.0.0-alpha.84", - "commit": "0df6cb80c9181650bf5d6c5df233bd5e9e779a43" - }, - { - "author": "beachball", - "package": "@fluentui/react-storybook", - "comment": "Bump @fluentui/jest-serializer-make-styles to v9.0.0-alpha.48", - "commit": "0df6cb80c9181650bf5d6c5df233bd5e9e779a43" - } - ] - } - }, - { - "date": "Fri, 24 Sep 2021 09:17:17 GMT", - "tag": "@fluentui/react-storybook_v9.0.0-alpha.0", - "version": "9.0.0-alpha.0", - "comments": { - "prerelease": [ - { - "author": "beachball", - "package": "@fluentui/react-storybook", - "comment": "Bump @fluentui/react-provider to v9.0.0-alpha.83", - "commit": "0d26909912889432060fd4c87b2f4a45017e1532" - }, - { - "author": "beachball", - "package": "@fluentui/react-storybook", - "comment": "Bump @fluentui/jest-serializer-make-styles to v9.0.0-alpha.47", - "commit": "0d26909912889432060fd4c87b2f4a45017e1532" - } - ] - } - }, - { - "date": "Thu, 23 Sep 2021 08:21:34 GMT", - "tag": "@fluentui/react-storybook_v9.0.0-alpha.0", - "version": "9.0.0-alpha.0", - "comments": { - "prerelease": [ - { - "author": "beachball", - "package": "@fluentui/react-storybook", - "comment": "Bump @fluentui/react-provider to v9.0.0-alpha.82", - "commit": "95682da34c48813f7658032ae490d21d2f363b90" - }, - { - "author": "beachball", - "package": "@fluentui/react-storybook", - "comment": "Bump @fluentui/jest-serializer-make-styles to v9.0.0-alpha.46", - "commit": "95682da34c48813f7658032ae490d21d2f363b90" - } - ] - } - }, - { - "date": "Wed, 22 Sep 2021 10:10:07 GMT", - "tag": "@fluentui/react-storybook_v9.0.0-alpha.0", - "version": "9.0.0-alpha.0", - "comments": { - "prerelease": [ - { - "author": "beachball", - "package": "@fluentui/react-storybook", - "comment": "Bump @fluentui/react-provider to v9.0.0-alpha.81", - "commit": "bc3f1ec72fc7784a558b0dd6598ee0662f4649c1" - }, - { - "author": "beachball", - "package": "@fluentui/react-storybook", - "comment": "Bump @fluentui/jest-serializer-make-styles to v9.0.0-alpha.45", - "commit": "bc3f1ec72fc7784a558b0dd6598ee0662f4649c1" - } - ] - } - }, - { - "date": "Tue, 21 Sep 2021 07:42:34 GMT", - "tag": "@fluentui/react-storybook_v9.0.0-alpha.0", - "version": "9.0.0-alpha.0", - "comments": { - "prerelease": [ - { - "author": "beachball", - "package": "@fluentui/react-storybook", - "comment": "Bump @fluentui/react-provider to v9.0.0-alpha.80", - "commit": "363765ba3d08d2facbb97fb80ab54ff27ac714fd" - }, - { - "author": "beachball", - "package": "@fluentui/react-storybook", - "comment": "Bump @fluentui/react-theme to v9.0.0-alpha.23", - "commit": "363765ba3d08d2facbb97fb80ab54ff27ac714fd" - }, - { - "author": "beachball", - "package": "@fluentui/react-storybook", - "comment": "Bump @fluentui/jest-serializer-make-styles to v9.0.0-alpha.44", - "commit": "363765ba3d08d2facbb97fb80ab54ff27ac714fd" - } - ] - } - }, - { - "date": "Mon, 20 Sep 2021 07:36:26 GMT", - "tag": "@fluentui/react-storybook_v9.0.0-alpha.0", - "version": "9.0.0-alpha.0", - "comments": { - "prerelease": [ - { - "author": "lingfangao@hotmail.com", - "package": "@fluentui/react-storybook", - "commit": "b8a304770f77c0353553a152dad34421070400a6", - "comment": "Bump @fluentui/react-storybook to v9.0.0-alpha.0" - } - ] - } - }, - { - "date": "Fri, 17 Sep 2021 07:35:26 GMT", - "tag": "@fluentui/react-storybook_v9.0.0-alpha.0", - "version": "9.0.0-alpha.0", - "comments": { - "prerelease": [ - { - "author": "Humberto.Morimoto@microsoft.com", - "package": "@fluentui/react-storybook", - "commit": "90d71a0914acbb73a0365d60a85237e3d58ef575", - "comment": "Bump @fluentui/react-storybook to v9.0.0-alpha.0" - } - ] - } - }, - { - "date": "Thu, 16 Sep 2021 07:38:39 GMT", - "tag": "@fluentui/react-storybook_v9.0.0-alpha.0", - "version": "9.0.0-alpha.0", - "comments": { - "prerelease": [ - { - "author": "behowell@microsoft.com", - "package": "@fluentui/react-storybook", - "commit": "fbe41e2877a20ce0f3c01b5188e17c12f941cc4c", - "comment": "Bump @fluentui/react-storybook to v9.0.0-alpha.0" - } - ] - } - }, - { - "date": "Tue, 14 Sep 2021 20:09:02 GMT", - "tag": "@fluentui/react-storybook_v9.0.0-alpha.0", - "version": "9.0.0-alpha.0", - "comments": { - "prerelease": [ - { - "author": "bsunderhus@microsoft.com", - "package": "@fluentui/react-storybook", - "commit": "10495c31fb5c5cf48b4665601a75a0cfabb6a03c", - "comment": "Bump @fluentui/react-storybook to v9.0.0-alpha.0" - } - ] - } - }, - { - "date": "Fri, 10 Sep 2021 16:31:53 GMT", - "tag": "@fluentui/react-storybook_v9.0.0-alpha.0", - "version": "9.0.0-alpha.0", - "comments": { - "prerelease": [ - { - "author": "lingfangao@hotmail.com", - "package": "@fluentui/react-storybook", - "commit": "01a06f5b2aa14ae96a2fca056d34d99a5ad124e0", - "comment": "Bump @fluentui/react-storybook to v9.0.0-alpha.0" - } - ] - } - }, - { - "date": "Fri, 10 Sep 2021 07:39:51 GMT", - "tag": "@fluentui/react-storybook_v9.0.0-alpha.0", - "version": "9.0.0-alpha.0", - "comments": { - "prerelease": [ - { - "comment": "Bump @fluentui/react-provider to v9.0.0-alpha.74", - "author": "behowell@microsoft.com", - "commit": "8700a515c7f2659761c5b53f55c32453bc3510b1", - "package": "@fluentui/react-storybook" - } - ] - } - }, - { - "date": "Tue, 07 Sep 2021 07:34:55 GMT", - "tag": "@fluentui/react-storybook_v9.0.0-alpha.0", - "version": "9.0.0-alpha.0", - "comments": { - "none": [ - { - "comment": "Bump @fluentui/react-provider to v9.0.0-alpha.73", - "author": "olfedias@microsoft.com", - "commit": "37e0f35eb706d40c4537010de97db94a831022d3", - "package": "@fluentui/react-storybook" - } - ] - } - }, - { - "date": "Mon, 06 Sep 2021 07:34:53 GMT", - "tag": "@fluentui/react-storybook_v9.0.0-alpha.0", - "version": "9.0.0-alpha.0", - "comments": { - "prerelease": [ - { - "comment": "Bump @fluentui/react-provider to v9.0.0-alpha.73", - "author": "lingfangao@hotmail.com", - "commit": "cd22a603bb20947e7d23a3357b9a535afdb5ee1d", - "package": "@fluentui/react-storybook" - } - ] - } - }, - { - "date": "Thu, 02 Sep 2021 07:36:46 GMT", - "tag": "@fluentui/react-storybook_v9.0.0-alpha.0", - "version": "9.0.0-alpha.0", - "comments": { - "prerelease": [ - { - "comment": "Bump @fluentui/react-provider to v9.0.0-alpha.72", - "author": "olfedias@microsoft.com", - "commit": "8f887d05e8f2fed8433b147c6e175d8297455c51", - "package": "@fluentui/react-storybook" - } - ] - } - }, - { - "date": "Wed, 01 Sep 2021 07:39:56 GMT", - "tag": "@fluentui/react-storybook_v9.0.0-alpha.0", - "version": "9.0.0-alpha.0", - "comments": { - "prerelease": [ - { - "comment": "Bump @fluentui/react-provider to v9.0.0-alpha.71", - "author": "bsunderhus@microsoft.com", - "commit": "40254a1b07bd51affd276e51af0b1d517714b45c", - "package": "@fluentui/react-storybook" - } - ] - } - }, - { - "date": "Tue, 31 Aug 2021 07:37:47 GMT", - "tag": "@fluentui/react-storybook_v9.0.0-alpha.0", - "version": "9.0.0-alpha.0", - "comments": { - "prerelease": [ - { - "comment": "Bump @fluentui/react-provider to v9.0.0-alpha.70", - "author": "marata@microsoft.com", - "commit": "4a7f81f3d92f128a672717eda660af3ba50ee71b", - "package": "@fluentui/react-storybook" - } - ] - } - }, - { - "date": "Fri, 27 Aug 2021 07:33:32 GMT", - "tag": "@fluentui/react-storybook_v9.0.0-alpha.0", - "version": "9.0.0-alpha.0", - "comments": { - "prerelease": [ - { - "comment": "Bump @fluentui/react-provider to v9.0.0-alpha.69", - "author": "olfedias@microsoft.com", - "commit": "a59db5b49ed755bf1b64ac0ac051d626ec50ffd3", - "package": "@fluentui/react-storybook" - } - ] - } - }, - { - "date": "Thu, 26 Aug 2021 07:35:43 GMT", - "tag": "@fluentui/react-storybook_v9.0.0-alpha.0", - "version": "9.0.0-alpha.0", - "comments": { - "prerelease": [ - { - "comment": "Bump @fluentui/react-provider to v9.0.0-alpha.68", - "author": "martinhochel@microsoft.com", - "commit": "210a7de72f25eb379bb76f76867351b7cad36ccd", - "package": "@fluentui/react-storybook" - } - ], - "none": [ - { - "comment": "Bump @fluentui/jest-serializer-make-styles to v9.0.0-alpha.34", - "author": "martinhochel@microsoft.com", - "commit": "210a7de72f25eb379bb76f76867351b7cad36ccd", - "package": "@fluentui/react-storybook" - } - ] - } - }, - { - "date": "Tue, 24 Aug 2021 07:34:48 GMT", - "tag": "@fluentui/react-storybook_v9.0.0-alpha.0", - "version": "9.0.0-alpha.0", - "comments": { - "none": [ - { - "comment": "Bump @fluentui/react-provider to v9.0.0-alpha.67", - "author": "dzearing@hotmail.com", - "commit": "0abd957c8d4421018e6d792c2a4aa8876967392b", - "package": "@fluentui/react-storybook" - } - ] - } - }, - { - "date": "Fri, 20 Aug 2021 07:37:28 GMT", - "tag": "@fluentui/react-storybook_v9.0.0-alpha.0", - "version": "9.0.0-alpha.0", - "comments": { - "none": [ - { - "comment": "Bump @fluentui/react-provider to v9.0.0-alpha.66", - "author": "behowell@microsoft.com", - "commit": "21df8406417c5c5c1d053561a498b920ac962b4b", - "package": "@fluentui/react-storybook" - } - ] - } - }, - { - "date": "Thu, 19 Aug 2021 07:41:35 GMT", - "tag": "@fluentui/react-storybook_v9.0.0-alpha.0", - "version": "9.0.0-alpha.0", - "comments": { - "prerelease": [ - { - "comment": "Bump @fluentui/react-provider to v9.0.0-alpha.65", - "author": "bsunderhus@microsoft.com", - "commit": "e467d64e7d3edb2512a81efdaeca5813269039b4", - "package": "@fluentui/react-storybook" - } - ] - } - }, - { - "date": "Fri, 13 Aug 2021 07:36:34 GMT", - "tag": "@fluentui/react-storybook_v9.0.0-alpha.0", - "version": "9.0.0-alpha.0", - "comments": { - "prerelease": [ - { - "comment": "Bump @fluentui/react-provider to v9.0.0-alpha.64", - "author": "olfedias@microsoft.com", - "commit": "284da7c9d57b33abce253aed5fc19b02898f6e0c", - "package": "@fluentui/react-storybook" - } - ] - } - }, - { - "date": "Tue, 10 Aug 2021 07:33:28 GMT", - "tag": "@fluentui/react-storybook_v9.0.0-alpha.0", - "version": "9.0.0-alpha.0", - "comments": { - "prerelease": [ - { - "comment": "Bump @fluentui/react-provider to v9.0.0-alpha.63", - "author": "olfedias@microsoft.com", - "commit": "457a8e6375eaecbad5de43740e91d6e4bc040388", - "package": "@fluentui/react-storybook" - } - ] - } - }, - { - "date": "Fri, 06 Aug 2021 07:35:14 GMT", - "tag": "@fluentui/react-storybook_v9.0.0-alpha.0", - "version": "9.0.0-alpha.0", - "comments": { - "prerelease": [ - { - "comment": "Bump @fluentui/react-provider to v9.0.0-alpha.62", - "author": "jspurlin@microsoft.com", - "commit": "8a09087b4215a36a50b6d3478cd2b74155c9c630", - "package": "@fluentui/react-storybook" - } - ] - } - }, - { - "date": "Wed, 04 Aug 2021 07:34:12 GMT", - "tag": "@fluentui/react-storybook_v9.0.0-alpha.0", - "version": "9.0.0-alpha.0", - "comments": { - "none": [ - { - "comment": "Bump @fluentui/react-provider to v9.0.0-alpha.61", - "author": "czearing@outlook.com", - "commit": "109e85b19d8ee37a9c31ddf8e2083471bab64526", - "package": "@fluentui/react-storybook" - } - ] - } - }, - { - "date": "Tue, 03 Aug 2021 07:39:30 GMT", - "tag": "@fluentui/react-storybook_v9.0.0-alpha.0", - "version": "9.0.0-alpha.0", - "comments": { - "patch": [ - { - "comment": "Bump @fluentui/eslint-plugin to v1.3.3", - "author": "behowell@microsoft.com", - "commit": "86476ee0511ad2693c2829b959f93a87ad10f095", - "package": "@fluentui/react-storybook" - }, - { - "comment": "Bump @fluentui/scripts to v1.0.0", - "author": "behowell@microsoft.com", - "commit": "86476ee0511ad2693c2829b959f93a87ad10f095", - "package": "@fluentui/react-storybook" - } - ], - "prerelease": [ - { - "comment": "Bump @fluentui/react-provider to v9.0.0-alpha.61", - "author": "behowell@microsoft.com", - "commit": "86476ee0511ad2693c2829b959f93a87ad10f095", - "package": "@fluentui/react-storybook" - } - ] - } - }, - { - "date": "Mon, 02 Aug 2021 07:36:20 GMT", - "tag": "@fluentui/react-storybook_v9.0.0-alpha.0", - "version": "9.0.0-alpha.0", - "comments": { - "prerelease": [ - { - "comment": "Bump @fluentui/react-provider to v9.0.0-alpha.60", - "author": "lingfan.gao@microsoft.com", - "commit": "ab0e1bafdd9ace2974b3362cd2300fb32af466fb", - "package": "@fluentui/react-storybook" - } - ] - } - }, - { - "date": "Mon, 26 Jul 2021 07:37:30 GMT", - "tag": "@fluentui/react-storybook_v9.0.0-alpha.0", - "version": "9.0.0-alpha.0", - "comments": { - "prerelease": [ - { - "comment": "Bump @fluentui/react-provider to v9.0.0-alpha.59", - "author": "olfedias@microsoft.com", - "commit": "19db6cb57a237073b0bb50d07eb921b1ce2e0c61", - "package": "@fluentui/react-storybook" - } - ] - } - }, - { - "date": "Fri, 23 Jul 2021 07:38:19 GMT", - "tag": "@fluentui/react-storybook_v9.0.0-alpha.0", - "version": "9.0.0-alpha.0", - "comments": { - "prerelease": [ - { - "comment": "Bump @fluentui/react-provider to v9.0.0-alpha.58", - "author": "miroslav.stastny@microsoft.com", - "commit": "5d812148593dc574a6f3a343a5657614b4d10456", - "package": "@fluentui/react-storybook" - } - ] - } - }, - { - "date": "Thu, 22 Jul 2021 07:36:55 GMT", - "tag": "@fluentui/react-storybook_v9.0.0-alpha.0", - "version": "9.0.0-alpha.0", - "comments": { - "prerelease": [ - { - "comment": "Bump @fluentui/react-provider to v9.0.0-alpha.57", - "author": "behowell@microsoft.com", - "commit": "2e257154d0448b8d4fd64142f93fcc9a225995cc", - "package": "@fluentui/react-storybook" - } - ] - } - }, - { - "date": "Tue, 20 Jul 2021 22:23:17 GMT", - "tag": "@fluentui/react-storybook_v9.0.0-alpha.0", - "version": "9.0.0-alpha.0", - "comments": { - "none": [ - { - "comment": "Bump @fluentui/react-provider to v9.0.0-alpha.56", - "author": "olfedias@microsoft.com", - "commit": "0723d064145b7f6be971187a5cf9b66859308e2f", - "package": "@fluentui/react-storybook" - } - ] - } - }, - { - "date": "Thu, 15 Jul 2021 07:36:18 GMT", - "tag": "@fluentui/react-storybook_v9.0.0-alpha.0", - "version": "9.0.0-alpha.0", - "comments": { - "prerelease": [ - { - "comment": "Bump @fluentui/react-provider to v9.0.0-alpha.56", - "author": "bsunderhus@microsoft.com", - "commit": "b60234948eacb8c6fa9d08ab8e98d963f583d475", - "package": "@fluentui/react-storybook" - } - ] - } - }, - { - "date": "Tue, 13 Jul 2021 22:32:58 GMT", - "tag": "@fluentui/react-storybook_v9.0.0-alpha.0", - "version": "9.0.0-alpha.0", - "comments": { - "prerelease": [ - { - "comment": "Bump @fluentui/react-provider to v9.0.0-alpha.55", - "author": "elcraig@microsoft.com", - "commit": "12b74625dec55bd1919f6370513043d87705e5ea", - "package": "@fluentui/react-storybook" - } - ] - } - }, - { - "date": "Tue, 13 Jul 2021 07:35:36 GMT", - "tag": "@fluentui/react-storybook_v9.0.0-alpha.0", - "version": "9.0.0-alpha.0", - "comments": { - "prerelease": [ - { - "comment": "Bump @fluentui/react-provider to v9.0.0-alpha.54", - "author": "behowell@microsoft.com", - "commit": "8e5969e291bcafac21df12c9fb591bdd5654c613", - "package": "@fluentui/react-storybook" - } - ] - } - }, - { - "date": "Fri, 09 Jul 2021 07:39:31 GMT", - "tag": "@fluentui/react-storybook_v9.0.0-alpha.0", - "version": "9.0.0-alpha.0", - "comments": { - "patch": [ - { - "comment": "Bump @fluentui/eslint-plugin to v1.3.2", - "author": "martinhochel@microsoft.com", - "commit": "18902eb64710aa6253a79781357b8390bb13665c", - "package": "@fluentui/react-storybook" - }, - { - "comment": "Bump @fluentui/scripts to v1.0.0", - "author": "martinhochel@microsoft.com", - "commit": "18902eb64710aa6253a79781357b8390bb13665c", - "package": "@fluentui/react-storybook" - } - ], - "prerelease": [ - { - "comment": "Bump @fluentui/react-provider to v9.0.0-alpha.53", - "author": "martinhochel@microsoft.com", - "commit": "18902eb64710aa6253a79781357b8390bb13665c", - "package": "@fluentui/react-storybook" - } - ] - } - }, - { - "date": "Fri, 02 Jul 2021 23:15:55 GMT", - "tag": "@fluentui/react-storybook_v9.0.0-alpha.0", - "version": "9.0.0-alpha.0", - "comments": { - "prerelease": [ - { - "comment": "Bump @fluentui/react-provider to v9.0.0-alpha.52", - "author": "bsunderhus@microsoft.com", - "commit": "6c37a1cb5c312d4be8b239bfd9f6c9f28e9f0d24", - "package": "@fluentui/react-storybook" - } - ] - } - }, - { - "date": "Fri, 02 Jul 2021 07:37:06 GMT", - "tag": "@fluentui/react-storybook_v9.0.0-alpha.0", - "version": "9.0.0-alpha.0", - "comments": { - "prerelease": [ - { - "comment": "Bump @fluentui/react-provider to v9.0.0-alpha.51", - "author": "bsunderhus@microsoft.com", - "commit": "c939e67b1840a9eb5f7706afcda8c14df8f18d33", - "package": "@fluentui/react-storybook" - } - ] - } - }, - { - "date": "Thu, 01 Jul 2021 07:35:05 GMT", - "tag": "@fluentui/react-storybook_v9.0.0-alpha.0", - "version": "9.0.0-alpha.0", - "comments": { - "prerelease": [ - { - "comment": "Bump @fluentui/react-provider to v9.0.0-alpha.50", - "author": "Humberto.Morimoto@microsoft.com", - "commit": "c7eff2580a6fe159bbb3c4e77e549925187f3150", - "package": "@fluentui/react-storybook" - } - ] - } - }, - { - "date": "Wed, 30 Jun 2021 07:38:35 GMT", - "tag": "@fluentui/react-storybook_v9.0.0-alpha.0", - "version": "9.0.0-alpha.0", - "comments": { - "prerelease": [ - { - "comment": "Bump @fluentui/react-provider to v9.0.0-alpha.49", - "author": "tristan.watanabe@gmail.com", - "commit": "804ca93da84e19cec0737729473be5034a2e4939", - "package": "@fluentui/react-storybook" - } - ] - } - }, - { - "date": "Tue, 29 Jun 2021 07:33:32 GMT", - "tag": "@fluentui/react-storybook_v9.0.0-alpha.0", - "version": "9.0.0-alpha.0", - "comments": { - "prerelease": [ - { - "comment": "Bump @fluentui/react-provider to v9.0.0-alpha.48", - "author": "lingfan.gao@microsoft.com", - "commit": "4f907a837f3b85923178b611e4fbb0d9ac222dda", - "package": "@fluentui/react-storybook" - } - ] - } - }, - { - "date": "Mon, 28 Jun 2021 07:35:16 GMT", - "tag": "@fluentui/react-storybook_v9.0.0-alpha.0", - "version": "9.0.0-alpha.0", - "comments": { - "none": [ - { - "comment": "Bump @fluentui/react-provider to v9.0.0-alpha.47", - "author": "olfedias@microsoft.com", - "commit": "bf6fd1290ea6c6861a5d80f704e0d6d0cadb71e0", - "package": "@fluentui/react-storybook" - } - ] - } - }, - { - "date": "Wed, 23 Jun 2021 07:31:49 GMT", - "tag": "@fluentui/react-storybook_v9.0.0-alpha.0", - "version": "9.0.0-alpha.0", - "comments": { - "none": [ - { - "comment": "Bump @fluentui/react-provider to v9.0.0-alpha.47", - "author": "olfedias@microsoft.com", - "commit": "6aa065bafaa4a169b771706bc93c2faff9ac78a7", - "package": "@fluentui/react-storybook" - } - ] - } - }, - { - "date": "Tue, 22 Jun 2021 07:35:11 GMT", - "tag": "@fluentui/react-storybook_v9.0.0-alpha.0", - "version": "9.0.0-alpha.0", - "comments": { - "prerelease": [ - { - "comment": "Bump @fluentui/react-provider to v9.0.0-alpha.47", - "author": "olfedias@microsoft.com", - "commit": "3fccf5c8a8ea30529b736b9189e294969242f886", - "package": "@fluentui/react-storybook" - } - ] - } - }, - { - "date": "Mon, 21 Jun 2021 07:34:33 GMT", - "tag": "@fluentui/react-storybook_v9.0.0-alpha.0", - "version": "9.0.0-alpha.0", - "comments": { - "none": [ - { - "comment": "Bump @fluentui/react-provider to v9.0.0-alpha.46", - "author": "miroslav.stastny@microsoft.com", - "commit": "7301e00ef64eefcbd9f20e4ac8fd45849b3f74f3", - "package": "@fluentui/react-storybook" - } - ] - } - }, - { - "date": "Tue, 15 Jun 2021 07:40:20 GMT", - "tag": "@fluentui/react-storybook_v9.0.0-alpha.0", - "version": "9.0.0-alpha.0", - "comments": { - "prerelease": [ - { - "comment": "Bump @fluentui/react-provider to v9.0.0-alpha.46", - "author": "lingfan.gao@microsoft.com", - "commit": "a224777cc0089bd715cc304282115a2cd9929889", - "package": "@fluentui/react-storybook" - } - ] - } - }, - { - "date": "Mon, 07 Jun 2021 07:38:15 GMT", - "tag": "@fluentui/react-storybook_v9.0.0-alpha.0", - "version": "9.0.0-alpha.0", - "comments": { - "patch": [ - { - "comment": "Bump @fluentui/eslint-plugin to v1.3.1", - "author": "martinhochel@microsoft.com", - "commit": "f856cb3f7fbc3edb3646204c0c7e435fc7678dd1", - "package": "@fluentui/react-storybook" - }, - { - "comment": "Bump @fluentui/scripts to v1.0.0", - "author": "martinhochel@microsoft.com", - "commit": "f856cb3f7fbc3edb3646204c0c7e435fc7678dd1", - "package": "@fluentui/react-storybook" - } - ], - "prerelease": [ - { - "comment": "Bump @fluentui/react-provider to v9.0.0-alpha.45", - "author": "martinhochel@microsoft.com", - "commit": "f856cb3f7fbc3edb3646204c0c7e435fc7678dd1", - "package": "@fluentui/react-storybook" - } - ] - } - }, - { - "date": "Fri, 04 Jun 2021 07:37:23 GMT", - "tag": "@fluentui/react-storybook_v9.0.0-alpha.0", - "version": "9.0.0-alpha.0", - "comments": { - "prerelease": [ - { - "comment": "Bump @fluentui/react-provider to v9.0.0-alpha.44", - "author": "Humberto.Morimoto@microsoft.com", - "commit": "1ca8c8f0c4eb633e6b34c0b6182c09103d4c7fcb", - "package": "@fluentui/react-storybook" - } - ] - } - }, - { - "date": "Thu, 03 Jun 2021 07:36:03 GMT", - "tag": "@fluentui/react-storybook_v9.0.0-alpha.0", - "version": "9.0.0-alpha.0", - "comments": { - "prerelease": [ - { - "comment": "Bump @fluentui/react-provider to v9.0.0-alpha.43", - "author": "martinhochel@microsoft.com", - "commit": "01f798f6ac6b7b0e4c968e34a0c3f0e692aa3d43", - "package": "@fluentui/react-storybook" - } - ], - "none": [ - { - "comment": "Bump @fluentui/jest-serializer-make-styles to v9.0.0-alpha.15", - "author": "martinhochel@microsoft.com", - "commit": "01f798f6ac6b7b0e4c968e34a0c3f0e692aa3d43", - "package": "@fluentui/react-storybook" - } - ] - } - }, - { - "date": "Wed, 02 Jun 2021 07:37:15 GMT", - "tag": "@fluentui/react-storybook_v9.0.0-alpha.0", - "version": "9.0.0-alpha.0", - "comments": { - "prerelease": [ - { - "comment": "Bump @fluentui/react-provider to v9.0.0-alpha.42", - "author": "bsunderhus@microsoft.com", - "commit": "7f5734bd8a2a124969c6402534605fe0ee9df4af", - "package": "@fluentui/react-storybook" - } - ] - } - }, - { - "date": "Tue, 01 Jun 2021 07:31:58 GMT", - "tag": "@fluentui/react-storybook_v9.0.0-alpha.0", - "version": "9.0.0-alpha.0", - "comments": { - "none": [ - { - "comment": "Bump @fluentui/jest-serializer-make-styles to v9.0.0-alpha.14", - "author": "martinhochel@microsoft.com", - "commit": "0237bcee52a6c24b3f3f975ad4dee9cc81f41815", - "package": "@fluentui/react-storybook" - } - ] - } - }, - { - "date": "Mon, 31 May 2021 07:33:15 GMT", - "tag": "@fluentui/react-storybook_v9.0.0-alpha.0", - "version": "9.0.0-alpha.0", - "comments": { - "none": [ - { - "comment": "Bump @fluentui/react-provider to v9.0.0-alpha.41", - "author": "lingfan.gao@microsoft.com", - "commit": "203ccaf025da07d4064f8e4983298f0c1972c67d", - "package": "@fluentui/react-storybook" - } - ] - } - }, - { - "date": "Fri, 28 May 2021 07:33:57 GMT", - "tag": "@fluentui/react-storybook_v9.0.0-alpha.0", - "version": "9.0.0-alpha.0", - "comments": { - "none": [ - { - "comment": "Bump @fluentui/jest-serializer-make-styles to v9.0.0-alpha.14", - "author": "olfedias@microsoft.com", - "commit": "5379823a6f53bd36a936806153d228b9a0ef0543", - "package": "@fluentui/react-storybook" - } - ] - } - }, - { - "date": "Wed, 26 May 2021 07:35:43 GMT", - "tag": "@fluentui/react-storybook_v9.0.0-alpha.0", - "version": "9.0.0-alpha.0", - "comments": { - "prerelease": [ - { - "comment": "Bump @fluentui/react-provider to v9.0.0-alpha.41", - "author": "lingfan.gao@microsoft.com", - "commit": "6ffca36c9537a1852d8ec26478b8b7aeb059e17c", - "package": "@fluentui/react-storybook" - } - ] - } - }, - { - "date": "Fri, 21 May 2021 07:34:54 GMT", - "tag": "@fluentui/react-storybook_v9.0.0-alpha.0", - "version": "9.0.0-alpha.0", - "comments": { - "prerelease": [ - { - "comment": "Bump @fluentui/react-provider to v9.0.0-alpha.40", - "author": "miroslav.stastny@microsoft.com", - "commit": "3f78f90075ae78bfd28f7d498ae8f012f0221279", - "package": "@fluentui/react-storybook" - } - ], - "none": [ - { - "comment": "Bump @fluentui/react-theme to v9.0.0-alpha.13", - "author": "miroslav.stastny@microsoft.com", - "commit": "3f78f90075ae78bfd28f7d498ae8f012f0221279", - "package": "@fluentui/react-storybook" - }, - { - "comment": "Bump @fluentui/jest-serializer-make-styles to v9.0.0-alpha.14", - "author": "miroslav.stastny@microsoft.com", - "commit": "3f78f90075ae78bfd28f7d498ae8f012f0221279", - "package": "@fluentui/react-storybook" - } - ] - } - }, - { - "date": "Thu, 20 May 2021 07:41:54 GMT", - "tag": "@fluentui/react-storybook_v9.0.0-alpha.0", - "version": "9.0.0-alpha.0", - "comments": { - "prerelease": [ - { - "comment": "Bump @fluentui/react-provider to v9.0.0-alpha.39", - "author": "elcraig@microsoft.com", - "commit": "630b71c415cd40ed0e36773eab99d62cd02a30fb", - "package": "@fluentui/react-storybook" - } - ], - "patch": [ - { - "comment": "Bump @fluentui/eslint-plugin to v1.3.0", - "author": "elcraig@microsoft.com", - "commit": "630b71c415cd40ed0e36773eab99d62cd02a30fb", - "package": "@fluentui/react-storybook" - }, - { - "comment": "Bump @fluentui/scripts to v1.0.0", - "author": "elcraig@microsoft.com", - "commit": "630b71c415cd40ed0e36773eab99d62cd02a30fb", - "package": "@fluentui/react-storybook" - } - ] - } - }, - { - "date": "Wed, 19 May 2021 07:34:20 GMT", - "tag": "@fluentui/react-storybook_v9.0.0-alpha.0", - "version": "9.0.0-alpha.0", - "comments": { - "prerelease": [ - { - "comment": "Bump @fluentui/react-provider to v9.0.0-alpha.38", - "author": "olfedias@microsoft.com", - "commit": "975140887c6ad2391f8db63003ed440239ec9c25", - "package": "@fluentui/react-storybook" - } - ] - } - }, - { - "date": "Tue, 18 May 2021 07:34:38 GMT", - "tag": "@fluentui/react-storybook_v9.0.0-alpha.0", - "version": "9.0.0-alpha.0", - "comments": { - "prerelease": [ - { - "comment": "Bump @fluentui/react-provider to v9.0.0-alpha.37", - "author": "olfedias@microsoft.com", - "commit": "c845a5045c99d8d83b2584cee016b1701cd3de57", - "package": "@fluentui/react-storybook" - } - ] - } - }, - { - "date": "Thu, 13 May 2021 07:36:55 GMT", - "tag": "@fluentui/react-storybook_v9.0.0-alpha.0", - "version": "9.0.0-alpha.0", - "comments": { - "prerelease": [ - { - "comment": "Bump @fluentui/react-provider to v9.0.0-alpha.36", - "author": "olfedias@microsoft.com", - "commit": "fb53fd67729d8236e0681d74322717f6974c8b72", - "package": "@fluentui/react-storybook" - } - ] - } - }, - { - "date": "Wed, 12 May 2021 07:36:20 GMT", - "tag": "@fluentui/react-storybook_v9.0.0-alpha.0", - "version": "9.0.0-alpha.0", - "comments": { - "prerelease": [ - { - "comment": "Bump @fluentui/jest-serializer-make-styles to v9.0.0-alpha.9", - "author": "olfedias@microsoft.com", - "commit": "894712616ee3271fcf06e5fb24ad01e326e30bb5", - "package": "@fluentui/react-storybook" - } - ] - } - }, - { - "date": "Mon, 10 May 2021 07:36:07 GMT", - "tag": "@fluentui/react-storybook_v9.0.0-alpha.0", - "version": "9.0.0-alpha.0", - "comments": { - "prerelease": [ - { - "comment": "Bump @fluentui/react-provider to v9.0.0-alpha.34", - "author": "olfedias@microsoft.com", - "commit": "78c12235fcfebe43b7a77d36cbdfc67461ec32dc", - "package": "@fluentui/react-storybook" - } - ] - } - }, - { - "date": "Wed, 05 May 2021 07:36:50 GMT", - "tag": "@fluentui/react-storybook_v9.0.0-alpha.0", - "version": "9.0.0-alpha.0", - "comments": { - "prerelease": [ - { - "comment": "Bump @fluentui/react-provider to v9.0.0-alpha.33", - "author": "olfedias@microsoft.com", - "commit": "427fcf0fffb899e5ffcac4dfa61fca5d22ee176c", - "package": "@fluentui/react-storybook" - } - ] - } - }, - { - "date": "Tue, 04 May 2021 07:36:35 GMT", - "tag": "@fluentui/react-storybook_v9.0.0-alpha.0", - "version": "9.0.0-alpha.0", - "comments": { - "prerelease": [ - { - "comment": "Bump @fluentui/react-provider to v9.0.0-alpha.32", - "author": "lingfan.gao@microsoft.com", - "commit": "2aa0cde53c7bfda08651bc9e5bbe9a31d3a40b4f", - "package": "@fluentui/react-storybook" - } - ] - } - }, - { - "date": "Mon, 03 May 2021 07:45:19 GMT", - "tag": "@fluentui/react-storybook_v9.0.0-alpha.0", - "version": "9.0.0-alpha.0", - "comments": { - "prerelease": [ - { - "comment": "Bump @fluentui/react-provider to v9.0.0-alpha.31", - "author": "lingfan.gao@microsoft.com", - "commit": "5e6aa4df0c03051e59d686d24b35f01c721a3b4e", - "package": "@fluentui/react-storybook" - } - ] - } - }, - { - "date": "Fri, 30 Apr 2021 07:42:23 GMT", - "tag": "@fluentui/react-storybook_v9.0.0-alpha.0", - "version": "9.0.0-alpha.0", - "comments": { - "patch": [ - { - "comment": "Bump @fluentui/eslint-plugin to v1.2.0", - "author": "joschect@microsoft.com", - "commit": "2b62c457bb860f6675fae4acae86ee6c0b06c279", - "package": "@fluentui/react-storybook" - }, - { - "comment": "Bump @fluentui/scripts to v1.0.0", - "author": "joschect@microsoft.com", - "commit": "2b62c457bb860f6675fae4acae86ee6c0b06c279", - "package": "@fluentui/react-storybook" - } - ], - "prerelease": [ - { - "comment": "Bump @fluentui/jest-serializer-make-styles to v9.0.0-alpha.6", - "author": "joschect@microsoft.com", - "commit": "2b62c457bb860f6675fae4acae86ee6c0b06c279", - "package": "@fluentui/react-storybook" - } - ] - } - }, - { - "date": "Wed, 28 Apr 2021 07:32:59 GMT", - "tag": "@fluentui/react-storybook_v9.0.0-alpha.0", - "version": "9.0.0-alpha.0", - "comments": { - "prerelease": [ - { - "comment": "Bump @fluentui/react-provider to v9.0.0-alpha.29", - "author": "olfedias@microsoft.com", - "commit": "cabcb25b3329ad3e8536f798ceaabcd1ee93e1b4", - "package": "@fluentui/react-storybook" - } - ] - } - }, - { - "date": "Tue, 27 Apr 2021 07:34:03 GMT", - "tag": "@fluentui/react-storybook_v9.0.0-alpha.0", - "version": "9.0.0-alpha.0", - "comments": { - "prerelease": [ - { - "comment": "Bump @fluentui/react-provider to v9.0.0-alpha.28", - "author": "bsunderhus@microsoft.com", - "commit": "fdb1af09ba60238bb1c3913af6a6a6fe98f49034", - "package": "@fluentui/react-storybook" - } - ] - } - } - ] -} diff --git a/packages/react-components/react-storybook/CHANGELOG.md b/packages/react-components/react-storybook/CHANGELOG.md deleted file mode 100644 index 7e9c7e91886138..00000000000000 --- a/packages/react-components/react-storybook/CHANGELOG.md +++ /dev/null @@ -1,825 +0,0 @@ -# Change Log - @fluentui/react-storybook - -This log was last generated on Tue, 20 Sep 2022 20:55:45 GMT and should not be manually modified. - - - -## [9.0.0-rc.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-storybook_v9.0.0-rc.1) - -Tue, 20 Sep 2022 20:55:45 GMT -[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-storybook_v9.0.0-rc.1..@fluentui/react-storybook_v9.0.0-rc.1) - -### Patches - -- Bump @fluentui/react-provider to v9.1.2 ([PR #24869](https://github.com/microsoft/fluentui/pull/24869) by beachball) - -## [9.0.0-rc.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-storybook_v9.0.0-rc.1) - -Thu, 15 Sep 2022 09:50:08 GMT -[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-storybook_v9.0.0-rc.1..@fluentui/react-storybook_v9.0.0-rc.1) - -### Patches - -- Bump @fluentui/react-provider to v9.1.1 ([PR #24808](https://github.com/microsoft/fluentui/pull/24808) by beachball) -- Bump @fluentui/react-theme to v9.1.0 ([PR #24808](https://github.com/microsoft/fluentui/pull/24808) by beachball) - -## [9.0.0-rc.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-storybook_v9.0.0-rc.1) - -Wed, 03 Aug 2022 16:04:10 GMT -[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-storybook_v9.0.0-rc.1..@fluentui/react-storybook_v9.0.0-rc.1) - -### Patches - -- Bump @fluentui/react-provider to v9.1.0 ([PR #24131](https://github.com/microsoft/fluentui/pull/24131) by beachball) - -## [9.0.0-rc.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-storybook_v9.0.0-rc.1) - -Thu, 14 Jul 2022 21:21:13 GMT -[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-storybook_v9.0.0-rc.1..@fluentui/react-storybook_v9.0.0-rc.1) - -### Patches - -- Bump @fluentui/react-provider to v9.0.3 ([PR #23918](https://github.com/microsoft/fluentui/pull/23918) by beachball) - -## [9.0.0-rc.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-storybook_v9.0.0-rc.1) - -Thu, 14 Jul 2022 17:06:26 GMT -[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-storybook_v9.0.0-rc.1..@fluentui/react-storybook_v9.0.0-rc.1) - -### Patches - -- Bump @fluentui/react-provider to v9.0.2 ([PR #23897](https://github.com/microsoft/fluentui/pull/23897) by beachball) - -## [9.0.0-rc.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-storybook_v9.0.0-rc.1) - -Tue, 28 Jun 2022 17:39:54 GMT -[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-storybook_v9.0.0-rc.1..@fluentui/react-storybook_v9.0.0-rc.1) - -### Patches - -- Bump @fluentui/react-provider to v9.0.1 ([PR #23754](https://github.com/microsoft/fluentui/pull/23754) by beachball) - -## [9.0.0-rc.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-storybook_v9.0.0-rc.1) - -Tue, 28 Jun 2022 15:14:23 GMT -[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-storybook_v9.0.0-rc.1..@fluentui/react-storybook_v9.0.0-rc.1) - -### Patches - -- Bump @fluentui/react-provider to v9.0.0 ([commit](https://github.com/microsoft/fluentui/commit/ba6c5d651559b91c815429c9a9357c4d5a390f3e) by beachball) -- Bump @fluentui/react-theme to v9.0.0 ([commit](https://github.com/microsoft/fluentui/commit/ba6c5d651559b91c815429c9a9357c4d5a390f3e) by beachball) - -## [9.0.0-rc.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-storybook_v9.0.0-rc.1) - -Thu, 23 Jun 2022 14:25:31 GMT -[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-storybook_v9.0.0-rc.1..@fluentui/react-storybook_v9.0.0-rc.1) - -### Changes - -- Bump @fluentui/react-provider to v9.0.0-rc.14 ([PR #23608](https://github.com/microsoft/fluentui/pull/23608) by beachball) -- Bump @fluentui/react-theme to v9.0.0-rc.10 ([PR #23608](https://github.com/microsoft/fluentui/pull/23608) by beachball) - -## [9.0.0-rc.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-storybook_v9.0.0-rc.1) - -Tue, 31 May 2022 21:28:50 GMT -[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-storybook_v9.0.0-rc.1..@fluentui/react-storybook_v9.0.0-rc.1) - -### Changes - -- Bump @fluentui/react-provider to v9.0.0-rc.13 ([PR #23325](https://github.com/microsoft/fluentui/pull/23325) by beachball) - -## [9.0.0-rc.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-storybook_v9.0.0-rc.1) - -Thu, 26 May 2022 21:01:32 GMT -[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-storybook_v9.0.0-rc.1..@fluentui/react-storybook_v9.0.0-rc.1) - -### Changes - -- Bump @fluentui/react-provider to v9.0.0-rc.12 ([PR #23267](https://github.com/microsoft/fluentui/pull/23267) by beachball) - -## [9.0.0-rc.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-storybook_v9.0.0-rc.1) - -Mon, 23 May 2022 18:56:51 GMT -[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-storybook_v9.0.0-rc.1..@fluentui/react-storybook_v9.0.0-rc.1) - -### Changes - -- Bump @fluentui/react-provider to v9.0.0-rc.11 ([PR #23146](https://github.com/microsoft/fluentui/pull/23146) by beachball) -- Bump @fluentui/react-theme to v9.0.0-rc.9 ([PR #23146](https://github.com/microsoft/fluentui/pull/23146) by beachball) - -## [9.0.0-rc.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-storybook_v9.0.0-rc.1) - -Mon, 23 May 2022 12:14:24 GMT -[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-storybook_v9.0.0-rc.1..@fluentui/react-storybook_v9.0.0-rc.1) - -### Changes - -- Bump @fluentui/react-provider to v9.0.0-rc.10 ([PR #23030](https://github.com/microsoft/fluentui/pull/23030) by beachball) -- Bump @fluentui/react-theme to v9.0.0-rc.8 ([PR #23030](https://github.com/microsoft/fluentui/pull/23030) by beachball) - -## [9.0.0-rc.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-storybook_v9.0.0-rc.1) - -Thu, 05 May 2022 18:26:30 GMT -[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-storybook_v9.0.0-rc.1..@fluentui/react-storybook_v9.0.0-rc.1) - -### Changes - -- Bump @fluentui/react-provider to v9.0.0-rc.9 ([PR #22857](https://github.com/microsoft/fluentui/pull/22857) by beachball) -- Bump @fluentui/react-theme to v9.0.0-rc.7 ([PR #22857](https://github.com/microsoft/fluentui/pull/22857) by beachball) - -## [9.0.0-rc.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-storybook_v9.0.0-rc.1) - -Wed, 04 May 2022 13:26:54 GMT -[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-storybook_v9.0.0-rc.1..@fluentui/react-storybook_v9.0.0-rc.1) - -### Changes - -- Bump @fluentui/react-provider to v9.0.0-rc.8 ([PR #22786](https://github.com/microsoft/fluentui/pull/22786) by beachball) -- Bump @fluentui/react-theme to v9.0.0-rc.6 ([PR #22786](https://github.com/microsoft/fluentui/pull/22786) by beachball) - -## [9.0.0-rc.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-storybook_v9.0.0-rc.1) - -Mon, 25 Apr 2022 09:32:19 GMT -[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-storybook_v9.0.0-rc.1..@fluentui/react-storybook_v9.0.0-rc.1) - -### Changes - -- Bump @fluentui/react-provider to v9.0.0-rc.7 ([PR #22601](https://github.com/microsoft/fluentui/pull/22601) by beachball) - -## [9.0.0-rc.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-storybook_v9.0.0-rc.1) - -Tue, 19 Apr 2022 19:17:29 GMT -[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-storybook_v9.0.0-rc.1..@fluentui/react-storybook_v9.0.0-rc.1) - -### Changes - -- Bump @fluentui/react-provider to v9.0.0-rc.6 ([PR #21995](https://github.com/microsoft/fluentui/pull/21995) by beachball) -- Bump @fluentui/react-theme to v9.0.0-rc.5 ([PR #21995](https://github.com/microsoft/fluentui/pull/21995) by beachball) - -## [9.0.0-rc.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-storybook_v9.0.0-rc.1) - -Fri, 04 Mar 2022 05:17:40 GMT -[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-storybook_v9.0.0-rc.1..@fluentui/react-storybook_v9.0.0-rc.1) - -### Changes - -- Bump @fluentui/react-provider to v9.0.0-rc.5 ([PR #21947](https://github.com/microsoft/fluentui/pull/21947) by beachball) -- Bump @fluentui/react-theme to v9.0.0-rc.4 ([PR #21947](https://github.com/microsoft/fluentui/pull/21947) by beachball) - -## [9.0.0-rc.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-storybook_v9.0.0-rc.1) - -Tue, 01 Mar 2022 02:17:40 GMT -[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-storybook_v9.0.0-rc.1..@fluentui/react-storybook_v9.0.0-rc.1) - -### Changes - -- Bump @fluentui/react-provider to v9.0.0-rc.4 ([PR #21884](https://github.com/microsoft/fluentui/pull/21884) by beachball) - -## [9.0.0-rc.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-storybook_v9.0.0-rc.1) - -Fri, 18 Feb 2022 13:35:38 GMT -[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-storybook_v9.0.0-rc.0..@fluentui/react-storybook_v9.0.0-rc.1) - -### Changes - -- Bump @fluentui/react-provider to v9.0.0-rc.3 ([PR #21800](https://github.com/microsoft/fluentui/pull/21800) by beachball) -- Bump @fluentui/react-theme to v9.0.0-rc.3 ([PR #21800](https://github.com/microsoft/fluentui/pull/21800) by beachball) - -## [9.0.0-rc.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-storybook_v9.0.0-rc.0) - -Thu, 10 Feb 2022 08:52:26 GMT -[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-storybook_v9.0.0-beta.0..@fluentui/react-storybook_v9.0.0-rc.0) - -### Changes - -- Bump @fluentui/react-provider to v9.0.0-rc.1 ([commit](https://github.com/microsoft/fluentui/commit/e6c855f6d9019d6c73668d15fc9bc3a13291a6c8) by beachball) -- Bump @fluentui/react-theme to v9.0.0-rc.1 ([commit](https://github.com/microsoft/fluentui/commit/e6c855f6d9019d6c73668d15fc9bc3a13291a6c8) by beachball) - -## [9.0.0-beta.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-storybook_v9.0.0-beta.0) - -Thu, 25 Nov 2021 08:34:17 GMT -[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-storybook_v9.0.0-beta.0..@fluentui/react-storybook_v9.0.0-beta.0) - -### Changes - -- Bump @fluentui/react-provider to v9.0.0-beta.5 ([PR #20762](https://github.com/microsoft/fluentui/pull/20762) by beachball) -- Bump @fluentui/react-theme to v9.0.0-beta.4 ([PR #20762](https://github.com/microsoft/fluentui/pull/20762) by beachball) -- Bump @fluentui/jest-serializer-make-styles to v9.0.0-beta.4 ([PR #20762](https://github.com/microsoft/fluentui/pull/20762) by beachball) - -## [9.0.0-beta.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-storybook_v9.0.0-beta.0) - -Fri, 12 Nov 2021 13:25:34 GMT -[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-storybook_v9.0.0-beta.0..@fluentui/react-storybook_v9.0.0-beta.0) - -### Changes - -- Bump @fluentui/react-provider to v9.0.0-beta.4 ([PR #20583](https://github.com/microsoft/fluentui/pull/20583) by beachball) -- Bump @fluentui/react-theme to v9.0.0-beta.3 ([PR #20583](https://github.com/microsoft/fluentui/pull/20583) by beachball) -- Bump @fluentui/jest-serializer-make-styles to v9.0.0-beta.3 ([PR #20583](https://github.com/microsoft/fluentui/pull/20583) by beachball) - -## [9.0.0-beta.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-storybook_v9.0.0-beta.0) - -Wed, 27 Oct 2021 12:14:24 GMT -[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-storybook_v9.0.0-beta.0..@fluentui/react-storybook_v9.0.0-beta.0) - -### Changes - -- Bump @fluentui/react-provider to v9.0.0-beta.3 ([PR #20353](https://github.com/microsoft/fluentui/pull/20353) by beachball) -- Bump @fluentui/react-theme to v9.0.0-beta.2 ([PR #20353](https://github.com/microsoft/fluentui/pull/20353) by beachball) -- Bump @fluentui/jest-serializer-make-styles to v9.0.0-beta.2 ([PR #20353](https://github.com/microsoft/fluentui/pull/20353) by beachball) - -## [9.0.0-beta.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-storybook_v9.0.0-beta.0) - -Tue, 12 Oct 2021 19:45:58 GMT -[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-storybook_v9.0.0-beta.0..@fluentui/react-storybook_v9.0.0-beta.0) - -### Changes - -- Bump @fluentui/react-provider to v9.0.0-beta.2 ([PR #20132](https://github.com/microsoft/fluentui/pull/20132) by beachball) - -## [9.0.0-beta.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-storybook_v9.0.0-beta.0) - -Wed, 06 Oct 2021 10:37:22 GMT -[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-storybook_v9.0.0-alpha.0..@fluentui/react-storybook_v9.0.0-beta.0) - -### Changes - -- Bump @fluentui/react-provider to v9.0.0-beta.1 ([PR #20106](https://github.com/microsoft/fluentui/pull/20106) by beachball) -- Bump @fluentui/react-theme to v9.0.0-beta.1 ([PR #20106](https://github.com/microsoft/fluentui/pull/20106) by beachball) -- Bump @fluentui/jest-serializer-make-styles to v9.0.0-beta.1 ([PR #20106](https://github.com/microsoft/fluentui/pull/20106) by beachball) - -## [9.0.0-alpha.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-storybook_v9.0.0-alpha.0) - -Tue, 05 Oct 2021 12:47:58 GMT -[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-storybook_v9.0.0-alpha.0..@fluentui/react-storybook_v9.0.0-alpha.0) - -### Changes - -- Bump @fluentui/react-provider to v9.0.0-alpha.90 ([PR #20108](https://github.com/microsoft/fluentui/pull/20108) by beachball) -- Bump @fluentui/jest-serializer-make-styles to v9.0.0-alpha.53 ([PR #20108](https://github.com/microsoft/fluentui/pull/20108) by beachball) - -## [9.0.0-alpha.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-storybook_v9.0.0-alpha.0) - -Tue, 05 Oct 2021 09:28:07 GMT -[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-storybook_v9.0.0-alpha.0..@fluentui/react-storybook_v9.0.0-alpha.0) - -### Changes - -- Bump @fluentui/react-provider to v9.0.0-alpha.89 ([PR #20081](https://github.com/microsoft/fluentui/pull/20081) by beachball) -- Bump @fluentui/jest-serializer-make-styles to v9.0.0-alpha.52 ([PR #20081](https://github.com/microsoft/fluentui/pull/20081) by beachball) - -## [9.0.0-alpha.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-storybook_v9.0.0-alpha.0) - -Fri, 01 Oct 2021 14:13:08 GMT -[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-storybook_v9.0.0-alpha.0..@fluentui/react-storybook_v9.0.0-alpha.0) - -### Changes - -- Bump @fluentui/react-provider to v9.0.0-alpha.88 ([PR #20069](https://github.com/microsoft/fluentui/pull/20069) by beachball) -- Bump @fluentui/react-theme to v9.0.0-alpha.26 ([PR #20069](https://github.com/microsoft/fluentui/pull/20069) by beachball) -- Bump @fluentui/jest-serializer-make-styles to v9.0.0-alpha.51 ([PR #20069](https://github.com/microsoft/fluentui/pull/20069) by beachball) - -## [9.0.0-alpha.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-storybook_v9.0.0-alpha.0) - -Fri, 01 Oct 2021 09:44:56 GMT -[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-storybook_v9.0.0-alpha.0..@fluentui/react-storybook_v9.0.0-alpha.0) - -### Changes - -- Bump @fluentui/react-provider to v9.0.0-alpha.86 ([PR #19990](https://github.com/microsoft/fluentui/pull/19990) by beachball) - -## [9.0.0-alpha.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-storybook_v9.0.0-alpha.0) - -Wed, 29 Sep 2021 08:06:11 GMT -[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-storybook_v9.0.0-alpha.0..@fluentui/react-storybook_v9.0.0-alpha.0) - -### Changes - -- Bump @fluentui/react-provider to v9.0.0-alpha.85 ([PR #19660](https://github.com/microsoft/fluentui/pull/19660) by beachball) -- Bump @fluentui/react-theme to v9.0.0-alpha.24 ([PR #19660](https://github.com/microsoft/fluentui/pull/19660) by beachball) -- Bump @fluentui/jest-serializer-make-styles to v9.0.0-alpha.49 ([PR #19660](https://github.com/microsoft/fluentui/pull/19660) by beachball) - -## [9.0.0-alpha.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-storybook_v9.0.0-alpha.0) - -Mon, 27 Sep 2021 08:06:00 GMT -[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-storybook_v9.0.0-alpha.0..@fluentui/react-storybook_v9.0.0-alpha.0) - -### Changes - -- Bump @fluentui/react-provider to v9.0.0-alpha.84 ([PR #19981](https://github.com/microsoft/fluentui/pull/19981) by beachball) -- Bump @fluentui/jest-serializer-make-styles to v9.0.0-alpha.48 ([PR #19981](https://github.com/microsoft/fluentui/pull/19981) by beachball) - -## [9.0.0-alpha.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-storybook_v9.0.0-alpha.0) - -Fri, 24 Sep 2021 09:17:17 GMT -[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-storybook_v9.0.0-alpha.0..@fluentui/react-storybook_v9.0.0-alpha.0) - -### Changes - -- Bump @fluentui/react-provider to v9.0.0-alpha.83 ([PR #19950](https://github.com/microsoft/fluentui/pull/19950) by beachball) -- Bump @fluentui/jest-serializer-make-styles to v9.0.0-alpha.47 ([PR #19950](https://github.com/microsoft/fluentui/pull/19950) by beachball) - -## [9.0.0-alpha.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-storybook_v9.0.0-alpha.0) - -Thu, 23 Sep 2021 08:21:34 GMT -[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-storybook_v9.0.0-alpha.0..@fluentui/react-storybook_v9.0.0-alpha.0) - -### Changes - -- Bump @fluentui/react-provider to v9.0.0-alpha.82 ([commit](https://github.com/microsoft/fluentui/commit/95682da34c48813f7658032ae490d21d2f363b90) by beachball) -- Bump @fluentui/jest-serializer-make-styles to v9.0.0-alpha.46 ([commit](https://github.com/microsoft/fluentui/commit/95682da34c48813f7658032ae490d21d2f363b90) by beachball) - -## [9.0.0-alpha.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-storybook_v9.0.0-alpha.0) - -Wed, 22 Sep 2021 10:10:07 GMT -[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-storybook_v9.0.0-alpha.0..@fluentui/react-storybook_v9.0.0-alpha.0) - -### Changes - -- Bump @fluentui/react-provider to v9.0.0-alpha.81 ([commit](https://github.com/microsoft/fluentui/commit/bc3f1ec72fc7784a558b0dd6598ee0662f4649c1) by beachball) -- Bump @fluentui/jest-serializer-make-styles to v9.0.0-alpha.45 ([commit](https://github.com/microsoft/fluentui/commit/bc3f1ec72fc7784a558b0dd6598ee0662f4649c1) by beachball) - -## [9.0.0-alpha.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-storybook_v9.0.0-alpha.0) - -Tue, 21 Sep 2021 07:42:34 GMT -[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-storybook_v9.0.0-alpha.0..@fluentui/react-storybook_v9.0.0-alpha.0) - -### Changes - -- Bump @fluentui/react-provider to v9.0.0-alpha.80 ([PR #19865](https://github.com/microsoft/fluentui/pull/19865) by beachball) -- Bump @fluentui/react-theme to v9.0.0-alpha.23 ([PR #19865](https://github.com/microsoft/fluentui/pull/19865) by beachball) -- Bump @fluentui/jest-serializer-make-styles to v9.0.0-alpha.44 ([PR #19865](https://github.com/microsoft/fluentui/pull/19865) by beachball) - -## [9.0.0-alpha.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-storybook_v9.0.0-alpha.0) - -Mon, 20 Sep 2021 07:36:26 GMT -[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-storybook_v9.0.0-alpha.0..@fluentui/react-storybook_v9.0.0-alpha.0) - -### Changes - -- Bump @fluentui/react-storybook to v9.0.0-alpha.0 ([PR #19844](https://github.com/microsoft/fluentui/pull/19844) by lingfangao@hotmail.com) - -## [9.0.0-alpha.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-storybook_v9.0.0-alpha.0) - -Fri, 17 Sep 2021 07:35:26 GMT -[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-storybook_v9.0.0-alpha.0..@fluentui/react-storybook_v9.0.0-alpha.0) - -### Changes - -- Bump @fluentui/react-storybook to v9.0.0-alpha.0 ([PR #19840](https://github.com/microsoft/fluentui/pull/19840) by Humberto.Morimoto@microsoft.com) - -## [9.0.0-alpha.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-storybook_v9.0.0-alpha.0) - -Thu, 16 Sep 2021 07:38:39 GMT -[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-storybook_v9.0.0-alpha.0..@fluentui/react-storybook_v9.0.0-alpha.0) - -### Changes - -- Bump @fluentui/react-storybook to v9.0.0-alpha.0 ([PR #19815](https://github.com/microsoft/fluentui/pull/19815) by behowell@microsoft.com) - -## [9.0.0-alpha.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-storybook_v9.0.0-alpha.0) - -Tue, 14 Sep 2021 20:09:02 GMT -[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-storybook_v9.0.0-alpha.0..@fluentui/react-storybook_v9.0.0-alpha.0) - -### Changes - -- Bump @fluentui/react-storybook to v9.0.0-alpha.0 ([PR #19155](https://github.com/microsoft/fluentui/pull/19155) by bsunderhus@microsoft.com) - -## [9.0.0-alpha.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-storybook_v9.0.0-alpha.0) - -Fri, 10 Sep 2021 16:31:53 GMT -[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-storybook_v9.0.0-alpha.0..@fluentui/react-storybook_v9.0.0-alpha.0) - -### Changes - -- Bump @fluentui/react-storybook to v9.0.0-alpha.0 ([PR #19748](https://github.com/microsoft/fluentui/pull/19748) by lingfangao@hotmail.com) - -## [9.0.0-alpha.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-storybook_v9.0.0-alpha.0) - -Fri, 10 Sep 2021 07:39:51 GMT -[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-storybook_v9.0.0-alpha.0..@fluentui/react-storybook_v9.0.0-alpha.0) - -### Changes - -- Bump @fluentui/react-provider to v9.0.0-alpha.74 ([PR #19642](https://github.com/microsoft/fluentui/pull/19642) by behowell@microsoft.com) - -## [9.0.0-alpha.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-storybook_v9.0.0-alpha.0) - -Mon, 06 Sep 2021 07:34:53 GMT -[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-storybook_v9.0.0-alpha.0..@fluentui/react-storybook_v9.0.0-alpha.0) - -### Changes - -- Bump @fluentui/react-provider to v9.0.0-alpha.73 ([PR #19640](https://github.com/microsoft/fluentui/pull/19640) by lingfangao@hotmail.com) - -## [9.0.0-alpha.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-storybook_v9.0.0-alpha.0) - -Thu, 02 Sep 2021 07:36:46 GMT -[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-storybook_v9.0.0-alpha.0..@fluentui/react-storybook_v9.0.0-alpha.0) - -### Changes - -- Bump @fluentui/react-provider to v9.0.0-alpha.72 ([PR #19590](https://github.com/microsoft/fluentui/pull/19590) by olfedias@microsoft.com) - -## [9.0.0-alpha.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-storybook_v9.0.0-alpha.0) - -Wed, 01 Sep 2021 07:39:56 GMT -[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-storybook_v9.0.0-alpha.0..@fluentui/react-storybook_v9.0.0-alpha.0) - -### Changes - -- Bump @fluentui/react-provider to v9.0.0-alpha.71 ([PR #19483](https://github.com/microsoft/fluentui/pull/19483) by bsunderhus@microsoft.com) - -## [9.0.0-alpha.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-storybook_v9.0.0-alpha.0) - -Tue, 31 Aug 2021 07:37:47 GMT -[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-storybook_v9.0.0-alpha.0..@fluentui/react-storybook_v9.0.0-alpha.0) - -### Changes - -- Bump @fluentui/react-provider to v9.0.0-alpha.70 ([PR #19534](https://github.com/microsoft/fluentui/pull/19534) by marata@microsoft.com) - -## [9.0.0-alpha.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-storybook_v9.0.0-alpha.0) - -Fri, 27 Aug 2021 07:33:32 GMT -[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-storybook_v9.0.0-alpha.0..@fluentui/react-storybook_v9.0.0-alpha.0) - -### Changes - -- Bump @fluentui/react-provider to v9.0.0-alpha.69 ([PR #19462](https://github.com/microsoft/fluentui/pull/19462) by olfedias@microsoft.com) - -## [9.0.0-alpha.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-storybook_v9.0.0-alpha.0) - -Thu, 26 Aug 2021 07:35:43 GMT -[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-storybook_v9.0.0-alpha.0..@fluentui/react-storybook_v9.0.0-alpha.0) - -### Changes - -- Bump @fluentui/react-provider to v9.0.0-alpha.68 ([PR #19486](https://github.com/microsoft/fluentui/pull/19486) by martinhochel@microsoft.com) - -## [9.0.0-alpha.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-storybook_v9.0.0-alpha.0) - -Thu, 19 Aug 2021 07:41:35 GMT -[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-storybook_v9.0.0-alpha.0..@fluentui/react-storybook_v9.0.0-alpha.0) - -### Changes - -- Bump @fluentui/react-provider to v9.0.0-alpha.65 ([PR #19273](https://github.com/microsoft/fluentui/pull/19273) by bsunderhus@microsoft.com) - -## [9.0.0-alpha.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-storybook_v9.0.0-alpha.0) - -Fri, 13 Aug 2021 07:36:34 GMT -[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-storybook_v9.0.0-alpha.0..@fluentui/react-storybook_v9.0.0-alpha.0) - -### Changes - -- Bump @fluentui/react-provider to v9.0.0-alpha.64 ([PR #19341](https://github.com/microsoft/fluentui/pull/19341) by olfedias@microsoft.com) - -## [9.0.0-alpha.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-storybook_v9.0.0-alpha.0) - -Tue, 10 Aug 2021 07:33:28 GMT -[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-storybook_v9.0.0-alpha.0..@fluentui/react-storybook_v9.0.0-alpha.0) - -### Changes - -- Bump @fluentui/react-provider to v9.0.0-alpha.63 ([PR #19249](https://github.com/microsoft/fluentui/pull/19249) by olfedias@microsoft.com) - -## [9.0.0-alpha.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-storybook_v9.0.0-alpha.0) - -Fri, 06 Aug 2021 07:35:14 GMT -[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-storybook_v9.0.0-alpha.0..@fluentui/react-storybook_v9.0.0-alpha.0) - -### Changes - -- Bump @fluentui/react-provider to v9.0.0-alpha.62 ([PR #19281](https://github.com/microsoft/fluentui/pull/19281) by jspurlin@microsoft.com) - -## [9.0.0-alpha.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-storybook_v9.0.0-alpha.0) - -Tue, 03 Aug 2021 07:39:30 GMT -[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-storybook_v9.0.0-alpha.0..@fluentui/react-storybook_v9.0.0-alpha.0) - -### Patches - -- Bump @fluentui/eslint-plugin to v1.3.3 ([PR #19169](https://github.com/microsoft/fluentui/pull/19169) by behowell@microsoft.com) -- Bump @fluentui/scripts to v1.0.0 ([PR #19169](https://github.com/microsoft/fluentui/pull/19169) by behowell@microsoft.com) - -### Changes - -- Bump @fluentui/react-provider to v9.0.0-alpha.61 ([PR #19169](https://github.com/microsoft/fluentui/pull/19169) by behowell@microsoft.com) - -## [9.0.0-alpha.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-storybook_v9.0.0-alpha.0) - -Mon, 02 Aug 2021 07:36:20 GMT -[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-storybook_v9.0.0-alpha.0..@fluentui/react-storybook_v9.0.0-alpha.0) - -### Changes - -- Bump @fluentui/react-provider to v9.0.0-alpha.60 ([PR #19204](https://github.com/microsoft/fluentui/pull/19204) by lingfan.gao@microsoft.com) - -## [9.0.0-alpha.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-storybook_v9.0.0-alpha.0) - -Mon, 26 Jul 2021 07:37:30 GMT -[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-storybook_v9.0.0-alpha.0..@fluentui/react-storybook_v9.0.0-alpha.0) - -### Changes - -- Bump @fluentui/react-provider to v9.0.0-alpha.59 ([PR #18968](https://github.com/microsoft/fluentui/pull/18968) by olfedias@microsoft.com) - -## [9.0.0-alpha.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-storybook_v9.0.0-alpha.0) - -Fri, 23 Jul 2021 07:38:19 GMT -[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-storybook_v9.0.0-alpha.0..@fluentui/react-storybook_v9.0.0-alpha.0) - -### Changes - -- Bump @fluentui/react-provider to v9.0.0-alpha.58 ([PR #19041](https://github.com/microsoft/fluentui/pull/19041) by miroslav.stastny@microsoft.com) - -## [9.0.0-alpha.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-storybook_v9.0.0-alpha.0) - -Thu, 22 Jul 2021 07:36:55 GMT -[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-storybook_v9.0.0-alpha.0..@fluentui/react-storybook_v9.0.0-alpha.0) - -### Changes - -- Bump @fluentui/react-provider to v9.0.0-alpha.57 ([PR #19023](https://github.com/microsoft/fluentui/pull/19023) by behowell@microsoft.com) - -## [9.0.0-alpha.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-storybook_v9.0.0-alpha.0) - -Thu, 15 Jul 2021 07:36:18 GMT -[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-storybook_v9.0.0-alpha.0..@fluentui/react-storybook_v9.0.0-alpha.0) - -### Changes - -- Bump @fluentui/react-provider to v9.0.0-alpha.56 ([PR #18861](https://github.com/microsoft/fluentui/pull/18861) by bsunderhus@microsoft.com) - -## [9.0.0-alpha.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-storybook_v9.0.0-alpha.0) - -Tue, 13 Jul 2021 22:32:58 GMT -[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-storybook_v9.0.0-alpha.0..@fluentui/react-storybook_v9.0.0-alpha.0) - -### Changes - -- Bump @fluentui/react-provider to v9.0.0-alpha.55 ([PR #18925](https://github.com/microsoft/fluentui/pull/18925) by elcraig@microsoft.com) - -## [9.0.0-alpha.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-storybook_v9.0.0-alpha.0) - -Tue, 13 Jul 2021 07:35:36 GMT -[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-storybook_v9.0.0-alpha.0..@fluentui/react-storybook_v9.0.0-alpha.0) - -### Changes - -- Bump @fluentui/react-provider to v9.0.0-alpha.54 ([PR #18560](https://github.com/microsoft/fluentui/pull/18560) by behowell@microsoft.com) - -## [9.0.0-alpha.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-storybook_v9.0.0-alpha.0) - -Fri, 09 Jul 2021 07:39:31 GMT -[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-storybook_v9.0.0-alpha.0..@fluentui/react-storybook_v9.0.0-alpha.0) - -### Patches - -- Bump @fluentui/eslint-plugin to v1.3.2 ([PR #18808](https://github.com/microsoft/fluentui/pull/18808) by martinhochel@microsoft.com) -- Bump @fluentui/scripts to v1.0.0 ([PR #18808](https://github.com/microsoft/fluentui/pull/18808) by martinhochel@microsoft.com) - -### Changes - -- Bump @fluentui/react-provider to v9.0.0-alpha.53 ([PR #18808](https://github.com/microsoft/fluentui/pull/18808) by martinhochel@microsoft.com) - -## [9.0.0-alpha.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-storybook_v9.0.0-alpha.0) - -Fri, 02 Jul 2021 23:15:55 GMT -[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-storybook_v9.0.0-alpha.0..@fluentui/react-storybook_v9.0.0-alpha.0) - -### Changes - -- Bump @fluentui/react-provider to v9.0.0-alpha.52 ([PR #18721](https://github.com/microsoft/fluentui/pull/18721) by bsunderhus@microsoft.com) - -## [9.0.0-alpha.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-storybook_v9.0.0-alpha.0) - -Fri, 02 Jul 2021 07:37:06 GMT -[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-storybook_v9.0.0-alpha.0..@fluentui/react-storybook_v9.0.0-alpha.0) - -### Changes - -- Bump @fluentui/react-provider to v9.0.0-alpha.51 ([PR #18796](https://github.com/microsoft/fluentui/pull/18796) by bsunderhus@microsoft.com) - -## [9.0.0-alpha.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-storybook_v9.0.0-alpha.0) - -Thu, 01 Jul 2021 07:35:05 GMT -[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-storybook_v9.0.0-alpha.0..@fluentui/react-storybook_v9.0.0-alpha.0) - -### Changes - -- Bump @fluentui/react-provider to v9.0.0-alpha.50 ([PR #18768](https://github.com/microsoft/fluentui/pull/18768) by Humberto.Morimoto@microsoft.com) - -## [9.0.0-alpha.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-storybook_v9.0.0-alpha.0) - -Wed, 30 Jun 2021 07:38:35 GMT -[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-storybook_v9.0.0-alpha.0..@fluentui/react-storybook_v9.0.0-alpha.0) - -### Changes - -- Bump @fluentui/react-provider to v9.0.0-alpha.49 ([PR #18695](https://github.com/microsoft/fluentui/pull/18695) by tristan.watanabe@gmail.com) - -## [9.0.0-alpha.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-storybook_v9.0.0-alpha.0) - -Tue, 29 Jun 2021 07:33:32 GMT -[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-storybook_v9.0.0-alpha.0..@fluentui/react-storybook_v9.0.0-alpha.0) - -### Changes - -- Bump @fluentui/react-provider to v9.0.0-alpha.48 ([PR #18698](https://github.com/microsoft/fluentui/pull/18698) by lingfan.gao@microsoft.com) - -## [9.0.0-alpha.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-storybook_v9.0.0-alpha.0) - -Tue, 22 Jun 2021 07:35:11 GMT -[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-storybook_v9.0.0-alpha.0..@fluentui/react-storybook_v9.0.0-alpha.0) - -### Changes - -- Bump @fluentui/react-provider to v9.0.0-alpha.47 ([PR #18397](https://github.com/microsoft/fluentui/pull/18397) by olfedias@microsoft.com) - -## [9.0.0-alpha.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-storybook_v9.0.0-alpha.0) - -Tue, 15 Jun 2021 07:40:20 GMT -[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-storybook_v9.0.0-alpha.0..@fluentui/react-storybook_v9.0.0-alpha.0) - -### Changes - -- Bump @fluentui/react-provider to v9.0.0-alpha.46 ([PR #18490](https://github.com/microsoft/fluentui/pull/18490) by lingfan.gao@microsoft.com) - -## [9.0.0-alpha.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-storybook_v9.0.0-alpha.0) - -Mon, 07 Jun 2021 07:38:15 GMT -[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-storybook_v9.0.0-alpha.0..@fluentui/react-storybook_v9.0.0-alpha.0) - -### Patches - -- Bump @fluentui/eslint-plugin to v1.3.1 ([PR #18437](https://github.com/microsoft/fluentui/pull/18437) by martinhochel@microsoft.com) -- Bump @fluentui/scripts to v1.0.0 ([PR #18437](https://github.com/microsoft/fluentui/pull/18437) by martinhochel@microsoft.com) - -### Changes - -- Bump @fluentui/react-provider to v9.0.0-alpha.45 ([PR #18437](https://github.com/microsoft/fluentui/pull/18437) by martinhochel@microsoft.com) - -## [9.0.0-alpha.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-storybook_v9.0.0-alpha.0) - -Fri, 04 Jun 2021 07:37:23 GMT -[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-storybook_v9.0.0-alpha.0..@fluentui/react-storybook_v9.0.0-alpha.0) - -### Changes - -- Bump @fluentui/react-provider to v9.0.0-alpha.44 ([PR #18168](https://github.com/microsoft/fluentui/pull/18168) by Humberto.Morimoto@microsoft.com) - -## [9.0.0-alpha.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-storybook_v9.0.0-alpha.0) - -Thu, 03 Jun 2021 07:36:03 GMT -[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-storybook_v9.0.0-alpha.0..@fluentui/react-storybook_v9.0.0-alpha.0) - -### Changes - -- Bump @fluentui/react-provider to v9.0.0-alpha.43 ([PR #18401](https://github.com/microsoft/fluentui/pull/18401) by martinhochel@microsoft.com) - -## [9.0.0-alpha.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-storybook_v9.0.0-alpha.0) - -Wed, 02 Jun 2021 07:37:15 GMT -[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-storybook_v9.0.0-alpha.0..@fluentui/react-storybook_v9.0.0-alpha.0) - -### Changes - -- Bump @fluentui/react-provider to v9.0.0-alpha.42 ([PR #18404](https://github.com/microsoft/fluentui/pull/18404) by bsunderhus@microsoft.com) - -## [9.0.0-alpha.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-storybook_v9.0.0-alpha.0) - -Wed, 26 May 2021 07:35:43 GMT -[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-storybook_v9.0.0-alpha.0..@fluentui/react-storybook_v9.0.0-alpha.0) - -### Changes - -- Bump @fluentui/react-provider to v9.0.0-alpha.41 ([PR #18323](https://github.com/microsoft/fluentui/pull/18323) by lingfan.gao@microsoft.com) - -## [9.0.0-alpha.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-storybook_v9.0.0-alpha.0) - -Fri, 21 May 2021 07:34:54 GMT -[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-storybook_v9.0.0-alpha.0..@fluentui/react-storybook_v9.0.0-alpha.0) - -### Changes - -- Bump @fluentui/react-provider to v9.0.0-alpha.40 ([PR #18238](https://github.com/microsoft/fluentui/pull/18238) by miroslav.stastny@microsoft.com) - -## [9.0.0-alpha.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-storybook_v9.0.0-alpha.0) - -Thu, 20 May 2021 07:41:54 GMT -[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-storybook_v9.0.0-alpha.0..@fluentui/react-storybook_v9.0.0-alpha.0) - -### Patches - -- Bump @fluentui/eslint-plugin to v1.3.0 ([PR #18024](https://github.com/microsoft/fluentui/pull/18024) by elcraig@microsoft.com) -- Bump @fluentui/scripts to v1.0.0 ([PR #18024](https://github.com/microsoft/fluentui/pull/18024) by elcraig@microsoft.com) - -### Changes - -- Bump @fluentui/react-provider to v9.0.0-alpha.39 ([PR #18024](https://github.com/microsoft/fluentui/pull/18024) by elcraig@microsoft.com) - -## [9.0.0-alpha.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-storybook_v9.0.0-alpha.0) - -Wed, 19 May 2021 07:34:20 GMT -[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-storybook_v9.0.0-alpha.0..@fluentui/react-storybook_v9.0.0-alpha.0) - -### Changes - -- Bump @fluentui/react-provider to v9.0.0-alpha.38 ([PR #18037](https://github.com/microsoft/fluentui/pull/18037) by olfedias@microsoft.com) - -## [9.0.0-alpha.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-storybook_v9.0.0-alpha.0) - -Tue, 18 May 2021 07:34:38 GMT -[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-storybook_v9.0.0-alpha.0..@fluentui/react-storybook_v9.0.0-alpha.0) - -### Changes - -- Bump @fluentui/react-provider to v9.0.0-alpha.37 ([PR #18171](https://github.com/microsoft/fluentui/pull/18171) by olfedias@microsoft.com) - -## [9.0.0-alpha.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-storybook_v9.0.0-alpha.0) - -Thu, 13 May 2021 07:36:55 GMT -[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-storybook_v9.0.0-alpha.0..@fluentui/react-storybook_v9.0.0-alpha.0) - -### Changes - -- Bump @fluentui/react-provider to v9.0.0-alpha.36 ([PR #18039](https://github.com/microsoft/fluentui/pull/18039) by olfedias@microsoft.com) - -## [9.0.0-alpha.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-storybook_v9.0.0-alpha.0) - -Wed, 12 May 2021 07:36:20 GMT -[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-storybook_v9.0.0-alpha.0..@fluentui/react-storybook_v9.0.0-alpha.0) - -### Changes - -- Bump @fluentui/jest-serializer-make-styles to v9.0.0-alpha.9 ([PR #18097](https://github.com/microsoft/fluentui/pull/18097) by olfedias@microsoft.com) - -## [9.0.0-alpha.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-storybook_v9.0.0-alpha.0) - -Mon, 10 May 2021 07:36:07 GMT -[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-storybook_v9.0.0-alpha.0..@fluentui/react-storybook_v9.0.0-alpha.0) - -### Changes - -- Bump @fluentui/react-provider to v9.0.0-alpha.34 ([PR #18095](https://github.com/microsoft/fluentui/pull/18095) by olfedias@microsoft.com) - -## [9.0.0-alpha.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-storybook_v9.0.0-alpha.0) - -Wed, 05 May 2021 07:36:50 GMT -[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-storybook_v9.0.0-alpha.0..@fluentui/react-storybook_v9.0.0-alpha.0) - -### Changes - -- Bump @fluentui/react-provider to v9.0.0-alpha.33 ([PR #18038](https://github.com/microsoft/fluentui/pull/18038) by olfedias@microsoft.com) - -## [9.0.0-alpha.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-storybook_v9.0.0-alpha.0) - -Tue, 04 May 2021 07:36:35 GMT -[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-storybook_v9.0.0-alpha.0..@fluentui/react-storybook_v9.0.0-alpha.0) - -### Changes - -- Bump @fluentui/react-provider to v9.0.0-alpha.32 ([PR #18015](https://github.com/microsoft/fluentui/pull/18015) by lingfan.gao@microsoft.com) - -## [9.0.0-alpha.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-storybook_v9.0.0-alpha.0) - -Mon, 03 May 2021 07:45:19 GMT -[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-storybook_v9.0.0-alpha.0..@fluentui/react-storybook_v9.0.0-alpha.0) - -### Changes - -- Bump @fluentui/react-provider to v9.0.0-alpha.31 ([PR #18005](https://github.com/microsoft/fluentui/pull/18005) by lingfan.gao@microsoft.com) - -## [9.0.0-alpha.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-storybook_v9.0.0-alpha.0) - -Fri, 30 Apr 2021 07:42:23 GMT -[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-storybook_v9.0.0-alpha.0..@fluentui/react-storybook_v9.0.0-alpha.0) - -### Patches - -- Bump @fluentui/eslint-plugin to v1.2.0 ([PR #17932](https://github.com/microsoft/fluentui/pull/17932) by joschect@microsoft.com) -- Bump @fluentui/scripts to v1.0.0 ([PR #17932](https://github.com/microsoft/fluentui/pull/17932) by joschect@microsoft.com) - -### Changes - -- Bump @fluentui/jest-serializer-make-styles to v9.0.0-alpha.6 ([PR #17932](https://github.com/microsoft/fluentui/pull/17932) by joschect@microsoft.com) - -## [9.0.0-alpha.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-storybook_v9.0.0-alpha.0) - -Wed, 28 Apr 2021 07:32:59 GMT -[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-storybook_v9.0.0-alpha.0..@fluentui/react-storybook_v9.0.0-alpha.0) - -### Changes - -- Bump @fluentui/react-provider to v9.0.0-alpha.29 ([PR #17971](https://github.com/microsoft/fluentui/pull/17971) by olfedias@microsoft.com) - -## [9.0.0-alpha.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-storybook_v9.0.0-alpha.0) - -Tue, 27 Apr 2021 07:34:03 GMT - -### Changes - -- Bump @fluentui/react-provider to v9.0.0-alpha.28 ([PR #17922](https://github.com/microsoft/fluentui/pull/17922) by bsunderhus@microsoft.com) diff --git a/packages/react-components/react-storybook/LICENSE b/packages/react-components/react-storybook/LICENSE deleted file mode 100644 index fcd44950ef173e..00000000000000 --- a/packages/react-components/react-storybook/LICENSE +++ /dev/null @@ -1,15 +0,0 @@ -@fluentui/react-storybook - -Copyright (c) Microsoft Corporation - -All rights reserved. - -MIT License - -Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the ""Software""), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED *AS IS*, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - -Note: Usage of the fonts and icons referenced in Fluent UI React is subject to the terms listed at https://aka.ms/fluentui-assets-license diff --git a/packages/react-components/react-storybook/README.md b/packages/react-components/react-storybook/README.md deleted file mode 100644 index bdc825fa64b223..00000000000000 --- a/packages/react-components/react-storybook/README.md +++ /dev/null @@ -1,29 +0,0 @@ -# @fluentui/react-storybook - -**Storybook addons and utils for Fluent UI React [Fluent UI React](https://developer.microsoft.com/en-us/fluentui)** - -> ⚠️ This is not production-ready and **should never be used in product**. - -## Install - -```sh -yarn add -D @fluentui/react-storybook - -# you'll need to install following storybook packages on your own as they are peerDependencies - -yarn add -D @storybook/addons @storybook/addon-knobs -``` - -## Usage - -You need to register fluentui decorators on your particular level (global/story/component story). - -```js -// @filename: .storybook/preview.js - -import { withKnobs } from '@storybook/addon-knobs'; -import { withStrictMode } from '@fluentui/react-storybook'; - -// Register decorators on global level -export const decorators = [withKnobs, withStrictMode]; -``` diff --git a/packages/react-components/react-storybook/config/api-extractor.json b/packages/react-components/react-storybook/config/api-extractor.json deleted file mode 100644 index 30897284c6b835..00000000000000 --- a/packages/react-components/react-storybook/config/api-extractor.json +++ /dev/null @@ -1,4 +0,0 @@ -{ - "$schema": "https://developer.microsoft.com/json-schemas/api-extractor/v7/api-extractor.schema.json", - "extends": "@fluentui/scripts/api-extractor/api-extractor.common.v-next.json" -} diff --git a/packages/react-components/react-storybook/config/tests.js b/packages/react-components/react-storybook/config/tests.js deleted file mode 100644 index 2e211ae9e21420..00000000000000 --- a/packages/react-components/react-storybook/config/tests.js +++ /dev/null @@ -1 +0,0 @@ -/** Jest test setup file. */ diff --git a/packages/react-components/react-storybook/etc/react-storybook.api.md b/packages/react-components/react-storybook/etc/react-storybook.api.md deleted file mode 100644 index 3b8bfcc94de544..00000000000000 --- a/packages/react-components/react-storybook/etc/react-storybook.api.md +++ /dev/null @@ -1,15 +0,0 @@ -## API Report File for "@fluentui/react-storybook" - -> Do not edit this file. It is a report generated by [API Extractor](https://api-extractor.com/). - -```ts -import * as React_2 from 'react'; - -// @public (undocumented) -export const withFluentProvider: (...args: any) => any; - -// @public (undocumented) -export const withStrictMode: (storyFn: () => React_2.ReactNode) => JSX.Element; - -// (No @packageDocumentation comment for this package) -``` diff --git a/packages/react-components/react-storybook/jest.config.js b/packages/react-components/react-storybook/jest.config.js deleted file mode 100644 index 6500389d09c09d..00000000000000 --- a/packages/react-components/react-storybook/jest.config.js +++ /dev/null @@ -1,20 +0,0 @@ -// @ts-check - -/** - * @type {import('@jest/types').Config.InitialOptions} - */ -module.exports = { - displayName: 'react-storybook', - preset: '../../../jest.preset.js', - globals: { - 'ts-jest': { - tsConfig: '/tsconfig.spec.json', - diagnostics: false, - }, - }, - transform: { - '^.+\\.tsx?$': 'ts-jest', - }, - coverageDirectory: './coverage', - setupFilesAfterEnv: ['./config/tests.js'], -}; diff --git a/packages/react-components/react-storybook/just.config.ts b/packages/react-components/react-storybook/just.config.ts deleted file mode 100644 index bcc7d9d264037c..00000000000000 --- a/packages/react-components/react-storybook/just.config.ts +++ /dev/null @@ -1,3 +0,0 @@ -import { preset } from '@fluentui/scripts'; - -preset(); diff --git a/packages/react-components/react-storybook/package.json b/packages/react-components/react-storybook/package.json deleted file mode 100644 index bd6bd6cd91854d..00000000000000 --- a/packages/react-components/react-storybook/package.json +++ /dev/null @@ -1,53 +0,0 @@ -{ - "name": "@fluentui/react-storybook", - "version": "9.0.0-rc.1", - "private": true, - "description": "Storybook addons and utils for @fluentui/react-components", - "main": "lib-commonjs/index.js", - "module": "lib/index.js", - "typings": "./dist/index.d.ts", - "sideEffects": false, - "repository": { - "type": "git", - "url": "https://github.com/microsoft/fluentui" - }, - "license": "MIT", - "scripts": { - "build": "just-scripts build", - "clean": "just-scripts clean", - "code-style": "just-scripts code-style", - "just": "just-scripts", - "lint": "just-scripts lint", - "test": "jest --passWithNoTests", - "type-check": "tsc -b tsconfig.json", - "generate-api": "tsc -p ./tsconfig.lib.json --emitDeclarationOnly && just-scripts api-extractor" - }, - "devDependencies": { - "@fluentui/eslint-plugin": "*", - "@fluentui/scripts": "^1.0.0" - }, - "dependencies": { - "@fluentui/react-provider": "^9.1.8", - "@fluentui/react-theme": "^9.1.2", - "tslib": "^2.1.0" - }, - "peerDependencies": { - "@types/react": ">=16.8.0 <19.0.0", - "react": ">=16.8.0 <19.0.0", - "@storybook/addon-knobs": "^6.0.28", - "@storybook/addons": "^6.0.28" - }, - "beachball": { - "disallowedChangeTypes": [ - "major" - ] - }, - "exports": { - ".": { - "types": "./dist/index.d.ts", - "import": "./lib/index.js", - "require": "./lib-commonjs/index.js" - }, - "./package.json": "./package.json" - } -} diff --git a/packages/react-components/react-storybook/src/decorators/index.ts b/packages/react-components/react-storybook/src/decorators/index.ts deleted file mode 100644 index ff044dce8afc1a..00000000000000 --- a/packages/react-components/react-storybook/src/decorators/index.ts +++ /dev/null @@ -1,2 +0,0 @@ -export * from './withFluentProvider'; -export * from './withStrictMode'; diff --git a/packages/react-components/react-storybook/src/decorators/withFluentProvider.tsx b/packages/react-components/react-storybook/src/decorators/withFluentProvider.tsx deleted file mode 100644 index 1d8c067875d03a..00000000000000 --- a/packages/react-components/react-storybook/src/decorators/withFluentProvider.tsx +++ /dev/null @@ -1,20 +0,0 @@ -import { makeDecorator } from '@storybook/addons'; -import { FluentProvider } from '@fluentui/react-provider'; -import * as React from 'react'; - -import { useFluentTheme } from '../knobs/useFluentTheme'; - -const ProviderWrapper: React.FunctionComponent = props => { - const { theme } = useFluentTheme(); - - return {props.children}; -}; - -export const withFluentProvider = makeDecorator({ - name: 'withFluentProvider', - parameterName: 'theme', - skipIfNoParametersOrOptions: false, - wrapper: (storyFn, context) => { - return {storyFn(context)} ; - }, -}); diff --git a/packages/react-components/react-storybook/src/decorators/withStrictMode.tsx b/packages/react-components/react-storybook/src/decorators/withStrictMode.tsx deleted file mode 100644 index f5b9daefce9c5a..00000000000000 --- a/packages/react-components/react-storybook/src/decorators/withStrictMode.tsx +++ /dev/null @@ -1,11 +0,0 @@ -import * as React from 'react'; -import { useStrictMode } from '../knobs/useStrictMode'; - -const StrictModeWrapper: React.FunctionComponent<{}> = props => { - const strictMode = useStrictMode(); - return strictMode ? {props.children} : <>{props.children}; -}; - -export const withStrictMode = (storyFn: () => React.ReactNode) => { - return {storyFn()}; -}; diff --git a/packages/react-components/react-storybook/src/index.test.ts b/packages/react-components/react-storybook/src/index.test.ts deleted file mode 100644 index 3f2fe8451a8629..00000000000000 --- a/packages/react-components/react-storybook/src/index.test.ts +++ /dev/null @@ -1,12 +0,0 @@ -import { withFluentProvider, withStrictMode } from './index'; - -describe(`public api`, () => { - describe(`decorators`, () => { - it(`should work`, () => { - const decorators = [withFluentProvider, withStrictMode]; - - // @TODO - added proper tests - expect(decorators).toBeDefined(); - }); - }); -}); diff --git a/packages/react-components/react-storybook/src/index.ts b/packages/react-components/react-storybook/src/index.ts deleted file mode 100644 index 0a74f9e4785213..00000000000000 --- a/packages/react-components/react-storybook/src/index.ts +++ /dev/null @@ -1 +0,0 @@ -export { withFluentProvider, withStrictMode } from './decorators/index'; diff --git a/packages/react-components/react-storybook/src/knobs/useFluentTheme.ts b/packages/react-components/react-storybook/src/knobs/useFluentTheme.ts deleted file mode 100644 index 0d52aafdf149ff..00000000000000 --- a/packages/react-components/react-storybook/src/knobs/useFluentTheme.ts +++ /dev/null @@ -1,30 +0,0 @@ -import { - webLightTheme, - webDarkTheme, - teamsLightTheme, - teamsDarkTheme, - teamsHighContrastTheme, -} from '@fluentui/react-theme'; -import { select } from '@storybook/addon-knobs'; -import type { Theme } from '@fluentui/react-theme'; - -const themeSelectorLabel = 'Theme'; - -const themeOptions = [ - { label: 'Web Light', theme: webLightTheme }, - { label: 'Web Dark', theme: webDarkTheme }, - { label: 'Teams Light', theme: teamsLightTheme }, - { label: 'Teams Dark', theme: teamsDarkTheme }, - { label: 'Teams High Contrast', theme: teamsHighContrastTheme }, -]; - -export const useFluentTheme = (): { label: string; theme: Theme } => { - // Casting any here due to issue: https://github.com/storybookjs/storybook/issues/9751 - const themeLabels = themeOptions.map(option => ({ label: option.label })); - // eslint-disable-next-line @typescript-eslint/no-explicit-any - const { label } = select(themeSelectorLabel, themeLabels, themeLabels[0] as any); - - // Can't trust storybook not to HTML encode theme values - const { theme } = themeOptions.find(pair => pair.label === label) || { theme: webLightTheme }; - return { label, theme }; -}; diff --git a/packages/react-components/react-storybook/src/knobs/useStrictMode.ts b/packages/react-components/react-storybook/src/knobs/useStrictMode.ts deleted file mode 100644 index 2ccd911b064d4a..00000000000000 --- a/packages/react-components/react-storybook/src/knobs/useStrictMode.ts +++ /dev/null @@ -1,3 +0,0 @@ -import { boolean } from '@storybook/addon-knobs'; - -export const useStrictMode = () => boolean('Use React.StrictMode', false); diff --git a/packages/react-components/react-storybook/tsconfig.json b/packages/react-components/react-storybook/tsconfig.json deleted file mode 100644 index 12ca516af1c5b2..00000000000000 --- a/packages/react-components/react-storybook/tsconfig.json +++ /dev/null @@ -1,22 +0,0 @@ -{ - "extends": "../../../tsconfig.base.json", - "compilerOptions": { - "target": "ES2019", - "noEmit": true, - "isolatedModules": true, - "importHelpers": true, - "jsx": "react", - "noUnusedLocals": true, - "preserveConstEnums": true - }, - "include": [], - "files": [], - "references": [ - { - "path": "./tsconfig.lib.json" - }, - { - "path": "./tsconfig.spec.json" - } - ] -} diff --git a/packages/react-components/react-storybook/tsconfig.lib.json b/packages/react-components/react-storybook/tsconfig.lib.json deleted file mode 100644 index b2da24eff1b32f..00000000000000 --- a/packages/react-components/react-storybook/tsconfig.lib.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "./tsconfig.json", - "compilerOptions": { - "noEmit": false, - "lib": ["ES2019", "dom"], - "declaration": true, - "declarationDir": "../../../dist/out-tsc/types", - "outDir": "../../../dist/out-tsc", - "inlineSources": true, - "types": ["static-assets", "environment"] - }, - "exclude": ["**/*.spec.ts", "**/*.spec.tsx", "**/*.test.ts", "**/*.test.tsx"], - "include": ["./src/**/*.ts", "./src/**/*.tsx"] -} diff --git a/packages/react-components/react-storybook/tsconfig.spec.json b/packages/react-components/react-storybook/tsconfig.spec.json deleted file mode 100644 index 469fcba4d7ba75..00000000000000 --- a/packages/react-components/react-storybook/tsconfig.spec.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "extends": "./tsconfig.json", - "compilerOptions": { - "module": "CommonJS", - "outDir": "dist", - "types": ["jest", "node"] - }, - "include": ["**/*.spec.ts", "**/*.spec.tsx", "**/*.test.ts", "**/*.test.tsx", "**/*.d.ts"] -} diff --git a/tsconfig.base.json b/tsconfig.base.json index e9d759dbe219cf..60f772c6faec4c 100644 --- a/tsconfig.base.json +++ b/tsconfig.base.json @@ -60,7 +60,6 @@ "@fluentui/react-slider": ["packages/react-components/react-slider/src/index.ts"], "@fluentui/react-spinbutton": ["packages/react-components/react-spinbutton/src/index.ts"], "@fluentui/react-spinner": ["packages/react-components/react-spinner/src/index.ts"], - "@fluentui/react-storybook": ["packages/react-components/react-storybook/src/index.ts"], "@fluentui/react-storybook-addon": ["packages/react-components/react-storybook-addon/src/index.ts"], "@fluentui/react-switch": ["packages/react-components/react-switch/src/index.ts"], "@fluentui/react-table": ["packages/react-components/react-table/src/index.ts"], diff --git a/workspace.json b/workspace.json index 04559f0a22f2b2..0a9fe538b7f094 100644 --- a/workspace.json +++ b/workspace.json @@ -692,13 +692,6 @@ "sourceRoot": "packages/react-components/react-spinner/src", "tags": ["vNext", "platform:web"] }, - "@fluentui/react-storybook": { - "root": "packages/react-components/react-storybook", - "projectType": "library", - "sourceRoot": "packages/react-components/react-storybook/src", - "tags": ["vNext", "platform:web"], - "implicitDependencies": [] - }, "@fluentui/react-storybook-addon": { "root": "packages/react-components/react-storybook-addon", "projectType": "library", From 1c7308935ebd955c6c71dc38748e7326f5355764 Mon Sep 17 00:00:00 2001 From: Martin Hochel Date: Fri, 25 Nov 2022 14:30:38 +0100 Subject: [PATCH 3/3] fixup! feat(react-storybook-addon): migrate react-strict mode knob to react-storybook-addon --- .../react-storybook-addon/etc/react-storybook-addon.api.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/packages/react-components/react-storybook-addon/etc/react-storybook-addon.api.md b/packages/react-components/react-storybook-addon/etc/react-storybook-addon.api.md index 684361e99da9f4..9785ca69a1eb52 100644 --- a/packages/react-components/react-storybook-addon/etc/react-storybook-addon.api.md +++ b/packages/react-components/react-storybook-addon/etc/react-storybook-addon.api.md @@ -12,6 +12,8 @@ import type { Theme } from '@fluentui/react-theme'; // @public export interface FluentGlobals extends Args { + // (undocumented) + [STRICT_MODE_ID]?: boolean; // (undocumented) [THEME_ID]?: ThemeIds; }