2020-04-26 20:33:39 +00:00
|
|
|
module.exports = {
|
|
|
|
addons: [
|
|
|
|
'@storybook/addon-knobs/register',
|
|
|
|
'@storybook/addon-contexts/register',
|
Storybook Sidebar Provisioning & WIP Implementation (#2125)
* Migrating dimensions, latest SVG, stubbing sidebar
* Revert "Migrating dimensions, latest SVG, stubbing sidebar"
This reverts commit 5014a68f52ac50fc62db5d42d2b49abda28efaea.
* Revert "Revert "Migrating dimensions, latest SVG, stubbing sidebar""
This reverts commit 28c130c8d8b3993f91f072de106d3ff223d6c55b.
* Post merge bootstrap & build
* Linting
* Updating Story Heirarchy
* Migrating legacy tooltip component
* Reverting spacing integration into core dimensions
* Cleaning up comments, tweaking CSS var usage
* Removing static height
* Cleaning up static CSS values, re-organizing sliding panel, fixing search icon
* adding flow def for autobind in new SB instance
* PR feedback, removing new vars/updating markup
* Fixing lint > flow error on type
2020-05-14 18:00:29 +00:00
|
|
|
'storybook-addon-designs/register',
|
2020-05-14 20:27:43 +00:00
|
|
|
],
|
2021-05-12 06:35:00 +00:00
|
|
|
typescript: {
|
|
|
|
check: false,
|
|
|
|
checkOptions: {},
|
|
|
|
reactDocgen: 'react-docgen-typescript',
|
|
|
|
reactDocgenTypescriptOptions: {
|
|
|
|
shouldExtractLiteralValuesFromEnum: true,
|
|
|
|
propFilter: (prop) => (prop.parent ? !/node_modules/.test(prop.parent.fileName) : true),
|
|
|
|
},
|
|
|
|
},
|
2020-04-26 20:33:39 +00:00
|
|
|
};
|