@reco-inc/upbox-ui 0.1.1

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 (401) hide show
  1. package/FigmaConnect.md +1963 -0
  2. package/README.md +217 -0
  3. package/dist/FigmaConnect.md +1963 -0
  4. package/dist/components/accordion/Accordion.d.ts +23 -0
  5. package/dist/components/accordion/Accordion.stories.d.ts +38 -0
  6. package/dist/components/accordion/AccordionContent.d.ts +22 -0
  7. package/dist/components/accordion/AccordionItem.d.ts +22 -0
  8. package/dist/components/accordion/AccordionTrigger.d.ts +23 -0
  9. package/dist/components/accordion/index.d.ts +4 -0
  10. package/dist/components/avatar/Avatar.d.ts +21 -0
  11. package/dist/components/avatar/Avatar.stories.d.ts +46 -0
  12. package/dist/components/avatar/AvatarFallback.d.ts +18 -0
  13. package/dist/components/avatar/AvatarImage.d.ts +18 -0
  14. package/dist/components/avatar/index.d.ts +14 -0
  15. package/dist/components/badge/Badge.d.ts +20 -0
  16. package/dist/components/badge/Badge.stories.d.ts +52 -0
  17. package/dist/components/badge/index.d.ts +20 -0
  18. package/dist/components/badge-divider/BadgeDivider.d.ts +18 -0
  19. package/dist/components/badge-divider/BadgeDivider.stories.d.ts +38 -0
  20. package/dist/components/badge-divider/index.d.ts +12 -0
  21. package/dist/components/breadcrumb/Breadcrumb.d.ts +21 -0
  22. package/dist/components/breadcrumb/Breadcrumb.stories.d.ts +33 -0
  23. package/dist/components/breadcrumb/BreadcrumbEllipsis.d.ts +21 -0
  24. package/dist/components/breadcrumb/BreadcrumbItem.d.ts +21 -0
  25. package/dist/components/breadcrumb/BreadcrumbLink.d.ts +24 -0
  26. package/dist/components/breadcrumb/BreadcrumbList.d.ts +21 -0
  27. package/dist/components/breadcrumb/BreadcrumbPage.d.ts +21 -0
  28. package/dist/components/breadcrumb/BreadcrumbSeparator.d.ts +21 -0
  29. package/dist/components/breadcrumb/index.d.ts +7 -0
  30. package/dist/components/button/Button.d.ts +39 -0
  31. package/dist/components/button/Button.stories.d.ts +109 -0
  32. package/dist/components/button/index.d.ts +9 -0
  33. package/dist/components/calendar/CalendarCell.d.ts +22 -0
  34. package/dist/components/calendar/CalendarCellTrigger.d.ts +22 -0
  35. package/dist/components/calendar/CalendarDateGrid.d.ts +58 -0
  36. package/dist/components/calendar/CalendarFooter.d.ts +32 -0
  37. package/dist/components/calendar/CalendarGrid.d.ts +22 -0
  38. package/dist/components/calendar/CalendarGridBody.d.ts +18 -0
  39. package/dist/components/calendar/CalendarGridHead.d.ts +22 -0
  40. package/dist/components/calendar/CalendarGridRow.d.ts +22 -0
  41. package/dist/components/calendar/CalendarHeadCell.d.ts +22 -0
  42. package/dist/components/calendar/CalendarHeader.d.ts +32 -0
  43. package/dist/components/calendar/CalendarHeading.d.ts +35 -0
  44. package/dist/components/calendar/CalendarMonthGrid.d.ts +19 -0
  45. package/dist/components/calendar/CalendarNextButton.d.ts +22 -0
  46. package/dist/components/calendar/CalendarPrevButton.d.ts +22 -0
  47. package/dist/components/calendar/CalendarRangeDateGrid.d.ts +73 -0
  48. package/dist/components/calendar/CalendarRangeHeader.d.ts +13 -0
  49. package/dist/components/calendar/CalendarShortcut.d.ts +41 -0
  50. package/dist/components/calendar/CalendarTimeSelect.d.ts +27 -0
  51. package/dist/components/calendar/CalendarYearGrid.d.ts +16 -0
  52. package/dist/components/calendar/DateCalendar.d.ts +50 -0
  53. package/dist/components/calendar/DateCalendar.stories.d.ts +69 -0
  54. package/dist/components/calendar/MobileDateCalendar.d.ts +44 -0
  55. package/dist/components/calendar/MobileDateCalendar.stories.d.ts +63 -0
  56. package/dist/components/calendar/MobilePeriodCalendar.d.ts +53 -0
  57. package/dist/components/calendar/MobilePeriodCalendar.stories.d.ts +88 -0
  58. package/dist/components/calendar/MonthCalendar.d.ts +16 -0
  59. package/dist/components/calendar/MonthCalendar.stories.d.ts +24 -0
  60. package/dist/components/calendar/PeriodCalendar.d.ts +22 -0
  61. package/dist/components/calendar/PeriodCalendar.stories.d.ts +31 -0
  62. package/dist/components/calendar/RangeCalendar.d.ts +65 -0
  63. package/dist/components/calendar/RangeCalendarNextButton.d.ts +22 -0
  64. package/dist/components/calendar/RangeCalendarPrevButton.d.ts +22 -0
  65. package/dist/components/calendar/calendarDateCellClasses.d.ts +3 -0
  66. package/dist/components/calendar/calendarShortcutItems.d.ts +16 -0
  67. package/dist/components/calendar/calendarWeek.d.ts +12 -0
  68. package/dist/components/calendar/index.d.ts +27 -0
  69. package/dist/components/card/Card.d.ts +21 -0
  70. package/dist/components/card/Card.stories.d.ts +32 -0
  71. package/dist/components/card/CardContent.d.ts +21 -0
  72. package/dist/components/card/CardDescription.d.ts +21 -0
  73. package/dist/components/card/CardFooter.d.ts +21 -0
  74. package/dist/components/card/CardHeader.d.ts +21 -0
  75. package/dist/components/card/CardTitle.d.ts +21 -0
  76. package/dist/components/card/index.d.ts +6 -0
  77. package/dist/components/checkbox/Checkbox.d.ts +33 -0
  78. package/dist/components/checkbox/Checkbox.stories.d.ts +75 -0
  79. package/dist/components/checkbox/CheckboxGroupField.d.ts +27 -0
  80. package/dist/components/checkbox/CheckboxGroupField.stories.d.ts +35 -0
  81. package/dist/components/checkbox/index.d.ts +20 -0
  82. package/dist/components/date-move/DateMove.d.ts +30 -0
  83. package/dist/components/date-move/DateMove.stories.d.ts +59 -0
  84. package/dist/components/date-move/dateMoveContext.d.ts +3 -0
  85. package/dist/components/date-move/index.d.ts +1 -0
  86. package/dist/components/date-period-picker/DatePeriodInput.d.ts +23 -0
  87. package/dist/components/date-period-picker/DatePeriodPicker.d.ts +42 -0
  88. package/dist/components/date-period-picker/DatePeriodPicker.stories.d.ts +91 -0
  89. package/dist/components/date-period-picker/DatePeriodTrigger.d.ts +16 -0
  90. package/dist/components/date-period-picker/datePeriodTypes.d.ts +7 -0
  91. package/dist/components/date-period-picker/index.d.ts +4 -0
  92. package/dist/components/date-picker/DateInput.d.ts +43 -0
  93. package/dist/components/date-picker/DatePicker.d.ts +46 -0
  94. package/dist/components/date-picker/DatePicker.stories.d.ts +117 -0
  95. package/dist/components/date-picker/DateTrigger.d.ts +23 -0
  96. package/dist/components/date-picker/datePickerContext.d.ts +14 -0
  97. package/dist/components/date-picker/index.d.ts +3 -0
  98. package/dist/components/dialog/Dialog.d.ts +22 -0
  99. package/dist/components/dialog/Dialog.stories.d.ts +37 -0
  100. package/dist/components/dialog/DialogClose.d.ts +18 -0
  101. package/dist/components/dialog/DialogContent.d.ts +60 -0
  102. package/dist/components/dialog/DialogDescription.d.ts +22 -0
  103. package/dist/components/dialog/DialogFooter.d.ts +21 -0
  104. package/dist/components/dialog/DialogHeader.d.ts +21 -0
  105. package/dist/components/dialog/DialogScrollContent.d.ts +36 -0
  106. package/dist/components/dialog/DialogTitle.d.ts +22 -0
  107. package/dist/components/dialog/DialogTrigger.d.ts +18 -0
  108. package/dist/components/dialog/index.d.ts +10 -0
  109. package/dist/components/drawer/Drawer.d.ts +34 -0
  110. package/dist/components/drawer/Drawer.stories.d.ts +67 -0
  111. package/dist/components/drawer/DrawerContent.d.ts +36 -0
  112. package/dist/components/drawer/DrawerDescription.d.ts +22 -0
  113. package/dist/components/drawer/DrawerFooter.d.ts +21 -0
  114. package/dist/components/drawer/DrawerHeader.d.ts +21 -0
  115. package/dist/components/drawer/DrawerOverlay.d.ts +7 -0
  116. package/dist/components/drawer/DrawerTitle.d.ts +22 -0
  117. package/dist/components/drawer/index.d.ts +8 -0
  118. package/dist/components/dropdown-filter/DropdownFilter.d.ts +59 -0
  119. package/dist/components/dropdown-filter/DropdownFilter.stories.d.ts +41 -0
  120. package/dist/components/dropdown-filter/index.d.ts +2 -0
  121. package/dist/components/dropdown-menu/DropdownMenu.d.ts +22 -0
  122. package/dist/components/dropdown-menu/DropdownMenu.stories.d.ts +39 -0
  123. package/dist/components/dropdown-menu/DropdownMenuCheckboxItem.d.ts +28 -0
  124. package/dist/components/dropdown-menu/DropdownMenuContent.d.ts +36 -0
  125. package/dist/components/dropdown-menu/DropdownMenuGroup.d.ts +18 -0
  126. package/dist/components/dropdown-menu/DropdownMenuItem.d.ts +23 -0
  127. package/dist/components/dropdown-menu/DropdownMenuLabel.d.ts +23 -0
  128. package/dist/components/dropdown-menu/DropdownMenuRadioGroup.d.ts +22 -0
  129. package/dist/components/dropdown-menu/DropdownMenuRadioItem.d.ts +26 -0
  130. package/dist/components/dropdown-menu/DropdownMenuSeparator.d.ts +7 -0
  131. package/dist/components/dropdown-menu/DropdownMenuShortcut.d.ts +21 -0
  132. package/dist/components/dropdown-menu/DropdownMenuSub.d.ts +22 -0
  133. package/dist/components/dropdown-menu/DropdownMenuSubContent.d.ts +38 -0
  134. package/dist/components/dropdown-menu/DropdownMenuSubTrigger.d.ts +22 -0
  135. package/dist/components/dropdown-menu/DropdownMenuTrigger.d.ts +18 -0
  136. package/dist/components/dropdown-menu/index.d.ts +15 -0
  137. package/dist/components/empty/Empty.d.ts +21 -0
  138. package/dist/components/empty/Empty.stories.d.ts +26 -0
  139. package/dist/components/empty/EmptyState.d.ts +29 -0
  140. package/dist/components/empty/EmptyState.stories.d.ts +43 -0
  141. package/dist/components/empty/index.d.ts +4 -0
  142. package/dist/components/fab/Fab.d.ts +33 -0
  143. package/dist/components/fab/Fab.stories.d.ts +70 -0
  144. package/dist/components/fab/index.d.ts +7 -0
  145. package/dist/components/file-uploader/FileItem.d.ts +52 -0
  146. package/dist/components/file-uploader/FileUploader.d.ts +65 -0
  147. package/dist/components/file-uploader/FileUploader.stories.d.ts +122 -0
  148. package/dist/components/file-uploader/index.d.ts +3 -0
  149. package/dist/components/file-uploader/types.d.ts +33 -0
  150. package/dist/components/filter-chip/FilterChip.d.ts +24 -0
  151. package/dist/components/filter-chip/FilterChip.stories.d.ts +70 -0
  152. package/dist/components/filter-chip/index.d.ts +30 -0
  153. package/dist/components/form/FieldContainer.d.ts +51 -0
  154. package/dist/components/form/FieldContainer.stories.d.ts +77 -0
  155. package/dist/components/form/FieldControlProvider.d.ts +21 -0
  156. package/dist/components/form/FormControl.d.ts +17 -0
  157. package/dist/components/form/FormDescription.d.ts +21 -0
  158. package/dist/components/form/FormItem.d.ts +21 -0
  159. package/dist/components/form/FormLabel.d.ts +22 -0
  160. package/dist/components/form/FormMessage.d.ts +2 -0
  161. package/dist/components/form/index.d.ts +8 -0
  162. package/dist/components/form/injectionKeys.d.ts +11 -0
  163. package/dist/components/form/useFormField.d.ts +11 -0
  164. package/dist/components/icon-button/IconButton.d.ts +31 -0
  165. package/dist/components/icon-button/IconButton.stories.d.ts +67 -0
  166. package/dist/components/icon-button/index.d.ts +7 -0
  167. package/dist/components/input-frame/InputFrame.d.ts +32 -0
  168. package/dist/components/input-frame/InputFrame.stories.d.ts +75 -0
  169. package/dist/components/input-frame/InputIcon.d.ts +21 -0
  170. package/dist/components/input-frame/index.d.ts +4 -0
  171. package/dist/components/input-frame/inputFrameContext.d.ts +35 -0
  172. package/dist/components/input-frame/inputFrameVariants.d.ts +26 -0
  173. package/dist/components/input-group/InputGroup.d.ts +29 -0
  174. package/dist/components/input-group/InputGroup.stories.d.ts +47 -0
  175. package/dist/components/input-group/InputGroupAddon.d.ts +20 -0
  176. package/dist/components/input-group/InputGroupButton.d.ts +21 -0
  177. package/dist/components/input-group/InputGroupInput.d.ts +6 -0
  178. package/dist/components/input-group/InputGroupText.d.ts +21 -0
  179. package/dist/components/input-group/InputGroupTextarea.d.ts +7 -0
  180. package/dist/components/input-group/index.d.ts +27 -0
  181. package/dist/components/label/Label.d.ts +22 -0
  182. package/dist/components/label/Label.stories.d.ts +41 -0
  183. package/dist/components/label/index.d.ts +1 -0
  184. package/dist/components/logo/Logo.d.ts +5 -0
  185. package/dist/components/logo/Logo.stories.d.ts +20 -0
  186. package/dist/components/logo/index.d.ts +5 -0
  187. package/dist/components/mobile-date-period-picker/MobileDatePeriodPicker.d.ts +62 -0
  188. package/dist/components/mobile-date-period-picker/MobileDatePeriodPicker.stories.d.ts +123 -0
  189. package/dist/components/mobile-date-period-picker/MobileDatePeriodTrigger.d.ts +36 -0
  190. package/dist/components/mobile-date-period-picker/index.d.ts +2 -0
  191. package/dist/components/mobile-date-period-selector/MobileDatePeriodSelector.d.ts +49 -0
  192. package/dist/components/mobile-date-period-selector/MobileDatePeriodSelector.stories.d.ts +69 -0
  193. package/dist/components/mobile-date-period-selector/index.d.ts +2 -0
  194. package/dist/components/mobile-date-picker/MobileDatePicker.d.ts +45 -0
  195. package/dist/components/mobile-date-picker/MobileDatePicker.stories.d.ts +91 -0
  196. package/dist/components/mobile-date-picker/MobileDateTrigger.d.ts +23 -0
  197. package/dist/components/mobile-date-picker/index.d.ts +2 -0
  198. package/dist/components/mobile-time-picker/MobileTimeDial.d.ts +26 -0
  199. package/dist/components/mobile-time-picker/MobileTimeDial.stories.d.ts +37 -0
  200. package/dist/components/mobile-time-picker/MobileTimePicker.d.ts +39 -0
  201. package/dist/components/mobile-time-picker/MobileTimePicker.stories.d.ts +95 -0
  202. package/dist/components/mobile-time-picker/index.d.ts +2 -0
  203. package/dist/components/modal/Modal.d.ts +60 -0
  204. package/dist/components/modal/Modal.stories.d.ts +53 -0
  205. package/dist/components/modal/index.d.ts +2 -0
  206. package/dist/components/modal/modalProps.d.ts +57 -0
  207. package/dist/components/number-field/NumberField.d.ts +12 -0
  208. package/dist/components/number-field/NumberField.stories.d.ts +43 -0
  209. package/dist/components/number-field/NumberFieldContent.d.ts +21 -0
  210. package/dist/components/number-field/NumberFieldDecrement.d.ts +22 -0
  211. package/dist/components/number-field/NumberFieldIncrement.d.ts +22 -0
  212. package/dist/components/number-field/NumberFieldInput.d.ts +7 -0
  213. package/dist/components/number-field/NumberFieldRoot.d.ts +37 -0
  214. package/dist/components/number-field/index.d.ts +25 -0
  215. package/dist/components/page-header/PageHeader.d.ts +64 -0
  216. package/dist/components/page-header/PageHeader.stories.d.ts +27 -0
  217. package/dist/components/page-header/index.d.ts +1 -0
  218. package/dist/components/pagination/Pagination.d.ts +29 -0
  219. package/dist/components/pagination/Pagination.stories.d.ts +50 -0
  220. package/dist/components/pagination/PaginationContent.d.ts +29 -0
  221. package/dist/components/pagination/PaginationEllipsis.d.ts +22 -0
  222. package/dist/components/pagination/PaginationFirst.d.ts +22 -0
  223. package/dist/components/pagination/PaginationItem.d.ts +22 -0
  224. package/dist/components/pagination/PaginationLast.d.ts +22 -0
  225. package/dist/components/pagination/PaginationNext.d.ts +22 -0
  226. package/dist/components/pagination/PaginationPrevious.d.ts +22 -0
  227. package/dist/components/pagination/index.d.ts +13 -0
  228. package/dist/components/panel/Panel.d.ts +23 -0
  229. package/dist/components/panel/Panel.stories.d.ts +59 -0
  230. package/dist/components/panel/PanelIcon.d.ts +7 -0
  231. package/dist/components/panel/index.d.ts +17 -0
  232. package/dist/components/panel/panelContext.d.ts +8 -0
  233. package/dist/components/panel/panelVariants.d.ts +13 -0
  234. package/dist/components/popover/Popover.d.ts +22 -0
  235. package/dist/components/popover/Popover.stories.d.ts +38 -0
  236. package/dist/components/popover/PopoverContent.d.ts +39 -0
  237. package/dist/components/popover/PopoverTrigger.d.ts +18 -0
  238. package/dist/components/popover/index.d.ts +5 -0
  239. package/dist/components/radio-group/RadioGroup.d.ts +26 -0
  240. package/dist/components/radio-group/RadioGroup.stories.d.ts +48 -0
  241. package/dist/components/radio-group/RadioGroupField.d.ts +28 -0
  242. package/dist/components/radio-group/RadioGroupField.stories.d.ts +31 -0
  243. package/dist/components/radio-group/RadioGroupItem.d.ts +12 -0
  244. package/dist/components/radio-group/index.d.ts +9 -0
  245. package/dist/components/search-field/SearchField.d.ts +33 -0
  246. package/dist/components/search-field/SearchField.stories.d.ts +94 -0
  247. package/dist/components/search-field/index.d.ts +17 -0
  248. package/dist/components/select/Select.d.ts +33 -0
  249. package/dist/components/select/Select.stories.d.ts +54 -0
  250. package/dist/components/select/SelectClearIcon.d.ts +2 -0
  251. package/dist/components/select/SelectContent.d.ts +33 -0
  252. package/dist/components/select/SelectField.d.ts +16 -0
  253. package/dist/components/select/SelectField.stories.d.ts +43 -0
  254. package/dist/components/select/SelectFieldValue.d.ts +26 -0
  255. package/dist/components/select/SelectGroup.d.ts +22 -0
  256. package/dist/components/select/SelectItem.d.ts +22 -0
  257. package/dist/components/select/SelectItemText.d.ts +18 -0
  258. package/dist/components/select/SelectLabel.d.ts +22 -0
  259. package/dist/components/select/SelectScrollDownButton.d.ts +22 -0
  260. package/dist/components/select/SelectScrollUpButton.d.ts +22 -0
  261. package/dist/components/select/SelectSeparator.d.ts +7 -0
  262. package/dist/components/select/SelectTrigger.d.ts +52 -0
  263. package/dist/components/select/SelectValue.d.ts +18 -0
  264. package/dist/components/select/index.d.ts +14 -0
  265. package/dist/components/select/selectContext.d.ts +3 -0
  266. package/dist/components/select/selectFieldProps.d.ts +38 -0
  267. package/dist/components/separator/Separator.d.ts +6 -0
  268. package/dist/components/separator/Separator.stories.d.ts +13 -0
  269. package/dist/components/separator/index.d.ts +6 -0
  270. package/dist/components/sheet/Sheet.d.ts +22 -0
  271. package/dist/components/sheet/Sheet.stories.d.ts +40 -0
  272. package/dist/components/sheet/SheetClose.d.ts +18 -0
  273. package/dist/components/sheet/SheetContent.d.ts +35 -0
  274. package/dist/components/sheet/SheetDescription.d.ts +22 -0
  275. package/dist/components/sheet/SheetFooter.d.ts +21 -0
  276. package/dist/components/sheet/SheetHeader.d.ts +21 -0
  277. package/dist/components/sheet/SheetTitle.d.ts +22 -0
  278. package/dist/components/sheet/SheetTrigger.d.ts +18 -0
  279. package/dist/components/sheet/index.d.ts +17 -0
  280. package/dist/components/sidebar/Sidebar.d.ts +24 -0
  281. package/dist/components/sidebar/Sidebar.stories.d.ts +45 -0
  282. package/dist/components/sidebar/SidebarContent.d.ts +21 -0
  283. package/dist/components/sidebar/SidebarFooter.d.ts +21 -0
  284. package/dist/components/sidebar/SidebarGroup.d.ts +21 -0
  285. package/dist/components/sidebar/SidebarGroupAction.d.ts +22 -0
  286. package/dist/components/sidebar/SidebarGroupContent.d.ts +21 -0
  287. package/dist/components/sidebar/SidebarGroupLabel.d.ts +22 -0
  288. package/dist/components/sidebar/SidebarHeader.d.ts +21 -0
  289. package/dist/components/sidebar/SidebarInput.d.ts +21 -0
  290. package/dist/components/sidebar/SidebarInset.d.ts +21 -0
  291. package/dist/components/sidebar/SidebarMenu.d.ts +21 -0
  292. package/dist/components/sidebar/SidebarMenuAction.d.ts +25 -0
  293. package/dist/components/sidebar/SidebarMenuBadge.d.ts +21 -0
  294. package/dist/components/sidebar/SidebarMenuButton.d.ts +27 -0
  295. package/dist/components/sidebar/SidebarMenuButtonChild.d.ts +25 -0
  296. package/dist/components/sidebar/SidebarMenuItem.d.ts +21 -0
  297. package/dist/components/sidebar/SidebarMenuSkeleton.d.ts +7 -0
  298. package/dist/components/sidebar/SidebarMenuSub.d.ts +24 -0
  299. package/dist/components/sidebar/SidebarMenuSubButton.d.ts +27 -0
  300. package/dist/components/sidebar/SidebarMenuSubItem.d.ts +17 -0
  301. package/dist/components/sidebar/SidebarProvider.d.ts +33 -0
  302. package/dist/components/sidebar/SidebarRail.d.ts +21 -0
  303. package/dist/components/sidebar/SidebarSeparator.d.ts +21 -0
  304. package/dist/components/sidebar/SidebarTrigger.d.ts +6 -0
  305. package/dist/components/sidebar/index.d.ts +43 -0
  306. package/dist/components/sidebar/utils.d.ts +62 -0
  307. package/dist/components/skeleton/Skeleton.d.ts +6 -0
  308. package/dist/components/skeleton/Skeleton.stories.d.ts +10 -0
  309. package/dist/components/skeleton/index.d.ts +1 -0
  310. package/dist/components/spinner/Spinner.d.ts +6 -0
  311. package/dist/components/spinner/Spinner.stories.d.ts +15 -0
  312. package/dist/components/spinner/index.d.ts +1 -0
  313. package/dist/components/stepper/Stepper.d.ts +24 -0
  314. package/dist/components/stepper/Stepper.stories.d.ts +18 -0
  315. package/dist/components/stepper/index.d.ts +2 -0
  316. package/dist/components/table/DataTable.d.ts +46 -0
  317. package/dist/components/table/DataTable.stories.d.ts +24 -0
  318. package/dist/components/table/Table.d.ts +28 -0
  319. package/dist/components/table/Table.stories.d.ts +52 -0
  320. package/dist/components/table/TableBody.d.ts +21 -0
  321. package/dist/components/table/TableCaption.d.ts +21 -0
  322. package/dist/components/table/TableCell.d.ts +46 -0
  323. package/dist/components/table/TableEmpty.d.ts +24 -0
  324. package/dist/components/table/TableFooter.d.ts +21 -0
  325. package/dist/components/table/TableHead.d.ts +24 -0
  326. package/dist/components/table/TableHeader.d.ts +21 -0
  327. package/dist/components/table/TableRow.d.ts +21 -0
  328. package/dist/components/table/dataTableTypes.d.ts +19 -0
  329. package/dist/components/table/index.d.ts +11 -0
  330. package/dist/components/tabs/Tabs.d.ts +22 -0
  331. package/dist/components/tabs/Tabs.stories.d.ts +41 -0
  332. package/dist/components/tabs/TabsBar.d.ts +41 -0
  333. package/dist/components/tabs/TabsBar.stories.d.ts +27 -0
  334. package/dist/components/tabs/TabsContent.d.ts +22 -0
  335. package/dist/components/tabs/TabsList.d.ts +25 -0
  336. package/dist/components/tabs/TabsTrigger.d.ts +25 -0
  337. package/dist/components/tabs/index.d.ts +45 -0
  338. package/dist/components/tag/Tag.d.ts +27 -0
  339. package/dist/components/tag/Tag.stories.d.ts +66 -0
  340. package/dist/components/tag/index.d.ts +14 -0
  341. package/dist/components/text-button/TextButton.d.ts +32 -0
  342. package/dist/components/text-button/TextButton.stories.d.ts +67 -0
  343. package/dist/components/text-button/index.d.ts +7 -0
  344. package/dist/components/text-field/TextField.d.ts +47 -0
  345. package/dist/components/text-field/TextField.stories.d.ts +123 -0
  346. package/dist/components/text-field/TextFieldCount.d.ts +12 -0
  347. package/dist/components/text-field/TextFieldUnit.d.ts +21 -0
  348. package/dist/components/text-field/index.d.ts +6 -0
  349. package/dist/components/text-field/textFieldContext.d.ts +8 -0
  350. package/dist/components/textarea/Textarea.d.ts +59 -0
  351. package/dist/components/textarea/Textarea.stories.d.ts +112 -0
  352. package/dist/components/textarea/TextareaCount.d.ts +12 -0
  353. package/dist/components/textarea/index.d.ts +5 -0
  354. package/dist/components/textarea/textareaContext.d.ts +8 -0
  355. package/dist/components/time-picker/TimeInput.d.ts +28 -0
  356. package/dist/components/time-picker/TimePanel.d.ts +22 -0
  357. package/dist/components/time-picker/TimePicker.d.ts +37 -0
  358. package/dist/components/time-picker/TimePicker.stories.d.ts +94 -0
  359. package/dist/components/time-picker/TimeTrigger.d.ts +23 -0
  360. package/dist/components/time-picker/index.d.ts +4 -0
  361. package/dist/components/time-picker/timePickerContext.d.ts +7 -0
  362. package/dist/components/toast/Toast.d.ts +5 -0
  363. package/dist/components/toast/Toast.stories.d.ts +24 -0
  364. package/dist/components/toast/index.d.ts +3 -0
  365. package/dist/components/toggle/Toggle.d.ts +25 -0
  366. package/dist/components/toggle/Toggle.stories.d.ts +64 -0
  367. package/dist/components/toggle/index.d.ts +30 -0
  368. package/dist/components/toolbar/Toolbar.d.ts +41 -0
  369. package/dist/components/toolbar/Toolbar.stories.d.ts +87 -0
  370. package/dist/components/toolbar/index.d.ts +2 -0
  371. package/dist/components/tooltip/Tooltip.d.ts +22 -0
  372. package/dist/components/tooltip/Tooltip.stories.d.ts +36 -0
  373. package/dist/components/tooltip/TooltipContent.d.ts +30 -0
  374. package/dist/components/tooltip/TooltipProvider.d.ts +18 -0
  375. package/dist/components/tooltip/TooltipTrigger.d.ts +18 -0
  376. package/dist/components/tooltip/index.d.ts +5 -0
  377. package/dist/docs/AllComponents.d.ts +2 -0
  378. package/dist/docs/AllComponents.stories.d.ts +6 -0
  379. package/dist/docs/ColourTokens.d.ts +2 -0
  380. package/dist/docs/ColourTokens.stories.d.ts +6 -0
  381. package/dist/docs/ShadowTokens.d.ts +2 -0
  382. package/dist/docs/ShadowTokens.stories.d.ts +6 -0
  383. package/dist/docs/SpacingTokens.d.ts +2 -0
  384. package/dist/docs/SpacingTokens.stories.d.ts +6 -0
  385. package/dist/docs/TypographyTokens.d.ts +2 -0
  386. package/dist/docs/TypographyTokens.stories.d.ts +6 -0
  387. package/dist/global.d.ts +192 -0
  388. package/dist/i18n.d.ts +2 -0
  389. package/dist/i18n.mjs +93 -0
  390. package/dist/index.d.ts +59 -0
  391. package/dist/index.mjs +11834 -0
  392. package/dist/lib/options.d.ts +12 -0
  393. package/dist/lib/useDialogAriaModal.d.ts +22 -0
  394. package/dist/lib/utils.d.ts +2 -0
  395. package/dist/locales/en.d.ts +39 -0
  396. package/dist/locales/index.d.ts +104 -0
  397. package/dist/locales/ko.d.ts +43 -0
  398. package/dist/upbox-ui.css +1 -0
  399. package/package.json +99 -0
  400. package/src/style.css +458 -0
  401. package/tailwind-theme.css +379 -0
@@ -0,0 +1,87 @@
1
+ import { StoryObj } from '@storybook/vue3-vite';
2
+ declare const meta: {
3
+ title: string;
4
+ component: {
5
+ new (...args: any[]): import('vue').CreateComponentPublicInstanceWithMixins<Readonly<import('./Toolbar').ToolbarProps> & Readonly<{
6
+ onDelete?: (() => any) | undefined;
7
+ onDownload?: (() => any) | undefined;
8
+ onDeselect?: (() => any) | undefined;
9
+ }>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
10
+ delete: () => any;
11
+ download: () => any;
12
+ deselect: () => any;
13
+ }, import('vue').PublicProps, {
14
+ variant: "light" | "dark";
15
+ downloadable: boolean;
16
+ selectedCount: number;
17
+ deletable: boolean;
18
+ }, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, HTMLDivElement, import('vue').ComponentProvideOptions, {
19
+ P: {};
20
+ B: {};
21
+ D: {};
22
+ C: {};
23
+ M: {};
24
+ Defaults: {};
25
+ }, Readonly<import('./Toolbar').ToolbarProps> & Readonly<{
26
+ onDelete?: (() => any) | undefined;
27
+ onDownload?: (() => any) | undefined;
28
+ onDeselect?: (() => any) | undefined;
29
+ }>, {}, {}, {}, {}, {
30
+ variant: "light" | "dark";
31
+ downloadable: boolean;
32
+ selectedCount: number;
33
+ deletable: boolean;
34
+ }>;
35
+ __isFragment?: never;
36
+ __isTeleport?: never;
37
+ __isSuspense?: never;
38
+ } & import('vue').ComponentOptionsBase<Readonly<import('./Toolbar').ToolbarProps> & Readonly<{
39
+ onDelete?: (() => any) | undefined;
40
+ onDownload?: (() => any) | undefined;
41
+ onDeselect?: (() => any) | undefined;
42
+ }>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
43
+ delete: () => any;
44
+ download: () => any;
45
+ deselect: () => any;
46
+ }, string, {
47
+ variant: "light" | "dark";
48
+ downloadable: boolean;
49
+ selectedCount: number;
50
+ deletable: boolean;
51
+ }, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & (new () => {
52
+ $slots: {
53
+ actions?(_: {}): any;
54
+ };
55
+ });
56
+ tags: string[];
57
+ args: {
58
+ onDeselect: import('storybook/test').Mock<(...args: any[]) => any>;
59
+ onDownload: import('storybook/test').Mock<(...args: any[]) => any>;
60
+ onDelete: import('storybook/test').Mock<(...args: any[]) => any>;
61
+ };
62
+ argTypes: {
63
+ variant: {
64
+ control: "select";
65
+ options: string[];
66
+ };
67
+ selectedCount: {
68
+ control: "number";
69
+ };
70
+ downloadable: {
71
+ control: "boolean";
72
+ };
73
+ deletable: {
74
+ control: "boolean";
75
+ };
76
+ };
77
+ };
78
+ export default meta;
79
+ type Story = StoryObj<typeof meta>;
80
+ /** 기본 — 선택 건수 + 선택 해제만. 다운로드/삭제는 옵션(prop)으로 켠다. */
81
+ export declare const Default: Story;
82
+ /** 다운로드·삭제 옵션 활성 */
83
+ export declare const WithDownloadDelete: Story;
84
+ /** actions 슬롯 — 화면별 커스텀 액션(TextButton 나열, 구분선 자동) */
85
+ export declare const WithActions: Story;
86
+ /** dark — 플로팅 스낵바 톤 */
87
+ export declare const Dark: Story;
@@ -0,0 +1,2 @@
1
+ export { default as Toolbar } from './Toolbar';
2
+ export type { ToolbarProps } from './Toolbar';
@@ -0,0 +1,22 @@
1
+ import { TooltipRootProps } from 'reka-ui';
2
+ declare function __VLS_template(): {
3
+ attrs: Partial<{}>;
4
+ slots: {
5
+ default?(_: {}): any;
6
+ };
7
+ refs: {};
8
+ rootEl: any;
9
+ };
10
+ type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
11
+ declare const __VLS_component: import('vue').DefineComponent<TooltipRootProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
12
+ "update:open": (value: boolean) => any;
13
+ }, string, import('vue').PublicProps, Readonly<TooltipRootProps> & Readonly<{
14
+ "onUpdate:open"?: ((value: boolean) => any) | undefined;
15
+ }>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
16
+ declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
17
+ export default _default;
18
+ type __VLS_WithTemplateSlots<T, S> = T & {
19
+ new (): {
20
+ $slots: S;
21
+ };
22
+ };
@@ -0,0 +1,36 @@
1
+ import { StoryObj } from '@storybook/vue3-vite';
2
+ declare const meta: {
3
+ title: string;
4
+ component: {
5
+ new (...args: any[]): import('vue').CreateComponentPublicInstanceWithMixins<Readonly<import('reka-ui').TooltipRootProps> & Readonly<{
6
+ "onUpdate:open"?: ((value: boolean) => any) | undefined;
7
+ }>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
8
+ "update:open": (value: boolean) => any;
9
+ }, import('vue').PublicProps, {}, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, any, import('vue').ComponentProvideOptions, {
10
+ P: {};
11
+ B: {};
12
+ D: {};
13
+ C: {};
14
+ M: {};
15
+ Defaults: {};
16
+ }, Readonly<import('reka-ui').TooltipRootProps> & Readonly<{
17
+ "onUpdate:open"?: ((value: boolean) => any) | undefined;
18
+ }>, {}, {}, {}, {}, {}>;
19
+ __isFragment?: never;
20
+ __isTeleport?: never;
21
+ __isSuspense?: never;
22
+ } & import('vue').ComponentOptionsBase<Readonly<import('reka-ui').TooltipRootProps> & Readonly<{
23
+ "onUpdate:open"?: ((value: boolean) => any) | undefined;
24
+ }>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
25
+ "update:open": (value: boolean) => any;
26
+ }, string, {}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & (new () => {
27
+ $slots: {
28
+ default?(_: {}): any;
29
+ };
30
+ });
31
+ tags: string[];
32
+ };
33
+ export default meta;
34
+ type Story = StoryObj<typeof meta>;
35
+ export declare const Default: Story;
36
+ export declare const Positions: Story;
@@ -0,0 +1,30 @@
1
+ import { TooltipContentProps } from 'reka-ui';
2
+ import { HTMLAttributes } from 'vue';
3
+ type __VLS_Props = TooltipContentProps & {
4
+ class?: HTMLAttributes["class"];
5
+ };
6
+ declare function __VLS_template(): {
7
+ attrs: Partial<{}>;
8
+ slots: {
9
+ default?(_: {}): any;
10
+ };
11
+ refs: {};
12
+ rootEl: any;
13
+ };
14
+ type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
15
+ declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
16
+ escapeKeyDown: (event: KeyboardEvent) => any;
17
+ pointerDownOutside: (event: Event) => any;
18
+ }, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{
19
+ onEscapeKeyDown?: ((event: KeyboardEvent) => any) | undefined;
20
+ onPointerDownOutside?: ((event: Event) => any) | undefined;
21
+ }>, {
22
+ sideOffset: number;
23
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
24
+ declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
25
+ export default _default;
26
+ type __VLS_WithTemplateSlots<T, S> = T & {
27
+ new (): {
28
+ $slots: S;
29
+ };
30
+ };
@@ -0,0 +1,18 @@
1
+ import { TooltipProviderProps } from 'reka-ui';
2
+ declare function __VLS_template(): {
3
+ attrs: Partial<{}>;
4
+ slots: {
5
+ default?(_: {}): any;
6
+ };
7
+ refs: {};
8
+ rootEl: any;
9
+ };
10
+ type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
11
+ declare const __VLS_component: import('vue').DefineComponent<TooltipProviderProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<TooltipProviderProps> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
12
+ declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
13
+ export default _default;
14
+ type __VLS_WithTemplateSlots<T, S> = T & {
15
+ new (): {
16
+ $slots: S;
17
+ };
18
+ };
@@ -0,0 +1,18 @@
1
+ import { TooltipTriggerProps } from 'reka-ui';
2
+ declare function __VLS_template(): {
3
+ attrs: Partial<{}>;
4
+ slots: {
5
+ default?(_: {}): any;
6
+ };
7
+ refs: {};
8
+ rootEl: any;
9
+ };
10
+ type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
11
+ declare const __VLS_component: import('vue').DefineComponent<TooltipTriggerProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<TooltipTriggerProps> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
12
+ declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
13
+ export default _default;
14
+ type __VLS_WithTemplateSlots<T, S> = T & {
15
+ new (): {
16
+ $slots: S;
17
+ };
18
+ };
@@ -0,0 +1,5 @@
1
+ export { default as Tooltip } from './Tooltip';
2
+ export { default as TooltipContent } from './TooltipContent';
3
+ export { default as TooltipProvider } from './TooltipProvider';
4
+ export { default as TooltipTrigger } from './TooltipTrigger';
5
+ export { TooltipArrow } from 'reka-ui';
@@ -0,0 +1,2 @@
1
+ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, HTMLDivElement>;
2
+ export default _default;
@@ -0,0 +1,6 @@
1
+ import { Meta, StoryObj } from '@storybook/vue3-vite';
2
+ import { default as AllComponents } from './AllComponents';
3
+ declare const meta: Meta<typeof AllComponents>;
4
+ export default meta;
5
+ type Story = StoryObj<typeof AllComponents>;
6
+ export declare const Default: Story;
@@ -0,0 +1,2 @@
1
+ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, HTMLDivElement>;
2
+ export default _default;
@@ -0,0 +1,6 @@
1
+ import { Meta, StoryObj } from '@storybook/vue3-vite';
2
+ import { default as ColourTokens } from './ColourTokens';
3
+ declare const meta: Meta<typeof ColourTokens>;
4
+ export default meta;
5
+ type Story = StoryObj<typeof ColourTokens>;
6
+ export declare const Default: Story;
@@ -0,0 +1,2 @@
1
+ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, HTMLDivElement>;
2
+ export default _default;
@@ -0,0 +1,6 @@
1
+ import { Meta, StoryObj } from '@storybook/vue3-vite';
2
+ import { default as ShadowTokens } from './ShadowTokens';
3
+ declare const meta: Meta<typeof ShadowTokens>;
4
+ export default meta;
5
+ type Story = StoryObj<typeof ShadowTokens>;
6
+ export declare const Default: Story;
@@ -0,0 +1,2 @@
1
+ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, HTMLDivElement>;
2
+ export default _default;
@@ -0,0 +1,6 @@
1
+ import { Meta, StoryObj } from '@storybook/vue3-vite';
2
+ import { default as SpacingTokens } from './SpacingTokens';
3
+ declare const meta: Meta<typeof SpacingTokens>;
4
+ export default meta;
5
+ type Story = StoryObj<typeof SpacingTokens>;
6
+ export declare const Default: Story;
@@ -0,0 +1,2 @@
1
+ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, HTMLDivElement>;
2
+ export default _default;
@@ -0,0 +1,6 @@
1
+ import { Meta, StoryObj } from '@storybook/vue3-vite';
2
+ import { default as TypographyTokens } from './TypographyTokens';
3
+ declare const meta: Meta<typeof TypographyTokens>;
4
+ export default meta;
5
+ type Story = StoryObj<typeof TypographyTokens>;
6
+ export declare const Default: Story;
@@ -0,0 +1,192 @@
1
+ declare module 'vue' {
2
+ interface GlobalComponents {
3
+ Accordion: typeof import('./components/accordion')['Accordion'];
4
+ AccordionContent: typeof import('./components/accordion')['AccordionContent'];
5
+ AccordionItem: typeof import('./components/accordion')['AccordionItem'];
6
+ AccordionTrigger: typeof import('./components/accordion')['AccordionTrigger'];
7
+ Avatar: typeof import('./components/avatar')['Avatar'];
8
+ AvatarFallback: typeof import('./components/avatar')['AvatarFallback'];
9
+ AvatarImage: typeof import('./components/avatar')['AvatarImage'];
10
+ Badge: typeof import('./components/badge')['Badge'];
11
+ Breadcrumb: typeof import('./components/breadcrumb')['Breadcrumb'];
12
+ BreadcrumbEllipsis: typeof import('./components/breadcrumb')['BreadcrumbEllipsis'];
13
+ BreadcrumbItem: typeof import('./components/breadcrumb')['BreadcrumbItem'];
14
+ BreadcrumbLink: typeof import('./components/breadcrumb')['BreadcrumbLink'];
15
+ BreadcrumbList: typeof import('./components/breadcrumb')['BreadcrumbList'];
16
+ BreadcrumbPage: typeof import('./components/breadcrumb')['BreadcrumbPage'];
17
+ BreadcrumbSeparator: typeof import('./components/breadcrumb')['BreadcrumbSeparator'];
18
+ Button: typeof import('./components/button')['Button'];
19
+ Calendar: typeof import('./components/calendar')['Calendar'];
20
+ CalendarCell: typeof import('./components/calendar')['CalendarCell'];
21
+ CalendarCellTrigger: typeof import('./components/calendar')['CalendarCellTrigger'];
22
+ CalendarFooter: typeof import('./components/calendar')['CalendarFooter'];
23
+ CalendarShortcut: typeof import('./components/calendar')['CalendarShortcut'];
24
+ CalendarGrid: typeof import('./components/calendar')['CalendarGrid'];
25
+ CalendarGridBody: typeof import('./components/calendar')['CalendarGridBody'];
26
+ CalendarGridHead: typeof import('./components/calendar')['CalendarGridHead'];
27
+ CalendarGridRow: typeof import('./components/calendar')['CalendarGridRow'];
28
+ CalendarHeadCell: typeof import('./components/calendar')['CalendarHeadCell'];
29
+ CalendarHeader: typeof import('./components/calendar')['CalendarHeader'];
30
+ CalendarHeading: typeof import('./components/calendar')['CalendarHeading'];
31
+ CalendarMonthGrid: typeof import('./components/calendar')['CalendarMonthGrid'];
32
+ CalendarNextButton: typeof import('./components/calendar')['CalendarNextButton'];
33
+ CalendarPrevButton: typeof import('./components/calendar')['CalendarPrevButton'];
34
+ CalendarTimeSelect: typeof import('./components/calendar')['CalendarTimeSelect'];
35
+ CalendarYearGrid: typeof import('./components/calendar')['CalendarYearGrid'];
36
+ DateCalendar: typeof import('./components/calendar')['DateCalendar'];
37
+ Card: typeof import('./components/card')['Card'];
38
+ CardContent: typeof import('./components/card')['CardContent'];
39
+ CardDescription: typeof import('./components/card')['CardDescription'];
40
+ CardFooter: typeof import('./components/card')['CardFooter'];
41
+ CardHeader: typeof import('./components/card')['CardHeader'];
42
+ CardTitle: typeof import('./components/card')['CardTitle'];
43
+ Checkbox: typeof import('./components/checkbox')['Checkbox'];
44
+ Dialog: typeof import('./components/dialog')['Dialog'];
45
+ DialogClose: typeof import('./components/dialog')['DialogClose'];
46
+ DialogContent: typeof import('./components/dialog')['DialogContent'];
47
+ DialogDescription: typeof import('./components/dialog')['DialogDescription'];
48
+ DialogFooter: typeof import('./components/dialog')['DialogFooter'];
49
+ DialogHeader: typeof import('./components/dialog')['DialogHeader'];
50
+ DialogScrollContent: typeof import('./components/dialog')['DialogScrollContent'];
51
+ DialogTitle: typeof import('./components/dialog')['DialogTitle'];
52
+ DialogTrigger: typeof import('./components/dialog')['DialogTrigger'];
53
+ Drawer: typeof import('./components/drawer')['Drawer'];
54
+ DrawerContent: typeof import('./components/drawer')['DrawerContent'];
55
+ DrawerDescription: typeof import('./components/drawer')['DrawerDescription'];
56
+ DrawerFooter: typeof import('./components/drawer')['DrawerFooter'];
57
+ DrawerHeader: typeof import('./components/drawer')['DrawerHeader'];
58
+ DrawerOverlay: typeof import('./components/drawer')['DrawerOverlay'];
59
+ DrawerTitle: typeof import('./components/drawer')['DrawerTitle'];
60
+ DropdownFilter: typeof import('./components/dropdown-filter')['DropdownFilter'];
61
+ DropdownMenu: typeof import('./components/dropdown-menu')['DropdownMenu'];
62
+ DropdownMenuCheckboxItem: typeof import('./components/dropdown-menu')['DropdownMenuCheckboxItem'];
63
+ DropdownMenuContent: typeof import('./components/dropdown-menu')['DropdownMenuContent'];
64
+ DropdownMenuGroup: typeof import('./components/dropdown-menu')['DropdownMenuGroup'];
65
+ DropdownMenuItem: typeof import('./components/dropdown-menu')['DropdownMenuItem'];
66
+ DropdownMenuLabel: typeof import('./components/dropdown-menu')['DropdownMenuLabel'];
67
+ DropdownMenuRadioGroup: typeof import('./components/dropdown-menu')['DropdownMenuRadioGroup'];
68
+ DropdownMenuRadioItem: typeof import('./components/dropdown-menu')['DropdownMenuRadioItem'];
69
+ DropdownMenuSeparator: typeof import('./components/dropdown-menu')['DropdownMenuSeparator'];
70
+ DropdownMenuShortcut: typeof import('./components/dropdown-menu')['DropdownMenuShortcut'];
71
+ DropdownMenuSub: typeof import('./components/dropdown-menu')['DropdownMenuSub'];
72
+ DropdownMenuSubContent: typeof import('./components/dropdown-menu')['DropdownMenuSubContent'];
73
+ DropdownMenuSubTrigger: typeof import('./components/dropdown-menu')['DropdownMenuSubTrigger'];
74
+ DropdownMenuTrigger: typeof import('./components/dropdown-menu')['DropdownMenuTrigger'];
75
+ Empty: typeof import('./components/empty')['Empty'];
76
+ EmptyState: typeof import('./components/empty')['EmptyState'];
77
+ FileItem: typeof import('./components/file-uploader')['FileItem'];
78
+ FileUploader: typeof import('./components/file-uploader')['FileUploader'];
79
+ FormControl: typeof import('./components/form')['FormControl'];
80
+ FormDescription: typeof import('./components/form')['FormDescription'];
81
+ FormItem: typeof import('./components/form')['FormItem'];
82
+ FormLabel: typeof import('./components/form')['FormLabel'];
83
+ FormMessage: typeof import('./components/form')['FormMessage'];
84
+ TextField: typeof import('./components/text-field')['TextField'];
85
+ InputGroup: typeof import('./components/input-group')['InputGroup'];
86
+ InputGroupAddon: typeof import('./components/input-group')['InputGroupAddon'];
87
+ InputGroupButton: typeof import('./components/input-group')['InputGroupButton'];
88
+ InputGroupInput: typeof import('./components/input-group')['InputGroupInput'];
89
+ InputGroupText: typeof import('./components/input-group')['InputGroupText'];
90
+ InputGroupTextarea: typeof import('./components/input-group')['InputGroupTextarea'];
91
+ Label: typeof import('./components/label')['Label'];
92
+ Logo: typeof import('./components/logo')['Logo'];
93
+ Modal: typeof import('./components/modal')['Modal'];
94
+ NumberField: typeof import('./components/number-field')['NumberField'];
95
+ NumberFieldRoot: typeof import('./components/number-field')['NumberFieldRoot'];
96
+ NumberFieldContent: typeof import('./components/number-field')['NumberFieldContent'];
97
+ NumberFieldDecrement: typeof import('./components/number-field')['NumberFieldDecrement'];
98
+ NumberFieldIncrement: typeof import('./components/number-field')['NumberFieldIncrement'];
99
+ NumberFieldInput: typeof import('./components/number-field')['NumberFieldInput'];
100
+ PageHeader: typeof import('./components/page-header')['PageHeader'];
101
+ Pagination: typeof import('./components/pagination')['Pagination'];
102
+ PaginationContent: typeof import('./components/pagination')['PaginationContent'];
103
+ PaginationEllipsis: typeof import('./components/pagination')['PaginationEllipsis'];
104
+ PaginationFirst: typeof import('./components/pagination')['PaginationFirst'];
105
+ PaginationItem: typeof import('./components/pagination')['PaginationItem'];
106
+ PaginationLast: typeof import('./components/pagination')['PaginationLast'];
107
+ PaginationNext: typeof import('./components/pagination')['PaginationNext'];
108
+ PaginationPrevious: typeof import('./components/pagination')['PaginationPrevious'];
109
+ Panel: typeof import('./components/panel')['Panel'];
110
+ PanelIcon: typeof import('./components/panel')['PanelIcon'];
111
+ Popover: typeof import('./components/popover')['Popover'];
112
+ PopoverContent: typeof import('./components/popover')['PopoverContent'];
113
+ PopoverTrigger: typeof import('./components/popover')['PopoverTrigger'];
114
+ RadioGroup: typeof import('./components/radio-group')['RadioGroup'];
115
+ RadioGroupField: typeof import('./components/radio-group')['RadioGroupField'];
116
+ RadioGroupItem: typeof import('./components/radio-group')['RadioGroupItem'];
117
+ MonthCalendar: typeof import('./components/calendar')['MonthCalendar'];
118
+ PeriodCalendar: typeof import('./components/calendar')['PeriodCalendar'];
119
+ RangeCalendar: typeof import('./components/calendar')['RangeCalendar'];
120
+ SearchField: typeof import('./components/search-field')['SearchField'];
121
+ Select: typeof import('./components/select')['Select'];
122
+ SelectContent: typeof import('./components/select')['SelectContent'];
123
+ SelectGroup: typeof import('./components/select')['SelectGroup'];
124
+ SelectItem: typeof import('./components/select')['SelectItem'];
125
+ SelectItemText: typeof import('./components/select')['SelectItemText'];
126
+ SelectLabel: typeof import('./components/select')['SelectLabel'];
127
+ SelectScrollDownButton: typeof import('./components/select')['SelectScrollDownButton'];
128
+ SelectScrollUpButton: typeof import('./components/select')['SelectScrollUpButton'];
129
+ SelectSeparator: typeof import('./components/select')['SelectSeparator'];
130
+ SelectTrigger: typeof import('./components/select')['SelectTrigger'];
131
+ SelectValue: typeof import('./components/select')['SelectValue'];
132
+ Separator: typeof import('./components/separator')['Separator'];
133
+ Sheet: typeof import('./components/sheet')['Sheet'];
134
+ SheetClose: typeof import('./components/sheet')['SheetClose'];
135
+ SheetContent: typeof import('./components/sheet')['SheetContent'];
136
+ SheetDescription: typeof import('./components/sheet')['SheetDescription'];
137
+ SheetFooter: typeof import('./components/sheet')['SheetFooter'];
138
+ SheetHeader: typeof import('./components/sheet')['SheetHeader'];
139
+ SheetTitle: typeof import('./components/sheet')['SheetTitle'];
140
+ SheetTrigger: typeof import('./components/sheet')['SheetTrigger'];
141
+ Sidebar: typeof import('./components/sidebar')['Sidebar'];
142
+ SidebarContent: typeof import('./components/sidebar')['SidebarContent'];
143
+ SidebarFooter: typeof import('./components/sidebar')['SidebarFooter'];
144
+ SidebarGroup: typeof import('./components/sidebar')['SidebarGroup'];
145
+ SidebarGroupAction: typeof import('./components/sidebar')['SidebarGroupAction'];
146
+ SidebarGroupContent: typeof import('./components/sidebar')['SidebarGroupContent'];
147
+ SidebarGroupLabel: typeof import('./components/sidebar')['SidebarGroupLabel'];
148
+ SidebarHeader: typeof import('./components/sidebar')['SidebarHeader'];
149
+ SidebarInput: typeof import('./components/sidebar')['SidebarInput'];
150
+ SidebarInset: typeof import('./components/sidebar')['SidebarInset'];
151
+ SidebarMenu: typeof import('./components/sidebar')['SidebarMenu'];
152
+ SidebarMenuAction: typeof import('./components/sidebar')['SidebarMenuAction'];
153
+ SidebarMenuBadge: typeof import('./components/sidebar')['SidebarMenuBadge'];
154
+ SidebarMenuButton: typeof import('./components/sidebar')['SidebarMenuButton'];
155
+ SidebarMenuItem: typeof import('./components/sidebar')['SidebarMenuItem'];
156
+ SidebarMenuSkeleton: typeof import('./components/sidebar')['SidebarMenuSkeleton'];
157
+ SidebarMenuSub: typeof import('./components/sidebar')['SidebarMenuSub'];
158
+ SidebarMenuSubButton: typeof import('./components/sidebar')['SidebarMenuSubButton'];
159
+ SidebarMenuSubItem: typeof import('./components/sidebar')['SidebarMenuSubItem'];
160
+ SidebarProvider: typeof import('./components/sidebar')['SidebarProvider'];
161
+ SidebarRail: typeof import('./components/sidebar')['SidebarRail'];
162
+ SidebarSeparator: typeof import('./components/sidebar')['SidebarSeparator'];
163
+ SidebarTrigger: typeof import('./components/sidebar')['SidebarTrigger'];
164
+ Skeleton: typeof import('./components/skeleton')['Skeleton'];
165
+ Spinner: typeof import('./components/spinner')['Spinner'];
166
+ Stepper: typeof import('./components/stepper')['Stepper'];
167
+ Table: typeof import('./components/table')['Table'];
168
+ DataTable: typeof import('./components/table')['DataTable'];
169
+ TableBody: typeof import('./components/table')['TableBody'];
170
+ TableCaption: typeof import('./components/table')['TableCaption'];
171
+ TableCell: typeof import('./components/table')['TableCell'];
172
+ TableEmpty: typeof import('./components/table')['TableEmpty'];
173
+ TableFooter: typeof import('./components/table')['TableFooter'];
174
+ TableHead: typeof import('./components/table')['TableHead'];
175
+ TableHeader: typeof import('./components/table')['TableHeader'];
176
+ TableRow: typeof import('./components/table')['TableRow'];
177
+ Tabs: typeof import('./components/tabs')['Tabs'];
178
+ TabsBar: typeof import('./components/tabs')['TabsBar'];
179
+ TabsContent: typeof import('./components/tabs')['TabsContent'];
180
+ TabsList: typeof import('./components/tabs')['TabsList'];
181
+ TabsTrigger: typeof import('./components/tabs')['TabsTrigger'];
182
+ Textarea: typeof import('./components/textarea')['Textarea'];
183
+ Toast: typeof import('./components/toast')['Toast'];
184
+ Toggle: typeof import('./components/toggle')['Toggle'];
185
+ Toolbar: typeof import('./components/toolbar')['Toolbar'];
186
+ Tooltip: typeof import('./components/tooltip')['Tooltip'];
187
+ TooltipContent: typeof import('./components/tooltip')['TooltipContent'];
188
+ TooltipProvider: typeof import('./components/tooltip')['TooltipProvider'];
189
+ TooltipTrigger: typeof import('./components/tooltip')['TooltipTrigger'];
190
+ }
191
+ }
192
+ export {};
package/dist/i18n.d.ts ADDED
@@ -0,0 +1,2 @@
1
+ export * from './locales/index'
2
+ export {}
package/dist/i18n.mjs ADDED
@@ -0,0 +1,93 @@
1
+ const a = {
2
+ common: {
3
+ noData: "No data.",
4
+ reset: "Reset",
5
+ search: "Search",
6
+ selectAll: "Select All"
7
+ },
8
+ word: {
9
+ done: "Done",
10
+ hours: "Hours",
11
+ minutes: "Minutes",
12
+ reset: "Reset",
13
+ save: "Save",
14
+ seconds: "Seconds"
15
+ },
16
+ ui: {
17
+ empty: "No registered information.",
18
+ component: {
19
+ dropdownFilter: {
20
+ /** 선택 개수 뒤에 붙으므로 앞 공백이 필요하다. 화면에는 "3 selected" 로 보인다 */
21
+ selected: " selected",
22
+ countMore: "+{count}"
23
+ },
24
+ fileUploader: {
25
+ title: "Only files under {size}MB can be uploaded (Extension {ext})",
26
+ desc: "Drag and drop files here, or select files manually. (Max {count})",
27
+ selectFile: "Select File",
28
+ empty: "No files registered.",
29
+ isUploading: "Uploading file...",
30
+ uploadStatusError: "File upload impossible"
31
+ }
32
+ }
33
+ }
34
+ }, d = {
35
+ common: {
36
+ noData: "데이터가 없습니다.",
37
+ reset: "초기화",
38
+ search: "검색",
39
+ selectAll: "전체 선택"
40
+ },
41
+ word: {
42
+ done: "완료",
43
+ hours: "시",
44
+ minutes: "분",
45
+ reset: "초기화",
46
+ save: "저장",
47
+ seconds: "초"
48
+ },
49
+ ui: {
50
+ empty: "등록된 정보가 없습니다.",
51
+ component: {
52
+ dropdownFilter: {
53
+ /** 선택 개수 **뒤에** 붙는다. 화면에는 "3개 선택됨" 으로 보인다 */
54
+ selected: "개 선택됨",
55
+ /** 첫 항목 라벨 옆에 붙는다. 화면에는 "용기 배치 외 2건" 으로 보인다 */
56
+ countMore: "외 {count}건"
57
+ },
58
+ fileUploader: {
59
+ title: "{size}MB 이하의 파일만 업로드 가능 (확장자 {ext})",
60
+ desc: "첨부할 파일을 여기에 끌어다 놓거나, 파일을 직접 선택해주세요.(최대 {count}개)",
61
+ selectFile: "파일 선택",
62
+ empty: "등록된 파일이 없습니다.",
63
+ isUploading: "파일 업로드 중...",
64
+ uploadStatusError: "파일업로드 불가"
65
+ }
66
+ }
67
+ }
68
+ }, u = { ko: d, en: a };
69
+ function c(e, s) {
70
+ const o = { ...e };
71
+ for (const [n, t] of Object.entries(s)) {
72
+ const r = o[n], i = l(r) && l(t);
73
+ o[n] = i ? c(r, t) : t;
74
+ }
75
+ return o;
76
+ }
77
+ function l(e) {
78
+ return typeof e == "object" && e !== null && !Array.isArray(e);
79
+ }
80
+ function p(e) {
81
+ const s = { ...e };
82
+ for (const [o, n] of Object.entries(e)) {
83
+ const t = u[o];
84
+ t && (s[o] = c(t, n));
85
+ }
86
+ return s;
87
+ }
88
+ export {
89
+ a as enMessages,
90
+ d as koMessages,
91
+ p as mergeMessages,
92
+ u as uiMessages
93
+ };