diff --git a/ui/stories/5. Components/Cards/Cards.stories.js b/ui/stories/5. Components/Cards/Cards.stories.js index 5c96c19..31a1cdc 100644 --- a/ui/stories/5. Components/Cards/Cards.stories.js +++ b/ui/stories/5. Components/Cards/Cards.stories.js @@ -30,7 +30,7 @@ export default { description: 'Move image position. Only applies to fullwidth cards.', table: { type: { summary: 'boolean' }, - defaultValue: { summary: 'Left' } + defaultValue: { summary: false } }, }, skin: { diff --git a/ui/stories/6. Web Components Or Custom Elements/WebUI Carousel/WebUICarousel.stories.js b/ui/stories/6. Web Components Or Custom Elements/WebUI Carousel/WebUICarousel.stories.js index 864bd7a..7c88116 100644 --- a/ui/stories/6. Web Components Or Custom Elements/WebUI Carousel/WebUICarousel.stories.js +++ b/ui/stories/6. Web Components Or Custom Elements/WebUI Carousel/WebUICarousel.stories.js @@ -8,10 +8,38 @@ export default { }, }, argTypes: { - makeSlidesFullwidth: { control: 'boolean' }, - showPrevNextButtons: { control: 'boolean' }, - showSlideCount: { control: 'boolean' }, - showSlideCountPips: { control: 'boolean' }, + makeSlidesFullwidth: { + control: 'boolean', + description: 'Make slides take up 100% of available visible space.', + table: { + type: { summary: 'boolean' }, + defaultValue: { summary: false } + }, + }, + showPrevNextButtons: { + control: 'boolean', + description: 'Show previous & next buttons.', + table: { + type: { summary: 'boolean' }, + defaultValue: { summary: false } + }, + }, + showSlideCount: { + control: 'boolean', + description: 'Show slide counter.', + table: { + type: { summary: 'boolean' }, + defaultValue: { summary: false } + }, + }, + showSlideCountPips: { + control: 'boolean', + description: 'Show slide counter as visual "pips".', + table: { + type: { summary: 'boolean' }, + defaultValue: { summary: false } + }, + }, }, }; diff --git a/ui/stories/6. Web Components Or Custom Elements/WebUI Disclosure/WebUIDisclosure.stories.js b/ui/stories/6. Web Components Or Custom Elements/WebUI Disclosure/WebUIDisclosure.stories.js index 4908f00..ee46549 100644 --- a/ui/stories/6. Web Components Or Custom Elements/WebUI Disclosure/WebUIDisclosure.stories.js +++ b/ui/stories/6. Web Components Or Custom Elements/WebUI Disclosure/WebUIDisclosure.stories.js @@ -10,11 +10,19 @@ export default { argTypes: { bindEscapeKey: { control: 'boolean', - description: 'Close with ESC key.' + description: 'Close with ESC key.', + table: { + type: { summary: 'boolean' }, + defaultValue: { summary: false } + }, }, bindClickOutside: { control: 'boolean', - description: 'Close by clicking outside' + description: 'Close by clicking outside component.', + table: { + type: { summary: 'boolean' }, + defaultValue: { summary: false } + }, }, }, }; diff --git a/ui/stories/6. Web Components Or Custom Elements/WebUI Notify/WebUINotify.stories.js b/ui/stories/6. Web Components Or Custom Elements/WebUI Notify/WebUINotify.stories.js index 4439af8..66d4420 100644 --- a/ui/stories/6. Web Components Or Custom Elements/WebUI Notify/WebUINotify.stories.js +++ b/ui/stories/6. Web Components Or Custom Elements/WebUI Notify/WebUINotify.stories.js @@ -11,9 +11,19 @@ export default { notificationType: { control: 'select', options: ['success', 'warning', 'error'], + description: 'Notification type.', + table: { + type: { summary: 'select' }, + defaultValue: { summary: 'N/A' } + }, }, hasCloseButton: { control: 'boolean', + description: 'Show close button.', + table: { + type: { summary: 'boolean' }, + defaultValue: { summary: false } + }, }, }, };