@lotte-innovate/ui-component-test 0.1.45 → 0.1.47

Sign up to get free protection for your applications and to get access to all the features.
Files changed (592) hide show
  1. package/dist/cjs/.storybook/main.js +24 -0
  2. package/dist/cjs/.storybook/manager.js +17 -0
  3. package/dist/cjs/.storybook/preview.jsx +106 -0
  4. package/dist/cjs/src/app/layout.jsx +17 -0
  5. package/dist/cjs/src/app/page.jsx +65 -0
  6. package/dist/cjs/src/app/template/colorPicker.jsx +21 -0
  7. package/dist/cjs/src/app/template/theme.jsx +22 -0
  8. package/dist/cjs/src/lib/Typography/Header/index.jsx +64 -0
  9. package/dist/cjs/src/lib/Typography/Text/index.jsx +73 -0
  10. package/dist/cjs/src/lib/Typography/index.js +10 -0
  11. package/dist/cjs/src/lib/color/alpha.js +788 -0
  12. package/dist/cjs/src/lib/color/constants.js +299 -0
  13. package/dist/cjs/src/lib/color/dark.js +395 -0
  14. package/dist/cjs/src/lib/color/krdsColors.js +312 -0
  15. package/dist/cjs/src/lib/color/light.js +396 -0
  16. package/dist/cjs/src/lib/components/Accordion/index.jsx +105 -0
  17. package/dist/cjs/src/lib/components/AlertDialog/AlertDialogAction.jsx +88 -0
  18. package/dist/cjs/src/lib/components/AlertDialog/AlertDialogCancel.jsx +87 -0
  19. package/dist/cjs/src/lib/components/AlertDialog/AlertDialogContent.jsx +81 -0
  20. package/dist/cjs/src/lib/components/AlertDialog/AlertDialogDescription.jsx +63 -0
  21. package/dist/cjs/src/lib/components/AlertDialog/AlertDialogRoot.jsx +65 -0
  22. package/dist/cjs/src/lib/components/AlertDialog/AlertDialogTitle.jsx +63 -0
  23. package/dist/cjs/src/lib/components/AlertDialog/AlertDialogTrigger.jsx +82 -0
  24. package/dist/cjs/src/lib/components/AlertDialog/index.jsx +19 -0
  25. package/dist/cjs/src/lib/components/AspectRatio/index.jsx +69 -0
  26. package/dist/cjs/src/lib/components/Avatar/index.jsx +87 -0
  27. package/dist/cjs/src/lib/components/Badge/index.jsx +80 -0
  28. package/dist/cjs/src/lib/components/BarChart/index.jsx +64 -0
  29. package/dist/cjs/src/lib/components/BubbleChart/index.jsx +80 -0
  30. package/dist/cjs/src/lib/components/Button/index.jsx +83 -0
  31. package/dist/cjs/src/lib/components/Callout/CalloutIcon.jsx +88 -0
  32. package/dist/cjs/src/lib/components/Callout/CalloutRoot.jsx +102 -0
  33. package/dist/cjs/src/lib/components/Callout/CalloutText.jsx +68 -0
  34. package/dist/cjs/src/lib/components/Callout/index.jsx +11 -0
  35. package/dist/cjs/src/lib/components/Card/index.jsx +90 -0
  36. package/dist/cjs/src/lib/components/Checkbox/index.jsx +123 -0
  37. package/dist/cjs/src/lib/components/CheckboxCard/index.jsx +89 -0
  38. package/dist/cjs/src/lib/components/CheckboxGroup/CheckboxGroupItem.jsx +54 -0
  39. package/dist/cjs/src/lib/components/CheckboxGroup/CheckboxGroupRoot.jsx +64 -0
  40. package/dist/cjs/src/lib/components/CheckboxGroup/index.jsx +6 -0
  41. package/dist/cjs/src/lib/components/ContextMenu/ContextMenuCheckboxItem.jsx +61 -0
  42. package/dist/cjs/src/lib/components/ContextMenu/ContextMenuContent.jsx +85 -0
  43. package/dist/cjs/src/lib/components/ContextMenu/ContextMenuGroup.jsx +46 -0
  44. package/dist/cjs/src/lib/components/ContextMenu/ContextMenuItem.jsx +87 -0
  45. package/dist/cjs/src/lib/components/ContextMenu/ContextMenuItemIndicator.jsx +77 -0
  46. package/dist/cjs/src/lib/components/ContextMenu/ContextMenuLabel.jsx +75 -0
  47. package/dist/cjs/src/lib/components/ContextMenu/ContextMenuRadioGroup.jsx +49 -0
  48. package/dist/cjs/src/lib/components/ContextMenu/ContextMenuRadioItem.jsx +63 -0
  49. package/dist/cjs/src/lib/components/ContextMenu/ContextMenuRoot.jsx +61 -0
  50. package/dist/cjs/src/lib/components/ContextMenu/ContextMenuSeparator.jsx +47 -0
  51. package/dist/cjs/src/lib/components/ContextMenu/ContextMenuSubContent.jsx +83 -0
  52. package/dist/cjs/src/lib/components/ContextMenu/ContextMenuSubTrigger.jsx +61 -0
  53. package/dist/cjs/src/lib/components/ContextMenu/ContextMenuTrigger.jsx +47 -0
  54. package/dist/cjs/src/lib/components/ContextMenu/index.jsx +31 -0
  55. package/dist/cjs/src/lib/components/DataList/DataListItem.jsx +70 -0
  56. package/dist/cjs/src/lib/components/DataList/DataListLabel.jsx +76 -0
  57. package/dist/cjs/src/lib/components/DataList/DataListRoot.jsx +73 -0
  58. package/dist/cjs/src/lib/components/DataList/DataListValue.jsx +78 -0
  59. package/dist/cjs/src/lib/components/DataList/index.jsx +8 -0
  60. package/dist/cjs/src/lib/components/Dialog/DialogAction.jsx +75 -0
  61. package/dist/cjs/src/lib/components/Dialog/DialogCancel.jsx +71 -0
  62. package/dist/cjs/src/lib/components/Dialog/DialogContent.jsx +84 -0
  63. package/dist/cjs/src/lib/components/Dialog/DialogDescription.jsx +63 -0
  64. package/dist/cjs/src/lib/components/Dialog/DialogRoot.jsx +56 -0
  65. package/dist/cjs/src/lib/components/Dialog/DialogSlot.jsx +62 -0
  66. package/dist/cjs/src/lib/components/Dialog/DialogTitle.jsx +63 -0
  67. package/dist/cjs/src/lib/components/Dialog/DialogTrigger.jsx +46 -0
  68. package/dist/cjs/src/lib/components/Dialog/index.jsx +21 -0
  69. package/dist/cjs/src/lib/components/DoughnutChart/index.jsx +70 -0
  70. package/dist/cjs/src/lib/components/DropdownMenu/DropdonMenuRadioGroup.jsx +46 -0
  71. package/dist/cjs/src/lib/components/DropdownMenu/DropdonMenuSubContent.jsx +89 -0
  72. package/dist/cjs/src/lib/components/DropdownMenu/DropdownMenuCheckboxItem.jsx +60 -0
  73. package/dist/cjs/src/lib/components/DropdownMenu/DropdownMenuContent.jsx +85 -0
  74. package/dist/cjs/src/lib/components/DropdownMenu/DropdownMenuItem.jsx +86 -0
  75. package/dist/cjs/src/lib/components/DropdownMenu/DropdownMenuItemIndicator.jsx +75 -0
  76. package/dist/cjs/src/lib/components/DropdownMenu/DropdownMenuLable.jsx +61 -0
  77. package/dist/cjs/src/lib/components/DropdownMenu/DropdownMenuRadioItem.jsx +60 -0
  78. package/dist/cjs/src/lib/components/DropdownMenu/DropdownMenuRoot.jsx +55 -0
  79. package/dist/cjs/src/lib/components/DropdownMenu/DropdownMenuSeparator.jsx +45 -0
  80. package/dist/cjs/src/lib/components/DropdownMenu/DropdownMenuSub.jsx +44 -0
  81. package/dist/cjs/src/lib/components/DropdownMenu/DropdownMenuSubTrigger.jsx +59 -0
  82. package/dist/cjs/src/lib/components/DropdownMenu/DropdownMenuTrigger.jsx +69 -0
  83. package/dist/cjs/src/lib/components/DropdownMenu/index.jsx +31 -0
  84. package/dist/cjs/src/lib/components/HoverCard/HoverCardContent.jsx +88 -0
  85. package/dist/cjs/src/lib/components/HoverCard/HoverCardRoot.jsx +57 -0
  86. package/dist/cjs/src/lib/components/HoverCard/HoverCardTrigger.jsx +46 -0
  87. package/dist/cjs/src/lib/components/HoverCard/index.jsx +11 -0
  88. package/dist/cjs/src/lib/components/IconButton/index.jsx +90 -0
  89. package/dist/cjs/src/lib/components/Inset/index.jsx +79 -0
  90. package/dist/cjs/src/lib/components/Label/index.jsx +83 -0
  91. package/dist/cjs/src/lib/components/LineChart/index.jsx +62 -0
  92. package/dist/cjs/src/lib/components/Menubar/MenubarCheckboxItem.jsx +57 -0
  93. package/dist/cjs/src/lib/components/Menubar/MenubarContent.jsx +89 -0
  94. package/dist/cjs/src/lib/components/Menubar/MenubarItem.jsx +82 -0
  95. package/dist/cjs/src/lib/components/Menubar/MenubarItemIndicator.jsx +76 -0
  96. package/dist/cjs/src/lib/components/Menubar/MenubarMenu.jsx +44 -0
  97. package/dist/cjs/src/lib/components/Menubar/MenubarRadioGroup.jsx +49 -0
  98. package/dist/cjs/src/lib/components/Menubar/MenubarRadioItem.jsx +59 -0
  99. package/dist/cjs/src/lib/components/Menubar/MenubarRoot.jsx +91 -0
  100. package/dist/cjs/src/lib/components/Menubar/MenubarSeparator.jsx +47 -0
  101. package/dist/cjs/src/lib/components/Menubar/MenubarSub.jsx +44 -0
  102. package/dist/cjs/src/lib/components/Menubar/MenubarSubContent.jsx +78 -0
  103. package/dist/cjs/src/lib/components/Menubar/MenubarSubTrigger.jsx +60 -0
  104. package/dist/cjs/src/lib/components/Menubar/MenubarTrigger.jsx +84 -0
  105. package/dist/cjs/src/lib/components/Menubar/index.jsx +31 -0
  106. package/dist/cjs/src/lib/components/NavigationMenu/NavigationMenuContent.jsx +75 -0
  107. package/dist/cjs/src/lib/components/NavigationMenu/NavigationMenuIndicator.jsx +48 -0
  108. package/dist/cjs/src/lib/components/NavigationMenu/NavigationMenuItem.jsx +46 -0
  109. package/dist/cjs/src/lib/components/NavigationMenu/NavigationMenuLink.jsx +78 -0
  110. package/dist/cjs/src/lib/components/NavigationMenu/NavigationMenuList.jsx +75 -0
  111. package/dist/cjs/src/lib/components/NavigationMenu/NavigationMenuRoot.jsx +62 -0
  112. package/dist/cjs/src/lib/components/NavigationMenu/NavigationMenuTrigger.jsx +86 -0
  113. package/dist/cjs/src/lib/components/NavigationMenu/NavigationMenuViewport.jsx +80 -0
  114. package/dist/cjs/src/lib/components/NavigationMenu/index.jsx +12 -0
  115. package/dist/cjs/src/lib/components/PieChart/index.jsx +70 -0
  116. package/dist/cjs/src/lib/components/Popover/PopoverClose.jsx +64 -0
  117. package/dist/cjs/src/lib/components/Popover/PopoverContent.jsx +92 -0
  118. package/dist/cjs/src/lib/components/Popover/PopoverRoot.jsx +55 -0
  119. package/dist/cjs/src/lib/components/Popover/PopoverTrigger.jsx +46 -0
  120. package/dist/cjs/src/lib/components/Popover/index.jsx +13 -0
  121. package/dist/cjs/src/lib/components/Progress/index.jsx +83 -0
  122. package/dist/cjs/src/lib/components/RadarChart/index.jsx +83 -0
  123. package/dist/cjs/src/lib/components/Radio/index.jsx +54 -0
  124. package/dist/cjs/src/lib/components/RadioCards/RadioCardsItem.jsx +70 -0
  125. package/dist/cjs/src/lib/components/RadioCards/RadioCardsRoot.jsx +77 -0
  126. package/dist/cjs/src/lib/components/RadioCards/index.jsx +9 -0
  127. package/dist/cjs/src/lib/components/RadioGroup/RadioGroupItem.jsx +62 -0
  128. package/dist/cjs/src/lib/components/RadioGroup/RadioGroupRoot.jsx +73 -0
  129. package/dist/cjs/src/lib/components/RadioGroup/index.jsx +9 -0
  130. package/dist/cjs/src/lib/components/ScrollArea/index.jsx +54 -0
  131. package/dist/cjs/src/lib/components/SegmentedControl/SegmentedControlItem.jsx +51 -0
  132. package/dist/cjs/src/lib/components/SegmentedControl/SegmentedControlRoot.jsx +79 -0
  133. package/dist/cjs/src/lib/components/SegmentedControl/index.jsx +9 -0
  134. package/dist/cjs/src/lib/components/Select/index.jsx +115 -0
  135. package/dist/cjs/src/lib/components/Separator/index.jsx +56 -0
  136. package/dist/cjs/src/lib/components/Skeleton/index.jsx +51 -0
  137. package/dist/cjs/src/lib/components/Slider/index.jsx +56 -0
  138. package/dist/cjs/src/lib/components/Spinner/index.jsx +56 -0
  139. package/dist/cjs/src/lib/components/TabNav/index.jsx +50 -0
  140. package/dist/cjs/src/lib/components/Table/index.jsx +119 -0
  141. package/dist/cjs/src/lib/components/Tabs/index.jsx +80 -0
  142. package/dist/cjs/src/lib/components/TextArea/index.jsx +65 -0
  143. package/dist/cjs/src/lib/components/TextField/index.jsx +67 -0
  144. package/dist/cjs/src/lib/components/Toast/ToastActionButton.jsx +97 -0
  145. package/dist/cjs/src/lib/components/Toast/ToastDescription.jsx +71 -0
  146. package/dist/cjs/src/lib/components/Toast/ToastRoot.jsx +123 -0
  147. package/dist/cjs/src/lib/components/Toast/ToastTitle.jsx +69 -0
  148. package/dist/cjs/src/lib/components/Toast/index.jsx +13 -0
  149. package/dist/cjs/src/lib/components/Toggle/ToggleWithText.jsx +86 -0
  150. package/dist/cjs/src/lib/components/Toggle/index.jsx +88 -0
  151. package/dist/cjs/src/lib/components/ToggleGroup/ToggleGroupItem.jsx +70 -0
  152. package/dist/cjs/src/lib/components/ToggleGroup/ToggleGroupRoot.jsx +79 -0
  153. package/dist/cjs/src/lib/components/ToggleGroup/index.jsx +9 -0
  154. package/dist/cjs/src/lib/components/ToggleSwitch/index.jsx +81 -0
  155. package/dist/cjs/src/lib/components/Tooltip/index.jsx +86 -0
  156. package/dist/cjs/src/lib/components/index.js +108 -0
  157. package/dist/cjs/src/lib/constants.js +950 -0
  158. package/dist/cjs/src/lib/index.js +18 -0
  159. package/dist/cjs/src/lib/types.js +2 -0
  160. package/dist/cjs/src/lib/utils/useDarkMode.js +53 -0
  161. package/dist/cjs/src/lib/utils/utils.js +14 -0
  162. package/dist/cjs/src/stories/ToggleSwitch/ToggleSwitch.stories.jsx +125 -0
  163. package/dist/cjs/src/stories/Welcome.jsx +96 -0
  164. package/dist/cjs/src/stories/accordion/Accordion.stories.jsx +88 -0
  165. package/dist/cjs/src/stories/alert-dialog/AlertDialog.stories.jsx +79 -0
  166. package/dist/cjs/src/stories/aspect-ratio/AspectRatio.stories.jsx +115 -0
  167. package/dist/cjs/src/stories/avatar/Avatar.stories.jsx +120 -0
  168. package/dist/cjs/src/stories/badge/Badge.stories.jsx +148 -0
  169. package/dist/cjs/src/stories/bar-chart/BarChart.stories.jsx +114 -0
  170. package/dist/cjs/src/stories/bubble-chart/BubbleChart.stories.jsx +182 -0
  171. package/dist/cjs/src/stories/button/Button.stories.jsx +119 -0
  172. package/dist/cjs/src/stories/button/IconButton.stories.jsx +118 -0
  173. package/dist/cjs/src/stories/callout/Callout.stories.jsx +212 -0
  174. package/dist/cjs/src/stories/card/Card.stories.jsx +168 -0
  175. package/dist/cjs/src/stories/checkbox/Checkbox.stories.jsx +187 -0
  176. package/dist/cjs/src/stories/checkbox/CheckboxCard.stories.jsx +150 -0
  177. package/dist/cjs/src/stories/checkbox/CheckboxGroup.stories.jsx +150 -0
  178. package/dist/cjs/src/stories/context-menu/ContextMenu.stories.jsx +163 -0
  179. package/dist/cjs/src/stories/data-list/DataList.stories.jsx +193 -0
  180. package/dist/cjs/src/stories/dialog/Dialog.stories.jsx +183 -0
  181. package/dist/cjs/src/stories/doughnut-chart/DoughnutChart.stories.jsx +130 -0
  182. package/dist/cjs/src/stories/dropdown-menu/DropdownMenu.stories.jsx +156 -0
  183. package/dist/cjs/src/stories/header/Header.stories.jsx +127 -0
  184. package/dist/cjs/src/stories/hover-card/HoverCard.stories.jsx +150 -0
  185. package/dist/cjs/src/stories/inset/Inset.stories.jsx +105 -0
  186. package/dist/cjs/src/stories/label/Label.stories.jsx +119 -0
  187. package/dist/cjs/src/stories/line-chart/LineChart.stories.jsx +245 -0
  188. package/dist/cjs/src/stories/menubar/Menubar.stories.jsx +282 -0
  189. package/dist/cjs/src/stories/navigation-menu/NavigationMenu.stories.jsx +249 -0
  190. package/dist/cjs/src/stories/pie-chart/PieChart.stories.jsx +156 -0
  191. package/dist/cjs/src/stories/popover/Popover.stories.jsx +137 -0
  192. package/dist/cjs/src/stories/progress/Progress.stories.jsx +88 -0
  193. package/dist/cjs/src/stories/radar-chart/RadarChart.stories.jsx +134 -0
  194. package/dist/cjs/src/stories/radio/Radio.stories.jsx +117 -0
  195. package/dist/cjs/src/stories/radio/RadioCards.stories.jsx +147 -0
  196. package/dist/cjs/src/stories/radio/RadioGroup.stories.jsx +132 -0
  197. package/dist/cjs/src/stories/scroll-area/ScrollArea.stories.jsx +204 -0
  198. package/dist/cjs/src/stories/segmented-control/SegmentedControl.stories.jsx +107 -0
  199. package/dist/cjs/src/stories/select/Select.stories.jsx +187 -0
  200. package/dist/cjs/src/stories/separator/Separator.stories.jsx +112 -0
  201. package/dist/cjs/src/stories/skeleton/Skeleton.stories.jsx +126 -0
  202. package/dist/cjs/src/stories/slider/Slider.stories.jsx +100 -0
  203. package/dist/cjs/src/stories/spinner/Spinner.stories.jsx +122 -0
  204. package/dist/cjs/src/stories/tab-nav/TabNav.stories.jsx +102 -0
  205. package/dist/cjs/src/stories/table/Table.stories.jsx +139 -0
  206. package/dist/cjs/src/stories/tabs/Tabs.stories.jsx +126 -0
  207. package/dist/cjs/src/stories/text/Text.stories.jsx +123 -0
  208. package/dist/cjs/src/stories/textArea/TextArea.stories.jsx +119 -0
  209. package/dist/cjs/src/stories/textfield/TextField.stories.jsx +133 -0
  210. package/dist/cjs/src/stories/toast/Toast.stories.jsx +230 -0
  211. package/dist/cjs/src/stories/toggle/Toggle.stories.jsx +114 -0
  212. package/dist/cjs/src/stories/toggle/ToggleGroup.stories.jsx +158 -0
  213. package/dist/cjs/src/stories/tooltip/Tooltip.stories.jsx +98 -0
  214. package/dist/cjs/src/utils/chart.js +582 -0
  215. package/dist/cjs/src/utils/move.mjs +40 -0
  216. package/dist/cjs/src/utils/post-publish.mjs +28 -0
  217. package/dist/cjs/tailwind.config.js +169 -0
  218. package/dist/cjs/tsconfig.tsbuildinfo +1 -0
  219. package/dist/esm/.storybook/main.js +22 -0
  220. package/dist/esm/.storybook/manager.js +12 -0
  221. package/dist/esm/.storybook/preview.jsx +80 -0
  222. package/dist/esm/src/app/layout.jsx +13 -0
  223. package/dist/esm/src/app/page.jsx +36 -0
  224. package/dist/esm/src/app/template/colorPicker.jsx +19 -0
  225. package/dist/esm/src/app/template/theme.jsx +17 -0
  226. package/dist/{lib/Typography/Header/index.js → esm/src/lib/Typography/Header/index.jsx} +7 -4
  227. package/dist/{lib/Typography/Text/index.js → esm/src/lib/Typography/Text/index.jsx} +8 -5
  228. package/dist/{lib/components/Accordion/index.js → esm/src/lib/components/Accordion/index.jsx} +19 -7
  229. package/dist/{lib/components/AlertDialog/AlertDialogAction.js → esm/src/lib/components/AlertDialog/AlertDialogAction.jsx} +6 -5
  230. package/dist/{lib/components/AlertDialog/AlertDialogCancel.js → esm/src/lib/components/AlertDialog/AlertDialogCancel.jsx} +6 -5
  231. package/dist/{lib/components/AlertDialog/AlertDialogContent.js → esm/src/lib/components/AlertDialog/AlertDialogContent.jsx} +9 -5
  232. package/dist/{lib/components/AlertDialog/AlertDialogDescription.js → esm/src/lib/components/AlertDialog/AlertDialogDescription.jsx} +5 -15
  233. package/dist/{lib/components/AlertDialog/AlertDialogRoot.js → esm/src/lib/components/AlertDialog/AlertDialogRoot.jsx} +6 -14
  234. package/dist/{lib/components/AlertDialog/AlertDialogTitle.js → esm/src/lib/components/AlertDialog/AlertDialogTitle.jsx} +5 -15
  235. package/dist/{lib/components/AlertDialog/AlertDialogTrigger.js → esm/src/lib/components/AlertDialog/AlertDialogTrigger.jsx} +6 -5
  236. package/dist/{lib/components/AspectRatio/index.js → esm/src/lib/components/AspectRatio/index.jsx} +6 -5
  237. package/dist/{lib/components/Avatar/index.js → esm/src/lib/components/Avatar/index.jsx} +9 -5
  238. package/dist/{lib/components/Badge/index.js → esm/src/lib/components/Badge/index.jsx} +6 -5
  239. package/dist/{lib/components/BarChart/index.js → esm/src/lib/components/BarChart/index.jsx} +6 -7
  240. package/dist/{lib/components/BubbleChart/index.js → esm/src/lib/components/BubbleChart/index.jsx} +7 -7
  241. package/dist/{lib/components/Button/index.js → esm/src/lib/components/Button/index.jsx} +6 -5
  242. package/dist/{lib/components/Callout/CalloutIcon.js → esm/src/lib/components/Callout/CalloutIcon.jsx} +10 -5
  243. package/dist/{lib/components/Callout/CalloutRoot.js → esm/src/lib/components/Callout/CalloutRoot.jsx} +8 -5
  244. package/dist/{lib/components/Callout/CalloutText.js → esm/src/lib/components/Callout/CalloutText.jsx} +5 -15
  245. package/dist/{lib/components/Card/index.js → esm/src/lib/components/Card/index.jsx} +6 -5
  246. package/dist/{lib/components/Checkbox/index.js → esm/src/lib/components/Checkbox/index.jsx} +14 -6
  247. package/dist/{lib/components/CheckboxCard/index.js → esm/src/lib/components/CheckboxCard/index.jsx} +9 -7
  248. package/dist/{lib/components/CheckboxGroup/CheckboxGroupItem.js → esm/src/lib/components/CheckboxGroup/CheckboxGroupItem.jsx} +7 -15
  249. package/dist/{lib/components/CheckboxGroup/CheckboxGroupRoot.js → esm/src/lib/components/CheckboxGroup/CheckboxGroupRoot.jsx} +6 -3
  250. package/dist/{lib/components/ContextMenu/ContextMenuCheckboxItem.js → esm/src/lib/components/ContextMenu/ContextMenuCheckboxItem.jsx} +9 -16
  251. package/dist/{lib/components/ContextMenu/ContextMenuContent.js → esm/src/lib/components/ContextMenu/ContextMenuContent.jsx} +8 -5
  252. package/dist/{lib/components/ContextMenu/ContextMenuGroup.js → esm/src/lib/components/ContextMenu/ContextMenuGroup.jsx} +4 -14
  253. package/dist/{lib/components/ContextMenu/ContextMenuItem.js → esm/src/lib/components/ContextMenu/ContextMenuItem.jsx} +7 -5
  254. package/dist/{lib/components/ContextMenu/ContextMenuItemIndicator.js → esm/src/lib/components/ContextMenu/ContextMenuItemIndicator.jsx} +6 -5
  255. package/dist/{lib/components/ContextMenu/ContextMenuLabel.js → esm/src/lib/components/ContextMenu/ContextMenuLabel.jsx} +6 -5
  256. package/dist/{lib/components/ContextMenu/ContextMenuRadioGroup.js → esm/src/lib/components/ContextMenu/ContextMenuRadioGroup.jsx} +6 -14
  257. package/dist/{lib/components/ContextMenu/ContextMenuRadioItem.js → esm/src/lib/components/ContextMenu/ContextMenuRadioItem.jsx} +9 -16
  258. package/dist/{lib/components/ContextMenu/ContextMenuRoot.js → esm/src/lib/components/ContextMenu/ContextMenuRoot.jsx} +6 -14
  259. package/dist/{lib/components/ContextMenu/ContextMenuSeparator.js → esm/src/lib/components/ContextMenu/ContextMenuSeparator.jsx} +5 -15
  260. package/dist/{lib/components/ContextMenu/ContextMenuSubContent.js → esm/src/lib/components/ContextMenu/ContextMenuSubContent.jsx} +12 -9
  261. package/dist/{lib/components/ContextMenu/ContextMenuSubTrigger.js → esm/src/lib/components/ContextMenu/ContextMenuSubTrigger.jsx} +11 -16
  262. package/dist/{lib/components/ContextMenu/ContextMenuTrigger.js → esm/src/lib/components/ContextMenu/ContextMenuTrigger.jsx} +5 -15
  263. package/dist/{lib/components/DataList/DataListItem.js → esm/src/lib/components/DataList/DataListItem.jsx} +6 -5
  264. package/dist/{lib/components/DataList/DataListLabel.js → esm/src/lib/components/DataList/DataListLabel.jsx} +6 -5
  265. package/dist/{lib/components/DataList/DataListRoot.js → esm/src/lib/components/DataList/DataListRoot.jsx} +7 -15
  266. package/dist/{lib/components/DataList/DataListValue.js → esm/src/lib/components/DataList/DataListValue.jsx} +6 -5
  267. package/dist/{lib/components/Dialog/DialogAction.js → esm/src/lib/components/Dialog/DialogAction.jsx} +6 -16
  268. package/dist/{lib/components/Dialog/DialogCancel.js → esm/src/lib/components/Dialog/DialogCancel.jsx} +5 -15
  269. package/dist/{lib/components/Dialog/DialogContent.js → esm/src/lib/components/Dialog/DialogContent.jsx} +6 -5
  270. package/dist/{lib/components/Dialog/DialogDescription.js → esm/src/lib/components/Dialog/DialogDescription.jsx} +5 -15
  271. package/dist/{lib/components/Dialog/DialogRoot.js → esm/src/lib/components/Dialog/DialogRoot.jsx} +6 -14
  272. package/dist/{lib/components/Dialog/DialogSlot.js → esm/src/lib/components/Dialog/DialogSlot.jsx} +5 -15
  273. package/dist/{lib/components/Dialog/DialogTitle.js → esm/src/lib/components/Dialog/DialogTitle.jsx} +5 -15
  274. package/dist/{lib/components/Dialog/DialogTrigger.js → esm/src/lib/components/Dialog/DialogTrigger.jsx} +4 -14
  275. package/dist/{lib/components/DoughnutChart/index.js → esm/src/lib/components/DoughnutChart/index.jsx} +6 -6
  276. package/dist/{lib/components/DropdownMenu/DropdonMenuRadioGroup.js → esm/src/lib/components/DropdownMenu/DropdonMenuRadioGroup.jsx} +3 -13
  277. package/dist/{lib/components/DropdownMenu/DropdonMenuSubContent.js → esm/src/lib/components/DropdownMenu/DropdonMenuSubContent.jsx} +12 -9
  278. package/dist/{lib/components/DropdownMenu/DropdownMenuCheckboxItem.js → esm/src/lib/components/DropdownMenu/DropdownMenuCheckboxItem.jsx} +9 -16
  279. package/dist/{lib/components/DropdownMenu/DropdownMenuContent.js → esm/src/lib/components/DropdownMenu/DropdownMenuContent.jsx} +8 -5
  280. package/dist/{lib/components/DropdownMenu/DropdownMenuItem.js → esm/src/lib/components/DropdownMenu/DropdownMenuItem.jsx} +7 -5
  281. package/dist/{lib/components/DropdownMenu/DropdownMenuItemIndicator.js → esm/src/lib/components/DropdownMenu/DropdownMenuItemIndicator.jsx} +6 -5
  282. package/dist/{lib/components/DropdownMenu/DropdownMenuLable.js → esm/src/lib/components/DropdownMenu/DropdownMenuLable.jsx} +5 -15
  283. package/dist/{lib/components/DropdownMenu/DropdownMenuRadioItem.js → esm/src/lib/components/DropdownMenu/DropdownMenuRadioItem.jsx} +9 -16
  284. package/dist/{lib/components/DropdownMenu/DropdownMenuRoot.js → esm/src/lib/components/DropdownMenu/DropdownMenuRoot.jsx} +4 -14
  285. package/dist/{lib/components/DropdownMenu/DropdownMenuSeparator.js → esm/src/lib/components/DropdownMenu/DropdownMenuSeparator.jsx} +3 -15
  286. package/dist/{lib/components/DropdownMenu/DropdownMenuSub.js → esm/src/lib/components/DropdownMenu/DropdownMenuSub.jsx} +2 -14
  287. package/dist/{lib/components/DropdownMenu/DropdownMenuSubTrigger.js → esm/src/lib/components/DropdownMenu/DropdownMenuSubTrigger.jsx} +9 -16
  288. package/dist/{lib/components/DropdownMenu/DropdownMenuTrigger.js → esm/src/lib/components/DropdownMenu/DropdownMenuTrigger.jsx} +5 -15
  289. package/dist/{lib/components/HoverCard/HoverCardContent.js → esm/src/lib/components/HoverCard/HoverCardContent.jsx} +6 -5
  290. package/dist/{lib/components/HoverCard/HoverCardRoot.js → esm/src/lib/components/HoverCard/HoverCardRoot.jsx} +6 -14
  291. package/dist/{lib/components/HoverCard/HoverCardTrigger.js → esm/src/lib/components/HoverCard/HoverCardTrigger.jsx} +4 -14
  292. package/dist/{lib/components/IconButton/index.js → esm/src/lib/components/IconButton/index.jsx} +5 -4
  293. package/dist/{lib/components/Inset/index.js → esm/src/lib/components/Inset/index.jsx} +8 -5
  294. package/dist/{lib/components/Label/index.js → esm/src/lib/components/Label/index.jsx} +5 -4
  295. package/dist/{lib/components/LineChart/index.js → esm/src/lib/components/LineChart/index.jsx} +6 -7
  296. package/dist/{lib/components/Menubar/MenubarCheckboxItem.js → esm/src/lib/components/Menubar/MenubarCheckboxItem.jsx} +9 -16
  297. package/dist/{lib/components/Menubar/MenubarContent.js → esm/src/lib/components/Menubar/MenubarContent.jsx} +12 -9
  298. package/dist/{lib/components/Menubar/MenubarItem.js → esm/src/lib/components/Menubar/MenubarItem.jsx} +7 -5
  299. package/dist/{lib/components/Menubar/MenubarItemIndicator.js → esm/src/lib/components/Menubar/MenubarItemIndicator.jsx} +6 -5
  300. package/dist/{lib/components/Menubar/MenubarMenu.js → esm/src/lib/components/Menubar/MenubarMenu.jsx} +2 -14
  301. package/dist/{lib/components/Menubar/MenubarRadioGroup.js → esm/src/lib/components/Menubar/MenubarRadioGroup.jsx} +6 -14
  302. package/dist/{lib/components/Menubar/MenubarRadioItem.js → esm/src/lib/components/Menubar/MenubarRadioItem.jsx} +9 -16
  303. package/dist/{lib/components/Menubar/MenubarRoot.js → esm/src/lib/components/Menubar/MenubarRoot.jsx} +8 -5
  304. package/dist/{lib/components/Menubar/MenubarSeparator.js → esm/src/lib/components/Menubar/MenubarSeparator.jsx} +5 -15
  305. package/dist/{lib/components/Menubar/MenubarSub.js → esm/src/lib/components/Menubar/MenubarSub.jsx} +2 -14
  306. package/dist/{lib/components/Menubar/MenubarSubContent.js → esm/src/lib/components/Menubar/MenubarSubContent.jsx} +7 -6
  307. package/dist/{lib/components/Menubar/MenubarSubTrigger.js → esm/src/lib/components/Menubar/MenubarSubTrigger.jsx} +9 -16
  308. package/dist/{lib/components/Menubar/MenubarTrigger.js → esm/src/lib/components/Menubar/MenubarTrigger.jsx} +6 -5
  309. package/dist/{lib/components/NavigationMenu/NavigationMenuContent.js → esm/src/lib/components/NavigationMenu/NavigationMenuContent.jsx} +6 -5
  310. package/dist/esm/src/lib/components/NavigationMenu/NavigationMenuIndicator.jsx +22 -0
  311. package/dist/{lib/components/NavigationMenu/NavigationMenuItem.js → esm/src/lib/components/NavigationMenu/NavigationMenuItem.jsx} +4 -14
  312. package/dist/{lib/components/NavigationMenu/NavigationMenuLink.js → esm/src/lib/components/NavigationMenu/NavigationMenuLink.jsx} +6 -5
  313. package/dist/{lib/components/NavigationMenu/NavigationMenuList.js → esm/src/lib/components/NavigationMenu/NavigationMenuList.jsx} +7 -5
  314. package/dist/{lib/components/NavigationMenu/NavigationMenuRoot.js → esm/src/lib/components/NavigationMenu/NavigationMenuRoot.jsx} +7 -15
  315. package/dist/{lib/components/NavigationMenu/NavigationMenuTrigger.js → esm/src/lib/components/NavigationMenu/NavigationMenuTrigger.jsx} +7 -5
  316. package/dist/{lib/components/NavigationMenu/NavigationMenuViewport.js → esm/src/lib/components/NavigationMenu/NavigationMenuViewport.jsx} +6 -5
  317. package/dist/{lib/components/PieChart/index.js → esm/src/lib/components/PieChart/index.jsx} +6 -6
  318. package/dist/{lib/components/Popover/PopoverClose.js → esm/src/lib/components/Popover/PopoverClose.jsx} +5 -15
  319. package/dist/{lib/components/Popover/PopoverContent.js → esm/src/lib/components/Popover/PopoverContent.jsx} +6 -5
  320. package/dist/{lib/components/Popover/PopoverRoot.js → esm/src/lib/components/Popover/PopoverRoot.jsx} +6 -14
  321. package/dist/{lib/components/Popover/PopoverTrigger.js → esm/src/lib/components/Popover/PopoverTrigger.jsx} +4 -14
  322. package/dist/{lib/components/Progress/index.js → esm/src/lib/components/Progress/index.jsx} +6 -5
  323. package/dist/{lib/components/RadarChart/index.js → esm/src/lib/components/RadarChart/index.jsx} +7 -7
  324. package/dist/{lib/components/Radio/index.js → esm/src/lib/components/Radio/index.jsx} +10 -15
  325. package/dist/{lib/components/RadioCards/RadioCardsItem.js → esm/src/lib/components/RadioCards/RadioCardsItem.jsx} +5 -15
  326. package/dist/{lib/components/RadioCards/RadioCardsRoot.js → esm/src/lib/components/RadioCards/RadioCardsRoot.jsx} +10 -5
  327. package/dist/{lib/components/RadioGroup/RadioGroupItem.js → esm/src/lib/components/RadioGroup/RadioGroupItem.jsx} +5 -15
  328. package/dist/{lib/components/RadioGroup/RadioGroupRoot.js → esm/src/lib/components/RadioGroup/RadioGroupRoot.jsx} +9 -15
  329. package/dist/{lib/components/ScrollArea/index.js → esm/src/lib/components/ScrollArea/index.jsx} +6 -14
  330. package/dist/{lib/components/SegmentedControl/SegmentedControlItem.js → esm/src/lib/components/SegmentedControl/SegmentedControlItem.jsx} +5 -15
  331. package/dist/{lib/components/SegmentedControl/SegmentedControlRoot.js → esm/src/lib/components/SegmentedControl/SegmentedControlRoot.jsx} +7 -4
  332. package/dist/{lib/components/Select/index.js → esm/src/lib/components/Select/index.jsx} +27 -10
  333. package/dist/{lib/components/Separator/index.js → esm/src/lib/components/Separator/index.jsx} +7 -4
  334. package/dist/{lib/components/Skeleton/index.js → esm/src/lib/components/Skeleton/index.jsx} +7 -4
  335. package/dist/{lib/components/Slider/index.js → esm/src/lib/components/Slider/index.jsx} +5 -4
  336. package/dist/{lib/components/Spinner/index.js → esm/src/lib/components/Spinner/index.jsx} +7 -4
  337. package/dist/{lib/components/TabNav/index.js → esm/src/lib/components/TabNav/index.jsx} +9 -15
  338. package/dist/{lib/components/Table/index.js → esm/src/lib/components/Table/index.jsx} +25 -10
  339. package/dist/{lib/components/Tabs/index.js → esm/src/lib/components/Tabs/index.jsx} +16 -7
  340. package/dist/{lib/components/TextArea/index.js → esm/src/lib/components/TextArea/index.jsx} +5 -4
  341. package/dist/{lib/components/TextField/index.js → esm/src/lib/components/TextField/index.jsx} +10 -5
  342. package/dist/{lib/components/Toast/ToastActionButton.js → esm/src/lib/components/Toast/ToastActionButton.jsx} +7 -6
  343. package/dist/{lib/components/Toast/ToastDescription.js → esm/src/lib/components/Toast/ToastDescription.jsx} +7 -15
  344. package/dist/{lib/components/Toast/ToastRoot.js → esm/src/lib/components/Toast/ToastRoot.jsx} +11 -5
  345. package/dist/{lib/components/Toast/ToastTitle.js → esm/src/lib/components/Toast/ToastTitle.jsx} +5 -15
  346. package/dist/{lib/components/Toggle/ToggleWithText.js → esm/src/lib/components/Toggle/ToggleWithText.jsx} +9 -7
  347. package/dist/{lib/components/Toggle/index.js → esm/src/lib/components/Toggle/index.jsx} +6 -5
  348. package/dist/{lib/components/ToggleGroup/ToggleGroupItem.js → esm/src/lib/components/ToggleGroup/ToggleGroupItem.jsx} +6 -16
  349. package/dist/{lib/components/ToggleGroup/ToggleGroupRoot.js → esm/src/lib/components/ToggleGroup/ToggleGroupRoot.jsx} +10 -5
  350. package/dist/{lib/components/ToggleSwitch/index.js → esm/src/lib/components/ToggleSwitch/index.jsx} +9 -5
  351. package/dist/{lib/components/Tooltip/index.js → esm/src/lib/components/Tooltip/index.jsx} +13 -4
  352. package/dist/{lib → esm/src/lib}/constants.js +2 -2
  353. package/dist/{lib → esm/src/lib}/utils/useDarkMode.js +1 -1
  354. package/dist/esm/src/stories/ToggleSwitch/ToggleSwitch.stories.jsx +118 -0
  355. package/dist/esm/src/stories/Welcome.jsx +68 -0
  356. package/dist/esm/src/stories/accordion/Accordion.stories.jsx +81 -0
  357. package/dist/esm/src/stories/alert-dialog/AlertDialog.stories.jsx +72 -0
  358. package/dist/esm/src/stories/aspect-ratio/AspectRatio.stories.jsx +106 -0
  359. package/dist/esm/src/stories/avatar/Avatar.stories.jsx +109 -0
  360. package/dist/esm/src/stories/badge/Badge.stories.jsx +135 -0
  361. package/dist/esm/src/stories/bar-chart/BarChart.stories.jsx +105 -0
  362. package/dist/esm/src/stories/bubble-chart/BubbleChart.stories.jsx +175 -0
  363. package/dist/esm/src/stories/button/Button.stories.jsx +105 -0
  364. package/dist/esm/src/stories/button/IconButton.stories.jsx +110 -0
  365. package/dist/esm/src/stories/callout/Callout.stories.jsx +202 -0
  366. package/dist/esm/src/stories/card/Card.stories.jsx +156 -0
  367. package/dist/esm/src/stories/checkbox/Checkbox.stories.jsx +174 -0
  368. package/dist/esm/src/stories/checkbox/CheckboxCard.stories.jsx +138 -0
  369. package/dist/esm/src/stories/checkbox/CheckboxGroup.stories.jsx +144 -0
  370. package/dist/esm/src/stories/context-menu/ContextMenu.stories.jsx +156 -0
  371. package/dist/esm/src/stories/data-list/DataList.stories.jsx +186 -0
  372. package/dist/esm/src/stories/dialog/Dialog.stories.jsx +173 -0
  373. package/dist/esm/src/stories/doughnut-chart/DoughnutChart.stories.jsx +118 -0
  374. package/dist/esm/src/stories/dropdown-menu/DropdownMenu.stories.jsx +146 -0
  375. package/dist/esm/src/stories/header/Header.stories.jsx +118 -0
  376. package/dist/esm/src/stories/hover-card/HoverCard.stories.jsx +143 -0
  377. package/dist/esm/src/stories/inset/Inset.stories.jsx +99 -0
  378. package/dist/esm/src/stories/label/Label.stories.jsx +112 -0
  379. package/dist/esm/src/stories/line-chart/LineChart.stories.jsx +234 -0
  380. package/dist/esm/src/stories/menubar/Menubar.stories.jsx +274 -0
  381. package/dist/esm/src/stories/navigation-menu/NavigationMenu.stories.jsx +237 -0
  382. package/dist/esm/src/stories/pie-chart/PieChart.stories.jsx +144 -0
  383. package/dist/esm/src/stories/popover/Popover.stories.jsx +128 -0
  384. package/dist/esm/src/stories/progress/Progress.stories.jsx +81 -0
  385. package/dist/esm/src/stories/radar-chart/RadarChart.stories.jsx +126 -0
  386. package/dist/esm/src/stories/radio/Radio.stories.jsx +110 -0
  387. package/dist/esm/src/stories/radio/RadioCards.stories.jsx +136 -0
  388. package/dist/esm/src/stories/radio/RadioGroup.stories.jsx +125 -0
  389. package/dist/esm/src/stories/scroll-area/ScrollArea.stories.jsx +197 -0
  390. package/dist/esm/src/stories/segmented-control/SegmentedControl.stories.jsx +100 -0
  391. package/dist/esm/src/stories/select/Select.stories.jsx +175 -0
  392. package/dist/esm/src/stories/separator/Separator.stories.jsx +105 -0
  393. package/dist/esm/src/stories/skeleton/Skeleton.stories.jsx +118 -0
  394. package/dist/esm/src/stories/slider/Slider.stories.jsx +93 -0
  395. package/dist/esm/src/stories/spinner/Spinner.stories.jsx +111 -0
  396. package/dist/esm/src/stories/tab-nav/TabNav.stories.jsx +94 -0
  397. package/dist/esm/src/stories/table/Table.stories.jsx +129 -0
  398. package/dist/esm/src/stories/tabs/Tabs.stories.jsx +118 -0
  399. package/dist/esm/src/stories/text/Text.stories.jsx +115 -0
  400. package/dist/esm/src/stories/textArea/TextArea.stories.jsx +111 -0
  401. package/dist/esm/src/stories/textfield/TextField.stories.jsx +122 -0
  402. package/dist/esm/src/stories/toast/Toast.stories.jsx +197 -0
  403. package/dist/esm/src/stories/toggle/Toggle.stories.jsx +106 -0
  404. package/dist/esm/src/stories/toggle/ToggleGroup.stories.jsx +151 -0
  405. package/dist/esm/src/stories/tooltip/Tooltip.stories.jsx +89 -0
  406. package/dist/esm/src/utils/chart.js +572 -0
  407. package/dist/esm/src/utils/move.mjs +35 -0
  408. package/dist/esm/src/utils/post-publish.mjs +23 -0
  409. package/dist/esm/tailwind.config.js +144 -0
  410. package/dist/esm/tsconfig.tsbuildinfo +1 -0
  411. package/package.json +5 -4
  412. package/dist/lib/Typography/Header/index.d.ts +0 -13
  413. package/dist/lib/Typography/Text/index.d.ts +0 -15
  414. package/dist/lib/Typography/index.d.ts +0 -2
  415. package/dist/lib/color/alpha.d.ts +0 -784
  416. package/dist/lib/color/constants.d.ts +0 -29
  417. package/dist/lib/color/dark.d.ts +0 -392
  418. package/dist/lib/color/krdsColors.d.ts +0 -309
  419. package/dist/lib/color/light.d.ts +0 -392
  420. package/dist/lib/components/Accordion/index.d.ts +0 -22
  421. package/dist/lib/components/AlertDialog/AlertDialogAction.d.ts +0 -14
  422. package/dist/lib/components/AlertDialog/AlertDialogCancel.d.ts +0 -13
  423. package/dist/lib/components/AlertDialog/AlertDialogContent.d.ts +0 -11
  424. package/dist/lib/components/AlertDialog/AlertDialogDescription.d.ts +0 -10
  425. package/dist/lib/components/AlertDialog/AlertDialogRoot.d.ts +0 -16
  426. package/dist/lib/components/AlertDialog/AlertDialogTitle.d.ts +0 -10
  427. package/dist/lib/components/AlertDialog/AlertDialogTrigger.d.ts +0 -17
  428. package/dist/lib/components/AlertDialog/index.d.ts +0 -11
  429. package/dist/lib/components/AspectRatio/index.d.ts +0 -10
  430. package/dist/lib/components/Avatar/index.d.ts +0 -21
  431. package/dist/lib/components/Badge/index.d.ts +0 -18
  432. package/dist/lib/components/BarChart/index.d.ts +0 -38
  433. package/dist/lib/components/BubbleChart/index.d.ts +0 -29
  434. package/dist/lib/components/Button/index.d.ts +0 -16
  435. package/dist/lib/components/Callout/CalloutIcon.d.ts +0 -13
  436. package/dist/lib/components/Callout/CalloutRoot.d.ts +0 -18
  437. package/dist/lib/components/Callout/CalloutText.d.ts +0 -10
  438. package/dist/lib/components/Callout/index.d.ts +0 -7
  439. package/dist/lib/components/Card/index.d.ts +0 -14
  440. package/dist/lib/components/Checkbox/index.d.ts +0 -17
  441. package/dist/lib/components/CheckboxCard/index.d.ts +0 -20
  442. package/dist/lib/components/CheckboxGroup/CheckboxGroupItem.d.ts +0 -5
  443. package/dist/lib/components/CheckboxGroup/CheckboxGroupRoot.d.ts +0 -17
  444. package/dist/lib/components/CheckboxGroup/index.d.ts +0 -6
  445. package/dist/lib/components/ContextMenu/ContextMenuCheckboxItem.d.ts +0 -4
  446. package/dist/lib/components/ContextMenu/ContextMenuContent.d.ts +0 -11
  447. package/dist/lib/components/ContextMenu/ContextMenuGroup.d.ts +0 -4
  448. package/dist/lib/components/ContextMenu/ContextMenuItem.d.ts +0 -13
  449. package/dist/lib/components/ContextMenu/ContextMenuItemIndicator.d.ts +0 -10
  450. package/dist/lib/components/ContextMenu/ContextMenuLabel.d.ts +0 -11
  451. package/dist/lib/components/ContextMenu/ContextMenuRadioGroup.d.ts +0 -8
  452. package/dist/lib/components/ContextMenu/ContextMenuRadioItem.d.ts +0 -4
  453. package/dist/lib/components/ContextMenu/ContextMenuRoot.d.ts +0 -13
  454. package/dist/lib/components/ContextMenu/ContextMenuSeparator.d.ts +0 -3
  455. package/dist/lib/components/ContextMenu/ContextMenuSubContent.d.ts +0 -11
  456. package/dist/lib/components/ContextMenu/ContextMenuSubTrigger.d.ts +0 -4
  457. package/dist/lib/components/ContextMenu/ContextMenuTrigger.d.ts +0 -4
  458. package/dist/lib/components/ContextMenu/index.d.ts +0 -17
  459. package/dist/lib/components/DataList/DataListItem.d.ts +0 -9
  460. package/dist/lib/components/DataList/DataListLabel.d.ts +0 -10
  461. package/dist/lib/components/DataList/DataListRoot.d.ts +0 -14
  462. package/dist/lib/components/DataList/DataListValue.d.ts +0 -11
  463. package/dist/lib/components/DataList/index.d.ts +0 -8
  464. package/dist/lib/components/Dialog/DialogAction.d.ts +0 -13
  465. package/dist/lib/components/Dialog/DialogCancel.d.ts +0 -11
  466. package/dist/lib/components/Dialog/DialogContent.d.ts +0 -11
  467. package/dist/lib/components/Dialog/DialogDescription.d.ts +0 -9
  468. package/dist/lib/components/Dialog/DialogRoot.d.ts +0 -15
  469. package/dist/lib/components/Dialog/DialogSlot.d.ts +0 -9
  470. package/dist/lib/components/Dialog/DialogTitle.d.ts +0 -11
  471. package/dist/lib/components/Dialog/DialogTrigger.d.ts +0 -3
  472. package/dist/lib/components/Dialog/index.d.ts +0 -15
  473. package/dist/lib/components/DoughnutChart/index.d.ts +0 -23
  474. package/dist/lib/components/DropdownMenu/DropdonMenuRadioGroup.d.ts +0 -3
  475. package/dist/lib/components/DropdownMenu/DropdonMenuSubContent.d.ts +0 -11
  476. package/dist/lib/components/DropdownMenu/DropdownMenuCheckboxItem.d.ts +0 -7
  477. package/dist/lib/components/DropdownMenu/DropdownMenuContent.d.ts +0 -11
  478. package/dist/lib/components/DropdownMenu/DropdownMenuItem.d.ts +0 -15
  479. package/dist/lib/components/DropdownMenu/DropdownMenuItemIndicator.d.ts +0 -10
  480. package/dist/lib/components/DropdownMenu/DropdownMenuLable.d.ts +0 -10
  481. package/dist/lib/components/DropdownMenu/DropdownMenuRadioItem.d.ts +0 -6
  482. package/dist/lib/components/DropdownMenu/DropdownMenuRoot.d.ts +0 -15
  483. package/dist/lib/components/DropdownMenu/DropdownMenuSeparator.d.ts +0 -3
  484. package/dist/lib/components/DropdownMenu/DropdownMenuSub.d.ts +0 -3
  485. package/dist/lib/components/DropdownMenu/DropdownMenuSubTrigger.d.ts +0 -4
  486. package/dist/lib/components/DropdownMenu/DropdownMenuTrigger.d.ts +0 -14
  487. package/dist/lib/components/DropdownMenu/index.d.ts +0 -20
  488. package/dist/lib/components/HoverCard/HoverCardContent.d.ts +0 -14
  489. package/dist/lib/components/HoverCard/HoverCardRoot.d.ts +0 -11
  490. package/dist/lib/components/HoverCard/HoverCardTrigger.d.ts +0 -3
  491. package/dist/lib/components/HoverCard/index.d.ts +0 -10
  492. package/dist/lib/components/IconButton/index.d.ts +0 -15
  493. package/dist/lib/components/Inset/index.d.ts +0 -10
  494. package/dist/lib/components/Label/index.d.ts +0 -17
  495. package/dist/lib/components/LineChart/index.d.ts +0 -44
  496. package/dist/lib/components/Menubar/MenubarCheckboxItem.d.ts +0 -4
  497. package/dist/lib/components/Menubar/MenubarContent.d.ts +0 -11
  498. package/dist/lib/components/Menubar/MenubarItem.d.ts +0 -13
  499. package/dist/lib/components/Menubar/MenubarItemIndicator.d.ts +0 -10
  500. package/dist/lib/components/Menubar/MenubarMenu.d.ts +0 -5
  501. package/dist/lib/components/Menubar/MenubarRadioGroup.d.ts +0 -8
  502. package/dist/lib/components/Menubar/MenubarRadioItem.d.ts +0 -4
  503. package/dist/lib/components/Menubar/MenubarRoot.d.ts +0 -19
  504. package/dist/lib/components/Menubar/MenubarSeparator.d.ts +0 -3
  505. package/dist/lib/components/Menubar/MenubarSub.d.ts +0 -3
  506. package/dist/lib/components/Menubar/MenubarSubContent.d.ts +0 -10
  507. package/dist/lib/components/Menubar/MenubarSubTrigger.d.ts +0 -4
  508. package/dist/lib/components/Menubar/MenubarTrigger.d.ts +0 -12
  509. package/dist/lib/components/Menubar/index.d.ts +0 -19
  510. package/dist/lib/components/NavigationMenu/NavigationMenuContent.d.ts +0 -11
  511. package/dist/lib/components/NavigationMenu/NavigationMenuIndicator.d.ts +0 -3
  512. package/dist/lib/components/NavigationMenu/NavigationMenuIndicator.js +0 -31
  513. package/dist/lib/components/NavigationMenu/NavigationMenuItem.d.ts +0 -3
  514. package/dist/lib/components/NavigationMenu/NavigationMenuLink.d.ts +0 -13
  515. package/dist/lib/components/NavigationMenu/NavigationMenuList.d.ts +0 -12
  516. package/dist/lib/components/NavigationMenu/NavigationMenuRoot.d.ts +0 -14
  517. package/dist/lib/components/NavigationMenu/NavigationMenuTrigger.d.ts +0 -13
  518. package/dist/lib/components/NavigationMenu/NavigationMenuViewport.d.ts +0 -12
  519. package/dist/lib/components/NavigationMenu/index.d.ts +0 -12
  520. package/dist/lib/components/PieChart/index.d.ts +0 -23
  521. package/dist/lib/components/Popover/PopoverClose.d.ts +0 -9
  522. package/dist/lib/components/Popover/PopoverContent.d.ts +0 -11
  523. package/dist/lib/components/Popover/PopoverRoot.d.ts +0 -12
  524. package/dist/lib/components/Popover/PopoverTrigger.d.ts +0 -3
  525. package/dist/lib/components/Popover/index.d.ts +0 -11
  526. package/dist/lib/components/Progress/index.d.ts +0 -13
  527. package/dist/lib/components/RadarChart/index.d.ts +0 -33
  528. package/dist/lib/components/Radio/index.d.ts +0 -13
  529. package/dist/lib/components/RadioCards/RadioCardsItem.d.ts +0 -10
  530. package/dist/lib/components/RadioCards/RadioCardsRoot.d.ts +0 -13
  531. package/dist/lib/components/RadioCards/index.d.ts +0 -6
  532. package/dist/lib/components/RadioGroup/RadioGroupItem.d.ts +0 -13
  533. package/dist/lib/components/RadioGroup/RadioGroupRoot.d.ts +0 -15
  534. package/dist/lib/components/RadioGroup/index.d.ts +0 -6
  535. package/dist/lib/components/ScrollArea/index.d.ts +0 -9
  536. package/dist/lib/components/SegmentedControl/SegmentedControlItem.d.ts +0 -6
  537. package/dist/lib/components/SegmentedControl/SegmentedControlRoot.d.ts +0 -14
  538. package/dist/lib/components/SegmentedControl/index.d.ts +0 -6
  539. package/dist/lib/components/Select/index.d.ts +0 -34
  540. package/dist/lib/components/Separator/index.d.ts +0 -11
  541. package/dist/lib/components/Skeleton/index.d.ts +0 -14
  542. package/dist/lib/components/Slider/index.d.ts +0 -14
  543. package/dist/lib/components/Spinner/index.d.ts +0 -15
  544. package/dist/lib/components/TabNav/index.d.ts +0 -15
  545. package/dist/lib/components/Table/index.d.ts +0 -30
  546. package/dist/lib/components/Tabs/index.d.ts +0 -22
  547. package/dist/lib/components/TextArea/index.d.ts +0 -16
  548. package/dist/lib/components/TextField/index.d.ts +0 -21
  549. package/dist/lib/components/Toast/ToastActionButton.d.ts +0 -14
  550. package/dist/lib/components/Toast/ToastDescription.d.ts +0 -13
  551. package/dist/lib/components/Toast/ToastRoot.d.ts +0 -27
  552. package/dist/lib/components/Toast/ToastTitle.d.ts +0 -13
  553. package/dist/lib/components/Toast/index.d.ts +0 -8
  554. package/dist/lib/components/Toggle/ToggleWithText.d.ts +0 -21
  555. package/dist/lib/components/Toggle/index.d.ts +0 -21
  556. package/dist/lib/components/ToggleGroup/ToggleGroupItem.d.ts +0 -17
  557. package/dist/lib/components/ToggleGroup/ToggleGroupRoot.d.ts +0 -15
  558. package/dist/lib/components/ToggleGroup/index.d.ts +0 -6
  559. package/dist/lib/components/ToggleSwitch/index.d.ts +0 -13
  560. package/dist/lib/components/Tooltip/index.d.ts +0 -19
  561. package/dist/lib/components/index.d.ts +0 -50
  562. package/dist/lib/constants.d.ts +0 -655
  563. package/dist/lib/index.d.ts +0 -2
  564. package/dist/lib/types.d.ts +0 -81
  565. package/dist/lib/utils/useDarkMode.d.ts +0 -1
  566. package/dist/lib/utils/utils.d.ts +0 -2
  567. /package/dist/{lib → esm/src/lib}/Typography/index.js +0 -0
  568. /package/dist/{lib → esm/src/lib}/color/alpha.js +0 -0
  569. /package/dist/{lib → esm/src/lib}/color/constants.js +0 -0
  570. /package/dist/{lib → esm/src/lib}/color/dark.js +0 -0
  571. /package/dist/{lib → esm/src/lib}/color/krdsColors.js +0 -0
  572. /package/dist/{lib → esm/src/lib}/color/light.js +0 -0
  573. /package/dist/{lib/components/AlertDialog/index.js → esm/src/lib/components/AlertDialog/index.jsx} +0 -0
  574. /package/dist/{lib/components/Callout/index.js → esm/src/lib/components/Callout/index.jsx} +0 -0
  575. /package/dist/{lib/components/CheckboxGroup/index.js → esm/src/lib/components/CheckboxGroup/index.jsx} +0 -0
  576. /package/dist/{lib/components/ContextMenu/index.js → esm/src/lib/components/ContextMenu/index.jsx} +0 -0
  577. /package/dist/{lib/components/DataList/index.js → esm/src/lib/components/DataList/index.jsx} +0 -0
  578. /package/dist/{lib/components/Dialog/index.js → esm/src/lib/components/Dialog/index.jsx} +0 -0
  579. /package/dist/{lib/components/DropdownMenu/index.js → esm/src/lib/components/DropdownMenu/index.jsx} +0 -0
  580. /package/dist/{lib/components/HoverCard/index.js → esm/src/lib/components/HoverCard/index.jsx} +0 -0
  581. /package/dist/{lib/components/Menubar/index.js → esm/src/lib/components/Menubar/index.jsx} +0 -0
  582. /package/dist/{lib/components/NavigationMenu/index.js → esm/src/lib/components/NavigationMenu/index.jsx} +0 -0
  583. /package/dist/{lib/components/Popover/index.js → esm/src/lib/components/Popover/index.jsx} +0 -0
  584. /package/dist/{lib/components/RadioCards/index.js → esm/src/lib/components/RadioCards/index.jsx} +0 -0
  585. /package/dist/{lib/components/RadioGroup/index.js → esm/src/lib/components/RadioGroup/index.jsx} +0 -0
  586. /package/dist/{lib/components/SegmentedControl/index.js → esm/src/lib/components/SegmentedControl/index.jsx} +0 -0
  587. /package/dist/{lib/components/Toast/index.js → esm/src/lib/components/Toast/index.jsx} +0 -0
  588. /package/dist/{lib/components/ToggleGroup/index.js → esm/src/lib/components/ToggleGroup/index.jsx} +0 -0
  589. /package/dist/{lib → esm/src/lib}/components/index.js +0 -0
  590. /package/dist/{lib → esm/src/lib}/index.js +0 -0
  591. /package/dist/{lib → esm/src/lib}/types.js +0 -0
  592. /package/dist/{lib → esm/src/lib}/utils/utils.js +0 -0
@@ -0,0 +1,22 @@
1
+ var __rest = (this && this.__rest) || function (s, e) {
2
+ var t = {};
3
+ for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
4
+ t[p] = s[p];
5
+ if (s != null && typeof Object.getOwnPropertySymbols === "function")
6
+ for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
7
+ if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
8
+ t[p[i]] = s[p[i]];
9
+ }
10
+ return t;
11
+ };
12
+ import React, { forwardRef } from 'react';
13
+ import * as NavigationMenuPrimitive from '@radix-ui/react-navigation-menu';
14
+ import { cn } from '../../../../../lib/utils/utils';
15
+ export var NavigationMenuIndicator = forwardRef(function (_a, ref) {
16
+ var className = _a.className, children = _a.children, props = __rest(_a, ["className", "children"]);
17
+ return (<NavigationMenuPrimitive.Indicator ref={ref} className={"data-[state=visible]:animate-fadeIn data-[state=hidden]:animate-fadeOut top-full z-[1] flex h-[10px] items-end justify-center overflow-hidden transition-[width,transform_250ms_ease]"} {...props}>
18
+ <div className={cn("relative top-[70%] h-[10px] w-[10px] rotate-[45deg] rounded-tl-[2px] bg-white shadow shadow-slate-4 dark:bg-slateDark-2 dark:shadow-slateDark-4", className)}/>
19
+ {children}
20
+ </NavigationMenuPrimitive.Indicator>);
21
+ });
22
+ NavigationMenuIndicator.displayName = 'NavigationMenu.Indicator';
@@ -1,14 +1,3 @@
1
- var __assign = (this && this.__assign) || function () {
2
- __assign = Object.assign || function(t) {
3
- for (var s, i = 1, n = arguments.length; i < n; i++) {
4
- s = arguments[i];
5
- for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
6
- t[p] = s[p];
7
- }
8
- return t;
9
- };
10
- return __assign.apply(this, arguments);
11
- };
12
1
  var __rest = (this && this.__rest) || function (s, e) {
13
2
  var t = {};
14
3
  for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
@@ -20,11 +9,12 @@ var __rest = (this && this.__rest) || function (s, e) {
20
9
  }
21
10
  return t;
22
11
  };
23
- import { jsx as _jsx } from "react/jsx-runtime";
24
- import { forwardRef } from 'react';
12
+ import React, { forwardRef } from 'react';
25
13
  import * as NavigationMenuPrimitive from '@radix-ui/react-navigation-menu';
26
14
  export var NavigationMenuItem = forwardRef(function (_a, ref) {
27
15
  var className = _a.className, children = _a.children, props = __rest(_a, ["className", "children"]);
28
- return (_jsx(NavigationMenuPrimitive.Item, __assign({ ref: ref, className: className }, props, { children: children })));
16
+ return (<NavigationMenuPrimitive.Item ref={ref} className={className} {...props}>
17
+ {children}
18
+ </NavigationMenuPrimitive.Item>);
29
19
  });
30
20
  NavigationMenuItem.displayName = 'NavigationMenu.Item';
@@ -20,12 +20,11 @@ var __rest = (this && this.__rest) || function (s, e) {
20
20
  }
21
21
  return t;
22
22
  };
23
- import { jsx as _jsx } from "react/jsx-runtime";
24
- import { forwardRef } from 'react';
23
+ import React, { forwardRef } from 'react';
25
24
  import * as NavigationMenuPrimitive from '@radix-ui/react-navigation-menu';
26
- import { cn } from '../../../lib/utils/utils';
25
+ import { cn } from '../../../../../lib/utils/utils';
27
26
  import { cva } from 'class-variance-authority';
28
- import { appearanceStyle, radiusVariants, scalingVariants } from '../../../lib/constants';
27
+ import { appearanceStyle, radiusVariants, scalingVariants } from '../../../../../lib/constants';
29
28
  import { useNavigationMenuContext } from './NavigationMenuRoot';
30
29
  export var navigationMenuLinkVariants = cva("block select-none leading-none outline-none py-1 px-3 cursor-alias hover:underline font-medium", {
31
30
  variants: {
@@ -46,6 +45,8 @@ export var NavigationMenuLink = forwardRef(function (_a, ref) {
46
45
  var children = _a.children, className = _a.className, href = _a.href, props = __rest(_a, ["children", "className", "href"]);
47
46
  var _b = useNavigationMenuContext(), scaling = _b.scaling, size = _b.size, radius = _b.radius, _c = _b.color, color = _c === void 0 ? 'red' : _c, _d = _b.appearance, appearance = _d === void 0 ? 'ghost' : _d;
48
47
  var linkClassName = cn(navigationMenuLinkVariants({ scaling: scaling, size: size, radius: radius }), appearanceStyle(appearance, color), className);
49
- return (_jsx(NavigationMenuPrimitive.Link, __assign({ ref: ref, href: href, title: href, className: linkClassName }, props, { children: children })));
48
+ return (<NavigationMenuPrimitive.Link ref={ref} href={href} title={href} className={linkClassName} {...props}>
49
+ {children}
50
+ </NavigationMenuPrimitive.Link>);
50
51
  });
51
52
  NavigationMenuLink.displayName = 'NavigationMenu.Link';
@@ -20,12 +20,11 @@ var __rest = (this && this.__rest) || function (s, e) {
20
20
  }
21
21
  return t;
22
22
  };
23
- import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
24
- import { forwardRef } from 'react';
23
+ import React, { forwardRef } from 'react';
25
24
  import * as NavigationMenuPrimitive from '@radix-ui/react-navigation-menu';
26
- import { cn } from '../../../lib/utils/utils';
25
+ import { cn } from '../../../../../lib/utils/utils';
27
26
  import { cva } from 'class-variance-authority';
28
- import { appearanceStyle, radiusVariants, scalingVariants } from '../../../lib/constants';
27
+ import { appearanceStyle, radiusVariants, scalingVariants } from '../../../../../lib/constants';
29
28
  import { NavigationMenuIndicator } from './NavigationMenuIndicator';
30
29
  import { useNavigationMenuContext } from './NavigationMenuRoot';
31
30
  export var navigationMenuListVariants = cva('flex p-1 space-x-1 shadow-slate-4 shadow dark:shadow-slateDark-4 bg-white dark:bg-slateDark-1', {
@@ -42,6 +41,9 @@ export var NavigationMenuList = forwardRef(function (_a, ref) {
42
41
  var children = _a.children, className = _a.className, _b = _a.isShowIndicator, isShowIndicator = _b === void 0 ? true : _b, props = __rest(_a, ["children", "className", "isShowIndicator"]);
43
42
  var _c = useNavigationMenuContext(), scaling = _c.scaling, radius = _c.radius, _d = _c.appearance, appearance = _d === void 0 ? 'ghost' : _d, _e = _c.color, color = _e === void 0 ? 'red' : _e;
44
43
  var navigationMenuListClassName = cn(navigationMenuListVariants({ scaling: scaling, radius: radius }), appearanceStyle(appearance, color, false), 'border-none', appearance === 'ghost' && 'bg-white', className);
45
- return (_jsxs(NavigationMenuPrimitive.List, __assign({ ref: ref, className: navigationMenuListClassName }, props, { children: [children, isShowIndicator && _jsx(NavigationMenuIndicator, {})] })));
44
+ return (<NavigationMenuPrimitive.List ref={ref} className={navigationMenuListClassName} {...props}>
45
+ {children}
46
+ {isShowIndicator && <NavigationMenuIndicator />}
47
+ </NavigationMenuPrimitive.List>);
46
48
  });
47
49
  NavigationMenuList.displayName = 'NavigationMenu.List';
@@ -1,14 +1,3 @@
1
- var __assign = (this && this.__assign) || function () {
2
- __assign = Object.assign || function(t) {
3
- for (var s, i = 1, n = arguments.length; i < n; i++) {
4
- s = arguments[i];
5
- for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
6
- t[p] = s[p];
7
- }
8
- return t;
9
- };
10
- return __assign.apply(this, arguments);
11
- };
12
1
  var __rest = (this && this.__rest) || function (s, e) {
13
2
  var t = {};
14
3
  for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
@@ -20,10 +9,9 @@ var __rest = (this && this.__rest) || function (s, e) {
20
9
  }
21
10
  return t;
22
11
  };
23
- import { jsx as _jsx } from "react/jsx-runtime";
24
- import { forwardRef, createContext, useContext, useMemo, } from 'react';
12
+ import React, { forwardRef, createContext, useContext, useMemo, } from 'react';
25
13
  import * as NavigationMenuPrimitive from '@radix-ui/react-navigation-menu';
26
- import { cn } from '../../../lib/utils/utils';
14
+ import { cn } from '../../../../../lib/utils/utils';
27
15
  var NavigationMenuContext = createContext({
28
16
  radius: 'medium',
29
17
  scaling: '100%',
@@ -37,7 +25,11 @@ export var useNavigationMenuContext = function () {
37
25
  export var NavigationMenuRoot = forwardRef(function (_a, ref) {
38
26
  var className = _a.className, children = _a.children, radius = _a.radius, size = _a.size, scaling = _a.scaling, color = _a.color, appearance = _a.appearance, props = __rest(_a, ["className", "children", "radius", "size", "scaling", "color", "appearance"]);
39
27
  var contextValue = useMemo(function () { return ({ radius: radius, size: size, scaling: scaling, color: color, appearance: appearance }); }, [radius, size, scaling, color, appearance]);
40
- return (_jsx(NavigationMenuContext.Provider, { value: contextValue, children: _jsx(NavigationMenuPrimitive.Root, __assign({ ref: ref, className: cn('relative flex', className) }, props, { children: children })) }));
28
+ return (<NavigationMenuContext.Provider value={contextValue}>
29
+ <NavigationMenuPrimitive.Root ref={ref} className={cn('relative flex', className)} {...props}>
30
+ {children}
31
+ </NavigationMenuPrimitive.Root>
32
+ </NavigationMenuContext.Provider>);
41
33
  });
42
34
  NavigationMenuRoot.displayName = 'NavigationMenu.Root';
43
35
  export default NavigationMenuRoot;
@@ -20,12 +20,11 @@ var __rest = (this && this.__rest) || function (s, e) {
20
20
  }
21
21
  return t;
22
22
  };
23
- import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
24
- import { forwardRef } from 'react';
23
+ import React, { forwardRef } from 'react';
25
24
  import * as NavigationMenuPrimitive from '@radix-ui/react-navigation-menu';
26
- import { cn } from '../../../lib/utils/utils';
25
+ import { cn } from '../../../../../lib/utils/utils';
27
26
  import { cva } from 'class-variance-authority';
28
- import { appearanceStyle, scalingVariants } from '../../../lib/constants';
27
+ import { appearanceStyle, scalingVariants } from '../../../../../lib/constants';
29
28
  import { CaretDownIcon } from '@radix-ui/react-icons';
30
29
  import { useNavigationMenuContext } from './NavigationMenuRoot';
31
30
  export var navigationMenuTriggerVariants = cva("flex items-center justify-between outline-none select-none leading-none py-1 px-3 font-medium", {
@@ -53,6 +52,9 @@ export var NavigationMenuTrigger = forwardRef(function (_a, ref) {
53
52
  var children = _a.children, className = _a.className, _b = _a.isShowIcon, isShowIcon = _b === void 0 ? true : _b, props = __rest(_a, ["children", "className", "isShowIcon"]);
54
53
  var _c = useNavigationMenuContext(), scaling = _c.scaling, size = _c.size, radius = _c.radius, _d = _c.color, color = _d === void 0 ? 'red' : _d, _e = _c.appearance, appearance = _e === void 0 ? 'ghost' : _e;
55
54
  var triggerClassName = cn(navigationMenuTriggerVariants({ scaling: scaling, size: size, radius: radius }), appearanceStyle(appearance, color), className);
56
- return (_jsxs(NavigationMenuPrimitive.Trigger, __assign({ ref: ref, className: triggerClassName }, props, { children: [children, isShowIcon && (_jsx(CaretDownIcon, { className: cn("relative top-[1px] transition-transform duration-[250] ease-in group-data-[state=open]:-rotate-180"), "aria-hidden": true }))] })));
55
+ return (<NavigationMenuPrimitive.Trigger ref={ref} className={triggerClassName} {...props}>
56
+ {children}
57
+ {isShowIcon && (<CaretDownIcon className={cn("relative top-[1px] transition-transform duration-[250] ease-in group-data-[state=open]:-rotate-180")} aria-hidden/>)}
58
+ </NavigationMenuPrimitive.Trigger>);
57
59
  });
58
60
  NavigationMenuTrigger.displayName = 'NavigationMenu.Trigger';
@@ -20,12 +20,11 @@ var __rest = (this && this.__rest) || function (s, e) {
20
20
  }
21
21
  return t;
22
22
  };
23
- import { jsx as _jsx } from "react/jsx-runtime";
24
- import { forwardRef } from 'react';
23
+ import React, { forwardRef } from 'react';
25
24
  import * as NavigationMenuPrimitive from '@radix-ui/react-navigation-menu';
26
- import { cn } from '../../../lib/utils/utils';
25
+ import { cn } from '../../../../../lib/utils/utils';
27
26
  import { cva } from 'class-variance-authority';
28
- import { radiusVariants, scalingVariants, weightVariants } from '../../../lib/constants';
27
+ import { radiusVariants, scalingVariants, weightVariants } from '../../../../../lib/constants';
29
28
  import { useNavigationMenuContext } from './NavigationMenuRoot';
30
29
  export var navigationViewportVariants = cva("data-[state=open]:animate-scaleIn data-[state=closed]:animate-scaleOut relative mt-[10px] \n h-[var(--radix-navigation-menu-viewport-height)] w-full origin-[top_center] overflow-hidden \n transition-[width,_height] duration-300 shadow-slate-4 shadow dark:shadow-slateDark-4\n sm:w-[var(--radix-navigation-menu-viewport-width)]", {
31
30
  variants: {
@@ -48,6 +47,8 @@ export var NavigationMenuViewport = forwardRef(function (_a, ref) {
48
47
  var className = _a.className, props = __rest(_a, ["className"]);
49
48
  var _b = useNavigationMenuContext(), size = _b.size, scaling = _b.scaling, radius = _b.radius;
50
49
  var viewportClassName = cn(navigationViewportVariants({ size: size, scaling: scaling, radius: radius }), className);
51
- return (_jsx("div", { className: "perspective-[2000px] absolute left-0 top-full flex w-full", children: _jsx(NavigationMenuPrimitive.Viewport, __assign({ ref: ref, className: viewportClassName }, props)) }));
50
+ return (<div className="perspective-[2000px] absolute left-0 top-full flex w-full">
51
+ <NavigationMenuPrimitive.Viewport ref={ref} className={viewportClassName} {...props}/>
52
+ </div>);
52
53
  });
53
54
  NavigationMenuViewport.displayName = 'NavigationMenu.Viewport';
@@ -20,14 +20,14 @@ var __rest = (this && this.__rest) || function (s, e) {
20
20
  }
21
21
  return t;
22
22
  };
23
- import { jsx as _jsx } from "react/jsx-runtime";
23
+ import React from 'react';
24
24
  import { Pie } from 'react-chartjs-2';
25
25
  import { Chart as ChartJS, ArcElement, Tooltip, Legend, plugins } from 'chart.js';
26
26
  import ChartDataLabels from 'chartjs-plugin-datalabels';
27
- import { cn } from '../../../lib/utils/utils';
27
+ import { cn } from '../../../../../lib/utils/utils';
28
28
  import { cva } from 'class-variance-authority';
29
- import { scalingVariants } from '../../../lib/constants';
30
- import { chartColorList, chartAlphaColorList } from '../../../lib/color/constants';
29
+ import { scalingVariants } from '../../../../../lib/constants';
30
+ import { chartColorList, chartAlphaColorList } from '../../../../../lib/color/constants';
31
31
  ChartJS.register(ArcElement, Tooltip, Legend, plugins, ChartDataLabels);
32
32
  ChartJS.defaults.set('plugins.datalabels', {
33
33
  display: false,
@@ -53,13 +53,13 @@ var PieChart = function (_a) {
53
53
  datasets.forEach(function (dataset, index) {
54
54
  datasets[index] = __assign(__assign({}, dataset), { backgroundColor: getChartColor(isColorMixed, appearance), borderColor: getChartColor(isColorMixed, 'solid') });
55
55
  });
56
- return (_jsx(Pie, __assign({ data: { labels: labels, datasets: datasets }, options: {
56
+ return (<Pie data={{ labels: labels, datasets: datasets }} options={{
57
57
  plugins: {
58
58
  title: title,
59
59
  legend: legend,
60
60
  datalabels: datalabels,
61
61
  },
62
- }, className: cn(PieVariants({ scaling: scaling }), className) }, rest)));
62
+ }} className={cn(PieVariants({ scaling: scaling }), className)} {...rest}/>);
63
63
  };
64
64
  PieChart.displayName = 'PieChart';
65
65
  export default PieChart;
@@ -1,14 +1,3 @@
1
- var __assign = (this && this.__assign) || function () {
2
- __assign = Object.assign || function(t) {
3
- for (var s, i = 1, n = arguments.length; i < n; i++) {
4
- s = arguments[i];
5
- for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
6
- t[p] = s[p];
7
- }
8
- return t;
9
- };
10
- return __assign.apply(this, arguments);
11
- };
12
1
  var __rest = (this && this.__rest) || function (s, e) {
13
2
  var t = {};
14
3
  for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
@@ -20,12 +9,11 @@ var __rest = (this && this.__rest) || function (s, e) {
20
9
  }
21
10
  return t;
22
11
  };
23
- import { jsx as _jsx } from "react/jsx-runtime";
24
- import { forwardRef, useContext } from 'react';
12
+ import React, { forwardRef, useContext } from 'react';
25
13
  import { cva } from 'class-variance-authority';
26
14
  import { Popover as PopoverTheme } from '@radix-ui/themes';
27
15
  import { PopoverContext } from './PopoverRoot';
28
- import { cn } from '../../../lib/utils/utils';
16
+ import { cn } from '../../../../../lib/utils/utils';
29
17
  export var popoverCloseVariants = cva('', {
30
18
  variants: {
31
19
  radius: {
@@ -43,6 +31,8 @@ export var popoverCloseVariants = cva('', {
43
31
  export var PopoverClose = forwardRef(function (_a, ref) {
44
32
  var className = _a.className, children = _a.children, props = __rest(_a, ["className", "children"]);
45
33
  var radius = useContext(PopoverContext).radius;
46
- return (_jsx(PopoverTheme.Close, __assign({ ref: ref, className: cn(popoverCloseVariants({ radius: radius }), className) }, props, { children: children })));
34
+ return (<PopoverTheme.Close ref={ref} className={cn(popoverCloseVariants({ radius: radius }), className)} {...props}>
35
+ {children}
36
+ </PopoverTheme.Close>);
47
37
  });
48
38
  PopoverClose.displayName = 'Popover.Close';
@@ -20,13 +20,12 @@ var __rest = (this && this.__rest) || function (s, e) {
20
20
  }
21
21
  return t;
22
22
  };
23
- import { jsx as _jsx } from "react/jsx-runtime";
24
- import { forwardRef, useContext } from 'react';
25
- import { scalingVariants } from '../../../lib/constants';
23
+ import React, { forwardRef, useContext } from 'react';
24
+ import { scalingVariants } from '../../../../../lib/constants';
26
25
  import { Popover as PopoverTheme } from '@radix-ui/themes';
27
26
  import { cva } from 'class-variance-authority';
28
27
  import { PopoverContext } from './PopoverRoot';
29
- import { cn } from '../../../lib/utils/utils';
28
+ import { cn } from '../../../../../lib/utils/utils';
30
29
  export var popoverContentVariants = cva('flex gap-2 bg-white dark:bg-slateDark-1 border-slateA-6 dark:border-slateDarkA-6', {
31
30
  variants: {
32
31
  radius: {
@@ -60,6 +59,8 @@ export var PopoverContent = forwardRef(function (_a, ref) {
60
59
  sizeTheme = '3';
61
60
  if (size === 'x-large')
62
61
  sizeTheme = '4';
63
- return (_jsx(PopoverTheme.Content, __assign({ ref: ref, size: sizeTheme, className: cn(popoverContentVariants({ size: size, radius: radius, scaling: scaling }), className) }, props, { children: children })));
62
+ return (<PopoverTheme.Content ref={ref} size={sizeTheme} className={cn(popoverContentVariants({ size: size, radius: radius, scaling: scaling }), className)} {...props}>
63
+ {children}
64
+ </PopoverTheme.Content>);
64
65
  });
65
66
  PopoverContent.displayName = 'Popover.Content';
@@ -1,14 +1,3 @@
1
- var __assign = (this && this.__assign) || function () {
2
- __assign = Object.assign || function(t) {
3
- for (var s, i = 1, n = arguments.length; i < n; i++) {
4
- s = arguments[i];
5
- for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
6
- t[p] = s[p];
7
- }
8
- return t;
9
- };
10
- return __assign.apply(this, arguments);
11
- };
12
1
  var __rest = (this && this.__rest) || function (s, e) {
13
2
  var t = {};
14
3
  for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
@@ -20,8 +9,7 @@ var __rest = (this && this.__rest) || function (s, e) {
20
9
  }
21
10
  return t;
22
11
  };
23
- import { jsx as _jsx } from "react/jsx-runtime";
24
- import { createContext } from 'react';
12
+ import React, { createContext } from 'react';
25
13
  import { Theme, Popover as PopoverTheme } from '@radix-ui/themes';
26
14
  export var PopoverContext = createContext({
27
15
  radius: 'medium',
@@ -31,6 +19,10 @@ export var PopoverContext = createContext({
31
19
  export var PopoverRoot = function (_a) {
32
20
  var children = _a.children, radius = _a.radius, size = _a.size, scaling = _a.scaling, props = __rest(_a, ["children", "radius", "size", "scaling"]);
33
21
  var contextValue = { radius: radius, size: size, scaling: scaling };
34
- return (_jsx(Theme, { children: _jsx(PopoverContext.Provider, { value: contextValue, children: _jsx(PopoverTheme.Root, __assign({}, props, { children: children })) }) }));
22
+ return (<Theme>
23
+ <PopoverContext.Provider value={contextValue}>
24
+ <PopoverTheme.Root {...props}>{children}</PopoverTheme.Root>
25
+ </PopoverContext.Provider>
26
+ </Theme>);
35
27
  };
36
28
  PopoverRoot.displayName = 'Popover.Root';
@@ -1,14 +1,3 @@
1
- var __assign = (this && this.__assign) || function () {
2
- __assign = Object.assign || function(t) {
3
- for (var s, i = 1, n = arguments.length; i < n; i++) {
4
- s = arguments[i];
5
- for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
6
- t[p] = s[p];
7
- }
8
- return t;
9
- };
10
- return __assign.apply(this, arguments);
11
- };
12
1
  var __rest = (this && this.__rest) || function (s, e) {
13
2
  var t = {};
14
3
  for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
@@ -20,11 +9,12 @@ var __rest = (this && this.__rest) || function (s, e) {
20
9
  }
21
10
  return t;
22
11
  };
23
- import { jsx as _jsx } from "react/jsx-runtime";
24
- import { forwardRef } from 'react';
12
+ import React, { forwardRef } from 'react';
25
13
  import { Popover as PopoverTheme } from '@radix-ui/themes';
26
14
  export var PopoverTrigger = forwardRef(function (_a, ref) {
27
15
  var className = _a.className, children = _a.children, props = __rest(_a, ["className", "children"]);
28
- return (_jsx(PopoverTheme.Trigger, __assign({ ref: ref }, props, { className: className, children: children })));
16
+ return (<PopoverTheme.Trigger ref={ref} {...props} className={className}>
17
+ {children}
18
+ </PopoverTheme.Trigger>);
29
19
  });
30
20
  PopoverTrigger.displayName = 'Popover.Trigger';
@@ -20,12 +20,11 @@ var __rest = (this && this.__rest) || function (s, e) {
20
20
  }
21
21
  return t;
22
22
  };
23
- import { jsx as _jsx } from "react/jsx-runtime";
24
- import { forwardRef } from 'react';
23
+ import React, { forwardRef } from 'react';
25
24
  import { cva } from 'class-variance-authority';
26
- import { scalingVariants } from '../../../lib/constants';
25
+ import { scalingVariants } from '../../../../../lib/constants';
27
26
  import { Theme, Progress as ProgressTheme } from '@radix-ui/themes';
28
- import { cn } from '../../../lib/utils/utils';
27
+ import { cn } from '../../../../../lib/utils/utils';
29
28
  var progressVariants = cva('w-[300px]', {
30
29
  variants: {
31
30
  radius: {
@@ -50,7 +49,9 @@ var progressVariants = cva('w-[300px]', {
50
49
  });
51
50
  export var Progress = forwardRef(function (_a, ref) {
52
51
  var className = _a.className, radius = _a.radius, size = _a.size, value = _a.value, _b = _a.appearance, appearance = _b === void 0 ? 'surface' : _b, _c = _a.color, color = _c === void 0 ? 'red' : _c, scaling = _a.scaling, props = __rest(_a, ["className", "radius", "size", "value", "appearance", "color", "scaling"]);
53
- return (_jsx(Theme, { accentColor: color, children: _jsx(ProgressTheme, __assign({ ref: ref, value: value, variant: appearance, className: cn(progressVariants({ radius: radius, size: size, scaling: scaling }), className) }, props)) }));
52
+ return (<Theme accentColor={color}>
53
+ <ProgressTheme ref={ref} value={value} variant={appearance} className={cn(progressVariants({ radius: radius, size: size, scaling: scaling }), className)} {...props}/>
54
+ </Theme>);
54
55
  });
55
56
  Progress.displayName = 'Progress';
56
57
  export default Progress;
@@ -20,14 +20,14 @@ var __rest = (this && this.__rest) || function (s, e) {
20
20
  }
21
21
  return t;
22
22
  };
23
- import { jsx as _jsx } from "react/jsx-runtime";
23
+ import React from 'react';
24
24
  import { cva } from 'class-variance-authority';
25
- import { scalingVariants } from '../../../lib/constants';
25
+ import { scalingVariants } from '../../../../../lib/constants';
26
26
  import { Radar } from 'react-chartjs-2';
27
- import { cn } from '../../../lib/utils/utils';
27
+ import { cn } from '../../../../../lib/utils/utils';
28
28
  import { Chart as ChartJS, RadialLinearScale, PointElement, LineElement, Filler, Tooltip, Legend, plugins, } from 'chart.js/auto';
29
- import { chartColorList, chartAlphaColorList } from '../../../lib/color/constants';
30
- import { useDarkMode } from '../../../lib/utils/useDarkMode';
29
+ import { chartColorList, chartAlphaColorList } from '../../../../../lib/color/constants';
30
+ import { useDarkMode } from '../../../../../lib/utils/useDarkMode';
31
31
  import ChartDataLabels from 'chartjs-plugin-datalabels';
32
32
  ChartJS.register(RadialLinearScale, PointElement, LineElement, Filler, Tooltip, Legend, plugins, ChartDataLabels);
33
33
  ChartJS.defaults.set('plugins.datalabels', {
@@ -60,7 +60,7 @@ export var RadarChart = function (_a) {
60
60
  dataset.backgroundColor = ChartColor[index];
61
61
  dataset.borderColor = BorderColor[index];
62
62
  });
63
- return (_jsx(Radar, __assign({ data: { labels: labels, datasets: datasets }, options: {
63
+ return (<Radar data={{ labels: labels, datasets: datasets }} options={{
64
64
  plugins: {
65
65
  title: title,
66
66
  legend: legend,
@@ -70,7 +70,7 @@ export var RadarChart = function (_a) {
70
70
  suggestedMin: 50,
71
71
  suggestedMax: 100,
72
72
  } }, defaultScales.linescale),
73
- }, className: cn(radarChartVariants({ scaling: scaling }), className), width: width, height: height }, props)));
73
+ }} className={cn(radarChartVariants({ scaling: scaling }), className)} width={width} height={height} {...props}/>);
74
74
  };
75
75
  RadarChart.displayName = 'RadarChart';
76
76
  export default RadarChart;
@@ -1,14 +1,3 @@
1
- var __assign = (this && this.__assign) || function () {
2
- __assign = Object.assign || function(t) {
3
- for (var s, i = 1, n = arguments.length; i < n; i++) {
4
- s = arguments[i];
5
- for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
6
- t[p] = s[p];
7
- }
8
- return t;
9
- };
10
- return __assign.apply(this, arguments);
11
- };
12
1
  var __rest = (this && this.__rest) || function (s, e) {
13
2
  var t = {};
14
3
  for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
@@ -20,12 +9,11 @@ var __rest = (this && this.__rest) || function (s, e) {
20
9
  }
21
10
  return t;
22
11
  };
23
- import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
24
12
  import React from 'react';
25
13
  import { cva } from 'class-variance-authority';
26
14
  import { Theme, Radio as RadioTheme, Flex } from '@radix-ui/themes';
27
- import { Text } from '../../../lib/Typography/Text';
28
- import { cn } from '../../../lib/utils/utils';
15
+ import { Text } from '../../../../../lib/Typography/Text';
16
+ import { cn } from '../../../../../lib/utils/utils';
29
17
  var radioVariants = cva('font-normal', {
30
18
  variants: {
31
19
  size: {
@@ -47,7 +35,14 @@ export var Radio = React.forwardRef(function (_a, ref) {
47
35
  sizeTheme = '1';
48
36
  if (size === 'large')
49
37
  sizeTheme = '3';
50
- return (_jsx(Theme, { accentColor: color, scaling: scaling, children: _jsx(Flex, { asChild: true, className: cn(radioVariants({ size: size }), className), children: _jsxs(Text, { as: "label", size: sizeTheme, children: [_jsx(RadioTheme, __assign({ ref: ref, value: value, variant: appearance, size: sizeTheme }, props)), children] }) }) }));
38
+ return (<Theme accentColor={color} scaling={scaling}>
39
+ <Flex asChild className={cn(radioVariants({ size: size }), className)}>
40
+ <Text as="label" size={sizeTheme}>
41
+ <RadioTheme ref={ref} value={value} variant={appearance} size={sizeTheme} {...props}/>
42
+ {children}
43
+ </Text>
44
+ </Flex>
45
+ </Theme>);
51
46
  });
52
47
  Radio.displayName = 'Radio';
53
48
  export default Radio;
@@ -1,14 +1,3 @@
1
- var __assign = (this && this.__assign) || function () {
2
- __assign = Object.assign || function(t) {
3
- for (var s, i = 1, n = arguments.length; i < n; i++) {
4
- s = arguments[i];
5
- for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
6
- t[p] = s[p];
7
- }
8
- return t;
9
- };
10
- return __assign.apply(this, arguments);
11
- };
12
1
  var __rest = (this && this.__rest) || function (s, e) {
13
2
  var t = {};
14
3
  for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
@@ -20,11 +9,10 @@ var __rest = (this && this.__rest) || function (s, e) {
20
9
  }
21
10
  return t;
22
11
  };
23
- import { jsx as _jsx } from "react/jsx-runtime";
24
- import { forwardRef, useContext } from 'react';
12
+ import React, { forwardRef, useContext } from 'react';
25
13
  import { cva } from 'class-variance-authority';
26
14
  import { RadioCards as RadioCardsTheme } from '@radix-ui/themes';
27
- import { cn } from '../../../lib/utils/utils';
15
+ import { cn } from '../../../../../lib/utils/utils';
28
16
  import { RadioCardsContext } from './RadioCardsRoot';
29
17
  export var radioCardsItemVariants = cva('min-w-[200px] bg-white dark:bg-slateDark-1 text-slateA-12 dark:text-slateDarkA-12 border-slateA-6 dark:border-slateDarkA-6 font-normal disabled:text-slateA-9 dark:disabled:text-slateDarkA-9', {
30
18
  variants: {
@@ -49,6 +37,8 @@ export var radioCardsItemVariants = cva('min-w-[200px] bg-white dark:bg-slateDar
49
37
  export var RadioCardsItem = forwardRef(function (_a, ref) {
50
38
  var children = _a.children, className = _a.className, value = _a.value, props = __rest(_a, ["children", "className", "value"]);
51
39
  var _b = useContext(RadioCardsContext), radius = _b.radius, size = _b.size;
52
- return (_jsx(RadioCardsTheme.Item, __assign({ ref: ref, value: value, className: cn(radioCardsItemVariants({ radius: radius, size: size }), className) }, props, { children: children })));
40
+ return (<RadioCardsTheme.Item ref={ref} value={value} className={cn(radioCardsItemVariants({ radius: radius, size: size }), className)} {...props}>
41
+ {children}
42
+ </RadioCardsTheme.Item>);
53
43
  });
54
44
  RadioCardsItem.displayName = 'RadioCards.Item';
@@ -20,12 +20,11 @@ var __rest = (this && this.__rest) || function (s, e) {
20
20
  }
21
21
  return t;
22
22
  };
23
- import { jsx as _jsx } from "react/jsx-runtime";
24
- import { createContext, forwardRef } from 'react';
23
+ import React, { createContext, forwardRef } from 'react';
25
24
  import { cva } from 'class-variance-authority';
26
- import { scalingVariants } from '../../../lib/constants';
25
+ import { scalingVariants } from '../../../../../lib/constants';
27
26
  import { Theme, RadioCards as RadioCardsTheme } from '@radix-ui/themes';
28
- import { cn } from '../../../lib/utils/utils';
27
+ import { cn } from '../../../../../lib/utils/utils';
29
28
  var radioCardsVariants = cva('flex items-center gap-2', {
30
29
  variants: {
31
30
  scaling: __assign({}, scalingVariants),
@@ -41,6 +40,12 @@ export var RadioCardsContext = createContext({
41
40
  export var RadioCardsRoot = forwardRef(function (_a, ref) {
42
41
  var children = _a.children, className = _a.className, radius = _a.radius, scaling = _a.scaling, size = _a.size, _b = _a.color, color = _b === void 0 ? 'red' : _b, _c = _a.appearance, appearance = _c === void 0 ? 'surface' : _c, props = __rest(_a, ["children", "className", "radius", "scaling", "size", "color", "appearance"]);
43
42
  var contextValue = { radius: radius, size: size };
44
- return (_jsx(Theme, { accentColor: color, children: _jsx(RadioCardsContext.Provider, { value: contextValue, children: _jsx(RadioCardsTheme.Root, __assign({ ref: ref, variant: appearance, className: cn(radioCardsVariants({ scaling: scaling }), className) }, props, { children: children })) }) }));
43
+ return (<Theme accentColor={color}>
44
+ <RadioCardsContext.Provider value={contextValue}>
45
+ <RadioCardsTheme.Root ref={ref} variant={appearance} className={cn(radioCardsVariants({ scaling: scaling }), className)} {...props}>
46
+ {children}
47
+ </RadioCardsTheme.Root>
48
+ </RadioCardsContext.Provider>
49
+ </Theme>);
45
50
  });
46
51
  RadioCardsRoot.displayName = 'RadioCards.Root';
@@ -1,14 +1,3 @@
1
- var __assign = (this && this.__assign) || function () {
2
- __assign = Object.assign || function(t) {
3
- for (var s, i = 1, n = arguments.length; i < n; i++) {
4
- s = arguments[i];
5
- for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
6
- t[p] = s[p];
7
- }
8
- return t;
9
- };
10
- return __assign.apply(this, arguments);
11
- };
12
1
  var __rest = (this && this.__rest) || function (s, e) {
13
2
  var t = {};
14
3
  for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
@@ -20,12 +9,11 @@ var __rest = (this && this.__rest) || function (s, e) {
20
9
  }
21
10
  return t;
22
11
  };
23
- import { jsx as _jsx } from "react/jsx-runtime";
24
- import { forwardRef, useContext } from 'react';
12
+ import React, { forwardRef, useContext } from 'react';
25
13
  import { cva } from 'class-variance-authority';
26
14
  import { RadioGroup as RadioGroupTheme } from '@radix-ui/themes';
27
15
  import { RadioGroupContext } from './RadioGroupRoot';
28
- import { cn } from '../../../lib/utils/utils';
16
+ import { cn } from '../../../../../lib/utils/utils';
29
17
  var radioGroupItemVariants = cva('font-normal text-slate-12 dark:text-slateDark-12', {
30
18
  variants: {
31
19
  size: {
@@ -41,6 +29,8 @@ var radioGroupItemVariants = cva('font-normal text-slate-12 dark:text-slateDark-
41
29
  export var RadioGroupItem = forwardRef(function (_a, ref) {
42
30
  var className = _a.className, children = _a.children, value = _a.value, props = __rest(_a, ["className", "children", "value"]);
43
31
  var size = useContext(RadioGroupContext).size;
44
- return (_jsx(RadioGroupTheme.Item, __assign({ ref: ref, value: value, className: cn(radioGroupItemVariants({ size: size }), className) }, props, { children: children })));
32
+ return (<RadioGroupTheme.Item ref={ref} value={value} className={cn(radioGroupItemVariants({ size: size }), className)} {...props}>
33
+ {children}
34
+ </RadioGroupTheme.Item>);
45
35
  });
46
36
  RadioGroupItem.displayName = 'RadioGroup.Item';