fulldev-ui 0.7.0-beta.9 → 0.7.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.editorconfig +10 -0
- package/.github/CODEOWNERS +2 -0
- package/.github/ISSUE_TEMPLATE/bug_report.yml +12 -0
- package/.github/ISSUE_TEMPLATE/config.yml +8 -0
- package/.github/ISSUE_TEMPLATE/documentation.yml +12 -0
- package/.github/ISSUE_TEMPLATE/feature_request.yml +12 -0
- package/.github/ISSUE_TEMPLATE/support.yml +12 -0
- package/.nvmrc +1 -0
- package/.prettierignore +21 -0
- package/CHANGELOG.md +0 -1
- package/CODE_OF_CONDUCT.md +7 -0
- package/CONTRIBUTING.md +142 -0
- package/README.md +86 -14
- package/ai/website-quality-checklist.md +33 -0
- package/astro.config.example.ts +90 -0
- package/astro.config.ts +183 -0
- package/components.json +15 -9
- package/package.example.json +41 -0
- package/package.json +40 -67
- package/prettier.config.cjs +44 -0
- package/public/r/accordion.json +32 -0
- package/public/r/alert.json +27 -0
- package/public/r/all.json +41 -0
- package/public/r/article-1.json +18 -0
- package/public/r/article-2.json +18 -0
- package/public/r/articles-1.json +21 -0
- package/public/r/articles-2.json +21 -0
- package/public/r/articles-3.json +21 -0
- package/public/r/articles-4.json +21 -0
- package/public/r/auto-form.json +26 -0
- package/public/r/avatar.json +28 -0
- package/public/r/badge.json +17 -0
- package/public/r/banner-1.json +13 -0
- package/public/r/banner-2.json +13 -0
- package/public/r/banner.json +38 -0
- package/public/r/block.json +89 -0
- package/public/r/blocks.json +91 -0
- package/public/r/button.json +17 -0
- package/public/r/checkbox.json +17 -0
- package/public/r/collapsible.json +27 -0
- package/public/r/components.json +46 -0
- package/public/r/contact-1.json +18 -0
- package/public/r/contact-2.json +18 -0
- package/public/r/contact-3.json +19 -0
- package/public/r/content-1.json +19 -0
- package/public/r/content-2.json +19 -0
- package/public/r/content-3.json +19 -0
- package/public/r/content-4.json +19 -0
- package/public/r/cta-1.json +20 -0
- package/public/r/cta-2.json +21 -0
- package/public/r/cta-3.json +20 -0
- package/public/r/cta-4.json +21 -0
- package/public/r/cta-5.json +21 -0
- package/public/r/cta-6.json +20 -0
- package/public/r/cta-7.json +21 -0
- package/public/r/cta-8.json +20 -0
- package/public/r/empty.json +42 -0
- package/public/r/faqs-1.json +18 -0
- package/public/r/faqs-2.json +18 -0
- package/public/r/faqs-3.json +18 -0
- package/public/r/faqs-4.json +18 -0
- package/public/r/features-1.json +18 -0
- package/public/r/features-2.json +18 -0
- package/public/r/features-3.json +17 -0
- package/public/r/features-4.json +18 -0
- package/public/r/features-5.json +18 -0
- package/public/r/features-6.json +18 -0
- package/public/r/field.json +63 -0
- package/public/r/footer-1.json +13 -0
- package/public/r/footer-2.json +13 -0
- package/public/r/footer.json +77 -0
- package/public/r/header-1.json +23 -0
- package/public/r/header-2.json +23 -0
- package/public/r/header-3.json +23 -0
- package/public/r/header.json +27 -0
- package/public/r/hero-1.json +19 -0
- package/public/r/hero-10.json +21 -0
- package/public/r/hero-11.json +21 -0
- package/public/r/hero-12.json +18 -0
- package/public/r/hero-13.json +18 -0
- package/public/r/hero-2.json +21 -0
- package/public/r/hero-3.json +18 -0
- package/public/r/hero-4.json +18 -0
- package/public/r/hero-5.json +22 -0
- package/public/r/hero-6.json +22 -0
- package/public/r/hero-7.json +22 -0
- package/public/r/hero-8.json +18 -0
- package/public/r/hero-9.json +22 -0
- package/public/r/icon.json +21 -0
- package/public/r/image.json +17 -0
- package/public/r/input.json +17 -0
- package/public/r/item.json +47 -0
- package/public/r/label.json +17 -0
- package/public/r/layout.json +13 -0
- package/public/r/list.json +22 -0
- package/public/r/logo.json +28 -0
- package/public/r/logos-1.json +13 -0
- package/public/r/logos-2.json +17 -0
- package/public/r/logos-3.json +13 -0
- package/public/r/marquee.json +22 -0
- package/public/r/native-carousel.json +37 -0
- package/public/r/native-select.json +27 -0
- package/public/r/navigation-menu.json +57 -0
- package/public/r/page.json +18 -0
- package/public/r/price.json +27 -0
- package/public/r/pricings-1.json +20 -0
- package/public/r/pricings-2.json +20 -0
- package/public/r/pricings-3.json +20 -0
- package/public/r/product-1.json +20 -0
- package/public/r/products-1.json +20 -0
- package/public/r/products-2.json +19 -0
- package/public/r/products-3.json +18 -0
- package/public/r/products-4.json +18 -0
- package/public/r/products-5.json +20 -0
- package/public/r/radio-group.json +22 -0
- package/public/r/rating.json +17 -0
- package/public/r/registry.json +2443 -0
- package/public/r/reviews-1.json +21 -0
- package/public/r/reviews-2.json +21 -0
- package/public/r/reviews-3.json +21 -0
- package/public/r/reviews-4.json +22 -0
- package/public/r/reviews-5.json +22 -0
- package/public/r/section.json +62 -0
- package/public/r/separator.json +17 -0
- package/public/r/services-1.json +19 -0
- package/public/r/services-2.json +19 -0
- package/public/r/services-3.json +18 -0
- package/public/r/services-4.json +19 -0
- package/public/r/services-5.json +19 -0
- package/public/r/services-6.json +18 -0
- package/public/r/services-7.json +19 -0
- package/public/r/sheet.json +53 -0
- package/public/r/sidebar.json +42 -0
- package/public/r/skeleton.json +17 -0
- package/public/r/spinner.json +17 -0
- package/public/r/table.json +52 -0
- package/public/r/tabs.json +32 -0
- package/public/r/textarea.json +17 -0
- package/public/r/theme-toggle.json +18 -0
- package/public/r/tile.json +52 -0
- package/public/r/video.json +17 -0
- package/registry.json +2443 -0
- package/site.json +12 -0
- package/src/assets/avatar-sil-veltman.webp +0 -0
- package/src/assets/image-placeholder.webp +0 -0
- package/src/assets/logo-fulldev.svg +4 -0
- package/src/assets/my-accordion-code-example-homepage.astro.webp +0 -0
- package/src/assets/my-cta-code-example-homepage.astro.webp +0 -0
- package/src/assets/og-image-homepage-screenshot.png +0 -0
- package/src/components/_skeletons/split-grid.astro +47 -0
- package/src/components/_skeletons/split-masonry.astro +57 -0
- package/src/components/_skeletons/split-media.astro +31 -0
- package/src/components/_skeletons/spread-grid.astro +49 -0
- package/src/components/_skeletons/spread-masonry.astro +59 -0
- package/src/components/_skeletons/spread-media.astro +33 -0
- package/src/components/_skeletons/stack-grid.astro +44 -0
- package/src/components/_skeletons/stack-masonry.astro +54 -0
- package/src/components/_skeletons/stack-media.astro +28 -0
- package/src/components/block.astro +125 -0
- package/src/components/blocks/article-1.astro +64 -0
- package/src/components/blocks/article-2.astro +64 -0
- package/src/components/blocks/articles-1.astro +103 -0
- package/src/components/blocks/articles-2.astro +104 -0
- package/src/components/blocks/articles-3.astro +101 -0
- package/src/components/blocks/articles-4.astro +103 -0
- package/src/components/blocks/banner-1.astro +25 -0
- package/src/components/blocks/banner-2.astro +25 -0
- package/src/components/blocks/blocks-1.astro +66 -0
- package/src/components/blocks/blocks-2.astro +95 -0
- package/src/components/blocks/blocks-3.astro +93 -0
- package/src/components/blocks/blocks-4.astro +110 -0
- package/src/components/blocks/contact-1.astro +55 -0
- package/src/components/blocks/contact-2.astro +60 -0
- package/src/components/blocks/contact-3.astro +69 -0
- package/src/components/blocks/content-1.astro +62 -0
- package/src/components/blocks/content-2.astro +68 -0
- package/src/components/blocks/content-3.astro +67 -0
- package/src/components/blocks/content-4.astro +68 -0
- package/src/components/blocks/content-5.astro +76 -0
- package/src/components/blocks/content-6.astro +76 -0
- package/src/components/blocks/cta-1.astro +78 -0
- package/src/components/blocks/cta-2.astro +88 -0
- package/src/components/blocks/cta-3.astro +82 -0
- package/src/components/blocks/cta-4.astro +83 -0
- package/src/components/blocks/cta-5.astro +88 -0
- package/src/components/blocks/cta-6.astro +78 -0
- package/src/components/blocks/cta-7.astro +90 -0
- package/src/components/blocks/cta-8.astro +91 -0
- package/src/components/blocks/faqs-1.astro +61 -0
- package/src/components/blocks/faqs-2.astro +64 -0
- package/src/components/blocks/faqs-3.astro +61 -0
- package/src/components/blocks/faqs-4.astro +61 -0
- package/src/components/blocks/features-1.astro +90 -0
- package/src/components/blocks/features-2.astro +90 -0
- package/src/components/blocks/features-3.astro +58 -0
- package/src/components/blocks/features-4.astro +95 -0
- package/src/components/blocks/features-5.astro +100 -0
- package/src/components/blocks/features-6.astro +72 -0
- package/src/components/blocks/footer-1.astro +92 -0
- package/src/components/blocks/footer-2.astro +61 -0
- package/src/components/blocks/footer-3.astro +102 -0
- package/src/components/blocks/header-1.astro +200 -0
- package/src/components/blocks/header-2.astro +195 -0
- package/src/components/blocks/header-3.astro +213 -0
- package/src/components/blocks/hero-1.astro +65 -0
- package/src/components/blocks/hero-10.astro +98 -0
- package/src/components/blocks/hero-11.astro +98 -0
- package/src/components/blocks/hero-12.astro +66 -0
- package/src/components/blocks/hero-13.astro +63 -0
- package/src/components/blocks/hero-14.astro +70 -0
- package/src/components/blocks/hero-2.astro +87 -0
- package/src/components/blocks/hero-3.astro +59 -0
- package/src/components/blocks/hero-4.astro +64 -0
- package/src/components/blocks/hero-5.astro +99 -0
- package/src/components/blocks/hero-6.astro +106 -0
- package/src/components/blocks/hero-7.astro +108 -0
- package/src/components/blocks/hero-8.astro +72 -0
- package/src/components/blocks/hero-9.astro +111 -0
- package/src/components/blocks/images-1.astro +70 -0
- package/src/components/blocks/images-2.astro +62 -0
- package/src/components/blocks/links-1.astro +46 -0
- package/src/components/blocks/links-2.astro +49 -0
- package/src/components/blocks/logos-1.astro +34 -0
- package/src/components/blocks/logos-2.astro +41 -0
- package/src/components/blocks/logos-3.astro +33 -0
- package/src/components/blocks/pricings-1.astro +80 -0
- package/src/components/blocks/pricings-2.astro +83 -0
- package/src/components/blocks/pricings-3.astro +80 -0
- package/src/components/blocks/product-1.astro +103 -0
- package/src/components/blocks/products-1.astro +81 -0
- package/src/components/blocks/products-2.astro +76 -0
- package/src/components/blocks/products-3.astro +81 -0
- package/src/components/blocks/products-4.astro +81 -0
- package/src/components/blocks/products-5.astro +89 -0
- package/src/components/blocks/reviews-1.astro +98 -0
- package/src/components/blocks/reviews-2.astro +101 -0
- package/src/components/blocks/reviews-3.astro +102 -0
- package/src/components/blocks/reviews-4.astro +103 -0
- package/src/components/blocks/reviews-5.astro +103 -0
- package/src/components/blocks/services-1.astro +93 -0
- package/src/components/blocks/services-2.astro +100 -0
- package/src/components/blocks/services-3.astro +98 -0
- package/src/components/blocks/services-4.astro +94 -0
- package/src/components/blocks/services-5.astro +96 -0
- package/src/components/blocks/services-6.astro +87 -0
- package/src/components/blocks/services-7.astro +93 -0
- package/src/components/blocks/skeletons-1.astro +61 -0
- package/src/components/blocks/stats-1.astro +64 -0
- package/src/components/blocks/stats-2.astro +69 -0
- package/src/components/blocks/stats-3.astro +66 -0
- package/src/components/blocks/steps-1.astro +82 -0
- package/src/components/blocks/steps-2.astro +76 -0
- package/src/components/blocks/steps-3.astro +73 -0
- package/src/components/blocks/table-1.astro +89 -0
- package/src/components/blocks/video-1.astro +93 -0
- package/src/components/blocks/video-2.astro +96 -0
- package/src/components/blocks/video-3.astro +73 -0
- package/src/components/blocks/videos-1.astro +63 -0
- package/src/components/blocks/videos-2.astro +66 -0
- package/src/components/blocks/videos-3.astro +68 -0
- package/src/components/blocks/videos-4.astro +64 -0
- package/src/components/layout.astro +195 -0
- package/src/components/live-code-layout.astro +14 -0
- package/src/components/starlight-head.astro +65 -0
- package/src/components/starlight-icons.astro +36 -0
- package/src/components/starlight-markdown-content.astro +68 -0
- package/src/components/starlight-title.astro +37 -0
- package/src/components/ui/accordion/accordion-content.astro +23 -0
- package/src/components/ui/accordion/accordion-item.astro +27 -0
- package/src/components/ui/accordion/accordion-trigger.astro +33 -0
- package/src/components/ui/accordion/accordion.astro +19 -0
- package/src/components/ui/accordion/index.ts +4 -4
- package/src/components/ui/alert/alert-description.astro +26 -0
- package/src/components/ui/alert/alert-title.astro +26 -0
- package/src/components/ui/alert/alert.astro +41 -0
- package/src/components/ui/alert/index.ts +3 -0
- package/src/components/ui/auto-form/auto-form.astro +135 -0
- package/src/components/ui/auto-form/index.ts +1 -15
- package/src/components/ui/avatar/avatar-fallback.astro +26 -0
- package/src/components/ui/avatar/avatar-image.astro +33 -0
- package/src/components/ui/avatar/avatar.astro +26 -0
- package/src/components/ui/avatar/index.ts +3 -24
- package/src/components/ui/badge/badge.astro +54 -0
- package/src/components/ui/badge/index.ts +1 -22
- package/src/components/ui/banner/banner-close.astro +21 -0
- package/src/components/ui/banner/banner-content.astro +41 -0
- package/src/components/ui/banner/banner-description.astro +19 -0
- package/src/components/ui/banner/banner-title.astro +19 -0
- package/src/components/ui/banner/banner.astro +88 -0
- package/src/components/ui/banner/index.ts +5 -0
- package/src/components/ui/button/button.astro +74 -0
- package/src/components/ui/button/index.ts +1 -31
- package/src/components/ui/checkbox/checkbox.astro +20 -0
- package/src/components/ui/checkbox/index.ts +1 -1
- package/src/components/ui/collapsible/collapsible-content.astro +19 -0
- package/src/components/ui/collapsible/collapsible-trigger.astro +33 -0
- package/src/components/ui/collapsible/collapsible.astro +27 -0
- package/src/components/ui/collapsible/index.ts +3 -3
- package/src/components/ui/command/command-dialog.astro +52 -0
- package/src/components/ui/command/command-empty.astro +20 -0
- package/src/components/ui/command/command-group.astro +34 -0
- package/src/components/ui/command/command-input.astro +29 -0
- package/src/components/ui/command/command-item.astro +33 -0
- package/src/components/ui/command/command-list.astro +27 -0
- package/src/components/ui/command/command-separator.astro +17 -0
- package/src/components/ui/command/command-shortcut.astro +27 -0
- package/src/components/ui/command/command.astro +166 -0
- package/src/components/ui/command/index.ts +10 -9
- package/src/components/ui/dialog/dialog-close.astro +21 -0
- package/src/components/ui/dialog/dialog-content.astro +42 -0
- package/src/components/ui/dialog/dialog-description.astro +23 -0
- package/src/components/ui/dialog/dialog-footer.astro +26 -0
- package/src/components/ui/dialog/dialog-header.astro +23 -0
- package/src/components/ui/dialog/dialog-title.astro +23 -0
- package/src/components/ui/dialog/dialog-trigger.astro +19 -0
- package/src/components/ui/dialog/dialog.astro +46 -0
- package/src/components/ui/dialog/index.ts +8 -9
- package/src/components/ui/empty/empty-content.astro +26 -0
- package/src/components/ui/empty/empty-description.astro +26 -0
- package/src/components/ui/empty/empty-header.astro +26 -0
- package/src/components/ui/empty/empty-media.astro +40 -0
- package/src/components/ui/empty/empty-title.astro +23 -0
- package/src/components/ui/empty/empty.astro +26 -0
- package/src/components/ui/empty/index.ts +6 -0
- package/src/components/ui/field/field-content.astro +26 -0
- package/src/components/ui/field/field-description.astro +28 -0
- package/src/components/ui/field/field-error.astro +1 -0
- package/src/components/ui/field/field-group.astro +26 -0
- package/src/components/ui/field/field-label.astro +29 -0
- package/src/components/ui/field/field-legend.astro +31 -0
- package/src/components/ui/field/field-separator.astro +34 -0
- package/src/components/ui/field/field-set.astro +27 -0
- package/src/components/ui/field/field-title.astro +26 -0
- package/src/components/ui/field/field.astro +50 -0
- package/src/components/ui/field/index.ts +9 -0
- package/src/components/ui/footer/footer-actions.astro +19 -0
- package/src/components/ui/footer/footer-content.astro +19 -0
- package/src/components/ui/footer/footer-copyright.astro +24 -0
- package/src/components/ui/footer/footer-description.astro +37 -0
- package/src/components/ui/footer/footer-grid.astro +25 -0
- package/src/components/ui/footer/footer-group-label.astro +19 -0
- package/src/components/ui/footer/footer-group.astro +19 -0
- package/src/components/ui/footer/footer-menu-item.astro +19 -0
- package/src/components/ui/footer/footer-menu-link.astro +25 -0
- package/src/components/ui/footer/footer-menu.astro +32 -0
- package/src/components/ui/footer/footer-split.astro +26 -0
- package/src/components/ui/footer/footer-spread.astro +25 -0
- package/src/components/ui/footer/footer.astro +71 -0
- package/src/components/ui/footer/index.ts +12 -0
- package/src/components/ui/header/header-actions.astro +19 -0
- package/src/components/ui/header/header-content.astro +22 -0
- package/src/components/ui/header/header.astro +70 -0
- package/src/components/ui/header/index.ts +3 -0
- package/src/components/ui/icon/icon.astro +88 -0
- package/src/components/ui/icon/index.ts +1 -0
- package/src/components/ui/image/image.astro +22 -0
- package/src/components/ui/image/index.ts +1 -0
- package/src/components/ui/input/index.ts +1 -1
- package/src/components/ui/input/input.astro +22 -0
- package/src/components/ui/item/index.ts +7 -0
- package/src/components/ui/item/item-actions.astro +23 -0
- package/src/components/ui/item/item-content.astro +27 -0
- package/src/components/ui/item/item-description.astro +27 -0
- package/src/components/ui/item/item-group.astro +24 -0
- package/src/components/ui/item/item-media.astro +41 -0
- package/src/components/ui/item/item-title.astro +26 -0
- package/src/components/ui/item/item.astro +51 -0
- package/src/components/ui/label/index.ts +1 -1
- package/src/components/ui/label/label.astro +26 -0
- package/src/components/ui/list/index.ts +2 -0
- package/src/components/ui/list/list-item.astro +26 -0
- package/src/components/ui/list/list.astro +19 -0
- package/src/components/ui/logo/index.ts +3 -0
- package/src/components/ui/logo/logo-image.astro +24 -0
- package/src/components/ui/logo/logo-text.astro +19 -0
- package/src/components/ui/logo/logo.astro +28 -0
- package/src/components/ui/marquee/index.ts +2 -0
- package/src/components/ui/marquee/marquee-content.astro +60 -0
- package/src/components/ui/marquee/marquee.astro +19 -0
- package/src/components/ui/native-carousel/index.ts +5 -0
- package/src/components/ui/native-carousel/native-carousel-content.astro +92 -0
- package/src/components/ui/native-carousel/native-carousel-item.astro +17 -0
- package/src/components/ui/native-carousel/native-carousel-next.astro +24 -0
- package/src/components/ui/native-carousel/native-carousel-previous.astro +24 -0
- package/src/components/ui/native-carousel/native-carousel.astro +20 -0
- package/src/components/ui/native-select/index.ts +3 -0
- package/src/components/ui/native-select/native-select-optgroup.astro +13 -0
- package/src/components/ui/native-select/native-select-option.astro +12 -0
- package/src/components/ui/native-select/native-select.astro +34 -0
- package/src/components/ui/navigation-menu/index.ts +9 -14
- package/src/components/ui/navigation-menu/navigation-menu-content.astro +28 -0
- package/src/components/ui/navigation-menu/navigation-menu-item.astro +23 -0
- package/src/components/ui/navigation-menu/navigation-menu-link.astro +49 -0
- package/src/components/ui/navigation-menu/navigation-menu-list.astro +26 -0
- package/src/components/ui/navigation-menu/navigation-menu-sub-item.astro +23 -0
- package/src/components/ui/navigation-menu/navigation-menu-sub-link.astro +27 -0
- package/src/components/ui/navigation-menu/navigation-menu-sub.astro +23 -0
- package/src/components/ui/navigation-menu/navigation-menu-trigger.astro +32 -0
- package/src/components/ui/navigation-menu/navigation-menu.astro +26 -0
- package/src/components/ui/price/index.ts +3 -0
- package/src/components/ui/price/price-unit.astro +22 -0
- package/src/components/ui/price/price-value.astro +48 -0
- package/src/components/ui/price/price.astro +22 -0
- package/src/components/ui/radio-group/index.ts +2 -2
- package/src/components/ui/radio-group/radio-group-item.astro +20 -0
- package/src/components/ui/radio-group/radio-group.astro +18 -0
- package/src/components/ui/rating/index.ts +1 -0
- package/src/components/ui/rating/rating.astro +36 -0
- package/src/components/ui/section/index.ts +10 -0
- package/src/components/ui/section/section-actions.astro +19 -0
- package/src/components/ui/section/section-content.astro +22 -0
- package/src/components/ui/section/section-grid.astro +37 -0
- package/src/components/ui/section/section-masonry.astro +33 -0
- package/src/components/ui/section/section-media.astro +26 -0
- package/src/components/ui/section/section-prose.astro +49 -0
- package/src/components/ui/section/section-provider.astro +27 -0
- package/src/components/ui/section/section-split.astro +26 -0
- package/src/components/ui/section/section-spread.astro +25 -0
- package/src/components/ui/section/section.astro +90 -0
- package/src/components/ui/separator/index.ts +1 -1
- package/src/components/ui/separator/separator.astro +31 -0
- package/src/components/ui/sheet/index.ts +8 -0
- package/src/components/ui/sheet/sheet-close.astro +21 -0
- package/src/components/ui/sheet/sheet-content.astro +82 -0
- package/src/components/ui/sheet/sheet-description.astro +23 -0
- package/src/components/ui/sheet/sheet-footer.astro +23 -0
- package/src/components/ui/sheet/sheet-header.astro +23 -0
- package/src/components/ui/sheet/sheet-title.astro +23 -0
- package/src/components/ui/sheet/sheet-trigger.astro +19 -0
- package/src/components/ui/sheet/sheet.astro +51 -0
- package/src/components/ui/sidebar/index.ts +6 -0
- package/src/components/ui/sidebar/sidebar-menu-button.astro +57 -0
- package/src/components/ui/sidebar/sidebar-menu-item.astro +23 -0
- package/src/components/ui/sidebar/sidebar-menu-sub-button.astro +50 -0
- package/src/components/ui/sidebar/sidebar-menu-sub-item.astro +23 -0
- package/src/components/ui/sidebar/sidebar-menu-sub.astro +26 -0
- package/src/components/ui/sidebar/sidebar-menu.astro +26 -0
- package/src/components/ui/skeleton/index.ts +1 -0
- package/src/components/ui/skeleton/skeleton.astro +11 -0
- package/src/components/ui/spinner/index.ts +1 -0
- package/src/components/ui/spinner/spinner.astro +18 -0
- package/src/components/ui/table/index.ts +9 -0
- package/src/components/ui/table/table-body.astro +18 -0
- package/src/components/ui/table/table-caption.astro +18 -0
- package/src/components/ui/table/table-cell.astro +21 -0
- package/src/components/ui/table/table-footer.astro +21 -0
- package/src/components/ui/table/table-head.astro +21 -0
- package/src/components/ui/table/table-header.astro +17 -0
- package/src/components/ui/table/table-row.astro +21 -0
- package/src/components/ui/table/table.astro +19 -0
- package/src/components/ui/tabs/index.ts +5 -0
- package/src/components/ui/tabs/tabs-content.astro +30 -0
- package/src/components/ui/tabs/tabs-list.astro +27 -0
- package/src/components/ui/tabs/tabs-trigger.astro +37 -0
- package/src/components/ui/tabs/tabs.astro +105 -0
- package/src/components/ui/textarea/index.ts +1 -1
- package/src/components/ui/textarea/textarea.astro +17 -0
- package/src/components/ui/theme-toggle/index.ts +2 -0
- package/src/components/ui/theme-toggle/theme-provider.astro +26 -0
- package/src/components/ui/theme-toggle/theme-toggle.astro +55 -0
- package/src/components/ui/tile/index.ts +8 -0
- package/src/components/ui/tile/tile-actions.astro +19 -0
- package/src/components/ui/tile/tile-content.astro +19 -0
- package/src/components/ui/tile/tile-description.astro +19 -0
- package/src/components/ui/tile/tile-media.astro +44 -0
- package/src/components/ui/tile/tile-split.astro +23 -0
- package/src/components/ui/tile/tile-spread.astro +25 -0
- package/src/components/ui/tile/tile-title.astro +19 -0
- package/src/components/ui/tile/tile.astro +57 -0
- package/src/components/ui/video/index.ts +1 -0
- package/src/components/ui/video/video.astro +39 -0
- package/src/content/docs/docs/components/_command.mdx +110 -0
- package/src/content/docs/docs/components/_dialog.mdx +84 -0
- package/src/content/docs/docs/components/accordion.mdx +90 -0
- package/src/content/docs/docs/components/alert.mdx +63 -0
- package/src/content/docs/docs/components/auto-form.mdx +42 -0
- package/src/content/docs/docs/components/avatar.mdx +60 -0
- package/src/content/docs/docs/components/badge.mdx +71 -0
- package/src/content/docs/docs/components/banner.mdx +42 -0
- package/src/content/docs/docs/components/button.mdx +188 -0
- package/src/content/docs/docs/components/checkbox.mdx +60 -0
- package/src/content/docs/docs/components/collapsible.mdx +67 -0
- package/src/content/docs/docs/components/empty.mdx +64 -0
- package/src/content/docs/docs/components/field.mdx +347 -0
- package/src/content/docs/docs/components/footer.mdx +27 -0
- package/src/content/docs/docs/components/header.mdx +77 -0
- package/src/content/docs/docs/components/icon.mdx +43 -0
- package/src/content/docs/docs/components/image.mdx +38 -0
- package/src/content/docs/docs/components/input.mdx +35 -0
- package/src/content/docs/docs/components/item.mdx +75 -0
- package/src/content/docs/docs/components/label.mdx +34 -0
- package/src/content/docs/docs/components/list.mdx +52 -0
- package/src/content/docs/docs/components/logo.mdx +44 -0
- package/src/content/docs/docs/components/marquee.mdx +110 -0
- package/src/content/docs/docs/components/native-carousel.mdx +83 -0
- package/src/content/docs/docs/components/native-select.mdx +141 -0
- package/src/content/docs/docs/components/navigation-menu.mdx +91 -0
- package/src/content/docs/docs/components/price.mdx +42 -0
- package/src/content/docs/docs/components/radio-group.mdx +47 -0
- package/src/content/docs/docs/components/rating.mdx +81 -0
- package/src/content/docs/docs/components/section.mdx +87 -0
- package/src/content/docs/docs/components/separator.mdx +39 -0
- package/src/content/docs/docs/components/sheet.mdx +73 -0
- package/src/content/docs/docs/components/sidebar.mdx +208 -0
- package/src/content/docs/docs/components/skeleton.mdx +24 -0
- package/src/content/docs/docs/components/spinner.mdx +37 -0
- package/src/content/docs/docs/components/table.mdx +100 -0
- package/src/content/docs/docs/components/tabs.mdx +59 -0
- package/src/content/docs/docs/components/textarea.mdx +35 -0
- package/src/content/docs/docs/components/theme-toggle.mdx +56 -0
- package/src/content/docs/docs/components/tile.mdx +198 -0
- package/src/content/docs/docs/components/video.mdx +36 -0
- package/src/content/docs/docs/components.md +4 -0
- package/src/content/docs/docs/index.md +9 -0
- package/src/content/docs/docs/installation.md +93 -0
- package/src/content/docs/docs/theming.md +6 -0
- package/src/content/layouts/block.yaml +276 -0
- package/src/content/layouts/docs.yaml +25 -0
- package/src/content/layouts/hero.yaml +256 -0
- package/src/content/layouts/index.yaml +23 -0
- package/src/content/pages/blocks/article-1.md +9 -0
- package/src/content/pages/blocks/article-2.md +9 -0
- package/src/content/pages/blocks/article.md +11 -0
- package/src/content/pages/blocks/articles-1.md +9 -0
- package/src/content/pages/blocks/articles-2.md +9 -0
- package/src/content/pages/blocks/articles-3.md +9 -0
- package/src/content/pages/blocks/articles-4.md +9 -0
- package/src/content/pages/blocks/articles.md +13 -0
- package/src/content/pages/blocks/banner-1.md +9 -0
- package/src/content/pages/blocks/banner-2.md +9 -0
- package/src/content/pages/blocks/banner.md +11 -0
- package/src/content/pages/blocks/contact-1.md +9 -0
- package/src/content/pages/blocks/contact-2.md +9 -0
- package/src/content/pages/blocks/contact-3.md +9 -0
- package/src/content/pages/blocks/contact.md +11 -0
- package/src/content/pages/blocks/content-1.md +9 -0
- package/src/content/pages/blocks/content-2.md +9 -0
- package/src/content/pages/blocks/content-3.md +9 -0
- package/src/content/pages/blocks/content-4.md +9 -0
- package/src/content/pages/blocks/content.md +13 -0
- package/src/content/pages/blocks/cta-1.md +9 -0
- package/src/content/pages/blocks/cta-2.md +9 -0
- package/src/content/pages/blocks/cta-3.md +9 -0
- package/src/content/pages/blocks/cta-4.md +9 -0
- package/src/content/pages/blocks/cta-5.md +9 -0
- package/src/content/pages/blocks/cta-6.md +9 -0
- package/src/content/pages/blocks/cta-7.md +9 -0
- package/src/content/pages/blocks/cta-8.md +9 -0
- package/src/content/pages/blocks/cta.md +17 -0
- package/src/content/pages/blocks/faqs-1.md +9 -0
- package/src/content/pages/blocks/faqs-2.md +9 -0
- package/src/content/pages/blocks/faqs-3.md +9 -0
- package/src/content/pages/blocks/faqs-4.md +9 -0
- package/src/content/pages/blocks/faqs.md +13 -0
- package/src/content/pages/blocks/features-1.md +9 -0
- package/src/content/pages/blocks/features-2.md +9 -0
- package/src/content/pages/blocks/features-3.md +9 -0
- package/src/content/pages/blocks/features-4.md +9 -0
- package/src/content/pages/blocks/features-5.md +9 -0
- package/src/content/pages/blocks/features-6.md +9 -0
- package/src/content/pages/blocks/features.md +15 -0
- package/src/content/pages/blocks/footer-1.md +9 -0
- package/src/content/pages/blocks/footer-2.md +9 -0
- package/src/content/pages/blocks/footer.md +11 -0
- package/src/content/pages/blocks/header-1.md +9 -0
- package/src/content/pages/blocks/header-2.md +9 -0
- package/src/content/pages/blocks/header-3.md +9 -0
- package/src/content/pages/blocks/header.md +12 -0
- package/src/content/pages/blocks/hero-1.md +9 -0
- package/src/content/pages/blocks/hero-10.md +9 -0
- package/src/content/pages/blocks/hero-11.md +9 -0
- package/src/content/pages/blocks/hero-12.md +9 -0
- package/src/content/pages/blocks/hero-13.md +9 -0
- package/src/content/pages/blocks/hero-2.md +9 -0
- package/src/content/pages/blocks/hero-3.md +9 -0
- package/src/content/pages/blocks/hero-4.md +9 -0
- package/src/content/pages/blocks/hero-5.md +9 -0
- package/src/content/pages/blocks/hero-6.md +9 -0
- package/src/content/pages/blocks/hero-7.md +9 -0
- package/src/content/pages/blocks/hero-8.md +9 -0
- package/src/content/pages/blocks/hero-9.md +9 -0
- package/src/content/pages/blocks/hero.md +22 -0
- package/src/content/pages/blocks/logos-1.md +9 -0
- package/src/content/pages/blocks/logos-2.md +9 -0
- package/src/content/pages/blocks/logos-3.md +9 -0
- package/src/content/pages/blocks/logos.md +12 -0
- package/src/content/pages/blocks/pricings-1.md +9 -0
- package/src/content/pages/blocks/pricings-2.md +9 -0
- package/src/content/pages/blocks/pricings-3.md +9 -0
- package/src/content/pages/blocks/pricings.md +12 -0
- package/src/content/pages/blocks/product-1.md +9 -0
- package/src/content/pages/blocks/product.md +10 -0
- package/src/content/pages/blocks/products-1.md +9 -0
- package/src/content/pages/blocks/products-2.md +9 -0
- package/src/content/pages/blocks/products-3.md +9 -0
- package/src/content/pages/blocks/products-4.md +9 -0
- package/src/content/pages/blocks/products-5.md +9 -0
- package/src/content/pages/blocks/products.md +14 -0
- package/src/content/pages/blocks/reviews-1.md +9 -0
- package/src/content/pages/blocks/reviews-2.md +9 -0
- package/src/content/pages/blocks/reviews-3.md +9 -0
- package/src/content/pages/blocks/reviews-4.md +9 -0
- package/src/content/pages/blocks/reviews-5.md +9 -0
- package/src/content/pages/blocks/reviews.md +14 -0
- package/src/content/pages/blocks/services-1.md +9 -0
- package/src/content/pages/blocks/services-2.md +9 -0
- package/src/content/pages/blocks/services-3.md +9 -0
- package/src/content/pages/blocks/services-4.md +9 -0
- package/src/content/pages/blocks/services-5.md +9 -0
- package/src/content/pages/blocks/services-6.md +9 -0
- package/src/content/pages/blocks/services-7.md +9 -0
- package/src/content/pages/blocks/services.md +16 -0
- package/src/content/pages/blocks.md +45 -0
- package/src/content/pages/index.md +73 -0
- package/src/content.config.example.ts +21 -0
- package/src/content.config.ts +28 -0
- package/src/env.d.ts +2 -0
- package/src/lib/schemas.ts +169 -0
- package/src/lib/utils.ts +2 -2
- package/src/pages/[...page].astro +37 -0
- package/src/styles/global.css +215 -107
- package/src/styles/global.example.css +144 -0
- package/tsconfig.json +26 -0
- package/cli.js +0 -51
- package/src/blocks/CategoryGroup1.astro +0 -43
- package/src/blocks/CategoryList1.astro +0 -55
- package/src/blocks/Contact1.astro +0 -45
- package/src/blocks/Contact2.astro +0 -45
- package/src/blocks/Content1.astro +0 -29
- package/src/blocks/Cta1.astro +0 -30
- package/src/blocks/Faqs1.astro +0 -29
- package/src/blocks/Faqs2.astro +0 -29
- package/src/blocks/Features1.astro +0 -36
- package/src/blocks/Footer.astro +0 -59
- package/src/blocks/Header.astro +0 -87
- package/src/blocks/Hero1.astro +0 -38
- package/src/blocks/Intro1.astro +0 -25
- package/src/blocks/PostSingle1.astro +0 -29
- package/src/blocks/ProductGroup1.astro +0 -82
- package/src/blocks/ProductList1.astro +0 -60
- package/src/blocks/ProductSingle1.astro +0 -64
- package/src/blocks/Reviews1.astro +0 -37
- package/src/components/Abstract.astro +0 -36
- package/src/components/Accordion.vue +0 -31
- package/src/components/Avatar.astro +0 -31
- package/src/components/Badge.astro +0 -21
- package/src/components/Block.astro +0 -40
- package/src/components/Box.astro +0 -28
- package/src/components/Button.astro +0 -54
- package/src/components/Buttons.astro +0 -50
- package/src/components/Card.astro +0 -20
- package/src/components/Carousel.vue +0 -38
- package/src/components/Chip.astro +0 -27
- package/src/components/Code.astro +0 -72
- package/src/components/Container.astro +0 -25
- package/src/components/Drawer.vue +0 -53
- package/src/components/Form.vue +0 -79
- package/src/components/Gallery.vue +0 -85
- package/src/components/Grid.astro +0 -35
- package/src/components/Icon.astro +0 -24
- package/src/components/Image.astro +0 -26
- package/src/components/Layout.astro +0 -116
- package/src/components/Link.astro +0 -22
- package/src/components/List.astro +0 -32
- package/src/components/Logo.astro +0 -30
- package/src/components/Masonry.astro +0 -35
- package/src/components/Menu.astro +0 -48
- package/src/components/Menus.astro +0 -25
- package/src/components/Navigation.vue +0 -93
- package/src/components/Panel.astro +0 -18
- package/src/components/Person.astro +0 -43
- package/src/components/Price.astro +0 -46
- package/src/components/Proof.astro +0 -31
- package/src/components/Props.astro +0 -21
- package/src/components/Prose.astro +0 -28
- package/src/components/Rating.astro +0 -36
- package/src/components/Search.vue +0 -65
- package/src/components/Section.astro +0 -18
- package/src/components/Select.vue +0 -41
- package/src/components/Separator.astro +0 -0
- package/src/components/Sidebar.astro +0 -50
- package/src/components/Social.astro +0 -32
- package/src/components/Socials.astro +0 -27
- package/src/components/Sort.vue +0 -46
- package/src/components/Split.astro +0 -27
- package/src/components/Table.astro +0 -103
- package/src/components/Themer.astro +0 -85
- package/src/components/Toc.astro +0 -65
- package/src/components/Writeup.astro +0 -37
- package/src/components/ui/accordion/Accordion.vue +0 -19
- package/src/components/ui/accordion/AccordionContent.vue +0 -24
- package/src/components/ui/accordion/AccordionItem.vue +0 -24
- package/src/components/ui/accordion/AccordionTrigger.vue +0 -33
- package/src/components/ui/auto-form/AutoForm.vue +0 -115
- package/src/components/ui/auto-form/AutoFormField.vue +0 -45
- package/src/components/ui/auto-form/AutoFormFieldArray.vue +0 -127
- package/src/components/ui/auto-form/AutoFormFieldBoolean.vue +0 -47
- package/src/components/ui/auto-form/AutoFormFieldDate.vue +0 -78
- package/src/components/ui/auto-form/AutoFormFieldEnum.vue +0 -77
- package/src/components/ui/auto-form/AutoFormFieldFile.vue +0 -87
- package/src/components/ui/auto-form/AutoFormFieldInput.vue +0 -42
- package/src/components/ui/auto-form/AutoFormFieldNumber.vue +0 -42
- package/src/components/ui/auto-form/AutoFormFieldObject.vue +0 -90
- package/src/components/ui/auto-form/AutoFormLabel.vue +0 -19
- package/src/components/ui/auto-form/constant.ts +0 -40
- package/src/components/ui/auto-form/dependencies.ts +0 -92
- package/src/components/ui/auto-form/interface.ts +0 -95
- package/src/components/ui/auto-form/utils.ts +0 -188
- package/src/components/ui/avatar/Avatar.vue +0 -24
- package/src/components/ui/avatar/AvatarFallback.vue +0 -11
- package/src/components/ui/avatar/AvatarImage.vue +0 -9
- package/src/components/ui/badge/Badge.vue +0 -16
- package/src/components/ui/button/Button.vue +0 -26
- package/src/components/ui/calendar/Calendar.vue +0 -80
- package/src/components/ui/calendar/CalendarCell.vue +0 -29
- package/src/components/ui/calendar/CalendarCellTrigger.vue +0 -40
- package/src/components/ui/calendar/CalendarGrid.vue +0 -24
- package/src/components/ui/calendar/CalendarGridBody.vue +0 -11
- package/src/components/ui/calendar/CalendarGridHead.vue +0 -11
- package/src/components/ui/calendar/CalendarGridRow.vue +0 -24
- package/src/components/ui/calendar/CalendarHeadCell.vue +0 -24
- package/src/components/ui/calendar/CalendarHeader.vue +0 -24
- package/src/components/ui/calendar/CalendarHeading.vue +0 -27
- package/src/components/ui/calendar/CalendarNextButton.vue +0 -30
- package/src/components/ui/calendar/CalendarPrevButton.vue +0 -30
- package/src/components/ui/calendar/index.ts +0 -12
- package/src/components/ui/card/Card.vue +0 -14
- package/src/components/ui/card/CardContent.vue +0 -14
- package/src/components/ui/card/CardDescription.vue +0 -14
- package/src/components/ui/card/CardFooter.vue +0 -14
- package/src/components/ui/card/CardHeader.vue +0 -14
- package/src/components/ui/card/CardTitle.vue +0 -14
- package/src/components/ui/card/index.ts +0 -6
- package/src/components/ui/carousel/Carousel.vue +0 -61
- package/src/components/ui/carousel/CarouselContent.vue +0 -27
- package/src/components/ui/carousel/CarouselItem.vue +0 -19
- package/src/components/ui/carousel/CarouselNext.vue +0 -33
- package/src/components/ui/carousel/CarouselPrevious.vue +0 -33
- package/src/components/ui/carousel/index.ts +0 -10
- package/src/components/ui/carousel/interface.ts +0 -26
- package/src/components/ui/carousel/useCarousel.ts +0 -56
- package/src/components/ui/checkbox/Checkbox.vue +0 -36
- package/src/components/ui/collapsible/Collapsible.vue +0 -15
- package/src/components/ui/collapsible/CollapsibleContent.vue +0 -11
- package/src/components/ui/collapsible/CollapsibleTrigger.vue +0 -11
- package/src/components/ui/command/Command.vue +0 -32
- package/src/components/ui/command/CommandDialog.vue +0 -23
- package/src/components/ui/command/CommandEmpty.vue +0 -23
- package/src/components/ui/command/CommandGroup.vue +0 -39
- package/src/components/ui/command/CommandInput.vue +0 -43
- package/src/components/ui/command/CommandItem.vue +0 -31
- package/src/components/ui/command/CommandList.vue +0 -30
- package/src/components/ui/command/CommandSeparator.vue +0 -23
- package/src/components/ui/command/CommandShortcut.vue +0 -14
- package/src/components/ui/dialog/Dialog.vue +0 -14
- package/src/components/ui/dialog/DialogClose.vue +0 -11
- package/src/components/ui/dialog/DialogContent.vue +0 -51
- package/src/components/ui/dialog/DialogDescription.vue +0 -24
- package/src/components/ui/dialog/DialogFooter.vue +0 -12
- package/src/components/ui/dialog/DialogHeader.vue +0 -14
- package/src/components/ui/dialog/DialogScrollContent.vue +0 -59
- package/src/components/ui/dialog/DialogTitle.vue +0 -24
- package/src/components/ui/dialog/DialogTrigger.vue +0 -11
- package/src/components/ui/drawer/Drawer.vue +0 -19
- package/src/components/ui/drawer/DrawerContent.vue +0 -31
- package/src/components/ui/drawer/DrawerDescription.vue +0 -23
- package/src/components/ui/drawer/DrawerFooter.vue +0 -14
- package/src/components/ui/drawer/DrawerHeader.vue +0 -14
- package/src/components/ui/drawer/DrawerOverlay.vue +0 -21
- package/src/components/ui/drawer/DrawerTitle.vue +0 -23
- package/src/components/ui/drawer/index.ts +0 -8
- package/src/components/ui/form/FormControl.vue +0 -16
- package/src/components/ui/form/FormDescription.vue +0 -20
- package/src/components/ui/form/FormItem.vue +0 -19
- package/src/components/ui/form/FormLabel.vue +0 -20
- package/src/components/ui/form/FormMessage.vue +0 -16
- package/src/components/ui/form/index.ts +0 -7
- package/src/components/ui/form/injectionKeys.ts +0 -4
- package/src/components/ui/form/useFormField.ts +0 -30
- package/src/components/ui/input/Input.vue +0 -32
- package/src/components/ui/label/Label.vue +0 -24
- package/src/components/ui/navigation-menu/NavigationMenu.vue +0 -33
- package/src/components/ui/navigation-menu/NavigationMenuContent.vue +0 -36
- package/src/components/ui/navigation-menu/NavigationMenuIndicator.vue +0 -29
- package/src/components/ui/navigation-menu/NavigationMenuItem.vue +0 -11
- package/src/components/ui/navigation-menu/NavigationMenuLink.vue +0 -19
- package/src/components/ui/navigation-menu/NavigationMenuList.vue +0 -24
- package/src/components/ui/navigation-menu/NavigationMenuTrigger.vue +0 -30
- package/src/components/ui/navigation-menu/NavigationMenuViewport.vue +0 -29
- package/src/components/ui/popover/Popover.vue +0 -15
- package/src/components/ui/popover/PopoverContent.vue +0 -45
- package/src/components/ui/popover/PopoverTrigger.vue +0 -11
- package/src/components/ui/popover/index.ts +0 -3
- package/src/components/ui/radio-group/RadioGroup.vue +0 -25
- package/src/components/ui/radio-group/RadioGroupItem.vue +0 -32
- package/src/components/ui/select/Select.vue +0 -15
- package/src/components/ui/select/SelectContent.vue +0 -59
- package/src/components/ui/select/SelectGroup.vue +0 -22
- package/src/components/ui/select/SelectItem.vue +0 -38
- package/src/components/ui/select/SelectItemText.vue +0 -11
- package/src/components/ui/select/SelectLabel.vue +0 -13
- package/src/components/ui/select/SelectScrollDownButton.vue +0 -27
- package/src/components/ui/select/SelectScrollUpButton.vue +0 -27
- package/src/components/ui/select/SelectSeparator.vue +0 -20
- package/src/components/ui/select/SelectTrigger.vue +0 -33
- package/src/components/ui/select/SelectValue.vue +0 -11
- package/src/components/ui/select/index.ts +0 -11
- package/src/components/ui/separator/Separator.vue +0 -33
- package/src/components/ui/switch/Switch.vue +0 -39
- package/src/components/ui/switch/index.ts +0 -1
- package/src/components/ui/textarea/Textarea.vue +0 -32
- package/src/lib/integration.ts +0 -27
- package/src/schemas/blocks/categoryGroup.ts +0 -17
- package/src/schemas/blocks/categoryList.ts +0 -18
- package/src/schemas/blocks/categorySingle.ts +0 -12
- package/src/schemas/blocks/contact.ts +0 -13
- package/src/schemas/blocks/content.ts +0 -13
- package/src/schemas/blocks/cta.ts +0 -11
- package/src/schemas/blocks/faqs.ts +0 -18
- package/src/schemas/blocks/features.ts +0 -17
- package/src/schemas/blocks/footer.ts +0 -16
- package/src/schemas/blocks/header.ts +0 -18
- package/src/schemas/blocks/hero.ts +0 -15
- package/src/schemas/blocks/intro.ts +0 -9
- package/src/schemas/blocks/postSingle.ts +0 -12
- package/src/schemas/blocks/productGroup.ts +0 -17
- package/src/schemas/blocks/productList.ts +0 -18
- package/src/schemas/blocks/productSingle.ts +0 -17
- package/src/schemas/blocks/reviews.ts +0 -16
- package/src/schemas/collections/block.ts +0 -83
- package/src/schemas/collections/category.ts +0 -11
- package/src/schemas/collections/page.ts +0 -13
- package/src/schemas/collections/post.ts +0 -11
- package/src/schemas/collections/product.ts +0 -11
- package/src/schemas/fields/badge.ts +0 -9
- package/src/schemas/fields/button.ts +0 -12
- package/src/schemas/fields/card.ts +0 -28
- package/src/schemas/fields/channel.ts +0 -10
- package/src/schemas/fields/form.ts +0 -20
- package/src/schemas/fields/image.ts +0 -8
- package/src/schemas/fields/link.ts +0 -9
- package/src/schemas/fields/logo.ts +0 -10
- package/src/schemas/fields/menu.ts +0 -10
- package/src/schemas/fields/meta.ts +0 -14
- package/src/schemas/fields/path.ts +0 -13
- package/src/schemas/fields/proof.ts +0 -11
- package/src/schemas/fields/section.ts +0 -48
- package/tailwind.config.js +0 -111
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://ui.shadcn.com/schema/registry-item.json",
|
|
3
|
+
"name": "cta-4",
|
|
4
|
+
"type": "registry:block",
|
|
5
|
+
"registryDependencies": [
|
|
6
|
+
"@fulldev/avatar",
|
|
7
|
+
"@fulldev/button",
|
|
8
|
+
"@fulldev/icon",
|
|
9
|
+
"@fulldev/image",
|
|
10
|
+
"@fulldev/item",
|
|
11
|
+
"@fulldev/rating",
|
|
12
|
+
"@fulldev/section"
|
|
13
|
+
],
|
|
14
|
+
"files": [
|
|
15
|
+
{
|
|
16
|
+
"path": "src/components/blocks/cta-4.astro",
|
|
17
|
+
"content": "---\nimport { Avatar, AvatarImage } from \"@/components/ui/avatar\"\nimport { Button } from \"@/components/ui/button\"\nimport { Icon } from \"@/components/ui/icon\"\nimport { Image } from \"@/components/ui/image\"\nimport {\n Item,\n ItemContent,\n ItemDescription,\n ItemMedia,\n} from \"@/components/ui/item\"\nimport { Rating } from \"@/components/ui/rating\"\nimport {\n Section,\n SectionActions,\n SectionContent,\n SectionMedia,\n SectionProse,\n} from \"@/components/ui/section\"\n\ninterface Props {\n class?: string\n id?: string\n links?: {\n icon?: string\n text?: string\n href?: string\n target?: string\n }[]\n item?: {\n images?: {\n src: string\n alt: string\n }[]\n rating?: number\n description?: string\n }\n image?: {\n src: string\n alt: string\n }\n}\n\nconst { class: className, id, links, item, image } = Astro.props\n---\n\n<Section class={className} id={id} variant=\"floating\">\n <SectionContent>\n <SectionProse>\n <slot />\n </SectionProse>\n <SectionActions>\n {\n links?.map(({ icon, text, ...link }, i) => (\n <Button variant={i === 0 ? \"default\" : \"outline\"} {...link}>\n {icon && <Icon name={icon} />}\n {text}\n </Button>\n ))\n }\n </SectionActions>\n <Item class=\"p-0\">\n <ItemMedia class=\"-space-x-5\">\n {\n item?.images?.map((image) => (\n <Avatar class=\"ring-background size-11 ring\">\n <AvatarImage {...image} />\n </Avatar>\n ))\n }\n </ItemMedia>\n <ItemContent class=\"mt-1\">\n <Rating rating={item?.rating} />\n <ItemDescription class=\"text-foreground\">\n {item?.description}\n </ItemDescription>\n </ItemContent>\n </Item>\n </SectionContent>\n <SectionMedia class=\"absolute inset-0 size-full opacity-50\">\n <Image sizes=\"(1536px) 1536px, 100vw\" {...image} />\n </SectionMedia>\n</Section>\n",
|
|
18
|
+
"type": "registry:block"
|
|
19
|
+
}
|
|
20
|
+
]
|
|
21
|
+
}
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://ui.shadcn.com/schema/registry-item.json",
|
|
3
|
+
"name": "cta-5",
|
|
4
|
+
"type": "registry:block",
|
|
5
|
+
"registryDependencies": [
|
|
6
|
+
"@fulldev/avatar",
|
|
7
|
+
"@fulldev/button",
|
|
8
|
+
"@fulldev/icon",
|
|
9
|
+
"@fulldev/image",
|
|
10
|
+
"@fulldev/item",
|
|
11
|
+
"@fulldev/rating",
|
|
12
|
+
"@fulldev/section"
|
|
13
|
+
],
|
|
14
|
+
"files": [
|
|
15
|
+
{
|
|
16
|
+
"path": "src/components/blocks/cta-5.astro",
|
|
17
|
+
"content": "---\nimport { Avatar, AvatarImage } from \"@/components/ui/avatar\"\nimport { Button } from \"@/components/ui/button\"\nimport { Icon } from \"@/components/ui/icon\"\nimport { Image } from \"@/components/ui/image\"\nimport {\n Item,\n ItemContent,\n ItemDescription,\n ItemMedia,\n} from \"@/components/ui/item\"\nimport { Rating } from \"@/components/ui/rating\"\nimport {\n Section,\n SectionActions,\n SectionContent,\n SectionMedia,\n SectionProse,\n SectionSpread,\n} from \"@/components/ui/section\"\n\ninterface Props {\n class?: string\n id?: string\n links?: {\n icon?: string\n text?: string\n href?: string\n target?: string\n }[]\n image?: {\n src: string\n alt: string\n }\n item?: {\n images?: {\n src: string\n alt: string\n }[]\n rating?: number\n description?: string\n }\n}\n\nconst { class: className, id, links, image, item } = Astro.props\n---\n\n<Section class={className} id={id} variant=\"floating\">\n <SectionSpread class=\"@5xl:items-center\">\n <SectionContent>\n <SectionProse>\n <slot />\n </SectionProse>\n </SectionContent>\n <SectionContent>\n <SectionActions>\n {\n links?.map(({ icon, text, ...link }, i) => (\n <Button variant={i === 0 ? \"default\" : \"outline\"} {...link}>\n {icon && <Icon name={icon} />}\n {text}\n </Button>\n ))\n }\n </SectionActions>\n <Item class=\"p-0\">\n <ItemMedia class=\"-space-x-5\">\n {\n item?.images?.map((image) => (\n <Avatar class=\"ring-background size-11 ring\">\n <AvatarImage {...image} />\n </Avatar>\n ))\n }\n </ItemMedia>\n <ItemContent class=\"mt-1\">\n <Rating rating={item?.rating} />\n <ItemDescription class=\"text-foreground\">\n {item?.description}\n </ItemDescription>\n </ItemContent>\n </Item>\n </SectionContent>\n </SectionSpread>\n <SectionMedia class=\"absolute inset-0 size-full opacity-50\">\n <Image sizes=\"(1536px) 1536px, 100vw\" {...image} />\n </SectionMedia>\n</Section>\n",
|
|
18
|
+
"type": "registry:block"
|
|
19
|
+
}
|
|
20
|
+
]
|
|
21
|
+
}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://ui.shadcn.com/schema/registry-item.json",
|
|
3
|
+
"name": "cta-6",
|
|
4
|
+
"type": "registry:block",
|
|
5
|
+
"registryDependencies": [
|
|
6
|
+
"@fulldev/avatar",
|
|
7
|
+
"@fulldev/button",
|
|
8
|
+
"@fulldev/icon",
|
|
9
|
+
"@fulldev/item",
|
|
10
|
+
"@fulldev/rating",
|
|
11
|
+
"@fulldev/section"
|
|
12
|
+
],
|
|
13
|
+
"files": [
|
|
14
|
+
{
|
|
15
|
+
"path": "src/components/blocks/cta-6.astro",
|
|
16
|
+
"content": "---\nimport { cn } from \"@/lib/utils\"\nimport { Avatar, AvatarImage } from \"@/components/ui/avatar\"\nimport { Button } from \"@/components/ui/button\"\nimport { Icon } from \"@/components/ui/icon\"\nimport {\n Item,\n ItemContent,\n ItemDescription,\n ItemMedia,\n} from \"@/components/ui/item\"\nimport { Rating } from \"@/components/ui/rating\"\nimport {\n Section,\n SectionActions,\n SectionContent,\n SectionProse,\n SectionSpread,\n} from \"@/components/ui/section\"\n\ninterface Props {\n class?: string\n id?: string\n links?: {\n icon?: string\n text?: string\n href?: string\n target?: string\n }[]\n item?: {\n images?: {\n src: string\n alt: string\n }[]\n rating?: number\n description?: string\n }\n}\n\nconst { class: className, id, links, item } = Astro.props\n---\n\n<Section class={cn(\"bg-accent/50\", className)} id={id}>\n <SectionSpread class=\"@5xl:items-center\">\n <SectionProse>\n <slot />\n </SectionProse>\n <SectionContent>\n <SectionActions>\n {\n links?.map(({ icon, text, ...link }, i) => (\n <Button variant={i === 0 ? \"default\" : \"secondary\"} {...link}>\n {icon && <Icon name={icon} />}\n {text}\n </Button>\n ))\n }\n </SectionActions>\n <Item class=\"p-0\">\n <ItemMedia class=\"-space-x-5\">\n {\n item?.images?.map((image) => (\n <Avatar class=\"ring-background size-11 ring\">\n <AvatarImage {...image} />\n </Avatar>\n ))\n }\n </ItemMedia>\n <ItemContent class=\"mt-1\">\n <Rating rating={item?.rating} />\n <ItemDescription>\n {item?.description}\n </ItemDescription>\n </ItemContent>\n </Item>\n </SectionContent>\n </SectionSpread>\n</Section>\n",
|
|
17
|
+
"type": "registry:block"
|
|
18
|
+
}
|
|
19
|
+
]
|
|
20
|
+
}
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://ui.shadcn.com/schema/registry-item.json",
|
|
3
|
+
"name": "cta-7",
|
|
4
|
+
"type": "registry:block",
|
|
5
|
+
"registryDependencies": [
|
|
6
|
+
"@fulldev/avatar",
|
|
7
|
+
"@fulldev/button",
|
|
8
|
+
"@fulldev/icon",
|
|
9
|
+
"@fulldev/image",
|
|
10
|
+
"@fulldev/item",
|
|
11
|
+
"@fulldev/rating",
|
|
12
|
+
"@fulldev/section"
|
|
13
|
+
],
|
|
14
|
+
"files": [
|
|
15
|
+
{
|
|
16
|
+
"path": "src/components/blocks/cta-7.astro",
|
|
17
|
+
"content": "---\nimport { Avatar, AvatarImage } from \"@/components/ui/avatar\"\nimport { Button } from \"@/components/ui/button\"\nimport { Icon } from \"@/components/ui/icon\"\nimport { Image } from \"@/components/ui/image\"\nimport {\n Item,\n ItemContent,\n ItemDescription,\n ItemMedia,\n} from \"@/components/ui/item\"\nimport { Rating } from \"@/components/ui/rating\"\nimport {\n Section,\n SectionActions,\n SectionContent,\n SectionMedia,\n SectionProse,\n SectionSpread,\n} from \"@/components/ui/section\"\n\ninterface Props {\n class?: string\n id?: string\n links?: {\n icon?: string\n text?: string\n href?: string\n target?: string\n }[]\n image?: {\n src: string\n alt: string\n }\n item?: {\n images?: {\n src: string\n alt: string\n }[]\n rating?: number\n description?: string\n }\n}\n\nconst { class: className, id, links, image, item } = Astro.props\n---\n\n<Section class={className} id={id} size=\"lg\">\n <SectionMedia class=\"absolute inset-0 size-full rounded-none mask-y-from-0%\">\n <Image sizes=\"(1536px) 1536px, 100vw\" {...image} />\n </SectionMedia>\n <SectionSpread class=\"relative @5xl:items-center\">\n <SectionProse size=\"lg\">\n <slot />\n </SectionProse>\n <SectionContent class=\"shrink-0\">\n <SectionActions>\n {\n links?.map(({ icon, text, ...link }, i) => (\n <Button\n class=\"w-full\"\n variant={i === 0 ? \"default\" : \"secondary\"}\n {...link}\n >\n {icon && <Icon name={icon} />}\n {text}\n </Button>\n ))\n }\n </SectionActions>\n <Item class=\"p-0\">\n <ItemMedia class=\"-space-x-5\">\n {\n item?.images?.map((image) => (\n <Avatar class=\"ring-background size-11 ring\">\n <AvatarImage {...image} />\n </Avatar>\n ))\n }\n </ItemMedia>\n <ItemContent class=\"mt-1\">\n <Rating rating={item?.rating} />\n <ItemDescription class=\"text-foreground\">\n {item?.description}\n </ItemDescription>\n </ItemContent>\n </Item>\n </SectionContent>\n </SectionSpread>\n</Section>\n",
|
|
18
|
+
"type": "registry:block"
|
|
19
|
+
}
|
|
20
|
+
]
|
|
21
|
+
}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://ui.shadcn.com/schema/registry-item.json",
|
|
3
|
+
"name": "cta-8",
|
|
4
|
+
"type": "registry:block",
|
|
5
|
+
"registryDependencies": [
|
|
6
|
+
"@fulldev/avatar",
|
|
7
|
+
"@fulldev/button",
|
|
8
|
+
"@fulldev/icon",
|
|
9
|
+
"@fulldev/item",
|
|
10
|
+
"@fulldev/rating",
|
|
11
|
+
"@fulldev/section"
|
|
12
|
+
],
|
|
13
|
+
"files": [
|
|
14
|
+
{
|
|
15
|
+
"path": "src/components/blocks/cta-8.astro",
|
|
16
|
+
"content": "---\nimport { cn } from \"@/lib/utils\"\nimport { Avatar, AvatarImage } from \"@/components/ui/avatar\"\nimport { Button } from \"@/components/ui/button\"\nimport { Icon } from \"@/components/ui/icon\"\nimport {\n Item,\n ItemContent,\n ItemDescription,\n ItemMedia,\n} from \"@/components/ui/item\"\nimport { Rating } from \"@/components/ui/rating\"\nimport {\n Section,\n SectionActions,\n SectionContent,\n SectionProse,\n} from \"@/components/ui/section\"\n\ninterface Props {\n class?: string\n id?: string\n links?: {\n icon?: string\n text?: string\n href?: string\n target?: string\n }[]\n item?: {\n images?: {\n src: string\n alt: string\n }[]\n rating?: number\n description?: string\n }\n}\n\nconst { class: className, id, links, item } = Astro.props\n---\n\n<Section\n class={cn(\n \"border-primary/20 my-0 -mt-px rounded-none shadow-none\",\n className\n )}\n id={id}\n variant=\"floating\"\n size=\"lg\"\n>\n <SectionContent\n class={cn(\n \"before:from-primary/20 relative items-center before:absolute before:top-full before:left-0 before:-z-10 before:h-[200%] before:w-full before:animate-pulse before:rounded-full before:bg-gradient-to-b before:to-transparent before:blur-3xl\"\n )}\n >\n <Item class=\"p-0\">\n <ItemMedia class=\"-space-x-5\">\n {\n item?.images?.map((image) => (\n <Avatar class=\"ring-background size-11 ring\">\n <AvatarImage {...image} />\n </Avatar>\n ))\n }\n </ItemMedia>\n <ItemContent class=\"mt-1\">\n <Rating rating={item?.rating} />\n <ItemDescription>\n {item?.description}\n </ItemDescription>\n </ItemContent>\n </Item>\n <SectionProse class=\"text-center\" size=\"lg\">\n <slot />\n </SectionProse>\n <SectionActions class=\"justify-center\">\n {\n links?.map(({ icon, text, ...link }, i) => (\n <Button\n variant={i === 0 ? \"default\" : \"outline\"}\n size=\"lg\"\n {...link}\n >\n {icon && <Icon name={icon} />}\n {text}\n </Button>\n ))\n }\n </SectionActions>\n </SectionContent>\n</Section>\n",
|
|
17
|
+
"type": "registry:block"
|
|
18
|
+
}
|
|
19
|
+
]
|
|
20
|
+
}
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://ui.shadcn.com/schema/registry-item.json",
|
|
3
|
+
"name": "empty",
|
|
4
|
+
"type": "registry:ui",
|
|
5
|
+
"files": [
|
|
6
|
+
{
|
|
7
|
+
"path": "src/components/ui/empty/empty.astro",
|
|
8
|
+
"content": "---\nimport type { HTMLAttributes } from \"astro/types\"\n\nimport { cn } from \"@/lib/utils\"\n\ninterface Props extends HTMLAttributes<\"div\"> {}\n\nconst { class: className, ...props } = Astro.props\n\nconst slot = await Astro.slots.render(\"default\")\n---\n\n{\n slot?.trim().length > 0 && (\n <div\n data-slot=\"empty\"\n class={cn(\n \"flex min-w-0 flex-1 flex-col items-center justify-center gap-6 rounded-lg border-dashed p-6 text-center text-balance md:p-12\",\n className\n )}\n {...props}\n >\n <Fragment set:html={slot} />\n </div>\n )\n}\n",
|
|
9
|
+
"type": "registry:ui"
|
|
10
|
+
},
|
|
11
|
+
{
|
|
12
|
+
"path": "src/components/ui/empty/empty-content.astro",
|
|
13
|
+
"content": "---\nimport type { HTMLAttributes } from \"astro/types\"\n\nimport { cn } from \"@/lib/utils\"\n\ninterface Props extends HTMLAttributes<\"div\"> {}\n\nconst { class: className, ...props } = Astro.props\n\nconst slot = await Astro.slots.render(\"default\")\n---\n\n{\n slot?.trim().length > 0 && (\n <div\n data-slot=\"empty-content\"\n class={cn(\n \"flex w-full max-w-sm min-w-0 flex-col items-center gap-4 text-sm text-balance\",\n className\n )}\n {...props}\n >\n <Fragment set:html={slot} />\n </div>\n )\n}\n",
|
|
14
|
+
"type": "registry:ui"
|
|
15
|
+
},
|
|
16
|
+
{
|
|
17
|
+
"path": "src/components/ui/empty/empty-description.astro",
|
|
18
|
+
"content": "---\nimport type { HTMLAttributes } from \"astro/types\"\n\nimport { cn } from \"@/lib/utils\"\n\ninterface Props extends HTMLAttributes<\"div\"> {}\n\nconst { class: className, ...props } = Astro.props\n\nconst slot = await Astro.slots.render(\"default\")\n---\n\n{\n slot?.trim().length > 0 && (\n <div\n data-slot=\"empty-description\"\n class={cn(\n \"text-muted-foreground [&>a:hover]:text-primary text-sm/relaxed [&>a]:underline [&>a]:underline-offset-4\",\n className\n )}\n {...props}\n >\n <Fragment set:html={slot} />\n </div>\n )\n}\n",
|
|
19
|
+
"type": "registry:ui"
|
|
20
|
+
},
|
|
21
|
+
{
|
|
22
|
+
"path": "src/components/ui/empty/empty-header.astro",
|
|
23
|
+
"content": "---\nimport type { HTMLAttributes } from \"astro/types\"\n\nimport { cn } from \"@/lib/utils\"\n\ninterface Props extends HTMLAttributes<\"div\"> {}\n\nconst { class: className, ...props } = Astro.props\n\nconst slot = await Astro.slots.render(\"default\")\n---\n\n{\n slot?.trim().length > 0 && (\n <div\n data-slot=\"empty-header\"\n class={cn(\n \"flex max-w-sm flex-col items-center gap-2 text-center\",\n className\n )}\n {...props}\n >\n <Fragment set:html={slot} />\n </div>\n )\n}\n",
|
|
24
|
+
"type": "registry:ui"
|
|
25
|
+
},
|
|
26
|
+
{
|
|
27
|
+
"path": "src/components/ui/empty/empty-media.astro",
|
|
28
|
+
"content": "---\nimport type { HTMLAttributes } from \"astro/types\"\nimport { cva, type VariantProps } from \"class-variance-authority\"\n\nimport { cn } from \"@/lib/utils\"\n\ntype Props = VariantProps<typeof variants> & HTMLAttributes<\"div\">\n\nconst variants = cva(\n \"mb-2 flex shrink-0 items-center justify-center [&_svg]:pointer-events-none [&_svg]:shrink-0\",\n {\n variants: {\n variant: {\n default: \"bg-transparent\",\n icon: \"bg-muted text-foreground flex size-10 shrink-0 items-center justify-center rounded-lg [&_svg:not([class*='size-'])]:size-6\",\n },\n },\n defaultVariants: {\n variant: \"default\",\n },\n }\n)\n\nconst { class: className, variant = \"default\", ...props } = Astro.props\n\nconst slot = await Astro.slots.render(\"default\")\n---\n\n{\n slot?.trim().length > 0 && (\n <div\n data-slot=\"empty-icon\"\n data-variant={variant}\n class={cn(variants({ variant, className }))}\n {...props}\n >\n <Fragment set:html={slot} />\n </div>\n )\n}\n",
|
|
29
|
+
"type": "registry:ui"
|
|
30
|
+
},
|
|
31
|
+
{
|
|
32
|
+
"path": "src/components/ui/empty/empty-title.astro",
|
|
33
|
+
"content": "---\nimport type { HTMLAttributes } from \"astro/types\"\n\nimport { cn } from \"@/lib/utils\"\n\ninterface Props extends HTMLAttributes<\"div\"> {}\n\nconst { class: className, ...props } = Astro.props\n\nconst slot = await Astro.slots.render(\"default\")\n---\n\n{\n slot?.trim().length > 0 && (\n <div\n data-slot=\"empty-title\"\n class={cn(\"text-lg font-medium tracking-tight\", className)}\n {...props}\n >\n <Fragment set:html={slot} />\n </div>\n )\n}\n",
|
|
34
|
+
"type": "registry:ui"
|
|
35
|
+
},
|
|
36
|
+
{
|
|
37
|
+
"path": "src/components/ui/empty/index.ts",
|
|
38
|
+
"content": "export { default as Empty } from \"./empty.astro\"\nexport { default as EmptyContent } from \"./empty-content.astro\"\nexport { default as EmptyDescription } from \"./empty-description.astro\"\nexport { default as EmptyMedia } from \"./empty-media.astro\"\nexport { default as EmptyTitle } from \"./empty-title.astro\"\nexport { default as EmptyHeader } from \"./empty-header.astro\"\n",
|
|
39
|
+
"type": "registry:ui"
|
|
40
|
+
}
|
|
41
|
+
]
|
|
42
|
+
}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://ui.shadcn.com/schema/registry-item.json",
|
|
3
|
+
"name": "faqs-1",
|
|
4
|
+
"type": "registry:block",
|
|
5
|
+
"registryDependencies": [
|
|
6
|
+
"@fulldev/accordion",
|
|
7
|
+
"@fulldev/button",
|
|
8
|
+
"@fulldev/icon",
|
|
9
|
+
"@fulldev/section"
|
|
10
|
+
],
|
|
11
|
+
"files": [
|
|
12
|
+
{
|
|
13
|
+
"path": "src/components/blocks/faqs-1.astro",
|
|
14
|
+
"content": "---\nimport {\n Accordion,\n AccordionContent,\n AccordionItem,\n AccordionTrigger,\n} from \"@/components/ui/accordion\"\nimport { Button } from \"@/components/ui/button\"\nimport { Icon } from \"@/components/ui/icon\"\nimport {\n Section,\n SectionActions,\n SectionContent,\n SectionProse,\n} from \"@/components/ui/section\"\n\ninterface Props {\n class?: string\n id?: string\n links?: {\n icon?: string\n text?: string\n href?: string\n target?: string\n }[]\n items?: {\n title?: string\n description?: string\n }[]\n}\n\nconst { class: className, id, links, items } = Astro.props\n---\n\n<Section class={className} id={id}>\n <SectionContent>\n <SectionProse>\n <slot />\n </SectionProse>\n <SectionActions>\n {\n links?.map(({ icon, text, ...link }, i) => (\n <Button variant={i === 0 ? \"default\" : \"outline\"} {...link}>\n {icon && <Icon name={icon} />}\n {text}\n </Button>\n ))\n }\n </SectionActions>\n </SectionContent>\n <Accordion>\n {\n items?.map(({ title, description }) => (\n <AccordionItem>\n <AccordionTrigger>{title}</AccordionTrigger>\n <AccordionContent>{description}</AccordionContent>\n </AccordionItem>\n ))\n }\n </Accordion>\n</Section>\n",
|
|
15
|
+
"type": "registry:block"
|
|
16
|
+
}
|
|
17
|
+
]
|
|
18
|
+
}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://ui.shadcn.com/schema/registry-item.json",
|
|
3
|
+
"name": "faqs-2",
|
|
4
|
+
"type": "registry:block",
|
|
5
|
+
"registryDependencies": [
|
|
6
|
+
"@fulldev/accordion",
|
|
7
|
+
"@fulldev/button",
|
|
8
|
+
"@fulldev/icon",
|
|
9
|
+
"@fulldev/section"
|
|
10
|
+
],
|
|
11
|
+
"files": [
|
|
12
|
+
{
|
|
13
|
+
"path": "src/components/blocks/faqs-2.astro",
|
|
14
|
+
"content": "---\nimport {\n Accordion,\n AccordionContent,\n AccordionItem,\n AccordionTrigger,\n} from \"@/components/ui/accordion\"\nimport { Button } from \"@/components/ui/button\"\nimport { Icon } from \"@/components/ui/icon\"\nimport {\n Section,\n SectionActions,\n SectionContent,\n SectionProse,\n SectionSplit,\n} from \"@/components/ui/section\"\n\ninterface Props {\n class?: string\n id?: string\n links?: {\n icon?: string\n text?: string\n href?: string\n target?: string\n }[]\n items?: {\n title?: string\n description?: string\n }[]\n}\n\nconst { class: className, id, links, items } = Astro.props\n---\n\n<Section class={className} id={id}>\n <SectionSplit>\n <SectionContent>\n <SectionProse>\n <slot />\n </SectionProse>\n <SectionActions>\n {\n links?.map(({ icon, text, ...link }, i) => (\n <Button variant={i === 0 ? \"default\" : \"outline\"} {...link}>\n {icon && <Icon name={icon} />}\n {text}\n </Button>\n ))\n }\n </SectionActions>\n </SectionContent>\n <Accordion>\n {\n items?.map(({ title, description }) => (\n <AccordionItem>\n <AccordionTrigger>{title}</AccordionTrigger>\n <AccordionContent>{description}</AccordionContent>\n </AccordionItem>\n ))\n }\n </Accordion>\n </SectionSplit>\n</Section>\n",
|
|
15
|
+
"type": "registry:block"
|
|
16
|
+
}
|
|
17
|
+
]
|
|
18
|
+
}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://ui.shadcn.com/schema/registry-item.json",
|
|
3
|
+
"name": "faqs-3",
|
|
4
|
+
"type": "registry:block",
|
|
5
|
+
"registryDependencies": [
|
|
6
|
+
"@fulldev/accordion",
|
|
7
|
+
"@fulldev/button",
|
|
8
|
+
"@fulldev/icon",
|
|
9
|
+
"@fulldev/section"
|
|
10
|
+
],
|
|
11
|
+
"files": [
|
|
12
|
+
{
|
|
13
|
+
"path": "src/components/blocks/faqs-3.astro",
|
|
14
|
+
"content": "---\nimport {\n Accordion,\n AccordionContent,\n AccordionItem,\n AccordionTrigger,\n} from \"@/components/ui/accordion\"\nimport { Button } from \"@/components/ui/button\"\nimport { Icon } from \"@/components/ui/icon\"\nimport {\n Section,\n SectionActions,\n SectionProse,\n SectionSpread,\n} from \"@/components/ui/section\"\n\ninterface Props {\n class?: string\n id?: string\n links?: {\n icon?: string\n text?: string\n href?: string\n target?: string\n }[]\n items?: {\n title?: string\n description?: string\n }[]\n}\n\nconst { class: className, id, links, items } = Astro.props\n---\n\n<Section class={className} id={id}>\n <SectionSpread class=\"@5xl:items-end\">\n <SectionProse>\n <slot />\n </SectionProse>\n <SectionActions>\n {\n links?.map(({ icon, text, ...link }, i) => (\n <Button variant={i === 0 ? \"default\" : \"outline\"} {...link}>\n {icon && <Icon name={icon} />}\n {text}\n </Button>\n ))\n }\n </SectionActions>\n </SectionSpread>\n <Accordion>\n {\n items?.map(({ title, description }) => (\n <AccordionItem>\n <AccordionTrigger>{title}</AccordionTrigger>\n <AccordionContent>{description}</AccordionContent>\n </AccordionItem>\n ))\n }\n </Accordion>\n</Section>\n",
|
|
15
|
+
"type": "registry:block"
|
|
16
|
+
}
|
|
17
|
+
]
|
|
18
|
+
}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://ui.shadcn.com/schema/registry-item.json",
|
|
3
|
+
"name": "faqs-4",
|
|
4
|
+
"type": "registry:block",
|
|
5
|
+
"registryDependencies": [
|
|
6
|
+
"@fulldev/accordion",
|
|
7
|
+
"@fulldev/button",
|
|
8
|
+
"@fulldev/icon",
|
|
9
|
+
"@fulldev/section"
|
|
10
|
+
],
|
|
11
|
+
"files": [
|
|
12
|
+
{
|
|
13
|
+
"path": "src/components/blocks/faqs-4.astro",
|
|
14
|
+
"content": "---\nimport {\n Accordion,\n AccordionContent,\n AccordionItem,\n AccordionTrigger,\n} from \"@/components/ui/accordion\"\nimport { Button } from \"@/components/ui/button\"\nimport { Icon } from \"@/components/ui/icon\"\nimport {\n Section,\n SectionActions,\n SectionContent,\n SectionProse,\n} from \"@/components/ui/section\"\n\ninterface Props {\n class?: string\n id?: string\n links?: {\n icon?: string\n text?: string\n href?: string\n target?: string\n }[]\n items?: {\n title?: string\n description?: string\n }[]\n}\n\nconst { class: className, id, links, items } = Astro.props\n---\n\n<Section class={className} id={id} style=\"--section-width: 672px;\">\n <SectionContent>\n <SectionProse>\n <slot />\n </SectionProse>\n <SectionActions>\n {\n links?.map(({ icon, text, ...link }, i) => (\n <Button variant={i === 0 ? \"default\" : \"outline\"} {...link}>\n {icon && <Icon name={icon} />}\n {text}\n </Button>\n ))\n }\n </SectionActions>\n </SectionContent>\n <Accordion>\n {\n items?.map(({ title, description }) => (\n <AccordionItem>\n <AccordionTrigger>{title}</AccordionTrigger>\n <AccordionContent>{description}</AccordionContent>\n </AccordionItem>\n ))\n }\n </Accordion>\n</Section>\n",
|
|
15
|
+
"type": "registry:block"
|
|
16
|
+
}
|
|
17
|
+
]
|
|
18
|
+
}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://ui.shadcn.com/schema/registry-item.json",
|
|
3
|
+
"name": "features-1",
|
|
4
|
+
"type": "registry:block",
|
|
5
|
+
"registryDependencies": [
|
|
6
|
+
"@fulldev/button",
|
|
7
|
+
"@fulldev/icon",
|
|
8
|
+
"@fulldev/section",
|
|
9
|
+
"@fulldev/tile"
|
|
10
|
+
],
|
|
11
|
+
"files": [
|
|
12
|
+
{
|
|
13
|
+
"path": "src/components/blocks/features-1.astro",
|
|
14
|
+
"content": "---\nimport { Button } from \"@/components/ui/button\"\nimport { Icon } from \"@/components/ui/icon\"\nimport {\n Section,\n SectionActions,\n SectionContent,\n SectionGrid,\n SectionProse,\n} from \"@/components/ui/section\"\nimport {\n Tile,\n TileActions,\n TileContent,\n TileDescription,\n TileMedia,\n TileTitle,\n} from \"@/components/ui/tile\"\n\ninterface Props {\n class?: string\n id?: string\n links?: {\n icon?: string\n text?: string\n href?: string\n target?: string\n }[]\n items?: {\n title?: string\n description?: string\n icon?: string\n href?: string\n links?: {\n icon?: string\n text?: string\n href?: string\n target?: string\n }[]\n }[]\n}\n\nconst { class: className, id, links, items } = Astro.props\n---\n\n<Section class={className} id={id}>\n <SectionContent>\n <SectionProse>\n <slot />\n </SectionProse>\n <SectionActions>\n {\n links?.map(({ icon, text, ...link }, i) => (\n <Button variant={i === 0 ? \"default\" : \"outline\"} {...link}>\n {icon && <Icon name={icon} />}\n {text}\n </Button>\n ))\n }\n </SectionActions>\n </SectionContent>\n <SectionGrid>\n {\n items?.map(({ title, description, icon, links }) => (\n <Tile>\n <TileMedia variant=\"icon\">\n <Icon name={icon} />\n </TileMedia>\n <TileContent>\n <TileTitle>{title}</TileTitle>\n <TileDescription>{description}</TileDescription>\n </TileContent>\n <TileActions>\n {links?.map(({ icon, text, href, target }) => (\n <Button\n class=\"h-auto p-0\"\n variant=\"link\"\n href={href}\n target={target}\n >\n {icon && <Icon name={icon} />}\n {text}\n </Button>\n ))}\n </TileActions>\n </Tile>\n ))\n }\n </SectionGrid>\n</Section>\n",
|
|
15
|
+
"type": "registry:block"
|
|
16
|
+
}
|
|
17
|
+
]
|
|
18
|
+
}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://ui.shadcn.com/schema/registry-item.json",
|
|
3
|
+
"name": "features-2",
|
|
4
|
+
"type": "registry:block",
|
|
5
|
+
"registryDependencies": [
|
|
6
|
+
"@fulldev/button",
|
|
7
|
+
"@fulldev/icon",
|
|
8
|
+
"@fulldev/section",
|
|
9
|
+
"@fulldev/tile"
|
|
10
|
+
],
|
|
11
|
+
"files": [
|
|
12
|
+
{
|
|
13
|
+
"path": "src/components/blocks/features-2.astro",
|
|
14
|
+
"content": "---\nimport { Button } from \"@/components/ui/button\"\nimport { Icon } from \"@/components/ui/icon\"\nimport {\n Section,\n SectionActions,\n SectionContent,\n SectionGrid,\n SectionProse,\n} from \"@/components/ui/section\"\nimport {\n Tile,\n TileActions,\n TileContent,\n TileDescription,\n TileMedia,\n TileTitle,\n} from \"@/components/ui/tile\"\n\ninterface Props {\n class?: string\n id?: string\n links?: {\n icon?: string\n text?: string\n href?: string\n target?: string\n }[]\n items?: {\n title?: string\n description?: string\n icon?: string\n href?: string\n links?: {\n icon?: string\n text?: string\n href?: string\n target?: string\n }[]\n }[]\n}\n\nconst { class: className, id, links, items } = Astro.props\n---\n\n<Section class={className} id={id}>\n <SectionContent class=\"items-center\">\n <SectionProse class=\"text-center\">\n <slot />\n </SectionProse>\n <SectionActions class=\"justify-center\">\n {\n links?.map(({ icon, text, ...link }, i) => (\n <Button variant={i === 0 ? \"default\" : \"outline\"} {...link}>\n {icon && <Icon name={icon} />}\n {text}\n </Button>\n ))\n }\n </SectionActions>\n </SectionContent>\n <SectionGrid>\n {\n items?.map(({ title, description, icon, links }) => (\n <Tile class=\"items-center\">\n <TileMedia variant=\"icon\">\n <Icon name={icon} />\n </TileMedia>\n <TileContent class=\"items-center text-center text-balance\">\n <TileTitle>{title}</TileTitle>\n <TileDescription>{description}</TileDescription>\n </TileContent>\n <TileActions class=\"justify-center\">\n {links?.map(({ icon, text, href, target }) => (\n <Button\n class=\"h-auto p-0\"\n variant=\"link\"\n href={href}\n target={target}\n >\n {icon && <Icon name={icon} />}\n {text}\n </Button>\n ))}\n </TileActions>\n </Tile>\n ))\n }\n </SectionGrid>\n</Section>\n",
|
|
15
|
+
"type": "registry:block"
|
|
16
|
+
}
|
|
17
|
+
]
|
|
18
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://ui.shadcn.com/schema/registry-item.json",
|
|
3
|
+
"name": "features-3",
|
|
4
|
+
"type": "registry:block",
|
|
5
|
+
"registryDependencies": [
|
|
6
|
+
"@fulldev/image",
|
|
7
|
+
"@fulldev/section",
|
|
8
|
+
"@fulldev/tile"
|
|
9
|
+
],
|
|
10
|
+
"files": [
|
|
11
|
+
{
|
|
12
|
+
"path": "src/components/blocks/features-3.astro",
|
|
13
|
+
"content": "---\nimport { Image } from \"@/components/ui/image\"\nimport {\n Section,\n SectionContent,\n SectionGrid,\n SectionProse,\n} from \"@/components/ui/section\"\nimport {\n Tile,\n TileContent,\n TileDescription,\n TileMedia,\n TileSplit,\n TileTitle,\n} from \"@/components/ui/tile\"\n\ninterface Props {\n class?: string\n id?: string\n items?: {\n href?: string\n title?: string\n description?: string\n image?: {\n src: string\n alt: string\n }\n }[]\n}\n\nconst { class: className, id, items } = Astro.props\n---\n\n<Section class={className} id={id}>\n <SectionContent class=\"@5xl:items-center\">\n <SectionProse class=\"@5xl:text-center\">\n <slot />\n </SectionProse>\n </SectionContent>\n <SectionGrid>\n {\n items?.map(({ title, description, href, image }) => (\n <Tile href={href}>\n <TileSplit class=\"items-center\">\n <TileMedia>\n <Image sizes=\"230px\" {...image} />\n </TileMedia>\n <TileContent>\n <TileTitle>{title}</TileTitle>\n <TileDescription>{description}</TileDescription>\n </TileContent>\n </TileSplit>\n </Tile>\n ))\n }\n </SectionGrid>\n</Section>\n",
|
|
14
|
+
"type": "registry:block"
|
|
15
|
+
}
|
|
16
|
+
]
|
|
17
|
+
}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://ui.shadcn.com/schema/registry-item.json",
|
|
3
|
+
"name": "features-4",
|
|
4
|
+
"type": "registry:block",
|
|
5
|
+
"registryDependencies": [
|
|
6
|
+
"@fulldev/button",
|
|
7
|
+
"@fulldev/icon",
|
|
8
|
+
"@fulldev/section",
|
|
9
|
+
"@fulldev/tile"
|
|
10
|
+
],
|
|
11
|
+
"files": [
|
|
12
|
+
{
|
|
13
|
+
"path": "src/components/blocks/features-4.astro",
|
|
14
|
+
"content": "---\nimport { Button } from \"@/components/ui/button\"\nimport { Icon } from \"@/components/ui/icon\"\nimport {\n Section,\n SectionActions,\n SectionContent,\n SectionGrid,\n SectionProse,\n SectionSplit,\n} from \"@/components/ui/section\"\nimport {\n Tile,\n TileActions,\n TileContent,\n TileDescription,\n TileMedia,\n TileTitle,\n} from \"@/components/ui/tile\"\n\ninterface Props {\n class?: string\n id?: string\n links?: {\n icon?: string\n text?: string\n href?: string\n target?: string\n }[]\n items?: {\n title?: string\n description?: string\n icon?: string\n href?: string\n links?: {\n icon?: string\n text?: string\n href?: string\n target?: string\n }[]\n }[]\n}\n\nconst { class: className, id, links, items } = Astro.props\n---\n\n<Section class={className} id={id}>\n <SectionSplit class=\"@5xl:grid-cols-[1fr_2fr]\">\n <SectionContent\n class=\"@5xl:sticky @5xl:top-[calc(var(--section-py)+var(--header-height,0px))]\"\n >\n <SectionProse>\n <slot />\n </SectionProse>\n <SectionActions>\n {\n links?.map(({ icon, text, ...link }, i) => (\n <Button variant={i === 0 ? \"default\" : \"outline\"} {...link}>\n {icon && <Icon name={icon} />}\n {text}\n </Button>\n ))\n }\n </SectionActions>\n </SectionContent>\n <SectionGrid size=\"lg\">\n {\n items?.map(({ title, description, icon, links }) => (\n <Tile>\n <TileMedia variant=\"icon\">\n <Icon name={icon} />\n </TileMedia>\n <TileContent>\n <TileTitle>{title}</TileTitle>\n <TileDescription>{description}</TileDescription>\n </TileContent>\n <TileActions>\n {links?.map(({ icon, text, href, target }) => (\n <Button\n class=\"h-auto p-0\"\n variant=\"link\"\n href={href}\n target={target}\n >\n {text}\n {icon && <Icon name={icon} />}\n </Button>\n ))}\n </TileActions>\n </Tile>\n ))\n }\n </SectionGrid>\n </SectionSplit>\n</Section>\n",
|
|
15
|
+
"type": "registry:block"
|
|
16
|
+
}
|
|
17
|
+
]
|
|
18
|
+
}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://ui.shadcn.com/schema/registry-item.json",
|
|
3
|
+
"name": "features-5",
|
|
4
|
+
"type": "registry:block",
|
|
5
|
+
"registryDependencies": [
|
|
6
|
+
"@fulldev/button",
|
|
7
|
+
"@fulldev/icon",
|
|
8
|
+
"@fulldev/section",
|
|
9
|
+
"@fulldev/tile"
|
|
10
|
+
],
|
|
11
|
+
"files": [
|
|
12
|
+
{
|
|
13
|
+
"path": "src/components/blocks/features-5.astro",
|
|
14
|
+
"content": "---\nimport { cn } from \"@/lib/utils\"\nimport { Button } from \"@/components/ui/button\"\nimport { Icon } from \"@/components/ui/icon\"\nimport {\n Section,\n SectionActions,\n SectionContent,\n SectionGrid,\n SectionProse,\n} from \"@/components/ui/section\"\nimport {\n Tile,\n TileActions,\n TileContent,\n TileDescription,\n TileMedia,\n TileTitle,\n} from \"@/components/ui/tile\"\n\ninterface Props {\n class?: string\n id?: string\n links?: {\n icon?: string\n text?: string\n href?: string\n target?: string\n }[]\n items?: {\n title?: string\n description?: string\n icon?: string\n href?: string\n links?: {\n icon?: string\n text?: string\n href?: string\n target?: string\n }[]\n }[]\n}\n\nconst { class: className, id, links, items } = Astro.props\n---\n\n<Section\n class={cn(\n \"border-primary/20 my-0 -mt-px rounded-none shadow-none\",\n className\n )}\n id={id}\n variant=\"floating\"\n>\n <SectionContent class=\"items-center\">\n <SectionProse class=\"text-center\">\n <slot />\n </SectionProse>\n <SectionActions class=\"justify-center\">\n {\n links?.map(({ icon, text, ...link }, i) => (\n <Button variant={i === 0 ? \"default\" : \"outline\"} {...link}>\n {icon && <Icon name={icon} />}\n {text}\n </Button>\n ))\n }\n </SectionActions>\n </SectionContent>\n <SectionGrid>\n {\n items?.map(({ title, description, icon, links }) => (\n <Tile class=\"items-center\">\n <TileMedia class=\"bg-primary/5 border-primary/20\" variant=\"icon\">\n <Icon class=\"text-primary\" name={icon} />\n </TileMedia>\n <TileContent class=\"items-center text-center text-balance\">\n <TileTitle>{title}</TileTitle>\n <TileDescription class=\"text-foreground\">\n {description}\n </TileDescription>\n </TileContent>\n <TileActions class=\"justify-center\">\n {links?.map(({ icon, text, href, target }) => (\n <Button\n class=\"h-auto p-0\"\n variant=\"link\"\n href={href}\n target={target}\n >\n {icon && <Icon name={icon} />}\n {text}\n </Button>\n ))}\n </TileActions>\n </Tile>\n ))\n }\n </SectionGrid>\n</Section>\n",
|
|
15
|
+
"type": "registry:block"
|
|
16
|
+
}
|
|
17
|
+
]
|
|
18
|
+
}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://ui.shadcn.com/schema/registry-item.json",
|
|
3
|
+
"name": "features-6",
|
|
4
|
+
"type": "registry:block",
|
|
5
|
+
"registryDependencies": [
|
|
6
|
+
"@fulldev/button",
|
|
7
|
+
"@fulldev/icon",
|
|
8
|
+
"@fulldev/section",
|
|
9
|
+
"@fulldev/tile"
|
|
10
|
+
],
|
|
11
|
+
"files": [
|
|
12
|
+
{
|
|
13
|
+
"path": "src/components/blocks/features-6.astro",
|
|
14
|
+
"content": "---\nimport { Button } from \"@/components/ui/button\"\nimport { Icon } from \"@/components/ui/icon\"\nimport {\n Section,\n SectionActions,\n SectionContent,\n SectionGrid,\n SectionProse,\n} from \"@/components/ui/section\"\nimport {\n Tile,\n TileDescription,\n TileSplit,\n TileTitle,\n} from \"@/components/ui/tile\"\n\ninterface Props {\n class?: string\n id?: string\n links?: {\n icon?: string\n text?: string\n href?: string\n target?: string\n }[]\n items?: {\n title?: string\n description?: string\n icon?: string\n href?: string\n links?: {\n icon?: string\n text?: string\n href?: string\n target?: string\n }[]\n }[]\n}\n\nconst { class: className, id, links, items } = Astro.props\n---\n\n<Section class={className} id={id}>\n <SectionContent>\n <SectionProse>\n <slot />\n </SectionProse>\n <SectionActions>\n {\n links?.map(({ icon, text, ...link }, i) => (\n <Button variant={i === 0 ? \"default\" : \"outline\"} {...link}>\n {icon && <Icon name={icon} />}\n {text}\n </Button>\n ))\n }\n </SectionActions>\n </SectionContent>\n <SectionGrid class=\"grid-cols-1! gap-12\">\n {\n items?.map(({ title, description }) => (\n <Tile class=\"border-t pt-12\">\n <TileSplit>\n <TileTitle>{title}</TileTitle>\n <TileDescription>{description}</TileDescription>\n </TileSplit>\n </Tile>\n ))\n }\n </SectionGrid>\n</Section>\n",
|
|
15
|
+
"type": "registry:block"
|
|
16
|
+
}
|
|
17
|
+
]
|
|
18
|
+
}
|
|
@@ -0,0 +1,63 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://ui.shadcn.com/schema/registry-item.json",
|
|
3
|
+
"name": "field",
|
|
4
|
+
"type": "registry:ui",
|
|
5
|
+
"registryDependencies": ["@fulldev/separator"],
|
|
6
|
+
"files": [
|
|
7
|
+
{
|
|
8
|
+
"path": "src/components/ui/field/field.astro",
|
|
9
|
+
"content": "---\nimport type { HTMLAttributes } from \"astro/types\"\nimport { cva, type VariantProps } from \"class-variance-authority\"\n\nimport { cn } from \"@/lib/utils\"\n\ninterface Props extends HTMLAttributes<\"div\">, VariantProps<typeof variants> {}\n\nconst variants = cva(\n \"group/field data-[invalid=true]:text-destructive flex w-full gap-3\",\n {\n variants: {\n orientation: {\n vertical: [\"flex-col [&>*]:w-full [&>.sr-only]:w-auto\"],\n horizontal: [\n \"flex-row items-center\",\n \"[&>[data-slot=field-label]]:flex-auto\",\n \"has-[>[data-slot=field-content]]:items-start has-[>[data-slot=field-content]]:[&>[role=checkbox],[role=radio]]:mt-px\",\n ],\n responsive: [\n \"flex-col @md/field-group:flex-row @md/field-group:items-center [&>*]:w-full @md/field-group:[&>*]:w-auto [&>.sr-only]:w-auto\",\n \"@md/field-group:[&>[data-slot=field-label]]:flex-auto\",\n \"@md/field-group:has-[>[data-slot=field-content]]:items-start @md/field-group:has-[>[data-slot=field-content]]:[&>[role=checkbox],[role=radio]]:mt-px\",\n ],\n },\n },\n defaultVariants: {\n orientation: \"vertical\",\n },\n }\n)\n\nconst { class: className, orientation = \"vertical\", ...props } = Astro.props\n\nconst slot = await Astro.slots.render(\"default\")\n---\n\n{\n slot?.trim().length > 0 && (\n <div\n role=\"group\"\n data-slot=\"field\"\n data-orientation={orientation}\n class={cn(variants({ orientation }), className)}\n {...props}\n >\n <Fragment set:html={slot} />\n </div>\n )\n}\n",
|
|
10
|
+
"type": "registry:ui"
|
|
11
|
+
},
|
|
12
|
+
{
|
|
13
|
+
"path": "src/components/ui/field/field-content.astro",
|
|
14
|
+
"content": "---\nimport type { HTMLAttributes } from \"astro/types\"\n\nimport { cn } from \"@/lib/utils\"\n\ninterface Props extends HTMLAttributes<\"div\"> {}\n\nconst { class: className, ...props } = Astro.props\n\nconst slot = await Astro.slots.render(\"default\")\n---\n\n{\n slot?.trim().length > 0 && (\n <div\n data-slot=\"field-content\"\n class={cn(\n \"group/field-content flex flex-1 flex-col gap-1.5 leading-snug\",\n className\n )}\n {...props}\n >\n <Fragment set:html={slot} />\n </div>\n )\n}\n",
|
|
15
|
+
"type": "registry:ui"
|
|
16
|
+
},
|
|
17
|
+
{
|
|
18
|
+
"path": "src/components/ui/field/field-description.astro",
|
|
19
|
+
"content": "---\nimport type { HTMLAttributes } from \"astro/types\"\n\nimport { cn } from \"@/lib/utils\"\n\ninterface Props extends HTMLAttributes<\"p\"> {}\n\nconst { class: className, ...props } = Astro.props\n\nconst slot = await Astro.slots.render(\"default\")\n---\n\n{\n slot?.trim().length > 0 && (\n <p\n data-slot=\"field-description\"\n class={cn(\n \"text-muted-foreground text-sm leading-normal font-normal group-has-[[data-orientation=horizontal]]/field:text-balance\",\n \"last:mt-0 nth-last-2:-mt-1 [[data-variant=legend]+&]:-mt-1.5\",\n \"[&>a:hover]:text-primary [&>a]:underline [&>a]:underline-offset-4\",\n className\n )}\n {...props}\n >\n <Fragment set:html={slot} />\n </p>\n )\n}\n",
|
|
20
|
+
"type": "registry:ui"
|
|
21
|
+
},
|
|
22
|
+
{
|
|
23
|
+
"path": "src/components/ui/field/field-error.astro",
|
|
24
|
+
"content": "\n",
|
|
25
|
+
"type": "registry:ui"
|
|
26
|
+
},
|
|
27
|
+
{
|
|
28
|
+
"path": "src/components/ui/field/field-group.astro",
|
|
29
|
+
"content": "---\nimport type { HTMLAttributes } from \"astro/types\"\n\nimport { cn } from \"@/lib/utils\"\n\ninterface Props extends HTMLAttributes<\"div\"> {}\n\nconst { class: className, ...props } = Astro.props\n\nconst slot = await Astro.slots.render(\"default\")\n---\n\n{\n slot?.trim().length > 0 && (\n <div\n data-slot=\"field-group\"\n class={cn(\n \"group/field-group @container/field-group flex w-full flex-col gap-7 data-[slot=checkbox-group]:gap-3 [&>[data-slot=field-group]]:gap-4\",\n className\n )}\n {...props}\n >\n <Fragment set:html={slot} />\n </div>\n )\n}\n",
|
|
30
|
+
"type": "registry:ui"
|
|
31
|
+
},
|
|
32
|
+
{
|
|
33
|
+
"path": "src/components/ui/field/field-label.astro",
|
|
34
|
+
"content": "---\nimport type { HTMLAttributes } from \"astro/types\"\n\nimport { cn } from \"@/lib/utils\"\n\ninterface Props extends HTMLAttributes<\"label\"> {}\n\nconst { class: className, ...props } = Astro.props\n\nconst slot = await Astro.slots.render(\"default\")\n---\n\n{\n slot?.trim().length > 0 && (\n <label\n data-slot=\"field-label\"\n class={cn(\n \"group/field-label peer/field-label flex w-fit gap-2 text-sm leading-snug font-medium select-none\",\n \"group-data-[disabled=true]/field:opacity-50 peer-disabled:cursor-not-allowed peer-disabled:opacity-50\",\n \"has-[>[data-slot=field]]:w-full has-[>[data-slot=field]]:flex-col has-[>[data-slot=field]]:rounded-md has-[>[data-slot=field]]:border [&>*]:data-[slot=field]:p-4\",\n \"has-data-[state=checked]:bg-primary/5 has-data-[state=checked]:border-primary dark:has-data-[state=checked]:bg-primary/10\",\n className\n )}\n {...props}\n >\n <Fragment set:html={slot} />\n </label>\n )\n}\n",
|
|
35
|
+
"type": "registry:ui"
|
|
36
|
+
},
|
|
37
|
+
{
|
|
38
|
+
"path": "src/components/ui/field/field-legend.astro",
|
|
39
|
+
"content": "---\nimport type { HTMLAttributes } from \"astro/types\"\n\nimport { cn } from \"@/lib/utils\"\n\ninterface Props extends HTMLAttributes<\"legend\"> {\n variant?: \"legend\" | \"label\"\n}\n\nconst { class: className, variant = \"legend\", ...props } = Astro.props\n\nconst slot = await Astro.slots.render(\"default\")\n---\n\n{\n slot?.trim().length > 0 && (\n <legend\n data-slot=\"field-legend\"\n data-variant={variant}\n class={cn(\n \"mb-3 font-medium\",\n \"data-[variant=legend]:text-base\",\n \"data-[variant=label]:text-sm\",\n className\n )}\n {...props}\n >\n <Fragment set:html={slot} />\n </legend>\n )\n}\n",
|
|
40
|
+
"type": "registry:ui"
|
|
41
|
+
},
|
|
42
|
+
{
|
|
43
|
+
"path": "src/components/ui/field/field-separator.astro",
|
|
44
|
+
"content": "---\nimport type { HTMLAttributes } from \"astro/types\"\n\nimport { cn } from \"@/lib/utils\"\nimport { Separator } from \"@/components/ui/separator\"\n\ninterface Props extends HTMLAttributes<\"div\"> {}\n\nconst { class: className, ...props } = Astro.props\n\nconst slot = await Astro.slots.render(\"default\")\n---\n\n<div\n data-slot=\"field-separator\"\n data-content={slot}\n class={cn(\n \"relative -my-2 h-5 text-sm group-data-[variant=outline]/field-group:-mb-2\",\n className\n )}\n {...props}\n>\n <Separator class=\"absolute inset-0 top-1/2\" />\n {\n slot?.trim().length > 0 && (\n <span\n class=\"bg-background text-muted-foreground relative mx-auto block w-fit px-2\"\n data-slot=\"field-separator-content\"\n >\n <Fragment set:html={slot} />\n </span>\n )\n }\n</div>\n",
|
|
45
|
+
"type": "registry:ui"
|
|
46
|
+
},
|
|
47
|
+
{
|
|
48
|
+
"path": "src/components/ui/field/field-set.astro",
|
|
49
|
+
"content": "---\nimport type { HTMLAttributes } from \"astro/types\"\n\nimport { cn } from \"@/lib/utils\"\n\ninterface Props extends HTMLAttributes<\"fieldset\"> {}\n\nconst { class: className, ...props } = Astro.props\n\nconst slot = await Astro.slots.render(\"default\")\n---\n\n{\n slot?.trim().length > 0 && (\n <fieldset\n data-slot=\"field-set\"\n class={cn(\n \"flex flex-col gap-6\",\n \"has-[>[data-slot=checkbox-group]]:gap-3 has-[>[data-slot=radio-group]]:gap-3\",\n className\n )}\n {...props}\n >\n <Fragment set:html={slot} />\n </fieldset>\n )\n}\n",
|
|
50
|
+
"type": "registry:ui"
|
|
51
|
+
},
|
|
52
|
+
{
|
|
53
|
+
"path": "src/components/ui/field/field-title.astro",
|
|
54
|
+
"content": "---\nimport type { HTMLAttributes } from \"astro/types\"\n\nimport { cn } from \"@/lib/utils\"\n\ninterface Props extends HTMLAttributes<\"div\"> {}\n\nconst { class: className, ...props } = Astro.props\n\nconst slot = await Astro.slots.render(\"default\")\n---\n\n{\n slot?.trim().length > 0 && (\n <div\n data-slot=\"field-label\"\n class={cn(\n \"flex w-fit items-center gap-2 text-sm leading-snug font-medium group-data-[disabled=true]/field:opacity-50\",\n className\n )}\n {...props}\n >\n <Fragment set:html={slot} />\n </div>\n )\n}\n",
|
|
55
|
+
"type": "registry:ui"
|
|
56
|
+
},
|
|
57
|
+
{
|
|
58
|
+
"path": "src/components/ui/field/index.ts",
|
|
59
|
+
"content": "export { default as Field } from \"./field.astro\"\nexport { default as FieldContent } from \"./field-content.astro\"\nexport { default as FieldDescription } from \"./field-description.astro\"\nexport { default as FieldGroup } from \"./field-group.astro\"\nexport { default as FieldLabel } from \"./field-label.astro\"\nexport { default as FieldLegend } from \"./field-legend.astro\"\nexport { default as FieldSeparator } from \"./field-separator.astro\"\nexport { default as FieldSet } from \"./field-set.astro\"\nexport { default as FieldTitle } from \"./field-title.astro\"\n",
|
|
60
|
+
"type": "registry:ui"
|
|
61
|
+
}
|
|
62
|
+
]
|
|
63
|
+
}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://ui.shadcn.com/schema/registry-item.json",
|
|
3
|
+
"name": "footer-1",
|
|
4
|
+
"type": "registry:block",
|
|
5
|
+
"registryDependencies": ["@fulldev/footer", "@fulldev/icon", "@fulldev/logo"],
|
|
6
|
+
"files": [
|
|
7
|
+
{
|
|
8
|
+
"path": "src/components/blocks/footer-1.astro",
|
|
9
|
+
"content": "---\nimport {\n Footer,\n FooterDescription,\n FooterGrid,\n FooterGroup,\n FooterGroupLabel,\n FooterMenu,\n FooterMenuItem,\n FooterMenuLink,\n FooterSplit,\n} from \"@/components/ui/footer\"\nimport { Icon } from \"@/components/ui/icon\"\nimport { Logo, LogoImage, LogoText } from \"@/components/ui/logo\"\n\ninterface Props {\n logo?: {\n src?: string\n alt?: string\n text?: string\n href?: string\n }\n description?: string\n socials?: string[]\n menus?: {\n text?: string\n href?: string\n links?: {\n text?: string\n href?: string\n }[]\n }[]\n links?: {\n href?: string\n text?: string\n icon?: string\n }[]\n}\n\nconst { logo, description, links, socials, menus } = Astro.props\n---\n\n<Footer>\n <FooterSplit class=\"@5xl:grid-cols-[1fr_3fr]\">\n <FooterGroup>\n <Logo href={logo?.href || \"/\"}>\n <LogoImage src={logo?.src} alt={logo?.alt} />\n <LogoText>{logo?.text}</LogoText>\n </Logo>\n <FooterDescription>{description}</FooterDescription>\n <FooterMenu>\n {\n links?.map(({ href, icon, text }) => (\n <FooterMenuItem>\n <FooterMenuLink href={href}>\n <Icon href={href} name={icon} />\n {text}\n </FooterMenuLink>\n </FooterMenuItem>\n ))\n }\n </FooterMenu>\n <FooterMenu orientation=\"horizontal\">\n {\n socials?.map((social) => (\n <FooterMenuItem>\n <FooterMenuLink href={social}>\n <Icon href={social} />\n </FooterMenuLink>\n </FooterMenuItem>\n ))\n }\n </FooterMenu>\n </FooterGroup>\n <FooterGrid class=\"@5xl:justify-end\">\n {\n menus?.map((menu) => (\n <FooterGroup>\n <FooterGroupLabel>{menu.text}</FooterGroupLabel>\n <FooterMenu>\n {menu.links?.map(({ href, text }) => (\n <FooterMenuItem>\n <FooterMenuLink href={href}>{text}</FooterMenuLink>\n </FooterMenuItem>\n ))}\n </FooterMenu>\n </FooterGroup>\n ))\n }\n </FooterGrid>\n </FooterSplit>\n</Footer>\n",
|
|
10
|
+
"type": "registry:block"
|
|
11
|
+
}
|
|
12
|
+
]
|
|
13
|
+
}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://ui.shadcn.com/schema/registry-item.json",
|
|
3
|
+
"name": "footer-2",
|
|
4
|
+
"type": "registry:block",
|
|
5
|
+
"registryDependencies": ["@fulldev/footer", "@fulldev/icon", "@fulldev/logo"],
|
|
6
|
+
"files": [
|
|
7
|
+
{
|
|
8
|
+
"path": "src/components/blocks/footer-2.astro",
|
|
9
|
+
"content": "---\nimport {\n Footer,\n FooterCopyright,\n FooterDescription,\n FooterGroup,\n FooterMenu,\n FooterMenuItem,\n FooterMenuLink,\n} from \"@/components/ui/footer\"\nimport { Icon } from \"@/components/ui/icon\"\nimport { Logo, LogoImage, LogoText } from \"@/components/ui/logo\"\n\ninterface Props {\n logo?: {\n src?: string\n alt?: string\n text?: string\n href?: string\n }\n description?: string\n links?: {\n text?: string\n href?: string\n }[]\n socials?: string[]\n}\n\nconst { logo, description, links, socials } = Astro.props\n---\n\n<Footer class=\"items-center\">\n <FooterGroup class=\"items-center\">\n <Logo href={logo?.href || \"/\"}>\n <LogoImage src={logo?.src} alt={logo?.alt} />\n <LogoText>{logo?.text}</LogoText>\n </Logo>\n <FooterDescription>{description}</FooterDescription>\n <FooterMenu orientation=\"horizontal\">\n {\n links?.map(({ href, text }) => (\n <FooterMenuItem>\n <FooterMenuLink href={href}>{text}</FooterMenuLink>\n </FooterMenuItem>\n ))\n }\n </FooterMenu>\n <FooterMenu orientation=\"horizontal\">\n {\n socials?.map((social) => (\n <FooterMenuItem>\n <FooterMenuLink href={social}>\n <Icon href={social} />\n </FooterMenuLink>\n </FooterMenuItem>\n ))\n }\n </FooterMenu>\n </FooterGroup>\n <FooterCopyright>{logo?.text}</FooterCopyright>\n</Footer>\n",
|
|
10
|
+
"type": "registry:block"
|
|
11
|
+
}
|
|
12
|
+
]
|
|
13
|
+
}
|