@byldpartners/ui 0.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (413) hide show
  1. package/README.md +284 -0
  2. package/dist/chunk-464G63BO.cjs +224 -0
  3. package/dist/chunk-464G63BO.cjs.map +1 -0
  4. package/dist/chunk-JFJY6DZZ.js +224 -0
  5. package/dist/chunk-JFJY6DZZ.js.map +1 -0
  6. package/dist/index.cjs +3894 -0
  7. package/dist/index.cjs.map +1 -0
  8. package/dist/index.d.cts +1543 -0
  9. package/dist/index.d.ts +1543 -0
  10. package/dist/index.js +3894 -0
  11. package/dist/index.js.map +1 -0
  12. package/dist/theme/web.cjs +16 -0
  13. package/dist/theme/web.cjs.map +1 -0
  14. package/dist/theme/web.d.cts +81 -0
  15. package/dist/theme/web.d.ts +81 -0
  16. package/dist/theme/web.js +16 -0
  17. package/dist/theme/web.js.map +1 -0
  18. package/package.json +117 -0
  19. package/src/components/Accordion/Accordion.native.tsx +195 -0
  20. package/src/components/Accordion/Accordion.stories.tsx +49 -0
  21. package/src/components/Accordion/Accordion.types.ts +28 -0
  22. package/src/components/Accordion/Accordion.web.tsx +61 -0
  23. package/src/components/Accordion/index.native.ts +12 -0
  24. package/src/components/Accordion/index.ts +12 -0
  25. package/src/components/Accordion/useAccordion.test.ts +114 -0
  26. package/src/components/Accordion/useAccordion.ts +65 -0
  27. package/src/components/Alert/Alert.native.tsx +86 -0
  28. package/src/components/Alert/Alert.stories.tsx +43 -0
  29. package/src/components/Alert/Alert.types.ts +17 -0
  30. package/src/components/Alert/Alert.web.test.tsx +49 -0
  31. package/src/components/Alert/Alert.web.tsx +59 -0
  32. package/src/components/Alert/index.native.ts +2 -0
  33. package/src/components/Alert/index.ts +2 -0
  34. package/src/components/Alert/useAlert.test.ts +19 -0
  35. package/src/components/Alert/useAlert.ts +10 -0
  36. package/src/components/AlertDialog/AlertDialog.native.tsx +281 -0
  37. package/src/components/AlertDialog/AlertDialog.stories.tsx +49 -0
  38. package/src/components/AlertDialog/AlertDialog.types.ts +49 -0
  39. package/src/components/AlertDialog/AlertDialog.web.tsx +138 -0
  40. package/src/components/AlertDialog/index.native.ts +22 -0
  41. package/src/components/AlertDialog/index.ts +24 -0
  42. package/src/components/AlertDialog/useAlertDialog.test.ts +40 -0
  43. package/src/components/AlertDialog/useAlertDialog.ts +36 -0
  44. package/src/components/AspectRatio/AspectRatio.native.tsx +37 -0
  45. package/src/components/AspectRatio/AspectRatio.stories.tsx +44 -0
  46. package/src/components/AspectRatio/AspectRatio.types.ts +5 -0
  47. package/src/components/AspectRatio/AspectRatio.web.tsx +5 -0
  48. package/src/components/AspectRatio/index.native.ts +2 -0
  49. package/src/components/AspectRatio/index.ts +2 -0
  50. package/src/components/AspectRatio/useAspectRatio.test.ts +40 -0
  51. package/src/components/AspectRatio/useAspectRatio.ts +12 -0
  52. package/src/components/Avatar/Avatar.native.tsx +95 -0
  53. package/src/components/Avatar/Avatar.stories.tsx +31 -0
  54. package/src/components/Avatar/Avatar.types.ts +17 -0
  55. package/src/components/Avatar/Avatar.web.tsx +47 -0
  56. package/src/components/Avatar/index.native.ts +2 -0
  57. package/src/components/Avatar/index.ts +2 -0
  58. package/src/components/Avatar/useAvatarImage.test.ts +66 -0
  59. package/src/components/Avatar/useAvatarImage.ts +31 -0
  60. package/src/components/Badge/Badge.native.tsx +64 -0
  61. package/src/components/Badge/Badge.stories.tsx +42 -0
  62. package/src/components/Badge/Badge.types.ts +7 -0
  63. package/src/components/Badge/Badge.web.test.tsx +40 -0
  64. package/src/components/Badge/Badge.web.tsx +41 -0
  65. package/src/components/Badge/index.native.ts +2 -0
  66. package/src/components/Badge/index.ts +2 -0
  67. package/src/components/Breadcrumb/Breadcrumb.native.tsx +158 -0
  68. package/src/components/Breadcrumb/Breadcrumb.stories.tsx +41 -0
  69. package/src/components/Breadcrumb/Breadcrumb.types.ts +37 -0
  70. package/src/components/Breadcrumb/Breadcrumb.web.tsx +125 -0
  71. package/src/components/Breadcrumb/index.native.ts +18 -0
  72. package/src/components/Breadcrumb/index.ts +18 -0
  73. package/src/components/Button/Button.native.tsx +118 -0
  74. package/src/components/Button/Button.stories.tsx +97 -0
  75. package/src/components/Button/Button.types.ts +19 -0
  76. package/src/components/Button/Button.web.test.tsx +69 -0
  77. package/src/components/Button/Button.web.tsx +55 -0
  78. package/src/components/Button/index.native.ts +2 -0
  79. package/src/components/Button/index.ts +2 -0
  80. package/src/components/Calendar/Calendar.native.tsx +108 -0
  81. package/src/components/Calendar/Calendar.stories.tsx +18 -0
  82. package/src/components/Calendar/Calendar.types.ts +8 -0
  83. package/src/components/Calendar/Calendar.web.tsx +143 -0
  84. package/src/components/Calendar/index.native.ts +2 -0
  85. package/src/components/Calendar/index.ts +2 -0
  86. package/src/components/Calendar/useCalendar.test.ts +145 -0
  87. package/src/components/Calendar/useCalendar.ts +94 -0
  88. package/src/components/Card/Card.native.tsx +42 -0
  89. package/src/components/Card/Card.stories.tsx +41 -0
  90. package/src/components/Card/Card.types.ts +4 -0
  91. package/src/components/Card/Card.web.test.tsx +29 -0
  92. package/src/components/Card/Card.web.tsx +23 -0
  93. package/src/components/Card/index.native.ts +2 -0
  94. package/src/components/Card/index.ts +2 -0
  95. package/src/components/Carousel/Carousel.native.tsx +193 -0
  96. package/src/components/Carousel/Carousel.stories.tsx +51 -0
  97. package/src/components/Carousel/Carousel.types.ts +29 -0
  98. package/src/components/Carousel/Carousel.web.tsx +272 -0
  99. package/src/components/Carousel/index.native.ts +2 -0
  100. package/src/components/Carousel/index.ts +2 -0
  101. package/src/components/Carousel/useCarousel.test.ts +111 -0
  102. package/src/components/Carousel/useCarousel.ts +48 -0
  103. package/src/components/Chart/Chart.native.tsx +7 -0
  104. package/src/components/Chart/Chart.stories.tsx +57 -0
  105. package/src/components/Chart/Chart.types.ts +13 -0
  106. package/src/components/Chart/Chart.web.tsx +36 -0
  107. package/src/components/Chart/index.native.ts +2 -0
  108. package/src/components/Chart/index.ts +3 -0
  109. package/src/components/Checkbox/Checkbox.native.tsx +47 -0
  110. package/src/components/Checkbox/Checkbox.stories.tsx +30 -0
  111. package/src/components/Checkbox/Checkbox.types.ts +12 -0
  112. package/src/components/Checkbox/Checkbox.web.tsx +37 -0
  113. package/src/components/Checkbox/index.native.ts +2 -0
  114. package/src/components/Checkbox/index.ts +2 -0
  115. package/src/components/Checkbox/useCheckbox.test.ts +66 -0
  116. package/src/components/Checkbox/useCheckbox.ts +37 -0
  117. package/src/components/Collapsible/Collapsible.native.tsx +111 -0
  118. package/src/components/Collapsible/Collapsible.stories.tsx +35 -0
  119. package/src/components/Collapsible/Collapsible.types.ts +19 -0
  120. package/src/components/Collapsible/Collapsible.web.tsx +9 -0
  121. package/src/components/Collapsible/index.native.ts +2 -0
  122. package/src/components/Collapsible/index.ts +2 -0
  123. package/src/components/Collapsible/useCollapsible.test.ts +53 -0
  124. package/src/components/Collapsible/useCollapsible.ts +38 -0
  125. package/src/components/Combobox/Combobox.native.tsx +146 -0
  126. package/src/components/Combobox/Combobox.stories.tsx +43 -0
  127. package/src/components/Combobox/Combobox.types.ts +15 -0
  128. package/src/components/Combobox/Combobox.web.tsx +145 -0
  129. package/src/components/Combobox/index.native.ts +2 -0
  130. package/src/components/Combobox/index.ts +2 -0
  131. package/src/components/Combobox/useCombobox.test.ts +59 -0
  132. package/src/components/Combobox/useCombobox.ts +42 -0
  133. package/src/components/Command/Command.native.tsx +7 -0
  134. package/src/components/Command/Command.stories.tsx +37 -0
  135. package/src/components/Command/Command.types.ts +43 -0
  136. package/src/components/Command/Command.web.tsx +134 -0
  137. package/src/components/Command/index.native.ts +2 -0
  138. package/src/components/Command/index.ts +18 -0
  139. package/src/components/ContextMenu/ContextMenu.native.tsx +241 -0
  140. package/src/components/ContextMenu/ContextMenu.stories.tsx +43 -0
  141. package/src/components/ContextMenu/ContextMenu.types.ts +69 -0
  142. package/src/components/ContextMenu/ContextMenu.web.tsx +220 -0
  143. package/src/components/ContextMenu/index.native.ts +28 -0
  144. package/src/components/ContextMenu/index.ts +2 -0
  145. package/src/components/ContextMenu/useContextMenu.test.ts +44 -0
  146. package/src/components/ContextMenu/useContextMenu.ts +36 -0
  147. package/src/components/DataTable/DataTable.native.tsx +85 -0
  148. package/src/components/DataTable/DataTable.stories.tsx +72 -0
  149. package/src/components/DataTable/DataTable.types.ts +16 -0
  150. package/src/components/DataTable/DataTable.web.tsx +135 -0
  151. package/src/components/DataTable/index.native.ts +2 -0
  152. package/src/components/DataTable/index.ts +3 -0
  153. package/src/components/DataTable/useDataTable.test.ts +98 -0
  154. package/src/components/DataTable/useDataTable.ts +68 -0
  155. package/src/components/DatePicker/DatePicker.native.tsx +82 -0
  156. package/src/components/DatePicker/DatePicker.stories.tsx +68 -0
  157. package/src/components/DatePicker/DatePicker.types.ts +7 -0
  158. package/src/components/DatePicker/DatePicker.web.tsx +85 -0
  159. package/src/components/DatePicker/index.native.ts +2 -0
  160. package/src/components/DatePicker/index.ts +2 -0
  161. package/src/components/DatePicker/useDatePicker.test.ts +62 -0
  162. package/src/components/DatePicker/useDatePicker.ts +54 -0
  163. package/src/components/Dialog/Dialog.native.tsx +188 -0
  164. package/src/components/Dialog/Dialog.stories.tsx +42 -0
  165. package/src/components/Dialog/Dialog.types.ts +45 -0
  166. package/src/components/Dialog/Dialog.web.tsx +126 -0
  167. package/src/components/Dialog/index.native.ts +2 -0
  168. package/src/components/Dialog/index.ts +2 -0
  169. package/src/components/Dialog/useDialog.test.ts +44 -0
  170. package/src/components/Dialog/useDialog.ts +36 -0
  171. package/src/components/Drawer/Drawer.native.tsx +244 -0
  172. package/src/components/Drawer/Drawer.stories.tsx +39 -0
  173. package/src/components/Drawer/Drawer.types.ts +44 -0
  174. package/src/components/Drawer/Drawer.web.tsx +133 -0
  175. package/src/components/Drawer/index.native.ts +2 -0
  176. package/src/components/Drawer/index.ts +2 -0
  177. package/src/components/Drawer/useDrawer.test.ts +33 -0
  178. package/src/components/Drawer/useDrawer.ts +19 -0
  179. package/src/components/DropdownMenu/DropdownMenu.native.tsx +272 -0
  180. package/src/components/DropdownMenu/DropdownMenu.stories.tsx +36 -0
  181. package/src/components/DropdownMenu/DropdownMenu.types.ts +73 -0
  182. package/src/components/DropdownMenu/DropdownMenu.web.tsx +225 -0
  183. package/src/components/DropdownMenu/index.native.ts +2 -0
  184. package/src/components/DropdownMenu/index.ts +2 -0
  185. package/src/components/DropdownMenu/useDropdownMenu.test.ts +44 -0
  186. package/src/components/DropdownMenu/useDropdownMenu.ts +36 -0
  187. package/src/components/Form/Form.native.tsx +98 -0
  188. package/src/components/Form/Form.stories.tsx +83 -0
  189. package/src/components/Form/Form.types.ts +35 -0
  190. package/src/components/Form/Form.web.test.tsx +73 -0
  191. package/src/components/Form/Form.web.tsx +111 -0
  192. package/src/components/Form/index.native.ts +18 -0
  193. package/src/components/Form/index.ts +18 -0
  194. package/src/components/Form/useFormField.test.ts +25 -0
  195. package/src/components/Form/useFormField.ts +22 -0
  196. package/src/components/HoverCard/HoverCard.native.tsx +15 -0
  197. package/src/components/HoverCard/HoverCard.stories.tsx +34 -0
  198. package/src/components/HoverCard/HoverCard.types.ts +18 -0
  199. package/src/components/HoverCard/HoverCard.web.test.tsx +35 -0
  200. package/src/components/HoverCard/HoverCard.web.tsx +26 -0
  201. package/src/components/HoverCard/index.native.ts +2 -0
  202. package/src/components/HoverCard/index.ts +2 -0
  203. package/src/components/Icon/Icon.native.tsx +27 -0
  204. package/src/components/Icon/index.native.ts +2 -0
  205. package/src/components/Input/Input.native.tsx +32 -0
  206. package/src/components/Input/Input.stories.tsx +42 -0
  207. package/src/components/Input/Input.types.ts +10 -0
  208. package/src/components/Input/Input.web.test.tsx +39 -0
  209. package/src/components/Input/Input.web.tsx +21 -0
  210. package/src/components/Input/index.native.ts +2 -0
  211. package/src/components/Input/index.ts +2 -0
  212. package/src/components/InputOTP/InputOTP.native.tsx +93 -0
  213. package/src/components/InputOTP/InputOTP.stories.tsx +56 -0
  214. package/src/components/InputOTP/InputOTP.types.ts +14 -0
  215. package/src/components/InputOTP/InputOTP.web.tsx +128 -0
  216. package/src/components/InputOTP/index.native.ts +2 -0
  217. package/src/components/InputOTP/index.ts +2 -0
  218. package/src/components/InputOTP/useInputOTP.test.ts +97 -0
  219. package/src/components/InputOTP/useInputOTP.ts +69 -0
  220. package/src/components/Label/Label.native.tsx +25 -0
  221. package/src/components/Label/Label.stories.tsx +20 -0
  222. package/src/components/Label/Label.types.ts +6 -0
  223. package/src/components/Label/Label.web.test.tsx +27 -0
  224. package/src/components/Label/Label.web.tsx +23 -0
  225. package/src/components/Label/index.native.ts +2 -0
  226. package/src/components/Label/index.ts +2 -0
  227. package/src/components/Menubar/Menubar.native.tsx +287 -0
  228. package/src/components/Menubar/Menubar.stories.tsx +46 -0
  229. package/src/components/Menubar/Menubar.types.ts +70 -0
  230. package/src/components/Menubar/Menubar.web.tsx +256 -0
  231. package/src/components/Menubar/index.native.ts +28 -0
  232. package/src/components/Menubar/index.ts +2 -0
  233. package/src/components/Menubar/useMenubar.test.ts +35 -0
  234. package/src/components/Menubar/useMenubar.ts +19 -0
  235. package/src/components/NavigationMenu/NavigationMenu.native.tsx +128 -0
  236. package/src/components/NavigationMenu/NavigationMenu.stories.tsx +35 -0
  237. package/src/components/NavigationMenu/NavigationMenu.types.ts +35 -0
  238. package/src/components/NavigationMenu/NavigationMenu.web.test.tsx +56 -0
  239. package/src/components/NavigationMenu/NavigationMenu.web.tsx +134 -0
  240. package/src/components/NavigationMenu/index.native.ts +16 -0
  241. package/src/components/NavigationMenu/index.ts +2 -0
  242. package/src/components/Pagination/Pagination.native.tsx +192 -0
  243. package/src/components/Pagination/Pagination.stories.tsx +49 -0
  244. package/src/components/Pagination/Pagination.types.ts +41 -0
  245. package/src/components/Pagination/Pagination.web.test.tsx +101 -0
  246. package/src/components/Pagination/Pagination.web.tsx +185 -0
  247. package/src/components/Pagination/index.native.ts +19 -0
  248. package/src/components/Pagination/index.ts +2 -0
  249. package/src/components/Popover/Popover.native.tsx +97 -0
  250. package/src/components/Popover/Popover.stories.tsx +25 -0
  251. package/src/components/Popover/Popover.types.ts +20 -0
  252. package/src/components/Popover/Popover.web.tsx +30 -0
  253. package/src/components/Popover/index.native.ts +2 -0
  254. package/src/components/Popover/index.ts +2 -0
  255. package/src/components/Popover/usePopover.test.ts +40 -0
  256. package/src/components/Popover/usePopover.ts +36 -0
  257. package/src/components/Progress/Progress.native.tsx +65 -0
  258. package/src/components/Progress/Progress.stories.tsx +36 -0
  259. package/src/components/Progress/Progress.types.ts +6 -0
  260. package/src/components/Progress/Progress.web.test.tsx +27 -0
  261. package/src/components/Progress/Progress.web.tsx +30 -0
  262. package/src/components/Progress/index.native.ts +2 -0
  263. package/src/components/Progress/index.ts +2 -0
  264. package/src/components/Progress/useProgress.test.ts +44 -0
  265. package/src/components/Progress/useProgress.ts +11 -0
  266. package/src/components/RadioGroup/RadioGroup.native.tsx +96 -0
  267. package/src/components/RadioGroup/RadioGroup.stories.tsx +31 -0
  268. package/src/components/RadioGroup/RadioGroup.types.ts +16 -0
  269. package/src/components/RadioGroup/RadioGroup.web.tsx +47 -0
  270. package/src/components/RadioGroup/index.native.ts +2 -0
  271. package/src/components/RadioGroup/index.ts +2 -0
  272. package/src/components/RadioGroup/useRadioGroup.test.ts +50 -0
  273. package/src/components/RadioGroup/useRadioGroup.ts +40 -0
  274. package/src/components/ResizablePanel/ResizablePanel.native.tsx +75 -0
  275. package/src/components/ResizablePanel/ResizablePanel.stories.tsx +84 -0
  276. package/src/components/ResizablePanel/ResizablePanel.types.ts +20 -0
  277. package/src/components/ResizablePanel/ResizablePanel.web.test.tsx +52 -0
  278. package/src/components/ResizablePanel/ResizablePanel.web.tsx +77 -0
  279. package/src/components/ResizablePanel/index.native.ts +2 -0
  280. package/src/components/ResizablePanel/index.ts +2 -0
  281. package/src/components/ScrollArea/ScrollArea.native.tsx +43 -0
  282. package/src/components/ScrollArea/ScrollArea.stories.tsx +46 -0
  283. package/src/components/ScrollArea/ScrollArea.types.ts +11 -0
  284. package/src/components/ScrollArea/ScrollArea.web.test.tsx +19 -0
  285. package/src/components/ScrollArea/ScrollArea.web.tsx +45 -0
  286. package/src/components/ScrollArea/index.native.ts +2 -0
  287. package/src/components/ScrollArea/index.ts +2 -0
  288. package/src/components/Select/Select.native.tsx +203 -0
  289. package/src/components/Select/Select.stories.tsx +33 -0
  290. package/src/components/Select/Select.types.ts +14 -0
  291. package/src/components/Select/Select.web.tsx +204 -0
  292. package/src/components/Select/index.native.ts +11 -0
  293. package/src/components/Select/index.ts +2 -0
  294. package/src/components/Select/useSelect.test.ts +38 -0
  295. package/src/components/Select/useSelect.ts +33 -0
  296. package/src/components/Separator/Separator.native.tsx +38 -0
  297. package/src/components/Separator/Separator.stories.tsx +34 -0
  298. package/src/components/Separator/Separator.types.ts +7 -0
  299. package/src/components/Separator/Separator.web.test.tsx +32 -0
  300. package/src/components/Separator/Separator.web.tsx +38 -0
  301. package/src/components/Separator/index.native.ts +2 -0
  302. package/src/components/Separator/index.ts +2 -0
  303. package/src/components/Sheet/Sheet.native.tsx +246 -0
  304. package/src/components/Sheet/Sheet.stories.tsx +43 -0
  305. package/src/components/Sheet/Sheet.types.ts +47 -0
  306. package/src/components/Sheet/Sheet.web.tsx +144 -0
  307. package/src/components/Sheet/index.native.ts +2 -0
  308. package/src/components/Sheet/index.ts +2 -0
  309. package/src/components/Sheet/useSheet.test.ts +40 -0
  310. package/src/components/Sheet/useSheet.ts +19 -0
  311. package/src/components/Sidebar/Sidebar.native.tsx +7 -0
  312. package/src/components/Sidebar/Sidebar.stories.tsx +100 -0
  313. package/src/components/Sidebar/Sidebar.types.ts +30 -0
  314. package/src/components/Sidebar/Sidebar.web.test.tsx +74 -0
  315. package/src/components/Sidebar/Sidebar.web.tsx +200 -0
  316. package/src/components/Sidebar/index.native.ts +2 -0
  317. package/src/components/Sidebar/index.ts +2 -0
  318. package/src/components/Sidebar/useSidebar.test.ts +51 -0
  319. package/src/components/Sidebar/useSidebar.ts +26 -0
  320. package/src/components/Skeleton/Skeleton.native.tsx +45 -0
  321. package/src/components/Skeleton/Skeleton.stories.tsx +32 -0
  322. package/src/components/Skeleton/Skeleton.types.ts +6 -0
  323. package/src/components/Skeleton/Skeleton.web.test.tsx +35 -0
  324. package/src/components/Skeleton/Skeleton.web.tsx +18 -0
  325. package/src/components/Skeleton/index.native.ts +2 -0
  326. package/src/components/Skeleton/index.ts +2 -0
  327. package/src/components/Slider/Slider.native.tsx +98 -0
  328. package/src/components/Slider/Slider.stories.tsx +23 -0
  329. package/src/components/Slider/Slider.types.ts +10 -0
  330. package/src/components/Slider/Slider.web.tsx +25 -0
  331. package/src/components/Slider/index.native.ts +2 -0
  332. package/src/components/Slider/index.ts +2 -0
  333. package/src/components/Slider/useSlider.test.ts +68 -0
  334. package/src/components/Slider/useSlider.ts +55 -0
  335. package/src/components/Switch/Switch.native.tsx +36 -0
  336. package/src/components/Switch/Switch.stories.tsx +28 -0
  337. package/src/components/Switch/Switch.types.ts +7 -0
  338. package/src/components/Switch/Switch.web.test.tsx +44 -0
  339. package/src/components/Switch/Switch.web.tsx +26 -0
  340. package/src/components/Switch/index.native.ts +2 -0
  341. package/src/components/Switch/index.ts +2 -0
  342. package/src/components/Table/Table.native.tsx +165 -0
  343. package/src/components/Table/Table.stories.tsx +54 -0
  344. package/src/components/Table/Table.types.ts +41 -0
  345. package/src/components/Table/Table.web.test.tsx +77 -0
  346. package/src/components/Table/Table.web.tsx +119 -0
  347. package/src/components/Table/index.native.ts +2 -0
  348. package/src/components/Table/index.ts +2 -0
  349. package/src/components/Tabs/Tabs.native.tsx +136 -0
  350. package/src/components/Tabs/Tabs.stories.tsx +35 -0
  351. package/src/components/Tabs/Tabs.types.ts +25 -0
  352. package/src/components/Tabs/Tabs.web.tsx +52 -0
  353. package/src/components/Tabs/index.native.ts +2 -0
  354. package/src/components/Tabs/index.ts +2 -0
  355. package/src/components/Tabs/useTabs.test.ts +40 -0
  356. package/src/components/Tabs/useTabs.ts +20 -0
  357. package/src/components/Textarea/Textarea.native.tsx +33 -0
  358. package/src/components/Textarea/Textarea.stories.tsx +27 -0
  359. package/src/components/Textarea/Textarea.types.ts +10 -0
  360. package/src/components/Textarea/Textarea.web.test.tsx +33 -0
  361. package/src/components/Textarea/Textarea.web.tsx +21 -0
  362. package/src/components/Textarea/index.native.ts +2 -0
  363. package/src/components/Textarea/index.ts +2 -0
  364. package/src/components/Toast/Toast.native.tsx +267 -0
  365. package/src/components/Toast/Toast.stories.tsx +34 -0
  366. package/src/components/Toast/Toast.types.ts +50 -0
  367. package/src/components/Toast/Toast.web.tsx +282 -0
  368. package/src/components/Toast/index.native.ts +17 -0
  369. package/src/components/Toast/index.ts +11 -0
  370. package/src/components/Toast/useToast.test.ts +122 -0
  371. package/src/components/Toast/useToast.ts +64 -0
  372. package/src/components/Toggle/Toggle.native.tsx +70 -0
  373. package/src/components/Toggle/Toggle.stories.tsx +34 -0
  374. package/src/components/Toggle/Toggle.types.ts +13 -0
  375. package/src/components/Toggle/Toggle.web.tsx +42 -0
  376. package/src/components/Toggle/index.native.ts +2 -0
  377. package/src/components/Toggle/index.ts +2 -0
  378. package/src/components/Toggle/useToggle.test.ts +48 -0
  379. package/src/components/Toggle/useToggle.ts +37 -0
  380. package/src/components/ToggleGroup/ToggleGroup.native.tsx +103 -0
  381. package/src/components/ToggleGroup/ToggleGroup.stories.tsx +24 -0
  382. package/src/components/ToggleGroup/ToggleGroup.types.ts +22 -0
  383. package/src/components/ToggleGroup/ToggleGroup.web.tsx +56 -0
  384. package/src/components/ToggleGroup/index.native.ts +2 -0
  385. package/src/components/ToggleGroup/index.ts +2 -0
  386. package/src/components/ToggleGroup/useToggleGroup.test.ts +79 -0
  387. package/src/components/ToggleGroup/useToggleGroup.ts +63 -0
  388. package/src/components/Tooltip/Tooltip.native.tsx +7 -0
  389. package/src/components/Tooltip/Tooltip.stories.tsx +32 -0
  390. package/src/components/Tooltip/Tooltip.types.ts +27 -0
  391. package/src/components/Tooltip/Tooltip.web.test.tsx +42 -0
  392. package/src/components/Tooltip/Tooltip.web.tsx +29 -0
  393. package/src/components/Tooltip/index.native.ts +2 -0
  394. package/src/components/Tooltip/index.ts +2 -0
  395. package/src/components/index.native.ts +50 -0
  396. package/src/components/index.ts +49 -0
  397. package/src/hooks/useControllableState.test.ts +89 -0
  398. package/src/hooks/useControllableState.ts +37 -0
  399. package/src/index.native.ts +20 -0
  400. package/src/index.ts +12 -0
  401. package/src/theme/native.ts +211 -0
  402. package/src/theme/presets/aurora.ts +56 -0
  403. package/src/theme/presets/dark.ts +30 -0
  404. package/src/theme/presets/default.ts +30 -0
  405. package/src/theme/theme.types.ts +64 -0
  406. package/src/theme/tokens.ts +31 -0
  407. package/src/theme/web.ts +123 -0
  408. package/src/uniwind.d.ts +38 -0
  409. package/src/utils/cn.native.ts +10 -0
  410. package/src/utils/cn.test.ts +28 -0
  411. package/src/utils/cn.ts +6 -0
  412. package/src/utils/glass.native.ts +22 -0
  413. package/src/utils/withGlass.native.tsx +59 -0
@@ -0,0 +1,1543 @@
1
+ import * as react from 'react';
2
+ import { ReactNode } from 'react';
3
+ import * as AccordionPrimitive from '@radix-ui/react-accordion';
4
+ import * as class_variance_authority_types from 'class-variance-authority/types';
5
+ import { VariantProps } from 'class-variance-authority';
6
+ import * as react_jsx_runtime from 'react/jsx-runtime';
7
+ import * as AlertDialogPrimitive from '@radix-ui/react-alert-dialog';
8
+ import * as AspectRatioPrimitive from '@radix-ui/react-aspect-ratio';
9
+ import * as AvatarPrimitive from '@radix-ui/react-avatar';
10
+ import * as CheckboxPrimitive from '@radix-ui/react-checkbox';
11
+ import * as CollapsiblePrimitive from '@radix-ui/react-collapsible';
12
+ import * as ContextMenuPrimitive from '@radix-ui/react-context-menu';
13
+ import * as DialogPrimitive from '@radix-ui/react-dialog';
14
+ import { Drawer as Drawer$1 } from 'vaul';
15
+ import * as DropdownMenuPrimitive from '@radix-ui/react-dropdown-menu';
16
+ import * as HoverCardPrimitive from '@radix-ui/react-hover-card';
17
+ import * as LabelPrimitive from '@radix-ui/react-label';
18
+ import * as MenubarPrimitive from '@radix-ui/react-menubar';
19
+ import * as NavigationMenuPrimitive from '@radix-ui/react-navigation-menu';
20
+ import * as PopoverPrimitive from '@radix-ui/react-popover';
21
+ import * as ProgressPrimitive from '@radix-ui/react-progress';
22
+ import * as RadioGroupPrimitive from '@radix-ui/react-radio-group';
23
+ import { Separator as Separator$1, Panel } from 'react-resizable-panels';
24
+ import * as ScrollAreaPrimitive from '@radix-ui/react-scroll-area';
25
+ import * as SelectPrimitive from '@radix-ui/react-select';
26
+ import * as SeparatorPrimitive from '@radix-ui/react-separator';
27
+ import * as SliderPrimitive from '@radix-ui/react-slider';
28
+ import * as SwitchPrimitive from '@radix-ui/react-switch';
29
+ import * as TabsPrimitive from '@radix-ui/react-tabs';
30
+ import * as TogglePrimitive from '@radix-ui/react-toggle';
31
+ import * as ToggleGroupPrimitive from '@radix-ui/react-toggle-group';
32
+ import * as TooltipPrimitive from '@radix-ui/react-tooltip';
33
+ export { ThemeColors, ThemePreset, ThemeProvider, ThemeRadius, ThemeSpacing, ThemeTokens, auroraPreset, darkPreset, defaultPreset, useTheme } from './theme/web.js';
34
+
35
+ declare const Accordion: react.ForwardRefExoticComponent<(AccordionPrimitive.AccordionSingleProps | AccordionPrimitive.AccordionMultipleProps) & react.RefAttributes<HTMLDivElement>>;
36
+ declare const AccordionItem: react.ForwardRefExoticComponent<Omit<AccordionPrimitive.AccordionItemProps & react.RefAttributes<HTMLDivElement>, "ref"> & react.RefAttributes<HTMLDivElement>>;
37
+ declare const AccordionTrigger: react.ForwardRefExoticComponent<Omit<AccordionPrimitive.AccordionTriggerProps & react.RefAttributes<HTMLButtonElement>, "ref"> & react.RefAttributes<HTMLButtonElement>>;
38
+ declare const AccordionContent: react.ForwardRefExoticComponent<Omit<AccordionPrimitive.AccordionContentProps & react.RefAttributes<HTMLDivElement>, "ref"> & react.RefAttributes<HTMLDivElement>>;
39
+
40
+ type AccordionType = "single" | "multiple";
41
+ interface AccordionProps {
42
+ type?: AccordionType;
43
+ collapsible?: boolean;
44
+ defaultValue?: string | string[];
45
+ value?: string | string[];
46
+ onValueChange?: (value: string | string[]) => void;
47
+ children?: React.ReactNode;
48
+ className?: string;
49
+ }
50
+ interface AccordionItemProps {
51
+ value: string;
52
+ children?: React.ReactNode;
53
+ className?: string;
54
+ disabled?: boolean;
55
+ }
56
+ interface AccordionTriggerProps {
57
+ children?: React.ReactNode;
58
+ className?: string;
59
+ }
60
+ interface AccordionContentProps {
61
+ children?: React.ReactNode;
62
+ className?: string;
63
+ }
64
+
65
+ declare const Alert: react.ForwardRefExoticComponent<react.HTMLAttributes<HTMLDivElement> & VariantProps<(props?: ({
66
+ variant?: "default" | "destructive" | null | undefined;
67
+ } & class_variance_authority_types.ClassProp) | undefined) => string> & react.RefAttributes<HTMLDivElement>>;
68
+ declare const AlertTitle: react.ForwardRefExoticComponent<react.HTMLAttributes<HTMLHeadingElement> & react.RefAttributes<HTMLParagraphElement>>;
69
+ declare const AlertDescription: react.ForwardRefExoticComponent<react.HTMLAttributes<HTMLParagraphElement> & react.RefAttributes<HTMLParagraphElement>>;
70
+
71
+ type AlertVariant = "default" | "destructive";
72
+ interface AlertProps {
73
+ variant?: AlertVariant;
74
+ children?: React.ReactNode;
75
+ className?: string;
76
+ }
77
+ interface AlertTitleProps {
78
+ children?: React.ReactNode;
79
+ className?: string;
80
+ }
81
+ interface AlertDescriptionProps {
82
+ children?: React.ReactNode;
83
+ className?: string;
84
+ }
85
+
86
+ declare const AlertDialog: react.FC<AlertDialogPrimitive.AlertDialogProps>;
87
+ declare const AlertDialogTrigger: react.ForwardRefExoticComponent<AlertDialogPrimitive.AlertDialogTriggerProps & react.RefAttributes<HTMLButtonElement>>;
88
+ declare const AlertDialogPortal: react.FC<AlertDialogPrimitive.AlertDialogPortalProps>;
89
+ declare const AlertDialogOverlay: react.ForwardRefExoticComponent<Omit<AlertDialogPrimitive.AlertDialogOverlayProps & react.RefAttributes<HTMLDivElement>, "ref"> & react.RefAttributes<HTMLDivElement>>;
90
+ declare const AlertDialogContent: react.ForwardRefExoticComponent<Omit<AlertDialogPrimitive.AlertDialogContentProps & react.RefAttributes<HTMLDivElement>, "ref"> & react.RefAttributes<HTMLDivElement>>;
91
+ declare const AlertDialogHeader: {
92
+ ({ className, ...props }: React.HTMLAttributes<HTMLDivElement>): react_jsx_runtime.JSX.Element;
93
+ displayName: string;
94
+ };
95
+ declare const AlertDialogFooter: {
96
+ ({ className, ...props }: React.HTMLAttributes<HTMLDivElement>): react_jsx_runtime.JSX.Element;
97
+ displayName: string;
98
+ };
99
+ declare const AlertDialogTitle: react.ForwardRefExoticComponent<Omit<AlertDialogPrimitive.AlertDialogTitleProps & react.RefAttributes<HTMLHeadingElement>, "ref"> & react.RefAttributes<HTMLHeadingElement>>;
100
+ declare const AlertDialogDescription: react.ForwardRefExoticComponent<Omit<AlertDialogPrimitive.AlertDialogDescriptionProps & react.RefAttributes<HTMLParagraphElement>, "ref"> & react.RefAttributes<HTMLParagraphElement>>;
101
+ declare const AlertDialogAction: react.ForwardRefExoticComponent<Omit<AlertDialogPrimitive.AlertDialogActionProps & react.RefAttributes<HTMLButtonElement>, "ref"> & react.RefAttributes<HTMLButtonElement>>;
102
+ declare const AlertDialogCancel: react.ForwardRefExoticComponent<Omit<AlertDialogPrimitive.AlertDialogCancelProps & react.RefAttributes<HTMLButtonElement>, "ref"> & react.RefAttributes<HTMLButtonElement>>;
103
+
104
+ interface AlertDialogProps {
105
+ open?: boolean;
106
+ onOpenChange?: (open: boolean) => void;
107
+ children?: React.ReactNode;
108
+ className?: string;
109
+ }
110
+ interface AlertDialogTriggerProps {
111
+ children?: React.ReactNode;
112
+ className?: string;
113
+ asChild?: boolean;
114
+ }
115
+ interface AlertDialogContentProps {
116
+ children?: React.ReactNode;
117
+ className?: string;
118
+ }
119
+ interface AlertDialogHeaderProps {
120
+ children?: React.ReactNode;
121
+ className?: string;
122
+ }
123
+ interface AlertDialogFooterProps {
124
+ children?: React.ReactNode;
125
+ className?: string;
126
+ }
127
+ interface AlertDialogTitleProps {
128
+ children?: React.ReactNode;
129
+ className?: string;
130
+ }
131
+ interface AlertDialogDescriptionProps {
132
+ children?: React.ReactNode;
133
+ className?: string;
134
+ }
135
+ interface AlertDialogActionProps {
136
+ children?: React.ReactNode;
137
+ className?: string;
138
+ onPress?: () => void;
139
+ }
140
+ interface AlertDialogCancelProps {
141
+ children?: React.ReactNode;
142
+ className?: string;
143
+ onPress?: () => void;
144
+ }
145
+
146
+ declare const AspectRatio: react.ForwardRefExoticComponent<AspectRatioPrimitive.AspectRatioProps & react.RefAttributes<HTMLDivElement>>;
147
+
148
+ interface AspectRatioProps {
149
+ ratio?: number;
150
+ children?: React.ReactNode;
151
+ className?: string;
152
+ }
153
+
154
+ declare const Avatar: react.ForwardRefExoticComponent<Omit<AvatarPrimitive.AvatarProps & react.RefAttributes<HTMLSpanElement>, "ref"> & react.RefAttributes<HTMLSpanElement>>;
155
+ declare const AvatarImage: react.ForwardRefExoticComponent<Omit<AvatarPrimitive.AvatarImageProps & react.RefAttributes<HTMLImageElement>, "ref"> & react.RefAttributes<HTMLImageElement>>;
156
+ declare const AvatarFallback: react.ForwardRefExoticComponent<Omit<AvatarPrimitive.AvatarFallbackProps & react.RefAttributes<HTMLSpanElement>, "ref"> & react.RefAttributes<HTMLSpanElement>>;
157
+
158
+ interface AvatarProps {
159
+ children?: React.ReactNode;
160
+ className?: string;
161
+ }
162
+ interface AvatarImageProps {
163
+ src?: string;
164
+ alt?: string;
165
+ className?: string;
166
+ onLoadingStatusChange?: (status: "idle" | "loading" | "loaded" | "error") => void;
167
+ }
168
+ interface AvatarFallbackProps {
169
+ children?: React.ReactNode;
170
+ className?: string;
171
+ delayMs?: number;
172
+ }
173
+
174
+ type BadgeVariant = "default" | "secondary" | "destructive" | "outline";
175
+ interface BadgeProps {
176
+ variant?: BadgeVariant;
177
+ children?: React.ReactNode;
178
+ className?: string;
179
+ }
180
+
181
+ declare const badgeVariants: (props?: ({
182
+ variant?: "default" | "destructive" | "outline" | "secondary" | null | undefined;
183
+ } & class_variance_authority_types.ClassProp) | undefined) => string;
184
+ interface BadgeWebProps extends BadgeProps, React.HTMLAttributes<HTMLDivElement> {
185
+ }
186
+ declare const Badge: react.ForwardRefExoticComponent<BadgeWebProps & react.RefAttributes<HTMLDivElement>>;
187
+
188
+ declare const Breadcrumb: react.ForwardRefExoticComponent<Omit<react.DetailedHTMLProps<react.HTMLAttributes<HTMLElement>, HTMLElement>, "ref"> & {
189
+ separator?: React.ReactNode;
190
+ } & react.RefAttributes<HTMLElement>>;
191
+ declare const BreadcrumbList: react.ForwardRefExoticComponent<Omit<react.DetailedHTMLProps<react.OlHTMLAttributes<HTMLOListElement>, HTMLOListElement>, "ref"> & react.RefAttributes<HTMLOListElement>>;
192
+ declare const BreadcrumbItem: react.ForwardRefExoticComponent<Omit<react.DetailedHTMLProps<react.LiHTMLAttributes<HTMLLIElement>, HTMLLIElement>, "ref"> & react.RefAttributes<HTMLLIElement>>;
193
+ declare const BreadcrumbLink: react.ForwardRefExoticComponent<Omit<react.DetailedHTMLProps<react.AnchorHTMLAttributes<HTMLAnchorElement>, HTMLAnchorElement>, "ref"> & {
194
+ asChild?: boolean;
195
+ } & react.RefAttributes<HTMLAnchorElement>>;
196
+ declare const BreadcrumbPage: react.ForwardRefExoticComponent<Omit<react.DetailedHTMLProps<react.HTMLAttributes<HTMLSpanElement>, HTMLSpanElement>, "ref"> & react.RefAttributes<HTMLSpanElement>>;
197
+ declare const BreadcrumbSeparator: {
198
+ ({ children, className, ...props }: React.ComponentProps<"li">): react_jsx_runtime.JSX.Element;
199
+ displayName: string;
200
+ };
201
+ declare const BreadcrumbEllipsis: {
202
+ ({ className, ...props }: React.ComponentProps<"span">): react_jsx_runtime.JSX.Element;
203
+ displayName: string;
204
+ };
205
+
206
+ interface BreadcrumbProps {
207
+ separator?: React.ReactNode;
208
+ children?: React.ReactNode;
209
+ className?: string;
210
+ }
211
+ interface BreadcrumbListProps {
212
+ children?: React.ReactNode;
213
+ className?: string;
214
+ }
215
+ interface BreadcrumbItemProps {
216
+ children?: React.ReactNode;
217
+ className?: string;
218
+ }
219
+ interface BreadcrumbLinkProps {
220
+ href?: string;
221
+ asChild?: boolean;
222
+ children?: React.ReactNode;
223
+ className?: string;
224
+ onPress?: () => void;
225
+ }
226
+ interface BreadcrumbPageProps {
227
+ children?: React.ReactNode;
228
+ className?: string;
229
+ }
230
+ interface BreadcrumbSeparatorProps {
231
+ children?: React.ReactNode;
232
+ className?: string;
233
+ }
234
+ interface BreadcrumbEllipsisProps {
235
+ className?: string;
236
+ }
237
+
238
+ type ButtonVariant = "default" | "destructive" | "outline" | "secondary" | "ghost" | "link";
239
+ type ButtonSize = "default" | "sm" | "lg" | "icon";
240
+ interface ButtonProps {
241
+ variant?: ButtonVariant;
242
+ size?: ButtonSize;
243
+ disabled?: boolean;
244
+ children?: React.ReactNode;
245
+ onPress?: () => void;
246
+ className?: string;
247
+ asChild?: boolean;
248
+ }
249
+
250
+ interface ButtonWebProps extends ButtonProps, React.ButtonHTMLAttributes<HTMLButtonElement> {
251
+ }
252
+ declare const Button: react.ForwardRefExoticComponent<ButtonWebProps & react.RefAttributes<HTMLButtonElement>>;
253
+
254
+ interface CalendarProps {
255
+ selected?: Date;
256
+ onSelect?: (date: Date | undefined) => void;
257
+ month?: Date;
258
+ onMonthChange?: (month: Date) => void;
259
+ disabled?: boolean;
260
+ className?: string;
261
+ }
262
+
263
+ declare const Calendar: react.ForwardRefExoticComponent<CalendarProps & Omit<react.HTMLAttributes<HTMLDivElement>, "onSelect"> & react.RefAttributes<HTMLDivElement>>;
264
+
265
+ interface CardProps {
266
+ children?: React.ReactNode;
267
+ className?: string;
268
+ }
269
+
270
+ declare const Card: react.ForwardRefExoticComponent<CardProps & react.HTMLAttributes<HTMLDivElement> & react.RefAttributes<HTMLDivElement>>;
271
+
272
+ type CarouselOrientation = "horizontal" | "vertical";
273
+ interface CarouselProps {
274
+ orientation?: CarouselOrientation;
275
+ children?: React.ReactNode;
276
+ className?: string;
277
+ }
278
+ interface CarouselContentProps {
279
+ children?: React.ReactNode;
280
+ className?: string;
281
+ }
282
+ interface CarouselItemProps {
283
+ children?: React.ReactNode;
284
+ className?: string;
285
+ }
286
+ interface CarouselPreviousProps {
287
+ children?: React.ReactNode;
288
+ className?: string;
289
+ onPress?: () => void;
290
+ }
291
+ interface CarouselNextProps {
292
+ children?: React.ReactNode;
293
+ className?: string;
294
+ onPress?: () => void;
295
+ }
296
+
297
+ declare const Carousel: react.ForwardRefExoticComponent<CarouselProps & react.HTMLAttributes<HTMLDivElement> & react.RefAttributes<HTMLDivElement>>;
298
+ declare const CarouselContent: react.ForwardRefExoticComponent<CarouselContentProps & react.HTMLAttributes<HTMLDivElement> & react.RefAttributes<HTMLDivElement>>;
299
+ declare const CarouselItem: react.ForwardRefExoticComponent<CarouselItemProps & react.HTMLAttributes<HTMLDivElement> & react.RefAttributes<HTMLDivElement>>;
300
+ declare const CarouselPrevious: react.ForwardRefExoticComponent<react.ButtonHTMLAttributes<HTMLButtonElement> & react.RefAttributes<HTMLButtonElement>>;
301
+ declare const CarouselNext: react.ForwardRefExoticComponent<react.ButtonHTMLAttributes<HTMLButtonElement> & react.RefAttributes<HTMLButtonElement>>;
302
+
303
+ interface ChartConfig {
304
+ [key: string]: {
305
+ label?: string;
306
+ color?: string;
307
+ icon?: React.ComponentType;
308
+ };
309
+ }
310
+ interface ChartProps {
311
+ config: ChartConfig;
312
+ children?: React.ReactNode;
313
+ className?: string;
314
+ }
315
+
316
+ declare const Chart: react.ForwardRefExoticComponent<ChartProps & react.HTMLAttributes<HTMLDivElement> & react.RefAttributes<HTMLDivElement>>;
317
+
318
+ declare const Checkbox: react.ForwardRefExoticComponent<Omit<CheckboxPrimitive.CheckboxProps & react.RefAttributes<HTMLButtonElement>, "ref"> & react.RefAttributes<HTMLButtonElement>>;
319
+
320
+ interface CheckboxProps {
321
+ checked?: boolean;
322
+ defaultChecked?: boolean;
323
+ onCheckedChange?: (checked: boolean) => void;
324
+ disabled?: boolean;
325
+ required?: boolean;
326
+ name?: string;
327
+ value?: string;
328
+ id?: string;
329
+ className?: string;
330
+ children?: React.ReactNode;
331
+ }
332
+
333
+ declare const Collapsible: react.ForwardRefExoticComponent<CollapsiblePrimitive.CollapsibleProps & react.RefAttributes<HTMLDivElement>>;
334
+ declare const CollapsibleTrigger: react.ForwardRefExoticComponent<CollapsiblePrimitive.CollapsibleTriggerProps & react.RefAttributes<HTMLButtonElement>>;
335
+ declare const CollapsibleContent: react.ForwardRefExoticComponent<CollapsiblePrimitive.CollapsibleContentProps & react.RefAttributes<HTMLDivElement>>;
336
+
337
+ interface CollapsibleProps {
338
+ open?: boolean;
339
+ defaultOpen?: boolean;
340
+ onOpenChange?: (open: boolean) => void;
341
+ disabled?: boolean;
342
+ children?: React.ReactNode;
343
+ className?: string;
344
+ }
345
+ interface CollapsibleTriggerProps {
346
+ children?: React.ReactNode;
347
+ className?: string;
348
+ asChild?: boolean;
349
+ }
350
+ interface CollapsibleContentProps {
351
+ children?: React.ReactNode;
352
+ className?: string;
353
+ }
354
+
355
+ interface ComboboxOption {
356
+ label: string;
357
+ value: string;
358
+ }
359
+ interface ComboboxProps {
360
+ options: ComboboxOption[];
361
+ value?: string;
362
+ onValueChange?: (value: string) => void;
363
+ placeholder?: string;
364
+ searchPlaceholder?: string;
365
+ emptyMessage?: string;
366
+ disabled?: boolean;
367
+ className?: string;
368
+ }
369
+
370
+ declare const Combobox: react.ForwardRefExoticComponent<ComboboxProps & react.HTMLAttributes<HTMLDivElement> & react.RefAttributes<HTMLDivElement>>;
371
+
372
+ declare const Command: react.ForwardRefExoticComponent<react.HTMLAttributes<HTMLDivElement> & react.RefAttributes<HTMLDivElement>>;
373
+ declare const CommandInput: react.ForwardRefExoticComponent<react.InputHTMLAttributes<HTMLInputElement> & react.RefAttributes<HTMLInputElement>>;
374
+ declare const CommandList: react.ForwardRefExoticComponent<react.HTMLAttributes<HTMLDivElement> & react.RefAttributes<HTMLDivElement>>;
375
+ declare const CommandEmpty: react.ForwardRefExoticComponent<react.HTMLAttributes<HTMLDivElement> & react.RefAttributes<HTMLDivElement>>;
376
+ declare const CommandGroup: react.ForwardRefExoticComponent<react.HTMLAttributes<HTMLDivElement> & {
377
+ heading?: string;
378
+ } & react.RefAttributes<HTMLDivElement>>;
379
+ declare const CommandSeparator: react.ForwardRefExoticComponent<react.HTMLAttributes<HTMLDivElement> & react.RefAttributes<HTMLDivElement>>;
380
+ declare const CommandItem: react.ForwardRefExoticComponent<react.HTMLAttributes<HTMLDivElement> & {
381
+ disabled?: boolean;
382
+ } & react.RefAttributes<HTMLDivElement>>;
383
+
384
+ /**
385
+ * Command is a web-heavy component (command palette / cmdk-style).
386
+ * The native implementation is a placeholder — this component is primarily designed for web.
387
+ */
388
+ interface CommandProps {
389
+ children?: React.ReactNode;
390
+ className?: string;
391
+ }
392
+ interface CommandInputProps {
393
+ placeholder?: string;
394
+ value?: string;
395
+ onValueChange?: (value: string) => void;
396
+ className?: string;
397
+ }
398
+ interface CommandListProps {
399
+ children?: React.ReactNode;
400
+ className?: string;
401
+ }
402
+ interface CommandEmptyProps {
403
+ children?: React.ReactNode;
404
+ className?: string;
405
+ }
406
+ interface CommandGroupProps {
407
+ heading?: string;
408
+ children?: React.ReactNode;
409
+ className?: string;
410
+ }
411
+ interface CommandItemProps {
412
+ children?: React.ReactNode;
413
+ onSelect?: () => void;
414
+ disabled?: boolean;
415
+ className?: string;
416
+ }
417
+ interface CommandSeparatorProps {
418
+ className?: string;
419
+ }
420
+
421
+ declare const ContextMenu: react.FC<ContextMenuPrimitive.ContextMenuProps>;
422
+ declare const ContextMenuTrigger: react.ForwardRefExoticComponent<ContextMenuPrimitive.ContextMenuTriggerProps & react.RefAttributes<HTMLSpanElement>>;
423
+ declare const ContextMenuGroup: react.ForwardRefExoticComponent<ContextMenuPrimitive.ContextMenuGroupProps & react.RefAttributes<HTMLDivElement>>;
424
+ declare const ContextMenuPortal: react.FC<ContextMenuPrimitive.ContextMenuPortalProps>;
425
+ declare const ContextMenuSub: react.FC<ContextMenuPrimitive.ContextMenuSubProps>;
426
+ declare const ContextMenuRadioGroup: react.ForwardRefExoticComponent<ContextMenuPrimitive.ContextMenuRadioGroupProps & react.RefAttributes<HTMLDivElement>>;
427
+ declare const ContextMenuSubTrigger: react.ForwardRefExoticComponent<Omit<ContextMenuPrimitive.ContextMenuSubTriggerProps & react.RefAttributes<HTMLDivElement>, "ref"> & {
428
+ inset?: boolean;
429
+ } & react.RefAttributes<HTMLDivElement>>;
430
+ declare const ContextMenuSubContent: react.ForwardRefExoticComponent<Omit<ContextMenuPrimitive.ContextMenuSubContentProps & react.RefAttributes<HTMLDivElement>, "ref"> & react.RefAttributes<HTMLDivElement>>;
431
+ declare const ContextMenuContent: react.ForwardRefExoticComponent<Omit<ContextMenuPrimitive.ContextMenuContentProps & react.RefAttributes<HTMLDivElement>, "ref"> & react.RefAttributes<HTMLDivElement>>;
432
+ declare const ContextMenuItem: react.ForwardRefExoticComponent<Omit<ContextMenuPrimitive.ContextMenuItemProps & react.RefAttributes<HTMLDivElement>, "ref"> & {
433
+ inset?: boolean;
434
+ } & react.RefAttributes<HTMLDivElement>>;
435
+ declare const ContextMenuCheckboxItem: react.ForwardRefExoticComponent<Omit<ContextMenuPrimitive.ContextMenuCheckboxItemProps & react.RefAttributes<HTMLDivElement>, "ref"> & react.RefAttributes<HTMLDivElement>>;
436
+ declare const ContextMenuRadioItem: react.ForwardRefExoticComponent<Omit<ContextMenuPrimitive.ContextMenuRadioItemProps & react.RefAttributes<HTMLDivElement>, "ref"> & react.RefAttributes<HTMLDivElement>>;
437
+ declare const ContextMenuLabel: react.ForwardRefExoticComponent<Omit<ContextMenuPrimitive.ContextMenuLabelProps & react.RefAttributes<HTMLDivElement>, "ref"> & {
438
+ inset?: boolean;
439
+ } & react.RefAttributes<HTMLDivElement>>;
440
+ declare const ContextMenuSeparator: react.ForwardRefExoticComponent<Omit<ContextMenuPrimitive.ContextMenuSeparatorProps & react.RefAttributes<HTMLDivElement>, "ref"> & react.RefAttributes<HTMLDivElement>>;
441
+ declare const ContextMenuShortcut: {
442
+ ({ className, ...props }: React.HTMLAttributes<HTMLSpanElement>): react_jsx_runtime.JSX.Element;
443
+ displayName: string;
444
+ };
445
+
446
+ interface ContextMenuProps {
447
+ children?: ReactNode;
448
+ }
449
+ interface ContextMenuTriggerProps {
450
+ children?: ReactNode;
451
+ className?: string;
452
+ asChild?: boolean;
453
+ }
454
+ interface ContextMenuContentProps {
455
+ children?: ReactNode;
456
+ className?: string;
457
+ }
458
+ interface ContextMenuItemProps {
459
+ children?: ReactNode;
460
+ className?: string;
461
+ inset?: boolean;
462
+ disabled?: boolean;
463
+ onSelect?: () => void;
464
+ }
465
+ interface ContextMenuSeparatorProps {
466
+ className?: string;
467
+ }
468
+ interface ContextMenuLabelProps {
469
+ children?: ReactNode;
470
+ className?: string;
471
+ inset?: boolean;
472
+ }
473
+ interface ContextMenuCheckboxItemProps {
474
+ children?: ReactNode;
475
+ className?: string;
476
+ checked?: boolean;
477
+ onCheckedChange?: (checked: boolean) => void;
478
+ disabled?: boolean;
479
+ }
480
+ interface ContextMenuRadioGroupProps {
481
+ children?: ReactNode;
482
+ value?: string;
483
+ onValueChange?: (value: string) => void;
484
+ }
485
+ interface ContextMenuRadioItemProps {
486
+ children?: ReactNode;
487
+ className?: string;
488
+ value: string;
489
+ }
490
+ interface ContextMenuSubProps {
491
+ children?: ReactNode;
492
+ }
493
+ interface ContextMenuSubTriggerProps {
494
+ children?: ReactNode;
495
+ className?: string;
496
+ inset?: boolean;
497
+ }
498
+ interface ContextMenuSubContentProps {
499
+ children?: ReactNode;
500
+ className?: string;
501
+ }
502
+
503
+ type SortDirection = "asc" | "desc" | null;
504
+ interface ColumnDef<TData> {
505
+ id: string;
506
+ header: string;
507
+ accessorKey?: keyof TData;
508
+ accessorFn?: (row: TData) => unknown;
509
+ cell?: (value: unknown, row: TData) => React.ReactNode;
510
+ sortable?: boolean;
511
+ }
512
+ interface DataTableProps<TData> {
513
+ columns: ColumnDef<TData>[];
514
+ data: TData[];
515
+ className?: string;
516
+ }
517
+
518
+ declare const DataTable: <TData>(props: DataTableProps<TData> & React.HTMLAttributes<HTMLDivElement> & {
519
+ ref?: React.ForwardedRef<HTMLDivElement>;
520
+ }) => React.ReactElement;
521
+
522
+ interface DatePickerProps {
523
+ value?: Date;
524
+ onValueChange?: (date: Date | undefined) => void;
525
+ placeholder?: string;
526
+ disabled?: boolean;
527
+ className?: string;
528
+ }
529
+
530
+ declare const DatePicker: react.ForwardRefExoticComponent<DatePickerProps & react.HTMLAttributes<HTMLDivElement> & react.RefAttributes<HTMLDivElement>>;
531
+
532
+ declare const Dialog: react.FC<DialogPrimitive.DialogProps>;
533
+ declare const DialogTrigger: react.ForwardRefExoticComponent<DialogPrimitive.DialogTriggerProps & react.RefAttributes<HTMLButtonElement>>;
534
+ declare const DialogPortal: react.FC<DialogPrimitive.DialogPortalProps>;
535
+ declare const DialogClose: react.ForwardRefExoticComponent<DialogPrimitive.DialogCloseProps & react.RefAttributes<HTMLButtonElement>>;
536
+ declare const DialogOverlay: react.ForwardRefExoticComponent<Omit<DialogPrimitive.DialogOverlayProps & react.RefAttributes<HTMLDivElement>, "ref"> & react.RefAttributes<HTMLDivElement>>;
537
+ declare const DialogContent: react.ForwardRefExoticComponent<Omit<DialogPrimitive.DialogContentProps & react.RefAttributes<HTMLDivElement>, "ref"> & react.RefAttributes<HTMLDivElement>>;
538
+ declare const DialogHeader: {
539
+ ({ className, ...props }: React.HTMLAttributes<HTMLDivElement>): react_jsx_runtime.JSX.Element;
540
+ displayName: string;
541
+ };
542
+ declare const DialogFooter: {
543
+ ({ className, ...props }: React.HTMLAttributes<HTMLDivElement>): react_jsx_runtime.JSX.Element;
544
+ displayName: string;
545
+ };
546
+ declare const DialogTitle: react.ForwardRefExoticComponent<Omit<DialogPrimitive.DialogTitleProps & react.RefAttributes<HTMLHeadingElement>, "ref"> & react.RefAttributes<HTMLHeadingElement>>;
547
+ declare const DialogDescription: react.ForwardRefExoticComponent<Omit<DialogPrimitive.DialogDescriptionProps & react.RefAttributes<HTMLParagraphElement>, "ref"> & react.RefAttributes<HTMLParagraphElement>>;
548
+
549
+ interface DialogProps {
550
+ children?: ReactNode;
551
+ open?: boolean;
552
+ onOpenChange?: (open: boolean) => void;
553
+ }
554
+ interface DialogTriggerProps {
555
+ children?: ReactNode;
556
+ className?: string;
557
+ asChild?: boolean;
558
+ }
559
+ interface DialogContentProps {
560
+ children?: ReactNode;
561
+ className?: string;
562
+ onClose?: () => void;
563
+ }
564
+ interface DialogHeaderProps {
565
+ children?: ReactNode;
566
+ className?: string;
567
+ }
568
+ interface DialogFooterProps {
569
+ children?: ReactNode;
570
+ className?: string;
571
+ }
572
+ interface DialogTitleProps {
573
+ children?: ReactNode;
574
+ className?: string;
575
+ }
576
+ interface DialogDescriptionProps {
577
+ children?: ReactNode;
578
+ className?: string;
579
+ }
580
+ interface DialogCloseProps {
581
+ children?: ReactNode;
582
+ className?: string;
583
+ asChild?: boolean;
584
+ }
585
+
586
+ declare function Drawer({ ...props }: React.ComponentProps<typeof Drawer$1.Root>): react_jsx_runtime.JSX.Element;
587
+ declare namespace Drawer {
588
+ var displayName: string;
589
+ }
590
+ declare function DrawerTrigger({ ...props }: React.ComponentProps<typeof Drawer$1.Trigger>): react_jsx_runtime.JSX.Element;
591
+ declare namespace DrawerTrigger {
592
+ var displayName: string;
593
+ }
594
+ declare function DrawerPortal({ ...props }: React.ComponentProps<typeof Drawer$1.Portal>): react_jsx_runtime.JSX.Element;
595
+ declare namespace DrawerPortal {
596
+ var displayName: string;
597
+ }
598
+ declare function DrawerClose({ ...props }: React.ComponentProps<typeof Drawer$1.Close>): react_jsx_runtime.JSX.Element;
599
+ declare namespace DrawerClose {
600
+ var displayName: string;
601
+ }
602
+ declare function DrawerOverlay({ className, ...props }: React.ComponentProps<typeof Drawer$1.Overlay>): react_jsx_runtime.JSX.Element;
603
+ declare namespace DrawerOverlay {
604
+ var displayName: string;
605
+ }
606
+ declare function DrawerContent({ className, children, ...props }: React.ComponentProps<typeof Drawer$1.Content>): react_jsx_runtime.JSX.Element;
607
+ declare namespace DrawerContent {
608
+ var displayName: string;
609
+ }
610
+ declare const DrawerHeader: {
611
+ ({ className, ...props }: React.HTMLAttributes<HTMLDivElement>): react_jsx_runtime.JSX.Element;
612
+ displayName: string;
613
+ };
614
+ declare const DrawerFooter: {
615
+ ({ className, ...props }: React.HTMLAttributes<HTMLDivElement>): react_jsx_runtime.JSX.Element;
616
+ displayName: string;
617
+ };
618
+ declare function DrawerTitle({ className, ...props }: React.ComponentProps<typeof Drawer$1.Title>): react_jsx_runtime.JSX.Element;
619
+ declare namespace DrawerTitle {
620
+ var displayName: string;
621
+ }
622
+ declare function DrawerDescription({ className, ...props }: React.ComponentProps<typeof Drawer$1.Description>): react_jsx_runtime.JSX.Element;
623
+ declare namespace DrawerDescription {
624
+ var displayName: string;
625
+ }
626
+
627
+ interface DrawerProps {
628
+ children?: ReactNode;
629
+ open?: boolean;
630
+ onOpenChange?: (open: boolean) => void;
631
+ }
632
+ interface DrawerTriggerProps {
633
+ children?: ReactNode;
634
+ className?: string;
635
+ asChild?: boolean;
636
+ }
637
+ interface DrawerContentProps {
638
+ children?: ReactNode;
639
+ className?: string;
640
+ }
641
+ interface DrawerHeaderProps {
642
+ children?: ReactNode;
643
+ className?: string;
644
+ }
645
+ interface DrawerFooterProps {
646
+ children?: ReactNode;
647
+ className?: string;
648
+ }
649
+ interface DrawerTitleProps {
650
+ children?: ReactNode;
651
+ className?: string;
652
+ }
653
+ interface DrawerDescriptionProps {
654
+ children?: ReactNode;
655
+ className?: string;
656
+ }
657
+ interface DrawerCloseProps {
658
+ children?: ReactNode;
659
+ className?: string;
660
+ asChild?: boolean;
661
+ }
662
+
663
+ declare const DropdownMenu: react.FC<DropdownMenuPrimitive.DropdownMenuProps>;
664
+ declare const DropdownMenuTrigger: react.ForwardRefExoticComponent<DropdownMenuPrimitive.DropdownMenuTriggerProps & react.RefAttributes<HTMLButtonElement>>;
665
+ declare const DropdownMenuGroup: react.ForwardRefExoticComponent<DropdownMenuPrimitive.DropdownMenuGroupProps & react.RefAttributes<HTMLDivElement>>;
666
+ declare const DropdownMenuPortal: react.FC<DropdownMenuPrimitive.DropdownMenuPortalProps>;
667
+ declare const DropdownMenuSub: react.FC<DropdownMenuPrimitive.DropdownMenuSubProps>;
668
+ declare const DropdownMenuRadioGroup: react.ForwardRefExoticComponent<DropdownMenuPrimitive.DropdownMenuRadioGroupProps & react.RefAttributes<HTMLDivElement>>;
669
+ declare const DropdownMenuSubTrigger: react.ForwardRefExoticComponent<Omit<DropdownMenuPrimitive.DropdownMenuSubTriggerProps & react.RefAttributes<HTMLDivElement>, "ref"> & {
670
+ inset?: boolean;
671
+ } & react.RefAttributes<HTMLDivElement>>;
672
+ declare const DropdownMenuSubContent: react.ForwardRefExoticComponent<Omit<DropdownMenuPrimitive.DropdownMenuSubContentProps & react.RefAttributes<HTMLDivElement>, "ref"> & react.RefAttributes<HTMLDivElement>>;
673
+ declare const DropdownMenuContent: react.ForwardRefExoticComponent<Omit<DropdownMenuPrimitive.DropdownMenuContentProps & react.RefAttributes<HTMLDivElement>, "ref"> & react.RefAttributes<HTMLDivElement>>;
674
+ declare const DropdownMenuItem: react.ForwardRefExoticComponent<Omit<DropdownMenuPrimitive.DropdownMenuItemProps & react.RefAttributes<HTMLDivElement>, "ref"> & {
675
+ inset?: boolean;
676
+ } & react.RefAttributes<HTMLDivElement>>;
677
+ declare const DropdownMenuCheckboxItem: react.ForwardRefExoticComponent<Omit<DropdownMenuPrimitive.DropdownMenuCheckboxItemProps & react.RefAttributes<HTMLDivElement>, "ref"> & react.RefAttributes<HTMLDivElement>>;
678
+ declare const DropdownMenuRadioItem: react.ForwardRefExoticComponent<Omit<DropdownMenuPrimitive.DropdownMenuRadioItemProps & react.RefAttributes<HTMLDivElement>, "ref"> & react.RefAttributes<HTMLDivElement>>;
679
+ declare const DropdownMenuLabel: react.ForwardRefExoticComponent<Omit<DropdownMenuPrimitive.DropdownMenuLabelProps & react.RefAttributes<HTMLDivElement>, "ref"> & {
680
+ inset?: boolean;
681
+ } & react.RefAttributes<HTMLDivElement>>;
682
+ declare const DropdownMenuSeparator: react.ForwardRefExoticComponent<Omit<DropdownMenuPrimitive.DropdownMenuSeparatorProps & react.RefAttributes<HTMLDivElement>, "ref"> & react.RefAttributes<HTMLDivElement>>;
683
+ declare const DropdownMenuShortcut: {
684
+ ({ className, ...props }: React.HTMLAttributes<HTMLSpanElement>): react_jsx_runtime.JSX.Element;
685
+ displayName: string;
686
+ };
687
+
688
+ interface DropdownMenuProps {
689
+ children?: ReactNode;
690
+ open?: boolean;
691
+ onOpenChange?: (open: boolean) => void;
692
+ }
693
+ interface DropdownMenuTriggerProps {
694
+ children?: ReactNode;
695
+ className?: string;
696
+ asChild?: boolean;
697
+ }
698
+ interface DropdownMenuContentProps {
699
+ children?: ReactNode;
700
+ className?: string;
701
+ align?: "start" | "center" | "end";
702
+ sideOffset?: number;
703
+ }
704
+ interface DropdownMenuItemProps {
705
+ children?: ReactNode;
706
+ className?: string;
707
+ inset?: boolean;
708
+ disabled?: boolean;
709
+ onSelect?: () => void;
710
+ }
711
+ interface DropdownMenuSeparatorProps {
712
+ className?: string;
713
+ }
714
+ interface DropdownMenuLabelProps {
715
+ children?: ReactNode;
716
+ className?: string;
717
+ inset?: boolean;
718
+ }
719
+ interface DropdownMenuCheckboxItemProps {
720
+ children?: ReactNode;
721
+ className?: string;
722
+ checked?: boolean;
723
+ onCheckedChange?: (checked: boolean) => void;
724
+ disabled?: boolean;
725
+ }
726
+ interface DropdownMenuRadioGroupProps {
727
+ children?: ReactNode;
728
+ value?: string;
729
+ onValueChange?: (value: string) => void;
730
+ }
731
+ interface DropdownMenuRadioItemProps {
732
+ children?: ReactNode;
733
+ className?: string;
734
+ value: string;
735
+ }
736
+ interface DropdownMenuSubProps {
737
+ children?: ReactNode;
738
+ }
739
+ interface DropdownMenuSubTriggerProps {
740
+ children?: ReactNode;
741
+ className?: string;
742
+ inset?: boolean;
743
+ }
744
+ interface DropdownMenuSubContentProps {
745
+ children?: ReactNode;
746
+ className?: string;
747
+ }
748
+
749
+ declare const Form: react.ForwardRefExoticComponent<react.FormHTMLAttributes<HTMLFormElement> & react.RefAttributes<HTMLFormElement>>;
750
+ interface FormFieldProps$1 {
751
+ name: string;
752
+ children?: React.ReactNode;
753
+ }
754
+ declare function FormField({ name, children }: FormFieldProps$1): react_jsx_runtime.JSX.Element;
755
+ declare namespace FormField {
756
+ var displayName: string;
757
+ }
758
+ declare const FormItem: react.ForwardRefExoticComponent<react.HTMLAttributes<HTMLDivElement> & react.RefAttributes<HTMLDivElement>>;
759
+ declare const FormLabel: react.ForwardRefExoticComponent<react.LabelHTMLAttributes<HTMLLabelElement> & react.RefAttributes<HTMLLabelElement>>;
760
+ declare const FormControl: react.ForwardRefExoticComponent<react.HTMLAttributes<HTMLDivElement> & react.RefAttributes<HTMLDivElement>>;
761
+ declare const FormDescription: react.ForwardRefExoticComponent<react.HTMLAttributes<HTMLParagraphElement> & react.RefAttributes<HTMLParagraphElement>>;
762
+ declare const FormMessage: react.ForwardRefExoticComponent<react.HTMLAttributes<HTMLParagraphElement> & react.RefAttributes<HTMLParagraphElement>>;
763
+
764
+ interface FormProps {
765
+ children?: React.ReactNode;
766
+ className?: string;
767
+ onSubmit?: () => void;
768
+ }
769
+ interface FormFieldProps {
770
+ name: string;
771
+ children?: React.ReactNode;
772
+ }
773
+ interface FormItemProps {
774
+ children?: React.ReactNode;
775
+ className?: string;
776
+ }
777
+ interface FormLabelProps {
778
+ children?: React.ReactNode;
779
+ className?: string;
780
+ }
781
+ interface FormControlProps {
782
+ children?: React.ReactNode;
783
+ className?: string;
784
+ }
785
+ interface FormDescriptionProps {
786
+ children?: React.ReactNode;
787
+ className?: string;
788
+ }
789
+ interface FormMessageProps {
790
+ children?: React.ReactNode;
791
+ className?: string;
792
+ }
793
+
794
+ declare const HoverCard: react.FC<HoverCardPrimitive.HoverCardProps>;
795
+ declare const HoverCardTrigger: react.ForwardRefExoticComponent<HoverCardPrimitive.HoverCardTriggerProps & react.RefAttributes<HTMLAnchorElement>>;
796
+ declare const HoverCardContent: react.ForwardRefExoticComponent<Omit<HoverCardPrimitive.HoverCardContentProps & react.RefAttributes<HTMLDivElement>, "ref"> & react.RefAttributes<HTMLDivElement>>;
797
+
798
+ interface HoverCardProps {
799
+ openDelay?: number;
800
+ closeDelay?: number;
801
+ children?: React.ReactNode;
802
+ }
803
+ interface HoverCardTriggerProps {
804
+ children?: React.ReactNode;
805
+ className?: string;
806
+ asChild?: boolean;
807
+ }
808
+ interface HoverCardContentProps {
809
+ children?: React.ReactNode;
810
+ className?: string;
811
+ align?: "start" | "center" | "end";
812
+ sideOffset?: number;
813
+ }
814
+
815
+ declare const Input: react.ForwardRefExoticComponent<react.InputHTMLAttributes<HTMLInputElement> & react.RefAttributes<HTMLInputElement>>;
816
+
817
+ interface InputProps {
818
+ type?: string;
819
+ placeholder?: string;
820
+ value?: string;
821
+ defaultValue?: string;
822
+ onChangeText?: (text: string) => void;
823
+ disabled?: boolean;
824
+ readOnly?: boolean;
825
+ className?: string;
826
+ }
827
+
828
+ interface InputOTPProps {
829
+ length?: number;
830
+ value?: string;
831
+ onValueChange?: (value: string) => void;
832
+ disabled?: boolean;
833
+ className?: string;
834
+ }
835
+ interface InputOTPSlotProps {
836
+ index: number;
837
+ char?: string;
838
+ isActive?: boolean;
839
+ className?: string;
840
+ }
841
+
842
+ declare const InputOTP: react.ForwardRefExoticComponent<InputOTPProps & Omit<react.HTMLAttributes<HTMLDivElement>, "onChange"> & react.RefAttributes<HTMLDivElement>>;
843
+
844
+ declare const Label: react.ForwardRefExoticComponent<Omit<LabelPrimitive.LabelProps & react.RefAttributes<HTMLLabelElement>, "ref"> & VariantProps<(props?: class_variance_authority_types.ClassProp | undefined) => string> & react.RefAttributes<HTMLLabelElement>>;
845
+
846
+ interface LabelProps {
847
+ htmlFor?: string;
848
+ children?: React.ReactNode;
849
+ className?: string;
850
+ disabled?: boolean;
851
+ }
852
+
853
+ declare const MenubarMenu: typeof MenubarPrimitive.Menu;
854
+ declare const MenubarGroup: react.ForwardRefExoticComponent<MenubarPrimitive.MenubarGroupProps & react.RefAttributes<HTMLDivElement>>;
855
+ declare const MenubarPortal: react.FC<MenubarPrimitive.MenubarPortalProps>;
856
+ declare const MenubarSub: react.FC<MenubarPrimitive.MenubarSubProps>;
857
+ declare const MenubarRadioGroup: react.ForwardRefExoticComponent<MenubarPrimitive.MenubarRadioGroupProps & react.RefAttributes<HTMLDivElement>>;
858
+ declare const Menubar: react.ForwardRefExoticComponent<Omit<MenubarPrimitive.MenubarProps & react.RefAttributes<HTMLDivElement>, "ref"> & react.RefAttributes<HTMLDivElement>>;
859
+ declare const MenubarTrigger: react.ForwardRefExoticComponent<Omit<MenubarPrimitive.MenubarTriggerProps & react.RefAttributes<HTMLButtonElement>, "ref"> & react.RefAttributes<HTMLButtonElement>>;
860
+ declare const MenubarSubTrigger: react.ForwardRefExoticComponent<Omit<MenubarPrimitive.MenubarSubTriggerProps & react.RefAttributes<HTMLDivElement>, "ref"> & {
861
+ inset?: boolean;
862
+ } & react.RefAttributes<HTMLDivElement>>;
863
+ declare const MenubarSubContent: react.ForwardRefExoticComponent<Omit<MenubarPrimitive.MenubarSubContentProps & react.RefAttributes<HTMLDivElement>, "ref"> & react.RefAttributes<HTMLDivElement>>;
864
+ declare const MenubarContent: react.ForwardRefExoticComponent<Omit<MenubarPrimitive.MenubarContentProps & react.RefAttributes<HTMLDivElement>, "ref"> & react.RefAttributes<HTMLDivElement>>;
865
+ declare const MenubarItem: react.ForwardRefExoticComponent<Omit<MenubarPrimitive.MenubarItemProps & react.RefAttributes<HTMLDivElement>, "ref"> & {
866
+ inset?: boolean;
867
+ } & react.RefAttributes<HTMLDivElement>>;
868
+ declare const MenubarCheckboxItem: react.ForwardRefExoticComponent<Omit<MenubarPrimitive.MenubarCheckboxItemProps & react.RefAttributes<HTMLDivElement>, "ref"> & react.RefAttributes<HTMLDivElement>>;
869
+ declare const MenubarRadioItem: react.ForwardRefExoticComponent<Omit<MenubarPrimitive.MenubarRadioItemProps & react.RefAttributes<HTMLDivElement>, "ref"> & react.RefAttributes<HTMLDivElement>>;
870
+ declare const MenubarLabel: react.ForwardRefExoticComponent<Omit<MenubarPrimitive.MenubarLabelProps & react.RefAttributes<HTMLDivElement>, "ref"> & {
871
+ inset?: boolean;
872
+ } & react.RefAttributes<HTMLDivElement>>;
873
+ declare const MenubarSeparator: react.ForwardRefExoticComponent<Omit<MenubarPrimitive.MenubarSeparatorProps & react.RefAttributes<HTMLDivElement>, "ref"> & react.RefAttributes<HTMLDivElement>>;
874
+ declare const MenubarShortcut: {
875
+ ({ className, ...props }: React.HTMLAttributes<HTMLSpanElement>): react_jsx_runtime.JSX.Element;
876
+ displayName: string;
877
+ };
878
+
879
+ interface MenubarProps {
880
+ children?: ReactNode;
881
+ className?: string;
882
+ }
883
+ interface MenubarMenuProps {
884
+ children?: ReactNode;
885
+ }
886
+ interface MenubarTriggerProps {
887
+ children?: ReactNode;
888
+ className?: string;
889
+ }
890
+ interface MenubarContentProps {
891
+ children?: ReactNode;
892
+ className?: string;
893
+ align?: "start" | "center" | "end";
894
+ alignOffset?: number;
895
+ sideOffset?: number;
896
+ }
897
+ interface MenubarItemProps {
898
+ children?: ReactNode;
899
+ className?: string;
900
+ inset?: boolean;
901
+ disabled?: boolean;
902
+ onSelect?: () => void;
903
+ }
904
+ interface MenubarSeparatorProps {
905
+ className?: string;
906
+ }
907
+ interface MenubarSubProps {
908
+ children?: ReactNode;
909
+ }
910
+ interface MenubarSubTriggerProps {
911
+ children?: ReactNode;
912
+ className?: string;
913
+ inset?: boolean;
914
+ }
915
+ interface MenubarSubContentProps {
916
+ children?: ReactNode;
917
+ className?: string;
918
+ }
919
+ interface MenubarCheckboxItemProps {
920
+ children?: ReactNode;
921
+ className?: string;
922
+ checked?: boolean;
923
+ onCheckedChange?: (checked: boolean) => void;
924
+ disabled?: boolean;
925
+ }
926
+ interface MenubarRadioGroupProps {
927
+ children?: ReactNode;
928
+ value?: string;
929
+ onValueChange?: (value: string) => void;
930
+ }
931
+ interface MenubarRadioItemProps {
932
+ children?: ReactNode;
933
+ className?: string;
934
+ value: string;
935
+ }
936
+
937
+ declare const NavigationMenu: react.ForwardRefExoticComponent<Omit<NavigationMenuPrimitive.NavigationMenuProps & react.RefAttributes<HTMLElement>, "ref"> & react.RefAttributes<HTMLElement>>;
938
+ declare const NavigationMenuList: react.ForwardRefExoticComponent<Omit<NavigationMenuPrimitive.NavigationMenuListProps & react.RefAttributes<HTMLUListElement>, "ref"> & react.RefAttributes<HTMLUListElement>>;
939
+ declare const NavigationMenuItem: react.ForwardRefExoticComponent<NavigationMenuPrimitive.NavigationMenuItemProps & react.RefAttributes<HTMLLIElement>>;
940
+ declare const navigationMenuTriggerStyle: (props?: class_variance_authority_types.ClassProp | undefined) => string;
941
+ declare const NavigationMenuTrigger: react.ForwardRefExoticComponent<Omit<NavigationMenuPrimitive.NavigationMenuTriggerProps & react.RefAttributes<HTMLButtonElement>, "ref"> & react.RefAttributes<HTMLButtonElement>>;
942
+ declare const NavigationMenuContent: react.ForwardRefExoticComponent<Omit<NavigationMenuPrimitive.NavigationMenuContentProps & react.RefAttributes<HTMLDivElement>, "ref"> & react.RefAttributes<HTMLDivElement>>;
943
+ declare const NavigationMenuLink: react.ForwardRefExoticComponent<NavigationMenuPrimitive.NavigationMenuLinkProps & react.RefAttributes<HTMLAnchorElement>>;
944
+ declare const NavigationMenuViewport: react.ForwardRefExoticComponent<Omit<NavigationMenuPrimitive.NavigationMenuViewportProps & react.RefAttributes<HTMLDivElement>, "ref"> & react.RefAttributes<HTMLDivElement>>;
945
+ declare const NavigationMenuIndicator: react.ForwardRefExoticComponent<Omit<NavigationMenuPrimitive.NavigationMenuIndicatorProps & react.RefAttributes<HTMLDivElement>, "ref"> & react.RefAttributes<HTMLDivElement>>;
946
+
947
+ interface NavigationMenuProps {
948
+ children?: ReactNode;
949
+ className?: string;
950
+ }
951
+ interface NavigationMenuListProps {
952
+ children?: ReactNode;
953
+ className?: string;
954
+ }
955
+ interface NavigationMenuItemProps {
956
+ children?: ReactNode;
957
+ className?: string;
958
+ value?: string;
959
+ }
960
+ interface NavigationMenuTriggerProps {
961
+ children?: ReactNode;
962
+ className?: string;
963
+ }
964
+ interface NavigationMenuContentProps {
965
+ children?: ReactNode;
966
+ className?: string;
967
+ }
968
+ interface NavigationMenuLinkProps {
969
+ children?: ReactNode;
970
+ className?: string;
971
+ href?: string;
972
+ active?: boolean;
973
+ onPress?: () => void;
974
+ }
975
+
976
+ interface PaginationProps {
977
+ children?: React.ReactNode;
978
+ className?: string;
979
+ }
980
+ interface PaginationContentProps {
981
+ children?: React.ReactNode;
982
+ className?: string;
983
+ }
984
+ interface PaginationItemProps {
985
+ children?: React.ReactNode;
986
+ className?: string;
987
+ }
988
+ interface PaginationLinkProps {
989
+ children?: React.ReactNode;
990
+ className?: string;
991
+ isActive?: boolean;
992
+ size?: "default" | "icon";
993
+ href?: string;
994
+ onPress?: () => void;
995
+ }
996
+ interface PaginationPreviousProps {
997
+ children?: React.ReactNode;
998
+ className?: string;
999
+ href?: string;
1000
+ onPress?: () => void;
1001
+ }
1002
+ interface PaginationNextProps {
1003
+ children?: React.ReactNode;
1004
+ className?: string;
1005
+ href?: string;
1006
+ onPress?: () => void;
1007
+ }
1008
+ interface PaginationEllipsisProps {
1009
+ className?: string;
1010
+ }
1011
+
1012
+ declare const Pagination: react.ForwardRefExoticComponent<Omit<PaginationProps & react.ClassAttributes<HTMLElement> & react.HTMLAttributes<HTMLElement>, "ref"> & react.RefAttributes<HTMLElement>>;
1013
+ declare const PaginationContent: react.ForwardRefExoticComponent<Omit<PaginationContentProps & react.ClassAttributes<HTMLUListElement> & react.HTMLAttributes<HTMLUListElement>, "ref"> & react.RefAttributes<HTMLUListElement>>;
1014
+ declare const PaginationItem: react.ForwardRefExoticComponent<Omit<PaginationItemProps & react.ClassAttributes<HTMLLIElement> & react.LiHTMLAttributes<HTMLLIElement>, "ref"> & react.RefAttributes<HTMLLIElement>>;
1015
+ declare const paginationLinkVariants: (props?: ({
1016
+ size?: "default" | "icon" | null | undefined;
1017
+ } & class_variance_authority_types.ClassProp) | undefined) => string;
1018
+ interface PaginationLinkWebProps extends React.AnchorHTMLAttributes<HTMLAnchorElement> {
1019
+ isActive?: boolean;
1020
+ size?: "default" | "icon";
1021
+ className?: string;
1022
+ }
1023
+ declare const PaginationLink: react.ForwardRefExoticComponent<PaginationLinkWebProps & react.RefAttributes<HTMLAnchorElement>>;
1024
+ declare const PaginationPrevious: react.ForwardRefExoticComponent<PaginationLinkWebProps & react.RefAttributes<HTMLAnchorElement>>;
1025
+ declare const PaginationNext: react.ForwardRefExoticComponent<PaginationLinkWebProps & react.RefAttributes<HTMLAnchorElement>>;
1026
+ declare const PaginationEllipsis: react.ForwardRefExoticComponent<Omit<PaginationEllipsisProps & react.ClassAttributes<HTMLSpanElement> & react.HTMLAttributes<HTMLSpanElement>, "ref"> & react.RefAttributes<HTMLSpanElement>>;
1027
+
1028
+ declare const Popover: react.FC<PopoverPrimitive.PopoverProps>;
1029
+ declare const PopoverTrigger: react.ForwardRefExoticComponent<PopoverPrimitive.PopoverTriggerProps & react.RefAttributes<HTMLButtonElement>>;
1030
+ declare const PopoverAnchor: react.ForwardRefExoticComponent<PopoverPrimitive.PopoverAnchorProps & react.RefAttributes<HTMLDivElement>>;
1031
+ declare const PopoverContent: react.ForwardRefExoticComponent<Omit<PopoverPrimitive.PopoverContentProps & react.RefAttributes<HTMLDivElement>, "ref"> & react.RefAttributes<HTMLDivElement>>;
1032
+
1033
+ interface PopoverProps {
1034
+ children?: ReactNode;
1035
+ open?: boolean;
1036
+ onOpenChange?: (open: boolean) => void;
1037
+ }
1038
+ interface PopoverTriggerProps {
1039
+ children?: ReactNode;
1040
+ className?: string;
1041
+ asChild?: boolean;
1042
+ }
1043
+ interface PopoverContentProps {
1044
+ children?: ReactNode;
1045
+ className?: string;
1046
+ align?: "start" | "center" | "end";
1047
+ sideOffset?: number;
1048
+ }
1049
+
1050
+ declare const Progress: react.ForwardRefExoticComponent<Omit<ProgressPrimitive.ProgressProps & react.RefAttributes<HTMLDivElement>, "ref"> & react.RefAttributes<HTMLDivElement>>;
1051
+
1052
+ interface ProgressProps {
1053
+ value?: number;
1054
+ max?: number;
1055
+ children?: React.ReactNode;
1056
+ className?: string;
1057
+ }
1058
+
1059
+ declare const RadioGroup: react.ForwardRefExoticComponent<Omit<RadioGroupPrimitive.RadioGroupProps & react.RefAttributes<HTMLDivElement>, "ref"> & react.RefAttributes<HTMLDivElement>>;
1060
+ declare const RadioGroupItem: react.ForwardRefExoticComponent<Omit<RadioGroupPrimitive.RadioGroupItemProps & react.RefAttributes<HTMLButtonElement>, "ref"> & react.RefAttributes<HTMLButtonElement>>;
1061
+
1062
+ interface RadioGroupProps {
1063
+ value?: string;
1064
+ defaultValue?: string;
1065
+ onValueChange?: (value: string) => void;
1066
+ disabled?: boolean;
1067
+ children?: React.ReactNode;
1068
+ className?: string;
1069
+ }
1070
+ interface RadioGroupItemProps {
1071
+ value: string;
1072
+ disabled?: boolean;
1073
+ children?: React.ReactNode;
1074
+ className?: string;
1075
+ id?: string;
1076
+ }
1077
+
1078
+ type ResizableDirection = "horizontal" | "vertical";
1079
+ interface ResizablePanelGroupProps {
1080
+ direction?: ResizableDirection;
1081
+ children?: React.ReactNode;
1082
+ className?: string;
1083
+ }
1084
+ interface ResizablePanelProps {
1085
+ defaultSize?: number;
1086
+ minSize?: number;
1087
+ maxSize?: number;
1088
+ children?: React.ReactNode;
1089
+ className?: string;
1090
+ }
1091
+ interface ResizableHandleProps {
1092
+ withHandle?: boolean;
1093
+ className?: string;
1094
+ }
1095
+
1096
+ declare function ResizablePanelGroup({ className, direction, children, }: ResizablePanelGroupProps): react_jsx_runtime.JSX.Element;
1097
+ declare function ResizablePanel({ className, ...props }: ResizablePanelProps & React.ComponentProps<typeof Panel>): react_jsx_runtime.JSX.Element;
1098
+ declare function ResizableHandle({ className, withHandle, ...props }: ResizableHandleProps & React.ComponentProps<typeof Separator$1>): react_jsx_runtime.JSX.Element;
1099
+
1100
+ declare const ScrollArea: react.ForwardRefExoticComponent<Omit<ScrollAreaPrimitive.ScrollAreaProps & react.RefAttributes<HTMLDivElement>, "ref"> & react.RefAttributes<HTMLDivElement>>;
1101
+ declare const ScrollBar: react.ForwardRefExoticComponent<Omit<ScrollAreaPrimitive.ScrollAreaScrollbarProps & react.RefAttributes<HTMLDivElement>, "ref"> & react.RefAttributes<HTMLDivElement>>;
1102
+
1103
+ interface ScrollAreaProps {
1104
+ children?: React.ReactNode;
1105
+ className?: string;
1106
+ }
1107
+ type ScrollBarOrientation = "vertical" | "horizontal";
1108
+ interface ScrollBarProps {
1109
+ orientation?: ScrollBarOrientation;
1110
+ className?: string;
1111
+ }
1112
+
1113
+ declare const Select: react.FC<SelectPrimitive.SelectProps>;
1114
+ declare const SelectGroup: react.ForwardRefExoticComponent<SelectPrimitive.SelectGroupProps & react.RefAttributes<HTMLDivElement>>;
1115
+ declare const SelectValue: react.ForwardRefExoticComponent<SelectPrimitive.SelectValueProps & react.RefAttributes<HTMLSpanElement>>;
1116
+ declare const SelectTrigger: react.ForwardRefExoticComponent<Omit<SelectPrimitive.SelectTriggerProps & react.RefAttributes<HTMLButtonElement>, "ref"> & react.RefAttributes<HTMLButtonElement>>;
1117
+ declare const SelectContent: react.ForwardRefExoticComponent<Omit<SelectPrimitive.SelectContentProps & react.RefAttributes<HTMLDivElement>, "ref"> & react.RefAttributes<HTMLDivElement>>;
1118
+ declare const SelectLabel: react.ForwardRefExoticComponent<Omit<SelectPrimitive.SelectLabelProps & react.RefAttributes<HTMLDivElement>, "ref"> & react.RefAttributes<HTMLDivElement>>;
1119
+ declare const SelectItem: react.ForwardRefExoticComponent<Omit<SelectPrimitive.SelectItemProps & react.RefAttributes<HTMLDivElement>, "ref"> & react.RefAttributes<HTMLDivElement>>;
1120
+ declare const SelectSeparator: react.ForwardRefExoticComponent<Omit<SelectPrimitive.SelectSeparatorProps & react.RefAttributes<HTMLDivElement>, "ref"> & react.RefAttributes<HTMLDivElement>>;
1121
+
1122
+ interface SelectProps {
1123
+ value?: string;
1124
+ defaultValue?: string;
1125
+ onValueChange?: (value: string) => void;
1126
+ disabled?: boolean;
1127
+ placeholder?: string;
1128
+ children?: React.ReactNode;
1129
+ className?: string;
1130
+ }
1131
+ interface SelectItemOption {
1132
+ label: string;
1133
+ value: string;
1134
+ }
1135
+
1136
+ declare const separatorVariants: (props?: ({
1137
+ orientation?: "horizontal" | "vertical" | null | undefined;
1138
+ } & class_variance_authority_types.ClassProp) | undefined) => string;
1139
+ declare const Separator: react.ForwardRefExoticComponent<Omit<SeparatorPrimitive.SeparatorProps & react.RefAttributes<HTMLDivElement>, "ref"> & react.RefAttributes<HTMLDivElement>>;
1140
+
1141
+ type SeparatorOrientation = "horizontal" | "vertical";
1142
+ interface SeparatorProps {
1143
+ orientation?: SeparatorOrientation;
1144
+ decorative?: boolean;
1145
+ className?: string;
1146
+ }
1147
+
1148
+ declare const Sheet: react.FC<DialogPrimitive.DialogProps>;
1149
+ declare const SheetTrigger: react.ForwardRefExoticComponent<DialogPrimitive.DialogTriggerProps & react.RefAttributes<HTMLButtonElement>>;
1150
+ declare const SheetClose: react.ForwardRefExoticComponent<DialogPrimitive.DialogCloseProps & react.RefAttributes<HTMLButtonElement>>;
1151
+ declare const SheetPortal: react.FC<DialogPrimitive.DialogPortalProps>;
1152
+ declare const SheetOverlay: react.ForwardRefExoticComponent<Omit<DialogPrimitive.DialogOverlayProps & react.RefAttributes<HTMLDivElement>, "ref"> & react.RefAttributes<HTMLDivElement>>;
1153
+ declare const sheetVariants: (props?: ({
1154
+ side?: "left" | "right" | "bottom" | "top" | null | undefined;
1155
+ } & class_variance_authority_types.ClassProp) | undefined) => string;
1156
+ interface SheetContentProps$1 extends React.ComponentPropsWithoutRef<typeof DialogPrimitive.Content>, VariantProps<typeof sheetVariants> {
1157
+ }
1158
+ declare const SheetContent: react.ForwardRefExoticComponent<SheetContentProps$1 & react.RefAttributes<HTMLDivElement>>;
1159
+ declare const SheetHeader: {
1160
+ ({ className, ...props }: React.HTMLAttributes<HTMLDivElement>): react_jsx_runtime.JSX.Element;
1161
+ displayName: string;
1162
+ };
1163
+ declare const SheetFooter: {
1164
+ ({ className, ...props }: React.HTMLAttributes<HTMLDivElement>): react_jsx_runtime.JSX.Element;
1165
+ displayName: string;
1166
+ };
1167
+ declare const SheetTitle: react.ForwardRefExoticComponent<Omit<DialogPrimitive.DialogTitleProps & react.RefAttributes<HTMLHeadingElement>, "ref"> & react.RefAttributes<HTMLHeadingElement>>;
1168
+ declare const SheetDescription: react.ForwardRefExoticComponent<Omit<DialogPrimitive.DialogDescriptionProps & react.RefAttributes<HTMLParagraphElement>, "ref"> & react.RefAttributes<HTMLParagraphElement>>;
1169
+
1170
+ type SheetSide = "top" | "right" | "bottom" | "left";
1171
+ interface SheetProps {
1172
+ children?: ReactNode;
1173
+ open?: boolean;
1174
+ onOpenChange?: (open: boolean) => void;
1175
+ }
1176
+ interface SheetTriggerProps {
1177
+ children?: ReactNode;
1178
+ className?: string;
1179
+ asChild?: boolean;
1180
+ }
1181
+ interface SheetContentProps {
1182
+ children?: ReactNode;
1183
+ className?: string;
1184
+ side?: SheetSide;
1185
+ }
1186
+ interface SheetHeaderProps {
1187
+ children?: ReactNode;
1188
+ className?: string;
1189
+ }
1190
+ interface SheetFooterProps {
1191
+ children?: ReactNode;
1192
+ className?: string;
1193
+ }
1194
+ interface SheetTitleProps {
1195
+ children?: ReactNode;
1196
+ className?: string;
1197
+ }
1198
+ interface SheetDescriptionProps {
1199
+ children?: ReactNode;
1200
+ className?: string;
1201
+ }
1202
+ interface SheetCloseProps {
1203
+ children?: ReactNode;
1204
+ className?: string;
1205
+ asChild?: boolean;
1206
+ }
1207
+
1208
+ /**
1209
+ * Sidebar - Web implementation
1210
+ *
1211
+ * Note: This is a web-heavy component. Sidebars on mobile are typically
1212
+ * handled by navigation libraries (e.g., React Navigation drawer).
1213
+ */
1214
+ interface SidebarContextValue {
1215
+ open: boolean;
1216
+ setOpen: (open: boolean | ((prev: boolean) => boolean)) => void;
1217
+ toggleSidebar: () => void;
1218
+ }
1219
+ declare function useSidebarContext(): SidebarContextValue;
1220
+ interface SidebarProviderProps {
1221
+ children?: ReactNode;
1222
+ defaultOpen?: boolean;
1223
+ open?: boolean;
1224
+ onOpenChange?: (open: boolean) => void;
1225
+ }
1226
+ declare const SidebarProvider: react.ForwardRefExoticComponent<SidebarProviderProps & react.HTMLAttributes<HTMLDivElement> & react.RefAttributes<HTMLDivElement>>;
1227
+ declare const Sidebar: react.ForwardRefExoticComponent<react.HTMLAttributes<HTMLDivElement> & {
1228
+ side?: "left" | "right";
1229
+ collapsible?: "offcanvas" | "icon" | "none";
1230
+ } & react.RefAttributes<HTMLDivElement>>;
1231
+ declare const SidebarHeader: react.ForwardRefExoticComponent<react.HTMLAttributes<HTMLDivElement> & react.RefAttributes<HTMLDivElement>>;
1232
+ declare const SidebarContent: react.ForwardRefExoticComponent<react.HTMLAttributes<HTMLDivElement> & react.RefAttributes<HTMLDivElement>>;
1233
+ declare const SidebarFooter: react.ForwardRefExoticComponent<react.HTMLAttributes<HTMLDivElement> & react.RefAttributes<HTMLDivElement>>;
1234
+ declare const SidebarTrigger: react.ForwardRefExoticComponent<react.ButtonHTMLAttributes<HTMLButtonElement> & react.RefAttributes<HTMLButtonElement>>;
1235
+
1236
+ interface SidebarProps {
1237
+ children?: ReactNode;
1238
+ className?: string;
1239
+ open?: boolean;
1240
+ onOpenChange?: (open: boolean) => void;
1241
+ collapsible?: "offcanvas" | "icon" | "none";
1242
+ side?: "left" | "right";
1243
+ }
1244
+ interface SidebarHeaderProps {
1245
+ children?: ReactNode;
1246
+ className?: string;
1247
+ }
1248
+ interface SidebarContentProps {
1249
+ children?: ReactNode;
1250
+ className?: string;
1251
+ }
1252
+ interface SidebarFooterProps {
1253
+ children?: ReactNode;
1254
+ className?: string;
1255
+ }
1256
+ interface SidebarTriggerProps {
1257
+ children?: ReactNode;
1258
+ className?: string;
1259
+ }
1260
+
1261
+ declare const Skeleton: react.ForwardRefExoticComponent<react.HTMLAttributes<HTMLDivElement> & react.RefAttributes<HTMLDivElement>>;
1262
+
1263
+ interface SkeletonProps {
1264
+ className?: string;
1265
+ width?: number | string;
1266
+ height?: number | string;
1267
+ borderRadius?: number;
1268
+ }
1269
+
1270
+ declare const Slider: react.ForwardRefExoticComponent<Omit<SliderPrimitive.SliderProps & react.RefAttributes<HTMLSpanElement>, "ref"> & react.RefAttributes<HTMLSpanElement>>;
1271
+
1272
+ interface SliderProps {
1273
+ value?: number[];
1274
+ defaultValue?: number[];
1275
+ onValueChange?: (value: number[]) => void;
1276
+ min?: number;
1277
+ max?: number;
1278
+ step?: number;
1279
+ disabled?: boolean;
1280
+ className?: string;
1281
+ }
1282
+
1283
+ declare const Switch: react.ForwardRefExoticComponent<Omit<SwitchPrimitive.SwitchProps & react.RefAttributes<HTMLButtonElement>, "ref"> & react.RefAttributes<HTMLButtonElement>>;
1284
+
1285
+ interface SwitchProps {
1286
+ checked?: boolean;
1287
+ defaultChecked?: boolean;
1288
+ onCheckedChange?: (checked: boolean) => void;
1289
+ disabled?: boolean;
1290
+ className?: string;
1291
+ }
1292
+
1293
+ declare const Table: react.ForwardRefExoticComponent<react.HTMLAttributes<HTMLTableElement> & react.RefAttributes<HTMLTableElement>>;
1294
+ declare const TableHeader: react.ForwardRefExoticComponent<react.HTMLAttributes<HTMLTableSectionElement> & react.RefAttributes<HTMLTableSectionElement>>;
1295
+ declare const TableBody: react.ForwardRefExoticComponent<react.HTMLAttributes<HTMLTableSectionElement> & react.RefAttributes<HTMLTableSectionElement>>;
1296
+ declare const TableFooter: react.ForwardRefExoticComponent<react.HTMLAttributes<HTMLTableSectionElement> & react.RefAttributes<HTMLTableSectionElement>>;
1297
+ declare const TableRow: react.ForwardRefExoticComponent<react.HTMLAttributes<HTMLTableRowElement> & react.RefAttributes<HTMLTableRowElement>>;
1298
+ declare const TableHead: react.ForwardRefExoticComponent<react.ThHTMLAttributes<HTMLTableCellElement> & react.RefAttributes<HTMLTableCellElement>>;
1299
+ declare const TableCell: react.ForwardRefExoticComponent<react.TdHTMLAttributes<HTMLTableCellElement> & react.RefAttributes<HTMLTableCellElement>>;
1300
+ declare const TableCaption: react.ForwardRefExoticComponent<react.HTMLAttributes<HTMLTableCaptionElement> & react.RefAttributes<HTMLTableCaptionElement>>;
1301
+
1302
+ interface TableProps {
1303
+ children?: React.ReactNode;
1304
+ className?: string;
1305
+ }
1306
+ interface TableHeaderProps {
1307
+ children?: React.ReactNode;
1308
+ className?: string;
1309
+ }
1310
+ interface TableBodyProps {
1311
+ children?: React.ReactNode;
1312
+ className?: string;
1313
+ }
1314
+ interface TableFooterProps {
1315
+ children?: React.ReactNode;
1316
+ className?: string;
1317
+ }
1318
+ interface TableRowProps {
1319
+ children?: React.ReactNode;
1320
+ className?: string;
1321
+ selected?: boolean;
1322
+ }
1323
+ interface TableHeadProps {
1324
+ children?: React.ReactNode;
1325
+ className?: string;
1326
+ }
1327
+ interface TableCellProps {
1328
+ children?: React.ReactNode;
1329
+ className?: string;
1330
+ colSpan?: number;
1331
+ }
1332
+ interface TableCaptionProps {
1333
+ children?: React.ReactNode;
1334
+ className?: string;
1335
+ }
1336
+
1337
+ declare const Tabs: react.ForwardRefExoticComponent<TabsPrimitive.TabsProps & react.RefAttributes<HTMLDivElement>>;
1338
+ declare const TabsList: react.ForwardRefExoticComponent<Omit<TabsPrimitive.TabsListProps & react.RefAttributes<HTMLDivElement>, "ref"> & react.RefAttributes<HTMLDivElement>>;
1339
+ declare const TabsTrigger: react.ForwardRefExoticComponent<Omit<TabsPrimitive.TabsTriggerProps & react.RefAttributes<HTMLButtonElement>, "ref"> & react.RefAttributes<HTMLButtonElement>>;
1340
+ declare const TabsContent: react.ForwardRefExoticComponent<Omit<TabsPrimitive.TabsContentProps & react.RefAttributes<HTMLDivElement>, "ref"> & react.RefAttributes<HTMLDivElement>>;
1341
+
1342
+ interface TabsProps {
1343
+ defaultValue?: string;
1344
+ value?: string;
1345
+ onValueChange?: (value: string) => void;
1346
+ children?: React.ReactNode;
1347
+ className?: string;
1348
+ }
1349
+ interface TabsListProps {
1350
+ children?: React.ReactNode;
1351
+ className?: string;
1352
+ }
1353
+ interface TabsTriggerProps {
1354
+ value: string;
1355
+ children?: React.ReactNode;
1356
+ className?: string;
1357
+ disabled?: boolean;
1358
+ }
1359
+ interface TabsContentProps {
1360
+ value: string;
1361
+ children?: React.ReactNode;
1362
+ className?: string;
1363
+ }
1364
+
1365
+ declare const Textarea: react.ForwardRefExoticComponent<react.TextareaHTMLAttributes<HTMLTextAreaElement> & react.RefAttributes<HTMLTextAreaElement>>;
1366
+
1367
+ interface TextareaProps {
1368
+ placeholder?: string;
1369
+ value?: string;
1370
+ defaultValue?: string;
1371
+ onChangeText?: (text: string) => void;
1372
+ disabled?: boolean;
1373
+ readOnly?: boolean;
1374
+ rows?: number;
1375
+ className?: string;
1376
+ }
1377
+
1378
+ declare const toastVariants: (props?: ({
1379
+ variant?: "default" | "destructive" | null | undefined;
1380
+ } & class_variance_authority_types.ClassProp) | undefined) => string;
1381
+ declare const ToastProvider: {
1382
+ ({ children }: {
1383
+ children?: ReactNode;
1384
+ }): react_jsx_runtime.JSX.Element;
1385
+ displayName: string;
1386
+ };
1387
+ declare const ToastViewport: react.ForwardRefExoticComponent<react.HTMLAttributes<HTMLOListElement> & react.RefAttributes<HTMLOListElement>>;
1388
+ interface ToastWebProps extends React.HTMLAttributes<HTMLLIElement>, VariantProps<typeof toastVariants> {
1389
+ open?: boolean;
1390
+ onOpenChange?: (open: boolean) => void;
1391
+ }
1392
+ declare const Toast: react.ForwardRefExoticComponent<ToastWebProps & react.RefAttributes<HTMLLIElement>>;
1393
+ declare const ToastClose: react.ForwardRefExoticComponent<react.ButtonHTMLAttributes<HTMLButtonElement> & react.RefAttributes<HTMLButtonElement>>;
1394
+ declare const ToastTitle: react.ForwardRefExoticComponent<react.HTMLAttributes<HTMLDivElement> & react.RefAttributes<HTMLDivElement>>;
1395
+ declare const ToastDescription: react.ForwardRefExoticComponent<react.HTMLAttributes<HTMLDivElement> & react.RefAttributes<HTMLDivElement>>;
1396
+ type ToasterToast = {
1397
+ id: string;
1398
+ title?: ReactNode;
1399
+ description?: ReactNode;
1400
+ action?: ReactNode;
1401
+ variant?: "default" | "destructive";
1402
+ open?: boolean;
1403
+ onOpenChange?: (open: boolean) => void;
1404
+ };
1405
+ declare const ToastAction: react.ForwardRefExoticComponent<react.ButtonHTMLAttributes<HTMLButtonElement> & {
1406
+ altText?: string;
1407
+ } & react.RefAttributes<HTMLButtonElement>>;
1408
+ type ToastAction = {
1409
+ type: "ADD_TOAST";
1410
+ toast: ToasterToast;
1411
+ } | {
1412
+ type: "UPDATE_TOAST";
1413
+ toast: Partial<ToasterToast>;
1414
+ } | {
1415
+ type: "DISMISS_TOAST";
1416
+ toastId?: string;
1417
+ } | {
1418
+ type: "REMOVE_TOAST";
1419
+ toastId?: string;
1420
+ };
1421
+ declare function toast({ ...props }: Omit<ToasterToast, "id">): {
1422
+ id: string;
1423
+ dismiss: () => void;
1424
+ update: (updateProps: Partial<ToasterToast>) => void;
1425
+ };
1426
+ declare function useToast(): {
1427
+ toasts: ToasterToast[];
1428
+ toast: typeof toast;
1429
+ dismiss: (toastId?: string) => void;
1430
+ };
1431
+
1432
+ type ToastVariant = "default" | "destructive";
1433
+ interface ToastProps {
1434
+ children?: ReactNode;
1435
+ className?: string;
1436
+ variant?: ToastVariant;
1437
+ open?: boolean;
1438
+ onOpenChange?: (open: boolean) => void;
1439
+ }
1440
+ interface ToastProviderProps {
1441
+ children?: ReactNode;
1442
+ }
1443
+ interface ToastViewportProps {
1444
+ className?: string;
1445
+ }
1446
+ interface ToastTitleProps {
1447
+ children?: ReactNode;
1448
+ className?: string;
1449
+ }
1450
+ interface ToastDescriptionProps {
1451
+ children?: ReactNode;
1452
+ className?: string;
1453
+ }
1454
+ interface ToastActionProps {
1455
+ children?: ReactNode;
1456
+ className?: string;
1457
+ altText: string;
1458
+ onClick?: () => void;
1459
+ }
1460
+ interface ToastCloseProps {
1461
+ className?: string;
1462
+ }
1463
+
1464
+ declare const toggleVariants: (props?: ({
1465
+ variant?: "default" | "outline" | null | undefined;
1466
+ size?: "default" | "sm" | "lg" | null | undefined;
1467
+ } & class_variance_authority_types.ClassProp) | undefined) => string;
1468
+ declare const Toggle: react.ForwardRefExoticComponent<Omit<TogglePrimitive.ToggleProps & react.RefAttributes<HTMLButtonElement>, "ref"> & VariantProps<(props?: ({
1469
+ variant?: "default" | "outline" | null | undefined;
1470
+ size?: "default" | "sm" | "lg" | null | undefined;
1471
+ } & class_variance_authority_types.ClassProp) | undefined) => string> & react.RefAttributes<HTMLButtonElement>>;
1472
+
1473
+ type ToggleVariant = "default" | "outline";
1474
+ type ToggleSize = "default" | "sm" | "lg";
1475
+ interface ToggleProps {
1476
+ pressed?: boolean;
1477
+ defaultPressed?: boolean;
1478
+ onPressedChange?: (pressed: boolean) => void;
1479
+ variant?: ToggleVariant;
1480
+ size?: ToggleSize;
1481
+ disabled?: boolean;
1482
+ children?: React.ReactNode;
1483
+ className?: string;
1484
+ }
1485
+
1486
+ declare const ToggleGroup: react.ForwardRefExoticComponent<((Omit<ToggleGroupPrimitive.ToggleGroupSingleProps & react.RefAttributes<HTMLDivElement>, "ref"> | Omit<ToggleGroupPrimitive.ToggleGroupMultipleProps & react.RefAttributes<HTMLDivElement>, "ref">) & VariantProps<(props?: ({
1487
+ variant?: "default" | "outline" | null | undefined;
1488
+ size?: "default" | "sm" | "lg" | null | undefined;
1489
+ } & class_variance_authority_types.ClassProp) | undefined) => string>) & react.RefAttributes<HTMLDivElement>>;
1490
+ declare const ToggleGroupItem: react.ForwardRefExoticComponent<Omit<ToggleGroupPrimitive.ToggleGroupItemProps & react.RefAttributes<HTMLButtonElement>, "ref"> & VariantProps<(props?: ({
1491
+ variant?: "default" | "outline" | null | undefined;
1492
+ size?: "default" | "sm" | "lg" | null | undefined;
1493
+ } & class_variance_authority_types.ClassProp) | undefined) => string> & react.RefAttributes<HTMLButtonElement>>;
1494
+
1495
+ interface ToggleGroupProps {
1496
+ type?: "single" | "multiple";
1497
+ value?: string | string[];
1498
+ defaultValue?: string | string[];
1499
+ onValueChange?: (value: string | string[]) => void;
1500
+ variant?: ToggleVariant;
1501
+ size?: ToggleSize;
1502
+ disabled?: boolean;
1503
+ children?: React.ReactNode;
1504
+ className?: string;
1505
+ }
1506
+ interface ToggleGroupItemProps {
1507
+ value: string;
1508
+ variant?: ToggleVariant;
1509
+ size?: ToggleSize;
1510
+ disabled?: boolean;
1511
+ children?: React.ReactNode;
1512
+ className?: string;
1513
+ }
1514
+
1515
+ declare const TooltipProvider: react.FC<TooltipPrimitive.TooltipProviderProps>;
1516
+ declare const Tooltip: react.FC<TooltipPrimitive.TooltipProps>;
1517
+ declare const TooltipTrigger: react.ForwardRefExoticComponent<TooltipPrimitive.TooltipTriggerProps & react.RefAttributes<HTMLButtonElement>>;
1518
+ declare const TooltipContent: react.ForwardRefExoticComponent<Omit<TooltipPrimitive.TooltipContentProps & react.RefAttributes<HTMLDivElement>, "ref"> & react.RefAttributes<HTMLDivElement>>;
1519
+
1520
+ interface TooltipProps {
1521
+ children?: ReactNode;
1522
+ open?: boolean;
1523
+ onOpenChange?: (open: boolean) => void;
1524
+ delayDuration?: number;
1525
+ }
1526
+ interface TooltipTriggerProps {
1527
+ children?: ReactNode;
1528
+ className?: string;
1529
+ asChild?: boolean;
1530
+ }
1531
+ interface TooltipContentProps {
1532
+ children?: ReactNode;
1533
+ className?: string;
1534
+ sideOffset?: number;
1535
+ side?: "top" | "right" | "bottom" | "left";
1536
+ }
1537
+ interface TooltipProviderProps {
1538
+ children?: ReactNode;
1539
+ delayDuration?: number;
1540
+ skipDelayDuration?: number;
1541
+ }
1542
+
1543
+ export { Accordion, AccordionContent, type AccordionContentProps, AccordionItem, type AccordionItemProps, type AccordionProps, AccordionTrigger, type AccordionTriggerProps, Alert, AlertDescription, type AlertDescriptionProps, AlertDialog, AlertDialogAction, type AlertDialogActionProps, AlertDialogCancel, type AlertDialogCancelProps, AlertDialogContent, type AlertDialogContentProps, AlertDialogDescription, type AlertDialogDescriptionProps, AlertDialogFooter, type AlertDialogFooterProps, AlertDialogHeader, type AlertDialogHeaderProps, AlertDialogOverlay, AlertDialogPortal, type AlertDialogProps, AlertDialogTitle, type AlertDialogTitleProps, AlertDialogTrigger, type AlertDialogTriggerProps, type AlertProps, AlertTitle, type AlertTitleProps, type AlertVariant, AspectRatio, type AspectRatioProps, Avatar, AvatarFallback, type AvatarFallbackProps, AvatarImage, type AvatarImageProps, type AvatarProps, Badge, type BadgeProps, type BadgeVariant, Breadcrumb, BreadcrumbEllipsis, type BreadcrumbEllipsisProps, BreadcrumbItem, type BreadcrumbItemProps, BreadcrumbLink, type BreadcrumbLinkProps, BreadcrumbList, type BreadcrumbListProps, BreadcrumbPage, type BreadcrumbPageProps, type BreadcrumbProps, BreadcrumbSeparator, type BreadcrumbSeparatorProps, Button, type ButtonProps, type ButtonSize, type ButtonVariant, Calendar, type CalendarProps, Card, type CardProps, Carousel, CarouselContent, type CarouselContentProps, CarouselItem, type CarouselItemProps, CarouselNext, type CarouselNextProps, type CarouselOrientation, CarouselPrevious, type CarouselPreviousProps, type CarouselProps, Chart, type ChartConfig, type ChartProps, Checkbox, type CheckboxProps, Collapsible, CollapsibleContent, type CollapsibleContentProps, type CollapsibleProps, CollapsibleTrigger, type CollapsibleTriggerProps, type ColumnDef, Combobox, type ComboboxProps, Command, CommandEmpty, type CommandEmptyProps, CommandGroup, type CommandGroupProps, CommandInput, type CommandInputProps, CommandItem, type CommandItemProps, CommandList, type CommandListProps, type CommandProps, CommandSeparator, type CommandSeparatorProps, ContextMenu, ContextMenuCheckboxItem, type ContextMenuCheckboxItemProps, ContextMenuContent, type ContextMenuContentProps, ContextMenuGroup, ContextMenuItem, type ContextMenuItemProps, ContextMenuLabel, type ContextMenuLabelProps, ContextMenuPortal, type ContextMenuProps, ContextMenuRadioGroup, type ContextMenuRadioGroupProps, ContextMenuRadioItem, type ContextMenuRadioItemProps, ContextMenuSeparator, type ContextMenuSeparatorProps, ContextMenuShortcut, ContextMenuSub, ContextMenuSubContent, type ContextMenuSubContentProps, type ContextMenuSubProps, ContextMenuSubTrigger, type ContextMenuSubTriggerProps, ContextMenuTrigger, type ContextMenuTriggerProps, DataTable, type DataTableProps, DatePicker, type DatePickerProps, Dialog, DialogClose, type DialogCloseProps, DialogContent, type DialogContentProps, DialogDescription, type DialogDescriptionProps, DialogFooter, type DialogFooterProps, DialogHeader, type DialogHeaderProps, DialogOverlay, DialogPortal, type DialogProps, DialogTitle, type DialogTitleProps, DialogTrigger, type DialogTriggerProps, Drawer, DrawerClose, type DrawerCloseProps, DrawerContent, type DrawerContentProps, DrawerDescription, type DrawerDescriptionProps, DrawerFooter, type DrawerFooterProps, DrawerHeader, type DrawerHeaderProps, DrawerOverlay, DrawerPortal, type DrawerProps, DrawerTitle, type DrawerTitleProps, DrawerTrigger, type DrawerTriggerProps, DropdownMenu, DropdownMenuCheckboxItem, type DropdownMenuCheckboxItemProps, DropdownMenuContent, type DropdownMenuContentProps, DropdownMenuGroup, DropdownMenuItem, type DropdownMenuItemProps, DropdownMenuLabel, type DropdownMenuLabelProps, DropdownMenuPortal, type DropdownMenuProps, DropdownMenuRadioGroup, type DropdownMenuRadioGroupProps, DropdownMenuRadioItem, type DropdownMenuRadioItemProps, DropdownMenuSeparator, type DropdownMenuSeparatorProps, DropdownMenuShortcut, DropdownMenuSub, DropdownMenuSubContent, type DropdownMenuSubContentProps, type DropdownMenuSubProps, DropdownMenuSubTrigger, type DropdownMenuSubTriggerProps, DropdownMenuTrigger, type DropdownMenuTriggerProps, Form, FormControl, type FormControlProps, FormDescription, type FormDescriptionProps, FormField, type FormFieldProps, FormItem, type FormItemProps, FormLabel, type FormLabelProps, FormMessage, type FormMessageProps, type FormProps, HoverCard, HoverCardContent, type HoverCardContentProps, type HoverCardProps, HoverCardTrigger, type HoverCardTriggerProps, Input, InputOTP, type InputOTPProps, type InputOTPSlotProps, type InputProps, Label, type LabelProps, Menubar, MenubarCheckboxItem, type MenubarCheckboxItemProps, MenubarContent, type MenubarContentProps, MenubarGroup, MenubarItem, type MenubarItemProps, MenubarLabel, MenubarMenu, type MenubarMenuProps, MenubarPortal, type MenubarProps, MenubarRadioGroup, type MenubarRadioGroupProps, MenubarRadioItem, type MenubarRadioItemProps, MenubarSeparator, type MenubarSeparatorProps, MenubarShortcut, MenubarSub, MenubarSubContent, type MenubarSubContentProps, type MenubarSubProps, MenubarSubTrigger, type MenubarSubTriggerProps, MenubarTrigger, type MenubarTriggerProps, NavigationMenu, NavigationMenuContent, type NavigationMenuContentProps, NavigationMenuIndicator, NavigationMenuItem, type NavigationMenuItemProps, NavigationMenuLink, type NavigationMenuLinkProps, NavigationMenuList, type NavigationMenuListProps, type NavigationMenuProps, NavigationMenuTrigger, type NavigationMenuTriggerProps, NavigationMenuViewport, Pagination, PaginationContent, type PaginationContentProps, PaginationEllipsis, type PaginationEllipsisProps, PaginationItem, type PaginationItemProps, PaginationLink, type PaginationLinkProps, type PaginationLinkWebProps, PaginationNext, type PaginationNextProps, PaginationPrevious, type PaginationPreviousProps, type PaginationProps, Popover, PopoverAnchor, PopoverContent, type PopoverContentProps, type PopoverProps, PopoverTrigger, type PopoverTriggerProps, Progress, type ProgressProps, RadioGroup, RadioGroupItem, type RadioGroupItemProps, type RadioGroupProps, type ResizableDirection, ResizableHandle, type ResizableHandleProps, ResizablePanel, ResizablePanelGroup, type ResizablePanelGroupProps, type ResizablePanelProps, ScrollArea, type ScrollAreaProps, ScrollBar, type ScrollBarProps, Select, SelectContent, SelectGroup, SelectItem, type SelectItemOption, SelectLabel, type SelectProps, SelectSeparator, SelectTrigger, SelectValue, Separator, type SeparatorOrientation, type SeparatorProps, Sheet, SheetClose, type SheetCloseProps, SheetContent, type SheetContentProps, SheetDescription, type SheetDescriptionProps, SheetFooter, type SheetFooterProps, SheetHeader, type SheetHeaderProps, SheetOverlay, SheetPortal, type SheetProps, type SheetSide, SheetTitle, type SheetTitleProps, SheetTrigger, type SheetTriggerProps, Sidebar, SidebarContent, type SidebarContentProps, SidebarFooter, type SidebarFooterProps, SidebarHeader, type SidebarHeaderProps, type SidebarProps, SidebarProvider, SidebarTrigger, type SidebarTriggerProps, Skeleton, type SkeletonProps, Slider, type SliderProps, type SortDirection, Switch, type SwitchProps, Table, TableBody, type TableBodyProps, TableCaption, type TableCaptionProps, TableCell, type TableCellProps, TableFooter, type TableFooterProps, TableHead, type TableHeadProps, TableHeader, type TableHeaderProps, type TableProps, TableRow, type TableRowProps, Tabs, TabsContent, type TabsContentProps, TabsList, type TabsListProps, type TabsProps, TabsTrigger, type TabsTriggerProps, Textarea, type TextareaProps, Toast, ToastAction, type ToastActionProps, ToastClose, type ToastCloseProps, ToastDescription, type ToastDescriptionProps, type ToastProps, ToastProvider, type ToastProviderProps, ToastTitle, type ToastTitleProps, type ToastVariant, ToastViewport, type ToastViewportProps, type ToastWebProps, type ToasterToast, Toggle, ToggleGroup, ToggleGroupItem, type ToggleGroupItemProps, type ToggleGroupProps, type ToggleProps, type ToggleSize, type ToggleVariant, Tooltip, TooltipContent, type TooltipContentProps, type TooltipProps, TooltipProvider, type TooltipProviderProps, TooltipTrigger, type TooltipTriggerProps, badgeVariants, navigationMenuTriggerStyle, paginationLinkVariants, separatorVariants, toast, toastVariants, toggleVariants, useSidebarContext, useToast };