diff --git a/packages/wow-ui/src/components/Checkbox/Checkbox.stories.tsx b/packages/wow-ui/src/components/Checkbox/Checkbox.stories.tsx index 81b53aa3..31aadaeb 100644 --- a/packages/wow-ui/src/components/Checkbox/Checkbox.stories.tsx +++ b/packages/wow-ui/src/components/Checkbox/Checkbox.stories.tsx @@ -48,9 +48,7 @@ const meta = { type: { summary: "ReactNode" }, defaultValue: { summary: null }, }, - control: { - type: "text", - }, + control: false, }, onChange: { description: "외부 활성 상태가 변경될 때 호출될 콜백 함수를 나타냅니다.", @@ -122,9 +120,7 @@ const meta = { type: { summary: "InputHTMLAttributes" }, defaultValue: { summary: "{}" }, }, - control: { - type: "object", - }, + control: false, }, style: { description: "체크박스의 커스텀 스타일을 설정합니다.", @@ -132,9 +128,7 @@ const meta = { type: { summary: "CSSProperties" }, defaultValue: { summary: "{}" }, }, - control: { - type: "object", - }, + control: false, }, }, } satisfies Meta; diff --git a/packages/wow-ui/src/components/Chip/Chip.stories.ts b/packages/wow-ui/src/components/Chip/Chip.stories.ts index 28293883..bc4a63f2 100644 --- a/packages/wow-ui/src/components/Chip/Chip.stories.ts +++ b/packages/wow-ui/src/components/Chip/Chip.stories.ts @@ -14,7 +14,6 @@ const meta = { }, }, }, - argTypes: { disabled: { description: "disabled는 칩 버튼이 비활성화 상태인지 여부를 나타냅니다.", @@ -37,7 +36,6 @@ const meta = { type: "boolean", }, }, - isChecked: { description: "isChecked는 외부에서 제어할 활성 상태를 나타냅니다.", table: { @@ -61,11 +59,7 @@ const meta = { label: { description: "칩에 들어가게 될 텍스트입니다.", table: { - type: { summary: "string" }, - }, - type: { - name: "string", - required: true, + type: { summary: "string", required: true }, }, control: { type: "text", @@ -75,18 +69,18 @@ const meta = { description: "칩 클릭 시 동작할 이벤트입니다.", table: { type: { summary: "() => void" }, - control: { - type: "function", - }, + }, + control: { + type: "function", }, }, onDelete: { description: "칩에 대한 필터를 제거하기 위한 함수입니다.", table: { type: { summary: "() => void" }, - control: { - type: "function", - }, + }, + control: { + type: "function", }, }, onKeyDown: { @@ -94,10 +88,18 @@ const meta = { "칩이 포커스됐을 때 엔터 키 또는 스페이스 바를 눌렀을 때 동작할 이벤트입니다.", table: { type: { summary: "() => void" }, - control: { - type: "function", - }, }, + control: { + type: "function", + }, + }, + style: { + description: "칩의 커스텀 스타일을 설정합니다.", + table: { + type: { summary: "CSSProperties" }, + defaultValue: { summary: "{}" }, + }, + control: false, }, }, } satisfies Meta; diff --git a/packages/wow-ui/src/components/Switch/Switch.stories.tsx b/packages/wow-ui/src/components/Switch/Switch.stories.tsx index 7aca484d..6a5a89dd 100644 --- a/packages/wow-ui/src/components/Switch/Switch.stories.tsx +++ b/packages/wow-ui/src/components/Switch/Switch.stories.tsx @@ -58,9 +58,9 @@ const meta = { table: { type: { summary: "() => void" }, defaultValue: { summary: null }, - control: { - type: "function", - }, + }, + control: { + type: "function", }, }, onClick: { @@ -68,9 +68,9 @@ const meta = { table: { type: { summary: "() => void" }, defaultValue: { summary: null }, - control: { - type: "function", - }, + }, + control: { + type: "function", }, }, onKeyDown: { @@ -79,9 +79,9 @@ const meta = { table: { type: { summary: "() => void" }, defaultValue: { summary: null }, - control: { - type: "function", - }, + }, + control: { + type: "function", }, }, }, diff --git a/packages/wow-ui/src/components/TextField/TextField.stories.tsx b/packages/wow-ui/src/components/TextField/TextField.stories.tsx index 0df9f750..120ab62c 100644 --- a/packages/wow-ui/src/components/TextField/TextField.stories.tsx +++ b/packages/wow-ui/src/components/TextField/TextField.stories.tsx @@ -19,16 +19,12 @@ const meta = { label: { description: "텍스트필드의 라벨입니다.", table: { - type: { summary: "string" }, + type: { summary: "string", required: true }, defaultValue: { summary: null }, }, control: { type: "text", }, - type: { - name: "string", - required: true, - }, }, placeholder: { description: "텍스트필드의 플레이스홀더 텍스트입니다.", @@ -96,18 +92,16 @@ const meta = { type: { summary: "ReactNode" }, defaultValue: { summary: null }, }, - control: { - type: "text", - }, + control: false, }, onChange: { description: "외부 활성 상태가 변경될 때 호출될 콜백 함수입니다.", table: { type: { summary: "(value: string) => void" }, defaultValue: { summary: null }, - control: { - type: "function", - }, + }, + control: { + type: "function", }, }, onBlur: { @@ -115,9 +109,9 @@ const meta = { table: { type: { summary: "() => void" }, defaultValue: { summary: null }, - control: { - type: "function", - }, + }, + control: { + type: "function", }, }, onFocus: { @@ -125,9 +119,9 @@ const meta = { table: { type: { summary: "() => void" }, defaultValue: { summary: null }, - control: { - type: "function", - }, + }, + control: { + type: "function", }, }, textareaProps: { @@ -135,29 +129,25 @@ const meta = { table: { type: { summary: "TextareaHTMLAttributes" }, defaultValue: { summary: null }, - control: { - type: "object", - }, }, + control: false, }, style: { description: "텍스트필드의 커스텀 스타일 속성입니다.", table: { type: { summary: "CSSProperties" }, defaultValue: { summary: null }, - control: { - type: "object", - }, }, + control: false, }, className: { description: "텍스트필드에 전달하는 커스텀 클래스명입니다.", table: { type: { summary: "string" }, defaultValue: { summary: null }, - control: { - type: "text", - }, + }, + control: { + type: "text", }, }, },