-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
* Chore #49 - Upgrade sb and deps to 6.0.10 * Chore #49 - Bump up version 0.1.7 --> 0.1.8 * Chore #49 - Add react-jss & update linkColor * Chore #49 - Add normalize.css Co-authored-by: Parth Shah <[email protected]>
- Loading branch information
1 parent
c9825c0
commit a30c2d7
Showing
18 changed files
with
4,834 additions
and
4,450 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,9 @@ | ||
module.exports = { | ||
stories: ['../src/**/*.stories.(ts|tsx|js|jsx|mdx)'], | ||
addons: [ | ||
'@storybook/preset-create-react-app', | ||
'@storybook/addon-actions', | ||
'@storybook/addon-links', | ||
'@storybook/addon-knobs', | ||
{ | ||
name: '@storybook/addon-docs', | ||
options: { | ||
configureJSX: true, | ||
babelOptions: {}, | ||
sourceLoaderOptions: null | ||
} | ||
} | ||
'@storybook/addon-essentials', | ||
'@storybook/addon-actions', | ||
'@storybook/preset-create-react-app' | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
import { addons } from '@storybook/addons' | ||
|
||
addons.setConfig({ | ||
isFullscreen: false, | ||
showNav: true, | ||
showPanel: true, | ||
panelPosition: 'bottom', | ||
sidebarAnimations: true, | ||
enableShortcuts: true, | ||
isToolshown: true, | ||
theme: undefined, | ||
selectedPanel: 'Controls', | ||
initialActive: 'sidebar', | ||
showRoots: false | ||
}) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
import { INITIAL_VIEWPORTS } from '@storybook/addon-viewport' | ||
import 'normalize.css' | ||
import '../src/styles/index.css' | ||
|
||
export const parameters = { | ||
actions: { argTypesRegex: '^on[A-Z].*' }, | ||
// controls: { expanded: true }, // uncomment to display controls with description and defaults | ||
viewport: { | ||
viewports: INITIAL_VIEWPORTS | ||
}, | ||
backgrounds: { | ||
default: 'light', | ||
values: [ | ||
{ | ||
name: 'dark', | ||
value: '#212121' | ||
}, | ||
{ | ||
name: 'light', | ||
value: '#ffffff' | ||
} | ||
] | ||
} | ||
} |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.