@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
|
@@ -1,339 +0,0 @@
|
|
|
1
|
-
import { jsxs as s, jsx as a } from "react/jsx-runtime";
|
|
2
|
-
import { useState as y, useEffect as u } from "react";
|
|
3
|
-
import { ay as w, H as $, C as l, a as d, aj as k, T as t } from "../index-DYDFy1df.js";
|
|
4
|
-
import { Palette as C, Info as S } from "lucide-react";
|
|
5
|
-
import "react-router-dom";
|
|
6
|
-
import "react-dom";
|
|
7
|
-
const c = (n) => {
|
|
8
|
-
if (typeof window > "u") return "";
|
|
9
|
-
const m = document.documentElement;
|
|
10
|
-
return getComputedStyle(m).getPropertyValue(n).trim() || "";
|
|
11
|
-
}, H = () => {
|
|
12
|
-
const { mode: n } = w(), [m, o] = y(0);
|
|
13
|
-
u(() => {
|
|
14
|
-
const e = setTimeout(() => {
|
|
15
|
-
o((r) => r + 1);
|
|
16
|
-
}, 100);
|
|
17
|
-
return () => clearTimeout(e);
|
|
18
|
-
}, [n]), u(() => {
|
|
19
|
-
const e = new MutationObserver(() => {
|
|
20
|
-
o((r) => r + 1);
|
|
21
|
-
});
|
|
22
|
-
return e.observe(document.documentElement, {
|
|
23
|
-
attributes: !0,
|
|
24
|
-
attributeFilter: ["class", "style"]
|
|
25
|
-
}), () => e.disconnect();
|
|
26
|
-
}, []);
|
|
27
|
-
const N = [
|
|
28
|
-
{ name: "Primary", class: "bg-primary", varName: "--color-primary" },
|
|
29
|
-
{ name: "Accent", class: "bg-accent", varName: "--color-accent" }
|
|
30
|
-
], v = [
|
|
31
|
-
{ name: "Secondary", class: "bg-secondary", varName: "--color-secondary" },
|
|
32
|
-
{ name: "Background", class: "bg-body", varName: "--color-body" },
|
|
33
|
-
{ name: "Dark", class: "bg-dark", varName: "--color-dark" }
|
|
34
|
-
], b = [
|
|
35
|
-
{ name: "Muted", class: "bg-muted", varName: "--color-muted" },
|
|
36
|
-
{ name: "Primary", class: "bg-foreground", varName: "--color-foreground" },
|
|
37
|
-
{ name: "Border", class: "bg-border", varName: "--color-border" }
|
|
38
|
-
], p = [
|
|
39
|
-
{ name: "Success", class: "bg-success", varName: "--color-success" },
|
|
40
|
-
{ name: "Warning", class: "bg-warning", varName: "--color-warning" },
|
|
41
|
-
{ name: "Error", class: "bg-error", varName: "--color-error" },
|
|
42
|
-
{ name: "Info", class: "bg-info", varName: "--color-info" }
|
|
43
|
-
], x = [
|
|
44
|
-
{
|
|
45
|
-
name: "blue",
|
|
46
|
-
shades: [0, 5, 10, 15, 20, 30, 40, 50, 60, 70, 80, 90, 100]
|
|
47
|
-
},
|
|
48
|
-
{
|
|
49
|
-
name: "green",
|
|
50
|
-
shades: [0, 5, 10, 15, 20, 30, 40, 50, 60, 70, 80, 90, 100]
|
|
51
|
-
},
|
|
52
|
-
{
|
|
53
|
-
name: "orange",
|
|
54
|
-
shades: [0, 5, 10, 15, 20, 30, 40, 50, 60, 70, 80, 90, 100]
|
|
55
|
-
},
|
|
56
|
-
{
|
|
57
|
-
name: "gray",
|
|
58
|
-
shades: [0, 5, 10, 15, 20, 30, 40, 50, 60, 70, 80, 90, 100]
|
|
59
|
-
},
|
|
60
|
-
{
|
|
61
|
-
name: "indigo",
|
|
62
|
-
shades: [0, 5, 10, 15, 20, 30, 40, 50, 60, 70, 80, 90, 100]
|
|
63
|
-
},
|
|
64
|
-
{
|
|
65
|
-
name: "pink",
|
|
66
|
-
shades: [0, 5, 10, 15, 20, 30, 40, 50, 60, 70, 80, 90, 100]
|
|
67
|
-
},
|
|
68
|
-
{
|
|
69
|
-
name: "purple",
|
|
70
|
-
shades: [0, 5, 10, 15, 20, 30, 40, 50, 60, 70, 80, 90, 100]
|
|
71
|
-
},
|
|
72
|
-
{
|
|
73
|
-
name: "red",
|
|
74
|
-
shades: [0, 5, 10, 15, 20, 30, 40, 50, 60, 70, 80, 90, 100]
|
|
75
|
-
},
|
|
76
|
-
{
|
|
77
|
-
name: "teal",
|
|
78
|
-
shades: [0, 5, 10, 15, 20, 30, 40, 50, 60, 70, 80, 90, 100]
|
|
79
|
-
},
|
|
80
|
-
{
|
|
81
|
-
name: "yellow",
|
|
82
|
-
shades: [0, 5, 10, 15, 20, 30, 40, 50, 60, 70, 80, 90, 100]
|
|
83
|
-
},
|
|
84
|
-
{
|
|
85
|
-
name: "chartreuse",
|
|
86
|
-
shades: [0, 5, 10, 15, 20, 30, 40, 50, 60, 70, 80, 90, 100]
|
|
87
|
-
}
|
|
88
|
-
], f = [
|
|
89
|
-
{ name: "brand", varName: "--color-brand", class: "bg-brand" },
|
|
90
|
-
{ name: "primary", varName: "--color-primary", class: "bg-primary" },
|
|
91
|
-
{ name: "secondary", varName: "--color-secondary", class: "bg-secondary" },
|
|
92
|
-
{ name: "accent", varName: "--color-accent", class: "bg-accent" },
|
|
93
|
-
{
|
|
94
|
-
name: "foreground",
|
|
95
|
-
varName: "--color-foreground",
|
|
96
|
-
class: "bg-foreground"
|
|
97
|
-
},
|
|
98
|
-
{ name: "muted", varName: "--color-muted", class: "bg-muted" },
|
|
99
|
-
{ name: "border", varName: "--color-border", class: "bg-border" },
|
|
100
|
-
{ name: "success", varName: "--color-success", class: "bg-success" },
|
|
101
|
-
{ name: "warning", varName: "--color-warning", class: "bg-warning" },
|
|
102
|
-
{ name: "error", varName: "--color-error", class: "bg-error" },
|
|
103
|
-
{ name: "info", varName: "--color-info", class: "bg-info" },
|
|
104
|
-
{ name: "body", varName: "--color-body", class: "bg-body" },
|
|
105
|
-
{ name: "dark", varName: "--color-dark", class: "bg-dark" },
|
|
106
|
-
{ name: "light", varName: "--color-light", class: "bg-light" },
|
|
107
|
-
{
|
|
108
|
-
name: "light-dark",
|
|
109
|
-
varName: "--color-light-dark",
|
|
110
|
-
class: "bg-light-dark"
|
|
111
|
-
}
|
|
112
|
-
];
|
|
113
|
-
return /* @__PURE__ */ s("div", { className: "space-y-8 max-w-6xl sm:space-y-12 w-full mx-auto px-4 sm:px-6 lg:px-8 relative pt-8 lg:pt-12", children: [
|
|
114
|
-
/* @__PURE__ */ a(
|
|
115
|
-
$,
|
|
116
|
-
{
|
|
117
|
-
title: "Color System",
|
|
118
|
-
description: "Carefully crafted color palettes that work across all themes and contexts.",
|
|
119
|
-
icon: /* @__PURE__ */ a("div", { className: "w-20 h-20 sm:w-24 sm:h-24 md:w-32 md:h-32 bg-linear-to-br from-pink-500 via-rose-500 to-red-500 rounded-full flex items-center justify-center shadow-lg", children: /* @__PURE__ */ a(C, { className: "w-10 h-10 sm:w-12 sm:h-12 md:w-16 md:h-16 text-white filter drop-shadow-lg" }) })
|
|
120
|
-
}
|
|
121
|
-
),
|
|
122
|
-
/* @__PURE__ */ s("div", { className: "space-y-8", children: [
|
|
123
|
-
/* @__PURE__ */ a(l, { className: "overflow-hidden", children: /* @__PURE__ */ a(d, { title: "Brand Colors", className: "mt-2 mb-2", children: /* @__PURE__ */ a("div", { className: "grid grid-cols-2 sm:grid-cols-4 gap-4 sm:gap-6", children: N.map((e) => {
|
|
124
|
-
const r = c(e.varName);
|
|
125
|
-
return /* @__PURE__ */ s(
|
|
126
|
-
"div",
|
|
127
|
-
{
|
|
128
|
-
className: "text-center space-y-2",
|
|
129
|
-
children: [
|
|
130
|
-
/* @__PURE__ */ a(
|
|
131
|
-
"div",
|
|
132
|
-
{
|
|
133
|
-
className: `w-16 h-16 rounded-lg ${e.class} mx-auto border border-border`
|
|
134
|
-
}
|
|
135
|
-
),
|
|
136
|
-
/* @__PURE__ */ s("div", { className: "text-sm", children: [
|
|
137
|
-
/* @__PURE__ */ a("div", { className: "font-semibold", children: e.name }),
|
|
138
|
-
/* @__PURE__ */ a("div", { className: "text-muted text-xs", children: r || e.varName })
|
|
139
|
-
] })
|
|
140
|
-
]
|
|
141
|
-
},
|
|
142
|
-
`${e.name}-${m}`
|
|
143
|
-
);
|
|
144
|
-
}) }) }) }),
|
|
145
|
-
/* @__PURE__ */ a(l, { className: "overflow-hidden", children: /* @__PURE__ */ a(d, { title: "Surfaces", className: "mt-2 mb-2", children: /* @__PURE__ */ a("div", { className: "grid grid-cols-2 sm:grid-cols-4 gap-4 sm:gap-6", children: v.map((e) => {
|
|
146
|
-
const r = c(e.varName);
|
|
147
|
-
return /* @__PURE__ */ s(
|
|
148
|
-
"div",
|
|
149
|
-
{
|
|
150
|
-
className: "text-center space-y-2",
|
|
151
|
-
children: [
|
|
152
|
-
/* @__PURE__ */ a(
|
|
153
|
-
"div",
|
|
154
|
-
{
|
|
155
|
-
className: `w-16 h-16 rounded-lg ${e.class} mx-auto border border-border`
|
|
156
|
-
}
|
|
157
|
-
),
|
|
158
|
-
/* @__PURE__ */ s("div", { className: "text-sm", children: [
|
|
159
|
-
/* @__PURE__ */ a("div", { className: "font-semibold", children: e.name }),
|
|
160
|
-
/* @__PURE__ */ a("div", { className: "text-muted text-xs", children: r || e.varName })
|
|
161
|
-
] })
|
|
162
|
-
]
|
|
163
|
-
},
|
|
164
|
-
`surface-${e.name}-${m}`
|
|
165
|
-
);
|
|
166
|
-
}) }) }) }),
|
|
167
|
-
/* @__PURE__ */ a(l, { className: "overflow-hidden", children: /* @__PURE__ */ a(d, { title: "Text", className: "mt-2 mb-2", children: /* @__PURE__ */ a("div", { className: "grid grid-cols-2 sm:grid-cols-3 gap-4 sm:gap-6", children: b.map((e) => {
|
|
168
|
-
const r = c(e.varName);
|
|
169
|
-
return /* @__PURE__ */ s(
|
|
170
|
-
"div",
|
|
171
|
-
{
|
|
172
|
-
className: "text-center space-y-2",
|
|
173
|
-
children: [
|
|
174
|
-
/* @__PURE__ */ a(
|
|
175
|
-
"div",
|
|
176
|
-
{
|
|
177
|
-
className: `w-16 h-16 rounded-lg ${e.class} mx-auto border border-border`
|
|
178
|
-
}
|
|
179
|
-
),
|
|
180
|
-
/* @__PURE__ */ s("div", { className: "text-sm", children: [
|
|
181
|
-
/* @__PURE__ */ a("div", { className: "font-semibold", children: e.name }),
|
|
182
|
-
/* @__PURE__ */ a("div", { className: "text-muted text-xs", children: r || e.varName })
|
|
183
|
-
] })
|
|
184
|
-
]
|
|
185
|
-
},
|
|
186
|
-
`text-${e.name}-${m}`
|
|
187
|
-
);
|
|
188
|
-
}) }) }) }),
|
|
189
|
-
/* @__PURE__ */ a(l, { className: "overflow-hidden", children: /* @__PURE__ */ a(d, { title: "Status", className: "mt-2 mb-2", children: /* @__PURE__ */ a("div", { className: "grid grid-cols-2 sm:grid-cols-4 gap-4 sm:gap-6", children: p.map((e) => {
|
|
190
|
-
const r = c(e.varName);
|
|
191
|
-
return /* @__PURE__ */ s(
|
|
192
|
-
"div",
|
|
193
|
-
{
|
|
194
|
-
className: "text-center space-y-2",
|
|
195
|
-
children: [
|
|
196
|
-
/* @__PURE__ */ a(
|
|
197
|
-
"div",
|
|
198
|
-
{
|
|
199
|
-
className: `w-16 h-16 rounded-lg ${e.class} mx-auto border border-border`
|
|
200
|
-
}
|
|
201
|
-
),
|
|
202
|
-
/* @__PURE__ */ s("div", { className: "text-sm", children: [
|
|
203
|
-
/* @__PURE__ */ a("div", { className: "font-semibold", children: e.name }),
|
|
204
|
-
/* @__PURE__ */ a("div", { className: "text-muted text-xs", children: r || e.varName })
|
|
205
|
-
] })
|
|
206
|
-
]
|
|
207
|
-
},
|
|
208
|
-
`status-${e.name}-${m}`
|
|
209
|
-
);
|
|
210
|
-
}) }) }) }),
|
|
211
|
-
/* @__PURE__ */ a(k, { variant: "info", children: /* @__PURE__ */ s("div", { children: [
|
|
212
|
-
/* @__PURE__ */ s("div", { className: "font-semibold flex items-center gap-2", children: [
|
|
213
|
-
/* @__PURE__ */ a(S, { className: "h-4 w-4" }),
|
|
214
|
-
"Dynamic Theming"
|
|
215
|
-
] }),
|
|
216
|
-
/* @__PURE__ */ a("div", { children: "Colors automatically adapt based on the selected theme preset and mode (light/dark)." })
|
|
217
|
-
] }) }),
|
|
218
|
-
/* @__PURE__ */ a(l, { className: "overflow-hidden", children: /* @__PURE__ */ a(d, { title: "Color Spectrum", className: "mt-2 mb-2", children: /* @__PURE__ */ s("div", { className: "w-full space-y-8 p-4 sm:p-6", children: [
|
|
219
|
-
/* @__PURE__ */ a(
|
|
220
|
-
t,
|
|
221
|
-
{
|
|
222
|
-
tag: "p",
|
|
223
|
-
className: "text-gray-600 dark:text-gray-400 mb-6",
|
|
224
|
-
children: "Complete color palette with all shades from 0 to 100 for each color spectrum."
|
|
225
|
-
}
|
|
226
|
-
),
|
|
227
|
-
/* @__PURE__ */ a("div", { className: "space-y-8", children: x.map((e) => /* @__PURE__ */ s("div", { children: [
|
|
228
|
-
/* @__PURE__ */ a(
|
|
229
|
-
t,
|
|
230
|
-
{
|
|
231
|
-
tag: "h3",
|
|
232
|
-
className: "font-semibold text-lg mb-4 capitalize",
|
|
233
|
-
children: e.name
|
|
234
|
-
}
|
|
235
|
-
),
|
|
236
|
-
/* @__PURE__ */ a("div", { className: "grid grid-cols-4 sm:grid-cols-7 md:grid-cols-10 lg:grid-cols-[repeat(13,minmax(0,1fr))] gap-2", children: e.shades.map((r) => {
|
|
237
|
-
const i = `bg-${e.name}-${r}`, g = `--color-${e.name}-${r}`, h = c(g);
|
|
238
|
-
return /* @__PURE__ */ s(
|
|
239
|
-
"div",
|
|
240
|
-
{
|
|
241
|
-
className: "space-y-1 w-full min-w-[40px]",
|
|
242
|
-
children: [
|
|
243
|
-
/* @__PURE__ */ a(
|
|
244
|
-
"div",
|
|
245
|
-
{
|
|
246
|
-
className: `h-16 w-full rounded border border-border ${i}`,
|
|
247
|
-
title: `${e.name}-${r}: ${h || g}`
|
|
248
|
-
}
|
|
249
|
-
),
|
|
250
|
-
/* @__PURE__ */ a(
|
|
251
|
-
t,
|
|
252
|
-
{
|
|
253
|
-
tag: "h4",
|
|
254
|
-
className: "text-center text-xs font-semibold",
|
|
255
|
-
children: r
|
|
256
|
-
}
|
|
257
|
-
),
|
|
258
|
-
h && /* @__PURE__ */ a(
|
|
259
|
-
t,
|
|
260
|
-
{
|
|
261
|
-
tag: "h4",
|
|
262
|
-
className: "text-center text-muted text-[10px]",
|
|
263
|
-
children: h
|
|
264
|
-
}
|
|
265
|
-
)
|
|
266
|
-
]
|
|
267
|
-
},
|
|
268
|
-
`${e.name}-${r}-${m}`
|
|
269
|
-
);
|
|
270
|
-
}) })
|
|
271
|
-
] }, e.name)) })
|
|
272
|
-
] }) }) }),
|
|
273
|
-
/* @__PURE__ */ a(l, { className: "overflow-hidden", children: /* @__PURE__ */ a(d, { title: "Main Colors", className: "mt-2 mb-2", children: /* @__PURE__ */ s("div", { className: "w-full space-y-8 p-4 sm:p-6", children: [
|
|
274
|
-
/* @__PURE__ */ a(
|
|
275
|
-
t,
|
|
276
|
-
{
|
|
277
|
-
tag: "p",
|
|
278
|
-
className: "text-gray-600 dark:text-gray-400 mb-6",
|
|
279
|
-
children: "Primary theme colors used throughout the application. These colors are mapped from semantic colors and adapt to light/dark mode."
|
|
280
|
-
}
|
|
281
|
-
),
|
|
282
|
-
/* @__PURE__ */ a("div", { className: "grid grid-cols-2 md:grid-cols-3 lg:grid-cols-4 gap-4", children: f.map((e) => {
|
|
283
|
-
const r = c(e.varName), i = e.name === "body" || e.name === "light" || e.name === "light-dark" ? "text-dark dark:text-light" : "text-white";
|
|
284
|
-
return /* @__PURE__ */ s(
|
|
285
|
-
"div",
|
|
286
|
-
{
|
|
287
|
-
className: "space-y-2 border border-border rounded-lg p-2",
|
|
288
|
-
children: [
|
|
289
|
-
/* @__PURE__ */ a(
|
|
290
|
-
"div",
|
|
291
|
-
{
|
|
292
|
-
className: `h-20 rounded flex items-center justify-center ${e.class} ${i} border border-border`,
|
|
293
|
-
title: `${e.name}: var(${e.varName})${r ? ` = ${r}` : ""}`,
|
|
294
|
-
children: /* @__PURE__ */ a(
|
|
295
|
-
t,
|
|
296
|
-
{
|
|
297
|
-
tag: "h4",
|
|
298
|
-
className: "text-center px-2 break-all text-xs",
|
|
299
|
-
children: e.name
|
|
300
|
-
}
|
|
301
|
-
)
|
|
302
|
-
}
|
|
303
|
-
),
|
|
304
|
-
/* @__PURE__ */ a(
|
|
305
|
-
t,
|
|
306
|
-
{
|
|
307
|
-
tag: "h4",
|
|
308
|
-
className: "text-center text-muted text-xs",
|
|
309
|
-
children: e.name
|
|
310
|
-
}
|
|
311
|
-
),
|
|
312
|
-
r && /* @__PURE__ */ a(
|
|
313
|
-
t,
|
|
314
|
-
{
|
|
315
|
-
tag: "h4",
|
|
316
|
-
className: "text-center text-muted text-[10px]",
|
|
317
|
-
children: r
|
|
318
|
-
}
|
|
319
|
-
),
|
|
320
|
-
/* @__PURE__ */ a(
|
|
321
|
-
t,
|
|
322
|
-
{
|
|
323
|
-
tag: "h4",
|
|
324
|
-
className: "text-center text-muted text-[9px] mt-1 break-all px-1",
|
|
325
|
-
children: e.class
|
|
326
|
-
}
|
|
327
|
-
)
|
|
328
|
-
]
|
|
329
|
-
},
|
|
330
|
-
`main-${e.name}-${m}`
|
|
331
|
-
);
|
|
332
|
-
}) })
|
|
333
|
-
] }) }) })
|
|
334
|
-
] })
|
|
335
|
-
] });
|
|
336
|
-
};
|
|
337
|
-
export {
|
|
338
|
-
H as default
|
|
339
|
-
};
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const e=require("react/jsx-runtime"),o=require("react"),s=require("../index-COp_AWCS.js"),x=require("lucide-react");require("react-router-dom");require("react-dom");const l=d=>{if(typeof window>"u")return"";const t=document.documentElement;return getComputedStyle(t).getPropertyValue(d).trim()||""},v=()=>{const{mode:d}=s.useTheme(),[t,c]=o.useState(0);o.useEffect(()=>{const a=setTimeout(()=>{c(r=>r+1)},100);return()=>clearTimeout(a)},[d]),o.useEffect(()=>{const a=new MutationObserver(()=>{c(r=>r+1)});return a.observe(document.documentElement,{attributes:!0,attributeFilter:["class","style"]}),()=>a.disconnect()},[]);const h=[{name:"Primary",class:"bg-primary",varName:"--color-primary"},{name:"Accent",class:"bg-accent",varName:"--color-accent"}],g=[{name:"Secondary",class:"bg-secondary",varName:"--color-secondary"},{name:"Background",class:"bg-body",varName:"--color-body"},{name:"Dark",class:"bg-dark",varName:"--color-dark"}],u=[{name:"Muted",class:"bg-muted",varName:"--color-muted"},{name:"Primary",class:"bg-foreground",varName:"--color-foreground"},{name:"Border",class:"bg-border",varName:"--color-border"}],p=[{name:"Success",class:"bg-success",varName:"--color-success"},{name:"Warning",class:"bg-warning",varName:"--color-warning"},{name:"Error",class:"bg-error",varName:"--color-error"},{name:"Info",class:"bg-info",varName:"--color-info"}],N=[{name:"blue",shades:[0,5,10,15,20,30,40,50,60,70,80,90,100]},{name:"green",shades:[0,5,10,15,20,30,40,50,60,70,80,90,100]},{name:"orange",shades:[0,5,10,15,20,30,40,50,60,70,80,90,100]},{name:"gray",shades:[0,5,10,15,20,30,40,50,60,70,80,90,100]},{name:"indigo",shades:[0,5,10,15,20,30,40,50,60,70,80,90,100]},{name:"pink",shades:[0,5,10,15,20,30,40,50,60,70,80,90,100]},{name:"purple",shades:[0,5,10,15,20,30,40,50,60,70,80,90,100]},{name:"red",shades:[0,5,10,15,20,30,40,50,60,70,80,90,100]},{name:"teal",shades:[0,5,10,15,20,30,40,50,60,70,80,90,100]},{name:"yellow",shades:[0,5,10,15,20,30,40,50,60,70,80,90,100]},{name:"chartreuse",shades:[0,5,10,15,20,30,40,50,60,70,80,90,100]}],b=[{name:"brand",varName:"--color-brand",class:"bg-brand"},{name:"primary",varName:"--color-primary",class:"bg-primary"},{name:"secondary",varName:"--color-secondary",class:"bg-secondary"},{name:"accent",varName:"--color-accent",class:"bg-accent"},{name:"foreground",varName:"--color-foreground",class:"bg-foreground"},{name:"muted",varName:"--color-muted",class:"bg-muted"},{name:"border",varName:"--color-border",class:"bg-border"},{name:"success",varName:"--color-success",class:"bg-success"},{name:"warning",varName:"--color-warning",class:"bg-warning"},{name:"error",varName:"--color-error",class:"bg-error"},{name:"info",varName:"--color-info",class:"bg-info"},{name:"body",varName:"--color-body",class:"bg-body"},{name:"dark",varName:"--color-dark",class:"bg-dark"},{name:"light",varName:"--color-light",class:"bg-light"},{name:"light-dark",varName:"--color-light-dark",class:"bg-light-dark"}];return e.jsxs("div",{className:"space-y-8 max-w-6xl sm:space-y-12 w-full mx-auto px-4 sm:px-6 lg:px-8 relative pt-8 lg:pt-12",children:[e.jsx(s.HeroCard,{title:"Color System",description:"Carefully crafted color palettes that work across all themes and contexts.",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-pink-500 via-rose-500 to-red-500 rounded-full flex items-center justify-center shadow-lg",children:e.jsx(x.Palette,{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("div",{className:"space-y-8",children:[e.jsx(s.CardContainer,{className:"overflow-hidden",children:e.jsx(s.CardTitle,{title:"Brand Colors",className:"mt-2 mb-2",children:e.jsx("div",{className:"grid grid-cols-2 sm:grid-cols-4 gap-4 sm:gap-6",children:h.map(a=>{const r=l(a.varName);return e.jsxs("div",{className:"text-center space-y-2",children:[e.jsx("div",{className:`w-16 h-16 rounded-lg ${a.class} mx-auto border border-border`}),e.jsxs("div",{className:"text-sm",children:[e.jsx("div",{className:"font-semibold",children:a.name}),e.jsx("div",{className:"text-muted text-xs",children:r||a.varName})]})]},`${a.name}-${t}`)})})})}),e.jsx(s.CardContainer,{className:"overflow-hidden",children:e.jsx(s.CardTitle,{title:"Surfaces",className:"mt-2 mb-2",children:e.jsx("div",{className:"grid grid-cols-2 sm:grid-cols-4 gap-4 sm:gap-6",children:g.map(a=>{const r=l(a.varName);return e.jsxs("div",{className:"text-center space-y-2",children:[e.jsx("div",{className:`w-16 h-16 rounded-lg ${a.class} mx-auto border border-border`}),e.jsxs("div",{className:"text-sm",children:[e.jsx("div",{className:"font-semibold",children:a.name}),e.jsx("div",{className:"text-muted text-xs",children:r||a.varName})]})]},`surface-${a.name}-${t}`)})})})}),e.jsx(s.CardContainer,{className:"overflow-hidden",children:e.jsx(s.CardTitle,{title:"Text",className:"mt-2 mb-2",children:e.jsx("div",{className:"grid grid-cols-2 sm:grid-cols-3 gap-4 sm:gap-6",children:u.map(a=>{const r=l(a.varName);return e.jsxs("div",{className:"text-center space-y-2",children:[e.jsx("div",{className:`w-16 h-16 rounded-lg ${a.class} mx-auto border border-border`}),e.jsxs("div",{className:"text-sm",children:[e.jsx("div",{className:"font-semibold",children:a.name}),e.jsx("div",{className:"text-muted text-xs",children:r||a.varName})]})]},`text-${a.name}-${t}`)})})})}),e.jsx(s.CardContainer,{className:"overflow-hidden",children:e.jsx(s.CardTitle,{title:"Status",className:"mt-2 mb-2",children:e.jsx("div",{className:"grid grid-cols-2 sm:grid-cols-4 gap-4 sm:gap-6",children:p.map(a=>{const r=l(a.varName);return e.jsxs("div",{className:"text-center space-y-2",children:[e.jsx("div",{className:`w-16 h-16 rounded-lg ${a.class} mx-auto border border-border`}),e.jsxs("div",{className:"text-sm",children:[e.jsx("div",{className:"font-semibold",children:a.name}),e.jsx("div",{className:"text-muted text-xs",children:r||a.varName})]})]},`status-${a.name}-${t}`)})})})}),e.jsx(s.Alert,{variant:"info",children:e.jsxs("div",{children:[e.jsxs("div",{className:"font-semibold flex items-center gap-2",children:[e.jsx(x.Info,{className:"h-4 w-4"}),"Dynamic Theming"]}),e.jsx("div",{children:"Colors automatically adapt based on the selected theme preset and mode (light/dark)."})]})}),e.jsx(s.CardContainer,{className:"overflow-hidden",children:e.jsx(s.CardTitle,{title:"Color Spectrum",className:"mt-2 mb-2",children:e.jsxs("div",{className:"w-full space-y-8 p-4 sm:p-6",children:[e.jsx(s.Typography,{tag:"p",className:"text-gray-600 dark:text-gray-400 mb-6",children:"Complete color palette with all shades from 0 to 100 for each color spectrum."}),e.jsx("div",{className:"space-y-8",children:N.map(a=>e.jsxs("div",{children:[e.jsx(s.Typography,{tag:"h3",className:"font-semibold text-lg mb-4 capitalize",children:a.name}),e.jsx("div",{className:"grid grid-cols-4 sm:grid-cols-7 md:grid-cols-10 lg:grid-cols-[repeat(13,minmax(0,1fr))] gap-2",children:a.shades.map(r=>{const n=`bg-${a.name}-${r}`,i=`--color-${a.name}-${r}`,m=l(i);return e.jsxs("div",{className:"space-y-1 w-full min-w-[40px]",children:[e.jsx("div",{className:`h-16 w-full rounded border border-border ${n}`,title:`${a.name}-${r}: ${m||i}`}),e.jsx(s.Typography,{tag:"h4",className:"text-center text-xs font-semibold",children:r}),m&&e.jsx(s.Typography,{tag:"h4",className:"text-center text-muted text-[10px]",children:m})]},`${a.name}-${r}-${t}`)})})]},a.name))})]})})}),e.jsx(s.CardContainer,{className:"overflow-hidden",children:e.jsx(s.CardTitle,{title:"Main Colors",className:"mt-2 mb-2",children:e.jsxs("div",{className:"w-full space-y-8 p-4 sm:p-6",children:[e.jsx(s.Typography,{tag:"p",className:"text-gray-600 dark:text-gray-400 mb-6",children:"Primary theme colors used throughout the application. These colors are mapped from semantic colors and adapt to light/dark mode."}),e.jsx("div",{className:"grid grid-cols-2 md:grid-cols-3 lg:grid-cols-4 gap-4",children:b.map(a=>{const r=l(a.varName),n=a.name==="body"||a.name==="light"||a.name==="light-dark"?"text-dark dark:text-light":"text-white";return e.jsxs("div",{className:"space-y-2 border border-border rounded-lg p-2",children:[e.jsx("div",{className:`h-20 rounded flex items-center justify-center ${a.class} ${n} border border-border`,title:`${a.name}: var(${a.varName})${r?` = ${r}`:""}`,children:e.jsx(s.Typography,{tag:"h4",className:"text-center px-2 break-all text-xs",children:a.name})}),e.jsx(s.Typography,{tag:"h4",className:"text-center text-muted text-xs",children:a.name}),r&&e.jsx(s.Typography,{tag:"h4",className:"text-center text-muted text-[10px]",children:r}),e.jsx(s.Typography,{tag:"h4",className:"text-center text-muted text-[9px] mt-1 break-all px-1",children:a.class})]},`main-${a.name}-${t}`)})})]})})})]})]})};exports.default=v;
|
|
@@ -1,77 +0,0 @@
|
|
|
1
|
-
import { jsxs as o, Fragment as i, jsx as e } from "react/jsx-runtime";
|
|
2
|
-
import { H as n, T as r, C as m, a as l, aj as d } from "../index-DYDFy1df.js";
|
|
3
|
-
import { Bug as c, AlertCircle as u, XCircle as h, Info as s, AlertTriangle as p } from "lucide-react";
|
|
4
|
-
import "react-router-dom";
|
|
5
|
-
import "react";
|
|
6
|
-
import "react-dom";
|
|
7
|
-
const x = () => /* @__PURE__ */ o(i, { children: [
|
|
8
|
-
/* @__PURE__ */ e(
|
|
9
|
-
n,
|
|
10
|
-
{
|
|
11
|
-
title: "Common Errors and Solutions",
|
|
12
|
-
description: "Troubleshooting guide for the most frequent layout system issues.",
|
|
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-red-500 via-rose-500 to-pink-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__ */ o("div", { className: "text-center", children: [
|
|
17
|
-
/* @__PURE__ */ e(r, { tag: "h2", className: "mb-2", children: "Common Errors and Solutions" }),
|
|
18
|
-
/* @__PURE__ */ e(
|
|
19
|
-
r,
|
|
20
|
-
{
|
|
21
|
-
tag: "p",
|
|
22
|
-
className: "text-gray-500 dark:text-gray-400 max-w-2xl mx-auto",
|
|
23
|
-
children: "Troubleshooting guide for the most frequent layout system issues"
|
|
24
|
-
}
|
|
25
|
-
)
|
|
26
|
-
] }),
|
|
27
|
-
/* @__PURE__ */ e(m, { className: "overflow-hidden", children: /* @__PURE__ */ e(l, { title: "Troubleshooting Guide", className: "mt-2 mb-2", children: /* @__PURE__ */ o("div", { className: "w-full space-y-6 p-4 sm:p-6", children: [
|
|
28
|
-
/* @__PURE__ */ o("div", { className: "flex items-center gap-3", children: [
|
|
29
|
-
/* @__PURE__ */ e("div", { className: "p-2 rounded-lg bg-linear-to-br from-red-500 via-rose-500 to-pink-500 shadow-md", children: /* @__PURE__ */ e(u, { className: "w-6 h-6 text-white filter drop-shadow-sm" }) }),
|
|
30
|
-
/* @__PURE__ */ e(r, { tag: "h3", className: "text-base font-semibold", children: "Common Issues" })
|
|
31
|
-
] }),
|
|
32
|
-
/* @__PURE__ */ e("div", { className: "space-y-6", children: [
|
|
33
|
-
{
|
|
34
|
-
variant: "error",
|
|
35
|
-
icon: /* @__PURE__ */ e(h, { className: "h-4 w-4" }),
|
|
36
|
-
title: "useTheme must be used within ThemeProvider",
|
|
37
|
-
description: "This error occurs when you try to use useTheme outside of ThemeProvider context. Always wrap your application with ThemeProvider first. The ThemeProvider must be at the root level of your application."
|
|
38
|
-
},
|
|
39
|
-
{
|
|
40
|
-
variant: "info",
|
|
41
|
-
icon: /* @__PURE__ */ e(s, { className: "h-4 w-4" }),
|
|
42
|
-
title: "Layout not rendering correctly",
|
|
43
|
-
description: "Make sure you're using ThemeProvider instead of trying to use RootLayout directly. ThemeProvider handles all layout logic internally. Also ensure menuItems prop is provided for Admin and Horizontal layouts."
|
|
44
|
-
},
|
|
45
|
-
{
|
|
46
|
-
variant: "warning",
|
|
47
|
-
icon: /* @__PURE__ */ e(p, { className: "h-4 w-4" }),
|
|
48
|
-
title: "Menu items not showing",
|
|
49
|
-
description: "For Admin and Horizontal layouts, you must provide the menuItems prop. Clean layout does not require menuItems. Ensure each menu item has at least a name and path property."
|
|
50
|
-
},
|
|
51
|
-
{
|
|
52
|
-
variant: "info",
|
|
53
|
-
icon: /* @__PURE__ */ e(s, { className: "h-4 w-4" }),
|
|
54
|
-
title: "Routing not working as expected?",
|
|
55
|
-
description: /* @__PURE__ */ o(i, { children: [
|
|
56
|
-
"Remember that ThemeProvider includes BrowserRouter internally. If you use customRoutes, make sure to use ",
|
|
57
|
-
/* @__PURE__ */ e("code", { children: "path" }),
|
|
58
|
-
" instead of",
|
|
59
|
-
" ",
|
|
60
|
-
/* @__PURE__ */ e("code", { children: "href" }),
|
|
61
|
-
" in menuItems. The ",
|
|
62
|
-
/* @__PURE__ */ e("code", { children: "component" }),
|
|
63
|
-
" prop in menuItems is only used for automatic routing. If you provide customRoutes, it takes precedence."
|
|
64
|
-
] })
|
|
65
|
-
}
|
|
66
|
-
].map((t, a) => /* @__PURE__ */ e(d, { variant: t.variant, children: /* @__PURE__ */ o("div", { children: [
|
|
67
|
-
/* @__PURE__ */ o("div", { className: "flex items-center gap-2 font-semibold", children: [
|
|
68
|
-
t.icon,
|
|
69
|
-
t.title
|
|
70
|
-
] }),
|
|
71
|
-
/* @__PURE__ */ e("div", { className: "text-sm mt-1", children: t.description })
|
|
72
|
-
] }) }, a)) })
|
|
73
|
-
] }) }) })
|
|
74
|
-
] });
|
|
75
|
-
export {
|
|
76
|
-
x as default
|
|
77
|
-
};
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const e=require("react/jsx-runtime"),s=require("../index-COp_AWCS.js"),t=require("lucide-react");require("react-router-dom");require("react");require("react-dom");const n=()=>{const o=[{variant:"error",icon:e.jsx(t.XCircle,{className:"h-4 w-4"}),title:"useTheme must be used within ThemeProvider",description:"This error occurs when you try to use useTheme outside of ThemeProvider context. Always wrap your application with ThemeProvider first. The ThemeProvider must be at the root level of your application."},{variant:"info",icon:e.jsx(t.Info,{className:"h-4 w-4"}),title:"Layout not rendering correctly",description:"Make sure you're using ThemeProvider instead of trying to use RootLayout directly. ThemeProvider handles all layout logic internally. Also ensure menuItems prop is provided for Admin and Horizontal layouts."},{variant:"warning",icon:e.jsx(t.AlertTriangle,{className:"h-4 w-4"}),title:"Menu items not showing",description:"For Admin and Horizontal layouts, you must provide the menuItems prop. Clean layout does not require menuItems. Ensure each menu item has at least a name and path property."},{variant:"info",icon:e.jsx(t.Info,{className:"h-4 w-4"}),title:"Routing not working as expected?",description:e.jsxs(e.Fragment,{children:["Remember that ThemeProvider includes BrowserRouter internally. If you use customRoutes, make sure to use ",e.jsx("code",{children:"path"})," instead of"," ",e.jsx("code",{children:"href"})," in menuItems. The ",e.jsx("code",{children:"component"})," prop in menuItems is only used for automatic routing. If you provide customRoutes, it takes precedence."]})}];return e.jsxs(e.Fragment,{children:[e.jsx(s.HeroCard,{title:"Common Errors and Solutions",description:"Troubleshooting guide for the most frequent layout system issues.",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-red-500 via-rose-500 to-pink-500 rounded-full flex items-center justify-center shadow-lg",children:e.jsx(t.Bug,{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("div",{className:"text-center",children:[e.jsx(s.Typography,{tag:"h2",className:"mb-2",children:"Common Errors and Solutions"}),e.jsx(s.Typography,{tag:"p",className:"text-gray-500 dark:text-gray-400 max-w-2xl mx-auto",children:"Troubleshooting guide for the most frequent layout system issues"})]}),e.jsx(s.CardContainer,{className:"overflow-hidden",children:e.jsx(s.CardTitle,{title:"Troubleshooting Guide",className:"mt-2 mb-2",children:e.jsxs("div",{className:"w-full space-y-6 p-4 sm:p-6",children:[e.jsxs("div",{className:"flex items-center gap-3",children:[e.jsx("div",{className:"p-2 rounded-lg bg-linear-to-br from-red-500 via-rose-500 to-pink-500 shadow-md",children:e.jsx(t.AlertCircle,{className:"w-6 h-6 text-white filter drop-shadow-sm"})}),e.jsx(s.Typography,{tag:"h3",className:"text-base font-semibold",children:"Common Issues"})]}),e.jsx("div",{className:"space-y-6",children:o.map((r,i)=>e.jsx(s.Alert,{variant:r.variant,children:e.jsxs("div",{children:[e.jsxs("div",{className:"flex items-center gap-2 font-semibold",children:[r.icon,r.title]}),e.jsx("div",{className:"text-sm mt-1",children:r.description})]})},i))})]})})})]})};exports.default=n;
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const e=require("react/jsx-runtime"),s=require("../index-COp_AWCS.js"),a=require("lucide-react");require("react-router-dom");require("react");require("react-dom");const m=()=>{const t=[{name:"Default",component:e.jsx(s.Button,{children:"Default"})},{name:"Hover",component:e.jsx(s.Button,{className:"hover:bg-primary/90",children:"Hover"})},{name:"Active",component:e.jsx(s.Button,{className:"active:bg-primary/95",children:"Active"})},{name:"Disabled",component:e.jsx(s.Button,{disabled:!0,children:"Disabled"})}],i=[{name:"Solid",component:e.jsx(s.Button,{variant:"solid",children:"Solid"})},{name:"Ghost",component:e.jsx(s.Button,{variant:"ghost",children:"Ghost"})},{name:"Transparent",component:e.jsx(s.Button,{variant:"transparent",children:"Transparent"})}],l=[{name:"Tiny",component:e.jsx(s.Button,{size:"tiny",children:"Tiny"})},{name:"Mini",component:e.jsx(s.Button,{size:"mini",children:"Mini"})},{name:"Small",component:e.jsx(s.Button,{size:"small",children:"Small"})},{name:"Medium",component:e.jsx(s.Button,{size:"medium",children:"Medium"})},{name:"Large",component:e.jsx(s.Button,{size:"large",children:"Large"})}];return e.jsxs("div",{className:"space-y-8 max-w-6xl sm:space-y-12 w-full mx-auto px-4 sm:px-6 lg:px-8 relative pt-8 lg:pt-12",children:[e.jsx(s.HeroCard,{title:"Component Anatomy",description:"Understanding component states, variants, and sizes for consistent implementation.",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-green-500 via-emerald-500 to-teal-500 rounded-full flex items-center justify-center shadow-lg",children:e.jsx(a.Component,{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("div",{className:"space-y-8",children:[e.jsx(s.CardContainer,{className:"overflow-hidden",children:e.jsx(s.CardTitle,{title:"Component States",className:"mt-2 mb-2",children:e.jsxs("div",{className:"w-full space-y-8 p-4 sm:p-6",children:[e.jsxs("div",{className:"flex items-center gap-3",children:[e.jsx("div",{className:"p-2 rounded-lg bg-linear-to-br from-green-500 via-emerald-500 to-teal-500 shadow-md",children:e.jsx(a.Layers,{className:"w-6 h-6 text-white filter drop-shadow-sm"})}),e.jsx(s.Typography,{tag:"h3",className:"text-base font-semibold",children:"Component States"})]}),e.jsx("div",{className:"flex flex-wrap gap-4 sm:gap-6",children:t.map(n=>e.jsxs("div",{className:"text-center space-y-2",children:[n.component,e.jsx("div",{className:"text-sm text-muted-foreground",children:n.name})]},n.name))})]})})}),e.jsx(s.CardContainer,{className:"overflow-hidden",children:e.jsx(s.CardTitle,{title:"Component Variants",className:"mt-2 mb-2",children:e.jsxs("div",{className:"w-full space-y-8 p-4 sm:p-6",children:[e.jsxs("div",{className:"flex items-center gap-3",children:[e.jsx("div",{className:"p-2 rounded-lg bg-linear-to-br from-purple-500 via-violet-500 to-indigo-500 shadow-md",children:e.jsx(a.Zap,{className:"w-6 h-6 text-white filter drop-shadow-sm"})}),e.jsx(s.Typography,{tag:"h3",className:"text-base font-semibold",children:"Component Variants"})]}),e.jsx("div",{className:"flex flex-wrap gap-4 sm:gap-6",children:i.map(n=>e.jsxs("div",{className:"text-center space-y-2",children:[n.component,e.jsx("div",{className:"text-sm text-muted-foreground",children:n.name})]},n.name))})]})})}),e.jsx(s.CardContainer,{className:"overflow-hidden",children:e.jsx(s.CardTitle,{title:"Component Sizes",className:"mt-2 mb-2",children:e.jsxs("div",{className:"w-full space-y-8 p-4 sm:p-6",children:[e.jsxs("div",{className:"flex items-center gap-3",children:[e.jsx("div",{className:"p-2 rounded-lg bg-linear-to-br from-blue-500 via-cyan-500 to-sky-500 shadow-md",children:e.jsx(a.Maximize,{className:"w-6 h-6 text-white filter drop-shadow-sm"})}),e.jsx(s.Typography,{tag:"h3",className:"text-base font-semibold",children:"Component Sizes"})]}),e.jsx("div",{className:"flex flex-wrap items-end gap-4 sm:gap-6",children:l.map(n=>e.jsxs("div",{className:"text-center space-y-2",children:[n.component,e.jsx("div",{className:"text-sm text-muted-foreground",children:n.name})]},n.name))})]})})})]})]})};exports.default=m;
|
|
@@ -1,78 +0,0 @@
|
|
|
1
|
-
import { jsxs as t, jsx as e } from "react/jsx-runtime";
|
|
2
|
-
import { H as d, C as s, a as m, T as i, x as a } from "../index-DYDFy1df.js";
|
|
3
|
-
import { Component as c, Layers as p, Zap as h, Maximize as f } from "lucide-react";
|
|
4
|
-
import "react-router-dom";
|
|
5
|
-
import "react";
|
|
6
|
-
import "react-dom";
|
|
7
|
-
const b = () => {
|
|
8
|
-
const l = [
|
|
9
|
-
{ name: "Default", component: /* @__PURE__ */ e(a, { children: "Default" }) },
|
|
10
|
-
{
|
|
11
|
-
name: "Hover",
|
|
12
|
-
component: /* @__PURE__ */ e(a, { className: "hover:bg-primary/90", children: "Hover" })
|
|
13
|
-
},
|
|
14
|
-
{
|
|
15
|
-
name: "Active",
|
|
16
|
-
component: /* @__PURE__ */ e(a, { className: "active:bg-primary/95", children: "Active" })
|
|
17
|
-
},
|
|
18
|
-
{ name: "Disabled", component: /* @__PURE__ */ e(a, { disabled: !0, children: "Disabled" }) }
|
|
19
|
-
], o = [
|
|
20
|
-
{ name: "Solid", component: /* @__PURE__ */ e(a, { variant: "solid", children: "Solid" }) },
|
|
21
|
-
{ name: "Ghost", component: /* @__PURE__ */ e(a, { variant: "ghost", children: "Ghost" }) },
|
|
22
|
-
{
|
|
23
|
-
name: "Transparent",
|
|
24
|
-
component: /* @__PURE__ */ e(a, { variant: "transparent", children: "Transparent" })
|
|
25
|
-
}
|
|
26
|
-
], r = [
|
|
27
|
-
{ name: "Tiny", component: /* @__PURE__ */ e(a, { size: "tiny", children: "Tiny" }) },
|
|
28
|
-
{ name: "Mini", component: /* @__PURE__ */ e(a, { size: "mini", children: "Mini" }) },
|
|
29
|
-
{ name: "Small", component: /* @__PURE__ */ e(a, { size: "small", children: "Small" }) },
|
|
30
|
-
{ name: "Medium", component: /* @__PURE__ */ e(a, { size: "medium", children: "Medium" }) },
|
|
31
|
-
{ name: "Large", component: /* @__PURE__ */ e(a, { size: "large", children: "Large" }) }
|
|
32
|
-
];
|
|
33
|
-
return /* @__PURE__ */ t("div", { className: "space-y-8 max-w-6xl sm:space-y-12 w-full mx-auto px-4 sm:px-6 lg:px-8 relative pt-8 lg:pt-12", children: [
|
|
34
|
-
/* @__PURE__ */ e(
|
|
35
|
-
d,
|
|
36
|
-
{
|
|
37
|
-
title: "Component Anatomy",
|
|
38
|
-
description: "Understanding component states, variants, and sizes for consistent implementation.",
|
|
39
|
-
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-green-500 via-emerald-500 to-teal-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" }) })
|
|
40
|
-
}
|
|
41
|
-
),
|
|
42
|
-
/* @__PURE__ */ t("div", { className: "space-y-8", children: [
|
|
43
|
-
/* @__PURE__ */ e(s, { className: "overflow-hidden", children: /* @__PURE__ */ e(m, { title: "Component States", className: "mt-2 mb-2", children: /* @__PURE__ */ t("div", { className: "w-full space-y-8 p-4 sm:p-6", children: [
|
|
44
|
-
/* @__PURE__ */ t("div", { className: "flex items-center gap-3", children: [
|
|
45
|
-
/* @__PURE__ */ e("div", { className: "p-2 rounded-lg bg-linear-to-br from-green-500 via-emerald-500 to-teal-500 shadow-md", children: /* @__PURE__ */ e(p, { className: "w-6 h-6 text-white filter drop-shadow-sm" }) }),
|
|
46
|
-
/* @__PURE__ */ e(i, { tag: "h3", className: "text-base font-semibold", children: "Component States" })
|
|
47
|
-
] }),
|
|
48
|
-
/* @__PURE__ */ e("div", { className: "flex flex-wrap gap-4 sm:gap-6", children: l.map((n) => /* @__PURE__ */ t("div", { className: "text-center space-y-2", children: [
|
|
49
|
-
n.component,
|
|
50
|
-
/* @__PURE__ */ e("div", { className: "text-sm text-muted-foreground", children: n.name })
|
|
51
|
-
] }, n.name)) })
|
|
52
|
-
] }) }) }),
|
|
53
|
-
/* @__PURE__ */ e(s, { className: "overflow-hidden", children: /* @__PURE__ */ e(m, { title: "Component Variants", className: "mt-2 mb-2", children: /* @__PURE__ */ t("div", { className: "w-full space-y-8 p-4 sm:p-6", children: [
|
|
54
|
-
/* @__PURE__ */ t("div", { className: "flex items-center gap-3", children: [
|
|
55
|
-
/* @__PURE__ */ e("div", { className: "p-2 rounded-lg bg-linear-to-br from-purple-500 via-violet-500 to-indigo-500 shadow-md", children: /* @__PURE__ */ e(h, { className: "w-6 h-6 text-white filter drop-shadow-sm" }) }),
|
|
56
|
-
/* @__PURE__ */ e(i, { tag: "h3", className: "text-base font-semibold", children: "Component Variants" })
|
|
57
|
-
] }),
|
|
58
|
-
/* @__PURE__ */ e("div", { className: "flex flex-wrap gap-4 sm:gap-6", children: o.map((n) => /* @__PURE__ */ t("div", { className: "text-center space-y-2", children: [
|
|
59
|
-
n.component,
|
|
60
|
-
/* @__PURE__ */ e("div", { className: "text-sm text-muted-foreground", children: n.name })
|
|
61
|
-
] }, n.name)) })
|
|
62
|
-
] }) }) }),
|
|
63
|
-
/* @__PURE__ */ e(s, { className: "overflow-hidden", children: /* @__PURE__ */ e(m, { title: "Component Sizes", className: "mt-2 mb-2", children: /* @__PURE__ */ t("div", { className: "w-full space-y-8 p-4 sm:p-6", children: [
|
|
64
|
-
/* @__PURE__ */ t("div", { className: "flex items-center gap-3", children: [
|
|
65
|
-
/* @__PURE__ */ e("div", { className: "p-2 rounded-lg bg-linear-to-br from-blue-500 via-cyan-500 to-sky-500 shadow-md", children: /* @__PURE__ */ e(f, { className: "w-6 h-6 text-white filter drop-shadow-sm" }) }),
|
|
66
|
-
/* @__PURE__ */ e(i, { tag: "h3", className: "text-base font-semibold", children: "Component Sizes" })
|
|
67
|
-
] }),
|
|
68
|
-
/* @__PURE__ */ e("div", { className: "flex flex-wrap items-end gap-4 sm:gap-6", children: r.map((n) => /* @__PURE__ */ t("div", { className: "text-center space-y-2", children: [
|
|
69
|
-
n.component,
|
|
70
|
-
/* @__PURE__ */ e("div", { className: "text-sm text-muted-foreground", children: n.name })
|
|
71
|
-
] }, n.name)) })
|
|
72
|
-
] }) }) })
|
|
73
|
-
] })
|
|
74
|
-
] });
|
|
75
|
-
};
|
|
76
|
-
export {
|
|
77
|
-
b as default
|
|
78
|
-
};
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const e=require("react/jsx-runtime"),a=require("../index-COp_AWCS.js"),t=require("lucide-react");require("react-router-dom");require("react");require("react-dom");const n=()=>{const i=[{name:"Input",status:"complete",features:["label + htmlFor association","aria-required on required fields","aria-invalid on error","aria-describedby for helperText/error","Auto-generated IDs via useId()"]},{name:"Button",status:"complete",features:["aria-busy during loading","aria-label support","aria-describedby support","Loading visually hides text without removing DOM","Focus ring visible on all variants"]},{name:"Modal",status:"partial",features:['role="dialog" + aria-modal="true"',"aria-labelledby + aria-describedby","Escape key closes","Focus restore on close","⚠️ Missing: Focus trapping (Tab can escape)"]},{name:"Drawer",status:"complete",features:['role="dialog" + aria-modal="true"',"Full focus trap (Tab/Shift+Tab cycles)","Escape key closes","Focus first element on open","Focus restore on close"]},{name:"Alert",status:"complete",features:['role="alert"','aria-live="assertive" + aria-atomic',"Dismiss button with aria-label","Supports custom aria-label prop","Dismissible toggle via prop"]},{name:"Tabs",status:"complete",features:['role="tablist" / role="tab" / role="tabpanel"',"aria-selected on active tab","aria-controls linking tab↔panel","ArrowRight/Left + Home/End navigation","tabIndex roving (0 on active, -1 on others)"]},{name:"Select",status:"complete",features:['role="combobox" + aria-haspopup="listbox"','role="listbox" + role="option"',"aria-expanded + aria-activedescendant","Arrow/Enter/Space/Escape keyboard","Focus restore on close"]},{name:"Checkbox",status:"complete",features:["label + htmlFor association","aria-invalid on error","aria-describedby for helperText/error","Auto-generated IDs via useId()","Standard checkbox keyboard (Space)"]}],o=s=>s==="complete"?e.jsx(a.Badge,{variant:"soft",color:"success",size:"small",children:"Complete"}):e.jsx(a.Badge,{variant:"soft",color:"warning",size:"small",children:"Partial"});return e.jsxs(e.Fragment,{children:[e.jsx(a.HeroCard,{title:"Component Status",description:"Detailed accessibility compliance status for each component — verified against the actual source code implementation.",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-indigo-500 via-blue-500 to-cyan-500 rounded-full flex items-center justify-center shadow-lg",children:e.jsx(t.ListChecks,{className:"w-10 h-10 sm:w-12 sm:h-12 md:w-16 md:h-16 text-white filter drop-shadow-lg"})})}),e.jsxs("section",{className:"space-y-8",children:[e.jsxs("div",{className:"text-center",children:[e.jsx(a.Typography,{tag:"h2",className:"mb-2",children:"Per-Component Breakdown"}),e.jsx(a.Typography,{tag:"p",className:"text-gray-500 dark:text-gray-400 max-w-2xl mx-auto",children:"7 of 8 core components have full accessibility — Modal needs focus trapping"})]}),e.jsx("div",{className:"grid grid-cols-1 md:grid-cols-2 gap-4 sm:gap-6",children:i.map(s=>e.jsx(a.CardContainer,{className:"group hover:shadow-large transition-all duration-300",children:e.jsxs("div",{className:"w-full p-4 sm:p-6 space-y-3",children:[e.jsxs("div",{className:"flex items-center justify-between",children:[e.jsx(a.Typography,{tag:"h3",className:"font-semibold text-lg",children:s.name}),o(s.status)]}),e.jsx("div",{className:"space-y-1.5",children:s.features.map((r,l)=>e.jsxs("div",{className:"flex items-start gap-2",children:[r.startsWith("⚠️")?e.jsx(t.AlertTriangle,{className:"w-4 h-4 text-amber-500 shrink-0 mt-0.5"}):e.jsx(t.Check,{className:"w-4 h-4 text-green-500 shrink-0 mt-0.5"}),e.jsx(a.Typography,{tag:"span",className:"text-sm text-gray-600 dark:text-gray-400",children:r.replace("⚠️ ","")})]},l))})]})},s.name))})]})]})};exports.default=n;
|