@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,40 @@
1
+ import { jsxs as l, jsx as C } from "react/jsx-runtime";
2
+ function t(r) {
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
+ ...r,
12
+ children: [
13
+ /* @__PURE__ */ C(
14
+ "path",
15
+ {
16
+ d: "M9 0C4.0374 0 0 4.03745 0 9.00005C0 13.9627 4.0374 18 9 18C13.9626 18 18 13.9627 18 9.00005C18 4.03745 13.9626 0 9 0ZM9 16.3636C4.93964 16.3636 1.63636 13.0604 1.63636 9.00005C1.63636 4.93975 4.93964 1.63636 9 1.63636C13.0604 1.63636 16.3636 4.93975 16.3636 9.00005C16.3636 13.0604 13.0603 16.3636 9 16.3636Z",
17
+ fill: "currentColor"
18
+ }
19
+ ),
20
+ /* @__PURE__ */ C(
21
+ "path",
22
+ {
23
+ d: "M11.1037 12.8034C10.9012 12.8822 10.2599 13.0697 9.96743 12.9028C9.92707 12.8794 9.89301 12.8465 9.86819 12.807C9.84336 12.7674 9.82852 12.7225 9.82494 12.6759C9.73306 12.0909 10.1699 10.7391 10.4062 10.0134C10.4849 9.77156 10.5412 9.59531 10.5637 9.48843C10.7343 8.69906 10.6499 8.09531 10.3124 7.69406C9.90639 7.2113 9.1859 7.11738 8.59493 7.20468C7.99398 7.28478 7.40672 7.44626 6.84931 7.68468C6.82341 7.69721 6.80078 7.71559 6.78321 7.73837C6.76563 7.76115 6.7536 7.7877 6.74806 7.81593L6.62619 8.39906C6.6196 8.43185 6.62186 8.46581 6.63274 8.49744C6.64361 8.52907 6.6627 8.55724 6.68806 8.57906C6.71374 8.60039 6.74451 8.61471 6.77737 8.62063C6.81022 8.62654 6.84405 8.62385 6.87556 8.61281C7.09869 8.53031 7.79619 8.34468 8.04556 8.57343C8.18619 8.70281 8.14681 8.97656 8.09057 9.18093C8.03244 9.39468 7.96306 9.62531 7.89182 9.86718C7.43057 11.4366 6.90557 13.2159 7.73807 13.7709C8.13195 14.0717 8.61136 14.2391 9.10682 14.2491C9.59432 14.2491 10.1962 14.0953 11.0624 13.7447C11.0885 13.7345 11.112 13.7186 11.1312 13.6982C11.1503 13.6778 11.1646 13.6533 11.1731 13.6266L11.3512 13.0322C11.3613 12.9983 11.3617 12.9623 11.3524 12.9281C11.3432 12.894 11.3245 12.8632 11.2987 12.8391C11.2728 12.8154 11.2408 12.7995 11.2063 12.7932C11.1718 12.7869 11.1362 12.7904 11.1037 12.8034V12.8034Z",
24
+ fill: "currentColor"
25
+ }
26
+ ),
27
+ /* @__PURE__ */ C(
28
+ "path",
29
+ {
30
+ d: "M10.0199 3.75093C9.75171 3.75112 9.48956 3.83081 9.26662 3.97994C9.04368 4.12908 8.86995 4.34095 8.76739 4.58879C8.66483 4.83663 8.63805 5.10932 8.69042 5.37238C8.74279 5.63544 8.87197 5.87707 9.06164 6.06673C9.2513 6.25639 9.49293 6.38557 9.75599 6.43794C10.019 6.49032 10.2917 6.46353 10.5396 6.36097C10.7874 6.25841 10.9993 6.08469 11.1484 5.86174C11.2976 5.6388 11.3772 5.37665 11.3774 5.10843C11.3773 4.74844 11.2343 4.40322 10.9797 4.14867C10.7251 3.89411 10.3799 3.75105 10.0199 3.75093V3.75093Z",
31
+ fill: "currentColor"
32
+ }
33
+ )
34
+ ]
35
+ }
36
+ );
37
+ }
38
+ export {
39
+ t as InfoCircle
40
+ };
@@ -0,0 +1,40 @@
1
+ import { jsxs as o, jsx as C } from "react/jsx-runtime";
2
+ function e(l) {
3
+ return /* @__PURE__ */ o(
4
+ "svg",
5
+ {
6
+ viewBox: "0 0 12 12",
7
+ fill: "none",
8
+ xmlns: "http://www.w3.org/2000/svg",
9
+ ...l,
10
+ children: [
11
+ /* @__PURE__ */ C(
12
+ "path",
13
+ {
14
+ d: "M6 5.14286C6.28403 5.14286 6.51429 5.37311 6.51429 5.65714V9.08571C6.51429 9.36975 6.28403 9.6 6 9.6C5.71597 9.6 5.48571 9.36975 5.48571 9.08571V5.65714C5.48571 5.37311 5.71597 5.14286 6 5.14286Z",
15
+ fill: "currentColor"
16
+ }
17
+ ),
18
+ /* @__PURE__ */ C(
19
+ "path",
20
+ {
21
+ d: "M6 3.94286C6.37871 3.94286 6.68571 3.63585 6.68571 3.25714C6.68571 2.87843 6.37871 2.57143 6 2.57143C5.62129 2.57143 5.31429 2.87843 5.31429 3.25714C5.31429 3.63585 5.62129 3.94286 6 3.94286Z",
22
+ fill: "currentColor"
23
+ }
24
+ ),
25
+ /* @__PURE__ */ C(
26
+ "path",
27
+ {
28
+ fillRule: "evenodd",
29
+ clipRule: "evenodd",
30
+ d: "M0 6C0 2.68629 2.68629 0 6 0C9.31371 0 12 2.68629 12 6C12 9.31371 9.31371 12 6 12C2.68629 12 0 9.31371 0 6ZM6 1.02857C3.25436 1.02857 1.02857 3.25436 1.02857 6C1.02857 8.74564 3.25436 10.9714 6 10.9714C8.74564 10.9714 10.9714 8.74564 10.9714 6C10.9714 3.25436 8.74564 1.02857 6 1.02857Z",
31
+ fill: "currentColor"
32
+ }
33
+ )
34
+ ]
35
+ }
36
+ );
37
+ }
38
+ export {
39
+ e as InfoIcon
40
+ };
@@ -0,0 +1,40 @@
1
+ import { jsxs as t, jsx as C } from "react/jsx-runtime";
2
+ function o(r) {
3
+ return /* @__PURE__ */ t(
4
+ "svg",
5
+ {
6
+ xmlns: "http://www.w3.org/2000/svg",
7
+ width: "25",
8
+ height: "25",
9
+ viewBox: "0 0 25 25",
10
+ fill: "none",
11
+ ...r,
12
+ children: [
13
+ /* @__PURE__ */ C(
14
+ "path",
15
+ {
16
+ d: "M7.03125 2.34375C6.40965 2.34375 5.81351 2.59068 5.37397 3.03022C4.93443 3.46976 4.6875 4.0659 4.6875 4.6875V9.375C4.6875 9.9966 4.93443 10.5927 5.37397 11.0323C5.81351 11.4718 6.40965 11.7188 7.03125 11.7188H15.625C16.2466 11.7188 16.8427 11.4718 17.2823 11.0323C17.7218 10.5927 17.9688 9.9966 17.9688 9.375V4.6875C17.9688 4.0659 17.7218 3.46976 17.2823 3.03022C16.8427 2.59068 16.2466 2.34375 15.625 2.34375H7.03125ZM16.4062 4.6875V9.375C16.4062 9.5822 16.3239 9.78091 16.1774 9.92743C16.0309 10.0739 15.8322 10.1562 15.625 10.1562H7.03125C6.82405 10.1562 6.62534 10.0739 6.47882 9.92743C6.33231 9.78091 6.25 9.5822 6.25 9.375V4.6875C6.25 4.4803 6.33231 4.28159 6.47882 4.13507C6.62534 3.98856 6.82405 3.90625 7.03125 3.90625H15.625C15.8322 3.90625 16.0309 3.98856 16.1774 4.13507C16.3239 4.28159 16.4062 4.4803 16.4062 4.6875Z",
17
+ fill: "currentColor"
18
+ }
19
+ ),
20
+ /* @__PURE__ */ C(
21
+ "path",
22
+ {
23
+ d: "M21.875 13.2812H7.03125C6.40965 13.2813 5.81351 13.5282 5.37397 13.9677C4.93443 14.4073 4.6875 15.0034 4.6875 15.625V20.3125C4.6875 20.9341 4.93443 21.5302 5.37397 21.9698C5.81351 22.4093 6.40965 22.6562 7.03125 22.6562H21.875C22.4966 22.6562 23.0927 22.4093 23.5323 21.9698C23.9718 21.5302 24.2188 20.9341 24.2188 20.3125V15.625C24.2188 15.0034 23.9718 14.4073 23.5323 13.9677C23.0927 13.5282 22.4966 13.2813 21.875 13.2812ZM22.6562 20.3125C22.6562 20.5197 22.5739 20.7184 22.4274 20.8649C22.2809 21.0114 22.0822 21.0938 21.875 21.0938H7.03125C6.82405 21.0938 6.62534 21.0114 6.47882 20.8649C6.33231 20.7184 6.25 20.5197 6.25 20.3125V15.625C6.25 15.4178 6.33231 15.2191 6.47882 15.0726C6.62534 14.9261 6.82405 14.8438 7.03125 14.8438H21.875C22.0822 14.8438 22.2809 14.9261 22.4274 15.0726C22.5739 15.2191 22.6562 15.4178 22.6562 15.625V20.3125Z",
24
+ fill: "currentColor"
25
+ }
26
+ ),
27
+ /* @__PURE__ */ C(
28
+ "path",
29
+ {
30
+ d: "M1.5625 23.4375C1.5625 23.6447 1.64481 23.8434 1.79132 23.9899C1.93784 24.1364 2.13655 24.2188 2.34375 24.2188C2.55095 24.2188 2.74966 24.1364 2.89618 23.9899C3.04269 23.8434 3.125 23.6447 3.125 23.4375V1.5625C3.125 1.3553 3.04269 1.15659 2.89618 1.01007C2.74966 0.86356 2.55095 0.78125 2.34375 0.78125C2.13655 0.78125 1.93784 0.86356 1.79132 1.01007C1.64481 1.15659 1.5625 1.3553 1.5625 1.5625V23.4375Z",
31
+ fill: "currentColor"
32
+ }
33
+ )
34
+ ]
35
+ }
36
+ );
37
+ }
38
+ export {
39
+ o as LeftAlign
40
+ };
@@ -0,0 +1,22 @@
1
+ import { jsx as c } from "react/jsx-runtime";
2
+ function a(n) {
3
+ return /* @__PURE__ */ c(
4
+ "svg",
5
+ {
6
+ xmlns: "http://www.w3.org/2000/svg",
7
+ fill: "none",
8
+ viewBox: "0 0 20 20",
9
+ ...n,
10
+ children: /* @__PURE__ */ c(
11
+ "path",
12
+ {
13
+ fill: "#4B5563",
14
+ d: "M7.864 18h4.273c.237 0 .43-.193.43-.43V2.43a.431.431 0 0 0-.43-.43H7.864a.431.431 0 0 0-.43.43v15.14c0 .237.193.43.43.43ZM18.001 7.503a.431.431 0 0 0-.43-.43h-3.907a.431.431 0 0 0-.43.43V17.57c0 .237.194.43.43.43h3.907c.237 0 .43-.193.43-.43V7.503ZM2.43 18h3.907c.236 0 .43-.193.43-.43V10.4a.431.431 0 0 0-.43-.43H2.43a.431.431 0 0 0-.43.43v7.17c0 .237.193.43.43.43Z"
15
+ }
16
+ )
17
+ }
18
+ );
19
+ }
20
+ export {
21
+ a as LevelIcon
22
+ };
@@ -0,0 +1,71 @@
1
+ import { jsxs as l, jsx as C } from "react/jsx-runtime";
2
+ const t = (r) => /* @__PURE__ */ l(
3
+ "svg",
4
+ {
5
+ viewBox: "0 0 18 18",
6
+ fill: "none",
7
+ xmlns: "http://www.w3.org/2000/svg",
8
+ ...r,
9
+ children: [
10
+ /* @__PURE__ */ C(
11
+ "path",
12
+ {
13
+ d: "M10.1933 8.36944C10.0493 8.36944 9.90532 8.3146 9.79563 8.20463C8.91842 7.32741 7.49108 7.32712 6.61359 8.20463C6.39421 8.42428 6.03759 8.42428 5.81821 8.20463C5.59856 7.98497 5.59856 7.62891 5.81821 7.40925C7.13418 6.093 9.27532 6.09328 10.591 7.40925C10.8107 7.62891 10.8107 7.98497 10.591 8.20463C10.4813 8.3146 10.337 8.36944 10.1933 8.36944Z",
14
+ fill: "currentColor"
15
+ }
16
+ ),
17
+ /* @__PURE__ */ C(
18
+ "path",
19
+ {
20
+ d: "M9.79564 11.5782C8.93137 11.5782 8.06709 11.2492 7.40925 10.5913C7.18959 10.3717 7.18959 10.0156 7.40925 9.79594C7.62862 9.57628 7.98525 9.57628 8.20462 9.79594C9.08183 10.6732 10.5092 10.6734 11.3867 9.79594C11.606 9.57628 11.9627 9.57628 12.182 9.79594C12.4017 10.0156 12.4017 10.3717 12.182 10.5913C11.5239 11.2492 10.6596 11.5782 9.79564 11.5782Z",
21
+ fill: "currentColor"
22
+ }
23
+ ),
24
+ /* @__PURE__ */ C(
25
+ "path",
26
+ {
27
+ d: "M11.7841 10.7558C11.6401 10.7558 11.4961 10.701 11.3864 10.591C11.1667 10.3714 11.1667 10.0153 11.3864 9.79564L14.5285 6.65353C14.7479 6.43387 15.1045 6.43387 15.3239 6.65353C15.5436 6.87318 15.5436 7.22924 15.3239 7.4489L12.1818 10.591C12.0721 10.701 11.9281 10.7558 11.7841 10.7558Z",
28
+ fill: "currentColor"
29
+ }
30
+ ),
31
+ /* @__PURE__ */ C(
32
+ "path",
33
+ {
34
+ d: "M7.05121 15.4887C6.90721 15.4887 6.76321 15.4339 6.65353 15.3239C6.43387 15.1043 6.43387 14.7482 6.65353 14.5285L8.40993 12.7721C8.6293 12.5524 8.98592 12.5524 9.2053 12.7721C9.42495 12.9918 9.42495 13.3478 9.2053 13.5675L7.4489 15.3239C7.33921 15.4339 7.19521 15.4887 7.05121 15.4887Z",
35
+ fill: "currentColor"
36
+ }
37
+ ),
38
+ /* @__PURE__ */ C(
39
+ "path",
40
+ {
41
+ d: "M3.07378 11.5113C2.92978 11.5113 2.78578 11.4564 2.67609 11.3465C2.45644 11.1268 2.45644 10.7707 2.67609 10.5511L5.81822 7.40925C6.03788 7.18959 6.39422 7.18959 6.61359 7.40925C6.83325 7.6289 6.83325 7.98497 6.61359 8.20462L3.47147 11.3465C3.3615 11.4561 3.2175 11.5113 3.07378 11.5113Z",
42
+ fill: "currentColor"
43
+ }
44
+ ),
45
+ /* @__PURE__ */ C(
46
+ "path",
47
+ {
48
+ d: "M9.19237 5.39297C9.04837 5.39297 8.90465 5.33813 8.79469 5.22844C8.57503 5.00878 8.57503 4.65272 8.79469 4.43278L10.5511 2.67609C10.7707 2.45644 11.1268 2.45644 11.3467 2.67609C11.5664 2.89575 11.5664 3.25181 11.3467 3.47175L9.59034 5.22844C9.48037 5.33784 9.33609 5.39297 9.19237 5.39297Z",
49
+ fill: "currentColor"
50
+ }
51
+ ),
52
+ /* @__PURE__ */ C(
53
+ "path",
54
+ {
55
+ d: "M5.0625 16.2942C4.19259 16.2942 3.32269 15.9708 2.67609 15.3239C1.38234 14.0302 1.38234 11.8446 2.67609 10.5508C2.89547 10.3312 3.25209 10.3312 3.47147 10.5508C3.69112 10.7705 3.69112 11.1265 3.47147 11.3462C2.60915 12.2085 2.60915 13.6659 3.47147 14.5282C4.33378 15.3906 5.79122 15.3906 6.65353 14.5282C6.8729 14.3086 7.22953 14.3086 7.4489 14.5282C7.66856 14.7479 7.66856 15.104 7.4489 15.3236C6.80231 15.9708 5.9324 16.2942 5.0625 16.2942Z",
56
+ fill: "currentColor"
57
+ }
58
+ ),
59
+ /* @__PURE__ */ C(
60
+ "path",
61
+ {
62
+ d: "M14.9262 7.61372C14.7822 7.61372 14.6382 7.55887 14.5285 7.4489C14.3089 7.22925 14.3089 6.87319 14.5285 6.65353C15.3909 5.79122 15.3909 4.33378 14.5285 3.47147C13.6662 2.60915 12.2088 2.60915 11.3465 3.47147C11.1271 3.69112 10.7705 3.69112 10.5511 3.47147C10.3314 3.25181 10.3314 2.89575 10.5511 2.67609C11.8448 1.38234 14.0305 1.38234 15.3242 2.67609C16.618 3.96984 16.618 6.15544 15.3242 7.44919C15.2142 7.55887 15.0702 7.61372 14.9262 7.61372Z",
63
+ fill: "currentColor"
64
+ }
65
+ )
66
+ ]
67
+ }
68
+ );
69
+ export {
70
+ t as LinkIcon
71
+ };
@@ -0,0 +1,29 @@
1
+ import { jsxs as i, jsx as C } from "react/jsx-runtime";
2
+ function l(r) {
3
+ return /* @__PURE__ */ i(
4
+ "svg",
5
+ {
6
+ width: "18",
7
+ height: "18",
8
+ viewBox: "0 0 18 18",
9
+ fill: "none",
10
+ ...r,
11
+ xmlns: "http://www.w3.org/2000/svg",
12
+ children: [
13
+ /* @__PURE__ */ C("g", { clipPath: "url(#clip0_1665_103)", children: /* @__PURE__ */ C(
14
+ "path",
15
+ {
16
+ d: "M16.2596 2.25C15.3 2.25 14.5193 3.02016 14.5193 3.96689C14.5193 4.48775 14.7559 4.95482 15.1283 5.26994L11.9154 9.58634C11.7336 9.52256 11.538 9.48757 11.3343 9.48757C11.1679 9.48757 11.0072 9.51122 10.8547 9.55436L8.1092 6.64957C8.21477 6.42826 8.27411 6.18142 8.27411 5.92106C8.27411 4.97437 7.4934 4.20417 6.53378 4.20417C5.57415 4.20417 4.79344 4.97433 4.79344 5.92106C4.79344 6.40766 5.00005 6.84729 5.33084 7.15999L1.98703 12.3338C1.90634 12.3224 1.82404 12.3162 1.74027 12.3162C0.780749 12.3162 0 13.0864 0 14.0331C0 14.9798 0.780748 15.75 1.74034 15.75C2.69992 15.75 3.48067 14.9798 3.48067 14.0331C3.48067 13.5591 3.28492 13.1294 2.96908 12.8184L6.32347 7.62494C6.39248 7.63316 6.46259 7.63795 6.53378 7.63795C6.8293 7.63795 7.10777 7.5647 7.35176 7.43596L9.94161 10.176C9.72343 10.4629 9.59395 10.819 9.59395 11.2045C9.59395 12.1511 10.3747 12.9214 11.3343 12.9214C12.2939 12.9214 13.0746 12.1512 13.0746 11.2045C13.0746 10.8555 12.9683 10.5307 12.7863 10.2595L16.1582 5.68069C16.1917 5.6826 16.2256 5.68384 16.2597 5.68384C17.2193 5.68384 18 4.91368 18 3.96696C18 3.02023 17.2193 2.25 16.2596 2.25ZM1.74034 14.6672C1.38589 14.6672 1.09758 14.3828 1.09758 14.0331C1.09758 13.6834 1.38593 13.399 1.74034 13.399C2.09475 13.399 2.3831 13.6834 2.3831 14.0331C2.3831 14.3828 2.09478 14.6672 1.74034 14.6672ZM6.53378 6.55516C6.17933 6.55516 5.89102 6.27073 5.89102 5.92106C5.89102 5.57139 6.17937 5.28696 6.53378 5.28696C6.88819 5.28696 7.17654 5.57139 7.17654 5.92106C7.17654 6.27073 6.88819 6.55516 6.53378 6.55516ZM11.3343 11.8386C10.9798 11.8386 10.6915 11.5541 10.6915 11.2044C10.6915 10.8548 10.9799 10.5703 11.3343 10.5703C11.6887 10.5703 11.977 10.8548 11.977 11.2044C11.977 11.5541 11.6887 11.8386 11.3343 11.8386ZM16.2596 4.60102C15.9052 4.60102 15.6169 4.31659 15.6169 3.96692C15.6169 3.61725 15.9052 3.33282 16.2596 3.33282C16.614 3.33282 16.9024 3.61722 16.9024 3.96689C16.9024 4.31656 16.614 4.60102 16.2596 4.60102Z",
17
+ fill: "currentColor",
18
+ stroke: "currentColor",
19
+ strokeWidth: "0.2"
20
+ }
21
+ ) }),
22
+ /* @__PURE__ */ C("defs", { children: /* @__PURE__ */ C("clipPath", { id: "clip0_1665_103", children: /* @__PURE__ */ C("rect", { width: "18", height: "18", fill: "currentColor" }) }) })
23
+ ]
24
+ }
25
+ );
26
+ }
27
+ export {
28
+ l as LivePricing
29
+ };
@@ -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: "M16.5 10.5V6.75a4.5 4.5 0 10-9 0v3.75m-.75 11.25h10.5a2.25 2.25 0 002.25-2.25v-6.75a2.25 2.25 0 00-2.25-2.25H6.75a2.25 2.25 0 00-2.25 2.25v6.75a2.25 2.25 0 002.25 2.25z"
18
+ }
19
+ )
20
+ }
21
+ );
22
+ }
23
+ export {
24
+ t as LockIcon
25
+ };
@@ -0,0 +1,22 @@
1
+ import { jsx as r } from "react/jsx-runtime";
2
+ function n(o) {
3
+ return /* @__PURE__ */ r(
4
+ "svg",
5
+ {
6
+ viewBox: "0 0 18 10",
7
+ fill: "none",
8
+ xmlns: "http://www.w3.org/2000/svg",
9
+ ...o,
10
+ children: /* @__PURE__ */ r(
11
+ "path",
12
+ {
13
+ d: "M5.28033 1.28033C5.57322 0.987437 5.57322 0.512563 5.28033 0.21967C4.98744 -0.0732233 4.51256 -0.0732233 4.21967 0.21967L0.21967 4.21967C0.0732233 4.36612 0 4.55806 0 4.75C0 4.85169 0.0202391 4.94866 0.0569091 5.03709C0.0935089 5.12555 0.147763 5.20842 0.21967 5.28033L4.21967 9.28033C4.51256 9.57322 4.98744 9.57322 5.28033 9.28033C5.57322 8.98744 5.57322 8.51256 5.28033 8.21967L2.56066 5.5H17.25C17.6642 5.5 18 5.16421 18 4.75C18 4.33579 17.6642 4 17.25 4H2.56066L5.28033 1.28033Z",
14
+ fill: "currentColor"
15
+ }
16
+ )
17
+ }
18
+ );
19
+ }
20
+ export {
21
+ n as LongArrowLeft
22
+ };
@@ -0,0 +1,22 @@
1
+ import { jsx as r } from "react/jsx-runtime";
2
+ function n(o) {
3
+ return /* @__PURE__ */ r(
4
+ "svg",
5
+ {
6
+ viewBox: "0 0 18 10",
7
+ fill: "none",
8
+ xmlns: "http://www.w3.org/2000/svg",
9
+ ...o,
10
+ children: /* @__PURE__ */ r(
11
+ "path",
12
+ {
13
+ d: "M12.7197 1.28033C12.4268 0.987437 12.4268 0.512563 12.7197 0.21967C13.0126 -0.0732233 13.4874 -0.0732233 13.7803 0.21967L17.7803 4.21967C17.9268 4.36612 18 4.55806 18 4.75C18 4.85169 17.9798 4.94866 17.9431 5.03709C17.9065 5.12555 17.8522 5.20842 17.7803 5.28033L13.7803 9.28033C13.4874 9.57322 13.0126 9.57322 12.7197 9.28033C12.4268 8.98744 12.4268 8.51256 12.7197 8.21967L15.4393 5.5H0.75C0.335787 5.5 0 5.16421 0 4.75C0 4.33579 0.335787 4 0.75 4H15.4393L12.7197 1.28033Z",
14
+ fill: "currentColor"
15
+ }
16
+ )
17
+ }
18
+ );
19
+ }
20
+ export {
21
+ n as LongArrowRight
22
+ };
@@ -0,0 +1,20 @@
1
+ import { jsx as r } from "react/jsx-runtime";
2
+ const t = (o) => /* @__PURE__ */ r(
3
+ "svg",
4
+ {
5
+ viewBox: "0 0 24 24",
6
+ fill: "none",
7
+ xmlns: "http://www.w3.org/2000/svg",
8
+ ...o,
9
+ children: /* @__PURE__ */ r(
10
+ "path",
11
+ {
12
+ d: "M13.3333 6.41421L16.9596 10.0404C17.3501 10.431 17.9832 10.431 18.3738 10.0404C18.7643 9.64991 18.7643 9.01675 18.3738 8.62623L13.0404 3.29289C12.6499 2.90237 12.0168 2.90237 11.6262 3.29289L6.29289 8.62623C5.90237 9.01675 5.90237 9.64992 6.29289 10.0404C6.68342 10.431 7.31658 10.431 7.70711 10.0404L11.3333 6.41421L11.3333 21C11.3333 21.5523 11.781 22 12.3333 22C12.8856 22 13.3333 21.5523 13.3333 21L13.3333 6.41421Z",
13
+ fill: "currentColor"
14
+ }
15
+ )
16
+ }
17
+ );
18
+ export {
19
+ t as LongArrowUp
20
+ };
@@ -0,0 +1,26 @@
1
+ import { jsx as C } from "react/jsx-runtime";
2
+ function t(o) {
3
+ return /* @__PURE__ */ C(
4
+ "svg",
5
+ {
6
+ width: "34",
7
+ height: "16",
8
+ viewBox: "0 0 34 16",
9
+ fill: "none",
10
+ xmlns: "http://www.w3.org/2000/svg",
11
+ ...o,
12
+ children: /* @__PURE__ */ C(
13
+ "path",
14
+ {
15
+ d: "M14.4371 4.17509L14.2709 4.36186L14.4371 4.17509C13.1745 3.05165 12.0077 2.1981 10.9443 1.62437C9.88249 1.05147 8.90984 0.75 8.04 0.75C4.02007 0.75 0.75 4.02007 0.75 8.04C0.75 12.0599 4.02007 15.33 8.04 15.33C8.90984 15.33 9.88249 15.0285 10.9443 14.4556C12.0077 13.8819 13.1745 13.0283 14.4371 11.9049C15.5089 10.9513 16.4194 10.0073 17 9.37695C17.5806 10.0073 18.4911 10.9513 19.5629 11.9049C20.8255 13.0283 21.9923 13.8819 23.0557 14.4556C24.1175 15.0285 25.0902 15.33 25.96 15.33C29.9799 15.33 33.25 12.0599 33.25 8.04C33.25 4.02007 29.9799 0.75 25.96 0.75C25.0902 0.75 24.1175 1.05147 23.0557 1.62437C21.9923 2.1981 20.8255 3.05165 19.5629 4.17509C18.4911 5.12874 17.5806 6.07275 17 6.70311C16.4194 6.07279 15.5089 5.12879 14.4371 4.17509ZM8.04 13.55C5.00201 13.55 2.53 11.078 2.53 8.04C2.53 5.00201 5.00201 2.53 8.04 2.53C8.59623 2.53 9.2609 2.74866 9.98771 3.1305C10.7103 3.51015 11.4726 4.03936 12.2181 4.63336C13.6248 5.75414 14.9525 7.0898 15.8148 8.04017C14.9529 8.99058 13.6258 10.3261 12.2193 11.4468C11.4739 12.0408 10.7117 12.5699 9.98891 12.9495C9.26195 13.3313 8.5969 13.55 8.04 13.55ZM25.96 13.55C25.4038 13.55 24.7391 13.3313 24.0123 12.9495C23.2897 12.5699 22.5274 12.0406 21.7819 11.4466C20.3752 10.3259 19.0475 8.9902 18.1852 8.03982C19.0471 7.08942 20.3742 5.75386 21.7806 4.63318C22.5261 4.03923 23.2883 3.51006 24.0111 3.13046C24.738 2.74867 25.4031 2.53 25.96 2.53C28.998 2.53 31.47 5.00201 31.47 8.04C31.47 11.078 28.998 13.55 25.96 13.55Z",
16
+ fill: "currentColor",
17
+ stroke: "currentColor",
18
+ strokeWidth: "0.5"
19
+ }
20
+ )
21
+ }
22
+ );
23
+ }
24
+ export {
25
+ t as LoopIcon
26
+ };
@@ -0,0 +1,24 @@
1
+ import { jsx as e } from "react/jsx-runtime";
2
+ function o(l) {
3
+ return /* @__PURE__ */ e(
4
+ "svg",
5
+ {
6
+ viewBox: "0 0 20 20",
7
+ fill: "none",
8
+ xmlns: "http://www.w3.org/2000/svg",
9
+ ...l,
10
+ children: /* @__PURE__ */ e(
11
+ "path",
12
+ {
13
+ fillRule: "evenodd",
14
+ clipRule: "evenodd",
15
+ d: "M2 10C2 8.94943 2.20693 7.90914 2.60896 6.93853C3.011 5.96793 3.60028 5.08601 4.34315 4.34315C5.08601 3.60028 5.96793 3.011 6.93853 2.60896C7.90914 2.20693 8.94943 2 10 2C11.0506 2 12.0909 2.20693 13.0615 2.60896C14.0321 3.011 14.914 3.60028 15.6569 4.34315C16.3997 5.08601 16.989 5.96793 17.391 6.93853C17.7931 7.90914 18 8.94943 18 10C18 12.1217 17.1571 14.1566 15.6569 15.6569C14.1566 17.1571 12.1217 18 10 18C7.87827 18 5.84344 17.1571 4.34315 15.6569C2.84285 14.1566 2 12.1217 2 10ZM9.94133 13.1111H8.22222V6.88889H9.94133L13.5556 10L9.94133 13.1111Z",
16
+ fill: "currentColor"
17
+ }
18
+ )
19
+ }
20
+ );
21
+ }
22
+ export {
23
+ o as MediaPlayIcon
24
+ };
@@ -0,0 +1,21 @@
1
+ import { jsx as t, jsxs as i } 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__ */ i("g", { stroke: "currentColor", strokeWidth: "1.2", children: [
13
+ /* @__PURE__ */ t("rect", { height: "7", rx: "1.4", width: "50", x: ".772363", y: ".6" }),
14
+ /* @__PURE__ */ t("rect", { height: "21", rx: "1.4", width: "50", x: ".772363", y: "11.25" })
15
+ ] })
16
+ }
17
+ );
18
+ }
19
+ export {
20
+ h as MinimalLayoutIcon
21
+ };
@@ -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: "10.0832", x: ".6", y: ".6" }),
14
+ /* @__PURE__ */ t("rect", { height: "32", rx: "1.4", width: "35.8088", x: "14.5912", y: ".6" })
15
+ ] })
16
+ }
17
+ );
18
+ }
19
+ export {
20
+ h as ModernLayoutIcon
21
+ };
@@ -0,0 +1,27 @@
1
+ import { jsxs as t, jsx as C } from "react/jsx-runtime";
2
+ function h(i) {
3
+ return /* @__PURE__ */ t(
4
+ "svg",
5
+ {
6
+ xmlns: "http://www.w3.org/2000/svg",
7
+ width: "25",
8
+ height: "25",
9
+ viewBox: "0 0 25 25",
10
+ fill: "none",
11
+ ...i,
12
+ children: [
13
+ /* @__PURE__ */ C("g", { children: /* @__PURE__ */ C(
14
+ "path",
15
+ {
16
+ d: "M21.6863 19.6602C20.4383 20.6343 18.9999 21.3358 17.464 21.7196C15.9281 22.1034 14.3288 22.1609 12.7693 21.8884C11.2027 21.6197 9.71108 21.021 8.39349 20.1319C7.0759 19.2428 5.96244 18.0836 5.127 16.7314C3.83452 14.6209 3.26262 12.1477 3.49741 9.68402C3.7322 7.22038 4.76098 4.89969 6.42885 3.07133C7.52156 1.90792 8.83018 0.968219 10.2818 0.304608C10.6663 0.136549 11.0888 0.0743053 11.5055 0.124317C11.9222 0.174328 12.318 0.334779 12.6519 0.589065C12.9857 0.84335 13.2456 1.18223 13.4045 1.57065C13.5635 1.95906 13.6158 2.3829 13.556 2.7983C12.5886 8.5359 16.6409 13.1141 22.5153 13.0252C22.9362 13.026 23.3492 13.1396 23.7113 13.3542C24.0734 13.5688 24.3714 13.8765 24.5743 14.2453C24.7771 14.6141 24.8774 15.0306 24.8647 15.4513C24.8521 15.872 24.7268 16.2817 24.5021 16.6376C23.7294 17.7878 22.779 18.8081 21.6863 19.6602ZM8.97874 3.28778C8.56125 3.61252 8.16973 3.96934 7.80775 4.355C6.41882 5.87683 5.5618 7.80865 5.3657 9.85966C5.1696 11.9107 5.64503 13.9699 6.72043 15.7273C7.41692 16.857 8.34586 17.8254 9.44551 18.5683C10.5452 19.3112 11.7903 19.8116 13.0983 20.0361C14.9857 20.33 16.9178 20.0699 18.6603 19.2872C20.4027 18.5046 21.8806 17.2331 22.9146 15.627C22.9579 15.5562 22.9818 15.4751 22.9837 15.3921C22.9856 15.3091 22.9655 15.2271 22.9255 15.1543C22.8855 15.0816 22.827 15.0207 22.7559 14.9778C22.6848 14.935 22.6036 14.9117 22.5206 14.9103C15.522 15.0266 10.5264 9.35635 11.6934 2.50969C11.7062 2.43029 11.6965 2.3489 11.6655 2.27468C11.6345 2.20047 11.5835 2.13636 11.5181 2.08957C11.4522 2.03711 11.3733 2.00367 11.2898 1.99285C11.2063 1.98203 11.1214 1.99424 11.0444 2.02818C10.3076 2.36324 9.61399 2.78618 8.97874 3.28778Z",
17
+ fill: "currentColor"
18
+ }
19
+ ) }),
20
+ /* @__PURE__ */ C("defs", { children: /* @__PURE__ */ C("clipPath", { children: /* @__PURE__ */ C("rect", { width: "25", height: "25", fill: "white" }) }) })
21
+ ]
22
+ }
23
+ );
24
+ }
25
+ export {
26
+ h as Moon
27
+ };
@@ -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: "M6.75 12a.75.75 0 11-1.5 0 .75.75 0 011.5 0zM12.75 12a.75.75 0 11-1.5 0 .75.75 0 011.5 0zM18.75 12a.75.75 0 11-1.5 0 .75.75 0 011.5 0z"
18
+ }
19
+ )
20
+ }
21
+ );
22
+ }
23
+ export {
24
+ e as MoreIcon
25
+ };
@@ -0,0 +1,55 @@
1
+ import { jsxs as e, jsx as C } from "react/jsx-runtime";
2
+ function d(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: "M5.96905 1.83799C4.71679 1.69673 3.42051 1.69673 2.16826 1.83799C1.86397 1.87231 1.62401 2.11548 1.58978 2.41082C1.44024 3.70124 1.44024 5.00485 1.58978 6.29527C1.62401 6.59061 1.86397 6.83378 2.16826 6.8681C3.42052 7.00936 4.71679 7.00936 5.96905 6.8681C6.27334 6.83378 6.5133 6.59061 6.54753 6.29527C6.69707 5.00485 6.69707 3.70124 6.54753 2.41082C6.5133 2.11548 6.27334 1.87231 5.96905 1.83799ZM2.00413 0.355906C3.36547 0.202348 4.77184 0.202348 6.13318 0.355906C7.10924 0.466006 7.89971 1.24147 8.01515 2.23758C8.17803 3.6431 8.17803 5.06299 8.01515 6.46851C7.89971 7.46462 7.10924 8.24009 6.13318 8.35019C4.77184 8.50374 3.36547 8.50374 2.00413 8.35019C1.02807 8.24009 0.237595 7.46462 0.12216 6.46851C-0.0407201 5.06299 -0.0407201 3.6431 0.12216 2.23758C0.237595 1.24147 1.02807 0.466006 2.00413 0.355906Z",
19
+ fill: "currentColor"
20
+ }
21
+ ),
22
+ /* @__PURE__ */ C(
23
+ "path",
24
+ {
25
+ fillRule: "evenodd",
26
+ clipRule: "evenodd",
27
+ d: "M5.96905 11.78C4.71679 11.6388 3.42051 11.6388 2.16826 11.78C1.86397 11.8144 1.62401 12.0575 1.58978 12.3529C1.44024 13.6433 1.44024 14.9469 1.58978 16.2373C1.62401 16.5327 1.86397 16.7758 2.16826 16.8102C3.42052 16.9514 4.71679 16.9514 5.96905 16.8102C6.27334 16.7758 6.5133 16.5327 6.54753 16.2373C6.69707 14.9469 6.69707 13.6433 6.54753 12.3529C6.5133 12.0575 6.27334 11.8144 5.96905 11.78ZM2.00413 10.298C3.36547 10.1444 4.77184 10.1444 6.13318 10.298C7.10924 10.4081 7.89971 11.1835 8.01515 12.1796C8.17803 13.5852 8.17803 15.005 8.01515 16.4106C7.89971 17.4067 7.10924 18.1821 6.13318 18.2922C4.77184 18.4458 3.36547 18.4458 2.00413 18.2922C1.02807 18.1821 0.237595 17.4067 0.12216 16.4106C-0.0407201 15.005 -0.0407201 13.5852 0.12216 12.1796C0.237595 11.1835 1.02807 10.4081 2.00413 10.298Z",
28
+ fill: "currentColor"
29
+ }
30
+ ),
31
+ /* @__PURE__ */ C(
32
+ "path",
33
+ {
34
+ fillRule: "evenodd",
35
+ clipRule: "evenodd",
36
+ d: "M15.8199 1.83799C14.5676 1.69673 13.2714 1.69673 12.0191 1.83799C11.7148 1.87231 11.4749 2.11548 11.4406 2.41082C11.2911 3.70124 11.2911 5.00485 11.4406 6.29527C11.4749 6.59061 11.7148 6.83378 12.0191 6.8681C13.2714 7.00936 14.5676 7.00936 15.8199 6.8681C16.1242 6.83378 16.3642 6.59061 16.3984 6.29527C16.5479 5.00485 16.5479 3.70124 16.3984 2.41082C16.3642 2.11548 16.1242 1.87231 15.8199 1.83799ZM11.855 0.355906C13.2163 0.202348 14.6227 0.202348 15.984 0.355906C16.9601 0.466006 17.7506 1.24147 17.866 2.23758C18.0289 3.6431 18.0289 5.06299 17.866 6.46851C17.7506 7.46462 16.9601 8.24009 15.984 8.35019C14.6227 8.50374 13.2163 8.50374 11.855 8.35019C10.8789 8.24009 10.0884 7.46462 9.97301 6.46851C9.81013 5.06299 9.81013 3.6431 9.97301 2.23758C10.0884 1.24147 10.8789 0.466006 11.855 0.355906Z",
37
+ fill: "currentColor"
38
+ }
39
+ ),
40
+ /* @__PURE__ */ C(
41
+ "path",
42
+ {
43
+ fillRule: "evenodd",
44
+ clipRule: "evenodd",
45
+ d: "M15.8199 11.78C14.5676 11.6388 13.2714 11.6388 12.0191 11.78C11.7148 11.8144 11.4749 12.0575 11.4406 12.3529C11.2911 13.6433 11.2911 14.9469 11.4406 16.2373C11.4749 16.5327 11.7148 16.7758 12.0191 16.8102C13.2714 16.9514 14.5676 16.9514 15.8199 16.8102C16.1242 16.7758 16.3642 16.5327 16.3984 16.2373C16.5479 14.9469 16.5479 13.6433 16.3984 12.3529C16.3642 12.0575 16.1242 11.8144 15.8199 11.78ZM11.855 10.298C13.2163 10.1444 14.6227 10.1444 15.984 10.298C16.9601 10.4081 17.7506 11.1835 17.866 12.1796C18.0289 13.5852 18.0289 15.005 17.866 16.4106C17.7506 17.4067 16.9601 18.1821 15.984 18.2922C14.6227 18.4458 13.2163 18.4458 11.855 18.2922C10.8789 18.1821 10.0884 17.4067 9.97301 16.4106C9.81013 15.005 9.81013 13.5852 9.97301 12.1796C10.0884 11.1835 10.8789 10.4081 11.855 10.298Z",
46
+ fill: "currentColor"
47
+ }
48
+ )
49
+ ]
50
+ }
51
+ );
52
+ }
53
+ export {
54
+ d as NormalGridIcon
55
+ };
@@ -0,0 +1,61 @@
1
+ import { jsxs as l, jsx as C } from "react/jsx-runtime";
2
+ function t(r) {
3
+ return /* @__PURE__ */ l(
4
+ "svg",
5
+ {
6
+ xmlns: "http://www.w3.org/2000/svg",
7
+ width: "22",
8
+ height: "22",
9
+ viewBox: "0 0 22 22",
10
+ fill: "none",
11
+ ...r,
12
+ children: [
13
+ /* @__PURE__ */ C(
14
+ "path",
15
+ {
16
+ d: "M22 11C22 10.5254 21.6153 10.1406 21.1406 10.1406H19.4219C18.9472 10.1406 18.5625 10.5254 18.5625 11C18.5625 11.4746 18.9472 11.8594 19.4219 11.8594H21.1406C21.6153 11.8594 22 11.4746 22 11Z",
17
+ fill: "currentColor"
18
+ }
19
+ ),
20
+ /* @__PURE__ */ C(
21
+ "path",
22
+ {
23
+ d: "M0 11C0 11.4746 0.384743 11.8594 0.859375 11.8594H10.0775C10.4601 13.3403 11.8074 14.4375 13.4062 14.4375C15.3017 14.4375 16.8438 12.8954 16.8438 11C16.8438 9.10456 15.3017 7.5625 13.4062 7.5625C11.8074 7.5625 10.4601 8.65966 10.0775 10.1406H0.859375C0.384743 10.1406 0 10.5254 0 11ZM13.4062 9.28125C14.354 9.28125 15.125 10.0523 15.125 11C15.125 11.9477 14.354 12.7188 13.4062 12.7188C12.4585 12.7188 11.6875 11.9477 11.6875 11C11.6875 10.0523 12.4585 9.28125 13.4062 9.28125Z",
24
+ fill: "currentColor"
25
+ }
26
+ ),
27
+ /* @__PURE__ */ C(
28
+ "path",
29
+ {
30
+ d: "M2.57812 3.26562H0.859375C0.384742 3.26562 0 3.65037 0 4.125C0 4.59963 0.384742 4.98438 0.859375 4.98438H2.57812C3.05276 4.98438 3.4375 4.59963 3.4375 4.125C3.4375 3.65037 3.05276 3.26562 2.57812 3.26562Z",
31
+ fill: "currentColor"
32
+ }
33
+ ),
34
+ /* @__PURE__ */ C(
35
+ "path",
36
+ {
37
+ d: "M8.42188 7.5625C10.0207 7.5625 11.368 6.46534 11.7506 4.98438H21.1406C21.6153 4.98438 22 4.59963 22 4.125C22 3.65037 21.6153 3.26562 21.1406 3.26562L11.7506 3.26563C11.368 1.78466 10.0207 0.6875 8.42188 0.6875C6.52644 0.6875 4.98438 2.22956 4.98438 4.125C4.98438 6.02044 6.52644 7.5625 8.42188 7.5625ZM6.70312 4.125C6.70312 3.17728 7.47416 2.40625 8.42188 2.40625C9.36959 2.40625 10.1406 3.17728 10.1406 4.125C10.1406 5.07272 9.36959 5.84375 8.42188 5.84375C7.47416 5.84375 6.70312 5.07272 6.70312 4.125Z",
38
+ fill: "currentColor"
39
+ }
40
+ ),
41
+ /* @__PURE__ */ C(
42
+ "path",
43
+ {
44
+ d: "M2.57812 18.7344C3.05276 18.7344 3.4375 18.3496 3.4375 17.875C3.4375 17.4004 3.05276 17.0156 2.57812 17.0156H0.859375C0.384742 17.0156 0 17.4004 0 17.875C0 18.3496 0.384742 18.7344 0.859375 18.7344H2.57812Z",
45
+ fill: "currentColor"
46
+ }
47
+ ),
48
+ /* @__PURE__ */ C(
49
+ "path",
50
+ {
51
+ d: "M22 17.875C22 17.4004 21.6153 17.0156 21.1406 17.0156H11.7506C11.368 15.5347 10.0207 14.4375 8.42188 14.4375C6.52644 14.4375 4.98438 15.9796 4.98438 17.875C4.98438 19.7704 6.52644 21.3125 8.42188 21.3125C10.0207 21.3125 11.368 20.2153 11.7506 18.7344H21.1406C21.6153 18.7344 22 18.3496 22 17.875V17.875ZM8.42188 19.5938C7.47416 19.5938 6.70312 18.8227 6.70312 17.875C6.70312 16.9273 7.47416 16.1562 8.42188 16.1562C9.36959 16.1562 10.1406 16.9273 10.1406 17.875C10.1406 18.8227 9.36959 19.5938 8.42188 19.5938Z",
52
+ fill: "currentColor"
53
+ }
54
+ )
55
+ ]
56
+ }
57
+ );
58
+ }
59
+ export {
60
+ t as OptionIcon
61
+ };
@@ -0,0 +1,16 @@
1
+ import { jsx as r } from "react/jsx-runtime";
2
+ function l(o) {
3
+ return /* @__PURE__ */ r(
4
+ "svg",
5
+ {
6
+ xmlns: "http://www.w3.org/2000/svg",
7
+ viewBox: "0 0 24 24",
8
+ ...o,
9
+ fill: "currentColor",
10
+ children: /* @__PURE__ */ r("path", { d: "M21.409 9.353a2.998 2.998 0 0 1 0 5.294L8.597 21.614C6.534 22.736 4 21.276 4 18.968V5.033c0-2.31 2.534-3.769 4.597-2.648l12.812 6.968Z" })
11
+ }
12
+ );
13
+ }
14
+ export {
15
+ l as PlayIcon
16
+ };