@e-burgos/tucu-ui 2.6.0 → 2.7.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (1472) hide show
  1. package/CHANGELOG.md +42 -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/internal/cjs-esm-interop.mjs +9 -0
  323. package/hooks/use-anchor-scroll.mjs +23 -0
  324. package/hooks/use-breakpoint.mjs +15 -0
  325. package/hooks/use-click-away.mjs +8 -0
  326. package/hooks/use-copy-to-clipboard.mjs +8 -0
  327. package/hooks/use-element-size.mjs +19 -0
  328. package/hooks/use-event-listener.mjs +19 -0
  329. package/hooks/use-grid-switcher.mjs +8 -0
  330. package/hooks/use-is-mobile.mjs +9 -0
  331. package/hooks/use-is-mounted.mjs +8 -0
  332. package/hooks/use-lock-body-scroll.mjs +12 -0
  333. package/hooks/use-measure.mjs +6 -0
  334. package/hooks/use-scrollable-slider.mjs +39 -0
  335. package/hooks/use-toast-store.mjs +19 -0
  336. package/hooks/use-window-scroll.mjs +55 -0
  337. package/index.css +1 -1
  338. package/index.d.ts +5607 -12
  339. package/index.js +402 -1
  340. package/index.mjs +766 -468
  341. package/libs/framer-motion/fade-in-bottom.mjs +17 -0
  342. package/libs/local-storage/index.mjs +36 -0
  343. package/package.json +10 -10
  344. package/themes/auth/components/auth-provider.mjs +12 -0
  345. package/themes/components/settings/background-picker.mjs +67 -0
  346. package/themes/components/settings/color-dot.mjs +41 -0
  347. package/themes/components/settings/color-swatch-modal.mjs +178 -0
  348. package/themes/components/settings/default-color-settings.mjs +19 -0
  349. package/themes/components/settings/direction-switcher.mjs +36 -0
  350. package/themes/components/settings/lang-selector.mjs +43 -0
  351. package/themes/components/settings/layout-switcher.mjs +117 -0
  352. package/themes/components/settings/restore-defaults.mjs +11 -0
  353. package/themes/components/settings/settings-button.mjs +126 -0
  354. package/themes/components/settings/settings-drawer.mjs +81 -0
  355. package/themes/components/settings/settings-section-heading.mjs +21 -0
  356. package/themes/components/settings/settings-types.mjs +184 -0
  357. package/themes/components/settings/sonoma-accent-picker.mjs +60 -0
  358. package/themes/components/settings/switch-mode.mjs +38 -0
  359. package/themes/components/settings/switch-variant.mjs +38 -0
  360. package/themes/components/settings/switcher-button.mjs +45 -0
  361. package/themes/components/settings/tahoe-accent-picker.mjs +62 -0
  362. package/themes/components/settings/theme-icons.mjs +82 -0
  363. package/themes/components/settings/theme-switcher.mjs +36 -0
  364. package/themes/components/settings/theme-variant-switcher.mjs +49 -0
  365. package/themes/components/theme-background.mjs +75 -0
  366. package/themes/components/theme-provider/index.mjs +10 -0
  367. package/themes/components/theme-provider/mfe-app-theme-provider.mjs +24 -0
  368. package/themes/components/theme-provider/standalone-app-theme-provider.mjs +30 -0
  369. package/themes/components/theme-provider/theme-wrapper.mjs +129 -0
  370. package/themes/config/index.mjs +752 -0
  371. package/themes/hooks/use-direction.mjs +9 -0
  372. package/themes/hooks/use-theme-color.mjs +133 -0
  373. package/themes/hooks/use-theme.mjs +206 -0
  374. package/themes/pages/access-denied.mjs +24 -0
  375. package/themes/pages/default-error.mjs +24 -0
  376. package/themes/pages/disabled-page.mjs +24 -0
  377. package/themes/pages/fallback-page.mjs +14 -0
  378. package/themes/pages/forbidden.mjs +24 -0
  379. package/themes/pages/no-routes.mjs +24 -0
  380. package/themes/pages/not-found.mjs +26 -0
  381. package/themes/pages/server-error.mjs +24 -0
  382. package/themes/pages/unknown.mjs +24 -0
  383. package/themes/pages/user-blocked.mjs +24 -0
  384. package/themes/router/components/mfe-app-routes-provider.mjs +77 -0
  385. package/themes/router/components/standalone-app-routes-provider.mjs +78 -0
  386. package/themes/router/hooks/use-public-error-routes-config.mjs +43 -0
  387. package/themes/types/index.mjs +4 -0
  388. package/1-CArqgiQa.js +0 -1
  389. package/1-Df9CGZha.js +0 -4
  390. package/__tests__/__mocks__/lucide-react.d.ts +0 -129
  391. package/__tests__/setup.d.ts +0 -0
  392. package/components/auth/forget-password-form.d.ts +0 -16
  393. package/components/auth/index.d.ts +0 -4
  394. package/components/auth/reset-pin-form.d.ts +0 -18
  395. package/components/auth/sign-in-form.d.ts +0 -18
  396. package/components/auth/sign-up-form.d.ts +0 -21
  397. package/components/blockchain/coin-card.d.ts +0 -17
  398. package/components/blockchain/coin-info-card.d.ts +0 -15
  399. package/components/blockchain/coin-listbox.d.ts +0 -19
  400. package/components/blockchain/collection-card.d.ts +0 -19
  401. package/components/blockchain/collection-select-list.d.ts +0 -14
  402. package/components/blockchain/currency-swap-icons.d.ts +0 -7
  403. package/components/blockchain/index.d.ts +0 -9
  404. package/components/blockchain/live-price-feed.d.ts +0 -24
  405. package/components/blockchain/nft-grid.d.ts +0 -11
  406. package/components/blockchain/transaction-info.d.ts +0 -7
  407. package/components/buttons/button/button-drip.d.ts +0 -12
  408. package/components/buttons/button/button-loader.d.ts +0 -9
  409. package/components/buttons/button/index.d.ts +0 -31
  410. package/components/buttons/hamburger.d.ts +0 -6
  411. package/components/buttons/index.d.ts +0 -6
  412. package/components/buttons/topup-button.d.ts +0 -8
  413. package/components/cards/author-card.d.ts +0 -7
  414. package/components/cards/card-container.d.ts +0 -7
  415. package/components/cards/card-title.d.ts +0 -10
  416. package/components/cards/card.d.ts +0 -13
  417. package/components/cards/color-card.d.ts +0 -20
  418. package/components/cards/feature-card.d.ts +0 -23
  419. package/components/cards/index.d.ts +0 -9
  420. package/components/cards/info-card.d.ts +0 -54
  421. package/components/cards/panel-action-card.d.ts +0 -16
  422. package/components/cards/panel-card.d.ts +0 -8
  423. package/components/carousel/carousel-cards.d.ts +0 -19
  424. package/components/carousel/carousel-component.d.ts +0 -41
  425. package/components/carousel/carousel-image.d.ts +0 -18
  426. package/components/carousel/index.d.ts +0 -3
  427. package/components/charts/area-chart/area-chart.d.ts +0 -9
  428. package/components/charts/area-chart/index.d.ts +0 -2
  429. package/components/charts/bar-chart/bar-chart.d.ts +0 -10
  430. package/components/charts/bar-chart/index.d.ts +0 -2
  431. package/components/charts/components/chart-container.d.ts +0 -8
  432. package/components/charts/components/chart-empty-state.d.ts +0 -6
  433. package/components/charts/components/chart-tooltip.d.ts +0 -2
  434. package/components/charts/components/index.d.ts +0 -3
  435. package/components/charts/composed-chart/composed-chart.d.ts +0 -9
  436. package/components/charts/composed-chart/index.d.ts +0 -2
  437. package/components/charts/hooks/index.d.ts +0 -2
  438. package/components/charts/hooks/use-chart-theme.d.ts +0 -13
  439. package/components/charts/index.d.ts +0 -18
  440. package/components/charts/line-chart/index.d.ts +0 -2
  441. package/components/charts/line-chart/line-chart.d.ts +0 -9
  442. package/components/charts/pie-chart/index.d.ts +0 -2
  443. package/components/charts/pie-chart/pie-chart.d.ts +0 -14
  444. package/components/charts/radar-chart/index.d.ts +0 -2
  445. package/components/charts/radar-chart/radar-chart.d.ts +0 -17
  446. package/components/charts/types.d.ts +0 -32
  447. package/components/common/avatar.d.ts +0 -12
  448. package/components/common/badge.d.ts +0 -18
  449. package/components/common/collapse.d.ts +0 -7
  450. package/components/common/index.d.ts +0 -10
  451. package/components/common/key-value-row.d.ts +0 -9
  452. package/components/common/pagination.d.ts +0 -9
  453. package/components/common/scrollbar-native.d.ts +0 -14
  454. package/components/common/scrollbar.d.ts +0 -14
  455. package/components/common/skeleton.d.ts +0 -39
  456. package/components/common/stepper.d.ts +0 -13
  457. package/components/common/tooltip.d.ts +0 -39
  458. package/components/dialog/drawer-container.d.ts +0 -9
  459. package/components/dialog/drawer.d.ts +0 -19
  460. package/components/dialog/index.d.ts +0 -6
  461. package/components/dialog/modal.d.ts +0 -24
  462. package/components/dialog/sidebar-menu.d.ts +0 -14
  463. package/components/dialog/sidebar.d.ts +0 -13
  464. package/components/dialog/tab-modal.d.ts +0 -41
  465. package/components/forms/example/error-container-example.d.ts +0 -3
  466. package/components/forms/example/form-example.d.ts +0 -3
  467. package/components/forms/example/form-methods-example.d.ts +0 -3
  468. package/components/forms/example/index.d.ts +0 -4
  469. package/components/forms/example/validations.d.ts +0 -14
  470. package/components/forms/form-field.d.ts +0 -14
  471. package/components/forms/form.d.ts +0 -13
  472. package/components/forms/hook-form.d.ts +0 -3
  473. package/components/forms/index.d.ts +0 -5
  474. package/components/forms/types/dependencies.type.d.ts +0 -11
  475. package/components/forms/types/extend-react-hook-form.type.d.ts +0 -19
  476. package/components/forms/types/index.d.ts +0 -3
  477. package/components/forms/types/validations.type.d.ts +0 -8
  478. package/components/icons/arrow-link-icon.d.ts +0 -1
  479. package/components/icons/arrow-right.d.ts +0 -1
  480. package/components/icons/arrow-up.d.ts +0 -1
  481. package/components/icons/bitcoin.d.ts +0 -1
  482. package/components/icons/bnb.d.ts +0 -1
  483. package/components/icons/book.d.ts +0 -1
  484. package/components/icons/brands/facebook.d.ts +0 -1
  485. package/components/icons/brands/github.d.ts +0 -1
  486. package/components/icons/brands/instagram.d.ts +0 -1
  487. package/components/icons/brands/telegram.d.ts +0 -1
  488. package/components/icons/brands/twitter.d.ts +0 -1
  489. package/components/icons/calendar-icon.d.ts +0 -1
  490. package/components/icons/cardano.d.ts +0 -1
  491. package/components/icons/check.d.ts +0 -1
  492. package/components/icons/checkmark.d.ts +0 -1
  493. package/components/icons/chevron-down.d.ts +0 -1
  494. package/components/icons/chevron-forward.d.ts +0 -1
  495. package/components/icons/chevron-left.d.ts +0 -1
  496. package/components/icons/chevron-right.d.ts +0 -1
  497. package/components/icons/classic-layout-icon.d.ts +0 -1
  498. package/components/icons/close.d.ts +0 -1
  499. package/components/icons/compact-grid.d.ts +0 -1
  500. package/components/icons/compass.d.ts +0 -1
  501. package/components/icons/copy.d.ts +0 -1
  502. package/components/icons/disk.d.ts +0 -1
  503. package/components/icons/document.d.ts +0 -1
  504. package/components/icons/doge.d.ts +0 -1
  505. package/components/icons/dots-icon.d.ts +0 -1
  506. package/components/icons/ethereum-dark.d.ts +0 -1
  507. package/components/icons/ethereum.d.ts +0 -1
  508. package/components/icons/exchange.d.ts +0 -1
  509. package/components/icons/export-icon.d.ts +0 -1
  510. package/components/icons/external-link.d.ts +0 -1
  511. package/components/icons/eye.d.ts +0 -1
  512. package/components/icons/eyeslash.d.ts +0 -1
  513. package/components/icons/farm.d.ts +0 -1
  514. package/components/icons/flash.d.ts +0 -1
  515. package/components/icons/flow.d.ts +0 -1
  516. package/components/icons/gas-icon.d.ts +0 -1
  517. package/components/icons/guide-icon.d.ts +0 -1
  518. package/components/icons/history.d.ts +0 -1
  519. package/components/icons/home.d.ts +0 -1
  520. package/components/icons/horizontal-three-dots.d.ts +0 -1
  521. package/components/icons/icon-us-flag.d.ts +0 -1
  522. package/components/icons/index.d.ts +0 -98
  523. package/components/icons/info-circle.d.ts +0 -1
  524. package/components/icons/info-icon.d.ts +0 -1
  525. package/components/icons/left-align.d.ts +0 -1
  526. package/components/icons/level-icon.d.ts +0 -1
  527. package/components/icons/link-icon.d.ts +0 -1
  528. package/components/icons/live-pricing.d.ts +0 -1
  529. package/components/icons/lock-icon.d.ts +0 -1
  530. package/components/icons/long-arrow-left.d.ts +0 -1
  531. package/components/icons/long-arrow-right.d.ts +0 -1
  532. package/components/icons/long-arrow-up.d.ts +0 -1
  533. package/components/icons/loop-icon.d.ts +0 -1
  534. package/components/icons/lucide-react/index.d.ts +0 -1
  535. package/components/icons/media-play-icon.d.ts +0 -1
  536. package/components/icons/menu-icon.d.ts +0 -2
  537. package/components/icons/minimal-layout-icon.d.ts +0 -1
  538. package/components/icons/modern-layout-icon.d.ts +0 -1
  539. package/components/icons/moon.d.ts +0 -1
  540. package/components/icons/more-icon.d.ts +0 -1
  541. package/components/icons/normal-grid.d.ts +0 -1
  542. package/components/icons/option.d.ts +0 -1
  543. package/components/icons/play-icon.d.ts +0 -1
  544. package/components/icons/plus-circle.d.ts +0 -1
  545. package/components/icons/plus.d.ts +0 -1
  546. package/components/icons/pool.d.ts +0 -1
  547. package/components/icons/power.d.ts +0 -1
  548. package/components/icons/profile.d.ts +0 -1
  549. package/components/icons/question-icon.d.ts +0 -1
  550. package/components/icons/question-solid-icon.d.ts +0 -1
  551. package/components/icons/range-icon.d.ts +0 -1
  552. package/components/icons/refresh.d.ts +0 -1
  553. package/components/icons/retro-layout-icon.d.ts +0 -1
  554. package/components/icons/right-align.d.ts +0 -1
  555. package/components/icons/sand-clock.d.ts +0 -1
  556. package/components/icons/search.d.ts +0 -1
  557. package/components/icons/shut-down-icon.d.ts +0 -1
  558. package/components/icons/spike-bar.d.ts +0 -1
  559. package/components/icons/star-fill.d.ts +0 -1
  560. package/components/icons/star.d.ts +0 -1
  561. package/components/icons/sun.d.ts +0 -1
  562. package/components/icons/swap-icon.d.ts +0 -1
  563. package/components/icons/tag-icon.d.ts +0 -1
  564. package/components/icons/tag.d.ts +0 -1
  565. package/components/icons/tether.d.ts +0 -1
  566. package/components/icons/trading-bot-icon.d.ts +0 -1
  567. package/components/icons/trend-arrow-down-icon.d.ts +0 -1
  568. package/components/icons/trend-arrow-up-icon.d.ts +0 -1
  569. package/components/icons/tucu.d.ts +0 -1
  570. package/components/icons/unlocked.d.ts +0 -1
  571. package/components/icons/upload.d.ts +0 -1
  572. package/components/icons/usdc.d.ts +0 -1
  573. package/components/icons/verified-icon.d.ts +0 -1
  574. package/components/icons/verified.d.ts +0 -1
  575. package/components/icons/vertical-three-dots.d.ts +0 -1
  576. package/components/icons/vote-icon.d.ts +0 -1
  577. package/components/icons/warning.d.ts +0 -1
  578. package/components/index.d.ts +0 -22
  579. package/components/inputs/checkbox.d.ts +0 -42
  580. package/components/inputs/file-input.d.ts +0 -41
  581. package/components/inputs/helpers/control-colors.d.ts +0 -13
  582. package/components/inputs/helpers/control-sizes.d.ts +0 -2
  583. package/components/inputs/helpers/field-error-text.d.ts +0 -19
  584. package/components/inputs/helpers/field-helper-text.d.ts +0 -18
  585. package/components/inputs/helpers/input-label.d.ts +0 -9
  586. package/components/inputs/index.d.ts +0 -14
  587. package/components/inputs/input-searcher.d.ts +0 -18
  588. package/components/inputs/input.d.ts +0 -29
  589. package/components/inputs/pin-code.d.ts +0 -74
  590. package/components/inputs/radio-group.d.ts +0 -56
  591. package/components/inputs/radio.d.ts +0 -87
  592. package/components/inputs/select.d.ts +0 -38
  593. package/components/inputs/switch.d.ts +0 -17
  594. package/components/inputs/textarea.d.ts +0 -20
  595. package/components/inputs/toggle-bar.d.ts +0 -11
  596. package/components/layouts/admin-layout/index.d.ts +0 -16
  597. package/components/layouts/clean-layout/index.d.ts +0 -5
  598. package/components/layouts/header/admin-header.d.ts +0 -8
  599. package/components/layouts/header/admin-right-area.d.ts +0 -3
  600. package/components/layouts/header/header.d.ts +0 -9
  601. package/components/layouts/header/horizontal-header.d.ts +0 -10
  602. package/components/layouts/header/horizontal-right-area.d.ts +0 -9
  603. package/components/layouts/horizontal/index.d.ts +0 -16
  604. package/components/layouts/index.d.ts +0 -14
  605. package/components/layouts/macos-layout/index.d.ts +0 -23
  606. package/components/layouts/macos-layout/macos-sonoma-clean-layout.d.ts +0 -7
  607. package/components/layouts/macos-layout/macos-sonoma-layout.d.ts +0 -14
  608. package/components/layouts/macos-layout/macos-sonoma-navbar-layout.d.ts +0 -14
  609. package/components/layouts/macos-layout/macos-tahoe-clean-layout.d.ts +0 -7
  610. package/components/layouts/macos-layout/macos-tahoe-dock-layout.d.ts +0 -14
  611. package/components/layouts/macos-layout/macos-tahoe-layout.d.ts +0 -14
  612. package/components/layouts/macos-layout/macos-tahoe-navbar-layout.d.ts +0 -14
  613. package/components/layouts/macos-layout/utils.d.ts +0 -3
  614. package/components/layouts/menus/collapsible-menu.d.ts +0 -3
  615. package/components/layouts/menus/expandable-sidebar.d.ts +0 -8
  616. package/components/layouts/menus/horizontal-nav-menu.d.ts +0 -7
  617. package/components/layouts/menus/menu-item.d.ts +0 -24
  618. package/components/layouts/root-layout.d.ts +0 -18
  619. package/components/links/active-link.d.ts +0 -8
  620. package/components/links/anchor-link.d.ts +0 -3
  621. package/components/links/index.d.ts +0 -2
  622. package/components/list/index.d.ts +0 -2
  623. package/components/list/list-Item.d.ts +0 -13
  624. package/components/list/list-container.d.ts +0 -19
  625. package/components/loaders/index.d.ts +0 -3
  626. package/components/loaders/loader.d.ts +0 -20
  627. package/components/loaders/progressbar.d.ts +0 -64
  628. package/components/loaders/spinner.d.ts +0 -15
  629. package/components/logos/defi-app-logo.d.ts +0 -1
  630. package/components/logos/full-logo.d.ts +0 -1
  631. package/components/logos/index.d.ts +0 -3
  632. package/components/logos/logo.d.ts +0 -13
  633. package/components/logos/tucu-ui-logo.d.ts +0 -8
  634. package/components/macos/index.d.ts +0 -2
  635. package/components/macos/sonoma/containers/sidebar.d.ts +0 -22
  636. package/components/macos/sonoma/containers/widget.d.ts +0 -17
  637. package/components/macos/sonoma/containers/window.d.ts +0 -26
  638. package/components/macos/sonoma/controls/search-bar.d.ts +0 -12
  639. package/components/macos/sonoma/controls/segmented-control.d.ts +0 -16
  640. package/components/macos/sonoma/controls/types.d.ts +0 -10
  641. package/components/macos/sonoma/feedback/command-palette.d.ts +0 -20
  642. package/components/macos/sonoma/feedback/macos-sonoma-toast.d.ts +0 -2
  643. package/components/macos/sonoma/feedback/notification-banner.d.ts +0 -17
  644. package/components/macos/sonoma/feedback/popover.d.ts +0 -22
  645. package/components/macos/sonoma/index.d.ts +0 -13
  646. package/components/macos/sonoma/layout/layout-content-sonoma.d.ts +0 -15
  647. package/components/macos/sonoma/layout/layout-sidebar-sonoma.d.ts +0 -10
  648. package/components/macos/sonoma/layout/toolbar-sonoma.d.ts +0 -6
  649. package/components/macos/tahoe/containers/dialog-tahoe.d.ts +0 -21
  650. package/components/macos/tahoe/containers/widget-tahoe.d.ts +0 -15
  651. package/components/macos/tahoe/containers/window-tahoe.d.ts +0 -36
  652. package/components/macos/tahoe/controls/macos-tahoe-toast.d.ts +0 -2
  653. package/components/macos/tahoe/controls/notification-banner-tahoe.d.ts +0 -17
  654. package/components/macos/tahoe/controls/progress-bar-tahoe.d.ts +0 -10
  655. package/components/macos/tahoe/controls/search-bar-tahoe.d.ts +0 -12
  656. package/components/macos/tahoe/controls/segmented-control-tahoe.d.ts +0 -16
  657. package/components/macos/tahoe/controls/types.d.ts +0 -10
  658. package/components/macos/tahoe/feedback/command-palette-tahoe.d.ts +0 -18
  659. package/components/macos/tahoe/feedback/popover-tahoe.d.ts +0 -22
  660. package/components/macos/tahoe/foundations/background.d.ts +0 -7
  661. package/components/macos/tahoe/index.d.ts +0 -15
  662. package/components/macos/tahoe/layout/dock-tahoe.d.ts +0 -27
  663. package/components/macos/tahoe/layout/layout-content-tahoe.d.ts +0 -17
  664. package/components/macos/tahoe/layout/layout-sidebar-tahoe.d.ts +0 -13
  665. package/components/macos/tahoe/layout/toolbar-tahoe.d.ts +0 -5
  666. package/components/notifications/alert.d.ts +0 -13
  667. package/components/notifications/index.d.ts +0 -3
  668. package/components/notifications/notification-card.d.ts +0 -14
  669. package/components/notifications/toast.d.ts +0 -3
  670. package/components/table/basic-table.d.ts +0 -28
  671. package/components/table/index.d.ts +0 -1
  672. package/components/tabs/index.d.ts +0 -3
  673. package/components/tabs/param-tab.d.ts +0 -19
  674. package/components/tabs/tab-select.d.ts +0 -10
  675. package/components/tabs/tab.d.ts +0 -50
  676. package/components/typography/index.d.ts +0 -73
  677. package/components/utils/code-block.d.ts +0 -8
  678. package/components/utils/image.d.ts +0 -25
  679. package/components/utils/index.d.ts +0 -4
  680. package/components/utils/reveal-content.d.ts +0 -6
  681. package/components/utils/scroll-to-top.d.ts +0 -50
  682. package/datatable/common/constants.d.ts +0 -1
  683. package/datatable/common/functions/index.d.ts +0 -39
  684. package/datatable/common/functions/user-scopes/index.d.ts +0 -3
  685. package/datatable/common/helpers/ExpandedColumn.d.ts +0 -9
  686. package/datatable/common/helpers/OffsetColumn.d.ts +0 -9
  687. package/datatable/common/helpers/RowActionsColumn.d.ts +0 -9
  688. package/datatable/common/helpers/RowSelectionColumn.d.ts +0 -9
  689. package/datatable/common/helpers/cn.d.ts +0 -10
  690. package/datatable/common/helpers/convertColumns.d.ts +0 -42
  691. package/datatable/common/helpers/parseNumericValueToExport.d.ts +0 -5
  692. package/datatable/common/helpers/theme.d.ts +0 -8
  693. package/datatable/common/types/index.d.ts +0 -416
  694. package/datatable/components/Assets/ArrowDoubleIndicator.d.ts +0 -26
  695. package/datatable/components/Assets/ArrowIndicator.d.ts +0 -26
  696. package/datatable/components/Assets/ArrowLongIndicator.d.ts +0 -26
  697. package/datatable/components/Assets/ArrowPaginationIndicator.d.ts +0 -26
  698. package/datatable/components/Assets/AssetButton.d.ts +0 -32
  699. package/datatable/components/Assets/ColumnIndicator.d.ts +0 -15
  700. package/datatable/components/Assets/DeleteIndicator.d.ts +0 -15
  701. package/datatable/components/Assets/DownloadIndicator.d.ts +0 -15
  702. package/datatable/components/Assets/DragIndicator.d.ts +0 -17
  703. package/datatable/components/Assets/EditIndicator.d.ts +0 -15
  704. package/datatable/components/Assets/FilterIndicator.d.ts +0 -15
  705. package/datatable/components/Assets/MoreIndicator.d.ts +0 -17
  706. package/datatable/components/Assets/OpenNewTab.d.ts +0 -15
  707. package/datatable/components/Assets/PinIndicator.d.ts +0 -17
  708. package/datatable/components/Assets/RowIndicator.d.ts +0 -15
  709. package/datatable/components/Assets/ViewDetailsIndicator.d.ts +0 -16
  710. package/datatable/components/Assets/VisibilityIndicator.d.ts +0 -17
  711. package/datatable/components/Assets/VoidIndicator.d.ts +0 -15
  712. package/datatable/components/Assets/index.d.ts +0 -18
  713. package/datatable/components/Common/IconButton/index.d.ts +0 -18
  714. package/datatable/components/Common/Spinner.d.ts +0 -15
  715. package/datatable/components/Common/Tooltip.d.ts +0 -37
  716. package/datatable/components/DataTable/ColumnsVisibilityManager.d.ts +0 -3
  717. package/datatable/components/DataTable/DataTable.d.ts +0 -26
  718. package/datatable/components/DataTable/DataTableComponent/index.d.ts +0 -70
  719. package/datatable/components/DataTable/StateTableHandler/index.d.ts +0 -23
  720. package/datatable/components/DataTable/SubComponentDataTable/index.d.ts +0 -18
  721. package/datatable/components/DataTable/TableCell/ExpandedRowCell/index.d.ts +0 -19
  722. package/datatable/components/DataTable/TableCell/RowActionsCell/index.d.ts +0 -29
  723. package/datatable/components/DataTable/TableCell/RowSelectionCell/index.d.ts +0 -21
  724. package/datatable/components/DataTable/TableCell/index.d.ts +0 -44
  725. package/datatable/components/DataTable/TableHead/index.d.ts +0 -33
  726. package/datatable/components/DataTable/TableHeader/CheckboxSelector/index.d.ts +0 -17
  727. package/datatable/components/DataTable/TableHeader/ColumnDraggable/index.d.ts +0 -22
  728. package/datatable/components/DataTable/TableHeader/ColumnPin/index.d.ts +0 -26
  729. package/datatable/components/DataTable/TableHeader/ColumnSearcher/InputSearcher.d.ts +0 -19
  730. package/datatable/components/DataTable/TableHeader/ColumnSearcher/index.d.ts +0 -18
  731. package/datatable/components/DataTable/TableHeader/ColumnSort/index.d.ts +0 -20
  732. package/datatable/components/DataTable/TableHeader/ColumnVisibility/index.d.ts +0 -18
  733. package/datatable/components/DataTable/TableHeader/index.d.ts +0 -30
  734. package/datatable/components/DataTable/TableRow/index.d.ts +0 -43
  735. package/datatable/components/DataTable/TableWrapper/index.d.ts +0 -34
  736. package/datatable/components/DataTable/index.d.ts +0 -3
  737. package/datatable/components/Footer/index.d.ts +0 -19
  738. package/datatable/components/ManualPagination/index.d.ts +0 -20
  739. package/datatable/components/Pagination/index.d.ts +0 -21
  740. package/datatable/components/RowSelection/index.d.ts +0 -14
  741. package/datatable/context/DragDropContentContext.d.ts +0 -33
  742. package/datatable/context/DragDropTableContext.d.ts +0 -35
  743. package/datatable/context/index.d.ts +0 -167
  744. package/datatable/hooks/index.d.ts +0 -6
  745. package/datatable/hooks/useColumns.d.ts +0 -27
  746. package/datatable/hooks/useComponentEventListener.d.ts +0 -21
  747. package/datatable/hooks/useDataTableStore.d.ts +0 -64
  748. package/datatable/hooks/useGetCommonPinningStyles.d.ts +0 -22
  749. package/datatable/hooks/useInitialState.d.ts +0 -27
  750. package/datatable/hooks/useResetCacheVersion.d.ts +0 -19
  751. package/datatable/hooks/useScrollableTable.d.ts +0 -30
  752. package/datatable/index.d.ts +0 -12
  753. package/datatable/tanstack-table/index.d.ts +0 -2
  754. package/demo/components/auto-props-table.d.ts +0 -16
  755. package/demo/components/dynamic-sections-page.d.ts +0 -50
  756. package/demo/components/hero-card.d.ts +0 -21
  757. package/demo/components/index.d.ts +0 -8
  758. package/demo/components/lazy-component-section.d.ts +0 -11
  759. package/demo/components/nav-options.d.ts +0 -2
  760. package/demo/components/playground-button.d.ts +0 -1
  761. package/demo/components/prop-playground.d.ts +0 -31
  762. package/demo/components/table-of-contents/index.d.ts +0 -5
  763. package/demo/components/table-of-contents/toc-default.d.ts +0 -3
  764. package/demo/components/table-of-contents/toc-sonoma.d.ts +0 -3
  765. package/demo/components/table-of-contents/toc-tahoe.d.ts +0 -3
  766. package/demo/components/table-of-contents/types.d.ts +0 -17
  767. package/demo/components/table-of-contents/use-toc.d.ts +0 -26
  768. package/demo/generated/props-metadata.d.ts +0 -23
  769. package/demo/index.d.ts +0 -4
  770. package/demo/pages/blockchain/BlockchainComponents.d.ts +0 -2
  771. package/demo/pages/blockchain/blockchain-components-sections/CoinCardSection.d.ts +0 -3
  772. package/demo/pages/blockchain/blockchain-components-sections/CoinInfoCardSection.d.ts +0 -3
  773. package/demo/pages/blockchain/blockchain-components-sections/CoinListBoxSection.d.ts +0 -3
  774. package/demo/pages/blockchain/blockchain-components-sections/CollectionCardSection.d.ts +0 -3
  775. package/demo/pages/blockchain/blockchain-components-sections/CollectionSelectListSection.d.ts +0 -3
  776. package/demo/pages/blockchain/blockchain-components-sections/CurrencySwapIconsSection.d.ts +0 -3
  777. package/demo/pages/blockchain/blockchain-components-sections/LivePriceFeedSection.d.ts +0 -3
  778. package/demo/pages/blockchain/blockchain-components-sections/NFTGridSection.d.ts +0 -3
  779. package/demo/pages/blockchain/blockchain-components-sections/TransactionInfoSection.d.ts +0 -3
  780. package/demo/pages/blockchain/blockchain-components-sections/index.d.ts +0 -9
  781. package/demo/pages/components/ChartsComponents.d.ts +0 -2
  782. package/demo/pages/components/ComponentsIntroduction.d.ts +0 -1
  783. package/demo/pages/components/InputsComponents.d.ts +0 -2
  784. package/demo/pages/components/UiComponents.d.ts +0 -2
  785. package/demo/pages/components/charts-sections/AreaChartSection.d.ts +0 -3
  786. package/demo/pages/components/charts-sections/BarChartSection.d.ts +0 -3
  787. package/demo/pages/components/charts-sections/ComposedChartSection.d.ts +0 -3
  788. package/demo/pages/components/charts-sections/LineChartSection.d.ts +0 -3
  789. package/demo/pages/components/charts-sections/PieChartSection.d.ts +0 -3
  790. package/demo/pages/components/charts-sections/RadarChartSection.d.ts +0 -3
  791. package/demo/pages/components/charts-sections/index.d.ts +0 -1
  792. package/demo/pages/components/input-components-sections/CheckboxSection.d.ts +0 -3
  793. package/demo/pages/components/input-components-sections/FileInputSection.d.ts +0 -3
  794. package/demo/pages/components/input-components-sections/InputSearcherSection.d.ts +0 -3
  795. package/demo/pages/components/input-components-sections/InputSection.d.ts +0 -3
  796. package/demo/pages/components/input-components-sections/PinCodeSection.d.ts +0 -3
  797. package/demo/pages/components/input-components-sections/RadioGroupSection.d.ts +0 -3
  798. package/demo/pages/components/input-components-sections/RadioSection.d.ts +0 -3
  799. package/demo/pages/components/input-components-sections/SelectSection.d.ts +0 -3
  800. package/demo/pages/components/input-components-sections/SwitchSection.d.ts +0 -3
  801. package/demo/pages/components/input-components-sections/TextareaSection.d.ts +0 -3
  802. package/demo/pages/components/input-components-sections/ToggleBarSection.d.ts +0 -3
  803. package/demo/pages/components/input-components-sections/index.d.ts +0 -11
  804. package/demo/pages/components/ui-components-sections/ActiveLinkSection.d.ts +0 -3
  805. package/demo/pages/components/ui-components-sections/AlertSection.d.ts +0 -3
  806. package/demo/pages/components/ui-components-sections/AnchorLinkSection.d.ts +0 -3
  807. package/demo/pages/components/ui-components-sections/AuthorCardSection.d.ts +0 -3
  808. package/demo/pages/components/ui-components-sections/AvatarSection.d.ts +0 -3
  809. package/demo/pages/components/ui-components-sections/BadgeSection.d.ts +0 -3
  810. package/demo/pages/components/ui-components-sections/BasicTableSection.d.ts +0 -3
  811. package/demo/pages/components/ui-components-sections/ButtonDripSection.d.ts +0 -3
  812. package/demo/pages/components/ui-components-sections/ButtonLoaderSection.d.ts +0 -3
  813. package/demo/pages/components/ui-components-sections/CardContainerSection.d.ts +0 -3
  814. package/demo/pages/components/ui-components-sections/CardSection.d.ts +0 -3
  815. package/demo/pages/components/ui-components-sections/CardTitleSection.d.ts +0 -3
  816. package/demo/pages/components/ui-components-sections/CarouselCardsSection.d.ts +0 -3
  817. package/demo/pages/components/ui-components-sections/CarouselImageSection.d.ts +0 -3
  818. package/demo/pages/components/ui-components-sections/CarouselSection.d.ts +0 -3
  819. package/demo/pages/components/ui-components-sections/CollapseSection.d.ts +0 -3
  820. package/demo/pages/components/ui-components-sections/DefiAppLogoSection.d.ts +0 -3
  821. package/demo/pages/components/ui-components-sections/DrawerSection.d.ts +0 -3
  822. package/demo/pages/components/ui-components-sections/HamburgerSection.d.ts +0 -3
  823. package/demo/pages/components/ui-components-sections/ImageSection.d.ts +0 -3
  824. package/demo/pages/components/ui-components-sections/InfoCardSection.d.ts +0 -3
  825. package/demo/pages/components/ui-components-sections/KeyValueRowSection.d.ts +0 -3
  826. package/demo/pages/components/ui-components-sections/ListContainerSection.d.ts +0 -3
  827. package/demo/pages/components/ui-components-sections/ListItemSection.d.ts +0 -3
  828. package/demo/pages/components/ui-components-sections/LoaderSection.d.ts +0 -3
  829. package/demo/pages/components/ui-components-sections/LogoSection.d.ts +0 -3
  830. package/demo/pages/components/ui-components-sections/ModalSection.d.ts +0 -3
  831. package/demo/pages/components/ui-components-sections/NotificationCardSection.d.ts +0 -3
  832. package/demo/pages/components/ui-components-sections/PaginationSection.d.ts +0 -3
  833. package/demo/pages/components/ui-components-sections/PanelActionCardSection.d.ts +0 -3
  834. package/demo/pages/components/ui-components-sections/PanelCardSection.d.ts +0 -3
  835. package/demo/pages/components/ui-components-sections/ParamTabSection.d.ts +0 -3
  836. package/demo/pages/components/ui-components-sections/ProgressbarSection.d.ts +0 -3
  837. package/demo/pages/components/ui-components-sections/RevealContentSection.d.ts +0 -3
  838. package/demo/pages/components/ui-components-sections/ScrollToTopSection.d.ts +0 -3
  839. package/demo/pages/components/ui-components-sections/ScrollbarSection.d.ts +0 -3
  840. package/demo/pages/components/ui-components-sections/SidebarMenuSection.d.ts +0 -3
  841. package/demo/pages/components/ui-components-sections/SidebarSection.d.ts +0 -3
  842. package/demo/pages/components/ui-components-sections/SkeletonSection.d.ts +0 -3
  843. package/demo/pages/components/ui-components-sections/SpinnerSection.d.ts +0 -3
  844. package/demo/pages/components/ui-components-sections/StepperSection.d.ts +0 -3
  845. package/demo/pages/components/ui-components-sections/TabModalSection.d.ts +0 -3
  846. package/demo/pages/components/ui-components-sections/TabSection.d.ts +0 -3
  847. package/demo/pages/components/ui-components-sections/TabSelectSection.d.ts +0 -3
  848. package/demo/pages/components/ui-components-sections/ToastSection.d.ts +0 -3
  849. package/demo/pages/components/ui-components-sections/TooltipSection.d.ts +0 -3
  850. package/demo/pages/components/ui-components-sections/TopupButtonSection.d.ts +0 -3
  851. package/demo/pages/components/ui-components-sections/TucuUiLogoSection.d.ts +0 -3
  852. package/demo/pages/components/ui-components-sections/TypographySection.d.ts +0 -3
  853. package/demo/pages/components/ui-components-sections/index.d.ts +0 -45
  854. package/demo/pages/datatable/DataTablePage.d.ts +0 -2
  855. package/demo/pages/datatable/datatable-sections/ColumnsSection.d.ts +0 -3
  856. package/demo/pages/datatable/datatable-sections/DataFetchingSection.d.ts +0 -3
  857. package/demo/pages/datatable/datatable-sections/DocumentationSection.d.ts +0 -3
  858. package/demo/pages/datatable/datatable-sections/ExamplesSection.d.ts +0 -3
  859. package/demo/pages/datatable/datatable-sections/PlaygroundSection.d.ts +0 -3
  860. package/demo/pages/datatable/datatable-sections/SearchSection.d.ts +0 -3
  861. package/demo/pages/design-system/DesignSystem.d.ts +0 -2
  862. package/demo/pages/design-system/LayoutSystem.d.ts +0 -2
  863. package/demo/pages/design-system/ThemingGuide.d.ts +0 -2
  864. package/demo/pages/design-system/design-system-sections/BackgroundsSection.d.ts +0 -3
  865. package/demo/pages/design-system/design-system-sections/BorderRadiusSection.d.ts +0 -3
  866. package/demo/pages/design-system/design-system-sections/ColorSystemSection.d.ts +0 -3
  867. package/demo/pages/design-system/design-system-sections/ComponentAnatomySection.d.ts +0 -3
  868. package/demo/pages/design-system/design-system-sections/DesignPrinciplesSection.d.ts +0 -3
  869. package/demo/pages/design-system/design-system-sections/ImplementationGuidelinesSection.d.ts +0 -3
  870. package/demo/pages/design-system/design-system-sections/LayoutPrinciplesSection.d.ts +0 -3
  871. package/demo/pages/design-system/design-system-sections/ShadowsSection.d.ts +0 -3
  872. package/demo/pages/design-system/design-system-sections/SizingSection.d.ts +0 -3
  873. package/demo/pages/design-system/design-system-sections/SpacingSystemSection.d.ts +0 -3
  874. package/demo/pages/design-system/design-system-sections/TypographySection.d.ts +0 -3
  875. package/demo/pages/design-system/layout-system-sections/BestPracticesSection.d.ts +0 -3
  876. package/demo/pages/design-system/layout-system-sections/CommonErrorsSection.d.ts +0 -3
  877. package/demo/pages/design-system/layout-system-sections/ImplementationExamplesSection.d.ts +0 -3
  878. package/demo/pages/design-system/layout-system-sections/LayoutTypesSection.d.ts +0 -3
  879. package/demo/pages/design-system/layout-system-sections/MenuItemsGuideSection.d.ts +0 -3
  880. package/demo/pages/design-system/layout-system-sections/ThemeProviderRequiredSection.d.ts +0 -3
  881. package/demo/pages/design-system/theming-guide-sections/AdvancedColorSystemSection.d.ts +0 -3
  882. package/demo/pages/design-system/theming-guide-sections/AdvancedFeaturesSection.d.ts +0 -3
  883. package/demo/pages/design-system/theming-guide-sections/BestPracticesSection.d.ts +0 -3
  884. package/demo/pages/design-system/theming-guide-sections/ColorCustomizationSection.d.ts +0 -3
  885. package/demo/pages/design-system/theming-guide-sections/CustomColorPaletteSection.d.ts +0 -3
  886. package/demo/pages/design-system/theming-guide-sections/FileStructureSection.d.ts +0 -3
  887. package/demo/pages/design-system/theming-guide-sections/SettingsPanelSection.d.ts +0 -3
  888. package/demo/pages/design-system/theming-guide-sections/TailwindConfigSection.d.ts +0 -3
  889. package/demo/pages/design-system/theming-guide-sections/ThemeArchitectureSection.d.ts +0 -3
  890. package/demo/pages/design-system/theming-guide-sections/ThemeConfigurationSection.d.ts +0 -3
  891. package/demo/pages/design-system/theming-guide-sections/ThemeHooksSection.d.ts +0 -3
  892. package/demo/pages/design-system/theming-guide-sections/ThemeProviderSection.d.ts +0 -3
  893. package/demo/pages/design-system/theming-guide-sections/UsingThemeSystemSection.d.ts +0 -3
  894. package/demo/pages/features/Accessibility.d.ts +0 -2
  895. package/demo/pages/features/FeaturesIntroduction.d.ts +0 -1
  896. package/demo/pages/features/HooksUtilities.d.ts +0 -2
  897. package/demo/pages/features/IconsSystem.d.ts +0 -2
  898. package/demo/pages/features/RoutingSystem.d.ts +0 -2
  899. package/demo/pages/features/accessibility-sections/BestPracticesSection.d.ts +0 -3
  900. package/demo/pages/features/accessibility-sections/CodeExamplesSection.d.ts +0 -3
  901. package/demo/pages/features/accessibility-sections/ComponentStatusSection.d.ts +0 -3
  902. package/demo/pages/features/accessibility-sections/ImplementationStatusSection.d.ts +0 -3
  903. package/demo/pages/features/accessibility-sections/ImplementedFeaturesSection.d.ts +0 -3
  904. package/demo/pages/features/accessibility-sections/KeyboardNavigationSection.d.ts +0 -3
  905. package/demo/pages/features/accessibility-sections/TestingSection.d.ts +0 -3
  906. package/demo/pages/features/accessibility-sections/WCAGPrinciplesSection.d.ts +0 -3
  907. package/demo/pages/features/hooks-utilities-sections/BestPracticesSection.d.ts +0 -3
  908. package/demo/pages/features/hooks-utilities-sections/HookCategoriesSection.d.ts +0 -3
  909. package/demo/pages/features/hooks-utilities-sections/HookDocumentationSection.d.ts +0 -3
  910. package/demo/pages/features/hooks-utilities-sections/HookFeaturesSection.d.ts +0 -3
  911. package/demo/pages/features/hooks-utilities-sections/LiveDemonstrationsSection.d.ts +0 -3
  912. package/demo/pages/features/icon-system-sections/BestPracticesSection.d.ts +0 -3
  913. package/demo/pages/features/icon-system-sections/CustomIconsSection.d.ts +0 -3
  914. package/demo/pages/features/icon-system-sections/IconArchitectureSection.d.ts +0 -3
  915. package/demo/pages/features/icon-system-sections/IconSizingGuideSection.d.ts +0 -3
  916. package/demo/pages/features/icon-system-sections/IconSystemAPISection.d.ts +0 -3
  917. package/demo/pages/features/icon-system-sections/IconSystemBenefitsSection.d.ts +0 -3
  918. package/demo/pages/features/icon-system-sections/LucideIconsSection.d.ts +0 -3
  919. package/demo/pages/features/icon-system-sections/UsageExamplesSection.d.ts +0 -3
  920. package/demo/pages/features/routing-system-sections/APIReferenceSection.d.ts +0 -3
  921. package/demo/pages/features/routing-system-sections/ArchitecturalPatternsComparisonSection.d.ts +0 -3
  922. package/demo/pages/features/routing-system-sections/BestPracticesSection.d.ts +0 -3
  923. package/demo/pages/features/routing-system-sections/DynamicRoutesSection.d.ts +0 -3
  924. package/demo/pages/features/routing-system-sections/MFESupportSection.d.ts +0 -3
  925. package/demo/pages/features/routing-system-sections/NestedRoutesSection.d.ts +0 -3
  926. package/demo/pages/features/routing-system-sections/RouteConfigurationSection.d.ts +0 -3
  927. package/demo/pages/features/routing-system-sections/StandaloneAppSection.d.ts +0 -3
  928. package/demo/pages/features/routing-system-sections/SystemOverviewSection.d.ts +0 -3
  929. package/demo/pages/features/routing-system-sections/ThemeProviderIntegrationSection.d.ts +0 -3
  930. package/demo/pages/form-system/FormSystem.d.ts +0 -2
  931. package/demo/pages/form-system/code-example-page.d.ts +0 -2
  932. package/demo/pages/form-system/example/constants.d.ts +0 -12
  933. package/demo/pages/form-system/example/simple-form-example.d.ts +0 -3
  934. package/demo/pages/form-system/form-example-page.d.ts +0 -2
  935. package/demo/pages/form-system/form-system-sections/AdvancedFeaturesSection.d.ts +0 -3
  936. package/demo/pages/form-system/form-system-sections/ArchitectureOverviewSection.d.ts +0 -3
  937. package/demo/pages/form-system/form-system-sections/BasicUsageSection.d.ts +0 -3
  938. package/demo/pages/form-system/form-system-sections/BestPracticesSection.d.ts +0 -3
  939. package/demo/pages/form-system/form-system-sections/FormComponentsSection.d.ts +0 -3
  940. package/demo/pages/form-system/form-system-sections/FormMethodsSection.d.ts +0 -3
  941. package/demo/pages/form-system/form-system-sections/LiveDemoSection.d.ts +0 -3
  942. package/demo/pages/form-system/form-system-sections/ValidationSystemSection.d.ts +0 -3
  943. package/demo/pages/index.d.ts +0 -42
  944. package/demo/pages/introduction/BasicUsageDemo.d.ts +0 -1
  945. package/demo/pages/introduction/BasicUsageExampleCode.d.ts +0 -1
  946. package/demo/pages/introduction/BasicUsageWithCustomRouterExampleCode.d.ts +0 -1
  947. package/demo/pages/introduction/ThemeProviderExamples.d.ts +0 -7
  948. package/demo/pages/introduction/index.d.ts +0 -1
  949. package/demo/pages/macos/MacOSShowcase.d.ts +0 -2
  950. package/demo/pages/macos/MacOSSonomaShowcase.d.ts +0 -2
  951. package/demo/pages/macos/MacOSTahoeShowcase.d.ts +0 -2
  952. package/demo/pages/macos/macos-sections/sonoma/MacOSCommandPaletteSection.d.ts +0 -3
  953. package/demo/pages/macos/macos-sections/sonoma/MacOSNotificationBannerSection.d.ts +0 -3
  954. package/demo/pages/macos/macos-sections/sonoma/MacOSPopoverSection.d.ts +0 -3
  955. package/demo/pages/macos/macos-sections/sonoma/MacOSSearchBarSection.d.ts +0 -3
  956. package/demo/pages/macos/macos-sections/sonoma/MacOSSegmentedControlSection.d.ts +0 -3
  957. package/demo/pages/macos/macos-sections/sonoma/MacOSSidebarSection.d.ts +0 -3
  958. package/demo/pages/macos/macos-sections/sonoma/MacOSToolbarSection.d.ts +0 -3
  959. package/demo/pages/macos/macos-sections/sonoma/MacOSWidgetSection.d.ts +0 -3
  960. package/demo/pages/macos/macos-sections/sonoma/MacOSWindowSection.d.ts +0 -3
  961. package/demo/pages/macos/macos-sections/sonoma/SonomaColorsSection.d.ts +0 -3
  962. package/demo/pages/macos/macos-sections/sonoma/SonomaLayoutContentSection.d.ts +0 -3
  963. package/demo/pages/macos/macos-sections/sonoma/SonomaLayoutSidebarSection.d.ts +0 -3
  964. package/demo/pages/macos/macos-sections/sonoma/SonomaMaterialsSection.d.ts +0 -3
  965. package/demo/pages/macos/macos-sections/sonoma/SonomaShapesSection.d.ts +0 -3
  966. package/demo/pages/macos/macos-sections/sonoma/SonomaTypographySection.d.ts +0 -3
  967. package/demo/pages/macos/macos-sections/tahoe/MacOSBackgroundsSection.d.ts +0 -3
  968. package/demo/pages/macos/macos-sections/tahoe/MacOSColorsSection.d.ts +0 -3
  969. package/demo/pages/macos/macos-sections/tahoe/MacOSMaterialsSection.d.ts +0 -3
  970. package/demo/pages/macos/macos-sections/tahoe/MacOSTahoeSection.d.ts +0 -2
  971. package/demo/pages/macos/macos-sections/tahoe/MacOSTextStylesSection.d.ts +0 -3
  972. package/demo/pages/macos/macos-sections/tahoe/TahoeCommandPaletteSection.d.ts +0 -2
  973. package/demo/pages/macos/macos-sections/tahoe/TahoeDialogSection.d.ts +0 -3
  974. package/demo/pages/macos/macos-sections/tahoe/TahoeDockSection.d.ts +0 -3
  975. package/demo/pages/macos/macos-sections/tahoe/TahoeLayoutContentSection.d.ts +0 -3
  976. package/demo/pages/macos/macos-sections/tahoe/TahoeLayoutSidebarSection.d.ts +0 -3
  977. package/demo/pages/macos/macos-sections/tahoe/TahoeNotificationBannerSection.d.ts +0 -3
  978. package/demo/pages/macos/macos-sections/tahoe/TahoePopoverSection.d.ts +0 -3
  979. package/demo/pages/macos/macos-sections/tahoe/TahoeProgressBarSection.d.ts +0 -3
  980. package/demo/pages/macos/macos-sections/tahoe/TahoeSearchBarSection.d.ts +0 -3
  981. package/demo/pages/macos/macos-sections/tahoe/TahoeSegmentedControlSection.d.ts +0 -3
  982. package/demo/pages/macos/macos-sections/tahoe/TahoeToolbarSection.d.ts +0 -3
  983. package/demo/pages/macos/macos-sections/tahoe/TahoeWidgetSection.d.ts +0 -3
  984. package/demo/pages/macos/macos-sections/tahoe/TahoeWindowSection.d.ts +0 -3
  985. package/demo/pages/mcp/MCPServerPage.d.ts +0 -2
  986. package/demo/pages/mcp/mcp-sections/ClientConfigSection.d.ts +0 -3
  987. package/demo/pages/mcp/mcp-sections/DeploymentSection.d.ts +0 -3
  988. package/demo/pages/mcp/mcp-sections/InstallationSection.d.ts +0 -3
  989. package/demo/pages/mcp/mcp-sections/OverviewSection.d.ts +0 -3
  990. package/demo/pages/mcp/mcp-sections/PromptsSection.d.ts +0 -3
  991. package/demo/pages/mcp/mcp-sections/ResourcesSection.d.ts +0 -3
  992. package/demo/pages/mcp/mcp-sections/SecuritySection.d.ts +0 -3
  993. package/demo/pages/mcp/mcp-sections/ToolsSection.d.ts +0 -3
  994. package/demo/pages/tailwind/AccessibilityUtilities.d.ts +0 -1
  995. package/demo/pages/tailwind/BackgroundUtilities.d.ts +0 -1
  996. package/demo/pages/tailwind/BordersUtilities.d.ts +0 -1
  997. package/demo/pages/tailwind/Colors.d.ts +0 -1
  998. package/demo/pages/tailwind/EffectsUtilities.d.ts +0 -1
  999. package/demo/pages/tailwind/FiltersUtilities.d.ts +0 -1
  1000. package/demo/pages/tailwind/FlexboxGridUtilities.d.ts +0 -1
  1001. package/demo/pages/tailwind/InteractivityUtilities.d.ts +0 -1
  1002. package/demo/pages/tailwind/LayoutUtilities.d.ts +0 -1
  1003. package/demo/pages/tailwind/SVGUtilities.d.ts +0 -1
  1004. package/demo/pages/tailwind/TablesUtilities.d.ts +0 -1
  1005. package/demo/pages/tailwind/TailwindIntroduction.d.ts +0 -1
  1006. package/demo/pages/tailwind/TransformsUtilities.d.ts +0 -1
  1007. package/demo/pages/tailwind/TransitionsAnimations.d.ts +0 -1
  1008. package/demo/pages/tailwind/TypographyUtilities.d.ts +0 -1
  1009. package/demo/utils/constants.d.ts +0 -13
  1010. package/demo/utils/index.d.ts +0 -1
  1011. package/documentation/APIReferenceSection-DhLda4os.js +0 -1
  1012. package/documentation/APIReferenceSection-bp_k9Tqz.js +0 -213
  1013. package/documentation/ActiveLinkSection-VZpThvCH.js +0 -79
  1014. package/documentation/ActiveLinkSection-tNH1S8co.js +0 -23
  1015. package/documentation/AdvancedColorSystemSection-Bpg0ykpE.js +0 -181
  1016. package/documentation/AdvancedColorSystemSection-DV105GJ4.js +0 -17
  1017. package/documentation/AdvancedFeaturesSection-7mYHkn6Y.js +0 -1
  1018. package/documentation/AdvancedFeaturesSection-Bg3qw8SS.js +0 -70
  1019. package/documentation/AdvancedFeaturesSection-D5EPjVA_.js +0 -32
  1020. package/documentation/AdvancedFeaturesSection-Dx2FHJQ4.js +0 -117
  1021. package/documentation/AlertSection-BANRD0WY.js +0 -26
  1022. package/documentation/AlertSection-D2ZMBu8r.js +0 -96
  1023. package/documentation/AnchorLinkSection-BJiqE8DS.js +0 -20
  1024. package/documentation/AnchorLinkSection-DzqR1Ja0.js +0 -65
  1025. package/documentation/ArchitecturalPatternsComparisonSection-BXa3fD3O.js +0 -34
  1026. package/documentation/ArchitecturalPatternsComparisonSection-qvrXsvTR.js +0 -182
  1027. package/documentation/ArchitectureOverviewSection-C8sgSFI-.js +0 -210
  1028. package/documentation/ArchitectureOverviewSection-D0tlNXWy.js +0 -1
  1029. package/documentation/AreaChartSection-BOwKYw6Y.js +0 -22
  1030. package/documentation/AreaChartSection-CzLGWCua.js +0 -132
  1031. package/documentation/AuthorCardSection-CHuq5QLN.js +0 -18
  1032. package/documentation/AuthorCardSection-CrxUxl7Q.js +0 -79
  1033. package/documentation/AvatarSection-BG9u4AUq.js +0 -89
  1034. package/documentation/AvatarSection-DevddyMw.js +0 -19
  1035. package/documentation/BackgroundsSection-CC7L7uIS.js +0 -6
  1036. package/documentation/BackgroundsSection-rIeljh3V.js +0 -365
  1037. package/documentation/BadgeSection-3vXDcqn1.js +0 -49
  1038. package/documentation/BadgeSection-DXHhFhnL.js +0 -179
  1039. package/documentation/BarChartSection-CATVPfb7.js +0 -23
  1040. package/documentation/BarChartSection-DZmMeDJ_.js +0 -127
  1041. package/documentation/BasicTableSection-CKpQEXFP.js +0 -36
  1042. package/documentation/BasicTableSection-Dk1pMX7T.js +0 -133
  1043. package/documentation/BasicUsageSection-C6jzFsy4.js +0 -45
  1044. package/documentation/BasicUsageSection-Cr562E1H.js +0 -133
  1045. package/documentation/BestPracticesSection-BLDoPxOK.js +0 -1
  1046. package/documentation/BestPracticesSection-BNrOOboM.js +0 -137
  1047. package/documentation/BestPracticesSection-BVQwqior.js +0 -1
  1048. package/documentation/BestPracticesSection-BhHp4zsd.js +0 -151
  1049. package/documentation/BestPracticesSection-BjJJEr21.js +0 -91
  1050. package/documentation/BestPracticesSection-C-w5FwtZ.js +0 -79
  1051. package/documentation/BestPracticesSection-C0CfdYdW.js +0 -153
  1052. package/documentation/BestPracticesSection-Coso4hou.js +0 -34
  1053. package/documentation/BestPracticesSection-CuLnMSUm.js +0 -1
  1054. package/documentation/BestPracticesSection-D1TzGwt4.js +0 -1
  1055. package/documentation/BestPracticesSection-Dcf1Ecin.js +0 -151
  1056. package/documentation/BestPracticesSection-WftLca9v.js +0 -1
  1057. package/documentation/BestPracticesSection-ec4Mf-f9.js +0 -61
  1058. package/documentation/BestPracticesSection-kFMiJLRj.js +0 -1
  1059. package/documentation/BorderRadiusSection-CM_dDRJI.js +0 -58
  1060. package/documentation/BorderRadiusSection-CQ2ET4Kp.js +0 -1
  1061. package/documentation/ButtonDripSection-Dva1BJM-.js +0 -110
  1062. package/documentation/ButtonDripSection-ZXvRsatv.js +0 -21
  1063. package/documentation/ButtonLoaderSection-BZuT9Xfl.js +0 -153
  1064. package/documentation/ButtonLoaderSection-ZUjulNxT.js +0 -31
  1065. package/documentation/CardContainerSection-Z7NOSIc4.js +0 -61
  1066. package/documentation/CardContainerSection-j-BU0Fsq.js +0 -22
  1067. package/documentation/CardSection-nulnD1Rl.js +0 -26
  1068. package/documentation/CardSection-xhkzCZXI.js +0 -136
  1069. package/documentation/CardTitleSection-DKFkHUhY.js +0 -20
  1070. package/documentation/CardTitleSection-kRleax_l.js +0 -72
  1071. package/documentation/CarouselCardsSection-BZ49UPm1.js +0 -174
  1072. package/documentation/CarouselCardsSection-DuLDA6jR.js +0 -38
  1073. package/documentation/CarouselImageSection-Bw6VB4Sy.js +0 -39
  1074. package/documentation/CarouselImageSection-xi_Ys2D4.js +0 -179
  1075. package/documentation/CarouselSection-Deuko-HQ.js +0 -123
  1076. package/documentation/CarouselSection-tGiiAPUS.js +0 -25
  1077. package/documentation/CheckboxSection-CzqqD53Y.js +0 -175
  1078. package/documentation/CheckboxSection-DvV3_WXa.js +0 -29
  1079. package/documentation/ClientConfigSection-Gp3e7u6v.js +0 -39
  1080. package/documentation/ClientConfigSection-IutnGjQM.js +0 -126
  1081. package/documentation/CodeExamplesSection-B_dafIDz.js +0 -134
  1082. package/documentation/CodeExamplesSection-DbIVosHK.js +0 -68
  1083. package/documentation/CoinCardSection-Dva3hwNM.js +0 -132
  1084. package/documentation/CoinCardSection-lovvJF09.js +0 -13
  1085. package/documentation/CoinInfoCardSection-8zw579l9.js +0 -12
  1086. package/documentation/CoinInfoCardSection-Did86Nnb.js +0 -148
  1087. package/documentation/CoinListBoxSection-Bar8p9MH.js +0 -24
  1088. package/documentation/CoinListBoxSection-D_KM8_nW.js +0 -129
  1089. package/documentation/CollapseSection-BMLzKQqC.js +0 -28
  1090. package/documentation/CollapseSection-js4VAcmK.js +0 -84
  1091. package/documentation/CollectionCardSection-D2HwaGHj.js +0 -78
  1092. package/documentation/CollectionCardSection-Df34NuPH.js +0 -17
  1093. package/documentation/CollectionSelectListSection-CNAfimrX.js +0 -15
  1094. package/documentation/CollectionSelectListSection-LGvQya5I.js +0 -149
  1095. package/documentation/ColorCustomizationSection-B82JJ1c2.js +0 -141
  1096. package/documentation/ColorCustomizationSection-D4e9KLUe.js +0 -1
  1097. package/documentation/ColorSystemSection-CIqTbBOI.js +0 -1
  1098. package/documentation/ColorSystemSection-Dhgkg-r-.js +0 -339
  1099. package/documentation/ColumnsSection-DrYNzV9j.js +0 -435
  1100. package/documentation/ColumnsSection-qPdS2C02.js +0 -109
  1101. package/documentation/CommonErrorsSection-D5ulhjHy.js +0 -77
  1102. package/documentation/CommonErrorsSection-D__sdWvP.js +0 -1
  1103. package/documentation/ComponentAnatomySection-C9tEDK7p.js +0 -78
  1104. package/documentation/ComponentAnatomySection-CqsdkM8N.js +0 -1
  1105. package/documentation/ComponentStatusSection-BR69AE7p.js +0 -148
  1106. package/documentation/ComponentStatusSection-CNigvIxm.js +0 -1
  1107. package/documentation/ComposedChartSection-CoIPhfXm.js +0 -21
  1108. package/documentation/ComposedChartSection-Q_8Ho__v.js +0 -113
  1109. package/documentation/CurrencySwapIconsSection-DQn8jXE-.js +0 -7
  1110. package/documentation/CurrencySwapIconsSection-zs2ai4Bd.js +0 -73
  1111. package/documentation/CustomColorPaletteSection-CDwYb_hG.js +0 -74
  1112. package/documentation/CustomColorPaletteSection-D7wgseaA.js +0 -19
  1113. package/documentation/CustomIconsSection-BlUe77an.js +0 -172
  1114. package/documentation/CustomIconsSection-WTHmHO_1.js +0 -3
  1115. package/documentation/DataFetchingSection-D5ZMyrfR.js +0 -576
  1116. package/documentation/DataFetchingSection-ZdwqQJWR.js +0 -128
  1117. package/documentation/DefiAppLogoSection-CM6swWaf.js +0 -38
  1118. package/documentation/DefiAppLogoSection-DdW6TZ5c.js +0 -132
  1119. package/documentation/DeploymentSection-BptA4WV3.js +0 -36
  1120. package/documentation/DeploymentSection-Ca1Z8a_c.js +0 -136
  1121. package/documentation/DesignPrinciplesSection-BZwAzzwG.js +0 -68
  1122. package/documentation/DesignPrinciplesSection-DYwidCK8.js +0 -1
  1123. package/documentation/DocumentationSection-BD7CQC84.js +0 -1
  1124. package/documentation/DocumentationSection-CWJn_wOD.js +0 -66
  1125. package/documentation/DrawerSection-Cl0RmlNx.js +0 -155
  1126. package/documentation/DrawerSection-DHBZDxRV.js +0 -42
  1127. package/documentation/DynamicRoutesSection-Der_Tsz0.js +0 -112
  1128. package/documentation/DynamicRoutesSection-NQ3SszLU.js +0 -47
  1129. package/documentation/ExamplesSection-BFn_F-uM.js +0 -54
  1130. package/documentation/ExamplesSection-CUiKkdx2.js +0 -261
  1131. package/documentation/FileInputSection-BNVeIt5U.js +0 -73
  1132. package/documentation/FileInputSection-xuGI-LEy.js +0 -237
  1133. package/documentation/FileStructureSection-BA53QV4j.js +0 -26
  1134. package/documentation/FileStructureSection-BORCUzqw.js +0 -101
  1135. package/documentation/FormComponentsSection-BB7qCeJ_.js +0 -1
  1136. package/documentation/FormComponentsSection-yKE3yL-Y.js +0 -148
  1137. package/documentation/FormMethodsSection-BjBBjdJs.js +0 -194
  1138. package/documentation/FormMethodsSection-DUQ4_4_0.js +0 -53
  1139. package/documentation/HamburgerSection-BjB9wmVz.js +0 -97
  1140. package/documentation/HamburgerSection-Cu9u90NY.js +0 -19
  1141. package/documentation/HookCategoriesSection-C4pBQyC8.js +0 -119
  1142. package/documentation/HookCategoriesSection-RnedxUZ_.js +0 -1
  1143. package/documentation/HookDocumentationSection-4pMJBhbt.js +0 -100
  1144. package/documentation/HookDocumentationSection-CUmrdSCq.js +0 -467
  1145. package/documentation/HookFeaturesSection-BbF7TeKh.js +0 -1
  1146. package/documentation/HookFeaturesSection-luGHopK_.js +0 -70
  1147. package/documentation/IconArchitectureSection-BAj9emvS.js +0 -145
  1148. package/documentation/IconArchitectureSection-BOrQFHbe.js +0 -11
  1149. package/documentation/IconSizingGuideSection-Bow9HZ_l.js +0 -1
  1150. package/documentation/IconSizingGuideSection-DuhPNOqd.js +0 -118
  1151. package/documentation/IconSystemAPISection-C95E0VaN.js +0 -138
  1152. package/documentation/IconSystemAPISection-DcO3FtRL.js +0 -1
  1153. package/documentation/IconSystemBenefitsSection-DT75ytKf.js +0 -1
  1154. package/documentation/IconSystemBenefitsSection-zDDW4StV.js +0 -120
  1155. package/documentation/ImageSection-CQzFYVm1.js +0 -82
  1156. package/documentation/ImageSection-VZ3y1snc.js +0 -508
  1157. package/documentation/ImplementationExamplesSection-COS7tuYv.js +0 -761
  1158. package/documentation/ImplementationExamplesSection-DL4lxRDR.js +0 -429
  1159. package/documentation/ImplementationGuidelinesSection-DNJwGuZi.js +0 -144
  1160. package/documentation/ImplementationGuidelinesSection-nkcQfH3s.js +0 -1
  1161. package/documentation/ImplementationStatusSection-CtqaxsyY.js +0 -1
  1162. package/documentation/ImplementationStatusSection-lv5t0EIh.js +0 -62
  1163. package/documentation/ImplementedFeaturesSection-Bddbm4jZ.js +0 -1
  1164. package/documentation/ImplementedFeaturesSection-DP37ByDA.js +0 -70
  1165. package/documentation/InfoCardSection-4npPvpiJ.js +0 -291
  1166. package/documentation/InfoCardSection-C7W36XJN.js +0 -38
  1167. package/documentation/InputSearcherSection-Bm_4y_eJ.js +0 -267
  1168. package/documentation/InputSearcherSection-DnVt-6OY.js +0 -45
  1169. package/documentation/InputSection-DDSrmZ91.js +0 -50
  1170. package/documentation/InputSection-DSFy5BhS.js +0 -280
  1171. package/documentation/InstallationSection-Pi9lzZwp.js +0 -22
  1172. package/documentation/InstallationSection-t5nTJfBu.js +0 -125
  1173. package/documentation/KeyValueRowSection-CGEK8RAk.js +0 -17
  1174. package/documentation/KeyValueRowSection-wAQ2xSoa.js +0 -117
  1175. package/documentation/KeyboardNavigationSection-B5JFQ5NE.js +0 -27
  1176. package/documentation/KeyboardNavigationSection-_hqOBAEW.js +0 -130
  1177. package/documentation/LayoutPrinciplesSection-D5lu96bu.js +0 -148
  1178. package/documentation/LayoutPrinciplesSection-U-wTD-h4.js +0 -1
  1179. package/documentation/LayoutTypesSection-dCUlT5Rx.js +0 -450
  1180. package/documentation/LayoutTypesSection-qQ-9wgXe.js +0 -1
  1181. package/documentation/LineChartSection-C-ssHn9r.js +0 -130
  1182. package/documentation/LineChartSection-CVJV483A.js +0 -21
  1183. package/documentation/ListContainerSection-BljbeejO.js +0 -39
  1184. package/documentation/ListContainerSection-DialCrM_.js +0 -168
  1185. package/documentation/ListItemSection-BDxVzPbx.js +0 -132
  1186. package/documentation/ListItemSection-BdCtOBHx.js +0 -37
  1187. package/documentation/LiveDemoSection-DosdGK0A.js +0 -1
  1188. package/documentation/LiveDemoSection-NoTlYspW.js +0 -56
  1189. package/documentation/LiveDemonstrationsSection-CbcGEM9e.js +0 -539
  1190. package/documentation/LiveDemonstrationsSection-CwEpTYEs.js +0 -28
  1191. package/documentation/LivePriceFeedSection-CIIrnZ4o.js +0 -143
  1192. package/documentation/LivePriceFeedSection-V76Z5Fer.js +0 -20
  1193. package/documentation/LoaderSection-CkUnMvCy.js +0 -96
  1194. package/documentation/LoaderSection-DEAO4HDA.js +0 -23
  1195. package/documentation/LogoSection-DBRfP-OY.js +0 -101
  1196. package/documentation/LogoSection-DuwWvmb4.js +0 -265
  1197. package/documentation/LucideIconsSection-C8zgDfWJ.js +0 -1
  1198. package/documentation/LucideIconsSection-kEaPLh0V.js +0 -169
  1199. package/documentation/MFESupportSection-Bv716SHU.js +0 -97
  1200. package/documentation/MFESupportSection-Du1uqyKB.js +0 -222
  1201. package/documentation/MacOSBackgroundsSection-BCOYwP0T.js +0 -1
  1202. package/documentation/MacOSBackgroundsSection-CFzGRTIi.js +0 -293
  1203. package/documentation/MacOSColorsSection-BLdQLmVU.js +0 -1
  1204. package/documentation/MacOSColorsSection-C7Z8okVD.js +0 -305
  1205. package/documentation/MacOSCommandPaletteSection-BTrRzuuO.js +0 -143
  1206. package/documentation/MacOSCommandPaletteSection-DVNy_6I7.js +0 -33
  1207. package/documentation/MacOSMaterialsSection-Df-ADZ6d.js +0 -280
  1208. package/documentation/MacOSMaterialsSection-DsZwofSg.js +0 -1
  1209. package/documentation/MacOSNotificationBannerSection-C58OPCNq.js +0 -169
  1210. package/documentation/MacOSNotificationBannerSection-CUorA6r9.js +0 -25
  1211. package/documentation/MacOSPopoverSection-BDDYuhqI.js +0 -266
  1212. package/documentation/MacOSPopoverSection-BkgBnoyB.js +0 -33
  1213. package/documentation/MacOSSearchBarSection-B4kt_090.js +0 -17
  1214. package/documentation/MacOSSearchBarSection-CAqjk9yl.js +0 -108
  1215. package/documentation/MacOSSegmentedControlSection-BmrrShpJ.js +0 -19
  1216. package/documentation/MacOSSegmentedControlSection-D_zqGd1h.js +0 -138
  1217. package/documentation/MacOSSidebarSection-D-64MM8U.js +0 -35
  1218. package/documentation/MacOSSidebarSection-DUpDMHGi.js +0 -251
  1219. package/documentation/MacOSTahoeSection-Glabuf3q.js +0 -1
  1220. package/documentation/MacOSTahoeSection-N_tppoSk.js +0 -98
  1221. package/documentation/MacOSTextStylesSection-BHMRNo-v.js +0 -366
  1222. package/documentation/MacOSTextStylesSection-DlvKbXki.js +0 -1
  1223. package/documentation/MacOSToolbarSection-COuNpmj_.js +0 -100
  1224. package/documentation/MacOSToolbarSection-CdsL85Jb.js +0 -23
  1225. package/documentation/MacOSWidgetSection-BNaAjj5p.js +0 -107
  1226. package/documentation/MacOSWidgetSection-b_I1PVF7.js +0 -19
  1227. package/documentation/MacOSWindowSection-29UkbnpD.js +0 -237
  1228. package/documentation/MacOSWindowSection-D4C22kkM.js +0 -22
  1229. package/documentation/MenuItemsGuideSection-Ba6VQNK9.js +0 -351
  1230. package/documentation/MenuItemsGuideSection-CbvbuCdn.js +0 -126
  1231. package/documentation/ModalSection-445ZMEa_.js +0 -30
  1232. package/documentation/ModalSection-BWoZ5Pcl.js +0 -114
  1233. package/documentation/NFTGridSection-2-m_Uk8V.js +0 -19
  1234. package/documentation/NFTGridSection-CEinlBJu.js +0 -160
  1235. package/documentation/NestedRoutesSection-D_qsJSnp.js +0 -39
  1236. package/documentation/NestedRoutesSection-DrqTtZfw.js +0 -120
  1237. package/documentation/NotificationCardSection-BajbpGsh.js +0 -29
  1238. package/documentation/NotificationCardSection-BsEFLr03.js +0 -120
  1239. package/documentation/OverviewSection-BFOZHsnd.js +0 -21
  1240. package/documentation/OverviewSection-qQ_zeErg.js +0 -149
  1241. package/documentation/PaginationSection-DBp0eqDB.js +0 -141
  1242. package/documentation/PaginationSection-Vg1h9RV9.js +0 -19
  1243. package/documentation/PanelActionCardSection-Czo1uDNy.js +0 -29
  1244. package/documentation/PanelActionCardSection-Dpm0_Mfp.js +0 -104
  1245. package/documentation/PanelCardSection-Db257Bkk.js +0 -60
  1246. package/documentation/PanelCardSection-DvJ5QG8z.js +0 -16
  1247. package/documentation/ParamTabSection-D3tpzPXp.js +0 -94
  1248. package/documentation/ParamTabSection-DzcRCqZr.js +0 -581
  1249. package/documentation/PieChartSection-DHKMnFF6.js +0 -91
  1250. package/documentation/PieChartSection-Oe6rJh93.js +0 -19
  1251. package/documentation/PinCodeSection-CDtuT8Kw.js +0 -235
  1252. package/documentation/PinCodeSection-CnM3hDz5.js +0 -32
  1253. package/documentation/PlaygroundSection-BDwyp4DF.js +0 -1
  1254. package/documentation/PlaygroundSection-CbAGK96L.js +0 -415
  1255. package/documentation/ProgressbarSection-BzHZ0AfK.js +0 -22
  1256. package/documentation/ProgressbarSection-CXAiNNFG.js +0 -142
  1257. package/documentation/PromptsSection-Be0ObKFK.js +0 -118
  1258. package/documentation/PromptsSection-COY6XUPp.js +0 -18
  1259. package/documentation/RadarChartSection-B8qTV7dc.js +0 -21
  1260. package/documentation/RadarChartSection-Dsjj4EQ6.js +0 -114
  1261. package/documentation/RadioGroupSection-D4QKj2um.js +0 -269
  1262. package/documentation/RadioGroupSection-uEBc9tpG.js +0 -37
  1263. package/documentation/RadioSection-3Q2d-3lM.js +0 -27
  1264. package/documentation/RadioSection-CULyvM_s.js +0 -183
  1265. package/documentation/ResourcesSection-BwB_aHaD.js +0 -13
  1266. package/documentation/ResourcesSection-CTMhP33o.js +0 -119
  1267. package/documentation/RevealContentSection-ZnhGy2aO.js +0 -21
  1268. package/documentation/RevealContentSection-fASJbh2Y.js +0 -80
  1269. package/documentation/RouteConfigurationSection-B3spETiJ.js +0 -42
  1270. package/documentation/RouteConfigurationSection-goiMMamN.js +0 -88
  1271. package/documentation/ScrollToTopSection-CtOc-TS2.js +0 -141
  1272. package/documentation/ScrollToTopSection-IPskJwsB.js +0 -38
  1273. package/documentation/ScrollbarSection-BpZ-yYIY.js +0 -103
  1274. package/documentation/ScrollbarSection-DfK0WSIX.js +0 -30
  1275. package/documentation/SearchSection-WT9_CxCF.js +0 -45
  1276. package/documentation/SearchSection-fY2x4mhW.js +0 -268
  1277. package/documentation/SecuritySection-DKj4sx3q.js +0 -27
  1278. package/documentation/SecuritySection-fTtKf_Se.js +0 -164
  1279. package/documentation/SelectSection-ChCN6Gvt.js +0 -346
  1280. package/documentation/SelectSection-XHHIw0x1.js +0 -52
  1281. package/documentation/SettingsPanelSection-C7_20M4F.js +0 -1
  1282. package/documentation/SettingsPanelSection-Ks-nNrFJ.js +0 -139
  1283. package/documentation/ShadowsSection-CJYATM7F.js +0 -1
  1284. package/documentation/ShadowsSection-DfueUFqR.js +0 -101
  1285. package/documentation/SidebarMenuSection-DXhSvAfX.js +0 -108
  1286. package/documentation/SidebarMenuSection-SrSpe80k.js +0 -47
  1287. package/documentation/SidebarSection-BaFbib_i.js +0 -70
  1288. package/documentation/SidebarSection-DEYX9Kqh.js +0 -26
  1289. package/documentation/SizingSection-B0SxFX0i.js +0 -1
  1290. package/documentation/SizingSection-CFCLxAKR.js +0 -97
  1291. package/documentation/SkeletonSection-CVq7HYVY.js +0 -202
  1292. package/documentation/SkeletonSection-CbIR-XQ0.js +0 -53
  1293. package/documentation/SonomaColorsSection-ByEpUCmF.js +0 -388
  1294. package/documentation/SonomaColorsSection-Dgz5XvhV.js +0 -1
  1295. package/documentation/SonomaLayoutContentSection-D1AFn8Hp.js +0 -67
  1296. package/documentation/SonomaLayoutContentSection-bZkduOQx.js +0 -16
  1297. package/documentation/SonomaLayoutSidebarSection-CJgyBUch.js +0 -96
  1298. package/documentation/SonomaLayoutSidebarSection-Yyp4COXe.js +0 -27
  1299. package/documentation/SonomaMaterialsSection-BBoVMvgC.js +0 -9
  1300. package/documentation/SonomaMaterialsSection-CXb0ND7f.js +0 -334
  1301. package/documentation/SonomaShapesSection-DwvNaMWx.js +0 -482
  1302. package/documentation/SonomaShapesSection-IficAPxh.js +0 -10
  1303. package/documentation/SonomaTypographySection-BYarPbGF.js +0 -389
  1304. package/documentation/SonomaTypographySection-LjJ2_rZA.js +0 -1
  1305. package/documentation/SpacingSystemSection-DHOiKnLP.js +0 -1
  1306. package/documentation/SpacingSystemSection-gi1hOD6c.js +0 -79
  1307. package/documentation/SpinnerSection-DNHEdjKZ.js +0 -78
  1308. package/documentation/SpinnerSection-nP1nOJnU.js +0 -18
  1309. package/documentation/StandaloneAppSection-DktAXH3T.js +0 -181
  1310. package/documentation/StandaloneAppSection-zGt98xAO.js +0 -71
  1311. package/documentation/StepperSection-BdPopNnz.js +0 -29
  1312. package/documentation/StepperSection-CsJZAGkY.js +0 -166
  1313. package/documentation/SwitchSection-BAgMBu2Q.js +0 -28
  1314. package/documentation/SwitchSection-ByC85Kap.js +0 -223
  1315. package/documentation/SystemOverviewSection-CAWlhqIB.js +0 -1
  1316. package/documentation/SystemOverviewSection-ydaPDpDw.js +0 -58
  1317. package/documentation/TabModalSection-Bu3a4ryu.js +0 -52
  1318. package/documentation/TabModalSection-TRVdGNTT.js +0 -200
  1319. package/documentation/TabSection-BdLxBPop.js +0 -85
  1320. package/documentation/TabSection-CDQ62WfZ.js +0 -293
  1321. package/documentation/TabSelectSection-Bwf53Fqf.js +0 -420
  1322. package/documentation/TabSelectSection-qEsIlzZP.js +0 -102
  1323. package/documentation/TahoeCommandPaletteSection-CAOQM68l.js +0 -21
  1324. package/documentation/TahoeCommandPaletteSection-DLEKbcYr.js +0 -217
  1325. package/documentation/TahoeDialogSection-JnVEuZ_D.js +0 -22
  1326. package/documentation/TahoeDialogSection-hRAC-9FQ.js +0 -228
  1327. package/documentation/TahoeDockSection-DN01lgZU.js +0 -29
  1328. package/documentation/TahoeDockSection-DeSCH1-K.js +0 -228
  1329. package/documentation/TahoeLayoutContentSection-B7FMGrb_.js +0 -68
  1330. package/documentation/TahoeLayoutContentSection-DR8ZGq2-.js +0 -17
  1331. package/documentation/TahoeLayoutSidebarSection-BB1sn0vA.js +0 -114
  1332. package/documentation/TahoeLayoutSidebarSection-YtwQSoHS.js +0 -36
  1333. package/documentation/TahoeNotificationBannerSection-B5wxMzg7.js +0 -22
  1334. package/documentation/TahoeNotificationBannerSection-Cfz6pCML.js +0 -144
  1335. package/documentation/TahoePopoverSection-FNNHRW8y.js +0 -220
  1336. package/documentation/TahoePopoverSection-Sws9YM-u.js +0 -24
  1337. package/documentation/TahoeProgressBarSection-CDG0UwBs.js +0 -124
  1338. package/documentation/TahoeProgressBarSection-rnsLopEr.js +0 -16
  1339. package/documentation/TahoeSearchBarSection-BjALRSiL.js +0 -10
  1340. package/documentation/TahoeSearchBarSection-ClkkTHcY.js +0 -117
  1341. package/documentation/TahoeSegmentedControlSection-Cm6Ds1no.js +0 -178
  1342. package/documentation/TahoeSegmentedControlSection-DJxWMV52.js +0 -12
  1343. package/documentation/TahoeToolbarSection-BNGPeBHt.js +0 -17
  1344. package/documentation/TahoeToolbarSection-g85Im8FS.js +0 -81
  1345. package/documentation/TahoeWidgetSection-DD7Apywi.js +0 -121
  1346. package/documentation/TahoeWidgetSection-DVnHBOjI.js +0 -13
  1347. package/documentation/TahoeWindowSection-B42c7BLl.js +0 -24
  1348. package/documentation/TahoeWindowSection-CuHmRGj3.js +0 -289
  1349. package/documentation/TailwindConfigSection-BY9HXUhA.js +0 -23
  1350. package/documentation/TailwindConfigSection-DvZuNkc7.js +0 -128
  1351. package/documentation/TestingSection-BVxXJMgj.js +0 -150
  1352. package/documentation/TestingSection-DOh318Tm.js +0 -36
  1353. package/documentation/TextareaSection-3_t7ai9G.js +0 -34
  1354. package/documentation/TextareaSection-Dzu49LSf.js +0 -258
  1355. package/documentation/ThemeArchitectureSection-Bw24JBsA.js +0 -143
  1356. package/documentation/ThemeArchitectureSection-CDldshGL.js +0 -27
  1357. package/documentation/ThemeConfigurationSection-4TdHDxO0.js +0 -1
  1358. package/documentation/ThemeConfigurationSection-COAiRQZF.js +0 -139
  1359. package/documentation/ThemeHooksSection-Cd6DadGN.js +0 -1
  1360. package/documentation/ThemeHooksSection-dOrSRbrn.js +0 -173
  1361. package/documentation/ThemeProviderIntegrationSection-8ztYnv_H.js +0 -73
  1362. package/documentation/ThemeProviderIntegrationSection-BTj95Kt0.js +0 -122
  1363. package/documentation/ThemeProviderRequiredSection-hcvSPDrZ.js +0 -1
  1364. package/documentation/ThemeProviderRequiredSection-kWXCDNKy.js +0 -114
  1365. package/documentation/ThemeProviderSection-C9ZV8aUv.js +0 -1
  1366. package/documentation/ThemeProviderSection-EtkntPnC.js +0 -143
  1367. package/documentation/ToastSection-C2_Av055.js +0 -38
  1368. package/documentation/ToastSection-NoDnkMGu.js +0 -168
  1369. package/documentation/ToggleBarSection-BdjFoJjH.js +0 -186
  1370. package/documentation/ToggleBarSection-CSPKIKSE.js +0 -45
  1371. package/documentation/ToolsSection-C-esUuLz.js +0 -221
  1372. package/documentation/ToolsSection-DWfaPzVU.js +0 -58
  1373. package/documentation/TooltipSection-FyDJKnf1.js +0 -64
  1374. package/documentation/TooltipSection-jjPa6g0x.js +0 -185
  1375. package/documentation/TopupButtonSection-BXI8TeYG.js +0 -25
  1376. package/documentation/TopupButtonSection-BynGsCmq.js +0 -98
  1377. package/documentation/TransactionInfoSection-DdhvAYC-.js +0 -86
  1378. package/documentation/TransactionInfoSection-XCLFoGEj.js +0 -16
  1379. package/documentation/TucuUiLogoSection--s8pA7EB.js +0 -26
  1380. package/documentation/TucuUiLogoSection-BC4AT0Nk.js +0 -85
  1381. package/documentation/TypographySection--Tmn50-J.js +0 -276
  1382. package/documentation/TypographySection-BiGmlBcz.js +0 -33
  1383. package/documentation/TypographySection-CNrhDmGi.js +0 -1
  1384. package/documentation/TypographySection-Dus4EyTE.js +0 -142
  1385. package/documentation/UsageExamplesSection-DcTyTiz0.js +0 -150
  1386. package/documentation/UsageExamplesSection-tPQlBUXB.js +0 -84
  1387. package/documentation/UsingThemeSystemSection-Bn76akZW.js +0 -164
  1388. package/documentation/UsingThemeSystemSection-CK0SJMLl.js +0 -106
  1389. package/documentation/ValidationSystemSection-Bl-anwHL.js +0 -222
  1390. package/documentation/ValidationSystemSection-w5wRflZH.js +0 -53
  1391. package/documentation/WCAGPrinciplesSection-B_iYHZne.js +0 -1
  1392. package/documentation/WCAGPrinciplesSection-By2amHOf.js +0 -126
  1393. package/hooks/index.d.ts +0 -14
  1394. package/hooks/use-anchor-scroll.d.ts +0 -1
  1395. package/hooks/use-breakpoint.d.ts +0 -1
  1396. package/hooks/use-click-away.d.ts +0 -1
  1397. package/hooks/use-copy-to-clipboard.d.ts +0 -1
  1398. package/hooks/use-element-size.d.ts +0 -9
  1399. package/hooks/use-event-listener.d.ts +0 -7
  1400. package/hooks/use-grid-switcher.d.ts +0 -6
  1401. package/hooks/use-is-mobile.d.ts +0 -4
  1402. package/hooks/use-is-mounted.d.ts +0 -1
  1403. package/hooks/use-lock-body-scroll.d.ts +0 -1
  1404. package/hooks/use-measure.d.ts +0 -1
  1405. package/hooks/use-scrollable-slider.d.ts +0 -7
  1406. package/hooks/use-toast-store.d.ts +0 -17
  1407. package/hooks/use-window-scroll.d.ts +0 -11
  1408. package/index-DWDUS-PU.js +0 -1342
  1409. package/index-DoxeCFUJ.js +0 -88761
  1410. package/libs/framer-motion/fade-in-bottom.d.ts +0 -18
  1411. package/libs/index.d.ts +0 -3
  1412. package/libs/local-storage/index.d.ts +0 -7
  1413. package/libs/range-map.d.ts +0 -1
  1414. package/lucide-react/index.d.ts +0 -1
  1415. package/react-router-dom/index.d.ts +0 -1
  1416. package/swiper-react/index.d.ts +0 -2
  1417. package/tether-DaYvmdAU.js +0 -5
  1418. package/tether-EofDinu3.js +0 -1
  1419. package/themes/auth/components/auth-provider.d.ts +0 -7
  1420. package/themes/auth/components/index.d.ts +0 -1
  1421. package/themes/auth/index.d.ts +0 -1
  1422. package/themes/components/index.d.ts +0 -3
  1423. package/themes/components/settings/background-picker.d.ts +0 -2
  1424. package/themes/components/settings/color-dot.d.ts +0 -5
  1425. package/themes/components/settings/color-swatch-modal.d.ts +0 -7
  1426. package/themes/components/settings/default-color-settings.d.ts +0 -2
  1427. package/themes/components/settings/direction-switcher.d.ts +0 -2
  1428. package/themes/components/settings/index.d.ts +0 -19
  1429. package/themes/components/settings/lang-selector.d.ts +0 -6
  1430. package/themes/components/settings/layout-switcher.d.ts +0 -4
  1431. package/themes/components/settings/restore-defaults.d.ts +0 -2
  1432. package/themes/components/settings/settings-button.d.ts +0 -2
  1433. package/themes/components/settings/settings-drawer.d.ts +0 -2
  1434. package/themes/components/settings/settings-section-heading.d.ts +0 -4
  1435. package/themes/components/settings/settings-types.d.ts +0 -19
  1436. package/themes/components/settings/sonoma-accent-picker.d.ts +0 -2
  1437. package/themes/components/settings/switch-mode.d.ts +0 -6
  1438. package/themes/components/settings/switch-variant.d.ts +0 -5
  1439. package/themes/components/settings/switcher-button.d.ts +0 -7
  1440. package/themes/components/settings/tahoe-accent-picker.d.ts +0 -2
  1441. package/themes/components/settings/theme-icons.d.ts +0 -6
  1442. package/themes/components/settings/theme-switcher.d.ts +0 -2
  1443. package/themes/components/settings/theme-variant-switcher.d.ts +0 -2
  1444. package/themes/components/theme-background.d.ts +0 -33
  1445. package/themes/components/theme-provider/index.d.ts +0 -50
  1446. package/themes/components/theme-provider/mfe-app-theme-provider.d.ts +0 -11
  1447. package/themes/components/theme-provider/standalone-app-theme-provider.d.ts +0 -12
  1448. package/themes/components/theme-provider/theme-wrapper.d.ts +0 -63
  1449. package/themes/config/index.d.ts +0 -395
  1450. package/themes/hooks/index.d.ts +0 -3
  1451. package/themes/hooks/use-direction.d.ts +0 -1
  1452. package/themes/hooks/use-theme-color.d.ts +0 -29
  1453. package/themes/hooks/use-theme.d.ts +0 -118
  1454. package/themes/index.d.ts +0 -7
  1455. package/themes/pages/access-denied.d.ts +0 -6
  1456. package/themes/pages/default-error.d.ts +0 -5
  1457. package/themes/pages/disabled-page.d.ts +0 -5
  1458. package/themes/pages/fallback-page.d.ts +0 -8
  1459. package/themes/pages/forbidden.d.ts +0 -5
  1460. package/themes/pages/index.d.ts +0 -10
  1461. package/themes/pages/no-routes.d.ts +0 -5
  1462. package/themes/pages/not-found.d.ts +0 -5
  1463. package/themes/pages/server-error.d.ts +0 -5
  1464. package/themes/pages/unknown.d.ts +0 -5
  1465. package/themes/pages/user-blocked.d.ts +0 -5
  1466. package/themes/router/components/index.d.ts +0 -2
  1467. package/themes/router/components/mfe-app-routes-provider.d.ts +0 -16
  1468. package/themes/router/components/standalone-app-routes-provider.d.ts +0 -22
  1469. package/themes/router/hooks/index.d.ts +0 -1
  1470. package/themes/router/hooks/use-public-error-routes-config.d.ts +0 -6
  1471. package/themes/router/index.d.ts +0 -2
  1472. package/themes/types/index.d.ts +0 -15
package/CHANGELOG.md CHANGED
@@ -5,6 +5,48 @@ All notable changes to this project will be documented in this file.
5
5
  The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6
6
  and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
7
 
8
+ ## [2.7.1] - 2026-07-15
9
+
10
+ ### Fixed
11
+
12
+ - work around esbuild CJS-interop bug breaking react-use hooks
13
+ ## [2.7.0] - 2026-07-15
14
+
15
+ ### Added
16
+
17
+ - auto-detect NPM_TOKEN for --local-publish, no OTP needed
18
+ - consolidate publish scripts, move npm publish to CI
19
+ - extract demo/documentation pages into ui/tucu-docs
20
+ - add DataTable demo page and update navigation
21
+ - add DataTable component module to tucu-ui
22
+
23
+ ### Changed
24
+
25
+ - add demo app preview launch config
26
+ - bump Nx to 22.7.7 (latest patch on the current major)
27
+ - resolve peer dependency warnings, bump to latest compatible
28
+ - record post-remediation packaging metrics
29
+ - record packaging baseline metrics
30
+ - add WS1 packaging & dependency hygiene implementation plan
31
+ - add tucu-ui audit remediation spec (37 findings, 6 workstreams)
32
+ - update @e-burgos/tucu-ui dependency to published ^2.6.0
33
+ - prepare release @e-burgos/tucu-ui@2.6.0 and @e-burgos/tucu-ui-mcp@0.6.0
34
+ - add DataTable to component registry and generation tools
35
+ - regenerate props metadata for datatable components
36
+
37
+ ### Fixed
38
+
39
+ - enable per-module output so unused components tree-shake
40
+ - move datatable.css import to top of module
41
+ - roll up type definitions into a single index.d.ts
42
+ - honor --dry-run in publish-only mode
43
+ - verify dist artifacts exist before publishing
44
+ - drop non-standard style field and exports condition
45
+ - scope sideEffects to CSS files to enable tree-shaking
46
+ - replace lodash with lodash-es for ESM tree-shaking
47
+ - remove redundant react-router and @tanstack/table-core dependencies
48
+ - drop @e-burgos/tucu-ui-mcp from library runtime dependencies
49
+ - right button demo app
8
50
  ## [2.6.0] - 2026-06-02
9
51
 
10
52
  ### Added
@@ -0,0 +1,4 @@
1
+ const C = "data:image/svg+xml,%3csvg%20width='514'%20height='346'%20viewBox='0%200%20514%20346'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20d='M510.009%20261.774H455.964C459.909%20245.596%20462.007%20228.709%20462.007%20211.318C462.007%20176.766%20453.729%20144.136%20439.066%20115.327H477.4C479.612%20115.327%20481.39%20113.542%20481.39%20111.323C481.39%20109.103%20479.612%20107.318%20477.4%20107.318H434.779C398.612%2043.2476%20330.041%200%20251.413%200C199.124%200%20151.281%2019.1296%20114.453%2050.7988H49.5985C47.3865%2050.7988%2045.6078%2052.5836%2045.6078%2054.8032C45.6078%2057.0228%2047.3865%2058.8076%2049.5985%2058.8076H105.65C101.181%2063.1095%2096.8938%2067.6173%2092.8119%2072.3082H3.99068C1.7787%2072.3082%200%2074.093%200%2076.3126C0%2078.5322%201.7787%2080.317%203.99068%2080.317H86.1531C57.7623%20116.334%2040.819%20161.847%2040.819%20211.318C40.819%20239.006%2046.1323%20265.458%2055.7784%20289.69H45.2658C43.0538%20289.69%2041.2751%20291.475%2041.2751%20293.695C41.2751%20295.914%2043.0538%20297.699%2045.2658%20297.699H59.1533C60.6128%20300.949%2062.1406%20304.152%2063.7369%20307.31H16.5328C14.3209%20307.31%2012.5421%20309.095%2012.5421%20311.314C12.5421%20313.534%2014.3209%20315.319%2016.5328%20315.319H68.0469C72.9725%20324.037%2078.491%20332.366%2084.5569%20340.26H418.269C429.603%20325.524%20439.044%20309.209%20446.204%20291.75H485.381C487.593%20291.75%20489.372%20289.965%20489.372%20287.745C489.372%20285.526%20487.593%20283.741%20485.381%20283.741H449.305C450.97%20279.165%20452.475%20274.497%20453.843%20269.783H510.009C512.221%20269.783%20514%20267.998%20514%20265.778C514%20263.559%20512.221%20261.774%20510.009%20261.774Z'%20fill='%232D323E'/%3e%3cpath%20d='M339.915%20340.238H314.397C314.397%20338.385%20315.88%20336.898%20317.727%20336.898H336.563C338.433%20336.898%20339.915%20338.408%20339.915%20340.238Z'%20fill='%23424753'/%3e%3cpath%20d='M333.872%20336.898H320.463L324.819%20212.12L327.76%20214.065L333.872%20336.898Z'%20fill='%23424753'/%3e%3cpath%20d='M338.022%20340.238H312.505C312.505%20338.385%20313.987%20336.898%20315.834%20336.898H334.67C336.54%20336.898%20338.022%20338.408%20338.022%20340.238Z'%20fill='%23424753'/%3e%3cpath%20d='M325.275%20213.219L389.468%20250.402L388.761%20246.741C388.624%20246.009%20388.236%20245.368%20387.644%20244.934L345.707%20212.349C344.932%20211.754%20343.928%20211.571%20342.994%20211.846L334.579%20214.363C333.781%20214.592%20332.937%20214.5%20332.207%20214.088L326.62%20210.839L325.275%20213.219Z'%20fill='%23424753'/%3e%3cpath%20d='M323.907%20210.861L259.714%20248.045L263.225%20249.258C263.932%20249.51%20264.685%20249.487%20265.369%20249.189L314.443%20229.03C315.355%20228.664%20316.017%20227.863%20316.245%20226.925L318.274%20218.367C318.457%20217.543%20318.981%20216.857%20319.711%20216.445L325.298%20213.218L323.907%20210.861Z'%20fill='%23424753'/%3e%3cpath%20d='M326.62%20210.861V136.471L323.815%20138.919C323.268%20139.4%20322.903%20140.063%20322.789%20140.796L315.651%20193.517C315.515%20194.478%20315.857%20195.462%20316.564%20196.125L322.949%20202.166C323.542%20202.738%20323.884%20203.539%20323.884%20204.363V210.839H326.62V210.861Z'%20fill='%23424753'/%3e%3cpath%20d='M331.432%20336.897H319.118L323.473%20212.12H327.076L331.432%20336.897Z'%20fill='%23424753'/%3e%3cpath%20d='M328.343%20212.862C328.742%20211.165%20327.695%20209.464%20326.004%20209.063C324.312%20208.662%20322.617%20209.713%20322.218%20211.41C321.818%20213.108%20322.866%20214.809%20324.557%20215.209C326.249%20215.61%20327.944%20214.559%20328.343%20212.862Z'%20fill='%23424753'/%3e%3cpath%20d='M325.047%20214.82C326.634%20214.82%20327.92%20213.529%20327.92%20211.937C327.92%20210.344%20326.634%20209.053%20325.047%20209.053C323.46%20209.053%20322.174%20210.344%20322.174%20211.937C322.174%20213.529%20323.46%20214.82%20325.047%20214.82Z'%20fill='%23424753'/%3e%3cpath%20d='M260.854%20248.434L322.174%20211.937L322.128%20211.891L259.714%20248.045L260.854%20248.434Z'%20fill='%23424753'/%3e%3cpath%20d='M331.432%20336.097H319.141V336.898H331.432V336.097Z'%20fill='%23424753'/%3e%3cpath%20d='M325.731%20137.272L326.575%20209.305L326.62%20209.283V136.471L325.731%20137.272Z'%20fill='%23424753'/%3e%3cpath%20d='M389.24%20249.212L327.054%20214.179V214.248L389.468%20250.402L389.24%20249.212Z'%20fill='%23424753'/%3e%3cpath%20d='M423.742%20340.238H382.9C382.9%20337.286%20385.295%20334.883%20388.237%20334.883H418.406C421.348%20334.883%20423.742%20337.286%20423.742%20340.238Z'%20fill='%23535967'/%3e%3cpath%20d='M414.074%20334.884H392.569L399.547%20135.121L404.245%20138.233L414.074%20334.884Z'%20fill='%23535967'/%3e%3cpath%20d='M420.709%20340.238H379.867C379.867%20337.286%20382.262%20334.883%20385.204%20334.883H415.373C418.315%20334.883%20420.709%20337.286%20420.709%20340.238Z'%20fill='%23535967'/%3e%3cpath%20d='M400.277%20136.882L503.054%20196.422L501.8%20189.878C501.663%20189.146%20501.276%20188.505%20500.683%20188.047L432.271%20134.915C431.496%20134.32%20430.492%20134.137%20429.558%20134.411L414.461%20138.942C413.663%20139.171%20412.819%20139.079%20412.09%20138.667L402.467%20133.084L400.277%20136.882Z'%20fill='%23535967'/%3e%3cpath%20d='M398.111%20133.084L295.333%20192.624L301.605%20194.798C302.289%20195.049%20303.064%20195.026%20303.725%20194.729L385.226%20161.252L389.536%20143.084L400.277%20136.86L398.111%20133.084Z'%20fill='%23535967'/%3e%3cpath%20d='M402.466%20133.084V14.0039L397.449%2018.3515C396.902%2018.8321%20396.537%2019.4957%20396.423%2020.2279L384.77%20106.243C384.634%20107.204%20384.976%20108.188%20385.683%20108.851L397.13%20119.72C397.723%20120.292%20398.088%20121.093%20398.088%20121.917V133.061H402.466V133.084Z'%20fill='%23535967'/%3e%3cpath%20d='M410.151%20334.884H390.426L397.404%20135.121H403.15L410.151%20334.884Z'%20fill='%23535967'/%3e%3cpath%20d='M404.976%20137.054C406.046%20134.462%20404.819%20131.49%20402.236%20130.417C399.653%20129.343%20396.691%20130.574%20395.621%20133.166C394.551%20135.758%20395.778%20138.73%20398.361%20139.803C400.944%20140.877%20403.906%20139.646%20404.976%20137.054Z'%20fill='%23535967'/%3e%3cpath%20d='M404.191%20136.571C405.164%20134.212%20404.048%20131.508%20401.698%20130.531C399.347%20129.554%20396.652%20130.674%20395.679%20133.033C394.705%20135.391%20395.821%20138.095%20398.172%20139.072C400.522%20140.049%20403.217%20138.929%20404.191%20136.571Z'%20fill='%23535967'/%3e%3cpath%20d='M297.158%20193.264L395.329%20134.8L395.237%20134.754L295.333%20192.624L297.158%20193.264Z'%20fill='%23535967'/%3e%3cpath%20d='M410.151%20333.602H390.472V334.906H410.151V333.602Z'%20fill='%23535967'/%3e%3cpath%20d='M401.007%2015.2624L402.352%20130.635L402.466%20130.589V14.0039L401.007%2015.2624Z'%20fill='%23535967'/%3e%3cpath%20d='M502.689%20194.523L403.15%20138.415L403.127%20138.529L503.054%20196.422L502.689%20194.523Z'%20fill='%23535967'/%3e%3cpath%20d='M96.5974%20243.514C83.4396%20243.514%2072.6761%20232.714%2072.6761%20219.511V164.296C72.6761%20151.092%2083.4396%20140.292%2096.5974%20140.292C109.755%20140.292%20120.519%20151.092%20120.519%20164.296V219.534C120.519%20232.714%20109.755%20243.514%2096.5974%20243.514Z'%20fill='%23424753'/%3e%3cpath%20d='M97.9201%20340.376H95.3204V178.689C95.3204%20177.957%2095.9133%20177.385%2096.6203%20177.385C97.35%20177.385%2097.9201%20177.98%2097.9201%20178.689V340.376Z'%20fill='%23535967'/%3e%3cpath%20d='M97.92%20200.587L90.6683%20187.979C90.3035%20187.361%2089.5053%20187.132%2088.8896%20187.498C88.2739%20187.864%2088.0459%20188.665%2088.4108%20189.283L95.6624%20201.891L97.92%20200.587Z'%20fill='%23535967'/%3e%3cpath%20d='M97.5552%20215.666L104.807%20203.058C105.172%20202.44%20104.944%20201.64%20104.328%20201.273C103.712%20200.907%20102.914%20201.136%20102.549%20201.754L95.2976%20214.362L97.5552%20215.666Z'%20fill='%23535967'/%3e%3cpath%20d='M157.666%20217.245C140.974%20217.245%20127.292%20203.539%20127.292%20186.766V116.632C127.292%2099.882%20140.951%2086.1526%20157.666%2086.1526C174.359%2086.1526%20188.041%2099.8591%20188.041%20116.632V186.766C188.041%20203.539%20174.359%20217.245%20157.666%20217.245Z'%20fill='%23424753'/%3e%3cpath%20d='M159.331%20340.216H156.024V134.892C156.024%20133.977%20156.777%20133.222%20157.689%20133.222C158.601%20133.222%20159.354%20133.977%20159.354%20134.892V340.216H159.331Z'%20fill='%23535967'/%3e%3cpath%20d='M159.331%20162.739L150.118%20146.721C149.662%20145.921%20148.659%20145.646%20147.861%20146.104C147.062%20146.561%20146.789%20147.568%20147.245%20148.369L156.458%20164.387L159.331%20162.739Z'%20fill='%23535967'/%3e%3cpath%20d='M158.875%20181.869L168.088%20165.851C168.544%20165.05%20168.27%20164.043%20167.472%20163.586C166.674%20163.128%20165.67%20163.403%20165.214%20164.204L156.002%20180.221L158.875%20181.869Z'%20fill='%23535967'/%3e%3cpath%20d='M111.351%20331.291C112.742%20329.986%20113.381%20328.476%20112.834%20327.423C112.149%20326.119%20109.869%20325.913%20107.452%20326.828C107.566%20326.508%20107.703%20326.188%20107.794%20325.844C109.094%20321.703%20108.341%20317.767%20106.152%20317.081C104.008%20316.394%20101.249%20319.048%2099.9038%20323.03C98.7864%20318.476%2095.9587%20315.273%2093.5187%20315.845C91.2155%20316.394%2090.0981%20320.101%2090.8278%20324.334C87.4757%20322.847%2084.2147%20322.961%2083.1885%20324.769C82.1167%20326.623%2083.7814%20329.643%2086.9512%20331.84C85.4461%20332.343%2084.4199%20333.281%2084.2603%20334.425C84.0779%20335.844%2085.3093%20337.263%2087.2476%20338.132C87.1336%20338.407%2087.1108%20338.682%2087.1792%20338.956C87.3844%20339.826%2088.4562%20340.352%2089.8929%20340.398H90.0981C90.0981%20340.398%2090.0981%20340.398%2090.1209%20340.398H108.068V340.375C108.41%20340.329%20108.683%20340.192%20108.774%20339.94C108.843%20339.78%20108.797%20339.597%20108.706%20339.414C109.641%20339.322%20110.371%20338.956%20110.599%20338.315C110.781%20337.835%20110.644%20337.263%20110.257%20336.714C112.72%20336.553%20114.589%20335.478%20114.658%20334.082C114.704%20332.892%20113.335%20331.794%20111.351%20331.291Z'%20fill='%23535967'/%3e%3cpath%20d='M149.115%20323.648C151.669%20321.222%20152.854%20318.477%20151.828%20316.532C150.574%20314.129%20146.401%20313.763%20141.931%20315.456C142.159%20314.861%20142.365%20314.266%20142.57%20313.648C144.942%20306.029%20143.596%20298.798%20139.537%20297.516C135.592%20296.281%20130.529%20301.132%20128.067%20308.454C126.037%20300.079%20120.815%20294.176%20116.323%20295.228C112.104%20296.235%20110.029%20303.031%20111.397%20310.857C105.217%20308.111%2099.2425%20308.34%2097.3498%20311.635C95.3887%20315.044%2098.4444%20320.605%20104.282%20324.655C101.523%20325.593%2099.6074%20327.286%2099.3566%20329.414C99.0373%20332.046%20101.272%20334.632%20104.829%20336.21C104.624%20336.714%20104.579%20337.24%20104.693%20337.721C105.058%20339.3%20107.064%20340.283%20109.664%20340.375H110.052H110.074H143.049V340.352C143.687%20340.261%20144.166%20339.986%20144.326%20339.551C144.44%20339.254%20144.394%20338.933%20144.212%20338.59C145.945%20338.43%20147.245%20337.744%20147.678%20336.577C148.02%20335.684%20147.769%20334.654%20147.062%20333.625C151.577%20333.327%20155.044%20331.336%20155.158%20328.797C155.295%20326.6%20152.763%20324.563%20149.115%20323.648Z'%20fill='%23424753'/%3e%3cpath%20d='M373.687%20325.364C371.407%20323.213%20370.358%20320.764%20371.27%20319.025C372.388%20316.874%20376.105%20316.554%20380.095%20318.064C379.89%20317.538%20379.708%20317.012%20379.525%20316.463C377.404%20309.667%20378.613%20303.237%20382.239%20302.115C385.751%20301.017%20390.266%20305.342%20392.455%20311.84C394.279%20304.381%20398.931%20299.118%20402.922%20300.056C406.685%20300.948%20408.532%20307.012%20407.323%20313.968C412.819%20311.52%20418.132%20311.726%20419.842%20314.655C421.598%20317.698%20418.862%20322.641%20413.663%20326.256C416.125%20327.08%20417.813%20328.59%20418.064%20330.512C418.337%20332.846%20416.353%20335.157%20413.184%20336.576C413.366%20337.034%20413.412%20337.491%20413.298%20337.926C412.978%20339.345%20411.2%20340.214%20408.874%20340.306H408.532H408.509H379.138V340.283C378.567%20340.214%20378.134%20339.963%20377.997%20339.574C377.906%20339.322%20377.952%20339.025%20378.089%20338.727C376.538%20338.567%20375.375%20337.972%20374.987%20336.942C374.691%20336.141%20374.919%20335.226%20375.535%20334.311C371.521%20334.036%20368.442%20332.274%20368.328%20330.009C368.192%20327.995%20370.426%20326.188%20373.687%20325.364Z'%20fill='%23424753'/%3e%3cpath%20d='M407.62%20334.289C406.708%20333.419%20406.274%20332.435%20406.639%20331.726C407.095%20330.856%20408.6%20330.719%20410.197%20331.337C410.105%20331.131%20410.037%20330.902%20409.969%20330.696C409.102%20327.95%20409.604%20325.364%20411.063%20324.907C412.477%20324.449%20414.301%20326.211%20415.191%20328.842C415.92%20325.822%20417.813%20323.694%20419.409%20324.083C420.937%20324.449%20421.667%20326.898%20421.188%20329.712C423.423%20328.728%20425.566%20328.797%20426.251%20329.987C426.958%20331.222%20425.863%20333.213%20423.765%20334.677C424.768%20335.021%20425.452%20335.616%20425.544%20336.394C425.658%20337.332%20424.86%20338.27%20423.583%20338.842C423.651%20339.025%20423.674%20339.208%20423.628%20339.391C423.491%20339.963%20422.784%20340.307%20421.827%20340.352H421.69H409.832C409.604%20340.329%20409.421%20340.215%20409.376%20340.078C409.33%20339.963%20409.353%20339.849%20409.421%20339.734C408.806%20339.666%20408.327%20339.437%20408.167%20339.002C408.053%20338.682%20408.144%20338.316%20408.395%20337.95C406.776%20337.835%20405.522%20337.126%20405.476%20336.211C405.408%20335.364%20406.32%20334.632%20407.62%20334.289Z'%20fill='%23535967'/%3e%3cpath%20d='M262.997%20326.234C260.854%20324.198%20259.873%20321.887%20260.717%20320.262C261.766%20318.249%20265.278%20317.928%20269.017%20319.347C268.835%20318.866%20268.653%20318.34%20268.493%20317.837C266.486%20311.43%20267.626%20305.366%20271.047%20304.313C274.376%20303.261%20278.618%20307.357%20280.67%20313.489C282.381%20306.464%20286.759%20301.499%20290.522%20302.391C294.056%20303.238%20295.789%20308.958%20294.649%20315.503C299.848%20313.214%20304.842%20313.397%20306.439%20316.166C308.081%20319.027%20305.527%20323.695%20300.624%20327.104C302.95%20327.882%20304.546%20329.324%20304.774%20331.108C305.048%20333.305%20303.155%20335.479%20300.168%20336.829C300.327%20337.264%20300.373%20337.676%20300.282%20338.11C299.962%20339.438%20298.298%20340.261%20296.109%20340.353H295.789H295.766H268.083V340.33C267.535%20340.261%20267.148%20340.032%20267.011%20339.666C266.92%20339.415%20266.965%20339.14%20267.102%20338.865C265.643%20338.728%20264.548%20338.156%20264.183%20337.172C263.909%20336.417%20264.115%20335.548%20264.685%20334.701C260.899%20334.449%20257.98%20332.779%20257.889%20330.651C257.821%20328.729%20259.942%20327.012%20262.997%20326.234Z'%20fill='%23535967'/%3e%3cpath%20d='M294.125%20332.344C292.916%20331.2%20292.346%20329.873%20292.825%20328.957C293.418%20327.813%20295.402%20327.63%20297.522%20328.454C297.408%20328.179%20297.317%20327.882%20297.226%20327.584C296.086%20323.946%20296.747%20320.537%20298.663%20319.919C300.533%20319.324%20302.95%20321.635%20304.113%20325.113C305.071%20321.132%20307.556%20318.317%20309.7%20318.82C311.706%20319.301%20312.687%20322.527%20312.049%20326.257C314.99%20324.953%20317.818%20325.067%20318.73%20326.623C319.665%20328.248%20318.206%20330.879%20315.424%20332.802C316.746%20333.236%20317.636%20334.06%20317.772%20335.067C317.932%20336.303%20316.86%20337.538%20315.173%20338.293C315.264%20338.545%20315.287%20338.774%20315.241%20339.026C315.059%20339.781%20314.124%20340.238%20312.869%20340.284H312.687C312.687%20340.284%20312.687%20340.284%20312.664%20340.284H296.975V340.261C296.679%20340.215%20296.451%20340.101%20296.359%20339.895C296.314%20339.758%20296.337%20339.598%20296.405%20339.437C295.584%20339.346%20294.968%20339.025%20294.763%20338.476C294.604%20338.042%20294.718%20337.561%20295.06%20337.081C292.916%20336.943%20291.274%20336.005%20291.206%20334.769C291.183%20333.74%20292.392%20332.779%20294.125%20332.344Z'%20fill='%23424753'/%3e%3cpath%20d='M309.882%20142.673C309.677%20142.673%20309.495%20142.696%20309.312%20142.764C309.312%20142.673%20309.312%20142.581%20309.312%20142.49C309.312%20140.293%20307.534%20138.508%20305.344%20138.508C303.52%20138.508%20301.992%20139.721%20301.536%20141.391C301.308%20141.323%20301.08%20141.3%20300.829%20141.3C299.415%20141.3%20298.275%20142.444%20298.275%20143.863C298.275%20145.281%20299.415%20146.425%20300.829%20146.425C300.875%20146.425%20300.921%20146.425%20300.966%20146.425H309.837C310.886%20146.425%20311.707%20145.579%20311.707%20144.549C311.775%20143.519%20310.931%20142.673%20309.882%20142.673Z'%20fill='%23424753'/%3e%3cpath%20d='M240.809%2099.3101C239.738%2099.3101%20238.734%2099.6076%20237.891%20100.111C237.001%2096.2668%20233.581%2093.4065%20229.476%2093.4065C229.111%2093.4065%20228.769%2093.4294%20228.404%2093.4751C226.489%2089.1961%20222.224%2086.2214%20217.253%2086.2214C210.503%2086.2214%20205.03%2091.7132%20205.03%2098.4864C205.03%2098.555%20205.03%2098.6237%20205.03%2098.6923C204.209%2098.3033%20203.297%2098.0974%20202.339%2098.0974C198.85%2098.0974%20196.045%20100.935%20196.045%20104.413C196.045%20107.891%20198.873%20110.728%20202.339%20110.728H240.809C243.956%20110.728%20246.51%20108.166%20246.51%20105.008C246.51%20101.873%20243.956%2099.3101%20240.809%2099.3101Z'%20fill='%23424753'/%3e%3cpath%20d='M182.203%20235.482C182.91%20235.482%20183.572%20235.688%20184.119%20236.008C184.712%20233.491%20186.947%20231.592%20189.66%20231.592C189.888%20231.592%20190.139%20231.615%20190.367%20231.638C191.621%20228.823%20194.426%20226.878%20197.71%20226.878C202.157%20226.878%20205.737%20230.494%20205.737%20234.933C205.737%20234.979%20205.737%20235.025%20205.737%20235.07C206.284%20234.819%20206.877%20234.681%20207.516%20234.681C209.796%20234.681%20211.666%20236.535%20211.666%20238.846C211.666%20241.134%20209.819%20243.01%20207.516%20243.01H182.203C180.128%20243.01%20178.464%20241.317%20178.464%20239.258C178.464%20237.198%20180.128%20235.482%20182.203%20235.482Z'%20fill='%23424753'/%3e%3cpath%20d='M433.776%20317.789L433.707%20318.018C433.707%20318.041%20433.548%20318.636%20433.16%20319.368C432.795%20320.055%20432.179%20320.97%20431.199%20321.542C430.218%20322.114%20429.101%20322.229%20428.348%20322.206C427.527%20322.183%20426.934%20322.046%20426.912%20322.046L426.684%20321.977L426.752%20321.748C426.752%20321.725%20426.912%20321.13%20427.299%20320.398C427.664%20319.711%20428.28%20318.796%20429.26%20318.224C430.241%20317.652%20431.358%20317.538%20432.111%20317.561C432.932%20317.583%20433.525%20317.721%20433.548%20317.721L433.776%20317.789ZM427.276%20321.634C427.892%20321.748%20429.602%20321.931%20430.971%20321.13C432.339%20320.329%20432.977%20318.728%20433.183%20318.133C432.567%20318.018%20430.857%20317.835%20429.488%20318.636C428.143%20319.437%20427.482%20321.039%20427.276%20321.634Z'%20fill='%23535967'/%3e%3cpath%20d='M430.537%20323.258C428.371%20324.082%20425.954%20322.984%20425.954%20322.984C425.954%20322.984%20427.048%20320.558%20429.215%20319.735C431.381%20318.911%20433.798%20320.009%20433.798%20320.009C433.798%20320.009%20432.704%20322.435%20430.537%20323.258Z'%20fill='%23424753'/%3e%3cpath%20d='M425.886%20291.635V291.932C425.886%20291.955%20425.886%20292.733%20425.635%20293.717C425.407%20294.632%20424.928%20295.96%20423.925%20296.943C422.921%20297.927%20421.599%20298.408%20420.687%20298.614C419.683%20298.843%20418.931%20298.843%20418.908%20298.843H418.611V298.545C418.611%20298.522%20418.611%20297.744%20418.862%20296.76C419.09%20295.845%20419.569%20294.518%20420.573%20293.534C421.576%20292.55%20422.899%20292.07%20423.811%20291.864C424.814%20291.635%20425.567%20291.635%20425.589%20291.635H425.886ZM419.204%20298.248C419.98%20298.202%20422.1%20297.905%20423.514%20296.532C424.928%20295.136%20425.225%20293.008%20425.293%20292.23C424.518%20292.275%20422.397%20292.573%20420.983%20293.946C419.569%20295.342%20419.273%20297.47%20419.204%20298.248Z'%20fill='%23535967'/%3e%3cpath%20d='M423.605%20299.231C421.234%20300.879%20417.995%20300.307%20417.995%20300.307C417.995%20300.307%20418.588%20297.058%20420.96%20295.41C423.332%20293.763%20426.57%20294.335%20426.57%20294.335C426.57%20294.335%20425.977%20297.561%20423.605%20299.231Z'%20fill='%23424753'/%3e%3cpath%20d='M124.92%20283.947L125.102%20284.107C125.125%20284.13%20125.604%20284.541%20126.106%20285.228C126.562%20285.869%20127.155%20286.875%20127.246%20288.042C127.337%20289.209%20126.926%20290.308%20126.584%20291.017C126.197%20291.772%20125.786%20292.253%20125.786%20292.276L125.627%20292.459L125.444%20292.299C125.421%20292.276%20124.943%20291.864%20124.441%20291.177C123.962%20290.537%20123.392%20289.53%20123.301%20288.363C123.209%20287.196%20123.62%20286.097%20123.962%20285.388C124.35%20284.633%20124.76%20284.152%20124.76%20284.13L124.92%20283.947ZM125.535%20291.772C125.923%20291.246%20126.881%20289.736%20126.744%20288.088C126.607%20286.441%20125.421%20285.114%20124.965%20284.656C124.578%20285.182%20123.62%20286.692%20123.757%20288.34C123.894%20289.987%20125.079%20291.315%20125.535%20291.772Z'%20fill='%23424753'/%3e%3cpath%20d='M128.523%20289.46C128.295%20291.863%20126.197%20293.625%20126.197%20293.625C126.197%20293.625%20124.441%20291.497%20124.669%20289.094C124.897%20286.692%20126.995%20284.93%20126.995%20284.93C126.995%20284.93%20128.751%20287.058%20128.523%20289.46Z'%20fill='%23424753'/%3e%3cpath%20d='M78.7646%20311.703L78.9699%20311.68C78.9927%20311.68%2079.5172%20311.634%2080.2241%20311.772C80.8854%20311.886%2081.8204%20312.138%2082.5729%20312.801C83.3254%20313.442%2083.7131%20314.357%2083.9184%20314.975C84.1236%20315.662%2084.1692%20316.188%2084.1692%20316.211L84.192%20316.417L83.9868%20316.44C83.964%20316.44%2083.4395%20316.485%2082.7325%20316.348C82.0712%20316.234%2081.1363%20315.982%2080.3837%20315.318C79.6312%20314.678%2079.2435%20313.762%2079.0383%20313.145C78.8331%20312.458%2078.7875%20311.932%2078.7875%20311.909L78.7646%20311.703ZM83.7359%20316.028C83.6447%20315.479%2083.3482%20314.014%2082.2993%20313.099C81.2503%20312.184%2079.768%20312.092%2079.2207%20312.092C79.3119%20312.641%2079.6084%20314.106%2080.6574%20315.021C81.6836%20315.913%2083.1886%20316.028%2083.7359%20316.028Z'%20fill='%23424753'/%3e%3cpath%20d='M84.169%20312.893C85.446%20314.472%2085.218%20316.783%2085.218%20316.783C85.218%20316.783%2082.9148%20316.532%2081.6378%20314.953C80.3608%20313.374%2080.5888%20311.063%2080.5888%20311.063C80.5888%20311.063%2082.892%20311.314%2084.169%20312.893Z'%20fill='%23424753'/%3e%3cpath%20d='M364.703%20305.456H364.931C364.954%20305.456%20365.547%20305.433%20366.345%20305.616C367.074%20305.776%20368.123%20306.119%20368.922%20306.874C369.72%20307.629%20370.13%20308.659%20370.313%20309.391C370.518%20310.169%20370.541%20310.764%20370.541%20310.787V311.016H370.313C370.29%20311.016%20369.697%20311.039%20368.899%20310.856C368.169%20310.696%20367.12%20310.352%20366.322%20309.597C365.524%20308.842%20365.113%20307.812%20364.931%20307.08C364.726%20306.302%20364.703%20305.707%20364.703%20305.684V305.456ZM370.062%20310.535C369.993%20309.918%20369.72%20308.247%20368.602%20307.195C367.485%20306.119%20365.797%20305.936%20365.182%20305.913C365.25%20306.531%20365.524%20308.201%20366.641%20309.254C367.781%20310.329%20369.446%20310.512%20370.062%20310.535Z'%20fill='%23535967'/%3e%3cpath%20d='M370.7%20307.035C372.046%20308.865%20371.704%20311.428%20371.704%20311.428C371.704%20311.428%20369.15%20311.039%20367.781%20309.232C366.436%20307.401%20366.778%20304.838%20366.778%20304.838C366.778%20304.838%20369.355%20305.204%20370.7%20307.035Z'%20fill='%23424753'/%3e%3cpath%20d='M301.126%20326.211H195.087L197.026%20319.209L200.788%20305.526L203.069%20297.242L206.444%20285.023L212.92%20261.477L216.295%20249.258L239.92%20163.381H256.293L264.959%20194.844L279.918%20249.258L283.293%20261.477L289.769%20285.023L293.144%20297.242L299.187%20319.209L301.126%20326.211Z'%20fill='%23CACDD3'/%3e%3cpath%20d='M301.126%20326.212H195.087L197.026%20319.21L200.788%20305.526C274.673%20301.155%20264.936%20194.867%20264.936%20194.867L299.187%20319.21L301.126%20326.212Z'%20fill='%23AFB5C0'/%3e%3cpath%20d='M322.812%20326.212H173.401V340.468H322.812V326.212Z'%20fill='%23CACDD3'/%3e%3cpath%20d='M301.126%20326.211H195.087L197.026%20319.209H299.187L301.126%20326.211Z'%20fill='%23CACDD3'/%3e%3cpath%20d='M283.293%20261.478C283.293%20261.478%20281.081%20308.501%20227.241%20319.256L299.187%20319.21L283.293%20261.478Z'%20fill='%23979FAD'/%3e%3cpath%20d='M283.293%20261.477H212.92L216.295%20249.258H279.918L283.293%20261.477Z'%20fill='white'/%3e%3cpath%20d='M293.144%20297.242H203.069L206.444%20285.023H289.769L293.144%20297.242Z'%20fill='white'/%3e%3cpath%20d='M288.241%20326.212C288.241%20326.212%20268.448%20341.223%20195.087%20340.468H322.789V326.212H288.241Z'%20fill='%23AFB5C0'/%3e%3cpath%20d='M344.749%20345.181H149.365C148.043%20345.181%20146.971%20344.106%20146.971%20342.778V342.71C146.971%20341.383%20148.043%20340.307%20149.365%20340.307H344.749C346.072%20340.307%20347.144%20341.383%20347.144%20342.71V342.778C347.167%20344.083%20346.095%20345.181%20344.749%20345.181Z'%20fill='%23111827'/%3e%3cpath%20d='M153.083%20345.181H121.431C120.108%20345.181%20119.036%20344.106%20119.036%20342.778V342.71C119.036%20341.383%20120.108%20340.307%20121.431%20340.307H153.083C154.405%20340.307%20155.477%20341.383%20155.477%20342.71V342.778C155.477%20344.083%20154.405%20345.181%20153.083%20345.181Z'%20fill='%23111827'/%3e%3cpath%20d='M106.927%20345.181H73.6793C72.3567%20345.181%2071.2849%20344.106%2071.2849%20342.778V342.71C71.2849%20341.383%2072.3567%20340.307%2073.6793%20340.307H106.927C108.25%20340.307%20109.322%20341.383%20109.322%20342.71V342.778C109.322%20344.083%20108.25%20345.181%20106.927%20345.181Z'%20fill='%23111827'/%3e%3cpath%20d='M386.937%20345.181H359.64C358.318%20345.181%20357.246%20344.106%20357.246%20342.778V342.71C357.246%20341.383%20358.318%20340.307%20359.64%20340.307H386.937C388.259%20340.307%20389.331%20341.383%20389.331%20342.71V342.778C389.354%20344.083%20388.259%20345.181%20386.937%20345.181Z'%20fill='%23111827'/%3e%3cpath%20d='M422.625%20345.181H401.873C400.551%20345.181%20399.479%20344.106%20399.479%20342.778V342.71C399.479%20341.383%20400.551%20340.307%20401.873%20340.307H422.625C423.947%20340.307%20425.019%20341.383%20425.019%20342.71V342.778C425.019%20344.083%20423.947%20345.181%20422.625%20345.181Z'%20fill='%23111827'/%3e%3c/svg%3e";
2
+ export {
3
+ C as default
4
+ };
@@ -0,0 +1,4 @@
1
+ const C = "data:image/svg+xml,%3csvg%20width='514'%20height='346'%20viewBox='0%200%20514%20346'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20d='M510.009%20261.774H455.964C459.909%20245.596%20462.007%20228.709%20462.007%20211.318C462.007%20176.766%20453.729%20144.136%20439.066%20115.327H477.4C479.612%20115.327%20481.39%20113.542%20481.39%20111.323C481.39%20109.103%20479.612%20107.318%20477.4%20107.318H434.779C398.612%2043.2476%20330.041%200%20251.413%200C199.124%200%20151.281%2019.1296%20114.453%2050.7988H49.5985C47.3865%2050.7988%2045.6078%2052.5836%2045.6078%2054.8032C45.6078%2057.0228%2047.3865%2058.8076%2049.5985%2058.8076H105.65C101.181%2063.1095%2096.8938%2067.6173%2092.8119%2072.3082H3.99068C1.7787%2072.3082%200%2074.093%200%2076.3126C0%2078.5322%201.7787%2080.317%203.99068%2080.317H86.1531C57.7623%20116.334%2040.819%20161.847%2040.819%20211.318C40.819%20239.006%2046.1323%20265.458%2055.7784%20289.69H45.2658C43.0538%20289.69%2041.2751%20291.475%2041.2751%20293.695C41.2751%20295.914%2043.0538%20297.699%2045.2658%20297.699H59.1533C60.6128%20300.949%2062.1406%20304.152%2063.7369%20307.31H16.5328C14.3209%20307.31%2012.5421%20309.095%2012.5421%20311.314C12.5421%20313.534%2014.3209%20315.319%2016.5328%20315.319H68.0469C72.9725%20324.037%2078.491%20332.366%2084.5569%20340.26H418.269C429.603%20325.524%20439.044%20309.209%20446.204%20291.75H485.381C487.593%20291.75%20489.372%20289.965%20489.372%20287.745C489.372%20285.526%20487.593%20283.741%20485.381%20283.741H449.305C450.97%20279.165%20452.475%20274.497%20453.843%20269.783H510.009C512.221%20269.783%20514%20267.998%20514%20265.778C514%20263.559%20512.221%20261.774%20510.009%20261.774Z'%20fill='%23F3F4F6'/%3e%3cpath%20d='M339.915%20340.238H314.397C314.397%20338.385%20315.88%20336.898%20317.727%20336.898H336.563C338.433%20336.898%20339.915%20338.408%20339.915%20340.238Z'%20fill='%23E4E6E9'/%3e%3cpath%20d='M333.872%20336.898H320.463L324.819%20212.12L327.76%20214.065L333.872%20336.898Z'%20fill='%23E4E6E9'/%3e%3cpath%20d='M338.022%20340.238H312.505C312.505%20338.385%20313.987%20336.898%20315.834%20336.898H334.67C336.54%20336.898%20338.022%20338.408%20338.022%20340.238Z'%20fill='%23E4E6E9'/%3e%3cpath%20d='M325.275%20213.219L389.468%20250.402L388.761%20246.741C388.624%20246.009%20388.236%20245.368%20387.643%20244.934L345.707%20212.349C344.932%20211.754%20343.928%20211.571%20342.993%20211.846L334.579%20214.363C333.781%20214.592%20332.937%20214.5%20332.207%20214.088L326.62%20210.839L325.275%20213.219Z'%20fill='%23E4E6E9'/%3e%3cpath%20d='M323.907%20210.861L259.714%20248.045L263.225%20249.258C263.932%20249.51%20264.685%20249.487%20265.369%20249.189L314.443%20229.03C315.355%20228.664%20316.017%20227.863%20316.245%20226.925L318.274%20218.367C318.457%20217.543%20318.981%20216.857%20319.711%20216.445L325.298%20213.218L323.907%20210.861Z'%20fill='%23E4E6E9'/%3e%3cpath%20d='M326.62%20210.861V136.471L323.815%20138.919C323.268%20139.4%20322.903%20140.063%20322.789%20140.796L315.651%20193.517C315.515%20194.478%20315.857%20195.462%20316.564%20196.125L322.949%20202.166C323.542%20202.738%20323.884%20203.539%20323.884%20204.363V210.839H326.62V210.861Z'%20fill='%23E4E6E9'/%3e%3cpath%20d='M331.432%20336.897H319.118L323.473%20212.12H327.076L331.432%20336.897Z'%20fill='%23E4E6E9'/%3e%3cpath%20d='M328.343%20212.862C328.742%20211.165%20327.695%20209.464%20326.004%20209.063C324.312%20208.662%20322.617%20209.713%20322.218%20211.41C321.818%20213.108%20322.866%20214.809%20324.557%20215.209C326.249%20215.61%20327.944%20214.559%20328.343%20212.862Z'%20fill='%23E4E6E9'/%3e%3cpath%20d='M325.047%20214.82C326.634%20214.82%20327.92%20213.529%20327.92%20211.937C327.92%20210.344%20326.634%20209.053%20325.047%20209.053C323.46%20209.053%20322.174%20210.344%20322.174%20211.937C322.174%20213.529%20323.46%20214.82%20325.047%20214.82Z'%20fill='%23E4E6E9'/%3e%3cpath%20d='M260.854%20248.434L322.174%20211.937L322.128%20211.891L259.714%20248.045L260.854%20248.434Z'%20fill='%23E4E6E9'/%3e%3cpath%20d='M331.432%20336.097H319.141V336.898H331.432V336.097Z'%20fill='%23E4E6E9'/%3e%3cpath%20d='M325.731%20137.272L326.575%20209.305L326.62%20209.283V136.471L325.731%20137.272Z'%20fill='%23E4E6E9'/%3e%3cpath%20d='M389.24%20249.212L327.054%20214.179V214.248L389.468%20250.402L389.24%20249.212Z'%20fill='%23E4E6E9'/%3e%3cpath%20d='M423.742%20340.238H382.9C382.9%20337.286%20385.295%20334.883%20388.236%20334.883H418.406C421.348%20334.883%20423.742%20337.286%20423.742%20340.238Z'%20fill='%23E4E6E9'/%3e%3cpath%20d='M414.073%20334.884H392.569L399.547%20135.121L404.245%20138.233L414.073%20334.884Z'%20fill='%23E4E6E9'/%3e%3cpath%20d='M420.709%20340.238H379.867C379.867%20337.286%20382.262%20334.883%20385.204%20334.883H415.373C418.315%20334.883%20420.709%20337.286%20420.709%20340.238Z'%20fill='%23E4E6E9'/%3e%3cpath%20d='M400.277%20136.882L503.054%20196.422L501.8%20189.878C501.663%20189.146%20501.276%20188.505%20500.683%20188.047L432.271%20134.915C431.496%20134.32%20430.492%20134.137%20429.557%20134.411L414.461%20138.942C413.663%20139.171%20412.819%20139.079%20412.09%20138.667L402.466%20133.084L400.277%20136.882Z'%20fill='%23E4E6E9'/%3e%3cpath%20d='M398.111%20133.084L295.333%20192.624L301.605%20194.798C302.289%20195.049%20303.064%20195.026%20303.725%20194.729L385.226%20161.252L389.536%20143.084L400.277%20136.86L398.111%20133.084Z'%20fill='%23E4E6E9'/%3e%3cpath%20d='M402.466%20133.084V14.0039L397.449%2018.3515C396.902%2018.8321%20396.537%2019.4957%20396.423%2020.2279L384.77%20106.243C384.634%20107.204%20384.976%20108.188%20385.683%20108.851L397.13%20119.72C397.723%20120.292%20398.088%20121.093%20398.088%20121.917V133.061H402.466V133.084Z'%20fill='%23E4E6E9'/%3e%3cpath%20d='M410.151%20334.884H390.426L397.404%20135.121H403.15L410.151%20334.884Z'%20fill='%23E4E6E9'/%3e%3cpath%20d='M404.976%20137.054C406.046%20134.462%20404.819%20131.49%20402.236%20130.417C399.653%20129.343%20396.691%20130.574%20395.621%20133.166C394.551%20135.758%20395.778%20138.73%20398.361%20139.803C400.944%20140.877%20403.906%20139.646%20404.976%20137.054Z'%20fill='%23E4E6E9'/%3e%3cpath%20d='M404.191%20136.571C405.164%20134.212%20404.048%20131.508%20401.698%20130.531C399.347%20129.554%20396.653%20130.674%20395.679%20133.033C394.705%20135.391%20395.821%20138.095%20398.172%20139.072C400.522%20140.049%20403.217%20138.929%20404.191%20136.571Z'%20fill='%23E4E6E9'/%3e%3cpath%20d='M297.158%20193.264L395.329%20134.8L395.237%20134.754L295.333%20192.624L297.158%20193.264Z'%20fill='%23E4E6E9'/%3e%3cpath%20d='M410.151%20333.602H390.472V334.906H410.151V333.602Z'%20fill='%23E4E6E9'/%3e%3cpath%20d='M401.007%2015.2624L402.352%20130.635L402.466%20130.589V14.0039L401.007%2015.2624Z'%20fill='%23E4E6E9'/%3e%3cpath%20d='M502.689%20194.523L403.15%20138.415L403.128%20138.529L503.054%20196.422L502.689%20194.523Z'%20fill='%23E4E6E9'/%3e%3cpath%20d='M96.5974%20243.514C83.4395%20243.514%2072.6761%20232.714%2072.6761%20219.511V164.296C72.6761%20151.092%2083.4395%20140.292%2096.5974%20140.292C109.755%20140.292%20120.519%20151.092%20120.519%20164.296V219.534C120.519%20232.714%20109.755%20243.514%2096.5974%20243.514Z'%20fill='%23E4E6E9'/%3e%3cpath%20d='M97.92%20340.376H95.3203V178.689C95.3203%20177.957%2095.9132%20177.385%2096.6201%20177.385C97.3499%20177.385%2097.92%20177.98%2097.92%20178.689V340.376Z'%20fill='%23D7DADF'/%3e%3cpath%20d='M97.92%20200.587L90.6683%20187.979C90.3035%20187.361%2089.5053%20187.132%2088.8896%20187.498C88.2739%20187.864%2088.0459%20188.665%2088.4108%20189.283L95.6624%20201.891L97.92%20200.587Z'%20fill='%23D7DADF'/%3e%3cpath%20d='M97.5551%20215.666L104.807%20203.058C105.172%20202.44%20104.944%20201.64%20104.328%20201.273C103.712%20200.907%20102.914%20201.136%20102.549%20201.754L95.2975%20214.362L97.5551%20215.666Z'%20fill='%23D7DADF'/%3e%3cpath%20d='M157.666%20217.245C140.974%20217.245%20127.291%20203.539%20127.291%20186.766V116.632C127.291%2099.882%20140.951%2086.1526%20157.666%2086.1526C174.359%2086.1526%20188.041%2099.8591%20188.041%20116.632V186.766C188.041%20203.539%20174.359%20217.245%20157.666%20217.245Z'%20fill='%23E4E6E9'/%3e%3cpath%20d='M159.331%20340.216H156.024V134.892C156.024%20133.977%20156.777%20133.222%20157.689%20133.222C158.601%20133.222%20159.354%20133.977%20159.354%20134.892V340.216H159.331Z'%20fill='%23D7DADF'/%3e%3cpath%20d='M159.331%20162.739L150.118%20146.721C149.662%20145.921%20148.659%20145.646%20147.861%20146.104C147.062%20146.561%20146.789%20147.568%20147.245%20148.369L156.458%20164.387L159.331%20162.739Z'%20fill='%23D7DADF'/%3e%3cpath%20d='M158.875%20181.869L168.088%20165.851C168.544%20165.05%20168.27%20164.043%20167.472%20163.586C166.674%20163.128%20165.67%20163.403%20165.214%20164.204L156.001%20180.221L158.875%20181.869Z'%20fill='%23D7DADF'/%3e%3cpath%20d='M111.351%20331.291C112.742%20329.986%20113.381%20328.476%20112.834%20327.423C112.15%20326.119%20109.869%20325.913%20107.452%20326.828C107.566%20326.508%20107.703%20326.188%20107.794%20325.844C109.094%20321.703%20108.341%20317.767%20106.152%20317.081C104.009%20316.394%20101.249%20319.048%2099.9038%20323.03C98.7865%20318.476%2095.9588%20315.273%2093.5188%20315.845C91.2156%20316.394%2090.0982%20320.101%2090.8279%20324.334C87.4757%20322.847%2084.2148%20322.961%2083.1886%20324.769C82.1168%20326.623%2083.7815%20329.643%2086.9512%20331.84C85.4462%20332.343%2084.42%20333.281%2084.2604%20334.425C84.0779%20335.844%2085.3094%20337.263%2087.2477%20338.132C87.1337%20338.407%2087.1109%20338.682%2087.1793%20338.956C87.3845%20339.826%2088.4563%20340.352%2089.8929%20340.398H90.0982C90.0982%20340.398%2090.0982%20340.398%2090.121%20340.398H108.068V340.375C108.41%20340.329%20108.683%20340.192%20108.775%20339.94C108.843%20339.78%20108.797%20339.597%20108.706%20339.414C109.641%20339.322%20110.371%20338.956%20110.599%20338.315C110.781%20337.835%20110.644%20337.263%20110.257%20336.714C112.72%20336.553%20114.59%20335.478%20114.658%20334.082C114.704%20332.892%20113.335%20331.794%20111.351%20331.291Z'%20fill='%23DDDFE2'/%3e%3cpath%20d='M149.115%20323.648C151.669%20321.222%20152.855%20318.477%20151.828%20316.532C150.574%20314.129%20146.401%20313.763%20141.932%20315.456C142.16%20314.861%20142.365%20314.266%20142.57%20313.648C144.942%20306.029%20143.596%20298.798%20139.537%20297.516C135.592%20296.281%20130.53%20301.132%20128.067%20308.454C126.037%20300.079%20120.815%20294.176%20116.323%20295.228C112.104%20296.235%20110.029%20303.031%20111.397%20310.857C105.217%20308.111%2099.2427%20308.34%2097.3499%20311.635C95.3888%20315.044%2098.4445%20320.605%20104.282%20324.655C101.523%20325.593%2099.6075%20327.286%2099.3567%20329.414C99.0374%20332.046%20101.272%20334.632%20104.83%20336.21C104.624%20336.714%20104.579%20337.24%20104.693%20337.721C105.058%20339.3%20107.064%20340.283%20109.664%20340.375H110.052H110.075H143.049V340.352C143.687%20340.261%20144.166%20339.986%20144.326%20339.551C144.44%20339.254%20144.394%20338.933%20144.212%20338.59C145.945%20338.43%20147.245%20337.744%20147.678%20336.577C148.02%20335.684%20147.769%20334.654%20147.062%20333.625C151.578%20333.327%20155.044%20331.336%20155.158%20328.797C155.295%20326.6%20152.763%20324.563%20149.115%20323.648Z'%20fill='%23EAECEF'/%3e%3cpath%20d='M373.687%20325.364C371.407%20323.213%20370.358%20320.764%20371.27%20319.025C372.388%20316.874%20376.105%20316.554%20380.095%20318.064C379.89%20317.538%20379.708%20317.012%20379.525%20316.463C377.404%20309.667%20378.613%20303.237%20382.239%20302.115C385.751%20301.017%20390.266%20305.342%20392.455%20311.84C394.279%20304.381%20398.931%20299.118%20402.922%20300.056C406.685%20300.948%20408.532%20307.012%20407.323%20313.968C412.819%20311.52%20418.132%20311.726%20419.842%20314.655C421.598%20317.698%20418.862%20322.641%20413.663%20326.256C416.125%20327.08%20417.813%20328.59%20418.064%20330.512C418.337%20332.846%20416.353%20335.157%20413.184%20336.576C413.366%20337.034%20413.412%20337.491%20413.298%20337.926C412.978%20339.345%20411.2%20340.214%20408.874%20340.306H408.532H408.509H379.138V340.283C378.567%20340.214%20378.134%20339.963%20377.997%20339.574C377.906%20339.322%20377.952%20339.025%20378.089%20338.727C376.538%20338.567%20375.375%20337.972%20374.987%20336.942C374.691%20336.141%20374.919%20335.226%20375.535%20334.311C371.521%20334.036%20368.442%20332.274%20368.328%20330.009C368.192%20327.995%20370.426%20326.188%20373.687%20325.364Z'%20fill='%23EAEAEA'/%3e%3cpath%20d='M407.62%20334.289C406.708%20333.419%20406.274%20332.435%20406.639%20331.726C407.095%20330.856%20408.6%20330.719%20410.197%20331.337C410.105%20331.131%20410.037%20330.902%20409.969%20330.696C409.102%20327.95%20409.604%20325.364%20411.063%20324.907C412.477%20324.449%20414.301%20326.211%20415.191%20328.842C415.92%20325.822%20417.813%20323.694%20419.409%20324.083C420.937%20324.449%20421.667%20326.898%20421.188%20329.712C423.423%20328.728%20425.566%20328.797%20426.251%20329.987C426.957%20331.222%20425.863%20333.213%20423.765%20334.677C424.768%20335.021%20425.452%20335.616%20425.544%20336.394C425.658%20337.332%20424.86%20338.27%20423.583%20338.842C423.651%20339.025%20423.674%20339.208%20423.628%20339.391C423.491%20339.963%20422.784%20340.307%20421.827%20340.352H421.69H409.832C409.604%20340.329%20409.421%20340.215%20409.376%20340.078C409.33%20339.963%20409.353%20339.849%20409.421%20339.734C408.806%20339.666%20408.327%20339.437%20408.167%20339.002C408.053%20338.682%20408.144%20338.316%20408.395%20337.95C406.776%20337.835%20405.522%20337.126%20405.476%20336.211C405.408%20335.364%20406.32%20334.632%20407.62%20334.289Z'%20fill='%23DDDFE2'/%3e%3cpath%20d='M262.997%20326.234C260.854%20324.198%20259.873%20321.887%20260.717%20320.262C261.766%20318.249%20265.278%20317.928%20269.018%20319.347C268.835%20318.866%20268.653%20318.34%20268.493%20317.837C266.486%20311.43%20267.626%20305.366%20271.047%20304.313C274.376%20303.261%20278.618%20307.357%20280.67%20313.489C282.381%20306.464%20286.759%20301.499%20290.522%20302.391C294.056%20303.238%20295.789%20308.958%20294.649%20315.503C299.848%20313.214%20304.842%20313.397%20306.439%20316.166C308.081%20319.027%20305.527%20323.695%20300.624%20327.104C302.95%20327.882%20304.546%20329.324%20304.774%20331.108C305.048%20333.305%20303.155%20335.479%20300.168%20336.829C300.327%20337.264%20300.373%20337.676%20300.282%20338.11C299.962%20339.438%20298.298%20340.261%20296.109%20340.353H295.789H295.767H268.083V340.33C267.535%20340.261%20267.148%20340.032%20267.011%20339.666C266.92%20339.415%20266.965%20339.14%20267.102%20338.865C265.643%20338.728%20264.548%20338.156%20264.183%20337.172C263.909%20336.417%20264.115%20335.548%20264.685%20334.701C260.899%20334.449%20257.98%20332.779%20257.889%20330.651C257.821%20328.729%20259.942%20327.012%20262.997%20326.234Z'%20fill='%23F2F2F2'/%3e%3cpath%20d='M294.125%20332.344C292.916%20331.2%20292.346%20329.873%20292.825%20328.957C293.418%20327.813%20295.402%20327.63%20297.523%20328.454C297.409%20328.179%20297.317%20327.882%20297.226%20327.584C296.086%20323.946%20296.747%20320.537%20298.663%20319.919C300.533%20319.324%20302.95%20321.635%20304.113%20325.113C305.071%20321.132%20307.556%20318.317%20309.7%20318.82C311.707%20319.301%20312.687%20322.527%20312.049%20326.257C314.99%20324.953%20317.818%20325.067%20318.73%20326.623C319.665%20328.248%20318.206%20330.879%20315.424%20332.802C316.746%20333.236%20317.636%20334.06%20317.772%20335.067C317.932%20336.303%20316.86%20337.538%20315.173%20338.293C315.264%20338.545%20315.287%20338.774%20315.241%20339.026C315.059%20339.781%20314.124%20340.238%20312.87%20340.284H312.687C312.687%20340.284%20312.687%20340.284%20312.664%20340.284H296.975V340.261C296.679%20340.215%20296.451%20340.101%20296.36%20339.895C296.314%20339.758%20296.337%20339.598%20296.405%20339.437C295.584%20339.346%20294.968%20339.025%20294.763%20338.476C294.604%20338.042%20294.718%20337.561%20295.06%20337.081C292.916%20336.943%20291.274%20336.005%20291.206%20334.769C291.183%20333.74%20292.392%20332.779%20294.125%20332.344Z'%20fill='%23DDDFE2'/%3e%3cpath%20d='M309.882%20142.673C309.677%20142.673%20309.495%20142.696%20309.312%20142.764C309.312%20142.673%20309.312%20142.581%20309.312%20142.49C309.312%20140.293%20307.534%20138.508%20305.344%20138.508C303.52%20138.508%20301.992%20139.721%20301.536%20141.391C301.308%20141.323%20301.08%20141.3%20300.829%20141.3C299.415%20141.3%20298.275%20142.444%20298.275%20143.863C298.275%20145.281%20299.415%20146.425%20300.829%20146.425C300.875%20146.425%20300.921%20146.425%20300.966%20146.425H309.837C310.886%20146.425%20311.707%20145.579%20311.707%20144.549C311.775%20143.519%20310.931%20142.673%20309.882%20142.673Z'%20fill='%23F2F2F2'/%3e%3cpath%20d='M240.809%2099.3101C239.738%2099.3101%20238.734%2099.6076%20237.891%20100.111C237.001%2096.2668%20233.581%2093.4065%20229.476%2093.4065C229.111%2093.4065%20228.769%2093.4294%20228.404%2093.4751C226.489%2089.1961%20222.224%2086.2214%20217.253%2086.2214C210.503%2086.2214%20205.03%2091.7132%20205.03%2098.4864C205.03%2098.555%20205.03%2098.6237%20205.03%2098.6923C204.209%2098.3033%20203.297%2098.0974%20202.339%2098.0974C198.85%2098.0974%20196.045%20100.935%20196.045%20104.413C196.045%20107.891%20198.873%20110.728%20202.339%20110.728H240.809C243.956%20110.728%20246.51%20108.166%20246.51%20105.008C246.51%20101.873%20243.956%2099.3101%20240.809%2099.3101Z'%20fill='%23F0F2F5'/%3e%3cpath%20d='M182.203%20235.482C182.91%20235.482%20183.572%20235.688%20184.119%20236.008C184.712%20233.491%20186.947%20231.592%20189.66%20231.592C189.888%20231.592%20190.139%20231.615%20190.367%20231.638C191.621%20228.823%20194.426%20226.878%20197.71%20226.878C202.157%20226.878%20205.737%20230.494%20205.737%20234.933C205.737%20234.979%20205.737%20235.025%20205.737%20235.07C206.284%20234.819%20206.877%20234.681%20207.516%20234.681C209.796%20234.681%20211.666%20236.535%20211.666%20238.846C211.666%20241.134%20209.819%20243.01%20207.516%20243.01H182.203C180.128%20243.01%20178.464%20241.317%20178.464%20239.258C178.464%20237.198%20180.128%20235.482%20182.203%20235.482Z'%20fill='%23F2F2F2'/%3e%3cpath%20d='M433.776%20317.789L433.707%20318.018C433.707%20318.041%20433.548%20318.636%20433.16%20319.368C432.795%20320.055%20432.18%20320.97%20431.199%20321.542C430.218%20322.114%20429.101%20322.229%20428.348%20322.206C427.528%20322.183%20426.935%20322.046%20426.912%20322.046L426.684%20321.977L426.752%20321.748C426.752%20321.725%20426.912%20321.13%20427.299%20320.398C427.664%20319.711%20428.28%20318.796%20429.261%20318.224C430.241%20317.652%20431.359%20317.538%20432.111%20317.561C432.932%20317.583%20433.525%20317.721%20433.548%20317.721L433.776%20317.789ZM427.277%20321.634C427.892%20321.748%20429.603%20321.931%20430.971%20321.13C432.339%20320.329%20432.978%20318.728%20433.183%20318.133C432.567%20318.018%20430.857%20317.835%20429.489%20318.636C428.143%20319.437%20427.482%20321.039%20427.277%20321.634Z'%20fill='%23E4E4E4'/%3e%3cpath%20d='M430.538%20323.258C428.371%20324.082%20425.954%20322.984%20425.954%20322.984C425.954%20322.984%20427.049%20320.558%20429.215%20319.735C431.381%20318.911%20433.799%20320.009%20433.799%20320.009C433.799%20320.009%20432.704%20322.435%20430.538%20323.258Z'%20fill='%23F2F2F2'/%3e%3cpath%20d='M425.886%20291.635V291.932C425.886%20291.955%20425.886%20292.733%20425.635%20293.717C425.407%20294.632%20424.928%20295.96%20423.925%20296.943C422.921%20297.927%20421.599%20298.408%20420.687%20298.614C419.683%20298.843%20418.931%20298.843%20418.908%20298.843H418.611V298.545C418.611%20298.522%20418.611%20297.744%20418.862%20296.76C419.09%20295.845%20419.569%20294.518%20420.573%20293.534C421.576%20292.55%20422.899%20292.07%20423.811%20291.864C424.814%20291.635%20425.567%20291.635%20425.589%20291.635H425.886ZM419.204%20298.248C419.98%20298.202%20422.1%20297.905%20423.514%20296.532C424.928%20295.136%20425.225%20293.008%20425.293%20292.23C424.518%20292.275%20422.397%20292.573%20420.983%20293.946C419.569%20295.342%20419.273%20297.47%20419.204%20298.248Z'%20fill='%23E4E4E4'/%3e%3cpath%20d='M423.605%20299.231C421.234%20300.879%20417.995%20300.307%20417.995%20300.307C417.995%20300.307%20418.588%20297.058%20420.96%20295.41C423.332%20293.763%20426.57%20294.335%20426.57%20294.335C426.57%20294.335%20425.977%20297.561%20423.605%20299.231Z'%20fill='%23F2F2F2'/%3e%3cpath%20d='M124.92%20283.947L125.102%20284.107C125.125%20284.13%20125.604%20284.541%20126.106%20285.228C126.562%20285.869%20127.155%20286.875%20127.246%20288.042C127.337%20289.209%20126.927%20290.308%20126.584%20291.017C126.197%20291.772%20125.786%20292.253%20125.786%20292.276L125.627%20292.459L125.444%20292.299C125.421%20292.276%20124.943%20291.864%20124.441%20291.177C123.962%20290.537%20123.392%20289.53%20123.301%20288.363C123.209%20287.196%20123.62%20286.097%20123.962%20285.388C124.35%20284.633%20124.76%20284.152%20124.76%20284.13L124.92%20283.947ZM125.536%20291.772C125.923%20291.246%20126.881%20289.736%20126.744%20288.088C126.607%20286.441%20125.421%20285.114%20124.965%20284.656C124.578%20285.182%20123.62%20286.692%20123.757%20288.34C123.894%20289.987%20125.079%20291.315%20125.536%20291.772Z'%20fill='%23E4E4E4'/%3e%3cpath%20d='M128.523%20289.46C128.295%20291.863%20126.197%20293.625%20126.197%20293.625C126.197%20293.625%20124.441%20291.497%20124.669%20289.094C124.897%20286.692%20126.995%20284.93%20126.995%20284.93C126.995%20284.93%20128.751%20287.058%20128.523%20289.46Z'%20fill='%23F2F2F2'/%3e%3cpath%20d='M78.7647%20311.703L78.9699%20311.68C78.9927%20311.68%2079.5172%20311.634%2080.2241%20311.772C80.8854%20311.886%2081.8204%20312.138%2082.5729%20312.801C83.3255%20313.442%2083.7131%20314.357%2083.9184%20314.975C84.1236%20315.662%2084.1692%20316.188%2084.1692%20316.211L84.192%20316.417L83.9868%20316.44C83.964%20316.44%2083.4395%20316.485%2082.7326%20316.348C82.0713%20316.234%2081.1363%20315.982%2080.3838%20315.318C79.6312%20314.678%2079.2436%20313.762%2079.0383%20313.145C78.8331%20312.458%2078.7875%20311.932%2078.7875%20311.909L78.7647%20311.703ZM83.736%20316.028C83.6447%20315.479%2083.3483%20314.014%2082.2993%20313.099C81.2503%20312.184%2079.7681%20312.092%2079.2208%20312.092C79.312%20312.641%2079.6084%20314.106%2080.6574%20315.021C81.6836%20315.913%2083.1887%20316.028%2083.736%20316.028Z'%20fill='%23E4E4E4'/%3e%3cpath%20d='M84.1691%20312.893C85.4461%20314.472%2085.2181%20316.783%2085.2181%20316.783C85.2181%20316.783%2082.9149%20316.532%2081.6378%20314.953C80.3608%20313.374%2080.5889%20311.063%2080.5889%20311.063C80.5889%20311.063%2082.8921%20311.314%2084.1691%20312.893Z'%20fill='%23F2F2F2'/%3e%3cpath%20d='M364.703%20305.456H364.931C364.954%20305.456%20365.547%20305.433%20366.345%20305.616C367.074%20305.776%20368.123%20306.119%20368.922%20306.874C369.72%20307.629%20370.13%20308.659%20370.313%20309.391C370.518%20310.169%20370.541%20310.764%20370.541%20310.787V311.016H370.313C370.29%20311.016%20369.697%20311.039%20368.899%20310.856C368.169%20310.696%20367.12%20310.352%20366.322%20309.597C365.524%20308.842%20365.113%20307.812%20364.931%20307.08C364.726%20306.302%20364.703%20305.707%20364.703%20305.684V305.456ZM370.062%20310.535C369.993%20309.918%20369.72%20308.247%20368.602%20307.195C367.485%20306.119%20365.797%20305.936%20365.182%20305.913C365.25%20306.531%20365.524%20308.201%20366.641%20309.254C367.781%20310.329%20369.446%20310.512%20370.062%20310.535Z'%20fill='%23E4E4E4'/%3e%3cpath%20d='M370.7%20307.035C372.046%20308.865%20371.704%20311.428%20371.704%20311.428C371.704%20311.428%20369.15%20311.039%20367.781%20309.232C366.436%20307.401%20366.778%20304.838%20366.778%20304.838C366.778%20304.838%20369.355%20305.204%20370.7%20307.035Z'%20fill='%23F2F2F2'/%3e%3cpath%20d='M301.126%20326.211H195.088L197.026%20319.209L200.788%20305.526L203.069%20297.242L206.444%20285.023L212.92%20261.477L216.295%20249.258L239.92%20163.381H256.293L264.959%20194.844L279.918%20249.258L283.293%20261.477L289.769%20285.023L293.144%20297.242L299.187%20319.209L301.126%20326.211Z'%20fill='%233F444F'/%3e%3cpath%20d='M301.126%20326.212H195.088L197.026%20319.21L200.788%20305.526C274.673%20301.155%20264.936%20194.867%20264.936%20194.867L299.187%20319.21L301.126%20326.212Z'%20fill='%23343944'/%3e%3cpath%20d='M322.812%20326.212H173.401V340.468H322.812V326.212Z'%20fill='%233F444F'/%3e%3cpath%20d='M301.126%20326.211H195.088L197.026%20319.209H299.187L301.126%20326.211Z'%20fill='%23111827'/%3e%3cpath%20d='M283.293%20261.478C283.293%20261.478%20281.081%20308.501%20227.241%20319.256L299.187%20319.21L283.293%20261.478Z'%20fill='%2323272F'/%3e%3cpath%20d='M283.293%20261.477H212.92L216.295%20249.258H279.918L283.293%20261.477Z'%20fill='white'/%3e%3cpath%20d='M293.144%20297.242H203.069L206.444%20285.023H289.769L293.144%20297.242Z'%20fill='white'/%3e%3cpath%20d='M288.241%20326.212C288.241%20326.212%20268.448%20341.223%20195.088%20340.468H322.789V326.212H288.241Z'%20fill='%232F3541'/%3e%3cpath%20d='M344.749%20345.181H149.366C148.043%20345.181%20146.971%20344.106%20146.971%20342.778V342.71C146.971%20341.383%20148.043%20340.307%20149.366%20340.307H344.749C346.072%20340.307%20347.144%20341.383%20347.144%20342.71V342.778C347.167%20344.083%20346.095%20345.181%20344.749%20345.181Z'%20fill='%23111827'/%3e%3cpath%20d='M153.083%20345.181H121.431C120.108%20345.181%20119.036%20344.106%20119.036%20342.778V342.71C119.036%20341.383%20120.108%20340.307%20121.431%20340.307H153.083C154.405%20340.307%20155.477%20341.383%20155.477%20342.71V342.778C155.477%20344.083%20154.405%20345.181%20153.083%20345.181Z'%20fill='%23111827'/%3e%3cpath%20d='M106.927%20345.181H73.6794C72.3567%20345.181%2071.2849%20344.106%2071.2849%20342.778V342.71C71.2849%20341.383%2072.3567%20340.307%2073.6794%20340.307H106.927C108.25%20340.307%20109.322%20341.383%20109.322%20342.71V342.778C109.322%20344.083%20108.25%20345.181%20106.927%20345.181Z'%20fill='%23111827'/%3e%3cpath%20d='M386.937%20345.181H359.64C358.318%20345.181%20357.246%20344.106%20357.246%20342.778V342.71C357.246%20341.383%20358.318%20340.307%20359.64%20340.307H386.937C388.259%20340.307%20389.331%20341.383%20389.331%20342.71V342.778C389.354%20344.083%20388.259%20345.181%20386.937%20345.181Z'%20fill='%23111827'/%3e%3cpath%20d='M422.625%20345.181H401.873C400.551%20345.181%20399.479%20344.106%20399.479%20342.778V342.71C399.479%20341.383%20400.551%20340.307%20401.873%20340.307H422.625C423.947%20340.307%20425.019%20341.383%20425.019%20342.71V342.778C425.019%20344.083%20423.947%20345.181%20422.625%20345.181Z'%20fill='%23111827'/%3e%3c/svg%3e";
2
+ export {
3
+ C as default
4
+ };
@@ -0,0 +1,96 @@
1
+ import { jsx as e, jsxs as r } from "react/jsx-runtime";
2
+ import { Input as g } from "../inputs/input.mjs";
3
+ import { Button as p } from "../buttons/button/index.mjs";
4
+ import { FormField as h } from "../forms/form-field.mjs";
5
+ import b from "classnames";
6
+ import { Form as x } from "../forms/form.mjs";
7
+ function F({
8
+ title: s,
9
+ description: a,
10
+ buttonText: o,
11
+ onSubmit: d,
12
+ isLoading: t = !1,
13
+ error: l,
14
+ className: i,
15
+ successMessage: m,
16
+ children: n
17
+ }) {
18
+ function u(c) {
19
+ d && d(c);
20
+ }
21
+ return /* @__PURE__ */ e(
22
+ "div",
23
+ {
24
+ "data-tucu": "auth-form",
25
+ className: b("w-full max-w-md mx-auto", i),
26
+ children: /* @__PURE__ */ r(
27
+ "div",
28
+ {
29
+ "data-tucu": "auth-form-panel",
30
+ className: "bg-white dark:bg-gray-800 p-6 rounded-lg shadow-lg",
31
+ children: [
32
+ /* @__PURE__ */ e("h2", { className: "text-lg font-bold mb-6 text-center", children: s || "Forgot Password" }),
33
+ a && /* @__PURE__ */ e("p", { className: "text-sm text-gray-600 dark:text-gray-400 mb-6 text-center", children: a }),
34
+ /* @__PURE__ */ r("div", { className: "flex flex-col gap-4", children: [
35
+ n,
36
+ l && /* @__PURE__ */ e("div", { className: "mb-4 p-3 bg-red-50 border border-red-200 text-red-700 rounded-md text-sm dark:bg-red-900/20 dark:border-red-800 dark:text-red-400", children: l }),
37
+ m && /* @__PURE__ */ e("div", { className: "mb-4 p-3 bg-green-50 border border-green-200 text-green-700 rounded-md text-sm dark:bg-green-900/20 dark:border-green-800 dark:text-green-400", children: m }),
38
+ /* @__PURE__ */ r(
39
+ x,
40
+ {
41
+ onSubmit: u,
42
+ className: "grid grid-cols-1 gap-4",
43
+ useFormProps: {
44
+ defaultValues: {
45
+ email: ""
46
+ }
47
+ },
48
+ children: [
49
+ /* @__PURE__ */ e(
50
+ h,
51
+ {
52
+ name: "email",
53
+ label: "Email Address",
54
+ rules: {
55
+ required: "Email is required",
56
+ pattern: {
57
+ value: /^[^\s@]+@[^\s@]+\.[^\s@]+$/,
58
+ message: "Invalid email address"
59
+ }
60
+ },
61
+ helperText: "Enter the email address associated with your account",
62
+ showHelper: !0,
63
+ children: /* @__PURE__ */ e(
64
+ g,
65
+ {
66
+ type: "email",
67
+ placeholder: "Enter your email",
68
+ inputClassName: "focus:ring-0! placeholder:text-[#6B7280] mt-0!"
69
+ }
70
+ )
71
+ }
72
+ ),
73
+ /* @__PURE__ */ e(
74
+ p,
75
+ {
76
+ type: "submit",
77
+ fullWidth: !0,
78
+ disabled: t,
79
+ className: "uppercase",
80
+ children: t ? "Sending..." : o || "Send Reset Code"
81
+ }
82
+ )
83
+ ]
84
+ }
85
+ )
86
+ ] })
87
+ ]
88
+ }
89
+ )
90
+ }
91
+ );
92
+ }
93
+ export {
94
+ F as ForgetPasswordForm,
95
+ F as default
96
+ };
@@ -0,0 +1,86 @@
1
+ import { jsx as r, jsxs as n } from "react/jsx-runtime";
2
+ import { useState as f } from "react";
3
+ import v from "classnames";
4
+ import { Button as w } from "../buttons/button/index.mjs";
5
+ import { PinCode as I } from "../inputs/pin-code.mjs";
6
+ import { AnchorLink as E } from "../links/anchor-link.mjs";
7
+ function F({
8
+ title: u,
9
+ description: d,
10
+ buttonText: g,
11
+ onSubmit: s,
12
+ signInPath: h,
13
+ className: b,
14
+ isLoading: o = !1,
15
+ error: i,
16
+ pinLength: t = 5,
17
+ children: p
18
+ }) {
19
+ const [a, N] = f(""), [m, c] = f(""), x = (e) => e ? e.length !== t ? `PIN must be exactly ${t} digits` : /^\d+$/.test(e) ? "" : "PIN must contain only numbers" : "PIN is required", k = (e) => {
20
+ N(e);
21
+ const l = x(e);
22
+ c(l);
23
+ }, y = (e) => {
24
+ e.preventDefault();
25
+ const l = x(a);
26
+ if (l) {
27
+ c(l);
28
+ return;
29
+ }
30
+ s && s({ pin: a });
31
+ }, P = a.length === t && !m;
32
+ return /* @__PURE__ */ r("div", { className: v("w-full max-w-md mx-auto", b), children: /* @__PURE__ */ n("div", { className: "bg-white dark:bg-gray-800 p-6 rounded-lg shadow-lg", children: [
33
+ /* @__PURE__ */ r("h2", { className: "text-lg font-bold mb-6 text-center", children: u || "Reset PIN" }),
34
+ d && /* @__PURE__ */ r("p", { className: "text-sm text-gray-600 dark:text-gray-400 mb-6 text-center", children: d }),
35
+ /* @__PURE__ */ n("div", { className: "flex flex-col gap-4", children: [
36
+ p,
37
+ i && /* @__PURE__ */ r("div", { className: "mb-4 p-3 bg-red-50 border border-red-200 text-red-700 rounded-md text-sm dark:bg-red-900/20 dark:border-red-800 dark:text-red-400 text-center", children: i }),
38
+ /* @__PURE__ */ n(
39
+ "form",
40
+ {
41
+ onSubmit: y,
42
+ className: "flex flex-col items-center gap-4",
43
+ children: [
44
+ /* @__PURE__ */ r("div", { className: "w-full flex flex-col items-center", children: /* @__PURE__ */ r(
45
+ I,
46
+ {
47
+ length: t,
48
+ placeholder: "-",
49
+ variant: "ghost",
50
+ color: "primary",
51
+ size: "md",
52
+ value: a,
53
+ onChange: k,
54
+ error: m,
55
+ inputClassName: "border-[#E3E8ED] focus:border-brand focus:ring-brand dark:focus:ring-brand-200 dark:focus:ring-1 text-lg lg:text-2xl 2xl:text-[32px] w-12 h-14 lg:w-14 lg:h-16 2xl:w-16 2xl:h-[72px]",
56
+ className: "mb-8 gap-3 sm:gap-4 2xl:mb-12 2xl:gap-6"
57
+ }
58
+ ) }),
59
+ /* @__PURE__ */ r(
60
+ w,
61
+ {
62
+ type: "submit",
63
+ fullWidth: !0,
64
+ disabled: o || !P,
65
+ className: "uppercase",
66
+ children: o ? "Verifying..." : g || "Verify PIN"
67
+ }
68
+ ),
69
+ /* @__PURE__ */ r(
70
+ E,
71
+ {
72
+ to: h,
73
+ className: "font-medium underline hover:text-brand/80 dark:text-gray-300 mt-4",
74
+ children: "Back to Sign In"
75
+ }
76
+ )
77
+ ]
78
+ }
79
+ )
80
+ ] })
81
+ ] }) });
82
+ }
83
+ export {
84
+ F as ResetPinForm,
85
+ F as default
86
+ };
@@ -0,0 +1,144 @@
1
+ import { jsx as e, jsxs as r } from "react/jsx-runtime";
2
+ import { useState as g } from "react";
3
+ import { AnchorLink as x } from "../links/anchor-link.mjs";
4
+ import { EyeIcon as w } from "../icons/eye.mjs";
5
+ import { EyeSlashIcon as N } from "../icons/eyeslash.mjs";
6
+ import y from "classnames";
7
+ import { FormField as t } from "../forms/form-field.mjs";
8
+ import { Form as v } from "../forms/form.mjs";
9
+ import { Input as o } from "../inputs/input.mjs";
10
+ import { Checkbox as k } from "../inputs/checkbox.mjs";
11
+ import { Button as S } from "../buttons/button/index.mjs";
12
+ function L({
13
+ title: i,
14
+ description: s,
15
+ buttonText: n,
16
+ forgetPasswordPath: c,
17
+ onSubmit: l,
18
+ isLoading: m = !1,
19
+ error: d,
20
+ className: u,
21
+ children: h
22
+ }) {
23
+ const [a, p] = g(!1);
24
+ function b(f) {
25
+ l && l(f);
26
+ }
27
+ return /* @__PURE__ */ e(
28
+ "div",
29
+ {
30
+ "data-tucu": "auth-form",
31
+ className: y("w-full max-w-md mx-auto", u),
32
+ children: /* @__PURE__ */ r(
33
+ "div",
34
+ {
35
+ "data-tucu": "auth-form-panel",
36
+ className: "bg-white dark:bg-gray-800 p-6 rounded-lg shadow-lg",
37
+ children: [
38
+ /* @__PURE__ */ e("h2", { className: "text-lg font-bold mb-6 text-center", children: i || "Sign In" }),
39
+ s && /* @__PURE__ */ e("p", { className: "text-sm text-gray-600 dark:text-gray-400 mb-6 text-center", children: s }),
40
+ /* @__PURE__ */ r("div", { className: "flex flex-col gap-4", children: [
41
+ h,
42
+ d && /* @__PURE__ */ e("div", { className: "mb-4 p-3 bg-red-50 border border-red-200 text-red-700 rounded-md text-sm dark:bg-red-900/20 dark:border-red-800 dark:text-red-400", children: d }),
43
+ /* @__PURE__ */ r(
44
+ v,
45
+ {
46
+ onSubmit: b,
47
+ className: "grid grid-cols-1 gap-4",
48
+ useFormProps: {
49
+ defaultValues: {
50
+ email: "",
51
+ password: "",
52
+ rememberMe: !1
53
+ }
54
+ },
55
+ children: [
56
+ /* @__PURE__ */ e(
57
+ t,
58
+ {
59
+ name: "email",
60
+ label: "Email Address",
61
+ rules: {
62
+ required: "Email is required",
63
+ pattern: {
64
+ value: /^[^\s@]+@[^\s@]+\.[^\s@]+$/,
65
+ message: "Invalid email address"
66
+ }
67
+ },
68
+ children: /* @__PURE__ */ e(
69
+ o,
70
+ {
71
+ type: "email",
72
+ placeholder: "Enter your email",
73
+ inputClassName: "focus:ring-0! placeholder:text-[#6B7280]"
74
+ }
75
+ )
76
+ }
77
+ ),
78
+ /* @__PURE__ */ e(
79
+ t,
80
+ {
81
+ name: "password",
82
+ label: "Password",
83
+ rules: {
84
+ required: "Password is required",
85
+ minLength: {
86
+ value: 6,
87
+ message: "Password must be at least 6 characters"
88
+ }
89
+ },
90
+ children: /* @__PURE__ */ r("div", { className: "relative", children: [
91
+ /* @__PURE__ */ e(
92
+ o,
93
+ {
94
+ type: a ? "text" : "password",
95
+ placeholder: "Enter your password",
96
+ inputClassName: "focus:ring-0! placeholder:text-[#6B7280] pr-12"
97
+ }
98
+ ),
99
+ /* @__PURE__ */ e(
100
+ "span",
101
+ {
102
+ className: "absolute bottom-3 right-4 cursor-pointer text-[#6B7280] rtl:left-4 rtl:right-auto sm:bottom-3.5",
103
+ onClick: () => p(!a),
104
+ children: a ? /* @__PURE__ */ e(w, { className: "h-4 w-4 sm:h-5 sm:w-5" }) : /* @__PURE__ */ e(N, { className: "h-4 w-4 sm:h-5 sm:w-5" })
105
+ }
106
+ )
107
+ ] })
108
+ }
109
+ ),
110
+ /* @__PURE__ */ r("div", { className: "flex items-center justify-between", children: [
111
+ /* @__PURE__ */ e(t, { name: "rememberMe", hideError: !0, children: /* @__PURE__ */ e(
112
+ k,
113
+ {
114
+ label: "Remember me",
115
+ iconClassName: "bg-brand rounded-sm",
116
+ labelPlacement: "end",
117
+ labelClassName: "ml-1.5 text-sm dark:text-gray-300",
118
+ size: "sm"
119
+ }
120
+ ) }),
121
+ /* @__PURE__ */ e(
122
+ x,
123
+ {
124
+ to: c,
125
+ className: "text-sm font-medium text-brand hover:text-brand-600 dark:text-brand-400",
126
+ children: "Forgot password?"
127
+ }
128
+ )
129
+ ] }),
130
+ /* @__PURE__ */ e(S, { type: "submit", fullWidth: !0, disabled: m, children: m ? "Signing in..." : n || "Sign in" })
131
+ ]
132
+ }
133
+ )
134
+ ] })
135
+ ]
136
+ }
137
+ )
138
+ }
139
+ );
140
+ }
141
+ export {
142
+ L as SignInForm,
143
+ L as default
144
+ };