From c4e42e512536cbc8450d2975ff5f7c66f4481862 Mon Sep 17 00:00:00 2001 From: Jin Yi Date: Thu, 21 Aug 2025 23:11:08 +0900 Subject: [PATCH] [feat] Enhance Storybook stories for UI components MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Update MoreButton story with transparent button styling and icon sizes - Add new controls to MultiSelect story for searchBar, selectedCount, and clearButton - Add hasBorder control to SearchBox story for border customization 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude --- src/components/button/MoreButton.stories.ts | 8 ++++---- src/components/input/MultiSelect.stories.ts | 15 +++++++++++++++ src/components/input/SearchBox.stories.ts | 4 ++++ 3 files changed, 23 insertions(+), 4 deletions(-) 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' } } }