diff --git a/src/components/button/MoreButton.stories.ts b/src/components/button/MoreButton.stories.ts index 1a2171b09..3ec3dd491 100644 --- a/src/components/button/MoreButton.stories.ts +++ b/src/components/button/MoreButton.stories.ts @@ -24,22 +24,22 @@ export const Basic: Story = { diff --git a/src/components/input/MultiSelect.stories.ts b/src/components/input/MultiSelect.stories.ts index fa8d7668c..5df5fa909 100644 --- a/src/components/input/MultiSelect.stories.ts +++ b/src/components/input/MultiSelect.stories.ts @@ -13,6 +13,21 @@ const meta: Meta = { }, options: { control: 'object' + }, + hasSearchBox: { + control: 'boolean', + description: 'Toggle searchBar visibility' + }, + showSelectedCount: { + control: 'boolean', + description: 'Toggle selected count visibility' + }, + hasClearButton: { + control: 'boolean', + description: 'Toggle clear button visibility' + }, + searchPlaceholder: { + control: 'text' } } } diff --git a/src/components/input/SearchBox.stories.ts b/src/components/input/SearchBox.stories.ts index da2ff7458..bdd26aa80 100644 --- a/src/components/input/SearchBox.stories.ts +++ b/src/components/input/SearchBox.stories.ts @@ -10,6 +10,10 @@ const meta: Meta = { argTypes: { placeHolder: { control: 'text' + }, + hasBorder: { + control: 'boolean', + description: 'Toggle border prop' } } }