[11/n][Storybook] Modal argTypes update (#48)
This commit is contained in:
commit
a95f18a66b
@ -7,7 +7,29 @@ const meta: Meta<typeof Modal> = {
|
|||||||
component: Modal,
|
component: Modal,
|
||||||
title: 'Components/Modal',
|
title: 'Components/Modal',
|
||||||
tags: ['autodocs'],
|
tags: ['autodocs'],
|
||||||
argTypes: {},
|
argTypes: {
|
||||||
|
children: {
|
||||||
|
control: 'object',
|
||||||
|
},
|
||||||
|
hasCloseButton: {
|
||||||
|
type: 'boolean',
|
||||||
|
},
|
||||||
|
hasOverlay: {
|
||||||
|
type: 'boolean',
|
||||||
|
},
|
||||||
|
preventClickOutsideToClose: {
|
||||||
|
type: 'boolean',
|
||||||
|
},
|
||||||
|
fullPage: {
|
||||||
|
type: 'boolean',
|
||||||
|
},
|
||||||
|
},
|
||||||
|
args: {
|
||||||
|
hasCloseButton: true,
|
||||||
|
hasOverlay: true,
|
||||||
|
preventClickOutsideToClose: false,
|
||||||
|
fullPage: false,
|
||||||
|
},
|
||||||
};
|
};
|
||||||
|
|
||||||
export default meta;
|
export default meta;
|
||||||
|
Loading…
Reference in New Issue
Block a user