@bloomneo/uikit 1.5.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 +222 -0
- package/LICENSE +21 -0
- package/README.md +513 -0
- package/bin/commands/build.js +232 -0
- package/bin/commands/bundle.js +587 -0
- package/bin/commands/create.js +768 -0
- package/bin/commands/deploy.js +533 -0
- package/bin/commands/generate.js +673 -0
- package/bin/commands/optimize.js +198 -0
- package/bin/commands/prerender.js +306 -0
- package/bin/commands/serve.js +216 -0
- package/bin/templates/fbca/README.md.template +130 -0
- package/bin/templates/fbca/docs/QUICKSTART_FBCA.md +368 -0
- package/bin/templates/fbca/docs/UIKIT_CLI_GUIDE.md +574 -0
- package/bin/templates/fbca/docs/UIKIT_COMPOSITE_UI_SYSTEM.md +649 -0
- package/bin/templates/fbca/docs/UIKIT_LLM_GUIDE.md +2055 -0
- package/bin/templates/fbca/docs/UIKIT_THEME_GUIDE.md +359 -0
- package/bin/templates/fbca/package.json.template +41 -0
- package/bin/templates/fbca/public/favicon.svg +10 -0
- package/bin/templates/fbca/public/hero_fbca.svg +1 -0
- package/bin/templates/fbca/src/utils/asset.ts +6 -0
- package/bin/templates/fbca/src/web/App.tsx.template +20 -0
- package/bin/templates/fbca/src/web/features/auth/pages/index.tsx.template +157 -0
- package/bin/templates/fbca/src/web/features/docs/pages/[...slug].tsx.template +83 -0
- package/bin/templates/fbca/src/web/features/gallery/hooks/useGallery.ts.template +74 -0
- package/bin/templates/fbca/src/web/features/gallery/pages/index.tsx.template +136 -0
- package/bin/templates/fbca/src/web/features/main/components/CTASection.tsx.template +43 -0
- package/bin/templates/fbca/src/web/features/main/pages/About.tsx.template +374 -0
- package/bin/templates/fbca/src/web/features/main/pages/index.tsx.template +214 -0
- package/bin/templates/fbca/src/web/index.html.template +15 -0
- package/bin/templates/fbca/src/web/lib/page-router.tsx.template +134 -0
- package/bin/templates/fbca/src/web/main.tsx.template +14 -0
- package/bin/templates/fbca/src/web/shared/components/Footer.tsx.template +57 -0
- package/bin/templates/fbca/src/web/shared/components/Header.tsx.template +91 -0
- package/bin/templates/fbca/src/web/shared/components/SEO.tsx.template +24 -0
- package/bin/templates/fbca/src/web/shared/components/index.ts.template +3 -0
- package/bin/templates/fbca/src/web/shared/hooks/useSEO.ts.template +85 -0
- package/bin/templates/fbca/src/web/shared/utils/asset.ts +6 -0
- package/bin/templates/fbca/src/web/styles/index.css.template +8 -0
- package/bin/templates/fbca/src/web/utils/asset.ts +6 -0
- package/bin/templates/fbca/tsconfig.json.template +32 -0
- package/bin/templates/fbca/tsconfig.node.json.template +10 -0
- package/bin/templates/fbca/vite.config.ts.template +38 -0
- package/bin/templates/generate/component/component.tsx.template +79 -0
- package/bin/templates/generate/component/index.ts.template +2 -0
- package/bin/templates/generate/component/types.ts.template +58 -0
- package/bin/templates/generate/feature/index.ts.template +14 -0
- package/bin/templates/generate/feature/list-page.tsx.template +34 -0
- package/bin/templates/generate/feature/main-component.tsx.template +37 -0
- package/bin/templates/generate/feature/main-page.tsx.template +30 -0
- package/bin/templates/generate/feature/types.ts.template +34 -0
- package/bin/templates/generate/hook/hook.ts.template +35 -0
- package/bin/templates/generate/index.css.template +10 -0
- package/bin/templates/generate/main.tsx.template +10 -0
- package/bin/templates/generate/page/index.ts.template +2 -0
- package/bin/templates/generate/page/page.tsx.template +86 -0
- package/bin/templates/generate/theme/README.md +31 -0
- package/bin/templates/generate/theme/theme.js.template +155 -0
- package/bin/templates/multi/README.md.template +120 -0
- package/bin/templates/multi/docs/QUICKSTART_MULTI.md +334 -0
- package/bin/templates/multi/docs/UIKIT_CLI_GUIDE.md +574 -0
- package/bin/templates/multi/docs/UIKIT_COMPOSITE_UI_SYSTEM.md +649 -0
- package/bin/templates/multi/docs/UIKIT_LLM_GUIDE.md +2055 -0
- package/bin/templates/multi/docs/UIKIT_THEME_GUIDE.md +359 -0
- package/bin/templates/multi/index.html.template +58 -0
- package/bin/templates/multi/package.json.template +35 -0
- package/bin/templates/multi/public/favicon.svg +10 -0
- package/bin/templates/multi/public/hero_multi.svg +1 -0
- package/bin/templates/multi/src/App.tsx.template +92 -0
- package/bin/templates/multi/src/components/Footer.tsx.template +58 -0
- package/bin/templates/multi/src/components/Header.tsx.template +103 -0
- package/bin/templates/multi/src/components/SEO.tsx.template +19 -0
- package/bin/templates/multi/src/components/index.ts.template +3 -0
- package/bin/templates/multi/src/hooks/useSEO.ts.template +38 -0
- package/bin/templates/multi/src/index.css.template +7 -0
- package/bin/templates/multi/src/main.tsx.template +14 -0
- package/bin/templates/multi/src/pages/About.tsx.template +276 -0
- package/bin/templates/multi/src/pages/Components.tsx.template +288 -0
- package/bin/templates/multi/src/pages/Contact.tsx.template +348 -0
- package/bin/templates/multi/src/pages/Dashboard.tsx.template +306 -0
- package/bin/templates/multi/src/pages/ErrorPage.tsx.template +37 -0
- package/bin/templates/multi/src/pages/Home.tsx.template +201 -0
- package/bin/templates/multi/src/pages/Login.tsx.template +148 -0
- package/bin/templates/multi/src/pages/Themes.tsx.template +207 -0
- package/bin/templates/multi/src/router.tsx.template +34 -0
- package/bin/templates/multi/src/utils/asset.ts +6 -0
- package/bin/templates/multi/tsconfig.json.template +30 -0
- package/bin/templates/multi/tsconfig.node.json +22 -0
- package/bin/templates/multi/vite.config.ts.template +36 -0
- package/bin/templates/single/README.md.template +131 -0
- package/bin/templates/single/docs/QUICKSTART_SINGLE.md +259 -0
- package/bin/templates/single/docs/UIKIT_CLI_GUIDE.md +574 -0
- package/bin/templates/single/docs/UIKIT_COMPOSITE_UI_SYSTEM.md +649 -0
- package/bin/templates/single/docs/UIKIT_LLM_GUIDE.md +2055 -0
- package/bin/templates/single/docs/UIKIT_THEME_GUIDE.md +359 -0
- package/bin/templates/single/index.html.template +37 -0
- package/bin/templates/single/package.json.template +34 -0
- package/bin/templates/single/public/favicon.svg +10 -0
- package/bin/templates/single/public/hero.svg +1 -0
- package/bin/templates/single/src/App.tsx.template +233 -0
- package/bin/templates/single/src/index.css.template +7 -0
- package/bin/templates/single/src/main.tsx.template +14 -0
- package/bin/templates/single/src/styles/fonts.css +99 -0
- package/bin/templates/single/src/utils/asset.ts +6 -0
- package/bin/templates/single/tsconfig.json +31 -0
- package/bin/templates/single/tsconfig.node.json +22 -0
- package/bin/templates/single/vite.config.ts.template +36 -0
- package/bin/templates/spa/README.md.template +105 -0
- package/bin/templates/spa/components/SEO.tsx.template +19 -0
- package/bin/templates/spa/docs/QUICKSTART_SPA.md +300 -0
- package/bin/templates/spa/docs/UIKIT_CLI_GUIDE.md +574 -0
- package/bin/templates/spa/docs/UIKIT_COMPOSITE_UI_SYSTEM.md +649 -0
- package/bin/templates/spa/docs/UIKIT_LLM_GUIDE.md +2055 -0
- package/bin/templates/spa/docs/UIKIT_THEME_GUIDE.md +359 -0
- package/bin/templates/spa/hooks/useSEO.ts.template +38 -0
- package/bin/templates/spa/index.html.template +58 -0
- package/bin/templates/spa/package.json.template +35 -0
- package/bin/templates/spa/public/favicon.svg +15 -0
- package/bin/templates/spa/public/hero_spa.svg +1 -0
- package/bin/templates/spa/src/App.tsx.template +659 -0
- package/bin/templates/spa/src/index.css.template +7 -0
- package/bin/templates/spa/src/main.tsx.template +14 -0
- package/bin/templates/spa/src/utils/asset.ts +6 -0
- package/bin/templates/spa/tsconfig.json.template +30 -0
- package/bin/templates/spa/tsconfig.node.json +22 -0
- package/bin/templates/spa/vite.config.ts.template +36 -0
- package/bin/uikit.js +133 -0
- package/cookbook/README.md +20 -0
- package/cookbook/crud-page.tsx +99 -0
- package/cookbook/dashboard.tsx +89 -0
- package/cookbook/delete-flow.tsx +59 -0
- package/cookbook/login.tsx +85 -0
- package/cookbook/settings.tsx +113 -0
- package/dist/Combination-C0DFrmJW.js +674 -0
- package/dist/Combination-C0DFrmJW.js.map +1 -0
- package/dist/accordion.js +284 -0
- package/dist/accordion.js.map +1 -0
- package/dist/admin.js +429 -0
- package/dist/admin.js.map +1 -0
- package/dist/alert.js +67 -0
- package/dist/alert.js.map +1 -0
- package/dist/auth.js +178 -0
- package/dist/auth.js.map +1 -0
- package/dist/avatar.js +249 -0
- package/dist/avatar.js.map +1 -0
- package/dist/badge.js +40 -0
- package/dist/badge.js.map +1 -0
- package/dist/blank.js +80 -0
- package/dist/blank.js.map +1 -0
- package/dist/breadcrumb.js +104 -0
- package/dist/breadcrumb.js.map +1 -0
- package/dist/button.js +50 -0
- package/dist/button.js.map +1 -0
- package/dist/calendar.js +2785 -0
- package/dist/calendar.js.map +1 -0
- package/dist/card.js +91 -0
- package/dist/card.js.map +1 -0
- package/dist/check-DXouwtzp.js +12 -0
- package/dist/check-DXouwtzp.js.map +1 -0
- package/dist/checkbox.js +268 -0
- package/dist/checkbox.js.map +1 -0
- package/dist/chevron-down-BORJtX8F.js +14 -0
- package/dist/chevron-down-BORJtX8F.js.map +1 -0
- package/dist/chevron-left-C1pkx4AF.js +14 -0
- package/dist/chevron-left-C1pkx4AF.js.map +1 -0
- package/dist/chevron-right-pz9eCjj-.js +14 -0
- package/dist/chevron-right-pz9eCjj-.js.map +1 -0
- package/dist/circle-DHOdTDQh.js +14 -0
- package/dist/circle-DHOdTDQh.js.map +1 -0
- package/dist/collapsible.js +35 -0
- package/dist/collapsible.js.map +1 -0
- package/dist/command.js +481 -0
- package/dist/command.js.map +1 -0
- package/dist/confirm-dialog.js +129 -0
- package/dist/confirm-dialog.js.map +1 -0
- package/dist/container.js +334 -0
- package/dist/container.js.map +1 -0
- package/dist/createLucideIcon-B45kRl5r.js +80 -0
- package/dist/createLucideIcon-B45kRl5r.js.map +1 -0
- package/dist/data-table.js +574 -0
- package/dist/data-table.js.map +1 -0
- package/dist/detail-page.js +454 -0
- package/dist/detail-page.js.map +1 -0
- package/dist/dialog.js +137 -0
- package/dist/dialog.js.map +1 -0
- package/dist/dropdown-menu.js +424 -0
- package/dist/dropdown-menu.js.map +1 -0
- package/dist/ellipsis-BhAoKPVk.js +16 -0
- package/dist/ellipsis-BhAoKPVk.js.map +1 -0
- package/dist/empty-state.js +54 -0
- package/dist/empty-state.js.map +1 -0
- package/dist/errors.js +36 -0
- package/dist/errors.js.map +1 -0
- package/dist/eye-DDKoW0KS.js +46 -0
- package/dist/eye-DDKoW0KS.js.map +1 -0
- package/dist/fonts/caveat-cyrillic-400-normal.woff +0 -0
- package/dist/fonts/caveat-cyrillic-400-normal.woff2 +0 -0
- package/dist/fonts/caveat-cyrillic-700-normal.woff +0 -0
- package/dist/fonts/caveat-cyrillic-700-normal.woff2 +0 -0
- package/dist/fonts/caveat-cyrillic-ext-400-normal.woff +0 -0
- package/dist/fonts/caveat-cyrillic-ext-400-normal.woff2 +0 -0
- package/dist/fonts/caveat-cyrillic-ext-700-normal.woff +0 -0
- package/dist/fonts/caveat-cyrillic-ext-700-normal.woff2 +0 -0
- package/dist/fonts/caveat-latin-400-normal.woff +0 -0
- package/dist/fonts/caveat-latin-400-normal.woff2 +0 -0
- package/dist/fonts/caveat-latin-700-normal.woff +0 -0
- package/dist/fonts/caveat-latin-700-normal.woff2 +0 -0
- package/dist/fonts/caveat-latin-ext-400-normal.woff +0 -0
- package/dist/fonts/caveat-latin-ext-400-normal.woff2 +0 -0
- package/dist/fonts/caveat-latin-ext-700-normal.woff +0 -0
- package/dist/fonts/caveat-latin-ext-700-normal.woff2 +0 -0
- package/dist/fonts/crimson-text-latin-400-normal.woff +0 -0
- package/dist/fonts/crimson-text-latin-400-normal.woff2 +0 -0
- package/dist/fonts/crimson-text-latin-600-normal.woff +0 -0
- package/dist/fonts/crimson-text-latin-600-normal.woff2 +0 -0
- package/dist/fonts/crimson-text-latin-700-normal.woff +0 -0
- package/dist/fonts/crimson-text-latin-700-normal.woff2 +0 -0
- package/dist/fonts/crimson-text-latin-ext-400-normal.woff +0 -0
- package/dist/fonts/crimson-text-latin-ext-400-normal.woff2 +0 -0
- package/dist/fonts/crimson-text-latin-ext-600-normal.woff +0 -0
- package/dist/fonts/crimson-text-latin-ext-600-normal.woff2 +0 -0
- package/dist/fonts/crimson-text-latin-ext-700-normal.woff +0 -0
- package/dist/fonts/crimson-text-latin-ext-700-normal.woff2 +0 -0
- package/dist/fonts/crimson-text-vietnamese-400-normal.woff +0 -0
- package/dist/fonts/crimson-text-vietnamese-400-normal.woff2 +0 -0
- package/dist/fonts/crimson-text-vietnamese-600-normal.woff +0 -0
- package/dist/fonts/crimson-text-vietnamese-600-normal.woff2 +0 -0
- package/dist/fonts/crimson-text-vietnamese-700-normal.woff +0 -0
- package/dist/fonts/crimson-text-vietnamese-700-normal.woff2 +0 -0
- package/dist/fonts/dm-serif-display-latin-400-normal.woff +0 -0
- package/dist/fonts/dm-serif-display-latin-400-normal.woff2 +0 -0
- package/dist/fonts/dm-serif-display-latin-ext-400-normal.woff +0 -0
- package/dist/fonts/dm-serif-display-latin-ext-400-normal.woff2 +0 -0
- package/dist/fonts/libre-baskerville-latin-400-normal.woff +0 -0
- package/dist/fonts/libre-baskerville-latin-400-normal.woff2 +0 -0
- package/dist/fonts/libre-baskerville-latin-700-normal.woff +0 -0
- package/dist/fonts/libre-baskerville-latin-700-normal.woff2 +0 -0
- package/dist/fonts/libre-baskerville-latin-ext-400-normal.woff +0 -0
- package/dist/fonts/libre-baskerville-latin-ext-400-normal.woff2 +0 -0
- package/dist/fonts/libre-baskerville-latin-ext-700-normal.woff +0 -0
- package/dist/fonts/libre-baskerville-latin-ext-700-normal.woff2 +0 -0
- package/dist/fonts/montserrat-cyrillic-400-normal.woff +0 -0
- package/dist/fonts/montserrat-cyrillic-400-normal.woff2 +0 -0
- package/dist/fonts/montserrat-cyrillic-500-normal.woff +0 -0
- package/dist/fonts/montserrat-cyrillic-500-normal.woff2 +0 -0
- package/dist/fonts/montserrat-cyrillic-600-normal.woff +0 -0
- package/dist/fonts/montserrat-cyrillic-600-normal.woff2 +0 -0
- package/dist/fonts/montserrat-cyrillic-ext-400-normal.woff +0 -0
- package/dist/fonts/montserrat-cyrillic-ext-400-normal.woff2 +0 -0
- package/dist/fonts/montserrat-cyrillic-ext-500-normal.woff +0 -0
- package/dist/fonts/montserrat-cyrillic-ext-500-normal.woff2 +0 -0
- package/dist/fonts/montserrat-cyrillic-ext-600-normal.woff +0 -0
- package/dist/fonts/montserrat-cyrillic-ext-600-normal.woff2 +0 -0
- package/dist/fonts/montserrat-latin-400-normal.woff +0 -0
- package/dist/fonts/montserrat-latin-400-normal.woff2 +0 -0
- package/dist/fonts/montserrat-latin-500-normal.woff +0 -0
- package/dist/fonts/montserrat-latin-500-normal.woff2 +0 -0
- package/dist/fonts/montserrat-latin-600-normal.woff +0 -0
- package/dist/fonts/montserrat-latin-600-normal.woff2 +0 -0
- package/dist/fonts/montserrat-latin-ext-400-normal.woff +0 -0
- package/dist/fonts/montserrat-latin-ext-400-normal.woff2 +0 -0
- package/dist/fonts/montserrat-latin-ext-500-normal.woff +0 -0
- package/dist/fonts/montserrat-latin-ext-500-normal.woff2 +0 -0
- package/dist/fonts/montserrat-latin-ext-600-normal.woff +0 -0
- package/dist/fonts/montserrat-latin-ext-600-normal.woff2 +0 -0
- package/dist/fonts/montserrat-vietnamese-400-normal.woff +0 -0
- package/dist/fonts/montserrat-vietnamese-400-normal.woff2 +0 -0
- package/dist/fonts/montserrat-vietnamese-500-normal.woff +0 -0
- package/dist/fonts/montserrat-vietnamese-500-normal.woff2 +0 -0
- package/dist/fonts/montserrat-vietnamese-600-normal.woff +0 -0
- package/dist/fonts/montserrat-vietnamese-600-normal.woff2 +0 -0
- package/dist/fonts/playfair-display-cyrillic-400-normal.woff +0 -0
- package/dist/fonts/playfair-display-cyrillic-400-normal.woff2 +0 -0
- package/dist/fonts/playfair-display-cyrillic-500-normal.woff +0 -0
- package/dist/fonts/playfair-display-cyrillic-500-normal.woff2 +0 -0
- package/dist/fonts/playfair-display-latin-400-normal.woff +0 -0
- package/dist/fonts/playfair-display-latin-400-normal.woff2 +0 -0
- package/dist/fonts/playfair-display-latin-500-normal.woff +0 -0
- package/dist/fonts/playfair-display-latin-500-normal.woff2 +0 -0
- package/dist/fonts/playfair-display-latin-ext-400-normal.woff +0 -0
- package/dist/fonts/playfair-display-latin-ext-400-normal.woff2 +0 -0
- package/dist/fonts/playfair-display-latin-ext-500-normal.woff +0 -0
- package/dist/fonts/playfair-display-latin-ext-500-normal.woff2 +0 -0
- package/dist/fonts/playfair-display-vietnamese-400-normal.woff +0 -0
- package/dist/fonts/playfair-display-vietnamese-400-normal.woff2 +0 -0
- package/dist/fonts/playfair-display-vietnamese-500-normal.woff +0 -0
- package/dist/fonts/playfair-display-vietnamese-500-normal.woff2 +0 -0
- package/dist/fonts/poppins-devanagari-400-normal.woff +0 -0
- package/dist/fonts/poppins-devanagari-400-normal.woff2 +0 -0
- package/dist/fonts/poppins-devanagari-500-normal.woff +0 -0
- package/dist/fonts/poppins-devanagari-500-normal.woff2 +0 -0
- package/dist/fonts/poppins-devanagari-600-normal.woff +0 -0
- package/dist/fonts/poppins-devanagari-600-normal.woff2 +0 -0
- package/dist/fonts/poppins-latin-400-normal.woff +0 -0
- package/dist/fonts/poppins-latin-400-normal.woff2 +0 -0
- package/dist/fonts/poppins-latin-500-normal.woff +0 -0
- package/dist/fonts/poppins-latin-500-normal.woff2 +0 -0
- package/dist/fonts/poppins-latin-600-normal.woff +0 -0
- package/dist/fonts/poppins-latin-600-normal.woff2 +0 -0
- package/dist/fonts/poppins-latin-ext-400-normal.woff +0 -0
- package/dist/fonts/poppins-latin-ext-400-normal.woff2 +0 -0
- package/dist/fonts/poppins-latin-ext-500-normal.woff +0 -0
- package/dist/fonts/poppins-latin-ext-500-normal.woff2 +0 -0
- package/dist/fonts/poppins-latin-ext-600-normal.woff +0 -0
- package/dist/fonts/poppins-latin-ext-600-normal.woff2 +0 -0
- package/dist/fonts/rubik-arabic-400-normal.woff +0 -0
- package/dist/fonts/rubik-arabic-400-normal.woff2 +0 -0
- package/dist/fonts/rubik-arabic-500-normal.woff +0 -0
- package/dist/fonts/rubik-arabic-500-normal.woff2 +0 -0
- package/dist/fonts/rubik-cyrillic-400-normal.woff +0 -0
- package/dist/fonts/rubik-cyrillic-400-normal.woff2 +0 -0
- package/dist/fonts/rubik-cyrillic-500-normal.woff +0 -0
- package/dist/fonts/rubik-cyrillic-500-normal.woff2 +0 -0
- package/dist/fonts/rubik-cyrillic-ext-400-normal.woff +0 -0
- package/dist/fonts/rubik-cyrillic-ext-400-normal.woff2 +0 -0
- package/dist/fonts/rubik-cyrillic-ext-500-normal.woff +0 -0
- package/dist/fonts/rubik-cyrillic-ext-500-normal.woff2 +0 -0
- package/dist/fonts/rubik-hebrew-400-normal.woff +0 -0
- package/dist/fonts/rubik-hebrew-400-normal.woff2 +0 -0
- package/dist/fonts/rubik-hebrew-500-normal.woff +0 -0
- package/dist/fonts/rubik-hebrew-500-normal.woff2 +0 -0
- package/dist/fonts/rubik-latin-400-normal.woff +0 -0
- package/dist/fonts/rubik-latin-400-normal.woff2 +0 -0
- package/dist/fonts/rubik-latin-500-normal.woff +0 -0
- package/dist/fonts/rubik-latin-500-normal.woff2 +0 -0
- package/dist/fonts/rubik-latin-ext-400-normal.woff +0 -0
- package/dist/fonts/rubik-latin-ext-400-normal.woff2 +0 -0
- package/dist/fonts/rubik-latin-ext-500-normal.woff +0 -0
- package/dist/fonts/rubik-latin-ext-500-normal.woff2 +0 -0
- package/dist/fonts/source-serif-pro-cyrillic-400-normal.woff +0 -0
- package/dist/fonts/source-serif-pro-cyrillic-400-normal.woff2 +0 -0
- package/dist/fonts/source-serif-pro-cyrillic-ext-400-normal.woff +0 -0
- package/dist/fonts/source-serif-pro-cyrillic-ext-400-normal.woff2 +0 -0
- package/dist/fonts/source-serif-pro-greek-400-normal.woff +0 -0
- package/dist/fonts/source-serif-pro-greek-400-normal.woff2 +0 -0
- package/dist/fonts/source-serif-pro-latin-400-normal.woff +0 -0
- package/dist/fonts/source-serif-pro-latin-400-normal.woff2 +0 -0
- package/dist/fonts/source-serif-pro-latin-ext-400-normal.woff +0 -0
- package/dist/fonts/source-serif-pro-latin-ext-400-normal.woff2 +0 -0
- package/dist/fonts/source-serif-pro-vietnamese-400-normal.woff +0 -0
- package/dist/fonts/source-serif-pro-vietnamese-400-normal.woff2 +0 -0
- package/dist/fonts/space-grotesk-latin-400-normal.woff +0 -0
- package/dist/fonts/space-grotesk-latin-400-normal.woff2 +0 -0
- package/dist/fonts/space-grotesk-latin-600-normal.woff +0 -0
- package/dist/fonts/space-grotesk-latin-600-normal.woff2 +0 -0
- package/dist/fonts/space-grotesk-latin-700-normal.woff +0 -0
- package/dist/fonts/space-grotesk-latin-700-normal.woff2 +0 -0
- package/dist/fonts/space-grotesk-latin-ext-400-normal.woff +0 -0
- package/dist/fonts/space-grotesk-latin-ext-400-normal.woff2 +0 -0
- package/dist/fonts/space-grotesk-latin-ext-600-normal.woff +0 -0
- package/dist/fonts/space-grotesk-latin-ext-600-normal.woff2 +0 -0
- package/dist/fonts/space-grotesk-latin-ext-700-normal.woff +0 -0
- package/dist/fonts/space-grotesk-latin-ext-700-normal.woff2 +0 -0
- package/dist/fonts/space-grotesk-vietnamese-400-normal.woff +0 -0
- package/dist/fonts/space-grotesk-vietnamese-400-normal.woff2 +0 -0
- package/dist/fonts/space-grotesk-vietnamese-600-normal.woff +0 -0
- package/dist/fonts/space-grotesk-vietnamese-600-normal.woff2 +0 -0
- package/dist/fonts/space-grotesk-vietnamese-700-normal.woff +0 -0
- package/dist/fonts/space-grotesk-vietnamese-700-normal.woff2 +0 -0
- package/dist/fonts/work-sans-latin-400-normal.woff +0 -0
- package/dist/fonts/work-sans-latin-400-normal.woff2 +0 -0
- package/dist/fonts/work-sans-latin-500-normal.woff +0 -0
- package/dist/fonts/work-sans-latin-500-normal.woff2 +0 -0
- package/dist/fonts/work-sans-latin-ext-400-normal.woff +0 -0
- package/dist/fonts/work-sans-latin-ext-400-normal.woff2 +0 -0
- package/dist/fonts/work-sans-latin-ext-500-normal.woff +0 -0
- package/dist/fonts/work-sans-latin-ext-500-normal.woff2 +0 -0
- package/dist/fonts/work-sans-vietnamese-400-normal.woff +0 -0
- package/dist/fonts/work-sans-vietnamese-400-normal.woff2 +0 -0
- package/dist/fonts/work-sans-vietnamese-500-normal.woff +0 -0
- package/dist/fonts/work-sans-vietnamese-500-normal.woff2 +0 -0
- package/dist/footer.js +308 -0
- package/dist/footer.js.map +1 -0
- package/dist/form-field.js +69 -0
- package/dist/form-field.js.map +1 -0
- package/dist/form.js +732 -0
- package/dist/form.js.map +1 -0
- package/dist/format.js +112 -0
- package/dist/format.js.map +1 -0
- package/dist/fouc.js +28 -0
- package/dist/fouc.js.map +1 -0
- package/dist/header.js +289 -0
- package/dist/header.js.map +1 -0
- package/dist/hooks.js +13 -0
- package/dist/hooks.js.map +1 -0
- package/dist/hover-card.js +210 -0
- package/dist/hover-card.js.map +1 -0
- package/dist/index-0ioNhtNM.js +11 -0
- package/dist/index-0ioNhtNM.js.map +1 -0
- package/dist/index-1QHKgw6D.js +55 -0
- package/dist/index-1QHKgw6D.js.map +1 -0
- package/dist/index-B6sSWi7l.js +747 -0
- package/dist/index-B6sSWi7l.js.map +1 -0
- package/dist/index-BCjJQGh8.js +71 -0
- package/dist/index-BCjJQGh8.js.map +1 -0
- package/dist/index-BGQepRFJ.js +28 -0
- package/dist/index-BGQepRFJ.js.map +1 -0
- package/dist/index-BVRIAMfe.js +37 -0
- package/dist/index-BVRIAMfe.js.map +1 -0
- package/dist/index-BY7PeRJA.js +145 -0
- package/dist/index-BY7PeRJA.js.map +1 -0
- package/dist/index-BZPx6jYI.js +9 -0
- package/dist/index-BZPx6jYI.js.map +1 -0
- package/dist/index-Ba4eHUBD.js +243 -0
- package/dist/index-Ba4eHUBD.js.map +1 -0
- package/dist/index-Bke1qZdk.js +35 -0
- package/dist/index-Bke1qZdk.js.map +1 -0
- package/dist/index-C0UREtMP.js +60 -0
- package/dist/index-C0UREtMP.js.map +1 -0
- package/dist/index-CCKe-Mpx.js +7 -0
- package/dist/index-CCKe-Mpx.js.map +1 -0
- package/dist/index-DFZozV_h.js +69 -0
- package/dist/index-DFZozV_h.js.map +1 -0
- package/dist/index-DFi6WydO.js +180 -0
- package/dist/index-DFi6WydO.js.map +1 -0
- package/dist/index-DQH6odE9.js +83 -0
- package/dist/index-DQH6odE9.js.map +1 -0
- package/dist/index-EO5flKM3.js +119 -0
- package/dist/index-EO5flKM3.js.map +1 -0
- package/dist/index-Lf7yDOXW.js +615 -0
- package/dist/index-Lf7yDOXW.js.map +1 -0
- package/dist/index-dhIqEbxW.js +1541 -0
- package/dist/index-dhIqEbxW.js.map +1 -0
- package/dist/index-pWhlqjff.js +32 -0
- package/dist/index-pWhlqjff.js.map +1 -0
- package/dist/index-rKs9bXHr.js +7 -0
- package/dist/index-rKs9bXHr.js.map +1 -0
- package/dist/index-xqkGMOJ8.js +14 -0
- package/dist/index-xqkGMOJ8.js.map +1 -0
- package/dist/index.js +247 -0
- package/dist/index.js.map +1 -0
- package/dist/input.js +22 -0
- package/dist/input.js.map +1 -0
- package/dist/label.js +36 -0
- package/dist/label.js.map +1 -0
- package/dist/layout-wrapper.js +208 -0
- package/dist/layout-wrapper.js.map +1 -0
- package/dist/llms.txt +1140 -0
- package/dist/menu-DBhEanGo.js +16 -0
- package/dist/menu-DBhEanGo.js.map +1 -0
- package/dist/menubar.js +565 -0
- package/dist/menubar.js.map +1 -0
- package/dist/mobile.js +183 -0
- package/dist/mobile.js.map +1 -0
- package/dist/motion.js +119 -0
- package/dist/motion.js.map +1 -0
- package/dist/page-header.js +47 -0
- package/dist/page-header.js.map +1 -0
- package/dist/page.js +214 -0
- package/dist/page.js.map +1 -0
- package/dist/pagination.js +121 -0
- package/dist/pagination.js.map +1 -0
- package/dist/platform.js +194 -0
- package/dist/platform.js.map +1 -0
- package/dist/popover.js +263 -0
- package/dist/popover.js.map +1 -0
- package/dist/popup.js +335 -0
- package/dist/popup.js.map +1 -0
- package/dist/progress.js +108 -0
- package/dist/progress.js.map +1 -0
- package/dist/radio-group.js +272 -0
- package/dist/radio-group.js.map +1 -0
- package/dist/safe-area.js +42 -0
- package/dist/safe-area.js.map +1 -0
- package/dist/search-CpUwRnG-.js +15 -0
- package/dist/search-CpUwRnG-.js.map +1 -0
- package/dist/select.js +985 -0
- package/dist/select.js.map +1 -0
- package/dist/separator.js +45 -0
- package/dist/separator.js.map +1 -0
- package/dist/sheet.js +127 -0
- package/dist/sheet.js.map +1 -0
- package/dist/skeleton.js +16 -0
- package/dist/skeleton.js.map +1 -0
- package/dist/slider.js +485 -0
- package/dist/slider.js.map +1 -0
- package/dist/sonner.js +52 -0
- package/dist/sonner.js.map +1 -0
- package/dist/styles/fonts.css +253 -0
- package/dist/styles.css +2 -0
- package/dist/switch.js +155 -0
- package/dist/switch.js.map +1 -0
- package/dist/tab-bar.js +110 -0
- package/dist/tab-bar.js.map +1 -0
- package/dist/table.js +115 -0
- package/dist/table.js.map +1 -0
- package/dist/tabs.js +218 -0
- package/dist/tabs.js.map +1 -0
- package/dist/textarea.js +19 -0
- package/dist/textarea.js.map +1 -0
- package/dist/theme-provider.js +154 -0
- package/dist/theme-provider.js.map +1 -0
- package/dist/themes.js +873 -0
- package/dist/themes.js.map +1 -0
- package/dist/toast.js +63 -0
- package/dist/toast.js.map +1 -0
- package/dist/toggle.js +70 -0
- package/dist/toggle.js.map +1 -0
- package/dist/tooltip.js +375 -0
- package/dist/tooltip.js.map +1 -0
- package/dist/types/App.d.ts +3 -0
- package/dist/types/App.d.ts.map +1 -0
- package/dist/types/components/layouts/admin.d.ts +117 -0
- package/dist/types/components/layouts/admin.d.ts.map +1 -0
- package/dist/types/components/layouts/auth.d.ts +17 -0
- package/dist/types/components/layouts/auth.d.ts.map +1 -0
- package/dist/types/components/layouts/blank.d.ts +63 -0
- package/dist/types/components/layouts/blank.d.ts.map +1 -0
- package/dist/types/components/layouts/layout-wrapper.d.ts +130 -0
- package/dist/types/components/layouts/layout-wrapper.d.ts.map +1 -0
- package/dist/types/components/layouts/mobile.d.ts +91 -0
- package/dist/types/components/layouts/mobile.d.ts.map +1 -0
- package/dist/types/components/layouts/page.d.ts +181 -0
- package/dist/types/components/layouts/page.d.ts.map +1 -0
- package/dist/types/components/layouts/popup.d.ts +100 -0
- package/dist/types/components/layouts/popup.d.ts.map +1 -0
- package/dist/types/components/sections/container.d.ts +79 -0
- package/dist/types/components/sections/container.d.ts.map +1 -0
- package/dist/types/components/sections/footer.d.ts +128 -0
- package/dist/types/components/sections/footer.d.ts.map +1 -0
- package/dist/types/components/sections/header.d.ts +72 -0
- package/dist/types/components/sections/header.d.ts.map +1 -0
- package/dist/types/components/sections/safe-area.d.ts +46 -0
- package/dist/types/components/sections/safe-area.d.ts.map +1 -0
- package/dist/types/components/sections/tab-bar.d.ts +61 -0
- package/dist/types/components/sections/tab-bar.d.ts.map +1 -0
- package/dist/types/components/ui/accordion.d.ts +8 -0
- package/dist/types/components/ui/accordion.d.ts.map +1 -0
- package/dist/types/components/ui/alert.d.ts +10 -0
- package/dist/types/components/ui/alert.d.ts.map +1 -0
- package/dist/types/components/ui/avatar.d.ts +7 -0
- package/dist/types/components/ui/avatar.d.ts.map +1 -0
- package/dist/types/components/ui/badge.d.ts +10 -0
- package/dist/types/components/ui/badge.d.ts.map +1 -0
- package/dist/types/components/ui/breadcrumb.d.ts +12 -0
- package/dist/types/components/ui/breadcrumb.d.ts.map +1 -0
- package/dist/types/components/ui/button.d.ts +11 -0
- package/dist/types/components/ui/button.d.ts.map +1 -0
- package/dist/types/components/ui/calendar.d.ts +9 -0
- package/dist/types/components/ui/calendar.d.ts.map +1 -0
- package/dist/types/components/ui/card.d.ts +10 -0
- package/dist/types/components/ui/card.d.ts.map +1 -0
- package/dist/types/components/ui/checkbox.d.ts +5 -0
- package/dist/types/components/ui/checkbox.d.ts.map +1 -0
- package/dist/types/components/ui/collapsible.d.ts +6 -0
- package/dist/types/components/ui/collapsible.d.ts.map +1 -0
- package/dist/types/components/ui/command.d.ts +19 -0
- package/dist/types/components/ui/command.d.ts.map +1 -0
- package/dist/types/components/ui/confirm-dialog.d.ts +72 -0
- package/dist/types/components/ui/confirm-dialog.d.ts.map +1 -0
- package/dist/types/components/ui/data-table.d.ts +211 -0
- package/dist/types/components/ui/data-table.d.ts.map +1 -0
- package/dist/types/components/ui/detail-page.d.ts +119 -0
- package/dist/types/components/ui/detail-page.d.ts.map +1 -0
- package/dist/types/components/ui/dialog.d.ts +16 -0
- package/dist/types/components/ui/dialog.d.ts.map +1 -0
- package/dist/types/components/ui/dropdown-menu.d.ts +26 -0
- package/dist/types/components/ui/dropdown-menu.d.ts.map +1 -0
- package/dist/types/components/ui/empty-state.d.ts +30 -0
- package/dist/types/components/ui/empty-state.d.ts.map +1 -0
- package/dist/types/components/ui/form-field.d.ts +57 -0
- package/dist/types/components/ui/form-field.d.ts.map +1 -0
- package/dist/types/components/ui/form.d.ts +185 -0
- package/dist/types/components/ui/form.d.ts.map +1 -0
- package/dist/types/components/ui/hover-card.d.ts +7 -0
- package/dist/types/components/ui/hover-card.d.ts.map +1 -0
- package/dist/types/components/ui/input.d.ts +4 -0
- package/dist/types/components/ui/input.d.ts.map +1 -0
- package/dist/types/components/ui/label.d.ts +5 -0
- package/dist/types/components/ui/label.d.ts.map +1 -0
- package/dist/types/components/ui/menubar.d.ts +27 -0
- package/dist/types/components/ui/menubar.d.ts.map +1 -0
- package/dist/types/components/ui/motion.d.ts +130 -0
- package/dist/types/components/ui/motion.d.ts.map +1 -0
- package/dist/types/components/ui/page-header.d.ts +45 -0
- package/dist/types/components/ui/page-header.d.ts.map +1 -0
- package/dist/types/components/ui/pagination.d.ts +14 -0
- package/dist/types/components/ui/pagination.d.ts.map +1 -0
- package/dist/types/components/ui/popover.d.ts +8 -0
- package/dist/types/components/ui/popover.d.ts.map +1 -0
- package/dist/types/components/ui/progress.d.ts +5 -0
- package/dist/types/components/ui/progress.d.ts.map +1 -0
- package/dist/types/components/ui/radio-group.d.ts +6 -0
- package/dist/types/components/ui/radio-group.d.ts.map +1 -0
- package/dist/types/components/ui/select.d.ts +16 -0
- package/dist/types/components/ui/select.d.ts.map +1 -0
- package/dist/types/components/ui/separator.d.ts +5 -0
- package/dist/types/components/ui/separator.d.ts.map +1 -0
- package/dist/types/components/ui/sheet.d.ts +14 -0
- package/dist/types/components/ui/sheet.d.ts.map +1 -0
- package/dist/types/components/ui/skeleton.d.ts +3 -0
- package/dist/types/components/ui/skeleton.d.ts.map +1 -0
- package/dist/types/components/ui/slider.d.ts +5 -0
- package/dist/types/components/ui/slider.d.ts.map +1 -0
- package/dist/types/components/ui/sonner.d.ts +4 -0
- package/dist/types/components/ui/sonner.d.ts.map +1 -0
- package/dist/types/components/ui/switch.d.ts +5 -0
- package/dist/types/components/ui/switch.d.ts.map +1 -0
- package/dist/types/components/ui/table.d.ts +11 -0
- package/dist/types/components/ui/table.d.ts.map +1 -0
- package/dist/types/components/ui/tabs.d.ts +8 -0
- package/dist/types/components/ui/tabs.d.ts.map +1 -0
- package/dist/types/components/ui/textarea.d.ts +4 -0
- package/dist/types/components/ui/textarea.d.ts.map +1 -0
- package/dist/types/components/ui/toast.d.ts +70 -0
- package/dist/types/components/ui/toast.d.ts.map +1 -0
- package/dist/types/components/ui/toggle.d.ts +10 -0
- package/dist/types/components/ui/toggle.d.ts.map +1 -0
- package/dist/types/components/ui/tooltip.d.ts +8 -0
- package/dist/types/components/ui/tooltip.d.ts.map +1 -0
- package/dist/types/hooks/index.d.ts +14 -0
- package/dist/types/hooks/index.d.ts.map +1 -0
- package/dist/types/hooks/useApi.d.ts +38 -0
- package/dist/types/hooks/useApi.d.ts.map +1 -0
- package/dist/types/hooks/useBreakpoint.d.ts +35 -0
- package/dist/types/hooks/useBreakpoint.d.ts.map +1 -0
- package/dist/types/hooks/useDataTable.d.ts +59 -0
- package/dist/types/hooks/useDataTable.d.ts.map +1 -0
- package/dist/types/hooks/useMediaQuery.d.ts +12 -0
- package/dist/types/hooks/useMediaQuery.d.ts.map +1 -0
- package/dist/types/hooks/useStorage.d.ts +35 -0
- package/dist/types/hooks/useStorage.d.ts.map +1 -0
- package/dist/types/index.d.ts +75 -0
- package/dist/types/index.d.ts.map +1 -0
- package/dist/types/lib/errors.d.ts +37 -0
- package/dist/types/lib/errors.d.ts.map +1 -0
- package/dist/types/lib/format.d.ts +80 -0
- package/dist/types/lib/format.d.ts.map +1 -0
- package/dist/types/lib/fouc.d.ts +64 -0
- package/dist/types/lib/fouc.d.ts.map +1 -0
- package/dist/types/lib/platform.d.ts +156 -0
- package/dist/types/lib/platform.d.ts.map +1 -0
- package/dist/types/lib/utils.d.ts +14 -0
- package/dist/types/lib/utils.d.ts.map +1 -0
- package/dist/types/main.d.ts +2 -0
- package/dist/types/main.d.ts.map +1 -0
- package/dist/types/themes/index.d.ts +499 -0
- package/dist/types/themes/index.d.ts.map +1 -0
- package/dist/types/themes/presets/base.d.ts +108 -0
- package/dist/types/themes/presets/base.d.ts.map +1 -0
- package/dist/types/themes/presets/elegant.d.ts +108 -0
- package/dist/types/themes/presets/elegant.d.ts.map +1 -0
- package/dist/types/themes/presets/metro.d.ts +114 -0
- package/dist/types/themes/presets/metro.d.ts.map +1 -0
- package/dist/types/themes/presets/studio.d.ts +115 -0
- package/dist/types/themes/presets/studio.d.ts.map +1 -0
- package/dist/types/themes/presets/vivid.d.ts +115 -0
- package/dist/types/themes/presets/vivid.d.ts.map +1 -0
- package/dist/types/themes/theme-provider.d.ts +122 -0
- package/dist/types/themes/theme-provider.d.ts.map +1 -0
- package/dist/types/types/index.d.ts +813 -0
- package/dist/types/types/index.d.ts.map +1 -0
- package/dist/uikit.css +1 -0
- package/dist/useDataTable-CPiBpEg-.js +254 -0
- package/dist/useDataTable-CPiBpEg-.js.map +1 -0
- package/dist/utils-CwJPJKOE.js +2278 -0
- package/dist/utils-CwJPJKOE.js.map +1 -0
- package/dist/utils.js +5 -0
- package/dist/utils.js.map +1 -0
- package/dist/wrapper.js +13 -0
- package/dist/wrapper.js.map +1 -0
- package/dist/x-BxwubQiM.js +15 -0
- package/dist/x-BxwubQiM.js.map +1 -0
- package/examples/README.md +18 -0
- package/examples/button.tsx +16 -0
- package/examples/confirm-dialog.tsx +44 -0
- package/examples/data-table.tsx +35 -0
- package/examples/dialog.tsx +34 -0
- package/examples/empty-state.tsx +13 -0
- package/examples/form-field.tsx +22 -0
- package/examples/format.tsx +19 -0
- package/examples/page-header.tsx +17 -0
- package/examples/skeleton.tsx +12 -0
- package/examples/theme-provider.tsx +33 -0
- package/examples/toast.tsx +32 -0
- package/examples/use-breakpoint.tsx +17 -0
- package/llms.txt +1140 -0
- package/package.json +430 -0
|
@@ -0,0 +1,574 @@
|
|
|
1
|
+
# UIKit CLI Guide
|
|
2
|
+
|
|
3
|
+
**Master the UIKit command-line interface to scaffold, develop, and deploy production-ready React applications with zero configuration.**
|
|
4
|
+
|
|
5
|
+
## 🚀 Why UIKit CLI?
|
|
6
|
+
|
|
7
|
+
The UIKit CLI is your **development accelerator** that transforms hours of project setup into minutes of productive coding. Unlike other React scaffolding tools that give you a basic skeleton, UIKit CLI provides **production-ready project structures** with built-in routing, theming, and deployment workflows.
|
|
8
|
+
|
|
9
|
+
**Traditional React Setup Problems:**
|
|
10
|
+
- ⏰ **Hours of configuration** - Webpack, routing, theming, deployment setup
|
|
11
|
+
- 🔧 **Decision fatigue** - Which router? Which UI library? How to structure files?
|
|
12
|
+
- 🐛 **Integration issues** - Components don't work together seamlessly
|
|
13
|
+
- 📱 **Responsive headaches** - Mobile-first design requires extensive CSS work
|
|
14
|
+
|
|
15
|
+
**UIKit CLI Solutions:**
|
|
16
|
+
- ⚡ **Zero configuration** - Production setup in one command
|
|
17
|
+
- 🎯 **Opinionated structure** - Battle-tested patterns, no decisions needed
|
|
18
|
+
- 🎨 **Integrated theming** - 5 professional themes, custom theme generation
|
|
19
|
+
- 📱 **Mobile-first layouts** - Responsive AdminLayout, PageLayout, AuthLayout
|
|
20
|
+
- 🚀 **One-command deployment** - Deploy to GitHub Pages, Netlify, Vercel instantly
|
|
21
|
+
|
|
22
|
+
**The result:** Go from idea to deployed application in under 10 minutes.
|
|
23
|
+
|
|
24
|
+
---
|
|
25
|
+
|
|
26
|
+
## 📁 Project Templates Overview
|
|
27
|
+
|
|
28
|
+
UIKit CLI provides **4 carefully designed templates** that scale from simple demos to enterprise applications:
|
|
29
|
+
|
|
30
|
+
| Template | Command | Structure | Best For | Key Features |
|
|
31
|
+
|----------|---------|-----------|----------|--------------|
|
|
32
|
+
| **Single** | `uikit create myapp` | Single page showcase | Component demos, learning | No routing, simple structure |
|
|
33
|
+
| **SPA** | `uikit create myapp --spa` | Single-page application | Marketing sites, portfolios | React Router, multiple views |
|
|
34
|
+
| **Multi** | `uikit create myapp --multi` | Multi-layout application | Business apps, SaaS platforms | Multiple layouts, organized routing |
|
|
35
|
+
| **FBCA** | `uikit create myapp --fbca` | Feature-based architecture | Enterprise, large applications | Auto-discovery routing, feature isolation |
|
|
36
|
+
|
|
37
|
+
### Template Decision Guide
|
|
38
|
+
|
|
39
|
+
```
|
|
40
|
+
How complex is your application?
|
|
41
|
+
|
|
42
|
+
Simple Demo/Learning
|
|
43
|
+
└── Single Template
|
|
44
|
+
├── One page with components
|
|
45
|
+
├── No routing needed
|
|
46
|
+
└── Perfect for experimenting
|
|
47
|
+
|
|
48
|
+
Marketing/Portfolio Site
|
|
49
|
+
└── SPA Template
|
|
50
|
+
├── Multiple pages, single layout
|
|
51
|
+
├── React Router included
|
|
52
|
+
└── Clean navigation structure
|
|
53
|
+
|
|
54
|
+
Business Application
|
|
55
|
+
└── Multi Template
|
|
56
|
+
├── Different layouts (Admin, Auth, Page)
|
|
57
|
+
├── Organized page structure
|
|
58
|
+
└── Professional routing
|
|
59
|
+
|
|
60
|
+
Enterprise Application
|
|
61
|
+
└── FBCA Template
|
|
62
|
+
├── Feature-based organization
|
|
63
|
+
├── Scalable architecture
|
|
64
|
+
├── Auto-discovery routing
|
|
65
|
+
└── Team collaboration ready
|
|
66
|
+
```
|
|
67
|
+
|
|
68
|
+
---
|
|
69
|
+
|
|
70
|
+
## 🏗️ Project Generation
|
|
71
|
+
|
|
72
|
+
### Single Template
|
|
73
|
+
```bash
|
|
74
|
+
# Generate simple component showcase
|
|
75
|
+
uikit create demo-app
|
|
76
|
+
|
|
77
|
+
# What you get:
|
|
78
|
+
# /demo-app
|
|
79
|
+
# ├── src/
|
|
80
|
+
# │ ├── App.tsx # Main component showcase
|
|
81
|
+
# │ ├── main.tsx # React entry point
|
|
82
|
+
# │ └── index.css # Tailwind + UIKit styles
|
|
83
|
+
# ├── index.html
|
|
84
|
+
# └── package.json
|
|
85
|
+
```
|
|
86
|
+
|
|
87
|
+
**Folder Structure:**
|
|
88
|
+
- **`src/App.tsx`** - Edit this file to showcase components
|
|
89
|
+
- **`src/main.tsx`** - Theme configuration and React setup
|
|
90
|
+
- **`src/index.css`** - Tailwind CSS + UIKit styles import
|
|
91
|
+
|
|
92
|
+
**When to use:** Learning UIKit, component demos, simple prototypes
|
|
93
|
+
|
|
94
|
+
### SPA Template
|
|
95
|
+
```bash
|
|
96
|
+
# Generate single-page application
|
|
97
|
+
uikit create portfolio-site --spa
|
|
98
|
+
|
|
99
|
+
# What you get:
|
|
100
|
+
# /portfolio-site
|
|
101
|
+
# ├── src/
|
|
102
|
+
# │ ├── App.tsx # All pages and router configuration
|
|
103
|
+
# │ ├── main.tsx # App entry with theme
|
|
104
|
+
# │ └── index.css # Tailwind + UIKit styles
|
|
105
|
+
# ├── index.html
|
|
106
|
+
# └── package.json
|
|
107
|
+
```
|
|
108
|
+
|
|
109
|
+
**Folder Structure:**
|
|
110
|
+
- **`src/App.tsx`** - Contains all page components (HomePage, ComponentsPage, ThemesPage, DocsPage) and router configuration
|
|
111
|
+
- **`src/main.tsx`** - Theme and React setup
|
|
112
|
+
- **`src/index.css`** - Tailwind CSS + UIKit styles import
|
|
113
|
+
|
|
114
|
+
**When to use:** Marketing websites, portfolios, documentation sites, simple applications
|
|
115
|
+
|
|
116
|
+
### Multi Template
|
|
117
|
+
```bash
|
|
118
|
+
# Generate multi-layout application
|
|
119
|
+
uikit create business-app --multi
|
|
120
|
+
|
|
121
|
+
# What you get:
|
|
122
|
+
# /business-app
|
|
123
|
+
# ├── src/
|
|
124
|
+
# │ ├── App.tsx # Router with layout switching
|
|
125
|
+
# │ ├── main.tsx # App entry with theme
|
|
126
|
+
# │ ├── router.tsx # Route configuration
|
|
127
|
+
# │ ├── pages/
|
|
128
|
+
# │ │ ├── Home.tsx # Homepage with PageLayout
|
|
129
|
+
# │ │ ├── About.tsx # About page
|
|
130
|
+
# │ │ ├── Contact.tsx # Contact page
|
|
131
|
+
# │ │ ├── Components.tsx # Component showcase
|
|
132
|
+
# │ │ ├── Themes.tsx # Theme switcher
|
|
133
|
+
# │ │ ├── Login.tsx # Login with AuthLayout
|
|
134
|
+
# │ │ ├── Dashboard.tsx # Dashboard with AdminLayout
|
|
135
|
+
# │ │ └── ErrorPage.tsx # Error page with BlankLayout
|
|
136
|
+
# │ ├── components/
|
|
137
|
+
# │ │ ├── Header.tsx # Site header
|
|
138
|
+
# │ │ ├── Footer.tsx # Site footer
|
|
139
|
+
# │ │ └── index.ts # Component exports
|
|
140
|
+
# │ └── index.css # Tailwind + UIKit styles
|
|
141
|
+
# ├── public/
|
|
142
|
+
# │ ├── favicon.svg
|
|
143
|
+
# │ └── hero.svg
|
|
144
|
+
# ├── docs/ # Development guides
|
|
145
|
+
# ├── index.html
|
|
146
|
+
# └── package.json
|
|
147
|
+
```
|
|
148
|
+
|
|
149
|
+
**Folder Structure:**
|
|
150
|
+
- **`src/pages/`** - All page components (Home, About, Contact, Login, Dashboard, etc.)
|
|
151
|
+
- **`src/components/`** - Shared components (Header, Footer)
|
|
152
|
+
- **`src/router.tsx`** - Simple route configuration with path/component mapping
|
|
153
|
+
- **`src/App.tsx`** - Layout wrapper that chooses layout based on current route
|
|
154
|
+
- **`src/main.tsx`** - Theme configuration and React setup
|
|
155
|
+
- **`src/index.css`** - Tailwind CSS + UIKit styles import
|
|
156
|
+
|
|
157
|
+
**When to use:** Business applications, SaaS platforms, applications with distinct user roles
|
|
158
|
+
|
|
159
|
+
### FBCA Template (Recommended for Enterprise)
|
|
160
|
+
```bash
|
|
161
|
+
# Generate feature-based architecture
|
|
162
|
+
uikit create enterprise-app --fbca
|
|
163
|
+
|
|
164
|
+
# What you get:
|
|
165
|
+
# /enterprise-app
|
|
166
|
+
# ├── src/
|
|
167
|
+
# │ └── web/
|
|
168
|
+
# │ ├── main.tsx # App entry point
|
|
169
|
+
# │ ├── App.tsx # Root router with PageRouter
|
|
170
|
+
# │ ├── lib/
|
|
171
|
+
# │ │ └── page-router.tsx # Auto-discovery routing engine
|
|
172
|
+
# │ ├── features/
|
|
173
|
+
# │ │ ├── main/
|
|
174
|
+
# │ │ │ ├── pages/
|
|
175
|
+
# │ │ │ │ ├── index.tsx # Auto-route: / (homepage)
|
|
176
|
+
# │ │ │ │ └── About.tsx # Auto-route: /about
|
|
177
|
+
# │ │ │ └── components/
|
|
178
|
+
# │ │ │ └── CTASection.tsx # Homepage components
|
|
179
|
+
# │ │ ├── auth/
|
|
180
|
+
# │ │ │ └── pages/
|
|
181
|
+
# │ │ │ └── index.tsx # Auto-route: /auth (login)
|
|
182
|
+
# │ │ ├── gallery/
|
|
183
|
+
# │ │ │ ├── pages/
|
|
184
|
+
# │ │ │ │ └── index.tsx # Auto-route: /gallery
|
|
185
|
+
# │ │ │ └── hooks/
|
|
186
|
+
# │ │ │ └── useGallery.ts # Gallery logic
|
|
187
|
+
# │ │ └── docs/
|
|
188
|
+
# │ │ └── pages/
|
|
189
|
+
# │ │ └── [...slug].tsx # Auto-route: /docs/* (catch-all)
|
|
190
|
+
# │ ├── shared/
|
|
191
|
+
# │ │ ├── components/ # Reusable components
|
|
192
|
+
# │ │ │ ├── Header.tsx # Site header
|
|
193
|
+
# │ │ │ ├── Footer.tsx # Site footer
|
|
194
|
+
# │ │ │ ├── SEO.tsx # SEO component
|
|
195
|
+
# │ │ │ └── index.ts # Component exports
|
|
196
|
+
# │ │ └── hooks/
|
|
197
|
+
# │ │ └── useSEO.ts # Shared logic
|
|
198
|
+
# │ ├── styles/
|
|
199
|
+
# │ │ └── index.css # Tailwind + UIKit styles
|
|
200
|
+
# │ └── index.html
|
|
201
|
+
# ├── public/
|
|
202
|
+
# │ ├── favicon.svg
|
|
203
|
+
# │ └── hero.svg
|
|
204
|
+
# ├── docs/ # Development guides
|
|
205
|
+
# └── package.json
|
|
206
|
+
```
|
|
207
|
+
|
|
208
|
+
**FBCA Folder Structure Explained:**
|
|
209
|
+
|
|
210
|
+
#### **Core Concepts:**
|
|
211
|
+
- **Feature-based organization** - Each business feature is self-contained
|
|
212
|
+
- **Auto-discovery routing** - File structure = URL structure (like Next.js)
|
|
213
|
+
- **Shared resources** - Common components and logic in `/shared`
|
|
214
|
+
- **Scalable architecture** - Easy to add new features without affecting others
|
|
215
|
+
|
|
216
|
+
#### **Key Directories:**
|
|
217
|
+
|
|
218
|
+
**`src/web/features/`** - Business features (auth, dashboard, public, etc.)
|
|
219
|
+
- Each feature contains its own pages, components, and hooks
|
|
220
|
+
- **Complete isolation** - features don't depend on each other
|
|
221
|
+
- **Team-friendly** - different teams can work on different features
|
|
222
|
+
|
|
223
|
+
**`src/web/features/[feature]/pages/`** - Auto-routing pages
|
|
224
|
+
- **`index.tsx`** = `/feature` route
|
|
225
|
+
- **`users.tsx`** = `/feature/users` route
|
|
226
|
+
- **`[id].tsx`** = `/feature/:id` dynamic route (optional)
|
|
227
|
+
|
|
228
|
+
**`src/web/features/[feature]/components/`** - Feature-specific UI components
|
|
229
|
+
- Only used within this feature
|
|
230
|
+
- Can import from `/shared/components` for reusable parts
|
|
231
|
+
|
|
232
|
+
**`src/web/features/[feature]/hooks/`** - Feature-specific logic
|
|
233
|
+
- Custom React hooks for business logic
|
|
234
|
+
- API calls, state management, data processing
|
|
235
|
+
|
|
236
|
+
**`src/web/shared/`** - Application-wide resources
|
|
237
|
+
- **`components/`** - Reusable UI components across features
|
|
238
|
+
- **`hooks/`** - Shared business logic and utilities
|
|
239
|
+
- **`utils/`** - Helper functions, constants, API clients
|
|
240
|
+
|
|
241
|
+
#### **Auto-Discovery Routing:**
|
|
242
|
+
```
|
|
243
|
+
File Structure → URL Route
|
|
244
|
+
/features/main/pages/index.tsx → / (homepage)
|
|
245
|
+
/features/main/pages/About.tsx → /about
|
|
246
|
+
/features/auth/pages/index.tsx → /auth (login)
|
|
247
|
+
/features/gallery/pages/index.tsx → /gallery
|
|
248
|
+
/features/docs/pages/[...slug].tsx → /docs/* (catch-all dynamic route)
|
|
249
|
+
```
|
|
250
|
+
|
|
251
|
+
#### **Which Files to Edit in FBCA:**
|
|
252
|
+
|
|
253
|
+
**Adding a new feature:**
|
|
254
|
+
1. **Create feature folder:** `src/web/features/[feature-name]/`
|
|
255
|
+
2. **Add pages:** `src/web/features/[feature-name]/pages/index.tsx`
|
|
256
|
+
3. **Add components:** `src/web/features/[feature-name]/components/`
|
|
257
|
+
4. **Add logic:** `src/web/features/[feature-name]/hooks/`
|
|
258
|
+
|
|
259
|
+
**Common editing scenarios:**
|
|
260
|
+
- **Homepage:** Edit `src/web/features/main/pages/index.tsx`
|
|
261
|
+
- **Login:** Edit `src/web/features/auth/pages/index.tsx`
|
|
262
|
+
- **Gallery:** Edit `src/web/features/gallery/pages/index.tsx`
|
|
263
|
+
- **New page:** Create `src/web/features/[feature]/pages/[name].tsx`
|
|
264
|
+
- **Dynamic routes:** Use `[id].tsx` for `/feature/:id` or `[...slug].tsx` for catch-all
|
|
265
|
+
|
|
266
|
+
**When to use FBCA:**
|
|
267
|
+
- ✅ **Enterprise applications** with multiple business domains
|
|
268
|
+
- ✅ **Large teams** working on different features simultaneously
|
|
269
|
+
- ✅ **Long-term projects** that need to scale and evolve
|
|
270
|
+
- ✅ **Complex applications** with 10+ pages and distinct feature areas
|
|
271
|
+
- ✅ **Applications requiring feature flags** or modular deployment
|
|
272
|
+
|
|
273
|
+
**Why FBCA is powerful:**
|
|
274
|
+
- **Scalability** - Add new features without touching existing code
|
|
275
|
+
- **Team collaboration** - Multiple developers can work independently
|
|
276
|
+
- **Maintainability** - Features are isolated and self-contained
|
|
277
|
+
- **Performance** - Can implement code splitting per feature
|
|
278
|
+
- **Testing** - Easy to test features in isolation
|
|
279
|
+
|
|
280
|
+
---
|
|
281
|
+
|
|
282
|
+
## ⚡ CLI Commands Reference
|
|
283
|
+
|
|
284
|
+
### Project Creation
|
|
285
|
+
|
|
286
|
+
Choose the right template: Single (learning), SPA (simple sites), Multi (business apps), or FBCA (enterprise).
|
|
287
|
+
|
|
288
|
+
```bash
|
|
289
|
+
# Template generation
|
|
290
|
+
uikit create <app-name> # Single template
|
|
291
|
+
uikit create <app-name> --spa # SPA template
|
|
292
|
+
uikit create <app-name> --multi # Multi-layout template
|
|
293
|
+
uikit create <app-name> --fbca # Feature-based architecture
|
|
294
|
+
|
|
295
|
+
# With theme selection
|
|
296
|
+
uikit create myapp --theme elegant # Start with elegant theme
|
|
297
|
+
```
|
|
298
|
+
|
|
299
|
+
### Code Generation (FBCA Only)
|
|
300
|
+
|
|
301
|
+
FBCA projects support automated code generation for consistent architecture.
|
|
302
|
+
|
|
303
|
+
```bash
|
|
304
|
+
# Generate new feature
|
|
305
|
+
uikit generate feature blog # Creates /features/blog/ with pages, components, hooks
|
|
306
|
+
|
|
307
|
+
# Generate individual components
|
|
308
|
+
uikit generate page dashboard # Creates page component
|
|
309
|
+
uikit generate component UserCard # Creates reusable component
|
|
310
|
+
uikit generate hook useAuth # Creates custom React hook
|
|
311
|
+
```
|
|
312
|
+
|
|
313
|
+
### Development Workflow
|
|
314
|
+
|
|
315
|
+
UIKit CLI provides smart development and build commands with automatic optimizations. `uikit serve` handles port conflicts and bundles themes. `uikit build` compiles TypeScript, processes themes, and generates SEO files.
|
|
316
|
+
|
|
317
|
+
```bash
|
|
318
|
+
# Start development server
|
|
319
|
+
uikit serve # Smart dev server with theme bundling
|
|
320
|
+
uikit serve --port 3000 # Use specific port
|
|
321
|
+
|
|
322
|
+
# Production build
|
|
323
|
+
uikit build # Optimized build with TypeScript & themes
|
|
324
|
+
uikit build --analyze # Include bundle analysis
|
|
325
|
+
|
|
326
|
+
# Preview production build
|
|
327
|
+
uikit preview # Test production build locally
|
|
328
|
+
```
|
|
329
|
+
|
|
330
|
+
### Theme Management
|
|
331
|
+
|
|
332
|
+
Create custom themes to match your brand while maintaining UIKit's design system.
|
|
333
|
+
|
|
334
|
+
```bash
|
|
335
|
+
# Generate custom theme
|
|
336
|
+
uikit generate theme brand # Creates custom theme with your brand colors
|
|
337
|
+
|
|
338
|
+
# Bundle themes to CSS
|
|
339
|
+
uikit bundle # Processes themes and generates CSS
|
|
340
|
+
uikit bundle --watch # Watch mode for theme development
|
|
341
|
+
```
|
|
342
|
+
|
|
343
|
+
### Deployment
|
|
344
|
+
|
|
345
|
+
Deploy UIKit applications as static sites. Use `uikit deploy` for manual deployment or `uikit deploy --github` for automated GitHub Pages.
|
|
346
|
+
|
|
347
|
+
**Manual Deployment:**
|
|
348
|
+
```bash
|
|
349
|
+
uikit deploy # Generates /dist folder for any static host
|
|
350
|
+
```
|
|
351
|
+
Creates optimized build with theme bundling, SPA routing (404.html), and SEO files.
|
|
352
|
+
|
|
353
|
+
**GitHub Pages Deployment:**
|
|
354
|
+
```bash
|
|
355
|
+
uikit deploy --github # Automated GitHub Pages deployment
|
|
356
|
+
uikit deploy --github --domain example.com # With custom domain
|
|
357
|
+
```
|
|
358
|
+
Performs all manual deployment steps plus:
|
|
359
|
+
- Git validation and repository checks
|
|
360
|
+
- Creates `.nojekyll` and CNAME files
|
|
361
|
+
- Pushes to `gh-pages` branch automatically
|
|
362
|
+
- Configures proper base paths for GitHub URLs
|
|
363
|
+
|
|
364
|
+
**Other Hosting:**
|
|
365
|
+
```bash
|
|
366
|
+
uikit build && npx surge dist/ # Surge.sh
|
|
367
|
+
uikit build && npx vercel --prod # Vercel
|
|
368
|
+
uikit build # Then drag dist/ to netlify.com/drop
|
|
369
|
+
```
|
|
370
|
+
|
|
371
|
+
---
|
|
372
|
+
|
|
373
|
+
## 🔧 Development Workflow
|
|
374
|
+
|
|
375
|
+
### Daily Development Process
|
|
376
|
+
```bash
|
|
377
|
+
# 1. Start your project
|
|
378
|
+
cd your-project
|
|
379
|
+
uikit serve # Start development server
|
|
380
|
+
|
|
381
|
+
# 2. Develop with live reload
|
|
382
|
+
# Edit files in src/ folder
|
|
383
|
+
# Browser automatically refreshes with changes
|
|
384
|
+
|
|
385
|
+
# 3. Theme development (if needed)
|
|
386
|
+
uikit bundle --watch # Watch theme changes in another terminal
|
|
387
|
+
|
|
388
|
+
# 4. Generate new components (FBCA only)
|
|
389
|
+
uikit generate page settings # Add new pages as needed
|
|
390
|
+
```
|
|
391
|
+
|
|
392
|
+
### Build and Test Process
|
|
393
|
+
```bash
|
|
394
|
+
# 1. Create production build
|
|
395
|
+
uikit build # Generates optimized /dist folder
|
|
396
|
+
|
|
397
|
+
# 2. Test production build locally
|
|
398
|
+
uikit preview # Serve production build
|
|
399
|
+
|
|
400
|
+
# 3. Deploy to production
|
|
401
|
+
uikit deploy --github # Deploy to GitHub Pages
|
|
402
|
+
# OR upload /dist folder to your hosting provider
|
|
403
|
+
```
|
|
404
|
+
|
|
405
|
+
### Theme Customization Workflow
|
|
406
|
+
```bash
|
|
407
|
+
# 1. Generate custom theme
|
|
408
|
+
uikit generate theme mycustom # Creates theme with default colors
|
|
409
|
+
|
|
410
|
+
# 2. Start theme development
|
|
411
|
+
uikit bundle --watch # Watch for theme changes
|
|
412
|
+
|
|
413
|
+
# 3. Customize your brand colors
|
|
414
|
+
# Edit src/themes/presets/theme-mycustom.js
|
|
415
|
+
# Change primary, secondary colors to match your brand
|
|
416
|
+
|
|
417
|
+
# 4. See changes instantly
|
|
418
|
+
# Browser updates automatically with new theme
|
|
419
|
+
```
|
|
420
|
+
|
|
421
|
+
---
|
|
422
|
+
|
|
423
|
+
## 🚀 Deployment Guide
|
|
424
|
+
|
|
425
|
+
### GitHub Pages (Recommended)
|
|
426
|
+
```bash
|
|
427
|
+
# Automatic deployment
|
|
428
|
+
uikit deploy --github
|
|
429
|
+
|
|
430
|
+
# What this does:
|
|
431
|
+
# 1. Builds your project (uikit build)
|
|
432
|
+
# 2. Creates gh-pages branch (if needed)
|
|
433
|
+
# 3. Pushes /dist content to gh-pages branch
|
|
434
|
+
# 4. Configures GitHub Pages to serve from gh-pages
|
|
435
|
+
# 5. Your site is live at: https://username.github.io/repository-name
|
|
436
|
+
```
|
|
437
|
+
|
|
438
|
+
### Manual Static Hosting
|
|
439
|
+
```bash
|
|
440
|
+
# Build your project
|
|
441
|
+
uikit build
|
|
442
|
+
|
|
443
|
+
# Upload /dist folder contents to:
|
|
444
|
+
# - Netlify (drag and drop /dist folder)
|
|
445
|
+
# - Vercel (vercel --prod /dist)
|
|
446
|
+
# - AWS S3 (aws s3 sync dist/ s3://your-bucket)
|
|
447
|
+
# - Any static hosting provider
|
|
448
|
+
```
|
|
449
|
+
|
|
450
|
+
### Custom Domain Setup
|
|
451
|
+
```bash
|
|
452
|
+
# After GitHub Pages deployment
|
|
453
|
+
# 1. Go to repository Settings > Pages
|
|
454
|
+
# 2. Add your custom domain (e.g., myapp.com)
|
|
455
|
+
# 3. Enable "Enforce HTTPS"
|
|
456
|
+
# 4. Configure DNS:
|
|
457
|
+
# - CNAME record: www.myapp.com → username.github.io
|
|
458
|
+
# - A records: myapp.com → GitHub Pages IPs
|
|
459
|
+
```
|
|
460
|
+
|
|
461
|
+
---
|
|
462
|
+
|
|
463
|
+
## 🎯 Best Practices
|
|
464
|
+
|
|
465
|
+
### Project Structure Best Practices
|
|
466
|
+
```bash
|
|
467
|
+
# ✅ DO: Organize by feature (FBCA)
|
|
468
|
+
/features/auth/pages/login.tsx
|
|
469
|
+
/features/auth/components/LoginForm.tsx
|
|
470
|
+
/features/dashboard/pages/index.tsx
|
|
471
|
+
|
|
472
|
+
# ❌ AVOID: Organize by file type
|
|
473
|
+
/pages/Login.tsx
|
|
474
|
+
/pages/Dashboard.tsx
|
|
475
|
+
/components/LoginForm.tsx
|
|
476
|
+
```
|
|
477
|
+
|
|
478
|
+
### Development Best Practices
|
|
479
|
+
```bash
|
|
480
|
+
# ✅ DO: Use the CLI for generation
|
|
481
|
+
uikit generate page settings # Consistent structure
|
|
482
|
+
|
|
483
|
+
# ❌ AVOID: Manual file creation
|
|
484
|
+
# Creates inconsistent patterns and missing boilerplate
|
|
485
|
+
```
|
|
486
|
+
|
|
487
|
+
### Theme Best Practices
|
|
488
|
+
```bash
|
|
489
|
+
# ✅ DO: Customize existing themes
|
|
490
|
+
uikit generate theme brand # Start with defaults, customize as needed
|
|
491
|
+
|
|
492
|
+
# ❌ AVOID: Building themes from scratch
|
|
493
|
+
# Use semantic color system for consistency
|
|
494
|
+
```
|
|
495
|
+
|
|
496
|
+
### Deployment Best Practices
|
|
497
|
+
```bash
|
|
498
|
+
# ✅ DO: Test production build before deployment
|
|
499
|
+
uikit build && uikit preview
|
|
500
|
+
|
|
501
|
+
# ✅ DO: Use automated deployment
|
|
502
|
+
uikit deploy --github # Consistent, repeatable process
|
|
503
|
+
|
|
504
|
+
# ❌ AVOID: Manual FTP uploads
|
|
505
|
+
# Error-prone and time-consuming
|
|
506
|
+
```
|
|
507
|
+
|
|
508
|
+
---
|
|
509
|
+
|
|
510
|
+
## 🔍 Troubleshooting
|
|
511
|
+
|
|
512
|
+
### Common Issues
|
|
513
|
+
|
|
514
|
+
**"Command not found: uikit"**
|
|
515
|
+
```bash
|
|
516
|
+
# Install UIKit CLI globally
|
|
517
|
+
npm install -g @bloomneo/uikit
|
|
518
|
+
|
|
519
|
+
# Verify installation
|
|
520
|
+
uikit --version
|
|
521
|
+
```
|
|
522
|
+
|
|
523
|
+
**"Port 3000 already in use"**
|
|
524
|
+
```bash
|
|
525
|
+
# Kill process on port 3000
|
|
526
|
+
npx kill-port 3000
|
|
527
|
+
|
|
528
|
+
# Or use different port
|
|
529
|
+
uikit serve --port 3001
|
|
530
|
+
```
|
|
531
|
+
|
|
532
|
+
**"Build fails with module errors"**
|
|
533
|
+
```bash
|
|
534
|
+
# Clear node_modules and reinstall
|
|
535
|
+
rm -rf node_modules package-lock.json
|
|
536
|
+
npm install
|
|
537
|
+
|
|
538
|
+
# Rebuild
|
|
539
|
+
uikit build
|
|
540
|
+
```
|
|
541
|
+
|
|
542
|
+
**"Theme changes not applying"**
|
|
543
|
+
```bash
|
|
544
|
+
# Rebuild themes
|
|
545
|
+
uikit bundle
|
|
546
|
+
|
|
547
|
+
# Clear browser cache
|
|
548
|
+
# Restart development server
|
|
549
|
+
uikit serve
|
|
550
|
+
```
|
|
551
|
+
|
|
552
|
+
**"Deployment to GitHub Pages fails"**
|
|
553
|
+
```bash
|
|
554
|
+
# Check repository settings
|
|
555
|
+
# Ensure GitHub Pages is enabled
|
|
556
|
+
# Verify branch permissions
|
|
557
|
+
|
|
558
|
+
# Manual deployment
|
|
559
|
+
uikit build
|
|
560
|
+
# Manually push /dist contents to gh-pages branch
|
|
561
|
+
```
|
|
562
|
+
|
|
563
|
+
---
|
|
564
|
+
|
|
565
|
+
## 📚 Related Guides
|
|
566
|
+
|
|
567
|
+
- **[UIKit Theme Guide](./UIKIT_THEME_GUIDE.md)** - Custom theming and colors
|
|
568
|
+
- **[UIKit Composite UI System](./UIKIT_COMPOSITE_UI_SYSTEM.md)** - Components and layouts
|
|
569
|
+
- **[UIKit LLM Guide](./UIKIT_LLM_GUIDE.md)** - Complete implementation reference
|
|
570
|
+
- **[GitHub Repository](https://github.com/bloomneo/uikit)** - Source code and examples
|
|
571
|
+
|
|
572
|
+
---
|
|
573
|
+
|
|
574
|
+
**Master UIKit CLI and ship production applications in minutes, not hours** ⚡
|