@e-burgos/tucu-ui 2.6.0 → 2.7.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (1468) hide show
  1. package/CHANGELOG.md +37 -0
  2. package/assets/images/404-dark.svg.mjs +4 -0
  3. package/assets/images/404-light.svg.mjs +4 -0
  4. package/components/auth/forget-password-form.mjs +96 -0
  5. package/components/auth/reset-pin-form.mjs +86 -0
  6. package/components/auth/sign-in-form.mjs +144 -0
  7. package/components/auth/sign-up-form.mjs +226 -0
  8. package/components/blockchain/coin-card.mjs +60 -0
  9. package/components/blockchain/coin-info-card.mjs +62 -0
  10. package/components/blockchain/collection-card.mjs +80 -0
  11. package/components/blockchain/collection-select-list.mjs +128 -0
  12. package/components/blockchain/currency-swap-icons.mjs +34 -0
  13. package/components/blockchain/live-price-feed.mjs +165 -0
  14. package/components/blockchain/nft-grid.mjs +81 -0
  15. package/components/blockchain/transaction-info.mjs +25 -0
  16. package/components/buttons/button/button-drip.mjs +36 -0
  17. package/components/buttons/button/button-loader.mjs +20 -0
  18. package/components/buttons/button/index.mjs +149 -0
  19. package/components/buttons/hamburger.mjs +68 -0
  20. package/components/buttons/topup-button.mjs +33 -0
  21. package/components/cards/author-card.mjs +33 -0
  22. package/components/cards/card-container.mjs +22 -0
  23. package/components/cards/card-title.mjs +38 -0
  24. package/components/cards/card.mjs +44 -0
  25. package/components/cards/color-card.mjs +49 -0
  26. package/components/cards/feature-card.mjs +137 -0
  27. package/components/cards/info-card.mjs +133 -0
  28. package/components/cards/panel-action-card.mjs +50 -0
  29. package/components/cards/panel-card.mjs +37 -0
  30. package/components/carousel/carousel-cards.mjs +66 -0
  31. package/components/carousel/carousel-component.mjs +186 -0
  32. package/components/carousel/carousel-image.mjs +48 -0
  33. package/components/charts/area-chart/area-chart.mjs +123 -0
  34. package/components/charts/bar-chart/bar-chart.mjs +128 -0
  35. package/components/charts/components/chart-container.mjs +26 -0
  36. package/components/charts/components/chart-empty-state.mjs +24 -0
  37. package/components/charts/components/chart-tooltip.mjs +48 -0
  38. package/components/charts/composed-chart/composed-chart.mjs +153 -0
  39. package/components/charts/hooks/use-chart-theme.mjs +99 -0
  40. package/components/charts/line-chart/line-chart.mjs +111 -0
  41. package/components/charts/pie-chart/pie-chart.mjs +84 -0
  42. package/components/charts/radar-chart/radar-chart.mjs +90 -0
  43. package/components/common/avatar.mjs +81 -0
  44. package/components/common/badge.mjs +89 -0
  45. package/components/common/collapse.mjs +58 -0
  46. package/components/common/key-value-row.mjs +28 -0
  47. package/components/common/pagination.mjs +77 -0
  48. package/components/common/scrollbar-native.mjs +27 -0
  49. package/components/common/scrollbar.mjs +196 -0
  50. package/components/common/skeleton.mjs +70 -0
  51. package/components/common/stepper.mjs +57 -0
  52. package/components/common/tooltip.mjs +199 -0
  53. package/components/dialog/drawer-container.mjs +110 -0
  54. package/components/dialog/drawer.mjs +82 -0
  55. package/components/dialog/modal.mjs +205 -0
  56. package/components/dialog/sidebar-menu.mjs +197 -0
  57. package/components/dialog/sidebar.mjs +151 -0
  58. package/components/dialog/tab-modal.mjs +157 -0
  59. package/components/forms/example/error-container-example.mjs +14 -0
  60. package/components/forms/example/form-example.mjs +99 -0
  61. package/components/forms/example/form-methods-example.mjs +136 -0
  62. package/components/forms/example/validations.mjs +63 -0
  63. package/components/forms/form-field.mjs +91 -0
  64. package/components/forms/form.mjs +33 -0
  65. package/components/icons/arrow-link-icon.mjs +31 -0
  66. package/components/icons/arrow-right.mjs +26 -0
  67. package/components/icons/arrow-up.mjs +22 -0
  68. package/components/icons/bitcoin.mjs +36 -0
  69. package/components/icons/bnb.mjs +61 -0
  70. package/components/icons/book.mjs +35 -0
  71. package/components/icons/brands/facebook.mjs +22 -0
  72. package/components/icons/brands/github.mjs +26 -0
  73. package/components/icons/brands/instagram.mjs +33 -0
  74. package/components/icons/brands/telegram.mjs +24 -0
  75. package/components/icons/brands/twitter.mjs +22 -0
  76. package/components/icons/calendar-icon.mjs +24 -0
  77. package/components/icons/cardano.mjs +34 -0
  78. package/components/icons/check.mjs +11 -0
  79. package/components/icons/checkmark.mjs +25 -0
  80. package/components/icons/chevron-down.mjs +26 -0
  81. package/components/icons/chevron-forward.mjs +24 -0
  82. package/components/icons/chevron-left.mjs +30 -0
  83. package/components/icons/chevron-right.mjs +25 -0
  84. package/components/icons/classic-layout-icon.mjs +21 -0
  85. package/components/icons/close.mjs +37 -0
  86. package/components/icons/compact-grid.mjs +100 -0
  87. package/components/icons/compass.mjs +27 -0
  88. package/components/icons/copy.mjs +20 -0
  89. package/components/icons/disk.mjs +35 -0
  90. package/components/icons/document.mjs +25 -0
  91. package/components/icons/doge.mjs +33 -0
  92. package/components/icons/dots-icon.mjs +38 -0
  93. package/components/icons/ethereum-dark.mjs +57 -0
  94. package/components/icons/ethereum.mjs +61 -0
  95. package/components/icons/exchange.mjs +33 -0
  96. package/components/icons/export-icon.mjs +31 -0
  97. package/components/icons/external-link.mjs +36 -0
  98. package/components/icons/eye.mjs +35 -0
  99. package/components/icons/eyeslash.mjs +25 -0
  100. package/components/icons/farm.mjs +56 -0
  101. package/components/icons/flash.mjs +24 -0
  102. package/components/icons/flow.mjs +62 -0
  103. package/components/icons/gas-icon.mjs +20 -0
  104. package/components/icons/guide-icon.mjs +24 -0
  105. package/components/icons/history.mjs +49 -0
  106. package/components/icons/home.mjs +24 -0
  107. package/components/icons/icon-us-flag.mjs +62 -0
  108. package/components/icons/info-circle.mjs +40 -0
  109. package/components/icons/info-icon.mjs +40 -0
  110. package/components/icons/left-align.mjs +40 -0
  111. package/components/icons/level-icon.mjs +22 -0
  112. package/components/icons/link-icon.mjs +71 -0
  113. package/components/icons/live-pricing.mjs +29 -0
  114. package/components/icons/lock-icon.mjs +25 -0
  115. package/components/icons/long-arrow-left.mjs +22 -0
  116. package/components/icons/long-arrow-right.mjs +22 -0
  117. package/components/icons/long-arrow-up.mjs +20 -0
  118. package/components/icons/loop-icon.mjs +26 -0
  119. package/components/icons/media-play-icon.mjs +24 -0
  120. package/components/icons/minimal-layout-icon.mjs +21 -0
  121. package/components/icons/modern-layout-icon.mjs +21 -0
  122. package/components/icons/moon.mjs +27 -0
  123. package/components/icons/more-icon.mjs +25 -0
  124. package/components/icons/normal-grid.mjs +55 -0
  125. package/components/icons/option.mjs +61 -0
  126. package/components/icons/play-icon.mjs +16 -0
  127. package/components/icons/plus-circle.mjs +29 -0
  128. package/components/icons/plus.mjs +37 -0
  129. package/components/icons/pool.mjs +42 -0
  130. package/components/icons/power.mjs +42 -0
  131. package/components/icons/profile.mjs +37 -0
  132. package/components/icons/question-icon.mjs +20 -0
  133. package/components/icons/question-solid-icon.mjs +24 -0
  134. package/components/icons/range-icon.mjs +37 -0
  135. package/components/icons/refresh.mjs +34 -0
  136. package/components/icons/retro-layout-icon.mjs +22 -0
  137. package/components/icons/right-align.mjs +40 -0
  138. package/components/icons/sand-clock.mjs +42 -0
  139. package/components/icons/search.mjs +24 -0
  140. package/components/icons/shut-down-icon.mjs +25 -0
  141. package/components/icons/spike-bar.mjs +38 -0
  142. package/components/icons/star-fill.mjs +16 -0
  143. package/components/icons/star.mjs +16 -0
  144. package/components/icons/sun.mjs +27 -0
  145. package/components/icons/swap-icon.mjs +31 -0
  146. package/components/icons/tag-icon.mjs +27 -0
  147. package/components/icons/tag.mjs +27 -0
  148. package/components/icons/tether.mjs +33 -0
  149. package/components/icons/trading-bot-icon.mjs +27 -0
  150. package/components/icons/trend-arrow-down-icon.mjs +22 -0
  151. package/components/icons/trend-arrow-up-icon.mjs +22 -0
  152. package/components/icons/tucu.mjs +848 -0
  153. package/components/icons/unlocked.mjs +35 -0
  154. package/components/icons/usdc.mjs +40 -0
  155. package/components/icons/verified-icon.mjs +65 -0
  156. package/components/icons/verified.mjs +11 -0
  157. package/components/icons/vote-icon.mjs +27 -0
  158. package/components/icons/warning.mjs +42 -0
  159. package/components/inputs/checkbox.mjs +213 -0
  160. package/components/inputs/file-input.mjs +214 -0
  161. package/components/inputs/helpers/control-colors.mjs +87 -0
  162. package/components/inputs/helpers/control-sizes.mjs +20 -0
  163. package/components/inputs/helpers/field-error-text.mjs +39 -0
  164. package/components/inputs/helpers/field-helper-text.mjs +37 -0
  165. package/components/inputs/helpers/input-label.mjs +30 -0
  166. package/components/inputs/input-searcher.mjs +307 -0
  167. package/components/inputs/input.mjs +442 -0
  168. package/components/inputs/pin-code.mjs +174 -0
  169. package/components/inputs/radio-group.mjs +131 -0
  170. package/components/inputs/radio.mjs +168 -0
  171. package/components/inputs/select.mjs +314 -0
  172. package/components/inputs/switch.mjs +150 -0
  173. package/components/inputs/textarea.mjs +68 -0
  174. package/components/inputs/toggle-bar.mjs +44 -0
  175. package/components/layouts/admin-layout/index.mjs +76 -0
  176. package/components/layouts/clean-layout/index.mjs +12 -0
  177. package/components/layouts/header/admin-header.mjs +78 -0
  178. package/components/layouts/header/admin-right-area.mjs +9 -0
  179. package/components/layouts/header/header.mjs +64 -0
  180. package/components/layouts/header/horizontal-header.mjs +57 -0
  181. package/components/layouts/header/horizontal-right-area.mjs +44 -0
  182. package/components/layouts/horizontal/index.mjs +44 -0
  183. package/components/layouts/macos-layout/index.mjs +25 -0
  184. package/components/layouts/macos-layout/macos-sonoma-clean-layout.mjs +28 -0
  185. package/components/layouts/macos-layout/macos-sonoma-layout.mjs +96 -0
  186. package/components/layouts/macos-layout/macos-sonoma-navbar-layout.mjs +123 -0
  187. package/components/layouts/macos-layout/macos-tahoe-clean-layout.mjs +21 -0
  188. package/components/layouts/macos-layout/macos-tahoe-dock-layout.mjs +125 -0
  189. package/components/layouts/macos-layout/macos-tahoe-layout.mjs +105 -0
  190. package/components/layouts/macos-layout/macos-tahoe-navbar-layout.mjs +138 -0
  191. package/components/layouts/macos-layout/utils.mjs +27 -0
  192. package/components/layouts/menus/collapsible-menu.mjs +150 -0
  193. package/components/layouts/menus/expandable-sidebar.mjs +158 -0
  194. package/components/layouts/menus/horizontal-nav-menu.mjs +208 -0
  195. package/components/layouts/menus/menu-item.mjs +211 -0
  196. package/components/layouts/root-layout.mjs +93 -0
  197. package/components/links/active-link.mjs +26 -0
  198. package/components/links/anchor-link.mjs +15 -0
  199. package/components/list/list-Item.mjs +51 -0
  200. package/components/list/list-container.mjs +119 -0
  201. package/components/loaders/loader.mjs +94 -0
  202. package/components/loaders/progressbar.mjs +90 -0
  203. package/components/loaders/spinner.mjs +28 -0
  204. package/components/logos/defi-app-logo.mjs +219 -0
  205. package/components/logos/logo.mjs +73 -0
  206. package/components/logos/tucu-ui-logo.mjs +73 -0
  207. package/components/macos/sonoma/containers/sidebar.mjs +76 -0
  208. package/components/macos/sonoma/containers/widget.mjs +61 -0
  209. package/components/macos/sonoma/containers/window.mjs +373 -0
  210. package/components/macos/sonoma/controls/search-bar.mjs +107 -0
  211. package/components/macos/sonoma/controls/segmented-control.mjs +75 -0
  212. package/components/macos/sonoma/feedback/command-palette.mjs +164 -0
  213. package/components/macos/sonoma/feedback/macos-sonoma-toast.mjs +75 -0
  214. package/components/macos/sonoma/feedback/notification-banner.mjs +123 -0
  215. package/components/macos/sonoma/feedback/popover.mjs +79 -0
  216. package/components/macos/sonoma/layout/layout-content-sonoma.mjs +45 -0
  217. package/components/macos/sonoma/layout/layout-sidebar-sonoma.mjs +163 -0
  218. package/components/macos/sonoma/layout/toolbar-sonoma.mjs +36 -0
  219. package/components/macos/tahoe/containers/dialog-tahoe.mjs +112 -0
  220. package/components/macos/tahoe/containers/widget-tahoe.mjs +50 -0
  221. package/components/macos/tahoe/containers/window-tahoe.mjs +322 -0
  222. package/components/macos/tahoe/controls/macos-tahoe-toast.mjs +75 -0
  223. package/components/macos/tahoe/controls/notification-banner-tahoe.mjs +127 -0
  224. package/components/macos/tahoe/controls/progress-bar-tahoe.mjs +65 -0
  225. package/components/macos/tahoe/controls/search-bar-tahoe.mjs +105 -0
  226. package/components/macos/tahoe/controls/segmented-control-tahoe.mjs +72 -0
  227. package/components/macos/tahoe/feedback/command-palette-tahoe.mjs +149 -0
  228. package/components/macos/tahoe/feedback/popover-tahoe.mjs +93 -0
  229. package/components/macos/tahoe/layout/dock-tahoe.mjs +279 -0
  230. package/components/macos/tahoe/layout/layout-content-tahoe.mjs +56 -0
  231. package/components/macos/tahoe/layout/layout-sidebar-tahoe.mjs +190 -0
  232. package/components/macos/tahoe/layout/toolbar-tahoe.mjs +35 -0
  233. package/components/notifications/alert.mjs +56 -0
  234. package/components/notifications/notification-card.mjs +46 -0
  235. package/components/notifications/toast.mjs +92 -0
  236. package/components/table/basic-table.mjs +346 -0
  237. package/components/tabs/param-tab.mjs +69 -0
  238. package/components/tabs/tab-select.mjs +181 -0
  239. package/components/tabs/tab.mjs +444 -0
  240. package/components/typography/index.mjs +113 -0
  241. package/components/utils/code-block.mjs +124 -0
  242. package/components/utils/image.mjs +161 -0
  243. package/components/utils/reveal-content.mjs +51 -0
  244. package/components/utils/scroll-to-top.mjs +103 -0
  245. package/datatable/common/constants.mjs +11 -0
  246. package/datatable/common/functions/index.mjs +23 -0
  247. package/datatable/common/functions/user-scopes/index.mjs +7 -0
  248. package/datatable/common/helpers/ExpandedColumn.mjs +15 -0
  249. package/datatable/common/helpers/OffsetColumn.mjs +14 -0
  250. package/datatable/common/helpers/RowActionsColumn.mjs +16 -0
  251. package/datatable/common/helpers/RowSelectionColumn.mjs +28 -0
  252. package/datatable/common/helpers/cn.mjs +6 -0
  253. package/datatable/common/helpers/convertColumns.mjs +25 -0
  254. package/datatable/common/helpers/parseNumericValueToExport.mjs +15 -0
  255. package/datatable/components/Assets/ArrowDoubleIndicator.mjs +41 -0
  256. package/datatable/components/Assets/ArrowIndicator.mjs +24 -0
  257. package/datatable/components/Assets/ArrowLongIndicator.mjs +41 -0
  258. package/datatable/components/Assets/ArrowPaginationIndicator.mjs +38 -0
  259. package/datatable/components/Assets/AssetButton.mjs +34 -0
  260. package/datatable/components/Assets/ColumnIndicator.mjs +40 -0
  261. package/datatable/components/Assets/DeleteIndicator.mjs +29 -0
  262. package/datatable/components/Assets/DownloadIndicator.mjs +29 -0
  263. package/datatable/components/Assets/DragIndicator.mjs +31 -0
  264. package/datatable/components/Assets/EditIndicator.mjs +29 -0
  265. package/datatable/components/Assets/FilterIndicator.mjs +29 -0
  266. package/datatable/components/Assets/MoreIndicator.mjs +31 -0
  267. package/datatable/components/Assets/OpenNewTab.mjs +25 -0
  268. package/datatable/components/Assets/PinIndicator.mjs +33 -0
  269. package/datatable/components/Assets/RowIndicator.mjs +26 -0
  270. package/datatable/components/Assets/ViewDetailsIndicator.mjs +26 -0
  271. package/datatable/components/Assets/VisibilityIndicator.mjs +42 -0
  272. package/datatable/components/Assets/VoidIndicator.mjs +29 -0
  273. package/datatable/components/Common/IconButton/index.mjs +35 -0
  274. package/datatable/components/Common/Spinner.mjs +53 -0
  275. package/datatable/components/Common/Tooltip.mjs +200 -0
  276. package/datatable/components/DataTable/ColumnsVisibilityManager.mjs +101 -0
  277. package/datatable/components/DataTable/DataTable.mjs +11 -0
  278. package/datatable/components/DataTable/DataTableComponent/index.mjs +252 -0
  279. package/datatable/components/DataTable/StateTableHandler/index.mjs +76 -0
  280. package/datatable/components/DataTable/SubComponentDataTable/index.mjs +53 -0
  281. package/datatable/components/DataTable/TableCell/ExpandedRowCell/index.mjs +17 -0
  282. package/datatable/components/DataTable/TableCell/RowActionsCell/index.mjs +183 -0
  283. package/datatable/components/DataTable/TableCell/RowSelectionCell/index.mjs +58 -0
  284. package/datatable/components/DataTable/TableCell/index.mjs +114 -0
  285. package/datatable/components/DataTable/TableHead/index.mjs +62 -0
  286. package/datatable/components/DataTable/TableHeader/ColumnPin/index.mjs +48 -0
  287. package/datatable/components/DataTable/TableHeader/ColumnSearcher/InputSearcher.mjs +28 -0
  288. package/datatable/components/DataTable/TableHeader/ColumnSearcher/index.mjs +54 -0
  289. package/datatable/components/DataTable/TableHeader/ColumnSort/index.mjs +31 -0
  290. package/datatable/components/DataTable/TableHeader/ColumnVisibility/index.mjs +14 -0
  291. package/datatable/components/DataTable/TableHeader/index.mjs +251 -0
  292. package/datatable/components/DataTable/TableRow/index.mjs +79 -0
  293. package/datatable/components/DataTable/TableWrapper/index.mjs +150 -0
  294. package/datatable/components/Footer/index.mjs +51 -0
  295. package/datatable/components/ManualPagination/index.mjs +121 -0
  296. package/datatable/components/Pagination/index.mjs +100 -0
  297. package/datatable/components/RowSelection/index.mjs +23 -0
  298. package/datatable/context/DragDropContentContext.mjs +18 -0
  299. package/datatable/context/DragDropTableContext.mjs +36 -0
  300. package/datatable/context/index.mjs +499 -0
  301. package/datatable/hooks/useColumns.mjs +42 -0
  302. package/datatable/hooks/useComponentEventListener.mjs +24 -0
  303. package/datatable/hooks/useDataTableStore.mjs +188 -0
  304. package/datatable/hooks/useGetCommonPinningStyles.mjs +24 -0
  305. package/datatable/hooks/useInitialState.mjs +61 -0
  306. package/datatable/hooks/useResetCacheVersion.mjs +42 -0
  307. package/datatable/hooks/useScrollableTable.mjs +27 -0
  308. package/docs-kit/components/auto-props-table.mjs +112 -0
  309. package/docs-kit/components/dynamic-sections-page.mjs +124 -0
  310. package/docs-kit/components/hero-card.mjs +140 -0
  311. package/docs-kit/components/lazy-component-section.mjs +87 -0
  312. package/docs-kit/components/nav-options.mjs +24 -0
  313. package/docs-kit/components/playground-button.mjs +22 -0
  314. package/docs-kit/components/prop-playground.mjs +289 -0
  315. package/docs-kit/components/table-of-contents/index.mjs +19 -0
  316. package/docs-kit/components/table-of-contents/toc-default.mjs +240 -0
  317. package/docs-kit/components/table-of-contents/toc-sonoma.mjs +224 -0
  318. package/docs-kit/components/table-of-contents/toc-tahoe.mjs +234 -0
  319. package/docs-kit/components/table-of-contents/use-toc.mjs +131 -0
  320. package/docs-kit/generated/props-metadata.mjs +10952 -0
  321. package/docs-kit/utils/constants.mjs +16 -0
  322. package/hooks/use-anchor-scroll.mjs +23 -0
  323. package/hooks/use-breakpoint.mjs +14 -0
  324. package/hooks/use-element-size.mjs +19 -0
  325. package/hooks/use-event-listener.mjs +19 -0
  326. package/hooks/use-grid-switcher.mjs +8 -0
  327. package/hooks/use-is-mobile.mjs +9 -0
  328. package/hooks/use-is-mounted.mjs +8 -0
  329. package/hooks/use-lock-body-scroll.mjs +12 -0
  330. package/hooks/use-scrollable-slider.mjs +39 -0
  331. package/hooks/use-toast-store.mjs +19 -0
  332. package/hooks/use-window-scroll.mjs +55 -0
  333. package/index.css +1 -1
  334. package/index.d.ts +5608 -12
  335. package/index.js +402 -1
  336. package/index.mjs +766 -468
  337. package/libs/framer-motion/fade-in-bottom.mjs +17 -0
  338. package/libs/local-storage/index.mjs +36 -0
  339. package/package.json +10 -10
  340. package/themes/auth/components/auth-provider.mjs +12 -0
  341. package/themes/components/settings/background-picker.mjs +67 -0
  342. package/themes/components/settings/color-dot.mjs +41 -0
  343. package/themes/components/settings/color-swatch-modal.mjs +178 -0
  344. package/themes/components/settings/default-color-settings.mjs +19 -0
  345. package/themes/components/settings/direction-switcher.mjs +36 -0
  346. package/themes/components/settings/lang-selector.mjs +43 -0
  347. package/themes/components/settings/layout-switcher.mjs +117 -0
  348. package/themes/components/settings/restore-defaults.mjs +11 -0
  349. package/themes/components/settings/settings-button.mjs +126 -0
  350. package/themes/components/settings/settings-drawer.mjs +81 -0
  351. package/themes/components/settings/settings-section-heading.mjs +21 -0
  352. package/themes/components/settings/settings-types.mjs +184 -0
  353. package/themes/components/settings/sonoma-accent-picker.mjs +60 -0
  354. package/themes/components/settings/switch-mode.mjs +38 -0
  355. package/themes/components/settings/switch-variant.mjs +38 -0
  356. package/themes/components/settings/switcher-button.mjs +45 -0
  357. package/themes/components/settings/tahoe-accent-picker.mjs +62 -0
  358. package/themes/components/settings/theme-icons.mjs +82 -0
  359. package/themes/components/settings/theme-switcher.mjs +36 -0
  360. package/themes/components/settings/theme-variant-switcher.mjs +49 -0
  361. package/themes/components/theme-background.mjs +75 -0
  362. package/themes/components/theme-provider/index.mjs +10 -0
  363. package/themes/components/theme-provider/mfe-app-theme-provider.mjs +24 -0
  364. package/themes/components/theme-provider/standalone-app-theme-provider.mjs +30 -0
  365. package/themes/components/theme-provider/theme-wrapper.mjs +129 -0
  366. package/themes/config/index.mjs +752 -0
  367. package/themes/hooks/use-direction.mjs +9 -0
  368. package/themes/hooks/use-theme-color.mjs +133 -0
  369. package/themes/hooks/use-theme.mjs +206 -0
  370. package/themes/pages/access-denied.mjs +24 -0
  371. package/themes/pages/default-error.mjs +24 -0
  372. package/themes/pages/disabled-page.mjs +24 -0
  373. package/themes/pages/fallback-page.mjs +14 -0
  374. package/themes/pages/forbidden.mjs +24 -0
  375. package/themes/pages/no-routes.mjs +24 -0
  376. package/themes/pages/not-found.mjs +26 -0
  377. package/themes/pages/server-error.mjs +24 -0
  378. package/themes/pages/unknown.mjs +24 -0
  379. package/themes/pages/user-blocked.mjs +24 -0
  380. package/themes/router/components/mfe-app-routes-provider.mjs +77 -0
  381. package/themes/router/components/standalone-app-routes-provider.mjs +78 -0
  382. package/themes/router/hooks/use-public-error-routes-config.mjs +43 -0
  383. package/themes/types/index.mjs +4 -0
  384. package/1-CArqgiQa.js +0 -1
  385. package/1-Df9CGZha.js +0 -4
  386. package/__tests__/__mocks__/lucide-react.d.ts +0 -129
  387. package/__tests__/setup.d.ts +0 -0
  388. package/components/auth/forget-password-form.d.ts +0 -16
  389. package/components/auth/index.d.ts +0 -4
  390. package/components/auth/reset-pin-form.d.ts +0 -18
  391. package/components/auth/sign-in-form.d.ts +0 -18
  392. package/components/auth/sign-up-form.d.ts +0 -21
  393. package/components/blockchain/coin-card.d.ts +0 -17
  394. package/components/blockchain/coin-info-card.d.ts +0 -15
  395. package/components/blockchain/coin-listbox.d.ts +0 -19
  396. package/components/blockchain/collection-card.d.ts +0 -19
  397. package/components/blockchain/collection-select-list.d.ts +0 -14
  398. package/components/blockchain/currency-swap-icons.d.ts +0 -7
  399. package/components/blockchain/index.d.ts +0 -9
  400. package/components/blockchain/live-price-feed.d.ts +0 -24
  401. package/components/blockchain/nft-grid.d.ts +0 -11
  402. package/components/blockchain/transaction-info.d.ts +0 -7
  403. package/components/buttons/button/button-drip.d.ts +0 -12
  404. package/components/buttons/button/button-loader.d.ts +0 -9
  405. package/components/buttons/button/index.d.ts +0 -31
  406. package/components/buttons/hamburger.d.ts +0 -6
  407. package/components/buttons/index.d.ts +0 -6
  408. package/components/buttons/topup-button.d.ts +0 -8
  409. package/components/cards/author-card.d.ts +0 -7
  410. package/components/cards/card-container.d.ts +0 -7
  411. package/components/cards/card-title.d.ts +0 -10
  412. package/components/cards/card.d.ts +0 -13
  413. package/components/cards/color-card.d.ts +0 -20
  414. package/components/cards/feature-card.d.ts +0 -23
  415. package/components/cards/index.d.ts +0 -9
  416. package/components/cards/info-card.d.ts +0 -54
  417. package/components/cards/panel-action-card.d.ts +0 -16
  418. package/components/cards/panel-card.d.ts +0 -8
  419. package/components/carousel/carousel-cards.d.ts +0 -19
  420. package/components/carousel/carousel-component.d.ts +0 -41
  421. package/components/carousel/carousel-image.d.ts +0 -18
  422. package/components/carousel/index.d.ts +0 -3
  423. package/components/charts/area-chart/area-chart.d.ts +0 -9
  424. package/components/charts/area-chart/index.d.ts +0 -2
  425. package/components/charts/bar-chart/bar-chart.d.ts +0 -10
  426. package/components/charts/bar-chart/index.d.ts +0 -2
  427. package/components/charts/components/chart-container.d.ts +0 -8
  428. package/components/charts/components/chart-empty-state.d.ts +0 -6
  429. package/components/charts/components/chart-tooltip.d.ts +0 -2
  430. package/components/charts/components/index.d.ts +0 -3
  431. package/components/charts/composed-chart/composed-chart.d.ts +0 -9
  432. package/components/charts/composed-chart/index.d.ts +0 -2
  433. package/components/charts/hooks/index.d.ts +0 -2
  434. package/components/charts/hooks/use-chart-theme.d.ts +0 -13
  435. package/components/charts/index.d.ts +0 -18
  436. package/components/charts/line-chart/index.d.ts +0 -2
  437. package/components/charts/line-chart/line-chart.d.ts +0 -9
  438. package/components/charts/pie-chart/index.d.ts +0 -2
  439. package/components/charts/pie-chart/pie-chart.d.ts +0 -14
  440. package/components/charts/radar-chart/index.d.ts +0 -2
  441. package/components/charts/radar-chart/radar-chart.d.ts +0 -17
  442. package/components/charts/types.d.ts +0 -32
  443. package/components/common/avatar.d.ts +0 -12
  444. package/components/common/badge.d.ts +0 -18
  445. package/components/common/collapse.d.ts +0 -7
  446. package/components/common/index.d.ts +0 -10
  447. package/components/common/key-value-row.d.ts +0 -9
  448. package/components/common/pagination.d.ts +0 -9
  449. package/components/common/scrollbar-native.d.ts +0 -14
  450. package/components/common/scrollbar.d.ts +0 -14
  451. package/components/common/skeleton.d.ts +0 -39
  452. package/components/common/stepper.d.ts +0 -13
  453. package/components/common/tooltip.d.ts +0 -39
  454. package/components/dialog/drawer-container.d.ts +0 -9
  455. package/components/dialog/drawer.d.ts +0 -19
  456. package/components/dialog/index.d.ts +0 -6
  457. package/components/dialog/modal.d.ts +0 -24
  458. package/components/dialog/sidebar-menu.d.ts +0 -14
  459. package/components/dialog/sidebar.d.ts +0 -13
  460. package/components/dialog/tab-modal.d.ts +0 -41
  461. package/components/forms/example/error-container-example.d.ts +0 -3
  462. package/components/forms/example/form-example.d.ts +0 -3
  463. package/components/forms/example/form-methods-example.d.ts +0 -3
  464. package/components/forms/example/index.d.ts +0 -4
  465. package/components/forms/example/validations.d.ts +0 -14
  466. package/components/forms/form-field.d.ts +0 -14
  467. package/components/forms/form.d.ts +0 -13
  468. package/components/forms/hook-form.d.ts +0 -3
  469. package/components/forms/index.d.ts +0 -5
  470. package/components/forms/types/dependencies.type.d.ts +0 -11
  471. package/components/forms/types/extend-react-hook-form.type.d.ts +0 -19
  472. package/components/forms/types/index.d.ts +0 -3
  473. package/components/forms/types/validations.type.d.ts +0 -8
  474. package/components/icons/arrow-link-icon.d.ts +0 -1
  475. package/components/icons/arrow-right.d.ts +0 -1
  476. package/components/icons/arrow-up.d.ts +0 -1
  477. package/components/icons/bitcoin.d.ts +0 -1
  478. package/components/icons/bnb.d.ts +0 -1
  479. package/components/icons/book.d.ts +0 -1
  480. package/components/icons/brands/facebook.d.ts +0 -1
  481. package/components/icons/brands/github.d.ts +0 -1
  482. package/components/icons/brands/instagram.d.ts +0 -1
  483. package/components/icons/brands/telegram.d.ts +0 -1
  484. package/components/icons/brands/twitter.d.ts +0 -1
  485. package/components/icons/calendar-icon.d.ts +0 -1
  486. package/components/icons/cardano.d.ts +0 -1
  487. package/components/icons/check.d.ts +0 -1
  488. package/components/icons/checkmark.d.ts +0 -1
  489. package/components/icons/chevron-down.d.ts +0 -1
  490. package/components/icons/chevron-forward.d.ts +0 -1
  491. package/components/icons/chevron-left.d.ts +0 -1
  492. package/components/icons/chevron-right.d.ts +0 -1
  493. package/components/icons/classic-layout-icon.d.ts +0 -1
  494. package/components/icons/close.d.ts +0 -1
  495. package/components/icons/compact-grid.d.ts +0 -1
  496. package/components/icons/compass.d.ts +0 -1
  497. package/components/icons/copy.d.ts +0 -1
  498. package/components/icons/disk.d.ts +0 -1
  499. package/components/icons/document.d.ts +0 -1
  500. package/components/icons/doge.d.ts +0 -1
  501. package/components/icons/dots-icon.d.ts +0 -1
  502. package/components/icons/ethereum-dark.d.ts +0 -1
  503. package/components/icons/ethereum.d.ts +0 -1
  504. package/components/icons/exchange.d.ts +0 -1
  505. package/components/icons/export-icon.d.ts +0 -1
  506. package/components/icons/external-link.d.ts +0 -1
  507. package/components/icons/eye.d.ts +0 -1
  508. package/components/icons/eyeslash.d.ts +0 -1
  509. package/components/icons/farm.d.ts +0 -1
  510. package/components/icons/flash.d.ts +0 -1
  511. package/components/icons/flow.d.ts +0 -1
  512. package/components/icons/gas-icon.d.ts +0 -1
  513. package/components/icons/guide-icon.d.ts +0 -1
  514. package/components/icons/history.d.ts +0 -1
  515. package/components/icons/home.d.ts +0 -1
  516. package/components/icons/horizontal-three-dots.d.ts +0 -1
  517. package/components/icons/icon-us-flag.d.ts +0 -1
  518. package/components/icons/index.d.ts +0 -98
  519. package/components/icons/info-circle.d.ts +0 -1
  520. package/components/icons/info-icon.d.ts +0 -1
  521. package/components/icons/left-align.d.ts +0 -1
  522. package/components/icons/level-icon.d.ts +0 -1
  523. package/components/icons/link-icon.d.ts +0 -1
  524. package/components/icons/live-pricing.d.ts +0 -1
  525. package/components/icons/lock-icon.d.ts +0 -1
  526. package/components/icons/long-arrow-left.d.ts +0 -1
  527. package/components/icons/long-arrow-right.d.ts +0 -1
  528. package/components/icons/long-arrow-up.d.ts +0 -1
  529. package/components/icons/loop-icon.d.ts +0 -1
  530. package/components/icons/lucide-react/index.d.ts +0 -1
  531. package/components/icons/media-play-icon.d.ts +0 -1
  532. package/components/icons/menu-icon.d.ts +0 -2
  533. package/components/icons/minimal-layout-icon.d.ts +0 -1
  534. package/components/icons/modern-layout-icon.d.ts +0 -1
  535. package/components/icons/moon.d.ts +0 -1
  536. package/components/icons/more-icon.d.ts +0 -1
  537. package/components/icons/normal-grid.d.ts +0 -1
  538. package/components/icons/option.d.ts +0 -1
  539. package/components/icons/play-icon.d.ts +0 -1
  540. package/components/icons/plus-circle.d.ts +0 -1
  541. package/components/icons/plus.d.ts +0 -1
  542. package/components/icons/pool.d.ts +0 -1
  543. package/components/icons/power.d.ts +0 -1
  544. package/components/icons/profile.d.ts +0 -1
  545. package/components/icons/question-icon.d.ts +0 -1
  546. package/components/icons/question-solid-icon.d.ts +0 -1
  547. package/components/icons/range-icon.d.ts +0 -1
  548. package/components/icons/refresh.d.ts +0 -1
  549. package/components/icons/retro-layout-icon.d.ts +0 -1
  550. package/components/icons/right-align.d.ts +0 -1
  551. package/components/icons/sand-clock.d.ts +0 -1
  552. package/components/icons/search.d.ts +0 -1
  553. package/components/icons/shut-down-icon.d.ts +0 -1
  554. package/components/icons/spike-bar.d.ts +0 -1
  555. package/components/icons/star-fill.d.ts +0 -1
  556. package/components/icons/star.d.ts +0 -1
  557. package/components/icons/sun.d.ts +0 -1
  558. package/components/icons/swap-icon.d.ts +0 -1
  559. package/components/icons/tag-icon.d.ts +0 -1
  560. package/components/icons/tag.d.ts +0 -1
  561. package/components/icons/tether.d.ts +0 -1
  562. package/components/icons/trading-bot-icon.d.ts +0 -1
  563. package/components/icons/trend-arrow-down-icon.d.ts +0 -1
  564. package/components/icons/trend-arrow-up-icon.d.ts +0 -1
  565. package/components/icons/tucu.d.ts +0 -1
  566. package/components/icons/unlocked.d.ts +0 -1
  567. package/components/icons/upload.d.ts +0 -1
  568. package/components/icons/usdc.d.ts +0 -1
  569. package/components/icons/verified-icon.d.ts +0 -1
  570. package/components/icons/verified.d.ts +0 -1
  571. package/components/icons/vertical-three-dots.d.ts +0 -1
  572. package/components/icons/vote-icon.d.ts +0 -1
  573. package/components/icons/warning.d.ts +0 -1
  574. package/components/index.d.ts +0 -22
  575. package/components/inputs/checkbox.d.ts +0 -42
  576. package/components/inputs/file-input.d.ts +0 -41
  577. package/components/inputs/helpers/control-colors.d.ts +0 -13
  578. package/components/inputs/helpers/control-sizes.d.ts +0 -2
  579. package/components/inputs/helpers/field-error-text.d.ts +0 -19
  580. package/components/inputs/helpers/field-helper-text.d.ts +0 -18
  581. package/components/inputs/helpers/input-label.d.ts +0 -9
  582. package/components/inputs/index.d.ts +0 -14
  583. package/components/inputs/input-searcher.d.ts +0 -18
  584. package/components/inputs/input.d.ts +0 -29
  585. package/components/inputs/pin-code.d.ts +0 -74
  586. package/components/inputs/radio-group.d.ts +0 -56
  587. package/components/inputs/radio.d.ts +0 -87
  588. package/components/inputs/select.d.ts +0 -38
  589. package/components/inputs/switch.d.ts +0 -17
  590. package/components/inputs/textarea.d.ts +0 -20
  591. package/components/inputs/toggle-bar.d.ts +0 -11
  592. package/components/layouts/admin-layout/index.d.ts +0 -16
  593. package/components/layouts/clean-layout/index.d.ts +0 -5
  594. package/components/layouts/header/admin-header.d.ts +0 -8
  595. package/components/layouts/header/admin-right-area.d.ts +0 -3
  596. package/components/layouts/header/header.d.ts +0 -9
  597. package/components/layouts/header/horizontal-header.d.ts +0 -10
  598. package/components/layouts/header/horizontal-right-area.d.ts +0 -9
  599. package/components/layouts/horizontal/index.d.ts +0 -16
  600. package/components/layouts/index.d.ts +0 -14
  601. package/components/layouts/macos-layout/index.d.ts +0 -23
  602. package/components/layouts/macos-layout/macos-sonoma-clean-layout.d.ts +0 -7
  603. package/components/layouts/macos-layout/macos-sonoma-layout.d.ts +0 -14
  604. package/components/layouts/macos-layout/macos-sonoma-navbar-layout.d.ts +0 -14
  605. package/components/layouts/macos-layout/macos-tahoe-clean-layout.d.ts +0 -7
  606. package/components/layouts/macos-layout/macos-tahoe-dock-layout.d.ts +0 -14
  607. package/components/layouts/macos-layout/macos-tahoe-layout.d.ts +0 -14
  608. package/components/layouts/macos-layout/macos-tahoe-navbar-layout.d.ts +0 -14
  609. package/components/layouts/macos-layout/utils.d.ts +0 -3
  610. package/components/layouts/menus/collapsible-menu.d.ts +0 -3
  611. package/components/layouts/menus/expandable-sidebar.d.ts +0 -8
  612. package/components/layouts/menus/horizontal-nav-menu.d.ts +0 -7
  613. package/components/layouts/menus/menu-item.d.ts +0 -24
  614. package/components/layouts/root-layout.d.ts +0 -18
  615. package/components/links/active-link.d.ts +0 -8
  616. package/components/links/anchor-link.d.ts +0 -3
  617. package/components/links/index.d.ts +0 -2
  618. package/components/list/index.d.ts +0 -2
  619. package/components/list/list-Item.d.ts +0 -13
  620. package/components/list/list-container.d.ts +0 -19
  621. package/components/loaders/index.d.ts +0 -3
  622. package/components/loaders/loader.d.ts +0 -20
  623. package/components/loaders/progressbar.d.ts +0 -64
  624. package/components/loaders/spinner.d.ts +0 -15
  625. package/components/logos/defi-app-logo.d.ts +0 -1
  626. package/components/logos/full-logo.d.ts +0 -1
  627. package/components/logos/index.d.ts +0 -3
  628. package/components/logos/logo.d.ts +0 -13
  629. package/components/logos/tucu-ui-logo.d.ts +0 -8
  630. package/components/macos/index.d.ts +0 -2
  631. package/components/macos/sonoma/containers/sidebar.d.ts +0 -22
  632. package/components/macos/sonoma/containers/widget.d.ts +0 -17
  633. package/components/macos/sonoma/containers/window.d.ts +0 -26
  634. package/components/macos/sonoma/controls/search-bar.d.ts +0 -12
  635. package/components/macos/sonoma/controls/segmented-control.d.ts +0 -16
  636. package/components/macos/sonoma/controls/types.d.ts +0 -10
  637. package/components/macos/sonoma/feedback/command-palette.d.ts +0 -20
  638. package/components/macos/sonoma/feedback/macos-sonoma-toast.d.ts +0 -2
  639. package/components/macos/sonoma/feedback/notification-banner.d.ts +0 -17
  640. package/components/macos/sonoma/feedback/popover.d.ts +0 -22
  641. package/components/macos/sonoma/index.d.ts +0 -13
  642. package/components/macos/sonoma/layout/layout-content-sonoma.d.ts +0 -15
  643. package/components/macos/sonoma/layout/layout-sidebar-sonoma.d.ts +0 -10
  644. package/components/macos/sonoma/layout/toolbar-sonoma.d.ts +0 -6
  645. package/components/macos/tahoe/containers/dialog-tahoe.d.ts +0 -21
  646. package/components/macos/tahoe/containers/widget-tahoe.d.ts +0 -15
  647. package/components/macos/tahoe/containers/window-tahoe.d.ts +0 -36
  648. package/components/macos/tahoe/controls/macos-tahoe-toast.d.ts +0 -2
  649. package/components/macos/tahoe/controls/notification-banner-tahoe.d.ts +0 -17
  650. package/components/macos/tahoe/controls/progress-bar-tahoe.d.ts +0 -10
  651. package/components/macos/tahoe/controls/search-bar-tahoe.d.ts +0 -12
  652. package/components/macos/tahoe/controls/segmented-control-tahoe.d.ts +0 -16
  653. package/components/macos/tahoe/controls/types.d.ts +0 -10
  654. package/components/macos/tahoe/feedback/command-palette-tahoe.d.ts +0 -18
  655. package/components/macos/tahoe/feedback/popover-tahoe.d.ts +0 -22
  656. package/components/macos/tahoe/foundations/background.d.ts +0 -7
  657. package/components/macos/tahoe/index.d.ts +0 -15
  658. package/components/macos/tahoe/layout/dock-tahoe.d.ts +0 -27
  659. package/components/macos/tahoe/layout/layout-content-tahoe.d.ts +0 -17
  660. package/components/macos/tahoe/layout/layout-sidebar-tahoe.d.ts +0 -13
  661. package/components/macos/tahoe/layout/toolbar-tahoe.d.ts +0 -5
  662. package/components/notifications/alert.d.ts +0 -13
  663. package/components/notifications/index.d.ts +0 -3
  664. package/components/notifications/notification-card.d.ts +0 -14
  665. package/components/notifications/toast.d.ts +0 -3
  666. package/components/table/basic-table.d.ts +0 -28
  667. package/components/table/index.d.ts +0 -1
  668. package/components/tabs/index.d.ts +0 -3
  669. package/components/tabs/param-tab.d.ts +0 -19
  670. package/components/tabs/tab-select.d.ts +0 -10
  671. package/components/tabs/tab.d.ts +0 -50
  672. package/components/typography/index.d.ts +0 -73
  673. package/components/utils/code-block.d.ts +0 -8
  674. package/components/utils/image.d.ts +0 -25
  675. package/components/utils/index.d.ts +0 -4
  676. package/components/utils/reveal-content.d.ts +0 -6
  677. package/components/utils/scroll-to-top.d.ts +0 -50
  678. package/datatable/common/constants.d.ts +0 -1
  679. package/datatable/common/functions/index.d.ts +0 -39
  680. package/datatable/common/functions/user-scopes/index.d.ts +0 -3
  681. package/datatable/common/helpers/ExpandedColumn.d.ts +0 -9
  682. package/datatable/common/helpers/OffsetColumn.d.ts +0 -9
  683. package/datatable/common/helpers/RowActionsColumn.d.ts +0 -9
  684. package/datatable/common/helpers/RowSelectionColumn.d.ts +0 -9
  685. package/datatable/common/helpers/cn.d.ts +0 -10
  686. package/datatable/common/helpers/convertColumns.d.ts +0 -42
  687. package/datatable/common/helpers/parseNumericValueToExport.d.ts +0 -5
  688. package/datatable/common/helpers/theme.d.ts +0 -8
  689. package/datatable/common/types/index.d.ts +0 -416
  690. package/datatable/components/Assets/ArrowDoubleIndicator.d.ts +0 -26
  691. package/datatable/components/Assets/ArrowIndicator.d.ts +0 -26
  692. package/datatable/components/Assets/ArrowLongIndicator.d.ts +0 -26
  693. package/datatable/components/Assets/ArrowPaginationIndicator.d.ts +0 -26
  694. package/datatable/components/Assets/AssetButton.d.ts +0 -32
  695. package/datatable/components/Assets/ColumnIndicator.d.ts +0 -15
  696. package/datatable/components/Assets/DeleteIndicator.d.ts +0 -15
  697. package/datatable/components/Assets/DownloadIndicator.d.ts +0 -15
  698. package/datatable/components/Assets/DragIndicator.d.ts +0 -17
  699. package/datatable/components/Assets/EditIndicator.d.ts +0 -15
  700. package/datatable/components/Assets/FilterIndicator.d.ts +0 -15
  701. package/datatable/components/Assets/MoreIndicator.d.ts +0 -17
  702. package/datatable/components/Assets/OpenNewTab.d.ts +0 -15
  703. package/datatable/components/Assets/PinIndicator.d.ts +0 -17
  704. package/datatable/components/Assets/RowIndicator.d.ts +0 -15
  705. package/datatable/components/Assets/ViewDetailsIndicator.d.ts +0 -16
  706. package/datatable/components/Assets/VisibilityIndicator.d.ts +0 -17
  707. package/datatable/components/Assets/VoidIndicator.d.ts +0 -15
  708. package/datatable/components/Assets/index.d.ts +0 -18
  709. package/datatable/components/Common/IconButton/index.d.ts +0 -18
  710. package/datatable/components/Common/Spinner.d.ts +0 -15
  711. package/datatable/components/Common/Tooltip.d.ts +0 -37
  712. package/datatable/components/DataTable/ColumnsVisibilityManager.d.ts +0 -3
  713. package/datatable/components/DataTable/DataTable.d.ts +0 -26
  714. package/datatable/components/DataTable/DataTableComponent/index.d.ts +0 -70
  715. package/datatable/components/DataTable/StateTableHandler/index.d.ts +0 -23
  716. package/datatable/components/DataTable/SubComponentDataTable/index.d.ts +0 -18
  717. package/datatable/components/DataTable/TableCell/ExpandedRowCell/index.d.ts +0 -19
  718. package/datatable/components/DataTable/TableCell/RowActionsCell/index.d.ts +0 -29
  719. package/datatable/components/DataTable/TableCell/RowSelectionCell/index.d.ts +0 -21
  720. package/datatable/components/DataTable/TableCell/index.d.ts +0 -44
  721. package/datatable/components/DataTable/TableHead/index.d.ts +0 -33
  722. package/datatable/components/DataTable/TableHeader/CheckboxSelector/index.d.ts +0 -17
  723. package/datatable/components/DataTable/TableHeader/ColumnDraggable/index.d.ts +0 -22
  724. package/datatable/components/DataTable/TableHeader/ColumnPin/index.d.ts +0 -26
  725. package/datatable/components/DataTable/TableHeader/ColumnSearcher/InputSearcher.d.ts +0 -19
  726. package/datatable/components/DataTable/TableHeader/ColumnSearcher/index.d.ts +0 -18
  727. package/datatable/components/DataTable/TableHeader/ColumnSort/index.d.ts +0 -20
  728. package/datatable/components/DataTable/TableHeader/ColumnVisibility/index.d.ts +0 -18
  729. package/datatable/components/DataTable/TableHeader/index.d.ts +0 -30
  730. package/datatable/components/DataTable/TableRow/index.d.ts +0 -43
  731. package/datatable/components/DataTable/TableWrapper/index.d.ts +0 -34
  732. package/datatable/components/DataTable/index.d.ts +0 -3
  733. package/datatable/components/Footer/index.d.ts +0 -19
  734. package/datatable/components/ManualPagination/index.d.ts +0 -20
  735. package/datatable/components/Pagination/index.d.ts +0 -21
  736. package/datatable/components/RowSelection/index.d.ts +0 -14
  737. package/datatable/context/DragDropContentContext.d.ts +0 -33
  738. package/datatable/context/DragDropTableContext.d.ts +0 -35
  739. package/datatable/context/index.d.ts +0 -167
  740. package/datatable/hooks/index.d.ts +0 -6
  741. package/datatable/hooks/useColumns.d.ts +0 -27
  742. package/datatable/hooks/useComponentEventListener.d.ts +0 -21
  743. package/datatable/hooks/useDataTableStore.d.ts +0 -64
  744. package/datatable/hooks/useGetCommonPinningStyles.d.ts +0 -22
  745. package/datatable/hooks/useInitialState.d.ts +0 -27
  746. package/datatable/hooks/useResetCacheVersion.d.ts +0 -19
  747. package/datatable/hooks/useScrollableTable.d.ts +0 -30
  748. package/datatable/index.d.ts +0 -12
  749. package/datatable/tanstack-table/index.d.ts +0 -2
  750. package/demo/components/auto-props-table.d.ts +0 -16
  751. package/demo/components/dynamic-sections-page.d.ts +0 -50
  752. package/demo/components/hero-card.d.ts +0 -21
  753. package/demo/components/index.d.ts +0 -8
  754. package/demo/components/lazy-component-section.d.ts +0 -11
  755. package/demo/components/nav-options.d.ts +0 -2
  756. package/demo/components/playground-button.d.ts +0 -1
  757. package/demo/components/prop-playground.d.ts +0 -31
  758. package/demo/components/table-of-contents/index.d.ts +0 -5
  759. package/demo/components/table-of-contents/toc-default.d.ts +0 -3
  760. package/demo/components/table-of-contents/toc-sonoma.d.ts +0 -3
  761. package/demo/components/table-of-contents/toc-tahoe.d.ts +0 -3
  762. package/demo/components/table-of-contents/types.d.ts +0 -17
  763. package/demo/components/table-of-contents/use-toc.d.ts +0 -26
  764. package/demo/generated/props-metadata.d.ts +0 -23
  765. package/demo/index.d.ts +0 -4
  766. package/demo/pages/blockchain/BlockchainComponents.d.ts +0 -2
  767. package/demo/pages/blockchain/blockchain-components-sections/CoinCardSection.d.ts +0 -3
  768. package/demo/pages/blockchain/blockchain-components-sections/CoinInfoCardSection.d.ts +0 -3
  769. package/demo/pages/blockchain/blockchain-components-sections/CoinListBoxSection.d.ts +0 -3
  770. package/demo/pages/blockchain/blockchain-components-sections/CollectionCardSection.d.ts +0 -3
  771. package/demo/pages/blockchain/blockchain-components-sections/CollectionSelectListSection.d.ts +0 -3
  772. package/demo/pages/blockchain/blockchain-components-sections/CurrencySwapIconsSection.d.ts +0 -3
  773. package/demo/pages/blockchain/blockchain-components-sections/LivePriceFeedSection.d.ts +0 -3
  774. package/demo/pages/blockchain/blockchain-components-sections/NFTGridSection.d.ts +0 -3
  775. package/demo/pages/blockchain/blockchain-components-sections/TransactionInfoSection.d.ts +0 -3
  776. package/demo/pages/blockchain/blockchain-components-sections/index.d.ts +0 -9
  777. package/demo/pages/components/ChartsComponents.d.ts +0 -2
  778. package/demo/pages/components/ComponentsIntroduction.d.ts +0 -1
  779. package/demo/pages/components/InputsComponents.d.ts +0 -2
  780. package/demo/pages/components/UiComponents.d.ts +0 -2
  781. package/demo/pages/components/charts-sections/AreaChartSection.d.ts +0 -3
  782. package/demo/pages/components/charts-sections/BarChartSection.d.ts +0 -3
  783. package/demo/pages/components/charts-sections/ComposedChartSection.d.ts +0 -3
  784. package/demo/pages/components/charts-sections/LineChartSection.d.ts +0 -3
  785. package/demo/pages/components/charts-sections/PieChartSection.d.ts +0 -3
  786. package/demo/pages/components/charts-sections/RadarChartSection.d.ts +0 -3
  787. package/demo/pages/components/charts-sections/index.d.ts +0 -1
  788. package/demo/pages/components/input-components-sections/CheckboxSection.d.ts +0 -3
  789. package/demo/pages/components/input-components-sections/FileInputSection.d.ts +0 -3
  790. package/demo/pages/components/input-components-sections/InputSearcherSection.d.ts +0 -3
  791. package/demo/pages/components/input-components-sections/InputSection.d.ts +0 -3
  792. package/demo/pages/components/input-components-sections/PinCodeSection.d.ts +0 -3
  793. package/demo/pages/components/input-components-sections/RadioGroupSection.d.ts +0 -3
  794. package/demo/pages/components/input-components-sections/RadioSection.d.ts +0 -3
  795. package/demo/pages/components/input-components-sections/SelectSection.d.ts +0 -3
  796. package/demo/pages/components/input-components-sections/SwitchSection.d.ts +0 -3
  797. package/demo/pages/components/input-components-sections/TextareaSection.d.ts +0 -3
  798. package/demo/pages/components/input-components-sections/ToggleBarSection.d.ts +0 -3
  799. package/demo/pages/components/input-components-sections/index.d.ts +0 -11
  800. package/demo/pages/components/ui-components-sections/ActiveLinkSection.d.ts +0 -3
  801. package/demo/pages/components/ui-components-sections/AlertSection.d.ts +0 -3
  802. package/demo/pages/components/ui-components-sections/AnchorLinkSection.d.ts +0 -3
  803. package/demo/pages/components/ui-components-sections/AuthorCardSection.d.ts +0 -3
  804. package/demo/pages/components/ui-components-sections/AvatarSection.d.ts +0 -3
  805. package/demo/pages/components/ui-components-sections/BadgeSection.d.ts +0 -3
  806. package/demo/pages/components/ui-components-sections/BasicTableSection.d.ts +0 -3
  807. package/demo/pages/components/ui-components-sections/ButtonDripSection.d.ts +0 -3
  808. package/demo/pages/components/ui-components-sections/ButtonLoaderSection.d.ts +0 -3
  809. package/demo/pages/components/ui-components-sections/CardContainerSection.d.ts +0 -3
  810. package/demo/pages/components/ui-components-sections/CardSection.d.ts +0 -3
  811. package/demo/pages/components/ui-components-sections/CardTitleSection.d.ts +0 -3
  812. package/demo/pages/components/ui-components-sections/CarouselCardsSection.d.ts +0 -3
  813. package/demo/pages/components/ui-components-sections/CarouselImageSection.d.ts +0 -3
  814. package/demo/pages/components/ui-components-sections/CarouselSection.d.ts +0 -3
  815. package/demo/pages/components/ui-components-sections/CollapseSection.d.ts +0 -3
  816. package/demo/pages/components/ui-components-sections/DefiAppLogoSection.d.ts +0 -3
  817. package/demo/pages/components/ui-components-sections/DrawerSection.d.ts +0 -3
  818. package/demo/pages/components/ui-components-sections/HamburgerSection.d.ts +0 -3
  819. package/demo/pages/components/ui-components-sections/ImageSection.d.ts +0 -3
  820. package/demo/pages/components/ui-components-sections/InfoCardSection.d.ts +0 -3
  821. package/demo/pages/components/ui-components-sections/KeyValueRowSection.d.ts +0 -3
  822. package/demo/pages/components/ui-components-sections/ListContainerSection.d.ts +0 -3
  823. package/demo/pages/components/ui-components-sections/ListItemSection.d.ts +0 -3
  824. package/demo/pages/components/ui-components-sections/LoaderSection.d.ts +0 -3
  825. package/demo/pages/components/ui-components-sections/LogoSection.d.ts +0 -3
  826. package/demo/pages/components/ui-components-sections/ModalSection.d.ts +0 -3
  827. package/demo/pages/components/ui-components-sections/NotificationCardSection.d.ts +0 -3
  828. package/demo/pages/components/ui-components-sections/PaginationSection.d.ts +0 -3
  829. package/demo/pages/components/ui-components-sections/PanelActionCardSection.d.ts +0 -3
  830. package/demo/pages/components/ui-components-sections/PanelCardSection.d.ts +0 -3
  831. package/demo/pages/components/ui-components-sections/ParamTabSection.d.ts +0 -3
  832. package/demo/pages/components/ui-components-sections/ProgressbarSection.d.ts +0 -3
  833. package/demo/pages/components/ui-components-sections/RevealContentSection.d.ts +0 -3
  834. package/demo/pages/components/ui-components-sections/ScrollToTopSection.d.ts +0 -3
  835. package/demo/pages/components/ui-components-sections/ScrollbarSection.d.ts +0 -3
  836. package/demo/pages/components/ui-components-sections/SidebarMenuSection.d.ts +0 -3
  837. package/demo/pages/components/ui-components-sections/SidebarSection.d.ts +0 -3
  838. package/demo/pages/components/ui-components-sections/SkeletonSection.d.ts +0 -3
  839. package/demo/pages/components/ui-components-sections/SpinnerSection.d.ts +0 -3
  840. package/demo/pages/components/ui-components-sections/StepperSection.d.ts +0 -3
  841. package/demo/pages/components/ui-components-sections/TabModalSection.d.ts +0 -3
  842. package/demo/pages/components/ui-components-sections/TabSection.d.ts +0 -3
  843. package/demo/pages/components/ui-components-sections/TabSelectSection.d.ts +0 -3
  844. package/demo/pages/components/ui-components-sections/ToastSection.d.ts +0 -3
  845. package/demo/pages/components/ui-components-sections/TooltipSection.d.ts +0 -3
  846. package/demo/pages/components/ui-components-sections/TopupButtonSection.d.ts +0 -3
  847. package/demo/pages/components/ui-components-sections/TucuUiLogoSection.d.ts +0 -3
  848. package/demo/pages/components/ui-components-sections/TypographySection.d.ts +0 -3
  849. package/demo/pages/components/ui-components-sections/index.d.ts +0 -45
  850. package/demo/pages/datatable/DataTablePage.d.ts +0 -2
  851. package/demo/pages/datatable/datatable-sections/ColumnsSection.d.ts +0 -3
  852. package/demo/pages/datatable/datatable-sections/DataFetchingSection.d.ts +0 -3
  853. package/demo/pages/datatable/datatable-sections/DocumentationSection.d.ts +0 -3
  854. package/demo/pages/datatable/datatable-sections/ExamplesSection.d.ts +0 -3
  855. package/demo/pages/datatable/datatable-sections/PlaygroundSection.d.ts +0 -3
  856. package/demo/pages/datatable/datatable-sections/SearchSection.d.ts +0 -3
  857. package/demo/pages/design-system/DesignSystem.d.ts +0 -2
  858. package/demo/pages/design-system/LayoutSystem.d.ts +0 -2
  859. package/demo/pages/design-system/ThemingGuide.d.ts +0 -2
  860. package/demo/pages/design-system/design-system-sections/BackgroundsSection.d.ts +0 -3
  861. package/demo/pages/design-system/design-system-sections/BorderRadiusSection.d.ts +0 -3
  862. package/demo/pages/design-system/design-system-sections/ColorSystemSection.d.ts +0 -3
  863. package/demo/pages/design-system/design-system-sections/ComponentAnatomySection.d.ts +0 -3
  864. package/demo/pages/design-system/design-system-sections/DesignPrinciplesSection.d.ts +0 -3
  865. package/demo/pages/design-system/design-system-sections/ImplementationGuidelinesSection.d.ts +0 -3
  866. package/demo/pages/design-system/design-system-sections/LayoutPrinciplesSection.d.ts +0 -3
  867. package/demo/pages/design-system/design-system-sections/ShadowsSection.d.ts +0 -3
  868. package/demo/pages/design-system/design-system-sections/SizingSection.d.ts +0 -3
  869. package/demo/pages/design-system/design-system-sections/SpacingSystemSection.d.ts +0 -3
  870. package/demo/pages/design-system/design-system-sections/TypographySection.d.ts +0 -3
  871. package/demo/pages/design-system/layout-system-sections/BestPracticesSection.d.ts +0 -3
  872. package/demo/pages/design-system/layout-system-sections/CommonErrorsSection.d.ts +0 -3
  873. package/demo/pages/design-system/layout-system-sections/ImplementationExamplesSection.d.ts +0 -3
  874. package/demo/pages/design-system/layout-system-sections/LayoutTypesSection.d.ts +0 -3
  875. package/demo/pages/design-system/layout-system-sections/MenuItemsGuideSection.d.ts +0 -3
  876. package/demo/pages/design-system/layout-system-sections/ThemeProviderRequiredSection.d.ts +0 -3
  877. package/demo/pages/design-system/theming-guide-sections/AdvancedColorSystemSection.d.ts +0 -3
  878. package/demo/pages/design-system/theming-guide-sections/AdvancedFeaturesSection.d.ts +0 -3
  879. package/demo/pages/design-system/theming-guide-sections/BestPracticesSection.d.ts +0 -3
  880. package/demo/pages/design-system/theming-guide-sections/ColorCustomizationSection.d.ts +0 -3
  881. package/demo/pages/design-system/theming-guide-sections/CustomColorPaletteSection.d.ts +0 -3
  882. package/demo/pages/design-system/theming-guide-sections/FileStructureSection.d.ts +0 -3
  883. package/demo/pages/design-system/theming-guide-sections/SettingsPanelSection.d.ts +0 -3
  884. package/demo/pages/design-system/theming-guide-sections/TailwindConfigSection.d.ts +0 -3
  885. package/demo/pages/design-system/theming-guide-sections/ThemeArchitectureSection.d.ts +0 -3
  886. package/demo/pages/design-system/theming-guide-sections/ThemeConfigurationSection.d.ts +0 -3
  887. package/demo/pages/design-system/theming-guide-sections/ThemeHooksSection.d.ts +0 -3
  888. package/demo/pages/design-system/theming-guide-sections/ThemeProviderSection.d.ts +0 -3
  889. package/demo/pages/design-system/theming-guide-sections/UsingThemeSystemSection.d.ts +0 -3
  890. package/demo/pages/features/Accessibility.d.ts +0 -2
  891. package/demo/pages/features/FeaturesIntroduction.d.ts +0 -1
  892. package/demo/pages/features/HooksUtilities.d.ts +0 -2
  893. package/demo/pages/features/IconsSystem.d.ts +0 -2
  894. package/demo/pages/features/RoutingSystem.d.ts +0 -2
  895. package/demo/pages/features/accessibility-sections/BestPracticesSection.d.ts +0 -3
  896. package/demo/pages/features/accessibility-sections/CodeExamplesSection.d.ts +0 -3
  897. package/demo/pages/features/accessibility-sections/ComponentStatusSection.d.ts +0 -3
  898. package/demo/pages/features/accessibility-sections/ImplementationStatusSection.d.ts +0 -3
  899. package/demo/pages/features/accessibility-sections/ImplementedFeaturesSection.d.ts +0 -3
  900. package/demo/pages/features/accessibility-sections/KeyboardNavigationSection.d.ts +0 -3
  901. package/demo/pages/features/accessibility-sections/TestingSection.d.ts +0 -3
  902. package/demo/pages/features/accessibility-sections/WCAGPrinciplesSection.d.ts +0 -3
  903. package/demo/pages/features/hooks-utilities-sections/BestPracticesSection.d.ts +0 -3
  904. package/demo/pages/features/hooks-utilities-sections/HookCategoriesSection.d.ts +0 -3
  905. package/demo/pages/features/hooks-utilities-sections/HookDocumentationSection.d.ts +0 -3
  906. package/demo/pages/features/hooks-utilities-sections/HookFeaturesSection.d.ts +0 -3
  907. package/demo/pages/features/hooks-utilities-sections/LiveDemonstrationsSection.d.ts +0 -3
  908. package/demo/pages/features/icon-system-sections/BestPracticesSection.d.ts +0 -3
  909. package/demo/pages/features/icon-system-sections/CustomIconsSection.d.ts +0 -3
  910. package/demo/pages/features/icon-system-sections/IconArchitectureSection.d.ts +0 -3
  911. package/demo/pages/features/icon-system-sections/IconSizingGuideSection.d.ts +0 -3
  912. package/demo/pages/features/icon-system-sections/IconSystemAPISection.d.ts +0 -3
  913. package/demo/pages/features/icon-system-sections/IconSystemBenefitsSection.d.ts +0 -3
  914. package/demo/pages/features/icon-system-sections/LucideIconsSection.d.ts +0 -3
  915. package/demo/pages/features/icon-system-sections/UsageExamplesSection.d.ts +0 -3
  916. package/demo/pages/features/routing-system-sections/APIReferenceSection.d.ts +0 -3
  917. package/demo/pages/features/routing-system-sections/ArchitecturalPatternsComparisonSection.d.ts +0 -3
  918. package/demo/pages/features/routing-system-sections/BestPracticesSection.d.ts +0 -3
  919. package/demo/pages/features/routing-system-sections/DynamicRoutesSection.d.ts +0 -3
  920. package/demo/pages/features/routing-system-sections/MFESupportSection.d.ts +0 -3
  921. package/demo/pages/features/routing-system-sections/NestedRoutesSection.d.ts +0 -3
  922. package/demo/pages/features/routing-system-sections/RouteConfigurationSection.d.ts +0 -3
  923. package/demo/pages/features/routing-system-sections/StandaloneAppSection.d.ts +0 -3
  924. package/demo/pages/features/routing-system-sections/SystemOverviewSection.d.ts +0 -3
  925. package/demo/pages/features/routing-system-sections/ThemeProviderIntegrationSection.d.ts +0 -3
  926. package/demo/pages/form-system/FormSystem.d.ts +0 -2
  927. package/demo/pages/form-system/code-example-page.d.ts +0 -2
  928. package/demo/pages/form-system/example/constants.d.ts +0 -12
  929. package/demo/pages/form-system/example/simple-form-example.d.ts +0 -3
  930. package/demo/pages/form-system/form-example-page.d.ts +0 -2
  931. package/demo/pages/form-system/form-system-sections/AdvancedFeaturesSection.d.ts +0 -3
  932. package/demo/pages/form-system/form-system-sections/ArchitectureOverviewSection.d.ts +0 -3
  933. package/demo/pages/form-system/form-system-sections/BasicUsageSection.d.ts +0 -3
  934. package/demo/pages/form-system/form-system-sections/BestPracticesSection.d.ts +0 -3
  935. package/demo/pages/form-system/form-system-sections/FormComponentsSection.d.ts +0 -3
  936. package/demo/pages/form-system/form-system-sections/FormMethodsSection.d.ts +0 -3
  937. package/demo/pages/form-system/form-system-sections/LiveDemoSection.d.ts +0 -3
  938. package/demo/pages/form-system/form-system-sections/ValidationSystemSection.d.ts +0 -3
  939. package/demo/pages/index.d.ts +0 -42
  940. package/demo/pages/introduction/BasicUsageDemo.d.ts +0 -1
  941. package/demo/pages/introduction/BasicUsageExampleCode.d.ts +0 -1
  942. package/demo/pages/introduction/BasicUsageWithCustomRouterExampleCode.d.ts +0 -1
  943. package/demo/pages/introduction/ThemeProviderExamples.d.ts +0 -7
  944. package/demo/pages/introduction/index.d.ts +0 -1
  945. package/demo/pages/macos/MacOSShowcase.d.ts +0 -2
  946. package/demo/pages/macos/MacOSSonomaShowcase.d.ts +0 -2
  947. package/demo/pages/macos/MacOSTahoeShowcase.d.ts +0 -2
  948. package/demo/pages/macos/macos-sections/sonoma/MacOSCommandPaletteSection.d.ts +0 -3
  949. package/demo/pages/macos/macos-sections/sonoma/MacOSNotificationBannerSection.d.ts +0 -3
  950. package/demo/pages/macos/macos-sections/sonoma/MacOSPopoverSection.d.ts +0 -3
  951. package/demo/pages/macos/macos-sections/sonoma/MacOSSearchBarSection.d.ts +0 -3
  952. package/demo/pages/macos/macos-sections/sonoma/MacOSSegmentedControlSection.d.ts +0 -3
  953. package/demo/pages/macos/macos-sections/sonoma/MacOSSidebarSection.d.ts +0 -3
  954. package/demo/pages/macos/macos-sections/sonoma/MacOSToolbarSection.d.ts +0 -3
  955. package/demo/pages/macos/macos-sections/sonoma/MacOSWidgetSection.d.ts +0 -3
  956. package/demo/pages/macos/macos-sections/sonoma/MacOSWindowSection.d.ts +0 -3
  957. package/demo/pages/macos/macos-sections/sonoma/SonomaColorsSection.d.ts +0 -3
  958. package/demo/pages/macos/macos-sections/sonoma/SonomaLayoutContentSection.d.ts +0 -3
  959. package/demo/pages/macos/macos-sections/sonoma/SonomaLayoutSidebarSection.d.ts +0 -3
  960. package/demo/pages/macos/macos-sections/sonoma/SonomaMaterialsSection.d.ts +0 -3
  961. package/demo/pages/macos/macos-sections/sonoma/SonomaShapesSection.d.ts +0 -3
  962. package/demo/pages/macos/macos-sections/sonoma/SonomaTypographySection.d.ts +0 -3
  963. package/demo/pages/macos/macos-sections/tahoe/MacOSBackgroundsSection.d.ts +0 -3
  964. package/demo/pages/macos/macos-sections/tahoe/MacOSColorsSection.d.ts +0 -3
  965. package/demo/pages/macos/macos-sections/tahoe/MacOSMaterialsSection.d.ts +0 -3
  966. package/demo/pages/macos/macos-sections/tahoe/MacOSTahoeSection.d.ts +0 -2
  967. package/demo/pages/macos/macos-sections/tahoe/MacOSTextStylesSection.d.ts +0 -3
  968. package/demo/pages/macos/macos-sections/tahoe/TahoeCommandPaletteSection.d.ts +0 -2
  969. package/demo/pages/macos/macos-sections/tahoe/TahoeDialogSection.d.ts +0 -3
  970. package/demo/pages/macos/macos-sections/tahoe/TahoeDockSection.d.ts +0 -3
  971. package/demo/pages/macos/macos-sections/tahoe/TahoeLayoutContentSection.d.ts +0 -3
  972. package/demo/pages/macos/macos-sections/tahoe/TahoeLayoutSidebarSection.d.ts +0 -3
  973. package/demo/pages/macos/macos-sections/tahoe/TahoeNotificationBannerSection.d.ts +0 -3
  974. package/demo/pages/macos/macos-sections/tahoe/TahoePopoverSection.d.ts +0 -3
  975. package/demo/pages/macos/macos-sections/tahoe/TahoeProgressBarSection.d.ts +0 -3
  976. package/demo/pages/macos/macos-sections/tahoe/TahoeSearchBarSection.d.ts +0 -3
  977. package/demo/pages/macos/macos-sections/tahoe/TahoeSegmentedControlSection.d.ts +0 -3
  978. package/demo/pages/macos/macos-sections/tahoe/TahoeToolbarSection.d.ts +0 -3
  979. package/demo/pages/macos/macos-sections/tahoe/TahoeWidgetSection.d.ts +0 -3
  980. package/demo/pages/macos/macos-sections/tahoe/TahoeWindowSection.d.ts +0 -3
  981. package/demo/pages/mcp/MCPServerPage.d.ts +0 -2
  982. package/demo/pages/mcp/mcp-sections/ClientConfigSection.d.ts +0 -3
  983. package/demo/pages/mcp/mcp-sections/DeploymentSection.d.ts +0 -3
  984. package/demo/pages/mcp/mcp-sections/InstallationSection.d.ts +0 -3
  985. package/demo/pages/mcp/mcp-sections/OverviewSection.d.ts +0 -3
  986. package/demo/pages/mcp/mcp-sections/PromptsSection.d.ts +0 -3
  987. package/demo/pages/mcp/mcp-sections/ResourcesSection.d.ts +0 -3
  988. package/demo/pages/mcp/mcp-sections/SecuritySection.d.ts +0 -3
  989. package/demo/pages/mcp/mcp-sections/ToolsSection.d.ts +0 -3
  990. package/demo/pages/tailwind/AccessibilityUtilities.d.ts +0 -1
  991. package/demo/pages/tailwind/BackgroundUtilities.d.ts +0 -1
  992. package/demo/pages/tailwind/BordersUtilities.d.ts +0 -1
  993. package/demo/pages/tailwind/Colors.d.ts +0 -1
  994. package/demo/pages/tailwind/EffectsUtilities.d.ts +0 -1
  995. package/demo/pages/tailwind/FiltersUtilities.d.ts +0 -1
  996. package/demo/pages/tailwind/FlexboxGridUtilities.d.ts +0 -1
  997. package/demo/pages/tailwind/InteractivityUtilities.d.ts +0 -1
  998. package/demo/pages/tailwind/LayoutUtilities.d.ts +0 -1
  999. package/demo/pages/tailwind/SVGUtilities.d.ts +0 -1
  1000. package/demo/pages/tailwind/TablesUtilities.d.ts +0 -1
  1001. package/demo/pages/tailwind/TailwindIntroduction.d.ts +0 -1
  1002. package/demo/pages/tailwind/TransformsUtilities.d.ts +0 -1
  1003. package/demo/pages/tailwind/TransitionsAnimations.d.ts +0 -1
  1004. package/demo/pages/tailwind/TypographyUtilities.d.ts +0 -1
  1005. package/demo/utils/constants.d.ts +0 -13
  1006. package/demo/utils/index.d.ts +0 -1
  1007. package/documentation/APIReferenceSection-DhLda4os.js +0 -1
  1008. package/documentation/APIReferenceSection-bp_k9Tqz.js +0 -213
  1009. package/documentation/ActiveLinkSection-VZpThvCH.js +0 -79
  1010. package/documentation/ActiveLinkSection-tNH1S8co.js +0 -23
  1011. package/documentation/AdvancedColorSystemSection-Bpg0ykpE.js +0 -181
  1012. package/documentation/AdvancedColorSystemSection-DV105GJ4.js +0 -17
  1013. package/documentation/AdvancedFeaturesSection-7mYHkn6Y.js +0 -1
  1014. package/documentation/AdvancedFeaturesSection-Bg3qw8SS.js +0 -70
  1015. package/documentation/AdvancedFeaturesSection-D5EPjVA_.js +0 -32
  1016. package/documentation/AdvancedFeaturesSection-Dx2FHJQ4.js +0 -117
  1017. package/documentation/AlertSection-BANRD0WY.js +0 -26
  1018. package/documentation/AlertSection-D2ZMBu8r.js +0 -96
  1019. package/documentation/AnchorLinkSection-BJiqE8DS.js +0 -20
  1020. package/documentation/AnchorLinkSection-DzqR1Ja0.js +0 -65
  1021. package/documentation/ArchitecturalPatternsComparisonSection-BXa3fD3O.js +0 -34
  1022. package/documentation/ArchitecturalPatternsComparisonSection-qvrXsvTR.js +0 -182
  1023. package/documentation/ArchitectureOverviewSection-C8sgSFI-.js +0 -210
  1024. package/documentation/ArchitectureOverviewSection-D0tlNXWy.js +0 -1
  1025. package/documentation/AreaChartSection-BOwKYw6Y.js +0 -22
  1026. package/documentation/AreaChartSection-CzLGWCua.js +0 -132
  1027. package/documentation/AuthorCardSection-CHuq5QLN.js +0 -18
  1028. package/documentation/AuthorCardSection-CrxUxl7Q.js +0 -79
  1029. package/documentation/AvatarSection-BG9u4AUq.js +0 -89
  1030. package/documentation/AvatarSection-DevddyMw.js +0 -19
  1031. package/documentation/BackgroundsSection-CC7L7uIS.js +0 -6
  1032. package/documentation/BackgroundsSection-rIeljh3V.js +0 -365
  1033. package/documentation/BadgeSection-3vXDcqn1.js +0 -49
  1034. package/documentation/BadgeSection-DXHhFhnL.js +0 -179
  1035. package/documentation/BarChartSection-CATVPfb7.js +0 -23
  1036. package/documentation/BarChartSection-DZmMeDJ_.js +0 -127
  1037. package/documentation/BasicTableSection-CKpQEXFP.js +0 -36
  1038. package/documentation/BasicTableSection-Dk1pMX7T.js +0 -133
  1039. package/documentation/BasicUsageSection-C6jzFsy4.js +0 -45
  1040. package/documentation/BasicUsageSection-Cr562E1H.js +0 -133
  1041. package/documentation/BestPracticesSection-BLDoPxOK.js +0 -1
  1042. package/documentation/BestPracticesSection-BNrOOboM.js +0 -137
  1043. package/documentation/BestPracticesSection-BVQwqior.js +0 -1
  1044. package/documentation/BestPracticesSection-BhHp4zsd.js +0 -151
  1045. package/documentation/BestPracticesSection-BjJJEr21.js +0 -91
  1046. package/documentation/BestPracticesSection-C-w5FwtZ.js +0 -79
  1047. package/documentation/BestPracticesSection-C0CfdYdW.js +0 -153
  1048. package/documentation/BestPracticesSection-Coso4hou.js +0 -34
  1049. package/documentation/BestPracticesSection-CuLnMSUm.js +0 -1
  1050. package/documentation/BestPracticesSection-D1TzGwt4.js +0 -1
  1051. package/documentation/BestPracticesSection-Dcf1Ecin.js +0 -151
  1052. package/documentation/BestPracticesSection-WftLca9v.js +0 -1
  1053. package/documentation/BestPracticesSection-ec4Mf-f9.js +0 -61
  1054. package/documentation/BestPracticesSection-kFMiJLRj.js +0 -1
  1055. package/documentation/BorderRadiusSection-CM_dDRJI.js +0 -58
  1056. package/documentation/BorderRadiusSection-CQ2ET4Kp.js +0 -1
  1057. package/documentation/ButtonDripSection-Dva1BJM-.js +0 -110
  1058. package/documentation/ButtonDripSection-ZXvRsatv.js +0 -21
  1059. package/documentation/ButtonLoaderSection-BZuT9Xfl.js +0 -153
  1060. package/documentation/ButtonLoaderSection-ZUjulNxT.js +0 -31
  1061. package/documentation/CardContainerSection-Z7NOSIc4.js +0 -61
  1062. package/documentation/CardContainerSection-j-BU0Fsq.js +0 -22
  1063. package/documentation/CardSection-nulnD1Rl.js +0 -26
  1064. package/documentation/CardSection-xhkzCZXI.js +0 -136
  1065. package/documentation/CardTitleSection-DKFkHUhY.js +0 -20
  1066. package/documentation/CardTitleSection-kRleax_l.js +0 -72
  1067. package/documentation/CarouselCardsSection-BZ49UPm1.js +0 -174
  1068. package/documentation/CarouselCardsSection-DuLDA6jR.js +0 -38
  1069. package/documentation/CarouselImageSection-Bw6VB4Sy.js +0 -39
  1070. package/documentation/CarouselImageSection-xi_Ys2D4.js +0 -179
  1071. package/documentation/CarouselSection-Deuko-HQ.js +0 -123
  1072. package/documentation/CarouselSection-tGiiAPUS.js +0 -25
  1073. package/documentation/CheckboxSection-CzqqD53Y.js +0 -175
  1074. package/documentation/CheckboxSection-DvV3_WXa.js +0 -29
  1075. package/documentation/ClientConfigSection-Gp3e7u6v.js +0 -39
  1076. package/documentation/ClientConfigSection-IutnGjQM.js +0 -126
  1077. package/documentation/CodeExamplesSection-B_dafIDz.js +0 -134
  1078. package/documentation/CodeExamplesSection-DbIVosHK.js +0 -68
  1079. package/documentation/CoinCardSection-Dva3hwNM.js +0 -132
  1080. package/documentation/CoinCardSection-lovvJF09.js +0 -13
  1081. package/documentation/CoinInfoCardSection-8zw579l9.js +0 -12
  1082. package/documentation/CoinInfoCardSection-Did86Nnb.js +0 -148
  1083. package/documentation/CoinListBoxSection-Bar8p9MH.js +0 -24
  1084. package/documentation/CoinListBoxSection-D_KM8_nW.js +0 -129
  1085. package/documentation/CollapseSection-BMLzKQqC.js +0 -28
  1086. package/documentation/CollapseSection-js4VAcmK.js +0 -84
  1087. package/documentation/CollectionCardSection-D2HwaGHj.js +0 -78
  1088. package/documentation/CollectionCardSection-Df34NuPH.js +0 -17
  1089. package/documentation/CollectionSelectListSection-CNAfimrX.js +0 -15
  1090. package/documentation/CollectionSelectListSection-LGvQya5I.js +0 -149
  1091. package/documentation/ColorCustomizationSection-B82JJ1c2.js +0 -141
  1092. package/documentation/ColorCustomizationSection-D4e9KLUe.js +0 -1
  1093. package/documentation/ColorSystemSection-CIqTbBOI.js +0 -1
  1094. package/documentation/ColorSystemSection-Dhgkg-r-.js +0 -339
  1095. package/documentation/ColumnsSection-DrYNzV9j.js +0 -435
  1096. package/documentation/ColumnsSection-qPdS2C02.js +0 -109
  1097. package/documentation/CommonErrorsSection-D5ulhjHy.js +0 -77
  1098. package/documentation/CommonErrorsSection-D__sdWvP.js +0 -1
  1099. package/documentation/ComponentAnatomySection-C9tEDK7p.js +0 -78
  1100. package/documentation/ComponentAnatomySection-CqsdkM8N.js +0 -1
  1101. package/documentation/ComponentStatusSection-BR69AE7p.js +0 -148
  1102. package/documentation/ComponentStatusSection-CNigvIxm.js +0 -1
  1103. package/documentation/ComposedChartSection-CoIPhfXm.js +0 -21
  1104. package/documentation/ComposedChartSection-Q_8Ho__v.js +0 -113
  1105. package/documentation/CurrencySwapIconsSection-DQn8jXE-.js +0 -7
  1106. package/documentation/CurrencySwapIconsSection-zs2ai4Bd.js +0 -73
  1107. package/documentation/CustomColorPaletteSection-CDwYb_hG.js +0 -74
  1108. package/documentation/CustomColorPaletteSection-D7wgseaA.js +0 -19
  1109. package/documentation/CustomIconsSection-BlUe77an.js +0 -172
  1110. package/documentation/CustomIconsSection-WTHmHO_1.js +0 -3
  1111. package/documentation/DataFetchingSection-D5ZMyrfR.js +0 -576
  1112. package/documentation/DataFetchingSection-ZdwqQJWR.js +0 -128
  1113. package/documentation/DefiAppLogoSection-CM6swWaf.js +0 -38
  1114. package/documentation/DefiAppLogoSection-DdW6TZ5c.js +0 -132
  1115. package/documentation/DeploymentSection-BptA4WV3.js +0 -36
  1116. package/documentation/DeploymentSection-Ca1Z8a_c.js +0 -136
  1117. package/documentation/DesignPrinciplesSection-BZwAzzwG.js +0 -68
  1118. package/documentation/DesignPrinciplesSection-DYwidCK8.js +0 -1
  1119. package/documentation/DocumentationSection-BD7CQC84.js +0 -1
  1120. package/documentation/DocumentationSection-CWJn_wOD.js +0 -66
  1121. package/documentation/DrawerSection-Cl0RmlNx.js +0 -155
  1122. package/documentation/DrawerSection-DHBZDxRV.js +0 -42
  1123. package/documentation/DynamicRoutesSection-Der_Tsz0.js +0 -112
  1124. package/documentation/DynamicRoutesSection-NQ3SszLU.js +0 -47
  1125. package/documentation/ExamplesSection-BFn_F-uM.js +0 -54
  1126. package/documentation/ExamplesSection-CUiKkdx2.js +0 -261
  1127. package/documentation/FileInputSection-BNVeIt5U.js +0 -73
  1128. package/documentation/FileInputSection-xuGI-LEy.js +0 -237
  1129. package/documentation/FileStructureSection-BA53QV4j.js +0 -26
  1130. package/documentation/FileStructureSection-BORCUzqw.js +0 -101
  1131. package/documentation/FormComponentsSection-BB7qCeJ_.js +0 -1
  1132. package/documentation/FormComponentsSection-yKE3yL-Y.js +0 -148
  1133. package/documentation/FormMethodsSection-BjBBjdJs.js +0 -194
  1134. package/documentation/FormMethodsSection-DUQ4_4_0.js +0 -53
  1135. package/documentation/HamburgerSection-BjB9wmVz.js +0 -97
  1136. package/documentation/HamburgerSection-Cu9u90NY.js +0 -19
  1137. package/documentation/HookCategoriesSection-C4pBQyC8.js +0 -119
  1138. package/documentation/HookCategoriesSection-RnedxUZ_.js +0 -1
  1139. package/documentation/HookDocumentationSection-4pMJBhbt.js +0 -100
  1140. package/documentation/HookDocumentationSection-CUmrdSCq.js +0 -467
  1141. package/documentation/HookFeaturesSection-BbF7TeKh.js +0 -1
  1142. package/documentation/HookFeaturesSection-luGHopK_.js +0 -70
  1143. package/documentation/IconArchitectureSection-BAj9emvS.js +0 -145
  1144. package/documentation/IconArchitectureSection-BOrQFHbe.js +0 -11
  1145. package/documentation/IconSizingGuideSection-Bow9HZ_l.js +0 -1
  1146. package/documentation/IconSizingGuideSection-DuhPNOqd.js +0 -118
  1147. package/documentation/IconSystemAPISection-C95E0VaN.js +0 -138
  1148. package/documentation/IconSystemAPISection-DcO3FtRL.js +0 -1
  1149. package/documentation/IconSystemBenefitsSection-DT75ytKf.js +0 -1
  1150. package/documentation/IconSystemBenefitsSection-zDDW4StV.js +0 -120
  1151. package/documentation/ImageSection-CQzFYVm1.js +0 -82
  1152. package/documentation/ImageSection-VZ3y1snc.js +0 -508
  1153. package/documentation/ImplementationExamplesSection-COS7tuYv.js +0 -761
  1154. package/documentation/ImplementationExamplesSection-DL4lxRDR.js +0 -429
  1155. package/documentation/ImplementationGuidelinesSection-DNJwGuZi.js +0 -144
  1156. package/documentation/ImplementationGuidelinesSection-nkcQfH3s.js +0 -1
  1157. package/documentation/ImplementationStatusSection-CtqaxsyY.js +0 -1
  1158. package/documentation/ImplementationStatusSection-lv5t0EIh.js +0 -62
  1159. package/documentation/ImplementedFeaturesSection-Bddbm4jZ.js +0 -1
  1160. package/documentation/ImplementedFeaturesSection-DP37ByDA.js +0 -70
  1161. package/documentation/InfoCardSection-4npPvpiJ.js +0 -291
  1162. package/documentation/InfoCardSection-C7W36XJN.js +0 -38
  1163. package/documentation/InputSearcherSection-Bm_4y_eJ.js +0 -267
  1164. package/documentation/InputSearcherSection-DnVt-6OY.js +0 -45
  1165. package/documentation/InputSection-DDSrmZ91.js +0 -50
  1166. package/documentation/InputSection-DSFy5BhS.js +0 -280
  1167. package/documentation/InstallationSection-Pi9lzZwp.js +0 -22
  1168. package/documentation/InstallationSection-t5nTJfBu.js +0 -125
  1169. package/documentation/KeyValueRowSection-CGEK8RAk.js +0 -17
  1170. package/documentation/KeyValueRowSection-wAQ2xSoa.js +0 -117
  1171. package/documentation/KeyboardNavigationSection-B5JFQ5NE.js +0 -27
  1172. package/documentation/KeyboardNavigationSection-_hqOBAEW.js +0 -130
  1173. package/documentation/LayoutPrinciplesSection-D5lu96bu.js +0 -148
  1174. package/documentation/LayoutPrinciplesSection-U-wTD-h4.js +0 -1
  1175. package/documentation/LayoutTypesSection-dCUlT5Rx.js +0 -450
  1176. package/documentation/LayoutTypesSection-qQ-9wgXe.js +0 -1
  1177. package/documentation/LineChartSection-C-ssHn9r.js +0 -130
  1178. package/documentation/LineChartSection-CVJV483A.js +0 -21
  1179. package/documentation/ListContainerSection-BljbeejO.js +0 -39
  1180. package/documentation/ListContainerSection-DialCrM_.js +0 -168
  1181. package/documentation/ListItemSection-BDxVzPbx.js +0 -132
  1182. package/documentation/ListItemSection-BdCtOBHx.js +0 -37
  1183. package/documentation/LiveDemoSection-DosdGK0A.js +0 -1
  1184. package/documentation/LiveDemoSection-NoTlYspW.js +0 -56
  1185. package/documentation/LiveDemonstrationsSection-CbcGEM9e.js +0 -539
  1186. package/documentation/LiveDemonstrationsSection-CwEpTYEs.js +0 -28
  1187. package/documentation/LivePriceFeedSection-CIIrnZ4o.js +0 -143
  1188. package/documentation/LivePriceFeedSection-V76Z5Fer.js +0 -20
  1189. package/documentation/LoaderSection-CkUnMvCy.js +0 -96
  1190. package/documentation/LoaderSection-DEAO4HDA.js +0 -23
  1191. package/documentation/LogoSection-DBRfP-OY.js +0 -101
  1192. package/documentation/LogoSection-DuwWvmb4.js +0 -265
  1193. package/documentation/LucideIconsSection-C8zgDfWJ.js +0 -1
  1194. package/documentation/LucideIconsSection-kEaPLh0V.js +0 -169
  1195. package/documentation/MFESupportSection-Bv716SHU.js +0 -97
  1196. package/documentation/MFESupportSection-Du1uqyKB.js +0 -222
  1197. package/documentation/MacOSBackgroundsSection-BCOYwP0T.js +0 -1
  1198. package/documentation/MacOSBackgroundsSection-CFzGRTIi.js +0 -293
  1199. package/documentation/MacOSColorsSection-BLdQLmVU.js +0 -1
  1200. package/documentation/MacOSColorsSection-C7Z8okVD.js +0 -305
  1201. package/documentation/MacOSCommandPaletteSection-BTrRzuuO.js +0 -143
  1202. package/documentation/MacOSCommandPaletteSection-DVNy_6I7.js +0 -33
  1203. package/documentation/MacOSMaterialsSection-Df-ADZ6d.js +0 -280
  1204. package/documentation/MacOSMaterialsSection-DsZwofSg.js +0 -1
  1205. package/documentation/MacOSNotificationBannerSection-C58OPCNq.js +0 -169
  1206. package/documentation/MacOSNotificationBannerSection-CUorA6r9.js +0 -25
  1207. package/documentation/MacOSPopoverSection-BDDYuhqI.js +0 -266
  1208. package/documentation/MacOSPopoverSection-BkgBnoyB.js +0 -33
  1209. package/documentation/MacOSSearchBarSection-B4kt_090.js +0 -17
  1210. package/documentation/MacOSSearchBarSection-CAqjk9yl.js +0 -108
  1211. package/documentation/MacOSSegmentedControlSection-BmrrShpJ.js +0 -19
  1212. package/documentation/MacOSSegmentedControlSection-D_zqGd1h.js +0 -138
  1213. package/documentation/MacOSSidebarSection-D-64MM8U.js +0 -35
  1214. package/documentation/MacOSSidebarSection-DUpDMHGi.js +0 -251
  1215. package/documentation/MacOSTahoeSection-Glabuf3q.js +0 -1
  1216. package/documentation/MacOSTahoeSection-N_tppoSk.js +0 -98
  1217. package/documentation/MacOSTextStylesSection-BHMRNo-v.js +0 -366
  1218. package/documentation/MacOSTextStylesSection-DlvKbXki.js +0 -1
  1219. package/documentation/MacOSToolbarSection-COuNpmj_.js +0 -100
  1220. package/documentation/MacOSToolbarSection-CdsL85Jb.js +0 -23
  1221. package/documentation/MacOSWidgetSection-BNaAjj5p.js +0 -107
  1222. package/documentation/MacOSWidgetSection-b_I1PVF7.js +0 -19
  1223. package/documentation/MacOSWindowSection-29UkbnpD.js +0 -237
  1224. package/documentation/MacOSWindowSection-D4C22kkM.js +0 -22
  1225. package/documentation/MenuItemsGuideSection-Ba6VQNK9.js +0 -351
  1226. package/documentation/MenuItemsGuideSection-CbvbuCdn.js +0 -126
  1227. package/documentation/ModalSection-445ZMEa_.js +0 -30
  1228. package/documentation/ModalSection-BWoZ5Pcl.js +0 -114
  1229. package/documentation/NFTGridSection-2-m_Uk8V.js +0 -19
  1230. package/documentation/NFTGridSection-CEinlBJu.js +0 -160
  1231. package/documentation/NestedRoutesSection-D_qsJSnp.js +0 -39
  1232. package/documentation/NestedRoutesSection-DrqTtZfw.js +0 -120
  1233. package/documentation/NotificationCardSection-BajbpGsh.js +0 -29
  1234. package/documentation/NotificationCardSection-BsEFLr03.js +0 -120
  1235. package/documentation/OverviewSection-BFOZHsnd.js +0 -21
  1236. package/documentation/OverviewSection-qQ_zeErg.js +0 -149
  1237. package/documentation/PaginationSection-DBp0eqDB.js +0 -141
  1238. package/documentation/PaginationSection-Vg1h9RV9.js +0 -19
  1239. package/documentation/PanelActionCardSection-Czo1uDNy.js +0 -29
  1240. package/documentation/PanelActionCardSection-Dpm0_Mfp.js +0 -104
  1241. package/documentation/PanelCardSection-Db257Bkk.js +0 -60
  1242. package/documentation/PanelCardSection-DvJ5QG8z.js +0 -16
  1243. package/documentation/ParamTabSection-D3tpzPXp.js +0 -94
  1244. package/documentation/ParamTabSection-DzcRCqZr.js +0 -581
  1245. package/documentation/PieChartSection-DHKMnFF6.js +0 -91
  1246. package/documentation/PieChartSection-Oe6rJh93.js +0 -19
  1247. package/documentation/PinCodeSection-CDtuT8Kw.js +0 -235
  1248. package/documentation/PinCodeSection-CnM3hDz5.js +0 -32
  1249. package/documentation/PlaygroundSection-BDwyp4DF.js +0 -1
  1250. package/documentation/PlaygroundSection-CbAGK96L.js +0 -415
  1251. package/documentation/ProgressbarSection-BzHZ0AfK.js +0 -22
  1252. package/documentation/ProgressbarSection-CXAiNNFG.js +0 -142
  1253. package/documentation/PromptsSection-Be0ObKFK.js +0 -118
  1254. package/documentation/PromptsSection-COY6XUPp.js +0 -18
  1255. package/documentation/RadarChartSection-B8qTV7dc.js +0 -21
  1256. package/documentation/RadarChartSection-Dsjj4EQ6.js +0 -114
  1257. package/documentation/RadioGroupSection-D4QKj2um.js +0 -269
  1258. package/documentation/RadioGroupSection-uEBc9tpG.js +0 -37
  1259. package/documentation/RadioSection-3Q2d-3lM.js +0 -27
  1260. package/documentation/RadioSection-CULyvM_s.js +0 -183
  1261. package/documentation/ResourcesSection-BwB_aHaD.js +0 -13
  1262. package/documentation/ResourcesSection-CTMhP33o.js +0 -119
  1263. package/documentation/RevealContentSection-ZnhGy2aO.js +0 -21
  1264. package/documentation/RevealContentSection-fASJbh2Y.js +0 -80
  1265. package/documentation/RouteConfigurationSection-B3spETiJ.js +0 -42
  1266. package/documentation/RouteConfigurationSection-goiMMamN.js +0 -88
  1267. package/documentation/ScrollToTopSection-CtOc-TS2.js +0 -141
  1268. package/documentation/ScrollToTopSection-IPskJwsB.js +0 -38
  1269. package/documentation/ScrollbarSection-BpZ-yYIY.js +0 -103
  1270. package/documentation/ScrollbarSection-DfK0WSIX.js +0 -30
  1271. package/documentation/SearchSection-WT9_CxCF.js +0 -45
  1272. package/documentation/SearchSection-fY2x4mhW.js +0 -268
  1273. package/documentation/SecuritySection-DKj4sx3q.js +0 -27
  1274. package/documentation/SecuritySection-fTtKf_Se.js +0 -164
  1275. package/documentation/SelectSection-ChCN6Gvt.js +0 -346
  1276. package/documentation/SelectSection-XHHIw0x1.js +0 -52
  1277. package/documentation/SettingsPanelSection-C7_20M4F.js +0 -1
  1278. package/documentation/SettingsPanelSection-Ks-nNrFJ.js +0 -139
  1279. package/documentation/ShadowsSection-CJYATM7F.js +0 -1
  1280. package/documentation/ShadowsSection-DfueUFqR.js +0 -101
  1281. package/documentation/SidebarMenuSection-DXhSvAfX.js +0 -108
  1282. package/documentation/SidebarMenuSection-SrSpe80k.js +0 -47
  1283. package/documentation/SidebarSection-BaFbib_i.js +0 -70
  1284. package/documentation/SidebarSection-DEYX9Kqh.js +0 -26
  1285. package/documentation/SizingSection-B0SxFX0i.js +0 -1
  1286. package/documentation/SizingSection-CFCLxAKR.js +0 -97
  1287. package/documentation/SkeletonSection-CVq7HYVY.js +0 -202
  1288. package/documentation/SkeletonSection-CbIR-XQ0.js +0 -53
  1289. package/documentation/SonomaColorsSection-ByEpUCmF.js +0 -388
  1290. package/documentation/SonomaColorsSection-Dgz5XvhV.js +0 -1
  1291. package/documentation/SonomaLayoutContentSection-D1AFn8Hp.js +0 -67
  1292. package/documentation/SonomaLayoutContentSection-bZkduOQx.js +0 -16
  1293. package/documentation/SonomaLayoutSidebarSection-CJgyBUch.js +0 -96
  1294. package/documentation/SonomaLayoutSidebarSection-Yyp4COXe.js +0 -27
  1295. package/documentation/SonomaMaterialsSection-BBoVMvgC.js +0 -9
  1296. package/documentation/SonomaMaterialsSection-CXb0ND7f.js +0 -334
  1297. package/documentation/SonomaShapesSection-DwvNaMWx.js +0 -482
  1298. package/documentation/SonomaShapesSection-IficAPxh.js +0 -10
  1299. package/documentation/SonomaTypographySection-BYarPbGF.js +0 -389
  1300. package/documentation/SonomaTypographySection-LjJ2_rZA.js +0 -1
  1301. package/documentation/SpacingSystemSection-DHOiKnLP.js +0 -1
  1302. package/documentation/SpacingSystemSection-gi1hOD6c.js +0 -79
  1303. package/documentation/SpinnerSection-DNHEdjKZ.js +0 -78
  1304. package/documentation/SpinnerSection-nP1nOJnU.js +0 -18
  1305. package/documentation/StandaloneAppSection-DktAXH3T.js +0 -181
  1306. package/documentation/StandaloneAppSection-zGt98xAO.js +0 -71
  1307. package/documentation/StepperSection-BdPopNnz.js +0 -29
  1308. package/documentation/StepperSection-CsJZAGkY.js +0 -166
  1309. package/documentation/SwitchSection-BAgMBu2Q.js +0 -28
  1310. package/documentation/SwitchSection-ByC85Kap.js +0 -223
  1311. package/documentation/SystemOverviewSection-CAWlhqIB.js +0 -1
  1312. package/documentation/SystemOverviewSection-ydaPDpDw.js +0 -58
  1313. package/documentation/TabModalSection-Bu3a4ryu.js +0 -52
  1314. package/documentation/TabModalSection-TRVdGNTT.js +0 -200
  1315. package/documentation/TabSection-BdLxBPop.js +0 -85
  1316. package/documentation/TabSection-CDQ62WfZ.js +0 -293
  1317. package/documentation/TabSelectSection-Bwf53Fqf.js +0 -420
  1318. package/documentation/TabSelectSection-qEsIlzZP.js +0 -102
  1319. package/documentation/TahoeCommandPaletteSection-CAOQM68l.js +0 -21
  1320. package/documentation/TahoeCommandPaletteSection-DLEKbcYr.js +0 -217
  1321. package/documentation/TahoeDialogSection-JnVEuZ_D.js +0 -22
  1322. package/documentation/TahoeDialogSection-hRAC-9FQ.js +0 -228
  1323. package/documentation/TahoeDockSection-DN01lgZU.js +0 -29
  1324. package/documentation/TahoeDockSection-DeSCH1-K.js +0 -228
  1325. package/documentation/TahoeLayoutContentSection-B7FMGrb_.js +0 -68
  1326. package/documentation/TahoeLayoutContentSection-DR8ZGq2-.js +0 -17
  1327. package/documentation/TahoeLayoutSidebarSection-BB1sn0vA.js +0 -114
  1328. package/documentation/TahoeLayoutSidebarSection-YtwQSoHS.js +0 -36
  1329. package/documentation/TahoeNotificationBannerSection-B5wxMzg7.js +0 -22
  1330. package/documentation/TahoeNotificationBannerSection-Cfz6pCML.js +0 -144
  1331. package/documentation/TahoePopoverSection-FNNHRW8y.js +0 -220
  1332. package/documentation/TahoePopoverSection-Sws9YM-u.js +0 -24
  1333. package/documentation/TahoeProgressBarSection-CDG0UwBs.js +0 -124
  1334. package/documentation/TahoeProgressBarSection-rnsLopEr.js +0 -16
  1335. package/documentation/TahoeSearchBarSection-BjALRSiL.js +0 -10
  1336. package/documentation/TahoeSearchBarSection-ClkkTHcY.js +0 -117
  1337. package/documentation/TahoeSegmentedControlSection-Cm6Ds1no.js +0 -178
  1338. package/documentation/TahoeSegmentedControlSection-DJxWMV52.js +0 -12
  1339. package/documentation/TahoeToolbarSection-BNGPeBHt.js +0 -17
  1340. package/documentation/TahoeToolbarSection-g85Im8FS.js +0 -81
  1341. package/documentation/TahoeWidgetSection-DD7Apywi.js +0 -121
  1342. package/documentation/TahoeWidgetSection-DVnHBOjI.js +0 -13
  1343. package/documentation/TahoeWindowSection-B42c7BLl.js +0 -24
  1344. package/documentation/TahoeWindowSection-CuHmRGj3.js +0 -289
  1345. package/documentation/TailwindConfigSection-BY9HXUhA.js +0 -23
  1346. package/documentation/TailwindConfigSection-DvZuNkc7.js +0 -128
  1347. package/documentation/TestingSection-BVxXJMgj.js +0 -150
  1348. package/documentation/TestingSection-DOh318Tm.js +0 -36
  1349. package/documentation/TextareaSection-3_t7ai9G.js +0 -34
  1350. package/documentation/TextareaSection-Dzu49LSf.js +0 -258
  1351. package/documentation/ThemeArchitectureSection-Bw24JBsA.js +0 -143
  1352. package/documentation/ThemeArchitectureSection-CDldshGL.js +0 -27
  1353. package/documentation/ThemeConfigurationSection-4TdHDxO0.js +0 -1
  1354. package/documentation/ThemeConfigurationSection-COAiRQZF.js +0 -139
  1355. package/documentation/ThemeHooksSection-Cd6DadGN.js +0 -1
  1356. package/documentation/ThemeHooksSection-dOrSRbrn.js +0 -173
  1357. package/documentation/ThemeProviderIntegrationSection-8ztYnv_H.js +0 -73
  1358. package/documentation/ThemeProviderIntegrationSection-BTj95Kt0.js +0 -122
  1359. package/documentation/ThemeProviderRequiredSection-hcvSPDrZ.js +0 -1
  1360. package/documentation/ThemeProviderRequiredSection-kWXCDNKy.js +0 -114
  1361. package/documentation/ThemeProviderSection-C9ZV8aUv.js +0 -1
  1362. package/documentation/ThemeProviderSection-EtkntPnC.js +0 -143
  1363. package/documentation/ToastSection-C2_Av055.js +0 -38
  1364. package/documentation/ToastSection-NoDnkMGu.js +0 -168
  1365. package/documentation/ToggleBarSection-BdjFoJjH.js +0 -186
  1366. package/documentation/ToggleBarSection-CSPKIKSE.js +0 -45
  1367. package/documentation/ToolsSection-C-esUuLz.js +0 -221
  1368. package/documentation/ToolsSection-DWfaPzVU.js +0 -58
  1369. package/documentation/TooltipSection-FyDJKnf1.js +0 -64
  1370. package/documentation/TooltipSection-jjPa6g0x.js +0 -185
  1371. package/documentation/TopupButtonSection-BXI8TeYG.js +0 -25
  1372. package/documentation/TopupButtonSection-BynGsCmq.js +0 -98
  1373. package/documentation/TransactionInfoSection-DdhvAYC-.js +0 -86
  1374. package/documentation/TransactionInfoSection-XCLFoGEj.js +0 -16
  1375. package/documentation/TucuUiLogoSection--s8pA7EB.js +0 -26
  1376. package/documentation/TucuUiLogoSection-BC4AT0Nk.js +0 -85
  1377. package/documentation/TypographySection--Tmn50-J.js +0 -276
  1378. package/documentation/TypographySection-BiGmlBcz.js +0 -33
  1379. package/documentation/TypographySection-CNrhDmGi.js +0 -1
  1380. package/documentation/TypographySection-Dus4EyTE.js +0 -142
  1381. package/documentation/UsageExamplesSection-DcTyTiz0.js +0 -150
  1382. package/documentation/UsageExamplesSection-tPQlBUXB.js +0 -84
  1383. package/documentation/UsingThemeSystemSection-Bn76akZW.js +0 -164
  1384. package/documentation/UsingThemeSystemSection-CK0SJMLl.js +0 -106
  1385. package/documentation/ValidationSystemSection-Bl-anwHL.js +0 -222
  1386. package/documentation/ValidationSystemSection-w5wRflZH.js +0 -53
  1387. package/documentation/WCAGPrinciplesSection-B_iYHZne.js +0 -1
  1388. package/documentation/WCAGPrinciplesSection-By2amHOf.js +0 -126
  1389. package/hooks/index.d.ts +0 -14
  1390. package/hooks/use-anchor-scroll.d.ts +0 -1
  1391. package/hooks/use-breakpoint.d.ts +0 -1
  1392. package/hooks/use-click-away.d.ts +0 -1
  1393. package/hooks/use-copy-to-clipboard.d.ts +0 -1
  1394. package/hooks/use-element-size.d.ts +0 -9
  1395. package/hooks/use-event-listener.d.ts +0 -7
  1396. package/hooks/use-grid-switcher.d.ts +0 -6
  1397. package/hooks/use-is-mobile.d.ts +0 -4
  1398. package/hooks/use-is-mounted.d.ts +0 -1
  1399. package/hooks/use-lock-body-scroll.d.ts +0 -1
  1400. package/hooks/use-measure.d.ts +0 -1
  1401. package/hooks/use-scrollable-slider.d.ts +0 -7
  1402. package/hooks/use-toast-store.d.ts +0 -17
  1403. package/hooks/use-window-scroll.d.ts +0 -11
  1404. package/index-DWDUS-PU.js +0 -1342
  1405. package/index-DoxeCFUJ.js +0 -88761
  1406. package/libs/framer-motion/fade-in-bottom.d.ts +0 -18
  1407. package/libs/index.d.ts +0 -3
  1408. package/libs/local-storage/index.d.ts +0 -7
  1409. package/libs/range-map.d.ts +0 -1
  1410. package/lucide-react/index.d.ts +0 -1
  1411. package/react-router-dom/index.d.ts +0 -1
  1412. package/swiper-react/index.d.ts +0 -2
  1413. package/tether-DaYvmdAU.js +0 -5
  1414. package/tether-EofDinu3.js +0 -1
  1415. package/themes/auth/components/auth-provider.d.ts +0 -7
  1416. package/themes/auth/components/index.d.ts +0 -1
  1417. package/themes/auth/index.d.ts +0 -1
  1418. package/themes/components/index.d.ts +0 -3
  1419. package/themes/components/settings/background-picker.d.ts +0 -2
  1420. package/themes/components/settings/color-dot.d.ts +0 -5
  1421. package/themes/components/settings/color-swatch-modal.d.ts +0 -7
  1422. package/themes/components/settings/default-color-settings.d.ts +0 -2
  1423. package/themes/components/settings/direction-switcher.d.ts +0 -2
  1424. package/themes/components/settings/index.d.ts +0 -19
  1425. package/themes/components/settings/lang-selector.d.ts +0 -6
  1426. package/themes/components/settings/layout-switcher.d.ts +0 -4
  1427. package/themes/components/settings/restore-defaults.d.ts +0 -2
  1428. package/themes/components/settings/settings-button.d.ts +0 -2
  1429. package/themes/components/settings/settings-drawer.d.ts +0 -2
  1430. package/themes/components/settings/settings-section-heading.d.ts +0 -4
  1431. package/themes/components/settings/settings-types.d.ts +0 -19
  1432. package/themes/components/settings/sonoma-accent-picker.d.ts +0 -2
  1433. package/themes/components/settings/switch-mode.d.ts +0 -6
  1434. package/themes/components/settings/switch-variant.d.ts +0 -5
  1435. package/themes/components/settings/switcher-button.d.ts +0 -7
  1436. package/themes/components/settings/tahoe-accent-picker.d.ts +0 -2
  1437. package/themes/components/settings/theme-icons.d.ts +0 -6
  1438. package/themes/components/settings/theme-switcher.d.ts +0 -2
  1439. package/themes/components/settings/theme-variant-switcher.d.ts +0 -2
  1440. package/themes/components/theme-background.d.ts +0 -33
  1441. package/themes/components/theme-provider/index.d.ts +0 -50
  1442. package/themes/components/theme-provider/mfe-app-theme-provider.d.ts +0 -11
  1443. package/themes/components/theme-provider/standalone-app-theme-provider.d.ts +0 -12
  1444. package/themes/components/theme-provider/theme-wrapper.d.ts +0 -63
  1445. package/themes/config/index.d.ts +0 -395
  1446. package/themes/hooks/index.d.ts +0 -3
  1447. package/themes/hooks/use-direction.d.ts +0 -1
  1448. package/themes/hooks/use-theme-color.d.ts +0 -29
  1449. package/themes/hooks/use-theme.d.ts +0 -118
  1450. package/themes/index.d.ts +0 -7
  1451. package/themes/pages/access-denied.d.ts +0 -6
  1452. package/themes/pages/default-error.d.ts +0 -5
  1453. package/themes/pages/disabled-page.d.ts +0 -5
  1454. package/themes/pages/fallback-page.d.ts +0 -8
  1455. package/themes/pages/forbidden.d.ts +0 -5
  1456. package/themes/pages/index.d.ts +0 -10
  1457. package/themes/pages/no-routes.d.ts +0 -5
  1458. package/themes/pages/not-found.d.ts +0 -5
  1459. package/themes/pages/server-error.d.ts +0 -5
  1460. package/themes/pages/unknown.d.ts +0 -5
  1461. package/themes/pages/user-blocked.d.ts +0 -5
  1462. package/themes/router/components/index.d.ts +0 -2
  1463. package/themes/router/components/mfe-app-routes-provider.d.ts +0 -16
  1464. package/themes/router/components/standalone-app-routes-provider.d.ts +0 -22
  1465. package/themes/router/hooks/index.d.ts +0 -1
  1466. package/themes/router/hooks/use-public-error-routes-config.d.ts +0 -6
  1467. package/themes/router/index.d.ts +0 -2
  1468. package/themes/types/index.d.ts +0 -15
@@ -1,210 +0,0 @@
1
- import { jsxs as a, Fragment as d, jsx as e } from "react/jsx-runtime";
2
- import { H as m, T as r, ax as o, C as l, K as s } from "../index-DoxeCFUJ.js";
3
- import { Layers as i, Box as c, GitBranch as h, AlertCircle as p, TextCursorInput as g, Link as x, Eye as u, Activity as f, RotateCcw as y, Info as N, Shield as v, Zap as w } from "lucide-react";
4
- import "react-router-dom";
5
- import "react";
6
- import "react-dom";
7
- const I = () => /* @__PURE__ */ a(d, { children: [
8
- /* @__PURE__ */ e(
9
- m,
10
- {
11
- title: "Architecture Overview",
12
- description: "The tucu-ui form system is a thin, typed wrapper around react-hook-form. It provides Form, FormField, and useFormContext with centralized validation and automatic error handling.",
13
- icon: /* @__PURE__ */ e("div", { className: "w-20 h-20 sm:w-24 sm:h-24 md:w-32 md:h-32 bg-linear-to-br from-blue-500 via-indigo-500 to-purple-500 rounded-full flex items-center justify-center shadow-lg", children: /* @__PURE__ */ e(i, { className: "w-10 h-10 sm:w-12 sm:h-12 md:w-16 md:h-16 text-white filter drop-shadow-lg" }) })
14
- }
15
- ),
16
- /* @__PURE__ */ a("section", { className: "space-y-8", children: [
17
- /* @__PURE__ */ a("div", { className: "text-center", children: [
18
- /* @__PURE__ */ e(r, { tag: "h2", className: "mb-2", children: "Core Layers" }),
19
- /* @__PURE__ */ e(
20
- r,
21
- {
22
- tag: "p",
23
- className: "text-gray-500 dark:text-gray-400 max-w-2xl mx-auto",
24
- children: "Four architectural layers that compose the form system"
25
- }
26
- )
27
- ] }),
28
- /* @__PURE__ */ e("div", { className: "grid grid-cols-1 sm:grid-cols-2 lg:grid-cols-4 gap-4 sm:gap-6", children: [
29
- {
30
- title: "Form Container",
31
- description: "Main wrapper that initializes react-hook-form, handles submission, and provides context to all children.",
32
- icon: /* @__PURE__ */ e(c, { className: "w-6 h-6" })
33
- },
34
- {
35
- title: "FormField Wrapper",
36
- description: "Connects any input to the form state. Handles registration, error display, and label rendering automatically.",
37
- icon: /* @__PURE__ */ e(i, { className: "w-6 h-6" })
38
- },
39
- {
40
- title: "Validation System",
41
- description: "Centralized or per-field validation via FormValidations type. Supports required, pattern, min/max, and custom validators.",
42
- icon: /* @__PURE__ */ e(v, { className: "w-6 h-6" })
43
- },
44
- {
45
- title: "Performance",
46
- description: "Built on react-hook-form — minimal re-renders by isolating field state. Only the changed field re-renders.",
47
- icon: /* @__PURE__ */ e(w, { className: "w-6 h-6" })
48
- }
49
- ].map((t, n) => /* @__PURE__ */ e(
50
- o,
51
- {
52
- title: t.title,
53
- description: t.description,
54
- icon: t.icon
55
- },
56
- n
57
- )) })
58
- ] }),
59
- /* @__PURE__ */ a("section", { className: "space-y-8", children: [
60
- /* @__PURE__ */ a("div", { className: "text-center", children: [
61
- /* @__PURE__ */ e(r, { tag: "h2", className: "mb-2", children: "Component Tree" }),
62
- /* @__PURE__ */ e(
63
- r,
64
- {
65
- tag: "p",
66
- className: "text-gray-500 dark:text-gray-400 max-w-2xl mx-auto",
67
- children: "How Form, FormField, and useFormContext relate to each other"
68
- }
69
- )
70
- ] }),
71
- /* @__PURE__ */ a("div", { className: "flex flex-col items-center gap-3", children: [
72
- /* @__PURE__ */ e(l, { children: /* @__PURE__ */ a("div", { className: "w-full p-4 sm:p-5 flex items-center gap-3", children: [
73
- /* @__PURE__ */ e("div", { className: "w-10 h-10 rounded-lg bg-blue-200 dark:bg-blue-800 flex items-center justify-center shrink-0", children: /* @__PURE__ */ e(c, { className: "w-5 h-5 text-blue-600 dark:text-blue-400" }) }),
74
- /* @__PURE__ */ a("div", { children: [
75
- /* @__PURE__ */ e(
76
- r,
77
- {
78
- tag: "h3",
79
- className: "font-semibold text-blue-700 dark:text-blue-300",
80
- children: "<Form>"
81
- }
82
- ),
83
- /* @__PURE__ */ a("div", { className: "flex flex-wrap gap-2 mt-1", children: [
84
- /* @__PURE__ */ e(s, { variant: "soft", color: "info", children: "useFormProps" }),
85
- /* @__PURE__ */ e(s, { variant: "soft", color: "info", children: "validationSchema" }),
86
- /* @__PURE__ */ e(s, { variant: "soft", color: "info", children: "onSubmit" })
87
- ] })
88
- ] })
89
- ] }) }),
90
- /* @__PURE__ */ e("div", { className: "w-px h-6 bg-gray-300 dark:bg-gray-600" }),
91
- /* @__PURE__ */ a("div", { className: "grid grid-cols-1 md:grid-cols-2 gap-4 w-full max-w-3xl", children: [
92
- /* @__PURE__ */ a("div", { className: "flex flex-col items-center gap-3", children: [
93
- /* @__PURE__ */ e(l, { children: /* @__PURE__ */ a("div", { className: "w-full p-4 sm:p-5 space-y-3", children: [
94
- /* @__PURE__ */ a("div", { className: "flex items-center gap-3", children: [
95
- /* @__PURE__ */ e("div", { className: "w-9 h-9 rounded-lg bg-purple-200 dark:bg-purple-900/40 flex items-center justify-center shrink-0", children: /* @__PURE__ */ e(i, { className: "w-4 h-4 text-purple-600 dark:text-purple-400" }) }),
96
- /* @__PURE__ */ e(
97
- r,
98
- {
99
- tag: "h3",
100
- className: "font-semibold text-purple-700 dark:text-purple-300",
101
- children: "<FormField>"
102
- }
103
- )
104
- ] }),
105
- /* @__PURE__ */ a("div", { className: "space-y-2 pl-12", children: [
106
- /* @__PURE__ */ a("div", { className: "flex items-center gap-2", children: [
107
- /* @__PURE__ */ e(h, { className: "w-3.5 h-3.5 text-gray-400" }),
108
- /* @__PURE__ */ e(
109
- r,
110
- {
111
- tag: "span",
112
- className: "text-sm text-gray-600 dark:text-gray-400",
113
- children: "Controller (react-hook-form)"
114
- }
115
- )
116
- ] }),
117
- /* @__PURE__ */ a("div", { className: "flex items-center gap-2", children: [
118
- /* @__PURE__ */ e(p, { className: "w-3.5 h-3.5 text-gray-400" }),
119
- /* @__PURE__ */ e(
120
- r,
121
- {
122
- tag: "span",
123
- className: "text-sm text-gray-600 dark:text-gray-400",
124
- children: "Error display (automatic)"
125
- }
126
- )
127
- ] }),
128
- /* @__PURE__ */ a("div", { className: "flex items-center gap-2", children: [
129
- /* @__PURE__ */ e(g, { className: "w-3.5 h-3.5 text-gray-400" }),
130
- /* @__PURE__ */ a(
131
- r,
132
- {
133
- tag: "span",
134
- className: "text-sm text-gray-600 dark:text-gray-400",
135
- children: [
136
- "<Input />",
137
- " (any input)"
138
- ]
139
- }
140
- )
141
- ] })
142
- ] })
143
- ] }) }),
144
- /* @__PURE__ */ e("div", { className: "w-px h-4 bg-gray-300 dark:bg-gray-600" }),
145
- /* @__PURE__ */ e("div", { className: "flex flex-wrap justify-center gap-2", children: ["Input", "Select", "Checkbox", "Switch", "Radio"].map(
146
- (t) => /* @__PURE__ */ e(s, { variant: "outline", color: "primary", children: t }, t)
147
- ) })
148
- ] }),
149
- /* @__PURE__ */ a("div", { className: "flex flex-col items-center gap-3", children: [
150
- /* @__PURE__ */ e(l, { children: /* @__PURE__ */ a("div", { className: "w-full p-4 sm:p-5 space-y-3", children: [
151
- /* @__PURE__ */ a("div", { className: "flex items-center gap-3", children: [
152
- /* @__PURE__ */ e("div", { className: "w-9 h-9 rounded-lg bg-emerald-100 dark:bg-emerald-900/40 flex items-center justify-center shrink-0", children: /* @__PURE__ */ e(x, { className: "w-4 h-4 text-emerald-600 dark:text-emerald-400" }) }),
153
- /* @__PURE__ */ e(
154
- r,
155
- {
156
- tag: "h3",
157
- className: "font-semibold text-emerald-700 dark:text-emerald-300",
158
- children: "useFormContext()"
159
- }
160
- )
161
- ] }),
162
- /* @__PURE__ */ a("div", { className: "space-y-2 pl-12", children: [
163
- /* @__PURE__ */ a("div", { className: "flex items-center gap-2", children: [
164
- /* @__PURE__ */ e(u, { className: "w-3.5 h-3.5 text-gray-400" }),
165
- /* @__PURE__ */ e(
166
- r,
167
- {
168
- tag: "span",
169
- className: "text-sm text-gray-600 dark:text-gray-400",
170
- children: "watch, setValue, getValues"
171
- }
172
- )
173
- ] }),
174
- /* @__PURE__ */ a("div", { className: "flex items-center gap-2", children: [
175
- /* @__PURE__ */ e(f, { className: "w-3.5 h-3.5 text-gray-400" }),
176
- /* @__PURE__ */ e(
177
- r,
178
- {
179
- tag: "span",
180
- className: "text-sm text-gray-600 dark:text-gray-400",
181
- children: "formState: errors, isDirty"
182
- }
183
- )
184
- ] }),
185
- /* @__PURE__ */ a("div", { className: "flex items-center gap-2", children: [
186
- /* @__PURE__ */ e(y, { className: "w-3.5 h-3.5 text-gray-400" }),
187
- /* @__PURE__ */ e(
188
- r,
189
- {
190
- tag: "span",
191
- className: "text-sm text-gray-600 dark:text-gray-400",
192
- children: "reset, trigger, clearErrors"
193
- }
194
- )
195
- ] })
196
- ] })
197
- ] }) }),
198
- /* @__PURE__ */ e("div", { className: "w-px h-4 bg-gray-300 dark:bg-gray-600" }),
199
- /* @__PURE__ */ a(s, { variant: "soft", color: "success", children: [
200
- /* @__PURE__ */ e(N, { className: "w-3.5 h-3.5" }),
201
- "Available in any child component"
202
- ] })
203
- ] })
204
- ] })
205
- ] })
206
- ] })
207
- ] });
208
- export {
209
- I as default
210
- };
@@ -1 +0,0 @@
1
- "use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const e=require("react/jsx-runtime"),a=require("../index-DWDUS-PU.js"),s=require("lucide-react");require("react-router-dom");require("react");require("react-dom");const l=()=>{const t=[{title:"Form Container",description:"Main wrapper that initializes react-hook-form, handles submission, and provides context to all children.",icon:e.jsx(s.Box,{className:"w-6 h-6"})},{title:"FormField Wrapper",description:"Connects any input to the form state. Handles registration, error display, and label rendering automatically.",icon:e.jsx(s.Layers,{className:"w-6 h-6"})},{title:"Validation System",description:"Centralized or per-field validation via FormValidations type. Supports required, pattern, min/max, and custom validators.",icon:e.jsx(s.Shield,{className:"w-6 h-6"})},{title:"Performance",description:"Built on react-hook-form — minimal re-renders by isolating field state. Only the changed field re-renders.",icon:e.jsx(s.Zap,{className:"w-6 h-6"})}];return e.jsxs(e.Fragment,{children:[e.jsx(a.HeroCard,{title:"Architecture Overview",description:"The tucu-ui form system is a thin, typed wrapper around react-hook-form. It provides Form, FormField, and useFormContext with centralized validation and automatic error handling.",icon:e.jsx("div",{className:"w-20 h-20 sm:w-24 sm:h-24 md:w-32 md:h-32 bg-linear-to-br from-blue-500 via-indigo-500 to-purple-500 rounded-full flex items-center justify-center shadow-lg",children:e.jsx(s.Layers,{className:"w-10 h-10 sm:w-12 sm:h-12 md:w-16 md:h-16 text-white filter drop-shadow-lg"})})}),e.jsxs("section",{className:"space-y-8",children:[e.jsxs("div",{className:"text-center",children:[e.jsx(a.Typography,{tag:"h2",className:"mb-2",children:"Core Layers"}),e.jsx(a.Typography,{tag:"p",className:"text-gray-500 dark:text-gray-400 max-w-2xl mx-auto",children:"Four architectural layers that compose the form system"})]}),e.jsx("div",{className:"grid grid-cols-1 sm:grid-cols-2 lg:grid-cols-4 gap-4 sm:gap-6",children:t.map((r,i)=>e.jsx(a.FeatureCard,{title:r.title,description:r.description,icon:r.icon},i))})]}),e.jsxs("section",{className:"space-y-8",children:[e.jsxs("div",{className:"text-center",children:[e.jsx(a.Typography,{tag:"h2",className:"mb-2",children:"Component Tree"}),e.jsx(a.Typography,{tag:"p",className:"text-gray-500 dark:text-gray-400 max-w-2xl mx-auto",children:"How Form, FormField, and useFormContext relate to each other"})]}),e.jsxs("div",{className:"flex flex-col items-center gap-3",children:[e.jsx(a.CardContainer,{children:e.jsxs("div",{className:"w-full p-4 sm:p-5 flex items-center gap-3",children:[e.jsx("div",{className:"w-10 h-10 rounded-lg bg-blue-200 dark:bg-blue-800 flex items-center justify-center shrink-0",children:e.jsx(s.Box,{className:"w-5 h-5 text-blue-600 dark:text-blue-400"})}),e.jsxs("div",{children:[e.jsx(a.Typography,{tag:"h3",className:"font-semibold text-blue-700 dark:text-blue-300",children:"<Form>"}),e.jsxs("div",{className:"flex flex-wrap gap-2 mt-1",children:[e.jsx(a.Badge,{variant:"soft",color:"info",children:"useFormProps"}),e.jsx(a.Badge,{variant:"soft",color:"info",children:"validationSchema"}),e.jsx(a.Badge,{variant:"soft",color:"info",children:"onSubmit"})]})]})]})}),e.jsx("div",{className:"w-px h-6 bg-gray-300 dark:bg-gray-600"}),e.jsxs("div",{className:"grid grid-cols-1 md:grid-cols-2 gap-4 w-full max-w-3xl",children:[e.jsxs("div",{className:"flex flex-col items-center gap-3",children:[e.jsx(a.CardContainer,{children:e.jsxs("div",{className:"w-full p-4 sm:p-5 space-y-3",children:[e.jsxs("div",{className:"flex items-center gap-3",children:[e.jsx("div",{className:"w-9 h-9 rounded-lg bg-purple-200 dark:bg-purple-900/40 flex items-center justify-center shrink-0",children:e.jsx(s.Layers,{className:"w-4 h-4 text-purple-600 dark:text-purple-400"})}),e.jsx(a.Typography,{tag:"h3",className:"font-semibold text-purple-700 dark:text-purple-300",children:"<FormField>"})]}),e.jsxs("div",{className:"space-y-2 pl-12",children:[e.jsxs("div",{className:"flex items-center gap-2",children:[e.jsx(s.GitBranch,{className:"w-3.5 h-3.5 text-gray-400"}),e.jsx(a.Typography,{tag:"span",className:"text-sm text-gray-600 dark:text-gray-400",children:"Controller (react-hook-form)"})]}),e.jsxs("div",{className:"flex items-center gap-2",children:[e.jsx(s.AlertCircle,{className:"w-3.5 h-3.5 text-gray-400"}),e.jsx(a.Typography,{tag:"span",className:"text-sm text-gray-600 dark:text-gray-400",children:"Error display (automatic)"})]}),e.jsxs("div",{className:"flex items-center gap-2",children:[e.jsx(s.TextCursorInput,{className:"w-3.5 h-3.5 text-gray-400"}),e.jsxs(a.Typography,{tag:"span",className:"text-sm text-gray-600 dark:text-gray-400",children:["<Input />"," (any input)"]})]})]})]})}),e.jsx("div",{className:"w-px h-4 bg-gray-300 dark:bg-gray-600"}),e.jsx("div",{className:"flex flex-wrap justify-center gap-2",children:["Input","Select","Checkbox","Switch","Radio"].map(r=>e.jsx(a.Badge,{variant:"outline",color:"primary",children:r},r))})]}),e.jsxs("div",{className:"flex flex-col items-center gap-3",children:[e.jsx(a.CardContainer,{children:e.jsxs("div",{className:"w-full p-4 sm:p-5 space-y-3",children:[e.jsxs("div",{className:"flex items-center gap-3",children:[e.jsx("div",{className:"w-9 h-9 rounded-lg bg-emerald-100 dark:bg-emerald-900/40 flex items-center justify-center shrink-0",children:e.jsx(s.Link,{className:"w-4 h-4 text-emerald-600 dark:text-emerald-400"})}),e.jsx(a.Typography,{tag:"h3",className:"font-semibold text-emerald-700 dark:text-emerald-300",children:"useFormContext()"})]}),e.jsxs("div",{className:"space-y-2 pl-12",children:[e.jsxs("div",{className:"flex items-center gap-2",children:[e.jsx(s.Eye,{className:"w-3.5 h-3.5 text-gray-400"}),e.jsx(a.Typography,{tag:"span",className:"text-sm text-gray-600 dark:text-gray-400",children:"watch, setValue, getValues"})]}),e.jsxs("div",{className:"flex items-center gap-2",children:[e.jsx(s.Activity,{className:"w-3.5 h-3.5 text-gray-400"}),e.jsx(a.Typography,{tag:"span",className:"text-sm text-gray-600 dark:text-gray-400",children:"formState: errors, isDirty"})]}),e.jsxs("div",{className:"flex items-center gap-2",children:[e.jsx(s.RotateCcw,{className:"w-3.5 h-3.5 text-gray-400"}),e.jsx(a.Typography,{tag:"span",className:"text-sm text-gray-600 dark:text-gray-400",children:"reset, trigger, clearErrors"})]})]})]})}),e.jsx("div",{className:"w-px h-4 bg-gray-300 dark:bg-gray-600"}),e.jsxs(a.Badge,{variant:"soft",color:"success",children:[e.jsx(s.Info,{className:"w-3.5 h-3.5"}),"Available in any child component"]})]})]})]})]})]})};exports.default=l;
@@ -1,22 +0,0 @@
1
- "use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const e=require("react/jsx-runtime"),s=require("../index-DWDUS-PU.js");require("lucide-react");require("react-router-dom");require("react");require("react-dom");const a=[{name:"Jan",users:400,sessions:2400,pageViews:4400},{name:"Feb",users:300,sessions:1398,pageViews:3210},{name:"Mar",users:500,sessions:3800,pageViews:5400},{name:"Apr",users:780,sessions:3908,pageViews:6200},{name:"May",users:890,sessions:4800,pageViews:7100},{name:"Jun",users:1200,sessions:5800,pageViews:9400},{name:"Jul",users:1500,sessions:6300,pageViews:11e3}],t=()=>e.jsxs(e.Fragment,{children:[e.jsxs("div",{className:"text-center space-y-4",children:[e.jsx(s.Typography,{tag:"h2",className:"text-base md:text-base font-semibold",children:"AreaChart"}),e.jsx(s.Typography,{tag:"p",className:"text-sm text-gray-600 dark:text-gray-400 max-w-2xl mx-auto",children:"Area chart component for visualizing volume and trends over time with gradient fills, stacking, and smooth curves."})]}),e.jsx(s.CardContainer,{className:"overflow-hidden",children:e.jsx(s.CardTitle,{title:"Basic Area Chart with Gradient",className:"mt-2 mb-2",children:e.jsx("div",{className:"w-full p-4 sm:p-6",children:e.jsx(s.AreaChart,{data:a,series:[{dataKey:"users",name:"Users"},{dataKey:"sessions",name:"Sessions"}],height:300,gradient:!0})})})}),e.jsx(s.CardContainer,{className:"overflow-hidden",children:e.jsx(s.CardTitle,{title:"Stacked Area Chart",className:"mt-2 mb-2",children:e.jsx("div",{className:"w-full p-4 sm:p-6",children:e.jsx(s.AreaChart,{data:a,series:[{dataKey:"users",name:"Users",stackId:"a"},{dataKey:"sessions",name:"Sessions",stackId:"a"},{dataKey:"pageViews",name:"Page Views",stackId:"a"}],stacked:!0,height:300})})})}),e.jsx(s.CardContainer,{className:"overflow-hidden",children:e.jsx(s.CardTitle,{title:"Without Gradient (Flat)",className:"mt-2 mb-2",children:e.jsx("div",{className:"w-full p-4 sm:p-6",children:e.jsx(s.AreaChart,{data:a,series:[{dataKey:"users",name:"Users"},{dataKey:"sessions",name:"Sessions"}],gradient:!1,curved:!1,height:300})})})}),e.jsx(s.CardContainer,{className:"overflow-hidden",children:e.jsx(s.CardTitle,{title:"Usage",className:"mt-2 mb-2",children:e.jsx("div",{className:"w-full p-4 sm:p-6",children:e.jsx(s.CodeBlock,{code:`import { AreaChart } from '@e-burgos/tucu-ui';
2
-
3
- const data = [
4
- { name: 'Jan', users: 400, sessions: 2400 },
5
- { name: 'Feb', users: 300, sessions: 1398 },
6
- { name: 'Mar', users: 500, sessions: 3800 },
7
- ];
8
-
9
- <AreaChart
10
- data={data}
11
- series={[
12
- { dataKey: 'users', name: 'Users' },
13
- { dataKey: 'sessions', name: 'Sessions' },
14
- ]}
15
- height={300}
16
- curved
17
- gradient
18
- stacked={false}
19
- showGrid
20
- showTooltip
21
- showLegend
22
- />`,language:"tsx"})})})}),e.jsx(s.PropPlayground,{componentName:"AreaChart",defaultValues:{height:300,curved:!0,gradient:!0,stacked:!1,showGrid:!0,showTooltip:!0,showLegend:!0,animate:!0},excludeProps:["data","series","colors","className","xAxisKey","emptyMessage"],children:r=>e.jsx(s.AreaChart,{data:a,series:[{dataKey:"users",name:"Users"},{dataKey:"sessions",name:"Sessions"}],...r})}),e.jsx(s.AutoPropsTable,{componentName:"AreaChart"})]});exports.default=t;
@@ -1,132 +0,0 @@
1
- import { jsxs as i, Fragment as o, jsx as e } from "react/jsx-runtime";
2
- import { T as n, C as s, a, m as t, c as m, P as l, A as c } from "../index-DoxeCFUJ.js";
3
- import "lucide-react";
4
- import "react-router-dom";
5
- import "react";
6
- import "react-dom";
7
- const r = [
8
- { name: "Jan", users: 400, sessions: 2400, pageViews: 4400 },
9
- { name: "Feb", users: 300, sessions: 1398, pageViews: 3210 },
10
- { name: "Mar", users: 500, sessions: 3800, pageViews: 5400 },
11
- { name: "Apr", users: 780, sessions: 3908, pageViews: 6200 },
12
- { name: "May", users: 890, sessions: 4800, pageViews: 7100 },
13
- { name: "Jun", users: 1200, sessions: 5800, pageViews: 9400 },
14
- { name: "Jul", users: 1500, sessions: 6300, pageViews: 11e3 }
15
- ], y = () => /* @__PURE__ */ i(o, { children: [
16
- /* @__PURE__ */ i("div", { className: "text-center space-y-4", children: [
17
- /* @__PURE__ */ e(n, { tag: "h2", className: "text-base md:text-base font-semibold", children: "AreaChart" }),
18
- /* @__PURE__ */ e(
19
- n,
20
- {
21
- tag: "p",
22
- className: "text-sm text-gray-600 dark:text-gray-400 max-w-2xl mx-auto",
23
- children: "Area chart component for visualizing volume and trends over time with gradient fills, stacking, and smooth curves."
24
- }
25
- )
26
- ] }),
27
- /* @__PURE__ */ e(s, { className: "overflow-hidden", children: /* @__PURE__ */ e(a, { title: "Basic Area Chart with Gradient", className: "mt-2 mb-2", children: /* @__PURE__ */ e("div", { className: "w-full p-4 sm:p-6", children: /* @__PURE__ */ e(
28
- t,
29
- {
30
- data: r,
31
- series: [
32
- { dataKey: "users", name: "Users" },
33
- { dataKey: "sessions", name: "Sessions" }
34
- ],
35
- height: 300,
36
- gradient: !0
37
- }
38
- ) }) }) }),
39
- /* @__PURE__ */ e(s, { className: "overflow-hidden", children: /* @__PURE__ */ e(a, { title: "Stacked Area Chart", className: "mt-2 mb-2", children: /* @__PURE__ */ e("div", { className: "w-full p-4 sm:p-6", children: /* @__PURE__ */ e(
40
- t,
41
- {
42
- data: r,
43
- series: [
44
- { dataKey: "users", name: "Users", stackId: "a" },
45
- { dataKey: "sessions", name: "Sessions", stackId: "a" },
46
- { dataKey: "pageViews", name: "Page Views", stackId: "a" }
47
- ],
48
- stacked: !0,
49
- height: 300
50
- }
51
- ) }) }) }),
52
- /* @__PURE__ */ e(s, { className: "overflow-hidden", children: /* @__PURE__ */ e(a, { title: "Without Gradient (Flat)", className: "mt-2 mb-2", children: /* @__PURE__ */ e("div", { className: "w-full p-4 sm:p-6", children: /* @__PURE__ */ e(
53
- t,
54
- {
55
- data: r,
56
- series: [
57
- { dataKey: "users", name: "Users" },
58
- { dataKey: "sessions", name: "Sessions" }
59
- ],
60
- gradient: !1,
61
- curved: !1,
62
- height: 300
63
- }
64
- ) }) }) }),
65
- /* @__PURE__ */ e(s, { className: "overflow-hidden", children: /* @__PURE__ */ e(a, { title: "Usage", className: "mt-2 mb-2", children: /* @__PURE__ */ e("div", { className: "w-full p-4 sm:p-6", children: /* @__PURE__ */ e(
66
- m,
67
- {
68
- code: `import { AreaChart } from '@e-burgos/tucu-ui';
69
-
70
- const data = [
71
- { name: 'Jan', users: 400, sessions: 2400 },
72
- { name: 'Feb', users: 300, sessions: 1398 },
73
- { name: 'Mar', users: 500, sessions: 3800 },
74
- ];
75
-
76
- <AreaChart
77
- data={data}
78
- series={[
79
- { dataKey: 'users', name: 'Users' },
80
- { dataKey: 'sessions', name: 'Sessions' },
81
- ]}
82
- height={300}
83
- curved
84
- gradient
85
- stacked={false}
86
- showGrid
87
- showTooltip
88
- showLegend
89
- />`,
90
- language: "tsx"
91
- }
92
- ) }) }) }),
93
- /* @__PURE__ */ e(
94
- l,
95
- {
96
- componentName: "AreaChart",
97
- defaultValues: {
98
- height: 300,
99
- curved: !0,
100
- gradient: !0,
101
- stacked: !1,
102
- showGrid: !0,
103
- showTooltip: !0,
104
- showLegend: !0,
105
- animate: !0
106
- },
107
- excludeProps: [
108
- "data",
109
- "series",
110
- "colors",
111
- "className",
112
- "xAxisKey",
113
- "emptyMessage"
114
- ],
115
- children: (d) => /* @__PURE__ */ e(
116
- t,
117
- {
118
- data: r,
119
- series: [
120
- { dataKey: "users", name: "Users" },
121
- { dataKey: "sessions", name: "Sessions" }
122
- ],
123
- ...d
124
- }
125
- )
126
- }
127
- ),
128
- /* @__PURE__ */ e(c, { componentName: "AreaChart" })
129
- ] });
130
- export {
131
- y as default
132
- };
@@ -1,18 +0,0 @@
1
- "use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const e=require("react/jsx-runtime"),a=require("../index-DWDUS-PU.js"),o=require("lucide-react");require("react-router-dom");require("react");require("react-dom");const r=require("../1-CArqgiQa.js"),s=()=>e.jsxs(e.Fragment,{children:[e.jsx(a.HeroCard,{title:"AuthorCard",description:`A card component for displaying author information with avatar, name,
2
- and role.`,icon:e.jsx("div",{className:"w-16 h-16 sm:w-20 sm:h-20 md:w-24 md:h-24 bg-linear-to-br from-violet-500 to-purple-500 rounded-full flex items-center justify-center shadow-lg",children:e.jsx(o.UserCircle,{className:"w-8 h-8 sm:w-10 sm:h-10 md:w-12 md:h-12 text-white filter drop-shadow-lg"})})}),e.jsx(a.CardContainer,{className:"overflow-hidden",children:e.jsx(a.CardTitle,{title:"Basic Examples",className:"mt-2 mb-2",children:e.jsx("div",{className:"w-full p-4 sm:p-6",children:e.jsxs("div",{className:"grid grid-cols-1 md:grid-cols-2 gap-4",children:[e.jsxs(a.CardContainer,{className:"p-4",children:[e.jsx(a.Typography,{tag:"h5",className:"mb-3",children:"With Name and Role"}),e.jsx(a.AuthorCard,{image:r.avatar1Img,name:"John Doe",authorRole:"Senior Developer"})]}),e.jsxs(a.CardContainer,{className:"p-4",children:[e.jsx(a.Typography,{tag:"h5",className:"mb-3",children:"With Name Only"}),e.jsx(a.AuthorCard,{image:r.avatar1Img,name:"Jane Smith"})]}),e.jsxs(a.CardContainer,{className:"p-4",children:[e.jsx(a.Typography,{tag:"h5",className:"mb-3",children:"Avatar Only"}),e.jsx(a.AuthorCard,{image:r.avatar1Img})]})]})})})}),e.jsx(a.PropPlayground,{componentName:"AuthorCard",defaultValues:{name:"John Doe",authorRole:"Developer",image:"https://randomuser.me/api/portraits/men/1.jpg"},excludeProps:[],children:t=>e.jsx(a.AuthorCard,{...t})}),e.jsx(a.AutoPropsTable,{componentName:"AuthorCard"}),e.jsx(a.CardContainer,{className:"overflow-hidden",children:e.jsx(a.CardTitle,{title:"Code Example",className:"mt-2 mb-2",children:e.jsx("div",{className:"w-full p-4 sm:p-6",children:e.jsx(a.CodeBlock,{language:"tsx",code:`import { AuthorCard } from '@e-burgos/tucu-ui';
3
-
4
- // With name and role
5
- <AuthorCard
6
- image="/path/to/avatar.jpg"
7
- name="John Doe"
8
- authorRole="Senior Developer"
9
- />
10
-
11
- // With name only
12
- <AuthorCard
13
- image="/path/to/avatar.jpg"
14
- name="Jane Smith"
15
- />
16
-
17
- // Avatar only
18
- <AuthorCard image="/path/to/avatar.jpg" />`})})})})]});exports.default=s;
@@ -1,79 +0,0 @@
1
- import { jsxs as e, Fragment as s, jsx as a } from "react/jsx-runtime";
2
- import { H as n, C as r, a as l, T as t, G as o, P as d, A as h, c } from "../index-DoxeCFUJ.js";
3
- import { UserCircle as p } from "lucide-react";
4
- import "react-router-dom";
5
- import "react";
6
- import "react-dom";
7
- import { a as m } from "../1-Df9CGZha.js";
8
- const A = () => /* @__PURE__ */ e(s, { children: [
9
- /* @__PURE__ */ a(
10
- n,
11
- {
12
- title: "AuthorCard",
13
- description: `A card component for displaying author information with avatar, name,
14
- and role.`,
15
- icon: /* @__PURE__ */ a("div", { className: "w-16 h-16 sm:w-20 sm:h-20 md:w-24 md:h-24 bg-linear-to-br from-violet-500 to-purple-500 rounded-full flex items-center justify-center shadow-lg", children: /* @__PURE__ */ a(p, { className: "w-8 h-8 sm:w-10 sm:h-10 md:w-12 md:h-12 text-white filter drop-shadow-lg" }) })
16
- }
17
- ),
18
- /* @__PURE__ */ a(r, { className: "overflow-hidden", children: /* @__PURE__ */ a(l, { title: "Basic Examples", className: "mt-2 mb-2", children: /* @__PURE__ */ a("div", { className: "w-full p-4 sm:p-6", children: /* @__PURE__ */ e("div", { className: "grid grid-cols-1 md:grid-cols-2 gap-4", children: [
19
- /* @__PURE__ */ e(r, { className: "p-4", children: [
20
- /* @__PURE__ */ a(t, { tag: "h5", className: "mb-3", children: "With Name and Role" }),
21
- /* @__PURE__ */ a(
22
- o,
23
- {
24
- image: m,
25
- name: "John Doe",
26
- authorRole: "Senior Developer"
27
- }
28
- )
29
- ] }),
30
- /* @__PURE__ */ e(r, { className: "p-4", children: [
31
- /* @__PURE__ */ a(t, { tag: "h5", className: "mb-3", children: "With Name Only" }),
32
- /* @__PURE__ */ a(o, { image: m, name: "Jane Smith" })
33
- ] }),
34
- /* @__PURE__ */ e(r, { className: "p-4", children: [
35
- /* @__PURE__ */ a(t, { tag: "h5", className: "mb-3", children: "Avatar Only" }),
36
- /* @__PURE__ */ a(o, { image: m })
37
- ] })
38
- ] }) }) }) }),
39
- /* @__PURE__ */ a(
40
- d,
41
- {
42
- componentName: "AuthorCard",
43
- defaultValues: {
44
- name: "John Doe",
45
- authorRole: "Developer",
46
- image: "https://randomuser.me/api/portraits/men/1.jpg"
47
- },
48
- excludeProps: [],
49
- children: (i) => /* @__PURE__ */ a(o, { ...i })
50
- }
51
- ),
52
- /* @__PURE__ */ a(h, { componentName: "AuthorCard" }),
53
- /* @__PURE__ */ a(r, { className: "overflow-hidden", children: /* @__PURE__ */ a(l, { title: "Code Example", className: "mt-2 mb-2", children: /* @__PURE__ */ a("div", { className: "w-full p-4 sm:p-6", children: /* @__PURE__ */ a(
54
- c,
55
- {
56
- language: "tsx",
57
- code: `import { AuthorCard } from '@e-burgos/tucu-ui';
58
-
59
- // With name and role
60
- <AuthorCard
61
- image="/path/to/avatar.jpg"
62
- name="John Doe"
63
- authorRole="Senior Developer"
64
- />
65
-
66
- // With name only
67
- <AuthorCard
68
- image="/path/to/avatar.jpg"
69
- name="Jane Smith"
70
- />
71
-
72
- // Avatar only
73
- <AuthorCard image="/path/to/avatar.jpg" />`
74
- }
75
- ) }) }) })
76
- ] });
77
- export {
78
- A as default
79
- };
@@ -1,89 +0,0 @@
1
- import { jsxs as s, Fragment as d, jsx as a } from "react/jsx-runtime";
2
- import { H as c, C as i, a as t, T as l, X as e, P as o, A as n, c as g } from "../index-DoxeCFUJ.js";
3
- import { CircleUser as h } from "lucide-react";
4
- import "react-router-dom";
5
- import "react";
6
- import "react-dom";
7
- import { a as r } from "../1-Df9CGZha.js";
8
- const b = () => /* @__PURE__ */ s(d, { children: [
9
- /* @__PURE__ */ a(
10
- c,
11
- {
12
- title: "Avatar",
13
- description: `A versatile avatar component for displaying user profile images with
14
- multiple sizes and shapes.`,
15
- icon: /* @__PURE__ */ a("div", { className: "w-16 h-16 sm:w-20 sm:h-20 md:w-24 md:h-24 bg-linear-to-br from-emerald-500 to-teal-500 rounded-full flex items-center justify-center shadow-lg", children: /* @__PURE__ */ a(h, { className: "w-8 h-8 sm:w-10 sm:h-10 md:w-12 md:h-12 text-white filter drop-shadow-lg" }) })
16
- }
17
- ),
18
- /* @__PURE__ */ a(i, { className: "overflow-hidden", children: /* @__PURE__ */ a(t, { title: "Basic Examples", className: "mt-2 mb-2", children: /* @__PURE__ */ a("div", { className: "w-full p-4 sm:p-6", children: /* @__PURE__ */ s("div", { className: "grid grid-cols-1 md:grid-cols-2 gap-4", children: [
19
- /* @__PURE__ */ s(i, { className: "p-4", children: [
20
- /* @__PURE__ */ a(l, { tag: "h5", className: "mb-3", children: "Default Avatar" }),
21
- /* @__PURE__ */ a(e, { image: r, alt: "User avatar" })
22
- ] }),
23
- /* @__PURE__ */ s(i, { className: "p-4", children: [
24
- /* @__PURE__ */ a(l, { tag: "h5", className: "mb-3", children: "Without Border" }),
25
- /* @__PURE__ */ a(e, { image: r, alt: "User avatar", border: !1 })
26
- ] })
27
- ] }) }) }) }),
28
- /* @__PURE__ */ a(i, { className: "overflow-hidden", children: /* @__PURE__ */ a(t, { title: "Variants", className: "mt-2 mb-2", children: /* @__PURE__ */ a("div", { className: "w-full p-4 sm:p-6", children: /* @__PURE__ */ s("div", { className: "space-y-6", children: [
29
- /* @__PURE__ */ s("div", { children: [
30
- /* @__PURE__ */ a(l, { tag: "h5", className: "mb-3", children: "Sizes" }),
31
- /* @__PURE__ */ s("div", { className: "flex items-center gap-4", children: [
32
- /* @__PURE__ */ a(e, { image: r, alt: "XS", size: "xs" }),
33
- /* @__PURE__ */ a(e, { image: r, alt: "SM", size: "sm" }),
34
- /* @__PURE__ */ a(e, { image: r, alt: "MD", size: "md" }),
35
- /* @__PURE__ */ a(e, { image: r, alt: "LG", size: "lg" }),
36
- /* @__PURE__ */ a(e, { image: r, alt: "XL", size: "xl" })
37
- ] })
38
- ] }),
39
- /* @__PURE__ */ s("div", { children: [
40
- /* @__PURE__ */ a(l, { tag: "h5", className: "mb-3", children: "Shapes" }),
41
- /* @__PURE__ */ s("div", { className: "flex items-center gap-4", children: [
42
- /* @__PURE__ */ a(e, { image: r, alt: "Circle", shape: "circle" }),
43
- /* @__PURE__ */ a(e, { image: r, alt: "Rounded", shape: "rounded" })
44
- ] })
45
- ] })
46
- ] }) }) }) }),
47
- /* @__PURE__ */ a(
48
- o,
49
- {
50
- componentName: "Avatar",
51
- defaultValues: {
52
- size: "md",
53
- shape: "circle",
54
- border: !0,
55
- image: "https://randomuser.me/api/portraits/men/1.jpg",
56
- alt: "Avatar"
57
- },
58
- children: (m) => /* @__PURE__ */ a(e, { ...m })
59
- }
60
- ),
61
- /* @__PURE__ */ a(n, { componentName: "Avatar" }),
62
- /* @__PURE__ */ a(i, { className: "overflow-hidden", children: /* @__PURE__ */ a(t, { title: "Code Example", className: "mt-2 mb-2", children: /* @__PURE__ */ a("div", { className: "w-full p-4 sm:p-6", children: /* @__PURE__ */ a(
63
- g,
64
- {
65
- language: "tsx",
66
- code: `import { Avatar } from '@e-burgos/tucu-ui';
67
-
68
- // Basic usage
69
- <Avatar image="/path/to/image.jpg" alt="User name" />
70
-
71
- // Different sizes
72
- <Avatar image={image} alt="User" size="xs" />
73
- <Avatar image={image} alt="User" size="sm" />
74
- <Avatar image={image} alt="User" size="md" />
75
- <Avatar image={image} alt="User" size="lg" />
76
- <Avatar image={image} alt="User" size="xl" />
77
-
78
- // Different shapes
79
- <Avatar image={image} alt="User" shape="circle" />
80
- <Avatar image={image} alt="User" shape="rounded" />
81
-
82
- // Without border
83
- <Avatar image={image} alt="User" border={false} />`
84
- }
85
- ) }) }) })
86
- ] });
87
- export {
88
- b as default
89
- };
@@ -1,19 +0,0 @@
1
- "use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const a=require("react/jsx-runtime"),e=require("../index-DWDUS-PU.js"),i=require("lucide-react");require("react-router-dom");require("react");require("react-dom");const s=require("../1-CArqgiQa.js"),t=()=>a.jsxs(a.Fragment,{children:[a.jsx(e.HeroCard,{title:"Avatar",description:`A versatile avatar component for displaying user profile images with
2
- multiple sizes and shapes.`,icon:a.jsx("div",{className:"w-16 h-16 sm:w-20 sm:h-20 md:w-24 md:h-24 bg-linear-to-br from-emerald-500 to-teal-500 rounded-full flex items-center justify-center shadow-lg",children:a.jsx(i.CircleUser,{className:"w-8 h-8 sm:w-10 sm:h-10 md:w-12 md:h-12 text-white filter drop-shadow-lg"})})}),a.jsx(e.CardContainer,{className:"overflow-hidden",children:a.jsx(e.CardTitle,{title:"Basic Examples",className:"mt-2 mb-2",children:a.jsx("div",{className:"w-full p-4 sm:p-6",children:a.jsxs("div",{className:"grid grid-cols-1 md:grid-cols-2 gap-4",children:[a.jsxs(e.CardContainer,{className:"p-4",children:[a.jsx(e.Typography,{tag:"h5",className:"mb-3",children:"Default Avatar"}),a.jsx(e.Avatar,{image:s.avatar1Img,alt:"User avatar"})]}),a.jsxs(e.CardContainer,{className:"p-4",children:[a.jsx(e.Typography,{tag:"h5",className:"mb-3",children:"Without Border"}),a.jsx(e.Avatar,{image:s.avatar1Img,alt:"User avatar",border:!1})]})]})})})}),a.jsx(e.CardContainer,{className:"overflow-hidden",children:a.jsx(e.CardTitle,{title:"Variants",className:"mt-2 mb-2",children:a.jsx("div",{className:"w-full p-4 sm:p-6",children:a.jsxs("div",{className:"space-y-6",children:[a.jsxs("div",{children:[a.jsx(e.Typography,{tag:"h5",className:"mb-3",children:"Sizes"}),a.jsxs("div",{className:"flex items-center gap-4",children:[a.jsx(e.Avatar,{image:s.avatar1Img,alt:"XS",size:"xs"}),a.jsx(e.Avatar,{image:s.avatar1Img,alt:"SM",size:"sm"}),a.jsx(e.Avatar,{image:s.avatar1Img,alt:"MD",size:"md"}),a.jsx(e.Avatar,{image:s.avatar1Img,alt:"LG",size:"lg"}),a.jsx(e.Avatar,{image:s.avatar1Img,alt:"XL",size:"xl"})]})]}),a.jsxs("div",{children:[a.jsx(e.Typography,{tag:"h5",className:"mb-3",children:"Shapes"}),a.jsxs("div",{className:"flex items-center gap-4",children:[a.jsx(e.Avatar,{image:s.avatar1Img,alt:"Circle",shape:"circle"}),a.jsx(e.Avatar,{image:s.avatar1Img,alt:"Rounded",shape:"rounded"})]})]})]})})})}),a.jsx(e.PropPlayground,{componentName:"Avatar",defaultValues:{size:"md",shape:"circle",border:!0,image:"https://randomuser.me/api/portraits/men/1.jpg",alt:"Avatar"},children:r=>a.jsx(e.Avatar,{...r})}),a.jsx(e.AutoPropsTable,{componentName:"Avatar"}),a.jsx(e.CardContainer,{className:"overflow-hidden",children:a.jsx(e.CardTitle,{title:"Code Example",className:"mt-2 mb-2",children:a.jsx("div",{className:"w-full p-4 sm:p-6",children:a.jsx(e.CodeBlock,{language:"tsx",code:`import { Avatar } from '@e-burgos/tucu-ui';
3
-
4
- // Basic usage
5
- <Avatar image="/path/to/image.jpg" alt="User name" />
6
-
7
- // Different sizes
8
- <Avatar image={image} alt="User" size="xs" />
9
- <Avatar image={image} alt="User" size="sm" />
10
- <Avatar image={image} alt="User" size="md" />
11
- <Avatar image={image} alt="User" size="lg" />
12
- <Avatar image={image} alt="User" size="xl" />
13
-
14
- // Different shapes
15
- <Avatar image={image} alt="User" shape="circle" />
16
- <Avatar image={image} alt="User" shape="rounded" />
17
-
18
- // Without border
19
- <Avatar image={image} alt="User" border={false} />`})})})})]});exports.default=t;
@@ -1,6 +0,0 @@
1
- "use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const e=require("react/jsx-runtime"),a=require("../index-DWDUS-PU.js"),l=require("lucide-react");require("react-router-dom");require("react");require("react-dom");const d=[{id:"base",name:"Base",type:"css",desc:"Spatial radial gradient. Default body/window background that adapts between light and dark.",usage:"Body, root window, app shell"},{id:"sonoma",name:"Sonoma",type:"css",desc:"Flat neutral surface matching macOS Sonoma system colors.",usage:"System-like flat interfaces"},{id:"radial",name:"Radial",type:"css",desc:"Vibrant radial gradient with brand colors for expressive surfaces.",usage:"Hero sections, expressive cards"},{id:"aurora",name:"Aurora",type:"css",desc:"Spatial aurora with animated-style blurred color orbs.",usage:"Landing pages, immersive UIs"},{id:"depth",name:"Depth",type:"css",desc:"Sober linear gradient, data-focused and subtle.",usage:"Dashboards, data-heavy layouts"},{id:"demo",name:"Demo",type:"css",desc:"Expressive dual-ellipse gradient for showcases and presentations.",usage:"Demos, showcases, marketing"},{id:"window",name:"Window",type:"css",desc:"Frosted glass surface with subtle backdrop blur.",usage:"Modal backdrops, floating panels"},{id:"wave",name:"Wave",type:"svg",desc:"Full-width decorative flowing shapes for desktop/tablet viewports.",usage:"Hero sections, landing pages, desktop full-screen"},{id:"wallpaper",name:"Wallpaper",type:"svg",desc:"Compact landscape format for banners and contained sections.",usage:"Banners, feature sections, contained backgrounds"},{id:"mobile",name:"Mobile",type:"svg",desc:"Portrait-oriented asset optimized for mobile viewports.",usage:"Mobile screens, narrow containers, portrait layouts"}],o=d.filter(t=>t.type==="css"),n=()=>{const{mode:t}=a.useTheme(),r=t==="dark";return e.jsxs("div",{className:"space-y-8 max-w-6xl sm:space-y-12 w-full mx-auto px-4 sm:px-6 lg:px-8 relative pt-8 lg:pt-12",children:[e.jsx(a.HeroCard,{title:"Backgrounds",description:"Unified background system with 10 variants available across all theme layouts. CSS-only gradients and SVG assets that adapt automatically between light and dark modes.",icon:e.jsx("div",{className:"w-20 h-20 sm:w-24 sm:h-24 md:w-32 md:h-32 bg-linear-to-br from-cyan-400 via-blue-500 to-indigo-600 rounded-full flex items-center justify-center shadow-lg border border-cyan-400/50",children:e.jsx(l.Image,{className:"w-10 h-10 sm:w-12 sm:h-12 md:w-16 md:h-16 text-white filter drop-shadow-lg"})})}),e.jsx(a.CardContainer,{className:"overflow-hidden",children:e.jsx(a.CardTitle,{title:"All Background Variants",className:"mt-2 mb-2",children:e.jsxs("div",{className:"w-full p-4 sm:p-6",children:[e.jsxs(a.Typography,{tag:"p",className:"text-sm text-gray-500 dark:text-gray-400 mb-6",children:["The"," ",e.jsx("code",{className:"text-xs px-1.5 py-0.5 rounded bg-gray-100 dark:bg-gray-800 font-mono",children:"ThemeBackground"})," ","component supports ",e.jsx("strong",{children:"10 variants"})," (7 CSS-only + 3 SVG assets). All are available in every theme layout via the"," ",e.jsx("code",{className:"text-xs px-1.5 py-0.5 rounded bg-gray-100 dark:bg-gray-800 font-mono",children:"backgroundVariant"})," ","store value."]}),e.jsx(a.BasicTable,{columns:[{key:"name",label:"Variant"},{key:"type",label:"Type",className:"font-mono"},{key:"desc",label:"Description"},{key:"usage",label:"Usage"}],data:d.map(s=>({name:s.name,type:s.type.toUpperCase(),desc:s.desc,usage:s.usage})),hoverable:!0,striped:!1})]})})}),e.jsx(a.CardContainer,{className:"overflow-hidden",children:e.jsx(a.CardTitle,{title:"CSS Variants",className:"mt-2 mb-2",children:e.jsxs("div",{className:"w-full p-4 sm:p-6",children:[e.jsx(a.Typography,{tag:"p",className:"text-sm text-gray-500 dark:text-gray-400 mb-4",children:"Pure CSS backgrounds generated with gradients and custom properties. No image downloads required."}),e.jsx("div",{className:"grid grid-cols-1 sm:grid-cols-2 lg:grid-cols-3 xl:grid-cols-4 gap-4",children:o.map(s=>e.jsxs("div",{className:"space-y-2",children:[e.jsx("div",{className:"relative w-full h-32 rounded-xl overflow-hidden border border-border",children:e.jsx(a.ThemeBackground,{mode:"absolute",variant:s.id,className:"!z-0"})}),e.jsx("p",{className:"text-xs font-semibold text-center text-gray-700 dark:text-gray-300",children:s.name}),e.jsx("p",{className:"text-[10px] text-center text-gray-400",children:s.desc})]},s.id))})]})})}),e.jsx(a.CardContainer,{className:"overflow-hidden",children:e.jsx(a.CardTitle,{title:"SVG Asset Variants",className:"mt-2 mb-2",children:e.jsxs("div",{className:"w-full p-4 sm:p-6",children:[e.jsx(a.Typography,{tag:"p",className:"text-sm text-gray-500 dark:text-gray-400 mb-4",children:"SVG backgrounds loaded from CDN. Optimized for specific viewport sizes. The component handles loading states and fallback gracefully."}),e.jsxs("div",{className:"space-y-6",children:[e.jsxs("div",{className:"space-y-2",children:[e.jsxs("p",{className:"text-sm font-semibold text-gray-700 dark:text-gray-300",children:["Wave"," ",e.jsx("span",{className:"text-[10px] font-mono font-normal text-gray-400",children:"1512 × 982 — Landscape (desktop full-screen)"})]}),e.jsx("div",{className:"relative rounded-xl overflow-hidden border border-border h-[200px]",children:e.jsx(a.ThemeBackground,{mode:"absolute",variant:"wave",className:"!z-0"})}),e.jsx("div",{className:"p-2 rounded-lg bg-gray-100 dark:bg-gray-800/50",children:e.jsxs("p",{className:"text-[11px] font-mono text-gray-500 dark:text-gray-400 truncate",children:[e.jsx("span",{className:"text-gray-700 dark:text-gray-300",children:"url:"})," ",a.getBackgroundUrl("wave",r)]})})]}),e.jsxs("div",{className:"space-y-2",children:[e.jsxs("p",{className:"text-sm font-semibold text-gray-700 dark:text-gray-300",children:["Wallpaper"," ",e.jsx("span",{className:"text-[10px] font-mono font-normal text-gray-400",children:"1080 × 560 — Landscape (contained sections)"})]}),e.jsx("div",{className:"relative rounded-xl overflow-hidden border border-border h-[180px]",children:e.jsx(a.ThemeBackground,{mode:"absolute",variant:"wallpaper",className:"!z-0"})}),e.jsx("div",{className:"p-2 rounded-lg bg-gray-100 dark:bg-gray-800/50",children:e.jsxs("p",{className:"text-[11px] font-mono text-gray-500 dark:text-gray-400 truncate",children:[e.jsx("span",{className:"text-gray-700 dark:text-gray-300",children:"url:"})," ",a.getBackgroundUrl("wallpaper",r)]})})]}),e.jsxs("div",{className:"space-y-2",children:[e.jsxs("p",{className:"text-sm font-semibold text-gray-700 dark:text-gray-300",children:["Mobile"," ",e.jsx("span",{className:"text-[10px] font-mono font-normal text-gray-400",children:"402 × 874 — Portrait (mobile screens)"})]}),e.jsx("div",{className:"flex justify-center",children:e.jsx("div",{className:"relative rounded-xl overflow-hidden border border-border w-[180px] h-[390px]",children:e.jsx(a.ThemeBackground,{mode:"absolute",variant:"mobile",className:"!z-0"})})}),e.jsx("div",{className:"p-2 rounded-lg bg-gray-100 dark:bg-gray-800/50",children:e.jsxs("p",{className:"text-[11px] font-mono text-gray-500 dark:text-gray-400 truncate",children:[e.jsx("span",{className:"text-gray-700 dark:text-gray-300",children:"url:"})," ",a.getBackgroundUrl("mobile",r)]})})]})]})]})})}),e.jsx(a.CardContainer,{className:"overflow-hidden",children:e.jsx(a.CardTitle,{title:"Usage",className:"mt-2 mb-2",children:e.jsxs("div",{className:"w-full p-4 sm:p-6 space-y-4",children:[e.jsxs(a.Typography,{tag:"p",className:"text-sm text-gray-500 dark:text-gray-400",children:["Use"," ",e.jsx("code",{className:"text-xs px-1.5 py-0.5 rounded bg-gray-100 dark:bg-gray-800 font-mono",children:"ThemeBackground"})," ","with two positioning modes:"]}),e.jsxs("div",{className:"grid grid-cols-1 md:grid-cols-2 gap-4",children:[e.jsxs("div",{className:"p-4 rounded-xl border border-border space-y-2",children:[e.jsx("p",{className:"text-xs font-semibold text-gray-700 dark:text-gray-300",children:"Fixed Mode (Default Layouts)"}),e.jsx("p",{className:"text-[11px] text-gray-500 dark:text-gray-400",children:"Fullscreen fixed layer behind content. Content is wrapped automatically."}),e.jsx("pre",{className:"text-[10px] font-mono bg-gray-100 dark:bg-gray-800 rounded-lg p-3 overflow-x-auto",children:`<ThemeBackground>
2
- {children}
3
- </ThemeBackground>`})]}),e.jsxs("div",{className:"p-4 rounded-xl border border-border space-y-2",children:[e.jsx("p",{className:"text-xs font-semibold text-gray-700 dark:text-gray-300",children:"Absolute Mode (macOS Layouts)"}),e.jsx("p",{className:"text-[11px] text-gray-500 dark:text-gray-400",children:"Absolute layer within parent container. No children wrapper."}),e.jsx("pre",{className:"text-[10px] font-mono bg-gray-100 dark:bg-gray-800 rounded-lg p-3 overflow-x-auto",children:`<div className="relative">
4
- <ThemeBackground mode="absolute" />
5
- {/* your content */}
6
- </div>`})]})]})]})})}),e.jsx(a.CardContainer,{className:"overflow-hidden",children:e.jsx(a.CardTitle,{title:"ThemeBackground Props",className:"mt-2 mb-2",children:e.jsx("div",{className:"w-full p-4 sm:p-6",children:e.jsx(a.BasicTable,{columns:[{key:"prop",label:"Prop"},{key:"type",label:"Type",className:"font-mono text-xs"},{key:"default",label:"Default",className:"font-mono"},{key:"desc",label:"Description"}],data:[{prop:"mode",type:"'fixed' | 'absolute'",default:"'fixed'",desc:"Positioning mode."},{prop:"variant",type:"BackgroundVariant",default:"store value",desc:"Override variant (defaults to theme store)."},{prop:"cdnBase",type:"string",default:"CDN URL",desc:"Override CDN base for SVG assets."},{prop:"className",type:"string",default:"—",desc:"Additional CSS class for the bg container."},{prop:"style",type:"CSSProperties",default:"—",desc:"Inline styles for the bg container."},{prop:"children",type:"ReactNode",default:"—",desc:"Content (only wrapped in fixed mode)."}],hoverable:!0,striped:!1})})})}),e.jsx(a.CardContainer,{className:"overflow-hidden",children:e.jsx(a.CardTitle,{title:"Viewport Recommendations",className:"mt-2 mb-2",children:e.jsxs("div",{className:"w-full p-4 sm:p-6",children:[e.jsx(a.Typography,{tag:"p",className:"text-sm text-gray-500 dark:text-gray-400 mb-4",children:"Recommended SVG background variant per viewport breakpoint for responsive implementations."}),e.jsx(a.BasicTable,{columns:[{key:"viewport",label:"Viewport"},{key:"breakpoint",label:"Breakpoint",className:"font-mono"},{key:"variant",label:"Variant"},{key:"asset",label:"Asset",className:"font-mono"}],data:[{viewport:"Mobile",breakpoint:"< 640px",variant:"mobile",asset:`${r?"dark":"light"}-mobile.svg`},{viewport:"Tablet",breakpoint:"640–1024px",variant:"wallpaper",asset:`${r?"dark":"light"}-wallpaper.svg`},{viewport:"Desktop",breakpoint:"> 1024px",variant:"wave",asset:`${r?"dark":"light"}-wave.svg`},{viewport:"Any",breakpoint:"All",variant:"CSS variants",asset:"No asset needed"}],hoverable:!0,striped:!1})]})})})]})};exports.default=n;