@e-burgos/tucu-ui 2.5.0 → 2.6.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.
- package/CHANGELOG.md +30 -0
- package/datatable/common/constants.d.ts +1 -0
- package/datatable/common/functions/index.d.ts +39 -0
- package/datatable/common/functions/user-scopes/index.d.ts +3 -0
- package/datatable/common/helpers/ExpandedColumn.d.ts +9 -0
- package/datatable/common/helpers/OffsetColumn.d.ts +9 -0
- package/datatable/common/helpers/RowActionsColumn.d.ts +9 -0
- package/datatable/common/helpers/RowSelectionColumn.d.ts +9 -0
- package/datatable/common/helpers/cn.d.ts +10 -0
- package/datatable/common/helpers/convertColumns.d.ts +42 -0
- package/datatable/common/helpers/parseNumericValueToExport.d.ts +5 -0
- package/datatable/common/helpers/theme.d.ts +8 -0
- package/datatable/common/types/index.d.ts +416 -0
- package/datatable/components/Assets/ArrowDoubleIndicator.d.ts +26 -0
- package/datatable/components/Assets/ArrowIndicator.d.ts +26 -0
- package/datatable/components/Assets/ArrowLongIndicator.d.ts +26 -0
- package/datatable/components/Assets/ArrowPaginationIndicator.d.ts +26 -0
- package/datatable/components/Assets/AssetButton.d.ts +32 -0
- package/datatable/components/Assets/ColumnIndicator.d.ts +15 -0
- package/datatable/components/Assets/DeleteIndicator.d.ts +15 -0
- package/datatable/components/Assets/DownloadIndicator.d.ts +15 -0
- package/datatable/components/Assets/DragIndicator.d.ts +17 -0
- package/datatable/components/Assets/EditIndicator.d.ts +15 -0
- package/datatable/components/Assets/FilterIndicator.d.ts +15 -0
- package/datatable/components/Assets/MoreIndicator.d.ts +17 -0
- package/datatable/components/Assets/OpenNewTab.d.ts +15 -0
- package/datatable/components/Assets/PinIndicator.d.ts +17 -0
- package/datatable/components/Assets/RowIndicator.d.ts +15 -0
- package/datatable/components/Assets/ViewDetailsIndicator.d.ts +16 -0
- package/datatable/components/Assets/VisibilityIndicator.d.ts +17 -0
- package/datatable/components/Assets/VoidIndicator.d.ts +15 -0
- package/datatable/components/Assets/index.d.ts +18 -0
- package/datatable/components/Common/IconButton/index.d.ts +18 -0
- package/datatable/components/Common/Spinner.d.ts +15 -0
- package/datatable/components/Common/Tooltip.d.ts +37 -0
- package/datatable/components/DataTable/ColumnsVisibilityManager.d.ts +3 -0
- package/datatable/components/DataTable/DataTable.d.ts +26 -0
- package/datatable/components/DataTable/DataTableComponent/index.d.ts +70 -0
- package/datatable/components/DataTable/StateTableHandler/index.d.ts +23 -0
- package/datatable/components/DataTable/SubComponentDataTable/index.d.ts +18 -0
- package/datatable/components/DataTable/TableCell/ExpandedRowCell/index.d.ts +19 -0
- package/datatable/components/DataTable/TableCell/RowActionsCell/index.d.ts +29 -0
- package/datatable/components/DataTable/TableCell/RowSelectionCell/index.d.ts +21 -0
- package/datatable/components/DataTable/TableCell/index.d.ts +44 -0
- package/datatable/components/DataTable/TableHead/index.d.ts +33 -0
- package/datatable/components/DataTable/TableHeader/CheckboxSelector/index.d.ts +17 -0
- package/datatable/components/DataTable/TableHeader/ColumnDraggable/index.d.ts +22 -0
- package/datatable/components/DataTable/TableHeader/ColumnPin/index.d.ts +26 -0
- package/datatable/components/DataTable/TableHeader/ColumnSearcher/InputSearcher.d.ts +19 -0
- package/datatable/components/DataTable/TableHeader/ColumnSearcher/index.d.ts +18 -0
- package/datatable/components/DataTable/TableHeader/ColumnSort/index.d.ts +20 -0
- package/datatable/components/DataTable/TableHeader/ColumnVisibility/index.d.ts +18 -0
- package/datatable/components/DataTable/TableHeader/index.d.ts +30 -0
- package/datatable/components/DataTable/TableRow/index.d.ts +43 -0
- package/datatable/components/DataTable/TableWrapper/index.d.ts +34 -0
- package/datatable/components/DataTable/index.d.ts +3 -0
- package/datatable/components/Footer/index.d.ts +19 -0
- package/datatable/components/ManualPagination/index.d.ts +20 -0
- package/datatable/components/Pagination/index.d.ts +21 -0
- package/datatable/components/RowSelection/index.d.ts +14 -0
- package/datatable/context/DragDropContentContext.d.ts +33 -0
- package/datatable/context/DragDropTableContext.d.ts +35 -0
- package/datatable/context/index.d.ts +167 -0
- package/datatable/hooks/index.d.ts +6 -0
- package/datatable/hooks/useColumns.d.ts +27 -0
- package/datatable/hooks/useComponentEventListener.d.ts +21 -0
- package/datatable/hooks/useDataTableStore.d.ts +64 -0
- package/datatable/hooks/useGetCommonPinningStyles.d.ts +22 -0
- package/datatable/hooks/useInitialState.d.ts +27 -0
- package/datatable/hooks/useResetCacheVersion.d.ts +19 -0
- package/datatable/hooks/useScrollableTable.d.ts +30 -0
- package/datatable/index.d.ts +12 -0
- package/datatable/tanstack-table/index.d.ts +2 -0
- package/demo/generated/props-metadata.d.ts +2 -2
- package/demo/pages/datatable/DataTablePage.d.ts +2 -0
- package/demo/pages/datatable/datatable-sections/ColumnsSection.d.ts +3 -0
- package/demo/pages/datatable/datatable-sections/DataFetchingSection.d.ts +3 -0
- package/demo/pages/datatable/datatable-sections/DocumentationSection.d.ts +3 -0
- package/demo/pages/datatable/datatable-sections/ExamplesSection.d.ts +3 -0
- package/demo/pages/datatable/datatable-sections/PlaygroundSection.d.ts +3 -0
- package/demo/pages/datatable/datatable-sections/SearchSection.d.ts +3 -0
- package/demo/pages/index.d.ts +1 -0
- package/documentation/APIReferenceSection-DhLda4os.js +1 -0
- package/documentation/APIReferenceSection-bp_k9Tqz.js +213 -0
- package/documentation/ActiveLinkSection-VZpThvCH.js +79 -0
- package/documentation/ActiveLinkSection-tNH1S8co.js +23 -0
- package/documentation/AdvancedColorSystemSection-Bpg0ykpE.js +181 -0
- package/documentation/AdvancedColorSystemSection-DV105GJ4.js +17 -0
- package/documentation/AdvancedFeaturesSection-7mYHkn6Y.js +1 -0
- package/documentation/AdvancedFeaturesSection-Bg3qw8SS.js +70 -0
- package/documentation/AdvancedFeaturesSection-D5EPjVA_.js +32 -0
- package/documentation/AdvancedFeaturesSection-Dx2FHJQ4.js +117 -0
- package/documentation/AlertSection-BANRD0WY.js +26 -0
- package/documentation/AlertSection-D2ZMBu8r.js +96 -0
- package/documentation/AnchorLinkSection-BJiqE8DS.js +20 -0
- package/documentation/AnchorLinkSection-DzqR1Ja0.js +65 -0
- package/documentation/ArchitecturalPatternsComparisonSection-BXa3fD3O.js +34 -0
- package/documentation/ArchitecturalPatternsComparisonSection-qvrXsvTR.js +182 -0
- package/documentation/ArchitectureOverviewSection-C8sgSFI-.js +210 -0
- package/documentation/ArchitectureOverviewSection-D0tlNXWy.js +1 -0
- package/documentation/AreaChartSection-BOwKYw6Y.js +22 -0
- package/documentation/AreaChartSection-CzLGWCua.js +132 -0
- package/documentation/AuthorCardSection-CHuq5QLN.js +18 -0
- package/documentation/AuthorCardSection-CrxUxl7Q.js +79 -0
- package/documentation/AvatarSection-BG9u4AUq.js +89 -0
- package/documentation/AvatarSection-DevddyMw.js +19 -0
- package/documentation/BackgroundsSection-CC7L7uIS.js +6 -0
- package/documentation/BackgroundsSection-rIeljh3V.js +365 -0
- package/documentation/BadgeSection-3vXDcqn1.js +49 -0
- package/documentation/BadgeSection-DXHhFhnL.js +179 -0
- package/documentation/BarChartSection-CATVPfb7.js +23 -0
- package/documentation/BarChartSection-DZmMeDJ_.js +127 -0
- package/documentation/BasicTableSection-CKpQEXFP.js +36 -0
- package/documentation/BasicTableSection-Dk1pMX7T.js +133 -0
- package/documentation/BasicUsageSection-C6jzFsy4.js +45 -0
- package/documentation/BasicUsageSection-Cr562E1H.js +133 -0
- package/documentation/BestPracticesSection-BLDoPxOK.js +1 -0
- package/documentation/BestPracticesSection-BNrOOboM.js +137 -0
- package/documentation/BestPracticesSection-BVQwqior.js +1 -0
- package/documentation/BestPracticesSection-BhHp4zsd.js +151 -0
- package/documentation/BestPracticesSection-BjJJEr21.js +91 -0
- package/documentation/BestPracticesSection-C-w5FwtZ.js +79 -0
- package/documentation/BestPracticesSection-C0CfdYdW.js +153 -0
- package/documentation/BestPracticesSection-Coso4hou.js +34 -0
- package/documentation/BestPracticesSection-CuLnMSUm.js +1 -0
- package/documentation/BestPracticesSection-D1TzGwt4.js +1 -0
- package/documentation/BestPracticesSection-Dcf1Ecin.js +151 -0
- package/documentation/BestPracticesSection-WftLca9v.js +1 -0
- package/documentation/BestPracticesSection-ec4Mf-f9.js +61 -0
- package/documentation/BestPracticesSection-kFMiJLRj.js +1 -0
- package/documentation/BorderRadiusSection-CM_dDRJI.js +58 -0
- package/documentation/BorderRadiusSection-CQ2ET4Kp.js +1 -0
- package/documentation/ButtonDripSection-Dva1BJM-.js +110 -0
- package/documentation/ButtonDripSection-ZXvRsatv.js +21 -0
- package/documentation/ButtonLoaderSection-BZuT9Xfl.js +153 -0
- package/documentation/ButtonLoaderSection-ZUjulNxT.js +31 -0
- package/documentation/CardContainerSection-Z7NOSIc4.js +61 -0
- package/documentation/CardContainerSection-j-BU0Fsq.js +22 -0
- package/documentation/CardSection-nulnD1Rl.js +26 -0
- package/documentation/CardSection-xhkzCZXI.js +136 -0
- package/documentation/CardTitleSection-DKFkHUhY.js +20 -0
- package/documentation/CardTitleSection-kRleax_l.js +72 -0
- package/documentation/CarouselCardsSection-BZ49UPm1.js +174 -0
- package/documentation/CarouselCardsSection-DuLDA6jR.js +38 -0
- package/documentation/CarouselImageSection-Bw6VB4Sy.js +39 -0
- package/documentation/CarouselImageSection-xi_Ys2D4.js +179 -0
- package/documentation/CarouselSection-Deuko-HQ.js +123 -0
- package/documentation/CarouselSection-tGiiAPUS.js +25 -0
- package/documentation/CheckboxSection-CzqqD53Y.js +175 -0
- package/documentation/CheckboxSection-DvV3_WXa.js +29 -0
- package/documentation/ClientConfigSection-Gp3e7u6v.js +39 -0
- package/documentation/ClientConfigSection-IutnGjQM.js +126 -0
- package/documentation/CodeExamplesSection-B_dafIDz.js +134 -0
- package/documentation/CodeExamplesSection-DbIVosHK.js +68 -0
- package/documentation/CoinCardSection-Dva3hwNM.js +132 -0
- package/documentation/CoinCardSection-lovvJF09.js +13 -0
- package/documentation/CoinInfoCardSection-8zw579l9.js +12 -0
- package/documentation/CoinInfoCardSection-Did86Nnb.js +148 -0
- package/documentation/CoinListBoxSection-Bar8p9MH.js +24 -0
- package/documentation/CoinListBoxSection-D_KM8_nW.js +129 -0
- package/documentation/CollapseSection-BMLzKQqC.js +28 -0
- package/documentation/CollapseSection-js4VAcmK.js +84 -0
- package/documentation/CollectionCardSection-D2HwaGHj.js +78 -0
- package/documentation/CollectionCardSection-Df34NuPH.js +17 -0
- package/documentation/CollectionSelectListSection-CNAfimrX.js +15 -0
- package/documentation/CollectionSelectListSection-LGvQya5I.js +149 -0
- package/documentation/ColorCustomizationSection-B82JJ1c2.js +141 -0
- package/documentation/ColorCustomizationSection-D4e9KLUe.js +1 -0
- package/documentation/ColorSystemSection-CIqTbBOI.js +1 -0
- package/documentation/ColorSystemSection-Dhgkg-r-.js +339 -0
- package/documentation/ColumnsSection-DrYNzV9j.js +435 -0
- package/documentation/ColumnsSection-qPdS2C02.js +109 -0
- package/documentation/CommonErrorsSection-D5ulhjHy.js +77 -0
- package/documentation/CommonErrorsSection-D__sdWvP.js +1 -0
- package/documentation/ComponentAnatomySection-C9tEDK7p.js +78 -0
- package/documentation/ComponentAnatomySection-CqsdkM8N.js +1 -0
- package/documentation/ComponentStatusSection-BR69AE7p.js +148 -0
- package/documentation/ComponentStatusSection-CNigvIxm.js +1 -0
- package/documentation/ComposedChartSection-CoIPhfXm.js +21 -0
- package/documentation/ComposedChartSection-Q_8Ho__v.js +113 -0
- package/documentation/CurrencySwapIconsSection-DQn8jXE-.js +7 -0
- package/documentation/CurrencySwapIconsSection-zs2ai4Bd.js +73 -0
- package/documentation/CustomColorPaletteSection-CDwYb_hG.js +74 -0
- package/documentation/CustomColorPaletteSection-D7wgseaA.js +19 -0
- package/documentation/CustomIconsSection-BlUe77an.js +172 -0
- package/documentation/CustomIconsSection-WTHmHO_1.js +3 -0
- package/documentation/DataFetchingSection-D5ZMyrfR.js +576 -0
- package/documentation/DataFetchingSection-ZdwqQJWR.js +128 -0
- package/documentation/DefiAppLogoSection-CM6swWaf.js +38 -0
- package/documentation/DefiAppLogoSection-DdW6TZ5c.js +132 -0
- package/documentation/DeploymentSection-BptA4WV3.js +36 -0
- package/documentation/DeploymentSection-Ca1Z8a_c.js +136 -0
- package/documentation/DesignPrinciplesSection-BZwAzzwG.js +68 -0
- package/documentation/DesignPrinciplesSection-DYwidCK8.js +1 -0
- package/documentation/DocumentationSection-BD7CQC84.js +1 -0
- package/documentation/DocumentationSection-CWJn_wOD.js +66 -0
- package/documentation/DrawerSection-Cl0RmlNx.js +155 -0
- package/documentation/DrawerSection-DHBZDxRV.js +42 -0
- package/documentation/DynamicRoutesSection-Der_Tsz0.js +112 -0
- package/documentation/DynamicRoutesSection-NQ3SszLU.js +47 -0
- package/documentation/ExamplesSection-BFn_F-uM.js +54 -0
- package/documentation/ExamplesSection-CUiKkdx2.js +261 -0
- package/documentation/FileInputSection-BNVeIt5U.js +73 -0
- package/documentation/FileInputSection-xuGI-LEy.js +237 -0
- package/documentation/FileStructureSection-BA53QV4j.js +26 -0
- package/documentation/FileStructureSection-BORCUzqw.js +101 -0
- package/documentation/FormComponentsSection-BB7qCeJ_.js +1 -0
- package/documentation/FormComponentsSection-yKE3yL-Y.js +148 -0
- package/documentation/FormMethodsSection-BjBBjdJs.js +194 -0
- package/documentation/FormMethodsSection-DUQ4_4_0.js +53 -0
- package/documentation/HamburgerSection-BjB9wmVz.js +97 -0
- package/documentation/HamburgerSection-Cu9u90NY.js +19 -0
- package/documentation/HookCategoriesSection-C4pBQyC8.js +119 -0
- package/documentation/HookCategoriesSection-RnedxUZ_.js +1 -0
- package/documentation/HookDocumentationSection-4pMJBhbt.js +100 -0
- package/documentation/HookDocumentationSection-CUmrdSCq.js +467 -0
- package/documentation/HookFeaturesSection-BbF7TeKh.js +1 -0
- package/documentation/HookFeaturesSection-luGHopK_.js +70 -0
- package/documentation/IconArchitectureSection-BAj9emvS.js +145 -0
- package/documentation/IconArchitectureSection-BOrQFHbe.js +11 -0
- package/documentation/IconSizingGuideSection-Bow9HZ_l.js +1 -0
- package/documentation/IconSizingGuideSection-DuhPNOqd.js +118 -0
- package/documentation/IconSystemAPISection-C95E0VaN.js +138 -0
- package/documentation/IconSystemAPISection-DcO3FtRL.js +1 -0
- package/documentation/IconSystemBenefitsSection-DT75ytKf.js +1 -0
- package/documentation/IconSystemBenefitsSection-zDDW4StV.js +120 -0
- package/documentation/ImageSection-CQzFYVm1.js +82 -0
- package/documentation/ImageSection-VZ3y1snc.js +508 -0
- package/documentation/ImplementationExamplesSection-COS7tuYv.js +761 -0
- package/documentation/ImplementationExamplesSection-DL4lxRDR.js +429 -0
- package/documentation/ImplementationGuidelinesSection-DNJwGuZi.js +144 -0
- package/documentation/ImplementationGuidelinesSection-nkcQfH3s.js +1 -0
- package/documentation/ImplementationStatusSection-CtqaxsyY.js +1 -0
- package/documentation/ImplementationStatusSection-lv5t0EIh.js +62 -0
- package/documentation/ImplementedFeaturesSection-Bddbm4jZ.js +1 -0
- package/documentation/ImplementedFeaturesSection-DP37ByDA.js +70 -0
- package/documentation/InfoCardSection-4npPvpiJ.js +291 -0
- package/documentation/InfoCardSection-C7W36XJN.js +38 -0
- package/documentation/InputSearcherSection-Bm_4y_eJ.js +267 -0
- package/documentation/InputSearcherSection-DnVt-6OY.js +45 -0
- package/documentation/InputSection-DDSrmZ91.js +50 -0
- package/documentation/InputSection-DSFy5BhS.js +280 -0
- package/documentation/InstallationSection-Pi9lzZwp.js +22 -0
- package/documentation/InstallationSection-t5nTJfBu.js +125 -0
- package/documentation/KeyValueRowSection-CGEK8RAk.js +17 -0
- package/documentation/KeyValueRowSection-wAQ2xSoa.js +117 -0
- package/documentation/KeyboardNavigationSection-B5JFQ5NE.js +27 -0
- package/documentation/KeyboardNavigationSection-_hqOBAEW.js +130 -0
- package/documentation/LayoutPrinciplesSection-D5lu96bu.js +148 -0
- package/documentation/LayoutPrinciplesSection-U-wTD-h4.js +1 -0
- package/documentation/LayoutTypesSection-dCUlT5Rx.js +450 -0
- package/documentation/LayoutTypesSection-qQ-9wgXe.js +1 -0
- package/documentation/LineChartSection-C-ssHn9r.js +130 -0
- package/documentation/LineChartSection-CVJV483A.js +21 -0
- package/documentation/ListContainerSection-BljbeejO.js +39 -0
- package/documentation/ListContainerSection-DialCrM_.js +168 -0
- package/documentation/ListItemSection-BDxVzPbx.js +132 -0
- package/documentation/ListItemSection-BdCtOBHx.js +37 -0
- package/documentation/LiveDemoSection-DosdGK0A.js +1 -0
- package/documentation/LiveDemoSection-NoTlYspW.js +56 -0
- package/documentation/LiveDemonstrationsSection-CbcGEM9e.js +539 -0
- package/documentation/LiveDemonstrationsSection-CwEpTYEs.js +28 -0
- package/documentation/LivePriceFeedSection-CIIrnZ4o.js +143 -0
- package/documentation/LivePriceFeedSection-V76Z5Fer.js +20 -0
- package/documentation/LoaderSection-CkUnMvCy.js +96 -0
- package/documentation/LoaderSection-DEAO4HDA.js +23 -0
- package/documentation/LogoSection-DBRfP-OY.js +101 -0
- package/documentation/LogoSection-DuwWvmb4.js +265 -0
- package/documentation/LucideIconsSection-C8zgDfWJ.js +1 -0
- package/documentation/LucideIconsSection-kEaPLh0V.js +169 -0
- package/documentation/MFESupportSection-Bv716SHU.js +97 -0
- package/documentation/MFESupportSection-Du1uqyKB.js +222 -0
- package/documentation/MacOSBackgroundsSection-BCOYwP0T.js +1 -0
- package/documentation/MacOSBackgroundsSection-CFzGRTIi.js +293 -0
- package/documentation/MacOSColorsSection-BLdQLmVU.js +1 -0
- package/documentation/MacOSColorsSection-C7Z8okVD.js +305 -0
- package/documentation/MacOSCommandPaletteSection-BTrRzuuO.js +143 -0
- package/documentation/MacOSCommandPaletteSection-DVNy_6I7.js +33 -0
- package/documentation/MacOSMaterialsSection-Df-ADZ6d.js +280 -0
- package/documentation/MacOSMaterialsSection-DsZwofSg.js +1 -0
- package/documentation/MacOSNotificationBannerSection-C58OPCNq.js +169 -0
- package/documentation/MacOSNotificationBannerSection-CUorA6r9.js +25 -0
- package/documentation/MacOSPopoverSection-BDDYuhqI.js +266 -0
- package/documentation/MacOSPopoverSection-BkgBnoyB.js +33 -0
- package/documentation/MacOSSearchBarSection-B4kt_090.js +17 -0
- package/documentation/MacOSSearchBarSection-CAqjk9yl.js +108 -0
- package/documentation/MacOSSegmentedControlSection-BmrrShpJ.js +19 -0
- package/documentation/MacOSSegmentedControlSection-D_zqGd1h.js +138 -0
- package/documentation/MacOSSidebarSection-D-64MM8U.js +35 -0
- package/documentation/MacOSSidebarSection-DUpDMHGi.js +251 -0
- package/documentation/MacOSTahoeSection-Glabuf3q.js +1 -0
- package/documentation/MacOSTahoeSection-N_tppoSk.js +98 -0
- package/documentation/MacOSTextStylesSection-BHMRNo-v.js +366 -0
- package/documentation/MacOSTextStylesSection-DlvKbXki.js +1 -0
- package/documentation/MacOSToolbarSection-COuNpmj_.js +100 -0
- package/documentation/MacOSToolbarSection-CdsL85Jb.js +23 -0
- package/documentation/MacOSWidgetSection-BNaAjj5p.js +107 -0
- package/documentation/MacOSWidgetSection-b_I1PVF7.js +19 -0
- package/documentation/MacOSWindowSection-29UkbnpD.js +237 -0
- package/documentation/MacOSWindowSection-D4C22kkM.js +22 -0
- package/documentation/MenuItemsGuideSection-Ba6VQNK9.js +351 -0
- package/documentation/MenuItemsGuideSection-CbvbuCdn.js +126 -0
- package/documentation/ModalSection-445ZMEa_.js +30 -0
- package/documentation/ModalSection-BWoZ5Pcl.js +114 -0
- package/documentation/NFTGridSection-2-m_Uk8V.js +19 -0
- package/documentation/NFTGridSection-CEinlBJu.js +160 -0
- package/documentation/NestedRoutesSection-D_qsJSnp.js +39 -0
- package/documentation/NestedRoutesSection-DrqTtZfw.js +120 -0
- package/documentation/NotificationCardSection-BajbpGsh.js +29 -0
- package/documentation/NotificationCardSection-BsEFLr03.js +120 -0
- package/documentation/OverviewSection-BFOZHsnd.js +21 -0
- package/documentation/OverviewSection-qQ_zeErg.js +149 -0
- package/documentation/PaginationSection-DBp0eqDB.js +141 -0
- package/documentation/PaginationSection-Vg1h9RV9.js +19 -0
- package/documentation/PanelActionCardSection-Czo1uDNy.js +29 -0
- package/documentation/PanelActionCardSection-Dpm0_Mfp.js +104 -0
- package/documentation/PanelCardSection-Db257Bkk.js +60 -0
- package/documentation/PanelCardSection-DvJ5QG8z.js +16 -0
- package/documentation/ParamTabSection-D3tpzPXp.js +94 -0
- package/documentation/ParamTabSection-DzcRCqZr.js +581 -0
- package/documentation/PieChartSection-DHKMnFF6.js +91 -0
- package/documentation/PieChartSection-Oe6rJh93.js +19 -0
- package/documentation/PinCodeSection-CDtuT8Kw.js +235 -0
- package/documentation/PinCodeSection-CnM3hDz5.js +32 -0
- package/documentation/PlaygroundSection-BDwyp4DF.js +1 -0
- package/documentation/PlaygroundSection-CbAGK96L.js +415 -0
- package/documentation/ProgressbarSection-BzHZ0AfK.js +22 -0
- package/documentation/ProgressbarSection-CXAiNNFG.js +142 -0
- package/documentation/PromptsSection-Be0ObKFK.js +118 -0
- package/documentation/PromptsSection-COY6XUPp.js +18 -0
- package/documentation/RadarChartSection-B8qTV7dc.js +21 -0
- package/documentation/RadarChartSection-Dsjj4EQ6.js +114 -0
- package/documentation/RadioGroupSection-D4QKj2um.js +269 -0
- package/documentation/RadioGroupSection-uEBc9tpG.js +37 -0
- package/documentation/RadioSection-3Q2d-3lM.js +27 -0
- package/documentation/RadioSection-CULyvM_s.js +183 -0
- package/documentation/ResourcesSection-BwB_aHaD.js +13 -0
- package/documentation/ResourcesSection-CTMhP33o.js +119 -0
- package/documentation/RevealContentSection-ZnhGy2aO.js +21 -0
- package/documentation/RevealContentSection-fASJbh2Y.js +80 -0
- package/documentation/RouteConfigurationSection-B3spETiJ.js +42 -0
- package/documentation/RouteConfigurationSection-goiMMamN.js +88 -0
- package/documentation/ScrollToTopSection-CtOc-TS2.js +141 -0
- package/documentation/ScrollToTopSection-IPskJwsB.js +38 -0
- package/documentation/ScrollbarSection-BpZ-yYIY.js +103 -0
- package/documentation/ScrollbarSection-DfK0WSIX.js +30 -0
- package/documentation/SearchSection-WT9_CxCF.js +45 -0
- package/documentation/SearchSection-fY2x4mhW.js +268 -0
- package/documentation/SecuritySection-DKj4sx3q.js +27 -0
- package/documentation/SecuritySection-fTtKf_Se.js +164 -0
- package/documentation/SelectSection-ChCN6Gvt.js +346 -0
- package/documentation/SelectSection-XHHIw0x1.js +52 -0
- package/documentation/SettingsPanelSection-C7_20M4F.js +1 -0
- package/documentation/SettingsPanelSection-Ks-nNrFJ.js +139 -0
- package/documentation/ShadowsSection-CJYATM7F.js +1 -0
- package/documentation/ShadowsSection-DfueUFqR.js +101 -0
- package/documentation/SidebarMenuSection-DXhSvAfX.js +108 -0
- package/documentation/SidebarMenuSection-SrSpe80k.js +47 -0
- package/documentation/SidebarSection-BaFbib_i.js +70 -0
- package/documentation/SidebarSection-DEYX9Kqh.js +26 -0
- package/documentation/SizingSection-B0SxFX0i.js +1 -0
- package/documentation/SizingSection-CFCLxAKR.js +97 -0
- package/documentation/SkeletonSection-CVq7HYVY.js +202 -0
- package/documentation/SkeletonSection-CbIR-XQ0.js +53 -0
- package/documentation/SonomaColorsSection-ByEpUCmF.js +388 -0
- package/documentation/SonomaColorsSection-Dgz5XvhV.js +1 -0
- package/documentation/SonomaLayoutContentSection-D1AFn8Hp.js +67 -0
- package/documentation/SonomaLayoutContentSection-bZkduOQx.js +16 -0
- package/documentation/SonomaLayoutSidebarSection-CJgyBUch.js +96 -0
- package/documentation/SonomaLayoutSidebarSection-Yyp4COXe.js +27 -0
- package/documentation/SonomaMaterialsSection-BBoVMvgC.js +9 -0
- package/documentation/SonomaMaterialsSection-CXb0ND7f.js +334 -0
- package/documentation/SonomaShapesSection-DwvNaMWx.js +482 -0
- package/documentation/SonomaShapesSection-IficAPxh.js +10 -0
- package/documentation/SonomaTypographySection-BYarPbGF.js +389 -0
- package/documentation/SonomaTypographySection-LjJ2_rZA.js +1 -0
- package/documentation/SpacingSystemSection-DHOiKnLP.js +1 -0
- package/documentation/SpacingSystemSection-gi1hOD6c.js +79 -0
- package/documentation/SpinnerSection-DNHEdjKZ.js +78 -0
- package/documentation/SpinnerSection-nP1nOJnU.js +18 -0
- package/documentation/StandaloneAppSection-DktAXH3T.js +181 -0
- package/documentation/StandaloneAppSection-zGt98xAO.js +71 -0
- package/documentation/StepperSection-BdPopNnz.js +29 -0
- package/documentation/StepperSection-CsJZAGkY.js +166 -0
- package/documentation/SwitchSection-BAgMBu2Q.js +28 -0
- package/documentation/SwitchSection-ByC85Kap.js +223 -0
- package/documentation/SystemOverviewSection-CAWlhqIB.js +1 -0
- package/documentation/SystemOverviewSection-ydaPDpDw.js +58 -0
- package/documentation/TabModalSection-Bu3a4ryu.js +52 -0
- package/documentation/TabModalSection-TRVdGNTT.js +200 -0
- package/documentation/TabSection-BdLxBPop.js +85 -0
- package/documentation/TabSection-CDQ62WfZ.js +293 -0
- package/documentation/TabSelectSection-Bwf53Fqf.js +420 -0
- package/documentation/TabSelectSection-qEsIlzZP.js +102 -0
- package/documentation/TahoeCommandPaletteSection-CAOQM68l.js +21 -0
- package/documentation/TahoeCommandPaletteSection-DLEKbcYr.js +217 -0
- package/documentation/TahoeDialogSection-JnVEuZ_D.js +22 -0
- package/documentation/TahoeDialogSection-hRAC-9FQ.js +228 -0
- package/documentation/TahoeDockSection-DN01lgZU.js +29 -0
- package/documentation/TahoeDockSection-DeSCH1-K.js +228 -0
- package/documentation/TahoeLayoutContentSection-B7FMGrb_.js +68 -0
- package/documentation/TahoeLayoutContentSection-DR8ZGq2-.js +17 -0
- package/documentation/TahoeLayoutSidebarSection-BB1sn0vA.js +114 -0
- package/documentation/TahoeLayoutSidebarSection-YtwQSoHS.js +36 -0
- package/documentation/TahoeNotificationBannerSection-B5wxMzg7.js +22 -0
- package/documentation/TahoeNotificationBannerSection-Cfz6pCML.js +144 -0
- package/documentation/TahoePopoverSection-FNNHRW8y.js +220 -0
- package/documentation/TahoePopoverSection-Sws9YM-u.js +24 -0
- package/documentation/TahoeProgressBarSection-CDG0UwBs.js +124 -0
- package/documentation/TahoeProgressBarSection-rnsLopEr.js +16 -0
- package/documentation/TahoeSearchBarSection-BjALRSiL.js +10 -0
- package/documentation/TahoeSearchBarSection-ClkkTHcY.js +117 -0
- package/documentation/TahoeSegmentedControlSection-Cm6Ds1no.js +178 -0
- package/documentation/TahoeSegmentedControlSection-DJxWMV52.js +12 -0
- package/documentation/TahoeToolbarSection-BNGPeBHt.js +17 -0
- package/documentation/TahoeToolbarSection-g85Im8FS.js +81 -0
- package/documentation/TahoeWidgetSection-DD7Apywi.js +121 -0
- package/documentation/TahoeWidgetSection-DVnHBOjI.js +13 -0
- package/documentation/TahoeWindowSection-B42c7BLl.js +24 -0
- package/documentation/TahoeWindowSection-CuHmRGj3.js +289 -0
- package/documentation/TailwindConfigSection-BY9HXUhA.js +23 -0
- package/documentation/TailwindConfigSection-DvZuNkc7.js +128 -0
- package/documentation/TestingSection-BVxXJMgj.js +150 -0
- package/documentation/TestingSection-DOh318Tm.js +36 -0
- package/documentation/TextareaSection-3_t7ai9G.js +34 -0
- package/documentation/TextareaSection-Dzu49LSf.js +258 -0
- package/documentation/ThemeArchitectureSection-Bw24JBsA.js +143 -0
- package/documentation/ThemeArchitectureSection-CDldshGL.js +27 -0
- package/documentation/ThemeConfigurationSection-4TdHDxO0.js +1 -0
- package/documentation/ThemeConfigurationSection-COAiRQZF.js +139 -0
- package/documentation/ThemeHooksSection-Cd6DadGN.js +1 -0
- package/documentation/ThemeHooksSection-dOrSRbrn.js +173 -0
- package/documentation/ThemeProviderIntegrationSection-8ztYnv_H.js +73 -0
- package/documentation/ThemeProviderIntegrationSection-BTj95Kt0.js +122 -0
- package/documentation/ThemeProviderRequiredSection-hcvSPDrZ.js +1 -0
- package/documentation/ThemeProviderRequiredSection-kWXCDNKy.js +114 -0
- package/documentation/ThemeProviderSection-C9ZV8aUv.js +1 -0
- package/documentation/ThemeProviderSection-EtkntPnC.js +143 -0
- package/documentation/ToastSection-C2_Av055.js +38 -0
- package/documentation/ToastSection-NoDnkMGu.js +168 -0
- package/documentation/ToggleBarSection-BdjFoJjH.js +186 -0
- package/documentation/ToggleBarSection-CSPKIKSE.js +45 -0
- package/documentation/ToolsSection-C-esUuLz.js +221 -0
- package/documentation/ToolsSection-DWfaPzVU.js +58 -0
- package/documentation/TooltipSection-FyDJKnf1.js +64 -0
- package/documentation/TooltipSection-jjPa6g0x.js +185 -0
- package/documentation/TopupButtonSection-BXI8TeYG.js +25 -0
- package/documentation/TopupButtonSection-BynGsCmq.js +98 -0
- package/documentation/TransactionInfoSection-DdhvAYC-.js +86 -0
- package/documentation/TransactionInfoSection-XCLFoGEj.js +16 -0
- package/documentation/TucuUiLogoSection--s8pA7EB.js +26 -0
- package/documentation/TucuUiLogoSection-BC4AT0Nk.js +85 -0
- package/documentation/TypographySection--Tmn50-J.js +276 -0
- package/documentation/TypographySection-BiGmlBcz.js +33 -0
- package/documentation/TypographySection-CNrhDmGi.js +1 -0
- package/documentation/TypographySection-Dus4EyTE.js +142 -0
- package/documentation/UsageExamplesSection-DcTyTiz0.js +150 -0
- package/documentation/UsageExamplesSection-tPQlBUXB.js +84 -0
- package/documentation/UsingThemeSystemSection-Bn76akZW.js +164 -0
- package/documentation/UsingThemeSystemSection-CK0SJMLl.js +106 -0
- package/documentation/ValidationSystemSection-Bl-anwHL.js +222 -0
- package/documentation/ValidationSystemSection-w5wRflZH.js +53 -0
- package/documentation/WCAGPrinciplesSection-B_iYHZne.js +1 -0
- package/documentation/WCAGPrinciplesSection-By2amHOf.js +126 -0
- package/index-DWDUS-PU.js +1342 -0
- package/index-DoxeCFUJ.js +88761 -0
- package/index.css +1 -1
- package/index.d.ts +1 -0
- package/index.js +1 -1
- package/index.mjs +462 -426
- package/package.json +22 -14
- package/documentation/APIReferenceSection-BuGaLjk4.js +0 -213
- package/documentation/APIReferenceSection-vOO5q7kb.js +0 -1
- package/documentation/ActiveLinkSection-DIb03elW.js +0 -23
- package/documentation/ActiveLinkSection-hXSKjm7P.js +0 -79
- package/documentation/AdvancedColorSystemSection-BNGCLPR3.js +0 -181
- package/documentation/AdvancedColorSystemSection-pzKTpmEy.js +0 -17
- package/documentation/AdvancedFeaturesSection-B5lA3r0v.js +0 -1
- package/documentation/AdvancedFeaturesSection-Bh-WxfFY.js +0 -117
- package/documentation/AdvancedFeaturesSection-DExCw62I.js +0 -70
- package/documentation/AdvancedFeaturesSection-rwcki92F.js +0 -32
- package/documentation/AlertSection-D9eDywN3.js +0 -96
- package/documentation/AlertSection-wm1TI70h.js +0 -26
- package/documentation/AnchorLinkSection-CCVHnu-V.js +0 -65
- package/documentation/AnchorLinkSection-CXA1DwCn.js +0 -20
- package/documentation/ArchitecturalPatternsComparisonSection-D59jbCG8.js +0 -34
- package/documentation/ArchitecturalPatternsComparisonSection-Df1CQv6V.js +0 -182
- package/documentation/ArchitectureOverviewSection-B8Gu1Qwg.js +0 -1
- package/documentation/ArchitectureOverviewSection-CqMMpWAZ.js +0 -210
- package/documentation/AreaChartSection-CwmW-uJO.js +0 -132
- package/documentation/AreaChartSection-DjxzNYFk.js +0 -22
- package/documentation/AuthorCardSection-BszBY56Q.js +0 -79
- package/documentation/AuthorCardSection-DX6K6A58.js +0 -18
- package/documentation/AvatarSection-BaNCsM7-.js +0 -89
- package/documentation/AvatarSection-CHC86-XQ.js +0 -19
- package/documentation/BackgroundsSection-BphgbOsP.js +0 -6
- package/documentation/BackgroundsSection-DRGHkPRw.js +0 -365
- package/documentation/BadgeSection-DPqnIeW_.js +0 -179
- package/documentation/BadgeSection-DQuVvzuk.js +0 -49
- package/documentation/BarChartSection-192XA4lC.js +0 -127
- package/documentation/BarChartSection-CQTrN7II.js +0 -23
- package/documentation/BasicTableSection-DS9tghtn.js +0 -133
- package/documentation/BasicTableSection-DUxEk0Xz.js +0 -36
- package/documentation/BasicUsageSection-Bnk07Qtr.js +0 -45
- package/documentation/BasicUsageSection-D1mvyWVC.js +0 -133
- package/documentation/BestPracticesSection-B7d1WnXg.js +0 -61
- package/documentation/BestPracticesSection-BvEXXuBH.js +0 -1
- package/documentation/BestPracticesSection-C9A7z9xg.js +0 -1
- package/documentation/BestPracticesSection-CFILeUX1.js +0 -34
- package/documentation/BestPracticesSection-CH7suMGV.js +0 -79
- package/documentation/BestPracticesSection-C_UO8oF3.js +0 -1
- package/documentation/BestPracticesSection-DI3iv7N4.js +0 -151
- package/documentation/BestPracticesSection-DfkGrr2Q.js +0 -1
- package/documentation/BestPracticesSection-Dl3jrGq4.js +0 -1
- package/documentation/BestPracticesSection-DlYPFmx9.js +0 -91
- package/documentation/BestPracticesSection-DvxanX6e.js +0 -151
- package/documentation/BestPracticesSection-fJ-_uwQu.js +0 -1
- package/documentation/BestPracticesSection-klWNOwRv.js +0 -153
- package/documentation/BestPracticesSection-nvtTMLIJ.js +0 -137
- package/documentation/BorderRadiusSection-BCNMPn6e.js +0 -58
- package/documentation/BorderRadiusSection-Cf18TiCF.js +0 -1
- package/documentation/ButtonDripSection-BEhYR8Ne.js +0 -110
- package/documentation/ButtonDripSection-CI9fFXx_.js +0 -21
- package/documentation/ButtonLoaderSection-BW_hgeeM.js +0 -153
- package/documentation/ButtonLoaderSection-BZUXqzag.js +0 -31
- package/documentation/CardContainerSection-BRPPLI1C.js +0 -61
- package/documentation/CardContainerSection-dZUV-wdl.js +0 -22
- package/documentation/CardSection-B-RjdTHj.js +0 -26
- package/documentation/CardSection-BEcASXn9.js +0 -136
- package/documentation/CardTitleSection-CZbYlPce.js +0 -20
- package/documentation/CardTitleSection-DC_JgQnV.js +0 -72
- package/documentation/CarouselCardsSection-BgSiYzS-.js +0 -38
- package/documentation/CarouselCardsSection-CyuFw30M.js +0 -174
- package/documentation/CarouselImageSection-CYUZkmE7.js +0 -179
- package/documentation/CarouselImageSection-RaIGiFPI.js +0 -39
- package/documentation/CarouselSection-BcAird9B.js +0 -25
- package/documentation/CarouselSection-CmOg8CA7.js +0 -123
- package/documentation/CheckboxSection-Ci3XeeBU.js +0 -29
- package/documentation/CheckboxSection-fCbCTXVi.js +0 -175
- package/documentation/ClientConfigSection-B1u9ICgp.js +0 -39
- package/documentation/ClientConfigSection-DKoyUKX1.js +0 -126
- package/documentation/CodeExamplesSection-BUiRFlz_.js +0 -68
- package/documentation/CodeExamplesSection-BiY0m_Cj.js +0 -134
- package/documentation/CoinCardSection-bsveQMjk.js +0 -13
- package/documentation/CoinCardSection-zgM8YzAw.js +0 -132
- package/documentation/CoinInfoCardSection-BGxjfX33.js +0 -12
- package/documentation/CoinInfoCardSection-BpDitwaZ.js +0 -148
- package/documentation/CoinListBoxSection-BNhCV6tk.js +0 -129
- package/documentation/CoinListBoxSection-D4FrHQqq.js +0 -24
- package/documentation/CollapseSection-BJ_Eq2XG.js +0 -28
- package/documentation/CollapseSection-BTJCuwtH.js +0 -84
- package/documentation/CollectionCardSection-DhqMENmH.js +0 -17
- package/documentation/CollectionCardSection-Dnw-AMeA.js +0 -78
- package/documentation/CollectionSelectListSection-DjER6UPv.js +0 -149
- package/documentation/CollectionSelectListSection-q3vag31o.js +0 -15
- package/documentation/ColorCustomizationSection-Cc_eIdHN.js +0 -141
- package/documentation/ColorCustomizationSection-K07wRIed.js +0 -1
- package/documentation/ColorSystemSection-BsW26KPw.js +0 -339
- package/documentation/ColorSystemSection-DewtcS09.js +0 -1
- package/documentation/CommonErrorsSection-DUfQIOFx.js +0 -77
- package/documentation/CommonErrorsSection-DYprV2-q.js +0 -1
- package/documentation/ComponentAnatomySection-B48mRC0o.js +0 -1
- package/documentation/ComponentAnatomySection-MVU9xWRw.js +0 -78
- package/documentation/ComponentStatusSection-C8Xgbs1J.js +0 -1
- package/documentation/ComponentStatusSection-TiSLIuX0.js +0 -148
- package/documentation/ComposedChartSection-Be70sMuM.js +0 -113
- package/documentation/ComposedChartSection-Xih3hFxi.js +0 -21
- package/documentation/CurrencySwapIconsSection-D1-0fKb2.js +0 -7
- package/documentation/CurrencySwapIconsSection-LJEH4zY2.js +0 -73
- package/documentation/CustomColorPaletteSection-17OLhGAJ.js +0 -74
- package/documentation/CustomColorPaletteSection-DvcVgPSw.js +0 -19
- package/documentation/CustomIconsSection-BML7Ykph.js +0 -172
- package/documentation/CustomIconsSection-B_twKCge.js +0 -3
- package/documentation/DefiAppLogoSection-DV9roRzn.js +0 -132
- package/documentation/DefiAppLogoSection-yU373rnC.js +0 -38
- package/documentation/DeploymentSection-DdrdxadS.js +0 -36
- package/documentation/DeploymentSection-Zq8li6Rk.js +0 -136
- package/documentation/DesignPrinciplesSection-BFeLS1Jc.js +0 -1
- package/documentation/DesignPrinciplesSection-CQ9uXtm0.js +0 -68
- package/documentation/DrawerSection-BXsL-pSW.js +0 -155
- package/documentation/DrawerSection-tFhF0Yk2.js +0 -42
- package/documentation/DynamicRoutesSection-ByxCJkKq.js +0 -112
- package/documentation/DynamicRoutesSection-DtEe2l3H.js +0 -47
- package/documentation/FileInputSection-CUNjOlBC.js +0 -237
- package/documentation/FileInputSection-D9YC4zr4.js +0 -73
- package/documentation/FileStructureSection-DCuzzRzZ.js +0 -26
- package/documentation/FileStructureSection-RjF24Eeb.js +0 -101
- package/documentation/FormComponentsSection-W4xthxql.js +0 -1
- package/documentation/FormComponentsSection-qIVGkJO5.js +0 -148
- package/documentation/FormMethodsSection-BshjLI6k.js +0 -53
- package/documentation/FormMethodsSection-H0NH1Kq_.js +0 -194
- package/documentation/HamburgerSection-BEuEb_AH.js +0 -97
- package/documentation/HamburgerSection-BhZWXoXB.js +0 -19
- package/documentation/HookCategoriesSection-BKSM-O8G.js +0 -119
- package/documentation/HookCategoriesSection-CV5hBia7.js +0 -1
- package/documentation/HookDocumentationSection-Ch4nDyTq.js +0 -100
- package/documentation/HookDocumentationSection-ijU1LCaj.js +0 -467
- package/documentation/HookFeaturesSection-C_V77TA5.js +0 -1
- package/documentation/HookFeaturesSection-D_dR8OBL.js +0 -70
- package/documentation/IconArchitectureSection-CiVJ4728.js +0 -145
- package/documentation/IconArchitectureSection-ias4EYu3.js +0 -11
- package/documentation/IconSizingGuideSection-C5rHdRmp.js +0 -1
- package/documentation/IconSizingGuideSection-ZHrKT5rP.js +0 -118
- package/documentation/IconSystemAPISection-B-s4deWd.js +0 -1
- package/documentation/IconSystemAPISection-K1q81uHL.js +0 -138
- package/documentation/IconSystemBenefitsSection-BXM5YXn5.js +0 -1
- package/documentation/IconSystemBenefitsSection-DhmIDZc1.js +0 -120
- package/documentation/ImageSection-D3mMNujR.js +0 -82
- package/documentation/ImageSection-q1QmHQ_L.js +0 -508
- package/documentation/ImplementationExamplesSection-BzmiP-T4.js +0 -429
- package/documentation/ImplementationExamplesSection-WGGTXLkG.js +0 -761
- package/documentation/ImplementationGuidelinesSection-D2ms5PqO.js +0 -1
- package/documentation/ImplementationGuidelinesSection-DlpKMLZ_.js +0 -144
- package/documentation/ImplementationStatusSection-BnEi6nv4.js +0 -62
- package/documentation/ImplementationStatusSection-ChX-zdjZ.js +0 -1
- package/documentation/ImplementedFeaturesSection-C7ep5GNQ.js +0 -70
- package/documentation/ImplementedFeaturesSection-CFHFcIUm.js +0 -1
- package/documentation/InfoCardSection-B02qLuF6.js +0 -38
- package/documentation/InfoCardSection-CTygtxPU.js +0 -291
- package/documentation/InputSearcherSection-CJd1uwoE.js +0 -45
- package/documentation/InputSearcherSection-JzvqQlCG.js +0 -267
- package/documentation/InputSection-BPLR_DD_.js +0 -50
- package/documentation/InputSection-DdzpSHWp.js +0 -280
- package/documentation/InstallationSection-BfQULwsk.js +0 -22
- package/documentation/InstallationSection-DAX5Jma4.js +0 -125
- package/documentation/KeyValueRowSection-DpXvuany.js +0 -117
- package/documentation/KeyValueRowSection-Vk2Og3XV.js +0 -17
- package/documentation/KeyboardNavigationSection-DBHb6M7i.js +0 -130
- package/documentation/KeyboardNavigationSection-DSDQWvAN.js +0 -27
- package/documentation/LayoutPrinciplesSection-BbZcW8R3.js +0 -148
- package/documentation/LayoutPrinciplesSection-XpAJdllO.js +0 -1
- package/documentation/LayoutTypesSection-BtXrqAIT.js +0 -450
- package/documentation/LayoutTypesSection-C-7mU0ZX.js +0 -1
- package/documentation/LineChartSection-2vGnmySf.js +0 -130
- package/documentation/LineChartSection-97CrQcFO.js +0 -21
- package/documentation/ListContainerSection-5rcF8Fpk.js +0 -168
- package/documentation/ListContainerSection-DRJITbJp.js +0 -39
- package/documentation/ListItemSection-D0Bbbebh.js +0 -37
- package/documentation/ListItemSection-DnAV85N9.js +0 -132
- package/documentation/LiveDemoSection-BsPDLjy5.js +0 -1
- package/documentation/LiveDemoSection-CcWjO6e8.js +0 -56
- package/documentation/LiveDemonstrationsSection-CFmKZyVT.js +0 -28
- package/documentation/LiveDemonstrationsSection-CqiqsC9o.js +0 -539
- package/documentation/LivePriceFeedSection-2f2Lri-M.js +0 -143
- package/documentation/LivePriceFeedSection-xruqFumk.js +0 -20
- package/documentation/LoaderSection-B3_cpL4h.js +0 -23
- package/documentation/LoaderSection-CVIcsumu.js +0 -96
- package/documentation/LogoSection-Bi9m5Eid.js +0 -265
- package/documentation/LogoSection-DQq_CA5R.js +0 -101
- package/documentation/LucideIconsSection-C1yoAR38.js +0 -169
- package/documentation/LucideIconsSection-DMLkXGfp.js +0 -1
- package/documentation/MFESupportSection-CNJLJykb.js +0 -97
- package/documentation/MFESupportSection-D4qheJMQ.js +0 -222
- package/documentation/MacOSBackgroundsSection-Cqgf2s_S.js +0 -1
- package/documentation/MacOSBackgroundsSection-D2rvKLZc.js +0 -293
- package/documentation/MacOSColorsSection-3kw_FYMA.js +0 -1
- package/documentation/MacOSColorsSection-LeWmqCH6.js +0 -305
- package/documentation/MacOSCommandPaletteSection-ChoMTEdg.js +0 -33
- package/documentation/MacOSCommandPaletteSection-CigtkU3V.js +0 -143
- package/documentation/MacOSMaterialsSection-BpbSIN1m.js +0 -280
- package/documentation/MacOSMaterialsSection-DVc8K0Ra.js +0 -1
- package/documentation/MacOSNotificationBannerSection-D1_xjcml.js +0 -169
- package/documentation/MacOSNotificationBannerSection-GYBjryLN.js +0 -25
- package/documentation/MacOSPopoverSection-B7aiG5Q6.js +0 -266
- package/documentation/MacOSPopoverSection-BiNY5oHn.js +0 -33
- package/documentation/MacOSSearchBarSection-BPmwBz_E.js +0 -108
- package/documentation/MacOSSearchBarSection-DeKloWI2.js +0 -17
- package/documentation/MacOSSegmentedControlSection-D2RWyh1M.js +0 -138
- package/documentation/MacOSSegmentedControlSection-DQYUVgAQ.js +0 -19
- package/documentation/MacOSSidebarSection-CD_Mk8gZ.js +0 -35
- package/documentation/MacOSSidebarSection-CMlYDEdz.js +0 -251
- package/documentation/MacOSTahoeSection-DPuq0Mdo.js +0 -98
- package/documentation/MacOSTahoeSection-NuwSNNQr.js +0 -1
- package/documentation/MacOSTextStylesSection-CC3hy3IX.js +0 -1
- package/documentation/MacOSTextStylesSection-DZ7P33PQ.js +0 -366
- package/documentation/MacOSToolbarSection-B09pIaYX.js +0 -100
- package/documentation/MacOSToolbarSection-CSO5R58s.js +0 -23
- package/documentation/MacOSWidgetSection-BiwLJeZs.js +0 -107
- package/documentation/MacOSWidgetSection-Dd9uuDwE.js +0 -19
- package/documentation/MacOSWindowSection-BFew8rAG.js +0 -237
- package/documentation/MacOSWindowSection-DD9TSZrq.js +0 -22
- package/documentation/MenuItemsGuideSection-BQX2CJl8.js +0 -351
- package/documentation/MenuItemsGuideSection-CpwqiKXd.js +0 -126
- package/documentation/ModalSection-Ba-YDDxD.js +0 -114
- package/documentation/ModalSection-BaKzs5hZ.js +0 -30
- package/documentation/NFTGridSection-Dy-Ul2Ik.js +0 -19
- package/documentation/NFTGridSection-P8SUQfCz.js +0 -160
- package/documentation/NestedRoutesSection-BtgXarM0.js +0 -120
- package/documentation/NestedRoutesSection-CAAjjFZN.js +0 -39
- package/documentation/NotificationCardSection-CahW9xWR.js +0 -120
- package/documentation/NotificationCardSection-DLHftS_t.js +0 -29
- package/documentation/OverviewSection-Dx4cWnvO.js +0 -149
- package/documentation/OverviewSection-yESqzgpR.js +0 -21
- package/documentation/PaginationSection-BTm7MLWb.js +0 -19
- package/documentation/PaginationSection-w-C3_8OX.js +0 -141
- package/documentation/PanelActionCardSection-DB5atYQH.js +0 -29
- package/documentation/PanelActionCardSection-DThpH-iA.js +0 -104
- package/documentation/PanelCardSection-PoZLivo5.js +0 -16
- package/documentation/PanelCardSection-qkmlfddG.js +0 -60
- package/documentation/ParamTabSection-B8Ea5Jyo.js +0 -581
- package/documentation/ParamTabSection-BUFHEsdU.js +0 -94
- package/documentation/PieChartSection-DZ-efnf5.js +0 -91
- package/documentation/PieChartSection-rvFWOh4i.js +0 -19
- package/documentation/PinCodeSection-DY6pf21z.js +0 -235
- package/documentation/PinCodeSection-iYhP8WRn.js +0 -32
- package/documentation/ProgressbarSection-CDDDOLHD.js +0 -22
- package/documentation/ProgressbarSection-DYz8aKoY.js +0 -142
- package/documentation/PromptsSection-DNXFATf2.js +0 -118
- package/documentation/PromptsSection-goD5CutA.js +0 -18
- package/documentation/RadarChartSection-DLousZqi.js +0 -114
- package/documentation/RadarChartSection-DRdLj3Uf.js +0 -21
- package/documentation/RadioGroupSection-BKRE5Sf7.js +0 -37
- package/documentation/RadioGroupSection-DimH8B5V.js +0 -269
- package/documentation/RadioSection-Bs-DIwBf.js +0 -183
- package/documentation/RadioSection-DAHq52V_.js +0 -27
- package/documentation/ResourcesSection-BBvso4xC.js +0 -119
- package/documentation/ResourcesSection-hRVu0-E3.js +0 -13
- package/documentation/RevealContentSection-CE7RMGJq.js +0 -80
- package/documentation/RevealContentSection-GfXzu3Ol.js +0 -21
- package/documentation/RouteConfigurationSection-B8L9XluH.js +0 -88
- package/documentation/RouteConfigurationSection-BYS8XsJC.js +0 -42
- package/documentation/ScrollToTopSection-DKG5MWPc.js +0 -38
- package/documentation/ScrollToTopSection-yVHR_9Pk.js +0 -141
- package/documentation/ScrollbarSection-DQF_A8ik.js +0 -103
- package/documentation/ScrollbarSection-eY8OTJHe.js +0 -30
- package/documentation/SecuritySection-64HgmRhe.js +0 -164
- package/documentation/SecuritySection-Bj_wYKUq.js +0 -27
- package/documentation/SelectSection-DJ3tgyvR.js +0 -52
- package/documentation/SelectSection-Dgxl0it2.js +0 -346
- package/documentation/SettingsPanelSection-SFgqPTH6.js +0 -139
- package/documentation/SettingsPanelSection-v6yvF5g4.js +0 -1
- package/documentation/ShadowsSection-D2Xwyeuv.js +0 -101
- package/documentation/ShadowsSection-OFJWDo8c.js +0 -1
- package/documentation/SidebarMenuSection-BFiHaKIQ.js +0 -108
- package/documentation/SidebarMenuSection-C-6Mru3D.js +0 -47
- package/documentation/SidebarSection-BUYMpIy9.js +0 -26
- package/documentation/SidebarSection-DHG4M5g2.js +0 -70
- package/documentation/SizingSection-CXXXGeBV.js +0 -1
- package/documentation/SizingSection-QO_NL9qO.js +0 -97
- package/documentation/SkeletonSection-C5O2AHio.js +0 -53
- package/documentation/SkeletonSection-D4gNU7bm.js +0 -202
- package/documentation/SonomaColorsSection-DaX0wgtU.js +0 -388
- package/documentation/SonomaColorsSection-qE3LKcsl.js +0 -1
- package/documentation/SonomaLayoutContentSection-KH_Pmq1e.js +0 -16
- package/documentation/SonomaLayoutContentSection-lk3jOdcA.js +0 -67
- package/documentation/SonomaLayoutSidebarSection-B_lVlOoF.js +0 -27
- package/documentation/SonomaLayoutSidebarSection-CGsVHx3w.js +0 -96
- package/documentation/SonomaMaterialsSection-B2GKoQVM.js +0 -334
- package/documentation/SonomaMaterialsSection-CgbY4y-g.js +0 -9
- package/documentation/SonomaShapesSection-CLA0w7wt.js +0 -482
- package/documentation/SonomaShapesSection-aQq097e6.js +0 -10
- package/documentation/SonomaTypographySection-DuZtgZjb.js +0 -1
- package/documentation/SonomaTypographySection-U1N16kAy.js +0 -389
- package/documentation/SpacingSystemSection-BkqBvLpk.js +0 -1
- package/documentation/SpacingSystemSection-DnU8aeIx.js +0 -79
- package/documentation/SpinnerSection-DDwEF3DD.js +0 -78
- package/documentation/SpinnerSection-Su1usSZJ.js +0 -18
- package/documentation/StandaloneAppSection-BC6MhdY2.js +0 -181
- package/documentation/StandaloneAppSection-DANtoenH.js +0 -71
- package/documentation/StepperSection-BLwNTd_9.js +0 -166
- package/documentation/StepperSection-BtE0uEh8.js +0 -29
- package/documentation/SwitchSection-Bm8EmnZc.js +0 -223
- package/documentation/SwitchSection-MO2zu9Js.js +0 -28
- package/documentation/SystemOverviewSection-DXic3wL2.js +0 -1
- package/documentation/SystemOverviewSection-X7-1cqED.js +0 -58
- package/documentation/TabModalSection-ClQQ9-6q.js +0 -200
- package/documentation/TabModalSection-Cy5MPQVA.js +0 -52
- package/documentation/TabSection-CPijk6Ta.js +0 -293
- package/documentation/TabSection-qGiMXnBi.js +0 -85
- package/documentation/TabSelectSection-Bk-DIJad.js +0 -102
- package/documentation/TabSelectSection-BrYYnzPJ.js +0 -420
- package/documentation/TahoeCommandPaletteSection-CXpg1hY6.js +0 -21
- package/documentation/TahoeCommandPaletteSection-uLevgWk8.js +0 -217
- package/documentation/TahoeDialogSection-CD5v8gt3.js +0 -22
- package/documentation/TahoeDialogSection-e1-T1_QN.js +0 -228
- package/documentation/TahoeDockSection-CAo5ifrl.js +0 -29
- package/documentation/TahoeDockSection-DX2OvS5V.js +0 -228
- package/documentation/TahoeLayoutContentSection-BV20aXQn.js +0 -17
- package/documentation/TahoeLayoutContentSection-GRD0fXGl.js +0 -68
- package/documentation/TahoeLayoutSidebarSection-BBtU52ML.js +0 -114
- package/documentation/TahoeLayoutSidebarSection-CtTixYWq.js +0 -36
- package/documentation/TahoeNotificationBannerSection-DRI2NGMf.js +0 -144
- package/documentation/TahoeNotificationBannerSection-E_QfykrY.js +0 -22
- package/documentation/TahoePopoverSection-BALDKfWy.js +0 -220
- package/documentation/TahoePopoverSection-DxyiMe8a.js +0 -24
- package/documentation/TahoeProgressBarSection--ntwmqLK.js +0 -16
- package/documentation/TahoeProgressBarSection-BfluMJvJ.js +0 -124
- package/documentation/TahoeSearchBarSection-Cu3D_UUb.js +0 -117
- package/documentation/TahoeSearchBarSection-D0MgndhN.js +0 -10
- package/documentation/TahoeSegmentedControlSection-1o7lVQYN.js +0 -12
- package/documentation/TahoeSegmentedControlSection-mMZpbchw.js +0 -178
- package/documentation/TahoeToolbarSection-D8WWxm4T.js +0 -17
- package/documentation/TahoeToolbarSection-PFkeKd3i.js +0 -81
- package/documentation/TahoeWidgetSection-BVEBRImz.js +0 -13
- package/documentation/TahoeWidgetSection-rEATjL-l.js +0 -121
- package/documentation/TahoeWindowSection-DGavFNJq.js +0 -289
- package/documentation/TahoeWindowSection-u3bobm-J.js +0 -24
- package/documentation/TailwindConfigSection-Bq962qB7.js +0 -128
- package/documentation/TailwindConfigSection-gSs5teqc.js +0 -23
- package/documentation/TestingSection-C4zu2OqX.js +0 -36
- package/documentation/TestingSection-CubylMzq.js +0 -150
- package/documentation/TextareaSection-De5qUuU6.js +0 -34
- package/documentation/TextareaSection-Dh2N_sLE.js +0 -258
- package/documentation/ThemeArchitectureSection-B8s4f7v9.js +0 -27
- package/documentation/ThemeArchitectureSection-c2yjz-7G.js +0 -143
- package/documentation/ThemeConfigurationSection-BEHURMU6.js +0 -139
- package/documentation/ThemeConfigurationSection-ClZzmEKO.js +0 -1
- package/documentation/ThemeHooksSection-BBqxGbmE.js +0 -173
- package/documentation/ThemeHooksSection-BJ9-8M4s.js +0 -1
- package/documentation/ThemeProviderIntegrationSection-CJxrVkBK.js +0 -122
- package/documentation/ThemeProviderIntegrationSection-iwBZSotn.js +0 -73
- package/documentation/ThemeProviderRequiredSection-BO4kIXXp.js +0 -1
- package/documentation/ThemeProviderRequiredSection-DBZtSffE.js +0 -114
- package/documentation/ThemeProviderSection-DSP62663.js +0 -143
- package/documentation/ThemeProviderSection-DTJSAXbf.js +0 -1
- package/documentation/ToastSection-B8c3PKzz.js +0 -168
- package/documentation/ToastSection-JtNX8amB.js +0 -38
- package/documentation/ToggleBarSection-CDIah9a9.js +0 -186
- package/documentation/ToggleBarSection-Cru1aZle.js +0 -45
- package/documentation/ToolsSection-CZnoKySA.js +0 -58
- package/documentation/ToolsSection-DgggfsKW.js +0 -221
- package/documentation/TooltipSection-CzgM1bYL.js +0 -185
- package/documentation/TooltipSection-U16kRVYC.js +0 -64
- package/documentation/TopupButtonSection-BkbtkCl1.js +0 -98
- package/documentation/TopupButtonSection-CcxFcarn.js +0 -25
- package/documentation/TransactionInfoSection-Bol_mikk.js +0 -86
- package/documentation/TransactionInfoSection-CL6fAjRQ.js +0 -16
- package/documentation/TucuUiLogoSection-BoczvN10.js +0 -26
- package/documentation/TucuUiLogoSection-CuIdpQE7.js +0 -85
- package/documentation/TypographySection--uRpR5g0.js +0 -33
- package/documentation/TypographySection-BaFvpZpE.js +0 -276
- package/documentation/TypographySection-C_BYg98p.js +0 -142
- package/documentation/TypographySection-Ct9gaoxy.js +0 -1
- package/documentation/UsageExamplesSection-BC5Bc2JE.js +0 -84
- package/documentation/UsageExamplesSection-CxLDaga8.js +0 -150
- package/documentation/UsingThemeSystemSection-BTmRwgWH.js +0 -164
- package/documentation/UsingThemeSystemSection-B_CnEDPB.js +0 -106
- package/documentation/ValidationSystemSection-PT3LnSuX.js +0 -53
- package/documentation/ValidationSystemSection-gd_ZxQ3N.js +0 -222
- package/documentation/WCAGPrinciplesSection-BvBX0KP3.js +0 -1
- package/documentation/WCAGPrinciplesSection-D94j2dIa.js +0 -126
- package/index-COp_AWCS.js +0 -1194
- package/index-DYDFy1df.js +0 -77520
|
@@ -0,0 +1,126 @@
|
|
|
1
|
+
import { jsxs as t, jsx as e } from "react/jsx-runtime";
|
|
2
|
+
import { H as i, C as o, a as s, T as r, c as n, K as c } from "../index-DoxeCFUJ.js";
|
|
3
|
+
import { Settings as a, AlertTriangle as l } from "lucide-react";
|
|
4
|
+
import "react-router-dom";
|
|
5
|
+
import "react";
|
|
6
|
+
import "react-dom";
|
|
7
|
+
const f = () => /* @__PURE__ */ t("div", { className: "flex flex-col gap-8", children: [
|
|
8
|
+
/* @__PURE__ */ e(
|
|
9
|
+
i,
|
|
10
|
+
{
|
|
11
|
+
title: "Client Configuration",
|
|
12
|
+
description: "Connect the MCP server to your preferred AI assistant. Supports VS Code, Cursor, Claude Desktop, and any MCP-compatible client.",
|
|
13
|
+
icon: /* @__PURE__ */ e("div", { className: "w-16 h-16 sm:w-20 sm:h-20 bg-linear-to-br from-indigo-500 to-blue-500 rounded-full flex items-center justify-center shadow-lg", children: /* @__PURE__ */ e(a, { className: "w-8 h-8 sm:w-10 sm:h-10 text-white" }) })
|
|
14
|
+
}
|
|
15
|
+
),
|
|
16
|
+
/* @__PURE__ */ e(o, { children: /* @__PURE__ */ t(s, { title: "VS Code (GitHub Copilot / Continue)", children: [
|
|
17
|
+
/* @__PURE__ */ t(r, { className: "text-sm text-foreground/70 mb-3", children: [
|
|
18
|
+
"Create",
|
|
19
|
+
" ",
|
|
20
|
+
/* @__PURE__ */ e("code", { className: "px-1.5 py-0.5 bg-muted rounded text-xs font-mono", children: ".vscode/mcp.json" }),
|
|
21
|
+
" ",
|
|
22
|
+
"in your project root:"
|
|
23
|
+
] }),
|
|
24
|
+
/* @__PURE__ */ e(
|
|
25
|
+
n,
|
|
26
|
+
{
|
|
27
|
+
code: `{
|
|
28
|
+
"servers": {
|
|
29
|
+
"tucu-ui": {
|
|
30
|
+
"command": "npx",
|
|
31
|
+
"args": ["@e-burgos/tucu-ui-mcp"],
|
|
32
|
+
"env": {}
|
|
33
|
+
}
|
|
34
|
+
}
|
|
35
|
+
}`
|
|
36
|
+
}
|
|
37
|
+
)
|
|
38
|
+
] }) }),
|
|
39
|
+
/* @__PURE__ */ e(o, { children: /* @__PURE__ */ t(s, { title: "Cursor", children: [
|
|
40
|
+
/* @__PURE__ */ t(r, { className: "text-sm text-foreground/70 mb-3", children: [
|
|
41
|
+
"Create",
|
|
42
|
+
" ",
|
|
43
|
+
/* @__PURE__ */ e("code", { className: "px-1.5 py-0.5 bg-muted rounded text-xs font-mono", children: ".cursor/mcp.json" }),
|
|
44
|
+
" ",
|
|
45
|
+
"in your project root:"
|
|
46
|
+
] }),
|
|
47
|
+
/* @__PURE__ */ e(
|
|
48
|
+
n,
|
|
49
|
+
{
|
|
50
|
+
code: `{
|
|
51
|
+
"mcpServers": {
|
|
52
|
+
"tucu-ui": {
|
|
53
|
+
"command": "npx",
|
|
54
|
+
"args": ["@e-burgos/tucu-ui-mcp"],
|
|
55
|
+
"env": {}
|
|
56
|
+
}
|
|
57
|
+
}
|
|
58
|
+
}`
|
|
59
|
+
}
|
|
60
|
+
)
|
|
61
|
+
] }) }),
|
|
62
|
+
/* @__PURE__ */ e(o, { children: /* @__PURE__ */ t(s, { title: "Claude Desktop", children: [
|
|
63
|
+
/* @__PURE__ */ e(r, { className: "text-sm text-foreground/70 mb-3", children: "Edit the Claude Desktop config file:" }),
|
|
64
|
+
/* @__PURE__ */ t("div", { className: "mb-3", children: [
|
|
65
|
+
/* @__PURE__ */ e(c, { variant: "outline", className: "text-xs", children: "macOS" }),
|
|
66
|
+
/* @__PURE__ */ e(r, { className: "text-xs text-foreground/50 mt-1 font-mono", children: "~/Library/Application Support/Claude/claude_desktop_config.json" })
|
|
67
|
+
] }),
|
|
68
|
+
/* @__PURE__ */ t("div", { className: "mb-3", children: [
|
|
69
|
+
/* @__PURE__ */ e(c, { variant: "outline", className: "text-xs", children: "Windows" }),
|
|
70
|
+
/* @__PURE__ */ e(r, { className: "text-xs text-foreground/50 mt-1 font-mono", children: "%APPDATA%\\Claude\\claude_desktop_config.json" })
|
|
71
|
+
] }),
|
|
72
|
+
/* @__PURE__ */ e(
|
|
73
|
+
n,
|
|
74
|
+
{
|
|
75
|
+
code: `{
|
|
76
|
+
"mcpServers": {
|
|
77
|
+
"tucu-ui": {
|
|
78
|
+
"command": "npx",
|
|
79
|
+
"args": ["@e-burgos/tucu-ui-mcp"],
|
|
80
|
+
"env": {}
|
|
81
|
+
}
|
|
82
|
+
}
|
|
83
|
+
}`
|
|
84
|
+
}
|
|
85
|
+
)
|
|
86
|
+
] }) }),
|
|
87
|
+
/* @__PURE__ */ e(o, { children: /* @__PURE__ */ t(s, { title: "Remote HTTP (Fly.io / Self-hosted)", children: [
|
|
88
|
+
/* @__PURE__ */ e(r, { className: "text-sm text-foreground/70 mb-3", children: "Connect to a remote MCP server instance via HTTP+SSE transport:" }),
|
|
89
|
+
/* @__PURE__ */ e(
|
|
90
|
+
n,
|
|
91
|
+
{
|
|
92
|
+
code: `{
|
|
93
|
+
"servers": {
|
|
94
|
+
"tucu-ui-remote": {
|
|
95
|
+
"url": "https://tucu-ui-mcp.fly.dev/sse",
|
|
96
|
+
"headers": {
|
|
97
|
+
"Authorization": "Bearer YOUR_MCP_API_KEY"
|
|
98
|
+
}
|
|
99
|
+
}
|
|
100
|
+
}
|
|
101
|
+
}`
|
|
102
|
+
}
|
|
103
|
+
),
|
|
104
|
+
/* @__PURE__ */ e("div", { className: "mt-3 p-3 rounded-lg border border-amber-500/20 bg-amber-500/5", children: /* @__PURE__ */ t("div", { className: "flex items-center gap-2", children: [
|
|
105
|
+
/* @__PURE__ */ e(l, { className: "w-4 h-4 text-amber-500" }),
|
|
106
|
+
/* @__PURE__ */ e(r, { className: "text-xs text-amber-600 dark:text-amber-400 font-medium", children: "Always use HTTPS and keep your API key secret. Never commit keys to version control." })
|
|
107
|
+
] }) })
|
|
108
|
+
] }) }),
|
|
109
|
+
/* @__PURE__ */ e(o, { children: /* @__PURE__ */ t(s, { title: "Verify Connection", children: [
|
|
110
|
+
/* @__PURE__ */ e(r, { className: "text-sm text-foreground/70 mb-3", children: "After configuring, test the connection by asking your AI assistant:" }),
|
|
111
|
+
/* @__PURE__ */ e(
|
|
112
|
+
n,
|
|
113
|
+
{
|
|
114
|
+
code: `// Ask your AI assistant:
|
|
115
|
+
"List all tucu-ui components in the 'form' category"
|
|
116
|
+
|
|
117
|
+
// If configured correctly, the agent will call:
|
|
118
|
+
// Tool: list_components({ category: "form" })
|
|
119
|
+
// And return real component data from the MCP server`
|
|
120
|
+
}
|
|
121
|
+
)
|
|
122
|
+
] }) })
|
|
123
|
+
] });
|
|
124
|
+
export {
|
|
125
|
+
f as default
|
|
126
|
+
};
|
|
@@ -0,0 +1,134 @@
|
|
|
1
|
+
import { jsxs as t, Fragment as o, jsx as e } from "react/jsx-runtime";
|
|
2
|
+
import { H as s, T as r, C as l, c as n } from "../index-DoxeCFUJ.js";
|
|
3
|
+
import { Code as c } from "lucide-react";
|
|
4
|
+
import "react-router-dom";
|
|
5
|
+
import "react";
|
|
6
|
+
import "react-dom";
|
|
7
|
+
const x = () => /* @__PURE__ */ t(o, { children: [
|
|
8
|
+
/* @__PURE__ */ e(
|
|
9
|
+
s,
|
|
10
|
+
{
|
|
11
|
+
title: "Code Examples",
|
|
12
|
+
description: "Practical code examples showing how to use accessibility features in tucu-ui components. Each example includes comments explaining the ARIA behavior.",
|
|
13
|
+
icon: /* @__PURE__ */ e("div", { className: "w-20 h-20 sm:w-24 sm:h-24 md:w-32 md:h-32 bg-linear-to-br from-cyan-500 via-blue-500 to-indigo-500 rounded-full flex items-center justify-center shadow-lg", children: /* @__PURE__ */ e(c, { className: "w-10 h-10 sm:w-12 sm:h-12 md:w-16 md:h-16 text-white filter drop-shadow-lg" }) })
|
|
14
|
+
}
|
|
15
|
+
),
|
|
16
|
+
/* @__PURE__ */ t("section", { className: "space-y-8", children: [
|
|
17
|
+
/* @__PURE__ */ t("div", { className: "text-center", children: [
|
|
18
|
+
/* @__PURE__ */ e(r, { tag: "h2", className: "mb-2", children: "Accessible Component Patterns" }),
|
|
19
|
+
/* @__PURE__ */ e(
|
|
20
|
+
r,
|
|
21
|
+
{
|
|
22
|
+
tag: "p",
|
|
23
|
+
className: "text-gray-500 dark:text-gray-400 max-w-2xl mx-auto",
|
|
24
|
+
children: "Copy-paste examples with built-in accessibility"
|
|
25
|
+
}
|
|
26
|
+
)
|
|
27
|
+
] }),
|
|
28
|
+
/* @__PURE__ */ e("div", { className: "space-y-6", children: [
|
|
29
|
+
{
|
|
30
|
+
title: "Accessible Input with Error",
|
|
31
|
+
description: "Input automatically connects label, error, and helper text via aria attributes.",
|
|
32
|
+
code: `import { Input } from '@e-burgos/tucu-ui';
|
|
33
|
+
|
|
34
|
+
// Input auto-generates IDs with useId()
|
|
35
|
+
// label uses htmlFor → input id
|
|
36
|
+
// helperText → aria-describedby
|
|
37
|
+
// error → aria-invalid="true"
|
|
38
|
+
// required → aria-required="true"
|
|
39
|
+
<Input
|
|
40
|
+
label="Email Address"
|
|
41
|
+
placeholder="you@example.com"
|
|
42
|
+
required
|
|
43
|
+
error="Please enter a valid email"
|
|
44
|
+
helperText="We'll never share your email"
|
|
45
|
+
variant="ghost"
|
|
46
|
+
/>`
|
|
47
|
+
},
|
|
48
|
+
{
|
|
49
|
+
title: "Accessible Modal",
|
|
50
|
+
description: "Modal provides dialog semantics, Escape key, and focus restoration. Note: lacks focus trapping.",
|
|
51
|
+
code: `import { Modal } from '@e-burgos/tucu-ui';
|
|
52
|
+
|
|
53
|
+
// role="dialog" + aria-modal="true"
|
|
54
|
+
// aria-labelledby → title text
|
|
55
|
+
// aria-describedby → content text
|
|
56
|
+
// Escape key closes
|
|
57
|
+
// Focus restores to trigger on close
|
|
58
|
+
// ⚠️ Tab can escape modal (no focus trap)
|
|
59
|
+
<Modal
|
|
60
|
+
isOpen={isOpen}
|
|
61
|
+
setIsOpen={setIsOpen}
|
|
62
|
+
onClose={() => console.log('closed')}
|
|
63
|
+
text={{
|
|
64
|
+
title: 'Confirm Action',
|
|
65
|
+
content: 'Are you sure you want to proceed?',
|
|
66
|
+
button: 'Confirm',
|
|
67
|
+
backButton: 'Cancel',
|
|
68
|
+
}}
|
|
69
|
+
/>`
|
|
70
|
+
},
|
|
71
|
+
{
|
|
72
|
+
title: "Accessible Alert",
|
|
73
|
+
description: "Alert uses live regions so screen readers announce content changes immediately.",
|
|
74
|
+
code: `import { Alert } from '@e-burgos/tucu-ui';
|
|
75
|
+
|
|
76
|
+
// role="alert" → immediate announcement
|
|
77
|
+
// aria-live="assertive" + aria-atomic="true"
|
|
78
|
+
// Dismiss button has aria-label="Dismiss alert"
|
|
79
|
+
// Supports custom aria-label
|
|
80
|
+
<Alert
|
|
81
|
+
variant="warning"
|
|
82
|
+
dismissible={true}
|
|
83
|
+
aria-label="Important notification"
|
|
84
|
+
>
|
|
85
|
+
Your session will expire in 5 minutes.
|
|
86
|
+
</Alert>`
|
|
87
|
+
},
|
|
88
|
+
{
|
|
89
|
+
title: "Form with FormField",
|
|
90
|
+
description: "FormField wraps react-hook-form Controller and auto-wires errors to child components.",
|
|
91
|
+
code: `import { Form, FormField, Input, Select } from '@e-burgos/tucu-ui';
|
|
92
|
+
|
|
93
|
+
<Form onSubmit={handleSubmit}>
|
|
94
|
+
{/* FormField auto-injects error prop from form state */}
|
|
95
|
+
<FormField
|
|
96
|
+
name="email"
|
|
97
|
+
label="Email"
|
|
98
|
+
rules={{ required: 'Email is required' }}
|
|
99
|
+
>
|
|
100
|
+
<Input variant="ghost" placeholder="Enter email" />
|
|
101
|
+
</FormField>
|
|
102
|
+
|
|
103
|
+
<FormField
|
|
104
|
+
name="role"
|
|
105
|
+
label="Role"
|
|
106
|
+
rules={{ required: 'Role is required' }}
|
|
107
|
+
>
|
|
108
|
+
<Select
|
|
109
|
+
options={roleOptions}
|
|
110
|
+
variant="ghost"
|
|
111
|
+
placeholder="Select role"
|
|
112
|
+
/>
|
|
113
|
+
</FormField>
|
|
114
|
+
</Form>`
|
|
115
|
+
}
|
|
116
|
+
].map((i, a) => /* @__PURE__ */ e(l, { children: /* @__PURE__ */ t("div", { className: "w-full p-4 sm:p-6 space-y-4", children: [
|
|
117
|
+
/* @__PURE__ */ t("div", { children: [
|
|
118
|
+
/* @__PURE__ */ e(r, { tag: "h3", className: "font-semibold text-lg mb-1", children: i.title }),
|
|
119
|
+
/* @__PURE__ */ e(
|
|
120
|
+
r,
|
|
121
|
+
{
|
|
122
|
+
tag: "p",
|
|
123
|
+
className: "text-sm text-gray-500 dark:text-gray-400",
|
|
124
|
+
children: i.description
|
|
125
|
+
}
|
|
126
|
+
)
|
|
127
|
+
] }),
|
|
128
|
+
/* @__PURE__ */ e(n, { language: "tsx", code: i.code })
|
|
129
|
+
] }) }, a)) })
|
|
130
|
+
] })
|
|
131
|
+
] });
|
|
132
|
+
export {
|
|
133
|
+
x as default
|
|
134
|
+
};
|
|
@@ -0,0 +1,68 @@
|
|
|
1
|
+
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const e=require("react/jsx-runtime"),r=require("../index-DWDUS-PU.js"),s=require("lucide-react");require("react-router-dom");require("react");require("react-dom");const o=()=>{const i=[{title:"Accessible Input with Error",description:"Input automatically connects label, error, and helper text via aria attributes.",code:`import { Input } from '@e-burgos/tucu-ui';
|
|
2
|
+
|
|
3
|
+
// Input auto-generates IDs with useId()
|
|
4
|
+
// label uses htmlFor → input id
|
|
5
|
+
// helperText → aria-describedby
|
|
6
|
+
// error → aria-invalid="true"
|
|
7
|
+
// required → aria-required="true"
|
|
8
|
+
<Input
|
|
9
|
+
label="Email Address"
|
|
10
|
+
placeholder="you@example.com"
|
|
11
|
+
required
|
|
12
|
+
error="Please enter a valid email"
|
|
13
|
+
helperText="We'll never share your email"
|
|
14
|
+
variant="ghost"
|
|
15
|
+
/>`},{title:"Accessible Modal",description:"Modal provides dialog semantics, Escape key, and focus restoration. Note: lacks focus trapping.",code:`import { Modal } from '@e-burgos/tucu-ui';
|
|
16
|
+
|
|
17
|
+
// role="dialog" + aria-modal="true"
|
|
18
|
+
// aria-labelledby → title text
|
|
19
|
+
// aria-describedby → content text
|
|
20
|
+
// Escape key closes
|
|
21
|
+
// Focus restores to trigger on close
|
|
22
|
+
// ⚠️ Tab can escape modal (no focus trap)
|
|
23
|
+
<Modal
|
|
24
|
+
isOpen={isOpen}
|
|
25
|
+
setIsOpen={setIsOpen}
|
|
26
|
+
onClose={() => console.log('closed')}
|
|
27
|
+
text={{
|
|
28
|
+
title: 'Confirm Action',
|
|
29
|
+
content: 'Are you sure you want to proceed?',
|
|
30
|
+
button: 'Confirm',
|
|
31
|
+
backButton: 'Cancel',
|
|
32
|
+
}}
|
|
33
|
+
/>`},{title:"Accessible Alert",description:"Alert uses live regions so screen readers announce content changes immediately.",code:`import { Alert } from '@e-burgos/tucu-ui';
|
|
34
|
+
|
|
35
|
+
// role="alert" → immediate announcement
|
|
36
|
+
// aria-live="assertive" + aria-atomic="true"
|
|
37
|
+
// Dismiss button has aria-label="Dismiss alert"
|
|
38
|
+
// Supports custom aria-label
|
|
39
|
+
<Alert
|
|
40
|
+
variant="warning"
|
|
41
|
+
dismissible={true}
|
|
42
|
+
aria-label="Important notification"
|
|
43
|
+
>
|
|
44
|
+
Your session will expire in 5 minutes.
|
|
45
|
+
</Alert>`},{title:"Form with FormField",description:"FormField wraps react-hook-form Controller and auto-wires errors to child components.",code:`import { Form, FormField, Input, Select } from '@e-burgos/tucu-ui';
|
|
46
|
+
|
|
47
|
+
<Form onSubmit={handleSubmit}>
|
|
48
|
+
{/* FormField auto-injects error prop from form state */}
|
|
49
|
+
<FormField
|
|
50
|
+
name="email"
|
|
51
|
+
label="Email"
|
|
52
|
+
rules={{ required: 'Email is required' }}
|
|
53
|
+
>
|
|
54
|
+
<Input variant="ghost" placeholder="Enter email" />
|
|
55
|
+
</FormField>
|
|
56
|
+
|
|
57
|
+
<FormField
|
|
58
|
+
name="role"
|
|
59
|
+
label="Role"
|
|
60
|
+
rules={{ required: 'Role is required' }}
|
|
61
|
+
>
|
|
62
|
+
<Select
|
|
63
|
+
options={roleOptions}
|
|
64
|
+
variant="ghost"
|
|
65
|
+
placeholder="Select role"
|
|
66
|
+
/>
|
|
67
|
+
</FormField>
|
|
68
|
+
</Form>`}];return e.jsxs(e.Fragment,{children:[e.jsx(r.HeroCard,{title:"Code Examples",description:"Practical code examples showing how to use accessibility features in tucu-ui components. Each example includes comments explaining the ARIA behavior.",icon:e.jsx("div",{className:"w-20 h-20 sm:w-24 sm:h-24 md:w-32 md:h-32 bg-linear-to-br from-cyan-500 via-blue-500 to-indigo-500 rounded-full flex items-center justify-center shadow-lg",children:e.jsx(s.Code,{className:"w-10 h-10 sm:w-12 sm:h-12 md:w-16 md:h-16 text-white filter drop-shadow-lg"})})}),e.jsxs("section",{className:"space-y-8",children:[e.jsxs("div",{className:"text-center",children:[e.jsx(r.Typography,{tag:"h2",className:"mb-2",children:"Accessible Component Patterns"}),e.jsx(r.Typography,{tag:"p",className:"text-gray-500 dark:text-gray-400 max-w-2xl mx-auto",children:"Copy-paste examples with built-in accessibility"})]}),e.jsx("div",{className:"space-y-6",children:i.map((t,a)=>e.jsx(r.CardContainer,{children:e.jsxs("div",{className:"w-full p-4 sm:p-6 space-y-4",children:[e.jsxs("div",{children:[e.jsx(r.Typography,{tag:"h3",className:"font-semibold text-lg mb-1",children:t.title}),e.jsx(r.Typography,{tag:"p",className:"text-sm text-gray-500 dark:text-gray-400",children:t.description})]}),e.jsx(r.CodeBlock,{language:"tsx",code:t.code})]})},a))})]})]})};exports.default=o;
|
|
@@ -0,0 +1,132 @@
|
|
|
1
|
+
import { jsxs as e, Fragment as s, jsx as C } from "react/jsx-runtime";
|
|
2
|
+
import { H as c, C as a, a as l, T as i, b as o, P as t, A as d, c as m } from "../index-DoxeCFUJ.js";
|
|
3
|
+
import { Coins as h } from "lucide-react";
|
|
4
|
+
import "react-router-dom";
|
|
5
|
+
import "react";
|
|
6
|
+
import "react-dom";
|
|
7
|
+
import { b as n, e as g } from "../tether-DaYvmdAU.js";
|
|
8
|
+
const p = "data:image/svg+xml,%3csvg%20width='148'%20height='137'%20viewBox='0%200%20148%20137'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M62.3497%2038.2791C64.2756%2038.2794%2066.1582%2038.8508%2067.7593%2039.921C69.3605%2040.9912%2070.6084%2042.5121%2071.3452%2044.2915C72.082%2046.0709%2072.2746%2048.0288%2071.8987%2049.9176C71.5228%2051.8064%2070.5952%2053.5414%2069.2333%2054.9031C67.8714%2056.2648%2066.1363%2057.1921%2064.2474%2057.5677C62.3585%2057.9433%2060.4006%2057.7504%2058.6214%2057.0133C56.8421%2056.2762%2055.3214%2055.0281%2054.2515%2053.4268C53.1815%2051.8254%2052.6105%2049.9428%2052.6105%2048.0169C52.6109%2045.4342%2053.6371%2042.9573%2055.4636%2041.1312C57.29%2039.305%2059.767%2038.2791%2062.3497%2038.2791ZM85.8599%2038.2791C87.7857%2038.2796%2089.6682%2038.8511%2091.2692%2039.9214C92.8703%2040.9917%2094.118%2042.5126%2094.8547%2044.292C95.5914%2046.0714%2095.7839%2048.0293%2095.4079%2049.9181C95.0319%2051.8069%2094.1043%2053.5417%2092.7424%2054.9033C91.3804%2056.265%2089.6453%2057.1922%2087.7564%2057.5678C85.8676%2057.9433%2083.9097%2057.7503%2082.1305%2057.0132C80.3513%2056.2761%2078.8306%2055.028%2077.7607%2053.4267C76.6908%2051.8254%2076.1198%2049.9428%2076.1198%2048.0169C76.1202%2045.434%2077.1466%2042.957%2078.9732%2041.1309C80.7998%2039.3047%2083.277%2038.2789%2085.8599%2038.2791ZM85.8599%2079.2452C87.7857%2079.2456%2089.6682%2079.8171%2091.2692%2080.8874C92.8703%2081.9577%2094.118%2083.4787%2094.8547%2085.2581C95.5914%2087.0375%2095.7839%2088.9953%2095.4079%2090.8841C95.0319%2092.7729%2094.1043%2094.5078%2092.7424%2095.8694C91.3804%2097.231%2089.6453%2098.1582%2087.7564%2098.5338C85.8676%2098.9093%2083.9097%2098.7163%2082.1305%2097.9792C80.3513%2097.2421%2078.8306%2095.994%2077.7607%2094.3927C76.6908%2092.7914%2076.1198%2090.9088%2076.1198%2088.9829C76.1199%2087.704%2076.3719%2086.4376%2076.8615%2085.2561C77.351%2084.0745%2078.0685%2083.0009%2078.9729%2082.0967C79.8774%2081.1925%2080.9511%2080.4752%2082.1328%2079.9859C83.3144%2079.4967%2084.5809%2079.245%2085.8599%2079.2452ZM62.3497%2079.2452C64.2756%2079.2455%2066.1582%2079.8169%2067.7593%2080.887C69.3605%2081.9572%2070.6084%2083.4782%2071.3452%2085.2576C72.082%2087.0369%2072.2746%2088.9948%2071.8987%2090.8836C71.5228%2092.7725%2070.5952%2094.5074%2069.2333%2095.8691C67.8714%2097.2308%2066.1363%2098.1581%2064.2474%2098.5337C62.3585%2098.9093%2060.4006%2098.7164%2058.6214%2097.9793C56.8421%2097.2423%2055.3214%2095.9941%2054.2515%2094.3928C53.1815%2092.7914%2052.6105%2090.9088%2052.6105%2088.9829C52.6106%2087.704%2052.8625%2086.4377%2053.352%2085.2562C53.8415%2084.0747%2054.559%2083.0012%2055.4634%2082.097C56.3677%2081.1927%2057.4413%2080.4755%2058.6229%2079.9862C59.8045%2079.4969%2061.0709%2079.2451%2062.3497%2079.2452ZM50.2591%2059.0977C52.185%2059.098%2054.0676%2059.6694%2055.6687%2060.7396C57.2699%2061.8098%2058.5178%2063.3307%2059.2546%2065.1101C59.9914%2066.8895%2060.184%2068.8474%2059.8081%2070.7362C59.4322%2072.625%2058.5046%2074.36%2057.1427%2075.7217C55.7808%2077.0834%2054.0457%2078.0107%2052.1568%2078.3863C50.2679%2078.7619%2048.31%2078.569%2046.5308%2077.8319C44.7515%2077.0948%2043.2308%2075.8467%2042.1608%2074.2453C41.0909%2072.644%2040.5198%2070.7614%2040.5198%2068.8355C40.5202%2066.2527%2041.5465%2063.7759%2043.373%2061.9498C45.1994%2060.1236%2047.6764%2059.0977%2050.2591%2059.0977ZM97.9505%2059.0977C99.8763%2059.0982%20101.759%2059.6697%20103.36%2060.74C104.961%2061.8103%20106.209%2063.3312%20106.945%2065.1106C107.682%2066.89%20107.875%2068.8479%20107.499%2070.7367C107.123%2072.6255%20106.195%2074.3603%20104.833%2075.7219C103.471%2077.0836%20101.736%2078.0108%2099.847%2078.3863C97.9582%2078.7619%2096.0004%2078.5689%2094.2211%2077.8318C92.4419%2077.0947%2090.9212%2075.8466%2089.8513%2074.2453C88.7815%2072.644%2088.2104%2070.7613%2088.2104%2068.8355C88.2105%2067.5565%2088.4625%2066.2901%2088.9521%2065.1086C89.4416%2063.9271%2090.1591%2062.8535%2091.0636%2061.9492C91.968%2061.045%2093.0417%2060.3278%2094.2234%2059.8385C95.4051%2059.3492%2096.6715%2059.0975%2097.9505%2059.0977ZM109.034%2042.3091C110.229%2042.3094%20111.397%2042.6642%20112.391%2043.3285C113.385%2043.9928%20114.159%2044.9369%20114.617%2046.0413C115.074%2047.1458%20115.193%2048.361%20114.96%2049.5334C114.726%2050.7057%20114.151%2051.7825%20113.305%2052.6277C112.46%2053.4728%20111.383%2054.0483%20110.211%2054.2814C109.038%2054.5145%20107.823%2054.3947%20106.719%2053.9372C105.614%2053.4797%20104.671%2052.705%20104.006%2051.7111C103.342%2050.7171%20102.988%2049.5486%20102.988%2048.3532C102.988%2047.5594%20103.144%2046.7733%20103.448%2046.0399C103.752%2045.3065%20104.197%2044.6401%20104.759%2044.0788C105.32%2043.5176%20105.987%2043.0724%20106.72%2042.7687C107.454%2042.4651%20108.24%2042.3089%20109.034%2042.3091ZM109.034%2082.6024C110.229%2082.6027%20111.397%2082.9575%20112.391%2083.6218C113.385%2084.2862%20114.159%2085.2302%20114.617%2086.3347C115.074%2087.4391%20115.193%2088.6544%20114.96%2089.8267C114.726%2090.9991%20114.151%2092.0759%20113.305%2092.921C112.46%2093.7661%20111.383%2094.3416%20110.211%2094.5747C109.038%2094.8078%20107.823%2094.688%20106.719%2094.2305C105.614%2093.773%20104.671%2092.9983%20104.006%2092.0044C103.342%2091.0105%20102.988%2089.842%20102.988%2088.6466C102.988%2087.8528%20103.144%2087.0667%20103.448%2086.3333C103.752%2085.5999%20104.197%2084.9335%20104.759%2084.3722C105.32%2083.8109%20105.987%2083.3658%20106.72%2083.0621C107.454%2082.7585%20108.24%2082.6022%20109.034%2082.6024ZM39.176%2082.6024C40.3714%2082.6026%2041.5399%2082.9572%2042.5337%2083.6215C43.5276%2084.2857%2044.3022%2085.2297%2044.7595%2086.3342C45.2169%2087.4386%2045.3365%2088.6538%2045.1032%2089.8262C44.8699%2090.9986%2044.2941%2092.0755%2043.4488%2092.9207C42.6035%2093.7659%2041.5265%2094.3415%2040.3541%2094.5747C39.1817%2094.8078%2037.9664%2094.6881%2036.8621%2094.2306C35.7577%2093.7731%2034.8138%2092.9984%2034.1497%2092.0045C33.4855%2091.0106%2033.1311%2089.842%2033.1311%2088.6466C33.1313%2087.0435%2033.7683%2085.5062%2034.9019%2084.3727C36.0355%2083.2392%2037.5729%2082.6024%2039.176%2082.6024ZM39.176%2042.3091C40.3714%2042.3093%2041.5399%2042.6639%2042.5337%2043.3281C43.5276%2043.9923%2044.3022%2044.9363%2044.7595%2046.0408C45.2169%2047.1452%2045.3365%2048.3605%2045.1032%2049.5329C44.8699%2050.7053%2044.2941%2051.7822%2043.4488%2052.6274C42.6035%2053.4726%2041.5265%2054.0482%2040.3541%2054.2813C39.1817%2054.5145%2037.9664%2054.3947%2036.8621%2053.9372C35.7577%2053.4797%2034.8138%2052.705%2034.1497%2051.7111C33.4855%2050.7172%2033.1311%2049.5486%2033.1311%2048.3532C33.1313%2046.7501%2033.7683%2045.2128%2034.9019%2044.0794C36.0355%2042.9459%2037.5729%2042.3091%2039.176%2042.3091ZM74.1048%2022.1617C75.3002%2022.162%2076.4686%2022.5167%2077.4623%2023.181C78.4561%2023.8454%2079.2306%2024.7894%2079.6878%2025.8939C80.145%2026.9983%2080.2645%2028.2136%2080.0311%2029.3859C79.7977%2030.5583%2079.2219%2031.6351%2078.3766%2032.4802C77.5312%2033.3254%2076.4543%2033.9008%2075.2818%2034.1339C74.1094%2034.367%2072.8943%2034.2472%2071.7899%2033.7897C70.6856%2033.3322%2069.7417%2032.5575%2069.0776%2031.5636C68.4135%2030.5697%2068.0591%2029.4011%2068.0591%2028.2058C68.0591%2027.4119%2068.2155%2026.6258%2068.5193%2025.8924C68.8232%2025.159%2069.2685%2024.4927%2069.8299%2023.9314C70.3914%2023.3701%2071.0578%2022.9249%2071.7913%2022.6213C72.5248%2022.3176%2073.3109%2022.1615%2074.1048%2022.1617ZM74.1048%20102.75C75.3002%20102.75%2076.4686%20103.105%2077.4623%20103.769C78.4561%20104.434%2079.2306%20105.378%2079.6878%20106.482C80.145%20107.587%2080.2645%20108.802%2080.0311%20109.974C79.7977%20111.147%2079.2219%20112.223%2078.3766%20113.068C77.5312%20113.914%2076.4543%20114.489%2075.2818%20114.722C74.1094%20114.955%2072.8943%20114.835%2071.7899%20114.378C70.6856%20113.92%2069.7417%20113.146%2069.0776%20112.152C68.4135%20111.158%2068.0591%20109.989%2068.0591%20108.794C68.0591%20108%2068.2155%20107.214%2068.5193%20106.481C68.8232%20105.747%2069.2685%20105.081%2069.8299%20104.52C70.3914%20103.958%2071.0578%20103.513%2071.7913%20103.21C72.5248%20102.906%2073.3109%20102.75%2074.1048%20102.75ZM99.9654%20108.794C100.962%20108.794%20101.935%20109.09%20102.763%20109.644C103.591%20110.197%20104.237%20110.984%20104.618%20111.904C104.999%20112.825%20105.098%20113.837%20104.904%20114.814C104.709%20115.791%20104.229%20116.688%20103.525%20117.393C102.82%20118.097%20101.923%20118.577%20100.946%20118.771C99.969%20118.965%2098.9563%20118.865%2098.0361%20118.484C97.1159%20118.103%2096.3293%20117.457%2095.776%20116.629C95.2226%20115.801%2094.9272%20114.827%2094.9272%20113.831C94.9272%20113.169%2095.0576%20112.514%2095.3108%20111.903C95.564%20111.292%2095.9351%20110.736%2096.403%20110.269C96.8708%20109.801%2097.4263%20109.43%2098.0375%20109.177C98.6488%20108.924%2099.3039%20108.794%2099.9654%20108.794ZM48.2442%20108.794C49.2402%20108.794%2050.2139%20109.09%2051.042%20109.644C51.87%20110.197%2052.5154%20110.984%2052.8963%20111.904C53.2773%20112.825%2053.3768%20113.837%2053.1823%20114.814C52.9878%20115.791%2052.508%20116.688%2051.8035%20117.393C51.0991%20118.097%2050.2016%20118.577%2049.2247%20118.771C48.2477%20118.965%2047.2351%20118.865%2046.3148%20118.484C45.3946%20118.103%2044.608%20117.457%2044.0547%20116.629C43.5013%20115.801%2043.206%20114.827%2043.206%20113.831C43.206%20113.169%2043.3363%20112.514%2043.5895%20111.903C43.8427%20111.292%2044.2138%20110.736%2044.6817%20110.269C45.1496%20109.801%2045.705%20109.43%2046.3162%20109.177C46.9275%20108.924%2047.5826%20108.794%2048.2442%20108.794ZM48.2442%2018.1325C49.2402%2018.1328%2050.2139%2018.4284%2051.042%2018.9821C51.87%2019.5357%2052.5154%2020.3224%2052.8963%2021.2427C53.2773%2022.1631%2053.3768%2023.1758%2053.1823%2024.1527C52.9878%2025.1296%2052.508%2026.0269%2051.8035%2026.7311C51.0991%2027.4354%2050.2016%2027.9149%2049.2247%2028.1092C48.2477%2028.3034%2047.2351%2028.2035%2046.3148%2027.8223C45.3946%2027.441%2044.608%2026.7955%2044.0547%2025.9672C43.5013%2025.139%2043.206%2024.1653%2043.206%2023.1692C43.206%2022.5076%2043.3363%2021.8525%2043.5895%2021.2413C43.8427%2020.6302%2044.2138%2020.0748%2044.6817%2019.6071C45.1496%2019.1394%2045.705%2018.7685%2046.3162%2018.5154C46.9275%2018.2624%2047.5826%2018.1323%2048.2442%2018.1325ZM99.9654%2018.1325C100.962%2018.1328%20101.935%2018.4284%20102.763%2018.9821C103.591%2019.5357%20104.237%2020.3224%20104.618%2021.2427C104.999%2022.1631%20105.098%2023.1758%20104.904%2024.1527C104.709%2025.1296%20104.229%2026.0269%20103.525%2026.7311C102.82%2027.4354%20101.923%2027.9149%20100.946%2028.1092C99.969%2028.3034%2098.9563%2028.2035%2098.0361%2027.8223C97.1159%2027.441%2096.3293%2026.7955%2095.776%2025.9672C95.2226%2025.139%2094.9272%2024.1653%2094.9272%2023.1692C94.9272%2022.5076%2095.0576%2021.8525%2095.3108%2021.2413C95.564%2020.6302%2095.9351%2020.0748%2096.403%2019.6071C96.8708%2019.1394%2097.4263%2018.7685%2098.0375%2018.5154C98.6488%2018.2624%2099.3039%2018.1323%2099.9654%2018.1325ZM126.162%2063.1277C127.158%2063.1278%20128.132%2063.4234%20128.96%2063.9769C129.788%2064.5304%20130.433%2065.3171%20130.814%2066.2374C131.195%2067.1578%20131.295%2068.1705%20131.101%2069.1474C130.906%2070.1244%20130.427%2071.0218%20129.722%2071.7261C129.018%2072.4304%20128.12%2072.91%20127.143%2073.1043C126.166%2073.2986%20125.154%2073.1988%20124.233%2072.8176C123.313%2072.4363%20122.526%2071.7907%20121.973%2070.9625C121.42%2070.1342%20121.124%2069.1605%20121.124%2068.1644C121.124%2066.8285%20121.655%2065.5474%20122.6%2064.6029C123.545%2063.6583%20124.826%2063.1277%20126.162%2063.1277ZM22.0472%2063.1277C23.0433%2063.1278%2024.017%2063.4234%2024.8452%2063.9769C25.6734%2064.5304%2026.3188%2065.3171%2026.6999%2066.2374C27.081%2067.1578%2027.1806%2068.1705%2026.9862%2069.1474C26.7918%2070.1244%2026.312%2071.0218%2025.6076%2071.7261C24.9032%2072.4304%2024.0057%2072.91%2023.0287%2073.1043C22.0517%2073.2986%2021.0391%2073.1988%2020.1188%2072.8176C19.1985%2072.4363%2018.4119%2071.7907%2017.8585%2070.9625C17.3051%2070.1342%2017.0097%2069.1605%2017.0097%2068.1644C17.0097%2067.5029%2017.14%2066.8479%2017.3932%2066.2367C17.6464%2065.6256%2018.0174%2065.0703%2018.4852%2064.6026C18.953%2064.1349%2019.5083%2063.7639%2020.1195%2063.5108C20.7307%2063.2578%2021.3857%2063.1276%2022.0472%2063.1277ZM18.3528%2032.235C19.1499%2032.235%2019.9291%2032.4713%2020.5918%2032.9142C21.2545%2033.357%2021.7711%2033.9865%2022.0761%2034.7229C22.3811%2035.4593%2022.4608%2036.2696%2022.3053%2037.0514C22.1497%2037.8332%2021.7658%2038.5512%2021.2021%2039.1148C20.6385%2039.6784%2019.9203%2040.0622%2019.1385%2040.2176C18.3567%2040.373%2017.5464%2040.293%2016.8101%2039.9879C16.0737%2039.6828%2015.4444%2039.1661%2015.0016%2038.5033C14.5589%2037.8405%2014.3227%2037.0613%2014.3228%2036.2642C14.3231%2035.1955%2014.7477%2034.1706%2015.5035%2033.4151C16.2592%2032.6595%2017.2841%2032.235%2018.3528%2032.235ZM18.3528%2096.7057C19.1499%2096.7057%2019.9291%2096.9421%2020.5918%2097.3849C21.2545%2097.8278%2021.7711%2098.4573%2022.0761%2099.1937C22.3811%2099.9301%2022.4608%20100.74%2022.3053%20101.522C22.1497%20102.304%2021.7658%20103.022%2021.2021%20103.586C20.6385%20104.149%2019.9203%20104.533%2019.1385%20104.688C18.3567%20104.844%2017.5464%20104.764%2016.8101%20104.459C16.0737%20104.154%2015.4444%20103.637%2015.0016%20102.974C14.5589%20102.311%2014.3227%20101.532%2014.3228%20100.735C14.3231%2099.6663%2014.7477%2098.6414%2015.5035%2097.8858C16.2592%2097.1302%2017.2841%2096.7057%2018.3528%2096.7057ZM129.856%2096.7057C130.653%2096.7057%20131.432%2096.9421%20132.095%2097.3849C132.758%2097.8278%20133.274%2098.4573%20133.579%2099.1937C133.884%2099.9301%20133.964%20100.74%20133.809%20101.522C133.653%20102.304%20133.269%20103.022%20132.705%20103.586C132.142%20104.149%20131.424%20104.533%20130.642%20104.688C129.86%20104.844%20129.05%20104.764%20128.313%20104.459C127.577%20104.154%20126.948%20103.637%20126.505%20102.974C126.062%20102.311%20125.826%20101.532%20125.826%20100.735C125.826%2099.6663%20126.251%2098.6414%20127.007%2097.8858C127.762%2097.1302%20128.787%2096.7057%20129.856%2096.7057ZM129.856%2032.235C130.653%2032.235%20131.432%2032.4713%20132.095%2032.9142C132.758%2033.357%20133.274%2033.9865%20133.579%2034.7229C133.884%2035.4593%20133.964%2036.2696%20133.809%2037.0514C133.653%2037.8332%20133.269%2038.5512%20132.705%2039.1148C132.142%2039.6784%20131.424%2040.0622%20130.642%2040.2176C129.86%2040.373%20129.05%2040.293%20128.313%2039.9879C127.577%2039.6828%20126.948%2039.1661%20126.505%2038.5033C126.062%2037.8405%20125.826%2037.0613%20125.826%2036.2642C125.826%2035.1955%20126.251%2034.1706%20127.007%2033.4151C127.762%2032.6595%20128.787%2032.235%20129.856%2032.235ZM74.1048%202.94133e-07C74.9019%200.000152533%2075.6809%200.236665%2076.3436%200.679609C77.0062%201.12255%2077.5226%201.75205%2077.8275%202.48848C78.1324%203.22492%2078.212%204.03521%2078.0564%204.81692C77.9007%205.59862%2077.5168%206.31663%2076.9531%206.88012C76.3894%207.44361%2075.6712%207.82727%2074.8895%207.98261C74.1077%208.13796%2073.2975%208.05801%2072.5611%207.75285C71.8248%207.44769%2071.1955%206.93101%2070.7528%206.26821C70.3101%205.6054%2070.0739%204.82622%2070.0741%204.02917C70.0741%203.49992%2070.1784%202.97588%2070.3809%202.48693C70.5835%201.99799%2070.8804%201.55374%2071.2547%201.17958C71.6291%200.805415%2072.0734%200.508635%2072.5624%200.30624C73.0514%200.103845%2073.5756%20-0.000201902%2074.1048%202.94133e-07ZM74.1048%20128.941C74.9018%20128.941%2075.6809%20129.177%2076.3435%20129.62C77.0061%20130.063%2077.5226%20130.693%2077.8275%20131.429C78.1323%20132.165%2078.212%20132.976%2078.0565%20133.757C77.9009%20134.539%2077.517%20135.257%2076.9534%20135.821C76.3897%20136.384%2075.6717%20136.768%2074.8899%20136.923C74.1082%20137.079%2073.298%20136.999%2072.5617%20136.694C71.8253%20136.389%2071.196%20135.872%2070.7532%20135.21C70.3104%20134.547%2070.0741%20133.768%2070.0741%20132.971C70.0741%20132.441%2070.1783%20131.917%2070.3809%20131.428C70.5835%20130.939%2070.8804%20130.495%2071.2547%20130.121C71.629%20129.747%2072.0734%20129.45%2072.5624%20129.247C73.0514%20129.045%2073.5755%20128.941%2074.1048%20128.941ZM109.705%20126.255C110.369%20126.255%20111.018%20126.452%20111.57%20126.821C112.123%20127.19%20112.553%20127.714%20112.807%20128.328C113.061%20128.941%20113.128%20129.616%20112.998%20130.268C112.869%20130.919%20112.549%20131.518%20112.079%20131.987C111.61%20132.457%20111.011%20132.777%20110.36%20132.906C109.708%20133.036%20109.033%20132.969%20108.42%20132.715C107.806%20132.461%20107.282%20132.03%20106.913%20131.478C106.544%20130.926%20106.347%20130.277%20106.347%20129.613C106.347%20129.172%20106.434%20128.735%20106.602%20128.328C106.771%20127.92%20107.018%20127.55%20107.33%20127.238C107.642%20126.926%20108.012%20126.679%20108.42%20126.51C108.827%20126.341%20109.264%20126.255%20109.705%20126.255ZM38.5041%20126.255C39.1682%20126.255%2039.8175%20126.452%2040.3697%20126.821C40.9219%20127.19%2041.3523%20127.714%2041.6065%20128.328C41.8607%20128.941%2041.9272%20129.616%2041.7976%20130.268C41.668%20130.919%2041.3482%20131.518%2040.8786%20131.987C40.409%20132.457%2039.8106%20132.777%2039.1592%20132.906C38.5078%20133.036%2037.8326%20132.969%2037.219%20132.715C36.6054%20132.461%2036.081%20132.03%2035.712%20131.478C35.343%20130.926%2035.1461%20130.277%2035.1461%20129.613C35.1461%20129.172%2035.2329%20128.735%2035.4017%20128.328C35.5704%20127.92%2035.8178%20127.55%2036.1296%20127.238C36.4414%20126.926%2036.8116%20126.679%2037.219%20126.51C37.6264%20126.341%2038.0631%20126.255%2038.5041%20126.255ZM38.5041%204.03227C39.1682%204.03227%2039.8175%204.22921%2040.3697%204.5982C40.9219%204.96718%2041.3523%205.49165%2041.6065%206.10525C41.8607%206.71885%2041.9272%207.39403%2041.7976%208.04542C41.668%208.69682%2041.3482%209.29518%2040.8786%209.76481C40.409%2010.2344%2039.8106%2010.5542%2039.1592%2010.6838C38.5078%2010.8134%2037.8326%2010.7469%2037.219%2010.4927C36.6054%2010.2385%2036.081%209.80814%2035.712%209.25591C35.343%208.70368%2035.1461%208.05444%2035.1461%207.39029C35.1457%206.94904%2035.2322%206.51208%2035.4008%206.10431C35.5694%205.69654%2035.8166%205.32594%2036.1285%205.0138C36.4404%204.70165%2036.8107%204.45405%2037.2183%204.2851C37.6259%204.11615%2038.0628%204.02917%2038.5041%204.02917V4.03227ZM109.705%204.03227C110.369%204.03227%20111.018%204.22921%20111.57%204.5982C112.123%204.96718%20112.553%205.49165%20112.807%206.10525C113.061%206.71885%20113.128%207.39403%20112.998%208.04542C112.869%208.69682%20112.549%209.29518%20112.079%209.76481C111.61%2010.2344%20111.011%2010.5542%20110.36%2010.6838C109.708%2010.8134%20109.033%2010.7469%20108.42%2010.4927C107.806%2010.2385%20107.282%209.80814%20106.913%209.25591C106.544%208.70368%20106.347%208.05444%20106.347%207.39029C106.346%206.94904%20106.433%206.51208%20106.601%206.10431C106.77%205.69654%20107.017%205.32594%20107.329%205.0138C107.641%204.70165%20108.011%204.45405%20108.419%204.2851C108.827%204.11615%20109.264%204.02917%20109.705%204.02917V4.03227ZM144.634%2065.1434C145.298%2065.1434%20145.947%2065.3404%20146.499%2065.7095C147.052%2066.0785%20147.482%2066.6031%20147.736%2067.2168C147.99%2067.8305%20148.057%2068.5057%20147.927%2069.1572C147.797%2069.8086%20147.477%2070.4069%20147.007%2070.8765C146.538%2071.3461%20145.939%2071.6658%20145.288%2071.7952C144.636%2071.9246%20143.961%2071.8578%20143.347%2071.6034C142.734%2071.349%20142.209%2070.9184%20141.841%2070.366C141.472%2069.8135%20141.275%2069.1641%20141.276%2068.4999C141.276%2068.0589%20141.362%2067.6223%20141.531%2067.2148C141.7%2066.8074%20141.947%2066.4373%20142.259%2066.1255C142.571%2065.8136%20142.941%2065.5663%20143.348%2065.3975C143.756%2065.2288%20144.193%2065.1419%20144.634%2065.1419V65.1434ZM3.5753%2065.1434C4.23952%2065.1434%204.88881%2065.3404%205.44107%2065.7095C5.99333%2066.0785%206.42374%2066.6031%206.67785%2067.2168C6.93197%2067.8305%206.99838%2068.5057%206.86868%2069.1572C6.73899%2069.8086%206.41902%2070.4069%205.94924%2070.8765C5.47945%2071.3461%204.88096%2071.6658%204.22947%2071.7952C3.57797%2071.9246%202.90274%2071.8578%202.28916%2071.6034C1.67559%2071.349%201.15124%2070.9184%200.78244%2070.366C0.41364%2069.8135%200.216951%2069.1641%200.217255%2068.4999C0.217255%2068.0589%200.304108%2067.6223%200.472866%2067.2148C0.641623%2066.8074%200.888978%2066.4373%201.2008%2066.1255C1.51262%2065.8136%201.88282%2065.5663%202.29023%2065.3975C2.69765%2065.2288%203.13431%2065.1419%203.5753%2065.1419V65.1434Z'%20fill='white'/%3e%3c/svg%3e", N = () => /* @__PURE__ */ e(s, { children: [
|
|
9
|
+
/* @__PURE__ */ C(
|
|
10
|
+
c,
|
|
11
|
+
{
|
|
12
|
+
title: "CoinCard",
|
|
13
|
+
description: "Display cryptocurrency information in a clean, card format with customizable background colors, price changes, and balance information.",
|
|
14
|
+
icon: /* @__PURE__ */ C("div", { className: "w-20 h-20 sm:w-24 sm:h-24 md:w-32 md:h-32 bg-linear-to-br from-amber-500 via-orange-500 to-yellow-500 rounded-full flex items-center justify-center shadow-lg border border-amber-500/50", children: /* @__PURE__ */ C(h, { className: "w-10 h-10 sm:w-12 sm:h-12 md:w-16 md:h-16 text-white filter drop-shadow-lg" }) })
|
|
15
|
+
}
|
|
16
|
+
),
|
|
17
|
+
/* @__PURE__ */ C(a, { className: "overflow-hidden", children: /* @__PURE__ */ C(l, { title: "Basic Examples", className: "mt-2 mb-2", children: /* @__PURE__ */ C("div", { className: "w-full p-4 sm:p-6", children: /* @__PURE__ */ e("div", { className: "grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-4", children: [
|
|
18
|
+
/* @__PURE__ */ e(a, { className: "p-4", children: [
|
|
19
|
+
/* @__PURE__ */ C(i, { tag: "h5", className: "mb-3", children: "Bitcoin" }),
|
|
20
|
+
/* @__PURE__ */ C(
|
|
21
|
+
o,
|
|
22
|
+
{
|
|
23
|
+
id: "bitcoin",
|
|
24
|
+
name: "Bitcoin",
|
|
25
|
+
symbol: "BTC",
|
|
26
|
+
logo: n,
|
|
27
|
+
balance: "1.25",
|
|
28
|
+
usdBalance: "45,000",
|
|
29
|
+
change: "+2.5%",
|
|
30
|
+
isChangePositive: !0,
|
|
31
|
+
color: "#FDEDD4"
|
|
32
|
+
}
|
|
33
|
+
)
|
|
34
|
+
] }),
|
|
35
|
+
/* @__PURE__ */ e(a, { className: "p-4", children: [
|
|
36
|
+
/* @__PURE__ */ C(i, { tag: "h5", className: "mb-3", children: "Tether" }),
|
|
37
|
+
/* @__PURE__ */ C(
|
|
38
|
+
o,
|
|
39
|
+
{
|
|
40
|
+
id: "tether",
|
|
41
|
+
name: "Tether",
|
|
42
|
+
symbol: "USDT",
|
|
43
|
+
logo: g,
|
|
44
|
+
balance: "10.5",
|
|
45
|
+
usdBalance: "33,600",
|
|
46
|
+
change: "-1.2%",
|
|
47
|
+
isChangePositive: !1,
|
|
48
|
+
color: "#E1F5FE"
|
|
49
|
+
}
|
|
50
|
+
)
|
|
51
|
+
] }),
|
|
52
|
+
/* @__PURE__ */ e(a, { className: "p-4", children: [
|
|
53
|
+
/* @__PURE__ */ C(i, { tag: "h5", className: "mb-3", children: "Cardano" }),
|
|
54
|
+
/* @__PURE__ */ C(
|
|
55
|
+
o,
|
|
56
|
+
{
|
|
57
|
+
id: "cardano",
|
|
58
|
+
name: "Cardano",
|
|
59
|
+
symbol: "ADA",
|
|
60
|
+
logo: p,
|
|
61
|
+
balance: "1,500",
|
|
62
|
+
usdBalance: "975",
|
|
63
|
+
change: "+5.8%",
|
|
64
|
+
isChangePositive: !0,
|
|
65
|
+
color: "#E8F5E8"
|
|
66
|
+
}
|
|
67
|
+
)
|
|
68
|
+
] })
|
|
69
|
+
] }) }) }) }),
|
|
70
|
+
/* @__PURE__ */ C(
|
|
71
|
+
t,
|
|
72
|
+
{
|
|
73
|
+
componentName: "CoinCard",
|
|
74
|
+
defaultValues: {
|
|
75
|
+
id: "bitcoin",
|
|
76
|
+
name: "Bitcoin",
|
|
77
|
+
symbol: "BTC",
|
|
78
|
+
balance: "1.25",
|
|
79
|
+
usdBalance: "45,000",
|
|
80
|
+
change: "+2.5%",
|
|
81
|
+
isChangePositive: !0,
|
|
82
|
+
color: "#FDEDD4"
|
|
83
|
+
},
|
|
84
|
+
controlOverrides: [
|
|
85
|
+
{
|
|
86
|
+
name: "isChangePositive",
|
|
87
|
+
type: "boolean",
|
|
88
|
+
description: "Whether the price change is positive"
|
|
89
|
+
},
|
|
90
|
+
{
|
|
91
|
+
name: "color",
|
|
92
|
+
type: "text",
|
|
93
|
+
description: "Background color of the card (hex)"
|
|
94
|
+
}
|
|
95
|
+
],
|
|
96
|
+
includeProps: [
|
|
97
|
+
"id",
|
|
98
|
+
"name",
|
|
99
|
+
"symbol",
|
|
100
|
+
"balance",
|
|
101
|
+
"usdBalance",
|
|
102
|
+
"change",
|
|
103
|
+
"isChangePositive",
|
|
104
|
+
"color"
|
|
105
|
+
],
|
|
106
|
+
children: (r) => /* @__PURE__ */ C("div", { className: "w-full max-w-sm", children: /* @__PURE__ */ C(o, { ...r, logo: n }) })
|
|
107
|
+
}
|
|
108
|
+
),
|
|
109
|
+
/* @__PURE__ */ C(d, { componentName: "CoinCard" }),
|
|
110
|
+
/* @__PURE__ */ C(a, { className: "overflow-hidden", children: /* @__PURE__ */ C(l, { title: "Code Example", className: "mt-2 mb-2", children: /* @__PURE__ */ C("div", { className: "w-full p-4 sm:p-6", children: /* @__PURE__ */ C(
|
|
111
|
+
m,
|
|
112
|
+
{
|
|
113
|
+
language: "tsx",
|
|
114
|
+
code: `import { CoinCard } from '@e-burgos/tucu-ui';
|
|
115
|
+
|
|
116
|
+
<CoinCard
|
|
117
|
+
id="bitcoin"
|
|
118
|
+
name="Bitcoin"
|
|
119
|
+
symbol="BTC"
|
|
120
|
+
logo="/icons/bitcoin.svg"
|
|
121
|
+
balance="1.25"
|
|
122
|
+
usdBalance="45,000"
|
|
123
|
+
change="+2.5%"
|
|
124
|
+
isChangePositive={true}
|
|
125
|
+
color="#FDEDD4"
|
|
126
|
+
/>`
|
|
127
|
+
}
|
|
128
|
+
) }) }) })
|
|
129
|
+
] });
|
|
130
|
+
export {
|
|
131
|
+
N as default
|
|
132
|
+
};
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const C=require("react/jsx-runtime"),e=require("../index-DWDUS-PU.js"),o=require("lucide-react");require("react-router-dom");require("react");require("react-dom");const a=require("../tether-EofDinu3.js"),n="data:image/svg+xml,%3csvg%20width='148'%20height='137'%20viewBox='0%200%20148%20137'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M62.3497%2038.2791C64.2756%2038.2794%2066.1582%2038.8508%2067.7593%2039.921C69.3605%2040.9912%2070.6084%2042.5121%2071.3452%2044.2915C72.082%2046.0709%2072.2746%2048.0288%2071.8987%2049.9176C71.5228%2051.8064%2070.5952%2053.5414%2069.2333%2054.9031C67.8714%2056.2648%2066.1363%2057.1921%2064.2474%2057.5677C62.3585%2057.9433%2060.4006%2057.7504%2058.6214%2057.0133C56.8421%2056.2762%2055.3214%2055.0281%2054.2515%2053.4268C53.1815%2051.8254%2052.6105%2049.9428%2052.6105%2048.0169C52.6109%2045.4342%2053.6371%2042.9573%2055.4636%2041.1312C57.29%2039.305%2059.767%2038.2791%2062.3497%2038.2791ZM85.8599%2038.2791C87.7857%2038.2796%2089.6682%2038.8511%2091.2692%2039.9214C92.8703%2040.9917%2094.118%2042.5126%2094.8547%2044.292C95.5914%2046.0714%2095.7839%2048.0293%2095.4079%2049.9181C95.0319%2051.8069%2094.1043%2053.5417%2092.7424%2054.9033C91.3804%2056.265%2089.6453%2057.1922%2087.7564%2057.5678C85.8676%2057.9433%2083.9097%2057.7503%2082.1305%2057.0132C80.3513%2056.2761%2078.8306%2055.028%2077.7607%2053.4267C76.6908%2051.8254%2076.1198%2049.9428%2076.1198%2048.0169C76.1202%2045.434%2077.1466%2042.957%2078.9732%2041.1309C80.7998%2039.3047%2083.277%2038.2789%2085.8599%2038.2791ZM85.8599%2079.2452C87.7857%2079.2456%2089.6682%2079.8171%2091.2692%2080.8874C92.8703%2081.9577%2094.118%2083.4787%2094.8547%2085.2581C95.5914%2087.0375%2095.7839%2088.9953%2095.4079%2090.8841C95.0319%2092.7729%2094.1043%2094.5078%2092.7424%2095.8694C91.3804%2097.231%2089.6453%2098.1582%2087.7564%2098.5338C85.8676%2098.9093%2083.9097%2098.7163%2082.1305%2097.9792C80.3513%2097.2421%2078.8306%2095.994%2077.7607%2094.3927C76.6908%2092.7914%2076.1198%2090.9088%2076.1198%2088.9829C76.1199%2087.704%2076.3719%2086.4376%2076.8615%2085.2561C77.351%2084.0745%2078.0685%2083.0009%2078.9729%2082.0967C79.8774%2081.1925%2080.9511%2080.4752%2082.1328%2079.9859C83.3144%2079.4967%2084.5809%2079.245%2085.8599%2079.2452ZM62.3497%2079.2452C64.2756%2079.2455%2066.1582%2079.8169%2067.7593%2080.887C69.3605%2081.9572%2070.6084%2083.4782%2071.3452%2085.2576C72.082%2087.0369%2072.2746%2088.9948%2071.8987%2090.8836C71.5228%2092.7725%2070.5952%2094.5074%2069.2333%2095.8691C67.8714%2097.2308%2066.1363%2098.1581%2064.2474%2098.5337C62.3585%2098.9093%2060.4006%2098.7164%2058.6214%2097.9793C56.8421%2097.2423%2055.3214%2095.9941%2054.2515%2094.3928C53.1815%2092.7914%2052.6105%2090.9088%2052.6105%2088.9829C52.6106%2087.704%2052.8625%2086.4377%2053.352%2085.2562C53.8415%2084.0747%2054.559%2083.0012%2055.4634%2082.097C56.3677%2081.1927%2057.4413%2080.4755%2058.6229%2079.9862C59.8045%2079.4969%2061.0709%2079.2451%2062.3497%2079.2452ZM50.2591%2059.0977C52.185%2059.098%2054.0676%2059.6694%2055.6687%2060.7396C57.2699%2061.8098%2058.5178%2063.3307%2059.2546%2065.1101C59.9914%2066.8895%2060.184%2068.8474%2059.8081%2070.7362C59.4322%2072.625%2058.5046%2074.36%2057.1427%2075.7217C55.7808%2077.0834%2054.0457%2078.0107%2052.1568%2078.3863C50.2679%2078.7619%2048.31%2078.569%2046.5308%2077.8319C44.7515%2077.0948%2043.2308%2075.8467%2042.1608%2074.2453C41.0909%2072.644%2040.5198%2070.7614%2040.5198%2068.8355C40.5202%2066.2527%2041.5465%2063.7759%2043.373%2061.9498C45.1994%2060.1236%2047.6764%2059.0977%2050.2591%2059.0977ZM97.9505%2059.0977C99.8763%2059.0982%20101.759%2059.6697%20103.36%2060.74C104.961%2061.8103%20106.209%2063.3312%20106.945%2065.1106C107.682%2066.89%20107.875%2068.8479%20107.499%2070.7367C107.123%2072.6255%20106.195%2074.3603%20104.833%2075.7219C103.471%2077.0836%20101.736%2078.0108%2099.847%2078.3863C97.9582%2078.7619%2096.0004%2078.5689%2094.2211%2077.8318C92.4419%2077.0947%2090.9212%2075.8466%2089.8513%2074.2453C88.7815%2072.644%2088.2104%2070.7613%2088.2104%2068.8355C88.2105%2067.5565%2088.4625%2066.2901%2088.9521%2065.1086C89.4416%2063.9271%2090.1591%2062.8535%2091.0636%2061.9492C91.968%2061.045%2093.0417%2060.3278%2094.2234%2059.8385C95.4051%2059.3492%2096.6715%2059.0975%2097.9505%2059.0977ZM109.034%2042.3091C110.229%2042.3094%20111.397%2042.6642%20112.391%2043.3285C113.385%2043.9928%20114.159%2044.9369%20114.617%2046.0413C115.074%2047.1458%20115.193%2048.361%20114.96%2049.5334C114.726%2050.7057%20114.151%2051.7825%20113.305%2052.6277C112.46%2053.4728%20111.383%2054.0483%20110.211%2054.2814C109.038%2054.5145%20107.823%2054.3947%20106.719%2053.9372C105.614%2053.4797%20104.671%2052.705%20104.006%2051.7111C103.342%2050.7171%20102.988%2049.5486%20102.988%2048.3532C102.988%2047.5594%20103.144%2046.7733%20103.448%2046.0399C103.752%2045.3065%20104.197%2044.6401%20104.759%2044.0788C105.32%2043.5176%20105.987%2043.0724%20106.72%2042.7687C107.454%2042.4651%20108.24%2042.3089%20109.034%2042.3091ZM109.034%2082.6024C110.229%2082.6027%20111.397%2082.9575%20112.391%2083.6218C113.385%2084.2862%20114.159%2085.2302%20114.617%2086.3347C115.074%2087.4391%20115.193%2088.6544%20114.96%2089.8267C114.726%2090.9991%20114.151%2092.0759%20113.305%2092.921C112.46%2093.7661%20111.383%2094.3416%20110.211%2094.5747C109.038%2094.8078%20107.823%2094.688%20106.719%2094.2305C105.614%2093.773%20104.671%2092.9983%20104.006%2092.0044C103.342%2091.0105%20102.988%2089.842%20102.988%2088.6466C102.988%2087.8528%20103.144%2087.0667%20103.448%2086.3333C103.752%2085.5999%20104.197%2084.9335%20104.759%2084.3722C105.32%2083.8109%20105.987%2083.3658%20106.72%2083.0621C107.454%2082.7585%20108.24%2082.6022%20109.034%2082.6024ZM39.176%2082.6024C40.3714%2082.6026%2041.5399%2082.9572%2042.5337%2083.6215C43.5276%2084.2857%2044.3022%2085.2297%2044.7595%2086.3342C45.2169%2087.4386%2045.3365%2088.6538%2045.1032%2089.8262C44.8699%2090.9986%2044.2941%2092.0755%2043.4488%2092.9207C42.6035%2093.7659%2041.5265%2094.3415%2040.3541%2094.5747C39.1817%2094.8078%2037.9664%2094.6881%2036.8621%2094.2306C35.7577%2093.7731%2034.8138%2092.9984%2034.1497%2092.0045C33.4855%2091.0106%2033.1311%2089.842%2033.1311%2088.6466C33.1313%2087.0435%2033.7683%2085.5062%2034.9019%2084.3727C36.0355%2083.2392%2037.5729%2082.6024%2039.176%2082.6024ZM39.176%2042.3091C40.3714%2042.3093%2041.5399%2042.6639%2042.5337%2043.3281C43.5276%2043.9923%2044.3022%2044.9363%2044.7595%2046.0408C45.2169%2047.1452%2045.3365%2048.3605%2045.1032%2049.5329C44.8699%2050.7053%2044.2941%2051.7822%2043.4488%2052.6274C42.6035%2053.4726%2041.5265%2054.0482%2040.3541%2054.2813C39.1817%2054.5145%2037.9664%2054.3947%2036.8621%2053.9372C35.7577%2053.4797%2034.8138%2052.705%2034.1497%2051.7111C33.4855%2050.7172%2033.1311%2049.5486%2033.1311%2048.3532C33.1313%2046.7501%2033.7683%2045.2128%2034.9019%2044.0794C36.0355%2042.9459%2037.5729%2042.3091%2039.176%2042.3091ZM74.1048%2022.1617C75.3002%2022.162%2076.4686%2022.5167%2077.4623%2023.181C78.4561%2023.8454%2079.2306%2024.7894%2079.6878%2025.8939C80.145%2026.9983%2080.2645%2028.2136%2080.0311%2029.3859C79.7977%2030.5583%2079.2219%2031.6351%2078.3766%2032.4802C77.5312%2033.3254%2076.4543%2033.9008%2075.2818%2034.1339C74.1094%2034.367%2072.8943%2034.2472%2071.7899%2033.7897C70.6856%2033.3322%2069.7417%2032.5575%2069.0776%2031.5636C68.4135%2030.5697%2068.0591%2029.4011%2068.0591%2028.2058C68.0591%2027.4119%2068.2155%2026.6258%2068.5193%2025.8924C68.8232%2025.159%2069.2685%2024.4927%2069.8299%2023.9314C70.3914%2023.3701%2071.0578%2022.9249%2071.7913%2022.6213C72.5248%2022.3176%2073.3109%2022.1615%2074.1048%2022.1617ZM74.1048%20102.75C75.3002%20102.75%2076.4686%20103.105%2077.4623%20103.769C78.4561%20104.434%2079.2306%20105.378%2079.6878%20106.482C80.145%20107.587%2080.2645%20108.802%2080.0311%20109.974C79.7977%20111.147%2079.2219%20112.223%2078.3766%20113.068C77.5312%20113.914%2076.4543%20114.489%2075.2818%20114.722C74.1094%20114.955%2072.8943%20114.835%2071.7899%20114.378C70.6856%20113.92%2069.7417%20113.146%2069.0776%20112.152C68.4135%20111.158%2068.0591%20109.989%2068.0591%20108.794C68.0591%20108%2068.2155%20107.214%2068.5193%20106.481C68.8232%20105.747%2069.2685%20105.081%2069.8299%20104.52C70.3914%20103.958%2071.0578%20103.513%2071.7913%20103.21C72.5248%20102.906%2073.3109%20102.75%2074.1048%20102.75ZM99.9654%20108.794C100.962%20108.794%20101.935%20109.09%20102.763%20109.644C103.591%20110.197%20104.237%20110.984%20104.618%20111.904C104.999%20112.825%20105.098%20113.837%20104.904%20114.814C104.709%20115.791%20104.229%20116.688%20103.525%20117.393C102.82%20118.097%20101.923%20118.577%20100.946%20118.771C99.969%20118.965%2098.9563%20118.865%2098.0361%20118.484C97.1159%20118.103%2096.3293%20117.457%2095.776%20116.629C95.2226%20115.801%2094.9272%20114.827%2094.9272%20113.831C94.9272%20113.169%2095.0576%20112.514%2095.3108%20111.903C95.564%20111.292%2095.9351%20110.736%2096.403%20110.269C96.8708%20109.801%2097.4263%20109.43%2098.0375%20109.177C98.6488%20108.924%2099.3039%20108.794%2099.9654%20108.794ZM48.2442%20108.794C49.2402%20108.794%2050.2139%20109.09%2051.042%20109.644C51.87%20110.197%2052.5154%20110.984%2052.8963%20111.904C53.2773%20112.825%2053.3768%20113.837%2053.1823%20114.814C52.9878%20115.791%2052.508%20116.688%2051.8035%20117.393C51.0991%20118.097%2050.2016%20118.577%2049.2247%20118.771C48.2477%20118.965%2047.2351%20118.865%2046.3148%20118.484C45.3946%20118.103%2044.608%20117.457%2044.0547%20116.629C43.5013%20115.801%2043.206%20114.827%2043.206%20113.831C43.206%20113.169%2043.3363%20112.514%2043.5895%20111.903C43.8427%20111.292%2044.2138%20110.736%2044.6817%20110.269C45.1496%20109.801%2045.705%20109.43%2046.3162%20109.177C46.9275%20108.924%2047.5826%20108.794%2048.2442%20108.794ZM48.2442%2018.1325C49.2402%2018.1328%2050.2139%2018.4284%2051.042%2018.9821C51.87%2019.5357%2052.5154%2020.3224%2052.8963%2021.2427C53.2773%2022.1631%2053.3768%2023.1758%2053.1823%2024.1527C52.9878%2025.1296%2052.508%2026.0269%2051.8035%2026.7311C51.0991%2027.4354%2050.2016%2027.9149%2049.2247%2028.1092C48.2477%2028.3034%2047.2351%2028.2035%2046.3148%2027.8223C45.3946%2027.441%2044.608%2026.7955%2044.0547%2025.9672C43.5013%2025.139%2043.206%2024.1653%2043.206%2023.1692C43.206%2022.5076%2043.3363%2021.8525%2043.5895%2021.2413C43.8427%2020.6302%2044.2138%2020.0748%2044.6817%2019.6071C45.1496%2019.1394%2045.705%2018.7685%2046.3162%2018.5154C46.9275%2018.2624%2047.5826%2018.1323%2048.2442%2018.1325ZM99.9654%2018.1325C100.962%2018.1328%20101.935%2018.4284%20102.763%2018.9821C103.591%2019.5357%20104.237%2020.3224%20104.618%2021.2427C104.999%2022.1631%20105.098%2023.1758%20104.904%2024.1527C104.709%2025.1296%20104.229%2026.0269%20103.525%2026.7311C102.82%2027.4354%20101.923%2027.9149%20100.946%2028.1092C99.969%2028.3034%2098.9563%2028.2035%2098.0361%2027.8223C97.1159%2027.441%2096.3293%2026.7955%2095.776%2025.9672C95.2226%2025.139%2094.9272%2024.1653%2094.9272%2023.1692C94.9272%2022.5076%2095.0576%2021.8525%2095.3108%2021.2413C95.564%2020.6302%2095.9351%2020.0748%2096.403%2019.6071C96.8708%2019.1394%2097.4263%2018.7685%2098.0375%2018.5154C98.6488%2018.2624%2099.3039%2018.1323%2099.9654%2018.1325ZM126.162%2063.1277C127.158%2063.1278%20128.132%2063.4234%20128.96%2063.9769C129.788%2064.5304%20130.433%2065.3171%20130.814%2066.2374C131.195%2067.1578%20131.295%2068.1705%20131.101%2069.1474C130.906%2070.1244%20130.427%2071.0218%20129.722%2071.7261C129.018%2072.4304%20128.12%2072.91%20127.143%2073.1043C126.166%2073.2986%20125.154%2073.1988%20124.233%2072.8176C123.313%2072.4363%20122.526%2071.7907%20121.973%2070.9625C121.42%2070.1342%20121.124%2069.1605%20121.124%2068.1644C121.124%2066.8285%20121.655%2065.5474%20122.6%2064.6029C123.545%2063.6583%20124.826%2063.1277%20126.162%2063.1277ZM22.0472%2063.1277C23.0433%2063.1278%2024.017%2063.4234%2024.8452%2063.9769C25.6734%2064.5304%2026.3188%2065.3171%2026.6999%2066.2374C27.081%2067.1578%2027.1806%2068.1705%2026.9862%2069.1474C26.7918%2070.1244%2026.312%2071.0218%2025.6076%2071.7261C24.9032%2072.4304%2024.0057%2072.91%2023.0287%2073.1043C22.0517%2073.2986%2021.0391%2073.1988%2020.1188%2072.8176C19.1985%2072.4363%2018.4119%2071.7907%2017.8585%2070.9625C17.3051%2070.1342%2017.0097%2069.1605%2017.0097%2068.1644C17.0097%2067.5029%2017.14%2066.8479%2017.3932%2066.2367C17.6464%2065.6256%2018.0174%2065.0703%2018.4852%2064.6026C18.953%2064.1349%2019.5083%2063.7639%2020.1195%2063.5108C20.7307%2063.2578%2021.3857%2063.1276%2022.0472%2063.1277ZM18.3528%2032.235C19.1499%2032.235%2019.9291%2032.4713%2020.5918%2032.9142C21.2545%2033.357%2021.7711%2033.9865%2022.0761%2034.7229C22.3811%2035.4593%2022.4608%2036.2696%2022.3053%2037.0514C22.1497%2037.8332%2021.7658%2038.5512%2021.2021%2039.1148C20.6385%2039.6784%2019.9203%2040.0622%2019.1385%2040.2176C18.3567%2040.373%2017.5464%2040.293%2016.8101%2039.9879C16.0737%2039.6828%2015.4444%2039.1661%2015.0016%2038.5033C14.5589%2037.8405%2014.3227%2037.0613%2014.3228%2036.2642C14.3231%2035.1955%2014.7477%2034.1706%2015.5035%2033.4151C16.2592%2032.6595%2017.2841%2032.235%2018.3528%2032.235ZM18.3528%2096.7057C19.1499%2096.7057%2019.9291%2096.9421%2020.5918%2097.3849C21.2545%2097.8278%2021.7711%2098.4573%2022.0761%2099.1937C22.3811%2099.9301%2022.4608%20100.74%2022.3053%20101.522C22.1497%20102.304%2021.7658%20103.022%2021.2021%20103.586C20.6385%20104.149%2019.9203%20104.533%2019.1385%20104.688C18.3567%20104.844%2017.5464%20104.764%2016.8101%20104.459C16.0737%20104.154%2015.4444%20103.637%2015.0016%20102.974C14.5589%20102.311%2014.3227%20101.532%2014.3228%20100.735C14.3231%2099.6663%2014.7477%2098.6414%2015.5035%2097.8858C16.2592%2097.1302%2017.2841%2096.7057%2018.3528%2096.7057ZM129.856%2096.7057C130.653%2096.7057%20131.432%2096.9421%20132.095%2097.3849C132.758%2097.8278%20133.274%2098.4573%20133.579%2099.1937C133.884%2099.9301%20133.964%20100.74%20133.809%20101.522C133.653%20102.304%20133.269%20103.022%20132.705%20103.586C132.142%20104.149%20131.424%20104.533%20130.642%20104.688C129.86%20104.844%20129.05%20104.764%20128.313%20104.459C127.577%20104.154%20126.948%20103.637%20126.505%20102.974C126.062%20102.311%20125.826%20101.532%20125.826%20100.735C125.826%2099.6663%20126.251%2098.6414%20127.007%2097.8858C127.762%2097.1302%20128.787%2096.7057%20129.856%2096.7057ZM129.856%2032.235C130.653%2032.235%20131.432%2032.4713%20132.095%2032.9142C132.758%2033.357%20133.274%2033.9865%20133.579%2034.7229C133.884%2035.4593%20133.964%2036.2696%20133.809%2037.0514C133.653%2037.8332%20133.269%2038.5512%20132.705%2039.1148C132.142%2039.6784%20131.424%2040.0622%20130.642%2040.2176C129.86%2040.373%20129.05%2040.293%20128.313%2039.9879C127.577%2039.6828%20126.948%2039.1661%20126.505%2038.5033C126.062%2037.8405%20125.826%2037.0613%20125.826%2036.2642C125.826%2035.1955%20126.251%2034.1706%20127.007%2033.4151C127.762%2032.6595%20128.787%2032.235%20129.856%2032.235ZM74.1048%202.94133e-07C74.9019%200.000152533%2075.6809%200.236665%2076.3436%200.679609C77.0062%201.12255%2077.5226%201.75205%2077.8275%202.48848C78.1324%203.22492%2078.212%204.03521%2078.0564%204.81692C77.9007%205.59862%2077.5168%206.31663%2076.9531%206.88012C76.3894%207.44361%2075.6712%207.82727%2074.8895%207.98261C74.1077%208.13796%2073.2975%208.05801%2072.5611%207.75285C71.8248%207.44769%2071.1955%206.93101%2070.7528%206.26821C70.3101%205.6054%2070.0739%204.82622%2070.0741%204.02917C70.0741%203.49992%2070.1784%202.97588%2070.3809%202.48693C70.5835%201.99799%2070.8804%201.55374%2071.2547%201.17958C71.6291%200.805415%2072.0734%200.508635%2072.5624%200.30624C73.0514%200.103845%2073.5756%20-0.000201902%2074.1048%202.94133e-07ZM74.1048%20128.941C74.9018%20128.941%2075.6809%20129.177%2076.3435%20129.62C77.0061%20130.063%2077.5226%20130.693%2077.8275%20131.429C78.1323%20132.165%2078.212%20132.976%2078.0565%20133.757C77.9009%20134.539%2077.517%20135.257%2076.9534%20135.821C76.3897%20136.384%2075.6717%20136.768%2074.8899%20136.923C74.1082%20137.079%2073.298%20136.999%2072.5617%20136.694C71.8253%20136.389%2071.196%20135.872%2070.7532%20135.21C70.3104%20134.547%2070.0741%20133.768%2070.0741%20132.971C70.0741%20132.441%2070.1783%20131.917%2070.3809%20131.428C70.5835%20130.939%2070.8804%20130.495%2071.2547%20130.121C71.629%20129.747%2072.0734%20129.45%2072.5624%20129.247C73.0514%20129.045%2073.5755%20128.941%2074.1048%20128.941ZM109.705%20126.255C110.369%20126.255%20111.018%20126.452%20111.57%20126.821C112.123%20127.19%20112.553%20127.714%20112.807%20128.328C113.061%20128.941%20113.128%20129.616%20112.998%20130.268C112.869%20130.919%20112.549%20131.518%20112.079%20131.987C111.61%20132.457%20111.011%20132.777%20110.36%20132.906C109.708%20133.036%20109.033%20132.969%20108.42%20132.715C107.806%20132.461%20107.282%20132.03%20106.913%20131.478C106.544%20130.926%20106.347%20130.277%20106.347%20129.613C106.347%20129.172%20106.434%20128.735%20106.602%20128.328C106.771%20127.92%20107.018%20127.55%20107.33%20127.238C107.642%20126.926%20108.012%20126.679%20108.42%20126.51C108.827%20126.341%20109.264%20126.255%20109.705%20126.255ZM38.5041%20126.255C39.1682%20126.255%2039.8175%20126.452%2040.3697%20126.821C40.9219%20127.19%2041.3523%20127.714%2041.6065%20128.328C41.8607%20128.941%2041.9272%20129.616%2041.7976%20130.268C41.668%20130.919%2041.3482%20131.518%2040.8786%20131.987C40.409%20132.457%2039.8106%20132.777%2039.1592%20132.906C38.5078%20133.036%2037.8326%20132.969%2037.219%20132.715C36.6054%20132.461%2036.081%20132.03%2035.712%20131.478C35.343%20130.926%2035.1461%20130.277%2035.1461%20129.613C35.1461%20129.172%2035.2329%20128.735%2035.4017%20128.328C35.5704%20127.92%2035.8178%20127.55%2036.1296%20127.238C36.4414%20126.926%2036.8116%20126.679%2037.219%20126.51C37.6264%20126.341%2038.0631%20126.255%2038.5041%20126.255ZM38.5041%204.03227C39.1682%204.03227%2039.8175%204.22921%2040.3697%204.5982C40.9219%204.96718%2041.3523%205.49165%2041.6065%206.10525C41.8607%206.71885%2041.9272%207.39403%2041.7976%208.04542C41.668%208.69682%2041.3482%209.29518%2040.8786%209.76481C40.409%2010.2344%2039.8106%2010.5542%2039.1592%2010.6838C38.5078%2010.8134%2037.8326%2010.7469%2037.219%2010.4927C36.6054%2010.2385%2036.081%209.80814%2035.712%209.25591C35.343%208.70368%2035.1461%208.05444%2035.1461%207.39029C35.1457%206.94904%2035.2322%206.51208%2035.4008%206.10431C35.5694%205.69654%2035.8166%205.32594%2036.1285%205.0138C36.4404%204.70165%2036.8107%204.45405%2037.2183%204.2851C37.6259%204.11615%2038.0628%204.02917%2038.5041%204.02917V4.03227ZM109.705%204.03227C110.369%204.03227%20111.018%204.22921%20111.57%204.5982C112.123%204.96718%20112.553%205.49165%20112.807%206.10525C113.061%206.71885%20113.128%207.39403%20112.998%208.04542C112.869%208.69682%20112.549%209.29518%20112.079%209.76481C111.61%2010.2344%20111.011%2010.5542%20110.36%2010.6838C109.708%2010.8134%20109.033%2010.7469%20108.42%2010.4927C107.806%2010.2385%20107.282%209.80814%20106.913%209.25591C106.544%208.70368%20106.347%208.05444%20106.347%207.39029C106.346%206.94904%20106.433%206.51208%20106.601%206.10431C106.77%205.69654%20107.017%205.32594%20107.329%205.0138C107.641%204.70165%20108.011%204.45405%20108.419%204.2851C108.827%204.11615%20109.264%204.02917%20109.705%204.02917V4.03227ZM144.634%2065.1434C145.298%2065.1434%20145.947%2065.3404%20146.499%2065.7095C147.052%2066.0785%20147.482%2066.6031%20147.736%2067.2168C147.99%2067.8305%20148.057%2068.5057%20147.927%2069.1572C147.797%2069.8086%20147.477%2070.4069%20147.007%2070.8765C146.538%2071.3461%20145.939%2071.6658%20145.288%2071.7952C144.636%2071.9246%20143.961%2071.8578%20143.347%2071.6034C142.734%2071.349%20142.209%2070.9184%20141.841%2070.366C141.472%2069.8135%20141.275%2069.1641%20141.276%2068.4999C141.276%2068.0589%20141.362%2067.6223%20141.531%2067.2148C141.7%2066.8074%20141.947%2066.4373%20142.259%2066.1255C142.571%2065.8136%20142.941%2065.5663%20143.348%2065.3975C143.756%2065.2288%20144.193%2065.1419%20144.634%2065.1419V65.1434ZM3.5753%2065.1434C4.23952%2065.1434%204.88881%2065.3404%205.44107%2065.7095C5.99333%2066.0785%206.42374%2066.6031%206.67785%2067.2168C6.93197%2067.8305%206.99838%2068.5057%206.86868%2069.1572C6.73899%2069.8086%206.41902%2070.4069%205.94924%2070.8765C5.47945%2071.3461%204.88096%2071.6658%204.22947%2071.7952C3.57797%2071.9246%202.90274%2071.8578%202.28916%2071.6034C1.67559%2071.349%201.15124%2070.9184%200.78244%2070.366C0.41364%2069.8135%200.216951%2069.1641%200.217255%2068.4999C0.217255%2068.0589%200.304108%2067.6223%200.472866%2067.2148C0.641623%2066.8074%200.888978%2066.4373%201.2008%2066.1255C1.51262%2065.8136%201.88282%2065.5663%202.29023%2065.3975C2.69765%2065.2288%203.13431%2065.1419%203.5753%2065.1419V65.1434Z'%20fill='white'/%3e%3c/svg%3e",r=()=>C.jsxs(C.Fragment,{children:[C.jsx(e.HeroCard,{title:"CoinCard",description:"Display cryptocurrency information in a clean, card format with customizable background colors, price changes, and balance information.",icon:C.jsx("div",{className:"w-20 h-20 sm:w-24 sm:h-24 md:w-32 md:h-32 bg-linear-to-br from-amber-500 via-orange-500 to-yellow-500 rounded-full flex items-center justify-center shadow-lg border border-amber-500/50",children:C.jsx(o.Coins,{className:"w-10 h-10 sm:w-12 sm:h-12 md:w-16 md:h-16 text-white filter drop-shadow-lg"})})}),C.jsx(e.CardContainer,{className:"overflow-hidden",children:C.jsx(e.CardTitle,{title:"Basic Examples",className:"mt-2 mb-2",children:C.jsx("div",{className:"w-full p-4 sm:p-6",children:C.jsxs("div",{className:"grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-4",children:[C.jsxs(e.CardContainer,{className:"p-4",children:[C.jsx(e.Typography,{tag:"h5",className:"mb-3",children:"Bitcoin"}),C.jsx(e.CoinCard,{id:"bitcoin",name:"Bitcoin",symbol:"BTC",logo:a.bitcoinImg,balance:"1.25",usdBalance:"45,000",change:"+2.5%",isChangePositive:!0,color:"#FDEDD4"})]}),C.jsxs(e.CardContainer,{className:"p-4",children:[C.jsx(e.Typography,{tag:"h5",className:"mb-3",children:"Tether"}),C.jsx(e.CoinCard,{id:"tether",name:"Tether",symbol:"USDT",logo:a.ethereumImg,balance:"10.5",usdBalance:"33,600",change:"-1.2%",isChangePositive:!1,color:"#E1F5FE"})]}),C.jsxs(e.CardContainer,{className:"p-4",children:[C.jsx(e.Typography,{tag:"h5",className:"mb-3",children:"Cardano"}),C.jsx(e.CoinCard,{id:"cardano",name:"Cardano",symbol:"ADA",logo:n,balance:"1,500",usdBalance:"975",change:"+5.8%",isChangePositive:!0,color:"#E8F5E8"})]})]})})})}),C.jsx(e.PropPlayground,{componentName:"CoinCard",defaultValues:{id:"bitcoin",name:"Bitcoin",symbol:"BTC",balance:"1.25",usdBalance:"45,000",change:"+2.5%",isChangePositive:!0,color:"#FDEDD4"},controlOverrides:[{name:"isChangePositive",type:"boolean",description:"Whether the price change is positive"},{name:"color",type:"text",description:"Background color of the card (hex)"}],includeProps:["id","name","symbol","balance","usdBalance","change","isChangePositive","color"],children:i=>C.jsx("div",{className:"w-full max-w-sm",children:C.jsx(e.CoinCard,{...i,logo:a.bitcoinImg})})}),C.jsx(e.AutoPropsTable,{componentName:"CoinCard"}),C.jsx(e.CardContainer,{className:"overflow-hidden",children:C.jsx(e.CardTitle,{title:"Code Example",className:"mt-2 mb-2",children:C.jsx("div",{className:"w-full p-4 sm:p-6",children:C.jsx(e.CodeBlock,{language:"tsx",code:`import { CoinCard } from '@e-burgos/tucu-ui';
|
|
2
|
+
|
|
3
|
+
<CoinCard
|
|
4
|
+
id="bitcoin"
|
|
5
|
+
name="Bitcoin"
|
|
6
|
+
symbol="BTC"
|
|
7
|
+
logo="/icons/bitcoin.svg"
|
|
8
|
+
balance="1.25"
|
|
9
|
+
usdBalance="45,000"
|
|
10
|
+
change="+2.5%"
|
|
11
|
+
isChangePositive={true}
|
|
12
|
+
color="#FDEDD4"
|
|
13
|
+
/>`})})})})]});exports.default=r;
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const e=require("react/jsx-runtime"),i=require("../index-DWDUS-PU.js"),o=require("lucide-react");require("react-router-dom");require("react");require("react-dom");const a=require("../tether-EofDinu3.js"),r=()=>e.jsxs(e.Fragment,{children:[e.jsx(i.HeroCard,{title:"CoinInfoCard",description:"Compact card component for displaying coin information with icon, name, and balance. Supports multiple size variants.",icon:e.jsx("div",{className:"w-20 h-20 sm:w-24 sm:h-24 md:w-32 md:h-32 bg-linear-to-br from-blue-500 via-cyan-500 to-teal-500 rounded-full flex items-center justify-center shadow-lg border border-blue-500/50",children:e.jsx(o.Info,{className:"w-10 h-10 sm:w-12 sm:h-12 md:w-16 md:h-16 text-white filter drop-shadow-lg"})})}),e.jsx(i.CardContainer,{className:"overflow-hidden",children:e.jsx(i.CardTitle,{title:"Basic Examples",className:"mt-2 mb-2",children:e.jsx("div",{className:"w-full p-4 sm:p-6",children:e.jsxs("div",{className:"grid grid-cols-1 md:grid-cols-2 gap-4",children:[e.jsxs(i.CardContainer,{className:"p-4",children:[e.jsx(i.Typography,{tag:"h5",className:"mb-3",children:"Basic Coin Info"}),e.jsx(i.CoinInfoCard,{item:{id:"bitcoin",name:"Bitcoin",logo:a.bitcoinImg,balance:"1.25 BTC"}})]}),e.jsxs(i.CardContainer,{className:"p-4",children:[e.jsx(i.Typography,{tag:"h5",className:"mb-3",children:"With Coin Type"}),e.jsx(i.CoinInfoCard,{item:{id:"ethereum",name:"Ethereum",logo:a.ethereumImg,balance:"5.5 ETH",coinType:"ERC-20"}})]})]})})})}),e.jsx(i.CardContainer,{className:"overflow-hidden",children:e.jsx(i.CardTitle,{title:"Variants",className:"mt-2 mb-2",children:e.jsx("div",{className:"w-full p-4 sm:p-6",children:e.jsxs("div",{className:"grid grid-cols-1 md:grid-cols-3 gap-4",children:[e.jsxs(i.CardContainer,{className:"p-4",children:[e.jsx(i.Typography,{tag:"h5",className:"mb-3",children:"Small (default)"}),e.jsx(i.CoinInfoCard,{item:{id:"bitcoin",name:"Bitcoin",logo:a.bitcoinImg,balance:"1.25 BTC"},variant:"small"})]}),e.jsxs(i.CardContainer,{className:"p-4",children:[e.jsx(i.Typography,{tag:"h5",className:"mb-3",children:"Medium"}),e.jsx(i.CoinInfoCard,{item:{id:"bitcoin",name:"Bitcoin",logo:a.bitcoinImg,balance:"1.25 BTC"},variant:"medium"})]}),e.jsxs(i.CardContainer,{className:"p-4",children:[e.jsx(i.Typography,{tag:"h5",className:"mb-3",children:"Large"}),e.jsx(i.CoinInfoCard,{item:{id:"bitcoin",name:"Bitcoin",logo:a.bitcoinImg,balance:"1.25 BTC"},variant:"large"})]})]})})})}),e.jsx(i.PropPlayground,{componentName:"CoinInfoCard",defaultValues:{variant:"small"},controlOverrides:[{name:"variant",type:"select",options:["small","medium","large"],description:"Size variant of the card"}],includeProps:["variant"],children:n=>e.jsx("div",{className:"w-full max-w-sm",children:e.jsx(i.CoinInfoCard,{...n,item:{id:"bitcoin",name:"Bitcoin",logo:a.bitcoinImg,balance:"1.25 BTC",coinType:"ERC-20"}})})}),e.jsx(i.AutoPropsTable,{componentName:"CoinInfoCard"}),e.jsx(i.CardContainer,{className:"overflow-hidden",children:e.jsx(i.CardTitle,{title:"Code Example",className:"mt-2 mb-2",children:e.jsx("div",{className:"w-full p-4 sm:p-6",children:e.jsx(i.CodeBlock,{language:"tsx",code:`import { CoinInfoCard } from '@e-burgos/tucu-ui';
|
|
2
|
+
|
|
3
|
+
<CoinInfoCard
|
|
4
|
+
item={{
|
|
5
|
+
id: 'bitcoin',
|
|
6
|
+
name: 'Bitcoin',
|
|
7
|
+
logo: '/icons/bitcoin.svg',
|
|
8
|
+
balance: '1.25 BTC',
|
|
9
|
+
coinType: 'ERC-20', // Optional
|
|
10
|
+
}}
|
|
11
|
+
variant="small" // 'small' | 'medium' | 'large'
|
|
12
|
+
/>`})})})})]});exports.default=r;
|