@mzc-fe/design-system 0.0.6 → 0.0.7-rc.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (173) hide show
  1. package/components/accordion/accordion.tsx +114 -0
  2. package/components/accordion/index.ts +1 -0
  3. package/components/alert/alert.tsx +97 -0
  4. package/components/alert/index.ts +1 -0
  5. package/components/alert-dialog/alert-dialog.tsx +190 -0
  6. package/components/alert-dialog/index.ts +1 -0
  7. package/components/aspect-ratio/aspect-ratio.tsx +23 -0
  8. package/components/aspect-ratio/index.ts +1 -0
  9. package/components/avatar/avatar.tsx +62 -0
  10. package/components/avatar/index.ts +1 -0
  11. package/components/badge/badge.tsx +58 -0
  12. package/components/badge/index.ts +1 -0
  13. package/components/breadcrumb/breadcrumb.tsx +132 -0
  14. package/components/breadcrumb/index.ts +1 -0
  15. package/components/button/button.tsx +77 -0
  16. package/components/button/index.ts +1 -0
  17. package/components/button-group/button-group.tsx +99 -0
  18. package/components/button-group/index.ts +1 -0
  19. package/components/calendar/calendar.tsx +235 -0
  20. package/components/calendar/index.ts +1 -0
  21. package/components/card/card.tsx +107 -0
  22. package/components/card/index.ts +1 -0
  23. package/components/carousel/carousel.tsx +263 -0
  24. package/components/carousel/index.ts +1 -0
  25. package/components/chart/chart.tsx +377 -0
  26. package/components/chart/index.ts +1 -0
  27. package/components/checkbox/checkbox.tsx +41 -0
  28. package/components/checkbox/index.ts +1 -0
  29. package/components/collapsible/collapsible.tsx +44 -0
  30. package/components/collapsible/index.ts +1 -0
  31. package/components/command/command.tsx +201 -0
  32. package/components/command/index.ts +1 -0
  33. package/components/context-menu/context-menu.tsx +270 -0
  34. package/components/context-menu/index.ts +1 -0
  35. package/components/dialog/dialog.tsx +166 -0
  36. package/components/dialog/index.ts +1 -0
  37. package/components/drawer/drawer.tsx +154 -0
  38. package/components/drawer/index.ts +1 -0
  39. package/components/dropdown-menu/dropdown-menu.tsx +276 -0
  40. package/components/dropdown-menu/index.ts +1 -0
  41. package/components/empty/empty.tsx +129 -0
  42. package/components/empty/index.ts +1 -0
  43. package/components/field/field.tsx +272 -0
  44. package/components/field/index.ts +1 -0
  45. package/components/form/form.tsx +197 -0
  46. package/components/form/index.ts +1 -0
  47. package/components/hover-card/hover-card.tsx +57 -0
  48. package/components/hover-card/index.ts +1 -0
  49. package/components/input/index.ts +1 -0
  50. package/components/input/input.tsx +31 -0
  51. package/components/input-group/index.ts +1 -0
  52. package/components/input-group/input-group.tsx +189 -0
  53. package/components/input-otp/index.ts +1 -0
  54. package/components/input-otp/input-otp.tsx +99 -0
  55. package/components/item/index.ts +1 -0
  56. package/components/item/item.tsx +225 -0
  57. package/components/kbd/index.ts +1 -0
  58. package/components/kbd/kbd.tsx +38 -0
  59. package/components/label/index.ts +1 -0
  60. package/components/label/label.tsx +33 -0
  61. package/components/menubar/index.ts +1 -0
  62. package/components/menubar/menubar.tsx +299 -0
  63. package/components/navigation-menu/index.ts +1 -0
  64. package/components/navigation-menu/navigation-menu.tsx +194 -0
  65. package/components/pagination/index.ts +1 -0
  66. package/components/pagination/pagination.tsx +153 -0
  67. package/components/popover/index.ts +1 -0
  68. package/components/popover/popover.tsx +106 -0
  69. package/components/progress/index.ts +1 -0
  70. package/components/progress/progress.tsx +39 -0
  71. package/components/radio-group/index.ts +1 -0
  72. package/components/radio-group/radio-group.tsx +57 -0
  73. package/components/resizable/index.ts +1 -0
  74. package/components/resizable/resizable.tsx +73 -0
  75. package/components/scroll-area/index.ts +1 -0
  76. package/components/scroll-area/scroll-area.tsx +72 -0
  77. package/components/select/index.ts +1 -0
  78. package/components/select/select.tsx +213 -0
  79. package/components/separator/index.ts +1 -0
  80. package/components/separator/separator.tsx +39 -0
  81. package/components/sheet/index.ts +1 -0
  82. package/components/sheet/sheet.tsx +160 -0
  83. package/components/sidebar/index.ts +1 -0
  84. package/components/sidebar/sidebar.tsx +776 -0
  85. package/components/skeleton/index.ts +1 -0
  86. package/components/skeleton/skeleton.tsx +21 -0
  87. package/components/slider/index.ts +1 -0
  88. package/components/slider/slider.tsx +75 -0
  89. package/components/sonner/index.ts +2 -0
  90. package/components/sonner/sonner.tsx +52 -0
  91. package/components/spinner/index.ts +1 -0
  92. package/components/spinner/spinner.tsx +26 -0
  93. package/components/switch/index.ts +1 -0
  94. package/components/switch/switch.tsx +39 -0
  95. package/components/table/index.ts +1 -0
  96. package/components/table/table.tsx +140 -0
  97. package/components/tabs/index.ts +1 -0
  98. package/components/tabs/tabs.tsx +94 -0
  99. package/components/textarea/index.ts +1 -0
  100. package/components/textarea/textarea.tsx +26 -0
  101. package/components/toggle/index.ts +1 -0
  102. package/components/toggle/toggle.tsx +58 -0
  103. package/components/toggle-group/index.ts +1 -0
  104. package/components/toggle-group/toggle-group.tsx +97 -0
  105. package/components/tooltip/index.ts +1 -0
  106. package/components/tooltip/tooltip.tsx +82 -0
  107. package/dist/components/accordion/accordion.d.ts +50 -0
  108. package/dist/components/alert/alert.d.ts +31 -0
  109. package/dist/components/alert-dialog/alert-dialog.d.ts +35 -0
  110. package/dist/components/aspect-ratio/aspect-ratio.d.ts +12 -0
  111. package/dist/components/avatar/avatar.d.ts +11 -0
  112. package/dist/components/badge/badge.d.ts +12 -0
  113. package/dist/components/breadcrumb/breadcrumb.d.ts +23 -0
  114. package/dist/components/button/button.d.ts +15 -0
  115. package/dist/components/button-group/button-group.d.ts +16 -0
  116. package/dist/components/calendar/calendar.d.ts +15 -0
  117. package/dist/components/card/card.d.ts +15 -0
  118. package/dist/components/carousel/carousel.d.ts +24 -0
  119. package/dist/components/chart/chart.d.ts +20 -0
  120. package/dist/components/checkbox/checkbox.d.ts +9 -0
  121. package/dist/components/collapsible/collapsible.d.ts +13 -0
  122. package/dist/components/command/command.d.ts +18 -0
  123. package/dist/components/context-menu/context-menu.d.ts +18 -0
  124. package/dist/components/dialog/dialog.d.ts +25 -0
  125. package/dist/components/drawer/drawer.d.ts +18 -0
  126. package/dist/components/dropdown-menu/dropdown-menu.d.ts +21 -0
  127. package/dist/components/empty/empty.d.ts +25 -0
  128. package/dist/components/field/field.d.ts +26 -0
  129. package/dist/components/form/form.d.ts +30 -1
  130. package/dist/components/hover-card/hover-card.d.ts +13 -0
  131. package/dist/components/input/input.d.ts +10 -0
  132. package/dist/components/input-group/input-group.d.ts +19 -0
  133. package/dist/components/input-otp/input-otp.d.ts +23 -0
  134. package/dist/components/item/item.d.ts +33 -1
  135. package/dist/components/kbd/kbd.d.ts +10 -0
  136. package/dist/components/label/label.d.ts +9 -0
  137. package/dist/components/menubar/menubar.d.ts +25 -0
  138. package/dist/components/navigation-menu/navigation-menu.d.ts +26 -0
  139. package/dist/components/pagination/pagination.d.ts +26 -0
  140. package/dist/components/popover/popover.d.ts +17 -0
  141. package/dist/components/progress/progress.d.ts +10 -0
  142. package/dist/components/radio-group/radio-group.d.ts +12 -0
  143. package/dist/components/resizable/resizable.d.ts +19 -0
  144. package/dist/components/scroll-area/scroll-area.d.ts +14 -0
  145. package/dist/components/select/select.d.ts +25 -0
  146. package/dist/components/separator/separator.d.ts +11 -0
  147. package/dist/components/sheet/sheet.d.ts +23 -0
  148. package/dist/components/sidebar/sidebar.d.ts +50 -0
  149. package/dist/components/skeleton/skeleton.d.ts +8 -0
  150. package/dist/components/slider/slider.d.ts +12 -0
  151. package/dist/components/sonner/sonner.d.ts +14 -0
  152. package/dist/components/spinner/spinner.d.ts +9 -0
  153. package/dist/components/switch/switch.d.ts +8 -0
  154. package/dist/components/table/table.d.ts +26 -0
  155. package/dist/components/tabs/tabs.d.ts +16 -6
  156. package/dist/components/textarea/textarea.d.ts +8 -0
  157. package/dist/components/toggle/toggle.d.ts +13 -0
  158. package/dist/components/toggle-group/toggle-group.d.ts +1 -0
  159. package/dist/components/tooltip/tooltip.d.ts +21 -0
  160. package/dist/design-system.css +1 -1
  161. package/dist/design-system.es.js +3481 -28494
  162. package/dist/design-system.umd.js +4 -257
  163. package/foundations/ThemeProvider.tsx +77 -0
  164. package/foundations/color.css +232 -0
  165. package/foundations/palette.css +249 -0
  166. package/foundations/spacing.css +8 -0
  167. package/foundations/typography.css +143 -0
  168. package/hooks/use-mobile.ts +19 -0
  169. package/index.css +173 -0
  170. package/index.ts +339 -0
  171. package/lib/utils.ts +6 -0
  172. package/package.json +40 -19
  173. package/README.md +0 -184
@@ -1,13 +1,31 @@
1
1
  import { Drawer as DrawerPrimitive } from 'vaul';
2
2
  import * as React from "react";
3
+ /**
4
+ * 화면 하단에서 슬라이드업되는 모바일 친화적 드로어 컴포넌트입니다.
5
+ *
6
+ * @example
7
+ * ```tsx
8
+ * <Drawer>
9
+ * <DrawerTrigger>열기</DrawerTrigger>
10
+ * <DrawerContent>
11
+ * <DrawerHeader>
12
+ * <DrawerTitle>제목</DrawerTitle>
13
+ * </DrawerHeader>
14
+ * </DrawerContent>
15
+ * </Drawer>
16
+ * ```
17
+ */
3
18
  declare function Drawer({ ...props }: React.ComponentProps<typeof DrawerPrimitive.Root>): import("react/jsx-runtime").JSX.Element;
4
19
  declare function DrawerTrigger({ ...props }: React.ComponentProps<typeof DrawerPrimitive.Trigger>): import("react/jsx-runtime").JSX.Element;
5
20
  declare function DrawerPortal({ ...props }: React.ComponentProps<typeof DrawerPrimitive.Portal>): import("react/jsx-runtime").JSX.Element;
6
21
  declare function DrawerClose({ ...props }: React.ComponentProps<typeof DrawerPrimitive.Close>): import("react/jsx-runtime").JSX.Element;
7
22
  declare function DrawerOverlay({ className, ...props }: React.ComponentProps<typeof DrawerPrimitive.Overlay>): import("react/jsx-runtime").JSX.Element;
8
23
  declare function DrawerContent({ className, children, ...props }: React.ComponentProps<typeof DrawerPrimitive.Content>): import("react/jsx-runtime").JSX.Element;
24
+ /** 드로어 헤더 영역입니다. */
9
25
  declare function DrawerHeader({ className, ...props }: React.ComponentProps<"div">): import("react/jsx-runtime").JSX.Element;
26
+ /** 드로어 푸터 영역입니다. */
10
27
  declare function DrawerFooter({ className, ...props }: React.ComponentProps<"div">): import("react/jsx-runtime").JSX.Element;
28
+ /** 드로어 제목 컴포넌트입니다. */
11
29
  declare function DrawerTitle({ className, ...props }: React.ComponentProps<typeof DrawerPrimitive.Title>): import("react/jsx-runtime").JSX.Element;
12
30
  declare function DrawerDescription({ className, ...props }: React.ComponentProps<typeof DrawerPrimitive.Description>): import("react/jsx-runtime").JSX.Element;
13
31
  export { Drawer, DrawerPortal, DrawerOverlay, DrawerTrigger, DrawerClose, DrawerContent, DrawerHeader, DrawerFooter, DrawerTitle, DrawerDescription, };
@@ -1,16 +1,37 @@
1
1
  import * as React from "react";
2
2
  import * as DropdownMenuPrimitive from "@radix-ui/react-dropdown-menu";
3
+ /**
4
+ * 트리거를 클릭하면 표시되는 드롭다운 메뉴 컴포넌트입니다.
5
+ *
6
+ * @example
7
+ * ```tsx
8
+ * <DropdownMenu>
9
+ * <DropdownMenuTrigger>메뉴</DropdownMenuTrigger>
10
+ * <DropdownMenuContent>
11
+ * <DropdownMenuItem>항목 1</DropdownMenuItem>
12
+ * <DropdownMenuItem>항목 2</DropdownMenuItem>
13
+ * </DropdownMenuContent>
14
+ * </DropdownMenu>
15
+ * ```
16
+ */
3
17
  declare function DropdownMenu({ ...props }: React.ComponentProps<typeof DropdownMenuPrimitive.Root>): import("react/jsx-runtime").JSX.Element;
4
18
  declare function DropdownMenuPortal({ ...props }: React.ComponentProps<typeof DropdownMenuPrimitive.Portal>): import("react/jsx-runtime").JSX.Element;
5
19
  declare function DropdownMenuTrigger({ ...props }: React.ComponentProps<typeof DropdownMenuPrimitive.Trigger>): import("react/jsx-runtime").JSX.Element;
6
20
  declare function DropdownMenuContent({ className, sideOffset, ...props }: React.ComponentProps<typeof DropdownMenuPrimitive.Content>): import("react/jsx-runtime").JSX.Element;
7
21
  declare function DropdownMenuGroup({ ...props }: React.ComponentProps<typeof DropdownMenuPrimitive.Group>): import("react/jsx-runtime").JSX.Element;
22
+ /**
23
+ * 드롭다운 메뉴 아이템입니다.
24
+ * @param props.inset - 왼쪽 여백 추가 여부
25
+ * @param props.variant - 스타일 변형 ('default' | 'destructive')
26
+ */
8
27
  declare function DropdownMenuItem({ className, inset, variant, ...props }: React.ComponentProps<typeof DropdownMenuPrimitive.Item> & {
9
28
  inset?: boolean;
10
29
  variant?: "default" | "destructive";
11
30
  }): import("react/jsx-runtime").JSX.Element;
31
+ /** 체크박스 형태의 메뉴 아이템입니다. */
12
32
  declare function DropdownMenuCheckboxItem({ className, children, checked, ...props }: React.ComponentProps<typeof DropdownMenuPrimitive.CheckboxItem>): import("react/jsx-runtime").JSX.Element;
13
33
  declare function DropdownMenuRadioGroup({ ...props }: React.ComponentProps<typeof DropdownMenuPrimitive.RadioGroup>): import("react/jsx-runtime").JSX.Element;
34
+ /** 라디오 버튼 형태의 메뉴 아이템입니다. */
14
35
  declare function DropdownMenuRadioItem({ className, children, ...props }: React.ComponentProps<typeof DropdownMenuPrimitive.RadioItem>): import("react/jsx-runtime").JSX.Element;
15
36
  declare function DropdownMenuLabel({ className, inset, ...props }: React.ComponentProps<typeof DropdownMenuPrimitive.Label> & {
16
37
  inset?: boolean;
@@ -1,11 +1,36 @@
1
1
  import { VariantProps } from 'class-variance-authority';
2
+ /**
3
+ * 콘텐츠가 없을 때 빈 상태를 표시하는 컴포넌트입니다.
4
+ *
5
+ * @example
6
+ * ```tsx
7
+ * <Empty>
8
+ * <EmptyHeader>
9
+ * <EmptyMedia><InboxIcon /></EmptyMedia>
10
+ * <EmptyTitle>항목이 없습니다</EmptyTitle>
11
+ * <EmptyDescription>새 항목을 추가해보세요</EmptyDescription>
12
+ * </EmptyHeader>
13
+ * <EmptyContent>
14
+ * <Button>항목 추가</Button>
15
+ * </EmptyContent>
16
+ * </Empty>
17
+ * ```
18
+ */
2
19
  declare function Empty({ className, ...props }: React.ComponentProps<"div">): import("react/jsx-runtime").JSX.Element;
20
+ /** Empty 컴포넌트의 헤더 영역입니다. */
3
21
  declare function EmptyHeader({ className, ...props }: React.ComponentProps<"div">): import("react/jsx-runtime").JSX.Element;
4
22
  declare const emptyMediaVariants: (props?: ({
5
23
  variant?: "default" | "icon" | null | undefined;
6
24
  } & import('class-variance-authority/types').ClassProp) | undefined) => string;
25
+ /**
26
+ * Empty 컴포넌트의 미디어(아이콘/이미지) 영역입니다.
27
+ * @param props.variant - 스타일 변형 ('default' | 'icon')
28
+ */
7
29
  declare function EmptyMedia({ className, variant, ...props }: React.ComponentProps<"div"> & VariantProps<typeof emptyMediaVariants>): import("react/jsx-runtime").JSX.Element;
30
+ /** Empty 컴포넌트의 제목입니다. */
8
31
  declare function EmptyTitle({ className, ...props }: React.ComponentProps<"div">): import("react/jsx-runtime").JSX.Element;
32
+ /** Empty 컴포넌트의 설명 텍스트입니다. */
9
33
  declare function EmptyDescription({ className, ...props }: React.ComponentProps<"p">): import("react/jsx-runtime").JSX.Element;
34
+ /** Empty 컴포넌트의 액션 영역입니다. */
10
35
  declare function EmptyContent({ className, ...props }: React.ComponentProps<"div">): import("react/jsx-runtime").JSX.Element;
11
36
  export { Empty, EmptyHeader, EmptyTitle, EmptyDescription, EmptyContent, EmptyMedia, };
@@ -1,21 +1,47 @@
1
1
  import { VariantProps } from 'class-variance-authority';
2
2
  import { Label } from '../label';
3
+ /**
4
+ * 폼 필드들을 그룹화하는 fieldset 컴포넌트입니다.
5
+ *
6
+ * @example
7
+ * ```tsx
8
+ * <FieldSet>
9
+ * <FieldLegend>개인 정보</FieldLegend>
10
+ * <Field>
11
+ * <FieldLabel>이름</FieldLabel>
12
+ * <Input />
13
+ * </Field>
14
+ * </FieldSet>
15
+ * ```
16
+ */
3
17
  declare function FieldSet({ className, ...props }: React.ComponentProps<"fieldset">): import("react/jsx-runtime").JSX.Element;
18
+ /** FieldSet의 제목 컴포넌트입니다. */
4
19
  declare function FieldLegend({ className, variant, ...props }: React.ComponentProps<"legend"> & {
5
20
  variant?: "legend" | "label";
6
21
  }): import("react/jsx-runtime").JSX.Element;
22
+ /** 여러 Field를 그룹화하는 컴포넌트입니다. */
7
23
  declare function FieldGroup({ className, ...props }: React.ComponentProps<"div">): import("react/jsx-runtime").JSX.Element;
8
24
  declare const fieldVariants: (props?: ({
9
25
  orientation?: "horizontal" | "vertical" | "responsive" | null | undefined;
10
26
  } & import('class-variance-authority/types').ClassProp) | undefined) => string;
27
+ /**
28
+ * 개별 폼 필드 컴포넌트입니다.
29
+ * @param props.orientation - 레이아웃 방향 ('vertical' | 'horizontal' | 'responsive')
30
+ */
11
31
  declare function Field({ className, orientation, ...props }: React.ComponentProps<"div"> & VariantProps<typeof fieldVariants>): import("react/jsx-runtime").JSX.Element;
32
+ /** Field의 콘텐츠 영역입니다. */
12
33
  declare function FieldContent({ className, ...props }: React.ComponentProps<"div">): import("react/jsx-runtime").JSX.Element;
34
+ /** Field의 레이블 컴포넌트입니다. */
13
35
  declare function FieldLabel({ className, ...props }: React.ComponentProps<typeof Label>): import("react/jsx-runtime").JSX.Element;
36
+ /** Field의 제목 컴포넌트입니다. */
14
37
  declare function FieldTitle({ className, ...props }: React.ComponentProps<"div">): import("react/jsx-runtime").JSX.Element;
38
+ /** Field의 설명 텍스트 컴포넌트입니다. */
15
39
  declare function FieldDescription({ className, ...props }: React.ComponentProps<"p">): import("react/jsx-runtime").JSX.Element;
40
+ /** Field 사이의 구분선 컴포넌트입니다. */
16
41
  declare function FieldSeparator({ children, className, ...props }: React.ComponentProps<"div"> & {
17
42
  children?: React.ReactNode;
18
43
  }): import("react/jsx-runtime").JSX.Element;
44
+ /** Field의 오류 메시지 컴포넌트입니다. */
19
45
  declare function FieldError({ className, children, errors, ...props }: React.ComponentProps<"div"> & {
20
46
  errors?: Array<{
21
47
  message?: string;
@@ -2,7 +2,31 @@ import { Slot } from '@radix-ui/react-slot';
2
2
  import { ControllerProps, FieldPath, FieldValues } from 'react-hook-form';
3
3
  import * as React from "react";
4
4
  import type * as LabelPrimitive from "@radix-ui/react-label";
5
- declare const Form: <TFieldValues extends FieldValues, TContext = any, TTransformedValues = TFieldValues>(props: import('react-hook-form').FormProviderProps<TFieldValues, TContext, TTransformedValues>) => React.JSX.Element;
5
+ /**
6
+ * react-hook-form 기반 폼 컴포넌트입니다.
7
+ *
8
+ * @example
9
+ * ```tsx
10
+ * const form = useForm();
11
+ *
12
+ * <Form {...form}>
13
+ * <FormField
14
+ * control={form.control}
15
+ * name="email"
16
+ * render={({ field }) => (
17
+ * <FormItem>
18
+ * <FormLabel>이메일</FormLabel>
19
+ * <FormControl>
20
+ * <Input {...field} />
21
+ * </FormControl>
22
+ * <FormMessage />
23
+ * </FormItem>
24
+ * )}
25
+ * />
26
+ * </Form>
27
+ * ```
28
+ */
29
+ declare const Form: <TFieldValues extends FieldValues, TContext = any, TTransformedValues = TFieldValues>(props: import('react-hook-form').FormProviderProps<TFieldValues, TContext, TTransformedValues>) => import("react").JSX.Element;
6
30
  declare const FormField: <TFieldValues extends FieldValues = FieldValues, TName extends FieldPath<TFieldValues> = FieldPath<TFieldValues>>({ ...props }: ControllerProps<TFieldValues, TName>) => import("react/jsx-runtime").JSX.Element;
7
31
  declare const useFormField: () => {
8
32
  invalid: boolean;
@@ -16,9 +40,14 @@ declare const useFormField: () => {
16
40
  formDescriptionId: string;
17
41
  formMessageId: string;
18
42
  };
43
+ /** 폼 필드를 감싸는 컨테이너 컴포넌트입니다. */
19
44
  declare function FormItem({ className, ...props }: React.ComponentProps<"div">): import("react/jsx-runtime").JSX.Element;
45
+ /** 폼 필드의 레이블 컴포넌트입니다. */
20
46
  declare function FormLabel({ className, ...props }: React.ComponentProps<typeof LabelPrimitive.Root>): import("react/jsx-runtime").JSX.Element;
47
+ /** 폼 입력 컨트롤을 감싸는 컴포넌트입니다. */
21
48
  declare function FormControl({ ...props }: React.ComponentProps<typeof Slot>): import("react/jsx-runtime").JSX.Element;
49
+ /** 폼 필드의 설명 텍스트 컴포넌트입니다. */
22
50
  declare function FormDescription({ className, ...props }: React.ComponentProps<"p">): import("react/jsx-runtime").JSX.Element;
51
+ /** 폼 필드의 유효성 검증 메시지 컴포넌트입니다. */
23
52
  declare function FormMessage({ className, ...props }: React.ComponentProps<"p">): import("react/jsx-runtime").JSX.Element | null;
24
53
  export { useFormField, Form, FormItem, FormLabel, FormControl, FormDescription, FormMessage, FormField, };
@@ -1,6 +1,19 @@
1
1
  import * as React from "react";
2
2
  import * as HoverCardPrimitive from "@radix-ui/react-hover-card";
3
+ /**
4
+ * 호버 시 미리보기 카드를 표시하는 컴포넌트입니다.
5
+ *
6
+ * @example
7
+ * ```tsx
8
+ * <HoverCard>
9
+ * <HoverCardTrigger>@사용자</HoverCardTrigger>
10
+ * <HoverCardContent>프로필 정보</HoverCardContent>
11
+ * </HoverCard>
12
+ * ```
13
+ */
3
14
  declare function HoverCard({ ...props }: React.ComponentProps<typeof HoverCardPrimitive.Root>): import("react/jsx-runtime").JSX.Element;
15
+ /** 호버 카드를 표시할 트리거 요소입니다. */
4
16
  declare function HoverCardTrigger({ ...props }: React.ComponentProps<typeof HoverCardPrimitive.Trigger>): import("react/jsx-runtime").JSX.Element;
17
+ /** 호버 카드 콘텐츠 영역입니다. */
5
18
  declare function HoverCardContent({ className, align, sideOffset, ...props }: React.ComponentProps<typeof HoverCardPrimitive.Content>): import("react/jsx-runtime").JSX.Element;
6
19
  export { HoverCard, HoverCardTrigger, HoverCardContent };
@@ -1,3 +1,13 @@
1
1
  import * as React from "react";
2
+ /**
3
+ * 텍스트 입력을 받는 인풋 컴포넌트입니다.
4
+ *
5
+ * @example
6
+ * ```tsx
7
+ * <Input type="text" placeholder="이름을 입력하세요" />
8
+ * <Input type="email" placeholder="이메일" />
9
+ * <Input type="password" placeholder="비밀번호" />
10
+ * ```
11
+ */
2
12
  declare function Input({ className, type, ...props }: React.ComponentProps<"input">): import("react/jsx-runtime").JSX.Element;
3
13
  export { Input };
@@ -1,16 +1,35 @@
1
1
  import { VariantProps } from 'class-variance-authority';
2
2
  import { Button } from '../button';
3
3
  import * as React from "react";
4
+ /**
5
+ * 입력 필드와 관련 요소들을 그룹화하는 컴포넌트입니다.
6
+ *
7
+ * @example
8
+ * ```tsx
9
+ * <InputGroup>
10
+ * <InputGroupAddon align="inline-start">$</InputGroupAddon>
11
+ * <InputGroupInput placeholder="0.00" />
12
+ * </InputGroup>
13
+ * ```
14
+ */
4
15
  declare function InputGroup({ className, ...props }: React.ComponentProps<"div">): import("react/jsx-runtime").JSX.Element;
5
16
  declare const inputGroupAddonVariants: (props?: ({
6
17
  align?: "inline-start" | "inline-end" | "block-start" | "block-end" | null | undefined;
7
18
  } & import('class-variance-authority/types').ClassProp) | undefined) => string;
19
+ /**
20
+ * 입력 그룹에 추가 요소(아이콘, 텍스트, 버튼 등)를 배치하는 컴포넌트입니다.
21
+ * @param props.align - 배치 위치 ('inline-start' | 'inline-end' | 'block-start' | 'block-end')
22
+ */
8
23
  declare function InputGroupAddon({ className, align, ...props }: React.ComponentProps<"div"> & VariantProps<typeof inputGroupAddonVariants>): import("react/jsx-runtime").JSX.Element;
9
24
  declare const inputGroupButtonVariants: (props?: ({
10
25
  size?: "sm" | "icon-sm" | "xs" | "icon-xs" | null | undefined;
11
26
  } & import('class-variance-authority/types').ClassProp) | undefined) => string;
27
+ /** 입력 그룹 내에서 사용하는 버튼 컴포넌트입니다. */
12
28
  declare function InputGroupButton({ className, type, variant, size, ...props }: Omit<React.ComponentProps<typeof Button>, "size"> & VariantProps<typeof inputGroupButtonVariants>): import("react/jsx-runtime").JSX.Element;
29
+ /** 입력 그룹 내 텍스트 레이블 컴포넌트입니다. */
13
30
  declare function InputGroupText({ className, ...props }: React.ComponentProps<"span">): import("react/jsx-runtime").JSX.Element;
31
+ /** 입력 그룹용 입력 필드 컴포넌트입니다. */
14
32
  declare function InputGroupInput({ className, ...props }: React.ComponentProps<"input">): import("react/jsx-runtime").JSX.Element;
33
+ /** 입력 그룹용 텍스트 영역 컴포넌트입니다. */
15
34
  declare function InputGroupTextarea({ className, ...props }: React.ComponentProps<"textarea">): import("react/jsx-runtime").JSX.Element;
16
35
  export { InputGroup, InputGroupAddon, InputGroupButton, InputGroupText, InputGroupInput, InputGroupTextarea, };
@@ -1,11 +1,34 @@
1
1
  import { OTPInput } from 'input-otp';
2
2
  import * as React from "react";
3
+ /**
4
+ * OTP(일회용 비밀번호) 입력을 위한 컴포넌트입니다.
5
+ *
6
+ * @param props.maxLength - 최대 입력 자릿수
7
+ * @param props.containerClassName - 컨테이너 클래스명
8
+ *
9
+ * @example
10
+ * ```tsx
11
+ * <InputOTP maxLength={6}>
12
+ * <InputOTPGroup>
13
+ * <InputOTPSlot index={0} />
14
+ * <InputOTPSlot index={1} />
15
+ * <InputOTPSlot index={2} />
16
+ * </InputOTPGroup>
17
+ * </InputOTP>
18
+ * ```
19
+ */
3
20
  declare function InputOTP({ className, containerClassName, ...props }: React.ComponentProps<typeof OTPInput> & {
4
21
  containerClassName?: string;
5
22
  }): import("react/jsx-runtime").JSX.Element;
23
+ /** OTP 슬롯들을 그룹화하는 컴포넌트입니다. */
6
24
  declare function InputOTPGroup({ className, ...props }: React.ComponentProps<"div">): import("react/jsx-runtime").JSX.Element;
25
+ /**
26
+ * 개별 OTP 입력 슬롯입니다.
27
+ * @param props.index - 슬롯 인덱스 (0부터 시작)
28
+ */
7
29
  declare function InputOTPSlot({ index, className, ...props }: React.ComponentProps<"div"> & {
8
30
  index: number;
9
31
  }): import("react/jsx-runtime").JSX.Element;
32
+ /** OTP 그룹 사이의 구분선 컴포넌트입니다. */
10
33
  declare function InputOTPSeparator({ ...props }: React.ComponentProps<"div">): import("react/jsx-runtime").JSX.Element;
11
34
  export { InputOTP, InputOTPGroup, InputOTPSlot, InputOTPSeparator };
@@ -1,23 +1,55 @@
1
1
  import { VariantProps } from 'class-variance-authority';
2
2
  import { Separator } from '../separator';
3
3
  import * as React from "react";
4
+ /**
5
+ * 리스트 아이템들을 그룹화하는 컴포넌트입니다.
6
+ *
7
+ * @example
8
+ * ```tsx
9
+ * <ItemGroup>
10
+ * <Item>
11
+ * <ItemMedia variant="icon"><UserIcon /></ItemMedia>
12
+ * <ItemContent>
13
+ * <ItemTitle>제목</ItemTitle>
14
+ * <ItemDescription>설명</ItemDescription>
15
+ * </ItemContent>
16
+ * </Item>
17
+ * </ItemGroup>
18
+ * ```
19
+ */
4
20
  declare function ItemGroup({ className, ...props }: React.ComponentProps<"div">): import("react/jsx-runtime").JSX.Element;
21
+ /** 아이템 사이의 구분선 컴포넌트입니다. */
5
22
  declare function ItemSeparator({ className, ...props }: React.ComponentProps<typeof Separator>): import("react/jsx-runtime").JSX.Element;
6
23
  declare const itemVariants: (props?: ({
7
24
  variant?: "default" | "outline" | "muted" | null | undefined;
8
25
  size?: "default" | "sm" | null | undefined;
9
26
  } & import('class-variance-authority/types').ClassProp) | undefined) => string;
27
+ /**
28
+ * 개별 리스트 아이템 컴포넌트입니다.
29
+ * @param props.variant - 스타일 변형 ('default' | 'outline' | 'muted')
30
+ * @param props.size - 크기 ('default' | 'sm')
31
+ */
10
32
  declare function Item({ className, variant, size, asChild, ...props }: React.ComponentProps<"div"> & VariantProps<typeof itemVariants> & {
11
33
  asChild?: boolean;
12
34
  }): import("react/jsx-runtime").JSX.Element;
13
35
  declare const itemMediaVariants: (props?: ({
14
- variant?: "default" | "image" | "icon" | null | undefined;
36
+ variant?: "image" | "default" | "icon" | null | undefined;
15
37
  } & import('class-variance-authority/types').ClassProp) | undefined) => string;
38
+ /**
39
+ * 아이템의 미디어(아이콘/이미지) 영역입니다.
40
+ * @param props.variant - 스타일 변형 ('default' | 'icon' | 'image')
41
+ */
16
42
  declare function ItemMedia({ className, variant, ...props }: React.ComponentProps<"div"> & VariantProps<typeof itemMediaVariants>): import("react/jsx-runtime").JSX.Element;
43
+ /** 아이템의 콘텐츠 영역입니다. */
17
44
  declare function ItemContent({ className, ...props }: React.ComponentProps<"div">): import("react/jsx-runtime").JSX.Element;
45
+ /** 아이템의 제목 컴포넌트입니다. */
18
46
  declare function ItemTitle({ className, ...props }: React.ComponentProps<"div">): import("react/jsx-runtime").JSX.Element;
47
+ /** 아이템의 설명 텍스트입니다. */
19
48
  declare function ItemDescription({ className, ...props }: React.ComponentProps<"p">): import("react/jsx-runtime").JSX.Element;
49
+ /** 아이템의 액션 버튼 영역입니다. */
20
50
  declare function ItemActions({ className, ...props }: React.ComponentProps<"div">): import("react/jsx-runtime").JSX.Element;
51
+ /** 아이템의 헤더 영역입니다. */
21
52
  declare function ItemHeader({ className, ...props }: React.ComponentProps<"div">): import("react/jsx-runtime").JSX.Element;
53
+ /** 아이템의 푸터 영역입니다. */
22
54
  declare function ItemFooter({ className, ...props }: React.ComponentProps<"div">): import("react/jsx-runtime").JSX.Element;
23
55
  export { Item, ItemMedia, ItemContent, ItemActions, ItemGroup, ItemSeparator, ItemTitle, ItemDescription, ItemHeader, ItemFooter, };
@@ -1,3 +1,13 @@
1
+ /**
2
+ * 키보드 단축키를 표시하는 컴포넌트입니다.
3
+ *
4
+ * @example
5
+ * ```tsx
6
+ * <Kbd>⌘</Kbd>
7
+ * <Kbd>K</Kbd>
8
+ * ```
9
+ */
1
10
  declare function Kbd({ className, ...props }: React.ComponentProps<"kbd">): import("react/jsx-runtime").JSX.Element;
11
+ /** 여러 키보드 단축키를 그룹화하는 컴포넌트입니다. */
2
12
  declare function KbdGroup({ className, ...props }: React.ComponentProps<"div">): import("react/jsx-runtime").JSX.Element;
3
13
  export { Kbd, KbdGroup };
@@ -1,4 +1,13 @@
1
1
  import * as React from "react";
2
2
  import * as LabelPrimitive from "@radix-ui/react-label";
3
+ /**
4
+ * 폼 요소에 대한 레이블을 표시하는 컴포넌트입니다.
5
+ *
6
+ * @example
7
+ * ```tsx
8
+ * <Label htmlFor="email">이메일</Label>
9
+ * <Input id="email" type="email" />
10
+ * ```
11
+ */
3
12
  declare function Label({ className, ...props }: React.ComponentProps<typeof LabelPrimitive.Root>): import("react/jsx-runtime").JSX.Element;
4
13
  export { Label };
@@ -1,22 +1,47 @@
1
1
  import * as React from "react";
2
2
  import * as MenubarPrimitive from "@radix-ui/react-menubar";
3
+ /**
4
+ * 수평 메뉴바 컴포넌트입니다.
5
+ *
6
+ * @example
7
+ * ```tsx
8
+ * <Menubar>
9
+ * <MenubarMenu>
10
+ * <MenubarTrigger>파일</MenubarTrigger>
11
+ * <MenubarContent>
12
+ * <MenubarItem>새로 만들기</MenubarItem>
13
+ * <MenubarItem>열기</MenubarItem>
14
+ * </MenubarContent>
15
+ * </MenubarMenu>
16
+ * </Menubar>
17
+ * ```
18
+ */
3
19
  declare function Menubar({ className, ...props }: React.ComponentProps<typeof MenubarPrimitive.Root>): import("react/jsx-runtime").JSX.Element;
20
+ /** 개별 메뉴 컨테이너입니다. */
4
21
  declare function MenubarMenu({ ...props }: React.ComponentProps<typeof MenubarPrimitive.Menu>): import("react/jsx-runtime").JSX.Element;
5
22
  declare function MenubarGroup({ ...props }: React.ComponentProps<typeof MenubarPrimitive.Group>): import("react/jsx-runtime").JSX.Element;
6
23
  declare function MenubarPortal({ ...props }: React.ComponentProps<typeof MenubarPrimitive.Portal>): import("react/jsx-runtime").JSX.Element;
7
24
  declare function MenubarRadioGroup({ ...props }: React.ComponentProps<typeof MenubarPrimitive.RadioGroup>): import("react/jsx-runtime").JSX.Element;
25
+ /** 메뉴를 여는 트리거 버튼입니다. */
8
26
  declare function MenubarTrigger({ className, ...props }: React.ComponentProps<typeof MenubarPrimitive.Trigger>): import("react/jsx-runtime").JSX.Element;
27
+ /** 메뉴 콘텐츠 드롭다운입니다. */
9
28
  declare function MenubarContent({ className, align, alignOffset, sideOffset, ...props }: React.ComponentProps<typeof MenubarPrimitive.Content>): import("react/jsx-runtime").JSX.Element;
29
+ /** 메뉴 아이템 컴포넌트입니다. */
10
30
  declare function MenubarItem({ className, inset, variant, ...props }: React.ComponentProps<typeof MenubarPrimitive.Item> & {
11
31
  inset?: boolean;
12
32
  variant?: "default" | "destructive";
13
33
  }): import("react/jsx-runtime").JSX.Element;
34
+ /** 체크박스 형태의 메뉴 아이템입니다. */
14
35
  declare function MenubarCheckboxItem({ className, children, checked, ...props }: React.ComponentProps<typeof MenubarPrimitive.CheckboxItem>): import("react/jsx-runtime").JSX.Element;
36
+ /** 라디오 형태의 메뉴 아이템입니다. */
15
37
  declare function MenubarRadioItem({ className, children, ...props }: React.ComponentProps<typeof MenubarPrimitive.RadioItem>): import("react/jsx-runtime").JSX.Element;
38
+ /** 메뉴 섹션의 레이블입니다. */
16
39
  declare function MenubarLabel({ className, inset, ...props }: React.ComponentProps<typeof MenubarPrimitive.Label> & {
17
40
  inset?: boolean;
18
41
  }): import("react/jsx-runtime").JSX.Element;
42
+ /** 메뉴 아이템 사이의 구분선입니다. */
19
43
  declare function MenubarSeparator({ className, ...props }: React.ComponentProps<typeof MenubarPrimitive.Separator>): import("react/jsx-runtime").JSX.Element;
44
+ /** 메뉴 아이템의 단축키 표시입니다. */
20
45
  declare function MenubarShortcut({ className, ...props }: React.ComponentProps<"span">): import("react/jsx-runtime").JSX.Element;
21
46
  declare function MenubarSub({ ...props }: React.ComponentProps<typeof MenubarPrimitive.Sub>): import("react/jsx-runtime").JSX.Element;
22
47
  declare function MenubarSubTrigger({ className, inset, children, ...props }: React.ComponentProps<typeof MenubarPrimitive.SubTrigger> & {
@@ -1,14 +1,40 @@
1
1
  import * as React from "react";
2
2
  import * as NavigationMenuPrimitive from "@radix-ui/react-navigation-menu";
3
+ /**
4
+ * 수평 네비게이션 메뉴 컴포넌트입니다.
5
+ *
6
+ * @param props.viewport - 뷰포트 사용 여부
7
+ *
8
+ * @example
9
+ * ```tsx
10
+ * <NavigationMenu>
11
+ * <NavigationMenuList>
12
+ * <NavigationMenuItem>
13
+ * <NavigationMenuTrigger>시작하기</NavigationMenuTrigger>
14
+ * <NavigationMenuContent>
15
+ * <NavigationMenuLink>소개</NavigationMenuLink>
16
+ * </NavigationMenuContent>
17
+ * </NavigationMenuItem>
18
+ * </NavigationMenuList>
19
+ * </NavigationMenu>
20
+ * ```
21
+ */
3
22
  declare function NavigationMenu({ className, children, viewport, ...props }: React.ComponentProps<typeof NavigationMenuPrimitive.Root> & {
4
23
  viewport?: boolean;
5
24
  }): import("react/jsx-runtime").JSX.Element;
25
+ /** 네비게이션 메뉴 아이템들의 목록입니다. */
6
26
  declare function NavigationMenuList({ className, ...props }: React.ComponentProps<typeof NavigationMenuPrimitive.List>): import("react/jsx-runtime").JSX.Element;
27
+ /** 개별 네비게이션 메뉴 아이템입니다. */
7
28
  declare function NavigationMenuItem({ className, ...props }: React.ComponentProps<typeof NavigationMenuPrimitive.Item>): import("react/jsx-runtime").JSX.Element;
8
29
  declare const navigationMenuTriggerStyle: (props?: import('class-variance-authority/types').ClassProp | undefined) => string;
30
+ /** 드롭다운을 여는 트리거 버튼입니다. */
9
31
  declare function NavigationMenuTrigger({ className, children, ...props }: React.ComponentProps<typeof NavigationMenuPrimitive.Trigger>): import("react/jsx-runtime").JSX.Element;
32
+ /** 네비게이션 메뉴의 드롭다운 콘텐츠입니다. */
10
33
  declare function NavigationMenuContent({ className, ...props }: React.ComponentProps<typeof NavigationMenuPrimitive.Content>): import("react/jsx-runtime").JSX.Element;
34
+ /** 드롭다운 콘텐츠를 표시하는 뷰포트입니다. */
11
35
  declare function NavigationMenuViewport({ className, ...props }: React.ComponentProps<typeof NavigationMenuPrimitive.Viewport>): import("react/jsx-runtime").JSX.Element;
36
+ /** 네비게이션 링크 컴포넌트입니다. */
12
37
  declare function NavigationMenuLink({ className, ...props }: React.ComponentProps<typeof NavigationMenuPrimitive.Link>): import("react/jsx-runtime").JSX.Element;
38
+ /** 현재 활성 메뉴를 가리키는 인디케이터입니다. */
13
39
  declare function NavigationMenuIndicator({ className, ...props }: React.ComponentProps<typeof NavigationMenuPrimitive.Indicator>): import("react/jsx-runtime").JSX.Element;
14
40
  export { NavigationMenu, NavigationMenuList, NavigationMenuItem, NavigationMenuContent, NavigationMenuTrigger, NavigationMenuLink, NavigationMenuIndicator, NavigationMenuViewport, navigationMenuTriggerStyle, };
@@ -1,13 +1,39 @@
1
1
  import { Button } from '../button';
2
2
  import * as React from "react";
3
+ /**
4
+ * 페이지 목록을 탐색하는 페이지네이션 컴포넌트입니다.
5
+ *
6
+ * @example
7
+ * ```tsx
8
+ * <Pagination>
9
+ * <PaginationContent>
10
+ * <PaginationItem>
11
+ * <PaginationPrevious href="#" />
12
+ * </PaginationItem>
13
+ * <PaginationItem>
14
+ * <PaginationLink href="#" isActive>1</PaginationLink>
15
+ * </PaginationItem>
16
+ * <PaginationItem>
17
+ * <PaginationNext href="#" />
18
+ * </PaginationItem>
19
+ * </PaginationContent>
20
+ * </Pagination>
21
+ * ```
22
+ */
3
23
  declare function Pagination({ className, ...props }: React.ComponentProps<"nav">): import("react/jsx-runtime").JSX.Element;
4
24
  declare function PaginationContent({ className, ...props }: React.ComponentProps<"ul">): import("react/jsx-runtime").JSX.Element;
5
25
  declare function PaginationItem({ ...props }: React.ComponentProps<"li">): import("react/jsx-runtime").JSX.Element;
6
26
  type PaginationLinkProps = {
7
27
  isActive?: boolean;
8
28
  } & Pick<React.ComponentProps<typeof Button>, "size"> & React.ComponentProps<"a">;
29
+ /**
30
+ * 페이지네이션 링크입니다.
31
+ * @param props.isActive - 현재 페이지 여부
32
+ */
9
33
  declare function PaginationLink({ className, isActive, size, ...props }: PaginationLinkProps): import("react/jsx-runtime").JSX.Element;
34
+ /** 이전 페이지로 이동하는 링크입니다. */
10
35
  declare function PaginationPrevious({ className, ...props }: React.ComponentProps<typeof PaginationLink>): import("react/jsx-runtime").JSX.Element;
36
+ /** 다음 페이지로 이동하는 링크입니다. */
11
37
  declare function PaginationNext({ className, ...props }: React.ComponentProps<typeof PaginationLink>): import("react/jsx-runtime").JSX.Element;
12
38
  declare function PaginationEllipsis({ className, ...props }: React.ComponentProps<"span">): import("react/jsx-runtime").JSX.Element;
13
39
  export { Pagination, PaginationContent, PaginationLink, PaginationItem, PaginationPrevious, PaginationNext, PaginationEllipsis, };
@@ -1,7 +1,24 @@
1
1
  import { Popover as PopoverPrimitive } from 'radix-ui';
2
2
  import * as React from "react";
3
+ /**
4
+ * 트리거 요소 근처에 팝업 콘텐츠를 표시하는 팝오버 컴포넌트입니다.
5
+ *
6
+ * @example
7
+ * ```tsx
8
+ * <Popover>
9
+ * <PopoverTrigger>열기</PopoverTrigger>
10
+ * <PopoverContent>팝오버 내용</PopoverContent>
11
+ * </Popover>
12
+ * ```
13
+ */
3
14
  declare function Popover({ ...props }: React.ComponentProps<typeof PopoverPrimitive.Root>): import("react/jsx-runtime").JSX.Element;
15
+ /** 팝오버를 열기 위한 트리거 요소입니다. */
4
16
  declare function PopoverTrigger({ ...props }: React.ComponentProps<typeof PopoverPrimitive.Trigger>): import("react/jsx-runtime").JSX.Element;
17
+ /**
18
+ * 팝오버의 콘텐츠 영역입니다.
19
+ * @param props.align - 정렬 방식 ('start' | 'center' | 'end')
20
+ * @param props.sideOffset - 트리거와의 간격 (기본값: 4)
21
+ */
5
22
  declare function PopoverContent({ className, align, sideOffset, ...props }: React.ComponentProps<typeof PopoverPrimitive.Content>): import("react/jsx-runtime").JSX.Element;
6
23
  declare function PopoverAnchor({ ...props }: React.ComponentProps<typeof PopoverPrimitive.Anchor>): import("react/jsx-runtime").JSX.Element;
7
24
  declare function PopoverHeader({ className, ...props }: React.ComponentProps<"div">): import("react/jsx-runtime").JSX.Element;
@@ -1,4 +1,14 @@
1
1
  import * as React from "react";
2
2
  import * as ProgressPrimitive from "@radix-ui/react-progress";
3
+ /**
4
+ * 작업 진행 상태를 시각적으로 표시하는 프로그레스 바 컴포넌트입니다.
5
+ *
6
+ * @param props.value - 진행률 (0-100)
7
+ *
8
+ * @example
9
+ * ```tsx
10
+ * <Progress value={45} />
11
+ * ```
12
+ */
3
13
  declare function Progress({ className, value, ...props }: React.ComponentProps<typeof ProgressPrimitive.Root>): import("react/jsx-runtime").JSX.Element;
4
14
  export { Progress };
@@ -1,5 +1,17 @@
1
1
  import * as React from "react";
2
2
  import * as RadioGroupPrimitive from "@radix-ui/react-radio-group";
3
+ /**
4
+ * 여러 옵션 중 하나를 선택하는 라디오 그룹 컴포넌트입니다.
5
+ *
6
+ * @example
7
+ * ```tsx
8
+ * <RadioGroup defaultValue="option1">
9
+ * <RadioGroupItem value="option1" />
10
+ * <RadioGroupItem value="option2" />
11
+ * </RadioGroup>
12
+ * ```
13
+ */
3
14
  declare function RadioGroup({ className, ...props }: React.ComponentProps<typeof RadioGroupPrimitive.Root>): import("react/jsx-runtime").JSX.Element;
15
+ /** 라디오 그룹의 개별 옵션 아이템입니다. */
4
16
  declare function RadioGroupItem({ className, ...props }: React.ComponentProps<typeof RadioGroupPrimitive.Item>): import("react/jsx-runtime").JSX.Element;
5
17
  export { RadioGroup, RadioGroupItem };
@@ -1,7 +1,26 @@
1
1
  import * as React from "react";
2
2
  import * as ResizablePrimitive from "react-resizable-panels";
3
+ /**
4
+ * 크기 조절 가능한 패널 그룹 컴포넌트입니다.
5
+ *
6
+ * @param props.direction - 패널 방향 ('horizontal' | 'vertical')
7
+ *
8
+ * @example
9
+ * ```tsx
10
+ * <ResizablePanelGroup direction="horizontal">
11
+ * <ResizablePanel>패널 1</ResizablePanel>
12
+ * <ResizableHandle />
13
+ * <ResizablePanel>패널 2</ResizablePanel>
14
+ * </ResizablePanelGroup>
15
+ * ```
16
+ */
3
17
  declare function ResizablePanelGroup({ className, ...props }: React.ComponentProps<typeof ResizablePrimitive.PanelGroup>): import("react/jsx-runtime").JSX.Element;
18
+ /** 크기 조절 가능한 패널입니다. */
4
19
  declare function ResizablePanel({ ...props }: React.ComponentProps<typeof ResizablePrimitive.Panel>): import("react/jsx-runtime").JSX.Element;
20
+ /**
21
+ * 패널 크기 조절 핸들입니다.
22
+ * @param props.withHandle - 드래그 핸들 아이콘 표시 여부
23
+ */
5
24
  declare function ResizableHandle({ withHandle, className, ...props }: React.ComponentProps<typeof ResizablePrimitive.PanelResizeHandle> & {
6
25
  withHandle?: boolean;
7
26
  }): import("react/jsx-runtime").JSX.Element;