mirror of
https://github.com/dzeiocom/components.git
synced 2025-06-12 18:49:21 +00:00
Fixed problems with Input and Fieldset
Signed-off-by: Florian BOUILLON <florian.bouillon@delta-wings.net>
This commit is contained in:
@ -5,7 +5,6 @@ module.exports = {
|
||||
"../src/dzeio/**/*.stories.@(js|jsx|ts|tsx)",
|
||||
],
|
||||
"addons": [
|
||||
"@storybook/addon-links",
|
||||
"@storybook/addon-essentials"
|
||||
],
|
||||
typescript: {
|
||||
@ -13,8 +12,8 @@ module.exports = {
|
||||
checkOptions: {},
|
||||
reactDocgen: 'react-docgen-typescript',
|
||||
reactDocgenTypescriptOptions: {
|
||||
shouldExtractLiteralValuesFromEnum: true,
|
||||
propFilter: (prop) => (prop.parent ? !/node_modules/.test(prop.parent.fileName) : true),
|
||||
shouldExtractLiteralValuesFromEnum: true,
|
||||
propFilter: (prop) => (prop.parent ? !/node_modules/.test(prop.parent.fileName) : true),
|
||||
},
|
||||
},
|
||||
presets: [path.resolve(__dirname, "./next.js")]
|
||||
|
@ -24,6 +24,7 @@ module.exports = {
|
||||
use: ['style-loader', {
|
||||
loader: 'css-loader',
|
||||
options: {
|
||||
url: false,
|
||||
importLoaders: 1,
|
||||
modules: true
|
||||
},
|
||||
|
@ -1,4 +1,5 @@
|
||||
import '../src/dzeio/general.styl'
|
||||
|
||||
export const parameters = {
|
||||
actions: { argTypesRegex: "^on[A-Z].*" },
|
||||
layout: 'centered'
|
||||
}
|
Reference in New Issue
Block a user