@e-burgos/tucu-ui 2.5.0 → 2.7.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (1377) hide show
  1. package/CHANGELOG.md +67 -0
  2. package/assets/images/404-dark.svg.mjs +4 -0
  3. package/assets/images/404-light.svg.mjs +4 -0
  4. package/components/auth/forget-password-form.mjs +96 -0
  5. package/components/auth/reset-pin-form.mjs +86 -0
  6. package/components/auth/sign-in-form.mjs +144 -0
  7. package/components/auth/sign-up-form.mjs +226 -0
  8. package/components/blockchain/coin-card.mjs +60 -0
  9. package/components/blockchain/coin-info-card.mjs +62 -0
  10. package/components/blockchain/collection-card.mjs +80 -0
  11. package/components/blockchain/collection-select-list.mjs +128 -0
  12. package/components/blockchain/currency-swap-icons.mjs +34 -0
  13. package/components/blockchain/live-price-feed.mjs +165 -0
  14. package/components/blockchain/nft-grid.mjs +81 -0
  15. package/components/blockchain/transaction-info.mjs +25 -0
  16. package/components/buttons/button/button-drip.mjs +36 -0
  17. package/components/buttons/button/button-loader.mjs +20 -0
  18. package/components/buttons/button/index.mjs +149 -0
  19. package/components/buttons/hamburger.mjs +68 -0
  20. package/components/buttons/topup-button.mjs +33 -0
  21. package/components/cards/author-card.mjs +33 -0
  22. package/components/cards/card-container.mjs +22 -0
  23. package/components/cards/card-title.mjs +38 -0
  24. package/components/cards/card.mjs +44 -0
  25. package/components/cards/color-card.mjs +49 -0
  26. package/components/cards/feature-card.mjs +137 -0
  27. package/components/cards/info-card.mjs +133 -0
  28. package/components/cards/panel-action-card.mjs +50 -0
  29. package/components/cards/panel-card.mjs +37 -0
  30. package/components/carousel/carousel-cards.mjs +66 -0
  31. package/components/carousel/carousel-component.mjs +186 -0
  32. package/components/carousel/carousel-image.mjs +48 -0
  33. package/components/charts/area-chart/area-chart.mjs +123 -0
  34. package/components/charts/bar-chart/bar-chart.mjs +128 -0
  35. package/components/charts/components/chart-container.mjs +26 -0
  36. package/components/charts/components/chart-empty-state.mjs +24 -0
  37. package/components/charts/components/chart-tooltip.mjs +48 -0
  38. package/components/charts/composed-chart/composed-chart.mjs +153 -0
  39. package/components/charts/hooks/use-chart-theme.mjs +99 -0
  40. package/components/charts/line-chart/line-chart.mjs +111 -0
  41. package/components/charts/pie-chart/pie-chart.mjs +84 -0
  42. package/components/charts/radar-chart/radar-chart.mjs +90 -0
  43. package/components/common/avatar.mjs +81 -0
  44. package/components/common/badge.mjs +89 -0
  45. package/components/common/collapse.mjs +58 -0
  46. package/components/common/key-value-row.mjs +28 -0
  47. package/components/common/pagination.mjs +77 -0
  48. package/components/common/scrollbar-native.mjs +27 -0
  49. package/components/common/scrollbar.mjs +196 -0
  50. package/components/common/skeleton.mjs +70 -0
  51. package/components/common/stepper.mjs +57 -0
  52. package/components/common/tooltip.mjs +199 -0
  53. package/components/dialog/drawer-container.mjs +110 -0
  54. package/components/dialog/drawer.mjs +82 -0
  55. package/components/dialog/modal.mjs +205 -0
  56. package/components/dialog/sidebar-menu.mjs +197 -0
  57. package/components/dialog/sidebar.mjs +151 -0
  58. package/components/dialog/tab-modal.mjs +157 -0
  59. package/components/forms/example/error-container-example.mjs +14 -0
  60. package/components/forms/example/form-example.mjs +99 -0
  61. package/components/forms/example/form-methods-example.mjs +136 -0
  62. package/components/forms/example/validations.mjs +63 -0
  63. package/components/forms/form-field.mjs +91 -0
  64. package/components/forms/form.mjs +33 -0
  65. package/components/icons/arrow-link-icon.mjs +31 -0
  66. package/components/icons/arrow-right.mjs +26 -0
  67. package/components/icons/arrow-up.mjs +22 -0
  68. package/components/icons/bitcoin.mjs +36 -0
  69. package/components/icons/bnb.mjs +61 -0
  70. package/components/icons/book.mjs +35 -0
  71. package/components/icons/brands/facebook.mjs +22 -0
  72. package/components/icons/brands/github.mjs +26 -0
  73. package/components/icons/brands/instagram.mjs +33 -0
  74. package/components/icons/brands/telegram.mjs +24 -0
  75. package/components/icons/brands/twitter.mjs +22 -0
  76. package/components/icons/calendar-icon.mjs +24 -0
  77. package/components/icons/cardano.mjs +34 -0
  78. package/components/icons/check.mjs +11 -0
  79. package/components/icons/checkmark.mjs +25 -0
  80. package/components/icons/chevron-down.mjs +26 -0
  81. package/components/icons/chevron-forward.mjs +24 -0
  82. package/components/icons/chevron-left.mjs +30 -0
  83. package/components/icons/chevron-right.mjs +25 -0
  84. package/components/icons/classic-layout-icon.mjs +21 -0
  85. package/components/icons/close.mjs +37 -0
  86. package/components/icons/compact-grid.mjs +100 -0
  87. package/components/icons/compass.mjs +27 -0
  88. package/components/icons/copy.mjs +20 -0
  89. package/components/icons/disk.mjs +35 -0
  90. package/components/icons/document.mjs +25 -0
  91. package/components/icons/doge.mjs +33 -0
  92. package/components/icons/dots-icon.mjs +38 -0
  93. package/components/icons/ethereum-dark.mjs +57 -0
  94. package/components/icons/ethereum.mjs +61 -0
  95. package/components/icons/exchange.mjs +33 -0
  96. package/components/icons/export-icon.mjs +31 -0
  97. package/components/icons/external-link.mjs +36 -0
  98. package/components/icons/eye.mjs +35 -0
  99. package/components/icons/eyeslash.mjs +25 -0
  100. package/components/icons/farm.mjs +56 -0
  101. package/components/icons/flash.mjs +24 -0
  102. package/components/icons/flow.mjs +62 -0
  103. package/components/icons/gas-icon.mjs +20 -0
  104. package/components/icons/guide-icon.mjs +24 -0
  105. package/components/icons/history.mjs +49 -0
  106. package/components/icons/home.mjs +24 -0
  107. package/components/icons/icon-us-flag.mjs +62 -0
  108. package/components/icons/info-circle.mjs +40 -0
  109. package/components/icons/info-icon.mjs +40 -0
  110. package/components/icons/left-align.mjs +40 -0
  111. package/components/icons/level-icon.mjs +22 -0
  112. package/components/icons/link-icon.mjs +71 -0
  113. package/components/icons/live-pricing.mjs +29 -0
  114. package/components/icons/lock-icon.mjs +25 -0
  115. package/components/icons/long-arrow-left.mjs +22 -0
  116. package/components/icons/long-arrow-right.mjs +22 -0
  117. package/components/icons/long-arrow-up.mjs +20 -0
  118. package/components/icons/loop-icon.mjs +26 -0
  119. package/components/icons/media-play-icon.mjs +24 -0
  120. package/components/icons/minimal-layout-icon.mjs +21 -0
  121. package/components/icons/modern-layout-icon.mjs +21 -0
  122. package/components/icons/moon.mjs +27 -0
  123. package/components/icons/more-icon.mjs +25 -0
  124. package/components/icons/normal-grid.mjs +55 -0
  125. package/components/icons/option.mjs +61 -0
  126. package/components/icons/play-icon.mjs +16 -0
  127. package/components/icons/plus-circle.mjs +29 -0
  128. package/components/icons/plus.mjs +37 -0
  129. package/components/icons/pool.mjs +42 -0
  130. package/components/icons/power.mjs +42 -0
  131. package/components/icons/profile.mjs +37 -0
  132. package/components/icons/question-icon.mjs +20 -0
  133. package/components/icons/question-solid-icon.mjs +24 -0
  134. package/components/icons/range-icon.mjs +37 -0
  135. package/components/icons/refresh.mjs +34 -0
  136. package/components/icons/retro-layout-icon.mjs +22 -0
  137. package/components/icons/right-align.mjs +40 -0
  138. package/components/icons/sand-clock.mjs +42 -0
  139. package/components/icons/search.mjs +24 -0
  140. package/components/icons/shut-down-icon.mjs +25 -0
  141. package/components/icons/spike-bar.mjs +38 -0
  142. package/components/icons/star-fill.mjs +16 -0
  143. package/components/icons/star.mjs +16 -0
  144. package/components/icons/sun.mjs +27 -0
  145. package/components/icons/swap-icon.mjs +31 -0
  146. package/components/icons/tag-icon.mjs +27 -0
  147. package/components/icons/tag.mjs +27 -0
  148. package/components/icons/tether.mjs +33 -0
  149. package/components/icons/trading-bot-icon.mjs +27 -0
  150. package/components/icons/trend-arrow-down-icon.mjs +22 -0
  151. package/components/icons/trend-arrow-up-icon.mjs +22 -0
  152. package/components/icons/tucu.mjs +848 -0
  153. package/components/icons/unlocked.mjs +35 -0
  154. package/components/icons/usdc.mjs +40 -0
  155. package/components/icons/verified-icon.mjs +65 -0
  156. package/components/icons/verified.mjs +11 -0
  157. package/components/icons/vote-icon.mjs +27 -0
  158. package/components/icons/warning.mjs +42 -0
  159. package/components/inputs/checkbox.mjs +213 -0
  160. package/components/inputs/file-input.mjs +214 -0
  161. package/components/inputs/helpers/control-colors.mjs +87 -0
  162. package/components/inputs/helpers/control-sizes.mjs +20 -0
  163. package/components/inputs/helpers/field-error-text.mjs +39 -0
  164. package/components/inputs/helpers/field-helper-text.mjs +37 -0
  165. package/components/inputs/helpers/input-label.mjs +30 -0
  166. package/components/inputs/input-searcher.mjs +307 -0
  167. package/components/inputs/input.mjs +442 -0
  168. package/components/inputs/pin-code.mjs +174 -0
  169. package/components/inputs/radio-group.mjs +131 -0
  170. package/components/inputs/radio.mjs +168 -0
  171. package/components/inputs/select.mjs +314 -0
  172. package/components/inputs/switch.mjs +150 -0
  173. package/components/inputs/textarea.mjs +68 -0
  174. package/components/inputs/toggle-bar.mjs +44 -0
  175. package/components/layouts/admin-layout/index.mjs +76 -0
  176. package/components/layouts/clean-layout/index.mjs +12 -0
  177. package/components/layouts/header/admin-header.mjs +78 -0
  178. package/components/layouts/header/admin-right-area.mjs +9 -0
  179. package/components/layouts/header/header.mjs +64 -0
  180. package/components/layouts/header/horizontal-header.mjs +57 -0
  181. package/components/layouts/header/horizontal-right-area.mjs +44 -0
  182. package/components/layouts/horizontal/index.mjs +44 -0
  183. package/components/layouts/macos-layout/index.mjs +25 -0
  184. package/components/layouts/macos-layout/macos-sonoma-clean-layout.mjs +28 -0
  185. package/components/layouts/macos-layout/macos-sonoma-layout.mjs +96 -0
  186. package/components/layouts/macos-layout/macos-sonoma-navbar-layout.mjs +123 -0
  187. package/components/layouts/macos-layout/macos-tahoe-clean-layout.mjs +21 -0
  188. package/components/layouts/macos-layout/macos-tahoe-dock-layout.mjs +125 -0
  189. package/components/layouts/macos-layout/macos-tahoe-layout.mjs +105 -0
  190. package/components/layouts/macos-layout/macos-tahoe-navbar-layout.mjs +138 -0
  191. package/components/layouts/macos-layout/utils.mjs +27 -0
  192. package/components/layouts/menus/collapsible-menu.mjs +150 -0
  193. package/components/layouts/menus/expandable-sidebar.mjs +158 -0
  194. package/components/layouts/menus/horizontal-nav-menu.mjs +208 -0
  195. package/components/layouts/menus/menu-item.mjs +211 -0
  196. package/components/layouts/root-layout.mjs +93 -0
  197. package/components/links/active-link.mjs +26 -0
  198. package/components/links/anchor-link.mjs +15 -0
  199. package/components/list/list-Item.mjs +51 -0
  200. package/components/list/list-container.mjs +119 -0
  201. package/components/loaders/loader.mjs +94 -0
  202. package/components/loaders/progressbar.mjs +90 -0
  203. package/components/loaders/spinner.mjs +28 -0
  204. package/components/logos/defi-app-logo.mjs +219 -0
  205. package/components/logos/logo.mjs +73 -0
  206. package/components/logos/tucu-ui-logo.mjs +73 -0
  207. package/components/macos/sonoma/containers/sidebar.mjs +76 -0
  208. package/components/macos/sonoma/containers/widget.mjs +61 -0
  209. package/components/macos/sonoma/containers/window.mjs +373 -0
  210. package/components/macos/sonoma/controls/search-bar.mjs +107 -0
  211. package/components/macos/sonoma/controls/segmented-control.mjs +75 -0
  212. package/components/macos/sonoma/feedback/command-palette.mjs +164 -0
  213. package/components/macos/sonoma/feedback/macos-sonoma-toast.mjs +75 -0
  214. package/components/macos/sonoma/feedback/notification-banner.mjs +123 -0
  215. package/components/macos/sonoma/feedback/popover.mjs +79 -0
  216. package/components/macos/sonoma/layout/layout-content-sonoma.mjs +45 -0
  217. package/components/macos/sonoma/layout/layout-sidebar-sonoma.mjs +163 -0
  218. package/components/macos/sonoma/layout/toolbar-sonoma.mjs +36 -0
  219. package/components/macos/tahoe/containers/dialog-tahoe.mjs +112 -0
  220. package/components/macos/tahoe/containers/widget-tahoe.mjs +50 -0
  221. package/components/macos/tahoe/containers/window-tahoe.mjs +322 -0
  222. package/components/macos/tahoe/controls/macos-tahoe-toast.mjs +75 -0
  223. package/components/macos/tahoe/controls/notification-banner-tahoe.mjs +127 -0
  224. package/components/macos/tahoe/controls/progress-bar-tahoe.mjs +65 -0
  225. package/components/macos/tahoe/controls/search-bar-tahoe.mjs +105 -0
  226. package/components/macos/tahoe/controls/segmented-control-tahoe.mjs +72 -0
  227. package/components/macos/tahoe/feedback/command-palette-tahoe.mjs +149 -0
  228. package/components/macos/tahoe/feedback/popover-tahoe.mjs +93 -0
  229. package/components/macos/tahoe/layout/dock-tahoe.mjs +279 -0
  230. package/components/macos/tahoe/layout/layout-content-tahoe.mjs +56 -0
  231. package/components/macos/tahoe/layout/layout-sidebar-tahoe.mjs +190 -0
  232. package/components/macos/tahoe/layout/toolbar-tahoe.mjs +35 -0
  233. package/components/notifications/alert.mjs +56 -0
  234. package/components/notifications/notification-card.mjs +46 -0
  235. package/components/notifications/toast.mjs +92 -0
  236. package/components/table/basic-table.mjs +346 -0
  237. package/components/tabs/param-tab.mjs +69 -0
  238. package/components/tabs/tab-select.mjs +181 -0
  239. package/components/tabs/tab.mjs +444 -0
  240. package/components/typography/index.mjs +113 -0
  241. package/components/utils/code-block.mjs +124 -0
  242. package/components/utils/image.mjs +161 -0
  243. package/components/utils/reveal-content.mjs +51 -0
  244. package/components/utils/scroll-to-top.mjs +103 -0
  245. package/datatable/common/constants.mjs +11 -0
  246. package/datatable/common/functions/index.mjs +23 -0
  247. package/datatable/common/functions/user-scopes/index.mjs +7 -0
  248. package/datatable/common/helpers/ExpandedColumn.mjs +15 -0
  249. package/datatable/common/helpers/OffsetColumn.mjs +14 -0
  250. package/datatable/common/helpers/RowActionsColumn.mjs +16 -0
  251. package/datatable/common/helpers/RowSelectionColumn.mjs +28 -0
  252. package/datatable/common/helpers/cn.mjs +6 -0
  253. package/datatable/common/helpers/convertColumns.mjs +25 -0
  254. package/datatable/common/helpers/parseNumericValueToExport.mjs +15 -0
  255. package/datatable/components/Assets/ArrowDoubleIndicator.mjs +41 -0
  256. package/datatable/components/Assets/ArrowIndicator.mjs +24 -0
  257. package/datatable/components/Assets/ArrowLongIndicator.mjs +41 -0
  258. package/datatable/components/Assets/ArrowPaginationIndicator.mjs +38 -0
  259. package/datatable/components/Assets/AssetButton.mjs +34 -0
  260. package/datatable/components/Assets/ColumnIndicator.mjs +40 -0
  261. package/datatable/components/Assets/DeleteIndicator.mjs +29 -0
  262. package/datatable/components/Assets/DownloadIndicator.mjs +29 -0
  263. package/datatable/components/Assets/DragIndicator.mjs +31 -0
  264. package/datatable/components/Assets/EditIndicator.mjs +29 -0
  265. package/datatable/components/Assets/FilterIndicator.mjs +29 -0
  266. package/datatable/components/Assets/MoreIndicator.mjs +31 -0
  267. package/datatable/components/Assets/OpenNewTab.mjs +25 -0
  268. package/datatable/components/Assets/PinIndicator.mjs +33 -0
  269. package/datatable/components/Assets/RowIndicator.mjs +26 -0
  270. package/datatable/components/Assets/ViewDetailsIndicator.mjs +26 -0
  271. package/datatable/components/Assets/VisibilityIndicator.mjs +42 -0
  272. package/datatable/components/Assets/VoidIndicator.mjs +29 -0
  273. package/datatable/components/Common/IconButton/index.mjs +35 -0
  274. package/datatable/components/Common/Spinner.mjs +53 -0
  275. package/datatable/components/Common/Tooltip.mjs +200 -0
  276. package/datatable/components/DataTable/ColumnsVisibilityManager.mjs +101 -0
  277. package/datatable/components/DataTable/DataTable.mjs +11 -0
  278. package/datatable/components/DataTable/DataTableComponent/index.mjs +252 -0
  279. package/datatable/components/DataTable/StateTableHandler/index.mjs +76 -0
  280. package/datatable/components/DataTable/SubComponentDataTable/index.mjs +53 -0
  281. package/datatable/components/DataTable/TableCell/ExpandedRowCell/index.mjs +17 -0
  282. package/datatable/components/DataTable/TableCell/RowActionsCell/index.mjs +183 -0
  283. package/datatable/components/DataTable/TableCell/RowSelectionCell/index.mjs +58 -0
  284. package/datatable/components/DataTable/TableCell/index.mjs +114 -0
  285. package/datatable/components/DataTable/TableHead/index.mjs +62 -0
  286. package/datatable/components/DataTable/TableHeader/ColumnPin/index.mjs +48 -0
  287. package/datatable/components/DataTable/TableHeader/ColumnSearcher/InputSearcher.mjs +28 -0
  288. package/datatable/components/DataTable/TableHeader/ColumnSearcher/index.mjs +54 -0
  289. package/datatable/components/DataTable/TableHeader/ColumnSort/index.mjs +31 -0
  290. package/datatable/components/DataTable/TableHeader/ColumnVisibility/index.mjs +14 -0
  291. package/datatable/components/DataTable/TableHeader/index.mjs +251 -0
  292. package/datatable/components/DataTable/TableRow/index.mjs +79 -0
  293. package/datatable/components/DataTable/TableWrapper/index.mjs +150 -0
  294. package/datatable/components/Footer/index.mjs +51 -0
  295. package/datatable/components/ManualPagination/index.mjs +121 -0
  296. package/datatable/components/Pagination/index.mjs +100 -0
  297. package/datatable/components/RowSelection/index.mjs +23 -0
  298. package/datatable/context/DragDropContentContext.mjs +18 -0
  299. package/datatable/context/DragDropTableContext.mjs +36 -0
  300. package/datatable/context/index.mjs +499 -0
  301. package/datatable/hooks/useColumns.mjs +42 -0
  302. package/datatable/hooks/useComponentEventListener.mjs +24 -0
  303. package/datatable/hooks/useDataTableStore.mjs +188 -0
  304. package/datatable/hooks/useGetCommonPinningStyles.mjs +24 -0
  305. package/datatable/hooks/useInitialState.mjs +61 -0
  306. package/datatable/hooks/useResetCacheVersion.mjs +42 -0
  307. package/datatable/hooks/useScrollableTable.mjs +27 -0
  308. package/docs-kit/components/auto-props-table.mjs +112 -0
  309. package/docs-kit/components/dynamic-sections-page.mjs +124 -0
  310. package/docs-kit/components/hero-card.mjs +140 -0
  311. package/docs-kit/components/lazy-component-section.mjs +87 -0
  312. package/docs-kit/components/nav-options.mjs +24 -0
  313. package/docs-kit/components/playground-button.mjs +22 -0
  314. package/docs-kit/components/prop-playground.mjs +289 -0
  315. package/docs-kit/components/table-of-contents/index.mjs +19 -0
  316. package/docs-kit/components/table-of-contents/toc-default.mjs +240 -0
  317. package/docs-kit/components/table-of-contents/toc-sonoma.mjs +224 -0
  318. package/docs-kit/components/table-of-contents/toc-tahoe.mjs +234 -0
  319. package/docs-kit/components/table-of-contents/use-toc.mjs +131 -0
  320. package/docs-kit/generated/props-metadata.mjs +10952 -0
  321. package/docs-kit/utils/constants.mjs +16 -0
  322. package/hooks/use-anchor-scroll.mjs +23 -0
  323. package/hooks/use-breakpoint.mjs +14 -0
  324. package/hooks/use-element-size.mjs +19 -0
  325. package/hooks/use-event-listener.mjs +19 -0
  326. package/hooks/use-grid-switcher.mjs +8 -0
  327. package/hooks/use-is-mobile.mjs +9 -0
  328. package/hooks/use-is-mounted.mjs +8 -0
  329. package/hooks/use-lock-body-scroll.mjs +12 -0
  330. package/hooks/use-scrollable-slider.mjs +39 -0
  331. package/hooks/use-toast-store.mjs +19 -0
  332. package/hooks/use-window-scroll.mjs +55 -0
  333. package/index.css +1 -1
  334. package/index.d.ts +5608 -11
  335. package/index.js +402 -1
  336. package/index.mjs +769 -435
  337. package/libs/framer-motion/fade-in-bottom.mjs +17 -0
  338. package/libs/local-storage/index.mjs +36 -0
  339. package/package.json +26 -18
  340. package/themes/auth/components/auth-provider.mjs +12 -0
  341. package/themes/components/settings/background-picker.mjs +67 -0
  342. package/themes/components/settings/color-dot.mjs +41 -0
  343. package/themes/components/settings/color-swatch-modal.mjs +178 -0
  344. package/themes/components/settings/default-color-settings.mjs +19 -0
  345. package/themes/components/settings/direction-switcher.mjs +36 -0
  346. package/themes/components/settings/lang-selector.mjs +43 -0
  347. package/themes/components/settings/layout-switcher.mjs +117 -0
  348. package/themes/components/settings/restore-defaults.mjs +11 -0
  349. package/themes/components/settings/settings-button.mjs +126 -0
  350. package/themes/components/settings/settings-drawer.mjs +81 -0
  351. package/themes/components/settings/settings-section-heading.mjs +21 -0
  352. package/themes/components/settings/settings-types.mjs +184 -0
  353. package/themes/components/settings/sonoma-accent-picker.mjs +60 -0
  354. package/themes/components/settings/switch-mode.mjs +38 -0
  355. package/themes/components/settings/switch-variant.mjs +38 -0
  356. package/themes/components/settings/switcher-button.mjs +45 -0
  357. package/themes/components/settings/tahoe-accent-picker.mjs +62 -0
  358. package/themes/components/settings/theme-icons.mjs +82 -0
  359. package/themes/components/settings/theme-switcher.mjs +36 -0
  360. package/themes/components/settings/theme-variant-switcher.mjs +49 -0
  361. package/themes/components/theme-background.mjs +75 -0
  362. package/themes/components/theme-provider/index.mjs +10 -0
  363. package/themes/components/theme-provider/mfe-app-theme-provider.mjs +24 -0
  364. package/themes/components/theme-provider/standalone-app-theme-provider.mjs +30 -0
  365. package/themes/components/theme-provider/theme-wrapper.mjs +129 -0
  366. package/themes/config/index.mjs +752 -0
  367. package/themes/hooks/use-direction.mjs +9 -0
  368. package/themes/hooks/use-theme-color.mjs +133 -0
  369. package/themes/hooks/use-theme.mjs +206 -0
  370. package/themes/pages/access-denied.mjs +24 -0
  371. package/themes/pages/default-error.mjs +24 -0
  372. package/themes/pages/disabled-page.mjs +24 -0
  373. package/themes/pages/fallback-page.mjs +14 -0
  374. package/themes/pages/forbidden.mjs +24 -0
  375. package/themes/pages/no-routes.mjs +24 -0
  376. package/themes/pages/not-found.mjs +26 -0
  377. package/themes/pages/server-error.mjs +24 -0
  378. package/themes/pages/unknown.mjs +24 -0
  379. package/themes/pages/user-blocked.mjs +24 -0
  380. package/themes/router/components/mfe-app-routes-provider.mjs +77 -0
  381. package/themes/router/components/standalone-app-routes-provider.mjs +78 -0
  382. package/themes/router/hooks/use-public-error-routes-config.mjs +43 -0
  383. package/themes/types/index.mjs +4 -0
  384. package/1-CArqgiQa.js +0 -1
  385. package/1-Df9CGZha.js +0 -4
  386. package/__tests__/__mocks__/lucide-react.d.ts +0 -129
  387. package/__tests__/setup.d.ts +0 -0
  388. package/components/auth/forget-password-form.d.ts +0 -16
  389. package/components/auth/index.d.ts +0 -4
  390. package/components/auth/reset-pin-form.d.ts +0 -18
  391. package/components/auth/sign-in-form.d.ts +0 -18
  392. package/components/auth/sign-up-form.d.ts +0 -21
  393. package/components/blockchain/coin-card.d.ts +0 -17
  394. package/components/blockchain/coin-info-card.d.ts +0 -15
  395. package/components/blockchain/coin-listbox.d.ts +0 -19
  396. package/components/blockchain/collection-card.d.ts +0 -19
  397. package/components/blockchain/collection-select-list.d.ts +0 -14
  398. package/components/blockchain/currency-swap-icons.d.ts +0 -7
  399. package/components/blockchain/index.d.ts +0 -9
  400. package/components/blockchain/live-price-feed.d.ts +0 -24
  401. package/components/blockchain/nft-grid.d.ts +0 -11
  402. package/components/blockchain/transaction-info.d.ts +0 -7
  403. package/components/buttons/button/button-drip.d.ts +0 -12
  404. package/components/buttons/button/button-loader.d.ts +0 -9
  405. package/components/buttons/button/index.d.ts +0 -31
  406. package/components/buttons/hamburger.d.ts +0 -6
  407. package/components/buttons/index.d.ts +0 -6
  408. package/components/buttons/topup-button.d.ts +0 -8
  409. package/components/cards/author-card.d.ts +0 -7
  410. package/components/cards/card-container.d.ts +0 -7
  411. package/components/cards/card-title.d.ts +0 -10
  412. package/components/cards/card.d.ts +0 -13
  413. package/components/cards/color-card.d.ts +0 -20
  414. package/components/cards/feature-card.d.ts +0 -23
  415. package/components/cards/index.d.ts +0 -9
  416. package/components/cards/info-card.d.ts +0 -54
  417. package/components/cards/panel-action-card.d.ts +0 -16
  418. package/components/cards/panel-card.d.ts +0 -8
  419. package/components/carousel/carousel-cards.d.ts +0 -19
  420. package/components/carousel/carousel-component.d.ts +0 -41
  421. package/components/carousel/carousel-image.d.ts +0 -18
  422. package/components/carousel/index.d.ts +0 -3
  423. package/components/charts/area-chart/area-chart.d.ts +0 -9
  424. package/components/charts/area-chart/index.d.ts +0 -2
  425. package/components/charts/bar-chart/bar-chart.d.ts +0 -10
  426. package/components/charts/bar-chart/index.d.ts +0 -2
  427. package/components/charts/components/chart-container.d.ts +0 -8
  428. package/components/charts/components/chart-empty-state.d.ts +0 -6
  429. package/components/charts/components/chart-tooltip.d.ts +0 -2
  430. package/components/charts/components/index.d.ts +0 -3
  431. package/components/charts/composed-chart/composed-chart.d.ts +0 -9
  432. package/components/charts/composed-chart/index.d.ts +0 -2
  433. package/components/charts/hooks/index.d.ts +0 -2
  434. package/components/charts/hooks/use-chart-theme.d.ts +0 -13
  435. package/components/charts/index.d.ts +0 -18
  436. package/components/charts/line-chart/index.d.ts +0 -2
  437. package/components/charts/line-chart/line-chart.d.ts +0 -9
  438. package/components/charts/pie-chart/index.d.ts +0 -2
  439. package/components/charts/pie-chart/pie-chart.d.ts +0 -14
  440. package/components/charts/radar-chart/index.d.ts +0 -2
  441. package/components/charts/radar-chart/radar-chart.d.ts +0 -17
  442. package/components/charts/types.d.ts +0 -32
  443. package/components/common/avatar.d.ts +0 -12
  444. package/components/common/badge.d.ts +0 -18
  445. package/components/common/collapse.d.ts +0 -7
  446. package/components/common/index.d.ts +0 -10
  447. package/components/common/key-value-row.d.ts +0 -9
  448. package/components/common/pagination.d.ts +0 -9
  449. package/components/common/scrollbar-native.d.ts +0 -14
  450. package/components/common/scrollbar.d.ts +0 -14
  451. package/components/common/skeleton.d.ts +0 -39
  452. package/components/common/stepper.d.ts +0 -13
  453. package/components/common/tooltip.d.ts +0 -39
  454. package/components/dialog/drawer-container.d.ts +0 -9
  455. package/components/dialog/drawer.d.ts +0 -19
  456. package/components/dialog/index.d.ts +0 -6
  457. package/components/dialog/modal.d.ts +0 -24
  458. package/components/dialog/sidebar-menu.d.ts +0 -14
  459. package/components/dialog/sidebar.d.ts +0 -13
  460. package/components/dialog/tab-modal.d.ts +0 -41
  461. package/components/forms/example/error-container-example.d.ts +0 -3
  462. package/components/forms/example/form-example.d.ts +0 -3
  463. package/components/forms/example/form-methods-example.d.ts +0 -3
  464. package/components/forms/example/index.d.ts +0 -4
  465. package/components/forms/example/validations.d.ts +0 -14
  466. package/components/forms/form-field.d.ts +0 -14
  467. package/components/forms/form.d.ts +0 -13
  468. package/components/forms/hook-form.d.ts +0 -3
  469. package/components/forms/index.d.ts +0 -5
  470. package/components/forms/types/dependencies.type.d.ts +0 -11
  471. package/components/forms/types/extend-react-hook-form.type.d.ts +0 -19
  472. package/components/forms/types/index.d.ts +0 -3
  473. package/components/forms/types/validations.type.d.ts +0 -8
  474. package/components/icons/arrow-link-icon.d.ts +0 -1
  475. package/components/icons/arrow-right.d.ts +0 -1
  476. package/components/icons/arrow-up.d.ts +0 -1
  477. package/components/icons/bitcoin.d.ts +0 -1
  478. package/components/icons/bnb.d.ts +0 -1
  479. package/components/icons/book.d.ts +0 -1
  480. package/components/icons/brands/facebook.d.ts +0 -1
  481. package/components/icons/brands/github.d.ts +0 -1
  482. package/components/icons/brands/instagram.d.ts +0 -1
  483. package/components/icons/brands/telegram.d.ts +0 -1
  484. package/components/icons/brands/twitter.d.ts +0 -1
  485. package/components/icons/calendar-icon.d.ts +0 -1
  486. package/components/icons/cardano.d.ts +0 -1
  487. package/components/icons/check.d.ts +0 -1
  488. package/components/icons/checkmark.d.ts +0 -1
  489. package/components/icons/chevron-down.d.ts +0 -1
  490. package/components/icons/chevron-forward.d.ts +0 -1
  491. package/components/icons/chevron-left.d.ts +0 -1
  492. package/components/icons/chevron-right.d.ts +0 -1
  493. package/components/icons/classic-layout-icon.d.ts +0 -1
  494. package/components/icons/close.d.ts +0 -1
  495. package/components/icons/compact-grid.d.ts +0 -1
  496. package/components/icons/compass.d.ts +0 -1
  497. package/components/icons/copy.d.ts +0 -1
  498. package/components/icons/disk.d.ts +0 -1
  499. package/components/icons/document.d.ts +0 -1
  500. package/components/icons/doge.d.ts +0 -1
  501. package/components/icons/dots-icon.d.ts +0 -1
  502. package/components/icons/ethereum-dark.d.ts +0 -1
  503. package/components/icons/ethereum.d.ts +0 -1
  504. package/components/icons/exchange.d.ts +0 -1
  505. package/components/icons/export-icon.d.ts +0 -1
  506. package/components/icons/external-link.d.ts +0 -1
  507. package/components/icons/eye.d.ts +0 -1
  508. package/components/icons/eyeslash.d.ts +0 -1
  509. package/components/icons/farm.d.ts +0 -1
  510. package/components/icons/flash.d.ts +0 -1
  511. package/components/icons/flow.d.ts +0 -1
  512. package/components/icons/gas-icon.d.ts +0 -1
  513. package/components/icons/guide-icon.d.ts +0 -1
  514. package/components/icons/history.d.ts +0 -1
  515. package/components/icons/home.d.ts +0 -1
  516. package/components/icons/horizontal-three-dots.d.ts +0 -1
  517. package/components/icons/icon-us-flag.d.ts +0 -1
  518. package/components/icons/index.d.ts +0 -98
  519. package/components/icons/info-circle.d.ts +0 -1
  520. package/components/icons/info-icon.d.ts +0 -1
  521. package/components/icons/left-align.d.ts +0 -1
  522. package/components/icons/level-icon.d.ts +0 -1
  523. package/components/icons/link-icon.d.ts +0 -1
  524. package/components/icons/live-pricing.d.ts +0 -1
  525. package/components/icons/lock-icon.d.ts +0 -1
  526. package/components/icons/long-arrow-left.d.ts +0 -1
  527. package/components/icons/long-arrow-right.d.ts +0 -1
  528. package/components/icons/long-arrow-up.d.ts +0 -1
  529. package/components/icons/loop-icon.d.ts +0 -1
  530. package/components/icons/lucide-react/index.d.ts +0 -1
  531. package/components/icons/media-play-icon.d.ts +0 -1
  532. package/components/icons/menu-icon.d.ts +0 -2
  533. package/components/icons/minimal-layout-icon.d.ts +0 -1
  534. package/components/icons/modern-layout-icon.d.ts +0 -1
  535. package/components/icons/moon.d.ts +0 -1
  536. package/components/icons/more-icon.d.ts +0 -1
  537. package/components/icons/normal-grid.d.ts +0 -1
  538. package/components/icons/option.d.ts +0 -1
  539. package/components/icons/play-icon.d.ts +0 -1
  540. package/components/icons/plus-circle.d.ts +0 -1
  541. package/components/icons/plus.d.ts +0 -1
  542. package/components/icons/pool.d.ts +0 -1
  543. package/components/icons/power.d.ts +0 -1
  544. package/components/icons/profile.d.ts +0 -1
  545. package/components/icons/question-icon.d.ts +0 -1
  546. package/components/icons/question-solid-icon.d.ts +0 -1
  547. package/components/icons/range-icon.d.ts +0 -1
  548. package/components/icons/refresh.d.ts +0 -1
  549. package/components/icons/retro-layout-icon.d.ts +0 -1
  550. package/components/icons/right-align.d.ts +0 -1
  551. package/components/icons/sand-clock.d.ts +0 -1
  552. package/components/icons/search.d.ts +0 -1
  553. package/components/icons/shut-down-icon.d.ts +0 -1
  554. package/components/icons/spike-bar.d.ts +0 -1
  555. package/components/icons/star-fill.d.ts +0 -1
  556. package/components/icons/star.d.ts +0 -1
  557. package/components/icons/sun.d.ts +0 -1
  558. package/components/icons/swap-icon.d.ts +0 -1
  559. package/components/icons/tag-icon.d.ts +0 -1
  560. package/components/icons/tag.d.ts +0 -1
  561. package/components/icons/tether.d.ts +0 -1
  562. package/components/icons/trading-bot-icon.d.ts +0 -1
  563. package/components/icons/trend-arrow-down-icon.d.ts +0 -1
  564. package/components/icons/trend-arrow-up-icon.d.ts +0 -1
  565. package/components/icons/tucu.d.ts +0 -1
  566. package/components/icons/unlocked.d.ts +0 -1
  567. package/components/icons/upload.d.ts +0 -1
  568. package/components/icons/usdc.d.ts +0 -1
  569. package/components/icons/verified-icon.d.ts +0 -1
  570. package/components/icons/verified.d.ts +0 -1
  571. package/components/icons/vertical-three-dots.d.ts +0 -1
  572. package/components/icons/vote-icon.d.ts +0 -1
  573. package/components/icons/warning.d.ts +0 -1
  574. package/components/index.d.ts +0 -22
  575. package/components/inputs/checkbox.d.ts +0 -42
  576. package/components/inputs/file-input.d.ts +0 -41
  577. package/components/inputs/helpers/control-colors.d.ts +0 -13
  578. package/components/inputs/helpers/control-sizes.d.ts +0 -2
  579. package/components/inputs/helpers/field-error-text.d.ts +0 -19
  580. package/components/inputs/helpers/field-helper-text.d.ts +0 -18
  581. package/components/inputs/helpers/input-label.d.ts +0 -9
  582. package/components/inputs/index.d.ts +0 -14
  583. package/components/inputs/input-searcher.d.ts +0 -18
  584. package/components/inputs/input.d.ts +0 -29
  585. package/components/inputs/pin-code.d.ts +0 -74
  586. package/components/inputs/radio-group.d.ts +0 -56
  587. package/components/inputs/radio.d.ts +0 -87
  588. package/components/inputs/select.d.ts +0 -38
  589. package/components/inputs/switch.d.ts +0 -17
  590. package/components/inputs/textarea.d.ts +0 -20
  591. package/components/inputs/toggle-bar.d.ts +0 -11
  592. package/components/layouts/admin-layout/index.d.ts +0 -16
  593. package/components/layouts/clean-layout/index.d.ts +0 -5
  594. package/components/layouts/header/admin-header.d.ts +0 -8
  595. package/components/layouts/header/admin-right-area.d.ts +0 -3
  596. package/components/layouts/header/header.d.ts +0 -9
  597. package/components/layouts/header/horizontal-header.d.ts +0 -10
  598. package/components/layouts/header/horizontal-right-area.d.ts +0 -9
  599. package/components/layouts/horizontal/index.d.ts +0 -16
  600. package/components/layouts/index.d.ts +0 -14
  601. package/components/layouts/macos-layout/index.d.ts +0 -23
  602. package/components/layouts/macos-layout/macos-sonoma-clean-layout.d.ts +0 -7
  603. package/components/layouts/macos-layout/macos-sonoma-layout.d.ts +0 -14
  604. package/components/layouts/macos-layout/macos-sonoma-navbar-layout.d.ts +0 -14
  605. package/components/layouts/macos-layout/macos-tahoe-clean-layout.d.ts +0 -7
  606. package/components/layouts/macos-layout/macos-tahoe-dock-layout.d.ts +0 -14
  607. package/components/layouts/macos-layout/macos-tahoe-layout.d.ts +0 -14
  608. package/components/layouts/macos-layout/macos-tahoe-navbar-layout.d.ts +0 -14
  609. package/components/layouts/macos-layout/utils.d.ts +0 -3
  610. package/components/layouts/menus/collapsible-menu.d.ts +0 -3
  611. package/components/layouts/menus/expandable-sidebar.d.ts +0 -8
  612. package/components/layouts/menus/horizontal-nav-menu.d.ts +0 -7
  613. package/components/layouts/menus/menu-item.d.ts +0 -24
  614. package/components/layouts/root-layout.d.ts +0 -18
  615. package/components/links/active-link.d.ts +0 -8
  616. package/components/links/anchor-link.d.ts +0 -3
  617. package/components/links/index.d.ts +0 -2
  618. package/components/list/index.d.ts +0 -2
  619. package/components/list/list-Item.d.ts +0 -13
  620. package/components/list/list-container.d.ts +0 -19
  621. package/components/loaders/index.d.ts +0 -3
  622. package/components/loaders/loader.d.ts +0 -20
  623. package/components/loaders/progressbar.d.ts +0 -64
  624. package/components/loaders/spinner.d.ts +0 -15
  625. package/components/logos/defi-app-logo.d.ts +0 -1
  626. package/components/logos/full-logo.d.ts +0 -1
  627. package/components/logos/index.d.ts +0 -3
  628. package/components/logos/logo.d.ts +0 -13
  629. package/components/logos/tucu-ui-logo.d.ts +0 -8
  630. package/components/macos/index.d.ts +0 -2
  631. package/components/macos/sonoma/containers/sidebar.d.ts +0 -22
  632. package/components/macos/sonoma/containers/widget.d.ts +0 -17
  633. package/components/macos/sonoma/containers/window.d.ts +0 -26
  634. package/components/macos/sonoma/controls/search-bar.d.ts +0 -12
  635. package/components/macos/sonoma/controls/segmented-control.d.ts +0 -16
  636. package/components/macos/sonoma/controls/types.d.ts +0 -10
  637. package/components/macos/sonoma/feedback/command-palette.d.ts +0 -20
  638. package/components/macos/sonoma/feedback/macos-sonoma-toast.d.ts +0 -2
  639. package/components/macos/sonoma/feedback/notification-banner.d.ts +0 -17
  640. package/components/macos/sonoma/feedback/popover.d.ts +0 -22
  641. package/components/macos/sonoma/index.d.ts +0 -13
  642. package/components/macos/sonoma/layout/layout-content-sonoma.d.ts +0 -15
  643. package/components/macos/sonoma/layout/layout-sidebar-sonoma.d.ts +0 -10
  644. package/components/macos/sonoma/layout/toolbar-sonoma.d.ts +0 -6
  645. package/components/macos/tahoe/containers/dialog-tahoe.d.ts +0 -21
  646. package/components/macos/tahoe/containers/widget-tahoe.d.ts +0 -15
  647. package/components/macos/tahoe/containers/window-tahoe.d.ts +0 -36
  648. package/components/macos/tahoe/controls/macos-tahoe-toast.d.ts +0 -2
  649. package/components/macos/tahoe/controls/notification-banner-tahoe.d.ts +0 -17
  650. package/components/macos/tahoe/controls/progress-bar-tahoe.d.ts +0 -10
  651. package/components/macos/tahoe/controls/search-bar-tahoe.d.ts +0 -12
  652. package/components/macos/tahoe/controls/segmented-control-tahoe.d.ts +0 -16
  653. package/components/macos/tahoe/controls/types.d.ts +0 -10
  654. package/components/macos/tahoe/feedback/command-palette-tahoe.d.ts +0 -18
  655. package/components/macos/tahoe/feedback/popover-tahoe.d.ts +0 -22
  656. package/components/macos/tahoe/foundations/background.d.ts +0 -7
  657. package/components/macos/tahoe/index.d.ts +0 -15
  658. package/components/macos/tahoe/layout/dock-tahoe.d.ts +0 -27
  659. package/components/macos/tahoe/layout/layout-content-tahoe.d.ts +0 -17
  660. package/components/macos/tahoe/layout/layout-sidebar-tahoe.d.ts +0 -13
  661. package/components/macos/tahoe/layout/toolbar-tahoe.d.ts +0 -5
  662. package/components/notifications/alert.d.ts +0 -13
  663. package/components/notifications/index.d.ts +0 -3
  664. package/components/notifications/notification-card.d.ts +0 -14
  665. package/components/notifications/toast.d.ts +0 -3
  666. package/components/table/basic-table.d.ts +0 -28
  667. package/components/table/index.d.ts +0 -1
  668. package/components/tabs/index.d.ts +0 -3
  669. package/components/tabs/param-tab.d.ts +0 -19
  670. package/components/tabs/tab-select.d.ts +0 -10
  671. package/components/tabs/tab.d.ts +0 -50
  672. package/components/typography/index.d.ts +0 -73
  673. package/components/utils/code-block.d.ts +0 -8
  674. package/components/utils/image.d.ts +0 -25
  675. package/components/utils/index.d.ts +0 -4
  676. package/components/utils/reveal-content.d.ts +0 -6
  677. package/components/utils/scroll-to-top.d.ts +0 -50
  678. package/demo/components/auto-props-table.d.ts +0 -16
  679. package/demo/components/dynamic-sections-page.d.ts +0 -50
  680. package/demo/components/hero-card.d.ts +0 -21
  681. package/demo/components/index.d.ts +0 -8
  682. package/demo/components/lazy-component-section.d.ts +0 -11
  683. package/demo/components/nav-options.d.ts +0 -2
  684. package/demo/components/playground-button.d.ts +0 -1
  685. package/demo/components/prop-playground.d.ts +0 -31
  686. package/demo/components/table-of-contents/index.d.ts +0 -5
  687. package/demo/components/table-of-contents/toc-default.d.ts +0 -3
  688. package/demo/components/table-of-contents/toc-sonoma.d.ts +0 -3
  689. package/demo/components/table-of-contents/toc-tahoe.d.ts +0 -3
  690. package/demo/components/table-of-contents/types.d.ts +0 -17
  691. package/demo/components/table-of-contents/use-toc.d.ts +0 -26
  692. package/demo/generated/props-metadata.d.ts +0 -23
  693. package/demo/index.d.ts +0 -4
  694. package/demo/pages/blockchain/BlockchainComponents.d.ts +0 -2
  695. package/demo/pages/blockchain/blockchain-components-sections/CoinCardSection.d.ts +0 -3
  696. package/demo/pages/blockchain/blockchain-components-sections/CoinInfoCardSection.d.ts +0 -3
  697. package/demo/pages/blockchain/blockchain-components-sections/CoinListBoxSection.d.ts +0 -3
  698. package/demo/pages/blockchain/blockchain-components-sections/CollectionCardSection.d.ts +0 -3
  699. package/demo/pages/blockchain/blockchain-components-sections/CollectionSelectListSection.d.ts +0 -3
  700. package/demo/pages/blockchain/blockchain-components-sections/CurrencySwapIconsSection.d.ts +0 -3
  701. package/demo/pages/blockchain/blockchain-components-sections/LivePriceFeedSection.d.ts +0 -3
  702. package/demo/pages/blockchain/blockchain-components-sections/NFTGridSection.d.ts +0 -3
  703. package/demo/pages/blockchain/blockchain-components-sections/TransactionInfoSection.d.ts +0 -3
  704. package/demo/pages/blockchain/blockchain-components-sections/index.d.ts +0 -9
  705. package/demo/pages/components/ChartsComponents.d.ts +0 -2
  706. package/demo/pages/components/ComponentsIntroduction.d.ts +0 -1
  707. package/demo/pages/components/InputsComponents.d.ts +0 -2
  708. package/demo/pages/components/UiComponents.d.ts +0 -2
  709. package/demo/pages/components/charts-sections/AreaChartSection.d.ts +0 -3
  710. package/demo/pages/components/charts-sections/BarChartSection.d.ts +0 -3
  711. package/demo/pages/components/charts-sections/ComposedChartSection.d.ts +0 -3
  712. package/demo/pages/components/charts-sections/LineChartSection.d.ts +0 -3
  713. package/demo/pages/components/charts-sections/PieChartSection.d.ts +0 -3
  714. package/demo/pages/components/charts-sections/RadarChartSection.d.ts +0 -3
  715. package/demo/pages/components/charts-sections/index.d.ts +0 -1
  716. package/demo/pages/components/input-components-sections/CheckboxSection.d.ts +0 -3
  717. package/demo/pages/components/input-components-sections/FileInputSection.d.ts +0 -3
  718. package/demo/pages/components/input-components-sections/InputSearcherSection.d.ts +0 -3
  719. package/demo/pages/components/input-components-sections/InputSection.d.ts +0 -3
  720. package/demo/pages/components/input-components-sections/PinCodeSection.d.ts +0 -3
  721. package/demo/pages/components/input-components-sections/RadioGroupSection.d.ts +0 -3
  722. package/demo/pages/components/input-components-sections/RadioSection.d.ts +0 -3
  723. package/demo/pages/components/input-components-sections/SelectSection.d.ts +0 -3
  724. package/demo/pages/components/input-components-sections/SwitchSection.d.ts +0 -3
  725. package/demo/pages/components/input-components-sections/TextareaSection.d.ts +0 -3
  726. package/demo/pages/components/input-components-sections/ToggleBarSection.d.ts +0 -3
  727. package/demo/pages/components/input-components-sections/index.d.ts +0 -11
  728. package/demo/pages/components/ui-components-sections/ActiveLinkSection.d.ts +0 -3
  729. package/demo/pages/components/ui-components-sections/AlertSection.d.ts +0 -3
  730. package/demo/pages/components/ui-components-sections/AnchorLinkSection.d.ts +0 -3
  731. package/demo/pages/components/ui-components-sections/AuthorCardSection.d.ts +0 -3
  732. package/demo/pages/components/ui-components-sections/AvatarSection.d.ts +0 -3
  733. package/demo/pages/components/ui-components-sections/BadgeSection.d.ts +0 -3
  734. package/demo/pages/components/ui-components-sections/BasicTableSection.d.ts +0 -3
  735. package/demo/pages/components/ui-components-sections/ButtonDripSection.d.ts +0 -3
  736. package/demo/pages/components/ui-components-sections/ButtonLoaderSection.d.ts +0 -3
  737. package/demo/pages/components/ui-components-sections/CardContainerSection.d.ts +0 -3
  738. package/demo/pages/components/ui-components-sections/CardSection.d.ts +0 -3
  739. package/demo/pages/components/ui-components-sections/CardTitleSection.d.ts +0 -3
  740. package/demo/pages/components/ui-components-sections/CarouselCardsSection.d.ts +0 -3
  741. package/demo/pages/components/ui-components-sections/CarouselImageSection.d.ts +0 -3
  742. package/demo/pages/components/ui-components-sections/CarouselSection.d.ts +0 -3
  743. package/demo/pages/components/ui-components-sections/CollapseSection.d.ts +0 -3
  744. package/demo/pages/components/ui-components-sections/DefiAppLogoSection.d.ts +0 -3
  745. package/demo/pages/components/ui-components-sections/DrawerSection.d.ts +0 -3
  746. package/demo/pages/components/ui-components-sections/HamburgerSection.d.ts +0 -3
  747. package/demo/pages/components/ui-components-sections/ImageSection.d.ts +0 -3
  748. package/demo/pages/components/ui-components-sections/InfoCardSection.d.ts +0 -3
  749. package/demo/pages/components/ui-components-sections/KeyValueRowSection.d.ts +0 -3
  750. package/demo/pages/components/ui-components-sections/ListContainerSection.d.ts +0 -3
  751. package/demo/pages/components/ui-components-sections/ListItemSection.d.ts +0 -3
  752. package/demo/pages/components/ui-components-sections/LoaderSection.d.ts +0 -3
  753. package/demo/pages/components/ui-components-sections/LogoSection.d.ts +0 -3
  754. package/demo/pages/components/ui-components-sections/ModalSection.d.ts +0 -3
  755. package/demo/pages/components/ui-components-sections/NotificationCardSection.d.ts +0 -3
  756. package/demo/pages/components/ui-components-sections/PaginationSection.d.ts +0 -3
  757. package/demo/pages/components/ui-components-sections/PanelActionCardSection.d.ts +0 -3
  758. package/demo/pages/components/ui-components-sections/PanelCardSection.d.ts +0 -3
  759. package/demo/pages/components/ui-components-sections/ParamTabSection.d.ts +0 -3
  760. package/demo/pages/components/ui-components-sections/ProgressbarSection.d.ts +0 -3
  761. package/demo/pages/components/ui-components-sections/RevealContentSection.d.ts +0 -3
  762. package/demo/pages/components/ui-components-sections/ScrollToTopSection.d.ts +0 -3
  763. package/demo/pages/components/ui-components-sections/ScrollbarSection.d.ts +0 -3
  764. package/demo/pages/components/ui-components-sections/SidebarMenuSection.d.ts +0 -3
  765. package/demo/pages/components/ui-components-sections/SidebarSection.d.ts +0 -3
  766. package/demo/pages/components/ui-components-sections/SkeletonSection.d.ts +0 -3
  767. package/demo/pages/components/ui-components-sections/SpinnerSection.d.ts +0 -3
  768. package/demo/pages/components/ui-components-sections/StepperSection.d.ts +0 -3
  769. package/demo/pages/components/ui-components-sections/TabModalSection.d.ts +0 -3
  770. package/demo/pages/components/ui-components-sections/TabSection.d.ts +0 -3
  771. package/demo/pages/components/ui-components-sections/TabSelectSection.d.ts +0 -3
  772. package/demo/pages/components/ui-components-sections/ToastSection.d.ts +0 -3
  773. package/demo/pages/components/ui-components-sections/TooltipSection.d.ts +0 -3
  774. package/demo/pages/components/ui-components-sections/TopupButtonSection.d.ts +0 -3
  775. package/demo/pages/components/ui-components-sections/TucuUiLogoSection.d.ts +0 -3
  776. package/demo/pages/components/ui-components-sections/TypographySection.d.ts +0 -3
  777. package/demo/pages/components/ui-components-sections/index.d.ts +0 -45
  778. package/demo/pages/design-system/DesignSystem.d.ts +0 -2
  779. package/demo/pages/design-system/LayoutSystem.d.ts +0 -2
  780. package/demo/pages/design-system/ThemingGuide.d.ts +0 -2
  781. package/demo/pages/design-system/design-system-sections/BackgroundsSection.d.ts +0 -3
  782. package/demo/pages/design-system/design-system-sections/BorderRadiusSection.d.ts +0 -3
  783. package/demo/pages/design-system/design-system-sections/ColorSystemSection.d.ts +0 -3
  784. package/demo/pages/design-system/design-system-sections/ComponentAnatomySection.d.ts +0 -3
  785. package/demo/pages/design-system/design-system-sections/DesignPrinciplesSection.d.ts +0 -3
  786. package/demo/pages/design-system/design-system-sections/ImplementationGuidelinesSection.d.ts +0 -3
  787. package/demo/pages/design-system/design-system-sections/LayoutPrinciplesSection.d.ts +0 -3
  788. package/demo/pages/design-system/design-system-sections/ShadowsSection.d.ts +0 -3
  789. package/demo/pages/design-system/design-system-sections/SizingSection.d.ts +0 -3
  790. package/demo/pages/design-system/design-system-sections/SpacingSystemSection.d.ts +0 -3
  791. package/demo/pages/design-system/design-system-sections/TypographySection.d.ts +0 -3
  792. package/demo/pages/design-system/layout-system-sections/BestPracticesSection.d.ts +0 -3
  793. package/demo/pages/design-system/layout-system-sections/CommonErrorsSection.d.ts +0 -3
  794. package/demo/pages/design-system/layout-system-sections/ImplementationExamplesSection.d.ts +0 -3
  795. package/demo/pages/design-system/layout-system-sections/LayoutTypesSection.d.ts +0 -3
  796. package/demo/pages/design-system/layout-system-sections/MenuItemsGuideSection.d.ts +0 -3
  797. package/demo/pages/design-system/layout-system-sections/ThemeProviderRequiredSection.d.ts +0 -3
  798. package/demo/pages/design-system/theming-guide-sections/AdvancedColorSystemSection.d.ts +0 -3
  799. package/demo/pages/design-system/theming-guide-sections/AdvancedFeaturesSection.d.ts +0 -3
  800. package/demo/pages/design-system/theming-guide-sections/BestPracticesSection.d.ts +0 -3
  801. package/demo/pages/design-system/theming-guide-sections/ColorCustomizationSection.d.ts +0 -3
  802. package/demo/pages/design-system/theming-guide-sections/CustomColorPaletteSection.d.ts +0 -3
  803. package/demo/pages/design-system/theming-guide-sections/FileStructureSection.d.ts +0 -3
  804. package/demo/pages/design-system/theming-guide-sections/SettingsPanelSection.d.ts +0 -3
  805. package/demo/pages/design-system/theming-guide-sections/TailwindConfigSection.d.ts +0 -3
  806. package/demo/pages/design-system/theming-guide-sections/ThemeArchitectureSection.d.ts +0 -3
  807. package/demo/pages/design-system/theming-guide-sections/ThemeConfigurationSection.d.ts +0 -3
  808. package/demo/pages/design-system/theming-guide-sections/ThemeHooksSection.d.ts +0 -3
  809. package/demo/pages/design-system/theming-guide-sections/ThemeProviderSection.d.ts +0 -3
  810. package/demo/pages/design-system/theming-guide-sections/UsingThemeSystemSection.d.ts +0 -3
  811. package/demo/pages/features/Accessibility.d.ts +0 -2
  812. package/demo/pages/features/FeaturesIntroduction.d.ts +0 -1
  813. package/demo/pages/features/HooksUtilities.d.ts +0 -2
  814. package/demo/pages/features/IconsSystem.d.ts +0 -2
  815. package/demo/pages/features/RoutingSystem.d.ts +0 -2
  816. package/demo/pages/features/accessibility-sections/BestPracticesSection.d.ts +0 -3
  817. package/demo/pages/features/accessibility-sections/CodeExamplesSection.d.ts +0 -3
  818. package/demo/pages/features/accessibility-sections/ComponentStatusSection.d.ts +0 -3
  819. package/demo/pages/features/accessibility-sections/ImplementationStatusSection.d.ts +0 -3
  820. package/demo/pages/features/accessibility-sections/ImplementedFeaturesSection.d.ts +0 -3
  821. package/demo/pages/features/accessibility-sections/KeyboardNavigationSection.d.ts +0 -3
  822. package/demo/pages/features/accessibility-sections/TestingSection.d.ts +0 -3
  823. package/demo/pages/features/accessibility-sections/WCAGPrinciplesSection.d.ts +0 -3
  824. package/demo/pages/features/hooks-utilities-sections/BestPracticesSection.d.ts +0 -3
  825. package/demo/pages/features/hooks-utilities-sections/HookCategoriesSection.d.ts +0 -3
  826. package/demo/pages/features/hooks-utilities-sections/HookDocumentationSection.d.ts +0 -3
  827. package/demo/pages/features/hooks-utilities-sections/HookFeaturesSection.d.ts +0 -3
  828. package/demo/pages/features/hooks-utilities-sections/LiveDemonstrationsSection.d.ts +0 -3
  829. package/demo/pages/features/icon-system-sections/BestPracticesSection.d.ts +0 -3
  830. package/demo/pages/features/icon-system-sections/CustomIconsSection.d.ts +0 -3
  831. package/demo/pages/features/icon-system-sections/IconArchitectureSection.d.ts +0 -3
  832. package/demo/pages/features/icon-system-sections/IconSizingGuideSection.d.ts +0 -3
  833. package/demo/pages/features/icon-system-sections/IconSystemAPISection.d.ts +0 -3
  834. package/demo/pages/features/icon-system-sections/IconSystemBenefitsSection.d.ts +0 -3
  835. package/demo/pages/features/icon-system-sections/LucideIconsSection.d.ts +0 -3
  836. package/demo/pages/features/icon-system-sections/UsageExamplesSection.d.ts +0 -3
  837. package/demo/pages/features/routing-system-sections/APIReferenceSection.d.ts +0 -3
  838. package/demo/pages/features/routing-system-sections/ArchitecturalPatternsComparisonSection.d.ts +0 -3
  839. package/demo/pages/features/routing-system-sections/BestPracticesSection.d.ts +0 -3
  840. package/demo/pages/features/routing-system-sections/DynamicRoutesSection.d.ts +0 -3
  841. package/demo/pages/features/routing-system-sections/MFESupportSection.d.ts +0 -3
  842. package/demo/pages/features/routing-system-sections/NestedRoutesSection.d.ts +0 -3
  843. package/demo/pages/features/routing-system-sections/RouteConfigurationSection.d.ts +0 -3
  844. package/demo/pages/features/routing-system-sections/StandaloneAppSection.d.ts +0 -3
  845. package/demo/pages/features/routing-system-sections/SystemOverviewSection.d.ts +0 -3
  846. package/demo/pages/features/routing-system-sections/ThemeProviderIntegrationSection.d.ts +0 -3
  847. package/demo/pages/form-system/FormSystem.d.ts +0 -2
  848. package/demo/pages/form-system/code-example-page.d.ts +0 -2
  849. package/demo/pages/form-system/example/constants.d.ts +0 -12
  850. package/demo/pages/form-system/example/simple-form-example.d.ts +0 -3
  851. package/demo/pages/form-system/form-example-page.d.ts +0 -2
  852. package/demo/pages/form-system/form-system-sections/AdvancedFeaturesSection.d.ts +0 -3
  853. package/demo/pages/form-system/form-system-sections/ArchitectureOverviewSection.d.ts +0 -3
  854. package/demo/pages/form-system/form-system-sections/BasicUsageSection.d.ts +0 -3
  855. package/demo/pages/form-system/form-system-sections/BestPracticesSection.d.ts +0 -3
  856. package/demo/pages/form-system/form-system-sections/FormComponentsSection.d.ts +0 -3
  857. package/demo/pages/form-system/form-system-sections/FormMethodsSection.d.ts +0 -3
  858. package/demo/pages/form-system/form-system-sections/LiveDemoSection.d.ts +0 -3
  859. package/demo/pages/form-system/form-system-sections/ValidationSystemSection.d.ts +0 -3
  860. package/demo/pages/index.d.ts +0 -41
  861. package/demo/pages/introduction/BasicUsageDemo.d.ts +0 -1
  862. package/demo/pages/introduction/BasicUsageExampleCode.d.ts +0 -1
  863. package/demo/pages/introduction/BasicUsageWithCustomRouterExampleCode.d.ts +0 -1
  864. package/demo/pages/introduction/ThemeProviderExamples.d.ts +0 -7
  865. package/demo/pages/introduction/index.d.ts +0 -1
  866. package/demo/pages/macos/MacOSShowcase.d.ts +0 -2
  867. package/demo/pages/macos/MacOSSonomaShowcase.d.ts +0 -2
  868. package/demo/pages/macos/MacOSTahoeShowcase.d.ts +0 -2
  869. package/demo/pages/macos/macos-sections/sonoma/MacOSCommandPaletteSection.d.ts +0 -3
  870. package/demo/pages/macos/macos-sections/sonoma/MacOSNotificationBannerSection.d.ts +0 -3
  871. package/demo/pages/macos/macos-sections/sonoma/MacOSPopoverSection.d.ts +0 -3
  872. package/demo/pages/macos/macos-sections/sonoma/MacOSSearchBarSection.d.ts +0 -3
  873. package/demo/pages/macos/macos-sections/sonoma/MacOSSegmentedControlSection.d.ts +0 -3
  874. package/demo/pages/macos/macos-sections/sonoma/MacOSSidebarSection.d.ts +0 -3
  875. package/demo/pages/macos/macos-sections/sonoma/MacOSToolbarSection.d.ts +0 -3
  876. package/demo/pages/macos/macos-sections/sonoma/MacOSWidgetSection.d.ts +0 -3
  877. package/demo/pages/macos/macos-sections/sonoma/MacOSWindowSection.d.ts +0 -3
  878. package/demo/pages/macos/macos-sections/sonoma/SonomaColorsSection.d.ts +0 -3
  879. package/demo/pages/macos/macos-sections/sonoma/SonomaLayoutContentSection.d.ts +0 -3
  880. package/demo/pages/macos/macos-sections/sonoma/SonomaLayoutSidebarSection.d.ts +0 -3
  881. package/demo/pages/macos/macos-sections/sonoma/SonomaMaterialsSection.d.ts +0 -3
  882. package/demo/pages/macos/macos-sections/sonoma/SonomaShapesSection.d.ts +0 -3
  883. package/demo/pages/macos/macos-sections/sonoma/SonomaTypographySection.d.ts +0 -3
  884. package/demo/pages/macos/macos-sections/tahoe/MacOSBackgroundsSection.d.ts +0 -3
  885. package/demo/pages/macos/macos-sections/tahoe/MacOSColorsSection.d.ts +0 -3
  886. package/demo/pages/macos/macos-sections/tahoe/MacOSMaterialsSection.d.ts +0 -3
  887. package/demo/pages/macos/macos-sections/tahoe/MacOSTahoeSection.d.ts +0 -2
  888. package/demo/pages/macos/macos-sections/tahoe/MacOSTextStylesSection.d.ts +0 -3
  889. package/demo/pages/macos/macos-sections/tahoe/TahoeCommandPaletteSection.d.ts +0 -2
  890. package/demo/pages/macos/macos-sections/tahoe/TahoeDialogSection.d.ts +0 -3
  891. package/demo/pages/macos/macos-sections/tahoe/TahoeDockSection.d.ts +0 -3
  892. package/demo/pages/macos/macos-sections/tahoe/TahoeLayoutContentSection.d.ts +0 -3
  893. package/demo/pages/macos/macos-sections/tahoe/TahoeLayoutSidebarSection.d.ts +0 -3
  894. package/demo/pages/macos/macos-sections/tahoe/TahoeNotificationBannerSection.d.ts +0 -3
  895. package/demo/pages/macos/macos-sections/tahoe/TahoePopoverSection.d.ts +0 -3
  896. package/demo/pages/macos/macos-sections/tahoe/TahoeProgressBarSection.d.ts +0 -3
  897. package/demo/pages/macos/macos-sections/tahoe/TahoeSearchBarSection.d.ts +0 -3
  898. package/demo/pages/macos/macos-sections/tahoe/TahoeSegmentedControlSection.d.ts +0 -3
  899. package/demo/pages/macos/macos-sections/tahoe/TahoeToolbarSection.d.ts +0 -3
  900. package/demo/pages/macos/macos-sections/tahoe/TahoeWidgetSection.d.ts +0 -3
  901. package/demo/pages/macos/macos-sections/tahoe/TahoeWindowSection.d.ts +0 -3
  902. package/demo/pages/mcp/MCPServerPage.d.ts +0 -2
  903. package/demo/pages/mcp/mcp-sections/ClientConfigSection.d.ts +0 -3
  904. package/demo/pages/mcp/mcp-sections/DeploymentSection.d.ts +0 -3
  905. package/demo/pages/mcp/mcp-sections/InstallationSection.d.ts +0 -3
  906. package/demo/pages/mcp/mcp-sections/OverviewSection.d.ts +0 -3
  907. package/demo/pages/mcp/mcp-sections/PromptsSection.d.ts +0 -3
  908. package/demo/pages/mcp/mcp-sections/ResourcesSection.d.ts +0 -3
  909. package/demo/pages/mcp/mcp-sections/SecuritySection.d.ts +0 -3
  910. package/demo/pages/mcp/mcp-sections/ToolsSection.d.ts +0 -3
  911. package/demo/pages/tailwind/AccessibilityUtilities.d.ts +0 -1
  912. package/demo/pages/tailwind/BackgroundUtilities.d.ts +0 -1
  913. package/demo/pages/tailwind/BordersUtilities.d.ts +0 -1
  914. package/demo/pages/tailwind/Colors.d.ts +0 -1
  915. package/demo/pages/tailwind/EffectsUtilities.d.ts +0 -1
  916. package/demo/pages/tailwind/FiltersUtilities.d.ts +0 -1
  917. package/demo/pages/tailwind/FlexboxGridUtilities.d.ts +0 -1
  918. package/demo/pages/tailwind/InteractivityUtilities.d.ts +0 -1
  919. package/demo/pages/tailwind/LayoutUtilities.d.ts +0 -1
  920. package/demo/pages/tailwind/SVGUtilities.d.ts +0 -1
  921. package/demo/pages/tailwind/TablesUtilities.d.ts +0 -1
  922. package/demo/pages/tailwind/TailwindIntroduction.d.ts +0 -1
  923. package/demo/pages/tailwind/TransformsUtilities.d.ts +0 -1
  924. package/demo/pages/tailwind/TransitionsAnimations.d.ts +0 -1
  925. package/demo/pages/tailwind/TypographyUtilities.d.ts +0 -1
  926. package/demo/utils/constants.d.ts +0 -13
  927. package/demo/utils/index.d.ts +0 -1
  928. package/documentation/APIReferenceSection-BuGaLjk4.js +0 -213
  929. package/documentation/APIReferenceSection-vOO5q7kb.js +0 -1
  930. package/documentation/ActiveLinkSection-DIb03elW.js +0 -23
  931. package/documentation/ActiveLinkSection-hXSKjm7P.js +0 -79
  932. package/documentation/AdvancedColorSystemSection-BNGCLPR3.js +0 -181
  933. package/documentation/AdvancedColorSystemSection-pzKTpmEy.js +0 -17
  934. package/documentation/AdvancedFeaturesSection-B5lA3r0v.js +0 -1
  935. package/documentation/AdvancedFeaturesSection-Bh-WxfFY.js +0 -117
  936. package/documentation/AdvancedFeaturesSection-DExCw62I.js +0 -70
  937. package/documentation/AdvancedFeaturesSection-rwcki92F.js +0 -32
  938. package/documentation/AlertSection-D9eDywN3.js +0 -96
  939. package/documentation/AlertSection-wm1TI70h.js +0 -26
  940. package/documentation/AnchorLinkSection-CCVHnu-V.js +0 -65
  941. package/documentation/AnchorLinkSection-CXA1DwCn.js +0 -20
  942. package/documentation/ArchitecturalPatternsComparisonSection-D59jbCG8.js +0 -34
  943. package/documentation/ArchitecturalPatternsComparisonSection-Df1CQv6V.js +0 -182
  944. package/documentation/ArchitectureOverviewSection-B8Gu1Qwg.js +0 -1
  945. package/documentation/ArchitectureOverviewSection-CqMMpWAZ.js +0 -210
  946. package/documentation/AreaChartSection-CwmW-uJO.js +0 -132
  947. package/documentation/AreaChartSection-DjxzNYFk.js +0 -22
  948. package/documentation/AuthorCardSection-BszBY56Q.js +0 -79
  949. package/documentation/AuthorCardSection-DX6K6A58.js +0 -18
  950. package/documentation/AvatarSection-BaNCsM7-.js +0 -89
  951. package/documentation/AvatarSection-CHC86-XQ.js +0 -19
  952. package/documentation/BackgroundsSection-BphgbOsP.js +0 -6
  953. package/documentation/BackgroundsSection-DRGHkPRw.js +0 -365
  954. package/documentation/BadgeSection-DPqnIeW_.js +0 -179
  955. package/documentation/BadgeSection-DQuVvzuk.js +0 -49
  956. package/documentation/BarChartSection-192XA4lC.js +0 -127
  957. package/documentation/BarChartSection-CQTrN7II.js +0 -23
  958. package/documentation/BasicTableSection-DS9tghtn.js +0 -133
  959. package/documentation/BasicTableSection-DUxEk0Xz.js +0 -36
  960. package/documentation/BasicUsageSection-Bnk07Qtr.js +0 -45
  961. package/documentation/BasicUsageSection-D1mvyWVC.js +0 -133
  962. package/documentation/BestPracticesSection-B7d1WnXg.js +0 -61
  963. package/documentation/BestPracticesSection-BvEXXuBH.js +0 -1
  964. package/documentation/BestPracticesSection-C9A7z9xg.js +0 -1
  965. package/documentation/BestPracticesSection-CFILeUX1.js +0 -34
  966. package/documentation/BestPracticesSection-CH7suMGV.js +0 -79
  967. package/documentation/BestPracticesSection-C_UO8oF3.js +0 -1
  968. package/documentation/BestPracticesSection-DI3iv7N4.js +0 -151
  969. package/documentation/BestPracticesSection-DfkGrr2Q.js +0 -1
  970. package/documentation/BestPracticesSection-Dl3jrGq4.js +0 -1
  971. package/documentation/BestPracticesSection-DlYPFmx9.js +0 -91
  972. package/documentation/BestPracticesSection-DvxanX6e.js +0 -151
  973. package/documentation/BestPracticesSection-fJ-_uwQu.js +0 -1
  974. package/documentation/BestPracticesSection-klWNOwRv.js +0 -153
  975. package/documentation/BestPracticesSection-nvtTMLIJ.js +0 -137
  976. package/documentation/BorderRadiusSection-BCNMPn6e.js +0 -58
  977. package/documentation/BorderRadiusSection-Cf18TiCF.js +0 -1
  978. package/documentation/ButtonDripSection-BEhYR8Ne.js +0 -110
  979. package/documentation/ButtonDripSection-CI9fFXx_.js +0 -21
  980. package/documentation/ButtonLoaderSection-BW_hgeeM.js +0 -153
  981. package/documentation/ButtonLoaderSection-BZUXqzag.js +0 -31
  982. package/documentation/CardContainerSection-BRPPLI1C.js +0 -61
  983. package/documentation/CardContainerSection-dZUV-wdl.js +0 -22
  984. package/documentation/CardSection-B-RjdTHj.js +0 -26
  985. package/documentation/CardSection-BEcASXn9.js +0 -136
  986. package/documentation/CardTitleSection-CZbYlPce.js +0 -20
  987. package/documentation/CardTitleSection-DC_JgQnV.js +0 -72
  988. package/documentation/CarouselCardsSection-BgSiYzS-.js +0 -38
  989. package/documentation/CarouselCardsSection-CyuFw30M.js +0 -174
  990. package/documentation/CarouselImageSection-CYUZkmE7.js +0 -179
  991. package/documentation/CarouselImageSection-RaIGiFPI.js +0 -39
  992. package/documentation/CarouselSection-BcAird9B.js +0 -25
  993. package/documentation/CarouselSection-CmOg8CA7.js +0 -123
  994. package/documentation/CheckboxSection-Ci3XeeBU.js +0 -29
  995. package/documentation/CheckboxSection-fCbCTXVi.js +0 -175
  996. package/documentation/ClientConfigSection-B1u9ICgp.js +0 -39
  997. package/documentation/ClientConfigSection-DKoyUKX1.js +0 -126
  998. package/documentation/CodeExamplesSection-BUiRFlz_.js +0 -68
  999. package/documentation/CodeExamplesSection-BiY0m_Cj.js +0 -134
  1000. package/documentation/CoinCardSection-bsveQMjk.js +0 -13
  1001. package/documentation/CoinCardSection-zgM8YzAw.js +0 -132
  1002. package/documentation/CoinInfoCardSection-BGxjfX33.js +0 -12
  1003. package/documentation/CoinInfoCardSection-BpDitwaZ.js +0 -148
  1004. package/documentation/CoinListBoxSection-BNhCV6tk.js +0 -129
  1005. package/documentation/CoinListBoxSection-D4FrHQqq.js +0 -24
  1006. package/documentation/CollapseSection-BJ_Eq2XG.js +0 -28
  1007. package/documentation/CollapseSection-BTJCuwtH.js +0 -84
  1008. package/documentation/CollectionCardSection-DhqMENmH.js +0 -17
  1009. package/documentation/CollectionCardSection-Dnw-AMeA.js +0 -78
  1010. package/documentation/CollectionSelectListSection-DjER6UPv.js +0 -149
  1011. package/documentation/CollectionSelectListSection-q3vag31o.js +0 -15
  1012. package/documentation/ColorCustomizationSection-Cc_eIdHN.js +0 -141
  1013. package/documentation/ColorCustomizationSection-K07wRIed.js +0 -1
  1014. package/documentation/ColorSystemSection-BsW26KPw.js +0 -339
  1015. package/documentation/ColorSystemSection-DewtcS09.js +0 -1
  1016. package/documentation/CommonErrorsSection-DUfQIOFx.js +0 -77
  1017. package/documentation/CommonErrorsSection-DYprV2-q.js +0 -1
  1018. package/documentation/ComponentAnatomySection-B48mRC0o.js +0 -1
  1019. package/documentation/ComponentAnatomySection-MVU9xWRw.js +0 -78
  1020. package/documentation/ComponentStatusSection-C8Xgbs1J.js +0 -1
  1021. package/documentation/ComponentStatusSection-TiSLIuX0.js +0 -148
  1022. package/documentation/ComposedChartSection-Be70sMuM.js +0 -113
  1023. package/documentation/ComposedChartSection-Xih3hFxi.js +0 -21
  1024. package/documentation/CurrencySwapIconsSection-D1-0fKb2.js +0 -7
  1025. package/documentation/CurrencySwapIconsSection-LJEH4zY2.js +0 -73
  1026. package/documentation/CustomColorPaletteSection-17OLhGAJ.js +0 -74
  1027. package/documentation/CustomColorPaletteSection-DvcVgPSw.js +0 -19
  1028. package/documentation/CustomIconsSection-BML7Ykph.js +0 -172
  1029. package/documentation/CustomIconsSection-B_twKCge.js +0 -3
  1030. package/documentation/DefiAppLogoSection-DV9roRzn.js +0 -132
  1031. package/documentation/DefiAppLogoSection-yU373rnC.js +0 -38
  1032. package/documentation/DeploymentSection-DdrdxadS.js +0 -36
  1033. package/documentation/DeploymentSection-Zq8li6Rk.js +0 -136
  1034. package/documentation/DesignPrinciplesSection-BFeLS1Jc.js +0 -1
  1035. package/documentation/DesignPrinciplesSection-CQ9uXtm0.js +0 -68
  1036. package/documentation/DrawerSection-BXsL-pSW.js +0 -155
  1037. package/documentation/DrawerSection-tFhF0Yk2.js +0 -42
  1038. package/documentation/DynamicRoutesSection-ByxCJkKq.js +0 -112
  1039. package/documentation/DynamicRoutesSection-DtEe2l3H.js +0 -47
  1040. package/documentation/FileInputSection-CUNjOlBC.js +0 -237
  1041. package/documentation/FileInputSection-D9YC4zr4.js +0 -73
  1042. package/documentation/FileStructureSection-DCuzzRzZ.js +0 -26
  1043. package/documentation/FileStructureSection-RjF24Eeb.js +0 -101
  1044. package/documentation/FormComponentsSection-W4xthxql.js +0 -1
  1045. package/documentation/FormComponentsSection-qIVGkJO5.js +0 -148
  1046. package/documentation/FormMethodsSection-BshjLI6k.js +0 -53
  1047. package/documentation/FormMethodsSection-H0NH1Kq_.js +0 -194
  1048. package/documentation/HamburgerSection-BEuEb_AH.js +0 -97
  1049. package/documentation/HamburgerSection-BhZWXoXB.js +0 -19
  1050. package/documentation/HookCategoriesSection-BKSM-O8G.js +0 -119
  1051. package/documentation/HookCategoriesSection-CV5hBia7.js +0 -1
  1052. package/documentation/HookDocumentationSection-Ch4nDyTq.js +0 -100
  1053. package/documentation/HookDocumentationSection-ijU1LCaj.js +0 -467
  1054. package/documentation/HookFeaturesSection-C_V77TA5.js +0 -1
  1055. package/documentation/HookFeaturesSection-D_dR8OBL.js +0 -70
  1056. package/documentation/IconArchitectureSection-CiVJ4728.js +0 -145
  1057. package/documentation/IconArchitectureSection-ias4EYu3.js +0 -11
  1058. package/documentation/IconSizingGuideSection-C5rHdRmp.js +0 -1
  1059. package/documentation/IconSizingGuideSection-ZHrKT5rP.js +0 -118
  1060. package/documentation/IconSystemAPISection-B-s4deWd.js +0 -1
  1061. package/documentation/IconSystemAPISection-K1q81uHL.js +0 -138
  1062. package/documentation/IconSystemBenefitsSection-BXM5YXn5.js +0 -1
  1063. package/documentation/IconSystemBenefitsSection-DhmIDZc1.js +0 -120
  1064. package/documentation/ImageSection-D3mMNujR.js +0 -82
  1065. package/documentation/ImageSection-q1QmHQ_L.js +0 -508
  1066. package/documentation/ImplementationExamplesSection-BzmiP-T4.js +0 -429
  1067. package/documentation/ImplementationExamplesSection-WGGTXLkG.js +0 -761
  1068. package/documentation/ImplementationGuidelinesSection-D2ms5PqO.js +0 -1
  1069. package/documentation/ImplementationGuidelinesSection-DlpKMLZ_.js +0 -144
  1070. package/documentation/ImplementationStatusSection-BnEi6nv4.js +0 -62
  1071. package/documentation/ImplementationStatusSection-ChX-zdjZ.js +0 -1
  1072. package/documentation/ImplementedFeaturesSection-C7ep5GNQ.js +0 -70
  1073. package/documentation/ImplementedFeaturesSection-CFHFcIUm.js +0 -1
  1074. package/documentation/InfoCardSection-B02qLuF6.js +0 -38
  1075. package/documentation/InfoCardSection-CTygtxPU.js +0 -291
  1076. package/documentation/InputSearcherSection-CJd1uwoE.js +0 -45
  1077. package/documentation/InputSearcherSection-JzvqQlCG.js +0 -267
  1078. package/documentation/InputSection-BPLR_DD_.js +0 -50
  1079. package/documentation/InputSection-DdzpSHWp.js +0 -280
  1080. package/documentation/InstallationSection-BfQULwsk.js +0 -22
  1081. package/documentation/InstallationSection-DAX5Jma4.js +0 -125
  1082. package/documentation/KeyValueRowSection-DpXvuany.js +0 -117
  1083. package/documentation/KeyValueRowSection-Vk2Og3XV.js +0 -17
  1084. package/documentation/KeyboardNavigationSection-DBHb6M7i.js +0 -130
  1085. package/documentation/KeyboardNavigationSection-DSDQWvAN.js +0 -27
  1086. package/documentation/LayoutPrinciplesSection-BbZcW8R3.js +0 -148
  1087. package/documentation/LayoutPrinciplesSection-XpAJdllO.js +0 -1
  1088. package/documentation/LayoutTypesSection-BtXrqAIT.js +0 -450
  1089. package/documentation/LayoutTypesSection-C-7mU0ZX.js +0 -1
  1090. package/documentation/LineChartSection-2vGnmySf.js +0 -130
  1091. package/documentation/LineChartSection-97CrQcFO.js +0 -21
  1092. package/documentation/ListContainerSection-5rcF8Fpk.js +0 -168
  1093. package/documentation/ListContainerSection-DRJITbJp.js +0 -39
  1094. package/documentation/ListItemSection-D0Bbbebh.js +0 -37
  1095. package/documentation/ListItemSection-DnAV85N9.js +0 -132
  1096. package/documentation/LiveDemoSection-BsPDLjy5.js +0 -1
  1097. package/documentation/LiveDemoSection-CcWjO6e8.js +0 -56
  1098. package/documentation/LiveDemonstrationsSection-CFmKZyVT.js +0 -28
  1099. package/documentation/LiveDemonstrationsSection-CqiqsC9o.js +0 -539
  1100. package/documentation/LivePriceFeedSection-2f2Lri-M.js +0 -143
  1101. package/documentation/LivePriceFeedSection-xruqFumk.js +0 -20
  1102. package/documentation/LoaderSection-B3_cpL4h.js +0 -23
  1103. package/documentation/LoaderSection-CVIcsumu.js +0 -96
  1104. package/documentation/LogoSection-Bi9m5Eid.js +0 -265
  1105. package/documentation/LogoSection-DQq_CA5R.js +0 -101
  1106. package/documentation/LucideIconsSection-C1yoAR38.js +0 -169
  1107. package/documentation/LucideIconsSection-DMLkXGfp.js +0 -1
  1108. package/documentation/MFESupportSection-CNJLJykb.js +0 -97
  1109. package/documentation/MFESupportSection-D4qheJMQ.js +0 -222
  1110. package/documentation/MacOSBackgroundsSection-Cqgf2s_S.js +0 -1
  1111. package/documentation/MacOSBackgroundsSection-D2rvKLZc.js +0 -293
  1112. package/documentation/MacOSColorsSection-3kw_FYMA.js +0 -1
  1113. package/documentation/MacOSColorsSection-LeWmqCH6.js +0 -305
  1114. package/documentation/MacOSCommandPaletteSection-ChoMTEdg.js +0 -33
  1115. package/documentation/MacOSCommandPaletteSection-CigtkU3V.js +0 -143
  1116. package/documentation/MacOSMaterialsSection-BpbSIN1m.js +0 -280
  1117. package/documentation/MacOSMaterialsSection-DVc8K0Ra.js +0 -1
  1118. package/documentation/MacOSNotificationBannerSection-D1_xjcml.js +0 -169
  1119. package/documentation/MacOSNotificationBannerSection-GYBjryLN.js +0 -25
  1120. package/documentation/MacOSPopoverSection-B7aiG5Q6.js +0 -266
  1121. package/documentation/MacOSPopoverSection-BiNY5oHn.js +0 -33
  1122. package/documentation/MacOSSearchBarSection-BPmwBz_E.js +0 -108
  1123. package/documentation/MacOSSearchBarSection-DeKloWI2.js +0 -17
  1124. package/documentation/MacOSSegmentedControlSection-D2RWyh1M.js +0 -138
  1125. package/documentation/MacOSSegmentedControlSection-DQYUVgAQ.js +0 -19
  1126. package/documentation/MacOSSidebarSection-CD_Mk8gZ.js +0 -35
  1127. package/documentation/MacOSSidebarSection-CMlYDEdz.js +0 -251
  1128. package/documentation/MacOSTahoeSection-DPuq0Mdo.js +0 -98
  1129. package/documentation/MacOSTahoeSection-NuwSNNQr.js +0 -1
  1130. package/documentation/MacOSTextStylesSection-CC3hy3IX.js +0 -1
  1131. package/documentation/MacOSTextStylesSection-DZ7P33PQ.js +0 -366
  1132. package/documentation/MacOSToolbarSection-B09pIaYX.js +0 -100
  1133. package/documentation/MacOSToolbarSection-CSO5R58s.js +0 -23
  1134. package/documentation/MacOSWidgetSection-BiwLJeZs.js +0 -107
  1135. package/documentation/MacOSWidgetSection-Dd9uuDwE.js +0 -19
  1136. package/documentation/MacOSWindowSection-BFew8rAG.js +0 -237
  1137. package/documentation/MacOSWindowSection-DD9TSZrq.js +0 -22
  1138. package/documentation/MenuItemsGuideSection-BQX2CJl8.js +0 -351
  1139. package/documentation/MenuItemsGuideSection-CpwqiKXd.js +0 -126
  1140. package/documentation/ModalSection-Ba-YDDxD.js +0 -114
  1141. package/documentation/ModalSection-BaKzs5hZ.js +0 -30
  1142. package/documentation/NFTGridSection-Dy-Ul2Ik.js +0 -19
  1143. package/documentation/NFTGridSection-P8SUQfCz.js +0 -160
  1144. package/documentation/NestedRoutesSection-BtgXarM0.js +0 -120
  1145. package/documentation/NestedRoutesSection-CAAjjFZN.js +0 -39
  1146. package/documentation/NotificationCardSection-CahW9xWR.js +0 -120
  1147. package/documentation/NotificationCardSection-DLHftS_t.js +0 -29
  1148. package/documentation/OverviewSection-Dx4cWnvO.js +0 -149
  1149. package/documentation/OverviewSection-yESqzgpR.js +0 -21
  1150. package/documentation/PaginationSection-BTm7MLWb.js +0 -19
  1151. package/documentation/PaginationSection-w-C3_8OX.js +0 -141
  1152. package/documentation/PanelActionCardSection-DB5atYQH.js +0 -29
  1153. package/documentation/PanelActionCardSection-DThpH-iA.js +0 -104
  1154. package/documentation/PanelCardSection-PoZLivo5.js +0 -16
  1155. package/documentation/PanelCardSection-qkmlfddG.js +0 -60
  1156. package/documentation/ParamTabSection-B8Ea5Jyo.js +0 -581
  1157. package/documentation/ParamTabSection-BUFHEsdU.js +0 -94
  1158. package/documentation/PieChartSection-DZ-efnf5.js +0 -91
  1159. package/documentation/PieChartSection-rvFWOh4i.js +0 -19
  1160. package/documentation/PinCodeSection-DY6pf21z.js +0 -235
  1161. package/documentation/PinCodeSection-iYhP8WRn.js +0 -32
  1162. package/documentation/ProgressbarSection-CDDDOLHD.js +0 -22
  1163. package/documentation/ProgressbarSection-DYz8aKoY.js +0 -142
  1164. package/documentation/PromptsSection-DNXFATf2.js +0 -118
  1165. package/documentation/PromptsSection-goD5CutA.js +0 -18
  1166. package/documentation/RadarChartSection-DLousZqi.js +0 -114
  1167. package/documentation/RadarChartSection-DRdLj3Uf.js +0 -21
  1168. package/documentation/RadioGroupSection-BKRE5Sf7.js +0 -37
  1169. package/documentation/RadioGroupSection-DimH8B5V.js +0 -269
  1170. package/documentation/RadioSection-Bs-DIwBf.js +0 -183
  1171. package/documentation/RadioSection-DAHq52V_.js +0 -27
  1172. package/documentation/ResourcesSection-BBvso4xC.js +0 -119
  1173. package/documentation/ResourcesSection-hRVu0-E3.js +0 -13
  1174. package/documentation/RevealContentSection-CE7RMGJq.js +0 -80
  1175. package/documentation/RevealContentSection-GfXzu3Ol.js +0 -21
  1176. package/documentation/RouteConfigurationSection-B8L9XluH.js +0 -88
  1177. package/documentation/RouteConfigurationSection-BYS8XsJC.js +0 -42
  1178. package/documentation/ScrollToTopSection-DKG5MWPc.js +0 -38
  1179. package/documentation/ScrollToTopSection-yVHR_9Pk.js +0 -141
  1180. package/documentation/ScrollbarSection-DQF_A8ik.js +0 -103
  1181. package/documentation/ScrollbarSection-eY8OTJHe.js +0 -30
  1182. package/documentation/SecuritySection-64HgmRhe.js +0 -164
  1183. package/documentation/SecuritySection-Bj_wYKUq.js +0 -27
  1184. package/documentation/SelectSection-DJ3tgyvR.js +0 -52
  1185. package/documentation/SelectSection-Dgxl0it2.js +0 -346
  1186. package/documentation/SettingsPanelSection-SFgqPTH6.js +0 -139
  1187. package/documentation/SettingsPanelSection-v6yvF5g4.js +0 -1
  1188. package/documentation/ShadowsSection-D2Xwyeuv.js +0 -101
  1189. package/documentation/ShadowsSection-OFJWDo8c.js +0 -1
  1190. package/documentation/SidebarMenuSection-BFiHaKIQ.js +0 -108
  1191. package/documentation/SidebarMenuSection-C-6Mru3D.js +0 -47
  1192. package/documentation/SidebarSection-BUYMpIy9.js +0 -26
  1193. package/documentation/SidebarSection-DHG4M5g2.js +0 -70
  1194. package/documentation/SizingSection-CXXXGeBV.js +0 -1
  1195. package/documentation/SizingSection-QO_NL9qO.js +0 -97
  1196. package/documentation/SkeletonSection-C5O2AHio.js +0 -53
  1197. package/documentation/SkeletonSection-D4gNU7bm.js +0 -202
  1198. package/documentation/SonomaColorsSection-DaX0wgtU.js +0 -388
  1199. package/documentation/SonomaColorsSection-qE3LKcsl.js +0 -1
  1200. package/documentation/SonomaLayoutContentSection-KH_Pmq1e.js +0 -16
  1201. package/documentation/SonomaLayoutContentSection-lk3jOdcA.js +0 -67
  1202. package/documentation/SonomaLayoutSidebarSection-B_lVlOoF.js +0 -27
  1203. package/documentation/SonomaLayoutSidebarSection-CGsVHx3w.js +0 -96
  1204. package/documentation/SonomaMaterialsSection-B2GKoQVM.js +0 -334
  1205. package/documentation/SonomaMaterialsSection-CgbY4y-g.js +0 -9
  1206. package/documentation/SonomaShapesSection-CLA0w7wt.js +0 -482
  1207. package/documentation/SonomaShapesSection-aQq097e6.js +0 -10
  1208. package/documentation/SonomaTypographySection-DuZtgZjb.js +0 -1
  1209. package/documentation/SonomaTypographySection-U1N16kAy.js +0 -389
  1210. package/documentation/SpacingSystemSection-BkqBvLpk.js +0 -1
  1211. package/documentation/SpacingSystemSection-DnU8aeIx.js +0 -79
  1212. package/documentation/SpinnerSection-DDwEF3DD.js +0 -78
  1213. package/documentation/SpinnerSection-Su1usSZJ.js +0 -18
  1214. package/documentation/StandaloneAppSection-BC6MhdY2.js +0 -181
  1215. package/documentation/StandaloneAppSection-DANtoenH.js +0 -71
  1216. package/documentation/StepperSection-BLwNTd_9.js +0 -166
  1217. package/documentation/StepperSection-BtE0uEh8.js +0 -29
  1218. package/documentation/SwitchSection-Bm8EmnZc.js +0 -223
  1219. package/documentation/SwitchSection-MO2zu9Js.js +0 -28
  1220. package/documentation/SystemOverviewSection-DXic3wL2.js +0 -1
  1221. package/documentation/SystemOverviewSection-X7-1cqED.js +0 -58
  1222. package/documentation/TabModalSection-ClQQ9-6q.js +0 -200
  1223. package/documentation/TabModalSection-Cy5MPQVA.js +0 -52
  1224. package/documentation/TabSection-CPijk6Ta.js +0 -293
  1225. package/documentation/TabSection-qGiMXnBi.js +0 -85
  1226. package/documentation/TabSelectSection-Bk-DIJad.js +0 -102
  1227. package/documentation/TabSelectSection-BrYYnzPJ.js +0 -420
  1228. package/documentation/TahoeCommandPaletteSection-CXpg1hY6.js +0 -21
  1229. package/documentation/TahoeCommandPaletteSection-uLevgWk8.js +0 -217
  1230. package/documentation/TahoeDialogSection-CD5v8gt3.js +0 -22
  1231. package/documentation/TahoeDialogSection-e1-T1_QN.js +0 -228
  1232. package/documentation/TahoeDockSection-CAo5ifrl.js +0 -29
  1233. package/documentation/TahoeDockSection-DX2OvS5V.js +0 -228
  1234. package/documentation/TahoeLayoutContentSection-BV20aXQn.js +0 -17
  1235. package/documentation/TahoeLayoutContentSection-GRD0fXGl.js +0 -68
  1236. package/documentation/TahoeLayoutSidebarSection-BBtU52ML.js +0 -114
  1237. package/documentation/TahoeLayoutSidebarSection-CtTixYWq.js +0 -36
  1238. package/documentation/TahoeNotificationBannerSection-DRI2NGMf.js +0 -144
  1239. package/documentation/TahoeNotificationBannerSection-E_QfykrY.js +0 -22
  1240. package/documentation/TahoePopoverSection-BALDKfWy.js +0 -220
  1241. package/documentation/TahoePopoverSection-DxyiMe8a.js +0 -24
  1242. package/documentation/TahoeProgressBarSection--ntwmqLK.js +0 -16
  1243. package/documentation/TahoeProgressBarSection-BfluMJvJ.js +0 -124
  1244. package/documentation/TahoeSearchBarSection-Cu3D_UUb.js +0 -117
  1245. package/documentation/TahoeSearchBarSection-D0MgndhN.js +0 -10
  1246. package/documentation/TahoeSegmentedControlSection-1o7lVQYN.js +0 -12
  1247. package/documentation/TahoeSegmentedControlSection-mMZpbchw.js +0 -178
  1248. package/documentation/TahoeToolbarSection-D8WWxm4T.js +0 -17
  1249. package/documentation/TahoeToolbarSection-PFkeKd3i.js +0 -81
  1250. package/documentation/TahoeWidgetSection-BVEBRImz.js +0 -13
  1251. package/documentation/TahoeWidgetSection-rEATjL-l.js +0 -121
  1252. package/documentation/TahoeWindowSection-DGavFNJq.js +0 -289
  1253. package/documentation/TahoeWindowSection-u3bobm-J.js +0 -24
  1254. package/documentation/TailwindConfigSection-Bq962qB7.js +0 -128
  1255. package/documentation/TailwindConfigSection-gSs5teqc.js +0 -23
  1256. package/documentation/TestingSection-C4zu2OqX.js +0 -36
  1257. package/documentation/TestingSection-CubylMzq.js +0 -150
  1258. package/documentation/TextareaSection-De5qUuU6.js +0 -34
  1259. package/documentation/TextareaSection-Dh2N_sLE.js +0 -258
  1260. package/documentation/ThemeArchitectureSection-B8s4f7v9.js +0 -27
  1261. package/documentation/ThemeArchitectureSection-c2yjz-7G.js +0 -143
  1262. package/documentation/ThemeConfigurationSection-BEHURMU6.js +0 -139
  1263. package/documentation/ThemeConfigurationSection-ClZzmEKO.js +0 -1
  1264. package/documentation/ThemeHooksSection-BBqxGbmE.js +0 -173
  1265. package/documentation/ThemeHooksSection-BJ9-8M4s.js +0 -1
  1266. package/documentation/ThemeProviderIntegrationSection-CJxrVkBK.js +0 -122
  1267. package/documentation/ThemeProviderIntegrationSection-iwBZSotn.js +0 -73
  1268. package/documentation/ThemeProviderRequiredSection-BO4kIXXp.js +0 -1
  1269. package/documentation/ThemeProviderRequiredSection-DBZtSffE.js +0 -114
  1270. package/documentation/ThemeProviderSection-DSP62663.js +0 -143
  1271. package/documentation/ThemeProviderSection-DTJSAXbf.js +0 -1
  1272. package/documentation/ToastSection-B8c3PKzz.js +0 -168
  1273. package/documentation/ToastSection-JtNX8amB.js +0 -38
  1274. package/documentation/ToggleBarSection-CDIah9a9.js +0 -186
  1275. package/documentation/ToggleBarSection-Cru1aZle.js +0 -45
  1276. package/documentation/ToolsSection-CZnoKySA.js +0 -58
  1277. package/documentation/ToolsSection-DgggfsKW.js +0 -221
  1278. package/documentation/TooltipSection-CzgM1bYL.js +0 -185
  1279. package/documentation/TooltipSection-U16kRVYC.js +0 -64
  1280. package/documentation/TopupButtonSection-BkbtkCl1.js +0 -98
  1281. package/documentation/TopupButtonSection-CcxFcarn.js +0 -25
  1282. package/documentation/TransactionInfoSection-Bol_mikk.js +0 -86
  1283. package/documentation/TransactionInfoSection-CL6fAjRQ.js +0 -16
  1284. package/documentation/TucuUiLogoSection-BoczvN10.js +0 -26
  1285. package/documentation/TucuUiLogoSection-CuIdpQE7.js +0 -85
  1286. package/documentation/TypographySection--uRpR5g0.js +0 -33
  1287. package/documentation/TypographySection-BaFvpZpE.js +0 -276
  1288. package/documentation/TypographySection-C_BYg98p.js +0 -142
  1289. package/documentation/TypographySection-Ct9gaoxy.js +0 -1
  1290. package/documentation/UsageExamplesSection-BC5Bc2JE.js +0 -84
  1291. package/documentation/UsageExamplesSection-CxLDaga8.js +0 -150
  1292. package/documentation/UsingThemeSystemSection-BTmRwgWH.js +0 -164
  1293. package/documentation/UsingThemeSystemSection-B_CnEDPB.js +0 -106
  1294. package/documentation/ValidationSystemSection-PT3LnSuX.js +0 -53
  1295. package/documentation/ValidationSystemSection-gd_ZxQ3N.js +0 -222
  1296. package/documentation/WCAGPrinciplesSection-BvBX0KP3.js +0 -1
  1297. package/documentation/WCAGPrinciplesSection-D94j2dIa.js +0 -126
  1298. package/hooks/index.d.ts +0 -14
  1299. package/hooks/use-anchor-scroll.d.ts +0 -1
  1300. package/hooks/use-breakpoint.d.ts +0 -1
  1301. package/hooks/use-click-away.d.ts +0 -1
  1302. package/hooks/use-copy-to-clipboard.d.ts +0 -1
  1303. package/hooks/use-element-size.d.ts +0 -9
  1304. package/hooks/use-event-listener.d.ts +0 -7
  1305. package/hooks/use-grid-switcher.d.ts +0 -6
  1306. package/hooks/use-is-mobile.d.ts +0 -4
  1307. package/hooks/use-is-mounted.d.ts +0 -1
  1308. package/hooks/use-lock-body-scroll.d.ts +0 -1
  1309. package/hooks/use-measure.d.ts +0 -1
  1310. package/hooks/use-scrollable-slider.d.ts +0 -7
  1311. package/hooks/use-toast-store.d.ts +0 -17
  1312. package/hooks/use-window-scroll.d.ts +0 -11
  1313. package/index-COp_AWCS.js +0 -1194
  1314. package/index-DYDFy1df.js +0 -77520
  1315. package/libs/framer-motion/fade-in-bottom.d.ts +0 -18
  1316. package/libs/index.d.ts +0 -3
  1317. package/libs/local-storage/index.d.ts +0 -7
  1318. package/libs/range-map.d.ts +0 -1
  1319. package/lucide-react/index.d.ts +0 -1
  1320. package/react-router-dom/index.d.ts +0 -1
  1321. package/swiper-react/index.d.ts +0 -2
  1322. package/tether-DaYvmdAU.js +0 -5
  1323. package/tether-EofDinu3.js +0 -1
  1324. package/themes/auth/components/auth-provider.d.ts +0 -7
  1325. package/themes/auth/components/index.d.ts +0 -1
  1326. package/themes/auth/index.d.ts +0 -1
  1327. package/themes/components/index.d.ts +0 -3
  1328. package/themes/components/settings/background-picker.d.ts +0 -2
  1329. package/themes/components/settings/color-dot.d.ts +0 -5
  1330. package/themes/components/settings/color-swatch-modal.d.ts +0 -7
  1331. package/themes/components/settings/default-color-settings.d.ts +0 -2
  1332. package/themes/components/settings/direction-switcher.d.ts +0 -2
  1333. package/themes/components/settings/index.d.ts +0 -19
  1334. package/themes/components/settings/lang-selector.d.ts +0 -6
  1335. package/themes/components/settings/layout-switcher.d.ts +0 -4
  1336. package/themes/components/settings/restore-defaults.d.ts +0 -2
  1337. package/themes/components/settings/settings-button.d.ts +0 -2
  1338. package/themes/components/settings/settings-drawer.d.ts +0 -2
  1339. package/themes/components/settings/settings-section-heading.d.ts +0 -4
  1340. package/themes/components/settings/settings-types.d.ts +0 -19
  1341. package/themes/components/settings/sonoma-accent-picker.d.ts +0 -2
  1342. package/themes/components/settings/switch-mode.d.ts +0 -6
  1343. package/themes/components/settings/switch-variant.d.ts +0 -5
  1344. package/themes/components/settings/switcher-button.d.ts +0 -7
  1345. package/themes/components/settings/tahoe-accent-picker.d.ts +0 -2
  1346. package/themes/components/settings/theme-icons.d.ts +0 -6
  1347. package/themes/components/settings/theme-switcher.d.ts +0 -2
  1348. package/themes/components/settings/theme-variant-switcher.d.ts +0 -2
  1349. package/themes/components/theme-background.d.ts +0 -33
  1350. package/themes/components/theme-provider/index.d.ts +0 -50
  1351. package/themes/components/theme-provider/mfe-app-theme-provider.d.ts +0 -11
  1352. package/themes/components/theme-provider/standalone-app-theme-provider.d.ts +0 -12
  1353. package/themes/components/theme-provider/theme-wrapper.d.ts +0 -63
  1354. package/themes/config/index.d.ts +0 -395
  1355. package/themes/hooks/index.d.ts +0 -3
  1356. package/themes/hooks/use-direction.d.ts +0 -1
  1357. package/themes/hooks/use-theme-color.d.ts +0 -29
  1358. package/themes/hooks/use-theme.d.ts +0 -118
  1359. package/themes/index.d.ts +0 -7
  1360. package/themes/pages/access-denied.d.ts +0 -6
  1361. package/themes/pages/default-error.d.ts +0 -5
  1362. package/themes/pages/disabled-page.d.ts +0 -5
  1363. package/themes/pages/fallback-page.d.ts +0 -8
  1364. package/themes/pages/forbidden.d.ts +0 -5
  1365. package/themes/pages/index.d.ts +0 -10
  1366. package/themes/pages/no-routes.d.ts +0 -5
  1367. package/themes/pages/not-found.d.ts +0 -5
  1368. package/themes/pages/server-error.d.ts +0 -5
  1369. package/themes/pages/unknown.d.ts +0 -5
  1370. package/themes/pages/user-blocked.d.ts +0 -5
  1371. package/themes/router/components/index.d.ts +0 -2
  1372. package/themes/router/components/mfe-app-routes-provider.d.ts +0 -16
  1373. package/themes/router/components/standalone-app-routes-provider.d.ts +0 -22
  1374. package/themes/router/hooks/index.d.ts +0 -1
  1375. package/themes/router/hooks/use-public-error-routes-config.d.ts +0 -6
  1376. package/themes/router/index.d.ts +0 -2
  1377. package/themes/types/index.d.ts +0 -15
@@ -0,0 +1,22 @@
1
+ import { jsx as C } from "react/jsx-runtime";
2
+ function o(r) {
3
+ return /* @__PURE__ */ C(
4
+ "svg",
5
+ {
6
+ viewBox: "0 0 24 24",
7
+ fill: "none",
8
+ xmlns: "http://www.w3.org/2000/svg",
9
+ ...r,
10
+ children: /* @__PURE__ */ C(
11
+ "path",
12
+ {
13
+ d: "M21.8097 6.22724C21.8677 6.14647 21.7821 6.04218 21.6894 6.07811C21.0307 6.33344 20.3422 6.50571 19.64 6.5906C20.4219 6.12348 21.0253 5.4124 21.3599 4.57053C21.3939 4.48477 21.3003 4.40819 21.2195 4.4528C20.4928 4.85414 19.709 5.14313 18.8949 5.30957C18.8608 5.31654 18.8257 5.30494 18.8018 5.27969C18.1908 4.63502 17.3865 4.20578 16.5098 4.05745C15.6146 3.90601 14.6945 4.05596 13.8938 4.48379C13.093 4.91162 12.4569 5.59313 12.0852 6.42144C11.7318 7.209 11.6365 8.08691 11.8108 8.93003C11.8243 8.99545 11.7731 9.05721 11.7064 9.05307C10.1224 8.95469 8.57466 8.53336 7.15865 7.81446C5.74624 7.09739 4.49551 6.09983 3.48264 4.8833C3.43769 4.82931 3.35249 4.83629 3.31973 4.89845C3.00457 5.49651 2.83955 6.16311 2.84 6.8406C2.83872 7.51498 3.00421 8.17922 3.32175 8.77416C3.63929 9.36911 4.09902 9.87631 4.66 10.2506C4.06507 10.2344 3.48175 10.0873 2.95125 9.82067C2.88288 9.78631 2.80087 9.83524 2.80443 9.91167C2.8458 10.8009 3.17225 11.6936 3.73731 12.3786C4.33863 13.1074 5.17325 13.6062 6.1 13.7906C5.74325 13.8992 5.37287 13.9564 5 13.9606C4.79706 13.9582 4.59451 13.9433 4.39353 13.9158C4.31901 13.9056 4.25817 13.9764 4.28425 14.0469C4.56067 14.7944 5.04899 15.4467 5.69107 15.9228C6.37752 16.4318 7.20557 16.7142 8.06 16.7306C6.6172 17.8659 4.83588 18.4855 3 18.4906C2.81135 18.4912 2.62279 18.4851 2.43468 18.4723C2.32867 18.4651 2.27992 18.6063 2.37129 18.6605C4.16006 19.7221 6.20459 20.2831 8.29 20.2806C9.82969 20.2966 11.3571 20.0056 12.7831 19.4247C14.2091 18.8437 15.505 17.9845 16.5952 16.8971C17.6854 15.8097 18.548 14.516 19.1326 13.0915C19.7171 11.667 20.012 10.1403 20 8.6006V8.12077C20 8.0892 20.0149 8.05951 20.0401 8.04048C20.7184 7.52834 21.3149 6.91691 21.8097 6.22724Z",
14
+ fill: "currentColor"
15
+ }
16
+ )
17
+ }
18
+ );
19
+ }
20
+ export {
21
+ o as Twitter
22
+ };
@@ -0,0 +1,24 @@
1
+ import { jsx as C } from "react/jsx-runtime";
2
+ function n(V) {
3
+ return /* @__PURE__ */ C(
4
+ "svg",
5
+ {
6
+ width: "18",
7
+ height: "18",
8
+ viewBox: "0 0 18 18",
9
+ fill: "none",
10
+ xmlns: "http://www.w3.org/2000/svg",
11
+ ...V,
12
+ children: /* @__PURE__ */ C(
13
+ "path",
14
+ {
15
+ d: "M2.72017 18H15.2802C16.5968 18 17.6668 16.93 17.6668 15.6133V3.71998C17.6668 2.40332 16.5968 1.33331 15.2802 1.33331H14.3335V0.666654C14.3335 0.299983 14.0335 0 13.6668 0C13.3001 0 13.0002 0.299983 13.0002 0.666654V1.33331H5.00019V0.666654C5.00019 0.299983 4.70015 0 4.33348 0C3.96681 0 3.66682 0.299983 3.66682 0.666654V1.33331H2.72017C1.40351 1.33331 0.333496 2.40332 0.333496 3.71998V15.6133C0.333496 16.93 1.40351 18 2.72017 18ZM1.66686 3.71998C1.66686 3.14 2.14019 2.66667 2.72017 2.66667H3.66682V3.33333C3.66682 3.7 3.96681 3.99998 4.33348 3.99998C4.70015 3.99998 5.00013 3.7 5.00013 3.33333V2.66667H13.0002V3.33333C13.0002 3.7 13.3001 3.99998 13.6668 3.99998C14.0335 3.99998 14.3335 3.7 14.3335 3.33333V2.66667H15.2801C15.8601 2.66667 16.3334 3.14 16.3334 3.71998V5.66667H1.66686V3.71998ZM1.66686 6.99998H16.3335V15.6133C16.3335 16.1933 15.8602 16.6666 15.2802 16.6666H2.72017C2.14019 16.6666 1.66686 16.1933 1.66686 15.6133V6.99998Z",
16
+ fill: "currentColor"
17
+ }
18
+ )
19
+ }
20
+ );
21
+ }
22
+ export {
23
+ n as CalendarIcon
24
+ };
@@ -0,0 +1,34 @@
1
+ import { jsxs as Z, jsx as a } from "react/jsx-runtime";
2
+ function e(m) {
3
+ return /* @__PURE__ */ Z(
4
+ "svg",
5
+ {
6
+ width: "24",
7
+ height: "24",
8
+ fill: "none",
9
+ xmlns: "http://www.w3.org/2000/svg",
10
+ ...m,
11
+ children: [
12
+ /* @__PURE__ */ a(
13
+ "path",
14
+ {
15
+ d: "M12 24c6.627 0 12-5.373 12-12S18.627 0 12 0 0 5.373 0 12s5.373 12 12 12Z",
16
+ fill: "#3468D1"
17
+ }
18
+ ),
19
+ /* @__PURE__ */ a(
20
+ "path",
21
+ {
22
+ fillRule: "evenodd",
23
+ clipRule: "evenodd",
24
+ d: "M10.662 8.319a1.186 1.186 0 1 1 0 2.372 1.186 1.186 0 0 1 0-2.372Zm2.864 0a1.186 1.186 0 1 1-.001 2.372 1.186 1.186 0 0 1 0-2.372Zm0 4.99a1.186 1.186 0 1 1-.001 2.372 1.186 1.186 0 0 1 0-2.372Zm-2.864 0a1.187 1.187 0 1 1-.001 2.374 1.187 1.187 0 0 1 0-2.374Zm-1.473-2.454a1.187 1.187 0 1 1 0 2.374 1.187 1.187 0 0 1 0-2.374Zm5.81 0a1.186 1.186 0 1 1-.001 2.372 1.186 1.186 0 0 1 0-2.372Zm1.35-2.045a.736.736 0 1 1-.001 1.473.736.736 0 0 1 0-1.473Zm0 4.908a.736.736 0 1 1 0 1.472.736.736 0 0 1 0-1.472Zm-8.51 0a.736.736 0 1 1 0 1.472.736.736 0 0 1 0-1.472Zm0-4.908a.736.736 0 1 1 0 1.472.736.736 0 0 1 0-1.472Zm4.255-2.454a.736.736 0 1 1 0 1.472.736.736 0 0 1 0-1.472Zm0 9.816a.736.736 0 1 1 0 1.471.736.736 0 0 1 0-1.471Zm3.15.736a.612.612 0 1 1 0 1.225.612.612 0 0 1 0-1.225Zm-6.3 0a.613.613 0 1 1 0 1.225.613.613 0 0 1 0-1.225Zm0-11.043a.614.614 0 1 1 0 1.227.614.614 0 0 1 0-1.227Zm6.3 0a.613.613 0 1 1 0 1.226.613.613 0 0 1 0-1.226Zm3.19 5.48a.612.612 0 1 1 0 1.225.612.612 0 0 1 0-1.224Zm-12.681 0a.613.613 0 1 1 0 1.226.613.613 0 0 1 0-1.225Zm-.45-3.762a.49.49 0 1 1 0 .982.49.49 0 0 1 0-.982Zm0 7.853a.49.49 0 1 1 0 .98.49.49 0 0 1 0-.98Zm13.582 0a.49.49 0 1 1 0 .98.49.49 0 0 1 0-.98Zm0-7.853a.49.49 0 1 1 0 .981.49.49 0 0 1 0-.981Zm-6.791-3.927a.49.49 0 1 1 0 .982.49.49 0 0 1 0-.982Zm0 15.706a.49.49 0 1 1 0 .98.49.49 0 0 1 0-.98Zm4.336-.327a.41.41 0 1 1 0 .818.41.41 0 0 1 0-.818Zm-8.673 0a.41.41 0 1 1 0 .819.41.41 0 0 1 0-.82Zm0-14.888a.41.41 0 1 1 0 .82.41.41 0 0 1 0-.82Zm8.673 0a.409.409 0 1 1 0 .82.409.409 0 0 1 0-.82Zm4.255 7.444a.41.41 0 1 1 0 .82.41.41 0 0 1 0-.82Zm-17.182 0a.41.41 0 1 1 0 .82.41.41 0 0 1 0-.82Z",
25
+ fill: "#fff"
26
+ }
27
+ )
28
+ ]
29
+ }
30
+ );
31
+ }
32
+ export {
33
+ e as Cardano
34
+ };
@@ -0,0 +1,11 @@
1
+ import { jsx as r } from "react/jsx-runtime";
2
+ const t = (e) => /* @__PURE__ */ r("svg", { width: "14", height: "10", viewBox: "0 0 14 10", fill: "none", ...e, children: /* @__PURE__ */ r(
3
+ "path",
4
+ {
5
+ d: "M13.0303 0.96967C13.3232 1.26256 13.3232 1.73744 13.0303 2.03033L6.03033 9.03033C5.73744 9.32322 5.26256 9.32322 4.96967 9.03033L0.96967 5.03033C0.676777 4.73744 0.676777 4.26256 0.96967 3.96967C1.26256 3.67678 1.73744 3.67678 2.03033 3.96967L5.5 7.43934L11.9697 0.96967C12.2626 0.676777 12.7374 0.676777 13.0303 0.96967Z",
6
+ fill: "currentColor"
7
+ }
8
+ ) });
9
+ export {
10
+ t as Check
11
+ };
@@ -0,0 +1,25 @@
1
+ import { jsx as o } from "react/jsx-runtime";
2
+ function e(r) {
3
+ return /* @__PURE__ */ o(
4
+ "svg",
5
+ {
6
+ xmlns: "http://www.w3.org/2000/svg",
7
+ fill: "none",
8
+ viewBox: "0 0 24 24",
9
+ strokeWidth: 1.5,
10
+ stroke: "currentColor",
11
+ ...r,
12
+ children: /* @__PURE__ */ o(
13
+ "path",
14
+ {
15
+ strokeLinecap: "round",
16
+ strokeLinejoin: "round",
17
+ d: "M4.5 12.75l6 6 9-13.5"
18
+ }
19
+ )
20
+ }
21
+ );
22
+ }
23
+ export {
24
+ e as CheckmarkIcon
25
+ };
@@ -0,0 +1,26 @@
1
+ import { jsx as e } from "react/jsx-runtime";
2
+ function n(o) {
3
+ return /* @__PURE__ */ e(
4
+ "svg",
5
+ {
6
+ width: "11",
7
+ height: "6",
8
+ viewBox: "0 0 11 6",
9
+ fill: "none",
10
+ xmlns: "http://www.w3.org/2000/svg",
11
+ ...o,
12
+ children: /* @__PURE__ */ e(
13
+ "path",
14
+ {
15
+ fillRule: "evenodd",
16
+ clipRule: "evenodd",
17
+ d: "M10.6635 0.336517C10.9719 0.644826 10.9719 1.14469 10.6635 1.453L6.45302 5.66353C6.14471 5.97184 5.64484 5.97184 5.33653 5.66353L1.12601 1.453C0.817699 1.14469 0.817699 0.644826 1.12601 0.336517C1.43432 0.0282085 1.93418 0.0282085 2.24249 0.336517L5.89478 3.9888L9.54706 0.336517C9.85537 0.0282085 10.3552 0.0282085 10.6635 0.336517Z",
18
+ fill: "currentColor"
19
+ }
20
+ )
21
+ }
22
+ );
23
+ }
24
+ export {
25
+ n as ChevronDown
26
+ };
@@ -0,0 +1,24 @@
1
+ import { jsx as e } from "react/jsx-runtime";
2
+ const l = (o) => /* @__PURE__ */ e(
3
+ "svg",
4
+ {
5
+ width: "6",
6
+ height: "10",
7
+ viewBox: "0 0 6 10",
8
+ fill: "none",
9
+ xmlns: "http://www.w3.org/2000/svg",
10
+ ...o,
11
+ children: /* @__PURE__ */ e(
12
+ "path",
13
+ {
14
+ fillRule: "evenodd",
15
+ clipRule: "evenodd",
16
+ d: "M0.231232 0.231232C0.53954 -0.0770772 1.03941 -0.0770772 1.34772 0.231232L5.55824 4.44176C5.86655 4.75007 5.86655 5.24993 5.55824 5.55824L1.34772 9.76877C1.03941 10.0771 0.53954 10.0771 0.231232 9.76877C-0.0770772 9.46046 -0.0770772 8.96059 0.231232 8.65228L3.88352 5L0.231232 1.34772C-0.0770772 1.03941 -0.0770772 0.53954 0.231232 0.231232Z",
17
+ fill: "currentColor"
18
+ }
19
+ )
20
+ }
21
+ );
22
+ export {
23
+ l as ChevronForward
24
+ };
@@ -0,0 +1,30 @@
1
+ import { jsx as r } from "react/jsx-runtime";
2
+ import e from "classnames";
3
+ function i({
4
+ className: o,
5
+ ...t
6
+ }) {
7
+ return /* @__PURE__ */ r(
8
+ "svg",
9
+ {
10
+ xmlns: "http://www.w3.org/2000/svg",
11
+ fill: "none",
12
+ viewBox: "0 0 24 24",
13
+ strokeWidth: 2.5,
14
+ stroke: "currentColor",
15
+ className: e("transform rotate-180", o),
16
+ ...t,
17
+ children: /* @__PURE__ */ r(
18
+ "path",
19
+ {
20
+ strokeLinecap: "round",
21
+ strokeLinejoin: "round",
22
+ d: "M8.25 4.5l7.5 7.5-7.5 7.5"
23
+ }
24
+ )
25
+ }
26
+ );
27
+ }
28
+ export {
29
+ i as ChevronLeft
30
+ };
@@ -0,0 +1,25 @@
1
+ import { jsx as o } from "react/jsx-runtime";
2
+ function t(r) {
3
+ return /* @__PURE__ */ o(
4
+ "svg",
5
+ {
6
+ xmlns: "http://www.w3.org/2000/svg",
7
+ fill: "none",
8
+ viewBox: "0 0 24 24",
9
+ strokeWidth: 2.5,
10
+ stroke: "currentColor",
11
+ ...r,
12
+ children: /* @__PURE__ */ o(
13
+ "path",
14
+ {
15
+ strokeLinecap: "round",
16
+ strokeLinejoin: "round",
17
+ d: "M8.25 4.5l7.5 7.5-7.5 7.5"
18
+ }
19
+ )
20
+ }
21
+ );
22
+ }
23
+ export {
24
+ t as ChevronRight
25
+ };
@@ -0,0 +1,21 @@
1
+ import { jsx as t, jsxs as e } from "react/jsx-runtime";
2
+ function h(r) {
3
+ return /* @__PURE__ */ t(
4
+ "svg",
5
+ {
6
+ xmlns: "http://www.w3.org/2000/svg",
7
+ fill: "none",
8
+ width: "34",
9
+ height: "34",
10
+ viewBox: "0 0 52 34",
11
+ ...r,
12
+ children: /* @__PURE__ */ e("g", { stroke: "currentColor", strokeWidth: "1.2", children: [
13
+ /* @__PURE__ */ t("rect", { height: "32", rx: "1.4", width: "5.56991", x: ".6", y: ".6" }),
14
+ /* @__PURE__ */ t("rect", { height: "32", rx: "1.4", width: "40.3221", x: "10.0775", y: ".6" })
15
+ ] })
16
+ }
17
+ );
18
+ }
19
+ export {
20
+ h as ClassicLayoutIcon
21
+ };
@@ -0,0 +1,37 @@
1
+ import { jsxs as t, jsx as r } from "react/jsx-runtime";
2
+ function n(o) {
3
+ return /* @__PURE__ */ t(
4
+ "svg",
5
+ {
6
+ width: "10",
7
+ height: "10",
8
+ viewBox: "0 0 10 10",
9
+ fill: "none",
10
+ xmlns: "http://www.w3.org/2000/svg",
11
+ ...o,
12
+ children: [
13
+ /* @__PURE__ */ r(
14
+ "path",
15
+ {
16
+ d: "M1.46445 8.53542L8.53552 1.46436",
17
+ stroke: "currentColor",
18
+ strokeWidth: "1.5",
19
+ strokeLinecap: "round"
20
+ }
21
+ ),
22
+ /* @__PURE__ */ r(
23
+ "path",
24
+ {
25
+ d: "M1.46446 1.46458L8.53552 8.53564",
26
+ stroke: "currentColor",
27
+ strokeWidth: "1.5",
28
+ strokeLinecap: "round"
29
+ }
30
+ )
31
+ ]
32
+ }
33
+ );
34
+ }
35
+ export {
36
+ n as Close
37
+ };
@@ -0,0 +1,100 @@
1
+ import { jsxs as e, jsx as C } from "react/jsx-runtime";
2
+ function o(l) {
3
+ return /* @__PURE__ */ e(
4
+ "svg",
5
+ {
6
+ width: "18",
7
+ height: "19",
8
+ viewBox: "0 0 18 19",
9
+ fill: "none",
10
+ xmlns: "http://www.w3.org/2000/svg",
11
+ ...l,
12
+ children: [
13
+ /* @__PURE__ */ C(
14
+ "path",
15
+ {
16
+ fillRule: "evenodd",
17
+ clipRule: "evenodd",
18
+ d: "M3.48315 1.70279C2.83017 1.62914 2.15366 1.62914 1.50068 1.70279C1.48855 1.70416 1.47655 1.7097 1.46669 1.71951C1.45706 1.7291 1.4533 1.73878 1.45235 1.747C1.37443 2.41934 1.37443 3.09855 1.45235 3.77089C1.4533 3.77911 1.45706 3.7888 1.46669 3.79838C1.47655 3.80819 1.48855 3.81373 1.50068 3.8151C2.15366 3.88876 2.83017 3.88876 3.48315 3.8151C3.49528 3.81373 3.50728 3.80819 3.51714 3.79838C3.52677 3.7888 3.53053 3.77911 3.53149 3.77089C3.6094 3.09855 3.6094 2.41934 3.53149 1.747C3.53053 1.73878 3.52677 1.7291 3.51714 1.71951C3.50728 1.7097 3.49528 1.70416 3.48315 1.70279ZM1.34585 0.304685C2.10173 0.219422 2.8821 0.219422 3.63798 0.304685C4.29993 0.379352 4.83732 0.90497 4.91596 1.58358C5.00646 2.3645 5.00646 3.1534 4.91596 3.93431C4.83732 4.61292 4.29993 5.13854 3.63798 5.21321C2.8821 5.29847 2.10173 5.29847 1.34585 5.21321C0.683906 5.13854 0.146515 4.61292 0.0678732 3.93431C-0.0226244 3.1534 -0.0226244 2.3645 0.0678732 1.58358C0.146515 0.90497 0.683906 0.379352 1.34585 0.304685Z",
19
+ fill: "currentColor"
20
+ }
21
+ ),
22
+ /* @__PURE__ */ C(
23
+ "path",
24
+ {
25
+ fillRule: "evenodd",
26
+ clipRule: "evenodd",
27
+ d: "M9.98806 1.70279C9.33508 1.62914 8.65857 1.62914 8.00559 1.70279C7.99346 1.70416 7.98146 1.7097 7.9716 1.71951C7.96197 1.7291 7.95821 1.73878 7.95726 1.747C7.87934 2.41934 7.87934 3.09855 7.95726 3.77089C7.95821 3.77911 7.96197 3.7888 7.9716 3.79838C7.98146 3.80819 7.99346 3.81373 8.00559 3.8151C8.65857 3.88876 9.33508 3.88876 9.98806 3.8151C10.0002 3.81373 10.0122 3.80819 10.0221 3.79838C10.0317 3.7888 10.0354 3.77911 10.0364 3.77089C10.1143 3.09855 10.1143 2.41934 10.0364 1.747C10.0354 1.73878 10.0317 1.7291 10.0221 1.71951C10.0122 1.7097 10.0002 1.70416 9.98806 1.70279ZM7.85076 0.304685C8.60664 0.219422 9.38701 0.219422 10.1429 0.304685C10.8048 0.379352 11.3422 0.90497 11.4209 1.58358C11.5114 2.3645 11.5114 3.1534 11.4209 3.93431C11.3422 4.61292 10.8048 5.13854 10.1429 5.21321C9.38701 5.29847 8.60664 5.29847 7.85076 5.21321C7.18882 5.13854 6.65142 4.61292 6.57278 3.93431C6.48229 3.1534 6.48229 2.3645 6.57278 1.58358C6.65142 0.90497 7.18882 0.379352 7.85076 0.304685Z",
28
+ fill: "currentColor"
29
+ }
30
+ ),
31
+ /* @__PURE__ */ C(
32
+ "path",
33
+ {
34
+ fillRule: "evenodd",
35
+ clipRule: "evenodd",
36
+ d: "M16.493 1.70279C15.84 1.62914 15.1635 1.62914 14.5105 1.70279C14.4984 1.70416 14.4864 1.7097 14.4765 1.71951C14.4669 1.7291 14.4631 1.73878 14.4622 1.747C14.3843 2.41934 14.3843 3.09855 14.4622 3.77089C14.4631 3.77911 14.4669 3.7888 14.4765 3.79838C14.4864 3.80819 14.4984 3.81373 14.5105 3.8151C15.1635 3.88876 15.84 3.88876 16.493 3.8151C16.5051 3.81373 16.5171 3.80819 16.527 3.79838C16.5366 3.7888 16.5404 3.77911 16.5413 3.77089C16.6192 3.09855 16.6192 2.41934 16.5413 1.747C16.5404 1.73878 16.5366 1.7291 16.527 1.71951C16.5171 1.7097 16.5051 1.70416 16.493 1.70279ZM14.3557 0.304685C15.1116 0.219422 15.8919 0.219422 16.6478 0.304685C17.3097 0.379352 17.8471 0.90497 17.9258 1.58358C18.0163 2.3645 18.0163 3.1534 17.9258 3.93431C17.8471 4.61292 17.3097 5.13854 16.6478 5.21321C15.8919 5.29847 15.1116 5.29847 14.3557 5.21321C13.6937 5.13854 13.1563 4.61292 13.0777 3.93431C12.9872 3.1534 12.9872 2.3645 13.0777 1.58358C13.1563 0.90497 13.6937 0.379352 14.3557 0.304685Z",
37
+ fill: "currentColor"
38
+ }
39
+ ),
40
+ /* @__PURE__ */ C(
41
+ "path",
42
+ {
43
+ fillRule: "evenodd",
44
+ clipRule: "evenodd",
45
+ d: "M3.48315 8.26792C2.83017 8.19426 2.15366 8.19426 1.50068 8.26792C1.48855 8.26929 1.47655 8.27483 1.46669 8.28464C1.45706 8.29422 1.4533 8.30391 1.45235 8.31213C1.37443 8.98447 1.37443 9.66368 1.45235 10.336C1.4533 10.3442 1.45706 10.3539 1.46669 10.3635C1.47655 10.3733 1.48855 10.3789 1.50068 10.3802C2.15366 10.4539 2.83017 10.4539 3.48315 10.3802C3.49528 10.3789 3.50728 10.3733 3.51714 10.3635C3.52677 10.3539 3.53053 10.3442 3.53149 10.336C3.6094 9.66368 3.6094 8.98447 3.53149 8.31213C3.53053 8.30391 3.52677 8.29422 3.51714 8.28464C3.50728 8.27483 3.49528 8.26929 3.48315 8.26792ZM1.34585 6.86981C2.10173 6.78455 2.8821 6.78455 3.63798 6.86981C4.29993 6.94448 4.83732 7.4701 4.91596 8.14871C5.00646 8.92962 5.00646 9.71852 4.91596 10.4994C4.83732 11.1781 4.29993 11.7037 3.63798 11.7783C2.8821 11.8636 2.10173 11.8636 1.34585 11.7783C0.683906 11.7037 0.146515 11.1781 0.0678732 10.4994C-0.0226244 9.71852 -0.0226244 8.92962 0.0678732 8.14871C0.146515 7.4701 0.683906 6.94448 1.34585 6.86981Z",
46
+ fill: "currentColor"
47
+ }
48
+ ),
49
+ /* @__PURE__ */ C(
50
+ "path",
51
+ {
52
+ fillRule: "evenodd",
53
+ clipRule: "evenodd",
54
+ d: "M9.98806 8.26792C9.33508 8.19426 8.65857 8.19426 8.00559 8.26792C7.99346 8.26929 7.98146 8.27483 7.9716 8.28464C7.96197 8.29422 7.95821 8.30391 7.95726 8.31213C7.87934 8.98447 7.87934 9.66368 7.95726 10.336C7.95821 10.3442 7.96197 10.3539 7.9716 10.3635C7.98146 10.3733 7.99346 10.3789 8.00559 10.3802C8.65857 10.4539 9.33508 10.4539 9.98806 10.3802C10.0002 10.3789 10.0122 10.3733 10.0221 10.3635C10.0317 10.3539 10.0354 10.3442 10.0364 10.336C10.1143 9.66368 10.1143 8.98447 10.0364 8.31213C10.0354 8.30391 10.0317 8.29422 10.0221 8.28464C10.0122 8.27483 10.0002 8.26929 9.98806 8.26792ZM7.85076 6.86981C8.60664 6.78455 9.38701 6.78455 10.1429 6.86981C10.8048 6.94448 11.3422 7.4701 11.4209 8.14871C11.5114 8.92962 11.5114 9.71852 11.4209 10.4994C11.3422 11.1781 10.8048 11.7037 10.1429 11.7783C9.38701 11.8636 8.60664 11.8636 7.85076 11.7783C7.18882 11.7037 6.65142 11.1781 6.57278 10.4994C6.48229 9.71852 6.48229 8.92962 6.57278 8.14871C6.65142 7.4701 7.18882 6.94448 7.85076 6.86981Z",
55
+ fill: "currentColor"
56
+ }
57
+ ),
58
+ /* @__PURE__ */ C(
59
+ "path",
60
+ {
61
+ fillRule: "evenodd",
62
+ clipRule: "evenodd",
63
+ d: "M16.493 8.26792C15.84 8.19426 15.1635 8.19426 14.5105 8.26792C14.4984 8.26929 14.4864 8.27483 14.4765 8.28464C14.4669 8.29422 14.4631 8.30391 14.4622 8.31213C14.3843 8.98447 14.3843 9.66368 14.4622 10.336C14.4631 10.3442 14.4669 10.3539 14.4765 10.3635C14.4864 10.3733 14.4984 10.3789 14.5105 10.3802C15.1635 10.4539 15.84 10.4539 16.493 10.3802C16.5051 10.3789 16.5171 10.3733 16.527 10.3635C16.5366 10.3539 16.5404 10.3442 16.5413 10.336C16.6192 9.66368 16.6192 8.98447 16.5413 8.31213C16.5404 8.30391 16.5366 8.29422 16.527 8.28464C16.5171 8.27483 16.5051 8.26929 16.493 8.26792ZM14.3557 6.86981C15.1116 6.78455 15.8919 6.78455 16.6478 6.86981C17.3097 6.94448 17.8471 7.4701 17.9258 8.14871C18.0163 8.92962 18.0163 9.71852 17.9258 10.4994C17.8471 11.1781 17.3097 11.7037 16.6478 11.7783C15.8919 11.8636 15.1116 11.8636 14.3557 11.7783C13.6937 11.7037 13.1563 11.1781 13.0777 10.4994C12.9872 9.71852 12.9872 8.92962 13.0777 8.14871C13.1563 7.4701 13.6937 6.94448 14.3557 6.86981Z",
64
+ fill: "currentColor"
65
+ }
66
+ ),
67
+ /* @__PURE__ */ C(
68
+ "path",
69
+ {
70
+ fillRule: "evenodd",
71
+ clipRule: "evenodd",
72
+ d: "M3.48315 14.833C2.83017 14.7594 2.15366 14.7594 1.50068 14.833C1.48855 14.8344 1.47655 14.84 1.46669 14.8498C1.45706 14.8594 1.4533 14.869 1.45235 14.8773C1.37443 15.5496 1.37443 16.2288 1.45235 16.9011C1.4533 16.9094 1.45706 16.9191 1.46669 16.9286C1.47655 16.9384 1.48855 16.944 1.50068 16.9454C2.15366 17.019 2.83017 17.019 3.48315 16.9454C3.49528 16.944 3.50728 16.9384 3.51714 16.9286C3.52677 16.9191 3.53053 16.9094 3.53149 16.9011C3.6094 16.2288 3.6094 15.5496 3.53149 14.8773C3.53053 14.869 3.52677 14.8594 3.51714 14.8498C3.50728 14.84 3.49528 14.8344 3.48315 14.833ZM1.34585 13.4349C2.10173 13.3497 2.8821 13.3497 3.63798 13.4349C4.29993 13.5096 4.83732 14.0352 4.91596 14.7138C5.00646 15.4948 5.00646 16.2837 4.91596 17.0646C4.83732 17.7432 4.29993 18.2688 3.63798 18.3435C2.8821 18.4287 2.10173 18.4287 1.34585 18.3435C0.683906 18.2688 0.146515 17.7432 0.0678732 17.0646C-0.0226244 16.2837 -0.0226244 15.4948 0.0678732 14.7138C0.146515 14.0352 0.683906 13.5096 1.34585 13.4349Z",
73
+ fill: "currentColor"
74
+ }
75
+ ),
76
+ /* @__PURE__ */ C(
77
+ "path",
78
+ {
79
+ fillRule: "evenodd",
80
+ clipRule: "evenodd",
81
+ d: "M9.98806 14.833C9.33508 14.7594 8.65857 14.7594 8.00559 14.833C7.99346 14.8344 7.98146 14.84 7.9716 14.8498C7.96197 14.8594 7.95821 14.869 7.95726 14.8773C7.87934 15.5496 7.87934 16.2288 7.95726 16.9011C7.95821 16.9094 7.96197 16.9191 7.9716 16.9286C7.98146 16.9384 7.99346 16.944 8.00559 16.9454C8.65857 17.019 9.33508 17.019 9.98806 16.9454C10.0002 16.944 10.0122 16.9384 10.0221 16.9286C10.0317 16.9191 10.0354 16.9094 10.0364 16.9011C10.1143 16.2288 10.1143 15.5496 10.0364 14.8773C10.0354 14.869 10.0317 14.8594 10.0221 14.8498C10.0122 14.84 10.0002 14.8344 9.98806 14.833ZM7.85076 13.4349C8.60664 13.3497 9.38701 13.3497 10.1429 13.4349C10.8048 13.5096 11.3422 14.0352 11.4209 14.7138C11.5114 15.4948 11.5114 16.2837 11.4209 17.0646C11.3422 17.7432 10.8048 18.2688 10.1429 18.3435C9.38701 18.4287 8.60664 18.4287 7.85076 18.3435C7.18882 18.2688 6.65142 17.7432 6.57278 17.0646C6.48229 16.2837 6.48229 15.4948 6.57278 14.7138C6.65142 14.0352 7.18882 13.5096 7.85076 13.4349Z",
82
+ fill: "currentColor"
83
+ }
84
+ ),
85
+ /* @__PURE__ */ C(
86
+ "path",
87
+ {
88
+ fillRule: "evenodd",
89
+ clipRule: "evenodd",
90
+ d: "M16.493 14.833C15.84 14.7594 15.1635 14.7594 14.5105 14.833C14.4984 14.8344 14.4864 14.84 14.4765 14.8498C14.4669 14.8594 14.4631 14.869 14.4622 14.8773C14.3843 15.5496 14.3843 16.2288 14.4622 16.9011C14.4631 16.9094 14.4669 16.9191 14.4765 16.9286C14.4864 16.9384 14.4984 16.944 14.5105 16.9454C15.1635 17.019 15.84 17.019 16.493 16.9454C16.5051 16.944 16.5171 16.9384 16.527 16.9286C16.5366 16.9191 16.5404 16.9094 16.5413 16.9011C16.6192 16.2288 16.6192 15.5496 16.5413 14.8773C16.5404 14.869 16.5366 14.8594 16.527 14.8498C16.5171 14.84 16.5051 14.8344 16.493 14.833ZM14.3557 13.4349C15.1116 13.3497 15.8919 13.3497 16.6478 13.4349C17.3097 13.5096 17.8471 14.0352 17.9258 14.7138C18.0163 15.4948 18.0163 16.2837 17.9258 17.0646C17.8471 17.7432 17.3097 18.2688 16.6478 18.3435C15.8919 18.4287 15.1116 18.4287 14.3557 18.3435C13.6937 18.2688 13.1563 17.7432 13.0777 17.0646C12.9872 16.2837 12.9872 15.4948 13.0777 14.7138C13.1563 14.0352 13.6937 13.5096 14.3557 13.4349Z",
91
+ fill: "currentColor"
92
+ }
93
+ )
94
+ ]
95
+ }
96
+ );
97
+ }
98
+ export {
99
+ o as CompactGridIcon
100
+ };
@@ -0,0 +1,27 @@
1
+ import { jsxs as l, jsx as C } from "react/jsx-runtime";
2
+ function t(i) {
3
+ return /* @__PURE__ */ l(
4
+ "svg",
5
+ {
6
+ width: "18",
7
+ height: "18",
8
+ viewBox: "0 0 18 18",
9
+ fill: "none",
10
+ xmlns: "http://www.w3.org/2000/svg",
11
+ ...i,
12
+ children: [
13
+ /* @__PURE__ */ C("g", { clipPath: "url(#clip0_5_92)", children: /* @__PURE__ */ C(
14
+ "path",
15
+ {
16
+ d: "M8.99938 -0.00188446C4.03477 -0.00187802 0 4.03853 0 9.00251C0 13.9665 4.03477 18.0019 8.99938 18.0019C13.964 18.0019 18 13.9665 18 9.00251C18 4.03853 13.964 -0.00189088 8.99938 -0.00188446V-0.00188446ZM8.35889 1.31675V1.9296C8.35954 2.28324 8.64573 2.56996 8.99938 2.57134C9.35498 2.57262 9.64419 2.28521 9.64488 1.9296V1.31675C13.3964 1.6269 16.375 4.60545 16.6851 8.35701H16.071C15.7159 8.35829 15.4292 8.6474 15.4305 9.00251C15.4318 9.35567 15.7179 9.64162 16.071 9.64299H16.6851C16.3772 13.3965 13.3981 16.3734 9.64488 16.6833V16.0754C9.64616 15.7183 9.35645 15.4285 8.99938 15.4299C8.64426 15.4312 8.3575 15.7203 8.35889 16.0754V16.6833C4.60374 16.3756 1.62629 13.3981 1.31863 9.64299H1.92647C2.28159 9.64428 2.57058 9.35763 2.57197 9.00251C2.57325 8.64543 2.28355 8.35561 1.92647 8.35701H1.31863C1.62851 4.60379 4.6054 1.62467 8.35889 1.31675V1.31675ZM11.9694 5.18979L7.38311 7.02081C7.21736 7.08673 7.08609 7.21801 7.02016 7.38375L5.18915 11.9701C4.97822 12.4991 5.50278 13.0237 6.03181 12.8128L10.6156 10.978C10.7807 10.912 10.9114 10.7813 10.9773 10.6163L12.8121 6.03246C12.9067 5.79557 12.8536 5.52527 12.6765 5.34172C12.401 5.07495 12.1064 5.1433 11.9694 5.18979V5.18979ZM11.0414 6.95674L9.87344 9.87783L6.95235 11.0458L8.12028 8.12468L11.0414 6.95674Z",
17
+ fill: "currentColor"
18
+ }
19
+ ) }),
20
+ /* @__PURE__ */ C("defs", { children: /* @__PURE__ */ C("clipPath", { id: "clip0_5_92", children: /* @__PURE__ */ C("rect", { width: "18", height: "18", fill: "currentColor" }) }) })
21
+ ]
22
+ }
23
+ );
24
+ }
25
+ export {
26
+ t as CompassIcon
27
+ };
@@ -0,0 +1,20 @@
1
+ import { jsxs as o, jsx as C } from "react/jsx-runtime";
2
+ const l = (r) => /* @__PURE__ */ o("svg", { width: "12", height: "12", viewBox: "0 0 12 12", fill: "none", ...r, children: [
3
+ /* @__PURE__ */ C(
4
+ "path",
5
+ {
6
+ d: "M4.00501 0C1.79311 0 0 1.79311 0 4.00501V8.95512C0 9.24363 0.233883 9.47751 0.522393 9.47751C0.810903 9.47751 1.04479 9.24363 1.04479 8.95512V4.00501C1.04479 2.37013 2.37013 1.04479 4.00501 1.04479H8.88964C9.17815 1.04479 9.41203 0.810903 9.41203 0.522393C9.41203 0.233883 9.17815 0 8.88964 0H4.00501Z",
7
+ fill: "currentColor"
8
+ }
9
+ ),
10
+ /* @__PURE__ */ C(
11
+ "path",
12
+ {
13
+ d: "M10.5541 2.46797C8.29672 2.21567 5.98205 2.21567 3.72465 2.46797C3.08156 2.53984 2.56479 3.04593 2.48899 3.694C2.22126 5.98311 2.22126 8.29563 2.48899 10.5847C2.56479 11.2328 3.08156 11.7389 3.72465 11.8108C5.98205 12.0631 8.29672 12.0631 10.5541 11.8108C11.1972 11.7389 11.714 11.2328 11.7898 10.5847C12.0575 8.29563 12.0575 5.98311 11.7898 3.694C11.714 3.04593 11.1972 2.53984 10.5541 2.46797ZM3.8407 3.50629C6.02097 3.26261 8.2578 3.26261 10.4381 3.50629C10.6034 3.52476 10.7334 3.65551 10.7521 3.81537C11.0104 6.02384 11.0104 8.2549 10.7521 10.4634C10.7334 10.6232 10.6034 10.754 10.4381 10.7725C8.2578 11.0161 6.02097 11.0161 3.8407 10.7725C3.67537 10.754 3.5454 10.6232 3.5267 10.4634C3.2684 8.2549 3.2684 6.02384 3.5267 3.81537C3.5454 3.65551 3.67537 3.52476 3.8407 3.50629Z",
14
+ fill: "currentColor"
15
+ }
16
+ )
17
+ ] });
18
+ export {
19
+ l as Copy
20
+ };
@@ -0,0 +1,35 @@
1
+ import { jsxs as e, jsx as C } from "react/jsx-runtime";
2
+ function r(l) {
3
+ return /* @__PURE__ */ e(
4
+ "svg",
5
+ {
6
+ width: "17",
7
+ height: "18",
8
+ viewBox: "0 0 17 18",
9
+ fill: "none",
10
+ xmlns: "http://www.w3.org/2000/svg",
11
+ ...l,
12
+ children: [
13
+ /* @__PURE__ */ C(
14
+ "path",
15
+ {
16
+ d: "M11.4724 4.11626C11.7515 4.40699 11.742 4.86894 11.4513 5.14804L8.41077 8.06696C8.12839 8.33804 7.68242 8.33804 7.40005 8.06696L5.57572 6.31561C5.28499 6.0365 5.27556 5.57456 5.55466 5.28383C5.83377 4.9931 6.29571 4.98367 6.58644 5.26277L7.90541 6.52898L10.4406 4.0952C10.7313 3.8161 11.1933 3.82553 11.4724 4.11626Z",
17
+ fill: "currentColor"
18
+ }
19
+ ),
20
+ /* @__PURE__ */ C(
21
+ "path",
22
+ {
23
+ fillRule: "evenodd",
24
+ clipRule: "evenodd",
25
+ d: "M0 4.62162C0 2.06917 2.06917 0 4.62162 0H14.3514C15.2917 0 16.0541 0.762326 16.0541 1.7027V16.2973C16.0541 17.2377 15.2917 18 14.3514 18H3.64865C1.63356 18 0 16.3664 0 14.3514V4.62162ZM1.45946 11.4322C2.06927 10.9741 2.82726 10.7027 3.64865 10.7027H14.5946V1.7027C14.5946 1.56836 14.4857 1.45946 14.3514 1.45946H4.62162C2.87521 1.45946 1.45946 2.87521 1.45946 4.62162V11.4322ZM1.45946 14.3514C1.45946 15.5604 2.43959 16.5405 3.64865 16.5405H14.3514C14.4857 16.5405 14.5946 16.4316 14.5946 16.2973V12.1622H3.64865C2.43959 12.1622 1.45946 13.1423 1.45946 14.3514Z",
26
+ fill: "currentColor"
27
+ }
28
+ )
29
+ ]
30
+ }
31
+ );
32
+ }
33
+ export {
34
+ r as DiskIcon
35
+ };
@@ -0,0 +1,25 @@
1
+ import { jsx as o } from "react/jsx-runtime";
2
+ function t(r) {
3
+ return /* @__PURE__ */ o(
4
+ "svg",
5
+ {
6
+ xmlns: "http://www.w3.org/2000/svg",
7
+ fill: "none",
8
+ viewBox: "0 0 24 24",
9
+ strokeWidth: 1.5,
10
+ stroke: "currentColor",
11
+ ...r,
12
+ children: /* @__PURE__ */ o(
13
+ "path",
14
+ {
15
+ strokeLinecap: "round",
16
+ strokeLinejoin: "round",
17
+ d: "M19.5 14.25v-2.625a3.375 3.375 0 00-3.375-3.375h-1.5A1.125 1.125 0 0113.5 7.125v-1.5a3.375 3.375 0 00-3.375-3.375H8.25m0 12.75h7.5m-7.5 3H12M10.5 2.25H5.625c-.621 0-1.125.504-1.125 1.125v17.25c0 .621.504 1.125 1.125 1.125h12.75c.621 0 1.125-.504 1.125-1.125V11.25a9 9 0 00-9-9z"
18
+ }
19
+ )
20
+ }
21
+ );
22
+ }
23
+ export {
24
+ t as DocumentIcon
25
+ };
@@ -0,0 +1,33 @@
1
+ import { jsxs as i, jsx as t } from "react/jsx-runtime";
2
+ function l(C) {
3
+ return /* @__PURE__ */ i(
4
+ "svg",
5
+ {
6
+ width: "24",
7
+ height: "24",
8
+ viewBox: "0 0 24 24",
9
+ fill: "none",
10
+ xmlns: "http://www.w3.org/2000/svg",
11
+ ...C,
12
+ children: [
13
+ /* @__PURE__ */ t(
14
+ "path",
15
+ {
16
+ d: "M12.2878 7.9082H10.5732V11.2885H13.2707V12.7038H10.5732V16.0838H12.3718C12.8339 16.0838 16.1657 16.136 16.1606 12.1512C16.1554 8.16632 12.9291 7.9082 12.2878 7.9082Z",
17
+ fill: "#C2A633"
18
+ }
19
+ ),
20
+ /* @__PURE__ */ t(
21
+ "path",
22
+ {
23
+ d: "M12 0C5.37252 0 0 5.37252 0 12C0 18.6275 5.37252 24 12 24C18.6275 24 24 18.6275 24 12C24 5.37252 18.6275 0 12 0ZM12.4715 18.4812H8.12568V12.7037H6.59376V11.2884H8.12556V5.51052H11.8554C12.7378 5.51052 18.5821 5.32728 18.5821 12.1043C18.5821 18.9934 12.4716 18.4812 12.4716 18.4812H12.4715Z",
24
+ fill: "#C2A633"
25
+ }
26
+ )
27
+ ]
28
+ }
29
+ );
30
+ }
31
+ export {
32
+ l as Doge
33
+ };
@@ -0,0 +1,38 @@
1
+ import { jsxs as C, jsx as r } from "react/jsx-runtime";
2
+ function t(o) {
3
+ return /* @__PURE__ */ C(
4
+ "svg",
5
+ {
6
+ viewBox: "0 0 16 3",
7
+ fill: "none",
8
+ xmlns: "http://www.w3.org/2000/svg",
9
+ ...o,
10
+ children: [
11
+ /* @__PURE__ */ r(
12
+ "path",
13
+ {
14
+ d: "M1.6 0C0.716344 0 0 0.671573 0 1.5C0 2.32843 0.716344 3 1.6 3C2.48366 3 3.2 2.32843 3.2 1.5C3.2 0.671573 2.48366 0 1.6 0Z",
15
+ fill: "currentColor"
16
+ }
17
+ ),
18
+ /* @__PURE__ */ r(
19
+ "path",
20
+ {
21
+ d: "M6.4 1.5C6.4 0.671573 7.11634 0 8 0C8.88366 0 9.6 0.671573 9.6 1.5C9.6 2.32843 8.88366 3 8 3C7.11634 3 6.4 2.32843 6.4 1.5Z",
22
+ fill: "currentColor"
23
+ }
24
+ ),
25
+ /* @__PURE__ */ r(
26
+ "path",
27
+ {
28
+ d: "M12.8 1.5C12.8 0.671573 13.5163 0 14.4 0C15.2837 0 16 0.671573 16 1.5C16 2.32843 15.2837 3 14.4 3C13.5163 3 12.8 2.32843 12.8 1.5Z",
29
+ fill: "currentColor"
30
+ }
31
+ )
32
+ ]
33
+ }
34
+ );
35
+ }
36
+ export {
37
+ t as DotsIcon
38
+ };