@catalystsoftware/ui 1.0.12 → 1.0.15

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 (1839) hide show
  1. package/dist/components/catalyst-ui/background/animated-beam.tsx +189 -0
  2. package/dist/components/catalyst-ui/background/background-gradient.tsx +77 -0
  3. package/dist/components/catalyst-ui/background/background-paths.tsx +132 -0
  4. package/dist/components/catalyst-ui/background/canvas-fractal-grid.tsx +1862 -0
  5. package/dist/components/catalyst-ui/background/distorted-glass.tsx +0 -0
  6. package/dist/components/catalyst-ui/background/dot-pattern.tsx +169 -0
  7. package/dist/components/catalyst-ui/background/dotted-glow-background.tsx +342 -0
  8. package/dist/components/catalyst-ui/background/dotted-map.tsx +193 -0
  9. package/dist/components/catalyst-ui/background/dynamic-rain.tsx +216 -0
  10. package/dist/components/catalyst-ui/background/flickering-grid.tsx +211 -0
  11. package/dist/components/catalyst-ui/background/fractal-grid.tsx +666 -0
  12. package/dist/components/catalyst-ui/background/hexagon-background.tsx +102 -0
  13. package/dist/components/catalyst-ui/background/index.ts +25 -0
  14. package/dist/components/catalyst-ui/background/interactive-grid-pattern.tsx +90 -0
  15. package/dist/components/catalyst-ui/background/lamp.tsx +105 -0
  16. package/dist/components/catalyst-ui/background/orbiting-circles.tsx +76 -0
  17. package/dist/components/catalyst-ui/background/particles.tsx +286 -0
  18. package/dist/components/catalyst-ui/background/progressive-blur.tsx +113 -0
  19. package/dist/components/catalyst-ui/background/retro-grid-background.tsx +104 -0
  20. package/dist/components/catalyst-ui/background/smoke.tsx +117 -0
  21. package/dist/components/catalyst-ui/background/sparkles.tsx +435 -0
  22. package/dist/components/catalyst-ui/background/stripe-bg-guides.tsx +260 -0
  23. package/dist/components/catalyst-ui/background/texture-overlay.tsx +207 -0
  24. package/dist/components/catalyst-ui/background/vortex.tsx +257 -0
  25. package/dist/components/catalyst-ui/buttons/animated-theme-toggler.tsx +90 -0
  26. package/dist/components/catalyst-ui/buttons/attract-button.tsx +167 -0
  27. package/dist/components/catalyst-ui/buttons/bg-animate-button.tsx +249 -0
  28. package/dist/components/catalyst-ui/buttons/button-group.tsx +203 -0
  29. package/dist/components/catalyst-ui/buttons/command-button.tsx +109 -0
  30. package/dist/components/catalyst-ui/buttons/copy-button.tsx +117 -0
  31. package/dist/components/catalyst-ui/buttons/copy-text.tsx +347 -0
  32. package/dist/components/catalyst-ui/buttons/export-file.tsx +262 -0
  33. package/dist/components/catalyst-ui/buttons/flip-button.tsx +106 -0
  34. package/dist/components/catalyst-ui/buttons/float-button.tsx +197 -0
  35. package/dist/components/catalyst-ui/buttons/form-button.tsx +90 -0
  36. package/dist/components/catalyst-ui/buttons/hold-button.tsx +208 -0
  37. package/dist/components/catalyst-ui/buttons/index.ts +35 -0
  38. package/dist/components/catalyst-ui/buttons/input-button.tsx +192 -0
  39. package/dist/components/catalyst-ui/buttons/liquid-button.tsx +53 -0
  40. package/dist/components/catalyst-ui/buttons/particle-button.tsx +193 -0
  41. package/dist/components/catalyst-ui/buttons/rating-button-1.tsx +243 -0
  42. package/dist/components/catalyst-ui/buttons/rating-button.tsx +226 -0
  43. package/dist/components/catalyst-ui/buttons/ripple-button.tsx +146 -0
  44. package/dist/components/catalyst-ui/buttons/scroll-to-top.tsx +47 -0
  45. package/dist/components/catalyst-ui/buttons/shimmer-button.tsx +84 -0
  46. package/dist/components/catalyst-ui/buttons/slide-button.tsx +90 -0
  47. package/dist/components/catalyst-ui/buttons/social-button.tsx +194 -0
  48. package/dist/components/catalyst-ui/buttons/split-button.tsx +121 -0
  49. package/dist/components/catalyst-ui/buttons/switch-button.tsx +316 -0
  50. package/dist/components/catalyst-ui/buttons/text-reveal-button.tsx +65 -0
  51. package/dist/components/catalyst-ui/buttons/theme-switcher.tsx +102 -0
  52. package/dist/components/catalyst-ui/buttons/theme-toggle-button.tsx +312 -0
  53. package/dist/components/catalyst-ui/buttons/toggle-button.tsx +125 -0
  54. package/dist/components/catalyst-ui/buttons/tooltip-button.tsx +24 -0
  55. package/dist/components/catalyst-ui/charts/area-chart.tsx +989 -0
  56. package/dist/components/catalyst-ui/charts/bar-chart.tsx +887 -0
  57. package/dist/components/catalyst-ui/charts/bar-list.tsx +171 -0
  58. package/dist/components/catalyst-ui/charts/category-bar.tsx +221 -0
  59. package/dist/components/catalyst-ui/charts/chart-utils.ts +168 -0
  60. package/dist/components/catalyst-ui/charts/combo-chart.tsx +1179 -0
  61. package/dist/components/catalyst-ui/charts/donut-chart.tsx +337 -0
  62. package/dist/components/catalyst-ui/charts/index.ts +14 -0
  63. package/dist/components/catalyst-ui/charts/line-chart.tsx +907 -0
  64. package/dist/components/catalyst-ui/charts/spark-chart.tsx +328 -0
  65. package/dist/components/catalyst-ui/chat/chat.tsx +491 -0
  66. package/dist/components/catalyst-ui/code/code-block-section.tsx +939 -0
  67. package/dist/components/catalyst-ui/code/code-comparison.tsx +221 -0
  68. package/dist/components/catalyst-ui/code/code-comparison1.tsx +203 -0
  69. package/dist/components/catalyst-ui/code/code-editor.tsx +318 -0
  70. package/dist/components/catalyst-ui/code/code-section.tsx +62 -0
  71. package/dist/components/catalyst-ui/code/css-section.tsx +142 -0
  72. package/dist/components/catalyst-ui/code/html-section.tsx +102 -0
  73. package/dist/components/catalyst-ui/code/index.ts +22 -0
  74. package/dist/components/catalyst-ui/code/installCode-section.tsx +181 -0
  75. package/dist/components/catalyst-ui/code/installCodeArray-section.tsx +186 -0
  76. package/dist/components/catalyst-ui/code/installGithub-section.tsx +119 -0
  77. package/dist/components/catalyst-ui/code/json-section.tsx +253 -0
  78. package/dist/components/catalyst-ui/code/props-section.tsx +605 -0
  79. package/dist/components/catalyst-ui/code/sandbox.tsx +398 -0
  80. package/dist/components/catalyst-ui/code/sandbox2.tsx +3194 -0
  81. package/dist/components/catalyst-ui/code/terminal-1.tsx +119 -0
  82. package/dist/components/catalyst-ui/code/terminal-code-section.tsx +395 -0
  83. package/dist/components/catalyst-ui/code/terminal.tsx +315 -0
  84. package/dist/components/catalyst-ui/code/tsx-section.tsx +176 -0
  85. package/dist/components/catalyst-ui/comboboxes/choicebox.tsx +203 -0
  86. package/dist/components/catalyst-ui/comboboxes/combobox-0.tsx +556 -0
  87. package/dist/components/catalyst-ui/comboboxes/combobox-1.tsx +146 -0
  88. package/dist/components/catalyst-ui/comboboxes/combobox2.tsx +255 -0
  89. package/dist/components/catalyst-ui/comboboxes/emoji-picker.tsx +486 -0
  90. package/dist/components/catalyst-ui/comboboxes/filter-combobox.tsx +46 -0
  91. package/dist/components/catalyst-ui/comboboxes/index.ts +9 -0
  92. package/dist/components/catalyst-ui/comboboxes/multi-combobox.tsx +169 -0
  93. package/dist/components/catalyst-ui/comboboxes/nested-combobox.tsx +211 -0
  94. package/dist/components/catalyst-ui/commands/command-2.tsx +126 -0
  95. package/dist/components/catalyst-ui/commands/command-w-combobox.tsx +108 -0
  96. package/dist/components/catalyst-ui/commands/index.ts +6 -0
  97. package/dist/components/catalyst-ui/commands/nested-command-dialog.tsx +429 -0
  98. package/dist/components/catalyst-ui/commands/nested-command.tsx +133 -0
  99. package/dist/components/catalyst-ui/core/components/3d-card.tsx +144 -0
  100. package/dist/components/catalyst-ui/core/components/3d-card1.tsx +196 -0
  101. package/dist/components/catalyst-ui/core/components/android.tsx +105 -0
  102. package/dist/components/catalyst-ui/core/components/apple-cards-carousel.tsx +376 -0
  103. package/dist/components/catalyst-ui/core/components/apple-dock.tsx +280 -0
  104. package/dist/components/catalyst-ui/core/components/badge-1.tsx +117 -0
  105. package/dist/components/catalyst-ui/core/components/card-flip.tsx +204 -0
  106. package/dist/components/catalyst-ui/core/components/card-stack.tsx +224 -0
  107. package/dist/components/catalyst-ui/core/components/chat-bubble.tsx +198 -0
  108. package/dist/components/catalyst-ui/core/components/collapsible-section.tsx +92 -0
  109. package/dist/components/catalyst-ui/core/components/comment.tsx +812 -0
  110. package/dist/components/catalyst-ui/core/components/counter.tsx +77 -0
  111. package/dist/components/catalyst-ui/core/components/credit-card.tsx +406 -0
  112. package/dist/components/catalyst-ui/core/components/device-mockup.tsx +436 -0
  113. package/dist/components/catalyst-ui/core/components/embed.tsx +0 -0
  114. package/dist/components/catalyst-ui/core/components/faq.tsx +166 -0
  115. package/dist/components/catalyst-ui/core/components/feed.tsx +741 -0
  116. package/dist/components/catalyst-ui/core/components/fixed-marker.tsx +232 -0
  117. package/dist/components/catalyst-ui/core/components/for.tsx +138 -0
  118. package/dist/components/catalyst-ui/core/components/glowing-effect-card.tsx +273 -0
  119. package/dist/components/catalyst-ui/core/components/iframe.tsx +175 -0
  120. package/dist/components/catalyst-ui/core/components/in-place.tsx +285 -0
  121. package/dist/components/catalyst-ui/core/components/iphone-15-pro.tsx +129 -0
  122. package/dist/components/catalyst-ui/core/components/macbook-scroll.tsx +702 -0
  123. package/dist/components/catalyst-ui/core/components/magic-card.tsx +102 -0
  124. package/dist/components/catalyst-ui/core/components/message-dock.tsx +61 -0
  125. package/dist/components/catalyst-ui/core/components/meter.tsx +123 -0
  126. package/dist/components/catalyst-ui/core/components/number-ticker.tsx +67 -0
  127. package/dist/components/catalyst-ui/core/components/panel.tsx +286 -0
  128. package/dist/components/catalyst-ui/core/components/pill-1.tsx +166 -0
  129. package/dist/components/catalyst-ui/core/components/qrcode.tsx +1153 -0
  130. package/dist/components/catalyst-ui/core/components/safari-device.tsx +197 -0
  131. package/dist/components/catalyst-ui/core/components/sliding-number.tsx +235 -0
  132. package/dist/components/catalyst-ui/core/components/spoiler.tsx +161 -0
  133. package/dist/components/catalyst-ui/core/components/stat.tsx +572 -0
  134. package/dist/components/catalyst-ui/core/components/sticky.tsx +214 -0
  135. package/dist/components/catalyst-ui/core/components/tag.tsx +551 -0
  136. package/dist/components/catalyst-ui/core/components/tweet-card-1.tsx +164 -0
  137. package/dist/components/catalyst-ui/core/components/tweet-card.tsx +229 -0
  138. package/dist/components/catalyst-ui/core/data-display/barcode.tsx +1007 -0
  139. package/dist/components/catalyst-ui/core/data-display/data-list.tsx +344 -0
  140. package/dist/components/catalyst-ui/core/data-display/descriptionLists.tsx +205 -0
  141. package/dist/components/catalyst-ui/core/data-display/diff.tsx +186 -0
  142. package/dist/components/catalyst-ui/core/data-display/heat-map-calendar.tsx +361 -0
  143. package/dist/components/catalyst-ui/core/data-display/order-list.tsx +0 -0
  144. package/dist/components/catalyst-ui/core/data-display/stats-1.tsx +129 -0
  145. package/dist/components/catalyst-ui/core/data-display/stats.tsx +139 -0
  146. package/dist/components/catalyst-ui/core/data-display/ticker.tsx +179 -0
  147. package/dist/components/catalyst-ui/core/data-display/timeline-1.tsx +452 -0
  148. package/dist/components/catalyst-ui/core/data-display/timeline2.tsx +240 -0
  149. package/dist/components/catalyst-ui/core/data-display/tracker.tsx +209 -0
  150. package/dist/components/catalyst-ui/core/data-display/transfer-list.tsx +278 -0
  151. package/dist/components/catalyst-ui/core/data-display/tremor-tracker.tsx +103 -0
  152. package/dist/components/catalyst-ui/core/demos/FAQ-demo.tsx +41 -0
  153. package/dist/components/catalyst-ui/core/demos/action-panels-demo.tsx +64 -0
  154. package/dist/components/catalyst-ui/core/demos/banner-demo.tsx +100 -0
  155. package/dist/components/catalyst-ui/core/demos/bentoGrid-demo.tsx +191 -0
  156. package/dist/components/catalyst-ui/core/demos/blog-demo.tsx +68 -0
  157. package/dist/components/catalyst-ui/core/demos/blogEditor-demo.tsx +10 -0
  158. package/dist/components/catalyst-ui/core/demos/blogPost-demo.tsx +41 -0
  159. package/dist/components/catalyst-ui/core/demos/button-groups-demo.tsx +111 -0
  160. package/dist/components/catalyst-ui/core/demos/cardHeadings-demo.tsx +65 -0
  161. package/dist/components/catalyst-ui/core/demos/catch-all.tsx +414 -0
  162. package/dist/components/catalyst-ui/core/demos/contact-demo.tsx +87 -0
  163. package/dist/components/catalyst-ui/core/demos/content-demo.tsx +52 -0
  164. package/dist/components/catalyst-ui/core/demos/cta-demo.tsx +64 -0
  165. package/dist/components/catalyst-ui/core/demos/descriptionLists-demo.tsx +109 -0
  166. package/dist/components/catalyst-ui/core/demos/edit-product-page-demo.tsx +11 -0
  167. package/dist/components/catalyst-ui/core/demos/empty-state-demo.tsx +37 -0
  168. package/dist/components/catalyst-ui/core/demos/feature-demo.tsx +104 -0
  169. package/dist/components/catalyst-ui/core/demos/feeds-demo.tsx +26 -0
  170. package/dist/components/catalyst-ui/core/demos/flyoutMenu-demo.tsx +156 -0
  171. package/dist/components/catalyst-ui/core/demos/footer-demo.tsx +62 -0
  172. package/dist/components/catalyst-ui/core/demos/form-layouts-demo.tsx +378 -0
  173. package/dist/components/catalyst-ui/core/demos/gridLists-demo.tsx +47 -0
  174. package/dist/components/catalyst-ui/core/demos/header-demo.tsx +0 -0
  175. package/dist/components/catalyst-ui/core/demos/header2-demo.tsx +77 -0
  176. package/dist/components/catalyst-ui/core/demos/headers-demo.tsx +659 -0
  177. package/dist/components/catalyst-ui/core/demos/hero-demo.tsx +75 -0
  178. package/dist/components/catalyst-ui/core/demos/input-groups-demo.tsx +75 -0
  179. package/dist/components/catalyst-ui/core/demos/landingPage-demo.tsx +222 -0
  180. package/dist/components/catalyst-ui/core/demos/list-demo.tsx +442 -0
  181. package/dist/components/catalyst-ui/core/demos/logoClouds-demo.tsx +36 -0
  182. package/dist/components/catalyst-ui/core/demos/mediaObject-demo.tsx +219 -0
  183. package/dist/components/catalyst-ui/core/demos/multiColumnLayouts-demo.tsx +42 -0
  184. package/dist/components/catalyst-ui/core/demos/newsLetter-demo.tsx +51 -0
  185. package/dist/components/catalyst-ui/core/demos/pageHeading-demo.tsx +55 -0
  186. package/dist/components/catalyst-ui/core/demos/pricing-demo.tsx +114 -0
  187. package/dist/components/catalyst-ui/core/demos/radio-group-demo.tsx +315 -0
  188. package/dist/components/catalyst-ui/core/demos/settingsScreen-demo.tsx +95 -0
  189. package/dist/components/catalyst-ui/core/demos/sidebar-demo.tsx +40 -0
  190. package/dist/components/catalyst-ui/core/demos/stackedLayout-demo.tsx +17 -0
  191. package/dist/components/catalyst-ui/core/demos/stackedLists-demo.tsx +60 -0
  192. package/dist/components/catalyst-ui/core/demos/stats-demo.tsx +99 -0
  193. package/dist/components/catalyst-ui/core/demos/team-demo.tsx +35 -0
  194. package/dist/components/catalyst-ui/core/demos/testimonial-demo.tsx +33 -0
  195. package/dist/components/catalyst-ui/core/demos/toggle-demo-demo.tsx +414 -0
  196. package/dist/components/catalyst-ui/core/feedback/alert-variant.tsx +101 -0
  197. package/dist/components/catalyst-ui/core/feedback/announcement.tsx +53 -0
  198. package/dist/components/catalyst-ui/core/feedback/banner-2.tsx +143 -0
  199. package/dist/components/catalyst-ui/core/feedback/banner.tsx +50 -0
  200. package/dist/components/catalyst-ui/core/feedback/banner1.tsx +64 -0
  201. package/dist/components/catalyst-ui/core/feedback/callout.tsx +18 -0
  202. package/dist/components/catalyst-ui/core/feedback/chat-bubble.tsx +770 -0
  203. package/dist/components/catalyst-ui/core/feedback/dimmer.tsx +518 -0
  204. package/dist/components/catalyst-ui/core/feedback/dot-loader.tsx +116 -0
  205. package/dist/components/catalyst-ui/core/feedback/empty-states.tsx +154 -0
  206. package/dist/components/catalyst-ui/core/feedback/hero-badge.tsx +90 -0
  207. package/dist/components/catalyst-ui/core/feedback/indicator.tsx +315 -0
  208. package/dist/components/catalyst-ui/core/feedback/loading.tsx +11 -0
  209. package/dist/components/catalyst-ui/core/feedback/spinner-2.tsx +10 -0
  210. package/dist/components/catalyst-ui/core/feedback/spinner-3.tsx +163 -0
  211. package/dist/components/catalyst-ui/core/feedback/spinner-4.tsx +276 -0
  212. package/dist/components/catalyst-ui/core/feedback/spinner.tsx +287 -0
  213. package/dist/components/catalyst-ui/core/feedback/status.tsx +54 -0
  214. package/dist/components/catalyst-ui/core/headings/cardHeadings.tsx +215 -0
  215. package/dist/components/catalyst-ui/core/headings/pageHeading.tsx +300 -0
  216. package/dist/components/catalyst-ui/core/headings/sectionHeadings.tsx +240 -0
  217. package/dist/components/catalyst-ui/core/heros/animated-hero.tsx +116 -0
  218. package/dist/components/catalyst-ui/core/heros/animated-hero1.tsx +108 -0
  219. package/dist/components/catalyst-ui/core/heros/hero-video-dialog.tsx +150 -0
  220. package/dist/components/catalyst-ui/core/index.ts +248 -0
  221. package/dist/components/catalyst-ui/core/layout/absolute-center.tsx +45 -0
  222. package/dist/components/catalyst-ui/core/layout/bento-grid.tsx +251 -0
  223. package/dist/components/catalyst-ui/core/layout/bento-grid1.tsx +58 -0
  224. package/dist/components/catalyst-ui/core/layout/bento-grid2.tsx +107 -0
  225. package/dist/components/catalyst-ui/core/layout/bento-system.tsx +101 -0
  226. package/dist/components/catalyst-ui/core/layout/box.tsx +231 -0
  227. package/dist/components/catalyst-ui/core/layout/card-layout.tsx +312 -0
  228. package/dist/components/catalyst-ui/core/layout/center.tsx +76 -0
  229. package/dist/components/catalyst-ui/core/layout/container-demo.tsx +340 -0
  230. package/dist/components/catalyst-ui/core/layout/container.tsx +280 -0
  231. package/dist/components/catalyst-ui/core/layout/flexbox-grid.tsx +469 -0
  232. package/dist/components/catalyst-ui/core/layout/grid.tsx +656 -0
  233. package/dist/components/catalyst-ui/core/layout/group.tsx +49 -0
  234. package/dist/components/catalyst-ui/core/layout/list.tsx +665 -0
  235. package/dist/components/catalyst-ui/core/layout/mediaObject.tsx +254 -0
  236. package/dist/components/catalyst-ui/core/layout/rail.tsx +175 -0
  237. package/dist/components/catalyst-ui/core/layout/section.tsx +86 -0
  238. package/dist/components/catalyst-ui/core/layout/stack.tsx +182 -0
  239. package/dist/components/catalyst-ui/core/lists/animated-list.tsx +98 -0
  240. package/dist/components/catalyst-ui/core/lists/feeds.tsx +190 -0
  241. package/dist/components/catalyst-ui/core/lists/file-tree.tsx +379 -0
  242. package/dist/components/catalyst-ui/core/lists/gridLists.tsx +212 -0
  243. package/dist/components/catalyst-ui/core/lists/index.ts +14 -0
  244. package/dist/components/catalyst-ui/core/lists/list-1.tsx +152 -0
  245. package/dist/components/catalyst-ui/core/lists/list.tsx +217 -0
  246. package/dist/components/catalyst-ui/core/lists/list1.tsx +138 -0
  247. package/dist/components/catalyst-ui/core/lists/pin-list.tsx +191 -0
  248. package/dist/components/catalyst-ui/core/lists/stackedLists.tsx +149 -0
  249. package/dist/components/catalyst-ui/core/lists/tables.tsx +615 -0
  250. package/dist/components/catalyst-ui/core/lists/tree.tsx +194 -0
  251. package/dist/components/catalyst-ui/core/modules/createEditSchedule.tsx +389 -0
  252. package/dist/components/catalyst-ui/core/modules/punchClock.tsx +304 -0
  253. package/dist/components/catalyst-ui/core/modules/schedule.tsx +188 -0
  254. package/dist/components/catalyst-ui/core/modules/viewPunchClockEntries.tsx +629 -0
  255. package/dist/components/catalyst-ui/core/navbars/navbar-01.tsx +264 -0
  256. package/dist/components/catalyst-ui/core/navbars/navbar-02.tsx +498 -0
  257. package/dist/components/catalyst-ui/core/navbars/navbar-03.tsx +263 -0
  258. package/dist/components/catalyst-ui/core/navbars/navbar-04.tsx +331 -0
  259. package/dist/components/catalyst-ui/core/navbars/navbar-05.tsx +400 -0
  260. package/dist/components/catalyst-ui/core/navbars/navbar-06.tsx +436 -0
  261. package/dist/components/catalyst-ui/core/navbars/navbar-07.tsx +331 -0
  262. package/dist/components/catalyst-ui/core/navbars/navbar-08.tsx +418 -0
  263. package/dist/components/catalyst-ui/core/navbars/navbar-09.tsx +440 -0
  264. package/dist/components/catalyst-ui/core/navbars/navbar-10.tsx +351 -0
  265. package/dist/components/catalyst-ui/core/navbars/navbar-11.tsx +444 -0
  266. package/dist/components/catalyst-ui/core/navbars/navbar-12/NotificationMenu.tsx +120 -0
  267. package/dist/components/catalyst-ui/core/navbars/navbar-12/TeamSwitcher.tsx +87 -0
  268. package/dist/components/catalyst-ui/core/navbars/navbar-12/UserMenu.tsx +80 -0
  269. package/dist/components/catalyst-ui/core/navbars/navbar-12/navbar-12.tsx +230 -0
  270. package/dist/components/catalyst-ui/core/navbars/navbar-13/UserMenu.tsx +80 -0
  271. package/dist/components/catalyst-ui/core/navbars/navbar-13/navbar-13.tsx +144 -0
  272. package/dist/components/catalyst-ui/core/navbars/navbar-14/InfoMenu.tsx +62 -0
  273. package/dist/components/catalyst-ui/core/navbars/navbar-14/NotificationMenu.tsx +122 -0
  274. package/dist/components/catalyst-ui/core/navbars/navbar-14/SettingsMenu.tsx +66 -0
  275. package/dist/components/catalyst-ui/core/navbars/navbar-14/navbar-14.tsx +156 -0
  276. package/dist/components/catalyst-ui/core/navbars/navbar-15/DatePicker.tsx +66 -0
  277. package/dist/components/catalyst-ui/core/navbars/navbar-15/Filters.tsx +160 -0
  278. package/dist/components/catalyst-ui/core/navbars/navbar-15/navbar-15.tsx +151 -0
  279. package/dist/components/catalyst-ui/core/navbars/navbar-16/AppToggle.tsx +125 -0
  280. package/dist/components/catalyst-ui/core/navbars/navbar-16/TeamSwitcher.tsx +87 -0
  281. package/dist/components/catalyst-ui/core/navbars/navbar-16/navbar-16.tsx +113 -0
  282. package/dist/components/catalyst-ui/core/navbars/navbar-17.tsx +209 -0
  283. package/dist/components/catalyst-ui/core/navbars/navbar-18.tsx +243 -0
  284. package/dist/components/catalyst-ui/core/navbars/navbar-19.tsx +333 -0
  285. package/dist/components/catalyst-ui/core/navigation/affix.tsx +123 -0
  286. package/dist/components/catalyst-ui/core/navigation/anchor.tsx +41 -0
  287. package/dist/components/catalyst-ui/core/navigation/dock-1.tsx +0 -0
  288. package/dist/components/catalyst-ui/core/navigation/dock-2.tsx +289 -0
  289. package/dist/components/catalyst-ui/core/navigation/dock.tsx +376 -0
  290. package/dist/components/catalyst-ui/core/navigation/efab.tsx +245 -0
  291. package/dist/components/catalyst-ui/core/navigation/fab-menu-component.tsx +299 -0
  292. package/dist/components/catalyst-ui/core/navigation/fab-menu.tsx +220 -0
  293. package/dist/components/catalyst-ui/core/navigation/fab.tsx +236 -0
  294. package/dist/components/catalyst-ui/core/navigation/index.ts +32 -0
  295. package/dist/components/catalyst-ui/core/navigation/limelight-nav.tsx +110 -0
  296. package/dist/components/catalyst-ui/core/navigation/mega-menu.tsx +354 -0
  297. package/dist/components/catalyst-ui/core/navigation/menu-dock.tsx +204 -0
  298. package/dist/components/catalyst-ui/core/navigation/message-dock.tsx +511 -0
  299. package/dist/components/catalyst-ui/core/navigation/page-nav.tsx +29 -0
  300. package/dist/components/catalyst-ui/core/navigation/page-sidebar-nav.tsx +39 -0
  301. package/dist/components/catalyst-ui/core/navigation/pagination-button.tsx +56 -0
  302. package/dist/components/catalyst-ui/core/navigation/pagination-wrapper.tsx +152 -0
  303. package/dist/components/catalyst-ui/core/navigation/panel-menu.tsx +201 -0
  304. package/dist/components/catalyst-ui/core/navigation/remix-link.tsx +40 -0
  305. package/dist/components/catalyst-ui/core/navigation/smooth-tab.tsx +412 -0
  306. package/dist/components/catalyst-ui/core/navigation/speed-dial.tsx +175 -0
  307. package/dist/components/catalyst-ui/core/navigation/stepper.tsx +290 -0
  308. package/dist/components/catalyst-ui/core/navigation/steps.tsx +578 -0
  309. package/dist/components/catalyst-ui/core/navigation/tab-menu.tsx +227 -0
  310. package/dist/components/catalyst-ui/core/navigation/tab-view.tsx +742 -0
  311. package/dist/components/catalyst-ui/core/navigation/toolbar-1.tsx +412 -0
  312. package/dist/components/catalyst-ui/core/navigation/toolbar.tsx +245 -0
  313. package/dist/components/catalyst-ui/core/sections/changelog-section.tsx +135 -0
  314. package/dist/components/catalyst-ui/core/sections/config-section.tsx +82 -0
  315. package/dist/components/catalyst-ui/core/sections/contact.tsx +600 -0
  316. package/dist/components/catalyst-ui/core/sections/content.tsx +386 -0
  317. package/dist/components/catalyst-ui/core/sections/layout.tsx +310 -0
  318. package/dist/components/catalyst-ui/core/sections/note-section.tsx +85 -0
  319. package/dist/components/catalyst-ui/core/sections/placeholder-code-section.tsx +14 -0
  320. package/dist/components/catalyst-ui/core/sections/step-number-section.tsx +16 -0
  321. package/dist/components/catalyst-ui/core/sections/team.tsx +372 -0
  322. package/dist/components/catalyst-ui/core/sections/useage-no-dash-section.tsx +79 -0
  323. package/dist/components/catalyst-ui/core/sections/useage-section.tsx +79 -0
  324. package/dist/components/catalyst-ui/core/shell/app-shell.tsx +321 -0
  325. package/dist/components/catalyst-ui/core/shell/content-shell.tsx +70 -0
  326. package/dist/components/catalyst-ui/core/shell/documentation/example.tsx +106 -0
  327. package/dist/components/catalyst-ui/core/shell/documentation/layout.config.tsx +200 -0
  328. package/dist/components/catalyst-ui/core/shell/documentation/layout.example.tsx +127 -0
  329. package/dist/components/catalyst-ui/core/shell/documentation/layout.tsx +280 -0
  330. package/dist/components/catalyst-ui/core/shell/multiColumnLayouts.tsx +364 -0
  331. package/dist/components/catalyst-ui/core/shell/sidebarLayout.tsx +459 -0
  332. package/dist/components/catalyst-ui/core/shell/stackedLayout.tsx +323 -0
  333. package/dist/components/catalyst-ui/core/shell/three-col/app.tsx +193 -0
  334. package/dist/components/catalyst-ui/core/shell/three-col/content.tsx +358 -0
  335. package/dist/components/catalyst-ui/core/shell/three-col/header.tsx +222 -0
  336. package/dist/components/catalyst-ui/core/shell/three-col/layout.tsx +120 -0
  337. package/dist/components/catalyst-ui/core/shell/three-col/side-navbar.tsx +305 -0
  338. package/dist/components/catalyst-ui/core/shell/three-col/sidebar.tsx +41 -0
  339. package/dist/components/catalyst-ui/crm/comp-297.tsx +24 -0
  340. package/dist/components/catalyst-ui/crm/comp-298.tsx +188 -0
  341. package/dist/components/catalyst-ui/crm/comp-299.tsx +24 -0
  342. package/dist/components/catalyst-ui/crm/comp-300.tsx +62 -0
  343. package/dist/components/catalyst-ui/crm/index.ts +5 -0
  344. package/dist/components/catalyst-ui/crm/tools/scripts-editor.tsx +3109 -0
  345. package/dist/components/catalyst-ui/crm/tools/scripts-viewer.tsx +215 -0
  346. package/dist/components/catalyst-ui/data/bg-data.tsx +901 -0
  347. package/dist/components/catalyst-ui/data/buttons-data.tsx +2327 -0
  348. package/dist/components/catalyst-ui/data/charts-data.tsx +102 -0
  349. package/dist/components/catalyst-ui/data/chat-data.tsx +83 -0
  350. package/dist/components/catalyst-ui/data/code-data.tsx +1040 -0
  351. package/dist/components/catalyst-ui/data/comboboxes-data.tsx +1843 -0
  352. package/dist/components/catalyst-ui/data/command-data.tsx +1381 -0
  353. package/dist/components/catalyst-ui/data/core-data.tsx +15953 -0
  354. package/dist/components/catalyst-ui/data/crm-data.tsx +47 -0
  355. package/dist/components/catalyst-ui/data/data.tsx +159 -0
  356. package/dist/components/catalyst-ui/data/date-and-time-data.tsx +554 -0
  357. package/dist/components/catalyst-ui/data/dependencies.tsx +7 -0
  358. package/dist/components/catalyst-ui/data/ecommerce-data.tsx +1387 -0
  359. package/dist/components/catalyst-ui/data/forms-data.tsx +7890 -0
  360. package/dist/components/catalyst-ui/data/hooks-data.tsx +5487 -0
  361. package/dist/components/catalyst-ui/data/index.ts +34 -0
  362. package/dist/components/catalyst-ui/data/inputs-data.tsx +557 -0
  363. package/dist/components/catalyst-ui/data/interactive-data.tsx +5394 -0
  364. package/dist/components/catalyst-ui/data/lofi-data.tsx +18295 -0
  365. package/dist/components/catalyst-ui/data/marketing-data.tsx +2546 -0
  366. package/dist/components/catalyst-ui/data/media-data.tsx +1510 -0
  367. package/dist/components/catalyst-ui/data/motion-data.tsx +5801 -0
  368. package/dist/components/catalyst-ui/data/overlay-data.tsx +4136 -0
  369. package/dist/components/catalyst-ui/data/pdf-data.tsx +124 -0
  370. package/dist/components/catalyst-ui/data/pos-data.tsx +213 -0
  371. package/dist/components/catalyst-ui/data/primitive-data.tsx +5170 -0
  372. package/dist/components/catalyst-ui/data/prompt-data.tsx +1226 -0
  373. package/dist/components/catalyst-ui/data/requiredLibs.ts +4 -0
  374. package/dist/components/catalyst-ui/data/sandbox-data.tsx +1 -0
  375. package/dist/components/catalyst-ui/data/sidebars-data.tsx +5421 -0
  376. package/dist/components/catalyst-ui/data/stacks-data.tsx +32 -0
  377. package/dist/components/catalyst-ui/data/table-data.tsx +706 -0
  378. package/dist/components/catalyst-ui/data/tools-data.tsx +6910 -0
  379. package/dist/components/catalyst-ui/data/typography-data.tsx +2050 -0
  380. package/dist/components/catalyst-ui/data/utils-data.tsx +6500 -0
  381. package/dist/components/catalyst-ui/data/x-data.tsx +1171 -0
  382. package/dist/components/catalyst-ui/data2.tsx +158 -0
  383. package/dist/components/catalyst-ui/date-and-time/appointment-scheduler.tsx +381 -0
  384. package/dist/components/catalyst-ui/date-and-time/calendar-2.tsx +498 -0
  385. package/dist/components/catalyst-ui/date-and-time/calendar-for-sidebar.tsx +68 -0
  386. package/dist/components/catalyst-ui/date-and-time/calendar-rac.tsx +112 -0
  387. package/dist/components/catalyst-ui/date-and-time/date-picker-input.tsx +76 -0
  388. package/dist/components/catalyst-ui/date-and-time/date-picker.tsx +64 -0
  389. package/dist/components/catalyst-ui/date-and-time/date-range-picker-input.tsx +84 -0
  390. package/dist/components/catalyst-ui/date-and-time/date-range-picker.tsx +125 -0
  391. package/dist/components/catalyst-ui/date-and-time/datefield-rac.tsx +88 -0
  392. package/dist/components/catalyst-ui/date-and-time/docked-date-picker.tsx +267 -0
  393. package/dist/components/catalyst-ui/date-and-time/drawerDatePicker.tsx +50 -0
  394. package/dist/components/catalyst-ui/date-and-time/event-calendar/agenda-view.tsx +90 -0
  395. package/dist/components/catalyst-ui/date-and-time/event-calendar/calendar-dnd-context.tsx +373 -0
  396. package/dist/components/catalyst-ui/date-and-time/event-calendar/constants.ts +18 -0
  397. package/dist/components/catalyst-ui/date-and-time/event-calendar/day-view.tsx +322 -0
  398. package/dist/components/catalyst-ui/date-and-time/event-calendar/demo.tsx +162 -0
  399. package/dist/components/catalyst-ui/date-and-time/event-calendar/draggable-event.tsx +141 -0
  400. package/dist/components/catalyst-ui/date-and-time/event-calendar/droppable-cell.tsx +57 -0
  401. package/dist/components/catalyst-ui/date-and-time/event-calendar/event-calendar.tsx +400 -0
  402. package/dist/components/catalyst-ui/date-and-time/event-calendar/event-dialog.tsx +467 -0
  403. package/dist/components/catalyst-ui/date-and-time/event-calendar/event-item.tsx +262 -0
  404. package/dist/components/catalyst-ui/date-and-time/event-calendar/events-popup.tsx +135 -0
  405. package/dist/components/catalyst-ui/date-and-time/event-calendar/hooks/use-current-time-indicator.ts +57 -0
  406. package/dist/components/catalyst-ui/date-and-time/event-calendar/hooks/use-event-visibility.ts +86 -0
  407. package/dist/components/catalyst-ui/date-and-time/event-calendar/index.ts +23 -0
  408. package/dist/components/catalyst-ui/date-and-time/event-calendar/month-view.tsx +276 -0
  409. package/dist/components/catalyst-ui/date-and-time/event-calendar/types.ts +20 -0
  410. package/dist/components/catalyst-ui/date-and-time/event-calendar/utils.ts +153 -0
  411. package/dist/components/catalyst-ui/date-and-time/event-calendar/week-view.tsx +406 -0
  412. package/dist/components/catalyst-ui/date-and-time/index.ts +74 -0
  413. package/dist/components/catalyst-ui/date-and-time/mini-calendar.tsx +230 -0
  414. package/dist/components/catalyst-ui/date-and-time/modal-date-input.tsx +229 -0
  415. package/dist/components/catalyst-ui/date-and-time/popover-date-input.tsx +233 -0
  416. package/dist/components/catalyst-ui/date-and-time/relative-time.tsx +181 -0
  417. package/dist/components/catalyst-ui/date-and-time/time-picker-dial.tsx +368 -0
  418. package/dist/components/catalyst-ui/date-and-time/time-picker-input.tsx +385 -0
  419. package/dist/components/catalyst-ui/date-and-time/time-picker.tsx +514 -0
  420. package/dist/components/catalyst-ui/demo/examples.tsx +10069 -0
  421. package/dist/components/catalyst-ui/demo/examples2.tsx +10954 -0
  422. package/dist/components/catalyst-ui/demo/index.ts +5 -0
  423. package/dist/components/catalyst-ui/ecommerce/components/categoryFilters.tsx +302 -0
  424. package/dist/components/catalyst-ui/ecommerce/components/categoryPreviews.tsx +464 -0
  425. package/dist/components/catalyst-ui/ecommerce/components/checkoutForms.tsx +991 -0
  426. package/dist/components/catalyst-ui/ecommerce/components/incentives.tsx +529 -0
  427. package/dist/components/catalyst-ui/ecommerce/components/orderHistory.tsx +380 -0
  428. package/dist/components/catalyst-ui/ecommerce/components/orderSummaries.tsx +482 -0
  429. package/dist/components/catalyst-ui/ecommerce/components/productCard.tsx +84 -0
  430. package/dist/components/catalyst-ui/ecommerce/components/productCard2.tsx +82 -0
  431. package/dist/components/catalyst-ui/ecommerce/components/productFeatures.tsx +764 -0
  432. package/dist/components/catalyst-ui/ecommerce/components/productLists.tsx +472 -0
  433. package/dist/components/catalyst-ui/ecommerce/components/productOverview.tsx +856 -0
  434. package/dist/components/catalyst-ui/ecommerce/components/productQuickViews.tsx +378 -0
  435. package/dist/components/catalyst-ui/ecommerce/components/promoSectionts.tsx +414 -0
  436. package/dist/components/catalyst-ui/ecommerce/components/reviews.tsx +274 -0
  437. package/dist/components/catalyst-ui/ecommerce/components/shoppingCarts.tsx +508 -0
  438. package/dist/components/catalyst-ui/ecommerce/components/storeNavigation.tsx +255 -0
  439. package/dist/components/catalyst-ui/ecommerce/demo/categoryFilters-demo.tsx +140 -0
  440. package/dist/components/catalyst-ui/ecommerce/demo/categoryPreviews-demo.tsx +252 -0
  441. package/dist/components/catalyst-ui/ecommerce/demo/checkoutForms-demo.tsx +76 -0
  442. package/dist/components/catalyst-ui/ecommerce/demo/editProductPage-data2.tsx +34 -0
  443. package/dist/components/catalyst-ui/ecommerce/demo/editProductPage-demo.tsx +10 -0
  444. package/dist/components/catalyst-ui/ecommerce/demo/incentives-demo.tsx +172 -0
  445. package/dist/components/catalyst-ui/ecommerce/demo/orderHistory-demo.tsx +81 -0
  446. package/dist/components/catalyst-ui/ecommerce/demo/orderSummaries-demo.tsx +98 -0
  447. package/dist/components/catalyst-ui/ecommerce/demo/pricingPage-demo.tsx +105 -0
  448. package/dist/components/catalyst-ui/ecommerce/demo/product.$id-demo.tsx +98 -0
  449. package/dist/components/catalyst-ui/ecommerce/demo/productCard-demo.tsx +308 -0
  450. package/dist/components/catalyst-ui/ecommerce/demo/productFeatures-demo.tsx +57 -0
  451. package/dist/components/catalyst-ui/ecommerce/demo/productLists-demo.tsx +130 -0
  452. package/dist/components/catalyst-ui/ecommerce/demo/productOverview-demo.tsx +328 -0
  453. package/dist/components/catalyst-ui/ecommerce/demo/productQuickViews-demo.tsx +242 -0
  454. package/dist/components/catalyst-ui/ecommerce/demo/promoSectionts-demo.tsx +169 -0
  455. package/dist/components/catalyst-ui/ecommerce/demo/reviews-demo.tsx +45 -0
  456. package/dist/components/catalyst-ui/ecommerce/demo/shoppingCarts-demo.tsx +73 -0
  457. package/dist/components/catalyst-ui/ecommerce/demo/store-demo.tsx +88 -0
  458. package/dist/components/catalyst-ui/ecommerce/demo/storeNavigation-demo.tsx +171 -0
  459. package/dist/components/catalyst-ui/ecommerce/index.ts +55 -0
  460. package/dist/components/catalyst-ui/ecommerce/modules/cash-drawer-wizard.tsx +1400 -0
  461. package/dist/components/catalyst-ui/ecommerce/modules/cash-till-manager.tsx +639 -0
  462. package/dist/components/catalyst-ui/ecommerce/modules/promotionEngine.ts +341 -0
  463. package/dist/components/catalyst-ui/ecommerce/modules/promotionsManager.tsx +840 -0
  464. package/dist/components/catalyst-ui/forms/action-bar-1.tsx +192 -0
  465. package/dist/components/catalyst-ui/forms/action-bar.tsx +154 -0
  466. package/dist/components/catalyst-ui/forms/action-panels.tsx +153 -0
  467. package/dist/components/catalyst-ui/forms/action-search-bar.tsx +268 -0
  468. package/dist/components/catalyst-ui/forms/auto-resizing-textarea.tsx +36 -0
  469. package/dist/components/catalyst-ui/forms/cascade-tree.tsx +224 -0
  470. package/dist/components/catalyst-ui/forms/cascader.tsx +219 -0
  471. package/dist/components/catalyst-ui/forms/check-tree-picker.tsx +330 -0
  472. package/dist/components/catalyst-ui/forms/check-tree.tsx +348 -0
  473. package/dist/components/catalyst-ui/forms/checkbox-1.tsx +48 -0
  474. package/dist/components/catalyst-ui/forms/checkbox-card-1.tsx +64 -0
  475. package/dist/components/catalyst-ui/forms/checkbox-card.tsx +145 -0
  476. package/dist/components/catalyst-ui/forms/checkbox-multistate.tsx +97 -0
  477. package/dist/components/catalyst-ui/forms/checkbox-tristate.tsx +158 -0
  478. package/dist/components/catalyst-ui/forms/color-picker-1.tsx +299 -0
  479. package/dist/components/catalyst-ui/forms/color-picker-3.tsx +487 -0
  480. package/dist/components/catalyst-ui/forms/color-picker.tsx +251 -0
  481. package/dist/components/catalyst-ui/forms/credit-card-input.tsx +284 -0
  482. package/dist/components/catalyst-ui/forms/debounced-input.tsx +21 -0
  483. package/dist/components/catalyst-ui/forms/fancy-area.tsx +571 -0
  484. package/dist/components/catalyst-ui/forms/fieldset.tsx +107 -0
  485. package/dist/components/catalyst-ui/forms/float-label.tsx +66 -0
  486. package/dist/components/catalyst-ui/forms/floating-label.tsx +138 -0
  487. package/dist/components/catalyst-ui/forms/form-wizard.tsx +787 -0
  488. package/dist/components/catalyst-ui/forms/fuse-search-input.tsx +293 -0
  489. package/dist/components/catalyst-ui/forms/fuzzy-filter.tsx +17 -0
  490. package/dist/components/catalyst-ui/forms/fuzzy-sort.tsx +17 -0
  491. package/dist/components/catalyst-ui/forms/icon-field.tsx +51 -0
  492. package/dist/components/catalyst-ui/forms/index.ts +58 -0
  493. package/dist/components/catalyst-ui/forms/inline-edit.tsx +108 -0
  494. package/dist/components/catalyst-ui/forms/inplace.tsx +174 -0
  495. package/dist/components/catalyst-ui/forms/input-icon.tsx +39 -0
  496. package/dist/components/catalyst-ui/forms/input-mask.tsx +216 -0
  497. package/dist/components/catalyst-ui/forms/input-text.tsx +52 -0
  498. package/dist/components/catalyst-ui/forms/json-input.tsx +261 -0
  499. package/dist/components/catalyst-ui/forms/key-filter.tsx +238 -0
  500. package/dist/components/catalyst-ui/forms/label-variant.tsx +53 -0
  501. package/dist/components/catalyst-ui/forms/listbox.tsx +118 -0
  502. package/dist/components/catalyst-ui/forms/multi-cascade-tree.tsx +586 -0
  503. package/dist/components/catalyst-ui/forms/multi-cascader.tsx +429 -0
  504. package/dist/components/catalyst-ui/forms/multi-select.tsx +161 -0
  505. package/dist/components/catalyst-ui/forms/password-input.tsx +54 -0
  506. package/dist/components/catalyst-ui/forms/pills-input.tsx +133 -0
  507. package/dist/components/catalyst-ui/forms/pin-input.tsx +354 -0
  508. package/dist/components/catalyst-ui/forms/profile-dropdown.tsx +219 -0
  509. package/dist/components/catalyst-ui/forms/radio-tile.tsx +245 -0
  510. package/dist/components/catalyst-ui/forms/rating-2.tsx +140 -0
  511. package/dist/components/catalyst-ui/forms/search-input.tsx +49 -0
  512. package/dist/components/catalyst-ui/forms/select-button.tsx +155 -0
  513. package/dist/components/catalyst-ui/forms/step-form-wizard.tsx +877 -0
  514. package/dist/components/catalyst-ui/forms/tags-input-1.tsx +457 -0
  515. package/dist/components/catalyst-ui/forms/textarea-2.tsx +36 -0
  516. package/dist/components/catalyst-ui/forms/tree-picker.tsx +295 -0
  517. package/dist/components/catalyst-ui/hooks/demo.tsx +2757 -0
  518. package/dist/components/catalyst-ui/hooks/index.ts +106 -0
  519. package/dist/components/catalyst-ui/hooks/react-hook-docs.tsx +608 -0
  520. package/dist/components/catalyst-ui/hooks/use-api-key.tsx +151 -0
  521. package/dist/components/catalyst-ui/hooks/use-async.tsx +36 -0
  522. package/dist/components/catalyst-ui/hooks/use-auto-scroll.tsx +139 -0
  523. package/dist/components/catalyst-ui/hooks/use-breakpoint.tsx +21 -0
  524. package/dist/components/catalyst-ui/hooks/use-character-limit.tsx +37 -0
  525. package/dist/components/catalyst-ui/hooks/use-click-outside.tsx +27 -0
  526. package/dist/components/catalyst-ui/hooks/use-client.tsx +30 -0
  527. package/dist/components/catalyst-ui/hooks/use-color-theme.tsx +4933 -0
  528. package/dist/components/catalyst-ui/hooks/use-color-wheel.tsx +905 -0
  529. package/dist/components/catalyst-ui/hooks/use-current-time-indicator.tsx +65 -0
  530. package/dist/components/catalyst-ui/hooks/use-debounce-fetcher.tsx +56 -0
  531. package/dist/components/catalyst-ui/hooks/use-debounce-submit.tsx +45 -0
  532. package/dist/components/catalyst-ui/hooks/use-debounce.tsx +18 -0
  533. package/dist/components/catalyst-ui/hooks/use-debounced-fuse-search.tsx +168 -0
  534. package/dist/components/catalyst-ui/hooks/use-delegated-anchors.tsx +87 -0
  535. package/dist/components/catalyst-ui/hooks/use-document-title.tsx +14 -0
  536. package/dist/components/catalyst-ui/hooks/use-event-callback.tsx +24 -0
  537. package/dist/components/catalyst-ui/hooks/use-event-source.tsx +69 -0
  538. package/dist/components/catalyst-ui/hooks/use-event-visibility.tsx +72 -0
  539. package/dist/components/catalyst-ui/hooks/use-expandable.tsx +18 -0
  540. package/dist/components/catalyst-ui/hooks/use-export-markdown-usage.tsx +92 -0
  541. package/dist/components/catalyst-ui/hooks/use-export-tsx.tsx +50 -0
  542. package/dist/components/catalyst-ui/hooks/use-external-scripts.tsx +44 -0
  543. package/dist/components/catalyst-ui/hooks/use-favicon.tsx +16 -0
  544. package/dist/components/catalyst-ui/hooks/use-fetch.tsx +64 -0
  545. package/dist/components/catalyst-ui/hooks/use-file-upload.tsx +405 -0
  546. package/dist/components/catalyst-ui/hooks/use-focus-within.tsx +16 -0
  547. package/dist/components/catalyst-ui/hooks/use-form.tsx +86 -0
  548. package/dist/components/catalyst-ui/hooks/use-fuse-search.tsx +155 -0
  549. package/dist/components/catalyst-ui/hooks/use-fuzzy-search.tsx +17 -0
  550. package/dist/components/catalyst-ui/hooks/use-global-loading-state.tsx +7 -0
  551. package/dist/components/catalyst-ui/hooks/use-global-navigation-state.tsx +23 -0
  552. package/dist/components/catalyst-ui/hooks/use-global-pending-state.tsx +10 -0
  553. package/dist/components/catalyst-ui/hooks/use-global-submitting-state.tsx +7 -0
  554. package/dist/components/catalyst-ui/hooks/use-google-font.tsx +39 -0
  555. package/dist/components/catalyst-ui/hooks/use-hover.tsx +24 -0
  556. package/dist/components/catalyst-ui/hooks/use-hydrated.tsx +31 -0
  557. package/dist/components/catalyst-ui/hooks/use-intersection-observer.tsx +28 -0
  558. package/dist/components/catalyst-ui/hooks/use-isomorphic-layout-effect.tsx +9 -0
  559. package/dist/components/catalyst-ui/hooks/use-key-press.tsx +30 -0
  560. package/dist/components/catalyst-ui/hooks/use-keyboard-shortcut.tsx +69 -0
  561. package/dist/components/catalyst-ui/hooks/use-keyboard.tsx +16 -0
  562. package/dist/components/catalyst-ui/hooks/use-local-storage-auto-save.tsx +24 -0
  563. package/dist/components/catalyst-ui/hooks/use-local-storage.tsx +32 -0
  564. package/dist/components/catalyst-ui/hooks/use-locales.tsx +40 -0
  565. package/dist/components/catalyst-ui/hooks/use-long-press.tsx +16 -0
  566. package/dist/components/catalyst-ui/hooks/use-markdown-batches.tsx +120 -0
  567. package/dist/components/catalyst-ui/hooks/use-markdown-to-html.tsx +42 -0
  568. package/dist/components/catalyst-ui/hooks/use-mount-effect.tsx +5 -0
  569. package/dist/components/catalyst-ui/hooks/use-mounted.tsx +11 -0
  570. package/dist/components/catalyst-ui/hooks/use-mouse-enter.tsx +13 -0
  571. package/dist/components/catalyst-ui/hooks/use-move.tsx +16 -0
  572. package/dist/components/catalyst-ui/hooks/use-mutation-observer-useage.tsx +96 -0
  573. package/dist/components/catalyst-ui/hooks/use-mutation-observer.tsx +117 -0
  574. package/dist/components/catalyst-ui/hooks/use-on-click-outside.tsx +38 -0
  575. package/dist/components/catalyst-ui/hooks/use-online-status.tsx +23 -0
  576. package/dist/components/catalyst-ui/hooks/use-outside-click.tsx +25 -0
  577. package/dist/components/catalyst-ui/hooks/use-overlay-listener.tsx +31 -0
  578. package/dist/components/catalyst-ui/hooks/use-overlay-scroll-listener.tsx +128 -0
  579. package/dist/components/catalyst-ui/hooks/use-pagination.tsx +68 -0
  580. package/dist/components/catalyst-ui/hooks/use-press.tsx +17 -0
  581. package/dist/components/catalyst-ui/hooks/use-previous.tsx +13 -0
  582. package/dist/components/catalyst-ui/hooks/use-read-local-storage.tsx +73 -0
  583. package/dist/components/catalyst-ui/hooks/use-reducer.tsx +0 -0
  584. package/dist/components/catalyst-ui/hooks/use-resize-listener.tsx +18 -0
  585. package/dist/components/catalyst-ui/hooks/use-screen.tsx +100 -0
  586. package/dist/components/catalyst-ui/hooks/use-script.tsx +102 -0
  587. package/dist/components/catalyst-ui/hooks/use-scroll-lock.tsx +91 -0
  588. package/dist/components/catalyst-ui/hooks/use-scroll-position.tsx +23 -0
  589. package/dist/components/catalyst-ui/hooks/use-sec-fetch-parser.tsx +52 -0
  590. package/dist/components/catalyst-ui/hooks/use-session-storage.tsx +31 -0
  591. package/dist/components/catalyst-ui/hooks/use-should-hydrate.tsx +27 -0
  592. package/dist/components/catalyst-ui/hooks/use-slide-in-1.tsx +96 -0
  593. package/dist/components/catalyst-ui/hooks/use-slide-in.tsx +368 -0
  594. package/dist/components/catalyst-ui/hooks/use-slider-with-input.tsx +106 -0
  595. package/dist/components/catalyst-ui/hooks/use-smooth-scroll.tsx +35 -0
  596. package/dist/components/catalyst-ui/hooks/use-stream.tsx +576 -0
  597. package/dist/components/catalyst-ui/hooks/use-tailwind-converter.tsx +465 -0
  598. package/dist/components/catalyst-ui/hooks/use-throttle.tsx +22 -0
  599. package/dist/components/catalyst-ui/hooks/use-transition.tsx +0 -0
  600. package/dist/components/catalyst-ui/hooks/use-unmount-effect.tsx +15 -0
  601. package/dist/components/catalyst-ui/hooks/use-update-effect.tsx +13 -0
  602. package/dist/components/catalyst-ui/hooks/use-validate-credit-card.tsx +112 -0
  603. package/dist/components/catalyst-ui/hooks/use-window-size.tsx +23 -0
  604. package/dist/components/catalyst-ui/hooks/useDevList.tsx +185 -0
  605. package/dist/components/catalyst-ui/hooks/useOnWindowResize.tsx +15 -0
  606. package/dist/components/catalyst-ui/index.ts +38 -0
  607. package/dist/components/catalyst-ui/inputs/autocomplete.tsx +569 -0
  608. package/dist/components/catalyst-ui/inputs/autocomplete1.tsx +323 -0
  609. package/dist/components/catalyst-ui/inputs/cc-input.tsx +44 -0
  610. package/dist/components/catalyst-ui/inputs/email-address-input.tsx +17 -0
  611. package/dist/components/catalyst-ui/inputs/index.ts +30 -0
  612. package/dist/components/catalyst-ui/inputs/input-with-characters-left.tsx +41 -0
  613. package/dist/components/catalyst-ui/inputs/input-with-end-add-on.tsx +25 -0
  614. package/dist/components/catalyst-ui/inputs/input-with-end-button.tsx +27 -0
  615. package/dist/components/catalyst-ui/inputs/input-with-end-icon-button.tsx +29 -0
  616. package/dist/components/catalyst-ui/inputs/input-with-end-inline-add-on.tsx +24 -0
  617. package/dist/components/catalyst-ui/inputs/input-with-end-inline-button.tsx +24 -0
  618. package/dist/components/catalyst-ui/inputs/input-with-end-select.tsx +27 -0
  619. package/dist/components/catalyst-ui/inputs/input-with-inline-add-ons.tsx +27 -0
  620. package/dist/components/catalyst-ui/inputs/input-with-inline-start-and-end-add-on.tsx +27 -0
  621. package/dist/components/catalyst-ui/inputs/input-with-inner-tags.tsx +60 -0
  622. package/dist/components/catalyst-ui/inputs/input-with-inset-label.tsx +23 -0
  623. package/dist/components/catalyst-ui/inputs/input-with-mask.tsx +44 -0
  624. package/dist/components/catalyst-ui/inputs/input-with-password-strength-indicator.tsx +137 -0
  625. package/dist/components/catalyst-ui/inputs/input-with-start-add-on.tsx +24 -0
  626. package/dist/components/catalyst-ui/inputs/input-with-start-inline-add-on.tsx +24 -0
  627. package/dist/components/catalyst-ui/inputs/input-with-start-select.tsx +30 -0
  628. package/dist/components/catalyst-ui/inputs/input-with-tags.tsx +72 -0
  629. package/dist/components/catalyst-ui/inputs/number-input-with-chevrons.tsx +61 -0
  630. package/dist/components/catalyst-ui/inputs/number-input-with-plus-minus-buttons.tsx +52 -0
  631. package/dist/components/catalyst-ui/inputs/search-input-with-icon-and-button.tsx +32 -0
  632. package/dist/components/catalyst-ui/inputs/search-input-with-kbd.tsx +26 -0
  633. package/dist/components/catalyst-ui/inputs/search-input-with-loader.tsx +59 -0
  634. package/dist/components/catalyst-ui/interactive/3d-pin.tsx +175 -0
  635. package/dist/components/catalyst-ui/interactive/action-sheet.tsx +240 -0
  636. package/dist/components/catalyst-ui/interactive/activity-card.tsx +196 -0
  637. package/dist/components/catalyst-ui/interactive/ai-prompt.tsx +441 -0
  638. package/dist/components/catalyst-ui/interactive/animated-cursor.tsx +254 -0
  639. package/dist/components/catalyst-ui/interactive/background-paths.tsx +172 -0
  640. package/dist/components/catalyst-ui/interactive/can-edit.tsx +100 -0
  641. package/dist/components/catalyst-ui/interactive/color-swatch.tsx +441 -0
  642. package/dist/components/catalyst-ui/interactive/currency-transfer.tsx +228 -0
  643. package/dist/components/catalyst-ui/interactive/cursor.tsx +109 -0
  644. package/dist/components/catalyst-ui/interactive/drag-and-drop.tsx +374 -0
  645. package/dist/components/catalyst-ui/interactive/drawing-2.tsx +1147 -0
  646. package/dist/components/catalyst-ui/interactive/drawing.tsx +576 -0
  647. package/dist/components/catalyst-ui/interactive/drop-zone-external.tsx +377 -0
  648. package/dist/components/catalyst-ui/interactive/drop-zone.tsx +399 -0
  649. package/dist/components/catalyst-ui/interactive/dropzone-1.tsx +259 -0
  650. package/dist/components/catalyst-ui/interactive/export-excel.tsx +201 -0
  651. package/dist/components/catalyst-ui/interactive/file-upload.tsx +403 -0
  652. package/dist/components/catalyst-ui/interactive/file_upload-1.tsx +422 -0
  653. package/dist/components/catalyst-ui/interactive/filesaver.tsx +51 -0
  654. package/dist/components/catalyst-ui/interactive/gantt-1.tsx +1464 -0
  655. package/dist/components/catalyst-ui/interactive/highlight.tsx +84 -0
  656. package/dist/components/catalyst-ui/interactive/index.ts +49 -0
  657. package/dist/components/catalyst-ui/interactive/kanban-1.tsx +338 -0
  658. package/dist/components/catalyst-ui/interactive/lens.tsx +121 -0
  659. package/dist/components/catalyst-ui/interactive/magnetic.tsx +105 -0
  660. package/dist/components/catalyst-ui/interactive/mouse-effect-card.tsx +158 -0
  661. package/dist/components/catalyst-ui/interactive/pdf-generator.tsx +414 -0
  662. package/dist/components/catalyst-ui/interactive/pdf-signature.tsx +623 -0
  663. package/dist/components/catalyst-ui/interactive/pdf-viewer.tsx +931 -0
  664. package/dist/components/catalyst-ui/interactive/pointer.tsx +108 -0
  665. package/dist/components/catalyst-ui/interactive/ripple.tsx +103 -0
  666. package/dist/components/catalyst-ui/interactive/scroll-based-velocity.tsx +205 -0
  667. package/dist/components/catalyst-ui/interactive/signature.tsx +606 -0
  668. package/dist/components/catalyst-ui/interactive/smooth-cursor.tsx +236 -0
  669. package/dist/components/catalyst-ui/interactive/sortable.tsx +420 -0
  670. package/dist/components/catalyst-ui/interactive/spreadsheet.tsx +601 -0
  671. package/dist/components/catalyst-ui/interactive/task-board.tsx +902 -0
  672. package/dist/components/catalyst-ui/interactive/terminal.tsx +587 -0
  673. package/dist/components/catalyst-ui/interactive/tour-1.tsx +426 -0
  674. package/dist/components/catalyst-ui/interactive/tour.tsx +830 -0
  675. package/dist/components/catalyst-ui/interactive/transition.tsx +913 -0
  676. package/dist/components/catalyst-ui/interactive/transitionable-portal.tsx +0 -0
  677. package/dist/components/catalyst-ui/interactive/tree-view.tsx +427 -0
  678. package/dist/components/catalyst-ui/interactive/virtualizer.tsx +233 -0
  679. package/dist/components/catalyst-ui/interactive/watermark.tsx +211 -0
  680. package/dist/components/catalyst-ui/lo-fi/components/AboutPageLoFi.tsx +19 -0
  681. package/dist/components/catalyst-ui/lo-fi/components/ActionPanelLoFi.tsx +22 -0
  682. package/dist/components/catalyst-ui/lo-fi/components/AnchorLoFi-lofi.tsx +11 -0
  683. package/dist/components/catalyst-ui/lo-fi/components/ButtonGroupLoFi.tsx +11 -0
  684. package/dist/components/catalyst-ui/lo-fi/components/ButtonIconLoFi.tsx +10 -0
  685. package/dist/components/catalyst-ui/lo-fi/components/ButtonLinkLoFi.tsx +5 -0
  686. package/dist/components/catalyst-ui/lo-fi/components/ButtonLoadingLoFi.tsx +9 -0
  687. package/dist/components/catalyst-ui/lo-fi/components/CalendarForSidebarLoFi.tsx +21 -0
  688. package/dist/components/catalyst-ui/lo-fi/components/CalendarMultiDayLoFi.tsx +23 -0
  689. package/dist/components/catalyst-ui/lo-fi/components/CalloutLoFi.tsx +23 -0
  690. package/dist/components/catalyst-ui/lo-fi/components/Chart.tsx +239 -0
  691. package/dist/components/catalyst-ui/lo-fi/components/ContainerLoFi.tsx +13 -0
  692. package/dist/components/catalyst-ui/lo-fi/components/CopyTextLoFi.tsx +10 -0
  693. package/dist/components/catalyst-ui/lo-fi/components/DebouncedInputLoFi.tsx +10 -0
  694. package/dist/components/catalyst-ui/lo-fi/components/DescriptionListLoFi.tsx +14 -0
  695. package/dist/components/catalyst-ui/lo-fi/components/EditorLoFi.tsx +14 -0
  696. package/dist/components/catalyst-ui/lo-fi/components/EmptyStateLoFi.tsx +12 -0
  697. package/dist/components/catalyst-ui/lo-fi/components/ErrorPageLoFi.tsx +12 -0
  698. package/dist/components/catalyst-ui/lo-fi/components/ExportFileLoFi.tsx +16 -0
  699. package/dist/components/catalyst-ui/lo-fi/components/FlyoutMenuLoFi.tsx +14 -0
  700. package/dist/components/catalyst-ui/lo-fi/components/FormLayoutLoFi.tsx +15 -0
  701. package/dist/components/catalyst-ui/lo-fi/components/HeroCalendar.tsx +115 -0
  702. package/dist/components/catalyst-ui/lo-fi/components/HeroLoFi.tsx +17 -0
  703. package/dist/components/catalyst-ui/lo-fi/components/ListLoFi.tsx +11 -0
  704. package/dist/components/catalyst-ui/lo-fi/components/LoadingLoFi.tsx +10 -0
  705. package/dist/components/catalyst-ui/lo-fi/components/LogoCloudLoFi.tsx +11 -0
  706. package/dist/components/catalyst-ui/lo-fi/components/MediaObjectLoFi.tsx +14 -0
  707. package/dist/components/catalyst-ui/lo-fi/components/MultiColumnLayoutLoFi.tsx +11 -0
  708. package/dist/components/catalyst-ui/lo-fi/components/NavButtonLoFi.tsx +6 -0
  709. package/dist/components/catalyst-ui/lo-fi/components/NavButtonStyledLoFi.tsx +11 -0
  710. package/dist/components/catalyst-ui/lo-fi/components/ScaffoldingLoFi.tsx +13 -0
  711. package/dist/components/catalyst-ui/lo-fi/components/SectionHeadingLoFi.tsx +11 -0
  712. package/dist/components/catalyst-ui/lo-fi/components/VerticalNavigationLoFi.tsx +11 -0
  713. package/dist/components/catalyst-ui/lo-fi/components/accordion-lofi.tsx +76 -0
  714. package/dist/components/catalyst-ui/lo-fi/components/accountForm-lofi.tsx +21 -0
  715. package/dist/components/catalyst-ui/lo-fi/components/alert-lofi.tsx +18 -0
  716. package/dist/components/catalyst-ui/lo-fi/components/alertDialog-lofi.tsx +14 -0
  717. package/dist/components/catalyst-ui/lo-fi/components/announcement-lofi.tsx +20 -0
  718. package/dist/components/catalyst-ui/lo-fi/components/aspectRatio-lofi.tsx +9 -0
  719. package/dist/components/catalyst-ui/lo-fi/components/authenticator-lofi.tsx +24 -0
  720. package/dist/components/catalyst-ui/lo-fi/components/avatar-lofi.tsx +6 -0
  721. package/dist/components/catalyst-ui/lo-fi/components/badge-lofi.tsx +5 -0
  722. package/dist/components/catalyst-ui/lo-fi/components/banner.tsx +31 -0
  723. package/dist/components/catalyst-ui/lo-fi/components/bento-grid.tsx +31 -0
  724. package/dist/components/catalyst-ui/lo-fi/components/blog.tsx +37 -0
  725. package/dist/components/catalyst-ui/lo-fi/components/breadcrumb.tsx +13 -0
  726. package/dist/components/catalyst-ui/lo-fi/components/button.tsx +11 -0
  727. package/dist/components/catalyst-ui/lo-fi/components/card-header.tsx +16 -0
  728. package/dist/components/catalyst-ui/lo-fi/components/card-heading.tsx +30 -0
  729. package/dist/components/catalyst-ui/lo-fi/components/card.tsx +16 -0
  730. package/dist/components/catalyst-ui/lo-fi/components/carousel.tsx +14 -0
  731. package/dist/components/catalyst-ui/lo-fi/components/cart.tsx +21 -0
  732. package/dist/components/catalyst-ui/lo-fi/components/catchAll.tsx +660 -0
  733. package/dist/components/catalyst-ui/lo-fi/components/categoryFilter.tsx +19 -0
  734. package/dist/components/catalyst-ui/lo-fi/components/categoryPage.tsx +31 -0
  735. package/dist/components/catalyst-ui/lo-fi/components/categoryPreviews.tsx +20 -0
  736. package/dist/components/catalyst-ui/lo-fi/components/checkbox.tsx +10 -0
  737. package/dist/components/catalyst-ui/lo-fi/components/checkout-form.tsx +27 -0
  738. package/dist/components/catalyst-ui/lo-fi/components/checkout.tsx +34 -0
  739. package/dist/components/catalyst-ui/lo-fi/components/checkoutPage.tsx +67 -0
  740. package/dist/components/catalyst-ui/lo-fi/components/clientOnly.tsx +34 -0
  741. package/dist/components/catalyst-ui/lo-fi/components/collapsible.tsx +13 -0
  742. package/dist/components/catalyst-ui/lo-fi/components/columns.tsx +23 -0
  743. package/dist/components/catalyst-ui/lo-fi/components/combobox.tsx +13 -0
  744. package/dist/components/catalyst-ui/lo-fi/components/contact-section.tsx +28 -0
  745. package/dist/components/catalyst-ui/lo-fi/components/content-section.tsx +20 -0
  746. package/dist/components/catalyst-ui/lo-fi/components/cookieSettings.tsx +34 -0
  747. package/dist/components/catalyst-ui/lo-fi/components/cta-section.tsx +17 -0
  748. package/dist/components/catalyst-ui/lo-fi/components/data.tsx +19 -0
  749. package/dist/components/catalyst-ui/lo-fi/components/dataTable.tsx +36 -0
  750. package/dist/components/catalyst-ui/lo-fi/components/datePicker.tsx +10 -0
  751. package/dist/components/catalyst-ui/lo-fi/components/details.tsx +36 -0
  752. package/dist/components/catalyst-ui/lo-fi/components/dialog.tsx +16 -0
  753. package/dist/components/catalyst-ui/lo-fi/components/display-code.tsx +19 -0
  754. package/dist/components/catalyst-ui/lo-fi/components/dropdown.tsx +15 -0
  755. package/dist/components/catalyst-ui/lo-fi/components/dropdownMenu.tsx +13 -0
  756. package/dist/components/catalyst-ui/lo-fi/components/faq-section.tsx +28 -0
  757. package/dist/components/catalyst-ui/lo-fi/components/feature-section.tsx +20 -0
  758. package/dist/components/catalyst-ui/lo-fi/components/feature.tsx +26 -0
  759. package/dist/components/catalyst-ui/lo-fi/components/feedList.tsx +26 -0
  760. package/dist/components/catalyst-ui/lo-fi/components/footer.tsx +40 -0
  761. package/dist/components/catalyst-ui/lo-fi/components/form.tsx +17 -0
  762. package/dist/components/catalyst-ui/lo-fi/components/fourofour.tsx +42 -0
  763. package/dist/components/catalyst-ui/lo-fi/components/gridLists.tsx +36 -0
  764. package/dist/components/catalyst-ui/lo-fi/components/header.tsx +23 -0
  765. package/dist/components/catalyst-ui/lo-fi/components/hero.tsx +21 -0
  766. package/dist/components/catalyst-ui/lo-fi/components/homeScreen.tsx +31 -0
  767. package/dist/components/catalyst-ui/lo-fi/components/hooks.tsx +31 -0
  768. package/dist/components/catalyst-ui/lo-fi/components/hoverCard.tsx +13 -0
  769. package/dist/components/catalyst-ui/lo-fi/components/icons.tsx +18 -0
  770. package/dist/components/catalyst-ui/lo-fi/components/image.tsx +24 -0
  771. package/dist/components/catalyst-ui/lo-fi/components/incentives.tsx +26 -0
  772. package/dist/components/catalyst-ui/lo-fi/components/index.ts +152 -0
  773. package/dist/components/catalyst-ui/lo-fi/components/input.tsx +10 -0
  774. package/dist/components/catalyst-ui/lo-fi/components/label.tsx +5 -0
  775. package/dist/components/catalyst-ui/lo-fi/components/landingPage.tsx +35 -0
  776. package/dist/components/catalyst-ui/lo-fi/components/loadingPage.tsx +23 -0
  777. package/dist/components/catalyst-ui/lo-fi/components/menubar.tsx +14 -0
  778. package/dist/components/catalyst-ui/lo-fi/components/motherboard-blog.tsx +178 -0
  779. package/dist/components/catalyst-ui/lo-fi/components/motherboard.tsx +91 -0
  780. package/dist/components/catalyst-ui/lo-fi/components/newsletter.tsx +25 -0
  781. package/dist/components/catalyst-ui/lo-fi/components/notifications.tsx +21 -0
  782. package/dist/components/catalyst-ui/lo-fi/components/orderDetails.tsx +51 -0
  783. package/dist/components/catalyst-ui/lo-fi/components/orderHistory.tsx +35 -0
  784. package/dist/components/catalyst-ui/lo-fi/components/orderSumaries.tsx +34 -0
  785. package/dist/components/catalyst-ui/lo-fi/components/pageHeading.tsx +26 -0
  786. package/dist/components/catalyst-ui/lo-fi/components/pageNav.tsx +17 -0
  787. package/dist/components/catalyst-ui/lo-fi/components/pagination.tsx +13 -0
  788. package/dist/components/catalyst-ui/lo-fi/components/paymentMethod.tsx +32 -0
  789. package/dist/components/catalyst-ui/lo-fi/components/pricing.tsx +34 -0
  790. package/dist/components/catalyst-ui/lo-fi/components/pricingPage.tsx +47 -0
  791. package/dist/components/catalyst-ui/lo-fi/components/prisma.tsx +23 -0
  792. package/dist/components/catalyst-ui/lo-fi/components/product-card.tsx +12 -0
  793. package/dist/components/catalyst-ui/lo-fi/components/product-gallery.tsx +10 -0
  794. package/dist/components/catalyst-ui/lo-fi/components/productList.tsx +41 -0
  795. package/dist/components/catalyst-ui/lo-fi/components/productOverview.tsx +62 -0
  796. package/dist/components/catalyst-ui/lo-fi/components/productsFeatured.tsx +43 -0
  797. package/dist/components/catalyst-ui/lo-fi/components/progress.tsx +15 -0
  798. package/dist/components/catalyst-ui/lo-fi/components/promo.tsx +33 -0
  799. package/dist/components/catalyst-ui/lo-fi/components/radioGroup.tsx +14 -0
  800. package/dist/components/catalyst-ui/lo-fi/components/reportIssue.tsx +22 -0
  801. package/dist/components/catalyst-ui/lo-fi/components/review.tsx +14 -0
  802. package/dist/components/catalyst-ui/lo-fi/components/reviews.tsx +60 -0
  803. package/dist/components/catalyst-ui/lo-fi/components/sales-lofi.tsx +257 -0
  804. package/dist/components/catalyst-ui/lo-fi/components/scaffolding.tsx +46 -0
  805. package/dist/components/catalyst-ui/lo-fi/components/scrollBar.tsx +24 -0
  806. package/dist/components/catalyst-ui/lo-fi/components/select.tsx +13 -0
  807. package/dist/components/catalyst-ui/lo-fi/components/settings.tsx +32 -0
  808. package/dist/components/catalyst-ui/lo-fi/components/shoppingCart.tsx +52 -0
  809. package/dist/components/catalyst-ui/lo-fi/components/sidebar.tsx +38 -0
  810. package/dist/components/catalyst-ui/lo-fi/components/skeleton.tsx +11 -0
  811. package/dist/components/catalyst-ui/lo-fi/components/slider.tsx +16 -0
  812. package/dist/components/catalyst-ui/lo-fi/components/stacked-lofi.tsx +43 -0
  813. package/dist/components/catalyst-ui/lo-fi/components/stacked.tsx +52 -0
  814. package/dist/components/catalyst-ui/lo-fi/components/stats.tsx +25 -0
  815. package/dist/components/catalyst-ui/lo-fi/components/storeFront.tsx +65 -0
  816. package/dist/components/catalyst-ui/lo-fi/components/storeNav.tsx +37 -0
  817. package/dist/components/catalyst-ui/lo-fi/components/switch.tsx +9 -0
  818. package/dist/components/catalyst-ui/lo-fi/components/tabs.tsx +29 -0
  819. package/dist/components/catalyst-ui/lo-fi/components/tailwind.tsx +22 -0
  820. package/dist/components/catalyst-ui/lo-fi/components/team.tsx +27 -0
  821. package/dist/components/catalyst-ui/lo-fi/components/team2.tsx +27 -0
  822. package/dist/components/catalyst-ui/lo-fi/components/templatePage.tsx +19 -0
  823. package/dist/components/catalyst-ui/lo-fi/components/testimonial.tsx +36 -0
  824. package/dist/components/catalyst-ui/lo-fi/components/testtimonial.tsx +35 -0
  825. package/dist/components/catalyst-ui/lo-fi/components/textarea.tsx +10 -0
  826. package/dist/components/catalyst-ui/lo-fi/components/toast.tsx +13 -0
  827. package/dist/components/catalyst-ui/lo-fi/components/toggle.tsx +12 -0
  828. package/dist/components/catalyst-ui/lo-fi/components/tooltip.tsx +12 -0
  829. package/dist/components/catalyst-ui/lo-fi/components/useHydrated.tsx +38 -0
  830. package/dist/components/catalyst-ui/lo-fi/index.ts +528 -0
  831. package/dist/components/catalyst-ui/lo-fi/utils/atom.tsx +30 -0
  832. package/dist/components/catalyst-ui/lo-fi/utils/component.tsx +28 -0
  833. package/dist/components/catalyst-ui/lo-fi/v2/AIPromptLoFi.tsx +17 -0
  834. package/dist/components/catalyst-ui/lo-fi/v2/AboutLoFi.tsx +19 -0
  835. package/dist/components/catalyst-ui/lo-fi/v2/AccessLoFi.tsx +14 -0
  836. package/dist/components/catalyst-ui/lo-fi/v2/AccountLoFi.tsx +19 -0
  837. package/dist/components/catalyst-ui/lo-fi/v2/ActivityGoalLoFi.tsx +20 -0
  838. package/dist/components/catalyst-ui/lo-fi/v2/AiChatLoFi.tsx +29 -0
  839. package/dist/components/catalyst-ui/lo-fi/v2/AlertV1LoFi.tsx +13 -0
  840. package/dist/components/catalyst-ui/lo-fi/v2/AspectRatioLoFi.tsx +11 -0
  841. package/dist/components/catalyst-ui/lo-fi/v2/AuthProviderLoFi.tsx +18 -0
  842. package/dist/components/catalyst-ui/lo-fi/v2/AuthSystemLoFi.tsx +23 -0
  843. package/dist/components/catalyst-ui/lo-fi/v2/AutoCompleteV2LoFi.tsx +17 -0
  844. package/dist/components/catalyst-ui/lo-fi/v2/BLoFi.tsx +9 -0
  845. package/dist/components/catalyst-ui/lo-fi/v2/BankLoFi.tsx +26 -0
  846. package/dist/components/catalyst-ui/lo-fi/v2/BarcodeLoFi.tsx +24 -0
  847. package/dist/components/catalyst-ui/lo-fi/v2/BasicAuthMiddlewareLoFi.tsx +16 -0
  848. package/dist/components/catalyst-ui/lo-fi/v2/BatcherMiddlewareLoFi.tsx +17 -0
  849. package/dist/components/catalyst-ui/lo-fi/v2/BlocksLoFi.tsx +15 -0
  850. package/dist/components/catalyst-ui/lo-fi/v2/BlogEditorLoFi.tsx +25 -0
  851. package/dist/components/catalyst-ui/lo-fi/v2/BlogListLoFi.tsx +17 -0
  852. package/dist/components/catalyst-ui/lo-fi/v2/BlogSidebarLoFi.tsx +20 -0
  853. package/dist/components/catalyst-ui/lo-fi/v2/BoxLoFi.tsx +10 -0
  854. package/dist/components/catalyst-ui/lo-fi/v2/CORSMiddlewareLoFi.tsx +17 -0
  855. package/dist/components/catalyst-ui/lo-fi/v2/CSSLoFi.tsx +17 -0
  856. package/dist/components/catalyst-ui/lo-fi/v2/CalendarLoFi.tsx +25 -0
  857. package/dist/components/catalyst-ui/lo-fi/v2/CallOutLoFi.tsx +16 -0
  858. package/dist/components/catalyst-ui/lo-fi/v2/CarServiceLoFi.tsx +18 -0
  859. package/dist/components/catalyst-ui/lo-fi/v2/CardsLoFi.tsx +16 -0
  860. package/dist/components/catalyst-ui/lo-fi/v2/CarouselHeroLoFi.tsx +15 -0
  861. package/dist/components/catalyst-ui/lo-fi/v2/CategoriesNavigationLoFi.tsx +13 -0
  862. package/dist/components/catalyst-ui/lo-fi/v2/CategoryFiltersSectionCenteredLoFi.tsx +13 -0
  863. package/dist/components/catalyst-ui/lo-fi/v2/CategoryFiltersSectionLoFi.tsx +15 -0
  864. package/dist/components/catalyst-ui/lo-fi/v2/CategoryFiltersSidebarLoFi.tsx +22 -0
  865. package/dist/components/catalyst-ui/lo-fi/v2/ChatBubbleLoFi.tsx +14 -0
  866. package/dist/components/catalyst-ui/lo-fi/v2/ChatLoFi.tsx +22 -0
  867. package/dist/components/catalyst-ui/lo-fi/v2/CheckListLoFi.tsx +14 -0
  868. package/dist/components/catalyst-ui/lo-fi/v2/CheckboxMultistateLoFi.tsx +11 -0
  869. package/dist/components/catalyst-ui/lo-fi/v2/CheckboxTristateLoFi.tsx +11 -0
  870. package/dist/components/catalyst-ui/lo-fi/v2/CheckoutCancelLoFi.tsx +12 -0
  871. package/dist/components/catalyst-ui/lo-fi/v2/CheckoutSuccessLoFi.tsx +12 -0
  872. package/dist/components/catalyst-ui/lo-fi/v2/CheckoutVariousLoFi.tsx +16 -0
  873. package/dist/components/catalyst-ui/lo-fi/v2/ClientOnlyLoFi.tsx +13 -0
  874. package/dist/components/catalyst-ui/lo-fi/v2/CnLoFi.tsx +13 -0
  875. package/dist/components/catalyst-ui/lo-fi/v2/CodeSectionLoFi.tsx +21 -0
  876. package/dist/components/catalyst-ui/lo-fi/v2/CollapsesToIconsLoFi.tsx +11 -0
  877. package/dist/components/catalyst-ui/lo-fi/v2/CollapsibleFileTreeLoFi.tsx +26 -0
  878. package/dist/components/catalyst-ui/lo-fi/v2/ConfigSectionLoFi.tsx +26 -0
  879. package/dist/components/catalyst-ui/lo-fi/v2/ConfirmPopupLoFi.tsx +15 -0
  880. package/dist/components/catalyst-ui/lo-fi/v2/ContactLoFi.tsx +13 -0
  881. package/dist/components/catalyst-ui/lo-fi/v2/ContainerLoFi.tsx +11 -0
  882. package/dist/components/catalyst-ui/lo-fi/v2/ContextStorageMiddlewareLoFi.tsx +18 -0
  883. package/dist/components/catalyst-ui/lo-fi/v2/CookieSettingsLoFi.tsx +22 -0
  884. package/dist/components/catalyst-ui/lo-fi/v2/CoreLoFi.tsx +13 -0
  885. package/dist/components/catalyst-ui/lo-fi/v2/CreateAccountLoFi.tsx +16 -0
  886. package/dist/components/catalyst-ui/lo-fi/v2/DashboardLoFi.tsx +13 -0
  887. package/dist/components/catalyst-ui/lo-fi/v2/DashboardSidebarLoFi.tsx +17 -0
  888. package/dist/components/catalyst-ui/lo-fi/v2/DebouncedFetcherAndSubmitLoFi.tsx +11 -0
  889. package/dist/components/catalyst-ui/lo-fi/v2/DebouncedInputLoFi.tsx +10 -0
  890. package/dist/components/catalyst-ui/lo-fi/v2/DefaultStyledLoFi.tsx +11 -0
  891. package/dist/components/catalyst-ui/lo-fi/v2/DeferredContentLoFi.tsx +14 -0
  892. package/dist/components/catalyst-ui/lo-fi/v2/DelegateAnchorsToRemixLoFi.tsx +11 -0
  893. package/dist/components/catalyst-ui/lo-fi/v2/DetailLoFi.tsx +12 -0
  894. package/dist/components/catalyst-ui/lo-fi/v2/DeviceMockupLoFi.tsx +15 -0
  895. package/dist/components/catalyst-ui/lo-fi/v2/DiffLoFi.tsx +15 -0
  896. package/dist/components/catalyst-ui/lo-fi/v2/DisplayCodeLoFi.tsx +20 -0
  897. package/dist/components/catalyst-ui/lo-fi/v2/DockLoFi.tsx +13 -0
  898. package/dist/components/catalyst-ui/lo-fi/v2/DragAndDropLoFi.tsx +15 -0
  899. package/dist/components/catalyst-ui/lo-fi/v2/DrawerLoFi.tsx +16 -0
  900. package/dist/components/catalyst-ui/lo-fi/v2/DrawingLoFi.tsx +18 -0
  901. package/dist/components/catalyst-ui/lo-fi/v2/DrawingV2LoFi.tsx +21 -0
  902. package/dist/components/catalyst-ui/lo-fi/v2/DropZoneLoFi.tsx +12 -0
  903. package/dist/components/catalyst-ui/lo-fi/v2/ECommerceLoFi.tsx +14 -0
  904. package/dist/components/catalyst-ui/lo-fi/v2/EmbedLoFi.tsx +13 -0
  905. package/dist/components/catalyst-ui/lo-fi/v2/EmblaCarouselLoFi.tsx +18 -0
  906. package/dist/components/catalyst-ui/lo-fi/v2/EmblaCarouselSnapLoFi.tsx +12 -0
  907. package/dist/components/catalyst-ui/lo-fi/v2/EnhancedChartLoFi.tsx +29 -0
  908. package/dist/components/catalyst-ui/lo-fi/v2/ErrorLoFi.tsx +12 -0
  909. package/dist/components/catalyst-ui/lo-fi/v2/ExerciseMinutesLoFi.tsx +16 -0
  910. package/dist/components/catalyst-ui/lo-fi/v2/FABLoFi.tsx +10 -0
  911. package/dist/components/catalyst-ui/lo-fi/v2/FaqLoFi.tsx +12 -0
  912. package/dist/components/catalyst-ui/lo-fi/v2/FeatureSectionLoFi.tsx +29 -0
  913. package/dist/components/catalyst-ui/lo-fi/v2/FeedLoFi.tsx +28 -0
  914. package/dist/components/catalyst-ui/lo-fi/v2/FileManagerLoFi.tsx +18 -0
  915. package/dist/components/catalyst-ui/lo-fi/v2/FilterComboboxLoFi.tsx +11 -0
  916. package/dist/components/catalyst-ui/lo-fi/v2/FilterDrawerLoFi.tsx +17 -0
  917. package/dist/components/catalyst-ui/lo-fi/v2/FilterTanStackTableLoFi.tsx +11 -0
  918. package/dist/components/catalyst-ui/lo-fi/v2/FixedMarkerLoFi.tsx +10 -0
  919. package/dist/components/catalyst-ui/lo-fi/v2/FlexboxGridLoFi.tsx +13 -0
  920. package/dist/components/catalyst-ui/lo-fi/v2/FloatingSidebarWithSubmenusLoFi.tsx +18 -0
  921. package/dist/components/catalyst-ui/lo-fi/v2/ForLoFi.tsx +11 -0
  922. package/dist/components/catalyst-ui/lo-fi/v2/ForgotPasswordLoFi.tsx +12 -0
  923. package/dist/components/catalyst-ui/lo-fi/v2/FormsLoFi.tsx +13 -0
  924. package/dist/components/catalyst-ui/lo-fi/v2/Four04LoFi.tsx +12 -0
  925. package/dist/components/catalyst-ui/lo-fi/v2/FunctionalLeftRightSidebarLoFi.tsx +21 -0
  926. package/dist/components/catalyst-ui/lo-fi/v2/FuseSearchInputLoFi.tsx +11 -0
  927. package/dist/components/catalyst-ui/lo-fi/v2/FuzzyFilterLoFi.tsx +11 -0
  928. package/dist/components/catalyst-ui/lo-fi/v2/FuzzySortLoFi.tsx +14 -0
  929. package/dist/components/catalyst-ui/lo-fi/v2/GalleriaLoFi.tsx +14 -0
  930. package/dist/components/catalyst-ui/lo-fi/v2/GnattChartLoFi.tsx +20 -0
  931. package/dist/components/catalyst-ui/lo-fi/v2/GridLoFi.tsx +14 -0
  932. package/dist/components/catalyst-ui/lo-fi/v2/H3LoFi.tsx +9 -0
  933. package/dist/components/catalyst-ui/lo-fi/v2/H4LoFi.tsx +9 -0
  934. package/dist/components/catalyst-ui/lo-fi/v2/H5LoFi.tsx +9 -0
  935. package/dist/components/catalyst-ui/lo-fi/v2/HeaderNavLoFi.tsx +15 -0
  936. package/dist/components/catalyst-ui/lo-fi/v2/HelpLoFi.tsx +12 -0
  937. package/dist/components/catalyst-ui/lo-fi/v2/HighlightLoFi.tsx +13 -0
  938. package/dist/components/catalyst-ui/lo-fi/v2/HighlightV1LoFi.tsx +10 -0
  939. package/dist/components/catalyst-ui/lo-fi/v2/HomeLoFi.tsx +14 -0
  940. package/dist/components/catalyst-ui/lo-fi/v2/HoneypotMiddlewareLoFi.tsx +16 -0
  941. package/dist/components/catalyst-ui/lo-fi/v2/IBLoFi.tsx +9 -0
  942. package/dist/components/catalyst-ui/lo-fi/v2/ILoFi.tsx +9 -0
  943. package/dist/components/catalyst-ui/lo-fi/v2/ImageLoFi.tsx +9 -0
  944. package/dist/components/catalyst-ui/lo-fi/v2/ImageSectionLoFi.tsx +18 -0
  945. package/dist/components/catalyst-ui/lo-fi/v2/InADialogLoFi.tsx +17 -0
  946. package/dist/components/catalyst-ui/lo-fi/v2/IncIdLoFi.tsx +11 -0
  947. package/dist/components/catalyst-ui/lo-fi/v2/IncentivesCardLoFi.tsx +11 -0
  948. package/dist/components/catalyst-ui/lo-fi/v2/IndicatorLoFi.tsx +11 -0
  949. package/dist/components/catalyst-ui/lo-fi/v2/InsetSidebarSecondaryNavLoFi.tsx +20 -0
  950. package/dist/components/catalyst-ui/lo-fi/v2/InsufficientPermissionsLoFi.tsx +12 -0
  951. package/dist/components/catalyst-ui/lo-fi/v2/InvoiceLoFi.tsx +17 -0
  952. package/dist/components/catalyst-ui/lo-fi/v2/JWKAuthMiddlewareLoFi.tsx +17 -0
  953. package/dist/components/catalyst-ui/lo-fi/v2/LandingLoFi.tsx +12 -0
  954. package/dist/components/catalyst-ui/lo-fi/v2/LayoutLoFi.tsx +24 -0
  955. package/dist/components/catalyst-ui/lo-fi/v2/LoadErrorPageLoFi.tsx +15 -0
  956. package/dist/components/catalyst-ui/lo-fi/v2/LoadingLoFi.tsx +15 -0
  957. package/dist/components/catalyst-ui/lo-fi/v2/LoadingOverlayLoFi.tsx +13 -0
  958. package/dist/components/catalyst-ui/lo-fi/v2/LoadingPageLoFi.tsx +18 -0
  959. package/dist/components/catalyst-ui/lo-fi/v2/LoginLoFi.tsx +13 -0
  960. package/dist/components/catalyst-ui/lo-fi/v2/MailLoFi.tsx +18 -0
  961. package/dist/components/catalyst-ui/lo-fi/v2/MarketingLoFi.tsx +15 -0
  962. package/dist/components/catalyst-ui/lo-fi/v2/MegaMenuLoFi.tsx +26 -0
  963. package/dist/components/catalyst-ui/lo-fi/v2/MenuLoFi.tsx +14 -0
  964. package/dist/components/catalyst-ui/lo-fi/v2/MessageLoFi.tsx +14 -0
  965. package/dist/components/catalyst-ui/lo-fi/v2/MeterLoFi.tsx +16 -0
  966. package/dist/components/catalyst-ui/lo-fi/v2/MobileNavLoFi.tsx +12 -0
  967. package/dist/components/catalyst-ui/lo-fi/v2/ModalIntegrationsLoFi.tsx +24 -0
  968. package/dist/components/catalyst-ui/lo-fi/v2/ModalV1LoFi.tsx +20 -0
  969. package/dist/components/catalyst-ui/lo-fi/v2/MusicLoFi.tsx +17 -0
  970. package/dist/components/catalyst-ui/lo-fi/v2/NavMainLoFi.tsx +13 -0
  971. package/dist/components/catalyst-ui/lo-fi/v2/NavProjectsLoFi.tsx +20 -0
  972. package/dist/components/catalyst-ui/lo-fi/v2/NavTreeViewLoFi.tsx +17 -0
  973. package/dist/components/catalyst-ui/lo-fi/v2/NavUserLoFi.tsx +14 -0
  974. package/dist/components/catalyst-ui/lo-fi/v2/NestedComboboxLoFi.tsx +14 -0
  975. package/dist/components/catalyst-ui/lo-fi/v2/NestedCommandDialogLoFi.tsx +15 -0
  976. package/dist/components/catalyst-ui/lo-fi/v2/NestedCommandLoFi.tsx +16 -0
  977. package/dist/components/catalyst-ui/lo-fi/v2/NotFoundLoFi.tsx +12 -0
  978. package/dist/components/catalyst-ui/lo-fi/v2/NoteSectionLoFi.tsx +17 -0
  979. package/dist/components/catalyst-ui/lo-fi/v2/NotificationLoFi.tsx +14 -0
  980. package/dist/components/catalyst-ui/lo-fi/v2/OnTheRightLoFi.tsx +14 -0
  981. package/dist/components/catalyst-ui/lo-fi/v2/OrderListLoFi.tsx +17 -0
  982. package/dist/components/catalyst-ui/lo-fi/v2/OrderSummaryLoFi.tsx +17 -0
  983. package/dist/components/catalyst-ui/lo-fi/v2/OrderedListLoFi.tsx +14 -0
  984. package/dist/components/catalyst-ui/lo-fi/v2/OtpLoFi.tsx +16 -0
  985. package/dist/components/catalyst-ui/lo-fi/v2/OverlayPanelLoFi.tsx +12 -0
  986. package/dist/components/catalyst-ui/lo-fi/v2/PDFGeneratorLoFi.tsx +19 -0
  987. package/dist/components/catalyst-ui/lo-fi/v2/PMLoFi.tsx +14 -0
  988. package/dist/components/catalyst-ui/lo-fi/v2/PageHeaderLoFi.tsx +14 -0
  989. package/dist/components/catalyst-ui/lo-fi/v2/PageHeadingsSectionLoFi.tsx +11 -0
  990. package/dist/components/catalyst-ui/lo-fi/v2/PaginationButtonLoFi.tsx +8 -0
  991. package/dist/components/catalyst-ui/lo-fi/v2/PaginationWrapperLoFi.tsx +14 -0
  992. package/dist/components/catalyst-ui/lo-fi/v2/PanelLoFi.tsx +17 -0
  993. package/dist/components/catalyst-ui/lo-fi/v2/PanelMenuLoFi.tsx +17 -0
  994. package/dist/components/catalyst-ui/lo-fi/v2/PasswordInputLoFi.tsx +15 -0
  995. package/dist/components/catalyst-ui/lo-fi/v2/PaymentFormLoFi.tsx +15 -0
  996. package/dist/components/catalyst-ui/lo-fi/v2/PaymentMethodLoFi.tsx +18 -0
  997. package/dist/components/catalyst-ui/lo-fi/v2/PaymentsLoFi.tsx +22 -0
  998. package/dist/components/catalyst-ui/lo-fi/v2/PdfSignatureLoFi.tsx +14 -0
  999. package/dist/components/catalyst-ui/lo-fi/v2/PdfViewerLoFi.tsx +23 -0
  1000. package/dist/components/catalyst-ui/lo-fi/v2/PlaceholderCodeLoFi.tsx +15 -0
  1001. package/dist/components/catalyst-ui/lo-fi/v2/PlaygroundLoFi.tsx +15 -0
  1002. package/dist/components/catalyst-ui/lo-fi/v2/PopconfirmLoFi.tsx +17 -0
  1003. package/dist/components/catalyst-ui/lo-fi/v2/PrefetchAnchorsLoFi.tsx +10 -0
  1004. package/dist/components/catalyst-ui/lo-fi/v2/PrismaClientExtensionLoFi.tsx +16 -0
  1005. package/dist/components/catalyst-ui/lo-fi/v2/ProductCategoryLoFi.tsx +13 -0
  1006. package/dist/components/catalyst-ui/lo-fi/v2/ProductComparisonLoFi.tsx +14 -0
  1007. package/dist/components/catalyst-ui/lo-fi/v2/ProductDetailsLoFi.tsx +14 -0
  1008. package/dist/components/catalyst-ui/lo-fi/v2/ProductEditLoFi.tsx +12 -0
  1009. package/dist/components/catalyst-ui/lo-fi/v2/ProductPricingLoFi.tsx +12 -0
  1010. package/dist/components/catalyst-ui/lo-fi/v2/ProductsLoFi.tsx +14 -0
  1011. package/dist/components/catalyst-ui/lo-fi/v2/ProfileCreateLoFi.tsx +12 -0
  1012. package/dist/components/catalyst-ui/lo-fi/v2/ProfileListLoFi.tsx +16 -0
  1013. package/dist/components/catalyst-ui/lo-fi/v2/ProfileLoFi.tsx +12 -0
  1014. package/dist/components/catalyst-ui/lo-fi/v2/ProgressLoFi.tsx +15 -0
  1015. package/dist/components/catalyst-ui/lo-fi/v2/ProseLoFi.tsx +16 -0
  1016. package/dist/components/catalyst-ui/lo-fi/v2/QRCodeLoFi.tsx +43 -0
  1017. package/dist/components/catalyst-ui/lo-fi/v2/QaDiscussionLoFi.tsx +14 -0
  1018. package/dist/components/catalyst-ui/lo-fi/v2/QaForumLoFi.tsx +11 -0
  1019. package/dist/components/catalyst-ui/lo-fi/v2/RailLoFi.tsx +16 -0
  1020. package/dist/components/catalyst-ui/lo-fi/v2/RatingLoFi.tsx +14 -0
  1021. package/dist/components/catalyst-ui/lo-fi/v2/ReactHooksDocsLoFi.tsx +11 -0
  1022. package/dist/components/catalyst-ui/lo-fi/v2/ReceiptLoFi.tsx +17 -0
  1023. package/dist/components/catalyst-ui/lo-fi/v2/RedirectBadRequestsLoFi.tsx +11 -0
  1024. package/dist/components/catalyst-ui/lo-fi/v2/RegisterLoFi.tsx +13 -0
  1025. package/dist/components/catalyst-ui/lo-fi/v2/RemixAuthLoFi.tsx +12 -0
  1026. package/dist/components/catalyst-ui/lo-fi/v2/RemixLinkLoFi.tsx +11 -0
  1027. package/dist/components/catalyst-ui/lo-fi/v2/ReportIssueLoFi.tsx +24 -0
  1028. package/dist/components/catalyst-ui/lo-fi/v2/RequestIDMiddlewareLoFi.tsx +11 -0
  1029. package/dist/components/catalyst-ui/lo-fi/v2/ResetPasswordLoFi.tsx +12 -0
  1030. package/dist/components/catalyst-ui/lo-fi/v2/ResponsiveLinkLoFi.tsx +11 -0
  1031. package/dist/components/catalyst-ui/lo-fi/v2/RightSidebarLoFi.tsx +17 -0
  1032. package/dist/components/catalyst-ui/lo-fi/v2/SaasLoFi.tsx +15 -0
  1033. package/dist/components/catalyst-ui/lo-fi/v2/SchedulerLoFi.tsx +14 -0
  1034. package/dist/components/catalyst-ui/lo-fi/v2/ScrolltopLoFi.tsx +11 -0
  1035. package/dist/components/catalyst-ui/lo-fi/v2/SecFetchParserLoFi.tsx +20 -0
  1036. package/dist/components/catalyst-ui/lo-fi/v2/SecureHeadersMiddlewareLoFi.tsx +17 -0
  1037. package/dist/components/catalyst-ui/lo-fi/v2/ServerTimingMiddlewareLoFi.tsx +16 -0
  1038. package/dist/components/catalyst-ui/lo-fi/v2/ServiceRepairFormLoFi.tsx +13 -0
  1039. package/dist/components/catalyst-ui/lo-fi/v2/SessionLoFi.tsx +11 -0
  1040. package/dist/components/catalyst-ui/lo-fi/v2/SettingsLoFi.tsx +13 -0
  1041. package/dist/components/catalyst-ui/lo-fi/v2/ShareLoFi.tsx +21 -0
  1042. package/dist/components/catalyst-ui/lo-fi/v2/Sidebar24LoFi.tsx +17 -0
  1043. package/dist/components/catalyst-ui/lo-fi/v2/SidebarAgnosticLoFi.tsx +22 -0
  1044. package/dist/components/catalyst-ui/lo-fi/v2/SidebarDetailsLoFi.tsx +17 -0
  1045. package/dist/components/catalyst-ui/lo-fi/v2/SidebarInAPopoverLoFi.tsx +16 -0
  1046. package/dist/components/catalyst-ui/lo-fi/v2/SidebarNavLoFi.tsx +14 -0
  1047. package/dist/components/catalyst-ui/lo-fi/v2/SidebarReactRouterLoFi.tsx +24 -0
  1048. package/dist/components/catalyst-ui/lo-fi/v2/SidebarStylisticDefaultLoFi.tsx +18 -0
  1049. package/dist/components/catalyst-ui/lo-fi/v2/SidebarStylisticDefaultWRightLoFi.tsx +23 -0
  1050. package/dist/components/catalyst-ui/lo-fi/v2/SidebarWithSubmenusLoFi.tsx +25 -0
  1051. package/dist/components/catalyst-ui/lo-fi/v2/SignUpLoFi.tsx +14 -0
  1052. package/dist/components/catalyst-ui/lo-fi/v2/SignatureLoFi.tsx +12 -0
  1053. package/dist/components/catalyst-ui/lo-fi/v2/SingletonMiddlewareLoFi.tsx +11 -0
  1054. package/dist/components/catalyst-ui/lo-fi/v2/SiteHeaderLoFi.tsx +18 -0
  1055. package/dist/components/catalyst-ui/lo-fi/v2/SmallTableLoFi.tsx +18 -0
  1056. package/dist/components/catalyst-ui/lo-fi/v2/SpeedDialLoFi.tsx +14 -0
  1057. package/dist/components/catalyst-ui/lo-fi/v2/SpinLoFi.tsx +7 -0
  1058. package/dist/components/catalyst-ui/lo-fi/v2/SpinnerLoFi.tsx +9 -0
  1059. package/dist/components/catalyst-ui/lo-fi/v2/StackLoFi.tsx +14 -0
  1060. package/dist/components/catalyst-ui/lo-fi/v2/StackedListsLoFi.tsx +50 -0
  1061. package/dist/components/catalyst-ui/lo-fi/v2/StackedLoFi.tsx +11 -0
  1062. package/dist/components/catalyst-ui/lo-fi/v2/StateChangeLoFi.tsx +11 -0
  1063. package/dist/components/catalyst-ui/lo-fi/v2/StatsLoFi.tsx +15 -0
  1064. package/dist/components/catalyst-ui/lo-fi/v2/StatusLoFi.tsx +11 -0
  1065. package/dist/components/catalyst-ui/lo-fi/v2/StepsLoFi.tsx +18 -0
  1066. package/dist/components/catalyst-ui/lo-fi/v2/StoreFrontLoFi.tsx +15 -0
  1067. package/dist/components/catalyst-ui/lo-fi/v2/StoreNavSectionLoFi.tsx +14 -0
  1068. package/dist/components/catalyst-ui/lo-fi/v2/StripeLoFi.tsx +15 -0
  1069. package/dist/components/catalyst-ui/lo-fi/v2/StyleProviderLoFi.tsx +16 -0
  1070. package/dist/components/catalyst-ui/lo-fi/v2/TSTableLoFi.tsx +24 -0
  1071. package/dist/components/catalyst-ui/lo-fi/v2/TSTableV1LoFi.tsx +20 -0
  1072. package/dist/components/catalyst-ui/lo-fi/v2/TSTableV2LoFi.tsx +20 -0
  1073. package/dist/components/catalyst-ui/lo-fi/v2/TabViewLoFi.tsx +17 -0
  1074. package/dist/components/catalyst-ui/lo-fi/v2/TableLoFi.tsx +18 -0
  1075. package/dist/components/catalyst-ui/lo-fi/v2/TagLoFi.tsx +11 -0
  1076. package/dist/components/catalyst-ui/lo-fi/v2/TailwindcssTxtLoFi.tsx +20 -0
  1077. package/dist/components/catalyst-ui/lo-fi/v2/TaskListLoFi.tsx +16 -0
  1078. package/dist/components/catalyst-ui/lo-fi/v2/TaskboardLoFi.tsx +20 -0
  1079. package/dist/components/catalyst-ui/lo-fi/v2/TasksLoFi.tsx +19 -0
  1080. package/dist/components/catalyst-ui/lo-fi/v2/TeamMembersLoFi.tsx +20 -0
  1081. package/dist/components/catalyst-ui/lo-fi/v2/TerminalLoFi.tsx +20 -0
  1082. package/dist/components/catalyst-ui/lo-fi/v2/TextEditorLoFi.tsx +14 -0
  1083. package/dist/components/catalyst-ui/lo-fi/v2/ThemeSelectorLoFi.tsx +14 -0
  1084. package/dist/components/catalyst-ui/lo-fi/v2/TicketsLoFi.tsx +16 -0
  1085. package/dist/components/catalyst-ui/lo-fi/v2/TimelineLoFi.tsx +33 -0
  1086. package/dist/components/catalyst-ui/lo-fi/v2/TimelineV1LoFi.tsx +36 -0
  1087. package/dist/components/catalyst-ui/lo-fi/v2/TitleSectionLoFi.tsx +15 -0
  1088. package/dist/components/catalyst-ui/lo-fi/v2/ToDoLoFi.tsx +17 -0
  1089. package/dist/components/catalyst-ui/lo-fi/v2/ToggleClassLoFi.tsx +12 -0
  1090. package/dist/components/catalyst-ui/lo-fi/v2/ToolbarLoFi.tsx +14 -0
  1091. package/dist/components/catalyst-ui/lo-fi/v2/TourLoFi.tsx +21 -0
  1092. package/dist/components/catalyst-ui/lo-fi/v2/TransitionLoFi.tsx +10 -0
  1093. package/dist/components/catalyst-ui/lo-fi/v2/TransitionablePortalLoFi.tsx +12 -0
  1094. package/dist/components/catalyst-ui/lo-fi/v2/TravelLoFi.tsx +12 -0
  1095. package/dist/components/catalyst-ui/lo-fi/v2/TreeViewLoFi.tsx +24 -0
  1096. package/dist/components/catalyst-ui/lo-fi/v2/UnderConstructionLoFi.tsx +11 -0
  1097. package/dist/components/catalyst-ui/lo-fi/v2/UsageSectionLoFi.tsx +19 -0
  1098. package/dist/components/catalyst-ui/lo-fi/v2/UsageSectionNoDashLoFi.tsx +15 -0
  1099. package/dist/components/catalyst-ui/lo-fi/v2/UseAsyncLoFi.tsx +10 -0
  1100. package/dist/components/catalyst-ui/lo-fi/v2/UseClickOutsideLoFi.tsx +10 -0
  1101. package/dist/components/catalyst-ui/lo-fi/v2/UseCopyToClipboardLoFi.tsx +10 -0
  1102. package/dist/components/catalyst-ui/lo-fi/v2/UseCounterLoFi.tsx +11 -0
  1103. package/dist/components/catalyst-ui/lo-fi/v2/UseDebounceLoFi.tsx +10 -0
  1104. package/dist/components/catalyst-ui/lo-fi/v2/UseDebouncedFuseSearchLoFi.tsx +10 -0
  1105. package/dist/components/catalyst-ui/lo-fi/v2/UseEventListenerLoFi.tsx +10 -0
  1106. package/dist/components/catalyst-ui/lo-fi/v2/UseExportMarkdownLoFi.tsx +10 -0
  1107. package/dist/components/catalyst-ui/lo-fi/v2/UseExportTsxLoFi.tsx +10 -0
  1108. package/dist/components/catalyst-ui/lo-fi/v2/UseExternalScriptsLoFi.tsx +11 -0
  1109. package/dist/components/catalyst-ui/lo-fi/v2/UseFaviconLoFi.tsx +10 -0
  1110. package/dist/components/catalyst-ui/lo-fi/v2/UseFetchLoFi.tsx +11 -0
  1111. package/dist/components/catalyst-ui/lo-fi/v2/UseFocusLoFi.tsx +10 -0
  1112. package/dist/components/catalyst-ui/lo-fi/v2/UseFocusWithinLoFi.tsx +10 -0
  1113. package/dist/components/catalyst-ui/lo-fi/v2/UseFormLoFi.tsx +11 -0
  1114. package/dist/components/catalyst-ui/lo-fi/v2/UseFuseSearchLoFi.tsx +10 -0
  1115. package/dist/components/catalyst-ui/lo-fi/v2/UseFuzzySearchLoFi.tsx +11 -0
  1116. package/dist/components/catalyst-ui/lo-fi/v2/UseGlobalLoadingStateLoFi.tsx +10 -0
  1117. package/dist/components/catalyst-ui/lo-fi/v2/UseGlobalNavigationStateLoFi.tsx +11 -0
  1118. package/dist/components/catalyst-ui/lo-fi/v2/UseGlobalPendingStateLoFi.tsx +10 -0
  1119. package/dist/components/catalyst-ui/lo-fi/v2/UseGlobalSubmittingStateLoFi.tsx +10 -0
  1120. package/dist/components/catalyst-ui/lo-fi/v2/UseHoverLoFi.tsx +10 -0
  1121. package/dist/components/catalyst-ui/lo-fi/v2/UseIntersectionObserverLoFi.tsx +10 -0
  1122. package/dist/components/catalyst-ui/lo-fi/v2/UseIntervalLoFi.tsx +10 -0
  1123. package/dist/components/catalyst-ui/lo-fi/v2/UseKeyPressLoFi.tsx +11 -0
  1124. package/dist/components/catalyst-ui/lo-fi/v2/UseKeyboardLoFi.tsx +11 -0
  1125. package/dist/components/catalyst-ui/lo-fi/v2/UseLocalStorageLoFi.tsx +10 -0
  1126. package/dist/components/catalyst-ui/lo-fi/v2/UseLocalesLoFi.tsx +11 -0
  1127. package/dist/components/catalyst-ui/lo-fi/v2/UseLongPressLoFi.tsx +10 -0
  1128. package/dist/components/catalyst-ui/lo-fi/v2/UseMediaQueryLoFi.tsx +10 -0
  1129. package/dist/components/catalyst-ui/lo-fi/v2/UseMobileLoFi.tsx +10 -0
  1130. package/dist/components/catalyst-ui/lo-fi/v2/UseMountEffectLoFi.tsx +10 -0
  1131. package/dist/components/catalyst-ui/lo-fi/v2/UseMountedLoFi.tsx +10 -0
  1132. package/dist/components/catalyst-ui/lo-fi/v2/UseMoveLoFi.tsx +11 -0
  1133. package/dist/components/catalyst-ui/lo-fi/v2/UseMutationObserverLoFi.tsx +10 -0
  1134. package/dist/components/catalyst-ui/lo-fi/v2/UseOnlineStatusLoFi.tsx +10 -0
  1135. package/dist/components/catalyst-ui/lo-fi/v2/UseOverlayListenerLoFi.tsx +10 -0
  1136. package/dist/components/catalyst-ui/lo-fi/v2/UseOverlayScrollListenerLoFi.tsx +10 -0
  1137. package/dist/components/catalyst-ui/lo-fi/v2/UsePressLoFi.tsx +10 -0
  1138. package/dist/components/catalyst-ui/lo-fi/v2/UsePreviousLoFi.tsx +11 -0
  1139. package/dist/components/catalyst-ui/lo-fi/v2/UseResizeListenerLoFi.tsx +10 -0
  1140. package/dist/components/catalyst-ui/lo-fi/v2/UseScrollPositionLoFi.tsx +11 -0
  1141. package/dist/components/catalyst-ui/lo-fi/v2/UseSessionStorageLoFi.tsx +10 -0
  1142. package/dist/components/catalyst-ui/lo-fi/v2/UseShouldHydrateLoFi.tsx +10 -0
  1143. package/dist/components/catalyst-ui/lo-fi/v2/UseSlideInLoFi.tsx +10 -0
  1144. package/dist/components/catalyst-ui/lo-fi/v2/UseStreamLoFi.tsx +11 -0
  1145. package/dist/components/catalyst-ui/lo-fi/v2/UseThrottleLoFi.tsx +10 -0
  1146. package/dist/components/catalyst-ui/lo-fi/v2/UseTimeoutLoFi.tsx +10 -0
  1147. package/dist/components/catalyst-ui/lo-fi/v2/UseToggleLoFi.tsx +10 -0
  1148. package/dist/components/catalyst-ui/lo-fi/v2/UseUnmountEffectLoFi.tsx +10 -0
  1149. package/dist/components/catalyst-ui/lo-fi/v2/UseUpdateEffectLoFi.tsx +10 -0
  1150. package/dist/components/catalyst-ui/lo-fi/v2/UseWindowSizeLoFi.tsx +11 -0
  1151. package/dist/components/catalyst-ui/lo-fi/v2/UserBasedAccessRulesLoFi.tsx +20 -0
  1152. package/dist/components/catalyst-ui/lo-fi/v2/UserLoFi.tsx +10 -0
  1153. package/dist/components/catalyst-ui/lo-fi/v2/UserOnboardingLoFi.tsx +12 -0
  1154. package/dist/components/catalyst-ui/lo-fi/v2/VerificationLoFi.tsx +17 -0
  1155. package/dist/components/catalyst-ui/lo-fi/v2/VirtualizerLoFi.tsx +16 -0
  1156. package/dist/components/catalyst-ui/lo-fi/v2/WatermarkLoFi.tsx +13 -0
  1157. package/dist/components/catalyst-ui/lo-fi/v2/WithACalendarLoFi.tsx +23 -0
  1158. package/dist/components/catalyst-ui/lo-fi/v2/WithAShoppingCartLoFi.tsx +20 -0
  1159. package/dist/components/catalyst-ui/lo-fi/v2/WithATreeViewLoFi.tsx +20 -0
  1160. package/dist/components/catalyst-ui/lo-fi/v2/WithCollapsibleNestedSidebarsLoFi.tsx +22 -0
  1161. package/dist/components/catalyst-ui/lo-fi/v2/WithCollapsibleSectionsLoFi.tsx +20 -0
  1162. package/dist/components/catalyst-ui/lo-fi/v2/WithCollapsibleSubmenusLoFi.tsx +26 -0
  1163. package/dist/components/catalyst-ui/lo-fi/v2/WithCookieMiddlewareLoFi.tsx +17 -0
  1164. package/dist/components/catalyst-ui/lo-fi/v2/WithInitialLoadingStateLoFi.tsx +13 -0
  1165. package/dist/components/catalyst-ui/lo-fi/v2/WithLoadingNavStateChangesLoFi.tsx +17 -0
  1166. package/dist/components/catalyst-ui/lo-fi/v2/WithNavigationGroupedBySectionLoFi.tsx +24 -0
  1167. package/dist/components/catalyst-ui/lo-fi/v2/WithSubmenusAsDropdownsLoFi.tsx +25 -0
  1168. package/dist/components/catalyst-ui/lo-fi/v2/action-bar-lofi.tsx +20 -0
  1169. package/dist/components/catalyst-ui/lo-fi/v2/block-quote-lofi.tsx +10 -0
  1170. package/dist/components/catalyst-ui/lo-fi/v2/calendar-lofi.tsx +19 -0
  1171. package/dist/components/catalyst-ui/lo-fi/v2/cascade-tree-lofi.tsx +34 -0
  1172. package/dist/components/catalyst-ui/lo-fi/v2/cascader-lofi.tsx +27 -0
  1173. package/dist/components/catalyst-ui/lo-fi/v2/changelog-lofi.tsx +14 -0
  1174. package/dist/components/catalyst-ui/lo-fi/v2/check-tree-lofi.tsx +27 -0
  1175. package/dist/components/catalyst-ui/lo-fi/v2/check-tree-picker-lofi.tsx +28 -0
  1176. package/dist/components/catalyst-ui/lo-fi/v2/checkbox-card-v1-lofi.tsx +29 -0
  1177. package/dist/components/catalyst-ui/lo-fi/v2/checkbox-v1-lofi.tsx +24 -0
  1178. package/dist/components/catalyst-ui/lo-fi/v2/client-only-mermaid-lofi.tsx +21 -0
  1179. package/dist/components/catalyst-ui/lo-fi/v2/color-picker-lofi.tsx +24 -0
  1180. package/dist/components/catalyst-ui/lo-fi/v2/combobox-v1-lofi.tsx +25 -0
  1181. package/dist/components/catalyst-ui/lo-fi/v2/credit-card-input-lofi.tsx +32 -0
  1182. package/dist/components/catalyst-ui/lo-fi/v2/floating-label-lofi.tsx +26 -0
  1183. package/dist/components/catalyst-ui/lo-fi/v2/form-wizard-lofi.tsx +26 -0
  1184. package/dist/components/catalyst-ui/lo-fi/v2/hero-lofi.tsx +15 -0
  1185. package/dist/components/catalyst-ui/lo-fi/v2/heroV2-lofi.tsx +17 -0
  1186. package/dist/components/catalyst-ui/lo-fi/v2/inline-edit-lofi.tsx +19 -0
  1187. package/dist/components/catalyst-ui/lo-fi/v2/inplaceLoFi.tsx +10 -0
  1188. package/dist/components/catalyst-ui/lo-fi/v2/input-mask-lofi.tsx +33 -0
  1189. package/dist/components/catalyst-ui/lo-fi/v2/install-code-array-section-lofi.tsx +20 -0
  1190. package/dist/components/catalyst-ui/lo-fi/v2/install-code-section-lofi.tsx +16 -0
  1191. package/dist/components/catalyst-ui/lo-fi/v2/install-github-section-lofi.tsx +11 -0
  1192. package/dist/components/catalyst-ui/lo-fi/v2/json-input-lofi.tsx +29 -0
  1193. package/dist/components/catalyst-ui/lo-fi/v2/multi-cascade-tree-lofi.tsx +40 -0
  1194. package/dist/components/catalyst-ui/lo-fi/v2/multi-cascader-lofi.tsx +28 -0
  1195. package/dist/components/catalyst-ui/lo-fi/v2/multi-combobox-lofi.tsx +31 -0
  1196. package/dist/components/catalyst-ui/lo-fi/v2/nav-shopping-cart-lofi.tsx +13 -0
  1197. package/dist/components/catalyst-ui/lo-fi/v2/pin-input-lofi.tsx +23 -0
  1198. package/dist/components/catalyst-ui/lo-fi/v2/select-button-lofi.tsx +20 -0
  1199. package/dist/components/catalyst-ui/lo-fi/v2/sidebar28-lofi.tsx +15 -0
  1200. package/dist/components/catalyst-ui/lo-fi/v2/step-form-wizard-lofi.tsx +34 -0
  1201. package/dist/components/catalyst-ui/lo-fi/v2/tags-input-lofi.tsx +21 -0
  1202. package/dist/components/catalyst-ui/lo-fi/v2/textarea-lofi.tsx +18 -0
  1203. package/dist/components/catalyst-ui/lo-fi/v2/textarea-v2-lofi.tsx +19 -0
  1204. package/dist/components/catalyst-ui/lo-fi/v2/transfer-list-lofi.tsx +40 -0
  1205. package/dist/components/catalyst-ui/lo-fi/v2/tri-state-checkbox-lofi.tsx +25 -0
  1206. package/dist/components/catalyst-ui/lo-fi/v2/tsxSection-lofi.tsx +20 -0
  1207. package/dist/components/catalyst-ui/marketing/demo/demos.tsx +0 -0
  1208. package/dist/components/catalyst-ui/marketing/demo/sectionHeadings-demo.tsx +103 -0
  1209. package/dist/components/catalyst-ui/marketing/elements/banner-with-effect.tsx +0 -0
  1210. package/dist/components/catalyst-ui/marketing/elements/flyoutMenu.tsx +318 -0
  1211. package/dist/components/catalyst-ui/marketing/index.ts +41 -0
  1212. package/dist/components/catalyst-ui/marketing/sections/animated-testimonials.tsx +169 -0
  1213. package/dist/components/catalyst-ui/marketing/sections/bentoGrid.tsx +300 -0
  1214. package/dist/components/catalyst-ui/marketing/sections/blog.tsx +469 -0
  1215. package/dist/components/catalyst-ui/marketing/sections/blogEditor.tsx +358 -0
  1216. package/dist/components/catalyst-ui/marketing/sections/blogPost.tsx +208 -0
  1217. package/dist/components/catalyst-ui/marketing/sections/carousel.tsx +928 -0
  1218. package/dist/components/catalyst-ui/marketing/sections/cta.tsx +379 -0
  1219. package/dist/components/catalyst-ui/marketing/sections/faq.tsx +147 -0
  1220. package/dist/components/catalyst-ui/marketing/sections/feature-carousel.tsx +505 -0
  1221. package/dist/components/catalyst-ui/marketing/sections/feature-section.tsx +83 -0
  1222. package/dist/components/catalyst-ui/marketing/sections/feature-showcase.tsx +250 -0
  1223. package/dist/components/catalyst-ui/marketing/sections/feature.tsx +279 -0
  1224. package/dist/components/catalyst-ui/marketing/sections/footer.tsx +390 -0
  1225. package/dist/components/catalyst-ui/marketing/sections/header-1.tsx +450 -0
  1226. package/dist/components/catalyst-ui/marketing/sections/header.tsx +414 -0
  1227. package/dist/components/catalyst-ui/marketing/sections/hero-2.tsx +55 -0
  1228. package/dist/components/catalyst-ui/marketing/sections/hero-3.tsx +12 -0
  1229. package/dist/components/catalyst-ui/marketing/sections/hero-section.tsx +17 -0
  1230. package/dist/components/catalyst-ui/marketing/sections/hero.tsx +169 -0
  1231. package/dist/components/catalyst-ui/marketing/sections/image-section.tsx +36 -0
  1232. package/dist/components/catalyst-ui/marketing/sections/index.ts +33 -0
  1233. package/dist/components/catalyst-ui/marketing/sections/logoClouds.tsx +295 -0
  1234. package/dist/components/catalyst-ui/marketing/sections/newsLetter.tsx +137 -0
  1235. package/dist/components/catalyst-ui/marketing/sections/page-header-section.tsx +127 -0
  1236. package/dist/components/catalyst-ui/marketing/sections/pricing-carousel-2.tsx +282 -0
  1237. package/dist/components/catalyst-ui/marketing/sections/pricing-carousel.tsx +555 -0
  1238. package/dist/components/catalyst-ui/marketing/sections/pricing-single-card.tsx +154 -0
  1239. package/dist/components/catalyst-ui/marketing/sections/pricing.tsx +790 -0
  1240. package/dist/components/catalyst-ui/marketing/sections/testimonial-carousel.tsx +499 -0
  1241. package/dist/components/catalyst-ui/marketing/sections/testimonial.tsx +204 -0
  1242. package/dist/components/catalyst-ui/marketing/sections/title-section.tsx +57 -0
  1243. package/dist/components/catalyst-ui/media/3d-marquee.tsx +144 -0
  1244. package/dist/components/catalyst-ui/media/avatar-circles.tsx +78 -0
  1245. package/dist/components/catalyst-ui/media/blur-fade.tsx +106 -0
  1246. package/dist/components/catalyst-ui/media/carousel-1.tsx +926 -0
  1247. package/dist/components/catalyst-ui/media/carousel-2.tsx +198 -0
  1248. package/dist/components/catalyst-ui/media/carousel-hero.tsx +286 -0
  1249. package/dist/components/catalyst-ui/media/carousel-simple.tsx +244 -0
  1250. package/dist/components/catalyst-ui/media/color-palette-card.tsx +85 -0
  1251. package/dist/components/catalyst-ui/media/cropper.tsx +68 -0
  1252. package/dist/components/catalyst-ui/media/embla-carousel-arrow-buttons.tsx +117 -0
  1253. package/dist/components/catalyst-ui/media/embla-carousel-snap.tsx +103 -0
  1254. package/dist/components/catalyst-ui/media/galleria.tsx +316 -0
  1255. package/dist/components/catalyst-ui/media/globe.tsx +138 -0
  1256. package/dist/components/catalyst-ui/media/google-maps-component.tsx +540 -0
  1257. package/dist/components/catalyst-ui/media/icon-cloud.tsx +312 -0
  1258. package/dist/components/catalyst-ui/media/image-comparison.tsx +251 -0
  1259. package/dist/components/catalyst-ui/media/image-crop.tsx +366 -0
  1260. package/dist/components/catalyst-ui/media/image-zoom.tsx +51 -0
  1261. package/dist/components/catalyst-ui/media/index.ts +32 -0
  1262. package/dist/components/catalyst-ui/media/infinite-scroll.tsx +303 -0
  1263. package/dist/components/catalyst-ui/media/infinite-slider.tsx +108 -0
  1264. package/dist/components/catalyst-ui/media/interactive-icon-cloud.tsx +100 -0
  1265. package/dist/components/catalyst-ui/media/logo.tsx +100 -0
  1266. package/dist/components/catalyst-ui/media/marquee.tsx +199 -0
  1267. package/dist/components/catalyst-ui/media/marquee1.tsx +114 -0
  1268. package/dist/components/catalyst-ui/media/parallax-scroll.tsx +119 -0
  1269. package/dist/components/catalyst-ui/media/pixel-image.tsx +153 -0
  1270. package/dist/components/catalyst-ui/media/video-player.tsx +94 -0
  1271. package/dist/components/catalyst-ui/motions/animated-number.tsx +252 -0
  1272. package/dist/components/catalyst-ui/motions/bg-media.tsx +122 -0
  1273. package/dist/components/catalyst-ui/motions/border-beam.tsx +40 -0
  1274. package/dist/components/catalyst-ui/motions/circle-menu.tsx +320 -0
  1275. package/dist/components/catalyst-ui/motions/color-picker.tsx +490 -0
  1276. package/dist/components/catalyst-ui/motions/color-wheel.tsx +81 -0
  1277. package/dist/components/catalyst-ui/motions/direction-aware-tabs.tsx +568 -0
  1278. package/dist/components/catalyst-ui/motions/dynamic-island.tsx +733 -0
  1279. package/dist/components/catalyst-ui/motions/expandable-card.tsx +941 -0
  1280. package/dist/components/catalyst-ui/motions/expandable-screen.tsx +455 -0
  1281. package/dist/components/catalyst-ui/motions/floating-panel.tsx +1115 -0
  1282. package/dist/components/catalyst-ui/motions/gradient-heading.tsx +116 -0
  1283. package/dist/components/catalyst-ui/motions/index.ts +93 -0
  1284. package/dist/components/catalyst-ui/motions/intro-disclosure.tsx +1345 -0
  1285. package/dist/components/catalyst-ui/motions/light-board.tsx +888 -0
  1286. package/dist/components/catalyst-ui/motions/loading-carousel.tsx +517 -0
  1287. package/dist/components/catalyst-ui/motions/logo-carousel.tsx +586 -0
  1288. package/dist/components/catalyst-ui/motions/morph-surface.tsx +779 -0
  1289. package/dist/components/catalyst-ui/motions/motion-accordian.tsx +206 -0
  1290. package/dist/components/catalyst-ui/motions/motion-alert-dialog.tsx +356 -0
  1291. package/dist/components/catalyst-ui/motions/motion-avatar.tsx +384 -0
  1292. package/dist/components/catalyst-ui/motions/motion-beam.tsx +674 -0
  1293. package/dist/components/catalyst-ui/motions/motion-bento.tsx +262 -0
  1294. package/dist/components/catalyst-ui/motions/motion-bento1.tsx +307 -0
  1295. package/dist/components/catalyst-ui/motions/motion-button.tsx +107 -0
  1296. package/dist/components/catalyst-ui/motions/motion-calendar.tsx +213 -0
  1297. package/dist/components/catalyst-ui/motions/motion-card.tsx +1609 -0
  1298. package/dist/components/catalyst-ui/motions/motion-card1.tsx +825 -0
  1299. package/dist/components/catalyst-ui/motions/motion-card2.tsx +289 -0
  1300. package/dist/components/catalyst-ui/motions/motion-card3.tsx +190 -0
  1301. package/dist/components/catalyst-ui/motions/motion-carousel.tsx +517 -0
  1302. package/dist/components/catalyst-ui/motions/motion-checkbox.tsx +77 -0
  1303. package/dist/components/catalyst-ui/motions/motion-choicebox.tsx +360 -0
  1304. package/dist/components/catalyst-ui/motions/motion-combobox.tsx +242 -0
  1305. package/dist/components/catalyst-ui/motions/motion-command.tsx +328 -0
  1306. package/dist/components/catalyst-ui/motions/motion-context-menu.tsx +391 -0
  1307. package/dist/components/catalyst-ui/motions/motion-date-picker.tsx +162 -0
  1308. package/dist/components/catalyst-ui/motions/motion-dialog.tsx +350 -0
  1309. package/dist/components/catalyst-ui/motions/motion-drawer.tsx +1778 -0
  1310. package/dist/components/catalyst-ui/motions/motion-drawer1.tsx +209 -0
  1311. package/dist/components/catalyst-ui/motions/motion-dropdown-menu.tsx +429 -0
  1312. package/dist/components/catalyst-ui/motions/motion-dropdown1.tsx +572 -0
  1313. package/dist/components/catalyst-ui/motions/motion-feature-carousel.tsx +771 -0
  1314. package/dist/components/catalyst-ui/motions/motion-file-upload.tsx +596 -0
  1315. package/dist/components/catalyst-ui/motions/motion-group.tsx +194 -0
  1316. package/dist/components/catalyst-ui/motions/motion-highlight.tsx +550 -0
  1317. package/dist/components/catalyst-ui/motions/motion-highlight2.tsx +590 -0
  1318. package/dist/components/catalyst-ui/motions/motion-hover-card.tsx +207 -0
  1319. package/dist/components/catalyst-ui/motions/motion-images.tsx +53 -0
  1320. package/dist/components/catalyst-ui/motions/motion-input.tsx +51 -0
  1321. package/dist/components/catalyst-ui/motions/motion-list.tsx +170 -0
  1322. package/dist/components/catalyst-ui/motions/motion-logo-carosel.tsx +668 -0
  1323. package/dist/components/catalyst-ui/motions/motion-map.tsx +372 -0
  1324. package/dist/components/catalyst-ui/motions/motion-navbar.tsx +69 -0
  1325. package/dist/components/catalyst-ui/motions/motion-navigation-menu.tsx +302 -0
  1326. package/dist/components/catalyst-ui/motions/motion-panel.tsx +338 -0
  1327. package/dist/components/catalyst-ui/motions/motion-popover.tsx +281 -0
  1328. package/dist/components/catalyst-ui/motions/motion-radio-card.tsx +77 -0
  1329. package/dist/components/catalyst-ui/motions/motion-radio-group.tsx +54 -0
  1330. package/dist/components/catalyst-ui/motions/motion-rating.tsx +182 -0
  1331. package/dist/components/catalyst-ui/motions/motion-screen.tsx +441 -0
  1332. package/dist/components/catalyst-ui/motions/motion-search-bar.tsx +1013 -0
  1333. package/dist/components/catalyst-ui/motions/motion-section.tsx +270 -0
  1334. package/dist/components/catalyst-ui/motions/motion-select.tsx +306 -0
  1335. package/dist/components/catalyst-ui/motions/motion-spotlight.tsx +217 -0
  1336. package/dist/components/catalyst-ui/motions/motion-switch.tsx +83 -0
  1337. package/dist/components/catalyst-ui/motions/motion-tabs.tsx +554 -0
  1338. package/dist/components/catalyst-ui/motions/motion-tabs2.tsx +257 -0
  1339. package/dist/components/catalyst-ui/motions/motion-testimonials.tsx +282 -0
  1340. package/dist/components/catalyst-ui/motions/motion-toast.tsx +398 -0
  1341. package/dist/components/catalyst-ui/motions/motion-toolbar-tabs.tsx +519 -0
  1342. package/dist/components/catalyst-ui/motions/motion-toolbar.tsx +1113 -0
  1343. package/dist/components/catalyst-ui/motions/motion-tooltip.tsx +162 -0
  1344. package/dist/components/catalyst-ui/motions/motion-tooltip2.tsx +82 -0
  1345. package/dist/components/catalyst-ui/motions/motion-video-player.tsx +1056 -0
  1346. package/dist/components/catalyst-ui/motions/motions-input.tsx +51 -0
  1347. package/dist/components/catalyst-ui/motions/popover-form.tsx +469 -0
  1348. package/dist/components/catalyst-ui/motions/profile-dropdown.tsx +237 -0
  1349. package/dist/components/catalyst-ui/motions/radial-menu.tsx +303 -0
  1350. package/dist/components/catalyst-ui/motions/roladex.tsx +194 -0
  1351. package/dist/components/catalyst-ui/motions/roladex1.tsx +166 -0
  1352. package/dist/components/catalyst-ui/motions/shift-card.tsx +302 -0
  1353. package/dist/components/catalyst-ui/motions/side-panel.tsx +352 -0
  1354. package/dist/components/catalyst-ui/motions/smooth-drawer.tsx +213 -0
  1355. package/dist/components/catalyst-ui/motions/smooth-popover.tsx +491 -0
  1356. package/dist/components/catalyst-ui/motions/sortable-list.tsx +712 -0
  1357. package/dist/components/catalyst-ui/motions/stripe.tsx +261 -0
  1358. package/dist/components/catalyst-ui/motions/texture-button.tsx +217 -0
  1359. package/dist/components/catalyst-ui/motions/timer.tsx +286 -0
  1360. package/dist/components/catalyst-ui/motions/toolbar-expandable.tsx +1138 -0
  1361. package/dist/components/catalyst-ui/motions/youtube-player.tsx +614 -0
  1362. package/dist/components/catalyst-ui/overlays/animated-modal.tsx +212 -0
  1363. package/dist/components/catalyst-ui/overlays/animated-tooltip.tsx +99 -0
  1364. package/dist/components/catalyst-ui/overlays/confirm-popup.tsx +219 -0
  1365. package/dist/components/catalyst-ui/overlays/dialog-stack.tsx +558 -0
  1366. package/dist/components/catalyst-ui/overlays/index.ts +19 -0
  1367. package/dist/components/catalyst-ui/overlays/loading-overlay.tsx +324 -0
  1368. package/dist/components/catalyst-ui/overlays/modal-integrations-1.tsx +300 -0
  1369. package/dist/components/catalyst-ui/overlays/modal-integrations.tsx +301 -0
  1370. package/dist/components/catalyst-ui/overlays/overlay-panel.tsx +233 -0
  1371. package/dist/components/catalyst-ui/overlays/popconfirm.tsx +721 -0
  1372. package/dist/components/catalyst-ui/overlays/sidebar-props.tsx +492 -0
  1373. package/dist/components/catalyst-ui/overlays/sidebar.tsx +2208 -0
  1374. package/dist/components/catalyst-ui/overlays/sidebarMenuItemLoading.tsx +124 -0
  1375. package/dist/components/catalyst-ui/overlays/texture-card.tsx +309 -0
  1376. package/dist/components/catalyst-ui/overlays/transitionable-portal.tsx +230 -0
  1377. package/dist/components/catalyst-ui/pdf/generate_custom_pdf.tsx +40 -0
  1378. package/dist/components/catalyst-ui/pdf/generate_pdf.tsx +196 -0
  1379. package/dist/components/catalyst-ui/pdf/index.ts +12 -0
  1380. package/dist/components/catalyst-ui/pdf/pdf.tsx +32 -0
  1381. package/dist/components/catalyst-ui/pdf/pdf_generator.ts +141 -0
  1382. package/dist/components/catalyst-ui/pdf/pdf_sender.$dealerId.$documentId.$dept.tsx +1260 -0
  1383. package/dist/components/catalyst-ui/pdf/pdf_signer.$id.tsx +1438 -0
  1384. package/dist/components/catalyst-ui/pdf/print_pdf.tsx +15905 -0
  1385. package/dist/components/catalyst-ui/pdf/templateBuilder.tsx +1590 -0
  1386. package/dist/components/catalyst-ui/pdf/test.tsx +53 -0
  1387. package/dist/components/catalyst-ui/pos/index.ts +5 -0
  1388. package/dist/components/catalyst-ui/pos/tools/barcodeScanner.tsx +160 -0
  1389. package/dist/components/catalyst-ui/pos/tools/cashDrawerWizard.tsx +1403 -0
  1390. package/dist/components/catalyst-ui/pos/tools/scan.mp4 +0 -0
  1391. package/dist/components/catalyst-ui/primitives/alert.tsx +103 -0
  1392. package/dist/components/catalyst-ui/primitives/annotated.tsx +133 -0
  1393. package/dist/components/catalyst-ui/primitives/button-group.tsx +89 -0
  1394. package/dist/components/catalyst-ui/primitives/checkbox-tree.tsx +175 -0
  1395. package/dist/components/catalyst-ui/primitives/combobox.tsx +93 -0
  1396. package/dist/components/catalyst-ui/primitives/description-list.tsx +88 -0
  1397. package/dist/components/catalyst-ui/primitives/index.ts +59 -0
  1398. package/dist/components/catalyst-ui/primitives/input-group.tsx +186 -0
  1399. package/dist/components/catalyst-ui/primitives/menubar.tsx +273 -0
  1400. package/dist/components/catalyst-ui/primitives/progress-bar.tsx +114 -0
  1401. package/dist/components/catalyst-ui/primitives/radio-card.tsx +167 -0
  1402. package/dist/components/catalyst-ui/primitives/scroll-area.tsx +56 -0
  1403. package/dist/components/catalyst-ui/primitives/table.tsx +329 -0
  1404. package/dist/components/catalyst-ui/prompt/ai-input-search.tsx +288 -0
  1405. package/dist/components/catalyst-ui/prompt/ai-loading-state.tsx +313 -0
  1406. package/dist/components/catalyst-ui/prompt/ai-prompt-input.tsx +305 -0
  1407. package/dist/components/catalyst-ui/prompt/ai-voice.tsx +241 -0
  1408. package/dist/components/catalyst-ui/prompt/chain-of-thought.tsx +146 -0
  1409. package/dist/components/catalyst-ui/prompt/chatbot.tsx +201 -0
  1410. package/dist/components/catalyst-ui/prompt/code-block-examples.tsx +227 -0
  1411. package/dist/components/catalyst-ui/prompt/code-block.tsx +92 -0
  1412. package/dist/components/catalyst-ui/prompt/conversation-actions.tsx +150 -0
  1413. package/dist/components/catalyst-ui/prompt/conversation-avatars.tsx +92 -0
  1414. package/dist/components/catalyst-ui/prompt/conversation-prompt-input.tsx +256 -0
  1415. package/dist/components/catalyst-ui/prompt/conversation-scroll-bottom.tsx +121 -0
  1416. package/dist/components/catalyst-ui/prompt/file-upload.tsx +310 -0
  1417. package/dist/components/catalyst-ui/prompt/full-chat-app.tsx +759 -0
  1418. package/dist/components/catalyst-ui/prompt/full-conversation.tsx +76 -0
  1419. package/dist/components/catalyst-ui/prompt/image.tsx +94 -0
  1420. package/dist/components/catalyst-ui/prompt/index.ts +46 -0
  1421. package/dist/components/catalyst-ui/prompt/input-byok.tsx +70 -0
  1422. package/dist/components/catalyst-ui/prompt/jsx-preview.tsx +81 -0
  1423. package/dist/components/catalyst-ui/prompt/loader.tsx +497 -0
  1424. package/dist/components/catalyst-ui/prompt/markdown.tsx +117 -0
  1425. package/dist/components/catalyst-ui/prompt/pre-prompts.tsx +59 -0
  1426. package/dist/components/catalyst-ui/prompt/prompt-autocomplete-highlight.tsx +81 -0
  1427. package/dist/components/catalyst-ui/prompt/prompt-chat-container-basic.tsx +98 -0
  1428. package/dist/components/catalyst-ui/prompt/prompt-chat-container-streaming.tsx +132 -0
  1429. package/dist/components/catalyst-ui/prompt/prompt-chat-container.tsx +65 -0
  1430. package/dist/components/catalyst-ui/prompt/prompt-feedback-bar.tsx +79 -0
  1431. package/dist/components/catalyst-ui/prompt/prompt-input-actions.tsx +100 -0
  1432. package/dist/components/catalyst-ui/prompt/prompt-input-suggestions.tsx +150 -0
  1433. package/dist/components/catalyst-ui/prompt/prompt-input.tsx +187 -0
  1434. package/dist/components/catalyst-ui/prompt/prompt-message.tsx +109 -0
  1435. package/dist/components/catalyst-ui/prompt/prompt-suggestion.tsx +116 -0
  1436. package/dist/components/catalyst-ui/prompt/providers.tsx +540 -0
  1437. package/dist/components/catalyst-ui/prompt/reasoning.tsx +168 -0
  1438. package/dist/components/catalyst-ui/prompt/response-stream.tsx +392 -0
  1439. package/dist/components/catalyst-ui/prompt/scroll-button.tsx +39 -0
  1440. package/dist/components/catalyst-ui/prompt/sidebar-chat-history.tsx +242 -0
  1441. package/dist/components/catalyst-ui/prompt/snippets.tsx +1378 -0
  1442. package/dist/components/catalyst-ui/prompt/source.tsx +127 -0
  1443. package/dist/components/catalyst-ui/prompt/steps.tsx +111 -0
  1444. package/dist/components/catalyst-ui/prompt/system-message.tsx +131 -0
  1445. package/dist/components/catalyst-ui/prompt/tool-calling.tsx +236 -0
  1446. package/dist/components/catalyst-ui/prompt/tool.tsx +204 -0
  1447. package/dist/components/catalyst-ui/sidebars/nav-components/NotificationMenu.tsx +120 -0
  1448. package/dist/components/catalyst-ui/sidebars/nav-components/Tree.tsx +53 -0
  1449. package/dist/components/catalyst-ui/sidebars/nav-components/active-toc.tsx +213 -0
  1450. package/dist/components/catalyst-ui/sidebars/nav-components/analog-clock.tsx +211 -0
  1451. package/dist/components/catalyst-ui/sidebars/nav-components/app-sidebar.tsx +339 -0
  1452. package/dist/components/catalyst-ui/sidebars/nav-components/blog-sidebar.tsx +39 -0
  1453. package/dist/components/catalyst-ui/sidebars/nav-components/calendars.tsx +58 -0
  1454. package/dist/components/catalyst-ui/sidebars/nav-components/date-picker.tsx +12 -0
  1455. package/dist/components/catalyst-ui/sidebars/nav-components/dev-list-sidebar.tsx +195 -0
  1456. package/dist/components/catalyst-ui/sidebars/nav-components/digital-clock.tsx +343 -0
  1457. package/dist/components/catalyst-ui/sidebars/nav-components/index.ts +41 -0
  1458. package/dist/components/catalyst-ui/sidebars/nav-components/loading-sidebar.tsx +42 -0
  1459. package/dist/components/catalyst-ui/sidebars/nav-components/nav-actions.tsx +122 -0
  1460. package/dist/components/catalyst-ui/sidebars/nav-components/nav-appointments.tsx +429 -0
  1461. package/dist/components/catalyst-ui/sidebars/nav-components/nav-auto-search.tsx +314 -0
  1462. package/dist/components/catalyst-ui/sidebars/nav-components/nav-favorites.tsx +71 -0
  1463. package/dist/components/catalyst-ui/sidebars/nav-components/nav-header.tsx +409 -0
  1464. package/dist/components/catalyst-ui/sidebars/nav-components/nav-main.tsx +1583 -0
  1465. package/dist/components/catalyst-ui/sidebars/nav-components/nav-messenger.tsx +440 -0
  1466. package/dist/components/catalyst-ui/sidebars/nav-components/nav-projects.tsx +66 -0
  1467. package/dist/components/catalyst-ui/sidebars/nav-components/nav-quick-actions.tsx +366 -0
  1468. package/dist/components/catalyst-ui/sidebars/nav-components/nav-secondary.tsx +33 -0
  1469. package/dist/components/catalyst-ui/sidebars/nav-components/nav-shopping-cart.tsx +231 -0
  1470. package/dist/components/catalyst-ui/sidebars/nav-components/nav-shopping-cartCatlstui.tsx +196 -0
  1471. package/dist/components/catalyst-ui/sidebars/nav-components/nav-tree-view.tsx +18 -0
  1472. package/dist/components/catalyst-ui/sidebars/nav-components/nav-user.tsx +87 -0
  1473. package/dist/components/catalyst-ui/sidebars/nav-components/nav-workspaces.tsx +69 -0
  1474. package/dist/components/catalyst-ui/sidebars/nav-components/navigation-theme-selector.tsx +143 -0
  1475. package/dist/components/catalyst-ui/sidebars/nav-components/opt-in-form.tsx +29 -0
  1476. package/dist/components/catalyst-ui/sidebars/nav-components/search-command.tsx +32 -0
  1477. package/dist/components/catalyst-ui/sidebars/nav-components/search-form.tsx +21 -0
  1478. package/dist/components/catalyst-ui/sidebars/nav-components/settings-menu.tsx +35 -0
  1479. package/dist/components/catalyst-ui/sidebars/nav-components/sidebar-dialog.tsx +82 -0
  1480. package/dist/components/catalyst-ui/sidebars/nav-components/site-header.tsx +40 -0
  1481. package/dist/components/catalyst-ui/sidebars/nav-components/team-switcher.tsx +68 -0
  1482. package/dist/components/catalyst-ui/sidebars/nav-components/toc.tsx +301 -0
  1483. package/dist/components/catalyst-ui/sidebars/nav-components/user-menu.tsx +77 -0
  1484. package/dist/components/catalyst-ui/sidebars/nav-components/version-switcher.tsx +49 -0
  1485. package/dist/components/catalyst-ui/sidebars/nav-components/wishlist.tsx +292 -0
  1486. package/dist/components/catalyst-ui/sidebars/sidebar-01/AppSidebar.tsx +36 -0
  1487. package/dist/components/catalyst-ui/sidebars/sidebar-01/SearchForm.tsx +24 -0
  1488. package/dist/components/catalyst-ui/sidebars/sidebar-01/VersionSwitcher.tsx +49 -0
  1489. package/dist/components/catalyst-ui/sidebars/sidebar-01/index.tsx +270 -0
  1490. package/dist/components/catalyst-ui/sidebars/sidebar-01/sidebar-01.tsx +178 -0
  1491. package/dist/components/catalyst-ui/sidebars/sidebar-02/AppSidebar.tsx +56 -0
  1492. package/dist/components/catalyst-ui/sidebars/sidebar-02/SearchForm.tsx +24 -0
  1493. package/dist/components/catalyst-ui/sidebars/sidebar-02/VersionSwitcher.tsx +44 -0
  1494. package/dist/components/catalyst-ui/sidebars/sidebar-02/index.tsx +301 -0
  1495. package/dist/components/catalyst-ui/sidebars/sidebar-02/sidebar-02.tsx +193 -0
  1496. package/dist/components/catalyst-ui/sidebars/sidebar-03/AppSidebar.tsx +54 -0
  1497. package/dist/components/catalyst-ui/sidebars/sidebar-03/index.tsx +238 -0
  1498. package/dist/components/catalyst-ui/sidebars/sidebar-03/sidebar-03.tsx +189 -0
  1499. package/dist/components/catalyst-ui/sidebars/sidebar-04/AppSidebar.tsx +58 -0
  1500. package/dist/components/catalyst-ui/sidebars/sidebar-04/index.tsx +249 -0
  1501. package/dist/components/catalyst-ui/sidebars/sidebar-04/sidebar-04.tsx +201 -0
  1502. package/dist/components/catalyst-ui/sidebars/sidebar-05/AppSidebar.tsx +70 -0
  1503. package/dist/components/catalyst-ui/sidebars/sidebar-05/SearchForm.tsx +25 -0
  1504. package/dist/components/catalyst-ui/sidebars/sidebar-05/index.tsx +275 -0
  1505. package/dist/components/catalyst-ui/sidebars/sidebar-05/sidebar-05.tsx +191 -0
  1506. package/dist/components/catalyst-ui/sidebars/sidebar-06/AppSidebar.tsx +43 -0
  1507. package/dist/components/catalyst-ui/sidebars/sidebar-06/NavMain.tsx +56 -0
  1508. package/dist/components/catalyst-ui/sidebars/sidebar-06/SidebarOptInForm.tsx +34 -0
  1509. package/dist/components/catalyst-ui/sidebars/sidebar-06/index.tsx +290 -0
  1510. package/dist/components/catalyst-ui/sidebars/sidebar-06/sidebar-06.tsx +183 -0
  1511. package/dist/components/catalyst-ui/sidebars/sidebar-07/AppSidebar.tsx +28 -0
  1512. package/dist/components/catalyst-ui/sidebars/sidebar-07/NavMain.tsx +57 -0
  1513. package/dist/components/catalyst-ui/sidebars/sidebar-07/NavProjects.tsx +67 -0
  1514. package/dist/components/catalyst-ui/sidebars/sidebar-07/NavUser.tsx +86 -0
  1515. package/dist/components/catalyst-ui/sidebars/sidebar-07/TeamSwitcher.tsx +74 -0
  1516. package/dist/components/catalyst-ui/sidebars/sidebar-07/index.tsx +474 -0
  1517. package/dist/components/catalyst-ui/sidebars/sidebar-07/sidebar-07.tsx +189 -0
  1518. package/dist/components/catalyst-ui/sidebars/sidebar-08/AppSidebar.tsx +41 -0
  1519. package/dist/components/catalyst-ui/sidebars/sidebar-08/NavMain.tsx +62 -0
  1520. package/dist/components/catalyst-ui/sidebars/sidebar-08/NavProjects.tsx +68 -0
  1521. package/dist/components/catalyst-ui/sidebars/sidebar-08/NavSecondary.tsx +35 -0
  1522. package/dist/components/catalyst-ui/sidebars/sidebar-08/NavUser.tsx +87 -0
  1523. package/dist/components/catalyst-ui/sidebars/sidebar-08/index.tsx +446 -0
  1524. package/dist/components/catalyst-ui/sidebars/sidebar-08/sidebar-08.tsx +181 -0
  1525. package/dist/components/catalyst-ui/sidebars/sidebar-09/AppSidebar.tsx +213 -0
  1526. package/dist/components/catalyst-ui/sidebars/sidebar-09/NavUser.tsx +88 -0
  1527. package/dist/components/catalyst-ui/sidebars/sidebar-09/index.tsx +468 -0
  1528. package/dist/components/catalyst-ui/sidebars/sidebar-09/sidebar-09.tsx +177 -0
  1529. package/dist/components/catalyst-ui/sidebars/sidebar-10/AppSidebar.tsx +28 -0
  1530. package/dist/components/catalyst-ui/sidebars/sidebar-10/NavActions.tsx +59 -0
  1531. package/dist/components/catalyst-ui/sidebars/sidebar-10/NavFavorites.tsx +74 -0
  1532. package/dist/components/catalyst-ui/sidebars/sidebar-10/NavMain.tsx +31 -0
  1533. package/dist/components/catalyst-ui/sidebars/sidebar-10/NavSecondary.tsx +37 -0
  1534. package/dist/components/catalyst-ui/sidebars/sidebar-10/NavWorkspaces.tsx +70 -0
  1535. package/dist/components/catalyst-ui/sidebars/sidebar-10/TeamSwitcher.tsx +70 -0
  1536. package/dist/components/catalyst-ui/sidebars/sidebar-10/index.tsx +675 -0
  1537. package/dist/components/catalyst-ui/sidebars/sidebar-10/sidebar-10.tsx +348 -0
  1538. package/dist/components/catalyst-ui/sidebars/sidebar-11/AppSidebar.tsx +46 -0
  1539. package/dist/components/catalyst-ui/sidebars/sidebar-11/Tree.tsx +49 -0
  1540. package/dist/components/catalyst-ui/sidebars/sidebar-11/index.tsx +175 -0
  1541. package/dist/components/catalyst-ui/sidebars/sidebar-11/sidebar-11.tsx +102 -0
  1542. package/dist/components/catalyst-ui/sidebars/sidebar-12/AppSidebar.tsx +32 -0
  1543. package/dist/components/catalyst-ui/sidebars/sidebar-12/Calendars.tsx +57 -0
  1544. package/dist/components/catalyst-ui/sidebars/sidebar-12/DatePicker.tsx +13 -0
  1545. package/dist/components/catalyst-ui/sidebars/sidebar-12/NavUser.tsx +85 -0
  1546. package/dist/components/catalyst-ui/sidebars/sidebar-12/index.tsx +237 -0
  1547. package/dist/components/catalyst-ui/sidebars/sidebar-12/sidebar-12.tsx +68 -0
  1548. package/dist/components/catalyst-ui/sidebars/sidebar-13/SettingsDialog.tsx +82 -0
  1549. package/dist/components/catalyst-ui/sidebars/sidebar-13/index.tsx +105 -0
  1550. package/dist/components/catalyst-ui/sidebars/sidebar-13/sidebar-13.tsx +24 -0
  1551. package/dist/components/catalyst-ui/sidebars/sidebar-14/AppSidebar.tsx +45 -0
  1552. package/dist/components/catalyst-ui/sidebars/sidebar-14/index.tsx +225 -0
  1553. package/dist/components/catalyst-ui/sidebars/sidebar-14/sidebar-14.tsx +186 -0
  1554. package/dist/components/catalyst-ui/sidebars/sidebar-15/Calendars.tsx +83 -0
  1555. package/dist/components/catalyst-ui/sidebars/sidebar-15/DatePicker.tsx +39 -0
  1556. package/dist/components/catalyst-ui/sidebars/sidebar-15/NavFavorites.tsx +98 -0
  1557. package/dist/components/catalyst-ui/sidebars/sidebar-15/NavMain.tsx +29 -0
  1558. package/dist/components/catalyst-ui/sidebars/sidebar-15/NavSecondary.tsx +36 -0
  1559. package/dist/components/catalyst-ui/sidebars/sidebar-15/NavUser.tsx +89 -0
  1560. package/dist/components/catalyst-ui/sidebars/sidebar-15/NavWorkspaces.tsx +95 -0
  1561. package/dist/components/catalyst-ui/sidebars/sidebar-15/SidebarLeft.tsx +28 -0
  1562. package/dist/components/catalyst-ui/sidebars/sidebar-15/SidebarRight.tsx +38 -0
  1563. package/dist/components/catalyst-ui/sidebars/sidebar-15/TeamSwitcher.tsx +89 -0
  1564. package/dist/components/catalyst-ui/sidebars/sidebar-15/index.tsx +776 -0
  1565. package/dist/components/catalyst-ui/sidebars/sidebar-15/sidebar-15.tsx +324 -0
  1566. package/dist/components/catalyst-ui/sidebars/sidebar-16/AppSidebar.tsx +50 -0
  1567. package/dist/components/catalyst-ui/sidebars/sidebar-16/NavUser.tsx +100 -0
  1568. package/dist/components/catalyst-ui/sidebars/sidebar-16/SearchForm.tsx +35 -0
  1569. package/dist/components/catalyst-ui/sidebars/sidebar-16/SiteHeader.tsx +51 -0
  1570. package/dist/components/catalyst-ui/sidebars/sidebar-16/index.tsx +424 -0
  1571. package/dist/components/catalyst-ui/sidebars/sidebar-16/sidebar-16.tsx +188 -0
  1572. package/dist/components/catalyst-ui/sidebars/sidebar-17/AppSidebar.tsx +154 -0
  1573. package/dist/components/catalyst-ui/sidebars/sidebar-17/ShoppingCartSidebar.tsx +163 -0
  1574. package/dist/components/catalyst-ui/sidebars/sidebar-17/index.tsx +557 -0
  1575. package/dist/components/catalyst-ui/sidebars/sidebar-17/sidebar-17.tsx +183 -0
  1576. package/dist/components/catalyst-ui/sidebars/sidebar-18/AppSidebar.tsx +32 -0
  1577. package/dist/components/catalyst-ui/sidebars/sidebar-18/NavTreeView.tsx +18 -0
  1578. package/dist/components/catalyst-ui/sidebars/sidebar-18/index.tsx +120 -0
  1579. package/dist/components/catalyst-ui/sidebars/sidebar-18/sidebar-18.tsx +92 -0
  1580. package/dist/components/catalyst-ui/sidebars/sidebar-19/AppSidebar.tsx +230 -0
  1581. package/dist/components/catalyst-ui/sidebars/sidebar-19/index.tsx +264 -0
  1582. package/dist/components/catalyst-ui/sidebars/sidebar-19/sidebar-19.tsx +59 -0
  1583. package/dist/components/catalyst-ui/sidebars/sidebar-20/AppSidebar.tsx +215 -0
  1584. package/dist/components/catalyst-ui/sidebars/sidebar-20/index.tsx +250 -0
  1585. package/dist/components/catalyst-ui/sidebars/sidebar-20/sidebar-20.tsx +44 -0
  1586. package/dist/components/catalyst-ui/sidebars/sidebar-21/AppSidebar.tsx +303 -0
  1587. package/dist/components/catalyst-ui/sidebars/sidebar-21/LoadingSidebar.tsx +41 -0
  1588. package/dist/components/catalyst-ui/sidebars/sidebar-21/index.tsx +412 -0
  1589. package/dist/components/catalyst-ui/sidebars/sidebar-21/sidebar-21.tsx +75 -0
  1590. package/dist/components/catalyst-ui/sidebars/sidebar-22/AppSidebar.tsx +184 -0
  1591. package/dist/components/catalyst-ui/sidebars/sidebar-22/LoadingSidebar.tsx +45 -0
  1592. package/dist/components/catalyst-ui/sidebars/sidebar-22/index.tsx +251 -0
  1593. package/dist/components/catalyst-ui/sidebars/sidebar-22/sidebar-22.tsx +44 -0
  1594. package/dist/components/catalyst-ui/sidebars/sidebar-24/NavUser.tsx +87 -0
  1595. package/dist/components/catalyst-ui/sidebars/sidebar-24/calendars-24.tsx +58 -0
  1596. package/dist/components/catalyst-ui/sidebars/sidebar-24/date-picker-24.tsx +12 -0
  1597. package/dist/components/catalyst-ui/sidebars/sidebar-24/sidebar-24.tsx +39 -0
  1598. package/dist/components/catalyst-ui/sidebars/sidebar-25/AppSidebar.tsx +24 -0
  1599. package/dist/components/catalyst-ui/sidebars/sidebar-25/NavMain.tsx +57 -0
  1600. package/dist/components/catalyst-ui/sidebars/sidebar-25/NavSecondary.tsx +35 -0
  1601. package/dist/components/catalyst-ui/sidebars/sidebar-25/NavUser.tsx +87 -0
  1602. package/dist/components/catalyst-ui/sidebars/sidebar-25/SearchForm.tsx +35 -0
  1603. package/dist/components/catalyst-ui/sidebars/sidebar-25/SiteHeader.tsx +19 -0
  1604. package/dist/components/catalyst-ui/sidebars/sidebar-25/index.tsx +172 -0
  1605. package/dist/components/catalyst-ui/sidebars/sidebar-25/sidebar-25.tsx +153 -0
  1606. package/dist/components/catalyst-ui/sidebars/sidebar-26/app-sidebar-26.tsx +344 -0
  1607. package/dist/components/catalyst-ui/sidebars/sidebar-26/index.tsx +78 -0
  1608. package/dist/components/catalyst-ui/sidebars/sidebar-26/sidebar-26.tsx +78 -0
  1609. package/dist/components/catalyst-ui/sidebars/sidebar-26/use-mobile-26.ts +19 -0
  1610. package/dist/components/catalyst-ui/sidebars/sidebar-27/sidebar-27.tsx +5 -0
  1611. package/dist/components/catalyst-ui/sidebars/sidebar-28/app-sidebar-28.tsx +285 -0
  1612. package/dist/components/catalyst-ui/sidebars/sidebar-28/index.tsx +31 -0
  1613. package/dist/components/catalyst-ui/sidebars/sidebar-28/nav-user-28.tsx +88 -0
  1614. package/dist/components/catalyst-ui/sidebars/sidebar-28/search-form-28.tsx +23 -0
  1615. package/dist/components/catalyst-ui/sidebars/sidebar-28/sidebar-28.tsx +32 -0
  1616. package/dist/components/catalyst-ui/sidebars/sidebar-28/site-header-28.tsx +29 -0
  1617. package/dist/components/catalyst-ui/sidebars/sidebar-28/use-mobile-28.ts +19 -0
  1618. package/dist/components/catalyst-ui/sidebars/sidebar-29/ds-left-icon.tsx +101 -0
  1619. package/dist/components/catalyst-ui/sidebars/sidebar-29/ds-left.tsx +88 -0
  1620. package/dist/components/catalyst-ui/sidebars/sidebar-29/ds-right-icon.tsx +106 -0
  1621. package/dist/components/catalyst-ui/sidebars/sidebar-29/ds-right.tsx +87 -0
  1622. package/dist/components/catalyst-ui/sidebars/sidebar-29/nav-user.tsx +74 -0
  1623. package/dist/components/catalyst-ui/sidebars/sidebar-29/settings-dialog.tsx +91 -0
  1624. package/dist/components/catalyst-ui/sidebars/sidebar-29/sidebar-29.tsx +204 -0
  1625. package/dist/components/catalyst-ui/sidebars/sidebar-29/version-switcher.tsx +52 -0
  1626. package/dist/components/catalyst-ui/sidebars/sidebar-30/ds-left.tsx +678 -0
  1627. package/dist/components/catalyst-ui/sidebars/sidebar-30/ds-right.tsx +87 -0
  1628. package/dist/components/catalyst-ui/sidebars/sidebar-30/settings-dialog.tsx +91 -0
  1629. package/dist/components/catalyst-ui/sidebars/sidebar-30/sidebar-30.tsx +604 -0
  1630. package/dist/components/catalyst-ui/sidebars/sidebar-31/ds-left.tsx +431 -0
  1631. package/dist/components/catalyst-ui/sidebars/sidebar-31/message.tsx +28 -0
  1632. package/dist/components/catalyst-ui/sidebars/sidebar-31/nav-auto-search.tsx +310 -0
  1633. package/dist/components/catalyst-ui/sidebars/sidebar-31/nav-search-command.tsx +0 -0
  1634. package/dist/components/catalyst-ui/sidebars/sidebar-31/nav-user.tsx +74 -0
  1635. package/dist/components/catalyst-ui/sidebars/sidebar-31/sidebar-31.tsx +369 -0
  1636. package/dist/components/catalyst-ui/sidebars/sidebar-31/typing-message.tsx +12 -0
  1637. package/dist/components/catalyst-ui/sidebars/sidebar-32/ds-left.tsx +119 -0
  1638. package/dist/components/catalyst-ui/sidebars/sidebar-32/ds-right.tsx +87 -0
  1639. package/dist/components/catalyst-ui/sidebars/sidebar-32/settings-dialog.tsx +91 -0
  1640. package/dist/components/catalyst-ui/sidebars/sidebar-32/sidebar-32.tsx +119 -0
  1641. package/dist/components/catalyst-ui/sidebars/variants/dual-sidebar-agnostic.tsx +3473 -0
  1642. package/dist/components/catalyst-ui/sidebars/variants/sidebar-original.tsx +714 -0
  1643. package/dist/components/catalyst-ui/sidebars/variants/sidebar-right.tsx +823 -0
  1644. package/dist/components/catalyst-ui/sidebars/variants/sidebar-stylistic-default.tsx +591 -0
  1645. package/dist/components/catalyst-ui/table/catalyst-table/column-header-simple.tsx +60 -0
  1646. package/dist/components/catalyst-ui/table/catalyst-table/column-header.tsx +223 -0
  1647. package/dist/components/catalyst-ui/table/catalyst-table/draggable-header.tsx +58 -0
  1648. package/dist/components/catalyst-ui/table/catalyst-table/faceted-filter.tsx +131 -0
  1649. package/dist/components/catalyst-ui/table/catalyst-table/global-search.tsx +0 -0
  1650. package/dist/components/catalyst-ui/table/catalyst-table/row-actions.tsx +49 -0
  1651. package/dist/components/catalyst-ui/table/catalyst-table/table.tsx +421 -0
  1652. package/dist/components/catalyst-ui/table/index.ts +14 -0
  1653. package/dist/components/catalyst-ui/table/props-table.tsx +170 -0
  1654. package/dist/components/catalyst-ui/table/small-table.tsx +719 -0
  1655. package/dist/components/catalyst-ui/table/table-1.tsx +246 -0
  1656. package/dist/components/catalyst-ui/themeStudio/config.tsx +83 -0
  1657. package/dist/components/catalyst-ui/themeStudio/dual-sidebar.tsx +3256 -0
  1658. package/dist/components/catalyst-ui/themeStudio/theme-provider.tsx +269 -0
  1659. package/dist/components/catalyst-ui/themeStudio/use-color-theme.tsx +1614 -0
  1660. package/dist/components/catalyst-ui/themeStudio/use-color-wheel.tsx +904 -0
  1661. package/dist/components/catalyst-ui/tools/Demo/md-render-genie.tsx +273 -0
  1662. package/dist/components/catalyst-ui/tools/GandalfBot.tsx +144 -0
  1663. package/dist/components/catalyst-ui/tools/MdFileTreeExplorer.tsx +287 -0
  1664. package/dist/components/catalyst-ui/tools/accessibility-checker.tsx +370 -0
  1665. package/dist/components/catalyst-ui/tools/animation-builder.tsx +350 -0
  1666. package/dist/components/catalyst-ui/tools/api-response.tsx +318 -0
  1667. package/dist/components/catalyst-ui/tools/chart-playground.tsx +480 -0
  1668. package/dist/components/catalyst-ui/tools/code-carousel.tsx +246 -0
  1669. package/dist/components/catalyst-ui/tools/code-diff.tsx +274 -0
  1670. package/dist/components/catalyst-ui/tools/code-editor.tsx +35 -0
  1671. package/dist/components/catalyst-ui/tools/code-highlight-plugin.tsx +25 -0
  1672. package/dist/components/catalyst-ui/tools/color-converter.tsx +413 -0
  1673. package/dist/components/catalyst-ui/tools/color-wheel.tsx +1012 -0
  1674. package/dist/components/catalyst-ui/tools/components-reel.tsx +135 -0
  1675. package/dist/components/catalyst-ui/tools/convert/converter.tsx +969 -0
  1676. package/dist/components/catalyst-ui/tools/convert/sidebar-converter.tsx +132 -0
  1677. package/dist/components/catalyst-ui/tools/cron-expression-builder.tsx +346 -0
  1678. package/dist/components/catalyst-ui/tools/dual-editor.tsx +240 -0
  1679. package/dist/components/catalyst-ui/tools/editor.tsx +1744 -0
  1680. package/dist/components/catalyst-ui/tools/examples.tsx +1206 -0
  1681. package/dist/components/catalyst-ui/tools/flexbox-sandbox.tsx +327 -0
  1682. package/dist/components/catalyst-ui/tools/function-theater.tsx +93 -0
  1683. package/dist/components/catalyst-ui/tools/grid-sandbox.tsx +464 -0
  1684. package/dist/components/catalyst-ui/tools/icons.tsx +249 -0
  1685. package/dist/components/catalyst-ui/tools/index.ts +59 -0
  1686. package/dist/components/catalyst-ui/tools/json-Formatter.tsx +258 -0
  1687. package/dist/components/catalyst-ui/tools/layout-generator.tsx +237 -0
  1688. package/dist/components/catalyst-ui/tools/lexical-editor.tsx +218 -0
  1689. package/dist/components/catalyst-ui/tools/live-playground.tsx +1458 -0
  1690. package/dist/components/catalyst-ui/tools/lorem-ipsum-generator.tsx +314 -0
  1691. package/dist/components/catalyst-ui/tools/md-badge-builder.tsx +179 -0
  1692. package/dist/components/catalyst-ui/tools/md-cheat-sheet.tsx +5557 -0
  1693. package/dist/components/catalyst-ui/tools/md-editor.tsx +632 -0
  1694. package/dist/components/catalyst-ui/tools/md-render-genie.tsx +1233 -0
  1695. package/dist/components/catalyst-ui/tools/md-renderer.tsx +61 -0
  1696. package/dist/components/catalyst-ui/tools/monaco-sidebar.tsx +7791 -0
  1697. package/dist/components/catalyst-ui/tools/monaco.tsx +492 -0
  1698. package/dist/components/catalyst-ui/tools/motion-sandbox.tsx +0 -0
  1699. package/dist/components/catalyst-ui/tools/qr-code-generator.tsx +432 -0
  1700. package/dist/components/catalyst-ui/tools/regex-tester.tsx +508 -0
  1701. package/dist/components/catalyst-ui/tools/responsive-preview.tsx +286 -0
  1702. package/dist/components/catalyst-ui/tools/rich-text-editor copy.tsx +1058 -0
  1703. package/dist/components/catalyst-ui/tools/rich-text-editor.tsx +1994 -0
  1704. package/dist/components/catalyst-ui/tools/rte.md +119 -0
  1705. package/dist/components/catalyst-ui/tools/sandbox.tsx +52 -0
  1706. package/dist/components/catalyst-ui/tools/scripts-viewer.tsx +215 -0
  1707. package/dist/components/catalyst-ui/tools/scripts.edit.tsx +3102 -0
  1708. package/dist/components/catalyst-ui/tools/table-plugin.tsx +149 -0
  1709. package/dist/components/catalyst-ui/tools/tailwind-converter.tsx +502 -0
  1710. package/dist/components/catalyst-ui/tools/terminal.tsx +60 -0
  1711. package/dist/components/catalyst-ui/tools/theme-builder.tsx +5071 -0
  1712. package/dist/components/catalyst-ui/tools/toolbar-plugin.tsx +383 -0
  1713. package/dist/components/catalyst-ui/tools/toolbar-plugin1.tsx +861 -0
  1714. package/dist/components/catalyst-ui/tools/typography-tester.tsx +310 -0
  1715. package/dist/components/catalyst-ui/tools/uuid-hash-generator.tsx +534 -0
  1716. package/dist/components/catalyst-ui/tools/vscode-cmds.tsx +3813 -0
  1717. package/dist/components/catalyst-ui/tools/x-viewer.tsx +135 -0
  1718. package/dist/components/catalyst-ui/typography/animated-glitch-text.tsx +188 -0
  1719. package/dist/components/catalyst-ui/typography/b.tsx +23 -0
  1720. package/dist/components/catalyst-ui/typography/blockquote.tsx +35 -0
  1721. package/dist/components/catalyst-ui/typography/check-list.tsx +130 -0
  1722. package/dist/components/catalyst-ui/typography/code.tsx +26 -0
  1723. package/dist/components/catalyst-ui/typography/comic-text.tsx +68 -0
  1724. package/dist/components/catalyst-ui/typography/display-code.tsx +148 -0
  1725. package/dist/components/catalyst-ui/typography/div.tsx +20 -0
  1726. package/dist/components/catalyst-ui/typography/dynamic-text.tsx +149 -0
  1727. package/dist/components/catalyst-ui/typography/encrypted-text.tsx +168 -0
  1728. package/dist/components/catalyst-ui/typography/glitch-text.tsx +174 -0
  1729. package/dist/components/catalyst-ui/typography/h1.tsx +19 -0
  1730. package/dist/components/catalyst-ui/typography/h2.tsx +19 -0
  1731. package/dist/components/catalyst-ui/typography/h3.tsx +19 -0
  1732. package/dist/components/catalyst-ui/typography/h4.tsx +19 -0
  1733. package/dist/components/catalyst-ui/typography/h5.tsx +19 -0
  1734. package/dist/components/catalyst-ui/typography/highlight-1.tsx +133 -0
  1735. package/dist/components/catalyst-ui/typography/highlight.tsx +133 -0
  1736. package/dist/components/catalyst-ui/typography/hyper-text.tsx +135 -0
  1737. package/dist/components/catalyst-ui/typography/i.tsx +23 -0
  1738. package/dist/components/catalyst-ui/typography/ib.tsx +24 -0
  1739. package/dist/components/catalyst-ui/typography/index.ts +49 -0
  1740. package/dist/components/catalyst-ui/typography/line-shadow-text.tsx +44 -0
  1741. package/dist/components/catalyst-ui/typography/matrix-text.tsx +186 -0
  1742. package/dist/components/catalyst-ui/typography/ordered-list.tsx +39 -0
  1743. package/dist/components/catalyst-ui/typography/p.tsx +19 -0
  1744. package/dist/components/catalyst-ui/typography/paragraph-scramble.tsx +122 -0
  1745. package/dist/components/catalyst-ui/typography/pm.tsx +20 -0
  1746. package/dist/components/catalyst-ui/typography/prose.tsx +90 -0
  1747. package/dist/components/catalyst-ui/typography/scroll-text.tsx +181 -0
  1748. package/dist/components/catalyst-ui/typography/shimmer-text.tsx +105 -0
  1749. package/dist/components/catalyst-ui/typography/sliced-text.tsx +131 -0
  1750. package/dist/components/catalyst-ui/typography/swoosh-text.tsx +111 -0
  1751. package/dist/components/catalyst-ui/typography/text-animate.tsx +380 -0
  1752. package/dist/components/catalyst-ui/typography/text-highlighter.tsx +101 -0
  1753. package/dist/components/catalyst-ui/typography/text-morph.tsx +272 -0
  1754. package/dist/components/catalyst-ui/typography/text-reveal.tsx +71 -0
  1755. package/dist/components/catalyst-ui/typography/text-rewind.tsx +90 -0
  1756. package/dist/components/catalyst-ui/typography/text-scramble.tsx +111 -0
  1757. package/dist/components/catalyst-ui/typography/text.tsx +134 -0
  1758. package/dist/components/catalyst-ui/typography/typewriter.tsx +153 -0
  1759. package/dist/components/catalyst-ui/typography/typing-animation.tsx +172 -0
  1760. package/dist/components/catalyst-ui/typography/typography.tsx +67 -0
  1761. package/dist/components/catalyst-ui/typography/unordered-list.tsx +78 -0
  1762. package/dist/components/catalyst-ui/typography/video-text.tsx +86 -0
  1763. package/dist/components/catalyst-ui/typography/word-rotate.tsx +48 -0
  1764. package/dist/components/catalyst-ui/utils/auth-provider.tsx +419 -0
  1765. package/dist/components/catalyst-ui/utils/auth.github.callback.tsx +135 -0
  1766. package/dist/components/catalyst-ui/utils/auth.github.tsx +17 -0
  1767. package/dist/components/catalyst-ui/utils/auth.ts +34 -0
  1768. package/dist/components/catalyst-ui/utils/auth_github.ts +48 -0
  1769. package/dist/components/catalyst-ui/utils/auth_session.ts +70 -0
  1770. package/dist/components/catalyst-ui/utils/batcher.tsx +50 -0
  1771. package/dist/components/catalyst-ui/utils/build-package-json.js +89 -0
  1772. package/dist/components/catalyst-ui/utils/cache-assets.ts +72 -0
  1773. package/dist/components/catalyst-ui/utils/client-only-mermaid.tsx +82 -0
  1774. package/dist/components/catalyst-ui/utils/client-only.tsx +27 -0
  1775. package/dist/components/catalyst-ui/utils/cors.ts +178 -0
  1776. package/dist/components/catalyst-ui/utils/crypto.ts +96 -0
  1777. package/dist/components/catalyst-ui/utils/dbLocal.js +74 -0
  1778. package/dist/components/catalyst-ui/utils/dbRemote.js +74 -0
  1779. package/dist/components/catalyst-ui/utils/demo.tsx +499 -0
  1780. package/dist/components/catalyst-ui/utils/dynamic-links.tsx +324 -0
  1781. package/dist/components/catalyst-ui/utils/event-stream.ts +82 -0
  1782. package/dist/components/catalyst-ui/utils/existing-search-params.tsx +78 -0
  1783. package/dist/components/catalyst-ui/utils/external-scripts.tsx +144 -0
  1784. package/dist/components/catalyst-ui/utils/fetcher-context.tsx +45 -0
  1785. package/dist/components/catalyst-ui/utils/fetcher-type.tsx +82 -0
  1786. package/dist/components/catalyst-ui/utils/filename-icon-map.tsx +176 -0
  1787. package/dist/components/catalyst-ui/utils/flickering-grid.tsx +188 -0
  1788. package/dist/components/catalyst-ui/utils/get-client-ip-address.ts +52 -0
  1789. package/dist/components/catalyst-ui/utils/get-client-locales.ts +25 -0
  1790. package/dist/components/catalyst-ui/utils/get-headers.ts +7 -0
  1791. package/dist/components/catalyst-ui/utils/honeypot-react.tsx +480 -0
  1792. package/dist/components/catalyst-ui/utils/honeypot.ts +138 -0
  1793. package/dist/components/catalyst-ui/utils/index.ts +82 -0
  1794. package/dist/components/catalyst-ui/utils/is-prefetch.ts +19 -0
  1795. package/dist/components/catalyst-ui/utils/json-hash.ts +33 -0
  1796. package/dist/components/catalyst-ui/utils/keyboard-shortcut.tsx +124 -0
  1797. package/dist/components/catalyst-ui/utils/named-action.ts +50 -0
  1798. package/dist/components/catalyst-ui/utils/navigation-context.tsx +71 -0
  1799. package/dist/components/catalyst-ui/utils/options.ts +20 -0
  1800. package/dist/components/catalyst-ui/utils/otp-auth-session.ts +14 -0
  1801. package/dist/components/catalyst-ui/utils/otp-client-auth.tsx +30 -0
  1802. package/dist/components/catalyst-ui/utils/otp-email.tsx +104 -0
  1803. package/dist/components/catalyst-ui/utils/parse-accept-header.ts +21 -0
  1804. package/dist/components/catalyst-ui/utils/preload-route-assets.ts +60 -0
  1805. package/dist/components/catalyst-ui/utils/prisma.ts +93 -0
  1806. package/dist/components/catalyst-ui/utils/promise.ts +55 -0
  1807. package/dist/components/catalyst-ui/utils/qr-code-1-server.tsx +42 -0
  1808. package/dist/components/catalyst-ui/utils/qr-code-1.tsx +87 -0
  1809. package/dist/components/catalyst-ui/utils/redirect-back.ts +35 -0
  1810. package/dist/components/catalyst-ui/utils/redirect-bad-requests.tsx +5 -0
  1811. package/dist/components/catalyst-ui/utils/remix-auth.ts +35 -0
  1812. package/dist/components/catalyst-ui/utils/remix_auth_session.ts +71 -0
  1813. package/dist/components/catalyst-ui/utils/respond-to.ts +40 -0
  1814. package/dist/components/catalyst-ui/utils/responses.ts +130 -0
  1815. package/dist/components/catalyst-ui/utils/rolling-cookie.tsx +39 -0
  1816. package/dist/components/catalyst-ui/utils/safe-redirect.ts +21 -0
  1817. package/dist/components/catalyst-ui/utils/scaffolding.tsx +14 -0
  1818. package/dist/components/catalyst-ui/utils/scroll-top.tsx +382 -0
  1819. package/dist/components/catalyst-ui/utils/scroll-x.tsx +22 -0
  1820. package/dist/components/catalyst-ui/utils/scroll-xy.tsx +22 -0
  1821. package/dist/components/catalyst-ui/utils/scroll-y.tsx +14 -0
  1822. package/dist/components/catalyst-ui/utils/scroll.tsx +32 -0
  1823. package/dist/components/catalyst-ui/utils/sec-fetch-parser.tsx +119 -0
  1824. package/dist/components/catalyst-ui/utils/sec-fetch-parsers.tsx +42 -0
  1825. package/dist/components/catalyst-ui/utils/server-only.tsx +12 -0
  1826. package/dist/components/catalyst-ui/utils/singleton.tsx +22 -0
  1827. package/dist/components/catalyst-ui/utils/style-provider.tsx +292 -0
  1828. package/dist/components/catalyst-ui/utils/tailwindcss.css.txt +134 -0
  1829. package/dist/components/catalyst-ui/utils/typed-cookie.ts +90 -0
  1830. package/dist/components/catalyst-ui/utils/typed-session.ts +115 -0
  1831. package/dist/components/catalyst-ui/utils/user-based-access-rules.tsx +118 -0
  1832. package/dist/components/catalyst-ui/x/index.ts +38 -0
  1833. package/dist/components/catalyst-ui/x/input-x.tsx +2263 -0
  1834. package/dist/components/catalyst-ui/x/nav-x.tsx +3213 -0
  1835. package/dist/components/catalyst-ui/x/tracker-x.tsx +2 -12
  1836. package/dist/index.js +116 -141
  1837. package/package.json +1 -1
  1838. /package/dist/{data.tsx → components/catalyst-ui/data.tsx} +0 -0
  1839. /package/dist/components/catalyst-ui/x/{button-X.tsx → button-x.tsx} +0 -0
@@ -0,0 +1,1614 @@
1
+ import { useMemo } from "react"
2
+
3
+
4
+ export function useColorTheme(
5
+ themeName: keyof typeof colorThemes = 'neutral',
6
+ version: 'v3' | 'v4' = 'v4',
7
+ mode: 'root' | 'dark' = 'root'
8
+ ) {
9
+ const theme = useMemo(() => {
10
+ const selectedTheme = colorThemes[themeName]
11
+ if (!selectedTheme) {
12
+ console.warn(`Theme "${themeName}" not found.Defaulting to neutral.`)
13
+ return colorThemes.neutral[version][mode]
14
+ }
15
+ const selectedVersion = selectedTheme[version]
16
+ if (!selectedVersion) {
17
+ console.warn(`Version "${version}" not found for theme "${themeName}". Defaulting to v4.`)
18
+ return selectedTheme.v4[mode]
19
+ }
20
+
21
+ return selectedVersion[mode] || selectedVersion.root
22
+ }, [themeName, version, mode])
23
+
24
+ return theme
25
+ }
26
+
27
+
28
+ export const colorThemes = {
29
+ neutral: {
30
+ v4: {
31
+ root: {
32
+ "--radius": "0.65rem",
33
+ "--background": "oklch(1 0 0)",
34
+ "--foreground": "oklch(0.145 0 0)",
35
+ "--card": "oklch(1 0 0)",
36
+ "--card-foreground": "oklch(0.145 0 0)",
37
+ "--popover": "oklch(1 0 0)",
38
+ "--popover-foreground": "oklch(0.145 0 0)",
39
+ "--primary": "oklch(0.205 0 0)",
40
+ "--primary-foreground": "oklch(0.985 0 0)",
41
+ "--secondary": "oklch(0.97 0 0)",
42
+ "--secondary-foreground": "oklch(0.205 0 0)",
43
+ "--muted": "oklch(0.97 0 0)",
44
+ "--muted-foreground": "oklch(0.556 0 0)",
45
+ "--accent": "oklch(0.97 0 0)",
46
+ "--accent-foreground": "oklch(0.205 0 0)",
47
+ "--destructive": "oklch(0.577 0.245 27.325)",
48
+ "--border": "oklch(0.922 0 0)",
49
+ "--input": "oklch(0.922 0 0)",
50
+ "--ring": "oklch(0.708 0 0)",
51
+ "--chart-1": "oklch(0.646 0.222 41.116)",
52
+ "--chart-2": "oklch(0.6 0.118 184.704)",
53
+ "--chart-3": "oklch(0.398 0.07 227.392)",
54
+ "--chart-4": "oklch(0.828 0.189 84.429)",
55
+ "--chart-5": "oklch(0.769 0.188 70.08)",
56
+ "--sidebar": "oklch(0.985 0 0)",
57
+ "--sidebar-foreground": "oklch(0.145 0 0)",
58
+ "--sidebar-primary": "oklch(0.205 0 0)",
59
+ "--sidebar-primary-foreground": "oklch(0.985 0 0)",
60
+ "--sidebar-accent": "oklch(0.97 0 0)",
61
+ "--sidebar-accent-foreground": "oklch(0.205 0 0)",
62
+ "--sidebar-border": "oklch(0.922 0 0)",
63
+ "--sidebar-ring": "oklch(0.708 0 0)"
64
+ },
65
+ dark: {
66
+ "--background": "oklch(0.145 0 0)",
67
+ "--foreground": "oklch(0.985 0 0)",
68
+ "--card": "oklch(0.205 0 0)",
69
+ "--card-foreground": "oklch(0.985 0 0)",
70
+ "--popover": "oklch(0.205 0 0)",
71
+ "--popover-foreground": "oklch(0.985 0 0)",
72
+ "--primary": "oklch(0.922 0 0)",
73
+ "--primary-foreground": "oklch(0.205 0 0)",
74
+ "--secondary": "oklch(0.269 0 0)",
75
+ "--secondary-foreground": "oklch(0.985 0 0)",
76
+ "--muted": "oklch(0.269 0 0)",
77
+ "--muted-foreground": "oklch(0.708 0 0)",
78
+ "--accent": "oklch(0.269 0 0)",
79
+ "--accent-foreground": "oklch(0.985 0 0)",
80
+ "--destructive": "oklch(0.704 0.191 22.216)",
81
+ "--border": "oklch(1 0 0 / 10%)",
82
+ "--input": "oklch(1 0 0 / 15%)",
83
+ "--ring": "oklch(0.556 0 0)",
84
+ "--chart-1": "oklch(0.488 0.243 264.376)",
85
+ "--chart-2": "oklch(0.696 0.17 162.48)",
86
+ "--chart-3": "oklch(0.769 0.188 70.08)",
87
+ "--chart-4": "oklch(0.627 0.265 303.9)",
88
+ "--chart-5": "oklch(0.645 0.246 16.439)",
89
+ "--sidebar": "oklch(0.205 0 0)",
90
+ "--sidebar-foreground": "oklch(0.985 0 0)",
91
+ "--sidebar-primary": "oklch(0.488 0.243 264.376)",
92
+ "--sidebar-primary-foreground": "oklch(0.985 0 0)",
93
+ "--sidebar-accent": "oklch(0.269 0 0)",
94
+ "--sidebar-accent-foreground": "oklch(0.985 0 0)",
95
+ "--sidebar-border": "oklch(1 0 0 / 10%)",
96
+ "--sidebar-ring": "oklch(0.556 0 0)"
97
+ }
98
+ },
99
+ v3: {
100
+ root: {
101
+ "--background": "0 0% 100%",
102
+ "--foreground": "0 0% 3.9%",
103
+ "--card": "0 0% 100%",
104
+ "--card-foreground": "0 0% 3.9%",
105
+ "--popover": "0 0% 100%",
106
+ "--popover-foreground": "0 0% 3.9%",
107
+ "--primary": "0 0% 9%",
108
+ "--primary-foreground": "0 0% 98%",
109
+ "--secondary": "0 0% 96.1%",
110
+ "--secondary-foreground": "0 0% 9%",
111
+ "--muted": "0 0% 96.1%",
112
+ "--muted-foreground": "0 0% 45.1%",
113
+ "--accent": "0 0% 96.1%",
114
+ "--accent-foreground": "0 0% 9%",
115
+ "--destructive": "0 84.2% 60.2%",
116
+ "--destructive-foreground": "0 0% 98%",
117
+ "--border": "0 0% 89.8%",
118
+ "--input": "0 0% 89.8%",
119
+ "--ring": "0 0% 3.9%",
120
+ "--radius": "0.5rem",
121
+ "--chart-1": "12 76% 61%",
122
+ "--chart-2": "173 58% 39%",
123
+ "--chart-3": "197 37% 24%",
124
+ "--chart-4": "43 74% 66%",
125
+ "--chart-5": "27 87% 67%"
126
+ },
127
+ dark: {
128
+ "--background": "0 0% 3.9%",
129
+ "--foreground": "0 0% 98%",
130
+ "--card": "0 0% 3.9%",
131
+ "--card-foreground": "0 0% 98%",
132
+ "--popover": "0 0% 3.9%",
133
+ "--popover-foreground": "0 0% 98%",
134
+ "--primary": "0 0% 98%",
135
+ "--primary-foreground": "0 0% 9%",
136
+ "--secondary": "0 0% 14.9%",
137
+ "--secondary-foreground": "0 0% 98%",
138
+ "--muted": "0 0% 14.9%",
139
+ "--muted-foreground": "0 0% 63.9%",
140
+ "--accent": "0 0% 14.9%",
141
+ "--accent-foreground": "0 0% 98%",
142
+ "--destructive": "0 62.8% 30.6%",
143
+ "--destructive-foreground": "0 0% 98%",
144
+ "--border": "0 0% 14.9%",
145
+ "--input": "0 0% 14.9%",
146
+ "--ring": "0 0% 83.1%",
147
+ "--chart-1": "220 70% 50%",
148
+ "--chart-2": "160 60% 45%",
149
+ "--chart-3": "30 80% 55%",
150
+ "--chart-4": "280 65% 60%",
151
+ "--chart-5": "340 75% 55%"
152
+ }
153
+ }
154
+ },
155
+ red: {
156
+ v4: {
157
+ root: {
158
+ "--radius": "0.65rem",
159
+ "--background": "oklch(1 0 0)",
160
+ "--foreground": "oklch(0.141 0.005 285.823)",
161
+ "--card": "oklch(1 0 0)",
162
+ "--card-foreground": "oklch(0.141 0.005 285.823)",
163
+ "--popover": "oklch(1 0 0)",
164
+ "--popover-foreground": "oklch(0.141 0.005 285.823)",
165
+ "--primary": "oklch(0.637 0.237 25.331)",
166
+ "--primary-foreground": "oklch(0.971 0.013 17.38)",
167
+ "--secondary": "oklch(0.967 0.001 286.375)",
168
+ "--secondary-foreground": "oklch(0.21 0.006 285.885)",
169
+ "--muted": "oklch(0.967 0.001 286.375)",
170
+ "--muted-foreground": "oklch(0.552 0.016 285.938)",
171
+ "--accent": "oklch(0.967 0.001 286.375)",
172
+ "--accent-foreground": "oklch(0.21 0.006 285.885)",
173
+ "--destructive": "oklch(0.577 0.245 27.325)",
174
+ "--border": "oklch(0.92 0.004 286.32)",
175
+ "--input": "oklch(0.92 0.004 286.32)",
176
+ "--ring": "oklch(0.637 0.237 25.331)",
177
+ "--chart-1": "oklch(0.646 0.222 41.116)",
178
+ "--chart-2": "oklch(0.6 0.118 184.704)",
179
+ "--chart-3": "oklch(0.398 0.07 227.392)",
180
+ "--chart-4": "oklch(0.828 0.189 84.429)",
181
+ "--chart-5": "oklch(0.769 0.188 70.08)",
182
+ "--sidebar": "oklch(0.985 0 0)",
183
+ "--sidebar-foreground": "oklch(0.141 0.005 285.823)",
184
+ "--sidebar-primary": "oklch(0.637 0.237 25.331)",
185
+ "--sidebar-primary-foreground": "oklch(0.971 0.013 17.38)",
186
+ "--sidebar-accent": "oklch(0.967 0.001 286.375)",
187
+ "--sidebar-accent-foreground": "oklch(0.21 0.006 285.885)",
188
+ "--sidebar-border": "oklch(0.92 0.004 286.32)",
189
+ "--sidebar-ring": "oklch(0.637 0.237 25.331)"
190
+ },
191
+ dark: {
192
+ "--background": "oklch(0.141 0.005 285.823)",
193
+ "--foreground": "oklch(0.985 0 0)",
194
+ "--card": "oklch(0.21 0.006 285.885)",
195
+ "--card-foreground": "oklch(0.985 0 0)",
196
+ "--popover": "oklch(0.21 0.006 285.885)",
197
+ "--popover-foreground": "oklch(0.985 0 0)",
198
+ "--primary": "oklch(0.637 0.237 25.331)",
199
+ "--primary-foreground": "oklch(0.971 0.013 17.38)",
200
+ "--secondary": "oklch(0.274 0.006 286.033)",
201
+ "--secondary-foreground": "oklch(0.985 0 0)",
202
+ "--muted": "oklch(0.274 0.006 286.033)",
203
+ "--muted-foreground": "oklch(0.705 0.015 286.067)",
204
+ "--accent": "oklch(0.274 0.006 286.033)",
205
+ "--accent-foreground": "oklch(0.985 0 0)",
206
+ "--destructive": "oklch(0.704 0.191 22.216)",
207
+ "--border": "oklch(1 0 0 / 10%)",
208
+ "--input": "oklch(1 0 0 / 15%)",
209
+ "--ring": "oklch(0.637 0.237 25.331)",
210
+ "--chart-1": "oklch(0.488 0.243 264.376)",
211
+ "--chart-2": "oklch(0.696 0.17 162.48)",
212
+ "--chart-3": "oklch(0.769 0.188 70.08)",
213
+ "--chart-4": "oklch(0.627 0.265 303.9)",
214
+ "--chart-5": "oklch(0.645 0.246 16.439)",
215
+ "--sidebar": "oklch(0.21 0.006 285.885)",
216
+ "--sidebar-foreground": "oklch(0.985 0 0)",
217
+ "--sidebar-primary": "oklch(0.637 0.237 25.331)",
218
+ "--sidebar-primary-foreground": "oklch(0.971 0.013 17.38)",
219
+ "--sidebar-accent": "oklch(0.274 0.006 286.033)",
220
+ "--sidebar-accent-foreground": "oklch(0.985 0 0)",
221
+ "--sidebar-border": "oklch(1 0 0 / 10%)",
222
+ "--sidebar-ring": "oklch(0.637 0.237 25.331)"
223
+ }
224
+ },
225
+ v3: {
226
+ root: {
227
+ "--background": "0 0% 100%",
228
+ "--foreground": "0 0% 3.9%",
229
+ "--card": "0 0% 100%",
230
+ "--card-foreground": "0 0% 3.9%",
231
+ "--popover": "0 0% 100%",
232
+ "--popover-foreground": "0 0% 3.9%",
233
+ "--primary": "0 72.2% 50.6%",
234
+ "--primary-foreground": "0 85.7% 97.3%",
235
+ "--secondary": "0 0% 96.1%",
236
+ "--secondary-foreground": "0 0% 9%",
237
+ "--muted": "0 0% 96.1%",
238
+ "--muted-foreground": "0 0% 45.1%",
239
+ "--accent": "0 0% 96.1%",
240
+ "--accent-foreground": "0 0% 9%",
241
+ "--destructive": "0 84.2% 60.2%",
242
+ "--destructive-foreground": "0 0% 98%",
243
+ "--border": "0 0% 89.8%",
244
+ "--input": "0 0% 89.8%",
245
+ "--ring": "0 72.2% 50.6%",
246
+ "--radius": "0.5rem",
247
+ "--chart-1": "12 76% 61%",
248
+ "--chart-2": "173 58% 39%",
249
+ "--chart-3": "197 37% 24%",
250
+ "--chart-4": "43 74% 66%",
251
+ "--chart-5": "27 87% 67%"
252
+ },
253
+ dark: {
254
+ "--background": "0 0% 3.9%",
255
+ "--foreground": "0 0% 98%",
256
+ "--card": "0 0% 3.9%",
257
+ "--card-foreground": "0 0% 98%",
258
+ "--popover": "0 0% 3.9%",
259
+ "--popover-foreground": "0 0% 98%",
260
+ "--primary": "0 72.2% 50.6%",
261
+ "--primary-foreground": "0 85.7% 97.3%",
262
+ "--secondary": "0 0% 14.9%",
263
+ "--secondary-foreground": "0 0% 98%",
264
+ "--muted": "0 0% 14.9%",
265
+ "--muted-foreground": "0 0% 63.9%",
266
+ "--accent": "0 0% 14.9%",
267
+ "--accent-foreground": "0 0% 98%",
268
+ "--destructive": "0 62.8% 30.6%",
269
+ "--destructive-foreground": "0 0% 98%",
270
+ "--border": "0 0% 14.9%",
271
+ "--input": "0 0% 14.9%",
272
+ "--ring": "0 72.2% 50.6%",
273
+ "--chart-1": "220 70% 50%",
274
+ "--chart-2": "160 60% 45%",
275
+ "--chart-3": "30 80% 55%",
276
+ "--chart-4": "280 65% 60%",
277
+ "--chart-5": "340 75% 55%"
278
+ }
279
+ }
280
+ },
281
+ rose: {
282
+ v4: {
283
+ root: {
284
+ "--radius": "0.65rem",
285
+ "--background": "oklch(1 0 0)",
286
+ "--foreground": "oklch(0.141 0.005 285.823)",
287
+ "--card": "oklch(1 0 0)",
288
+ "--card-foreground": "oklch(0.141 0.005 285.823)",
289
+ "--popover": "oklch(1 0 0)",
290
+ "--popover-foreground": "oklch(0.141 0.005 285.823)",
291
+ "--primary": "oklch(0.645 0.246 16.439)",
292
+ "--primary-foreground": "oklch(0.969 0.015 12.422)",
293
+ "--secondary": "oklch(0.967 0.001 286.375)",
294
+ "--secondary-foreground": "oklch(0.21 0.006 285.885)",
295
+ "--muted": "oklch(0.967 0.001 286.375)",
296
+ "--muted-foreground": "oklch(0.552 0.016 285.938)",
297
+ "--accent": "oklch(0.967 0.001 286.375)",
298
+ "--accent-foreground": "oklch(0.21 0.006 285.885)",
299
+ "--destructive": "oklch(0.577 0.245 27.325)",
300
+ "--border": "oklch(0.92 0.004 286.32)",
301
+ "--input": "oklch(0.92 0.004 286.32)",
302
+ "--ring": "oklch(0.645 0.246 16.439)",
303
+ "--chart-1": "oklch(0.646 0.222 41.116)",
304
+ "--chart-2": "oklch(0.6 0.118 184.704)",
305
+ "--chart-3": "oklch(0.398 0.07 227.392)",
306
+ "--chart-4": "oklch(0.828 0.189 84.429)",
307
+ "--chart-5": "oklch(0.769 0.188 70.08)",
308
+ "--sidebar": "oklch(0.985 0 0)",
309
+ "--sidebar-foreground": "oklch(0.141 0.005 285.823)",
310
+ "--sidebar-primary": "oklch(0.645 0.246 16.439)",
311
+ "--sidebar-primary-foreground": "oklch(0.969 0.015 12.422)",
312
+ "--sidebar-accent": "oklch(0.967 0.001 286.375)",
313
+ "--sidebar-accent-foreground": "oklch(0.21 0.006 285.885)",
314
+ "--sidebar-border": "oklch(0.92 0.004 286.32)",
315
+ "--sidebar-ring": "oklch(0.645 0.246 16.439)"
316
+ },
317
+ dark: {
318
+ "--background": "oklch(0.141 0.005 285.823)",
319
+ "--foreground": "oklch(0.985 0 0)",
320
+ "--card": "oklch(0.21 0.006 285.885)",
321
+ "--card-foreground": "oklch(0.985 0 0)",
322
+ "--popover": "oklch(0.21 0.006 285.885)",
323
+ "--popover-foreground": "oklch(0.985 0 0)",
324
+ "--primary": "oklch(0.645 0.246 16.439)",
325
+ "--primary-foreground": "oklch(0.969 0.015 12.422)",
326
+ "--secondary": "oklch(0.274 0.006 286.033)",
327
+ "--secondary-foreground": "oklch(0.985 0 0)",
328
+ "--muted": "oklch(0.274 0.006 286.033)",
329
+ "--muted-foreground": "oklch(0.705 0.015 286.067)",
330
+ "--accent": "oklch(0.274 0.006 286.033)",
331
+ "--accent-foreground": "oklch(0.985 0 0)",
332
+ "--destructive": "oklch(0.704 0.191 22.216)",
333
+ "--border": "oklch(1 0 0 / 10%)",
334
+ "--input": "oklch(1 0 0 / 15%)",
335
+ "--ring": "oklch(0.645 0.246 16.439)",
336
+ "--chart-1": "oklch(0.488 0.243 264.376)",
337
+ "--chart-2": "oklch(0.696 0.17 162.48)",
338
+ "--chart-3": "oklch(0.769 0.188 70.08)",
339
+ "--chart-4": "oklch(0.627 0.265 303.9)",
340
+ "--chart-5": "oklch(0.645 0.246 16.439)",
341
+ "--sidebar": "oklch(0.21 0.006 285.885)",
342
+ "--sidebar-foreground": "oklch(0.985 0 0)",
343
+ "--sidebar-primary": "oklch(0.645 0.246 16.439)",
344
+ "--sidebar-primary-foreground": "oklch(0.969 0.015 12.422)",
345
+ "--sidebar-accent": "oklch(0.274 0.006 286.033)",
346
+ "--sidebar-accent-foreground": "oklch(0.985 0 0)",
347
+ "--sidebar-border": "oklch(1 0 0 / 10%)",
348
+ "--sidebar-ring": "oklch(0.645 0.246 16.439)"
349
+ }
350
+ },
351
+ v3: {
352
+ root: {
353
+ "--background": "0 0% 100%",
354
+ "--foreground": "240 10% 3.9%",
355
+ "--card": "0 0% 100%",
356
+ "--card-foreground": "240 10% 3.9%",
357
+ "--popover": "0 0% 100%",
358
+ "--popover-foreground": "240 10% 3.9%",
359
+ "--primary": "346.8 77.2% 49.8%",
360
+ "--primary-foreground": "355.7 100% 97.3%",
361
+ "--secondary": "240 4.8% 95.9%",
362
+ "--secondary-foreground": "240 5.9% 10%",
363
+ "--muted": "240 4.8% 95.9%",
364
+ "--muted-foreground": "240 3.8% 46.1%",
365
+ "--accent": "240 4.8% 95.9%",
366
+ "--accent-foreground": "240 5.9% 10%",
367
+ "--destructive": "0 84.2% 60.2%",
368
+ "--destructive-foreground": "0 0% 98%",
369
+ "--border": "240 5.9% 90%",
370
+ "--input": "240 5.9% 90%",
371
+ "--ring": "346.8 77.2% 49.8%",
372
+ "--radius": "0.5rem",
373
+ "--chart-1": "12 76% 61%",
374
+ "--chart-2": "173 58% 39%",
375
+ "--chart-3": "197 37% 24%",
376
+ "--chart-4": "43 74% 66%",
377
+ "--chart-5": "27 87% 67%"
378
+ },
379
+ dark: {
380
+ "--background": "20 14.3% 4.1%",
381
+ "--foreground": "0 0% 95%",
382
+ "--card": "24 9.8% 10%",
383
+ "--card-foreground": "0 0% 95%",
384
+ "--popover": "0 0% 9%",
385
+ "--popover-foreground": "0 0% 95%",
386
+ "--primary": "346.8 77.2% 49.8%",
387
+ "--primary-foreground": "355.7 100% 97.3%",
388
+ "--secondary": "240 3.7% 15.9%",
389
+ "--secondary-foreground": "0 0% 98%",
390
+ "--muted": "0 0% 15%",
391
+ "--muted-foreground": "240 5% 64.9%",
392
+ "--accent": "12 6.5% 15.1%",
393
+ "--accent-foreground": "0 0% 98%",
394
+ "--destructive": "0 62.8% 30.6%",
395
+ "--destructive-foreground": "0 85.7% 97.3%",
396
+ "--border": "240 3.7% 15.9%",
397
+ "--input": "240 3.7% 15.9%",
398
+ "--ring": "346.8 77.2% 49.8%",
399
+ "--chart-1": "220 70% 50%",
400
+ "--chart-2": "160 60% 45%",
401
+ "--chart-3": "30 80% 55%",
402
+ "--chart-4": "280 65% 60%",
403
+ "--chart-5": "340 75% 55%"
404
+ }
405
+ }
406
+ },
407
+ orange: {
408
+ v4: {
409
+ root: {
410
+ "--radius": "0.65rem",
411
+ "--background": "oklch(1 0 0)",
412
+ "--foreground": "oklch(0.141 0.005 285.823)",
413
+ "--card": "oklch(1 0 0)",
414
+ "--card-foreground": "oklch(0.141 0.005 285.823)",
415
+ "--popover": "oklch(1 0 0)",
416
+ "--popover-foreground": "oklch(0.141 0.005 285.823)",
417
+ "--primary": "oklch(0.705 0.213 47.604)",
418
+ "--primary-foreground": "oklch(0.98 0.016 73.684)",
419
+ "--secondary": "oklch(0.967 0.001 286.375)",
420
+ "--secondary-foreground": "oklch(0.21 0.006 285.885)",
421
+ "--muted": "oklch(0.967 0.001 286.375)",
422
+ "--muted-foreground": "oklch(0.552 0.016 285.938)",
423
+ "--accent": "oklch(0.967 0.001 286.375)",
424
+ "--accent-foreground": "oklch(0.21 0.006 285.885)",
425
+ "--destructive": "oklch(0.577 0.245 27.325)",
426
+ "--border": "oklch(0.92 0.004 286.32)",
427
+ "--input": "oklch(0.92 0.004 286.32)",
428
+ "--ring": "oklch(0.705 0.213 47.604)",
429
+ "--chart-1": "oklch(0.646 0.222 41.116)",
430
+ "--chart-2": "oklch(0.6 0.118 184.704)",
431
+ "--chart-3": "oklch(0.398 0.07 227.392)",
432
+ "--chart-4": "oklch(0.828 0.189 84.429)",
433
+ "--chart-5": "oklch(0.769 0.188 70.08)",
434
+ "--sidebar": "oklch(0.985 0 0)",
435
+ "--sidebar-foreground": "oklch(0.141 0.005 285.823)",
436
+ "--sidebar-primary": "oklch(0.705 0.213 47.604)",
437
+ "--sidebar-primary-foreground": "oklch(0.98 0.016 73.684)",
438
+ "--sidebar-accent": "oklch(0.967 0.001 286.375)",
439
+ "--sidebar-accent-foreground": "oklch(0.21 0.006 285.885)",
440
+ "--sidebar-border": "oklch(0.92 0.004 286.32)",
441
+ "--sidebar-ring": "oklch(0.705 0.213 47.604)"
442
+ },
443
+ dark: {
444
+ "--background": "oklch(0.141 0.005 285.823)",
445
+ "--foreground": "oklch(0.985 0 0)",
446
+ "--card": "oklch(0.21 0.006 285.885)",
447
+ "--card-foreground": "oklch(0.985 0 0)",
448
+ "--popover": "oklch(0.21 0.006 285.885)",
449
+ "--popover-foreground": "oklch(0.985 0 0)",
450
+ "--primary": "oklch(0.646 0.222 41.116)",
451
+ "--primary-foreground": "oklch(0.98 0.016 73.684)",
452
+ "--secondary": "oklch(0.274 0.006 286.033)",
453
+ "--secondary-foreground": "oklch(0.985 0 0)",
454
+ "--muted": "oklch(0.274 0.006 286.033)",
455
+ "--muted-foreground": "oklch(0.705 0.015 286.067)",
456
+ "--accent": "oklch(0.274 0.006 286.033)",
457
+ "--accent-foreground": "oklch(0.985 0 0)",
458
+ "--destructive": "oklch(0.704 0.191 22.216)",
459
+ "--border": "oklch(1 0 0 / 10%)",
460
+ "--input": "oklch(1 0 0 / 15%)",
461
+ "--ring": "oklch(0.646 0.222 41.116)",
462
+ "--chart-1": "oklch(0.488 0.243 264.376)",
463
+ "--chart-2": "oklch(0.696 0.17 162.48)",
464
+ "--chart-3": "oklch(0.769 0.188 70.08)",
465
+ "--chart-4": "oklch(0.627 0.265 303.9)",
466
+ "--chart-5": "oklch(0.645 0.246 16.439)",
467
+ "--sidebar": "oklch(0.21 0.006 285.885)",
468
+ "--sidebar-foreground": "oklch(0.985 0 0)",
469
+ "--sidebar-primary": "oklch(0.646 0.222 41.116)",
470
+ "--sidebar-primary-foreground": "oklch(0.98 0.016 73.684)",
471
+ "--sidebar-accent": "oklch(0.274 0.006 286.033)",
472
+ "--sidebar-accent-foreground": "oklch(0.985 0 0)",
473
+ "--sidebar-border": "oklch(1 0 0 / 10%)",
474
+ "--sidebar-ring": "oklch(0.646 0.222 41.116)"
475
+ }
476
+ },
477
+ v3: {
478
+ root: {
479
+ "--background": "0 0% 100%",
480
+ "--foreground": "20 14.3% 4.1%",
481
+ "--card": "0 0% 100%",
482
+ "--card-foreground": "20 14.3% 4.1%",
483
+ "--popover": "0 0% 100%",
484
+ "--popover-foreground": "20 14.3% 4.1%",
485
+ "--primary": "24.6 95% 53.1%",
486
+ "--primary-foreground": "60 9.1% 97.8%",
487
+ "--secondary": "60 4.8% 95.9%",
488
+ "--secondary-foreground": "24 9.8% 10%",
489
+ "--muted": "60 4.8% 95.9%",
490
+ "--muted-foreground": "25 5.3% 44.7%",
491
+ "--accent": "60 4.8% 95.9%",
492
+ "--accent-foreground": "24 9.8% 10%",
493
+ "--destructive": "0 84.2% 60.2%",
494
+ "--destructive-foreground": "60 9.1% 97.8%",
495
+ "--border": "20 5.9% 90%",
496
+ "--input": "20 5.9% 90%",
497
+ "--ring": "24.6 95% 53.1%",
498
+ "--radius": "0.5rem",
499
+ "--chart-1": "12 76% 61%",
500
+ "--chart-2": "173 58% 39%",
501
+ "--chart-3": "197 37% 24%",
502
+ "--chart-4": "43 74% 66%",
503
+ "--chart-5": "27 87% 67%"
504
+ },
505
+ dark: {
506
+ "--background": "20 14.3% 4.1%",
507
+ "--foreground": "60 9.1% 97.8%",
508
+ "--card": "20 14.3% 4.1%",
509
+ "--card-foreground": "60 9.1% 97.8%",
510
+ "--popover": "20 14.3% 4.1%",
511
+ "--popover-foreground": "60 9.1% 97.8%",
512
+ "--primary": "20.5 90.2% 48.2%",
513
+ "--primary-foreground": "60 9.1% 97.8%",
514
+ "--secondary": "12 6.5% 15.1%",
515
+ "--secondary-foreground": "60 9.1% 97.8%",
516
+ "--muted": "12 6.5% 15.1%",
517
+ "--muted-foreground": "24 5.4% 63.9%",
518
+ "--accent": "12 6.5% 15.1%",
519
+ "--accent-foreground": "60 9.1% 97.8%",
520
+ "--destructive": "0 72.2% 50.6%",
521
+ "--destructive-foreground": "60 9.1% 97.8%",
522
+ "--border": "12 6.5% 15.1%",
523
+ "--input": "12 6.5% 15.1%",
524
+ "--ring": "20.5 90.2% 48.2%",
525
+ "--chart-1": "220 70% 50%",
526
+ "--chart-2": "160 60% 45%",
527
+ "--chart-3": "30 80% 55%",
528
+ "--chart-4": "280 65% 60%",
529
+ "--chart-5": "340 75% 55%"
530
+ }
531
+ }
532
+ },
533
+ green: {
534
+ v4: {
535
+ root: {
536
+ "--radius": "0.65rem",
537
+ "--background": "oklch(1 0 0)",
538
+ "--foreground": "oklch(0.141 0.005 285.823)",
539
+ "--card": "oklch(1 0 0)",
540
+ "--card-foreground": "oklch(0.141 0.005 285.823)",
541
+ "--popover": "oklch(1 0 0)",
542
+ "--popover-foreground": "oklch(0.141 0.005 285.823)",
543
+ "--primary": "oklch(0.723 0.219 149.579)",
544
+ "--primary-foreground": "oklch(0.982 0.018 155.826)",
545
+ "--secondary": "oklch(0.967 0.001 286.375)",
546
+ "--secondary-foreground": "oklch(0.21 0.006 285.885)",
547
+ "--muted": "oklch(0.967 0.001 286.375)",
548
+ "--muted-foreground": "oklch(0.552 0.016 285.938)",
549
+ "--accent": "oklch(0.967 0.001 286.375)",
550
+ "--accent-foreground": "oklch(0.21 0.006 285.885)",
551
+ "--destructive": "oklch(0.577 0.245 27.325)",
552
+ "--border": "oklch(0.92 0.004 286.32)",
553
+ "--input": "oklch(0.92 0.004 286.32)",
554
+ "--ring": "oklch(0.723 0.219 149.579)",
555
+ "--chart-1": "oklch(0.646 0.222 41.116)",
556
+ "--chart-2": "oklch(0.6 0.118 184.704)",
557
+ "--chart-3": "oklch(0.398 0.07 227.392)",
558
+ "--chart-4": "oklch(0.828 0.189 84.429)",
559
+ "--chart-5": "oklch(0.769 0.188 70.08)",
560
+ "--sidebar": "oklch(0.985 0 0)",
561
+ "--sidebar-foreground": "oklch(0.141 0.005 285.823)",
562
+ "--sidebar-primary": "oklch(0.723 0.219 149.579)",
563
+ "--sidebar-primary-foreground": "oklch(0.982 0.018 155.826)",
564
+ "--sidebar-accent": "oklch(0.967 0.001 286.375)",
565
+ "--sidebar-accent-foreground": "oklch(0.21 0.006 285.885)",
566
+ "--sidebar-border": "oklch(0.92 0.004 286.32)",
567
+ "--sidebar-ring": "oklch(0.723 0.219 149.579)"
568
+ },
569
+ dark: {
570
+ "--background": "oklch(0.141 0.005 285.823)",
571
+ "--foreground": "oklch(0.985 0 0)",
572
+ "--card": "oklch(0.21 0.006 285.885)",
573
+ "--card-foreground": "oklch(0.985 0 0)",
574
+ "--popover": "oklch(0.21 0.006 285.885)",
575
+ "--popover-foreground": "oklch(0.985 0 0)",
576
+ "--primary": "oklch(0.696 0.17 162.48)",
577
+ "--primary-foreground": "oklch(0.393 0.095 152.535)",
578
+ "--secondary": "oklch(0.274 0.006 286.033)",
579
+ "--secondary-foreground": "oklch(0.985 0 0)",
580
+ "--muted": "oklch(0.274 0.006 286.033)",
581
+ "--muted-foreground": "oklch(0.705 0.015 286.067)",
582
+ "--accent": "oklch(0.274 0.006 286.033)",
583
+ "--accent-foreground": "oklch(0.985 0 0)",
584
+ "--destructive": "oklch(0.704 0.191 22.216)",
585
+ "--border": "oklch(1 0 0 / 10%)",
586
+ "--input": "oklch(1 0 0 / 15%)",
587
+ "--ring": "oklch(0.527 0.154 150.069)",
588
+ "--chart-1": "oklch(0.488 0.243 264.376)",
589
+ "--chart-2": "oklch(0.696 0.17 162.48)",
590
+ "--chart-3": "oklch(0.769 0.188 70.08)",
591
+ "--chart-4": "oklch(0.627 0.265 303.9)",
592
+ "--chart-5": "oklch(0.645 0.246 16.439)",
593
+ "--sidebar": "oklch(0.21 0.006 285.885)",
594
+ "--sidebar-foreground": "oklch(0.985 0 0)",
595
+ "--sidebar-primary": "oklch(0.696 0.17 162.48)",
596
+ "--sidebar-primary-foreground": "oklch(0.393 0.095 152.535)",
597
+ "--sidebar-accent": "oklch(0.274 0.006 286.033)",
598
+ "--sidebar-accent-foreground": "oklch(0.985 0 0)",
599
+ "--sidebar-border": "oklch(1 0 0 / 10%)",
600
+ "--sidebar-ring": "oklch(0.527 0.154 150.069)"
601
+ }
602
+ },
603
+ v3: {
604
+ root: {
605
+ "--background": "0 0% 100%",
606
+ "--foreground": "240 10% 3.9%",
607
+ "--card": "0 0% 100%",
608
+ "--card-foreground": "240 10% 3.9%",
609
+ "--popover": "0 0% 100%",
610
+ "--popover-foreground": "240 10% 3.9%",
611
+ "--primary": "142.1 76.2% 36.3%",
612
+ "--primary-foreground": "355.7 100% 97.3%",
613
+ "--secondary": "240 4.8% 95.9%",
614
+ "--secondary-foreground": "240 5.9% 10%",
615
+ "--muted": "240 4.8% 95.9%",
616
+ "--muted-foreground": "240 3.8% 46.1%",
617
+ "--accent": "240 4.8% 95.9%",
618
+ "--accent-foreground": "240 5.9% 10%",
619
+ "--destructive": "0 84.2% 60.2%",
620
+ "--destructive-foreground": "0 0% 98%",
621
+ "--border": "240 5.9% 90%",
622
+ "--input": "240 5.9% 90%",
623
+ "--ring": "142.1 76.2% 36.3%",
624
+ "--radius": "0.5rem",
625
+ "--chart-1": "12 76% 61%",
626
+ "--chart-2": "173 58% 39%",
627
+ "--chart-3": "197 37% 24%",
628
+ "--chart-4": "43 74% 66%",
629
+ "--chart-5": "27 87% 67%"
630
+ },
631
+ dark: {
632
+ "--background": "20 14.3% 4.1%",
633
+ "--foreground": "0 0% 95%",
634
+ "--card": "24 9.8% 10%",
635
+ "--card-foreground": "0 0% 95%",
636
+ "--popover": "0 0% 9%",
637
+ "--popover-foreground": "0 0% 95%",
638
+ "--primary": "142.1 70.6% 45.3%",
639
+ "--primary-foreground": "144.9 80.4% 10%",
640
+ "--secondary": "240 3.7% 15.9%",
641
+ "--secondary-foreground": "0 0% 98%",
642
+ "--muted": "0 0% 15%",
643
+ "--muted-foreground": "240 5% 64.9%",
644
+ "--accent": "12 6.5% 15.1%",
645
+ "--accent-foreground": "0 0% 98%",
646
+ "--destructive": "0 62.8% 30.6%",
647
+ "--destructive-foreground": "0 85.7% 97.3%",
648
+ "--border": "240 3.7% 15.9%",
649
+ "--input": "240 3.7% 15.9%",
650
+ "--ring": "142.4 71.8% 29.2%",
651
+ "--chart-1": "220 70% 50%",
652
+ "--chart-2": "160 60% 45%",
653
+ "--chart-3": "30 80% 55%",
654
+ "--chart-4": "280 65% 60%",
655
+ "--chart-5": "340 75% 55%"
656
+ }
657
+ }
658
+ },
659
+ blue: {
660
+ v4: {
661
+ root: {
662
+ "--radius": "0.65rem",
663
+ "--background": "oklch(1 0 0)",
664
+ "--foreground": "oklch(0.141 0.005 285.823)",
665
+ "--card": "oklch(1 0 0)",
666
+ "--card-foreground": "oklch(0.141 0.005 285.823)",
667
+ "--popover": "oklch(1 0 0)",
668
+ "--popover-foreground": "oklch(0.141 0.005 285.823)",
669
+ "--primary": "oklch(0.623 0.214 259.815)",
670
+ "--primary-foreground": "oklch(0.97 0.014 254.604)",
671
+ "--secondary": "oklch(0.967 0.001 286.375)",
672
+ "--secondary-foreground": "oklch(0.21 0.006 285.885)",
673
+ "--muted": "oklch(0.967 0.001 286.375)",
674
+ "--muted-foreground": "oklch(0.552 0.016 285.938)",
675
+ "--accent": "oklch(0.967 0.001 286.375)",
676
+ "--accent-foreground": "oklch(0.21 0.006 285.885)",
677
+ "--destructive": "oklch(0.577 0.245 27.325)",
678
+ "--border": "oklch(0.92 0.004 286.32)",
679
+ "--input": "oklch(0.92 0.004 286.32)",
680
+ "--ring": "oklch(0.623 0.214 259.815)",
681
+ "--chart-1": "oklch(0.646 0.222 41.116)",
682
+ "--chart-2": "oklch(0.6 0.118 184.704)",
683
+ "--chart-3": "oklch(0.398 0.07 227.392)",
684
+ "--chart-4": "oklch(0.828 0.189 84.429)",
685
+ "--chart-5": "oklch(0.769 0.188 70.08)",
686
+ "--sidebar": "oklch(0.985 0 0)",
687
+ "--sidebar-foreground": "oklch(0.141 0.005 285.823)",
688
+ "--sidebar-primary": "oklch(0.623 0.214 259.815)",
689
+ "--sidebar-primary-foreground": "oklch(0.97 0.014 254.604)",
690
+ "--sidebar-accent": "oklch(0.967 0.001 286.375)",
691
+ "--sidebar-accent-foreground": "oklch(0.21 0.006 285.885)",
692
+ "--sidebar-border": "oklch(0.92 0.004 286.32)",
693
+ "--sidebar-ring": "oklch(0.623 0.214 259.815)"
694
+ },
695
+ dark: {
696
+ "--background": "oklch(0.141 0.005 285.823)",
697
+ "--foreground": "oklch(0.985 0 0)",
698
+ "--card": "oklch(0.21 0.006 285.885)",
699
+ "--card-foreground": "oklch(0.985 0 0)",
700
+ "--popover": "oklch(0.21 0.006 285.885)",
701
+ "--popover-foreground": "oklch(0.985 0 0)",
702
+ "--primary": "oklch(0.546 0.245 262.881)",
703
+ "--primary-foreground": "oklch(0.379 0.146 265.522)",
704
+ "--secondary": "oklch(0.274 0.006 286.033)",
705
+ "--secondary-foreground": "oklch(0.985 0 0)",
706
+ "--muted": "oklch(0.274 0.006 286.033)",
707
+ "--muted-foreground": "oklch(0.705 0.015 286.067)",
708
+ "--accent": "oklch(0.274 0.006 286.033)",
709
+ "--accent-foreground": "oklch(0.985 0 0)",
710
+ "--destructive": "oklch(0.704 0.191 22.216)",
711
+ "--border": "oklch(1 0 0 / 10%)",
712
+ "--input": "oklch(1 0 0 / 15%)",
713
+ "--ring": "oklch(0.488 0.243 264.376)",
714
+ "--chart-1": "oklch(0.488 0.243 264.376)",
715
+ "--chart-2": "oklch(0.696 0.17 162.48)",
716
+ "--chart-3": "oklch(0.769 0.188 70.08)",
717
+ "--chart-4": "oklch(0.627 0.265 303.9)",
718
+ "--chart-5": "oklch(0.645 0.246 16.439)",
719
+ "--sidebar": "oklch(0.21 0.006 285.885)",
720
+ "--sidebar-foreground": "oklch(0.985 0 0)",
721
+ "--sidebar-primary": "oklch(0.546 0.245 262.881)",
722
+ "--sidebar-primary-foreground": "oklch(0.379 0.146 265.522)",
723
+ "--sidebar-accent": "oklch(0.274 0.006 286.033)",
724
+ "--sidebar-accent-foreground": "oklch(0.985 0 0)",
725
+ "--sidebar-border": "oklch(1 0 0 / 10%)",
726
+ "--sidebar-ring": "oklch(0.488 0.243 264.376)"
727
+ }
728
+ },
729
+ v3: {
730
+ root: {
731
+ "--background": "0 0% 100%",
732
+ "--foreground": "222.2 84% 4.9%",
733
+ "--card": "0 0% 100%",
734
+ "--card-foreground": "222.2 84% 4.9%",
735
+ "--popover": "0 0% 100%",
736
+ "--popover-foreground": "222.2 84% 4.9%",
737
+ "--primary": "221.2 83.2% 53.3%",
738
+ "--primary-foreground": "210 40% 98%",
739
+ "--secondary": "210 40% 96.1%",
740
+ "--secondary-foreground": "222.2 47.4% 11.2%",
741
+ "--muted": "210 40% 96.1%",
742
+ "--muted-foreground": "215.4 16.3% 46.9%",
743
+ "--accent": "210 40% 96.1%",
744
+ "--accent-foreground": "222.2 47.4% 11.2%",
745
+ "--destructive": "0 84.2% 60.2%",
746
+ "--destructive-foreground": "210 40% 98%",
747
+ "--border": "214.3 31.8% 91.4%",
748
+ "--input": "214.3 31.8% 91.4%",
749
+ "--ring": "221.2 83.2% 53.3%",
750
+ "--radius": "0.5rem",
751
+ "--chart-1": "12 76% 61%",
752
+ "--chart-2": "173 58% 39%",
753
+ "--chart-3": "197 37% 24%",
754
+ "--chart-4": "43 74% 66%",
755
+ "--chart-5": "27 87% 67%"
756
+ },
757
+ dark: {
758
+ "--background": "222.2 84% 4.9%",
759
+ "--foreground": "210 40% 98%",
760
+ "--card": "222.2 84% 4.9%",
761
+ "--card-foreground": "210 40% 98%",
762
+ "--popover": "222.2 84% 4.9%",
763
+ "--popover-foreground": "210 40% 98%",
764
+ "--primary": "217.2 91.2% 59.8%",
765
+ "--primary-foreground": "222.2 47.4% 11.2%",
766
+ "--secondary": "217.2 32.6% 17.5%",
767
+ "--secondary-foreground": "210 40% 98%",
768
+ "--muted": "217.2 32.6% 17.5%",
769
+ "--muted-foreground": "215 20.2% 65.1%",
770
+ "--accent": "217.2 32.6% 17.5%",
771
+ "--accent-foreground": "210 40% 98%",
772
+ "--destructive": "0 62.8% 30.6%",
773
+ "--destructive-foreground": "210 40% 98%",
774
+ "--border": "217.2 32.6% 17.5%",
775
+ "--input": "217.2 32.6% 17.5%",
776
+ "--ring": "224.3 76.3% 48%",
777
+ "--chart-1": "220 70% 50%",
778
+ "--chart-2": "160 60% 45%",
779
+ "--chart-3": "30 80% 55%",
780
+ "--chart-4": "280 65% 60%",
781
+ "--chart-5": "340 75% 55%"
782
+ }
783
+ }
784
+ },
785
+ yellow: {
786
+ v4: {
787
+ root: {
788
+ "--radius": "0.65rem",
789
+ "--background": "oklch(1 0 0)",
790
+ "--foreground": "oklch(0.141 0.005 285.823)",
791
+ "--card": "oklch(1 0 0)",
792
+ "--card-foreground": "oklch(0.141 0.005 285.823)",
793
+ "--popover": "oklch(1 0 0)",
794
+ "--popover-foreground": "oklch(0.141 0.005 285.823)",
795
+ "--primary": "oklch(0.795 0.184 86.047)",
796
+ "--primary-foreground": "oklch(0.421 0.095 57.708)",
797
+ "--secondary": "oklch(0.967 0.001 286.375)",
798
+ "--secondary-foreground": "oklch(0.21 0.006 285.885)",
799
+ "--muted": "oklch(0.967 0.001 286.375)",
800
+ "--muted-foreground": "oklch(0.552 0.016 285.938)",
801
+ "--accent": "oklch(0.967 0.001 286.375)",
802
+ "--accent-foreground": "oklch(0.21 0.006 285.885)",
803
+ "--destructive": "oklch(0.577 0.245 27.325)",
804
+ "--border": "oklch(0.92 0.004 286.32)",
805
+ "--input": "oklch(0.92 0.004 286.32)",
806
+ "--ring": "oklch(0.795 0.184 86.047)",
807
+ "--chart-1": "oklch(0.646 0.222 41.116)",
808
+ "--chart-2": "oklch(0.6 0.118 184.704)",
809
+ "--chart-3": "oklch(0.398 0.07 227.392)",
810
+ "--chart-4": "oklch(0.828 0.189 84.429)",
811
+ "--chart-5": "oklch(0.769 0.188 70.08)",
812
+ "--sidebar": "oklch(0.985 0 0)",
813
+ "--sidebar-foreground": "oklch(0.141 0.005 285.823)",
814
+ "--sidebar-primary": "oklch(0.795 0.184 86.047)",
815
+ "--sidebar-primary-foreground": "oklch(0.421 0.095 57.708)",
816
+ "--sidebar-accent": "oklch(0.967 0.001 286.375)",
817
+ "--sidebar-accent-foreground": "oklch(0.21 0.006 285.885)",
818
+ "--sidebar-border": "oklch(0.92 0.004 286.32)",
819
+ "--sidebar-ring": "oklch(0.795 0.184 86.047)"
820
+ },
821
+ dark: {
822
+ "--background": "oklch(0.141 0.005 285.823)",
823
+ "--foreground": "oklch(0.985 0 0)",
824
+ "--card": "oklch(0.21 0.006 285.885)",
825
+ "--card-foreground": "oklch(0.985 0 0)",
826
+ "--popover": "oklch(0.21 0.006 285.885)",
827
+ "--popover-foreground": "oklch(0.985 0 0)",
828
+ "--primary": "oklch(0.795 0.184 86.047)",
829
+ "--primary-foreground": "oklch(0.421 0.095 57.708)",
830
+ "--secondary": "oklch(0.274 0.006 286.033)",
831
+ "--secondary-foreground": "oklch(0.985 0 0)",
832
+ "--muted": "oklch(0.274 0.006 286.033)",
833
+ "--muted-foreground": "oklch(0.705 0.015 286.067)",
834
+ "--accent": "oklch(0.274 0.006 286.033)",
835
+ "--accent-foreground": "oklch(0.985 0 0)",
836
+ "--destructive": "oklch(0.704 0.191 22.216)",
837
+ "--border": "oklch(1 0 0 / 10%)",
838
+ "--input": "oklch(1 0 0 / 15%)",
839
+ "--ring": "oklch(0.554 0.135 66.442)",
840
+ "--chart-1": "oklch(0.488 0.243 264.376)",
841
+ "--chart-2": "oklch(0.696 0.17 162.48)",
842
+ "--chart-3": "oklch(0.769 0.188 70.08)",
843
+ "--chart-4": "oklch(0.627 0.265 303.9)",
844
+ "--chart-5": "oklch(0.645 0.246 16.439)",
845
+ "--sidebar": "oklch(0.21 0.006 285.885)",
846
+ "--sidebar-foreground": "oklch(0.985 0 0)",
847
+ "--sidebar-primary": "oklch(0.795 0.184 86.047)",
848
+ "--sidebar-primary-foreground": "oklch(0.421 0.095 57.708)",
849
+ "--sidebar-accent": "oklch(0.274 0.006 286.033)",
850
+ "--sidebar-accent-foreground": "oklch(0.985 0 0)",
851
+ "--sidebar-border": "oklch(1 0 0 / 10%)",
852
+ "--sidebar-ring": "oklch(0.554 0.135 66.442)"
853
+ }
854
+ },
855
+ v3: {
856
+ root: {
857
+ "--background": "0 0% 100%",
858
+ "--foreground": "20 14.3% 4.1%",
859
+ "--card": "0 0% 100%",
860
+ "--card-foreground": "20 14.3% 4.1%",
861
+ "--popover": "0 0% 100%",
862
+ "--popover-foreground": "20 14.3% 4.1%",
863
+ "--primary": "47.9 95.8% 53.1%",
864
+ "--primary-foreground": "26 83.3% 14.1%",
865
+ "--secondary": "60 4.8% 95.9%",
866
+ "--secondary-foreground": "24 9.8% 10%",
867
+ "--muted": "60 4.8% 95.9%",
868
+ "--muted-foreground": "25 5.3% 44.7%",
869
+ "--accent": "60 4.8% 95.9%",
870
+ "--accent-foreground": "24 9.8% 10%",
871
+ "--destructive": "0 84.2% 60.2%",
872
+ "--destructive-foreground": "60 9.1% 97.8%",
873
+ "--border": "20 5.9% 90%",
874
+ "--input": "20 5.9% 90%",
875
+ "--ring": "20 14.3% 4.1%",
876
+ "--radius": "0.5rem",
877
+ "--chart-1": "12 76% 61%",
878
+ "--chart-2": "173 58% 39%",
879
+ "--chart-3": "197 37% 24%",
880
+ "--chart-4": "43 74% 66%",
881
+ "--chart-5": "27 87% 67%"
882
+ },
883
+ dark: {
884
+ "--background": "20 14.3% 4.1%",
885
+ "--foreground": "60 9.1% 97.8%",
886
+ "--card": "20 14.3% 4.1%",
887
+ "--card-foreground": "60 9.1% 97.8%",
888
+ "--popover": "20 14.3% 4.1%",
889
+ "--popover-foreground": "60 9.1% 97.8%",
890
+ "--primary": "47.9 95.8% 53.1%",
891
+ "--primary-foreground": "26 83.3% 14.1%",
892
+ "--secondary": "12 6.5% 15.1%",
893
+ "--secondary-foreground": "60 9.1% 97.8%",
894
+ "--muted": "12 6.5% 15.1%",
895
+ "--muted-foreground": "24 5.4% 63.9%",
896
+ "--accent": "12 6.5% 15.1%",
897
+ "--accent-foreground": "60 9.1% 97.8%",
898
+ "--destructive": "0 62.8% 30.6%",
899
+ "--destructive-foreground": "60 9.1% 97.8%",
900
+ "--border": "12 6.5% 15.1%",
901
+ "--input": "12 6.5% 15.1%",
902
+ "--ring": "35.5 91.7% 32.9%",
903
+ "--chart-1": "220 70% 50%",
904
+ "--chart-2": "160 60% 45%",
905
+ "--chart-3": "30 80% 55%",
906
+ "--chart-4": "280 65% 60%",
907
+ "--chart-5": "340 75% 55%"
908
+ }
909
+ }
910
+ },
911
+ violet: {
912
+ v4: {
913
+ root: {
914
+ "--radius": "0.65rem",
915
+ "--background": "oklch(1 0 0)",
916
+ "--foreground": "oklch(0.141 0.005 285.823)",
917
+ "--card": "oklch(1 0 0)",
918
+ "--card-foreground": "oklch(0.141 0.005 285.823)",
919
+ "--popover": "oklch(1 0 0)",
920
+ "--popover-foreground": "oklch(0.141 0.005 285.823)",
921
+ "--primary": "oklch(0.637 0.237 25.331)",
922
+ "--primary-foreground": "oklch(0.971 0.013 17.38)",
923
+ "--secondary": "oklch(0.967 0.001 286.375)",
924
+ "--secondary-foreground": "oklch(0.21 0.006 285.885)",
925
+ "--muted": "oklch(0.967 0.001 286.375)",
926
+ "--muted-foreground": "oklch(0.552 0.016 285.938)",
927
+ "--accent": "oklch(0.967 0.001 286.375)",
928
+ "--accent-foreground": "oklch(0.21 0.006 285.885)",
929
+ "--destructive": "oklch(0.577 0.245 27.325)",
930
+ "--border": "oklch(0.92 0.004 286.32)",
931
+ "--input": "oklch(0.92 0.004 286.32)",
932
+ "--ring": "oklch(0.637 0.237 25.331)",
933
+ "--chart-1": "oklch(0.646 0.222 41.116)",
934
+ "--chart-2": "oklch(0.6 0.118 184.704)",
935
+ "--chart-3": "oklch(0.398 0.07 227.392)",
936
+ "--chart-4": "oklch(0.828 0.189 84.429)",
937
+ "--chart-5": "oklch(0.769 0.188 70.08)",
938
+ "--sidebar": "oklch(0.985 0 0)",
939
+ "--sidebar-foreground": "oklch(0.141 0.005 285.823)",
940
+ "--sidebar-primary": "oklch(0.637 0.237 25.331)",
941
+ "--sidebar-primary-foreground": "oklch(0.971 0.013 17.38)",
942
+ "--sidebar-accent": "oklch(0.967 0.001 286.375)",
943
+ "--sidebar-accent-foreground": "oklch(0.21 0.006 285.885)",
944
+ "--sidebar-border": "oklch(0.92 0.004 286.32)",
945
+ "--sidebar-ring": "oklch(0.637 0.237 25.331)"
946
+ },
947
+ dark: {
948
+ "--background": "oklch(0.141 0.005 285.823)",
949
+ "--foreground": "oklch(0.985 0 0)",
950
+ "--card": "oklch(0.21 0.006 285.885)",
951
+ "--card-foreground": "oklch(0.985 0 0)",
952
+ "--popover": "oklch(0.21 0.006 285.885)",
953
+ "--popover-foreground": "oklch(0.985 0 0)",
954
+ "--primary": "oklch(0.637 0.237 25.331)",
955
+ "--primary-foreground": "oklch(0.971 0.013 17.38)",
956
+ "--secondary": "oklch(0.274 0.006 286.033)",
957
+ "--secondary-foreground": "oklch(0.985 0 0)",
958
+ "--muted": "oklch(0.274 0.006 286.033)",
959
+ "--muted-foreground": "oklch(0.705 0.015 286.067)",
960
+ "--accent": "oklch(0.274 0.006 286.033)",
961
+ "--accent-foreground": "oklch(0.985 0 0)",
962
+ "--destructive": "oklch(0.704 0.191 22.216)",
963
+ "--border": "oklch(1 0 0 / 10%)",
964
+ "--input": "oklch(1 0 0 / 15%)",
965
+ "--ring": "oklch(0.637 0.237 25.331)",
966
+ "--chart-1": "oklch(0.488 0.243 264.376)",
967
+ "--chart-2": "oklch(0.696 0.17 162.48)",
968
+ "--chart-3": "oklch(0.769 0.188 70.08)",
969
+ "--chart-4": "oklch(0.627 0.265 303.9)",
970
+ "--chart-5": "oklch(0.645 0.246 16.439)",
971
+ "--sidebar": "oklch(0.21 0.006 285.885)",
972
+ "--sidebar-foreground": "oklch(0.985 0 0)",
973
+ "--sidebar-primary": "oklch(0.637 0.237 25.331)",
974
+ "--sidebar-primary-foreground": "oklch(0.971 0.013 17.38)",
975
+ "--sidebar-accent": "oklch(0.274 0.006 286.033)",
976
+ "--sidebar-accent-foreground": "oklch(0.985 0 0)",
977
+ "--sidebar-border": "oklch(1 0 0 / 10%)",
978
+ "--sidebar-ring": "oklch(0.637 0.237 25.331)"
979
+ }
980
+ },
981
+ v3: {
982
+ root: {
983
+ "--background": "0 0% 100%",
984
+ "--foreground": "224 71.4% 4.1%",
985
+ "--card": "0 0% 100%",
986
+ "--card-foreground": "224 71.4% 4.1%",
987
+ "--popover": "0 0% 100%",
988
+ "--popover-foreground": "224 71.4% 4.1%",
989
+ "--primary": "262.1 83.3% 57.8%",
990
+ "--primary-foreground": "210 20% 98%",
991
+ "--secondary": "220 14.3% 95.9%",
992
+ "--secondary-foreground": "220.9 39.3% 11%",
993
+ "--muted": "220 14.3% 95.9%",
994
+ "--muted-foreground": "220 8.9% 46.1%",
995
+ "--accent": "220 14.3% 95.9%",
996
+ "--accent-foreground": "220.9 39.3% 11%",
997
+ "--destructive": "0 84.2% 60.2%",
998
+ "--destructive-foreground": "210 20% 98%",
999
+ "--border": "220 13% 91%",
1000
+ "--input": "220 13% 91%",
1001
+ "--ring": "262.1 83.3% 57.8%",
1002
+ "--radius": "0.5rem",
1003
+ "--chart-1": "12 76% 61%",
1004
+ "--chart-2": "173 58% 39%",
1005
+ "--chart-3": "197 37% 24%",
1006
+ "--chart-4": "43 74% 66%",
1007
+ "--chart-5": "27 87% 67%"
1008
+ },
1009
+ dark: {
1010
+ "--background": "224 71.4% 4.1%",
1011
+ "--foreground": "210 20% 98%",
1012
+ "--card": "224 71.4% 4.1%",
1013
+ "--card-foreground": "210 20% 98%",
1014
+ "--popover": "224 71.4% 4.1%",
1015
+ "--popover-foreground": "210 20% 98%",
1016
+ "--primary": "263.4 70% 50.4%",
1017
+ "--primary-foreground": "210 20% 98%",
1018
+ "--secondary": "215 27.9% 16.9%",
1019
+ "--secondary-foreground": "210 20% 98%",
1020
+ "--muted": "215 27.9% 16.9%",
1021
+ "--muted-foreground": "217.9 10.6% 64.9%",
1022
+ "--accent": "215 27.9% 16.9%",
1023
+ "--accent-foreground": "210 20% 98%",
1024
+ "--destructive": "0 62.8% 30.6%",
1025
+ "--destructive-foreground": "210 20% 98%",
1026
+ "--border": "215 27.9% 16.9%",
1027
+ "--input": "215 27.9% 16.9%",
1028
+ "--ring": "263.4 70% 50.4%",
1029
+ "--chart-1": "220 70% 50%",
1030
+ "--chart-2": "160 60% 45%",
1031
+ "--chart-3": "30 80% 55%",
1032
+ "--chart-4": "280 65% 60%",
1033
+ "--chart-5": "340 75% 55%"
1034
+ }
1035
+ }
1036
+ },
1037
+ amber: {
1038
+ v4: {
1039
+ root: {
1040
+ "--background": "oklch(1 0 0)",
1041
+ "--foreground": "oklch(0.145 0 0)",
1042
+ "--card": "oklch(1 0 0)",
1043
+ "--card-foreground": "oklch(0.145 0 0)",
1044
+ "--popover": "oklch(1 0 0)",
1045
+ "--popover-foreground": "oklch(0.145 0 0)",
1046
+ "--primary": "oklch(0.67 0.16 58)",
1047
+ "--primary-foreground": "oklch(0.99 0.02 95)",
1048
+ "--secondary": "oklch(0.967 0.001 286.375)",
1049
+ "--secondary-foreground": "oklch(0.21 0.006 285.885)",
1050
+ "--muted": "oklch(0.97 0 0)",
1051
+ "--muted-foreground": "oklch(0.556 0 0)",
1052
+ "--accent": "oklch(0.97 0 0)",
1053
+ "--accent-foreground": "oklch(0.205 0 0)",
1054
+ "--destructive": "oklch(0.58 0.22 27)",
1055
+ "--border": "oklch(0.922 0 0)",
1056
+ "--input": "oklch(0.922 0 0)",
1057
+ "--ring": "oklch(0.708 0 0)",
1058
+ "--chart-1": "oklch(0.88 0.15 92)",
1059
+ "--chart-2": "oklch(0.77 0.16 70)",
1060
+ "--chart-3": "oklch(0.67 0.16 58)",
1061
+ "--chart-4": "oklch(0.56 0.15 49)",
1062
+ "--chart-5": "oklch(0.47 0.12 46)",
1063
+ "--radius": "0.625rem",
1064
+ "--sidebar": "oklch(0.985 0 0)",
1065
+ "--sidebar-foreground": "oklch(0.145 0 0)",
1066
+ "--sidebar-primary": "oklch(0.51 0.23 277)",
1067
+ "--sidebar-primary-foreground": "oklch(0.96 0.02 272)",
1068
+ "--sidebar-accent": "oklch(0.97 0 0)",
1069
+ "--sidebar-accent-foreground": "oklch(0.205 0 0)",
1070
+ "--sidebar-border": "oklch(0.922 0 0)",
1071
+ "--sidebar-ring": "oklch(0.708 0 0)"
1072
+ },
1073
+ dark: {
1074
+ "--background": "oklch(0.145 0 0)",
1075
+ "--foreground": "oklch(0.985 0 0)",
1076
+ "--card": "oklch(0.205 0 0)",
1077
+ "--card-foreground": "oklch(0.985 0 0)",
1078
+ "--popover": "oklch(0.205 0 0)",
1079
+ "--popover-foreground": "oklch(0.985 0 0)",
1080
+ "--primary": "oklch(0.59 0.20 277)",
1081
+ "--primary-foreground": "oklch(0.96 0.02 272)",
1082
+ "--secondary": "oklch(0.274 0.006 286.033)",
1083
+ "--secondary-foreground": "oklch(0.985 0 0)",
1084
+ "--muted": "oklch(0.269 0 0)",
1085
+ "--muted-foreground": "oklch(0.708 0 0)",
1086
+ "--accent": "oklch(0.371 0 0)",
1087
+ "--accent-foreground": "oklch(0.985 0 0)",
1088
+ "--destructive": "oklch(0.704 0.191 22.216)",
1089
+ "--border": "oklch(1 0 0 / 10%)",
1090
+ "--input": "oklch(1 0 0 / 15%)",
1091
+ "--ring": "oklch(0.556 0 0)",
1092
+ "--chart-1": "oklch(0.79 0.10 275)",
1093
+ "--chart-2": "oklch(0.68 0.16 277)",
1094
+ "--chart-3": "oklch(0.59 0.20 277)",
1095
+ "--chart-4": "oklch(0.51 0.23 277)",
1096
+ "--chart-5": "oklch(0.46 0.21 277)",
1097
+ "--sidebar": "oklch(0.205 0 0)",
1098
+ "--sidebar-foreground": "oklch(0.985 0 0)",
1099
+ "--sidebar-primary": "oklch(0.68 0.16 277)",
1100
+ "--sidebar-primary-foreground": "oklch(0.96 0.02 272)",
1101
+ "--sidebar-accent": "oklch(0.269 0 0)",
1102
+ "--sidebar-accent-foreground": "oklch(0.985 0 0)",
1103
+ "--sidebar-border": "oklch(1 0 0 / 10%)",
1104
+ "--sidebar-ring": "oklch(0.556 0 0)"
1105
+ }
1106
+ },
1107
+ v3: {
1108
+ root: {
1109
+ "--background": "0 0% 100%",
1110
+ "--foreground": "0 0% 14.5%",
1111
+ "--card": "0 0% 100%",
1112
+ "--card-foreground": "0 0% 14.5%",
1113
+ "--popover": "0 0% 100%",
1114
+ "--popover-foreground": "0 0% 14.5%",
1115
+ "--primary": "239 84% 67%",
1116
+ "--primary-foreground": "236 89% 91%",
1117
+ "--secondary": "0 0% 96.7%",
1118
+ "--secondary-foreground": "0 0% 21%",
1119
+ "--muted": "0 0% 97%",
1120
+ "--muted-foreground": "0 0% 55.6%",
1121
+ "--accent": "0 0% 97%",
1122
+ "--accent-foreground": "0 0% 20.5%",
1123
+ "--destructive": "0 84.2% 60.2%",
1124
+ "--border": "0 0% 92.2%",
1125
+ "--input": "0 0% 92.2%",
1126
+ "--ring": "0 0% 70.8%",
1127
+ "--radius": "0.625rem"
1128
+ },
1129
+ dark: {
1130
+ "--background": "0 0% 14.5%",
1131
+ "--foreground": "0 0% 98.5%",
1132
+ "--card": "0 0% 20.5%",
1133
+ "--card-foreground": "0 0% 98.5%",
1134
+ "--popover": "0 0% 20.5%",
1135
+ "--popover-foreground": "0 0% 98.5%",
1136
+ "--primary": "239 84% 62%",
1137
+ "--primary-foreground": "236 89% 91%",
1138
+ "--secondary": "0 0% 27.4%",
1139
+ "--secondary-foreground": "0 0% 98.5%",
1140
+ "--muted": "0 0% 26.9%",
1141
+ "--muted-foreground": "0 0% 70.8%",
1142
+ "--accent": "0 0% 37.1%",
1143
+ "--accent-foreground": "0 0% 98.5%",
1144
+ "--destructive": "0 72% 51%",
1145
+ "--border": "0 0% 27.4%",
1146
+ "--input": "0 0% 27.4%",
1147
+ "--ring": "0 0% 55.6%"
1148
+ }
1149
+ }
1150
+ },
1151
+
1152
+ lime: {
1153
+ v4: {
1154
+ root: {
1155
+ "--background": "oklch(1 0 0)",
1156
+ "--foreground": "oklch(0.145 0 0)",
1157
+ "--card": "oklch(1 0 0)",
1158
+ "--card-foreground": "oklch(0.145 0 0)",
1159
+ "--popover": "oklch(1 0 0)",
1160
+ "--popover-foreground": "oklch(0.145 0 0)",
1161
+ "--primary": "oklch(0.65 0.18 132)",
1162
+ "--primary-foreground": "oklch(0.99 0.03 121)",
1163
+ "--secondary": "oklch(0.967 0.001 286.375)",
1164
+ "--secondary-foreground": "oklch(0.21 0.006 285.885)",
1165
+ "--muted": "oklch(0.97 0 0)",
1166
+ "--muted-foreground": "oklch(0.556 0 0)",
1167
+ "--accent": "oklch(0.97 0 0)",
1168
+ "--accent-foreground": "oklch(0.205 0 0)",
1169
+ "--destructive": "oklch(0.58 0.22 27)",
1170
+ "--border": "oklch(0.922 0 0)",
1171
+ "--input": "oklch(0.922 0 0)",
1172
+ "--ring": "oklch(0.708 0 0)",
1173
+ "--chart-1": "oklch(0.90 0.18 127)",
1174
+ "--chart-2": "oklch(0.85 0.21 129)",
1175
+ "--chart-3": "oklch(0.77 0.20 131)",
1176
+ "--chart-4": "oklch(0.65 0.18 132)",
1177
+ "--chart-5": "oklch(0.53 0.14 132)",
1178
+ "--radius": "0.625rem",
1179
+ "--sidebar": "oklch(0.985 0 0)",
1180
+ "--sidebar-foreground": "oklch(0.145 0 0)",
1181
+ "--sidebar-primary": "oklch(0.65 0.18 132)",
1182
+ "--sidebar-primary-foreground": "oklch(0.99 0.03 121)",
1183
+ "--sidebar-accent": "oklch(0.97 0 0)",
1184
+ "--sidebar-accent-foreground": "oklch(0.205 0 0)",
1185
+ "--sidebar-border": "oklch(0.922 0 0)",
1186
+ "--sidebar-ring": "oklch(0.708 0 0)"
1187
+ },
1188
+ dark: {
1189
+ "--background": "oklch(0.145 0 0)",
1190
+ "--foreground": "oklch(0.985 0 0)",
1191
+ "--card": "oklch(0.205 0 0)",
1192
+ "--card-foreground": "oklch(0.985 0 0)",
1193
+ "--popover": "oklch(0.205 0 0)",
1194
+ "--popover-foreground": "oklch(0.985 0 0)",
1195
+ "--primary": "oklch(0.77 0.20 131)",
1196
+ "--primary-foreground": "oklch(0.27 0.07 132)",
1197
+ "--secondary": "oklch(0.274 0.006 286.033)",
1198
+ "--secondary-foreground": "oklch(0.985 0 0)",
1199
+ "--muted": "oklch(0.269 0 0)",
1200
+ "--muted-foreground": "oklch(0.708 0 0)",
1201
+ "--accent": "oklch(0.371 0 0)",
1202
+ "--accent-foreground": "oklch(0.985 0 0)",
1203
+ "--destructive": "oklch(0.704 0.191 22.216)",
1204
+ "--border": "oklch(1 0 0 / 10%)",
1205
+ "--input": "oklch(1 0 0 / 15%)",
1206
+ "--ring": "oklch(0.556 0 0)",
1207
+ "--chart-1": "oklch(0.90 0.18 127)",
1208
+ "--chart-2": "oklch(0.85 0.21 129)",
1209
+ "--chart-3": "oklch(0.77 0.20 131)",
1210
+ "--chart-4": "oklch(0.65 0.18 132)",
1211
+ "--chart-5": "oklch(0.53 0.14 132)",
1212
+ "--sidebar": "oklch(0.205 0 0)",
1213
+ "--sidebar-foreground": "oklch(0.985 0 0)",
1214
+ "--sidebar-primary": "oklch(0.85 0.21 129)",
1215
+ "--sidebar-primary-foreground": "oklch(0.27 0.07 132)",
1216
+ "--sidebar-accent": "oklch(0.269 0 0)",
1217
+ "--sidebar-accent-foreground": "oklch(0.985 0 0)",
1218
+ "--sidebar-border": "oklch(1 0 0 / 10%)",
1219
+ "--sidebar-ring": "oklch(0.556 0 0)"
1220
+ }
1221
+ },
1222
+ v3: {
1223
+ root: {
1224
+ "--background": "0 0% 100%",
1225
+ "--foreground": "0 0% 14.5%",
1226
+ "--card": "0 0% 100%",
1227
+ "--card-foreground": "0 0% 14.5%",
1228
+ "--popover": "0 0% 100%",
1229
+ "--popover-foreground": "0 0% 14.5%",
1230
+ "--primary": "84 81% 44%",
1231
+ "--primary-foreground": "78 92% 88%",
1232
+ "--secondary": "0 0% 96.7%",
1233
+ "--secondary-foreground": "0 0% 21%",
1234
+ "--muted": "0 0% 97%",
1235
+ "--muted-foreground": "0 0% 55.6%",
1236
+ "--accent": "0 0% 97%",
1237
+ "--accent-foreground": "0 0% 20.5%",
1238
+ "--destructive": "0 84.2% 60.2%",
1239
+ "--border": "0 0% 92.2%",
1240
+ "--input": "0 0% 92.2%",
1241
+ "--ring": "0 0% 70.8%",
1242
+ "--radius": "0.625rem"
1243
+ },
1244
+ dark: {
1245
+ "--background": "0 0% 14.5%",
1246
+ "--foreground": "0 0% 98.5%",
1247
+ "--card": "0 0% 20.5%",
1248
+ "--card-foreground": "0 0% 98.5%",
1249
+ "--popover": "0 0% 20.5%",
1250
+ "--popover-foreground": "0 0% 98.5%",
1251
+ "--primary": "82 81% 60%",
1252
+ "--primary-foreground": "84 60% 28%",
1253
+ "--secondary": "0 0% 27.4%",
1254
+ "--secondary-foreground": "0 0% 98.5%",
1255
+ "--muted": "0 0% 26.9%",
1256
+ "--muted-foreground": "0 0% 70.8%",
1257
+ "--accent": "0 0% 37.1%",
1258
+ "--accent-foreground": "0 0% 98.5%",
1259
+ "--destructive": "0 72% 51%",
1260
+ "--border": "0 0% 27.4%",
1261
+ "--input": "0 0% 27.4%",
1262
+ "--ring": "0 0% 55.6%"
1263
+ }
1264
+ }
1265
+ },
1266
+ emerald: {
1267
+ v4: {
1268
+ root: {
1269
+ "--background": "oklch(1 0 0)",
1270
+ "--foreground": "oklch(0.145 0 0)",
1271
+ "--card": "oklch(1 0 0)",
1272
+ "--card-foreground": "oklch(0.145 0 0)",
1273
+ "--popover": "oklch(1 0 0)",
1274
+ "--popover-foreground": "oklch(0.145 0 0)",
1275
+ "--primary": "oklch(0.60 0.13 163)",
1276
+ "--primary-foreground": "oklch(0.98 0.02 166)",
1277
+ "--secondary": "oklch(0.967 0.001 286.375)",
1278
+ "--secondary-foreground": "oklch(0.21 0.006 285.885)",
1279
+ "--muted": "oklch(0.97 0 0)",
1280
+ "--muted-foreground": "oklch(0.556 0 0)",
1281
+ "--accent": "oklch(0.97 0 0)",
1282
+ "--accent-foreground": "oklch(0.205 0 0)",
1283
+ "--destructive": "oklch(0.58 0.22 27)",
1284
+ "--border": "oklch(0.922 0 0)",
1285
+ "--input": "oklch(0.922 0 0)",
1286
+ "--ring": "oklch(0.708 0 0)",
1287
+ "--chart-1": "oklch(0.85 0.13 165)",
1288
+ "--chart-2": "oklch(0.77 0.15 163)",
1289
+ "--chart-3": "oklch(0.70 0.15 162)",
1290
+ "--chart-4": "oklch(0.60 0.13 163)",
1291
+ "--chart-5": "oklch(0.51 0.10 166)",
1292
+ "--radius": "0.625rem",
1293
+ "--sidebar": "oklch(0.985 0 0)",
1294
+ "--sidebar-foreground": "oklch(0.145 0 0)",
1295
+ "--sidebar-primary": "oklch(0.60 0.13 163)",
1296
+ "--sidebar-primary-foreground": "oklch(0.98 0.02 166)",
1297
+ "--sidebar-accent": "oklch(0.97 0 0)",
1298
+ "--sidebar-accent-foreground": "oklch(0.205 0 0)",
1299
+ "--sidebar-border": "oklch(0.922 0 0)",
1300
+ "--sidebar-ring": "oklch(0.708 0 0)"
1301
+ },
1302
+ dark: {
1303
+ "--background": "oklch(0.145 0 0)",
1304
+ "--foreground": "oklch(0.985 0 0)",
1305
+ "--card": "oklch(0.205 0 0)",
1306
+ "--card-foreground": "oklch(0.985 0 0)",
1307
+ "--popover": "oklch(0.205 0 0)",
1308
+ "--popover-foreground": "oklch(0.985 0 0)",
1309
+ "--primary": "oklch(0.70 0.15 162)",
1310
+ "--primary-foreground": "oklch(0.26 0.05 173)",
1311
+ "--secondary": "oklch(0.274 0.006 286.033)",
1312
+ "--secondary-foreground": "oklch(0.985 0 0)",
1313
+ "--muted": "oklch(0.269 0 0)",
1314
+ "--muted-foreground": "oklch(0.708 0 0)",
1315
+ "--accent": "oklch(0.371 0 0)",
1316
+ "--accent-foreground": "oklch(0.985 0 0)",
1317
+ "--destructive": "oklch(0.704 0.191 22.216)",
1318
+ "--border": "oklch(1 0 0 / 10%)",
1319
+ "--input": "oklch(1 0 0 / 15%)",
1320
+ "--ring": "oklch(0.556 0 0)",
1321
+ "--chart-1": "oklch(0.85 0.13 165)",
1322
+ "--chart-2": "oklch(0.77 0.15 163)",
1323
+ "--chart-3": "oklch(0.70 0.15 162)",
1324
+ "--chart-4": "oklch(0.60 0.13 163)",
1325
+ "--chart-5": "oklch(0.51 0.10 166)",
1326
+ "--sidebar": "oklch(0.205 0 0)",
1327
+ "--sidebar-foreground": "oklch(0.985 0 0)",
1328
+ "--sidebar-primary": "oklch(0.77 0.15 163)",
1329
+ "--sidebar-primary-foreground": "oklch(0.26 0.05 173)",
1330
+ "--sidebar-accent": "oklch(0.269 0 0)",
1331
+ "--sidebar-accent-foreground": "oklch(0.985 0 0)",
1332
+ "--sidebar-border": "oklch(1 0 0 / 10%)",
1333
+ "--sidebar-ring": "oklch(0.556 0 0)"
1334
+ }
1335
+ },
1336
+ v3: {
1337
+ root: {
1338
+ "--background": "0 0% 100%",
1339
+ "--foreground": "0 0% 14.5%",
1340
+ "--card": "0 0% 100%",
1341
+ "--card-foreground": "0 0% 14.5%",
1342
+ "--popover": "0 0% 100%",
1343
+ "--popover-foreground": "0 0% 14.5%",
1344
+ "--primary": "160 84% 39%",
1345
+ "--primary-foreground": "151 61% 90%",
1346
+ "--secondary": "0 0% 96.7%",
1347
+ "--secondary-foreground": "0 0% 21%",
1348
+ "--muted": "0 0% 97%",
1349
+ "--muted-foreground": "0 0% 55.6%",
1350
+ "--accent": "0 0% 97%",
1351
+ "--accent-foreground": "0 0% 20.5%",
1352
+ "--destructive": "0 84.2% 60.2%",
1353
+ "--border": "0 0% 92.2%",
1354
+ "--input": "0 0% 92.2%",
1355
+ "--ring": "0 0% 70.8%",
1356
+ "--radius": "0.625rem"
1357
+ },
1358
+ dark: {
1359
+ "--background": "0 0% 14.5%",
1360
+ "--foreground": "0 0% 98.5%",
1361
+ "--card": "0 0% 20.5%",
1362
+ "--card-foreground": "0 0% 98.5%",
1363
+ "--popover": "0 0% 20.5%",
1364
+ "--popover-foreground": "0 0% 98.5%",
1365
+ "--primary": "158 84% 49%",
1366
+ "--primary-foreground": "166 50% 28%",
1367
+ "--secondary": "0 0% 27.4%",
1368
+ "--secondary-foreground": "0 0% 98.5%",
1369
+ "--muted": "0 0% 26.9%",
1370
+ "--muted-foreground": "0 0% 70.8%",
1371
+ "--accent": "0 0% 37.1%",
1372
+ "--accent-foreground": "0 0% 98.5%",
1373
+ "--destructive": "0 72% 51%",
1374
+ "--border": "0 0% 27.4%",
1375
+ "--input": "0 0% 27.4%",
1376
+ "--ring": "0 0% 55.6%"
1377
+ }
1378
+ }
1379
+ },
1380
+
1381
+ fuchsia: {
1382
+ v4: {
1383
+ root: {
1384
+ "--background": "oklch(1 0 0)",
1385
+ "--foreground": "oklch(0.145 0 0)",
1386
+ "--card": "oklch(1 0 0)",
1387
+ "--card-foreground": "oklch(0.145 0 0)",
1388
+ "--popover": "oklch(1 0 0)",
1389
+ "--popover-foreground": "oklch(0.145 0 0)",
1390
+ "--primary": "oklch(0.59 0.26 323)",
1391
+ "--primary-foreground": "oklch(0.98 0.02 320)",
1392
+ "--secondary": "oklch(0.967 0.001 286.375)",
1393
+ "--secondary-foreground": "oklch(0.21 0.006 285.885)",
1394
+ "--muted": "oklch(0.97 0 0)",
1395
+ "--muted-foreground": "oklch(0.556 0 0)",
1396
+ "--accent": "oklch(0.97 0 0)",
1397
+ "--accent-foreground": "oklch(0.205 0 0)",
1398
+ "--destructive": "oklch(0.58 0.22 27)",
1399
+ "--border": "oklch(0.922 0 0)",
1400
+ "--input": "oklch(0.922 0 0)",
1401
+ "--ring": "oklch(0.708 0 0)",
1402
+ "--chart-1": "oklch(0.83 0.13 321)",
1403
+ "--chart-2": "oklch(0.75 0.21 322)",
1404
+ "--chart-3": "oklch(0.67 0.26 322)",
1405
+ "--chart-4": "oklch(0.59 0.26 323)",
1406
+ "--chart-5": "oklch(0.52 0.23 324)",
1407
+ "--radius": "0.625rem",
1408
+ "--sidebar": "oklch(0.985 0 0)",
1409
+ "--sidebar-foreground": "oklch(0.145 0 0)",
1410
+ "--sidebar-primary": "oklch(0.59 0.26 323)",
1411
+ "--sidebar-primary-foreground": "oklch(0.98 0.02 320)",
1412
+ "--sidebar-accent": "oklch(0.97 0 0)",
1413
+ "--sidebar-accent-foreground": "oklch(0.205 0 0)",
1414
+ "--sidebar-border": "oklch(0.922 0 0)",
1415
+ "--sidebar-ring": "oklch(0.708 0 0)"
1416
+ },
1417
+ dark: {
1418
+ "--background": "oklch(0.145 0 0)",
1419
+ "--foreground": "oklch(0.985 0 0)",
1420
+ "--card": "oklch(0.205 0 0)",
1421
+ "--card-foreground": "oklch(0.985 0 0)",
1422
+ "--popover": "oklch(0.205 0 0)",
1423
+ "--popover-foreground": "oklch(0.985 0 0)",
1424
+ "--primary": "oklch(0.67 0.26 322)",
1425
+ "--primary-foreground": "oklch(0.98 0.02 320)",
1426
+ "--secondary": "oklch(0.274 0.006 286.033)",
1427
+ "--secondary-foreground": "oklch(0.985 0 0)",
1428
+ "--muted": "oklch(0.269 0 0)",
1429
+ "--muted-foreground": "oklch(0.708 0 0)",
1430
+ "--accent": "oklch(0.371 0 0)",
1431
+ "--accent-foreground": "oklch(0.985 0 0)",
1432
+ "--destructive": "oklch(0.704 0.191 22.216)",
1433
+ "--border": "oklch(1 0 0 / 10%)",
1434
+ "--input": "oklch(1 0 0 / 15%)",
1435
+ "--ring": "oklch(0.556 0 0)",
1436
+ "--chart-1": "oklch(0.83 0.13 321)",
1437
+ "--chart-2": "oklch(0.75 0.21 322)",
1438
+ "--chart-3": "oklch(0.67 0.26 322)",
1439
+ "--chart-4": "oklch(0.59 0.26 323)",
1440
+ "--chart-5": "oklch(0.52 0.23 324)",
1441
+ "--sidebar": "oklch(0.205 0 0)",
1442
+ "--sidebar-foreground": "oklch(0.985 0 0)",
1443
+ "--sidebar-primary": "oklch(0.75 0.21 322)",
1444
+ "--sidebar-primary-foreground": "oklch(0.98 0.02 320)",
1445
+ "--sidebar-accent": "oklch(0.269 0 0)",
1446
+ "--sidebar-accent-foreground": "oklch(0.985 0 0)",
1447
+ "--sidebar-border": "oklch(1 0 0 / 10%)",
1448
+ "--sidebar-ring": "oklch(0.556 0 0)"
1449
+ }
1450
+ },
1451
+ v3: {
1452
+ root: {
1453
+ "--background": "0 0% 100%",
1454
+ "--foreground": "0 0% 14.5%",
1455
+ "--card": "0 0% 100%",
1456
+ "--card-foreground": "0 0% 14.5%",
1457
+ "--popover": "0 0% 100%",
1458
+ "--popover-foreground": "0 0% 14.5%",
1459
+ "--primary": "292 84% 51%",
1460
+ "--primary-foreground": "292 93% 91%",
1461
+ "--secondary": "0 0% 96.7%",
1462
+ "--secondary-foreground": "0 0% 21%",
1463
+ "--muted": "0 0% 97%",
1464
+ "--muted-foreground": "0 0% 55.6%",
1465
+ "--accent": "0 0% 97%",
1466
+ "--accent-foreground": "0 0% 20.5%",
1467
+ "--destructive": "0 84.2% 60.2%",
1468
+ "--border": "0 0% 92.2%",
1469
+ "--input": "0 0% 92.2%",
1470
+ "--ring": "0 0% 70.8%",
1471
+ "--radius": "0.625rem"
1472
+ },
1473
+ dark: {
1474
+ "--background": "0 0% 14.5%",
1475
+ "--foreground": "0 0% 98.5%",
1476
+ "--card": "0 0% 20.5%",
1477
+ "--card-foreground": "0 0% 98.5%",
1478
+ "--popover": "0 0% 20.5%",
1479
+ "--popover-foreground": "0 0% 98.5%",
1480
+ "--primary": "292 91% 55%",
1481
+ "--primary-foreground": "292 93% 91%",
1482
+ "--secondary": "0 0% 27.4%",
1483
+ "--secondary-foreground": "0 0% 98.5%",
1484
+ "--muted": "0 0% 26.9%",
1485
+ "--muted-foreground": "0 0% 70.8%",
1486
+ "--accent": "0 0% 37.1%",
1487
+ "--accent-foreground": "0 0% 98.5%",
1488
+ "--destructive": "0 72% 51%",
1489
+ "--border": "0 0% 27.4%",
1490
+ "--input": "0 0% 27.4%",
1491
+ "--ring": "0 0% 55.6%"
1492
+ }
1493
+ }
1494
+ },
1495
+
1496
+ cyan: {
1497
+ v4: {
1498
+ root: {
1499
+ "--background": "oklch(1 0 0)",
1500
+ "--foreground": "oklch(0.145 0 0)",
1501
+ "--card": "oklch(1 0 0)",
1502
+ "--card-foreground": "oklch(0.145 0 0)",
1503
+ "--popover": "oklch(1 0 0)",
1504
+ "--popover-foreground": "oklch(0.145 0 0)",
1505
+ "--primary": "oklch(0.61 0.11 222)",
1506
+ "--primary-foreground": "oklch(0.98 0.02 201)",
1507
+ "--secondary": "oklch(0.967 0.001 286.375)",
1508
+ "--secondary-foreground": "oklch(0.21 0.006 285.885)",
1509
+ "--muted": "oklch(0.97 0 0)",
1510
+ "--muted-foreground": "oklch(0.556 0 0)",
1511
+ "--accent": "oklch(0.97 0 0)",
1512
+ "--accent-foreground": "oklch(0.205 0 0)",
1513
+ "--destructive": "oklch(0.58 0.22 27)",
1514
+ "--border": "oklch(0.922 0 0)",
1515
+ "--input": "oklch(0.922 0 0)",
1516
+ "--ring": "oklch(0.708 0 0)",
1517
+ "--chart-1": "oklch(0.87 0.12 207)",
1518
+ "--chart-2": "oklch(0.80 0.13 212)",
1519
+ "--chart-3": "oklch(0.71 0.13 215)",
1520
+ "--chart-4": "oklch(0.61 0.11 222)",
1521
+ "--chart-5": "oklch(0.52 0.09 223)",
1522
+ "--radius": "0.625rem",
1523
+ "--sidebar": "oklch(0.985 0 0)",
1524
+ "--sidebar-foreground": "oklch(0.145 0 0)",
1525
+ "--sidebar-primary": "oklch(0.61 0.11 222)",
1526
+ "--sidebar-primary-foreground": "oklch(0.98 0.02 201)",
1527
+ "--sidebar-accent": "oklch(0.97 0 0)",
1528
+ "--sidebar-accent-foreground": "oklch(0.205 0 0)",
1529
+ "--sidebar-border": "oklch(0.922 0 0)",
1530
+ "--sidebar-ring": "oklch(0.708 0 0)"
1531
+ },
1532
+ dark: {
1533
+ "--background": "oklch(0.145 0 0)",
1534
+ "--foreground": "oklch(0.985 0 0)",
1535
+ "--card": "oklch(0.205 0 0)",
1536
+ "--card-foreground": "oklch(0.985 0 0)",
1537
+ "--popover": "oklch(0.205 0 0)",
1538
+ "--popover-foreground": "oklch(0.985 0 0)",
1539
+ "--primary": "oklch(0.71 0.13 215)",
1540
+ "--primary-foreground": "oklch(0.30 0.05 230)",
1541
+ "--secondary": "oklch(0.274 0.006 286.033)",
1542
+ "--secondary-foreground": "oklch(0.985 0 0)",
1543
+ "--muted": "oklch(0.269 0 0)",
1544
+ "--muted-foreground": "oklch(0.708 0 0)",
1545
+ "--accent": "oklch(0.371 0 0)",
1546
+ "--accent-foreground": "oklch(0.985 0 0)",
1547
+ "--destructive": "oklch(0.704 0.191 22.216)",
1548
+ "--border": "oklch(1 0 0 / 10%)",
1549
+ "--input": "oklch(1 0 0 / 15%)",
1550
+ "--ring": "oklch(0.556 0 0)",
1551
+ "--chart-1": "oklch(0.87 0.12 207)",
1552
+ "--chart-2": "oklch(0.80 0.13 212)",
1553
+ "--chart-3": "oklch(0.71 0.13 215)",
1554
+ "--chart-4": "oklch(0.61 0.11 222)",
1555
+ "--chart-5": "oklch(0.52 0.09 223)",
1556
+ "--sidebar": "oklch(0.205 0 0)",
1557
+ "--sidebar-foreground": "oklch(0.985 0 0)",
1558
+ "--sidebar-primary": "oklch(0.80 0.13 212)",
1559
+ "--sidebar-primary-foreground": "oklch(0.30 0.05 230)",
1560
+ "--sidebar-accent": "oklch(0.269 0 0)",
1561
+ "--sidebar-accent-foreground": "oklch(0.985 0 0)",
1562
+ "--sidebar-border": "oklch(1 0 0 / 10%)",
1563
+ "--sidebar-ring": "oklch(0.556 0 0)"
1564
+ }
1565
+ },
1566
+ v3: {
1567
+ root: {
1568
+ "--background": "0 0% 100%",
1569
+ "--foreground": "0 0% 14.5%",
1570
+ "--card": "0 0% 100%",
1571
+ "--card-foreground": "0 0% 14.5%",
1572
+ "--popover": "0 0% 100%",
1573
+ "--popover-foreground": "0 0% 14.5%",
1574
+ "--primary": "189 94% 43%",
1575
+ "--primary-foreground": "185 96% 90%",
1576
+ "--secondary": "0 0% 96.7%",
1577
+ "--secondary-foreground": "0 0% 21%",
1578
+ "--muted": "0 0% 97%",
1579
+ "--muted-foreground": "0 0% 55.6%",
1580
+ "--accent": "0 0% 97%",
1581
+ "--accent-foreground": "0 0% 20.5%",
1582
+ "--destructive": "0 84.2% 60.2%",
1583
+ "--border": "0 0% 92.2%",
1584
+ "--input": "0 0% 92.2%",
1585
+ "--ring": "0 0% 70.8%",
1586
+ "--radius": "0.625rem"
1587
+ },
1588
+ dark: {
1589
+ "--background": "0 0% 14.5%",
1590
+ "--foreground": "0 0% 98.5%",
1591
+ "--card": "0 0% 20.5%",
1592
+ "--card-foreground": "0 0% 98.5%",
1593
+ "--popover": "0 0% 20.5%",
1594
+ "--popover-foreground": "0 0% 98.5%",
1595
+ "--primary": "188 95% 54%",
1596
+ "--primary-foreground": "197 50% 30%",
1597
+ "--secondary": "0 0% 27.4%",
1598
+ "--secondary-foreground": "0 0% 98.5%",
1599
+ "--muted": "0 0% 26.9%",
1600
+ "--muted-foreground": "0 0% 70.8%",
1601
+ "--accent": "0 0% 37.1%",
1602
+ "--accent-foreground": "0 0% 98.5%",
1603
+ "--destructive": "0 72% 51%",
1604
+ "--border": "0 0% 27.4%",
1605
+ "--input": "0 0% 27.4%",
1606
+ "--ring": "0 0% 55.6%"
1607
+ }
1608
+ }
1609
+ },
1610
+
1611
+
1612
+
1613
+ };
1614
+ /** */