@gv-tech/design-system 2.3.0 → 2.5.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (1733) hide show
  1. package/.agent/skills/dogfood-components/SKILL.md +6 -6
  2. package/.agent/skills/maintain-component/SKILL.md +59 -24
  3. package/.agent/workflows/native-playground.md +93 -0
  4. package/.github/workflows/ci.yml +19 -1
  5. package/.github/workflows/release-please.yml +32 -6
  6. package/.release-please-manifest.json +7 -1
  7. package/.tool-versions +1 -1
  8. package/CHANGELOG.md +15 -0
  9. package/apps/.gitkeep +0 -0
  10. package/apps/native-playground/CHANGELOG.md +8 -0
  11. package/apps/native-playground/app.json +37 -0
  12. package/apps/native-playground/assets/fonts/.gitkeep +0 -0
  13. package/apps/native-playground/assets/images/adaptive-icon.png +0 -0
  14. package/apps/native-playground/assets/images/favicon.png +0 -0
  15. package/apps/native-playground/assets/images/icon.png +0 -0
  16. package/apps/native-playground/assets/images/splash-icon.png +0 -0
  17. package/apps/native-playground/babel.config.js +6 -0
  18. package/apps/native-playground/eas.json +25 -0
  19. package/apps/native-playground/index.js +8 -0
  20. package/apps/native-playground/metro.config.js +26 -0
  21. package/apps/native-playground/nativewind-env.d.ts +1 -0
  22. package/apps/native-playground/package.json +23 -0
  23. package/apps/native-playground/project.json +15 -0
  24. package/apps/native-playground/src/app/App.tsx +842 -0
  25. package/apps/native-playground/src/global.css +49 -0
  26. package/apps/native-playground/tailwind.config.js +49 -0
  27. package/apps/native-playground/tsconfig.app.json +24 -0
  28. package/apps/native-playground/tsconfig.json +23 -0
  29. package/apps/native-playground/tsconfig.spec.json +24 -0
  30. package/apps/playground-web/CHANGELOG.md +8 -0
  31. package/apps/playground-web/package.json +31 -0
  32. package/apps/playground-web/src/App.tsx +179 -0
  33. package/apps/playground-web/src/components/docs/CodeBlock.tsx +34 -0
  34. package/apps/playground-web/src/components/docs/CombinedDocsLayout.tsx +103 -0
  35. package/apps/playground-web/src/components/docs/ComponentShowcase.tsx +96 -0
  36. package/apps/playground-web/src/components/docs/ErrorBoundary.tsx +55 -0
  37. package/apps/playground-web/src/components/docs/Footer.tsx +146 -0
  38. package/apps/playground-web/src/components/docs/PropsTable.tsx +43 -0
  39. package/apps/playground-web/src/components/docs/Search.tsx +75 -0
  40. package/apps/playground-web/src/components/docs/Sidebar.tsx +77 -0
  41. package/apps/playground-web/src/components/docs/ThemeToggle.tsx +19 -0
  42. package/apps/playground-web/src/components/docs/index.ts +9 -0
  43. package/apps/playground-web/src/config/docs.ts +293 -0
  44. package/apps/playground-web/src/globals.css +148 -0
  45. package/apps/playground-web/src/hooks/useDocMetadata.ts +34 -0
  46. package/apps/playground-web/src/hooks/usePackageManager.tsx +42 -0
  47. package/apps/playground-web/src/lib/react-native-shim.js +34 -0
  48. package/apps/playground-web/src/main.tsx +11 -0
  49. package/apps/playground-web/src/pages/index.ts +4 -0
  50. package/apps/playground-web/src/pages/native/AccordionDocs.tsx +85 -0
  51. package/apps/playground-web/src/pages/native/AlertDialogDocs.tsx +128 -0
  52. package/apps/playground-web/src/pages/native/AlertDocs.tsx +89 -0
  53. package/apps/playground-web/src/pages/native/AspectRatioDocs.tsx +52 -0
  54. package/apps/playground-web/src/pages/native/AvatarDocs.tsx +92 -0
  55. package/apps/playground-web/src/pages/native/BadgeDocs.tsx +63 -0
  56. package/apps/playground-web/src/pages/native/BreadcrumbDocs.tsx +71 -0
  57. package/apps/playground-web/src/pages/native/ButtonDocs.tsx +103 -0
  58. package/apps/playground-web/src/pages/native/CalendarDocs.tsx +74 -0
  59. package/apps/playground-web/src/pages/native/CardDocs.tsx +75 -0
  60. package/apps/playground-web/src/pages/native/CarouselDocs.tsx +113 -0
  61. package/apps/playground-web/src/pages/native/ChartDocs.tsx +115 -0
  62. package/apps/playground-web/src/pages/native/CheckboxDocs.tsx +38 -0
  63. package/apps/playground-web/src/pages/native/CollapsibleDocs.tsx +89 -0
  64. package/apps/playground-web/src/pages/native/CommandDocs.tsx +170 -0
  65. package/apps/playground-web/src/pages/native/ContextMenuDocs.tsx +121 -0
  66. package/apps/playground-web/src/pages/native/DialogDocs.tsx +132 -0
  67. package/apps/playground-web/src/pages/native/DrawerDocs.tsx +158 -0
  68. package/apps/playground-web/src/pages/native/DropdownMenuDocs.tsx +168 -0
  69. package/apps/playground-web/src/pages/native/HoverCardDocs.tsx +119 -0
  70. package/apps/playground-web/src/pages/native/InputDocs.tsx +86 -0
  71. package/apps/playground-web/src/pages/native/LabelDocs.tsx +55 -0
  72. package/apps/playground-web/src/pages/native/MenubarDocs.tsx +197 -0
  73. package/apps/playground-web/src/pages/native/NavigationMenuDocs.tsx +190 -0
  74. package/apps/playground-web/src/pages/native/PaginationDocs.tsx +70 -0
  75. package/apps/playground-web/src/pages/native/PopoverDocs.tsx +156 -0
  76. package/apps/playground-web/src/pages/native/ProgressDocs.tsx +61 -0
  77. package/apps/playground-web/src/pages/native/RadioGroupDocs.tsx +125 -0
  78. package/apps/playground-web/src/pages/native/ResizableDocs.tsx +118 -0
  79. package/apps/playground-web/src/pages/native/ScrollAreaDocs.tsx +92 -0
  80. package/apps/playground-web/src/pages/native/SearchDocs.tsx +150 -0
  81. package/apps/playground-web/src/pages/native/SelectDocs.tsx +141 -0
  82. package/apps/playground-web/src/pages/native/SeparatorDocs.tsx +72 -0
  83. package/apps/playground-web/src/pages/native/SheetDocs.tsx +140 -0
  84. package/apps/playground-web/src/pages/native/SkeletonDocs.tsx +44 -0
  85. package/apps/playground-web/src/pages/native/SliderDocs.tsx +118 -0
  86. package/apps/playground-web/src/pages/native/SonnerDocs.tsx +111 -0
  87. package/apps/playground-web/src/pages/native/SwitchDocs.tsx +87 -0
  88. package/apps/playground-web/src/pages/native/TableDocs.tsx +67 -0
  89. package/apps/playground-web/src/pages/native/TabsDocs.tsx +175 -0
  90. package/apps/playground-web/src/pages/native/TextareaDocs.tsx +61 -0
  91. package/apps/playground-web/src/pages/native/ThemeToggleDocs.tsx +288 -0
  92. package/apps/playground-web/src/pages/native/ToastDocs.tsx +124 -0
  93. package/apps/playground-web/src/pages/native/ToggleDocs.tsx +81 -0
  94. package/apps/playground-web/src/pages/native/ToggleGroupDocs.tsx +128 -0
  95. package/apps/playground-web/src/pages/native/TooltipDocs.tsx +140 -0
  96. package/apps/playground-web/src/pages/native/index.ts +47 -0
  97. package/apps/playground-web/src/pages/shared/ColorTokensDocs.tsx +234 -0
  98. package/apps/playground-web/src/pages/shared/GettingStarted.tsx +413 -0
  99. package/apps/playground-web/src/pages/web/AccordionDocs.tsx +194 -0
  100. package/apps/playground-web/src/pages/web/AlertDialogDocs.tsx +157 -0
  101. package/apps/playground-web/src/pages/web/AlertDocs.tsx +110 -0
  102. package/apps/playground-web/src/pages/web/AspectRatioDocs.tsx +94 -0
  103. package/apps/playground-web/src/pages/web/AvatarDocs.tsx +81 -0
  104. package/apps/playground-web/src/pages/web/BadgeDocs.tsx +66 -0
  105. package/apps/playground-web/src/pages/web/BreadcrumbDocs.tsx +93 -0
  106. package/apps/playground-web/src/pages/web/ButtonDocs.tsx +129 -0
  107. package/apps/playground-web/src/pages/web/CalendarDocs.tsx +78 -0
  108. package/apps/playground-web/src/pages/web/CardDocs.tsx +115 -0
  109. package/apps/playground-web/src/pages/web/CarouselDocs.tsx +176 -0
  110. package/apps/playground-web/src/pages/web/ChartDocs.tsx +151 -0
  111. package/apps/playground-web/src/pages/web/CheckboxDocs.tsx +95 -0
  112. package/apps/playground-web/src/pages/web/CollapsibleDocs.tsx +111 -0
  113. package/apps/playground-web/src/pages/web/CommandDocs.tsx +219 -0
  114. package/apps/playground-web/src/pages/web/ContextMenuDocs.tsx +164 -0
  115. package/apps/playground-web/src/pages/web/DialogDocs.tsx +175 -0
  116. package/apps/playground-web/src/pages/web/DrawerDocs.tsx +283 -0
  117. package/apps/playground-web/src/pages/web/DropdownMenuDocs.tsx +319 -0
  118. package/apps/playground-web/src/pages/web/FormDocs.tsx +175 -0
  119. package/apps/playground-web/src/pages/web/HoverCardDocs.tsx +151 -0
  120. package/apps/playground-web/src/pages/web/InputDocs.tsx +118 -0
  121. package/apps/playground-web/src/pages/web/LabelDocs.tsx +59 -0
  122. package/apps/playground-web/src/pages/web/MenubarDocs.tsx +296 -0
  123. package/apps/playground-web/src/pages/web/NavigationMenuDocs.tsx +263 -0
  124. package/apps/playground-web/src/pages/web/PaginationDocs.tsx +102 -0
  125. package/apps/playground-web/src/pages/web/PopoverDocs.tsx +189 -0
  126. package/apps/playground-web/src/pages/web/ProgressDocs.tsx +70 -0
  127. package/apps/playground-web/src/pages/web/RadioGroupDocs.tsx +137 -0
  128. package/apps/playground-web/src/pages/web/ResizableDocs.tsx +143 -0
  129. package/apps/playground-web/src/pages/web/ScrollAreaDocs.tsx +107 -0
  130. package/apps/playground-web/src/pages/web/SearchDocs.tsx +203 -0
  131. package/apps/playground-web/src/pages/web/SelectDocs.tsx +164 -0
  132. package/apps/playground-web/src/pages/web/SeparatorDocs.tsx +88 -0
  133. package/apps/playground-web/src/pages/web/SheetDocs.tsx +186 -0
  134. package/apps/playground-web/src/pages/web/SkeletonDocs.tsx +53 -0
  135. package/apps/playground-web/src/pages/web/SliderDocs.tsx +119 -0
  136. package/apps/playground-web/src/pages/web/SonnerDocs.tsx +126 -0
  137. package/apps/playground-web/src/pages/web/SwitchDocs.tsx +91 -0
  138. package/apps/playground-web/src/pages/web/TableDocs.tsx +148 -0
  139. package/apps/playground-web/src/pages/web/TabsDocs.tsx +241 -0
  140. package/apps/playground-web/src/pages/web/TextareaDocs.tsx +65 -0
  141. package/apps/playground-web/src/pages/web/ThemeToggleDocs.tsx +303 -0
  142. package/apps/playground-web/src/pages/web/ToastDocs.tsx +149 -0
  143. package/apps/playground-web/src/pages/web/ToggleDocs.tsx +85 -0
  144. package/apps/playground-web/src/pages/web/ToggleGroupDocs.tsx +140 -0
  145. package/apps/playground-web/src/pages/web/TooltipDocs.tsx +150 -0
  146. package/apps/playground-web/src/pages/web/index.ts +47 -0
  147. package/apps/playground-web/src/routes/doc-routes.tsx +363 -0
  148. package/apps/playground-web/tailwind.config.js +47 -0
  149. package/apps/playground-web/tsconfig.app.json +16 -0
  150. package/apps/playground-web/tsconfig.json +4 -0
  151. package/apps/playground-web/tsconfig.node.json +13 -0
  152. package/apps/playground-web/vite.config.ts +41 -0
  153. package/dist/accordion.cjs.js +2 -0
  154. package/dist/accordion.cjs.js.map +1 -0
  155. package/dist/accordion.es.js +38 -0
  156. package/dist/accordion.es.js.map +1 -0
  157. package/dist/alert-dialog.cjs.js +2 -0
  158. package/dist/alert-dialog.cjs.js.map +1 -0
  159. package/dist/alert-dialog.es.js +70 -0
  160. package/dist/alert-dialog.es.js.map +1 -0
  161. package/dist/alert.cjs.js +2 -0
  162. package/dist/alert.cjs.js.map +1 -0
  163. package/dist/alert.es.js +32 -0
  164. package/dist/alert.es.js.map +1 -0
  165. package/dist/aspect-ratio.cjs.js +2 -0
  166. package/dist/aspect-ratio.cjs.js.map +1 -0
  167. package/dist/aspect-ratio.es.js +6 -0
  168. package/dist/aspect-ratio.es.js.map +1 -0
  169. package/dist/avatar.cjs.js +2 -0
  170. package/dist/avatar.cjs.js.map +1 -0
  171. package/dist/avatar.es.js +29 -0
  172. package/dist/avatar.es.js.map +1 -0
  173. package/dist/badge.cjs.js +2 -0
  174. package/dist/badge.cjs.js.map +1 -0
  175. package/dist/badge.es.js +26 -0
  176. package/dist/badge.es.js.map +1 -0
  177. package/dist/breadcrumb.cjs.js +2 -0
  178. package/dist/breadcrumb.cjs.js.map +1 -0
  179. package/dist/breadcrumb.es.js +68 -0
  180. package/dist/breadcrumb.es.js.map +1 -0
  181. package/dist/button.cjs.js +2 -0
  182. package/dist/button.cjs.js.map +1 -0
  183. package/dist/button.es.js +39 -0
  184. package/dist/button.es.js.map +1 -0
  185. package/dist/calendar.cjs.js +2 -0
  186. package/dist/calendar.cjs.js.map +1 -0
  187. package/dist/calendar.es.js +132 -0
  188. package/dist/calendar.es.js.map +1 -0
  189. package/dist/card.cjs.js +2 -0
  190. package/dist/card.cjs.js.map +1 -0
  191. package/dist/card.es.js +34 -0
  192. package/dist/card.es.js.map +1 -0
  193. package/dist/carousel.cjs.js +2 -0
  194. package/dist/carousel.cjs.js.map +1 -0
  195. package/dist/carousel.es.js +154 -0
  196. package/dist/carousel.es.js.map +1 -0
  197. package/dist/chart.cjs.js +8 -0
  198. package/dist/chart.cjs.js.map +1 -0
  199. package/dist/chart.es.js +187 -0
  200. package/dist/chart.es.js.map +1 -0
  201. package/dist/checkbox.cjs.js +2 -0
  202. package/dist/checkbox.cjs.js.map +1 -0
  203. package/dist/checkbox.es.js +22 -0
  204. package/dist/checkbox.es.js.map +1 -0
  205. package/dist/collapsible.cjs.js +2 -0
  206. package/dist/collapsible.cjs.js.map +1 -0
  207. package/dist/collapsible.es.js +8 -0
  208. package/dist/collapsible.es.js.map +1 -0
  209. package/dist/command.cjs.js +2 -0
  210. package/dist/command.cjs.js.map +1 -0
  211. package/dist/command.es.js +86 -0
  212. package/dist/command.es.js.map +1 -0
  213. package/dist/context-menu.cjs.js +2 -0
  214. package/dist/context-menu.cjs.js.map +1 -0
  215. package/dist/context-menu.es.js +124 -0
  216. package/dist/context-menu.es.js.map +1 -0
  217. package/dist/design-system.css +1 -1
  218. package/dist/dialog.cjs.js +2 -0
  219. package/dist/dialog.cjs.js.map +1 -0
  220. package/dist/dialog.es.js +65 -0
  221. package/dist/dialog.es.js.map +1 -0
  222. package/dist/drawer.cjs.js +2 -0
  223. package/dist/drawer.cjs.js.map +1 -0
  224. package/dist/drawer.es.js +54 -0
  225. package/dist/drawer.es.js.map +1 -0
  226. package/dist/dropdown-menu.cjs.js +2 -0
  227. package/dist/dropdown-menu.cjs.js.map +1 -0
  228. package/dist/dropdown-menu.es.js +126 -0
  229. package/dist/dropdown-menu.es.js.map +1 -0
  230. package/dist/form.cjs.js +2 -0
  231. package/dist/form.cjs.js.map +1 -0
  232. package/dist/form.es.js +70 -0
  233. package/dist/form.es.js.map +1 -0
  234. package/dist/hover-card.cjs.js +2 -0
  235. package/dist/hover-card.cjs.js.map +1 -0
  236. package/dist/hover-card.es.js +23 -0
  237. package/dist/hover-card.es.js.map +1 -0
  238. package/dist/index.cjs.js +1 -7
  239. package/dist/index.cjs.js.map +1 -1
  240. package/dist/index.es.js +418 -2449
  241. package/dist/index.es.js.map +1 -1
  242. package/dist/input.cjs.js +2 -0
  243. package/dist/input.cjs.js.map +1 -0
  244. package/dist/input.es.js +20 -0
  245. package/dist/input.es.js.map +1 -0
  246. package/dist/label.cjs.js +2 -0
  247. package/dist/label.cjs.js.map +1 -0
  248. package/dist/label.es.js +9 -0
  249. package/dist/label.es.js.map +1 -0
  250. package/dist/menubar.cjs.js +2 -0
  251. package/dist/menubar.cjs.js.map +1 -0
  252. package/dist/menubar.es.js +161 -0
  253. package/dist/menubar.es.js.map +1 -0
  254. package/dist/navigation-menu.cjs.js +2 -0
  255. package/dist/navigation-menu.cjs.js.map +1 -0
  256. package/dist/navigation-menu.es.js +96 -0
  257. package/dist/navigation-menu.es.js.map +1 -0
  258. package/dist/packages/design-tokens/src/index.d.ts +91 -0
  259. package/dist/packages/design-tokens/src/index.d.ts.map +1 -0
  260. package/dist/packages/design-tokens/src/index.js +21 -0
  261. package/dist/packages/design-tokens/src/palette.d.ts +32 -0
  262. package/dist/packages/design-tokens/src/palette.d.ts.map +1 -0
  263. package/dist/packages/design-tokens/src/palette.js +33 -0
  264. package/dist/packages/design-tokens/src/radii.d.ts +21 -0
  265. package/dist/packages/design-tokens/src/radii.d.ts.map +1 -0
  266. package/dist/packages/design-tokens/src/radii.js +21 -0
  267. package/dist/packages/design-tokens/src/shadows.d.ts +12 -0
  268. package/dist/packages/design-tokens/src/shadows.d.ts.map +1 -0
  269. package/dist/packages/design-tokens/src/shadows.js +13 -0
  270. package/dist/packages/design-tokens/src/spacing.d.ts +30 -0
  271. package/dist/packages/design-tokens/src/spacing.d.ts.map +1 -0
  272. package/dist/packages/design-tokens/src/spacing.js +30 -0
  273. package/dist/packages/design-tokens/src/theme.d.ts +48 -0
  274. package/dist/packages/design-tokens/src/theme.d.ts.map +1 -0
  275. package/dist/packages/design-tokens/src/theme.js +50 -0
  276. package/dist/packages/design-tokens/src/typography.d.ts +33 -0
  277. package/dist/packages/design-tokens/src/typography.d.ts.map +1 -0
  278. package/dist/packages/design-tokens/src/typography.js +33 -0
  279. package/dist/packages/ui-core/src/contracts/accordion.d.ts +20 -0
  280. package/dist/packages/ui-core/src/contracts/accordion.d.ts.map +1 -0
  281. package/dist/packages/ui-core/src/contracts/accordion.js +1 -0
  282. package/dist/packages/ui-core/src/contracts/alert-dialog.d.ts +40 -0
  283. package/dist/packages/ui-core/src/contracts/alert-dialog.d.ts.map +1 -0
  284. package/dist/packages/ui-core/src/contracts/alert-dialog.js +1 -0
  285. package/dist/packages/ui-core/src/contracts/alert.d.ts +15 -0
  286. package/dist/packages/ui-core/src/contracts/alert.d.ts.map +1 -0
  287. package/dist/packages/ui-core/src/contracts/alert.js +1 -0
  288. package/dist/packages/ui-core/src/contracts/aspect-ratio.d.ts +7 -0
  289. package/dist/packages/ui-core/src/contracts/aspect-ratio.d.ts.map +1 -0
  290. package/dist/packages/ui-core/src/contracts/aspect-ratio.js +1 -0
  291. package/dist/packages/ui-core/src/contracts/avatar.d.ts +15 -0
  292. package/dist/packages/ui-core/src/contracts/avatar.d.ts.map +1 -0
  293. package/dist/packages/ui-core/src/contracts/avatar.js +1 -0
  294. package/dist/packages/ui-core/src/contracts/badge.d.ts +7 -0
  295. package/dist/packages/ui-core/src/contracts/badge.d.ts.map +1 -0
  296. package/dist/packages/ui-core/src/contracts/badge.js +1 -0
  297. package/dist/packages/ui-core/src/contracts/breadcrumb.d.ts +31 -0
  298. package/dist/packages/ui-core/src/contracts/breadcrumb.d.ts.map +1 -0
  299. package/dist/packages/ui-core/src/contracts/breadcrumb.js +1 -0
  300. package/dist/packages/ui-core/src/contracts/button.d.ts +10 -0
  301. package/dist/packages/ui-core/src/contracts/button.d.ts.map +1 -0
  302. package/dist/packages/ui-core/src/contracts/button.js +4 -0
  303. package/dist/packages/ui-core/src/contracts/calendar.d.ts +5 -0
  304. package/dist/packages/ui-core/src/contracts/calendar.d.ts.map +1 -0
  305. package/dist/packages/ui-core/src/contracts/calendar.js +1 -0
  306. package/dist/packages/ui-core/src/contracts/card.d.ts +6 -0
  307. package/dist/packages/ui-core/src/contracts/card.d.ts.map +1 -0
  308. package/dist/packages/ui-core/src/contracts/card.js +3 -0
  309. package/dist/packages/ui-core/src/contracts/carousel.d.ts +25 -0
  310. package/dist/packages/ui-core/src/contracts/carousel.d.ts.map +1 -0
  311. package/dist/packages/ui-core/src/contracts/carousel.js +1 -0
  312. package/dist/packages/ui-core/src/contracts/chart.d.ts +34 -0
  313. package/dist/packages/ui-core/src/contracts/chart.d.ts.map +1 -0
  314. package/dist/packages/ui-core/src/contracts/chart.js +1 -0
  315. package/dist/packages/ui-core/src/contracts/checkbox.d.ts +8 -0
  316. package/dist/packages/ui-core/src/contracts/checkbox.d.ts.map +1 -0
  317. package/dist/packages/ui-core/src/contracts/checkbox.js +3 -0
  318. package/dist/packages/ui-core/src/contracts/collapsible.d.ts +19 -0
  319. package/dist/packages/ui-core/src/contracts/collapsible.d.ts.map +1 -0
  320. package/dist/packages/ui-core/src/contracts/collapsible.js +1 -0
  321. package/dist/packages/ui-core/src/contracts/command.d.ts +36 -0
  322. package/dist/packages/ui-core/src/contracts/command.d.ts.map +1 -0
  323. package/dist/packages/ui-core/src/contracts/command.js +1 -0
  324. package/dist/packages/ui-core/src/contracts/context-menu.d.ts +65 -0
  325. package/dist/packages/ui-core/src/contracts/context-menu.d.ts.map +1 -0
  326. package/dist/packages/ui-core/src/contracts/context-menu.js +1 -0
  327. package/dist/packages/ui-core/src/contracts/dialog.d.ts +14 -0
  328. package/dist/packages/ui-core/src/contracts/dialog.d.ts.map +1 -0
  329. package/dist/packages/ui-core/src/contracts/dialog.js +3 -0
  330. package/dist/packages/ui-core/src/contracts/drawer.d.ts +32 -0
  331. package/dist/packages/ui-core/src/contracts/drawer.d.ts.map +1 -0
  332. package/dist/packages/ui-core/src/contracts/drawer.js +1 -0
  333. package/dist/packages/ui-core/src/contracts/dropdown-menu.d.ts +74 -0
  334. package/dist/packages/ui-core/src/contracts/dropdown-menu.d.ts.map +1 -0
  335. package/dist/packages/ui-core/src/contracts/dropdown-menu.js +1 -0
  336. package/dist/packages/ui-core/src/contracts/form.d.ts +24 -0
  337. package/dist/packages/ui-core/src/contracts/form.d.ts.map +1 -0
  338. package/dist/packages/ui-core/src/contracts/form.js +1 -0
  339. package/dist/packages/ui-core/src/contracts/hover-card.d.ts +19 -0
  340. package/dist/packages/ui-core/src/contracts/hover-card.d.ts.map +1 -0
  341. package/dist/packages/ui-core/src/contracts/hover-card.js +1 -0
  342. package/dist/packages/ui-core/src/contracts/input.d.ts +6 -0
  343. package/dist/packages/ui-core/src/contracts/input.d.ts.map +1 -0
  344. package/dist/packages/ui-core/src/contracts/input.js +3 -0
  345. package/dist/packages/ui-core/src/contracts/label.d.ts +7 -0
  346. package/dist/packages/ui-core/src/contracts/label.d.ts.map +1 -0
  347. package/dist/packages/ui-core/src/contracts/label.js +1 -0
  348. package/dist/packages/ui-core/src/contracts/menubar.d.ts +74 -0
  349. package/dist/packages/ui-core/src/contracts/menubar.d.ts.map +1 -0
  350. package/dist/packages/ui-core/src/contracts/menubar.js +1 -0
  351. package/dist/packages/ui-core/src/contracts/navigation-menu.d.ts +48 -0
  352. package/dist/packages/ui-core/src/contracts/navigation-menu.d.ts.map +1 -0
  353. package/dist/packages/ui-core/src/contracts/navigation-menu.js +1 -0
  354. package/dist/packages/ui-core/src/contracts/pagination.d.ts +32 -0
  355. package/dist/packages/ui-core/src/contracts/pagination.d.ts.map +1 -0
  356. package/dist/packages/ui-core/src/contracts/pagination.js +1 -0
  357. package/dist/packages/ui-core/src/contracts/popover.d.ts +25 -0
  358. package/dist/packages/ui-core/src/contracts/popover.d.ts.map +1 -0
  359. package/dist/packages/ui-core/src/contracts/popover.js +1 -0
  360. package/dist/packages/ui-core/src/contracts/progress.d.ts +5 -0
  361. package/dist/packages/ui-core/src/contracts/progress.d.ts.map +1 -0
  362. package/dist/packages/ui-core/src/contracts/progress.js +1 -0
  363. package/dist/packages/ui-core/src/contracts/radio.d.ts +10 -0
  364. package/dist/packages/ui-core/src/contracts/radio.d.ts.map +1 -0
  365. package/dist/packages/ui-core/src/contracts/radio.js +3 -0
  366. package/dist/packages/ui-core/src/contracts/resizable.d.ts +39 -0
  367. package/dist/packages/ui-core/src/contracts/resizable.d.ts.map +1 -0
  368. package/dist/packages/ui-core/src/contracts/resizable.js +1 -0
  369. package/dist/packages/ui-core/src/contracts/scroll-area.d.ts +14 -0
  370. package/dist/packages/ui-core/src/contracts/scroll-area.d.ts.map +1 -0
  371. package/dist/packages/ui-core/src/contracts/scroll-area.js +1 -0
  372. package/dist/packages/ui-core/src/contracts/search.d.ts +12 -0
  373. package/dist/packages/ui-core/src/contracts/search.d.ts.map +1 -0
  374. package/dist/packages/ui-core/src/contracts/search.js +1 -0
  375. package/dist/packages/ui-core/src/contracts/select.d.ts +55 -0
  376. package/dist/packages/ui-core/src/contracts/select.d.ts.map +1 -0
  377. package/dist/packages/ui-core/src/contracts/select.js +1 -0
  378. package/dist/packages/ui-core/src/contracts/separator.d.ts +6 -0
  379. package/dist/packages/ui-core/src/contracts/separator.d.ts.map +1 -0
  380. package/dist/packages/ui-core/src/contracts/separator.js +1 -0
  381. package/dist/packages/ui-core/src/contracts/sheet.d.ts +49 -0
  382. package/dist/packages/ui-core/src/contracts/sheet.d.ts.map +1 -0
  383. package/dist/packages/ui-core/src/contracts/sheet.js +1 -0
  384. package/dist/packages/ui-core/src/contracts/skeleton.d.ts +6 -0
  385. package/dist/packages/ui-core/src/contracts/skeleton.d.ts.map +1 -0
  386. package/dist/packages/ui-core/src/contracts/skeleton.js +1 -0
  387. package/dist/packages/ui-core/src/contracts/slider.d.ts +16 -0
  388. package/dist/packages/ui-core/src/contracts/slider.d.ts.map +1 -0
  389. package/dist/packages/ui-core/src/contracts/slider.js +1 -0
  390. package/dist/packages/ui-core/src/contracts/sonner.d.ts +16 -0
  391. package/dist/packages/ui-core/src/contracts/sonner.d.ts.map +1 -0
  392. package/dist/packages/ui-core/src/contracts/sonner.js +1 -0
  393. package/dist/packages/ui-core/src/contracts/switch.d.ts +12 -0
  394. package/dist/packages/ui-core/src/contracts/switch.d.ts.map +1 -0
  395. package/dist/packages/ui-core/src/contracts/switch.js +1 -0
  396. package/dist/packages/ui-core/src/contracts/table.d.ts +34 -0
  397. package/dist/packages/ui-core/src/contracts/table.d.ts.map +1 -0
  398. package/dist/packages/ui-core/src/contracts/table.js +1 -0
  399. package/dist/packages/ui-core/src/contracts/tabs.d.ts +28 -0
  400. package/dist/packages/ui-core/src/contracts/tabs.d.ts.map +1 -0
  401. package/dist/packages/ui-core/src/contracts/tabs.js +1 -0
  402. package/dist/packages/ui-core/src/contracts/text.d.ts +7 -0
  403. package/dist/packages/ui-core/src/contracts/text.d.ts.map +1 -0
  404. package/dist/packages/ui-core/src/contracts/text.js +3 -0
  405. package/dist/packages/ui-core/src/contracts/textarea.d.ts +8 -0
  406. package/dist/packages/ui-core/src/contracts/textarea.d.ts.map +1 -0
  407. package/dist/packages/ui-core/src/contracts/textarea.js +1 -0
  408. package/dist/packages/ui-core/src/contracts/theme-provider.d.ts +14 -0
  409. package/dist/packages/ui-core/src/contracts/theme-provider.d.ts.map +1 -0
  410. package/dist/packages/ui-core/src/contracts/theme-provider.js +1 -0
  411. package/dist/packages/ui-core/src/contracts/theme-toggle.d.ts +16 -0
  412. package/dist/packages/ui-core/src/contracts/theme-toggle.d.ts.map +1 -0
  413. package/dist/packages/ui-core/src/contracts/theme-toggle.js +1 -0
  414. package/dist/packages/ui-core/src/contracts/toast.d.ts +11 -0
  415. package/dist/packages/ui-core/src/contracts/toast.d.ts.map +1 -0
  416. package/dist/packages/ui-core/src/contracts/toast.js +3 -0
  417. package/dist/packages/ui-core/src/contracts/toaster.d.ts +4 -0
  418. package/dist/packages/ui-core/src/contracts/toaster.d.ts.map +1 -0
  419. package/dist/packages/ui-core/src/contracts/toaster.js +1 -0
  420. package/dist/packages/ui-core/src/contracts/toggle-group.d.ts +22 -0
  421. package/dist/packages/ui-core/src/contracts/toggle-group.d.ts.map +1 -0
  422. package/dist/packages/ui-core/src/contracts/toggle-group.js +1 -0
  423. package/dist/packages/ui-core/src/contracts/toggle.d.ts +29 -0
  424. package/dist/packages/ui-core/src/contracts/toggle.d.ts.map +1 -0
  425. package/dist/packages/ui-core/src/contracts/toggle.js +29 -0
  426. package/dist/packages/ui-core/src/contracts/tooltip.d.ts +25 -0
  427. package/dist/packages/ui-core/src/contracts/tooltip.d.ts.map +1 -0
  428. package/dist/packages/ui-core/src/contracts/tooltip.js +1 -0
  429. package/dist/packages/ui-core/src/index.d.ts +55 -0
  430. package/dist/packages/ui-core/src/index.d.ts.map +1 -0
  431. package/dist/packages/ui-core/src/index.js +12 -0
  432. package/dist/packages/ui-native/src/accordion.d.ts +46 -0
  433. package/dist/packages/ui-native/src/accordion.d.ts.map +1 -0
  434. package/dist/packages/ui-native/src/accordion.js +34 -0
  435. package/dist/packages/ui-native/src/alert-dialog.d.ts +59 -0
  436. package/dist/packages/ui-native/src/alert-dialog.d.ts.map +1 -0
  437. package/dist/packages/ui-native/src/alert-dialog.js +31 -0
  438. package/dist/packages/ui-native/src/alert.d.ts +10 -0
  439. package/dist/packages/ui-native/src/alert.d.ts.map +1 -0
  440. package/dist/packages/ui-native/src/alert.js +26 -0
  441. package/dist/packages/ui-native/src/aspect-ratio.d.ts +2 -0
  442. package/dist/packages/ui-native/src/aspect-ratio.d.ts.map +1 -0
  443. package/dist/packages/ui-native/src/aspect-ratio.js +5 -0
  444. package/dist/packages/ui-native/src/avatar.d.ts +15 -0
  445. package/dist/packages/ui-native/src/avatar.d.ts.map +1 -0
  446. package/dist/packages/ui-native/src/avatar.js +11 -0
  447. package/dist/packages/ui-native/src/badge.d.ts +12 -0
  448. package/dist/packages/ui-native/src/badge.d.ts.map +1 -0
  449. package/dist/packages/ui-native/src/badge.js +37 -0
  450. package/dist/packages/ui-native/src/breadcrumb.d.ts +2 -0
  451. package/dist/packages/ui-native/src/breadcrumb.d.ts.map +1 -0
  452. package/dist/packages/ui-native/src/breadcrumb.js +5 -0
  453. package/dist/packages/ui-native/src/button.d.ts +14 -0
  454. package/dist/packages/ui-native/src/button.d.ts.map +1 -0
  455. package/dist/packages/ui-native/src/button.js +50 -0
  456. package/dist/packages/ui-native/src/calendar.d.ts +2 -0
  457. package/dist/packages/ui-native/src/calendar.d.ts.map +1 -0
  458. package/dist/packages/ui-native/src/calendar.js +5 -0
  459. package/dist/packages/ui-native/src/card.d.ts +13 -0
  460. package/dist/packages/ui-native/src/card.d.ts.map +1 -0
  461. package/dist/packages/ui-native/src/card.js +18 -0
  462. package/dist/packages/ui-native/src/carousel.d.ts +2 -0
  463. package/dist/packages/ui-native/src/carousel.d.ts.map +1 -0
  464. package/dist/packages/ui-native/src/carousel.js +5 -0
  465. package/dist/packages/ui-native/src/chart.d.ts +2 -0
  466. package/dist/packages/ui-native/src/chart.d.ts.map +1 -0
  467. package/dist/packages/ui-native/src/chart.js +5 -0
  468. package/dist/packages/ui-native/src/checkbox.d.ts +15 -0
  469. package/dist/packages/ui-native/src/checkbox.d.ts.map +1 -0
  470. package/dist/packages/ui-native/src/checkbox.js +11 -0
  471. package/dist/packages/ui-native/src/collapsible.d.ts +21 -0
  472. package/dist/packages/ui-native/src/collapsible.d.ts.map +1 -0
  473. package/dist/packages/ui-native/src/collapsible.js +5 -0
  474. package/dist/packages/ui-native/src/command.d.ts +2 -0
  475. package/dist/packages/ui-native/src/command.d.ts.map +1 -0
  476. package/dist/packages/ui-native/src/command.js +5 -0
  477. package/dist/packages/ui-native/src/context-menu.d.ts +2 -0
  478. package/dist/packages/ui-native/src/context-menu.d.ts.map +1 -0
  479. package/dist/packages/ui-native/src/context-menu.js +5 -0
  480. package/dist/packages/ui-native/src/dialog.d.ts +56 -0
  481. package/dist/packages/ui-native/src/dialog.d.ts.map +1 -0
  482. package/dist/packages/ui-native/src/dialog.js +28 -0
  483. package/dist/packages/ui-native/src/drawer.d.ts +2 -0
  484. package/dist/packages/ui-native/src/drawer.d.ts.map +1 -0
  485. package/dist/packages/ui-native/src/drawer.js +5 -0
  486. package/dist/packages/ui-native/src/dropdown-menu.d.ts +2 -0
  487. package/dist/packages/ui-native/src/dropdown-menu.d.ts.map +1 -0
  488. package/dist/packages/ui-native/src/dropdown-menu.js +5 -0
  489. package/dist/packages/ui-native/src/form.d.ts +2 -0
  490. package/dist/packages/ui-native/src/form.d.ts.map +1 -0
  491. package/dist/packages/ui-native/src/form.js +5 -0
  492. package/dist/packages/ui-native/src/hover-card.d.ts +2 -0
  493. package/dist/packages/ui-native/src/hover-card.d.ts.map +1 -0
  494. package/dist/packages/ui-native/src/hover-card.js +5 -0
  495. package/dist/packages/ui-native/src/index.d.ts +61 -0
  496. package/dist/packages/ui-native/src/index.d.ts.map +1 -0
  497. package/dist/packages/ui-native/src/index.js +107 -0
  498. package/dist/packages/ui-native/src/input.d.ts +8 -0
  499. package/dist/packages/ui-native/src/input.d.ts.map +1 -0
  500. package/dist/packages/ui-native/src/input.js +9 -0
  501. package/dist/packages/ui-native/src/label.d.ts +9 -0
  502. package/dist/packages/ui-native/src/label.d.ts.map +1 -0
  503. package/dist/packages/ui-native/src/label.js +7 -0
  504. package/dist/packages/ui-native/src/lib/render-native.d.ts +4 -0
  505. package/dist/packages/ui-native/src/lib/render-native.d.ts.map +1 -0
  506. package/dist/packages/ui-native/src/lib/render-native.js +13 -0
  507. package/dist/packages/ui-native/src/lib/utils.d.ts.map +1 -0
  508. package/dist/packages/ui-native/src/lib/utils.js +5 -0
  509. package/dist/packages/ui-native/src/menubar.d.ts +2 -0
  510. package/dist/packages/ui-native/src/menubar.d.ts.map +1 -0
  511. package/dist/packages/ui-native/src/menubar.js +5 -0
  512. package/dist/packages/ui-native/src/navigation-menu.d.ts +2 -0
  513. package/dist/packages/ui-native/src/navigation-menu.d.ts.map +1 -0
  514. package/dist/packages/ui-native/src/navigation-menu.js +5 -0
  515. package/dist/packages/ui-native/src/pagination.d.ts +2 -0
  516. package/dist/packages/ui-native/src/pagination.d.ts.map +1 -0
  517. package/dist/packages/ui-native/src/pagination.js +5 -0
  518. package/dist/packages/ui-native/src/popover.d.ts +2 -0
  519. package/dist/packages/ui-native/src/popover.d.ts.map +1 -0
  520. package/dist/packages/ui-native/src/popover.js +5 -0
  521. package/dist/packages/ui-native/src/progress.d.ts +2 -0
  522. package/dist/packages/ui-native/src/progress.d.ts.map +1 -0
  523. package/dist/packages/ui-native/src/progress.js +5 -0
  524. package/dist/packages/ui-native/src/radio-group.d.ts +11 -0
  525. package/dist/packages/ui-native/src/radio-group.d.ts.map +1 -0
  526. package/dist/packages/ui-native/src/radio-group.js +14 -0
  527. package/dist/packages/ui-native/src/resizable.d.ts +4 -0
  528. package/dist/packages/ui-native/src/resizable.d.ts.map +1 -0
  529. package/dist/packages/ui-native/src/resizable.js +11 -0
  530. package/dist/packages/ui-native/src/scroll-area.d.ts +2 -0
  531. package/dist/packages/ui-native/src/scroll-area.d.ts.map +1 -0
  532. package/dist/packages/ui-native/src/scroll-area.js +5 -0
  533. package/dist/packages/ui-native/src/search.d.ts +3 -0
  534. package/dist/packages/ui-native/src/search.d.ts.map +1 -0
  535. package/dist/packages/ui-native/src/search.js +8 -0
  536. package/dist/packages/ui-native/src/select.d.ts +57 -0
  537. package/dist/packages/ui-native/src/select.d.ts.map +1 -0
  538. package/dist/packages/ui-native/src/select.js +45 -0
  539. package/dist/packages/ui-native/src/separator.d.ts +9 -0
  540. package/dist/packages/ui-native/src/separator.d.ts.map +1 -0
  541. package/dist/packages/ui-native/src/separator.js +7 -0
  542. package/dist/packages/ui-native/src/sheet.d.ts +53 -0
  543. package/dist/packages/ui-native/src/sheet.d.ts.map +1 -0
  544. package/dist/packages/ui-native/src/sheet.js +37 -0
  545. package/dist/packages/ui-native/src/skeleton.d.ts +5 -0
  546. package/dist/packages/ui-native/src/skeleton.d.ts.map +1 -0
  547. package/dist/packages/ui-native/src/skeleton.js +15 -0
  548. package/dist/packages/ui-native/src/slider.d.ts +2 -0
  549. package/dist/packages/ui-native/src/slider.d.ts.map +1 -0
  550. package/dist/packages/ui-native/src/slider.js +5 -0
  551. package/dist/packages/ui-native/src/sonner.d.ts +2 -0
  552. package/dist/packages/ui-native/src/sonner.d.ts.map +1 -0
  553. package/dist/packages/ui-native/src/sonner.js +5 -0
  554. package/dist/packages/ui-native/src/switch.d.ts +8 -0
  555. package/dist/packages/ui-native/src/switch.d.ts.map +1 -0
  556. package/dist/packages/ui-native/src/switch.js +7 -0
  557. package/dist/packages/ui-native/src/table.d.ts +12 -0
  558. package/dist/packages/ui-native/src/table.d.ts.map +1 -0
  559. package/dist/packages/ui-native/src/table.js +22 -0
  560. package/dist/packages/ui-native/src/tabs.d.ts +25 -0
  561. package/dist/packages/ui-native/src/tabs.d.ts.map +1 -0
  562. package/dist/packages/ui-native/src/tabs.js +16 -0
  563. package/dist/packages/ui-native/src/text.d.ts +13 -0
  564. package/dist/packages/ui-native/src/text.d.ts.map +1 -0
  565. package/dist/packages/ui-native/src/text.js +29 -0
  566. package/dist/packages/ui-native/src/textarea.d.ts +6 -0
  567. package/dist/packages/ui-native/src/textarea.d.ts.map +1 -0
  568. package/dist/packages/ui-native/src/textarea.js +9 -0
  569. package/dist/packages/ui-native/src/theme-provider.d.ts +5 -0
  570. package/dist/packages/ui-native/src/theme-provider.d.ts.map +1 -0
  571. package/dist/packages/ui-native/src/theme-provider.js +5 -0
  572. package/dist/packages/ui-native/src/theme-toggle.d.ts +2 -0
  573. package/dist/packages/ui-native/src/theme-toggle.d.ts.map +1 -0
  574. package/dist/packages/ui-native/src/theme-toggle.js +5 -0
  575. package/dist/packages/ui-native/src/toast.d.ts +35 -0
  576. package/dist/packages/ui-native/src/toast.d.ts.map +1 -0
  577. package/dist/packages/ui-native/src/toast.js +23 -0
  578. package/dist/packages/ui-native/src/toaster.d.ts.map +1 -0
  579. package/dist/packages/ui-native/src/toaster.js +5 -0
  580. package/dist/packages/ui-native/src/toggle-group.d.ts +11 -0
  581. package/dist/packages/ui-native/src/toggle-group.d.ts.map +1 -0
  582. package/dist/packages/ui-native/src/toggle-group.js +25 -0
  583. package/dist/packages/ui-native/src/toggle.d.ts +8 -0
  584. package/dist/packages/ui-native/src/toggle.d.ts.map +1 -0
  585. package/dist/packages/ui-native/src/toggle.js +9 -0
  586. package/dist/packages/ui-native/src/tooltip.d.ts +27 -0
  587. package/dist/packages/ui-native/src/tooltip.d.ts.map +1 -0
  588. package/dist/packages/ui-native/src/tooltip.js +15 -0
  589. package/dist/packages/ui-web/src/accordion.d.ts +10 -0
  590. package/dist/packages/ui-web/src/accordion.d.ts.map +1 -0
  591. package/dist/packages/ui-web/src/accordion.js +13 -0
  592. package/dist/packages/ui-web/src/alert-dialog.d.ts +23 -0
  593. package/dist/packages/ui-web/src/alert-dialog.d.ts.map +1 -0
  594. package/dist/packages/ui-web/src/alert-dialog.js +25 -0
  595. package/dist/packages/ui-web/src/alert.d.ts +11 -0
  596. package/dist/packages/ui-web/src/alert.d.ts.map +1 -0
  597. package/dist/packages/ui-web/src/alert.js +24 -0
  598. package/dist/packages/ui-web/src/aspect-ratio.d.ts +6 -0
  599. package/dist/packages/ui-web/src/aspect-ratio.d.ts.map +1 -0
  600. package/dist/packages/ui-web/src/aspect-ratio.js +3 -0
  601. package/dist/packages/ui-web/src/avatar.d.ts +9 -0
  602. package/dist/packages/ui-web/src/avatar.d.ts.map +1 -0
  603. package/dist/packages/ui-web/src/avatar.js +11 -0
  604. package/dist/packages/ui-web/src/badge.d.ts +11 -0
  605. package/dist/packages/ui-web/src/badge.d.ts.map +1 -0
  606. package/dist/packages/ui-web/src/badge.js +20 -0
  607. package/dist/packages/ui-web/src/breadcrumb.d.ts +20 -0
  608. package/dist/packages/ui-web/src/breadcrumb.d.ts.map +1 -0
  609. package/dist/packages/ui-web/src/breadcrumb.js +23 -0
  610. package/dist/packages/ui-web/src/button.d.ts +13 -0
  611. package/dist/packages/ui-web/src/button.d.ts.map +1 -0
  612. package/dist/packages/ui-web/src/button.js +33 -0
  613. package/dist/packages/ui-web/src/calendar.d.ts +11 -0
  614. package/dist/packages/ui-web/src/calendar.d.ts.map +1 -0
  615. package/dist/packages/ui-web/src/calendar.js +70 -0
  616. package/dist/packages/ui-web/src/card.d.ts +12 -0
  617. package/dist/packages/ui-web/src/card.d.ts.map +1 -0
  618. package/dist/packages/ui-web/src/card.js +16 -0
  619. package/dist/packages/ui-web/src/carousel.d.ts +24 -0
  620. package/dist/packages/ui-web/src/carousel.d.ts.map +1 -0
  621. package/dist/packages/ui-web/src/carousel.js +98 -0
  622. package/dist/packages/ui-web/src/chart.d.ts +39 -0
  623. package/dist/packages/ui-web/src/chart.d.ts.map +1 -0
  624. package/dist/packages/ui-web/src/chart.js +120 -0
  625. package/dist/packages/ui-web/src/checkbox.d.ts +8 -0
  626. package/dist/packages/ui-web/src/checkbox.d.ts.map +1 -0
  627. package/dist/packages/ui-web/src/checkbox.js +8 -0
  628. package/dist/packages/ui-web/src/collapsible.d.ts +8 -0
  629. package/dist/packages/ui-web/src/collapsible.d.ts.map +1 -0
  630. package/dist/packages/ui-web/src/collapsible.js +5 -0
  631. package/dist/packages/ui-web/src/command.d.ts +83 -0
  632. package/dist/packages/ui-web/src/command.d.ts.map +1 -0
  633. package/dist/packages/ui-web/src/command.js +29 -0
  634. package/dist/packages/ui-web/src/context-menu.d.ts +24 -0
  635. package/dist/packages/ui-web/src/context-menu.d.ts.map +1 -0
  636. package/dist/packages/ui-web/src/context-menu.js +32 -0
  637. package/dist/packages/ui-web/src/dialog.d.ts.map +1 -0
  638. package/dist/packages/ui-web/src/dialog.js +22 -0
  639. package/dist/packages/ui-web/src/drawer.d.ts +25 -0
  640. package/dist/packages/ui-web/src/drawer.d.ts.map +1 -0
  641. package/dist/packages/ui-web/src/drawer.js +23 -0
  642. package/dist/packages/ui-web/src/dropdown-menu.d.ts +24 -0
  643. package/dist/packages/ui-web/src/dropdown-menu.d.ts.map +1 -0
  644. package/dist/packages/ui-web/src/dropdown-menu.js +33 -0
  645. package/dist/packages/ui-web/src/form.d.ts +26 -0
  646. package/dist/packages/ui-web/src/form.d.ts.map +1 -0
  647. package/dist/packages/ui-web/src/form.js +64 -0
  648. package/dist/packages/ui-web/src/hooks/use-theme.d.ts.map +1 -0
  649. package/dist/packages/ui-web/src/hooks/use-theme.js +12 -0
  650. package/dist/packages/ui-web/src/hooks/use-toast.d.ts +45 -0
  651. package/dist/packages/ui-web/src/hooks/use-toast.d.ts.map +1 -0
  652. package/dist/packages/ui-web/src/hooks/use-toast.js +128 -0
  653. package/dist/packages/ui-web/src/hover-card.d.ts +9 -0
  654. package/dist/packages/ui-web/src/hover-card.d.ts.map +1 -0
  655. package/dist/packages/ui-web/src/hover-card.js +10 -0
  656. package/dist/packages/ui-web/src/index.d.ts +101 -0
  657. package/dist/packages/ui-web/src/index.d.ts.map +1 -0
  658. package/dist/packages/ui-web/src/index.js +106 -0
  659. package/dist/packages/ui-web/src/input.d.ts +7 -0
  660. package/dist/packages/ui-web/src/input.d.ts.map +1 -0
  661. package/dist/packages/ui-web/src/input.js +8 -0
  662. package/dist/packages/ui-web/src/label.d.ts +8 -0
  663. package/dist/packages/ui-web/src/label.d.ts.map +1 -0
  664. package/dist/packages/ui-web/src/label.js +10 -0
  665. package/dist/packages/ui-web/src/lib/utils.d.ts +3 -0
  666. package/dist/packages/ui-web/src/lib/utils.d.ts.map +1 -0
  667. package/dist/packages/ui-web/src/lib/utils.js +5 -0
  668. package/dist/packages/ui-web/src/menubar.d.ts +25 -0
  669. package/dist/packages/ui-web/src/menubar.d.ts.map +1 -0
  670. package/dist/packages/ui-web/src/menubar.js +46 -0
  671. package/dist/packages/ui-web/src/navigation-menu.d.ts +15 -0
  672. package/dist/packages/ui-web/src/navigation-menu.d.ts.map +1 -0
  673. package/dist/packages/ui-web/src/navigation-menu.js +23 -0
  674. package/dist/packages/ui-web/src/pagination.d.ts +31 -0
  675. package/dist/packages/ui-web/src/pagination.d.ts.map +1 -0
  676. package/dist/packages/ui-web/src/pagination.js +23 -0
  677. package/dist/packages/ui-web/src/popover.d.ts +10 -0
  678. package/dist/packages/ui-web/src/popover.d.ts.map +1 -0
  679. package/dist/packages/ui-web/src/popover.js +11 -0
  680. package/dist/packages/ui-web/src/progress.d.ts +7 -0
  681. package/dist/packages/ui-web/src/progress.d.ts.map +1 -0
  682. package/dist/packages/ui-web/src/progress.js +8 -0
  683. package/dist/packages/ui-web/src/radio-group.d.ts +11 -0
  684. package/dist/packages/ui-web/src/radio-group.d.ts.map +1 -0
  685. package/dist/packages/ui-web/src/radio-group.js +14 -0
  686. package/dist/packages/ui-web/src/resizable.d.ts +9 -0
  687. package/dist/packages/ui-web/src/resizable.d.ts.map +1 -0
  688. package/dist/packages/ui-web/src/resizable.js +17 -0
  689. package/dist/packages/ui-web/src/scroll-area.d.ts +8 -0
  690. package/dist/packages/ui-web/src/scroll-area.d.ts.map +1 -0
  691. package/dist/packages/ui-web/src/scroll-area.js +10 -0
  692. package/dist/packages/ui-web/src/search.d.ts +8 -0
  693. package/dist/packages/ui-web/src/search.d.ts.map +1 -0
  694. package/dist/packages/ui-web/src/search.js +48 -0
  695. package/dist/packages/ui-web/src/select.d.ts +16 -0
  696. package/dist/packages/ui-web/src/select.d.ts.map +1 -0
  697. package/dist/packages/ui-web/src/select.js +26 -0
  698. package/dist/packages/ui-web/src/separator.d.ts +7 -0
  699. package/dist/packages/ui-web/src/separator.d.ts.map +1 -0
  700. package/dist/packages/ui-web/src/separator.js +8 -0
  701. package/dist/packages/ui-web/src/sheet.d.ts +28 -0
  702. package/dist/packages/ui-web/src/sheet.d.ts.map +1 -0
  703. package/dist/packages/ui-web/src/sheet.js +37 -0
  704. package/dist/packages/ui-web/src/skeleton.d.ts +6 -0
  705. package/dist/packages/ui-web/src/skeleton.d.ts.map +1 -0
  706. package/dist/packages/ui-web/src/skeleton.js +6 -0
  707. package/dist/packages/ui-web/src/slider.d.ts +7 -0
  708. package/dist/packages/ui-web/src/slider.d.ts.map +1 -0
  709. package/dist/packages/ui-web/src/slider.js +8 -0
  710. package/dist/packages/ui-web/src/sonner.d.ts +8 -0
  711. package/dist/packages/ui-web/src/sonner.d.ts.map +1 -0
  712. package/dist/packages/ui-web/src/sonner.js +16 -0
  713. package/dist/packages/ui-web/src/switch.d.ts +7 -0
  714. package/dist/packages/ui-web/src/switch.d.ts.map +1 -0
  715. package/dist/packages/ui-web/src/switch.js +8 -0
  716. package/dist/packages/ui-web/src/table.d.ts +13 -0
  717. package/dist/packages/ui-web/src/table.d.ts.map +1 -0
  718. package/dist/packages/ui-web/src/table.js +21 -0
  719. package/dist/packages/ui-web/src/tabs.d.ts +10 -0
  720. package/dist/packages/ui-web/src/tabs.d.ts.map +1 -0
  721. package/dist/packages/ui-web/src/tabs.js +13 -0
  722. package/dist/packages/ui-web/src/text.d.ts +12 -0
  723. package/dist/packages/ui-web/src/text.d.ts.map +1 -0
  724. package/dist/packages/ui-web/src/text.js +40 -0
  725. package/dist/packages/ui-web/src/textarea.d.ts +7 -0
  726. package/dist/packages/ui-web/src/textarea.d.ts.map +1 -0
  727. package/dist/packages/ui-web/src/textarea.js +9 -0
  728. package/dist/packages/ui-web/src/theme-provider.d.ts +5 -0
  729. package/dist/packages/ui-web/src/theme-provider.d.ts.map +1 -0
  730. package/dist/packages/ui-web/src/theme-provider.js +6 -0
  731. package/dist/packages/ui-web/src/theme-toggle.d.ts +4 -0
  732. package/dist/packages/ui-web/src/theme-toggle.d.ts.map +1 -0
  733. package/dist/packages/ui-web/src/theme-toggle.js +29 -0
  734. package/dist/packages/ui-web/src/toast.d.ts.map +1 -0
  735. package/dist/packages/ui-web/src/toast.js +33 -0
  736. package/dist/packages/ui-web/src/toaster.d.ts +3 -0
  737. package/dist/packages/ui-web/src/toaster.d.ts.map +1 -0
  738. package/dist/packages/ui-web/src/toaster.js +10 -0
  739. package/dist/packages/ui-web/src/toggle-group.d.ts +13 -0
  740. package/dist/packages/ui-web/src/toggle-group.d.ts.map +1 -0
  741. package/dist/packages/ui-web/src/toggle-group.js +21 -0
  742. package/dist/packages/ui-web/src/toggle.d.ts +9 -0
  743. package/dist/packages/ui-web/src/toggle.d.ts.map +1 -0
  744. package/dist/packages/ui-web/src/toggle.js +9 -0
  745. package/dist/packages/ui-web/src/tooltip.d.ts +13 -0
  746. package/dist/packages/ui-web/src/tooltip.d.ts.map +1 -0
  747. package/dist/packages/ui-web/src/tooltip.js +12 -0
  748. package/dist/pagination.cjs.js +2 -0
  749. package/dist/pagination.cjs.js.map +1 -0
  750. package/dist/pagination.es.js +68 -0
  751. package/dist/pagination.es.js.map +1 -0
  752. package/dist/popover.cjs.js +2 -0
  753. package/dist/popover.cjs.js.map +1 -0
  754. package/dist/popover.es.js +24 -0
  755. package/dist/popover.es.js.map +1 -0
  756. package/dist/progress.cjs.js +2 -0
  757. package/dist/progress.cjs.js.map +1 -0
  758. package/dist/progress.es.js +24 -0
  759. package/dist/progress.es.js.map +1 -0
  760. package/dist/radio-group.cjs.js +2 -0
  761. package/dist/radio-group.cjs.js.map +1 -0
  762. package/dist/radio-group.es.js +27 -0
  763. package/dist/radio-group.es.js.map +1 -0
  764. package/dist/resizable.cjs.js +2 -0
  765. package/dist/resizable.cjs.js.map +1 -0
  766. package/dist/resizable.es.js +34 -0
  767. package/dist/resizable.es.js.map +1 -0
  768. package/dist/scroll-area.cjs.js +2 -0
  769. package/dist/scroll-area.cjs.js.map +1 -0
  770. package/dist/scroll-area.es.js +30 -0
  771. package/dist/scroll-area.es.js.map +1 -0
  772. package/dist/search.cjs.js +2 -0
  773. package/dist/search.cjs.js.map +1 -0
  774. package/dist/search.es.js +51 -0
  775. package/dist/search.es.js.map +1 -0
  776. package/dist/select.cjs.js +2 -0
  777. package/dist/select.cjs.js.map +1 -0
  778. package/dist/select.es.js +100 -0
  779. package/dist/select.es.js.map +1 -0
  780. package/dist/separator.cjs.js +2 -0
  781. package/dist/separator.cjs.js.map +1 -0
  782. package/dist/separator.es.js +18 -0
  783. package/dist/separator.es.js.map +1 -0
  784. package/dist/sheet.cjs.js +2 -0
  785. package/dist/sheet.cjs.js.map +1 -0
  786. package/dist/sheet.es.js +64 -0
  787. package/dist/sheet.es.js.map +1 -0
  788. package/dist/skeleton.cjs.js +2 -0
  789. package/dist/skeleton.cjs.js.map +1 -0
  790. package/dist/skeleton.es.js +9 -0
  791. package/dist/skeleton.es.js.map +1 -0
  792. package/dist/slider.cjs.js +2 -0
  793. package/dist/slider.cjs.js.map +1 -0
  794. package/dist/slider.es.js +20 -0
  795. package/dist/slider.es.js.map +1 -0
  796. package/dist/sonner.cjs.js +2 -0
  797. package/dist/sonner.cjs.js.map +1 -0
  798. package/dist/sonner.es.js +25 -0
  799. package/dist/sonner.es.js.map +1 -0
  800. package/dist/src/index.d.ts +4 -0
  801. package/dist/src/index.d.ts.map +1 -0
  802. package/dist/src/index.js +3 -0
  803. package/dist/switch.cjs.js +2 -0
  804. package/dist/switch.cjs.js.map +1 -0
  805. package/dist/switch.es.js +27 -0
  806. package/dist/switch.es.js.map +1 -0
  807. package/dist/table.cjs.js +2 -0
  808. package/dist/table.cjs.js.map +1 -0
  809. package/dist/table.es.js +58 -0
  810. package/dist/table.es.js.map +1 -0
  811. package/dist/tabs.cjs.js +2 -0
  812. package/dist/tabs.cjs.js.map +1 -0
  813. package/dist/tabs.es.js +46 -0
  814. package/dist/tabs.es.js.map +1 -0
  815. package/dist/text.cjs.js +2 -0
  816. package/dist/text.cjs.js.map +1 -0
  817. package/dist/text.es.js +42 -0
  818. package/dist/text.es.js.map +1 -0
  819. package/dist/textarea.cjs.js +2 -0
  820. package/dist/textarea.cjs.js.map +1 -0
  821. package/dist/textarea.es.js +19 -0
  822. package/dist/textarea.es.js.map +1 -0
  823. package/dist/theme-provider.cjs.js +2 -0
  824. package/dist/theme-provider.cjs.js.map +1 -0
  825. package/dist/theme-provider.es.js +9 -0
  826. package/dist/theme-provider.es.js.map +1 -0
  827. package/dist/theme-toggle-BTT5z37-.js +2 -0
  828. package/dist/theme-toggle-BTT5z37-.js.map +1 -0
  829. package/dist/theme-toggle-Dhc53hqa.mjs +176 -0
  830. package/dist/theme-toggle-Dhc53hqa.mjs.map +1 -0
  831. package/dist/theme-toggle.cjs.js +2 -0
  832. package/dist/theme-toggle.cjs.js.map +1 -0
  833. package/dist/theme-toggle.es.js +9 -0
  834. package/dist/theme-toggle.es.js.map +1 -0
  835. package/dist/toast.cjs.js +2 -0
  836. package/dist/toast.cjs.js.map +1 -0
  837. package/dist/toast.es.js +70 -0
  838. package/dist/toast.es.js.map +1 -0
  839. package/dist/toaster-BOqCGbZ6.js +2 -0
  840. package/dist/toaster-BOqCGbZ6.js.map +1 -0
  841. package/dist/toaster-CmNmQ6jI.mjs +119 -0
  842. package/dist/toaster-CmNmQ6jI.mjs.map +1 -0
  843. package/dist/toaster.cjs.js +2 -0
  844. package/dist/toaster.cjs.js.map +1 -0
  845. package/dist/toaster.es.js +7 -0
  846. package/dist/toaster.es.js.map +1 -0
  847. package/dist/toggle-CYawMoye.mjs +25 -0
  848. package/dist/toggle-CYawMoye.mjs.map +1 -0
  849. package/dist/toggle-Dmzk_m4r.js +2 -0
  850. package/dist/toggle-Dmzk_m4r.js.map +1 -0
  851. package/dist/toggle-group.cjs.js +2 -0
  852. package/dist/toggle-group.cjs.js.map +1 -0
  853. package/dist/toggle-group.es.js +37 -0
  854. package/dist/toggle-group.es.js.map +1 -0
  855. package/dist/toggle.cjs.js +2 -0
  856. package/dist/toggle.cjs.js.map +1 -0
  857. package/dist/toggle.es.js +13 -0
  858. package/dist/toggle.es.js.map +1 -0
  859. package/dist/tooltip.cjs.js +2 -0
  860. package/dist/tooltip.cjs.js.map +1 -0
  861. package/dist/tooltip.es.js +29 -0
  862. package/dist/tooltip.es.js.map +1 -0
  863. package/dist/utils-5NfNUIaP.js +2 -0
  864. package/dist/utils-5NfNUIaP.js.map +1 -0
  865. package/dist/utils-BfGqxkzX.mjs +8 -0
  866. package/dist/utils-BfGqxkzX.mjs.map +1 -0
  867. package/dist/vendor-B8N-rYkV.mjs +25431 -0
  868. package/dist/vendor-B8N-rYkV.mjs.map +1 -0
  869. package/dist/vendor-D51Wvbw-.js +68 -0
  870. package/dist/vendor-D51Wvbw-.js.map +1 -0
  871. package/docs/architecture-pivot.md +165 -0
  872. package/docs/native-setup-decision.md +57 -0
  873. package/docs/phase-1-tracker.md +144 -0
  874. package/docs/release-tooling-evaluation.md +67 -0
  875. package/docs/universal-implementation.md +195 -0
  876. package/docs/update-plan.md +268 -0
  877. package/eslint.config.mjs +1 -1
  878. package/nx.json +50 -0
  879. package/package.json +68 -60
  880. package/packages/.gitkeep +0 -0
  881. package/packages/design-tokens/CHANGELOG.md +8 -0
  882. package/packages/design-tokens/package.json +20 -0
  883. package/packages/design-tokens/src/index.ts +35 -0
  884. package/packages/design-tokens/src/palette.ts +36 -0
  885. package/packages/design-tokens/src/radii.ts +26 -0
  886. package/packages/design-tokens/src/shadows.ts +16 -0
  887. package/packages/design-tokens/src/spacing.ts +33 -0
  888. package/packages/design-tokens/src/theme.ts +54 -0
  889. package/packages/design-tokens/src/typography.ts +36 -0
  890. package/packages/design-tokens/tsconfig.json +17 -0
  891. package/packages/ui-core/CHANGELOG.md +8 -0
  892. package/packages/ui-core/package.json +40 -0
  893. package/packages/ui-core/src/contracts/accordion.ts +23 -0
  894. package/packages/ui-core/src/contracts/alert-dialog.ts +48 -0
  895. package/packages/ui-core/src/contracts/alert.ts +17 -0
  896. package/packages/ui-core/src/contracts/aspect-ratio.ts +7 -0
  897. package/packages/ui-core/src/contracts/avatar.ts +17 -0
  898. package/packages/ui-core/src/contracts/badge.ts +7 -0
  899. package/packages/ui-core/src/contracts/breadcrumb.ts +37 -0
  900. package/packages/ui-core/src/contracts/button.ts +17 -0
  901. package/packages/ui-core/src/contracts/calendar.ts +4 -0
  902. package/packages/ui-core/src/contracts/card.ts +11 -0
  903. package/packages/ui-core/src/contracts/carousel.ts +29 -0
  904. package/packages/ui-core/src/contracts/chart.ts +31 -0
  905. package/packages/ui-core/src/contracts/checkbox.ts +11 -0
  906. package/packages/ui-core/src/contracts/collapsible.ts +21 -0
  907. package/packages/ui-core/src/contracts/command.ts +43 -0
  908. package/packages/ui-core/src/contracts/context-menu.ts +78 -0
  909. package/packages/ui-core/src/contracts/dialog.ts +29 -0
  910. package/packages/ui-core/src/contracts/drawer.ts +39 -0
  911. package/packages/ui-core/src/contracts/dropdown-menu.ts +87 -0
  912. package/packages/ui-core/src/contracts/form.ts +29 -0
  913. package/packages/ui-core/src/contracts/hover-card.ts +21 -0
  914. package/packages/ui-core/src/contracts/input.ts +11 -0
  915. package/packages/ui-core/src/contracts/label.ts +7 -0
  916. package/packages/ui-core/src/contracts/menubar.ts +86 -0
  917. package/packages/ui-core/src/contracts/navigation-menu.ts +55 -0
  918. package/packages/ui-core/src/contracts/pagination.ts +38 -0
  919. package/packages/ui-core/src/contracts/popover.ts +28 -0
  920. package/packages/ui-core/src/contracts/progress.ts +4 -0
  921. package/packages/ui-core/src/contracts/radio.ts +16 -0
  922. package/packages/ui-core/src/contracts/resizable.ts +36 -0
  923. package/packages/ui-core/src/contracts/scroll-area.ts +15 -0
  924. package/packages/ui-core/src/contracts/search.ts +13 -0
  925. package/packages/ui-core/src/contracts/select.ts +64 -0
  926. package/packages/ui-core/src/contracts/separator.ts +5 -0
  927. package/packages/ui-core/src/contracts/sheet.ts +58 -0
  928. package/packages/ui-core/src/contracts/skeleton.ts +6 -0
  929. package/packages/ui-core/src/contracts/slider.ts +15 -0
  930. package/packages/ui-core/src/contracts/sonner.ts +15 -0
  931. package/packages/ui-core/src/contracts/switch.ts +11 -0
  932. package/packages/ui-core/src/contracts/table.ts +41 -0
  933. package/packages/ui-core/src/contracts/tabs.ts +31 -0
  934. package/packages/ui-core/src/contracts/text.ts +12 -0
  935. package/packages/ui-core/src/contracts/textarea.ts +7 -0
  936. package/packages/ui-core/src/contracts/theme-provider.ts +14 -0
  937. package/packages/ui-core/src/contracts/theme-toggle.ts +15 -0
  938. package/packages/ui-core/src/contracts/toast.ts +15 -0
  939. package/packages/ui-core/src/contracts/toaster.ts +3 -0
  940. package/packages/ui-core/src/contracts/toggle-group.ts +23 -0
  941. package/packages/ui-core/src/contracts/toggle.ts +49 -0
  942. package/packages/ui-core/src/contracts/tooltip.ts +28 -0
  943. package/packages/ui-core/src/index.ts +327 -0
  944. package/packages/ui-core/tsconfig.json +18 -0
  945. package/packages/ui-native/CHANGELOG.md +8 -0
  946. package/packages/ui-native/package.json +76 -0
  947. package/packages/ui-native/src/accordion.tsx +93 -0
  948. package/packages/ui-native/src/alert-dialog.tsx +123 -0
  949. package/packages/ui-native/src/alert.tsx +50 -0
  950. package/packages/ui-native/src/aspect-ratio.tsx +9 -0
  951. package/packages/ui-native/src/avatar.tsx +38 -0
  952. package/packages/ui-native/src/badge.tsx +51 -0
  953. package/packages/ui-native/src/breadcrumb.tsx +9 -0
  954. package/packages/ui-native/src/button.test.tsx +27 -0
  955. package/packages/ui-native/src/button.tsx +75 -0
  956. package/packages/ui-native/src/calendar.tsx +9 -0
  957. package/packages/ui-native/src/card.test.tsx +33 -0
  958. package/packages/ui-native/src/card.tsx +56 -0
  959. package/packages/ui-native/src/carousel.tsx +9 -0
  960. package/packages/ui-native/src/chart.tsx +9 -0
  961. package/packages/ui-native/src/checkbox.test.tsx +58 -0
  962. package/packages/ui-native/src/checkbox.tsx +31 -0
  963. package/packages/ui-native/src/collapsible.test.tsx +50 -0
  964. package/packages/ui-native/src/collapsible.tsx +15 -0
  965. package/packages/ui-native/src/command.tsx +9 -0
  966. package/packages/ui-native/src/context-menu.tsx +9 -0
  967. package/packages/ui-native/src/dialog.test.tsx +91 -0
  968. package/packages/ui-native/src/dialog.tsx +121 -0
  969. package/packages/ui-native/src/drawer.tsx +9 -0
  970. package/packages/ui-native/src/dropdown-menu.tsx +9 -0
  971. package/packages/ui-native/src/form.tsx +9 -0
  972. package/packages/ui-native/src/hover-card.tsx +9 -0
  973. package/packages/ui-native/src/index.ts +209 -0
  974. package/packages/ui-native/src/input.test.tsx +27 -0
  975. package/packages/ui-native/src/input.tsx +27 -0
  976. package/packages/ui-native/src/label.tsx +29 -0
  977. package/packages/ui-native/src/lib/render-native.tsx +17 -0
  978. package/packages/ui-native/src/menubar.tsx +9 -0
  979. package/packages/ui-native/src/nativewind-env.d.ts +1 -0
  980. package/packages/ui-native/src/navigation-menu.tsx +9 -0
  981. package/packages/ui-native/src/pagination.tsx +9 -0
  982. package/packages/ui-native/src/popover.tsx +9 -0
  983. package/packages/ui-native/src/progress.tsx +9 -0
  984. package/packages/ui-native/src/radio-group.test.tsx +77 -0
  985. package/packages/ui-native/src/radio-group.tsx +42 -0
  986. package/packages/ui-native/src/resizable.tsx +25 -0
  987. package/packages/ui-native/src/scroll-area.tsx +9 -0
  988. package/packages/ui-native/src/search.tsx +17 -0
  989. package/packages/ui-native/src/select.tsx +229 -0
  990. package/packages/ui-native/src/separator.tsx +20 -0
  991. package/packages/ui-native/src/sheet.test.tsx +93 -0
  992. package/packages/ui-native/src/sheet.tsx +127 -0
  993. package/packages/ui-native/src/skeleton.test.tsx +29 -0
  994. package/packages/ui-native/src/skeleton.tsx +31 -0
  995. package/packages/ui-native/src/slider.tsx +9 -0
  996. package/packages/ui-native/src/sonner.tsx +9 -0
  997. package/packages/ui-native/src/switch.tsx +34 -0
  998. package/packages/ui-native/src/table.tsx +73 -0
  999. package/packages/ui-native/src/tabs.tsx +74 -0
  1000. package/packages/ui-native/src/text.test.tsx +24 -0
  1001. package/packages/ui-native/src/text.tsx +43 -0
  1002. package/packages/ui-native/src/textarea.test.tsx +27 -0
  1003. package/packages/ui-native/src/textarea.tsx +29 -0
  1004. package/packages/ui-native/src/theme-provider.tsx +6 -0
  1005. package/packages/ui-native/src/theme-toggle.tsx +11 -0
  1006. package/packages/ui-native/src/toast.test.tsx +61 -0
  1007. package/packages/ui-native/src/toast.tsx +88 -0
  1008. package/packages/ui-native/src/toaster.tsx +9 -0
  1009. package/packages/ui-native/src/toggle-group.tsx +78 -0
  1010. package/packages/ui-native/src/toggle.tsx +35 -0
  1011. package/packages/ui-native/src/tooltip.tsx +44 -0
  1012. package/packages/ui-native/tsconfig.json +23 -0
  1013. package/packages/ui-native/vite.config.ts +17 -0
  1014. package/packages/ui-web/CHANGELOG.md +8 -0
  1015. package/packages/ui-web/package.json +84 -0
  1016. package/packages/ui-web/src/accordion.tsx +58 -0
  1017. package/packages/ui-web/src/alert-dialog.test.tsx +91 -0
  1018. package/packages/ui-web/src/alert-dialog.tsx +121 -0
  1019. package/packages/ui-web/src/alert.test.tsx +47 -0
  1020. package/packages/ui-web/src/alert.tsx +49 -0
  1021. package/packages/ui-web/src/aspect-ratio.test.tsx +34 -0
  1022. package/packages/ui-web/src/aspect-ratio.tsx +7 -0
  1023. package/packages/ui-web/src/avatar.tsx +40 -0
  1024. package/packages/ui-web/src/badge.tsx +34 -0
  1025. package/packages/ui-web/src/breadcrumb.tsx +105 -0
  1026. package/packages/ui-web/src/button.test.tsx +62 -0
  1027. package/packages/ui-web/src/button.tsx +47 -0
  1028. package/packages/ui-web/src/calendar.test.tsx +23 -0
  1029. package/packages/ui-web/src/calendar.tsx +163 -0
  1030. package/packages/ui-web/src/card.test.tsx +35 -0
  1031. package/packages/ui-web/src/card.tsx +46 -0
  1032. package/packages/ui-web/src/carousel.test.tsx +37 -0
  1033. package/packages/ui-web/src/carousel.tsx +234 -0
  1034. package/packages/ui-web/src/chart.test.tsx +62 -0
  1035. package/packages/ui-web/src/chart.tsx +296 -0
  1036. package/packages/ui-web/src/checkbox.test.tsx +30 -0
  1037. package/packages/ui-web/src/checkbox.tsx +31 -0
  1038. package/packages/ui-web/src/collapsible.test.tsx +51 -0
  1039. package/packages/ui-web/src/collapsible.tsx +15 -0
  1040. package/packages/ui-web/src/command.test.tsx +79 -0
  1041. package/packages/ui-web/src/command.tsx +154 -0
  1042. package/packages/ui-web/src/context-menu.test.tsx +37 -0
  1043. package/packages/ui-web/src/context-menu.tsx +208 -0
  1044. package/packages/ui-web/src/dialog.test.tsx +66 -0
  1045. package/packages/ui-web/src/dialog.tsx +95 -0
  1046. package/packages/ui-web/src/drawer.test.tsx +68 -0
  1047. package/packages/ui-web/src/drawer.tsx +110 -0
  1048. package/packages/ui-web/src/dropdown-menu.test.tsx +93 -0
  1049. package/packages/ui-web/src/dropdown-menu.tsx +212 -0
  1050. package/packages/ui-web/src/form.test.tsx +84 -0
  1051. package/packages/ui-web/src/form.tsx +160 -0
  1052. package/packages/ui-web/src/hooks/use-theme.ts +15 -0
  1053. package/packages/ui-web/src/hooks/use-toast.ts +189 -0
  1054. package/packages/ui-web/src/hover-card.test.tsx +48 -0
  1055. package/packages/ui-web/src/hover-card.tsx +35 -0
  1056. package/packages/ui-web/src/index.ts +474 -0
  1057. package/packages/ui-web/src/input.test.tsx +33 -0
  1058. package/packages/ui-web/src/input.tsx +23 -0
  1059. package/packages/ui-web/src/label.tsx +21 -0
  1060. package/packages/ui-web/src/lib/utils.ts +6 -0
  1061. package/packages/ui-web/src/menubar.test.tsx +92 -0
  1062. package/packages/ui-web/src/menubar.tsx +244 -0
  1063. package/packages/ui-web/src/navigation-menu.test.tsx +53 -0
  1064. package/packages/ui-web/src/navigation-menu.tsx +143 -0
  1065. package/packages/ui-web/src/pagination.test.tsx +57 -0
  1066. package/packages/ui-web/src/pagination.tsx +107 -0
  1067. package/packages/ui-web/src/popover.test.tsx +31 -0
  1068. package/packages/ui-web/src/popover.tsx +45 -0
  1069. package/packages/ui-web/src/progress.test.tsx +18 -0
  1070. package/packages/ui-web/src/progress.tsx +28 -0
  1071. package/packages/ui-web/src/radio-group.test.tsx +39 -0
  1072. package/packages/ui-web/src/radio-group.tsx +41 -0
  1073. package/packages/ui-web/src/resizable.test.tsx +23 -0
  1074. package/packages/ui-web/src/resizable.tsx +59 -0
  1075. package/packages/ui-web/src/scroll-area.test.tsx +15 -0
  1076. package/packages/ui-web/src/scroll-area.tsx +42 -0
  1077. package/packages/ui-web/src/search.test.tsx +81 -0
  1078. package/packages/ui-web/src/search.tsx +87 -0
  1079. package/packages/ui-web/src/select.test.tsx +42 -0
  1080. package/packages/ui-web/src/select.tsx +169 -0
  1081. package/packages/ui-web/src/separator.test.tsx +16 -0
  1082. package/packages/ui-web/src/separator.tsx +24 -0
  1083. package/packages/ui-web/src/setupTests.ts +114 -0
  1084. package/packages/ui-web/src/sheet.test.tsx +48 -0
  1085. package/packages/ui-web/src/sheet.tsx +136 -0
  1086. package/packages/ui-web/src/skeleton.test.tsx +13 -0
  1087. package/packages/ui-web/src/skeleton.tsx +10 -0
  1088. package/packages/ui-web/src/slider.test.tsx +18 -0
  1089. package/packages/ui-web/src/slider.tsx +27 -0
  1090. package/packages/ui-web/src/sonner.test.tsx +13 -0
  1091. package/packages/ui-web/src/sonner.tsx +32 -0
  1092. package/packages/ui-web/src/switch.test.tsx +22 -0
  1093. package/packages/ui-web/src/switch.tsx +31 -0
  1094. package/packages/ui-web/src/table.test.tsx +29 -0
  1095. package/packages/ui-web/src/table.tsx +104 -0
  1096. package/packages/ui-web/src/tabs.test.tsx +43 -0
  1097. package/packages/ui-web/src/tabs.tsx +62 -0
  1098. package/packages/ui-web/src/text.test.tsx +34 -0
  1099. package/packages/ui-web/src/text.tsx +55 -0
  1100. package/packages/ui-web/src/textarea.test.tsx +21 -0
  1101. package/packages/ui-web/src/textarea.tsx +25 -0
  1102. package/packages/ui-web/src/theme-provider.tsx +15 -0
  1103. package/packages/ui-web/src/theme-toggle.test.tsx +49 -0
  1104. package/packages/ui-web/src/theme-toggle.tsx +92 -0
  1105. package/packages/ui-web/src/toast.test.tsx +42 -0
  1106. package/packages/ui-web/src/toast.tsx +111 -0
  1107. package/packages/ui-web/src/toaster.tsx +27 -0
  1108. package/packages/ui-web/src/toggle-group.test.tsx +40 -0
  1109. package/packages/ui-web/src/toggle-group.tsx +55 -0
  1110. package/packages/ui-web/src/toggle.test.tsx +21 -0
  1111. package/packages/ui-web/src/toggle.tsx +24 -0
  1112. package/packages/ui-web/src/tooltip.tsx +51 -0
  1113. package/packages/ui-web/tsconfig.json +24 -0
  1114. package/packages/ui-web/vite.config.ts +21 -0
  1115. package/release-please-config.json +25 -1
  1116. package/scripts/build-registry.ts +60 -27
  1117. package/scripts/sync-tokens.ts +86 -0
  1118. package/scripts/validate.ts +74 -0
  1119. package/src/globals.css +22 -0
  1120. package/src/index.ts +2 -56
  1121. package/src/types/nativewind.d.ts +19 -0
  1122. package/tailwind.config.js +48 -0
  1123. package/tsconfig.build.json +13 -3
  1124. package/tsconfig.json +8 -2
  1125. package/vite.config.ts +61 -5
  1126. package/vitest.config.ts +7 -1
  1127. package/wrangler.toml +1 -1
  1128. package/.yarn/releases/yarn-4.12.0.cjs +0 -942
  1129. package/dist/App.d.ts +0 -3
  1130. package/dist/App.d.ts.map +0 -1
  1131. package/dist/components/docs/CodeBlock.d.ts +0 -8
  1132. package/dist/components/docs/CodeBlock.d.ts.map +0 -1
  1133. package/dist/components/docs/ComponentShowcase.d.ts +0 -17
  1134. package/dist/components/docs/ComponentShowcase.d.ts.map +0 -1
  1135. package/dist/components/docs/Footer.d.ts +0 -2
  1136. package/dist/components/docs/Footer.d.ts.map +0 -1
  1137. package/dist/components/docs/PropsTable.d.ts +0 -13
  1138. package/dist/components/docs/PropsTable.d.ts.map +0 -1
  1139. package/dist/components/docs/Sidebar.d.ts +0 -14
  1140. package/dist/components/docs/Sidebar.d.ts.map +0 -1
  1141. package/dist/components/docs/ThemeToggle.d.ts +0 -2
  1142. package/dist/components/docs/ThemeToggle.d.ts.map +0 -1
  1143. package/dist/components/docs/index.d.ts +0 -7
  1144. package/dist/components/docs/index.d.ts.map +0 -1
  1145. package/dist/components/ui/accordion.d.ts +0 -8
  1146. package/dist/components/ui/accordion.d.ts.map +0 -1
  1147. package/dist/components/ui/accordion.test.d.ts +0 -2
  1148. package/dist/components/ui/accordion.test.d.ts.map +0 -1
  1149. package/dist/components/ui/alert-dialog.d.ts +0 -21
  1150. package/dist/components/ui/alert-dialog.d.ts.map +0 -1
  1151. package/dist/components/ui/alert-dialog.test.d.ts +0 -2
  1152. package/dist/components/ui/alert-dialog.test.d.ts.map +0 -1
  1153. package/dist/components/ui/alert.d.ts +0 -9
  1154. package/dist/components/ui/alert.d.ts.map +0 -1
  1155. package/dist/components/ui/alert.test.d.ts +0 -2
  1156. package/dist/components/ui/alert.test.d.ts.map +0 -1
  1157. package/dist/components/ui/aspect-ratio.d.ts +0 -4
  1158. package/dist/components/ui/aspect-ratio.d.ts.map +0 -1
  1159. package/dist/components/ui/aspect-ratio.test.d.ts +0 -2
  1160. package/dist/components/ui/aspect-ratio.test.d.ts.map +0 -1
  1161. package/dist/components/ui/avatar.d.ts +0 -7
  1162. package/dist/components/ui/avatar.d.ts.map +0 -1
  1163. package/dist/components/ui/avatar.test.d.ts +0 -2
  1164. package/dist/components/ui/avatar.test.d.ts.map +0 -1
  1165. package/dist/components/ui/badge.d.ts +0 -10
  1166. package/dist/components/ui/badge.d.ts.map +0 -1
  1167. package/dist/components/ui/badge.test.d.ts +0 -2
  1168. package/dist/components/ui/badge.test.d.ts.map +0 -1
  1169. package/dist/components/ui/breadcrumb.d.ts +0 -20
  1170. package/dist/components/ui/breadcrumb.d.ts.map +0 -1
  1171. package/dist/components/ui/breadcrumb.test.d.ts +0 -2
  1172. package/dist/components/ui/breadcrumb.test.d.ts.map +0 -1
  1173. package/dist/components/ui/button.d.ts +0 -12
  1174. package/dist/components/ui/button.d.ts.map +0 -1
  1175. package/dist/components/ui/button.test.d.ts +0 -2
  1176. package/dist/components/ui/button.test.d.ts.map +0 -1
  1177. package/dist/components/ui/calendar.d.ts +0 -9
  1178. package/dist/components/ui/calendar.d.ts.map +0 -1
  1179. package/dist/components/ui/calendar.test.d.ts +0 -2
  1180. package/dist/components/ui/calendar.test.d.ts.map +0 -1
  1181. package/dist/components/ui/card.d.ts +0 -9
  1182. package/dist/components/ui/card.d.ts.map +0 -1
  1183. package/dist/components/ui/card.test.d.ts +0 -2
  1184. package/dist/components/ui/card.test.d.ts.map +0 -1
  1185. package/dist/components/ui/carousel.d.ts +0 -19
  1186. package/dist/components/ui/carousel.d.ts.map +0 -1
  1187. package/dist/components/ui/carousel.test.d.ts +0 -2
  1188. package/dist/components/ui/carousel.test.d.ts.map +0 -1
  1189. package/dist/components/ui/chart.d.ts +0 -63
  1190. package/dist/components/ui/chart.d.ts.map +0 -1
  1191. package/dist/components/ui/chart.test.d.ts +0 -2
  1192. package/dist/components/ui/chart.test.d.ts.map +0 -1
  1193. package/dist/components/ui/checkbox.d.ts +0 -5
  1194. package/dist/components/ui/checkbox.d.ts.map +0 -1
  1195. package/dist/components/ui/checkbox.test.d.ts +0 -2
  1196. package/dist/components/ui/checkbox.test.d.ts.map +0 -1
  1197. package/dist/components/ui/collapsible.d.ts +0 -6
  1198. package/dist/components/ui/collapsible.d.ts.map +0 -1
  1199. package/dist/components/ui/collapsible.test.d.ts +0 -2
  1200. package/dist/components/ui/collapsible.test.d.ts.map +0 -1
  1201. package/dist/components/ui/command.d.ts +0 -81
  1202. package/dist/components/ui/command.d.ts.map +0 -1
  1203. package/dist/components/ui/command.test.d.ts +0 -2
  1204. package/dist/components/ui/command.test.d.ts.map +0 -1
  1205. package/dist/components/ui/context-menu.d.ts +0 -28
  1206. package/dist/components/ui/context-menu.d.ts.map +0 -1
  1207. package/dist/components/ui/context-menu.test.d.ts +0 -2
  1208. package/dist/components/ui/context-menu.test.d.ts.map +0 -1
  1209. package/dist/components/ui/dialog.d.ts.map +0 -1
  1210. package/dist/components/ui/dialog.test.d.ts +0 -2
  1211. package/dist/components/ui/dialog.test.d.ts.map +0 -1
  1212. package/dist/components/ui/drawer.d.ts +0 -23
  1213. package/dist/components/ui/drawer.d.ts.map +0 -1
  1214. package/dist/components/ui/drawer.test.d.ts +0 -2
  1215. package/dist/components/ui/drawer.test.d.ts.map +0 -1
  1216. package/dist/components/ui/dropdown-menu.d.ts +0 -28
  1217. package/dist/components/ui/dropdown-menu.d.ts.map +0 -1
  1218. package/dist/components/ui/dropdown-menu.test.d.ts +0 -2
  1219. package/dist/components/ui/dropdown-menu.test.d.ts.map +0 -1
  1220. package/dist/components/ui/form.d.ts +0 -24
  1221. package/dist/components/ui/form.d.ts.map +0 -1
  1222. package/dist/components/ui/form.test.d.ts +0 -2
  1223. package/dist/components/ui/form.test.d.ts.map +0 -1
  1224. package/dist/components/ui/hover-card.d.ts +0 -7
  1225. package/dist/components/ui/hover-card.d.ts.map +0 -1
  1226. package/dist/components/ui/hover-card.test.d.ts +0 -2
  1227. package/dist/components/ui/hover-card.test.d.ts.map +0 -1
  1228. package/dist/components/ui/input.d.ts +0 -4
  1229. package/dist/components/ui/input.d.ts.map +0 -1
  1230. package/dist/components/ui/input.test.d.ts +0 -2
  1231. package/dist/components/ui/input.test.d.ts.map +0 -1
  1232. package/dist/components/ui/label.d.ts +0 -6
  1233. package/dist/components/ui/label.d.ts.map +0 -1
  1234. package/dist/components/ui/label.test.d.ts +0 -2
  1235. package/dist/components/ui/label.test.d.ts.map +0 -1
  1236. package/dist/components/ui/menubar.d.ts +0 -29
  1237. package/dist/components/ui/menubar.d.ts.map +0 -1
  1238. package/dist/components/ui/menubar.test.d.ts +0 -2
  1239. package/dist/components/ui/menubar.test.d.ts.map +0 -1
  1240. package/dist/components/ui/navigation-menu.d.ts +0 -13
  1241. package/dist/components/ui/navigation-menu.d.ts.map +0 -1
  1242. package/dist/components/ui/navigation-menu.test.d.ts +0 -2
  1243. package/dist/components/ui/navigation-menu.test.d.ts.map +0 -1
  1244. package/dist/components/ui/pagination.d.ts +0 -29
  1245. package/dist/components/ui/pagination.d.ts.map +0 -1
  1246. package/dist/components/ui/pagination.test.d.ts +0 -2
  1247. package/dist/components/ui/pagination.test.d.ts.map +0 -1
  1248. package/dist/components/ui/popover.d.ts +0 -8
  1249. package/dist/components/ui/popover.d.ts.map +0 -1
  1250. package/dist/components/ui/popover.test.d.ts +0 -2
  1251. package/dist/components/ui/popover.test.d.ts.map +0 -1
  1252. package/dist/components/ui/progress.d.ts +0 -5
  1253. package/dist/components/ui/progress.d.ts.map +0 -1
  1254. package/dist/components/ui/progress.test.d.ts +0 -2
  1255. package/dist/components/ui/progress.test.d.ts.map +0 -1
  1256. package/dist/components/ui/radio-group.d.ts +0 -6
  1257. package/dist/components/ui/radio-group.d.ts.map +0 -1
  1258. package/dist/components/ui/radio-group.test.d.ts +0 -2
  1259. package/dist/components/ui/radio-group.test.d.ts.map +0 -1
  1260. package/dist/components/ui/resizable.d.ts +0 -11
  1261. package/dist/components/ui/resizable.d.ts.map +0 -1
  1262. package/dist/components/ui/resizable.test.d.ts +0 -2
  1263. package/dist/components/ui/resizable.test.d.ts.map +0 -1
  1264. package/dist/components/ui/scroll-area.d.ts +0 -6
  1265. package/dist/components/ui/scroll-area.d.ts.map +0 -1
  1266. package/dist/components/ui/scroll-area.test.d.ts +0 -2
  1267. package/dist/components/ui/scroll-area.test.d.ts.map +0 -1
  1268. package/dist/components/ui/search.d.ts +0 -16
  1269. package/dist/components/ui/search.d.ts.map +0 -1
  1270. package/dist/components/ui/search.test.d.ts +0 -2
  1271. package/dist/components/ui/search.test.d.ts.map +0 -1
  1272. package/dist/components/ui/select.d.ts +0 -14
  1273. package/dist/components/ui/select.d.ts.map +0 -1
  1274. package/dist/components/ui/select.test.d.ts +0 -2
  1275. package/dist/components/ui/select.test.d.ts.map +0 -1
  1276. package/dist/components/ui/separator.d.ts +0 -5
  1277. package/dist/components/ui/separator.d.ts.map +0 -1
  1278. package/dist/components/ui/separator.test.d.ts +0 -2
  1279. package/dist/components/ui/separator.test.d.ts.map +0 -1
  1280. package/dist/components/ui/sheet.d.ts +0 -26
  1281. package/dist/components/ui/sheet.d.ts.map +0 -1
  1282. package/dist/components/ui/sheet.test.d.ts +0 -2
  1283. package/dist/components/ui/sheet.test.d.ts.map +0 -1
  1284. package/dist/components/ui/skeleton.d.ts +0 -4
  1285. package/dist/components/ui/skeleton.d.ts.map +0 -1
  1286. package/dist/components/ui/skeleton.test.d.ts +0 -2
  1287. package/dist/components/ui/skeleton.test.d.ts.map +0 -1
  1288. package/dist/components/ui/slider.d.ts +0 -5
  1289. package/dist/components/ui/slider.d.ts.map +0 -1
  1290. package/dist/components/ui/slider.test.d.ts +0 -2
  1291. package/dist/components/ui/slider.test.d.ts.map +0 -1
  1292. package/dist/components/ui/sonner.d.ts +0 -6
  1293. package/dist/components/ui/sonner.d.ts.map +0 -1
  1294. package/dist/components/ui/sonner.test.d.ts +0 -2
  1295. package/dist/components/ui/sonner.test.d.ts.map +0 -1
  1296. package/dist/components/ui/switch.d.ts +0 -5
  1297. package/dist/components/ui/switch.d.ts.map +0 -1
  1298. package/dist/components/ui/switch.test.d.ts +0 -2
  1299. package/dist/components/ui/switch.test.d.ts.map +0 -1
  1300. package/dist/components/ui/table.d.ts +0 -11
  1301. package/dist/components/ui/table.d.ts.map +0 -1
  1302. package/dist/components/ui/table.test.d.ts +0 -2
  1303. package/dist/components/ui/table.test.d.ts.map +0 -1
  1304. package/dist/components/ui/tabs.d.ts +0 -8
  1305. package/dist/components/ui/tabs.d.ts.map +0 -1
  1306. package/dist/components/ui/tabs.test.d.ts +0 -2
  1307. package/dist/components/ui/tabs.test.d.ts.map +0 -1
  1308. package/dist/components/ui/textarea.d.ts +0 -4
  1309. package/dist/components/ui/textarea.d.ts.map +0 -1
  1310. package/dist/components/ui/textarea.test.d.ts +0 -2
  1311. package/dist/components/ui/textarea.test.d.ts.map +0 -1
  1312. package/dist/components/ui/theme-provider.d.ts +0 -4
  1313. package/dist/components/ui/theme-provider.d.ts.map +0 -1
  1314. package/dist/components/ui/theme-provider.test.d.ts +0 -2
  1315. package/dist/components/ui/theme-provider.test.d.ts.map +0 -1
  1316. package/dist/components/ui/theme-toggle.d.ts +0 -17
  1317. package/dist/components/ui/theme-toggle.d.ts.map +0 -1
  1318. package/dist/components/ui/theme-toggle.test.d.ts +0 -2
  1319. package/dist/components/ui/theme-toggle.test.d.ts.map +0 -1
  1320. package/dist/components/ui/toast.d.ts.map +0 -1
  1321. package/dist/components/ui/toast.test.d.ts +0 -2
  1322. package/dist/components/ui/toast.test.d.ts.map +0 -1
  1323. package/dist/components/ui/toaster.d.ts.map +0 -1
  1324. package/dist/components/ui/toggle-group.d.ts +0 -13
  1325. package/dist/components/ui/toggle-group.d.ts.map +0 -1
  1326. package/dist/components/ui/toggle-group.test.d.ts +0 -2
  1327. package/dist/components/ui/toggle-group.test.d.ts.map +0 -1
  1328. package/dist/components/ui/toggle.d.ts +0 -13
  1329. package/dist/components/ui/toggle.d.ts.map +0 -1
  1330. package/dist/components/ui/toggle.test.d.ts +0 -2
  1331. package/dist/components/ui/toggle.test.d.ts.map +0 -1
  1332. package/dist/components/ui/tooltip.d.ts +0 -8
  1333. package/dist/components/ui/tooltip.d.ts.map +0 -1
  1334. package/dist/components/ui/tooltip.test.d.ts +0 -2
  1335. package/dist/components/ui/tooltip.test.d.ts.map +0 -1
  1336. package/dist/hooks/use-theme.d.ts.map +0 -1
  1337. package/dist/hooks/use-theme.test.d.ts +0 -2
  1338. package/dist/hooks/use-theme.test.d.ts.map +0 -1
  1339. package/dist/hooks/use-toast.d.ts +0 -45
  1340. package/dist/hooks/use-toast.d.ts.map +0 -1
  1341. package/dist/index.d.ts +0 -54
  1342. package/dist/index.d.ts.map +0 -1
  1343. package/dist/lib/utils.d.ts.map +0 -1
  1344. package/dist/main.d.ts +0 -2
  1345. package/dist/main.d.ts.map +0 -1
  1346. package/dist/pages/ColorTokensDocs.d.ts +0 -2
  1347. package/dist/pages/ColorTokensDocs.d.ts.map +0 -1
  1348. package/dist/pages/GettingStarted.d.ts +0 -3
  1349. package/dist/pages/GettingStarted.d.ts.map +0 -1
  1350. package/dist/pages/components/AccordionDocs.d.ts +0 -2
  1351. package/dist/pages/components/AccordionDocs.d.ts.map +0 -1
  1352. package/dist/pages/components/AlertDialogDocs.d.ts +0 -2
  1353. package/dist/pages/components/AlertDialogDocs.d.ts.map +0 -1
  1354. package/dist/pages/components/AlertDocs.d.ts +0 -2
  1355. package/dist/pages/components/AlertDocs.d.ts.map +0 -1
  1356. package/dist/pages/components/AspectRatioDocs.d.ts +0 -2
  1357. package/dist/pages/components/AspectRatioDocs.d.ts.map +0 -1
  1358. package/dist/pages/components/AvatarDocs.d.ts +0 -2
  1359. package/dist/pages/components/AvatarDocs.d.ts.map +0 -1
  1360. package/dist/pages/components/BadgeDocs.d.ts +0 -2
  1361. package/dist/pages/components/BadgeDocs.d.ts.map +0 -1
  1362. package/dist/pages/components/BreadcrumbDocs.d.ts +0 -2
  1363. package/dist/pages/components/BreadcrumbDocs.d.ts.map +0 -1
  1364. package/dist/pages/components/ButtonDocs.d.ts +0 -2
  1365. package/dist/pages/components/ButtonDocs.d.ts.map +0 -1
  1366. package/dist/pages/components/CalendarDocs.d.ts +0 -2
  1367. package/dist/pages/components/CalendarDocs.d.ts.map +0 -1
  1368. package/dist/pages/components/CardDocs.d.ts +0 -2
  1369. package/dist/pages/components/CardDocs.d.ts.map +0 -1
  1370. package/dist/pages/components/CarouselDocs.d.ts +0 -2
  1371. package/dist/pages/components/CarouselDocs.d.ts.map +0 -1
  1372. package/dist/pages/components/ChartDocs.d.ts +0 -2
  1373. package/dist/pages/components/ChartDocs.d.ts.map +0 -1
  1374. package/dist/pages/components/CheckboxDocs.d.ts +0 -2
  1375. package/dist/pages/components/CheckboxDocs.d.ts.map +0 -1
  1376. package/dist/pages/components/CollapsibleDocs.d.ts +0 -2
  1377. package/dist/pages/components/CollapsibleDocs.d.ts.map +0 -1
  1378. package/dist/pages/components/CommandDocs.d.ts +0 -2
  1379. package/dist/pages/components/CommandDocs.d.ts.map +0 -1
  1380. package/dist/pages/components/ContextMenuDocs.d.ts +0 -2
  1381. package/dist/pages/components/ContextMenuDocs.d.ts.map +0 -1
  1382. package/dist/pages/components/DialogDocs.d.ts +0 -2
  1383. package/dist/pages/components/DialogDocs.d.ts.map +0 -1
  1384. package/dist/pages/components/DrawerDocs.d.ts +0 -2
  1385. package/dist/pages/components/DrawerDocs.d.ts.map +0 -1
  1386. package/dist/pages/components/DropdownMenuDocs.d.ts +0 -2
  1387. package/dist/pages/components/DropdownMenuDocs.d.ts.map +0 -1
  1388. package/dist/pages/components/FormDocs.d.ts +0 -2
  1389. package/dist/pages/components/FormDocs.d.ts.map +0 -1
  1390. package/dist/pages/components/HoverCardDocs.d.ts +0 -2
  1391. package/dist/pages/components/HoverCardDocs.d.ts.map +0 -1
  1392. package/dist/pages/components/InputDocs.d.ts +0 -2
  1393. package/dist/pages/components/InputDocs.d.ts.map +0 -1
  1394. package/dist/pages/components/LabelDocs.d.ts +0 -2
  1395. package/dist/pages/components/LabelDocs.d.ts.map +0 -1
  1396. package/dist/pages/components/MenubarDocs.d.ts +0 -2
  1397. package/dist/pages/components/MenubarDocs.d.ts.map +0 -1
  1398. package/dist/pages/components/NavigationMenuDocs.d.ts +0 -2
  1399. package/dist/pages/components/NavigationMenuDocs.d.ts.map +0 -1
  1400. package/dist/pages/components/PaginationDocs.d.ts +0 -2
  1401. package/dist/pages/components/PaginationDocs.d.ts.map +0 -1
  1402. package/dist/pages/components/PopoverDocs.d.ts +0 -2
  1403. package/dist/pages/components/PopoverDocs.d.ts.map +0 -1
  1404. package/dist/pages/components/ProgressDocs.d.ts +0 -2
  1405. package/dist/pages/components/ProgressDocs.d.ts.map +0 -1
  1406. package/dist/pages/components/RadioGroupDocs.d.ts +0 -2
  1407. package/dist/pages/components/RadioGroupDocs.d.ts.map +0 -1
  1408. package/dist/pages/components/ResizableDocs.d.ts +0 -2
  1409. package/dist/pages/components/ResizableDocs.d.ts.map +0 -1
  1410. package/dist/pages/components/ScrollAreaDocs.d.ts +0 -2
  1411. package/dist/pages/components/ScrollAreaDocs.d.ts.map +0 -1
  1412. package/dist/pages/components/SearchDocs.d.ts +0 -2
  1413. package/dist/pages/components/SearchDocs.d.ts.map +0 -1
  1414. package/dist/pages/components/SelectDocs.d.ts +0 -2
  1415. package/dist/pages/components/SelectDocs.d.ts.map +0 -1
  1416. package/dist/pages/components/SeparatorDocs.d.ts +0 -2
  1417. package/dist/pages/components/SeparatorDocs.d.ts.map +0 -1
  1418. package/dist/pages/components/SheetDocs.d.ts +0 -2
  1419. package/dist/pages/components/SheetDocs.d.ts.map +0 -1
  1420. package/dist/pages/components/SkeletonDocs.d.ts +0 -2
  1421. package/dist/pages/components/SkeletonDocs.d.ts.map +0 -1
  1422. package/dist/pages/components/SliderDocs.d.ts +0 -2
  1423. package/dist/pages/components/SliderDocs.d.ts.map +0 -1
  1424. package/dist/pages/components/SonnerDocs.d.ts +0 -2
  1425. package/dist/pages/components/SonnerDocs.d.ts.map +0 -1
  1426. package/dist/pages/components/SwitchDocs.d.ts +0 -2
  1427. package/dist/pages/components/SwitchDocs.d.ts.map +0 -1
  1428. package/dist/pages/components/TableDocs.d.ts +0 -2
  1429. package/dist/pages/components/TableDocs.d.ts.map +0 -1
  1430. package/dist/pages/components/TabsDocs.d.ts +0 -2
  1431. package/dist/pages/components/TabsDocs.d.ts.map +0 -1
  1432. package/dist/pages/components/TextareaDocs.d.ts +0 -2
  1433. package/dist/pages/components/TextareaDocs.d.ts.map +0 -1
  1434. package/dist/pages/components/ThemeToggleDocs.d.ts +0 -2
  1435. package/dist/pages/components/ThemeToggleDocs.d.ts.map +0 -1
  1436. package/dist/pages/components/ToastDocs.d.ts +0 -2
  1437. package/dist/pages/components/ToastDocs.d.ts.map +0 -1
  1438. package/dist/pages/components/ToggleDocs.d.ts +0 -2
  1439. package/dist/pages/components/ToggleDocs.d.ts.map +0 -1
  1440. package/dist/pages/components/ToggleGroupDocs.d.ts +0 -2
  1441. package/dist/pages/components/ToggleGroupDocs.d.ts.map +0 -1
  1442. package/dist/pages/components/TooltipDocs.d.ts +0 -2
  1443. package/dist/pages/components/TooltipDocs.d.ts.map +0 -1
  1444. package/dist/pages/index.d.ts +0 -50
  1445. package/dist/pages/index.d.ts.map +0 -1
  1446. package/dist/registry/accordion.json +0 -13
  1447. package/dist/registry/accordion.test.json +0 -13
  1448. package/dist/registry/alert-dialog.json +0 -13
  1449. package/dist/registry/alert-dialog.test.json +0 -13
  1450. package/dist/registry/alert.json +0 -13
  1451. package/dist/registry/alert.test.json +0 -13
  1452. package/dist/registry/aspect-ratio.json +0 -13
  1453. package/dist/registry/aspect-ratio.test.json +0 -13
  1454. package/dist/registry/avatar.json +0 -13
  1455. package/dist/registry/avatar.test.json +0 -13
  1456. package/dist/registry/badge.json +0 -13
  1457. package/dist/registry/badge.test.json +0 -13
  1458. package/dist/registry/breadcrumb.json +0 -13
  1459. package/dist/registry/breadcrumb.test.json +0 -13
  1460. package/dist/registry/button.json +0 -13
  1461. package/dist/registry/button.test.json +0 -13
  1462. package/dist/registry/calendar.json +0 -13
  1463. package/dist/registry/calendar.test.json +0 -13
  1464. package/dist/registry/card.json +0 -13
  1465. package/dist/registry/card.test.json +0 -13
  1466. package/dist/registry/carousel.json +0 -13
  1467. package/dist/registry/carousel.test.json +0 -13
  1468. package/dist/registry/chart.json +0 -13
  1469. package/dist/registry/chart.test.json +0 -13
  1470. package/dist/registry/checkbox.json +0 -13
  1471. package/dist/registry/checkbox.test.json +0 -13
  1472. package/dist/registry/collapsible.json +0 -13
  1473. package/dist/registry/collapsible.test.json +0 -13
  1474. package/dist/registry/command.json +0 -13
  1475. package/dist/registry/command.test.json +0 -13
  1476. package/dist/registry/context-menu.json +0 -13
  1477. package/dist/registry/context-menu.test.json +0 -13
  1478. package/dist/registry/dialog.json +0 -13
  1479. package/dist/registry/dialog.test.json +0 -13
  1480. package/dist/registry/drawer.json +0 -13
  1481. package/dist/registry/drawer.test.json +0 -13
  1482. package/dist/registry/dropdown-menu.json +0 -13
  1483. package/dist/registry/dropdown-menu.test.json +0 -13
  1484. package/dist/registry/form.json +0 -13
  1485. package/dist/registry/form.test.json +0 -13
  1486. package/dist/registry/hover-card.json +0 -13
  1487. package/dist/registry/hover-card.test.json +0 -13
  1488. package/dist/registry/index.json +0 -681
  1489. package/dist/registry/input.json +0 -13
  1490. package/dist/registry/input.test.json +0 -13
  1491. package/dist/registry/label.json +0 -13
  1492. package/dist/registry/label.test.json +0 -13
  1493. package/dist/registry/menubar.json +0 -13
  1494. package/dist/registry/menubar.test.json +0 -13
  1495. package/dist/registry/navigation-menu.json +0 -13
  1496. package/dist/registry/navigation-menu.test.json +0 -13
  1497. package/dist/registry/pagination.json +0 -13
  1498. package/dist/registry/pagination.test.json +0 -13
  1499. package/dist/registry/popover.json +0 -13
  1500. package/dist/registry/popover.test.json +0 -13
  1501. package/dist/registry/progress.json +0 -13
  1502. package/dist/registry/progress.test.json +0 -13
  1503. package/dist/registry/radio-group.json +0 -13
  1504. package/dist/registry/radio-group.test.json +0 -13
  1505. package/dist/registry/resizable.json +0 -13
  1506. package/dist/registry/resizable.test.json +0 -13
  1507. package/dist/registry/scroll-area.json +0 -13
  1508. package/dist/registry/scroll-area.test.json +0 -13
  1509. package/dist/registry/search.json +0 -13
  1510. package/dist/registry/search.test.json +0 -13
  1511. package/dist/registry/select.json +0 -13
  1512. package/dist/registry/select.test.json +0 -13
  1513. package/dist/registry/separator.json +0 -13
  1514. package/dist/registry/separator.test.json +0 -13
  1515. package/dist/registry/sheet.json +0 -13
  1516. package/dist/registry/sheet.test.json +0 -13
  1517. package/dist/registry/skeleton.json +0 -13
  1518. package/dist/registry/skeleton.test.json +0 -13
  1519. package/dist/registry/slider.json +0 -13
  1520. package/dist/registry/slider.test.json +0 -13
  1521. package/dist/registry/sonner.json +0 -13
  1522. package/dist/registry/sonner.test.json +0 -13
  1523. package/dist/registry/switch.json +0 -13
  1524. package/dist/registry/switch.test.json +0 -13
  1525. package/dist/registry/table.json +0 -13
  1526. package/dist/registry/table.test.json +0 -13
  1527. package/dist/registry/tabs.json +0 -13
  1528. package/dist/registry/tabs.test.json +0 -13
  1529. package/dist/registry/textarea.json +0 -13
  1530. package/dist/registry/textarea.test.json +0 -13
  1531. package/dist/registry/theme-provider.json +0 -13
  1532. package/dist/registry/theme-provider.test.json +0 -13
  1533. package/dist/registry/theme-toggle.json +0 -13
  1534. package/dist/registry/theme-toggle.test.json +0 -13
  1535. package/dist/registry/toast.json +0 -13
  1536. package/dist/registry/toast.test.json +0 -13
  1537. package/dist/registry/toaster.json +0 -13
  1538. package/dist/registry/toggle-group.json +0 -13
  1539. package/dist/registry/toggle-group.test.json +0 -13
  1540. package/dist/registry/toggle.json +0 -13
  1541. package/dist/registry/toggle.test.json +0 -13
  1542. package/dist/registry/tooltip.json +0 -13
  1543. package/dist/registry/tooltip.test.json +0 -13
  1544. package/dist/setupTests.d.ts +0 -2
  1545. package/dist/setupTests.d.ts.map +0 -1
  1546. package/dist/theme/tokens.d.ts +0 -115
  1547. package/dist/theme/tokens.d.ts.map +0 -1
  1548. package/dist/vendor-Bcg_ARLM.mjs +0 -25810
  1549. package/dist/vendor-Bcg_ARLM.mjs.map +0 -1
  1550. package/dist/vendor-BrqPND3G.js +0 -73
  1551. package/dist/vendor-BrqPND3G.js.map +0 -1
  1552. package/docs/MIGRATE_TO_GVTECH_SCOPE.md +0 -74
  1553. package/public/favicon.png +0 -0
  1554. package/public/index.demo.html +0 -40
  1555. package/public/logo192.png +0 -0
  1556. package/public/logo512.png +0 -0
  1557. package/public/manifest.json +0 -25
  1558. package/public/robots.txt +0 -2
  1559. package/scripts/import-all-shadcn.ts +0 -68
  1560. package/scripts/validate.js +0 -55
  1561. package/src/App.tsx +0 -274
  1562. package/src/components/docs/CodeBlock.tsx +0 -34
  1563. package/src/components/docs/ComponentShowcase.tsx +0 -68
  1564. package/src/components/docs/Footer.tsx +0 -138
  1565. package/src/components/docs/PropsTable.tsx +0 -43
  1566. package/src/components/docs/Sidebar.tsx +0 -175
  1567. package/src/components/docs/ThemeToggle.tsx +0 -19
  1568. package/src/components/docs/index.ts +0 -6
  1569. package/src/components/ui/accordion.tsx +0 -51
  1570. package/src/components/ui/alert-dialog.test.tsx +0 -91
  1571. package/src/components/ui/alert-dialog.tsx +0 -104
  1572. package/src/components/ui/alert.test.tsx +0 -33
  1573. package/src/components/ui/alert.tsx +0 -43
  1574. package/src/components/ui/aspect-ratio.test.tsx +0 -34
  1575. package/src/components/ui/aspect-ratio.tsx +0 -5
  1576. package/src/components/ui/avatar.tsx +0 -38
  1577. package/src/components/ui/badge.tsx +0 -29
  1578. package/src/components/ui/breadcrumb.test.tsx +0 -55
  1579. package/src/components/ui/breadcrumb.tsx +0 -90
  1580. package/src/components/ui/button.test.tsx +0 -62
  1581. package/src/components/ui/button.tsx +0 -46
  1582. package/src/components/ui/calendar.test.tsx +0 -23
  1583. package/src/components/ui/calendar.tsx +0 -160
  1584. package/src/components/ui/card.test.tsx +0 -35
  1585. package/src/components/ui/card.tsx +0 -43
  1586. package/src/components/ui/carousel.test.tsx +0 -37
  1587. package/src/components/ui/carousel.tsx +0 -224
  1588. package/src/components/ui/chart.test.tsx +0 -62
  1589. package/src/components/ui/chart.tsx +0 -307
  1590. package/src/components/ui/checkbox.test.tsx +0 -30
  1591. package/src/components/ui/checkbox.tsx +0 -26
  1592. package/src/components/ui/collapsible.test.tsx +0 -51
  1593. package/src/components/ui/collapsible.tsx +0 -9
  1594. package/src/components/ui/command.test.tsx +0 -79
  1595. package/src/components/ui/command.tsx +0 -132
  1596. package/src/components/ui/context-menu.test.tsx +0 -37
  1597. package/src/components/ui/context-menu.tsx +0 -178
  1598. package/src/components/ui/dialog.test.tsx +0 -66
  1599. package/src/components/ui/dialog.tsx +0 -95
  1600. package/src/components/ui/drawer.test.tsx +0 -68
  1601. package/src/components/ui/drawer.tsx +0 -87
  1602. package/src/components/ui/dropdown-menu.test.tsx +0 -93
  1603. package/src/components/ui/dropdown-menu.tsx +0 -180
  1604. package/src/components/ui/form.test.tsx +0 -85
  1605. package/src/components/ui/form.tsx +0 -149
  1606. package/src/components/ui/hover-card.test.tsx +0 -48
  1607. package/src/components/ui/hover-card.tsx +0 -27
  1608. package/src/components/ui/input.test.tsx +0 -33
  1609. package/src/components/ui/input.tsx +0 -22
  1610. package/src/components/ui/label.tsx +0 -17
  1611. package/src/components/ui/menubar.test.tsx +0 -92
  1612. package/src/components/ui/menubar.tsx +0 -217
  1613. package/src/components/ui/navigation-menu.test.tsx +0 -53
  1614. package/src/components/ui/navigation-menu.tsx +0 -120
  1615. package/src/components/ui/pagination.test.tsx +0 -57
  1616. package/src/components/ui/pagination.tsx +0 -81
  1617. package/src/components/ui/popover.test.tsx +0 -31
  1618. package/src/components/ui/popover.tsx +0 -31
  1619. package/src/components/ui/progress.test.tsx +0 -18
  1620. package/src/components/ui/progress.tsx +0 -24
  1621. package/src/components/ui/radio-group.test.tsx +0 -39
  1622. package/src/components/ui/radio-group.tsx +0 -36
  1623. package/src/components/ui/resizable.test.tsx +0 -23
  1624. package/src/components/ui/resizable.tsx +0 -45
  1625. package/src/components/ui/scroll-area.test.tsx +0 -15
  1626. package/src/components/ui/scroll-area.tsx +0 -38
  1627. package/src/components/ui/search.test.tsx +0 -75
  1628. package/src/components/ui/search.tsx +0 -93
  1629. package/src/components/ui/select.test.tsx +0 -42
  1630. package/src/components/ui/select.tsx +0 -142
  1631. package/src/components/ui/separator.test.tsx +0 -16
  1632. package/src/components/ui/separator.tsx +0 -20
  1633. package/src/components/ui/sheet.test.tsx +0 -48
  1634. package/src/components/ui/sheet.tsx +0 -106
  1635. package/src/components/ui/skeleton.test.tsx +0 -13
  1636. package/src/components/ui/skeleton.tsx +0 -8
  1637. package/src/components/ui/slider.test.tsx +0 -18
  1638. package/src/components/ui/slider.tsx +0 -23
  1639. package/src/components/ui/sonner.test.tsx +0 -13
  1640. package/src/components/ui/sonner.tsx +0 -28
  1641. package/src/components/ui/switch.test.tsx +0 -22
  1642. package/src/components/ui/switch.tsx +0 -27
  1643. package/src/components/ui/table.test.tsx +0 -29
  1644. package/src/components/ui/table.tsx +0 -76
  1645. package/src/components/ui/tabs.test.tsx +0 -43
  1646. package/src/components/ui/tabs.tsx +0 -53
  1647. package/src/components/ui/textarea.test.tsx +0 -21
  1648. package/src/components/ui/textarea.tsx +0 -21
  1649. package/src/components/ui/theme-provider.test.tsx +0 -47
  1650. package/src/components/ui/theme-provider.tsx +0 -12
  1651. package/src/components/ui/theme-toggle.test.tsx +0 -49
  1652. package/src/components/ui/theme-toggle.tsx +0 -108
  1653. package/src/components/ui/toast.test.tsx +0 -42
  1654. package/src/components/ui/toast.tsx +0 -111
  1655. package/src/components/ui/toaster.tsx +0 -24
  1656. package/src/components/ui/toggle-group.test.tsx +0 -40
  1657. package/src/components/ui/toggle-group.tsx +0 -51
  1658. package/src/components/ui/toggle.test.tsx +0 -21
  1659. package/src/components/ui/toggle.tsx +0 -37
  1660. package/src/components/ui/tooltip.test.tsx +0 -25
  1661. package/src/components/ui/tooltip.tsx +0 -30
  1662. package/src/hooks/use-theme.test.tsx +0 -27
  1663. package/src/hooks/use-theme.ts +0 -15
  1664. package/src/hooks/use-toast.ts +0 -189
  1665. package/src/main.tsx +0 -10
  1666. package/src/pages/ColorTokensDocs.tsx +0 -218
  1667. package/src/pages/GettingStarted.tsx +0 -302
  1668. package/src/pages/components/AccordionDocs.tsx +0 -164
  1669. package/src/pages/components/AlertDialogDocs.tsx +0 -151
  1670. package/src/pages/components/AlertDocs.tsx +0 -65
  1671. package/src/pages/components/AspectRatioDocs.tsx +0 -85
  1672. package/src/pages/components/AvatarDocs.tsx +0 -82
  1673. package/src/pages/components/BadgeDocs.tsx +0 -56
  1674. package/src/pages/components/BreadcrumbDocs.tsx +0 -87
  1675. package/src/pages/components/ButtonDocs.tsx +0 -120
  1676. package/src/pages/components/CalendarDocs.tsx +0 -72
  1677. package/src/pages/components/CardDocs.tsx +0 -101
  1678. package/src/pages/components/CarouselDocs.tsx +0 -163
  1679. package/src/pages/components/ChartDocs.tsx +0 -145
  1680. package/src/pages/components/CheckboxDocs.tsx +0 -107
  1681. package/src/pages/components/CollapsibleDocs.tsx +0 -103
  1682. package/src/pages/components/CommandDocs.tsx +0 -209
  1683. package/src/pages/components/ContextMenuDocs.tsx +0 -158
  1684. package/src/pages/components/DialogDocs.tsx +0 -167
  1685. package/src/pages/components/DrawerDocs.tsx +0 -274
  1686. package/src/pages/components/DropdownMenuDocs.tsx +0 -313
  1687. package/src/pages/components/FormDocs.tsx +0 -163
  1688. package/src/pages/components/HoverCardDocs.tsx +0 -136
  1689. package/src/pages/components/InputDocs.tsx +0 -99
  1690. package/src/pages/components/LabelDocs.tsx +0 -54
  1691. package/src/pages/components/MenubarDocs.tsx +0 -290
  1692. package/src/pages/components/NavigationMenuDocs.tsx +0 -254
  1693. package/src/pages/components/PaginationDocs.tsx +0 -93
  1694. package/src/pages/components/PopoverDocs.tsx +0 -183
  1695. package/src/pages/components/ProgressDocs.tsx +0 -64
  1696. package/src/pages/components/RadioGroupDocs.tsx +0 -132
  1697. package/src/pages/components/ResizableDocs.tsx +0 -137
  1698. package/src/pages/components/ScrollAreaDocs.tsx +0 -102
  1699. package/src/pages/components/SearchDocs.tsx +0 -194
  1700. package/src/pages/components/SelectDocs.tsx +0 -158
  1701. package/src/pages/components/SeparatorDocs.tsx +0 -79
  1702. package/src/pages/components/SheetDocs.tsx +0 -178
  1703. package/src/pages/components/SkeletonDocs.tsx +0 -44
  1704. package/src/pages/components/SliderDocs.tsx +0 -110
  1705. package/src/pages/components/SonnerDocs.tsx +0 -117
  1706. package/src/pages/components/SwitchDocs.tsx +0 -86
  1707. package/src/pages/components/TableDocs.tsx +0 -139
  1708. package/src/pages/components/TabsDocs.tsx +0 -223
  1709. package/src/pages/components/TextareaDocs.tsx +0 -60
  1710. package/src/pages/components/ThemeToggleDocs.tsx +0 -296
  1711. package/src/pages/components/ToastDocs.tsx +0 -141
  1712. package/src/pages/components/ToggleDocs.tsx +0 -76
  1713. package/src/pages/components/ToggleGroupDocs.tsx +0 -131
  1714. package/src/pages/components/TooltipDocs.tsx +0 -147
  1715. package/src/pages/index.ts +0 -52
  1716. package/src/theme/tokens.ts +0 -68
  1717. /package/{index.html → apps/playground-web/index.html} +0 -0
  1718. /package/{dist → apps/playground-web/public}/favicon.png +0 -0
  1719. /package/{dist → apps/playground-web/public}/index.demo.html +0 -0
  1720. /package/{dist → apps/playground-web/public}/logo192.png +0 -0
  1721. /package/{dist → apps/playground-web/public}/logo512.png +0 -0
  1722. /package/{dist → apps/playground-web/public}/manifest.json +0 -0
  1723. /package/{dist → apps/playground-web/public}/robots.txt +0 -0
  1724. /package/dist/{lib → packages/ui-native/src/lib}/utils.d.ts +0 -0
  1725. /package/dist/{components/ui → packages/ui-native/src}/toaster.d.ts +0 -0
  1726. /package/dist/{components/ui → packages/ui-web/src}/dialog.d.ts +0 -0
  1727. /package/dist/{hooks → packages/ui-web/src/hooks}/use-theme.d.ts +0 -0
  1728. /package/dist/{components/ui → packages/ui-web/src}/toast.d.ts +0 -0
  1729. /package/{src → packages/ui-native/src}/lib/utils.ts +0 -0
  1730. /package/{src/components/ui → packages/ui-web/src}/accordion.test.tsx +0 -0
  1731. /package/{src/components/ui → packages/ui-web/src}/avatar.test.tsx +0 -0
  1732. /package/{src/components/ui → packages/ui-web/src}/badge.test.tsx +0 -0
  1733. /package/{src/components/ui → packages/ui-web/src}/label.test.tsx +0 -0
package/dist/index.es.js CHANGED
@@ -1,2454 +1,423 @@
1
- import { t as ia, c as la, j as s, I as ca, H as ma, T as se, C as $, a as oe, R as ua, b as w, S as X, O as re, P as fa, d as ne, e as de, D as ie, A as le, f as ce, g as pa, h as xa, i as ga, k as me, l as ue, F as fe, E as pe, m as S, n as xe, o as ba, p as ge, u as ha, q as Na, r as ya, s as va, L as wa, v as ja, w as be, x as Ca, y as D, z as Ra, B as Ta, G as ka, J as A, K as he, M as F, N as L, X as Q, Q as E, U as O, V as Ne, W as ye, _ as g, Y as Sa, Z as ve, $ as we, a0 as je, a1 as Ce, a2 as Re, a3 as Te, a4 as ke, a5 as Se, a6 as B, a7 as _e, a8 as $e, a9 as _a, aa as $a, ab as Da, ac as Ia, ad as za, ae as h, af as De, ag as Ie, ah as ze, ai as Me, aj as Pe, ak as Ae, al as Fe, am as Le, an as Ee, ao as Oe, ap as Ma, aq as Pa, ar as Aa, as as Fa, at as La, au as Be, av as Ea, aw as Oa, ax as Ba, ay as Ge, az as Ga, aA as Va, aB as Ve, aC as He, aD as Ue, aE as qe, aF as Ke, aG as We, aH as Xe, aI as Qe, aJ as Ye, aK as Je, aL as Ze, aM as et, aN as Ha, aO as Ua, aP as qa, aQ as Ka, aR as tt, aS as at, aT as st, aU as ot, aV as rt, aW as nt, aX as Wa, aY as Xa, aZ as Qa, a_ as dt, a$ as Ya, b0 as Ja, b1 as Za, b2 as it, b3 as es, b4 as lt, b5 as ct, b6 as ts, b7 as as, b8 as ss, b9 as os, ba as rs, bb as mt, bc as ns, bd as ds, be as ut, bf as is, bg as ft, bh as ls, bi as pt, bj as cs, bk as xt, bl as ms, bm as gt, bn as us, bo as bt, bp as ht, bq as fs, br as ps, bs as Nt, bt as xs, bu as gs, bv as bs, bw as yt, bx as vt, by as hs, bz as Ns, bA as ys, bB as vs, bC as wt, bD as ws, bE as jt, bF as Ct, bG as Rt, bH as js, bI as Z, bJ as ee, bK as te, bL as Tt, bM as kt, bN as St, bO as _t, bP as $t, bQ as Dt, bR as Cs, bS as It, bT as zt, bU as Mt, bV as Rs, bW as Pt, bX as Ts, bY as ks, bZ as Ss } from "./vendor-Bcg_ARLM.mjs";
2
- import * as r from "react";
3
- import { useTheme as At, ThemeProvider as _s } from "next-themes";
4
- function o(...e) {
5
- return ia(la(e));
6
- }
7
- const Ft = {
8
- brand: {
9
- blue: "hsl(225 73% 57%)",
10
- // Royal Blue (Intellect)
11
- green: "hsl(151 66% 27%)",
12
- // #177245 (Stability)
13
- floralWhite: "hsl(40 100% 97%)"
14
- // Light Neutral / Floral White
15
- }
16
- // Additional primitives can be added here
17
- }, K = {
18
- light: {
19
- background: "hsl(0 0% 96%)",
20
- // White Smoke
21
- foreground: "hsl(222 47% 11%)",
22
- // Oxford Blue
23
- card: "hsl(0 0% 100%)",
24
- // White
25
- cardForeground: "hsl(222 47% 11%)",
26
- // Oxford Blue
27
- popover: "hsl(0 0% 100%)",
28
- // White
29
- popoverForeground: "hsl(222 47% 11%)",
30
- // Oxford Blue
31
- primary: Ft.brand.blue,
32
- // Royal Blue (Intellect)
33
- primaryForeground: "hsl(0 0% 100%)",
34
- // White
35
- secondary: "hsl(93 28% 54%)",
36
- // Asparagus / Pistachio
37
- secondaryForeground: "hsl(0 0% 100%)",
38
- // White
39
- muted: "hsl(0 0% 92%)",
40
- // Gainsboro
41
- mutedForeground: "hsl(215 16% 47%)",
42
- // Steel Blue
43
- accent: "hsl(0 0% 88%)",
44
- // French Gray
45
- accentForeground: "hsl(222 47% 11%)",
46
- // Oxford Blue
47
- destructive: "hsl(0 84.2% 60.2%)",
48
- // Vivid Red
49
- destructiveForeground: "hsl(0 0% 100%)",
50
- // White
51
- border: "hsl(0 0% 89%)",
52
- // Light Gray
53
- input: "hsl(0 0% 89%)",
54
- // Light Gray
55
- ring: "hsl(222 47% 11%)",
56
- // Oxford Blue
57
- radius: "0.5rem"
1
+ import { t as e, p as r } from "./theme-toggle-Dhc53hqa.mjs";
2
+ import { T as u } from "./theme-toggle-Dhc53hqa.mjs";
3
+ import { c as s } from "./utils-BfGqxkzX.mjs";
4
+ import { Accordion as C, AccordionContent as b, AccordionItem as c, AccordionTrigger as T } from "./accordion.es.js";
5
+ import { Alert as f, AlertDescription as D, AlertTitle as S } from "./alert.es.js";
6
+ import { AlertDialog as v, AlertDialogAction as w, AlertDialogCancel as A, AlertDialogContent as P, AlertDialogDescription as I, AlertDialogFooter as F, AlertDialogHeader as L, AlertDialogOverlay as y, AlertDialogPortal as B, AlertDialogTitle as R, AlertDialogTrigger as G } from "./alert-dialog.es.js";
7
+ import { AspectRatio as N } from "./aspect-ratio.es.js";
8
+ import { Avatar as V, AvatarFallback as z, AvatarImage as O } from "./avatar.es.js";
9
+ import { Badge as U, badgeVariants as W } from "./badge.es.js";
10
+ import { Breadcrumb as q, BreadcrumbEllipsis as J, BreadcrumbItem as K, BreadcrumbLink as Q, BreadcrumbList as X, BreadcrumbPage as Y, BreadcrumbSeparator as Z } from "./breadcrumb.es.js";
11
+ import { Button as $, buttonVariants as ee } from "./button.es.js";
12
+ import { Calendar as oe, CalendarDayButton as te } from "./calendar.es.js";
13
+ import { Card as ne, CardContent as ie, CardDescription as le, CardFooter as pe, CardHeader as me, CardTitle as xe } from "./card.es.js";
14
+ import { Carousel as ge, CarouselContent as se, CarouselItem as de, CarouselNext as Ce, CarouselPrevious as be } from "./carousel.es.js";
15
+ import { ChartContainer as Te, ChartLegend as Me, ChartLegendContent as fe, ChartStyle as De, ChartTooltip as Se, ChartTooltipContent as he } from "./chart.es.js";
16
+ import { Checkbox as we } from "./checkbox.es.js";
17
+ import { Collapsible as Pe, CollapsibleContent as Ie, CollapsibleTrigger as Fe } from "./collapsible.es.js";
18
+ import { Command as ye, CommandDialog as Be, CommandEmpty as Re, CommandGroup as Ge, CommandInput as He, CommandItem as Ne, CommandList as ke, CommandSeparator as Ve, CommandShortcut as ze } from "./command.es.js";
19
+ import { ContextMenu as Ee, ContextMenuCheckboxItem as Ue, ContextMenuContent as We, ContextMenuGroup as je, ContextMenuItem as qe, ContextMenuLabel as Je, ContextMenuPortal as Ke, ContextMenuRadioGroup as Qe, ContextMenuRadioItem as Xe, ContextMenuSeparator as Ye, ContextMenuShortcut as Ze, ContextMenuSub as _e, ContextMenuSubContent as $e, ContextMenuSubTrigger as er, ContextMenuTrigger as rr } from "./context-menu.es.js";
20
+ import { Dialog as tr, DialogClose as ar, DialogContent as nr, DialogDescription as ir, DialogFooter as lr, DialogHeader as pr, DialogOverlay as mr, DialogPortal as xr, DialogTitle as ur, DialogTrigger as gr } from "./dialog.es.js";
21
+ import { Drawer as dr, DrawerClose as Cr, DrawerContent as br, DrawerDescription as cr, DrawerFooter as Tr, DrawerHeader as Mr, DrawerOverlay as fr, DrawerPortal as Dr, DrawerTitle as Sr, DrawerTrigger as hr } from "./drawer.es.js";
22
+ import { DropdownMenu as wr, DropdownMenuCheckboxItem as Ar, DropdownMenuContent as Pr, DropdownMenuGroup as Ir, DropdownMenuItem as Fr, DropdownMenuLabel as Lr, DropdownMenuPortal as yr, DropdownMenuRadioGroup as Br, DropdownMenuRadioItem as Rr, DropdownMenuSeparator as Gr, DropdownMenuShortcut as Hr, DropdownMenuSub as Nr, DropdownMenuSubContent as kr, DropdownMenuSubTrigger as Vr, DropdownMenuTrigger as zr } from "./dropdown-menu.es.js";
23
+ import { Form as Er, FormControl as Ur, FormDescription as Wr, FormField as jr, FormItem as qr, FormLabel as Jr, FormMessage as Kr, useFormField as Qr } from "./form.es.js";
24
+ import { HoverCard as Yr, HoverCardContent as Zr, HoverCardTrigger as _r } from "./hover-card.es.js";
25
+ import { Input as eo } from "./input.es.js";
26
+ import { Label as oo } from "./label.es.js";
27
+ import { Menubar as ao, MenubarCheckboxItem as no, MenubarContent as io, MenubarGroup as lo, MenubarItem as po, MenubarLabel as mo, MenubarMenu as xo, MenubarPortal as uo, MenubarRadioGroup as go, MenubarRadioItem as so, MenubarSeparator as Co, MenubarShortcut as bo, MenubarSub as co, MenubarSubContent as To, MenubarSubTrigger as Mo, MenubarTrigger as fo } from "./menubar.es.js";
28
+ import { NavigationMenu as So, NavigationMenuContent as ho, NavigationMenuIndicator as vo, NavigationMenuItem as wo, NavigationMenuLink as Ao, NavigationMenuList as Po, NavigationMenuTrigger as Io, NavigationMenuViewport as Fo, navigationMenuTriggerStyle as Lo } from "./navigation-menu.es.js";
29
+ import { Pagination as Bo, PaginationContent as Ro, PaginationEllipsis as Go, PaginationItem as Ho, PaginationLink as No, PaginationNext as ko, PaginationPrevious as Vo } from "./pagination.es.js";
30
+ import { Popover as Oo, PopoverAnchor as Eo, PopoverContent as Uo, PopoverTrigger as Wo } from "./popover.es.js";
31
+ import { Progress as qo } from "./progress.es.js";
32
+ import { RadioGroup as Ko, RadioGroupItem as Qo } from "./radio-group.es.js";
33
+ import { ResizableHandle as Yo, ResizablePanel as Zo, ResizablePanelGroup as _o } from "./resizable.es.js";
34
+ import { ScrollArea as et, ScrollBar as rt } from "./scroll-area.es.js";
35
+ import { Search as tt, SearchTrigger as at } from "./search.es.js";
36
+ import { Select as it, SelectContent as lt, SelectGroup as pt, SelectItem as mt, SelectLabel as xt, SelectScrollDownButton as ut, SelectScrollUpButton as gt, SelectSeparator as st, SelectTrigger as dt, SelectValue as Ct } from "./select.es.js";
37
+ import { Separator as ct } from "./separator.es.js";
38
+ import { Sheet as Mt, SheetClose as ft, SheetContent as Dt, SheetDescription as St, SheetFooter as ht, SheetHeader as vt, SheetOverlay as wt, SheetPortal as At, SheetTitle as Pt, SheetTrigger as It } from "./sheet.es.js";
39
+ import { Skeleton as Lt } from "./skeleton.es.js";
40
+ import { Slider as Bt } from "./slider.es.js";
41
+ import { Toaster as Gt } from "./sonner.es.js";
42
+ import { Switch as Nt } from "./switch.es.js";
43
+ import { Table as Vt, TableBody as zt, TableCaption as Ot, TableCell as Et, TableFooter as Ut, TableHead as Wt, TableHeader as jt, TableRow as qt } from "./table.es.js";
44
+ import { Tabs as Kt, TabsContent as Qt, TabsList as Xt, TabsTrigger as Yt } from "./tabs.es.js";
45
+ import { Text as _t, textVariants as $t } from "./text.es.js";
46
+ import { Textarea as ra } from "./textarea.es.js";
47
+ import { Toggle as ta } from "./toggle.es.js";
48
+ import { ToggleGroup as na, ToggleGroupItem as ia } from "./toggle-group.es.js";
49
+ import { Tooltip as pa, TooltipContent as ma, TooltipProvider as xa, TooltipTrigger as ua } from "./tooltip.es.js";
50
+ import { Toast as sa, ToastAction as da, ToastClose as Ca, ToastDescription as ba, ToastProvider as ca, ToastTitle as Ta, ToastViewport as Ma } from "./toast.es.js";
51
+ import { ThemeProvider as Da } from "./theme-provider.es.js";
52
+ import { T as ha, t as va, u as wa } from "./toaster-CmNmQ6jI.mjs";
53
+ import { t as Pa } from "./toggle-CYawMoye.mjs";
54
+ const t = {
55
+ px: "1px",
56
+ 0: "0",
57
+ 0.5: "0.125rem",
58
+ // 2px
59
+ 1: "0.25rem",
60
+ // 4px
61
+ 1.5: "0.375rem",
62
+ // 6px
63
+ 2: "0.5rem",
64
+ // 8px
65
+ 2.5: "0.625rem",
66
+ // 10px
67
+ 3: "0.75rem",
68
+ // 12px
69
+ 3.5: "0.875rem",
70
+ // 14px
71
+ 4: "1rem",
72
+ // 16px
73
+ 5: "1.25rem",
74
+ // 20px
75
+ 6: "1.5rem",
76
+ // 24px
77
+ 7: "1.75rem",
78
+ // 28px
79
+ 8: "2rem",
80
+ // 32px
81
+ 9: "2.25rem",
82
+ // 36px
83
+ 10: "2.5rem",
84
+ // 40px
85
+ 12: "3rem",
86
+ // 48px
87
+ 14: "3.5rem",
88
+ // 56px
89
+ 16: "4rem",
90
+ // 64px
91
+ 20: "5rem",
92
+ // 80px
93
+ 24: "6rem",
94
+ // 96px
95
+ 32: "8rem",
96
+ // 128px
97
+ 40: "10rem",
98
+ // 160px
99
+ 48: "12rem",
100
+ // 192px
101
+ 56: "14rem",
102
+ // 224px
103
+ 64: "16rem"
104
+ // 256px
105
+ }, a = {
106
+ none: "0",
107
+ sm: "calc(var(--radius) - 4px)",
108
+ md: "calc(var(--radius) - 2px)",
109
+ lg: "var(--radius)",
110
+ xl: "calc(var(--radius) + 4px)",
111
+ "2xl": "calc(var(--radius) + 8px)",
112
+ full: "9999px"
113
+ }, n = {
114
+ none: 0,
115
+ sm: 4,
116
+ // 8 - 4
117
+ md: 6,
118
+ // 8 - 2
119
+ lg: 8,
120
+ // base
121
+ xl: 12,
122
+ // 8 + 4
123
+ "2xl": 16,
124
+ // 8 + 8
125
+ full: 9999
126
+ }, i = {
127
+ fontFamily: {
128
+ sans: 'Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif',
129
+ mono: 'ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, "Liberation Mono", monospace'
58
130
  },
59
- dark: {
60
- background: "hsl(0 0% 9%)",
61
- // Night
62
- foreground: "hsl(0 0% 100%)",
63
- // White
64
- card: "hsl(0 0% 14%)",
65
- // Eerie Black
66
- cardForeground: "hsl(0 0% 100%)",
67
- // White
68
- popover: "hsl(0 0% 11%)",
69
- // Night (alt)
70
- popoverForeground: "hsl(0 0% 100%)",
71
- // White
72
- primary: "hsl(227 96% 71%)",
73
- // Baby Blue
74
- primaryForeground: "hsl(0 0% 9%)",
75
- // Night
76
- secondary: "hsl(96 44% 61%)",
77
- // Celadon
78
- secondaryForeground: "hsl(0 0% 9%)",
79
- // Night
80
- muted: "hsl(0 0% 6%)",
81
- // Black
82
- mutedForeground: "hsl(0 0% 70%)",
83
- // Silver
84
- accent: "hsl(0 0% 15%)",
85
- // Jet
86
- accentForeground: "hsl(0 0% 100%)",
87
- // White
88
- destructive: "hsl(0 62.8% 30.6%)",
89
- // Blood Red
90
- destructiveForeground: "hsl(0 0% 100%)",
91
- // White
92
- border: "hsl(0 0% 18%)",
93
- // Raisin Black
94
- input: "hsl(0 0% 18%)",
95
- // Raisin Black
96
- ring: "hsl(0 0% 90%)",
97
- // Platinum
98
- radius: "0.5rem"
99
- }
100
- }, Dn = {
101
- palette: Ft,
102
- theme: K
103
- }, In = ua, $s = r.forwardRef(({ className: e, ...t }, a) => /* @__PURE__ */ s.jsx(ca, { ref: a, className: o("border-b", e), ...t }));
104
- $s.displayName = "AccordionItem";
105
- const Ds = r.forwardRef(({ className: e, children: t, ...a }, n) => /* @__PURE__ */ s.jsx(ma, { className: "flex", children: /* @__PURE__ */ s.jsxs(
106
- se,
107
- {
108
- ref: n,
109
- className: o(
110
- "flex flex-1 items-center justify-between py-4 text-sm font-medium transition-all hover:underline text-left [&[data-state=open]>svg]:rotate-180",
111
- e
112
- ),
113
- ...a,
114
- children: [
115
- t,
116
- /* @__PURE__ */ s.jsx($, { className: "h-4 w-4 shrink-0 text-muted-foreground transition-transform duration-200" })
117
- ]
118
- }
119
- ) }));
120
- Ds.displayName = se.displayName;
121
- const Is = r.forwardRef(({ className: e, children: t, ...a }, n) => /* @__PURE__ */ s.jsx(
122
- oe,
123
- {
124
- ref: n,
125
- className: "overflow-hidden text-sm data-[state=closed]:animate-accordion-up data-[state=open]:animate-accordion-down",
126
- ...a,
127
- children: /* @__PURE__ */ s.jsx("div", { className: o("pb-4 pt-0", e), children: t })
128
- }
129
- ));
130
- Is.displayName = oe.displayName;
131
- const zs = w(
132
- "relative w-full rounded-lg border px-4 py-3 text-sm [&>svg+div]:translate-y-[-3px] [&>svg]:absolute [&>svg]:left-4 [&>svg]:top-4 [&>svg]:text-foreground [&>svg~*]:pl-7",
133
- {
134
- variants: {
135
- variant: {
136
- default: "bg-background text-foreground",
137
- destructive: "border-destructive/50 text-destructive dark:border-destructive [&>svg]:text-destructive"
138
- }
139
- },
140
- defaultVariants: {
141
- variant: "default"
142
- }
143
- }
144
- ), Ms = r.forwardRef(({ className: e, variant: t, ...a }, n) => /* @__PURE__ */ s.jsx("div", { ref: n, role: "alert", className: o(zs({ variant: t }), e), ...a }));
145
- Ms.displayName = "Alert";
146
- const Ps = r.forwardRef(
147
- ({ className: e, ...t }, a) => /* @__PURE__ */ s.jsx("h5", { ref: a, className: o("mb-1 font-medium leading-none tracking-tight", e), ...t })
148
- );
149
- Ps.displayName = "AlertTitle";
150
- const As = r.forwardRef(
151
- ({ className: e, ...t }, a) => /* @__PURE__ */ s.jsx("div", { ref: a, className: o("text-sm [&_p]:leading-relaxed", e), ...t })
152
- );
153
- As.displayName = "AlertDescription";
154
- const T = w(
155
- "inline-flex items-center justify-center gap-2 whitespace-nowrap rounded-md text-sm font-medium transition-colors focus-visible:outline-none focus-visible:ring-1 focus-visible:ring-ring disabled:pointer-events-none disabled:opacity-50 [&_svg]:pointer-events-none [&_svg]:size-4 [&_svg]:shrink-0",
156
- {
157
- variants: {
158
- variant: {
159
- default: "bg-primary text-primary-foreground shadow hover:bg-primary/90",
160
- destructive: "bg-destructive text-destructive-foreground shadow-sm hover:bg-destructive/90",
161
- outline: "border border-input bg-background shadow-sm hover:bg-accent hover:text-accent-foreground",
162
- secondary: "bg-secondary text-secondary-foreground shadow-sm hover:bg-secondary/80",
163
- ghost: "hover:bg-accent hover:text-accent-foreground",
164
- link: "text-primary underline-offset-4 hover:underline"
165
- },
166
- size: {
167
- default: "h-9 px-4 py-2",
168
- sm: "h-8 rounded-md px-3 text-xs",
169
- lg: "h-10 rounded-md px-8",
170
- icon: "h-9 w-9"
171
- }
172
- },
173
- defaultVariants: {
174
- variant: "default",
175
- size: "default"
176
- }
177
- }
178
- ), k = r.forwardRef(
179
- ({ className: e, variant: t, size: a, asChild: n = !1, ...d }, i) => {
180
- const m = n ? X : "button";
181
- return /* @__PURE__ */ s.jsx(m, { className: o(T({ variant: t, size: a, className: e })), ref: i, ...d });
182
- }
183
- );
184
- k.displayName = "Button";
185
- const zn = pa, Mn = xa, Fs = fa, Lt = r.forwardRef(({ className: e, ...t }, a) => /* @__PURE__ */ s.jsx(
186
- re,
187
- {
188
- className: o(
189
- "fixed inset-0 z-50 bg-black/80 data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=open]:fade-in-0",
190
- e
191
- ),
192
- ...t,
193
- ref: a
194
- }
195
- ));
196
- Lt.displayName = re.displayName;
197
- const Ls = r.forwardRef(({ className: e, ...t }, a) => /* @__PURE__ */ s.jsxs(Fs, { children: [
198
- /* @__PURE__ */ s.jsx(Lt, {}),
199
- /* @__PURE__ */ s.jsx(
200
- ne,
201
- {
202
- ref: a,
203
- className: o(
204
- "fixed left-[50%] top-[50%] z-50 grid w-full max-w-lg translate-x-[-50%] translate-y-[-50%] gap-4 border bg-background p-6 shadow-lg duration-200 data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=open]:fade-in-0 data-[state=closed]:zoom-out-95 data-[state=open]:zoom-in-95 data-[state=closed]:slide-out-to-left-1/2 data-[state=closed]:slide-out-to-top-[48%] data-[state=open]:slide-in-from-left-1/2 data-[state=open]:slide-in-from-top-[48%] sm:rounded-lg",
205
- e
206
- ),
207
- ...t
208
- }
209
- )
210
- ] }));
211
- Ls.displayName = ne.displayName;
212
- const Es = ({ className: e, ...t }) => /* @__PURE__ */ s.jsx("div", { className: o("flex flex-col space-y-2 text-center sm:text-left", e), ...t });
213
- Es.displayName = "AlertDialogHeader";
214
- const Os = ({ className: e, ...t }) => /* @__PURE__ */ s.jsx("div", { className: o("flex flex-col-reverse sm:flex-row sm:justify-end sm:space-x-2", e), ...t });
215
- Os.displayName = "AlertDialogFooter";
216
- const Bs = r.forwardRef(({ className: e, ...t }, a) => /* @__PURE__ */ s.jsx(de, { ref: a, className: o("text-lg font-semibold", e), ...t }));
217
- Bs.displayName = de.displayName;
218
- const Gs = r.forwardRef(({ className: e, ...t }, a) => /* @__PURE__ */ s.jsx(ie, { ref: a, className: o("text-sm text-muted-foreground", e), ...t }));
219
- Gs.displayName = ie.displayName;
220
- const Vs = r.forwardRef(({ className: e, ...t }, a) => /* @__PURE__ */ s.jsx(le, { ref: a, className: o(T(), e), ...t }));
221
- Vs.displayName = le.displayName;
222
- const Hs = r.forwardRef(({ className: e, ...t }, a) => /* @__PURE__ */ s.jsx(
223
- ce,
224
- {
225
- ref: a,
226
- className: o(T({ variant: "outline" }), "mt-2 sm:mt-0", e),
227
- ...t
228
- }
229
- ));
230
- Hs.displayName = ce.displayName;
231
- const Pn = ga, Us = r.forwardRef(({ className: e, ...t }, a) => /* @__PURE__ */ s.jsx(
232
- me,
233
- {
234
- ref: a,
235
- className: o("relative flex h-10 w-10 shrink-0 overflow-hidden rounded-full", e),
236
- ...t
237
- }
238
- ));
239
- Us.displayName = me.displayName;
240
- const qs = r.forwardRef(({ className: e, ...t }, a) => /* @__PURE__ */ s.jsx(ue, { ref: a, className: o("aspect-square h-full w-full", e), ...t }));
241
- qs.displayName = ue.displayName;
242
- const Ks = r.forwardRef(({ className: e, ...t }, a) => /* @__PURE__ */ s.jsx(
243
- fe,
244
- {
245
- ref: a,
246
- className: o("flex h-full w-full items-center justify-center rounded-full bg-muted", e),
247
- ...t
248
- }
249
- ));
250
- Ks.displayName = fe.displayName;
251
- const Ws = w(
252
- "inline-flex items-center rounded-md border px-2.5 py-0.5 text-xs font-semibold transition-colors focus:outline-none focus:ring-2 focus:ring-ring focus:ring-offset-2",
253
- {
254
- variants: {
255
- variant: {
256
- default: "border-transparent bg-primary text-primary-foreground shadow hover:bg-primary/80",
257
- secondary: "border-transparent bg-secondary text-secondary-foreground hover:bg-secondary/80",
258
- destructive: "border-transparent bg-destructive text-destructive-foreground shadow hover:bg-destructive/80",
259
- outline: "text-foreground"
260
- }
261
- },
262
- defaultVariants: {
263
- variant: "default"
264
- }
265
- }
266
- );
267
- function An({ className: e, variant: t, ...a }) {
268
- return /* @__PURE__ */ s.jsx("div", { className: o(Ws({ variant: t }), e), ...a });
269
- }
270
- const Xs = r.forwardRef(({ ...e }, t) => /* @__PURE__ */ s.jsx("nav", { ref: t, "aria-label": "breadcrumb", ...e }));
271
- Xs.displayName = "Breadcrumb";
272
- const Qs = r.forwardRef(
273
- ({ className: e, ...t }, a) => /* @__PURE__ */ s.jsx(
274
- "ol",
275
- {
276
- ref: a,
277
- className: o(
278
- "flex flex-wrap items-center gap-1.5 break-words text-sm text-muted-foreground sm:gap-2.5",
279
- e
280
- ),
281
- ...t
282
- }
283
- )
284
- );
285
- Qs.displayName = "BreadcrumbList";
286
- const Ys = r.forwardRef(
287
- ({ className: e, ...t }, a) => /* @__PURE__ */ s.jsx("li", { ref: a, className: o("inline-flex items-center gap-1.5", e), ...t })
288
- );
289
- Ys.displayName = "BreadcrumbItem";
290
- const Js = r.forwardRef(({ asChild: e, className: t, ...a }, n) => {
291
- const d = e ? X : "a";
292
- return /* @__PURE__ */ s.jsx(d, { ref: n, className: o("transition-colors hover:text-foreground", t), ...a });
293
- });
294
- Js.displayName = "BreadcrumbLink";
295
- const Zs = r.forwardRef(
296
- ({ className: e, ...t }, a) => /* @__PURE__ */ s.jsx(
297
- "span",
298
- {
299
- ref: a,
300
- role: "link",
301
- "aria-disabled": "true",
302
- "aria-current": "page",
303
- className: o("font-normal text-foreground", e),
304
- ...t
305
- }
306
- )
307
- );
308
- Zs.displayName = "BreadcrumbPage";
309
- const eo = ({ children: e, className: t, ...a }) => /* @__PURE__ */ s.jsx("li", { role: "presentation", "aria-hidden": "true", className: o("[&>svg]:w-3.5 [&>svg]:h-3.5", t), ...a, children: e ?? /* @__PURE__ */ s.jsx(S, {}) });
310
- eo.displayName = "BreadcrumbSeparator";
311
- const to = ({ className: e, ...t }) => /* @__PURE__ */ s.jsxs(
312
- "span",
313
- {
314
- role: "presentation",
315
- "aria-hidden": "true",
316
- className: o("flex h-9 w-9 items-center justify-center", e),
317
- ...t,
318
- children: [
319
- /* @__PURE__ */ s.jsx(pe, { className: "h-4 w-4" }),
320
- /* @__PURE__ */ s.jsx("span", { className: "sr-only", children: "More" })
321
- ]
322
- }
323
- );
324
- to.displayName = "BreadcrumbElipssis";
325
- function Fn({
326
- className: e,
327
- classNames: t,
328
- showOutsideDays: a = !0,
329
- captionLayout: n = "label",
330
- buttonVariant: d = "ghost",
331
- formatters: i,
332
- components: m,
333
- ...u
334
- }) {
335
- const c = xe();
336
- return /* @__PURE__ */ s.jsx(
337
- ba,
338
- {
339
- showOutsideDays: a,
340
- className: o(
341
- "bg-background group/calendar p-3 [--cell-size:2.5rem] [[data-slot=card-content]_&]:bg-transparent [[data-slot=popover-content]_&]:bg-transparent",
342
- String.raw`rtl:**:[.rdp-button\_next>svg]:rotate-180`,
343
- String.raw`rtl:**:[.rdp-button\_previous>svg]:rotate-180`,
344
- "relative",
345
- e
346
- ),
347
- captionLayout: n,
348
- formatters: {
349
- formatMonthDropdown: (l) => l.toLocaleString("default", { month: "short" }),
350
- ...i
351
- },
352
- classNames: {
353
- root: o("w-fit", c.root),
354
- months: o("relative flex flex-col gap-4 md:flex-row", c.months),
355
- month: o("flex w-full flex-col gap-4", c.month),
356
- nav: o(
357
- "absolute inset-x-0 top-2 flex items-center justify-between pointer-events-none px-2",
358
- c.nav
359
- ),
360
- button_previous: o(
361
- T({ variant: d }),
362
- "h-7 w-7 select-none p-0 aria-disabled:opacity-50 pointer-events-auto",
363
- c.button_previous
364
- ),
365
- button_next: o(
366
- T({ variant: d }),
367
- "h-7 w-7 select-none p-0 aria-disabled:opacity-50 pointer-events-auto",
368
- c.button_next
369
- ),
370
- month_caption: o(
371
- "flex h-[--cell-size] w-full items-center justify-center text-sm font-medium",
372
- c.month_caption
373
- ),
374
- dropdowns: o(
375
- "flex h-[--cell-size] w-full items-center justify-center gap-1.5 text-sm font-medium",
376
- c.dropdowns
377
- ),
378
- dropdown_root: o(
379
- "has-focus:border-ring border-input shadow-xs has-focus:ring-ring/50 has-focus:ring-[3px] relative rounded-md border",
380
- c.dropdown_root
381
- ),
382
- dropdown: o("bg-popover absolute inset-0 opacity-0", c.dropdown),
383
- caption_label: o(
384
- "select-none font-medium",
385
- n === "label" ? "text-sm" : "[&>svg]:text-muted-foreground flex h-8 items-center gap-1 rounded-md pl-2 pr-1 text-sm [&>svg]:size-3.5",
386
- c.caption_label
387
- ),
388
- table: "w-full border-collapse grow",
389
- weekdays: o("flex", c.weekdays),
390
- weekday: o(
391
- "text-muted-foreground pt-1 flex-1 select-none rounded-md text-[0.8rem] font-normal uppercase",
392
- c.weekday
393
- ),
394
- week: o("flex w-full mt-2", c.week),
395
- week_number_header: o("w-[--cell-size] select-none", c.week_number_header),
396
- week_number: o("text-muted-foreground select-none text-[0.8rem]", c.week_number),
397
- day: o(
398
- "group/day relative flex aspect-square h-10 w-10 select-none items-center justify-center p-0 text-center [&:first-child[data-selected=true]_button]:rounded-l-md [&:last-child[data-selected=true]_button]:rounded-r-md",
399
- c.day
400
- ),
401
- range_start: o("bg-accent rounded-l-md", c.range_start),
402
- range_middle: o("rounded-none", c.range_middle),
403
- range_end: o("bg-accent rounded-r-md", c.range_end),
404
- today: o(
405
- "bg-accent text-accent-foreground rounded-md data-[selected=true]:rounded-none",
406
- c.today
407
- ),
408
- outside: o("text-muted-foreground aria-selected:text-muted-foreground", c.outside),
409
- disabled: o("text-muted-foreground opacity-50", c.disabled),
410
- hidden: o("invisible", c.hidden),
411
- ...t
412
- },
413
- components: {
414
- Root: ({ className: l, rootRef: p, ...x }) => /* @__PURE__ */ s.jsx("div", { "data-slot": "calendar", ref: p, className: o(l), ...x }),
415
- Chevron: ({ className: l, orientation: p, ...x }) => p === "left" ? /* @__PURE__ */ s.jsx(ge, { className: o("size-4", l), ...x }) : p === "right" ? /* @__PURE__ */ s.jsx(S, { className: o("size-4", l), ...x }) : /* @__PURE__ */ s.jsx($, { className: o("size-4", l), ...x }),
416
- DayButton: ao,
417
- WeekNumber: ({ children: l, ...p }) => /* @__PURE__ */ s.jsx("td", { ...p, children: /* @__PURE__ */ s.jsx("div", { className: "flex size-[--cell-size] items-center justify-center text-center", children: l }) }),
418
- ...m
419
- },
420
- ...u
421
- }
422
- );
423
- }
424
- function ao({ className: e, day: t, modifiers: a, ...n }) {
425
- const d = xe(), i = r.useRef(null);
426
- return r.useEffect(() => {
427
- a.focused && i.current?.focus();
428
- }, [a.focused]), /* @__PURE__ */ s.jsx(
429
- k,
430
- {
431
- ref: i,
432
- variant: "ghost",
433
- size: "icon",
434
- "data-day": t.date.toLocaleDateString(),
435
- "data-selected-single": a.selected && !a.range_start && !a.range_end && !a.range_middle,
436
- "data-range-start": a.range_start,
437
- "data-range-end": a.range_end,
438
- "data-range-middle": a.range_middle,
439
- className: o(
440
- "data-[selected-single=true]:bg-primary data-[selected-single=true]:text-primary-foreground data-[range-middle=true]:bg-accent data-[range-middle=true]:text-accent-foreground data-[range-start=true]:bg-primary data-[range-start=true]:text-primary-foreground data-[range-end=true]:bg-primary data-[range-end=true]:text-primary-foreground group-data-[focused=true]/day:border-ring group-data-[focused=true]/day:ring-ring/50 flex aspect-square h-full w-full min-w-[--cell-size] items-center justify-center font-normal leading-none data-[range-end=true]:rounded-md data-[range-middle=true]:rounded-none data-[range-start=true]:rounded-md group-data-[focused=true]/day:relative group-data-[focused=true]/day:z-10 group-data-[focused=true]/day:ring-[3px] [&>span]:text-xs [&>span]:opacity-70",
441
- d.day,
442
- e
443
- ),
444
- ...n
445
- }
446
- );
447
- }
448
- const so = r.forwardRef(({ className: e, ...t }, a) => /* @__PURE__ */ s.jsx("div", { ref: a, className: o("rounded-xl border bg-card text-card-foreground shadow", e), ...t }));
449
- so.displayName = "Card";
450
- const oo = r.forwardRef(
451
- ({ className: e, ...t }, a) => /* @__PURE__ */ s.jsx("div", { ref: a, className: o("flex flex-col space-y-1.5 p-6", e), ...t })
452
- );
453
- oo.displayName = "CardHeader";
454
- const ro = r.forwardRef(
455
- ({ className: e, ...t }, a) => /* @__PURE__ */ s.jsx("div", { ref: a, className: o("font-semibold leading-none tracking-tight", e), ...t })
456
- );
457
- ro.displayName = "CardTitle";
458
- const no = r.forwardRef(
459
- ({ className: e, ...t }, a) => /* @__PURE__ */ s.jsx("div", { ref: a, className: o("text-sm text-muted-foreground", e), ...t })
460
- );
461
- no.displayName = "CardDescription";
462
- const io = r.forwardRef(
463
- ({ className: e, ...t }, a) => /* @__PURE__ */ s.jsx("div", { ref: a, className: o("p-6 pt-0", e), ...t })
464
- );
465
- io.displayName = "CardContent";
466
- const lo = r.forwardRef(
467
- ({ className: e, ...t }, a) => /* @__PURE__ */ s.jsx("div", { ref: a, className: o("flex items-center p-6 pt-0", e), ...t })
468
- );
469
- lo.displayName = "CardFooter";
470
- const Et = r.createContext(null);
471
- function G() {
472
- const e = r.useContext(Et);
473
- if (!e)
474
- throw new Error("useCarousel must be used within a <Carousel />");
475
- return e;
476
- }
477
- const co = r.forwardRef(
478
- ({ orientation: e = "horizontal", opts: t, setApi: a, plugins: n, className: d, children: i, ...m }, u) => {
479
- const [c, l] = ha(
480
- {
481
- ...t,
482
- axis: e === "horizontal" ? "x" : "y"
483
- },
484
- n
485
- ), [p, x] = r.useState(!1), [y, C] = r.useState(!1), N = r.useCallback((b) => {
486
- b && (x(b.canScrollPrev()), C(b.canScrollNext()));
487
- }, []), R = r.useCallback(() => {
488
- l?.scrollPrev();
489
- }, [l]), v = r.useCallback(() => {
490
- l?.scrollNext();
491
- }, [l]), f = r.useCallback(
492
- (b) => {
493
- b.key === "ArrowLeft" ? (b.preventDefault(), R()) : b.key === "ArrowRight" && (b.preventDefault(), v());
494
- },
495
- [R, v]
496
- );
497
- return r.useEffect(() => {
498
- !l || !a || a(l);
499
- }, [l, a]), r.useEffect(() => {
500
- if (l)
501
- return N(l), l.on("reInit", N), l.on("select", N), () => {
502
- l?.off("select", N);
503
- };
504
- }, [l, N]), /* @__PURE__ */ s.jsx(
505
- Et.Provider,
506
- {
507
- value: {
508
- carouselRef: c,
509
- api: l,
510
- opts: t,
511
- orientation: e || (t?.axis === "y" ? "vertical" : "horizontal"),
512
- scrollPrev: R,
513
- scrollNext: v,
514
- canScrollPrev: p,
515
- canScrollNext: y
516
- },
517
- children: /* @__PURE__ */ s.jsx(
518
- "div",
519
- {
520
- ref: u,
521
- onKeyDownCapture: f,
522
- className: o("relative", d),
523
- role: "region",
524
- "aria-roledescription": "carousel",
525
- ...m,
526
- children: i
527
- }
528
- )
529
- }
530
- );
531
- }
532
- );
533
- co.displayName = "Carousel";
534
- const mo = r.forwardRef(
535
- ({ className: e, ...t }, a) => {
536
- const { carouselRef: n, orientation: d } = G();
537
- return /* @__PURE__ */ s.jsx("div", { ref: n, className: "overflow-hidden", children: /* @__PURE__ */ s.jsx(
538
- "div",
539
- {
540
- ref: a,
541
- className: o("flex", d === "horizontal" ? "-ml-4" : "-mt-4 flex-col", e),
542
- ...t
543
- }
544
- ) });
545
- }
546
- );
547
- mo.displayName = "CarouselContent";
548
- const uo = r.forwardRef(
549
- ({ className: e, ...t }, a) => {
550
- const { orientation: n } = G();
551
- return /* @__PURE__ */ s.jsx(
552
- "div",
553
- {
554
- ref: a,
555
- role: "group",
556
- "aria-roledescription": "slide",
557
- className: o("min-w-0 shrink-0 grow-0 basis-full", n === "horizontal" ? "pl-4" : "pt-4", e),
558
- ...t
559
- }
560
- );
561
- }
562
- );
563
- uo.displayName = "CarouselItem";
564
- const fo = r.forwardRef(
565
- ({ className: e, variant: t = "outline", size: a = "icon", ...n }, d) => {
566
- const { orientation: i, scrollPrev: m, canScrollPrev: u } = G();
567
- return /* @__PURE__ */ s.jsxs(
568
- k,
569
- {
570
- ref: d,
571
- variant: t,
572
- size: a,
573
- className: o(
574
- "absolute h-8 w-8 rounded-full",
575
- i === "horizontal" ? "-left-12 top-1/2 -translate-y-1/2" : "-top-12 left-1/2 -translate-x-1/2 rotate-90",
576
- e
577
- ),
578
- disabled: !u,
579
- onClick: m,
580
- ...n,
581
- children: [
582
- /* @__PURE__ */ s.jsx(Na, { className: "h-4 w-4" }),
583
- /* @__PURE__ */ s.jsx("span", { className: "sr-only", children: "Previous slide" })
584
- ]
585
- }
586
- );
587
- }
588
- );
589
- fo.displayName = "CarouselPrevious";
590
- const po = r.forwardRef(
591
- ({ className: e, variant: t = "outline", size: a = "icon", ...n }, d) => {
592
- const { orientation: i, scrollNext: m, canScrollNext: u } = G();
593
- return /* @__PURE__ */ s.jsxs(
594
- k,
595
- {
596
- ref: d,
597
- variant: t,
598
- size: a,
599
- className: o(
600
- "absolute h-8 w-8 rounded-full",
601
- i === "horizontal" ? "-right-12 top-1/2 -translate-y-1/2" : "-bottom-12 left-1/2 -translate-x-1/2 rotate-90",
602
- e
603
- ),
604
- disabled: !u,
605
- onClick: m,
606
- ...n,
607
- children: [
608
- /* @__PURE__ */ s.jsx(ya, { className: "h-4 w-4" }),
609
- /* @__PURE__ */ s.jsx("span", { className: "sr-only", children: "Next slide" })
610
- ]
611
- }
612
- );
613
- }
614
- );
615
- po.displayName = "CarouselNext";
616
- const xo = { light: "", dark: ".dark" }, Ot = r.createContext(null);
617
- function Bt() {
618
- const e = r.useContext(Ot);
619
- if (!e)
620
- throw new Error("useChart must be used within a <ChartContainer />");
621
- return e;
622
- }
623
- const go = r.forwardRef(({ id: e, className: t, children: a, config: n, ...d }, i) => {
624
- const m = r.useId(), u = `chart-${e || m.replace(/:/g, "")}`;
625
- return /* @__PURE__ */ s.jsx(Ot.Provider, { value: { config: n }, children: /* @__PURE__ */ s.jsxs(
626
- "div",
627
- {
628
- "data-chart": u,
629
- ref: i,
630
- className: o(
631
- "flex aspect-video justify-center text-xs [&_.recharts-cartesian-axis-tick_text]:fill-muted-foreground [&_.recharts-cartesian-grid_line[stroke='#ccc']]:stroke-border/50 [&_.recharts-curve.recharts-tooltip-cursor]:stroke-border [&_.recharts-dot[stroke='#fff']]:stroke-transparent [&_.recharts-layer]:outline-none [&_.recharts-polar-grid_[stroke='#ccc']]:stroke-border [&_.recharts-radial-bar-background-sector]:fill-muted [&_.recharts-rectangle.recharts-tooltip-cursor]:fill-muted [&_.recharts-reference-line_[stroke='#ccc']]:stroke-border [&_.recharts-sector[stroke='#fff']]:stroke-transparent [&_.recharts-sector]:outline-none [&_.recharts-surface]:outline-none",
632
- t
633
- ),
634
- ...d,
635
- children: [
636
- /* @__PURE__ */ s.jsx(bo, { id: u, config: n }),
637
- /* @__PURE__ */ s.jsx(va, { children: a })
638
- ]
639
- }
640
- ) });
641
- });
642
- go.displayName = "Chart";
643
- const bo = ({ id: e, config: t }) => {
644
- const a = Object.entries(t).filter(([, n]) => n.theme || n.color);
645
- return a.length ? /* @__PURE__ */ s.jsx(
646
- "style",
647
- {
648
- dangerouslySetInnerHTML: {
649
- __html: Object.entries(xo).map(
650
- ([n, d]) => `
651
- ${d} [data-chart=${e}] {
652
- ${a.map(([i, m]) => {
653
- const u = m.theme?.[n] || m.color;
654
- return u ? ` --color-${i}: ${u};` : null;
655
- }).join(`
656
- `)}
657
- }
658
- `
659
- ).join(`
660
- `)
661
- }
662
- }
663
- ) : null;
664
- }, Ln = ja, ho = r.forwardRef(
665
- ({
666
- active: e,
667
- payload: t,
668
- className: a,
669
- indicator: n = "dot",
670
- hideLabel: d = !1,
671
- hideIndicator: i = !1,
672
- label: m,
673
- labelFormatter: u,
674
- labelClassName: c,
675
- formatter: l,
676
- color: p,
677
- nameKey: x,
678
- labelKey: y
679
- }, C) => {
680
- const { config: N } = Bt(), R = r.useMemo(() => {
681
- if (d || !t?.length)
682
- return null;
683
- const [f] = t, b = `${y || f?.dataKey || f?.name || "value"}`, H = W(N, f, b), j = !y && typeof m == "string" ? N[m]?.label || m : H?.label;
684
- return u ? /* @__PURE__ */ s.jsx("div", { className: o("font-medium", c), children: u(j, t) }) : j ? /* @__PURE__ */ s.jsx("div", { className: o("font-medium", c), children: j }) : null;
685
- }, [m, u, t, d, c, N, y]);
686
- if (!e || !t?.length)
687
- return null;
688
- const v = t.length === 1 && n !== "dot";
689
- return /* @__PURE__ */ s.jsxs(
690
- "div",
691
- {
692
- ref: C,
693
- className: o(
694
- "grid min-w-[8rem] items-start gap-1.5 rounded-lg border border-border/50 bg-background px-2.5 py-1.5 text-xs shadow-xl",
695
- a
696
- ),
697
- children: [
698
- v ? null : R,
699
- /* @__PURE__ */ s.jsx("div", { className: "grid gap-1.5", children: t.filter((f) => f.type !== "none").map((f, b) => {
700
- const H = `${x || f.name || f.dataKey || "value"}`, j = W(N, f, H), J = p || f.payload.fill || f.color;
701
- return /* @__PURE__ */ s.jsx(
702
- "div",
703
- {
704
- className: o(
705
- "flex w-full flex-wrap items-stretch gap-2 [&>svg]:h-2.5 [&>svg]:w-2.5 [&>svg]:text-muted-foreground",
706
- n === "dot" && "items-center"
707
- ),
708
- children: l && f?.value !== void 0 && f.name ? l(f.value, f.name, f, b, f.payload) : /* @__PURE__ */ s.jsxs(s.Fragment, { children: [
709
- j?.icon ? /* @__PURE__ */ s.jsx(j.icon, {}) : !i && /* @__PURE__ */ s.jsx(
710
- "div",
711
- {
712
- className: o("shrink-0 rounded-[2px] border-[--color-border] bg-[--color-bg]", {
713
- "h-2.5 w-2.5": n === "dot",
714
- "w-1": n === "line",
715
- "w-0 border-[1.5px] border-dashed bg-transparent": n === "dashed",
716
- "my-0.5": v && n === "dashed"
717
- }),
718
- style: {
719
- "--color-bg": J,
720
- "--color-border": J
721
- }
722
- }
723
- ),
724
- /* @__PURE__ */ s.jsxs(
725
- "div",
726
- {
727
- className: o(
728
- "flex flex-1 justify-between leading-none",
729
- v ? "items-end" : "items-center"
730
- ),
731
- children: [
732
- /* @__PURE__ */ s.jsxs("div", { className: "grid gap-1.5", children: [
733
- v ? R : null,
734
- /* @__PURE__ */ s.jsx("span", { className: "text-muted-foreground", children: j?.label || f.name })
735
- ] }),
736
- f.value && /* @__PURE__ */ s.jsx("span", { className: "font-mono font-medium tabular-nums text-foreground", children: f.value.toLocaleString() })
737
- ]
738
- }
739
- )
740
- ] })
741
- },
742
- f.dataKey
743
- );
744
- }) })
745
- ]
746
- }
747
- );
748
- }
749
- );
750
- ho.displayName = "ChartTooltip";
751
- const En = wa, No = r.forwardRef(({ className: e, hideIcon: t = !1, payload: a, verticalAlign: n = "bottom", nameKey: d }, i) => {
752
- const { config: m } = Bt();
753
- return a?.length ? /* @__PURE__ */ s.jsx(
754
- "div",
755
- {
756
- ref: i,
757
- className: o("flex items-center justify-center gap-4", n === "top" ? "pb-3" : "pt-3", e),
758
- children: a.filter((u) => u.type !== "none").map((u) => {
759
- const c = `${d || u.dataKey || "value"}`, l = W(m, u, c);
760
- return /* @__PURE__ */ s.jsxs(
761
- "div",
762
- {
763
- className: o("flex items-center gap-1.5 [&>svg]:h-3 [&>svg]:w-3 [&>svg]:text-muted-foreground"),
764
- children: [
765
- l?.icon && !t ? /* @__PURE__ */ s.jsx(l.icon, {}) : /* @__PURE__ */ s.jsx(
766
- "div",
767
- {
768
- className: "h-2 w-2 shrink-0 rounded-[2px]",
769
- style: {
770
- backgroundColor: u.color
771
- }
772
- }
773
- ),
774
- l?.label
775
- ]
776
- },
777
- u.value
778
- );
779
- })
780
- }
781
- ) : null;
782
- });
783
- No.displayName = "ChartLegend";
784
- function W(e, t, a) {
785
- if (typeof t != "object" || t === null)
786
- return;
787
- const n = "payload" in t && typeof t.payload == "object" && t.payload !== null ? t.payload : void 0;
788
- let d = a;
789
- return a in t && typeof t[a] == "string" ? d = t[a] : n && a in n && typeof n[a] == "string" && (d = n[a]), d in e ? e[d] : e[a];
790
- }
791
- const yo = r.forwardRef(({ className: e, ...t }, a) => /* @__PURE__ */ s.jsx(
792
- be,
793
- {
794
- ref: a,
795
- className: o(
796
- "grid place-content-center peer h-4 w-4 shrink-0 rounded-sm border border-primary shadow focus-visible:outline-none focus-visible:ring-1 focus-visible:ring-ring disabled:cursor-not-allowed disabled:opacity-50 data-[state=checked]:bg-primary data-[state=checked]:text-primary-foreground",
797
- e
798
- ),
799
- ...t,
800
- children: /* @__PURE__ */ s.jsx(Ca, { className: o("grid place-content-center text-current"), children: /* @__PURE__ */ s.jsx(D, { className: "h-4 w-4" }) })
801
- }
802
- ));
803
- yo.displayName = be.displayName;
804
- const On = Ra, Bn = ka, Gn = Ta, vo = Ne, Vn = ye, wo = he, Hn = L, Gt = r.forwardRef(({ className: e, ...t }, a) => /* @__PURE__ */ s.jsx(
805
- A,
806
- {
807
- ref: a,
808
- className: o(
809
- "fixed inset-0 z-50 bg-black/80 data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=open]:fade-in-0",
810
- e
811
- ),
812
- ...t
813
- }
814
- ));
815
- Gt.displayName = A.displayName;
816
- const Vt = r.forwardRef(({ className: e, children: t, ...a }, n) => /* @__PURE__ */ s.jsxs(wo, { children: [
817
- /* @__PURE__ */ s.jsx(Gt, {}),
818
- /* @__PURE__ */ s.jsxs(
819
- F,
820
- {
821
- ref: n,
822
- className: o(
823
- "fixed left-[50%] top-[50%] z-50 grid w-full max-w-lg translate-x-[-50%] translate-y-[-50%] gap-4 border bg-background p-6 shadow-lg duration-200 data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=open]:fade-in-0 data-[state=closed]:zoom-out-95 data-[state=open]:zoom-in-95 data-[state=closed]:slide-out-to-left-1/2 data-[state=closed]:slide-out-to-top-[48%] data-[state=open]:slide-in-from-left-1/2 data-[state=open]:slide-in-from-top-[48%] sm:rounded-lg",
824
- e
825
- ),
826
- ...a,
827
- children: [
828
- t,
829
- /* @__PURE__ */ s.jsxs(L, { className: "absolute right-4 top-4 rounded-sm opacity-70 ring-offset-background transition-opacity hover:opacity-100 focus:outline-none focus:ring-2 focus:ring-ring focus:ring-offset-2 disabled:pointer-events-none data-[state=open]:bg-accent data-[state=open]:text-muted-foreground", children: [
830
- /* @__PURE__ */ s.jsx(Q, { className: "h-4 w-4" }),
831
- /* @__PURE__ */ s.jsx("span", { className: "sr-only", children: "Close" })
832
- ] })
833
- ]
834
- }
835
- )
836
- ] }));
837
- Vt.displayName = F.displayName;
838
- const jo = ({ className: e, ...t }) => /* @__PURE__ */ s.jsx("div", { className: o("flex flex-col space-y-1.5 text-center sm:text-left", e), ...t });
839
- jo.displayName = "DialogHeader";
840
- const Co = ({ className: e, ...t }) => /* @__PURE__ */ s.jsx("div", { className: o("flex flex-col-reverse sm:flex-row sm:justify-end sm:space-x-2", e), ...t });
841
- Co.displayName = "DialogFooter";
842
- const Ro = r.forwardRef(({ className: e, ...t }, a) => /* @__PURE__ */ s.jsx(
843
- E,
844
- {
845
- ref: a,
846
- className: o("text-lg font-semibold leading-none tracking-tight", e),
847
- ...t
848
- }
849
- ));
850
- Ro.displayName = E.displayName;
851
- const To = r.forwardRef(({ className: e, ...t }, a) => /* @__PURE__ */ s.jsx(O, { ref: a, className: o("text-sm text-muted-foreground", e), ...t }));
852
- To.displayName = O.displayName;
853
- const Ht = r.forwardRef(({ className: e, ...t }, a) => /* @__PURE__ */ s.jsx(
854
- g,
855
- {
856
- ref: a,
857
- className: o(
858
- "flex h-full w-full flex-col overflow-hidden rounded-md bg-popover text-popover-foreground",
859
- e
860
- ),
861
- ...t
862
- }
863
- ));
864
- Ht.displayName = g.displayName;
865
- const Un = ({ children: e, ...t }) => /* @__PURE__ */ s.jsx(vo, { ...t, children: /* @__PURE__ */ s.jsx(Vt, { className: "overflow-hidden p-0", children: /* @__PURE__ */ s.jsx(Ht, { className: "[&_[cmdk-group-heading]]:px-2 [&_[cmdk-group-heading]]:font-medium [&_[cmdk-group-heading]]:text-muted-foreground [&_[cmdk-group]:not([hidden])_~[cmdk-group]]:pt-0 [&_[cmdk-group]]:px-2 [&_[cmdk-input-wrapper]_svg]:h-5 [&_[cmdk-input-wrapper]_svg]:w-5 [&_[cmdk-input]]:h-12 [&_[cmdk-item]]:px-2 [&_[cmdk-item]]:py-3 [&_[cmdk-item]_svg]:h-5 [&_[cmdk-item]_svg]:w-5", children: e }) }) }), ko = r.forwardRef(({ className: e, ...t }, a) => /* @__PURE__ */ s.jsxs("div", { className: "flex items-center border-b px-3", "cmdk-input-wrapper": "", children: [
866
- /* @__PURE__ */ s.jsx(Sa, { className: "mr-2 h-4 w-4 shrink-0 opacity-50" }),
867
- /* @__PURE__ */ s.jsx(
868
- g.Input,
869
- {
870
- ref: a,
871
- className: o(
872
- "flex h-10 w-full rounded-md bg-transparent py-3 text-sm outline-none placeholder:text-muted-foreground disabled:cursor-not-allowed disabled:opacity-50",
873
- e
874
- ),
875
- ...t
876
- }
877
- )
878
- ] }));
879
- ko.displayName = g.Input.displayName;
880
- const So = r.forwardRef(({ className: e, ...t }, a) => /* @__PURE__ */ s.jsx(
881
- g.List,
882
- {
883
- ref: a,
884
- className: o("max-h-[300px] overflow-y-auto overflow-x-hidden", e),
885
- ...t
886
- }
887
- ));
888
- So.displayName = g.List.displayName;
889
- const _o = r.forwardRef((e, t) => /* @__PURE__ */ s.jsx(g.Empty, { ref: t, className: "py-6 text-center text-sm", ...e }));
890
- _o.displayName = g.Empty.displayName;
891
- const $o = r.forwardRef(({ className: e, ...t }, a) => /* @__PURE__ */ s.jsx(
892
- g.Group,
893
- {
894
- ref: a,
895
- className: o(
896
- "overflow-hidden p-1 text-foreground [&_[cmdk-group-heading]]:px-2 [&_[cmdk-group-heading]]:py-1.5 [&_[cmdk-group-heading]]:text-xs [&_[cmdk-group-heading]]:font-medium [&_[cmdk-group-heading]]:text-muted-foreground",
897
- e
898
- ),
899
- ...t
900
- }
901
- ));
902
- $o.displayName = g.Group.displayName;
903
- const Do = r.forwardRef(({ className: e, ...t }, a) => /* @__PURE__ */ s.jsx(g.Separator, { ref: a, className: o("-mx-1 h-px bg-border", e), ...t }));
904
- Do.displayName = g.Separator.displayName;
905
- const Io = r.forwardRef(({ className: e, ...t }, a) => /* @__PURE__ */ s.jsx(
906
- g.Item,
907
- {
908
- ref: a,
909
- className: o(
910
- "relative flex cursor-default gap-2 select-none items-center rounded-sm px-2 py-1.5 text-sm outline-none data-[disabled=true]:pointer-events-none data-[selected=true]:bg-accent data-[selected=true]:text-accent-foreground data-[disabled=true]:opacity-50 [&_svg]:pointer-events-none [&_svg]:size-4 [&_svg]:shrink-0",
911
- e
912
- ),
913
- ...t
914
- }
915
- ));
916
- Io.displayName = g.Item.displayName;
917
- const zo = ({ className: e, ...t }) => /* @__PURE__ */ s.jsx("span", { className: o("ml-auto text-xs tracking-widest text-muted-foreground", e), ...t });
918
- zo.displayName = "CommandShortcut";
919
- const qn = _a, Kn = za, Wn = $a, Xn = je, Qn = Ia, Yn = Da, Mo = r.forwardRef(({ className: e, inset: t, children: a, ...n }, d) => /* @__PURE__ */ s.jsxs(
920
- ve,
921
- {
922
- ref: d,
923
- className: o(
924
- "flex cursor-default select-none items-center rounded-sm px-2 py-1.5 text-sm outline-none focus:bg-accent focus:text-accent-foreground data-[state=open]:bg-accent data-[state=open]:text-accent-foreground",
925
- t && "pl-8",
926
- e
927
- ),
928
- ...n,
929
- children: [
930
- a,
931
- /* @__PURE__ */ s.jsx(S, { className: "ml-auto h-4 w-4" })
932
- ]
933
- }
934
- ));
935
- Mo.displayName = ve.displayName;
936
- const Po = r.forwardRef(({ className: e, ...t }, a) => /* @__PURE__ */ s.jsx(
937
- we,
938
- {
939
- ref: a,
940
- className: o(
941
- "z-50 min-w-[8rem] overflow-hidden rounded-md border bg-popover p-1 text-popover-foreground shadow-lg data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=open]:fade-in-0 data-[state=closed]:zoom-out-95 data-[state=open]:zoom-in-95 data-[side=bottom]:slide-in-from-top-2 data-[side=left]:slide-in-from-right-2 data-[side=right]:slide-in-from-left-2 data-[side=top]:slide-in-from-bottom-2 origin-[--radix-context-menu-content-transform-origin]",
942
- e
943
- ),
944
- ...t
945
- }
946
- ));
947
- Po.displayName = we.displayName;
948
- const Ao = r.forwardRef(({ className: e, ...t }, a) => /* @__PURE__ */ s.jsx(je, { children: /* @__PURE__ */ s.jsx(
949
- Ce,
950
- {
951
- ref: a,
952
- className: o(
953
- "z-50 max-h-[--radix-context-menu-content-available-height] min-w-[8rem] overflow-y-auto overflow-x-hidden rounded-md border bg-popover p-1 text-popover-foreground shadow-md data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=open]:fade-in-0 data-[state=closed]:zoom-out-95 data-[state=open]:zoom-in-95 data-[side=bottom]:slide-in-from-top-2 data-[side=left]:slide-in-from-right-2 data-[side=right]:slide-in-from-left-2 data-[side=top]:slide-in-from-bottom-2 origin-[--radix-context-menu-content-transform-origin]",
954
- e
955
- ),
956
- ...t
957
- }
958
- ) }));
959
- Ao.displayName = Ce.displayName;
960
- const Fo = r.forwardRef(({ className: e, inset: t, ...a }, n) => /* @__PURE__ */ s.jsx(
961
- Re,
962
- {
963
- ref: n,
964
- className: o(
965
- "relative flex cursor-default select-none items-center rounded-sm px-2 py-1.5 text-sm outline-none focus:bg-accent focus:text-accent-foreground data-[disabled]:pointer-events-none data-[disabled]:opacity-50",
966
- t && "pl-8",
967
- e
968
- ),
969
- ...a
970
- }
971
- ));
972
- Fo.displayName = Re.displayName;
973
- const Lo = r.forwardRef(({ className: e, children: t, checked: a, ...n }, d) => /* @__PURE__ */ s.jsxs(
974
- Te,
975
- {
976
- ref: d,
977
- className: o(
978
- "relative flex cursor-default select-none items-center rounded-sm py-1.5 pl-8 pr-2 text-sm outline-none focus:bg-accent focus:text-accent-foreground data-[disabled]:pointer-events-none data-[disabled]:opacity-50",
979
- e
980
- ),
981
- checked: a,
982
- ...n,
983
- children: [
984
- /* @__PURE__ */ s.jsx("span", { className: "absolute left-2 flex h-3.5 w-3.5 items-center justify-center", children: /* @__PURE__ */ s.jsx(ke, { children: /* @__PURE__ */ s.jsx(D, { className: "h-4 w-4" }) }) }),
985
- t
986
- ]
987
- }
988
- ));
989
- Lo.displayName = Te.displayName;
990
- const Eo = r.forwardRef(({ className: e, children: t, ...a }, n) => /* @__PURE__ */ s.jsxs(
991
- Se,
992
- {
993
- ref: n,
994
- className: o(
995
- "relative flex cursor-default select-none items-center rounded-sm py-1.5 pl-8 pr-2 text-sm outline-none focus:bg-accent focus:text-accent-foreground data-[disabled]:pointer-events-none data-[disabled]:opacity-50",
996
- e
997
- ),
998
- ...a,
999
- children: [
1000
- /* @__PURE__ */ s.jsx("span", { className: "absolute left-2 flex h-3.5 w-3.5 items-center justify-center", children: /* @__PURE__ */ s.jsx(ke, { children: /* @__PURE__ */ s.jsx(B, { className: "h-4 w-4 fill-current" }) }) }),
1001
- t
1002
- ]
1003
- }
1004
- ));
1005
- Eo.displayName = Se.displayName;
1006
- const Oo = r.forwardRef(({ className: e, inset: t, ...a }, n) => /* @__PURE__ */ s.jsx(
1007
- _e,
1008
- {
1009
- ref: n,
1010
- className: o("px-2 py-1.5 text-sm font-semibold text-foreground", t && "pl-8", e),
1011
- ...a
1012
- }
1013
- ));
1014
- Oo.displayName = _e.displayName;
1015
- const Bo = r.forwardRef(({ className: e, ...t }, a) => /* @__PURE__ */ s.jsx($e, { ref: a, className: o("-mx-1 my-1 h-px bg-border", e), ...t }));
1016
- Bo.displayName = $e.displayName;
1017
- const Go = ({ className: e, ...t }) => /* @__PURE__ */ s.jsx("span", { className: o("ml-auto text-xs tracking-widest text-muted-foreground", e), ...t });
1018
- Go.displayName = "ContextMenuShortcut";
1019
- const Vo = ({ shouldScaleBackground: e = !0, ...t }) => /* @__PURE__ */ s.jsx(h.Root, { shouldScaleBackground: e, ...t });
1020
- Vo.displayName = "Drawer";
1021
- const Jn = h.Trigger, Ho = h.Portal, Zn = h.Close, Ut = r.forwardRef(({ className: e, ...t }, a) => /* @__PURE__ */ s.jsx(h.Overlay, { ref: a, className: o("fixed inset-0 z-50 bg-black/80", e), ...t }));
1022
- Ut.displayName = h.Overlay.displayName;
1023
- const Uo = r.forwardRef(({ className: e, children: t, ...a }, n) => /* @__PURE__ */ s.jsxs(Ho, { children: [
1024
- /* @__PURE__ */ s.jsx(Ut, {}),
1025
- /* @__PURE__ */ s.jsxs(
1026
- h.Content,
1027
- {
1028
- ref: n,
1029
- className: o(
1030
- "fixed inset-x-0 bottom-0 z-50 mt-24 flex h-auto flex-col rounded-t-[10px] border bg-background",
1031
- e
1032
- ),
1033
- ...a,
1034
- children: [
1035
- /* @__PURE__ */ s.jsx("div", { className: "mx-auto mt-4 h-2 w-[100px] rounded-full bg-muted" }),
1036
- t
1037
- ]
1038
- }
1039
- )
1040
- ] }));
1041
- Uo.displayName = "DrawerContent";
1042
- const qo = ({ className: e, ...t }) => /* @__PURE__ */ s.jsx("div", { className: o("grid gap-1.5 p-4 text-center sm:text-left", e), ...t });
1043
- qo.displayName = "DrawerHeader";
1044
- const Ko = ({ className: e, ...t }) => /* @__PURE__ */ s.jsx("div", { className: o("mt-auto flex flex-col gap-2 p-4", e), ...t });
1045
- Ko.displayName = "DrawerFooter";
1046
- const Wo = r.forwardRef(({ className: e, ...t }, a) => /* @__PURE__ */ s.jsx(
1047
- h.Title,
1048
- {
1049
- ref: a,
1050
- className: o("text-lg font-semibold leading-none tracking-tight", e),
1051
- ...t
1052
- }
1053
- ));
1054
- Wo.displayName = h.Title.displayName;
1055
- const Xo = r.forwardRef(({ className: e, ...t }, a) => /* @__PURE__ */ s.jsx(h.Description, { ref: a, className: o("text-sm text-muted-foreground", e), ...t }));
1056
- Xo.displayName = h.Description.displayName;
1057
- const Qo = Ma, Yo = La, ed = Pa, td = ze, ad = Fa, sd = Aa, Jo = r.forwardRef(({ className: e, inset: t, children: a, ...n }, d) => /* @__PURE__ */ s.jsxs(
1058
- De,
1059
- {
1060
- ref: d,
1061
- className: o(
1062
- "flex cursor-default select-none items-center gap-2 rounded-sm px-2 py-1.5 text-sm outline-none focus:bg-accent data-[state=open]:bg-accent [&_svg]:pointer-events-none [&_svg]:size-4 [&_svg]:shrink-0",
1063
- t && "pl-8",
1064
- e
1065
- ),
1066
- ...n,
1067
- children: [
1068
- a,
1069
- /* @__PURE__ */ s.jsx(S, { className: "ml-auto" })
1070
- ]
1071
- }
1072
- ));
1073
- Jo.displayName = De.displayName;
1074
- const Zo = r.forwardRef(({ className: e, ...t }, a) => /* @__PURE__ */ s.jsx(
1075
- Ie,
1076
- {
1077
- ref: a,
1078
- className: o(
1079
- "z-50 min-w-[8rem] overflow-hidden rounded-md border bg-popover p-1 text-popover-foreground shadow-lg data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=open]:fade-in-0 data-[state=closed]:zoom-out-95 data-[state=open]:zoom-in-95 data-[side=bottom]:slide-in-from-top-2 data-[side=left]:slide-in-from-right-2 data-[side=right]:slide-in-from-left-2 data-[side=top]:slide-in-from-bottom-2 origin-[--radix-dropdown-menu-content-transform-origin]",
1080
- e
1081
- ),
1082
- ...t
1083
- }
1084
- ));
1085
- Zo.displayName = Ie.displayName;
1086
- const qt = r.forwardRef(({ className: e, sideOffset: t = 4, ...a }, n) => /* @__PURE__ */ s.jsx(ze, { children: /* @__PURE__ */ s.jsx(
1087
- Me,
1088
- {
1089
- ref: n,
1090
- sideOffset: t,
1091
- className: o(
1092
- "z-50 max-h-[var(--radix-dropdown-menu-content-available-height)] min-w-[8rem] overflow-y-auto overflow-x-hidden rounded-md border bg-popover p-1 text-popover-foreground shadow-md",
1093
- "data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=open]:fade-in-0 data-[state=closed]:zoom-out-95 data-[state=open]:zoom-in-95 data-[side=bottom]:slide-in-from-top-2 data-[side=left]:slide-in-from-right-2 data-[side=right]:slide-in-from-left-2 data-[side=top]:slide-in-from-bottom-2 origin-[--radix-dropdown-menu-content-transform-origin]",
1094
- e
1095
- ),
1096
- ...a
1097
- }
1098
- ) }));
1099
- qt.displayName = Me.displayName;
1100
- const z = r.forwardRef(({ className: e, inset: t, ...a }, n) => /* @__PURE__ */ s.jsx(
1101
- Pe,
1102
- {
1103
- ref: n,
1104
- className: o(
1105
- "relative flex cursor-default select-none items-center gap-2 rounded-sm px-2 py-1.5 text-sm outline-none transition-colors focus:bg-accent focus:text-accent-foreground data-[disabled]:pointer-events-none data-[disabled]:opacity-50 [&>svg]:size-4 [&>svg]:shrink-0",
1106
- t && "pl-8",
1107
- e
1108
- ),
1109
- ...a
1110
- }
1111
- ));
1112
- z.displayName = Pe.displayName;
1113
- const er = r.forwardRef(({ className: e, children: t, checked: a, ...n }, d) => /* @__PURE__ */ s.jsxs(
1114
- Ae,
1115
- {
1116
- ref: d,
1117
- className: o(
1118
- "relative flex cursor-default select-none items-center rounded-sm py-1.5 pl-8 pr-2 text-sm outline-none transition-colors focus:bg-accent focus:text-accent-foreground data-[disabled]:pointer-events-none data-[disabled]:opacity-50",
1119
- e
1120
- ),
1121
- checked: a,
1122
- ...n,
1123
- children: [
1124
- /* @__PURE__ */ s.jsx("span", { className: "absolute left-2 flex h-3.5 w-3.5 items-center justify-center", children: /* @__PURE__ */ s.jsx(Fe, { children: /* @__PURE__ */ s.jsx(D, { className: "h-4 w-4" }) }) }),
1125
- t
1126
- ]
1127
- }
1128
- ));
1129
- er.displayName = Ae.displayName;
1130
- const tr = r.forwardRef(({ className: e, children: t, ...a }, n) => /* @__PURE__ */ s.jsxs(
1131
- Le,
1132
- {
1133
- ref: n,
1134
- className: o(
1135
- "relative flex cursor-default select-none items-center rounded-sm py-1.5 pl-8 pr-2 text-sm outline-none transition-colors focus:bg-accent focus:text-accent-foreground data-[disabled]:pointer-events-none data-[disabled]:opacity-50",
1136
- e
1137
- ),
1138
- ...a,
1139
- children: [
1140
- /* @__PURE__ */ s.jsx("span", { className: "absolute left-2 flex h-3.5 w-3.5 items-center justify-center", children: /* @__PURE__ */ s.jsx(Fe, { children: /* @__PURE__ */ s.jsx(B, { className: "h-2 w-2 fill-current" }) }) }),
1141
- t
1142
- ]
1143
- }
1144
- ));
1145
- tr.displayName = Le.displayName;
1146
- const ar = r.forwardRef(({ className: e, inset: t, ...a }, n) => /* @__PURE__ */ s.jsx(
1147
- Ee,
1148
- {
1149
- ref: n,
1150
- className: o("px-2 py-1.5 text-sm font-semibold", t && "pl-8", e),
1151
- ...a
1152
- }
1153
- ));
1154
- ar.displayName = Ee.displayName;
1155
- const sr = r.forwardRef(({ className: e, ...t }, a) => /* @__PURE__ */ s.jsx(Oe, { ref: a, className: o("-mx-1 my-1 h-px bg-muted", e), ...t }));
1156
- sr.displayName = Oe.displayName;
1157
- const or = ({ className: e, ...t }) => /* @__PURE__ */ s.jsx("span", { className: o("ml-auto text-xs tracking-widest opacity-60", e), ...t });
1158
- or.displayName = "DropdownMenuShortcut";
1159
- const rr = w("text-sm font-medium leading-none peer-disabled:cursor-not-allowed peer-disabled:opacity-70"), Kt = r.forwardRef(({ className: e, ...t }, a) => /* @__PURE__ */ s.jsx(Be, { ref: a, className: o(rr(), e), ...t }));
1160
- Kt.displayName = Be.displayName;
1161
- const od = Oa, Wt = r.createContext(null), rd = ({
1162
- ...e
1163
- }) => /* @__PURE__ */ s.jsx(Wt.Provider, { value: { name: e.name }, children: /* @__PURE__ */ s.jsx(Ba, { ...e }) }), V = () => {
1164
- const e = r.useContext(Wt), t = r.useContext(Xt), { getFieldState: a, formState: n } = Ea();
1165
- if (!e)
1166
- throw new Error("useFormField should be used within <FormField>");
1167
- if (!t)
1168
- throw new Error("useFormField should be used within <FormItem>");
1169
- const d = a(e.name, n), { id: i } = t;
1170
- return {
1171
- id: i,
1172
- name: e.name,
1173
- formItemId: `${i}-form-item`,
1174
- formDescriptionId: `${i}-form-item-description`,
1175
- formMessageId: `${i}-form-item-message`,
1176
- ...d
1177
- };
1178
- }, Xt = r.createContext(null), nr = r.forwardRef(
1179
- ({ className: e, ...t }, a) => {
1180
- const n = r.useId();
1181
- return /* @__PURE__ */ s.jsx(Xt.Provider, { value: { id: n }, children: /* @__PURE__ */ s.jsx("div", { ref: a, className: o("space-y-2", e), ...t }) });
1182
- }
1183
- );
1184
- nr.displayName = "FormItem";
1185
- const dr = r.forwardRef(({ className: e, ...t }, a) => {
1186
- const { error: n, formItemId: d } = V();
1187
- return /* @__PURE__ */ s.jsx(Kt, { ref: a, className: o(n && "text-destructive", e), htmlFor: d, ...t });
1188
- });
1189
- dr.displayName = "FormLabel";
1190
- const ir = r.forwardRef(
1191
- ({ ...e }, t) => {
1192
- const { error: a, formItemId: n, formDescriptionId: d, formMessageId: i } = V();
1193
- return /* @__PURE__ */ s.jsx(
1194
- X,
1195
- {
1196
- ref: t,
1197
- id: n,
1198
- "aria-describedby": a ? `${d} ${i}` : `${d}`,
1199
- "aria-invalid": !!a,
1200
- ...e
1201
- }
1202
- );
1203
- }
1204
- );
1205
- ir.displayName = "FormControl";
1206
- const lr = r.forwardRef(
1207
- ({ className: e, ...t }, a) => {
1208
- const { formDescriptionId: n } = V();
1209
- return /* @__PURE__ */ s.jsx("p", { ref: a, id: n, className: o("text-[0.8rem] text-muted-foreground", e), ...t });
1210
- }
1211
- );
1212
- lr.displayName = "FormDescription";
1213
- const cr = r.forwardRef(
1214
- ({ className: e, children: t, ...a }, n) => {
1215
- const { error: d, formMessageId: i } = V(), m = d ? String(d?.message ?? "") : t;
1216
- return m ? /* @__PURE__ */ s.jsx(
1217
- "p",
1218
- {
1219
- ref: n,
1220
- id: i,
1221
- className: o("text-[0.8rem] font-medium text-destructive", e),
1222
- ...a,
1223
- children: m
1224
- }
1225
- ) : null;
1226
- }
1227
- );
1228
- cr.displayName = "FormMessage";
1229
- const nd = Ga, dd = Va, mr = r.forwardRef(({ className: e, align: t = "center", sideOffset: a = 4, ...n }, d) => /* @__PURE__ */ s.jsx(
1230
- Ge,
1231
- {
1232
- ref: d,
1233
- align: t,
1234
- sideOffset: a,
1235
- className: o(
1236
- "z-50 w-64 rounded-md border bg-popover p-4 text-popover-foreground shadow-md outline-none data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=open]:fade-in-0 data-[state=closed]:zoom-out-95 data-[state=open]:zoom-in-95 data-[side=bottom]:slide-in-from-top-2 data-[side=left]:slide-in-from-right-2 data-[side=right]:slide-in-from-left-2 data-[side=top]:slide-in-from-bottom-2 origin-[--radix-hover-card-content-transform-origin]",
1237
- e
1238
- ),
1239
- ...n
1240
- }
1241
- ));
1242
- mr.displayName = Ge.displayName;
1243
- const ur = r.forwardRef(
1244
- ({ className: e, type: t, ...a }, n) => /* @__PURE__ */ s.jsx(
1245
- "input",
1246
- {
1247
- type: t,
1248
- className: o(
1249
- "flex h-9 w-full rounded-md border border-input bg-transparent px-3 py-1 text-base shadow-sm transition-colors file:border-0 file:bg-transparent file:text-sm file:font-medium file:text-foreground placeholder:text-muted-foreground focus-visible:outline-none focus-visible:ring-1 focus-visible:ring-ring disabled:cursor-not-allowed disabled:opacity-50 md:text-sm",
1250
- e
1251
- ),
1252
- ref: n,
1253
- ...a
1254
- }
1255
- )
1256
- );
1257
- ur.displayName = "Input";
1258
- function id({ ...e }) {
1259
- return /* @__PURE__ */ s.jsx(Ua, { ...e });
1260
- }
1261
- function ld({ ...e }) {
1262
- return /* @__PURE__ */ s.jsx(Ha, { ...e });
1263
- }
1264
- function cd({ ...e }) {
1265
- return /* @__PURE__ */ s.jsx(Ke, { ...e });
1266
- }
1267
- function md({ ...e }) {
1268
- return /* @__PURE__ */ s.jsx(qa, { ...e });
1269
- }
1270
- function ud({ ...e }) {
1271
- return /* @__PURE__ */ s.jsx(Ka, { "data-slot": "menubar-sub", ...e });
1272
- }
1273
- const fr = r.forwardRef(({ className: e, ...t }, a) => /* @__PURE__ */ s.jsx(
1274
- Ve,
1275
- {
1276
- ref: a,
1277
- className: o("flex h-9 items-center space-x-1 rounded-md border bg-background p-1 shadow-sm", e),
1278
- ...t
1279
- }
1280
- ));
1281
- fr.displayName = Ve.displayName;
1282
- const pr = r.forwardRef(({ className: e, ...t }, a) => /* @__PURE__ */ s.jsx(
1283
- He,
1284
- {
1285
- ref: a,
1286
- className: o(
1287
- "flex cursor-default select-none items-center rounded-sm px-3 py-1 text-sm font-medium outline-none focus:bg-accent focus:text-accent-foreground data-[state=open]:bg-accent data-[state=open]:text-accent-foreground",
1288
- e
1289
- ),
1290
- ...t
1291
- }
1292
- ));
1293
- pr.displayName = He.displayName;
1294
- const xr = r.forwardRef(({ className: e, inset: t, children: a, ...n }, d) => /* @__PURE__ */ s.jsxs(
1295
- Ue,
1296
- {
1297
- ref: d,
1298
- className: o(
1299
- "flex cursor-default select-none items-center rounded-sm px-2 py-1.5 text-sm outline-none focus:bg-accent focus:text-accent-foreground data-[state=open]:bg-accent data-[state=open]:text-accent-foreground",
1300
- t && "pl-8",
1301
- e
1302
- ),
1303
- ...n,
1304
- children: [
1305
- a,
1306
- /* @__PURE__ */ s.jsx(S, { className: "ml-auto h-4 w-4" })
1307
- ]
1308
- }
1309
- ));
1310
- xr.displayName = Ue.displayName;
1311
- const gr = r.forwardRef(({ className: e, ...t }, a) => /* @__PURE__ */ s.jsx(
1312
- qe,
1313
- {
1314
- ref: a,
1315
- className: o(
1316
- "z-50 min-w-[8rem] overflow-hidden rounded-md border bg-popover p-1 text-popover-foreground shadow-lg data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=open]:fade-in-0 data-[state=closed]:zoom-out-95 data-[state=open]:zoom-in-95 data-[side=bottom]:slide-in-from-top-2 data-[side=left]:slide-in-from-right-2 data-[side=right]:slide-in-from-left-2 data-[side=top]:slide-in-from-bottom-2 origin-[--radix-menubar-content-transform-origin]",
1317
- e
1318
- ),
1319
- ...t
1320
- }
1321
- ));
1322
- gr.displayName = qe.displayName;
1323
- const br = r.forwardRef(({ className: e, align: t = "start", alignOffset: a = -4, sideOffset: n = 8, ...d }, i) => /* @__PURE__ */ s.jsx(Ke, { children: /* @__PURE__ */ s.jsx(
1324
- We,
1325
- {
1326
- ref: i,
1327
- align: t,
1328
- alignOffset: a,
1329
- sideOffset: n,
1330
- className: o(
1331
- "z-50 min-w-[12rem] overflow-hidden rounded-md border bg-popover p-1 text-popover-foreground shadow-md data-[state=open]:animate-in data-[state=closed]:fade-out-0 data-[state=open]:fade-in-0 data-[state=closed]:zoom-out-95 data-[state=open]:zoom-in-95 data-[side=bottom]:slide-in-from-top-2 data-[side=left]:slide-in-from-right-2 data-[side=right]:slide-in-from-left-2 data-[side=top]:slide-in-from-bottom-2 origin-[--radix-menubar-content-transform-origin]",
1332
- e
1333
- ),
1334
- ...d
1335
- }
1336
- ) }));
1337
- br.displayName = We.displayName;
1338
- const hr = r.forwardRef(({ className: e, inset: t, ...a }, n) => /* @__PURE__ */ s.jsx(
1339
- Xe,
1340
- {
1341
- ref: n,
1342
- className: o(
1343
- "relative flex cursor-default select-none items-center rounded-sm px-2 py-1.5 text-sm outline-none focus:bg-accent focus:text-accent-foreground data-[disabled]:pointer-events-none data-[disabled]:opacity-50",
1344
- t && "pl-8",
1345
- e
1346
- ),
1347
- ...a
1348
- }
1349
- ));
1350
- hr.displayName = Xe.displayName;
1351
- const Nr = r.forwardRef(({ className: e, children: t, checked: a, ...n }, d) => /* @__PURE__ */ s.jsxs(
1352
- Qe,
1353
- {
1354
- ref: d,
1355
- className: o(
1356
- "relative flex cursor-default select-none items-center rounded-sm py-1.5 pl-8 pr-2 text-sm outline-none focus:bg-accent focus:text-accent-foreground data-[disabled]:pointer-events-none data-[disabled]:opacity-50",
1357
- e
1358
- ),
1359
- checked: a,
1360
- ...n,
1361
- children: [
1362
- /* @__PURE__ */ s.jsx("span", { className: "absolute left-2 flex h-3.5 w-3.5 items-center justify-center", children: /* @__PURE__ */ s.jsx(Ye, { children: /* @__PURE__ */ s.jsx(D, { className: "h-4 w-4" }) }) }),
1363
- t
1364
- ]
1365
- }
1366
- ));
1367
- Nr.displayName = Qe.displayName;
1368
- const yr = r.forwardRef(({ className: e, children: t, ...a }, n) => /* @__PURE__ */ s.jsxs(
1369
- Je,
1370
- {
1371
- ref: n,
1372
- className: o(
1373
- "relative flex cursor-default select-none items-center rounded-sm py-1.5 pl-8 pr-2 text-sm outline-none focus:bg-accent focus:text-accent-foreground data-[disabled]:pointer-events-none data-[disabled]:opacity-50",
1374
- e
1375
- ),
1376
- ...a,
1377
- children: [
1378
- /* @__PURE__ */ s.jsx("span", { className: "absolute left-2 flex h-3.5 w-3.5 items-center justify-center", children: /* @__PURE__ */ s.jsx(Ye, { children: /* @__PURE__ */ s.jsx(B, { className: "h-4 w-4 fill-current" }) }) }),
1379
- t
1380
- ]
1381
- }
1382
- ));
1383
- yr.displayName = Je.displayName;
1384
- const vr = r.forwardRef(({ className: e, inset: t, ...a }, n) => /* @__PURE__ */ s.jsx(
1385
- Ze,
1386
- {
1387
- ref: n,
1388
- className: o("px-2 py-1.5 text-sm font-semibold", t && "pl-8", e),
1389
- ...a
1390
- }
1391
- ));
1392
- vr.displayName = Ze.displayName;
1393
- const wr = r.forwardRef(({ className: e, ...t }, a) => /* @__PURE__ */ s.jsx(et, { ref: a, className: o("-mx-1 my-1 h-px bg-muted", e), ...t }));
1394
- wr.displayName = et.displayName;
1395
- const jr = ({ className: e, ...t }) => /* @__PURE__ */ s.jsx("span", { className: o("ml-auto text-xs tracking-widest text-muted-foreground", e), ...t });
1396
- jr.displayname = "MenubarShortcut";
1397
- const Cr = r.forwardRef(({ className: e, children: t, ...a }, n) => /* @__PURE__ */ s.jsxs(
1398
- tt,
1399
- {
1400
- ref: n,
1401
- className: o("relative z-10 flex max-w-max flex-1 items-center justify-center", e),
1402
- ...a,
1403
- children: [
1404
- t,
1405
- /* @__PURE__ */ s.jsx(Qt, {})
1406
- ]
1407
- }
1408
- ));
1409
- Cr.displayName = tt.displayName;
1410
- const Rr = r.forwardRef(({ className: e, ...t }, a) => /* @__PURE__ */ s.jsx(
1411
- at,
1412
- {
1413
- ref: a,
1414
- className: o("group flex flex-1 list-none items-center justify-center space-x-1", e),
1415
- ...t
1416
- }
1417
- ));
1418
- Rr.displayName = at.displayName;
1419
- const fd = Wa, Tr = w(
1420
- "group inline-flex h-9 w-max items-center justify-center rounded-md bg-background px-4 py-2 text-sm font-medium transition-colors hover:bg-accent hover:text-accent-foreground focus:bg-accent focus:text-accent-foreground focus:outline-none disabled:pointer-events-none disabled:opacity-50 data-[state=open]:text-accent-foreground data-[state=open]:bg-accent/50 data-[state=open]:hover:bg-accent data-[state=open]:focus:bg-accent"
1421
- ), kr = r.forwardRef(({ className: e, children: t, ...a }, n) => /* @__PURE__ */ s.jsxs(
1422
- st,
1423
- {
1424
- ref: n,
1425
- className: o(Tr(), "group", e),
1426
- ...a,
1427
- children: [
1428
- t,
1429
- " ",
1430
- /* @__PURE__ */ s.jsx(
1431
- $,
1432
- {
1433
- className: "relative top-[1px] ml-1 h-3 w-3 transition duration-300 group-data-[state=open]:rotate-180",
1434
- "aria-hidden": "true"
1435
- }
1436
- )
1437
- ]
1438
- }
1439
- ));
1440
- kr.displayName = st.displayName;
1441
- const Sr = r.forwardRef(({ className: e, ...t }, a) => /* @__PURE__ */ s.jsx(
1442
- ot,
1443
- {
1444
- ref: a,
1445
- className: o(
1446
- "left-0 top-0 w-full data-[motion^=from-]:animate-in data-[motion^=to-]:animate-out data-[motion^=from-]:fade-in data-[motion^=to-]:fade-out data-[motion=from-end]:slide-in-from-right-52 data-[motion=from-start]:slide-in-from-left-52 data-[motion=to-end]:slide-out-to-right-52 data-[motion=to-start]:slide-out-to-left-52 md:absolute md:w-auto ",
1447
- e
1448
- ),
1449
- ...t
1450
- }
1451
- ));
1452
- Sr.displayName = ot.displayName;
1453
- const pd = Xa, Qt = r.forwardRef(({ className: e, ...t }, a) => /* @__PURE__ */ s.jsx("div", { className: o("absolute left-0 top-full flex justify-center"), children: /* @__PURE__ */ s.jsx(
1454
- rt,
1455
- {
1456
- className: o(
1457
- "origin-top-center relative mt-1.5 h-[var(--radix-navigation-menu-viewport-height)] w-full overflow-hidden rounded-md border bg-popover text-popover-foreground shadow data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=closed]:zoom-out-95 data-[state=open]:zoom-in-90 md:w-[var(--radix-navigation-menu-viewport-width)]",
1458
- e
1459
- ),
1460
- ref: a,
1461
- ...t
1462
- }
1463
- ) }));
1464
- Qt.displayName = rt.displayName;
1465
- const _r = r.forwardRef(({ className: e, ...t }, a) => /* @__PURE__ */ s.jsx(
1466
- nt,
1467
- {
1468
- ref: a,
1469
- className: o(
1470
- "top-full z-[1] flex h-1.5 items-end justify-center overflow-hidden data-[state=visible]:animate-in data-[state=hidden]:animate-out data-[state=hidden]:fade-out data-[state=visible]:fade-in",
1471
- e
1472
- ),
1473
- ...t,
1474
- children: /* @__PURE__ */ s.jsx("div", { className: "relative top-[60%] h-2 w-2 rotate-45 rounded-tl-sm bg-border shadow-md" })
1475
- }
1476
- ));
1477
- _r.displayName = nt.displayName;
1478
- const $r = ({ className: e, ...t }) => /* @__PURE__ */ s.jsx(
1479
- "nav",
1480
- {
1481
- role: "navigation",
1482
- "aria-label": "pagination",
1483
- className: o("mx-auto flex w-full justify-center", e),
1484
- ...t
1485
- }
1486
- );
1487
- $r.displayName = "Pagination";
1488
- const Dr = r.forwardRef(
1489
- ({ className: e, ...t }, a) => /* @__PURE__ */ s.jsx("ul", { ref: a, className: o("flex flex-row items-center gap-1", e), ...t })
1490
- );
1491
- Dr.displayName = "PaginationContent";
1492
- const Ir = r.forwardRef(({ className: e, ...t }, a) => /* @__PURE__ */ s.jsx("li", { ref: a, className: o("", e), ...t }));
1493
- Ir.displayName = "PaginationItem";
1494
- const Y = ({ className: e, isActive: t, size: a = "icon", ...n }) => /* @__PURE__ */ s.jsx(
1495
- "a",
1496
- {
1497
- "aria-current": t ? "page" : void 0,
1498
- className: o(
1499
- T({
1500
- variant: t ? "outline" : "ghost",
1501
- size: a
1502
- }),
1503
- e
1504
- ),
1505
- ...n
1506
- }
1507
- );
1508
- Y.displayName = "PaginationLink";
1509
- const zr = ({ className: e, ...t }) => /* @__PURE__ */ s.jsxs(Y, { "aria-label": "Go to previous page", size: "default", className: o("gap-1 pl-2.5", e), ...t, children: [
1510
- /* @__PURE__ */ s.jsx(ge, { className: "h-4 w-4" }),
1511
- /* @__PURE__ */ s.jsx("span", { children: "Previous" })
1512
- ] });
1513
- zr.displayName = "PaginationPrevious";
1514
- const Mr = ({ className: e, ...t }) => /* @__PURE__ */ s.jsxs(Y, { "aria-label": "Go to next page", size: "default", className: o("gap-1 pr-2.5", e), ...t, children: [
1515
- /* @__PURE__ */ s.jsx("span", { children: "Next" }),
1516
- /* @__PURE__ */ s.jsx(S, { className: "h-4 w-4" })
1517
- ] });
1518
- Mr.displayName = "PaginationNext";
1519
- const Pr = ({ className: e, ...t }) => /* @__PURE__ */ s.jsxs("span", { "aria-hidden": !0, className: o("flex h-9 w-9 items-center justify-center", e), ...t, children: [
1520
- /* @__PURE__ */ s.jsx(pe, { className: "h-4 w-4" }),
1521
- /* @__PURE__ */ s.jsx("span", { className: "sr-only", children: "More pages" })
1522
- ] });
1523
- Pr.displayName = "PaginationEllipsis";
1524
- const xd = Ya, gd = Za, bd = Ja, Ar = r.forwardRef(({ className: e, align: t = "center", sideOffset: a = 4, ...n }, d) => /* @__PURE__ */ s.jsx(Qa, { children: /* @__PURE__ */ s.jsx(
1525
- dt,
1526
- {
1527
- ref: d,
1528
- align: t,
1529
- sideOffset: a,
1530
- className: o(
1531
- "z-50 w-72 rounded-md border bg-popover p-4 text-popover-foreground shadow-md outline-none data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=open]:fade-in-0 data-[state=closed]:zoom-out-95 data-[state=open]:zoom-in-95 data-[side=bottom]:slide-in-from-top-2 data-[side=left]:slide-in-from-right-2 data-[side=right]:slide-in-from-left-2 data-[side=top]:slide-in-from-bottom-2 origin-[--radix-popover-content-transform-origin]",
1532
- e
1533
- ),
1534
- ...n
1535
- }
1536
- ) }));
1537
- Ar.displayName = dt.displayName;
1538
- const Fr = r.forwardRef(({ className: e, value: t, ...a }, n) => /* @__PURE__ */ s.jsx(
1539
- it,
1540
- {
1541
- ref: n,
1542
- className: o("relative h-2 w-full overflow-hidden rounded-full bg-primary/20", e),
1543
- value: t,
1544
- ...a,
1545
- children: /* @__PURE__ */ s.jsx(
1546
- es,
1547
- {
1548
- className: "h-full w-full flex-1 bg-primary transition-all",
1549
- style: { transform: `translateX(-${100 - (t || 0)}%)` }
1550
- }
1551
- )
1552
- }
1553
- ));
1554
- Fr.displayName = it.displayName;
1555
- const Lr = r.forwardRef(({ className: e, ...t }, a) => /* @__PURE__ */ s.jsx(lt, { className: o("grid gap-2", e), ...t, ref: a }));
1556
- Lr.displayName = lt.displayName;
1557
- const Er = r.forwardRef(({ className: e, ...t }, a) => /* @__PURE__ */ s.jsx(
1558
- ct,
1559
- {
1560
- ref: a,
1561
- className: o(
1562
- "aspect-square h-4 w-4 rounded-full border border-primary text-primary shadow focus:outline-none focus-visible:ring-1 focus-visible:ring-ring disabled:cursor-not-allowed disabled:opacity-50",
1563
- e
1564
- ),
1565
- ...t,
1566
- children: /* @__PURE__ */ s.jsx(ts, { className: "flex items-center justify-center", children: /* @__PURE__ */ s.jsx(B, { className: "h-3.5 w-3.5 fill-primary" }) })
1567
- }
1568
- ));
1569
- Er.displayName = ct.displayName;
1570
- const hd = ({
1571
- className: e,
1572
- direction: t,
1573
- ...a
1574
- }) => /* @__PURE__ */ s.jsx(
1575
- rs,
1576
- {
1577
- orientation: t,
1578
- className: o("flex h-full w-full data-[panel-group-direction=vertical]:flex-col", e),
1579
- ...a
1580
- }
1581
- ), Nd = as, yd = ({
1582
- withHandle: e,
1583
- className: t,
1584
- ...a
1585
- }) => /* @__PURE__ */ s.jsx(
1586
- ss,
1587
- {
1588
- className: o(
1589
- "relative flex w-px items-center justify-center bg-border after:absolute after:inset-y-0 after:left-1/2 after:w-1 after:-translate-x-1/2 focus-visible:outline-none focus-visible:ring-1 focus-visible:ring-ring focus-visible:ring-offset-1 data-[panel-group-direction=vertical]:h-px data-[panel-group-direction=vertical]:w-full data-[panel-group-direction=vertical]:after:left-0 data-[panel-group-direction=vertical]:after:h-1 data-[panel-group-direction=vertical]:after:w-full data-[panel-group-direction=vertical]:after:-translate-y-1/2 data-[panel-group-direction=vertical]:after:translate-x-0 [&[data-panel-group-direction=vertical]>div]:rotate-90",
1590
- t
1591
- ),
1592
- ...a,
1593
- children: e && /* @__PURE__ */ s.jsx("div", { className: "z-10 flex h-4 w-3 items-center justify-center rounded-sm border bg-border", children: /* @__PURE__ */ s.jsx(os, { className: "h-2.5 w-2.5" }) })
1594
- }
1595
- ), Or = r.forwardRef(({ className: e, children: t, ...a }, n) => /* @__PURE__ */ s.jsxs(mt, { ref: n, className: o("relative overflow-hidden", e), ...a, children: [
1596
- /* @__PURE__ */ s.jsx(ns, { className: "h-full w-full rounded-[inherit]", children: t }),
1597
- /* @__PURE__ */ s.jsx(Yt, {}),
1598
- /* @__PURE__ */ s.jsx(ds, {})
1599
- ] }));
1600
- Or.displayName = mt.displayName;
1601
- const Yt = r.forwardRef(({ className: e, orientation: t = "vertical", ...a }, n) => /* @__PURE__ */ s.jsx(
1602
- ut,
1603
- {
1604
- ref: n,
1605
- orientation: t,
1606
- className: o(
1607
- "flex touch-none select-none transition-colors",
1608
- t === "vertical" && "h-full w-2.5 border-l border-l-transparent p-[1px]",
1609
- t === "horizontal" && "h-2.5 flex-col border-t border-t-transparent p-[1px]",
1610
- e
1611
- ),
1612
- ...a,
1613
- children: /* @__PURE__ */ s.jsx(is, { className: "relative flex-1 rounded-full bg-border" })
1614
- }
1615
- ));
1616
- Yt.displayName = ut.displayName;
1617
- const vd = xs, wd = gs, jd = bs, Br = r.forwardRef(({ className: e, children: t, ...a }, n) => /* @__PURE__ */ s.jsxs(
1618
- ft,
1619
- {
1620
- ref: n,
1621
- className: o(
1622
- "flex h-9 w-full items-center justify-between whitespace-nowrap rounded-md border border-input bg-transparent px-3 py-2 text-sm shadow-sm ring-offset-background data-[placeholder]:text-muted-foreground focus:outline-none focus:ring-1 focus:ring-ring disabled:cursor-not-allowed disabled:opacity-50 [&>span]:line-clamp-1",
1623
- e
1624
- ),
1625
- ...a,
1626
- children: [
1627
- t,
1628
- /* @__PURE__ */ s.jsx(ls, { asChild: !0, children: /* @__PURE__ */ s.jsx($, { className: "h-4 w-4 opacity-50" }) })
1629
- ]
1630
- }
1631
- ));
1632
- Br.displayName = ft.displayName;
1633
- const Jt = r.forwardRef(({ className: e, ...t }, a) => /* @__PURE__ */ s.jsx(
1634
- pt,
1635
- {
1636
- ref: a,
1637
- className: o("flex cursor-default items-center justify-center py-1", e),
1638
- ...t,
1639
- children: /* @__PURE__ */ s.jsx(cs, { className: "h-4 w-4" })
1640
- }
1641
- ));
1642
- Jt.displayName = pt.displayName;
1643
- const Zt = r.forwardRef(({ className: e, ...t }, a) => /* @__PURE__ */ s.jsx(
1644
- xt,
1645
- {
1646
- ref: a,
1647
- className: o("flex cursor-default items-center justify-center py-1", e),
1648
- ...t,
1649
- children: /* @__PURE__ */ s.jsx($, { className: "h-4 w-4" })
1650
- }
1651
- ));
1652
- Zt.displayName = xt.displayName;
1653
- const Gr = r.forwardRef(({ className: e, children: t, position: a = "popper", ...n }, d) => /* @__PURE__ */ s.jsx(ms, { children: /* @__PURE__ */ s.jsxs(
1654
- gt,
1655
- {
1656
- ref: d,
1657
- className: o(
1658
- "relative z-50 max-h-[--radix-select-content-available-height] min-w-[8rem] overflow-y-auto overflow-x-hidden rounded-md border bg-popover text-popover-foreground shadow-md data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=open]:fade-in-0 data-[state=closed]:zoom-out-95 data-[state=open]:zoom-in-95 data-[side=bottom]:slide-in-from-top-2 data-[side=left]:slide-in-from-right-2 data-[side=right]:slide-in-from-left-2 data-[side=top]:slide-in-from-bottom-2 origin-[--radix-select-content-transform-origin]",
1659
- a === "popper" && "data-[side=bottom]:translate-y-1 data-[side=left]:-translate-x-1 data-[side=right]:translate-x-1 data-[side=top]:-translate-y-1",
1660
- e
1661
- ),
1662
- position: a,
1663
- ...n,
1664
- children: [
1665
- /* @__PURE__ */ s.jsx(Jt, {}),
1666
- /* @__PURE__ */ s.jsx(
1667
- us,
1668
- {
1669
- className: o(
1670
- "p-1",
1671
- a === "popper" && "h-[var(--radix-select-trigger-height)] w-full min-w-[var(--radix-select-trigger-width)]"
1672
- ),
1673
- children: t
1674
- }
1675
- ),
1676
- /* @__PURE__ */ s.jsx(Zt, {})
1677
- ]
1678
- }
1679
- ) }));
1680
- Gr.displayName = gt.displayName;
1681
- const Vr = r.forwardRef(({ className: e, ...t }, a) => /* @__PURE__ */ s.jsx(bt, { ref: a, className: o("px-2 py-1.5 text-sm font-semibold", e), ...t }));
1682
- Vr.displayName = bt.displayName;
1683
- const Hr = r.forwardRef(({ className: e, children: t, ...a }, n) => /* @__PURE__ */ s.jsxs(
1684
- ht,
1685
- {
1686
- ref: n,
1687
- className: o(
1688
- "relative flex w-full cursor-default select-none items-center rounded-sm py-1.5 pl-2 pr-8 text-sm outline-none focus:bg-accent focus:text-accent-foreground data-[disabled]:pointer-events-none data-[disabled]:opacity-50",
1689
- e
1690
- ),
1691
- ...a,
1692
- children: [
1693
- /* @__PURE__ */ s.jsx("span", { className: "absolute right-2 flex h-3.5 w-3.5 items-center justify-center", children: /* @__PURE__ */ s.jsx(fs, { children: /* @__PURE__ */ s.jsx(D, { className: "h-4 w-4" }) }) }),
1694
- /* @__PURE__ */ s.jsx(ps, { children: t })
1695
- ]
1696
- }
1697
- ));
1698
- Hr.displayName = ht.displayName;
1699
- const Ur = r.forwardRef(({ className: e, ...t }, a) => /* @__PURE__ */ s.jsx(Nt, { ref: a, className: o("-mx-1 my-1 h-px bg-muted", e), ...t }));
1700
- Ur.displayName = Nt.displayName;
1701
- const qr = r.forwardRef(({ className: e, orientation: t = "horizontal", decorative: a = !0, ...n }, d) => /* @__PURE__ */ s.jsx(
1702
- yt,
1703
- {
1704
- ref: d,
1705
- decorative: a,
1706
- orientation: t,
1707
- className: o("shrink-0 bg-border", t === "horizontal" ? "h-[1px] w-full" : "h-full w-[1px]", e),
1708
- ...n
1709
- }
1710
- ));
1711
- qr.displayName = yt.displayName;
1712
- const Cd = Ne, Rd = ye, Td = L, Kr = he, ea = r.forwardRef(({ className: e, ...t }, a) => /* @__PURE__ */ s.jsx(
1713
- A,
1714
- {
1715
- className: o(
1716
- "fixed inset-0 z-50 bg-black/80 data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=open]:fade-in-0",
1717
- e
1718
- ),
1719
- ...t,
1720
- ref: a
1721
- }
1722
- ));
1723
- ea.displayName = A.displayName;
1724
- const Wr = w(
1725
- "fixed z-50 gap-4 bg-background p-6 shadow-lg transition ease-in-out data-[state=closed]:duration-300 data-[state=open]:duration-500 data-[state=open]:animate-in data-[state=closed]:animate-out",
1726
- {
1727
- variants: {
1728
- side: {
1729
- top: "inset-x-0 top-0 border-b data-[state=closed]:slide-out-to-top data-[state=open]:slide-in-from-top",
1730
- bottom: "inset-x-0 bottom-0 border-t data-[state=closed]:slide-out-to-bottom data-[state=open]:slide-in-from-bottom",
1731
- left: "inset-y-0 left-0 h-full w-3/4 border-r data-[state=closed]:slide-out-to-left data-[state=open]:slide-in-from-left sm:max-w-sm",
1732
- right: "inset-y-0 right-0 h-full w-3/4 border-l data-[state=closed]:slide-out-to-right data-[state=open]:slide-in-from-right sm:max-w-sm"
1733
- }
1734
- },
1735
- defaultVariants: {
1736
- side: "right"
1737
- }
1738
- }
1739
- ), Xr = r.forwardRef(
1740
- ({ side: e = "right", className: t, children: a, ...n }, d) => /* @__PURE__ */ s.jsxs(Kr, { children: [
1741
- /* @__PURE__ */ s.jsx(ea, {}),
1742
- /* @__PURE__ */ s.jsxs(F, { ref: d, className: o(Wr({ side: e }), t), ...n, children: [
1743
- /* @__PURE__ */ s.jsxs(L, { className: "absolute right-4 top-4 rounded-sm opacity-70 ring-offset-background transition-opacity hover:opacity-100 focus:outline-none focus:ring-2 focus:ring-ring focus:ring-offset-2 disabled:pointer-events-none data-[state=open]:bg-secondary", children: [
1744
- /* @__PURE__ */ s.jsx(Q, { className: "h-4 w-4" }),
1745
- /* @__PURE__ */ s.jsx("span", { className: "sr-only", children: "Close" })
1746
- ] }),
1747
- a
1748
- ] })
1749
- ] })
1750
- );
1751
- Xr.displayName = F.displayName;
1752
- const Qr = ({ className: e, ...t }) => /* @__PURE__ */ s.jsx("div", { className: o("flex flex-col space-y-2 text-center sm:text-left", e), ...t });
1753
- Qr.displayName = "SheetHeader";
1754
- const Yr = ({ className: e, ...t }) => /* @__PURE__ */ s.jsx("div", { className: o("flex flex-col-reverse sm:flex-row sm:justify-end sm:space-x-2", e), ...t });
1755
- Yr.displayName = "SheetFooter";
1756
- const Jr = r.forwardRef(({ className: e, ...t }, a) => /* @__PURE__ */ s.jsx(E, { ref: a, className: o("text-lg font-semibold text-foreground", e), ...t }));
1757
- Jr.displayName = E.displayName;
1758
- const Zr = r.forwardRef(({ className: e, ...t }, a) => /* @__PURE__ */ s.jsx(O, { ref: a, className: o("text-sm text-muted-foreground", e), ...t }));
1759
- Zr.displayName = O.displayName;
1760
- function kd({ className: e, ...t }) {
1761
- return /* @__PURE__ */ s.jsx("div", { className: o("animate-pulse rounded-md bg-primary/10", e), ...t });
1762
- }
1763
- const en = r.forwardRef(({ className: e, ...t }, a) => /* @__PURE__ */ s.jsxs(
1764
- vt,
1765
- {
1766
- ref: a,
1767
- className: o("relative flex w-full touch-none select-none items-center", e),
1768
- ...t,
1769
- children: [
1770
- /* @__PURE__ */ s.jsx(hs, { className: "relative h-1.5 w-full grow overflow-hidden rounded-full bg-primary/20", children: /* @__PURE__ */ s.jsx(Ns, { className: "absolute h-full bg-primary" }) }),
1771
- /* @__PURE__ */ s.jsx(ys, { className: "block h-4 w-4 rounded-full border border-primary/50 bg-background shadow transition-colors focus-visible:outline-none focus-visible:ring-1 focus-visible:ring-ring disabled:pointer-events-none disabled:opacity-50" })
1772
- ]
1773
- }
1774
- ));
1775
- en.displayName = vt.displayName;
1776
- const Sd = ({ ...e }) => {
1777
- const { theme: t = "system" } = At();
1778
- return /* @__PURE__ */ s.jsx(
1779
- vs,
1780
- {
1781
- theme: t,
1782
- className: "toaster group",
1783
- toastOptions: {
1784
- classNames: {
1785
- toast: "group toast group-[.toaster]:bg-background group-[.toaster]:text-foreground group-[.toaster]:border-border group-[.toaster]:shadow-lg",
1786
- description: "group-[.toast]:text-muted-foreground",
1787
- actionButton: "group-[.toast]:bg-primary group-[.toast]:text-primary-foreground",
1788
- cancelButton: "group-[.toast]:bg-muted group-[.toast]:text-muted-foreground"
1789
- }
1790
- },
1791
- ...e
1792
- }
1793
- );
1794
- }, tn = r.forwardRef(({ className: e, ...t }, a) => /* @__PURE__ */ s.jsx(
1795
- wt,
1796
- {
1797
- className: o(
1798
- "peer inline-flex h-5 w-9 shrink-0 cursor-pointer items-center rounded-full border-2 border-transparent shadow-sm transition-colors focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-ring focus-visible:ring-offset-2 focus-visible:ring-offset-background disabled:cursor-not-allowed disabled:opacity-50 data-[state=checked]:bg-primary data-[state=unchecked]:bg-input",
1799
- e
1800
- ),
1801
- ...t,
1802
- ref: a,
1803
- children: /* @__PURE__ */ s.jsx(
1804
- ws,
1805
- {
1806
- className: o(
1807
- "pointer-events-none block h-4 w-4 rounded-full bg-background shadow-lg ring-0 transition-transform data-[state=checked]:translate-x-4 data-[state=unchecked]:translate-x-0"
1808
- )
1809
- }
1810
- )
1811
- }
1812
- ));
1813
- tn.displayName = wt.displayName;
1814
- const an = r.forwardRef(
1815
- ({ className: e, ...t }, a) => /* @__PURE__ */ s.jsx("div", { className: "relative w-full overflow-auto", children: /* @__PURE__ */ s.jsx("table", { ref: a, className: o("w-full caption-bottom text-sm", e), ...t }) })
1816
- );
1817
- an.displayName = "Table";
1818
- const sn = r.forwardRef(
1819
- ({ className: e, ...t }, a) => /* @__PURE__ */ s.jsx("thead", { ref: a, className: o("[&_tr]:border-b", e), ...t })
1820
- );
1821
- sn.displayName = "TableHeader";
1822
- const on = r.forwardRef(
1823
- ({ className: e, ...t }, a) => /* @__PURE__ */ s.jsx("tbody", { ref: a, className: o("[&_tr:last-child]:border-0", e), ...t })
1824
- );
1825
- on.displayName = "TableBody";
1826
- const rn = r.forwardRef(
1827
- ({ className: e, ...t }, a) => /* @__PURE__ */ s.jsx("tfoot", { ref: a, className: o("border-t bg-muted/50 font-medium [&>tr]:last:border-b-0", e), ...t })
1828
- );
1829
- rn.displayName = "TableFooter";
1830
- const nn = r.forwardRef(
1831
- ({ className: e, ...t }, a) => /* @__PURE__ */ s.jsx(
1832
- "tr",
1833
- {
1834
- ref: a,
1835
- className: o("border-b transition-colors hover:bg-muted/50 data-[state=selected]:bg-muted", e),
1836
- ...t
1837
- }
1838
- )
1839
- );
1840
- nn.displayName = "TableRow";
1841
- const dn = r.forwardRef(
1842
- ({ className: e, ...t }, a) => /* @__PURE__ */ s.jsx(
1843
- "th",
1844
- {
1845
- ref: a,
1846
- className: o(
1847
- "h-10 px-2 text-left align-middle font-medium text-muted-foreground [&:has([role=checkbox])]:pr-0 [&>[role=checkbox]]:translate-y-[2px]",
1848
- e
1849
- ),
1850
- ...t
1851
- }
1852
- )
1853
- );
1854
- dn.displayName = "TableHead";
1855
- const ln = r.forwardRef(
1856
- ({ className: e, ...t }, a) => /* @__PURE__ */ s.jsx(
1857
- "td",
1858
- {
1859
- ref: a,
1860
- className: o("p-2 align-middle [&:has([role=checkbox])]:pr-0 [&>[role=checkbox]]:translate-y-[2px]", e),
1861
- ...t
1862
- }
1863
- )
1864
- );
1865
- ln.displayName = "TableCell";
1866
- const cn = r.forwardRef(
1867
- ({ className: e, ...t }, a) => /* @__PURE__ */ s.jsx("caption", { ref: a, className: o("mt-4 text-sm text-muted-foreground", e), ...t })
1868
- );
1869
- cn.displayName = "TableCaption";
1870
- const _d = js, mn = r.forwardRef(({ className: e, ...t }, a) => /* @__PURE__ */ s.jsx(
1871
- jt,
1872
- {
1873
- ref: a,
1874
- className: o(
1875
- "inline-flex h-9 items-center justify-center rounded-lg bg-muted p-1 text-muted-foreground",
1876
- e
1877
- ),
1878
- ...t
1879
- }
1880
- ));
1881
- mn.displayName = jt.displayName;
1882
- const un = r.forwardRef(({ className: e, ...t }, a) => /* @__PURE__ */ s.jsx(
1883
- Ct,
1884
- {
1885
- ref: a,
1886
- className: o(
1887
- "inline-flex items-center justify-center whitespace-nowrap rounded-md px-3 py-1 text-sm font-medium ring-offset-background transition-all focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-ring focus-visible:ring-offset-2 disabled:pointer-events-none disabled:opacity-50 data-[state=active]:bg-background data-[state=active]:text-foreground data-[state=active]:shadow",
1888
- e
1889
- ),
1890
- ...t
1891
- }
1892
- ));
1893
- un.displayName = Ct.displayName;
1894
- const fn = r.forwardRef(({ className: e, ...t }, a) => /* @__PURE__ */ s.jsx(
1895
- Rt,
1896
- {
1897
- ref: a,
1898
- className: o(
1899
- "mt-2 ring-offset-background focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-ring focus-visible:ring-offset-2",
1900
- e
1901
- ),
1902
- ...t
1903
- }
1904
- ));
1905
- fn.displayName = Rt.displayName;
1906
- const pn = r.forwardRef(
1907
- ({ className: e, ...t }, a) => /* @__PURE__ */ s.jsx(
1908
- "textarea",
1909
- {
1910
- className: o(
1911
- "flex min-h-[60px] w-full rounded-md border border-input bg-transparent px-3 py-2 text-base shadow-sm placeholder:text-muted-foreground focus-visible:outline-none focus-visible:ring-1 focus-visible:ring-ring disabled:cursor-not-allowed disabled:opacity-50 md:text-sm",
1912
- e
1913
- ),
1914
- ref: a,
1915
- ...t
1916
- }
1917
- )
1918
- );
1919
- pn.displayName = "Textarea";
1920
- function $d({ children: e, ...t }) {
1921
- return /* @__PURE__ */ s.jsx(_s, { attribute: "class", defaultTheme: "system", enableSystem: !0, ...t, children: e });
1922
- }
1923
- function xn() {
1924
- const e = At(), { resolvedTheme: t } = e, a = t === "dark" ? K.dark : K.light;
1925
- return {
1926
- ...e,
1927
- tokens: a
1928
- };
1929
- }
1930
- function Dd({ variant: e = "binary", onThemeChange: t, customTheme: a, className: n }) {
1931
- const { theme: d, setTheme: i, resolvedTheme: m } = xn(), u = a ?? d, l = (a || m) === "dark", p = u === "system", x = (C) => {
1932
- t ? t(C) : i(C);
1933
- }, y = () => /* @__PURE__ */ s.jsxs(s.Fragment, { children: [
1934
- /* @__PURE__ */ s.jsx(
1935
- Z,
1936
- {
1937
- className: o(
1938
- "h-[1.2rem] w-[1.2rem] transition-all",
1939
- !p && !l ? "rotate-0 scale-100" : "-rotate-90 scale-0"
1940
- )
1941
- }
1942
- ),
1943
- /* @__PURE__ */ s.jsx(
1944
- ee,
1945
- {
1946
- className: o(
1947
- "absolute h-[1.2rem] w-[1.2rem] transition-all",
1948
- !p && l ? "rotate-0 scale-100" : "rotate-90 scale-0"
1949
- )
1950
- }
1951
- ),
1952
- /* @__PURE__ */ s.jsx(
1953
- te,
1954
- {
1955
- className: o(
1956
- "absolute h-[1.2rem] w-[1.2rem] transition-all",
1957
- p ? "rotate-0 scale-100" : "rotate-90 scale-0"
1958
- )
1959
- }
1960
- ),
1961
- /* @__PURE__ */ s.jsx("span", { className: "sr-only", children: "Toggle theme" })
1962
- ] });
1963
- return e === "ternary" ? /* @__PURE__ */ s.jsxs(Qo, { children: [
1964
- /* @__PURE__ */ s.jsx(Yo, { asChild: !0, children: /* @__PURE__ */ s.jsx(k, { variant: "ghost", size: "icon", className: o("relative h-9 w-9", n), children: /* @__PURE__ */ s.jsx(y, {}) }) }),
1965
- /* @__PURE__ */ s.jsxs(qt, { align: "end", children: [
1966
- /* @__PURE__ */ s.jsxs(z, { onClick: () => x("light"), children: [
1967
- /* @__PURE__ */ s.jsx(Z, { className: "mr-2 h-4 w-4" }),
1968
- /* @__PURE__ */ s.jsx("span", { children: "Light" })
1969
- ] }),
1970
- /* @__PURE__ */ s.jsxs(z, { onClick: () => x("dark"), children: [
1971
- /* @__PURE__ */ s.jsx(ee, { className: "mr-2 h-4 w-4" }),
1972
- /* @__PURE__ */ s.jsx("span", { children: "Dark" })
1973
- ] }),
1974
- /* @__PURE__ */ s.jsxs(z, { onClick: () => x("system"), children: [
1975
- /* @__PURE__ */ s.jsx(te, { className: "mr-2 h-4 w-4" }),
1976
- /* @__PURE__ */ s.jsx("span", { children: "System" })
1977
- ] })
1978
- ] })
1979
- ] }) : /* @__PURE__ */ s.jsx(
1980
- k,
1981
- {
1982
- variant: "ghost",
1983
- size: "icon",
1984
- className: o("relative h-9 w-9", n),
1985
- onClick: () => x(u === "dark" ? "light" : "dark"),
1986
- "aria-label": "Toggle theme",
1987
- children: /* @__PURE__ */ s.jsx(y, {})
1988
- }
1989
- );
1990
- }
1991
- const gn = Cs, ta = r.forwardRef(({ className: e, ...t }, a) => /* @__PURE__ */ s.jsx(
1992
- Tt,
1993
- {
1994
- ref: a,
1995
- className: o(
1996
- "fixed top-0 z-[100] flex max-h-screen w-full flex-col-reverse p-4 sm:bottom-0 sm:right-0 sm:top-auto sm:flex-col md:max-w-[420px]",
1997
- e
1998
- ),
1999
- ...t
2000
- }
2001
- ));
2002
- ta.displayName = Tt.displayName;
2003
- const bn = w(
2004
- "group pointer-events-auto relative flex w-full items-center justify-between space-x-2 overflow-hidden rounded-md border p-4 pr-6 shadow-lg transition-all data-[swipe=cancel]:translate-x-0 data-[swipe=end]:translate-x-[var(--radix-toast-swipe-end-x)] data-[swipe=move]:translate-x-[var(--radix-toast-swipe-move-x)] data-[swipe=move]:transition-none data-[state=open]:animate-in data-[state=closed]:animate-out data-[swipe=end]:animate-out data-[state=closed]:fade-out-80 data-[state=closed]:slide-out-to-right-full data-[state=open]:slide-in-from-top-full data-[state=open]:sm:slide-in-from-bottom-full",
2005
- {
2006
- variants: {
2007
- variant: {
2008
- default: "border bg-background text-foreground",
2009
- destructive: "destructive group border-destructive bg-destructive text-destructive-foreground"
2010
- }
2011
- },
2012
- defaultVariants: {
2013
- variant: "default"
2014
- }
2015
- }
2016
- ), aa = r.forwardRef(({ className: e, variant: t, ...a }, n) => /* @__PURE__ */ s.jsx(kt, { ref: n, className: o(bn({ variant: t }), e), ...a }));
2017
- aa.displayName = kt.displayName;
2018
- const hn = r.forwardRef(({ className: e, ...t }, a) => /* @__PURE__ */ s.jsx(
2019
- St,
2020
- {
2021
- ref: a,
2022
- className: o(
2023
- "inline-flex h-8 shrink-0 items-center justify-center rounded-md border bg-transparent px-3 text-sm font-medium transition-colors hover:bg-secondary focus:outline-none focus:ring-1 focus:ring-ring disabled:pointer-events-none disabled:opacity-50 group-[.destructive]:border-muted/40 group-[.destructive]:hover:border-destructive/30 group-[.destructive]:hover:bg-destructive group-[.destructive]:hover:text-destructive-foreground group-[.destructive]:focus:ring-destructive",
2024
- e
2025
- ),
2026
- ...t
2027
- }
2028
- ));
2029
- hn.displayName = St.displayName;
2030
- const sa = r.forwardRef(({ className: e, ...t }, a) => /* @__PURE__ */ s.jsx(
2031
- _t,
2032
- {
2033
- ref: a,
2034
- className: o(
2035
- "absolute right-1 top-1 rounded-md p-1 text-foreground/50 opacity-0 transition-opacity hover:text-foreground focus:opacity-100 focus:outline-none focus:ring-1 group-hover:opacity-100 group-[.destructive]:text-red-300 group-[.destructive]:hover:text-red-50 group-[.destructive]:focus:ring-red-400 group-[.destructive]:focus:ring-offset-red-600",
2036
- e
2037
- ),
2038
- "toast-close": "",
2039
- ...t,
2040
- children: /* @__PURE__ */ s.jsx(Q, { className: "h-4 w-4" })
2041
- }
2042
- ));
2043
- sa.displayName = _t.displayName;
2044
- const oa = r.forwardRef(({ className: e, ...t }, a) => /* @__PURE__ */ s.jsx($t, { ref: a, className: o("text-sm font-semibold [&+div]:text-xs", e), ...t }));
2045
- oa.displayName = $t.displayName;
2046
- const ra = r.forwardRef(({ className: e, ...t }, a) => /* @__PURE__ */ s.jsx(Dt, { ref: a, className: o("text-sm opacity-90", e), ...t }));
2047
- ra.displayName = Dt.displayName;
2048
- const Nn = 1, yn = 1e6, I = {
2049
- ADD_TOAST: "ADD_TOAST",
2050
- UPDATE_TOAST: "UPDATE_TOAST",
2051
- DISMISS_TOAST: "DISMISS_TOAST",
2052
- REMOVE_TOAST: "REMOVE_TOAST"
131
+ fontSize: {
132
+ xs: "0.75rem",
133
+ // 12px
134
+ sm: "0.875rem",
135
+ // 14px
136
+ base: "1rem",
137
+ // 16px
138
+ lg: "1.125rem",
139
+ // 18px
140
+ xl: "1.25rem",
141
+ // 20px
142
+ "2xl": "1.5rem",
143
+ // 24px
144
+ "3xl": "1.875rem",
145
+ // 30px
146
+ "4xl": "2.25rem",
147
+ // 36px
148
+ "5xl": "3rem"
149
+ // 48px
150
+ },
151
+ fontWeight: {
152
+ normal: "400",
153
+ medium: "500",
154
+ semibold: "600",
155
+ bold: "700"
156
+ },
157
+ lineHeight: {
158
+ none: "1",
159
+ tight: "1.25",
160
+ snug: "1.375",
161
+ normal: "1.5",
162
+ relaxed: "1.625",
163
+ loose: "2"
164
+ }
165
+ }, l = {
166
+ none: "none",
167
+ sm: "0 1px 2px 0 rgb(0 0 0 / 0.05)",
168
+ default: "0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1)",
169
+ md: "0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1)",
170
+ lg: "0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1)",
171
+ xl: "0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1)",
172
+ "2xl": "0 25px 50px -12px rgb(0 0 0 / 0.25)",
173
+ inner: "inset 0 2px 4px 0 rgb(0 0 0 / 0.05)"
174
+ }, p = {
175
+ palette: r,
176
+ theme: e
2053
177
  };
2054
- let U = 0;
2055
- function vn() {
2056
- return U = (U + 1) % Number.MAX_SAFE_INTEGER, U.toString();
2057
- }
2058
- const q = /* @__PURE__ */ new Map(), ae = (e) => {
2059
- if (q.has(e))
2060
- return;
2061
- const t = setTimeout(() => {
2062
- q.delete(e), _({
2063
- type: "REMOVE_TOAST",
2064
- toastId: e
2065
- });
2066
- }, yn);
2067
- q.set(e, t);
2068
- }, wn = (e, t) => {
2069
- switch (t.type) {
2070
- case I.ADD_TOAST:
2071
- return {
2072
- ...e,
2073
- toasts: [t.toast, ...e.toasts].slice(0, Nn)
2074
- };
2075
- case I.UPDATE_TOAST:
2076
- return {
2077
- ...e,
2078
- toasts: e.toasts.map((a) => a.id === t.toast.id ? { ...a, ...t.toast } : a)
2079
- };
2080
- case I.DISMISS_TOAST: {
2081
- const { toastId: a } = t;
2082
- return a ? ae(a) : e.toasts.forEach((n) => {
2083
- ae(n.id);
2084
- }), {
2085
- ...e,
2086
- toasts: e.toasts.map(
2087
- (n) => n.id === a || a === void 0 ? {
2088
- ...n,
2089
- open: !1
2090
- } : n
2091
- )
2092
- };
2093
- }
2094
- case I.REMOVE_TOAST:
2095
- return t.toastId === void 0 ? {
2096
- ...e,
2097
- toasts: []
2098
- } : {
2099
- ...e,
2100
- toasts: e.toasts.filter((a) => a.id !== t.toastId)
2101
- };
2102
- }
2103
- }, M = [];
2104
- let P = { toasts: [] };
2105
- function _(e) {
2106
- P = wn(P, e), M.forEach((t) => {
2107
- t(P);
2108
- });
2109
- }
2110
- function jn({ ...e }) {
2111
- const t = vn(), a = (d) => _({
2112
- type: "UPDATE_TOAST",
2113
- toast: { ...d, id: t }
2114
- }), n = () => _({ type: "DISMISS_TOAST", toastId: t });
2115
- return _({
2116
- type: "ADD_TOAST",
2117
- toast: {
2118
- ...e,
2119
- id: t,
2120
- open: !0,
2121
- onOpenChange: (d) => {
2122
- d || n();
2123
- }
2124
- }
2125
- }), {
2126
- id: t,
2127
- dismiss: n,
2128
- update: a
2129
- };
2130
- }
2131
- function Cn() {
2132
- const [e, t] = r.useState(P);
2133
- return r.useEffect(() => (M.push(t), () => {
2134
- const a = M.indexOf(t);
2135
- a > -1 && M.splice(a, 1);
2136
- }), [e]), {
2137
- ...e,
2138
- toast: jn,
2139
- dismiss: (a) => _({ type: "DISMISS_TOAST", toastId: a })
2140
- };
2141
- }
2142
- function Id() {
2143
- const { toasts: e } = Cn();
2144
- return /* @__PURE__ */ s.jsxs(gn, { children: [
2145
- e.map(function({ id: t, title: a, description: n, action: d, ...i }) {
2146
- return /* @__PURE__ */ s.jsxs(aa, { ...i, children: [
2147
- /* @__PURE__ */ s.jsxs("div", { className: "grid gap-1", children: [
2148
- a && /* @__PURE__ */ s.jsx(oa, { children: a }),
2149
- n && /* @__PURE__ */ s.jsx(ra, { children: n })
2150
- ] }),
2151
- d,
2152
- /* @__PURE__ */ s.jsx(sa, {})
2153
- ] }, t);
2154
- }),
2155
- /* @__PURE__ */ s.jsx(ta, {})
2156
- ] });
2157
- }
2158
- const na = w(
2159
- "inline-flex items-center justify-center gap-2 rounded-md text-sm font-medium transition-colors hover:bg-muted hover:text-muted-foreground focus-visible:outline-none focus-visible:ring-1 focus-visible:ring-ring disabled:pointer-events-none disabled:opacity-50 data-[state=on]:bg-accent data-[state=on]:text-accent-foreground [&_svg]:pointer-events-none [&_svg]:size-4 [&_svg]:shrink-0",
2160
- {
2161
- variants: {
2162
- variant: {
2163
- default: "bg-transparent",
2164
- outline: "border border-input bg-transparent shadow-sm hover:bg-accent hover:text-accent-foreground"
2165
- },
2166
- size: {
2167
- default: "h-9 px-2 min-w-9",
2168
- sm: "h-8 px-1.5 min-w-8",
2169
- lg: "h-10 px-2.5 min-w-10"
2170
- }
2171
- },
2172
- defaultVariants: {
2173
- variant: "default",
2174
- size: "default"
2175
- }
2176
- }
2177
- ), Rn = r.forwardRef(({ className: e, variant: t, size: a, ...n }, d) => /* @__PURE__ */ s.jsx(It, { ref: d, className: o(na({ variant: t, size: a, className: e })), ...n }));
2178
- Rn.displayName = It.displayName;
2179
- const da = r.createContext({
2180
- size: "default",
2181
- variant: "default"
2182
- }), Tn = r.forwardRef(({ className: e, variant: t, size: a, children: n, ...d }, i) => /* @__PURE__ */ s.jsx(zt, { ref: i, className: o("flex items-center justify-center gap-1", e), ...d, children: /* @__PURE__ */ s.jsx(da.Provider, { value: { variant: t, size: a }, children: n }) }));
2183
- Tn.displayName = zt.displayName;
2184
- const kn = r.forwardRef(({ className: e, children: t, variant: a, size: n, ...d }, i) => {
2185
- const m = r.useContext(da);
2186
- return /* @__PURE__ */ s.jsx(
2187
- Mt,
2188
- {
2189
- ref: i,
2190
- className: o(
2191
- na({
2192
- variant: m.variant || a,
2193
- size: m.size || n
2194
- }),
2195
- e
2196
- ),
2197
- ...d,
2198
- children: t
2199
- }
2200
- );
2201
- });
2202
- kn.displayName = Mt.displayName;
2203
- const zd = ks, Md = Ts, Pd = Ss, Sn = r.forwardRef(({ className: e, sideOffset: t = 4, ...a }, n) => /* @__PURE__ */ s.jsx(Rs, { children: /* @__PURE__ */ s.jsx(
2204
- Pt,
2205
- {
2206
- ref: n,
2207
- sideOffset: t,
2208
- className: o(
2209
- "z-50 overflow-hidden rounded-md bg-primary px-3 py-1.5 text-xs text-primary-foreground animate-in fade-in-0 zoom-in-95 data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=closed]:zoom-out-95 data-[side=bottom]:slide-in-from-top-2 data-[side=left]:slide-in-from-right-2 data-[side=right]:slide-in-from-left-2 data-[side=top]:slide-in-from-bottom-2 origin-[--radix-tooltip-content-transform-origin]",
2210
- e
2211
- ),
2212
- ...a
2213
- }
2214
- ) }));
2215
- Sn.displayName = Pt.displayName;
2216
178
  export {
2217
- In as Accordion,
2218
- Is as AccordionContent,
2219
- $s as AccordionItem,
2220
- Ds as AccordionTrigger,
2221
- Ms as Alert,
2222
- As as AlertDescription,
2223
- zn as AlertDialog,
2224
- Vs as AlertDialogAction,
2225
- Hs as AlertDialogCancel,
2226
- Ls as AlertDialogContent,
2227
- Gs as AlertDialogDescription,
2228
- Os as AlertDialogFooter,
2229
- Es as AlertDialogHeader,
2230
- Lt as AlertDialogOverlay,
2231
- Fs as AlertDialogPortal,
2232
- Bs as AlertDialogTitle,
2233
- Mn as AlertDialogTrigger,
2234
- Ps as AlertTitle,
2235
- Pn as AspectRatio,
2236
- Us as Avatar,
2237
- Ks as AvatarFallback,
2238
- qs as AvatarImage,
2239
- An as Badge,
2240
- Xs as Breadcrumb,
2241
- to as BreadcrumbEllipsis,
2242
- Ys as BreadcrumbItem,
2243
- Js as BreadcrumbLink,
2244
- Qs as BreadcrumbList,
2245
- Zs as BreadcrumbPage,
2246
- eo as BreadcrumbSeparator,
2247
- k as Button,
2248
- Fn as Calendar,
2249
- ao as CalendarDayButton,
2250
- so as Card,
2251
- io as CardContent,
2252
- no as CardDescription,
2253
- lo as CardFooter,
2254
- oo as CardHeader,
2255
- ro as CardTitle,
2256
- co as Carousel,
2257
- mo as CarouselContent,
2258
- uo as CarouselItem,
2259
- po as CarouselNext,
2260
- fo as CarouselPrevious,
2261
- go as ChartContainer,
2262
- En as ChartLegend,
2263
- No as ChartLegendContent,
2264
- bo as ChartStyle,
2265
- Ln as ChartTooltip,
2266
- ho as ChartTooltipContent,
2267
- yo as Checkbox,
2268
- On as Collapsible,
2269
- Gn as CollapsibleContent,
2270
- Bn as CollapsibleTrigger,
2271
- Ht as Command,
2272
- Un as CommandDialog,
2273
- _o as CommandEmpty,
2274
- $o as CommandGroup,
2275
- ko as CommandInput,
2276
- Io as CommandItem,
2277
- So as CommandList,
2278
- Do as CommandSeparator,
2279
- zo as CommandShortcut,
2280
- qn as ContextMenu,
2281
- Lo as ContextMenuCheckboxItem,
2282
- Ao as ContextMenuContent,
2283
- Wn as ContextMenuGroup,
2284
- Fo as ContextMenuItem,
2285
- Oo as ContextMenuLabel,
2286
- Xn as ContextMenuPortal,
2287
- Yn as ContextMenuRadioGroup,
2288
- Eo as ContextMenuRadioItem,
2289
- Bo as ContextMenuSeparator,
2290
- Go as ContextMenuShortcut,
2291
- Qn as ContextMenuSub,
2292
- Po as ContextMenuSubContent,
2293
- Mo as ContextMenuSubTrigger,
2294
- Kn as ContextMenuTrigger,
2295
- vo as Dialog,
2296
- Hn as DialogClose,
2297
- Vt as DialogContent,
2298
- To as DialogDescription,
2299
- Co as DialogFooter,
2300
- jo as DialogHeader,
2301
- Gt as DialogOverlay,
2302
- wo as DialogPortal,
2303
- Ro as DialogTitle,
2304
- Vn as DialogTrigger,
2305
- Vo as Drawer,
2306
- Zn as DrawerClose,
2307
- Uo as DrawerContent,
2308
- Xo as DrawerDescription,
2309
- Ko as DrawerFooter,
2310
- qo as DrawerHeader,
2311
- Ut as DrawerOverlay,
2312
- Ho as DrawerPortal,
2313
- Wo as DrawerTitle,
2314
- Jn as DrawerTrigger,
2315
- Qo as DropdownMenu,
2316
- er as DropdownMenuCheckboxItem,
2317
- qt as DropdownMenuContent,
2318
- ed as DropdownMenuGroup,
2319
- z as DropdownMenuItem,
2320
- ar as DropdownMenuLabel,
2321
- td as DropdownMenuPortal,
2322
- sd as DropdownMenuRadioGroup,
2323
- tr as DropdownMenuRadioItem,
2324
- sr as DropdownMenuSeparator,
2325
- or as DropdownMenuShortcut,
2326
- ad as DropdownMenuSub,
2327
- Zo as DropdownMenuSubContent,
2328
- Jo as DropdownMenuSubTrigger,
2329
- Yo as DropdownMenuTrigger,
2330
- od as Form,
2331
- ir as FormControl,
2332
- lr as FormDescription,
2333
- rd as FormField,
2334
- nr as FormItem,
2335
- dr as FormLabel,
2336
- cr as FormMessage,
2337
- nd as HoverCard,
2338
- mr as HoverCardContent,
2339
- dd as HoverCardTrigger,
2340
- ur as Input,
2341
- Kt as Label,
2342
- fr as Menubar,
2343
- Nr as MenubarCheckboxItem,
2344
- br as MenubarContent,
2345
- ld as MenubarGroup,
2346
- hr as MenubarItem,
2347
- vr as MenubarLabel,
2348
- id as MenubarMenu,
2349
- cd as MenubarPortal,
2350
- md as MenubarRadioGroup,
2351
- yr as MenubarRadioItem,
2352
- wr as MenubarSeparator,
2353
- jr as MenubarShortcut,
2354
- ud as MenubarSub,
2355
- gr as MenubarSubContent,
2356
- xr as MenubarSubTrigger,
2357
- pr as MenubarTrigger,
2358
- Cr as NavigationMenu,
2359
- Sr as NavigationMenuContent,
2360
- _r as NavigationMenuIndicator,
2361
- fd as NavigationMenuItem,
2362
- pd as NavigationMenuLink,
2363
- Rr as NavigationMenuList,
2364
- kr as NavigationMenuTrigger,
2365
- Qt as NavigationMenuViewport,
2366
- $r as Pagination,
2367
- Dr as PaginationContent,
2368
- Pr as PaginationEllipsis,
2369
- Ir as PaginationItem,
2370
- Y as PaginationLink,
2371
- Mr as PaginationNext,
2372
- zr as PaginationPrevious,
2373
- xd as Popover,
2374
- bd as PopoverAnchor,
2375
- Ar as PopoverContent,
2376
- gd as PopoverTrigger,
2377
- Fr as Progress,
2378
- Lr as RadioGroup,
2379
- Er as RadioGroupItem,
2380
- yd as ResizableHandle,
2381
- Nd as ResizablePanel,
2382
- hd as ResizablePanelGroup,
2383
- Or as ScrollArea,
2384
- Yt as ScrollBar,
2385
- vd as Select,
2386
- Gr as SelectContent,
2387
- wd as SelectGroup,
2388
- Hr as SelectItem,
2389
- Vr as SelectLabel,
2390
- Zt as SelectScrollDownButton,
2391
- Jt as SelectScrollUpButton,
2392
- Ur as SelectSeparator,
2393
- Br as SelectTrigger,
2394
- jd as SelectValue,
2395
- qr as Separator,
2396
- Cd as Sheet,
2397
- Td as SheetClose,
2398
- Xr as SheetContent,
2399
- Zr as SheetDescription,
2400
- Yr as SheetFooter,
2401
- Qr as SheetHeader,
2402
- ea as SheetOverlay,
2403
- Kr as SheetPortal,
2404
- Jr as SheetTitle,
2405
- Rd as SheetTrigger,
2406
- kd as Skeleton,
2407
- en as Slider,
2408
- tn as Switch,
2409
- an as Table,
2410
- on as TableBody,
2411
- cn as TableCaption,
2412
- ln as TableCell,
2413
- rn as TableFooter,
2414
- dn as TableHead,
2415
- sn as TableHeader,
2416
- nn as TableRow,
2417
- _d as Tabs,
2418
- fn as TabsContent,
2419
- mn as TabsList,
2420
- un as TabsTrigger,
2421
- pn as Textarea,
2422
- $d as ThemeProvider,
2423
- Dd as ThemeToggle,
2424
- aa as Toast,
2425
- hn as ToastAction,
2426
- sa as ToastClose,
2427
- ra as ToastDescription,
2428
- gn as ToastProvider,
2429
- oa as ToastTitle,
2430
- ta as ToastViewport,
2431
- Sd as Toaster,
2432
- Id as ToasterToast,
2433
- Rn as Toggle,
2434
- Tn as ToggleGroup,
2435
- kn as ToggleGroupItem,
2436
- Md as Tooltip,
2437
- Sn as TooltipContent,
2438
- zd as TooltipProvider,
2439
- Pd as TooltipTrigger,
2440
- Ws as badgeVariants,
2441
- T as buttonVariants,
2442
- o as cn,
2443
- Tr as navigationMenuTriggerStyle,
2444
- Ft as palette,
2445
- wn as reducer,
2446
- K as theme,
2447
- jn as toast,
2448
- na as toggleVariants,
2449
- Dn as tokens,
2450
- V as useFormField,
2451
- xn as useTheme,
2452
- Cn as useToast
179
+ C as Accordion,
180
+ b as AccordionContent,
181
+ c as AccordionItem,
182
+ T as AccordionTrigger,
183
+ f as Alert,
184
+ D as AlertDescription,
185
+ v as AlertDialog,
186
+ w as AlertDialogAction,
187
+ A as AlertDialogCancel,
188
+ P as AlertDialogContent,
189
+ I as AlertDialogDescription,
190
+ F as AlertDialogFooter,
191
+ L as AlertDialogHeader,
192
+ y as AlertDialogOverlay,
193
+ B as AlertDialogPortal,
194
+ R as AlertDialogTitle,
195
+ G as AlertDialogTrigger,
196
+ S as AlertTitle,
197
+ N as AspectRatio,
198
+ V as Avatar,
199
+ z as AvatarFallback,
200
+ O as AvatarImage,
201
+ U as Badge,
202
+ q as Breadcrumb,
203
+ J as BreadcrumbEllipsis,
204
+ K as BreadcrumbItem,
205
+ Q as BreadcrumbLink,
206
+ X as BreadcrumbList,
207
+ Y as BreadcrumbPage,
208
+ Z as BreadcrumbSeparator,
209
+ $ as Button,
210
+ oe as Calendar,
211
+ te as CalendarDayButton,
212
+ ne as Card,
213
+ ie as CardContent,
214
+ le as CardDescription,
215
+ pe as CardFooter,
216
+ me as CardHeader,
217
+ xe as CardTitle,
218
+ ge as Carousel,
219
+ se as CarouselContent,
220
+ de as CarouselItem,
221
+ Ce as CarouselNext,
222
+ be as CarouselPrevious,
223
+ Te as ChartContainer,
224
+ Me as ChartLegend,
225
+ fe as ChartLegendContent,
226
+ De as ChartStyle,
227
+ Se as ChartTooltip,
228
+ he as ChartTooltipContent,
229
+ we as Checkbox,
230
+ Pe as Collapsible,
231
+ Ie as CollapsibleContent,
232
+ Fe as CollapsibleTrigger,
233
+ ye as Command,
234
+ Be as CommandDialog,
235
+ Re as CommandEmpty,
236
+ Ge as CommandGroup,
237
+ He as CommandInput,
238
+ Ne as CommandItem,
239
+ ke as CommandList,
240
+ Ve as CommandSeparator,
241
+ ze as CommandShortcut,
242
+ Ee as ContextMenu,
243
+ Ue as ContextMenuCheckboxItem,
244
+ We as ContextMenuContent,
245
+ je as ContextMenuGroup,
246
+ qe as ContextMenuItem,
247
+ Je as ContextMenuLabel,
248
+ Ke as ContextMenuPortal,
249
+ Qe as ContextMenuRadioGroup,
250
+ Xe as ContextMenuRadioItem,
251
+ Ye as ContextMenuSeparator,
252
+ Ze as ContextMenuShortcut,
253
+ _e as ContextMenuSub,
254
+ $e as ContextMenuSubContent,
255
+ er as ContextMenuSubTrigger,
256
+ rr as ContextMenuTrigger,
257
+ tr as Dialog,
258
+ ar as DialogClose,
259
+ nr as DialogContent,
260
+ ir as DialogDescription,
261
+ lr as DialogFooter,
262
+ pr as DialogHeader,
263
+ mr as DialogOverlay,
264
+ xr as DialogPortal,
265
+ ur as DialogTitle,
266
+ gr as DialogTrigger,
267
+ dr as Drawer,
268
+ Cr as DrawerClose,
269
+ br as DrawerContent,
270
+ cr as DrawerDescription,
271
+ Tr as DrawerFooter,
272
+ Mr as DrawerHeader,
273
+ fr as DrawerOverlay,
274
+ Dr as DrawerPortal,
275
+ Sr as DrawerTitle,
276
+ hr as DrawerTrigger,
277
+ wr as DropdownMenu,
278
+ Ar as DropdownMenuCheckboxItem,
279
+ Pr as DropdownMenuContent,
280
+ Ir as DropdownMenuGroup,
281
+ Fr as DropdownMenuItem,
282
+ Lr as DropdownMenuLabel,
283
+ yr as DropdownMenuPortal,
284
+ Br as DropdownMenuRadioGroup,
285
+ Rr as DropdownMenuRadioItem,
286
+ Gr as DropdownMenuSeparator,
287
+ Hr as DropdownMenuShortcut,
288
+ Nr as DropdownMenuSub,
289
+ kr as DropdownMenuSubContent,
290
+ Vr as DropdownMenuSubTrigger,
291
+ zr as DropdownMenuTrigger,
292
+ Er as Form,
293
+ Ur as FormControl,
294
+ Wr as FormDescription,
295
+ jr as FormField,
296
+ qr as FormItem,
297
+ Jr as FormLabel,
298
+ Kr as FormMessage,
299
+ Yr as HoverCard,
300
+ Zr as HoverCardContent,
301
+ _r as HoverCardTrigger,
302
+ eo as Input,
303
+ oo as Label,
304
+ ao as Menubar,
305
+ no as MenubarCheckboxItem,
306
+ io as MenubarContent,
307
+ lo as MenubarGroup,
308
+ po as MenubarItem,
309
+ mo as MenubarLabel,
310
+ xo as MenubarMenu,
311
+ uo as MenubarPortal,
312
+ go as MenubarRadioGroup,
313
+ so as MenubarRadioItem,
314
+ Co as MenubarSeparator,
315
+ bo as MenubarShortcut,
316
+ co as MenubarSub,
317
+ To as MenubarSubContent,
318
+ Mo as MenubarSubTrigger,
319
+ fo as MenubarTrigger,
320
+ So as NavigationMenu,
321
+ ho as NavigationMenuContent,
322
+ vo as NavigationMenuIndicator,
323
+ wo as NavigationMenuItem,
324
+ Ao as NavigationMenuLink,
325
+ Po as NavigationMenuList,
326
+ Io as NavigationMenuTrigger,
327
+ Fo as NavigationMenuViewport,
328
+ Bo as Pagination,
329
+ Ro as PaginationContent,
330
+ Go as PaginationEllipsis,
331
+ Ho as PaginationItem,
332
+ No as PaginationLink,
333
+ ko as PaginationNext,
334
+ Vo as PaginationPrevious,
335
+ Oo as Popover,
336
+ Eo as PopoverAnchor,
337
+ Uo as PopoverContent,
338
+ Wo as PopoverTrigger,
339
+ qo as Progress,
340
+ Ko as RadioGroup,
341
+ Qo as RadioGroupItem,
342
+ Yo as ResizableHandle,
343
+ Zo as ResizablePanel,
344
+ _o as ResizablePanelGroup,
345
+ et as ScrollArea,
346
+ rt as ScrollBar,
347
+ tt as Search,
348
+ at as SearchTrigger,
349
+ it as Select,
350
+ lt as SelectContent,
351
+ pt as SelectGroup,
352
+ mt as SelectItem,
353
+ xt as SelectLabel,
354
+ ut as SelectScrollDownButton,
355
+ gt as SelectScrollUpButton,
356
+ st as SelectSeparator,
357
+ dt as SelectTrigger,
358
+ Ct as SelectValue,
359
+ ct as Separator,
360
+ Mt as Sheet,
361
+ ft as SheetClose,
362
+ Dt as SheetContent,
363
+ St as SheetDescription,
364
+ ht as SheetFooter,
365
+ vt as SheetHeader,
366
+ wt as SheetOverlay,
367
+ At as SheetPortal,
368
+ Pt as SheetTitle,
369
+ It as SheetTrigger,
370
+ Lt as Skeleton,
371
+ Bt as Slider,
372
+ Gt as SonnerToaster,
373
+ Nt as Switch,
374
+ Vt as Table,
375
+ zt as TableBody,
376
+ Ot as TableCaption,
377
+ Et as TableCell,
378
+ Ut as TableFooter,
379
+ Wt as TableHead,
380
+ jt as TableHeader,
381
+ qt as TableRow,
382
+ Kt as Tabs,
383
+ Qt as TabsContent,
384
+ Xt as TabsList,
385
+ Yt as TabsTrigger,
386
+ _t as Text,
387
+ ra as Textarea,
388
+ Da as ThemeProvider,
389
+ u as ThemeToggle,
390
+ sa as Toast,
391
+ da as ToastAction,
392
+ Ca as ToastClose,
393
+ ba as ToastDescription,
394
+ ca as ToastProvider,
395
+ Ta as ToastTitle,
396
+ Ma as ToastViewport,
397
+ ha as Toaster,
398
+ ta as Toggle,
399
+ na as ToggleGroup,
400
+ ia as ToggleGroupItem,
401
+ pa as Tooltip,
402
+ ma as TooltipContent,
403
+ xa as TooltipProvider,
404
+ ua as TooltipTrigger,
405
+ W as badgeVariants,
406
+ ee as buttonVariants,
407
+ s as cn,
408
+ Lo as navigationMenuTriggerStyle,
409
+ r as palette,
410
+ a as radii,
411
+ n as radiiNumeric,
412
+ l as shadows,
413
+ t as spacing,
414
+ $t as textVariants,
415
+ e as theme,
416
+ va as toast,
417
+ Pa as toggleVariants,
418
+ p as tokens,
419
+ i as typography,
420
+ Qr as useFormField,
421
+ wa as useToast
2453
422
  };
2454
423
  //# sourceMappingURL=index.es.js.map