Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit e406df2

Browse files
committedSep 14, 2022
feat(themes): add scale and shadow, storybook settings
1 parent 107fe15 commit e406df2

File tree

113 files changed

+1144
-728
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

113 files changed

+1144
-728
lines changed
 

‎.storybook/main.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ const storybookConfig: StorybookConfig = {
1515
}
1616
},
1717
'@storybook/addon-storysource',
18-
'./theme-picker/register.ts'
18+
'./theme-settings/register.ts'
1919
],
2020
core: {
2121
builder: 'webpack5'

‎.storybook/preview.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
import { DecoratorFn, Parameters } from '@storybook/react';
22
import { withGlobalStyle } from './decorators/withGlobalStyle';
3-
import { withThemesProvider } from './theme-picker/ThemeProvider';
3+
import { withThemeSettings } from './theme-settings/ThemeProvider';
44

5-
export const decorators: DecoratorFn[] = [withGlobalStyle, withThemesProvider];
5+
export const decorators: DecoratorFn[] = [withGlobalStyle, withThemeSettings];
66

77
export const parameters: Parameters = {
88
layout: 'fullscreen',

0 commit comments

Comments
 (0)
Please sign in to comment.