From 12a03a9a72f7895d571dbaeeb245d92aa277a610 Mon Sep 17 00:00:00 2001 From: Armand Philippot Date: Fri, 6 Oct 2023 17:48:03 +0200 Subject: refactor(components): merge HeadingButton and Widget components The HeadingButton component was only used inside Widget component and it is not very useful on its own so I merge the two components in a new Collapsible component. --- .../widgets/links-list-widget.stories.tsx | 37 +++++++--------------- 1 file changed, 11 insertions(+), 26 deletions(-) (limited to 'src/components/organisms/widgets/links-list-widget.stories.tsx') diff --git a/src/components/organisms/widgets/links-list-widget.stories.tsx b/src/components/organisms/widgets/links-list-widget.stories.tsx index 2180de4..6e5f170 100644 --- a/src/components/organisms/widgets/links-list-widget.stories.tsx +++ b/src/components/organisms/widgets/links-list-widget.stories.tsx @@ -1,4 +1,5 @@ import type { ComponentMeta, ComponentStory } from '@storybook/react'; +import { Heading } from '../../atoms'; import { LinksListWidget } from './links-list-widget'; /** @@ -32,28 +33,6 @@ export default { value: {}, }, }, - level: { - control: { - type: 'number', - min: 1, - max: 6, - }, - description: 'The heading level.', - type: { - name: 'number', - required: true, - }, - }, - title: { - control: { - type: 'text', - }, - description: 'The widget title.', - type: { - name: 'string', - required: true, - }, - }, }, } as ComponentMeta; @@ -89,9 +68,12 @@ const items = [ */ export const Unordered = Template.bind({}); Unordered.args = { + heading: ( + + Quo et totam + + ), items, - level: 2, - title: 'A list of links', }; /** @@ -99,8 +81,11 @@ Unordered.args = { */ export const Ordered = Template.bind({}); Ordered.args = { + heading: ( + + Quo et totam + + ), isOrdered: true, items, - level: 2, - title: 'A list of links', }; -- cgit v1.2.3