@tenerife.music/ui 1.0.3 → 1.0.6

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 (491) hide show
  1. package/README.md +407 -123
  2. package/dist/animation/index.d.ts +0 -1
  3. package/dist/animation/presets.d.ts +6 -9
  4. package/dist/animation/tas.d.ts +2 -58
  5. package/dist/animation/types.d.ts +9 -48
  6. package/dist/animation/useInView.d.ts +36 -0
  7. package/dist/animation/utils.d.ts +0 -1
  8. package/dist/components/SectionBuilder.d.ts +0 -1
  9. package/dist/components/SectionBuilder.presets.d.ts +0 -1
  10. package/dist/components/SectionBuilder.types.d.ts +0 -1
  11. package/dist/components/admin/Dashboard.d.ts +0 -1
  12. package/dist/components/admin/UserManagement.d.ts +0 -1
  13. package/dist/components/auth/LoginForm.d.ts +0 -1
  14. package/dist/components/auth/ProfileCard.d.ts +0 -1
  15. package/dist/components/auth/RegisterForm.d.ts +0 -1
  16. package/dist/components/cards/ArtistCard/ArtistCard.d.ts +22 -0
  17. package/dist/components/cards/ArtistCard/ArtistCard.types.d.ts +46 -0
  18. package/dist/components/cards/ArtistCard/ArtistCard.variants.d.ts +83 -0
  19. package/dist/components/cards/ArtistCard/index.d.ts +8 -0
  20. package/dist/components/cards/CardBase/CardBase.d.ts +45 -0
  21. package/dist/components/cards/CardBase/CardBase.types.d.ts +70 -0
  22. package/dist/components/cards/CardBase/CardBase.variants.d.ts +38 -0
  23. package/dist/components/cards/CardBase/index.d.ts +8 -0
  24. package/dist/components/cards/CategoryCard/CategoryCard.d.ts +18 -0
  25. package/dist/components/cards/CategoryCard/CategoryCard.types.d.ts +38 -0
  26. package/dist/components/cards/CategoryCard/CategoryCard.variants.d.ts +21 -0
  27. package/dist/components/cards/CategoryCard/index.d.ts +7 -0
  28. package/dist/components/cards/EventCard/EventCard.d.ts +19 -0
  29. package/dist/components/cards/{EventCard.d.ts → EventCard/EventCard.types.d.ts} +13 -4
  30. package/dist/components/cards/EventCard/EventCard.variants.d.ts +70 -0
  31. package/dist/components/cards/EventCard/index.d.ts +7 -0
  32. package/dist/components/cards/PromoCard/PromoCard.d.ts +20 -0
  33. package/dist/components/cards/PromoCard/PromoCard.types.d.ts +42 -0
  34. package/dist/components/cards/PromoCard/PromoCard.variants.d.ts +35 -0
  35. package/dist/components/cards/PromoCard/index.d.ts +7 -0
  36. package/dist/components/cards/TicketCard/TicketCard.d.ts +19 -0
  37. package/dist/components/cards/TicketCard/TicketCard.types.d.ts +55 -0
  38. package/dist/components/cards/TicketCard/TicketCard.variants.d.ts +71 -0
  39. package/dist/components/cards/TicketCard/index.d.ts +7 -0
  40. package/dist/components/cards/VenueCard/VenueCard.d.ts +21 -0
  41. package/dist/components/cards/{VenueCard.d.ts → VenueCard/VenueCard.types.d.ts} +15 -7
  42. package/dist/components/cards/VenueCard/VenueCard.variants.d.ts +60 -0
  43. package/dist/components/cards/VenueCard/index.d.ts +8 -0
  44. package/dist/components/cards/index.d.ts +19 -0
  45. package/dist/components/checkbox/Checkbox.d.ts +22 -0
  46. package/dist/components/checkbox/Checkbox.types.d.ts +68 -0
  47. package/dist/components/checkbox/checkbox-variants.d.ts +13 -0
  48. package/dist/components/checkbox/index.d.ts +3 -0
  49. package/dist/components/containers/Card.d.ts +75 -0
  50. package/dist/components/containers/Section.d.ts +31 -0
  51. package/dist/components/containers/Surface.d.ts +28 -0
  52. package/dist/components/containers/index.d.ts +9 -0
  53. package/dist/components/controls/LanguageSelector.d.ts +0 -1
  54. package/dist/components/data/List.d.ts +0 -1
  55. package/dist/components/data/Table.d.ts +0 -1
  56. package/dist/components/data/Timeline.d.ts +0 -1
  57. package/dist/components/data/data-list/DataList.d.ts +29 -0
  58. package/dist/components/data/data-list/DataList.types.d.ts +43 -0
  59. package/dist/components/data/data-list/DataListItem.d.ts +20 -0
  60. package/dist/components/data/data-list/DataListLabel.d.ts +19 -0
  61. package/dist/components/data/data-list/DataListValue.d.ts +18 -0
  62. package/dist/components/data/data-list/index.d.ts +10 -0
  63. package/dist/components/data/empty-state/EmptyState.d.ts +31 -0
  64. package/dist/components/data/empty-state/EmptyState.types.d.ts +51 -0
  65. package/dist/components/data/empty-state/EmptyStateAction.d.ts +17 -0
  66. package/dist/components/data/empty-state/EmptyStateDescription.d.ts +17 -0
  67. package/dist/components/data/empty-state/EmptyStateIcon.d.ts +22 -0
  68. package/dist/components/data/empty-state/EmptyStateTitle.d.ts +17 -0
  69. package/dist/components/data/empty-state/index.d.ts +10 -0
  70. package/dist/components/data/index.d.ts +9 -0
  71. package/dist/components/data/skeleton/Skeleton.d.ts +24 -0
  72. package/dist/components/data/skeleton/Skeleton.types.d.ts +12 -0
  73. package/dist/components/data/skeleton/index.d.ts +6 -0
  74. package/dist/components/data/table/Table.d.ts +33 -0
  75. package/dist/components/data/table/Table.types.d.ts +264 -0
  76. package/dist/components/data/table/TableBody.d.ts +13 -0
  77. package/dist/components/data/table/TableCell.d.ts +13 -0
  78. package/dist/components/data/table/TableEmpty.d.ts +13 -0
  79. package/dist/components/data/table/TableExpandableContent.d.ts +14 -0
  80. package/dist/components/data/table/TableHead.d.ts +13 -0
  81. package/dist/components/data/table/TableHeader.d.ts +13 -0
  82. package/dist/components/data/table/TableLoadingState.d.ts +13 -0
  83. package/dist/components/data/table/TableRow.d.ts +13 -0
  84. package/dist/components/data/table/TableSortIcon.d.ts +14 -0
  85. package/dist/components/data/table/index.d.ts +17 -0
  86. package/dist/components/drawer/Drawer.d.ts +41 -0
  87. package/dist/components/drawer/Drawer.types.d.ts +75 -0
  88. package/dist/components/drawer/drawer-variants.d.ts +17 -0
  89. package/dist/components/drawer/index.d.ts +8 -0
  90. package/dist/components/dropdown/Dropdown.d.ts +38 -0
  91. package/dist/components/dropdown/Dropdown.types.d.ts +82 -0
  92. package/dist/components/dropdown/dropdown-variants.d.ts +33 -0
  93. package/dist/components/feedback/ConsentBanner.d.ts +0 -1
  94. package/dist/components/feedback/Progress.d.ts +0 -1
  95. package/dist/components/feedback/Skeleton.d.ts +0 -1
  96. package/dist/components/filters/DateRangePicker.d.ts +0 -1
  97. package/dist/components/filters/FilterBar.d.ts +0 -1
  98. package/dist/components/filters/FilterSelect.d.ts +0 -1
  99. package/dist/components/filters/PriceRangeSlider.d.ts +0 -1
  100. package/dist/components/filters/SearchFilters.d.ts +0 -1
  101. package/dist/components/filters/SearchInput.d.ts +1 -2
  102. package/dist/components/filters/types.d.ts +0 -1
  103. package/dist/components/icon/Icon.d.ts +32 -0
  104. package/dist/components/icon/Icon.types.d.ts +7 -0
  105. package/dist/components/icon/index.d.ts +4 -0
  106. package/dist/components/icons/TrendingIcon.d.ts +0 -1
  107. package/dist/components/image/Image.d.ts +0 -1
  108. package/dist/components/input/Input.d.ts +20 -0
  109. package/dist/components/input/Input.types.d.ts +38 -0
  110. package/dist/components/input/index.d.ts +3 -0
  111. package/dist/components/input/input-variants.d.ts +14 -0
  112. package/dist/components/input/legacy/input.d.ts +11 -0
  113. package/dist/components/layout/Box.d.ts +40 -11
  114. package/dist/components/layout/Column.d.ts +6 -0
  115. package/dist/components/layout/Container.d.ts +1 -2
  116. package/dist/components/layout/Flex.d.ts +29 -14
  117. package/dist/components/layout/Footer.d.ts +0 -1
  118. package/dist/components/layout/Grid.d.ts +34 -26
  119. package/dist/components/layout/ModeHero.d.ts +0 -1
  120. package/dist/components/layout/Navbar.d.ts +0 -1
  121. package/dist/components/layout/Row.d.ts +28 -0
  122. package/dist/components/layout/Section.d.ts +0 -1
  123. package/dist/components/layout/Stack.d.ts +24 -15
  124. package/dist/components/layout/Surface.d.ts +21 -0
  125. package/dist/components/layout/index.d.ts +10 -5
  126. package/dist/components/layout/layout.types.d.ts +16 -1
  127. package/dist/components/menus/DropdownMenu.d.ts +0 -1
  128. package/dist/components/menus/NavigationMenu.d.ts +0 -1
  129. package/dist/components/menus/Tabs.d.ts +0 -1
  130. package/dist/components/menus/context-menu/ContextMenuContent.d.ts +22 -0
  131. package/dist/components/menus/context-menu/ContextMenuGroup.d.ts +14 -0
  132. package/dist/components/menus/context-menu/ContextMenuItem.d.ts +14 -0
  133. package/dist/components/menus/context-menu/ContextMenuLabel.d.ts +14 -0
  134. package/dist/components/menus/context-menu/ContextMenuRoot.d.ts +47 -0
  135. package/dist/components/menus/context-menu/ContextMenuSeparator.d.ts +14 -0
  136. package/dist/components/menus/context-menu/ContextMenuTrigger.d.ts +16 -0
  137. package/dist/components/menus/context-menu/index.d.ts +12 -0
  138. package/dist/components/menus/dropdown/DropdownMenuCheckItem.d.ts +18 -0
  139. package/dist/components/menus/dropdown/DropdownMenuContent.d.ts +15 -0
  140. package/dist/components/menus/dropdown/DropdownMenuGroup.d.ts +12 -0
  141. package/dist/components/menus/dropdown/DropdownMenuItem.d.ts +30 -0
  142. package/dist/components/menus/dropdown/DropdownMenuLabel.d.ts +17 -0
  143. package/dist/components/menus/dropdown/DropdownMenuRadioGroup.d.ts +24 -0
  144. package/dist/components/menus/dropdown/DropdownMenuRadioItem.d.ts +18 -0
  145. package/dist/components/menus/dropdown/DropdownMenuRoot.d.ts +33 -0
  146. package/dist/components/menus/dropdown/DropdownMenuSeparator.d.ts +13 -0
  147. package/dist/components/menus/dropdown/DropdownMenuSub.d.ts +10 -0
  148. package/dist/components/menus/dropdown/DropdownMenuSubContent.d.ts +13 -0
  149. package/dist/components/menus/dropdown/DropdownMenuSubTrigger.d.ts +13 -0
  150. package/dist/components/menus/dropdown/DropdownMenuTrigger.d.ts +14 -0
  151. package/dist/components/menus/dropdown/index.d.ts +18 -0
  152. package/dist/components/menus/hover-card/HoverCardContent.d.ts +14 -0
  153. package/dist/components/menus/hover-card/HoverCardRoot.d.ts +20 -0
  154. package/dist/components/menus/hover-card/HoverCardTrigger.d.ts +13 -0
  155. package/dist/components/menus/hover-card/index.d.ts +8 -0
  156. package/dist/components/menus/index.d.ts +9 -0
  157. package/dist/components/menus/popover/PopoverArrow.d.ts +17 -0
  158. package/dist/components/menus/popover/PopoverContent.d.ts +24 -0
  159. package/dist/components/menus/popover/PopoverRoot.d.ts +43 -0
  160. package/dist/components/menus/popover/PopoverTrigger.d.ts +17 -0
  161. package/dist/components/menus/popover/index.d.ts +9 -0
  162. package/dist/components/modal/Modal.d.ts +70 -0
  163. package/dist/components/modal/modal-variants.d.ts +26 -0
  164. package/dist/components/modals/ConfirmDialog.d.ts +3 -3
  165. package/dist/components/modals/CustomDialog.d.ts +0 -1
  166. package/dist/components/modals/Modal.d.ts +0 -1
  167. package/dist/components/modals/ModalProvider.d.ts +0 -1
  168. package/dist/components/modals/SimpleModal.d.ts +0 -1
  169. package/dist/components/navigation/Breadcrumbs.d.ts +0 -1
  170. package/dist/components/navigation/Pagination.d.ts +0 -1
  171. package/dist/components/navigation/breadcrumbs/Breadcrumbs.d.ts +52 -0
  172. package/dist/components/navigation/breadcrumbs/index.d.ts +5 -0
  173. package/dist/components/navigation/index.d.ts +10 -0
  174. package/dist/components/navigation/pagination/Pagination.d.ts +60 -0
  175. package/dist/components/navigation/pagination/index.d.ts +5 -0
  176. package/dist/components/navigation/segmented-control/SegmentedControl.d.ts +43 -0
  177. package/dist/components/navigation/segmented-control/index.d.ts +5 -0
  178. package/dist/components/navigation/stepper/Stepper.d.ts +129 -0
  179. package/dist/components/navigation/stepper/index.d.ts +5 -0
  180. package/dist/components/navigation/tabs/Tabs.d.ts +73 -0
  181. package/dist/components/navigation/tabs/index.d.ts +5 -0
  182. package/dist/components/notifications/NotificationCenter.DismissAll.d.ts +21 -0
  183. package/dist/components/notifications/NotificationCenter.GroupHeader.d.ts +23 -0
  184. package/dist/components/notifications/NotificationCenter.Item.d.ts +24 -0
  185. package/dist/components/notifications/NotificationCenter.List.d.ts +22 -0
  186. package/dist/components/notifications/NotificationCenter.Panel.d.ts +32 -0
  187. package/dist/components/notifications/NotificationCenter.Provider.d.ts +31 -0
  188. package/dist/components/notifications/NotificationCenter.Trigger.d.ts +15 -0
  189. package/dist/components/notifications/NotificationCenter.d.ts +27 -0
  190. package/dist/components/notifications/NotificationCenter.types.d.ts +89 -0
  191. package/dist/components/notifications/index.d.ts +23 -0
  192. package/dist/components/notifications/useNotificationCenter.d.ts +47 -0
  193. package/dist/components/overlays/Backdrop.d.ts +24 -0
  194. package/dist/components/overlays/Dialog.d.ts +66 -0
  195. package/dist/components/overlays/Modal.d.ts +60 -0
  196. package/dist/components/overlays/OverlayPortal.d.ts +0 -1
  197. package/dist/components/overlays/Popover.d.ts +2 -3
  198. package/dist/components/overlays/Portal.d.ts +29 -0
  199. package/dist/components/overlays/Toast.d.ts +36 -0
  200. package/dist/components/overlays/ToastProvider.d.ts +58 -0
  201. package/dist/components/overlays/ToastViewport.d.ts +27 -0
  202. package/dist/components/overlays/Tooltip.d.ts +2 -3
  203. package/dist/components/overlays/index.d.ts +13 -0
  204. package/dist/components/overlays/utils/FocusLock.d.ts +30 -0
  205. package/dist/components/overlays/utils/ScrollLock.d.ts +11 -0
  206. package/dist/components/overlays/utils/positioning.d.ts +68 -0
  207. package/dist/components/primitives/Badge.d.ts +1 -2
  208. package/dist/components/primitives/Button.d.ts +0 -1
  209. package/dist/components/primitives/Card.d.ts +0 -1
  210. package/dist/components/primitives/Divider.d.ts +0 -1
  211. package/dist/components/primitives/Input.d.ts +2 -3
  212. package/dist/components/primitives/Label.d.ts +0 -1
  213. package/dist/components/primitives/Link.d.ts +1 -2
  214. package/dist/components/primitives/ThemeSwitch.d.ts +3 -3
  215. package/dist/components/radio/Radio.d.ts +23 -0
  216. package/dist/components/radio/Radio.types.d.ts +63 -0
  217. package/dist/components/radio/RadioGroup.d.ts +20 -0
  218. package/dist/components/radio/RadioGroup.types.d.ts +61 -0
  219. package/dist/components/radio/index.d.ts +5 -0
  220. package/dist/components/radio/radio-variants.d.ts +13 -0
  221. package/dist/components/search/SearchBar.d.ts +0 -1
  222. package/dist/components/sections/ArticlesSection.d.ts +0 -1
  223. package/dist/components/sections/CTASection.d.ts +0 -1
  224. package/dist/components/sections/FeatureSection.d.ts +0 -1
  225. package/dist/components/sections/HeroSection.d.ts +0 -1
  226. package/dist/components/sections/TrendingSection.d.ts +0 -1
  227. package/dist/components/select/Select.d.ts +38 -0
  228. package/dist/components/select/Select.types.d.ts +107 -0
  229. package/dist/components/select/index.d.ts +5 -0
  230. package/dist/components/select/legacy/select.d.ts +11 -0
  231. package/dist/components/select/select-variants.d.ts +32 -0
  232. package/dist/components/skeletons/EventCardSkeleton.d.ts +0 -1
  233. package/dist/components/skeletons/VenueCardSkeleton.d.ts +0 -1
  234. package/dist/components/switch/Switch.d.ts +24 -0
  235. package/dist/components/switch/Switch.types.d.ts +53 -0
  236. package/dist/components/switch/index.d.ts +3 -0
  237. package/dist/components/switch/switch-variants.d.ts +34 -0
  238. package/dist/components/textarea/Textarea.d.ts +21 -0
  239. package/dist/components/textarea/Textarea.types.d.ts +40 -0
  240. package/dist/components/textarea/index.d.ts +3 -0
  241. package/dist/components/textarea/legacy/textarea.d.ts +11 -0
  242. package/dist/components/textarea/textarea-variants.d.ts +14 -0
  243. package/dist/components/toasts/Toast.d.ts +1 -2
  244. package/dist/components/toasts/ToastProvider.d.ts +0 -1
  245. package/dist/components/ui/alert.d.ts +9 -0
  246. package/dist/components/ui/body.d.ts +12 -0
  247. package/dist/components/ui/button.d.ts +2 -3
  248. package/dist/components/ui/caption.d.ts +11 -0
  249. package/dist/components/ui/card.d.ts +0 -1
  250. package/dist/components/ui/code.d.ts +11 -0
  251. package/dist/components/ui/dialog.d.ts +0 -1
  252. package/dist/components/ui/display.d.ts +12 -0
  253. package/dist/components/ui/field.d.ts +45 -0
  254. package/dist/components/ui/heading.d.ts +12 -0
  255. package/dist/components/ui/label.d.ts +9 -3
  256. package/dist/components/ui/lead.d.ts +11 -0
  257. package/dist/components/ui/text.d.ts +18 -0
  258. package/dist/components/ui/toast.d.ts +0 -1
  259. package/dist/components/ui/toaster.d.ts +0 -1
  260. package/dist/components/ui/tooltip.d.ts +0 -1
  261. package/dist/hooks/use-toast.d.ts +0 -1
  262. package/dist/hooks/useDebounce.d.ts +0 -1
  263. package/dist/hooks/useModal.d.ts +0 -1
  264. package/dist/hooks/useToast.d.ts +0 -1
  265. package/dist/icons/IconArrowRight.d.ts +6 -0
  266. package/dist/icons/IconCalendar.d.ts +6 -0
  267. package/dist/icons/IconCheck.d.ts +6 -0
  268. package/dist/icons/IconChevronDown.d.ts +6 -0
  269. package/dist/icons/IconChevronRight.d.ts +6 -0
  270. package/dist/icons/IconClose.d.ts +6 -0
  271. package/dist/icons/IconError.d.ts +6 -0
  272. package/dist/icons/IconInfo.d.ts +6 -0
  273. package/dist/icons/IconLocation.d.ts +6 -0
  274. package/dist/icons/IconMenu.d.ts +6 -0
  275. package/dist/icons/IconSearch.d.ts +6 -0
  276. package/dist/icons/IconSuccess.d.ts +6 -0
  277. package/dist/icons/IconWarning.d.ts +6 -0
  278. package/dist/icons/icon.types.d.ts +25 -0
  279. package/dist/icons/index.d.ts +34 -0
  280. package/dist/index.cjs +1 -1
  281. package/dist/index.d.ts +37 -78
  282. package/dist/index.mjs +7675 -5926
  283. package/dist/lib/a11y.d.ts +0 -1
  284. package/dist/lib/responsive-props.d.ts +0 -1
  285. package/dist/lib/utils.d.ts +0 -1
  286. package/dist/{motion-CuHacXY1.js → motion-CzQhSEqk.js} +122 -106
  287. package/dist/motion-DJx1TbXJ.cjs +2 -0
  288. package/dist/preset.cjs +1 -1
  289. package/dist/preset.d.ts +0 -1
  290. package/dist/preset.mjs +172 -53
  291. package/dist/styles.cjs +2 -0
  292. package/dist/styles.css +1 -1
  293. package/dist/styles.d.ts +0 -0
  294. package/dist/styles.mjs +1 -0
  295. package/dist/theme/ThemeProvider.d.ts +1 -2
  296. package/dist/theme/applyMode.d.ts +0 -1
  297. package/dist/theme/colors.d.ts +6 -71
  298. package/dist/theme/index.cjs +1 -1
  299. package/dist/theme/index.d.ts +1 -2
  300. package/dist/theme/index.mjs +1352 -224
  301. package/dist/theme/loader.d.ts +0 -1
  302. package/dist/theme/motion/gestures.d.ts +76 -0
  303. package/dist/theme/motion/useReducedMotion.d.ts +11 -0
  304. package/dist/theme/motion.d.ts +0 -1
  305. package/dist/theme/registry.d.ts +0 -1
  306. package/dist/theme/schema.d.ts +0 -1
  307. package/dist/theme/spacing.d.ts +0 -1
  308. package/dist/theme/typography.d.ts +0 -1
  309. package/dist/themes/brand.d.ts +0 -1
  310. package/dist/themes/brand_engine.d.ts +7 -1
  311. package/dist/themes/dark.d.ts +0 -1
  312. package/dist/themes/default.d.ts +0 -1
  313. package/dist/themes/index.d.ts +0 -1
  314. package/dist/themes/minimal.d.ts +0 -1
  315. package/dist/themes/neon.d.ts +0 -1
  316. package/dist/themes/types.d.ts +0 -1
  317. package/dist/tokens/colors.d.ts +14 -20
  318. package/dist/tokens/components/alert.d.ts +74 -0
  319. package/dist/tokens/components/button.d.ts +130 -0
  320. package/dist/tokens/components/card.d.ts +91 -0
  321. package/dist/tokens/components/checkbox.d.ts +161 -0
  322. package/dist/tokens/components/data.d.ts +227 -0
  323. package/dist/tokens/components/domain.d.ts +379 -0
  324. package/dist/tokens/components/dropdown.d.ts +146 -0
  325. package/dist/tokens/components/icon.d.ts +57 -0
  326. package/dist/tokens/components/index.d.ts +31 -0
  327. package/dist/tokens/components/input.d.ts +284 -0
  328. package/dist/tokens/components/menu.d.ts +114 -0
  329. package/dist/tokens/components/motion.d.ts +103 -0
  330. package/dist/tokens/components/navigation.d.ts +181 -0
  331. package/dist/tokens/components/notifications.d.ts +159 -0
  332. package/dist/tokens/components/overlay.d.ts +227 -0
  333. package/dist/tokens/components/popover.d.ts +84 -0
  334. package/dist/tokens/components/radio.d.ts +149 -0
  335. package/dist/tokens/components/section.d.ts +41 -0
  336. package/dist/tokens/components/surface.d.ts +94 -0
  337. package/dist/tokens/components/switch.d.ts +208 -0
  338. package/dist/tokens/components/text.d.ts +68 -0
  339. package/dist/tokens/components/toast.d.ts +146 -0
  340. package/dist/tokens/components/tooltip.d.ts +52 -0
  341. package/dist/tokens/css-variables.d.ts +0 -20
  342. package/dist/tokens/index.cjs +3 -3
  343. package/dist/tokens/index.d.ts +2 -1
  344. package/dist/tokens/index.mjs +3640 -821
  345. package/dist/tokens/motion/v2.d.ts +342 -0
  346. package/dist/tokens/motion.d.ts +55 -5
  347. package/dist/tokens/opacity.d.ts +22 -0
  348. package/dist/tokens/radius.d.ts +22 -2
  349. package/dist/tokens/shadows.d.ts +64 -6
  350. package/dist/tokens/spacing.d.ts +47 -2
  351. package/dist/tokens/theme.d.ts +119 -0
  352. package/dist/tokens/typography.d.ts +141 -24
  353. package/dist/typography-C-Nb4y0o.cjs +2 -0
  354. package/dist/typography-DHym9KAP.js +1196 -0
  355. package/package.json +31 -22
  356. package/dist/ThemeProvider-CaUX_Jam.cjs +0 -2
  357. package/dist/ThemeProvider-ltuW-773.js +0 -1227
  358. package/dist/animation/index.d.ts.map +0 -1
  359. package/dist/animation/presets.d.ts.map +0 -1
  360. package/dist/animation/tas.d.ts.map +0 -1
  361. package/dist/animation/types.d.ts.map +0 -1
  362. package/dist/animation/utils.d.ts.map +0 -1
  363. package/dist/components/SectionBuilder.d.ts.map +0 -1
  364. package/dist/components/SectionBuilder.presets.d.ts.map +0 -1
  365. package/dist/components/SectionBuilder.types.d.ts.map +0 -1
  366. package/dist/components/admin/Dashboard.d.ts.map +0 -1
  367. package/dist/components/admin/UserManagement.d.ts.map +0 -1
  368. package/dist/components/auth/LoginForm.d.ts.map +0 -1
  369. package/dist/components/auth/ProfileCard.d.ts.map +0 -1
  370. package/dist/components/auth/RegisterForm.d.ts.map +0 -1
  371. package/dist/components/cards/EventCard.d.ts.map +0 -1
  372. package/dist/components/cards/VenueCard.d.ts.map +0 -1
  373. package/dist/components/controls/LanguageSelector.d.ts.map +0 -1
  374. package/dist/components/data/List.d.ts.map +0 -1
  375. package/dist/components/data/Table.d.ts.map +0 -1
  376. package/dist/components/data/Timeline.d.ts.map +0 -1
  377. package/dist/components/feedback/Alert.d.ts +0 -10
  378. package/dist/components/feedback/Alert.d.ts.map +0 -1
  379. package/dist/components/feedback/ConsentBanner.d.ts.map +0 -1
  380. package/dist/components/feedback/Progress.d.ts.map +0 -1
  381. package/dist/components/feedback/Skeleton.d.ts.map +0 -1
  382. package/dist/components/filters/DateRangePicker.d.ts.map +0 -1
  383. package/dist/components/filters/FilterBar.d.ts.map +0 -1
  384. package/dist/components/filters/FilterSelect.d.ts.map +0 -1
  385. package/dist/components/filters/PriceRangeSlider.d.ts.map +0 -1
  386. package/dist/components/filters/SearchFilters.d.ts.map +0 -1
  387. package/dist/components/filters/SearchInput.d.ts.map +0 -1
  388. package/dist/components/filters/types.d.ts.map +0 -1
  389. package/dist/components/forms/FormInput.d.ts +0 -12
  390. package/dist/components/forms/FormInput.d.ts.map +0 -1
  391. package/dist/components/forms/FormSelect.d.ts +0 -18
  392. package/dist/components/forms/FormSelect.d.ts.map +0 -1
  393. package/dist/components/forms/FormTextarea.d.ts +0 -11
  394. package/dist/components/forms/FormTextarea.d.ts.map +0 -1
  395. package/dist/components/icons/TrendingIcon.d.ts.map +0 -1
  396. package/dist/components/image/Image.d.ts.map +0 -1
  397. package/dist/components/layout/Box.d.ts.map +0 -1
  398. package/dist/components/layout/Container.d.ts.map +0 -1
  399. package/dist/components/layout/Flex.d.ts.map +0 -1
  400. package/dist/components/layout/Footer.d.ts.map +0 -1
  401. package/dist/components/layout/Grid.d.ts.map +0 -1
  402. package/dist/components/layout/ModeHero.d.ts.map +0 -1
  403. package/dist/components/layout/Navbar.d.ts.map +0 -1
  404. package/dist/components/layout/Section.d.ts.map +0 -1
  405. package/dist/components/layout/Stack.d.ts.map +0 -1
  406. package/dist/components/layout/index.d.ts.map +0 -1
  407. package/dist/components/layout/layout.types.d.ts.map +0 -1
  408. package/dist/components/menus/DropdownMenu.d.ts.map +0 -1
  409. package/dist/components/menus/NavigationMenu.d.ts.map +0 -1
  410. package/dist/components/menus/Tabs.d.ts.map +0 -1
  411. package/dist/components/modals/ConfirmDialog.d.ts.map +0 -1
  412. package/dist/components/modals/CustomDialog.d.ts.map +0 -1
  413. package/dist/components/modals/Modal.d.ts.map +0 -1
  414. package/dist/components/modals/ModalProvider.d.ts.map +0 -1
  415. package/dist/components/modals/SimpleModal.d.ts.map +0 -1
  416. package/dist/components/navigation/Breadcrumbs.d.ts.map +0 -1
  417. package/dist/components/navigation/Pagination.d.ts.map +0 -1
  418. package/dist/components/overlays/OverlayPortal.d.ts.map +0 -1
  419. package/dist/components/overlays/Popover.d.ts.map +0 -1
  420. package/dist/components/overlays/Tooltip.d.ts.map +0 -1
  421. package/dist/components/primitives/Badge.d.ts.map +0 -1
  422. package/dist/components/primitives/Button.d.ts.map +0 -1
  423. package/dist/components/primitives/Card.d.ts.map +0 -1
  424. package/dist/components/primitives/Divider.d.ts.map +0 -1
  425. package/dist/components/primitives/Input.d.ts.map +0 -1
  426. package/dist/components/primitives/Label.d.ts.map +0 -1
  427. package/dist/components/primitives/Link.d.ts.map +0 -1
  428. package/dist/components/primitives/ThemeSwitch.d.ts.map +0 -1
  429. package/dist/components/primitives/Typography.d.ts +0 -21
  430. package/dist/components/primitives/Typography.d.ts.map +0 -1
  431. package/dist/components/search/SearchBar.d.ts.map +0 -1
  432. package/dist/components/sections/ArticlesSection.d.ts.map +0 -1
  433. package/dist/components/sections/CTASection.d.ts.map +0 -1
  434. package/dist/components/sections/FeatureSection.d.ts.map +0 -1
  435. package/dist/components/sections/HeroSection.d.ts.map +0 -1
  436. package/dist/components/sections/TrendingSection.d.ts.map +0 -1
  437. package/dist/components/skeletons/EventCardSkeleton.d.ts.map +0 -1
  438. package/dist/components/skeletons/VenueCardSkeleton.d.ts.map +0 -1
  439. package/dist/components/toasts/Toast.d.ts.map +0 -1
  440. package/dist/components/toasts/ToastProvider.d.ts.map +0 -1
  441. package/dist/components/ui/button.d.ts.map +0 -1
  442. package/dist/components/ui/card.d.ts.map +0 -1
  443. package/dist/components/ui/dialog.d.ts.map +0 -1
  444. package/dist/components/ui/input.d.ts +0 -4
  445. package/dist/components/ui/input.d.ts.map +0 -1
  446. package/dist/components/ui/label.d.ts.map +0 -1
  447. package/dist/components/ui/toast.d.ts.map +0 -1
  448. package/dist/components/ui/toaster.d.ts.map +0 -1
  449. package/dist/components/ui/tooltip.d.ts.map +0 -1
  450. package/dist/hooks/use-toast.d.ts.map +0 -1
  451. package/dist/hooks/useDebounce.d.ts.map +0 -1
  452. package/dist/hooks/useModal.d.ts.map +0 -1
  453. package/dist/hooks/useToast.d.ts.map +0 -1
  454. package/dist/index.d.ts.map +0 -1
  455. package/dist/lib/a11y.d.ts.map +0 -1
  456. package/dist/lib/responsive-props.d.ts.map +0 -1
  457. package/dist/lib/utils.d.ts.map +0 -1
  458. package/dist/motion-4SRNkZlz.cjs +0 -2
  459. package/dist/preset.d.ts.map +0 -1
  460. package/dist/radius-CAu4qr9R.js +0 -185
  461. package/dist/radius-Cz6tayZG.cjs +0 -2
  462. package/dist/test/animation-utils.d.ts +0 -60
  463. package/dist/test/animation-utils.d.ts.map +0 -1
  464. package/dist/test/setup.d.ts +0 -1
  465. package/dist/test/setup.d.ts.map +0 -1
  466. package/dist/theme/ThemeProvider.d.ts.map +0 -1
  467. package/dist/theme/applyMode.d.ts.map +0 -1
  468. package/dist/theme/colors.d.ts.map +0 -1
  469. package/dist/theme/index.d.ts.map +0 -1
  470. package/dist/theme/loader.d.ts.map +0 -1
  471. package/dist/theme/motion.d.ts.map +0 -1
  472. package/dist/theme/registry.d.ts.map +0 -1
  473. package/dist/theme/schema.d.ts.map +0 -1
  474. package/dist/theme/spacing.d.ts.map +0 -1
  475. package/dist/theme/typography.d.ts.map +0 -1
  476. package/dist/themes/brand.d.ts.map +0 -1
  477. package/dist/themes/brand_engine.d.ts.map +0 -1
  478. package/dist/themes/dark.d.ts.map +0 -1
  479. package/dist/themes/default.d.ts.map +0 -1
  480. package/dist/themes/index.d.ts.map +0 -1
  481. package/dist/themes/minimal.d.ts.map +0 -1
  482. package/dist/themes/neon.d.ts.map +0 -1
  483. package/dist/themes/types.d.ts.map +0 -1
  484. package/dist/tokens/colors.d.ts.map +0 -1
  485. package/dist/tokens/css-variables.d.ts.map +0 -1
  486. package/dist/tokens/index.d.ts.map +0 -1
  487. package/dist/tokens/motion.d.ts.map +0 -1
  488. package/dist/tokens/radius.d.ts.map +0 -1
  489. package/dist/tokens/shadows.d.ts.map +0 -1
  490. package/dist/tokens/spacing.d.ts.map +0 -1
  491. package/dist/tokens/typography.d.ts.map +0 -1
@@ -0,0 +1,32 @@
1
+ /**
2
+ * Select Variants
3
+ *
4
+ * CVA-based variant system for Select component.
5
+ * Supports variants (primary, secondary, outline, ghost),
6
+ * sizes (xs, sm, md, lg), and states (open, closed, disabled).
7
+ * All styling uses token-based values with CSS variable references.
8
+ */
9
+ /**
10
+ * Select Trigger Variants
11
+ * Button element that opens/closes the dropdown
12
+ */
13
+ export declare const selectTriggerVariants: (props?: ({
14
+ variant?: "primary" | "secondary" | "outline" | "ghost" | null | undefined;
15
+ size?: "sm" | "md" | "lg" | "xs" | null | undefined;
16
+ state?: "disabled" | "closed" | "open" | null | undefined;
17
+ } & import('class-variance-authority/types').ClassProp) | undefined) => string;
18
+ /**
19
+ * Select Listbox Variants
20
+ * Container for the dropdown options
21
+ */
22
+ export declare const selectListboxVariants: (props?: ({
23
+ size?: "sm" | "md" | "lg" | "xs" | null | undefined;
24
+ } & import('class-variance-authority/types').ClassProp) | undefined) => string;
25
+ /**
26
+ * Select Option Variants
27
+ * Individual option item in the listbox
28
+ */
29
+ export declare const selectOptionVariants: (props?: ({
30
+ size?: "sm" | "md" | "lg" | "xs" | null | undefined;
31
+ state?: "disabled" | "default" | "selected" | null | undefined;
32
+ } & import('class-variance-authority/types').ClassProp) | undefined) => string;
@@ -4,4 +4,3 @@ interface EventCardSkeletonProps {
4
4
  }
5
5
  export declare const EventCardSkeleton: React.FC<EventCardSkeletonProps>;
6
6
  export {};
7
- //# sourceMappingURL=EventCardSkeleton.d.ts.map
@@ -4,4 +4,3 @@ interface VenueCardSkeletonProps {
4
4
  }
5
5
  export declare const VenueCardSkeleton: React.FC<VenueCardSkeletonProps>;
6
6
  export {};
7
- //# sourceMappingURL=VenueCardSkeleton.d.ts.map
@@ -0,0 +1,24 @@
1
+ import { SwitchProps } from './Switch.types';
2
+ import * as React from "react";
3
+ /**
4
+ * Switch Component
5
+ *
6
+ * A fully accessible, theme-aware switch component with variant support,
7
+ * keyboard navigation, and comprehensive state management.
8
+ * Uses button role="switch" pattern for full accessibility.
9
+ *
10
+ * The switch consists of a track (container) and handle (thumb) that slides within the track.
11
+ *
12
+ * @example
13
+ * ```tsx
14
+ * <Switch
15
+ * variant="primary"
16
+ * size="md"
17
+ * checked={isChecked}
18
+ * onCheckedChange={setIsChecked}
19
+ * aria-label="Enable notifications"
20
+ * />
21
+ * ```
22
+ */
23
+ declare const Switch: React.ForwardRefExoticComponent<SwitchProps & React.RefAttributes<HTMLButtonElement>>;
24
+ export { Switch };
@@ -0,0 +1,53 @@
1
+ import { VariantProps } from 'class-variance-authority';
2
+ import { switchTrackVariants } from './switch-variants';
3
+ import * as React from "react";
4
+ /**
5
+ * Switch Component Props
6
+ *
7
+ * Extends native button HTML attributes with variant props, checked state, and accessibility props.
8
+ * Uses button role="switch" pattern for full keyboard accessibility.
9
+ */
10
+ export interface SwitchProps extends Omit<React.ButtonHTMLAttributes<HTMLButtonElement>, "size" | "onChange">, VariantProps<typeof switchTrackVariants> {
11
+ /**
12
+ * Switch variant style
13
+ * @default "primary"
14
+ */
15
+ variant?: "primary" | "secondary" | "outline" | "ghost" | "destructive";
16
+ /**
17
+ * Switch size
18
+ * @default "md"
19
+ */
20
+ size?: "xs" | "sm" | "md" | "lg" | "xl";
21
+ /**
22
+ * Switch state
23
+ * @default "default"
24
+ */
25
+ state?: "default" | "checked" | "disabled" | "error";
26
+ /**
27
+ * Whether switch is checked (controlled)
28
+ */
29
+ checked?: boolean;
30
+ /**
31
+ * Whether switch is disabled
32
+ */
33
+ disabled?: boolean;
34
+ /**
35
+ * Callback fired when checked state changes
36
+ */
37
+ onCheckedChange?: (checked: boolean) => void;
38
+ /**
39
+ * ARIA label for the switch
40
+ * Required if no visible label is present
41
+ */
42
+ "aria-label"?: string;
43
+ /**
44
+ * ARIA labelledby reference
45
+ * Points to the ID of the element that labels this switch
46
+ */
47
+ "aria-labelledby"?: string;
48
+ /**
49
+ * ARIA describedby reference
50
+ * Points to the ID of the element that describes this switch
51
+ */
52
+ "aria-describedby"?: string;
53
+ }
@@ -0,0 +1,3 @@
1
+ export { Switch } from './Switch';
2
+ export type { SwitchProps } from './Switch.types';
3
+ export { switchHandleStateVariants, switchHandleVariants, switchTrackVariants, } from './switch-variants';
@@ -0,0 +1,34 @@
1
+ /**
2
+ * Switch Variants
3
+ *
4
+ * CVA-based variant system for Switch component.
5
+ * Supports variants (primary, secondary, outline, ghost, destructive),
6
+ * sizes (xs, sm, md, lg, xl), and states (default, checked, disabled, error).
7
+ * All styling uses token-based values with CSS variable references.
8
+ *
9
+ * Switch consists of a track (container) and handle (thumb) that slides within the track.
10
+ */
11
+ export declare const switchTrackVariants: (props?: ({
12
+ variant?: "primary" | "secondary" | "destructive" | "outline" | "ghost" | null | undefined;
13
+ size?: "sm" | "md" | "lg" | "xl" | "xs" | null | undefined;
14
+ state?: "disabled" | "default" | "error" | "checked" | "disabledChecked" | null | undefined;
15
+ } & import('class-variance-authority/types').ClassProp) | undefined) => string;
16
+ /**
17
+ * Switch Handle Variants
18
+ *
19
+ * CVA-based variant system for Switch handle (thumb).
20
+ * The handle is positioned absolutely within the track and slides on toggle.
21
+ */
22
+ export declare const switchHandleVariants: (props?: ({
23
+ size?: "sm" | "md" | "lg" | "xl" | "xs" | null | undefined;
24
+ checked?: boolean | null | undefined;
25
+ } & import('class-variance-authority/types').ClassProp) | undefined) => string;
26
+ /**
27
+ * Switch Handle State Variants
28
+ *
29
+ * Color variants for the handle based on state.
30
+ */
31
+ export declare const switchHandleStateVariants: (props?: ({
32
+ variant?: "primary" | "secondary" | "destructive" | "outline" | "ghost" | null | undefined;
33
+ state?: "disabled" | "default" | "error" | "checked" | "disabledChecked" | null | undefined;
34
+ } & import('class-variance-authority/types').ClassProp) | undefined) => string;
@@ -0,0 +1,21 @@
1
+ import { TextareaProps } from './Textarea.types';
2
+ import * as React from "react";
3
+ /**
4
+ * Textarea Component
5
+ *
6
+ * A fully accessible, theme-aware textarea component with variant support,
7
+ * character counter, and comprehensive state management.
8
+ *
9
+ * @example
10
+ * ```tsx
11
+ * <Textarea
12
+ * variant="outline"
13
+ * size="md"
14
+ * placeholder="Enter text..."
15
+ * showCharacterCount
16
+ * maxLength={200}
17
+ * />
18
+ * ```
19
+ */
20
+ declare const Textarea: React.ForwardRefExoticComponent<TextareaProps & React.RefAttributes<HTMLTextAreaElement>>;
21
+ export { Textarea };
@@ -0,0 +1,40 @@
1
+ import { VariantProps } from 'class-variance-authority';
2
+ import { textareaVariants } from './textarea-variants';
3
+ import * as React from "react";
4
+ /**
5
+ * Textarea Component Props
6
+ *
7
+ * Extends native textarea HTML attributes with variant props, character counter, and accessibility props.
8
+ */
9
+ export interface TextareaProps extends React.TextareaHTMLAttributes<HTMLTextAreaElement>, VariantProps<typeof textareaVariants> {
10
+ /**
11
+ * Textarea variant style
12
+ * @default "outline"
13
+ */
14
+ variant?: "primary" | "secondary" | "outline" | "ghost" | "destructive";
15
+ /**
16
+ * Textarea size
17
+ * @default "md"
18
+ */
19
+ size?: "xs" | "sm" | "md" | "lg" | "xl";
20
+ /**
21
+ * Textarea state
22
+ * @default "default"
23
+ */
24
+ state?: "default" | "disabled" | "error" | "success";
25
+ /**
26
+ * Whether textarea should take full width
27
+ * @default true
28
+ */
29
+ fullWidth?: boolean;
30
+ /**
31
+ * Maximum character length (for character counter)
32
+ */
33
+ maxLength?: number;
34
+ /**
35
+ * Show character counter
36
+ * Only displays when both showCharacterCount and maxLength are provided
37
+ * @default false
38
+ */
39
+ showCharacterCount?: boolean;
40
+ }
@@ -0,0 +1,3 @@
1
+ export { Textarea } from './Textarea';
2
+ export type { TextareaProps } from './Textarea.types';
3
+ export { textareaVariants } from './textarea-variants';
@@ -0,0 +1,11 @@
1
+ import { VariantProps } from 'class-variance-authority';
2
+ import * as React from "react";
3
+ declare const textareaVariants: (props?: ({
4
+ size?: "sm" | "md" | "lg" | null | undefined;
5
+ state?: "disabled" | "default" | "error" | null | undefined;
6
+ fullWidth?: boolean | null | undefined;
7
+ } & import('class-variance-authority/types').ClassProp) | undefined) => string;
8
+ export interface TextareaProps extends React.TextareaHTMLAttributes<HTMLTextAreaElement>, VariantProps<typeof textareaVariants> {
9
+ }
10
+ declare const Textarea: React.ForwardRefExoticComponent<TextareaProps & React.RefAttributes<HTMLTextAreaElement>>;
11
+ export { Textarea, textareaVariants };
@@ -0,0 +1,14 @@
1
+ /**
2
+ * Textarea Variants
3
+ *
4
+ * CVA-based variant system for Textarea component.
5
+ * Supports variants (primary, secondary, outline, ghost, destructive),
6
+ * sizes (xs, sm, md, lg, xl), and states (default, disabled, error, success).
7
+ * All styling uses token-based values with CSS variable references.
8
+ */
9
+ export declare const textareaVariants: (props?: ({
10
+ variant?: "primary" | "secondary" | "destructive" | "outline" | "ghost" | null | undefined;
11
+ size?: "sm" | "md" | "lg" | "xl" | "xs" | null | undefined;
12
+ state?: "disabled" | "default" | "success" | "error" | null | undefined;
13
+ fullWidth?: boolean | null | undefined;
14
+ } & import('class-variance-authority/types').ClassProp) | undefined) => string;
@@ -2,7 +2,7 @@ import { VariantProps } from 'class-variance-authority';
2
2
  import { Toast as ToastType } from '../../hooks/useToast';
3
3
  import * as React from "react";
4
4
  declare const toastVariants: (props?: ({
5
- type?: "primary" | "secondary" | "accent" | "destructive" | "default" | "error" | "success" | "warning" | "info" | null | undefined;
5
+ type?: "primary" | "secondary" | "accent" | "destructive" | "default" | "success" | "warning" | "info" | "error" | null | undefined;
6
6
  } & import('class-variance-authority/types').ClassProp) | undefined) => string;
7
7
  export interface ToastProps extends React.HTMLAttributes<HTMLDivElement>, VariantProps<typeof toastVariants> {
8
8
  toast: ToastType;
@@ -10,4 +10,3 @@ export interface ToastProps extends React.HTMLAttributes<HTMLDivElement>, Varian
10
10
  }
11
11
  declare const Toast: React.ForwardRefExoticComponent<ToastProps & React.RefAttributes<HTMLDivElement>>;
12
12
  export { Toast, toastVariants };
13
- //# sourceMappingURL=Toast.d.ts.map
@@ -24,4 +24,3 @@ export declare function useToast(): {
24
24
  info: (data: Omit<Toast, "id" | "type">) => string;
25
25
  };
26
26
  export {};
27
- //# sourceMappingURL=ToastProvider.d.ts.map
@@ -0,0 +1,9 @@
1
+ import { VariantProps } from 'class-variance-authority';
2
+ import * as React from "react";
3
+ declare const alertVariants: (props?: ({
4
+ variant?: "primary" | "secondary" | "accent" | "destructive" | "default" | "success" | "warning" | "danger" | "info" | null | undefined;
5
+ } & import('class-variance-authority/types').ClassProp) | undefined) => string;
6
+ export interface AlertProps extends React.HTMLAttributes<HTMLDivElement>, VariantProps<typeof alertVariants> {
7
+ }
8
+ declare const Alert: React.ForwardRefExoticComponent<AlertProps & React.RefAttributes<HTMLDivElement>>;
9
+ export { Alert, alertVariants };
@@ -0,0 +1,12 @@
1
+ import { VariantProps } from 'class-variance-authority';
2
+ import * as React from "react";
3
+ declare const bodyVariants: (props?: ({
4
+ size?: "md" | "lg" | null | undefined;
5
+ weight?: "normal" | "medium" | "semibold" | "bold" | null | undefined;
6
+ muted?: boolean | null | undefined;
7
+ } & import('class-variance-authority/types').ClassProp) | undefined) => string;
8
+ export interface BodyProps extends React.HTMLAttributes<HTMLParagraphElement>, VariantProps<typeof bodyVariants> {
9
+ as?: "p" | "span" | "div";
10
+ }
11
+ declare const Body: React.ForwardRefExoticComponent<BodyProps & React.RefAttributes<HTMLElement>>;
12
+ export { Body, bodyVariants };
@@ -1,8 +1,8 @@
1
1
  import { VariantProps } from 'class-variance-authority';
2
2
  import * as React from "react";
3
3
  declare const buttonVariants: (props?: ({
4
- variant?: "primary" | "secondary" | "accent" | "destructive" | "link" | "outline" | "ghost" | null | undefined;
5
- size?: "sm" | "md" | "lg" | "xl" | "xs" | "icon" | null | undefined;
4
+ variant?: "primary" | "secondary" | "accent" | "destructive" | "outline" | "ghost" | null | undefined;
5
+ size?: "sm" | "md" | "lg" | "icon" | null | undefined;
6
6
  } & import('class-variance-authority/types').ClassProp) | undefined) => string;
7
7
  export interface ButtonProps extends React.ButtonHTMLAttributes<HTMLButtonElement>, VariantProps<typeof buttonVariants> {
8
8
  asChild?: boolean;
@@ -11,4 +11,3 @@ export interface ButtonProps extends React.ButtonHTMLAttributes<HTMLButtonElemen
11
11
  }
12
12
  declare const Button: React.ForwardRefExoticComponent<ButtonProps & React.RefAttributes<HTMLButtonElement>>;
13
13
  export { Button, buttonVariants };
14
- //# sourceMappingURL=button.d.ts.map
@@ -0,0 +1,11 @@
1
+ import { VariantProps } from 'class-variance-authority';
2
+ import * as React from "react";
3
+ declare const captionVariants: (props?: ({
4
+ weight?: "normal" | "medium" | null | undefined;
5
+ muted?: boolean | null | undefined;
6
+ } & import('class-variance-authority/types').ClassProp) | undefined) => string;
7
+ export interface CaptionProps extends React.HTMLAttributes<HTMLSpanElement>, VariantProps<typeof captionVariants> {
8
+ as?: "span" | "p" | "div";
9
+ }
10
+ declare const Caption: React.ForwardRefExoticComponent<CaptionProps & React.RefAttributes<HTMLElement>>;
11
+ export { Caption, captionVariants };
@@ -6,4 +6,3 @@ declare const CardDescription: React.ForwardRefExoticComponent<React.HTMLAttribu
6
6
  declare const CardContent: React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLDivElement> & React.RefAttributes<HTMLDivElement>>;
7
7
  declare const CardFooter: React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLDivElement> & React.RefAttributes<HTMLDivElement>>;
8
8
  export { Card, CardContent, CardDescription, CardFooter, CardHeader, CardTitle };
9
- //# sourceMappingURL=card.d.ts.map
@@ -0,0 +1,11 @@
1
+ import { VariantProps } from 'class-variance-authority';
2
+ import * as React from "react";
3
+ declare const codeVariants: (props?: ({
4
+ variant?: "inline" | "block" | null | undefined;
5
+ muted?: boolean | null | undefined;
6
+ } & import('class-variance-authority/types').ClassProp) | undefined) => string;
7
+ export interface CodeProps extends React.HTMLAttributes<HTMLElement>, VariantProps<typeof codeVariants> {
8
+ as?: "code" | "pre";
9
+ }
10
+ declare const Code: React.ForwardRefExoticComponent<CodeProps & React.RefAttributes<HTMLElement>>;
11
+ export { Code, codeVariants };
@@ -17,4 +17,3 @@ declare const DialogFooter: {
17
17
  declare const DialogTitle: React.ForwardRefExoticComponent<Omit<DialogPrimitive.DialogTitleProps & React.RefAttributes<HTMLHeadingElement>, "ref"> & React.RefAttributes<HTMLHeadingElement>>;
18
18
  declare const DialogDescription: React.ForwardRefExoticComponent<Omit<DialogPrimitive.DialogDescriptionProps & React.RefAttributes<HTMLParagraphElement>, "ref"> & React.RefAttributes<HTMLParagraphElement>>;
19
19
  export { Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogTitle, DialogTrigger, };
20
- //# sourceMappingURL=dialog.d.ts.map
@@ -0,0 +1,12 @@
1
+ import { VariantProps } from 'class-variance-authority';
2
+ import * as React from "react";
3
+ declare const displayVariants: (props?: ({
4
+ size?: "2xl" | "3xl" | "4xl" | "xl" | null | undefined;
5
+ weight?: "normal" | "medium" | "semibold" | "bold" | null | undefined;
6
+ muted?: boolean | null | undefined;
7
+ } & import('class-variance-authority/types').ClassProp) | undefined) => string;
8
+ export interface DisplayProps extends React.HTMLAttributes<HTMLHeadingElement>, VariantProps<typeof displayVariants> {
9
+ as?: "h1" | "h2" | "div";
10
+ }
11
+ declare const Display: React.ForwardRefExoticComponent<DisplayProps & React.RefAttributes<HTMLElement>>;
12
+ export { Display, displayVariants };
@@ -0,0 +1,45 @@
1
+ import { Label } from './label';
2
+ import { Text } from './text';
3
+ import * as React from "react";
4
+ /**
5
+ * Field Container Component
6
+ * Provides spacing between field elements using Stack
7
+ */
8
+ export interface FieldProps extends React.HTMLAttributes<HTMLDivElement> {
9
+ }
10
+ declare const Field: React.ForwardRefExoticComponent<FieldProps & React.RefAttributes<HTMLDivElement>>;
11
+ /**
12
+ * Field Label Component
13
+ * Wraps Label component with proper styling
14
+ */
15
+ export interface FieldLabelProps extends React.ComponentProps<typeof Label> {
16
+ }
17
+ declare const FieldLabel: React.ForwardRefExoticComponent<Omit<FieldLabelProps, "ref"> & React.RefAttributes<HTMLLabelElement>>;
18
+ /**
19
+ * Field Control Component
20
+ * Wrapper for input/textarea/select controls
21
+ */
22
+ export interface FieldControlProps extends React.HTMLAttributes<HTMLDivElement> {
23
+ }
24
+ declare const FieldControl: React.ForwardRefExoticComponent<FieldControlProps & React.RefAttributes<HTMLDivElement>>;
25
+ /**
26
+ * Field Description Component
27
+ * Helper text displayed below the control
28
+ */
29
+ export interface FieldDescriptionProps extends React.ComponentProps<typeof Text> {
30
+ }
31
+ declare const FieldDescription: React.ForwardRefExoticComponent<Omit<FieldDescriptionProps, "ref"> & React.RefAttributes<HTMLSpanElement>>;
32
+ /**
33
+ * Field Error Component
34
+ * Error message displayed below the control
35
+ */
36
+ export interface FieldErrorProps extends React.ComponentProps<typeof Text> {
37
+ }
38
+ declare const FieldError: React.ForwardRefExoticComponent<Omit<FieldErrorProps, "ref"> & React.RefAttributes<HTMLSpanElement>>;
39
+ declare const FieldRoot: typeof Field & {
40
+ Label: typeof FieldLabel;
41
+ Control: typeof FieldControl;
42
+ Description: typeof FieldDescription;
43
+ Error: typeof FieldError;
44
+ };
45
+ export { FieldRoot as Field };
@@ -0,0 +1,12 @@
1
+ import { VariantProps } from 'class-variance-authority';
2
+ import * as React from "react";
3
+ declare const headingVariants: (props?: ({
4
+ level?: 1 | 2 | 4 | 6 | 3 | 5 | null | undefined;
5
+ weight?: "normal" | "medium" | "semibold" | "bold" | null | undefined;
6
+ muted?: boolean | null | undefined;
7
+ } & import('class-variance-authority/types').ClassProp) | undefined) => string;
8
+ export interface HeadingProps extends React.HTMLAttributes<HTMLHeadingElement>, VariantProps<typeof headingVariants> {
9
+ as?: "h1" | "h2" | "h3" | "h4" | "h5" | "h6";
10
+ }
11
+ declare const Heading: React.ForwardRefExoticComponent<HeadingProps & React.RefAttributes<HTMLHeadingElement>>;
12
+ export { Heading, headingVariants };
@@ -1,6 +1,12 @@
1
1
  import { VariantProps } from 'class-variance-authority';
2
2
  import * as LabelPrimitive from "@radix-ui/react-label";
3
3
  import * as React from "react";
4
- declare const Label: React.ForwardRefExoticComponent<Omit<LabelPrimitive.LabelProps & React.RefAttributes<HTMLLabelElement>, "ref"> & VariantProps<(props?: import('class-variance-authority/types').ClassProp | undefined) => string> & React.RefAttributes<HTMLLabelElement>>;
5
- export { Label };
6
- //# sourceMappingURL=label.d.ts.map
4
+ declare const labelVariants: (props?: import('class-variance-authority/types').ClassProp | undefined) => string;
5
+ export interface LabelProps extends React.ComponentPropsWithoutRef<typeof LabelPrimitive.Root>, VariantProps<typeof labelVariants> {
6
+ /**
7
+ * Whether the field is required (shows asterisk)
8
+ */
9
+ required?: boolean;
10
+ }
11
+ declare const Label: React.ForwardRefExoticComponent<LabelProps & React.RefAttributes<HTMLLabelElement>>;
12
+ export { Label, labelVariants };
@@ -0,0 +1,11 @@
1
+ import { VariantProps } from 'class-variance-authority';
2
+ import * as React from "react";
3
+ declare const leadVariants: (props?: ({
4
+ size?: "lg" | "xl" | null | undefined;
5
+ muted?: boolean | null | undefined;
6
+ } & import('class-variance-authority/types').ClassProp) | undefined) => string;
7
+ export interface LeadProps extends React.HTMLAttributes<HTMLParagraphElement>, VariantProps<typeof leadVariants> {
8
+ as?: "p" | "span" | "div";
9
+ }
10
+ declare const Lead: React.ForwardRefExoticComponent<LeadProps & React.RefAttributes<HTMLElement>>;
11
+ export { Lead, leadVariants };
@@ -0,0 +1,18 @@
1
+ import { VariantProps } from 'class-variance-authority';
2
+ import * as React from "react";
3
+ declare const textVariants: (props?: ({
4
+ size?: "sm" | "md" | "lg" | "xl" | "xs" | null | undefined;
5
+ weight?: "normal" | "medium" | "semibold" | "bold" | null | undefined;
6
+ muted?: boolean | null | undefined;
7
+ variant?: "primary" | "secondary" | "muted" | "accent" | "destructive" | "outline" | "ghost" | "link" | null | undefined;
8
+ } & import('class-variance-authority/types').ClassProp) | undefined) => string;
9
+ export interface TextProps extends React.HTMLAttributes<HTMLSpanElement>, VariantProps<typeof textVariants> {
10
+ /**
11
+ * @deprecated Use muted prop or semantic text colors instead
12
+ */
13
+ variant?: "primary" | "secondary" | "accent" | "outline" | "ghost" | "link" | "destructive" | "muted";
14
+ }
15
+ declare const Text: React.ForwardRefExoticComponent<TextProps & React.RefAttributes<HTMLSpanElement>>;
16
+ export type TextSize = VariantProps<typeof textVariants>["size"];
17
+ export type TextWeight = VariantProps<typeof textVariants>["weight"];
18
+ export { Text, textVariants };
@@ -13,4 +13,3 @@ declare const ToastDescription: React.ForwardRefExoticComponent<Omit<ToastPrimit
13
13
  type ToastProps = React.ComponentPropsWithoutRef<typeof Toast>;
14
14
  type ToastActionElement = React.ReactElement<typeof ToastAction>;
15
15
  export { Toast, ToastAction, type ToastActionElement, ToastClose, ToastDescription, type ToastProps, ToastProvider, ToastTitle, ToastViewport, };
16
- //# sourceMappingURL=toast.d.ts.map
@@ -1,2 +1 @@
1
1
  export declare function Toaster(): import("react/jsx-runtime").JSX.Element;
2
- //# sourceMappingURL=toaster.d.ts.map
@@ -5,4 +5,3 @@ declare const Tooltip: React.FC<TooltipPrimitive.TooltipProps>;
5
5
  declare const TooltipTrigger: React.ForwardRefExoticComponent<TooltipPrimitive.TooltipTriggerProps & React.RefAttributes<HTMLButtonElement>>;
6
6
  declare const TooltipContent: React.ForwardRefExoticComponent<Omit<TooltipPrimitive.TooltipContentProps & React.RefAttributes<HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
7
7
  export { Tooltip, TooltipContent, TooltipProvider, TooltipTrigger };
8
- //# sourceMappingURL=tooltip.d.ts.map
@@ -42,4 +42,3 @@ declare function useToast(): {
42
42
  toasts: ToasterToast[];
43
43
  };
44
44
  export { toast, useToast };
45
- //# sourceMappingURL=use-toast.d.ts.map
@@ -17,4 +17,3 @@
17
17
  * ```
18
18
  */
19
19
  export declare function useDebounce<T>(value: T, delay: number): T;
20
- //# sourceMappingURL=useDebounce.d.ts.map
@@ -17,4 +17,3 @@ export declare function useModalManager(): {
17
17
  isModalOpen: (modalId: string) => boolean;
18
18
  getModalData: (modalId: string) => unknown;
19
19
  };
20
- //# sourceMappingURL=useModal.d.ts.map
@@ -24,4 +24,3 @@ export declare function useToastManager(): {
24
24
  dismissAll: () => void;
25
25
  updateToast: (toastId: string, updates: Partial<Toast>) => void;
26
26
  };
27
- //# sourceMappingURL=useToast.d.ts.map
@@ -0,0 +1,6 @@
1
+ import { IconProps } from './icon.types';
2
+ import * as React from "react";
3
+ /**
4
+ * Arrow right icon component
5
+ */
6
+ export declare const IconArrowRight: React.FC<IconProps>;
@@ -0,0 +1,6 @@
1
+ import { IconProps } from './icon.types';
2
+ import * as React from "react";
3
+ /**
4
+ * Calendar icon component
5
+ */
6
+ export declare const IconCalendar: React.FC<IconProps>;
@@ -0,0 +1,6 @@
1
+ import { IconProps } from './icon.types';
2
+ import * as React from "react";
3
+ /**
4
+ * Check icon component (checkmark)
5
+ */
6
+ export declare const IconCheck: React.FC<IconProps>;
@@ -0,0 +1,6 @@
1
+ import { IconProps } from './icon.types';
2
+ import * as React from "react";
3
+ /**
4
+ * Chevron down icon component
5
+ */
6
+ export declare const IconChevronDown: React.FC<IconProps>;
@@ -0,0 +1,6 @@
1
+ import { IconProps } from './icon.types';
2
+ import * as React from "react";
3
+ /**
4
+ * Chevron right icon component
5
+ */
6
+ export declare const IconChevronRight: React.FC<IconProps>;
@@ -0,0 +1,6 @@
1
+ import { IconProps } from './icon.types';
2
+ import * as React from "react";
3
+ /**
4
+ * Close icon component (X)
5
+ */
6
+ export declare const IconClose: React.FC<IconProps>;
@@ -0,0 +1,6 @@
1
+ import { IconProps } from './icon.types';
2
+ import * as React from "react";
3
+ /**
4
+ * Error icon component (X in circle - used as fallback)
5
+ */
6
+ export declare const IconError: React.FC<IconProps>;
@@ -0,0 +1,6 @@
1
+ import { IconProps } from './icon.types';
2
+ import * as React from "react";
3
+ /**
4
+ * Info icon component (information circle)
5
+ */
6
+ export declare const IconInfo: React.FC<IconProps>;
@@ -0,0 +1,6 @@
1
+ import { IconProps } from './icon.types';
2
+ import * as React from "react";
3
+ /**
4
+ * Location icon component
5
+ */
6
+ export declare const IconLocation: React.FC<IconProps>;
@@ -0,0 +1,6 @@
1
+ import { IconProps } from './icon.types';
2
+ import * as React from "react";
3
+ /**
4
+ * Menu icon component (hamburger menu)
5
+ */
6
+ export declare const IconMenu: React.FC<IconProps>;
@@ -0,0 +1,6 @@
1
+ import { IconProps } from './icon.types';
2
+ import * as React from "react";
3
+ /**
4
+ * Search icon component
5
+ */
6
+ export declare const IconSearch: React.FC<IconProps>;
@@ -0,0 +1,6 @@
1
+ import { IconProps } from './icon.types';
2
+ import * as React from "react";
3
+ /**
4
+ * Success icon component (checkmark in circle)
5
+ */
6
+ export declare const IconSuccess: React.FC<IconProps>;
@@ -0,0 +1,6 @@
1
+ import { IconProps } from './icon.types';
2
+ import * as React from "react";
3
+ /**
4
+ * Warning icon component (warning triangle)
5
+ */
6
+ export declare const IconWarning: React.FC<IconProps>;