diff --git a/MIGRATION.md b/MIGRATION.md index 15913c16d90..b5afb00cc25 100644 --- a/MIGRATION.md +++ b/MIGRATION.md @@ -354,7 +354,7 @@ addDecorator( And here's its new counterpart: ```js -import { create } from '@storybook/theming'; +import { create } from '@storybook/theming/create'; addParameters({ options: { theme: create({ diff --git a/docs/src/pages/configurations/theming/index.md b/docs/src/pages/configurations/theming/index.md index 0f3a7223475..768b883852e 100644 --- a/docs/src/pages/configurations/theming/index.md +++ b/docs/src/pages/configurations/theming/index.md @@ -57,7 +57,7 @@ First create a new file in `.storybook` called `yourTheme.js`. Next paste the code below and tweak the variables. ```ts -import { create } from '@storybook/theming'; +import { create } from '@storybook/theming/create'; export default create({ base: 'light', @@ -113,7 +113,7 @@ The `storybook/theming` package is built using TypeScript, so this should help c Many theme variables are optional, the `base` property is NOT. This is a perfectly valid theme: ```ts -import { create } from '@storybook/theming'; +import { create } from '@storybook/theming/create'; export default create({ base: 'light', diff --git a/examples/cra-kitchen-sink/.storybook/config.js b/examples/cra-kitchen-sink/.storybook/config.js index 03bbe69d759..4e9b936e6a9 100644 --- a/examples/cra-kitchen-sink/.storybook/config.js +++ b/examples/cra-kitchen-sink/.storybook/config.js @@ -1,5 +1,5 @@ import { configure, addParameters, addDecorator } from '@storybook/react'; -import { create } from '@storybook/theming'; +import { create } from '@storybook/theming/create'; import { withA11y } from '@storybook/addon-a11y'; addDecorator(withA11y);