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,2443 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://ui.shadcn.com/schema/registry.json",
|
|
3
|
+
"name": "fulldev/ui",
|
|
4
|
+
"homepage": "https://ui.full.dev",
|
|
5
|
+
"items": [
|
|
6
|
+
{
|
|
7
|
+
"name": "accordion",
|
|
8
|
+
"type": "registry:ui",
|
|
9
|
+
"files": [
|
|
10
|
+
{
|
|
11
|
+
"path": "src/components/ui/accordion/accordion.astro",
|
|
12
|
+
"type": "registry:ui"
|
|
13
|
+
},
|
|
14
|
+
{
|
|
15
|
+
"path": "src/components/ui/accordion/accordion-content.astro",
|
|
16
|
+
"type": "registry:ui"
|
|
17
|
+
},
|
|
18
|
+
{
|
|
19
|
+
"path": "src/components/ui/accordion/accordion-item.astro",
|
|
20
|
+
"type": "registry:ui"
|
|
21
|
+
},
|
|
22
|
+
{
|
|
23
|
+
"path": "src/components/ui/accordion/accordion-trigger.astro",
|
|
24
|
+
"type": "registry:ui"
|
|
25
|
+
},
|
|
26
|
+
{
|
|
27
|
+
"path": "src/components/ui/accordion/index.ts",
|
|
28
|
+
"type": "registry:ui"
|
|
29
|
+
}
|
|
30
|
+
]
|
|
31
|
+
},
|
|
32
|
+
{
|
|
33
|
+
"name": "alert",
|
|
34
|
+
"type": "registry:ui",
|
|
35
|
+
"files": [
|
|
36
|
+
{
|
|
37
|
+
"path": "src/components/ui/alert/alert.astro",
|
|
38
|
+
"type": "registry:ui"
|
|
39
|
+
},
|
|
40
|
+
{
|
|
41
|
+
"path": "src/components/ui/alert/alert-description.astro",
|
|
42
|
+
"type": "registry:ui"
|
|
43
|
+
},
|
|
44
|
+
{
|
|
45
|
+
"path": "src/components/ui/alert/alert-title.astro",
|
|
46
|
+
"type": "registry:ui"
|
|
47
|
+
},
|
|
48
|
+
{
|
|
49
|
+
"path": "src/components/ui/alert/index.ts",
|
|
50
|
+
"type": "registry:ui"
|
|
51
|
+
}
|
|
52
|
+
]
|
|
53
|
+
},
|
|
54
|
+
{
|
|
55
|
+
"name": "avatar",
|
|
56
|
+
"type": "registry:ui",
|
|
57
|
+
"files": [
|
|
58
|
+
{
|
|
59
|
+
"path": "src/components/ui/avatar/avatar.astro",
|
|
60
|
+
"type": "registry:ui"
|
|
61
|
+
},
|
|
62
|
+
{
|
|
63
|
+
"path": "src/components/ui/avatar/avatar-fallback.astro",
|
|
64
|
+
"type": "registry:ui"
|
|
65
|
+
},
|
|
66
|
+
{
|
|
67
|
+
"path": "src/components/ui/avatar/avatar-image.astro",
|
|
68
|
+
"type": "registry:ui"
|
|
69
|
+
},
|
|
70
|
+
{
|
|
71
|
+
"path": "src/components/ui/avatar/index.ts",
|
|
72
|
+
"type": "registry:ui"
|
|
73
|
+
}
|
|
74
|
+
],
|
|
75
|
+
"registryDependencies": ["@fulldev/image"]
|
|
76
|
+
},
|
|
77
|
+
{
|
|
78
|
+
"name": "badge",
|
|
79
|
+
"type": "registry:ui",
|
|
80
|
+
"files": [
|
|
81
|
+
{
|
|
82
|
+
"path": "src/components/ui/badge/badge.astro",
|
|
83
|
+
"type": "registry:ui"
|
|
84
|
+
},
|
|
85
|
+
{
|
|
86
|
+
"path": "src/components/ui/badge/index.ts",
|
|
87
|
+
"type": "registry:ui"
|
|
88
|
+
}
|
|
89
|
+
]
|
|
90
|
+
},
|
|
91
|
+
{
|
|
92
|
+
"name": "banner",
|
|
93
|
+
"type": "registry:ui",
|
|
94
|
+
"files": [
|
|
95
|
+
{
|
|
96
|
+
"path": "src/components/ui/banner/banner.astro",
|
|
97
|
+
"type": "registry:ui"
|
|
98
|
+
},
|
|
99
|
+
{
|
|
100
|
+
"path": "src/components/ui/banner/banner-close.astro",
|
|
101
|
+
"type": "registry:ui"
|
|
102
|
+
},
|
|
103
|
+
{
|
|
104
|
+
"path": "src/components/ui/banner/banner-content.astro",
|
|
105
|
+
"type": "registry:ui"
|
|
106
|
+
},
|
|
107
|
+
{
|
|
108
|
+
"path": "src/components/ui/banner/banner-description.astro",
|
|
109
|
+
"type": "registry:ui"
|
|
110
|
+
},
|
|
111
|
+
{
|
|
112
|
+
"path": "src/components/ui/banner/banner-title.astro",
|
|
113
|
+
"type": "registry:ui"
|
|
114
|
+
},
|
|
115
|
+
{
|
|
116
|
+
"path": "src/components/ui/banner/index.ts",
|
|
117
|
+
"type": "registry:ui"
|
|
118
|
+
}
|
|
119
|
+
],
|
|
120
|
+
"registryDependencies": ["@fulldev/button", "@fulldev/icon"]
|
|
121
|
+
},
|
|
122
|
+
{
|
|
123
|
+
"name": "button",
|
|
124
|
+
"type": "registry:ui",
|
|
125
|
+
"files": [
|
|
126
|
+
{
|
|
127
|
+
"path": "src/components/ui/button/button.astro",
|
|
128
|
+
"type": "registry:ui"
|
|
129
|
+
},
|
|
130
|
+
{
|
|
131
|
+
"path": "src/components/ui/button/index.ts",
|
|
132
|
+
"type": "registry:ui"
|
|
133
|
+
}
|
|
134
|
+
]
|
|
135
|
+
},
|
|
136
|
+
{
|
|
137
|
+
"name": "checkbox",
|
|
138
|
+
"type": "registry:ui",
|
|
139
|
+
"files": [
|
|
140
|
+
{
|
|
141
|
+
"path": "src/components/ui/checkbox/checkbox.astro",
|
|
142
|
+
"type": "registry:ui"
|
|
143
|
+
},
|
|
144
|
+
{
|
|
145
|
+
"path": "src/components/ui/checkbox/index.ts",
|
|
146
|
+
"type": "registry:ui"
|
|
147
|
+
}
|
|
148
|
+
]
|
|
149
|
+
},
|
|
150
|
+
{
|
|
151
|
+
"name": "collapsible",
|
|
152
|
+
"type": "registry:ui",
|
|
153
|
+
"files": [
|
|
154
|
+
{
|
|
155
|
+
"path": "src/components/ui/collapsible/collapsible.astro",
|
|
156
|
+
"type": "registry:ui"
|
|
157
|
+
},
|
|
158
|
+
{
|
|
159
|
+
"path": "src/components/ui/collapsible/collapsible-content.astro",
|
|
160
|
+
"type": "registry:ui"
|
|
161
|
+
},
|
|
162
|
+
{
|
|
163
|
+
"path": "src/components/ui/collapsible/collapsible-trigger.astro",
|
|
164
|
+
"type": "registry:ui"
|
|
165
|
+
},
|
|
166
|
+
{
|
|
167
|
+
"path": "src/components/ui/collapsible/index.ts",
|
|
168
|
+
"type": "registry:ui"
|
|
169
|
+
}
|
|
170
|
+
]
|
|
171
|
+
},
|
|
172
|
+
{
|
|
173
|
+
"name": "empty",
|
|
174
|
+
"type": "registry:ui",
|
|
175
|
+
"files": [
|
|
176
|
+
{
|
|
177
|
+
"path": "src/components/ui/empty/empty.astro",
|
|
178
|
+
"type": "registry:ui"
|
|
179
|
+
},
|
|
180
|
+
{
|
|
181
|
+
"path": "src/components/ui/empty/empty-content.astro",
|
|
182
|
+
"type": "registry:ui"
|
|
183
|
+
},
|
|
184
|
+
{
|
|
185
|
+
"path": "src/components/ui/empty/empty-description.astro",
|
|
186
|
+
"type": "registry:ui"
|
|
187
|
+
},
|
|
188
|
+
{
|
|
189
|
+
"path": "src/components/ui/empty/empty-header.astro",
|
|
190
|
+
"type": "registry:ui"
|
|
191
|
+
},
|
|
192
|
+
{
|
|
193
|
+
"path": "src/components/ui/empty/empty-media.astro",
|
|
194
|
+
"type": "registry:ui"
|
|
195
|
+
},
|
|
196
|
+
{
|
|
197
|
+
"path": "src/components/ui/empty/empty-title.astro",
|
|
198
|
+
"type": "registry:ui"
|
|
199
|
+
},
|
|
200
|
+
{
|
|
201
|
+
"path": "src/components/ui/empty/index.ts",
|
|
202
|
+
"type": "registry:ui"
|
|
203
|
+
}
|
|
204
|
+
]
|
|
205
|
+
},
|
|
206
|
+
{
|
|
207
|
+
"name": "field",
|
|
208
|
+
"type": "registry:ui",
|
|
209
|
+
"files": [
|
|
210
|
+
{
|
|
211
|
+
"path": "src/components/ui/field/field.astro",
|
|
212
|
+
"type": "registry:ui"
|
|
213
|
+
},
|
|
214
|
+
{
|
|
215
|
+
"path": "src/components/ui/field/field-content.astro",
|
|
216
|
+
"type": "registry:ui"
|
|
217
|
+
},
|
|
218
|
+
{
|
|
219
|
+
"path": "src/components/ui/field/field-description.astro",
|
|
220
|
+
"type": "registry:ui"
|
|
221
|
+
},
|
|
222
|
+
{
|
|
223
|
+
"path": "src/components/ui/field/field-error.astro",
|
|
224
|
+
"type": "registry:ui"
|
|
225
|
+
},
|
|
226
|
+
{
|
|
227
|
+
"path": "src/components/ui/field/field-group.astro",
|
|
228
|
+
"type": "registry:ui"
|
|
229
|
+
},
|
|
230
|
+
{
|
|
231
|
+
"path": "src/components/ui/field/field-label.astro",
|
|
232
|
+
"type": "registry:ui"
|
|
233
|
+
},
|
|
234
|
+
{
|
|
235
|
+
"path": "src/components/ui/field/field-legend.astro",
|
|
236
|
+
"type": "registry:ui"
|
|
237
|
+
},
|
|
238
|
+
{
|
|
239
|
+
"path": "src/components/ui/field/field-separator.astro",
|
|
240
|
+
"type": "registry:ui"
|
|
241
|
+
},
|
|
242
|
+
{
|
|
243
|
+
"path": "src/components/ui/field/field-set.astro",
|
|
244
|
+
"type": "registry:ui"
|
|
245
|
+
},
|
|
246
|
+
{
|
|
247
|
+
"path": "src/components/ui/field/field-title.astro",
|
|
248
|
+
"type": "registry:ui"
|
|
249
|
+
},
|
|
250
|
+
{
|
|
251
|
+
"path": "src/components/ui/field/index.ts",
|
|
252
|
+
"type": "registry:ui"
|
|
253
|
+
}
|
|
254
|
+
],
|
|
255
|
+
"registryDependencies": ["@fulldev/separator"]
|
|
256
|
+
},
|
|
257
|
+
{
|
|
258
|
+
"name": "footer",
|
|
259
|
+
"type": "registry:ui",
|
|
260
|
+
"files": [
|
|
261
|
+
{
|
|
262
|
+
"path": "src/components/ui/footer/footer.astro",
|
|
263
|
+
"type": "registry:ui"
|
|
264
|
+
},
|
|
265
|
+
{
|
|
266
|
+
"path": "src/components/ui/footer/footer-actions.astro",
|
|
267
|
+
"type": "registry:ui"
|
|
268
|
+
},
|
|
269
|
+
{
|
|
270
|
+
"path": "src/components/ui/footer/footer-content.astro",
|
|
271
|
+
"type": "registry:ui"
|
|
272
|
+
},
|
|
273
|
+
{
|
|
274
|
+
"path": "src/components/ui/footer/footer-copyright.astro",
|
|
275
|
+
"type": "registry:ui"
|
|
276
|
+
},
|
|
277
|
+
{
|
|
278
|
+
"path": "src/components/ui/footer/footer-description.astro",
|
|
279
|
+
"type": "registry:ui"
|
|
280
|
+
},
|
|
281
|
+
{
|
|
282
|
+
"path": "src/components/ui/footer/footer-grid.astro",
|
|
283
|
+
"type": "registry:ui"
|
|
284
|
+
},
|
|
285
|
+
{
|
|
286
|
+
"path": "src/components/ui/footer/footer-group-label.astro",
|
|
287
|
+
"type": "registry:ui"
|
|
288
|
+
},
|
|
289
|
+
{
|
|
290
|
+
"path": "src/components/ui/footer/footer-group.astro",
|
|
291
|
+
"type": "registry:ui"
|
|
292
|
+
},
|
|
293
|
+
{
|
|
294
|
+
"path": "src/components/ui/footer/footer-menu-item.astro",
|
|
295
|
+
"type": "registry:ui"
|
|
296
|
+
},
|
|
297
|
+
{
|
|
298
|
+
"path": "src/components/ui/footer/footer-menu-link.astro",
|
|
299
|
+
"type": "registry:ui"
|
|
300
|
+
},
|
|
301
|
+
{
|
|
302
|
+
"path": "src/components/ui/footer/footer-menu.astro",
|
|
303
|
+
"type": "registry:ui"
|
|
304
|
+
},
|
|
305
|
+
{
|
|
306
|
+
"path": "src/components/ui/footer/footer-split.astro",
|
|
307
|
+
"type": "registry:ui"
|
|
308
|
+
},
|
|
309
|
+
{
|
|
310
|
+
"path": "src/components/ui/footer/footer-spread.astro",
|
|
311
|
+
"type": "registry:ui"
|
|
312
|
+
},
|
|
313
|
+
{
|
|
314
|
+
"path": "src/components/ui/footer/index.ts",
|
|
315
|
+
"type": "registry:ui"
|
|
316
|
+
}
|
|
317
|
+
]
|
|
318
|
+
},
|
|
319
|
+
{
|
|
320
|
+
"name": "auto-form",
|
|
321
|
+
"type": "registry:ui",
|
|
322
|
+
"files": [
|
|
323
|
+
{
|
|
324
|
+
"path": "src/components/ui/auto-form/auto-form.astro",
|
|
325
|
+
"type": "registry:ui"
|
|
326
|
+
},
|
|
327
|
+
{
|
|
328
|
+
"path": "src/components/ui/auto-form/index.ts",
|
|
329
|
+
"type": "registry:ui"
|
|
330
|
+
}
|
|
331
|
+
],
|
|
332
|
+
"registryDependencies": [
|
|
333
|
+
"@fulldev/button",
|
|
334
|
+
"@fulldev/checkbox",
|
|
335
|
+
"@fulldev/field",
|
|
336
|
+
"@fulldev/input",
|
|
337
|
+
"@fulldev/native-select",
|
|
338
|
+
"@fulldev/radio-group",
|
|
339
|
+
"@fulldev/textarea"
|
|
340
|
+
]
|
|
341
|
+
},
|
|
342
|
+
{
|
|
343
|
+
"name": "header",
|
|
344
|
+
"type": "registry:ui",
|
|
345
|
+
"files": [
|
|
346
|
+
{
|
|
347
|
+
"path": "src/components/ui/header/header.astro",
|
|
348
|
+
"type": "registry:ui"
|
|
349
|
+
},
|
|
350
|
+
{
|
|
351
|
+
"path": "src/components/ui/header/header-actions.astro",
|
|
352
|
+
"type": "registry:ui"
|
|
353
|
+
},
|
|
354
|
+
{
|
|
355
|
+
"path": "src/components/ui/header/header-content.astro",
|
|
356
|
+
"type": "registry:ui"
|
|
357
|
+
},
|
|
358
|
+
{
|
|
359
|
+
"path": "src/components/ui/header/index.ts",
|
|
360
|
+
"type": "registry:ui"
|
|
361
|
+
}
|
|
362
|
+
]
|
|
363
|
+
},
|
|
364
|
+
{
|
|
365
|
+
"name": "icon",
|
|
366
|
+
"type": "registry:ui",
|
|
367
|
+
"files": [
|
|
368
|
+
{
|
|
369
|
+
"path": "src/components/ui/icon/icon.astro",
|
|
370
|
+
"type": "registry:ui"
|
|
371
|
+
},
|
|
372
|
+
{
|
|
373
|
+
"path": "src/components/ui/icon/index.ts",
|
|
374
|
+
"type": "registry:ui"
|
|
375
|
+
}
|
|
376
|
+
],
|
|
377
|
+
"dependencies": ["lucide-static", "simple-icons"]
|
|
378
|
+
},
|
|
379
|
+
{
|
|
380
|
+
"name": "image",
|
|
381
|
+
"type": "registry:ui",
|
|
382
|
+
"files": [
|
|
383
|
+
{
|
|
384
|
+
"path": "src/components/ui/image/image.astro",
|
|
385
|
+
"type": "registry:ui"
|
|
386
|
+
},
|
|
387
|
+
{
|
|
388
|
+
"path": "src/components/ui/image/index.ts",
|
|
389
|
+
"type": "registry:ui"
|
|
390
|
+
}
|
|
391
|
+
]
|
|
392
|
+
},
|
|
393
|
+
{
|
|
394
|
+
"name": "input",
|
|
395
|
+
"type": "registry:ui",
|
|
396
|
+
"files": [
|
|
397
|
+
{
|
|
398
|
+
"path": "src/components/ui/input/input.astro",
|
|
399
|
+
"type": "registry:ui"
|
|
400
|
+
},
|
|
401
|
+
{
|
|
402
|
+
"path": "src/components/ui/input/index.ts",
|
|
403
|
+
"type": "registry:ui"
|
|
404
|
+
}
|
|
405
|
+
]
|
|
406
|
+
},
|
|
407
|
+
{
|
|
408
|
+
"name": "item",
|
|
409
|
+
"type": "registry:ui",
|
|
410
|
+
"files": [
|
|
411
|
+
{
|
|
412
|
+
"path": "src/components/ui/item/item.astro",
|
|
413
|
+
"type": "registry:ui"
|
|
414
|
+
},
|
|
415
|
+
{
|
|
416
|
+
"path": "src/components/ui/item/item-actions.astro",
|
|
417
|
+
"type": "registry:ui"
|
|
418
|
+
},
|
|
419
|
+
{
|
|
420
|
+
"path": "src/components/ui/item/item-content.astro",
|
|
421
|
+
"type": "registry:ui"
|
|
422
|
+
},
|
|
423
|
+
{
|
|
424
|
+
"path": "src/components/ui/item/item-description.astro",
|
|
425
|
+
"type": "registry:ui"
|
|
426
|
+
},
|
|
427
|
+
{
|
|
428
|
+
"path": "src/components/ui/item/item-group.astro",
|
|
429
|
+
"type": "registry:ui"
|
|
430
|
+
},
|
|
431
|
+
{
|
|
432
|
+
"path": "src/components/ui/item/item-media.astro",
|
|
433
|
+
"type": "registry:ui"
|
|
434
|
+
},
|
|
435
|
+
{
|
|
436
|
+
"path": "src/components/ui/item/item-title.astro",
|
|
437
|
+
"type": "registry:ui"
|
|
438
|
+
},
|
|
439
|
+
{
|
|
440
|
+
"path": "src/components/ui/item/index.ts",
|
|
441
|
+
"type": "registry:ui"
|
|
442
|
+
}
|
|
443
|
+
]
|
|
444
|
+
},
|
|
445
|
+
{
|
|
446
|
+
"name": "label",
|
|
447
|
+
"type": "registry:ui",
|
|
448
|
+
"files": [
|
|
449
|
+
{
|
|
450
|
+
"path": "src/components/ui/label/label.astro",
|
|
451
|
+
"type": "registry:ui"
|
|
452
|
+
},
|
|
453
|
+
{
|
|
454
|
+
"path": "src/components/ui/label/index.ts",
|
|
455
|
+
"type": "registry:ui"
|
|
456
|
+
}
|
|
457
|
+
]
|
|
458
|
+
},
|
|
459
|
+
{
|
|
460
|
+
"name": "list",
|
|
461
|
+
"type": "registry:ui",
|
|
462
|
+
"files": [
|
|
463
|
+
{
|
|
464
|
+
"path": "src/components/ui/list/list.astro",
|
|
465
|
+
"type": "registry:ui"
|
|
466
|
+
},
|
|
467
|
+
{
|
|
468
|
+
"path": "src/components/ui/list/list-item.astro",
|
|
469
|
+
"type": "registry:ui"
|
|
470
|
+
},
|
|
471
|
+
{
|
|
472
|
+
"path": "src/components/ui/list/index.ts",
|
|
473
|
+
"type": "registry:ui"
|
|
474
|
+
}
|
|
475
|
+
]
|
|
476
|
+
},
|
|
477
|
+
{
|
|
478
|
+
"name": "logo",
|
|
479
|
+
"type": "registry:ui",
|
|
480
|
+
"files": [
|
|
481
|
+
{
|
|
482
|
+
"path": "src/components/ui/logo/logo.astro",
|
|
483
|
+
"type": "registry:ui"
|
|
484
|
+
},
|
|
485
|
+
{
|
|
486
|
+
"path": "src/components/ui/logo/logo-image.astro",
|
|
487
|
+
"type": "registry:ui"
|
|
488
|
+
},
|
|
489
|
+
{
|
|
490
|
+
"path": "src/components/ui/logo/logo-text.astro",
|
|
491
|
+
"type": "registry:ui"
|
|
492
|
+
},
|
|
493
|
+
{
|
|
494
|
+
"path": "src/components/ui/logo/index.ts",
|
|
495
|
+
"type": "registry:ui"
|
|
496
|
+
}
|
|
497
|
+
],
|
|
498
|
+
"registryDependencies": ["@fulldev/image"]
|
|
499
|
+
},
|
|
500
|
+
{
|
|
501
|
+
"name": "marquee",
|
|
502
|
+
"type": "registry:ui",
|
|
503
|
+
"files": [
|
|
504
|
+
{
|
|
505
|
+
"path": "src/components/ui/marquee/marquee.astro",
|
|
506
|
+
"type": "registry:ui"
|
|
507
|
+
},
|
|
508
|
+
{
|
|
509
|
+
"path": "src/components/ui/marquee/marquee-content.astro",
|
|
510
|
+
"type": "registry:ui"
|
|
511
|
+
},
|
|
512
|
+
{
|
|
513
|
+
"path": "src/components/ui/marquee/index.ts",
|
|
514
|
+
"type": "registry:ui"
|
|
515
|
+
}
|
|
516
|
+
]
|
|
517
|
+
},
|
|
518
|
+
{
|
|
519
|
+
"name": "theme-toggle",
|
|
520
|
+
"type": "registry:ui",
|
|
521
|
+
"files": [
|
|
522
|
+
{
|
|
523
|
+
"path": "src/components/ui/theme-toggle/theme-toggle.astro",
|
|
524
|
+
"type": "registry:ui"
|
|
525
|
+
},
|
|
526
|
+
{
|
|
527
|
+
"path": "src/components/ui/theme-toggle/index.ts",
|
|
528
|
+
"type": "registry:ui"
|
|
529
|
+
}
|
|
530
|
+
],
|
|
531
|
+
"registryDependencies": ["@fulldev/button", "@fulldev/icon"]
|
|
532
|
+
},
|
|
533
|
+
{
|
|
534
|
+
"name": "native-carousel",
|
|
535
|
+
"type": "registry:ui",
|
|
536
|
+
"files": [
|
|
537
|
+
{
|
|
538
|
+
"path": "src/components/ui/native-carousel/native-carousel.astro",
|
|
539
|
+
"type": "registry:ui"
|
|
540
|
+
},
|
|
541
|
+
{
|
|
542
|
+
"path": "src/components/ui/native-carousel/native-carousel-content.astro",
|
|
543
|
+
"type": "registry:ui"
|
|
544
|
+
},
|
|
545
|
+
{
|
|
546
|
+
"path": "src/components/ui/native-carousel/native-carousel-item.astro",
|
|
547
|
+
"type": "registry:ui"
|
|
548
|
+
},
|
|
549
|
+
{
|
|
550
|
+
"path": "src/components/ui/native-carousel/native-carousel-next.astro",
|
|
551
|
+
"type": "registry:ui"
|
|
552
|
+
},
|
|
553
|
+
{
|
|
554
|
+
"path": "src/components/ui/native-carousel/native-carousel-previous.astro",
|
|
555
|
+
"type": "registry:ui"
|
|
556
|
+
},
|
|
557
|
+
{
|
|
558
|
+
"path": "src/components/ui/native-carousel/index.ts",
|
|
559
|
+
"type": "registry:ui"
|
|
560
|
+
}
|
|
561
|
+
]
|
|
562
|
+
},
|
|
563
|
+
{
|
|
564
|
+
"name": "navigation-menu",
|
|
565
|
+
"type": "registry:ui",
|
|
566
|
+
"files": [
|
|
567
|
+
{
|
|
568
|
+
"path": "src/components/ui/navigation-menu/navigation-menu.astro",
|
|
569
|
+
"type": "registry:ui"
|
|
570
|
+
},
|
|
571
|
+
{
|
|
572
|
+
"path": "src/components/ui/navigation-menu/navigation-menu-content.astro",
|
|
573
|
+
"type": "registry:ui"
|
|
574
|
+
},
|
|
575
|
+
{
|
|
576
|
+
"path": "src/components/ui/navigation-menu/navigation-menu-item.astro",
|
|
577
|
+
"type": "registry:ui"
|
|
578
|
+
},
|
|
579
|
+
{
|
|
580
|
+
"path": "src/components/ui/navigation-menu/navigation-menu-link.astro",
|
|
581
|
+
"type": "registry:ui"
|
|
582
|
+
},
|
|
583
|
+
{
|
|
584
|
+
"path": "src/components/ui/navigation-menu/navigation-menu-list.astro",
|
|
585
|
+
"type": "registry:ui"
|
|
586
|
+
},
|
|
587
|
+
{
|
|
588
|
+
"path": "src/components/ui/navigation-menu/navigation-menu-sub.astro",
|
|
589
|
+
"type": "registry:ui"
|
|
590
|
+
},
|
|
591
|
+
{
|
|
592
|
+
"path": "src/components/ui/navigation-menu/navigation-menu-sub-item.astro",
|
|
593
|
+
"type": "registry:ui"
|
|
594
|
+
},
|
|
595
|
+
{
|
|
596
|
+
"path": "src/components/ui/navigation-menu/navigation-menu-sub-link.astro",
|
|
597
|
+
"type": "registry:ui"
|
|
598
|
+
},
|
|
599
|
+
{
|
|
600
|
+
"path": "src/components/ui/navigation-menu/navigation-menu-trigger.astro",
|
|
601
|
+
"type": "registry:ui"
|
|
602
|
+
},
|
|
603
|
+
{
|
|
604
|
+
"path": "src/components/ui/navigation-menu/index.ts",
|
|
605
|
+
"type": "registry:ui"
|
|
606
|
+
}
|
|
607
|
+
]
|
|
608
|
+
},
|
|
609
|
+
{
|
|
610
|
+
"name": "native-select",
|
|
611
|
+
"type": "registry:ui",
|
|
612
|
+
"files": [
|
|
613
|
+
{
|
|
614
|
+
"path": "src/components/ui/native-select/native-select.astro",
|
|
615
|
+
"type": "registry:ui"
|
|
616
|
+
},
|
|
617
|
+
{
|
|
618
|
+
"path": "src/components/ui/native-select/native-select-option.astro",
|
|
619
|
+
"type": "registry:ui"
|
|
620
|
+
},
|
|
621
|
+
{
|
|
622
|
+
"path": "src/components/ui/native-select/native-select-optgroup.astro",
|
|
623
|
+
"type": "registry:ui"
|
|
624
|
+
},
|
|
625
|
+
{
|
|
626
|
+
"path": "src/components/ui/native-select/index.ts",
|
|
627
|
+
"type": "registry:ui"
|
|
628
|
+
}
|
|
629
|
+
]
|
|
630
|
+
},
|
|
631
|
+
{
|
|
632
|
+
"name": "price",
|
|
633
|
+
"type": "registry:ui",
|
|
634
|
+
"files": [
|
|
635
|
+
{
|
|
636
|
+
"path": "src/components/ui/price/price.astro",
|
|
637
|
+
"type": "registry:ui"
|
|
638
|
+
},
|
|
639
|
+
{
|
|
640
|
+
"path": "src/components/ui/price/price-unit.astro",
|
|
641
|
+
"type": "registry:ui"
|
|
642
|
+
},
|
|
643
|
+
{
|
|
644
|
+
"path": "src/components/ui/price/price-value.astro",
|
|
645
|
+
"type": "registry:ui"
|
|
646
|
+
},
|
|
647
|
+
{
|
|
648
|
+
"path": "src/components/ui/price/index.ts",
|
|
649
|
+
"type": "registry:ui"
|
|
650
|
+
}
|
|
651
|
+
]
|
|
652
|
+
},
|
|
653
|
+
{
|
|
654
|
+
"name": "radio-group",
|
|
655
|
+
"type": "registry:ui",
|
|
656
|
+
"files": [
|
|
657
|
+
{
|
|
658
|
+
"path": "src/components/ui/radio-group/radio-group.astro",
|
|
659
|
+
"type": "registry:ui"
|
|
660
|
+
},
|
|
661
|
+
{
|
|
662
|
+
"path": "src/components/ui/radio-group/radio-group-item.astro",
|
|
663
|
+
"type": "registry:ui"
|
|
664
|
+
},
|
|
665
|
+
{
|
|
666
|
+
"path": "src/components/ui/radio-group/index.ts",
|
|
667
|
+
"type": "registry:ui"
|
|
668
|
+
}
|
|
669
|
+
]
|
|
670
|
+
},
|
|
671
|
+
{
|
|
672
|
+
"name": "rating",
|
|
673
|
+
"type": "registry:ui",
|
|
674
|
+
"files": [
|
|
675
|
+
{
|
|
676
|
+
"path": "src/components/ui/rating/rating.astro",
|
|
677
|
+
"type": "registry:ui"
|
|
678
|
+
},
|
|
679
|
+
{
|
|
680
|
+
"path": "src/components/ui/rating/index.ts",
|
|
681
|
+
"type": "registry:ui"
|
|
682
|
+
}
|
|
683
|
+
]
|
|
684
|
+
},
|
|
685
|
+
{
|
|
686
|
+
"name": "separator",
|
|
687
|
+
"type": "registry:ui",
|
|
688
|
+
"files": [
|
|
689
|
+
{
|
|
690
|
+
"path": "src/components/ui/separator/separator.astro",
|
|
691
|
+
"type": "registry:ui"
|
|
692
|
+
},
|
|
693
|
+
{
|
|
694
|
+
"path": "src/components/ui/separator/index.ts",
|
|
695
|
+
"type": "registry:ui"
|
|
696
|
+
}
|
|
697
|
+
]
|
|
698
|
+
},
|
|
699
|
+
{
|
|
700
|
+
"name": "section",
|
|
701
|
+
"type": "registry:ui",
|
|
702
|
+
"files": [
|
|
703
|
+
{
|
|
704
|
+
"path": "src/components/ui/section/section.astro",
|
|
705
|
+
"type": "registry:ui"
|
|
706
|
+
},
|
|
707
|
+
{
|
|
708
|
+
"path": "src/components/ui/section/section-actions.astro",
|
|
709
|
+
"type": "registry:ui"
|
|
710
|
+
},
|
|
711
|
+
{
|
|
712
|
+
"path": "src/components/ui/section/section-content.astro",
|
|
713
|
+
"type": "registry:ui"
|
|
714
|
+
},
|
|
715
|
+
{
|
|
716
|
+
"path": "src/components/ui/section/section-grid.astro",
|
|
717
|
+
"type": "registry:ui"
|
|
718
|
+
},
|
|
719
|
+
{
|
|
720
|
+
"path": "src/components/ui/section/section-masonry.astro",
|
|
721
|
+
"type": "registry:ui"
|
|
722
|
+
},
|
|
723
|
+
{
|
|
724
|
+
"path": "src/components/ui/section/section-media.astro",
|
|
725
|
+
"type": "registry:ui"
|
|
726
|
+
},
|
|
727
|
+
{
|
|
728
|
+
"path": "src/components/ui/section/section-prose.astro",
|
|
729
|
+
"type": "registry:ui"
|
|
730
|
+
},
|
|
731
|
+
{
|
|
732
|
+
"path": "src/components/ui/section/section-provider.astro",
|
|
733
|
+
"type": "registry:ui"
|
|
734
|
+
},
|
|
735
|
+
{
|
|
736
|
+
"path": "src/components/ui/section/section-split.astro",
|
|
737
|
+
"type": "registry:ui"
|
|
738
|
+
},
|
|
739
|
+
{
|
|
740
|
+
"path": "src/components/ui/section/section-spread.astro",
|
|
741
|
+
"type": "registry:ui"
|
|
742
|
+
},
|
|
743
|
+
{
|
|
744
|
+
"path": "src/components/ui/section/index.ts",
|
|
745
|
+
"type": "registry:ui"
|
|
746
|
+
}
|
|
747
|
+
]
|
|
748
|
+
},
|
|
749
|
+
{
|
|
750
|
+
"name": "sheet",
|
|
751
|
+
"type": "registry:ui",
|
|
752
|
+
"files": [
|
|
753
|
+
{
|
|
754
|
+
"path": "src/components/ui/sheet/sheet.astro",
|
|
755
|
+
"type": "registry:ui"
|
|
756
|
+
},
|
|
757
|
+
{
|
|
758
|
+
"path": "src/components/ui/sheet/sheet-close.astro",
|
|
759
|
+
"type": "registry:ui"
|
|
760
|
+
},
|
|
761
|
+
{
|
|
762
|
+
"path": "src/components/ui/sheet/sheet-content.astro",
|
|
763
|
+
"type": "registry:ui"
|
|
764
|
+
},
|
|
765
|
+
{
|
|
766
|
+
"path": "src/components/ui/sheet/sheet-description.astro",
|
|
767
|
+
"type": "registry:ui"
|
|
768
|
+
},
|
|
769
|
+
{
|
|
770
|
+
"path": "src/components/ui/sheet/sheet-footer.astro",
|
|
771
|
+
"type": "registry:ui"
|
|
772
|
+
},
|
|
773
|
+
{
|
|
774
|
+
"path": "src/components/ui/sheet/sheet-header.astro",
|
|
775
|
+
"type": "registry:ui"
|
|
776
|
+
},
|
|
777
|
+
{
|
|
778
|
+
"path": "src/components/ui/sheet/sheet-title.astro",
|
|
779
|
+
"type": "registry:ui"
|
|
780
|
+
},
|
|
781
|
+
{
|
|
782
|
+
"path": "src/components/ui/sheet/sheet-trigger.astro",
|
|
783
|
+
"type": "registry:ui"
|
|
784
|
+
},
|
|
785
|
+
{
|
|
786
|
+
"path": "src/components/ui/sheet/index.ts",
|
|
787
|
+
"type": "registry:ui"
|
|
788
|
+
}
|
|
789
|
+
],
|
|
790
|
+
"registryDependencies": ["@fulldev/button"]
|
|
791
|
+
},
|
|
792
|
+
{
|
|
793
|
+
"name": "sidebar",
|
|
794
|
+
"type": "registry:ui",
|
|
795
|
+
"files": [
|
|
796
|
+
{
|
|
797
|
+
"path": "src/components/ui/sidebar/sidebar-menu.astro",
|
|
798
|
+
"type": "registry:ui"
|
|
799
|
+
},
|
|
800
|
+
{
|
|
801
|
+
"path": "src/components/ui/sidebar/sidebar-menu-button.astro",
|
|
802
|
+
"type": "registry:ui"
|
|
803
|
+
},
|
|
804
|
+
{
|
|
805
|
+
"path": "src/components/ui/sidebar/sidebar-menu-item.astro",
|
|
806
|
+
"type": "registry:ui"
|
|
807
|
+
},
|
|
808
|
+
{
|
|
809
|
+
"path": "src/components/ui/sidebar/sidebar-menu-sub.astro",
|
|
810
|
+
"type": "registry:ui"
|
|
811
|
+
},
|
|
812
|
+
{
|
|
813
|
+
"path": "src/components/ui/sidebar/sidebar-menu-sub-button.astro",
|
|
814
|
+
"type": "registry:ui"
|
|
815
|
+
},
|
|
816
|
+
{
|
|
817
|
+
"path": "src/components/ui/sidebar/sidebar-menu-sub-item.astro",
|
|
818
|
+
"type": "registry:ui"
|
|
819
|
+
},
|
|
820
|
+
{
|
|
821
|
+
"path": "src/components/ui/sidebar/index.ts",
|
|
822
|
+
"type": "registry:ui"
|
|
823
|
+
}
|
|
824
|
+
]
|
|
825
|
+
},
|
|
826
|
+
{
|
|
827
|
+
"name": "skeleton",
|
|
828
|
+
"type": "registry:ui",
|
|
829
|
+
"files": [
|
|
830
|
+
{
|
|
831
|
+
"path": "src/components/ui/skeleton/skeleton.astro",
|
|
832
|
+
"type": "registry:ui"
|
|
833
|
+
},
|
|
834
|
+
{
|
|
835
|
+
"path": "src/components/ui/skeleton/index.ts",
|
|
836
|
+
"type": "registry:ui"
|
|
837
|
+
}
|
|
838
|
+
]
|
|
839
|
+
},
|
|
840
|
+
{
|
|
841
|
+
"name": "spinner",
|
|
842
|
+
"type": "registry:ui",
|
|
843
|
+
"files": [
|
|
844
|
+
{
|
|
845
|
+
"path": "src/components/ui/spinner/spinner.astro",
|
|
846
|
+
"type": "registry:ui"
|
|
847
|
+
},
|
|
848
|
+
{
|
|
849
|
+
"path": "src/components/ui/spinner/index.ts",
|
|
850
|
+
"type": "registry:ui"
|
|
851
|
+
}
|
|
852
|
+
]
|
|
853
|
+
},
|
|
854
|
+
{
|
|
855
|
+
"name": "table",
|
|
856
|
+
"type": "registry:ui",
|
|
857
|
+
"files": [
|
|
858
|
+
{
|
|
859
|
+
"path": "src/components/ui/table/table.astro",
|
|
860
|
+
"type": "registry:ui"
|
|
861
|
+
},
|
|
862
|
+
{
|
|
863
|
+
"path": "src/components/ui/table/table-body.astro",
|
|
864
|
+
"type": "registry:ui"
|
|
865
|
+
},
|
|
866
|
+
{
|
|
867
|
+
"path": "src/components/ui/table/table-caption.astro",
|
|
868
|
+
"type": "registry:ui"
|
|
869
|
+
},
|
|
870
|
+
{
|
|
871
|
+
"path": "src/components/ui/table/table-cell.astro",
|
|
872
|
+
"type": "registry:ui"
|
|
873
|
+
},
|
|
874
|
+
{
|
|
875
|
+
"path": "src/components/ui/table/table-footer.astro",
|
|
876
|
+
"type": "registry:ui"
|
|
877
|
+
},
|
|
878
|
+
{
|
|
879
|
+
"path": "src/components/ui/table/table-head.astro",
|
|
880
|
+
"type": "registry:ui"
|
|
881
|
+
},
|
|
882
|
+
{
|
|
883
|
+
"path": "src/components/ui/table/table-header.astro",
|
|
884
|
+
"type": "registry:ui"
|
|
885
|
+
},
|
|
886
|
+
{
|
|
887
|
+
"path": "src/components/ui/table/table-row.astro",
|
|
888
|
+
"type": "registry:ui"
|
|
889
|
+
},
|
|
890
|
+
{
|
|
891
|
+
"path": "src/components/ui/table/index.ts",
|
|
892
|
+
"type": "registry:ui"
|
|
893
|
+
}
|
|
894
|
+
]
|
|
895
|
+
},
|
|
896
|
+
{
|
|
897
|
+
"name": "tabs",
|
|
898
|
+
"type": "registry:ui",
|
|
899
|
+
"files": [
|
|
900
|
+
{
|
|
901
|
+
"path": "src/components/ui/tabs/tabs.astro",
|
|
902
|
+
"type": "registry:ui"
|
|
903
|
+
},
|
|
904
|
+
{
|
|
905
|
+
"path": "src/components/ui/tabs/tabs-content.astro",
|
|
906
|
+
"type": "registry:ui"
|
|
907
|
+
},
|
|
908
|
+
{
|
|
909
|
+
"path": "src/components/ui/tabs/tabs-list.astro",
|
|
910
|
+
"type": "registry:ui"
|
|
911
|
+
},
|
|
912
|
+
{
|
|
913
|
+
"path": "src/components/ui/tabs/tabs-trigger.astro",
|
|
914
|
+
"type": "registry:ui"
|
|
915
|
+
},
|
|
916
|
+
{
|
|
917
|
+
"path": "src/components/ui/tabs/index.ts",
|
|
918
|
+
"type": "registry:ui"
|
|
919
|
+
}
|
|
920
|
+
]
|
|
921
|
+
},
|
|
922
|
+
{
|
|
923
|
+
"name": "textarea",
|
|
924
|
+
"type": "registry:ui",
|
|
925
|
+
"files": [
|
|
926
|
+
{
|
|
927
|
+
"path": "src/components/ui/textarea/textarea.astro",
|
|
928
|
+
"type": "registry:ui"
|
|
929
|
+
},
|
|
930
|
+
{
|
|
931
|
+
"path": "src/components/ui/textarea/index.ts",
|
|
932
|
+
"type": "registry:ui"
|
|
933
|
+
}
|
|
934
|
+
]
|
|
935
|
+
},
|
|
936
|
+
{
|
|
937
|
+
"name": "tile",
|
|
938
|
+
"type": "registry:ui",
|
|
939
|
+
"files": [
|
|
940
|
+
{
|
|
941
|
+
"path": "src/components/ui/tile/tile.astro",
|
|
942
|
+
"type": "registry:ui"
|
|
943
|
+
},
|
|
944
|
+
{
|
|
945
|
+
"path": "src/components/ui/tile/tile-actions.astro",
|
|
946
|
+
"type": "registry:ui"
|
|
947
|
+
},
|
|
948
|
+
{
|
|
949
|
+
"path": "src/components/ui/tile/tile-content.astro",
|
|
950
|
+
"type": "registry:ui"
|
|
951
|
+
},
|
|
952
|
+
{
|
|
953
|
+
"path": "src/components/ui/tile/tile-description.astro",
|
|
954
|
+
"type": "registry:ui"
|
|
955
|
+
},
|
|
956
|
+
{
|
|
957
|
+
"path": "src/components/ui/tile/tile-media.astro",
|
|
958
|
+
"type": "registry:ui"
|
|
959
|
+
},
|
|
960
|
+
{
|
|
961
|
+
"path": "src/components/ui/tile/tile-split.astro",
|
|
962
|
+
"type": "registry:ui"
|
|
963
|
+
},
|
|
964
|
+
{
|
|
965
|
+
"path": "src/components/ui/tile/tile-spread.astro",
|
|
966
|
+
"type": "registry:ui"
|
|
967
|
+
},
|
|
968
|
+
{
|
|
969
|
+
"path": "src/components/ui/tile/tile-title.astro",
|
|
970
|
+
"type": "registry:ui"
|
|
971
|
+
},
|
|
972
|
+
{
|
|
973
|
+
"path": "src/components/ui/tile/index.ts",
|
|
974
|
+
"type": "registry:ui"
|
|
975
|
+
}
|
|
976
|
+
]
|
|
977
|
+
},
|
|
978
|
+
{
|
|
979
|
+
"name": "video",
|
|
980
|
+
"type": "registry:ui",
|
|
981
|
+
"files": [
|
|
982
|
+
{
|
|
983
|
+
"path": "src/components/ui/video/video.astro",
|
|
984
|
+
"type": "registry:ui"
|
|
985
|
+
},
|
|
986
|
+
{
|
|
987
|
+
"path": "src/components/ui/video/index.ts",
|
|
988
|
+
"type": "registry:ui"
|
|
989
|
+
}
|
|
990
|
+
]
|
|
991
|
+
},
|
|
992
|
+
{
|
|
993
|
+
"name": "article-1",
|
|
994
|
+
"type": "registry:block",
|
|
995
|
+
"registryDependencies": [
|
|
996
|
+
"@fulldev/avatar",
|
|
997
|
+
"@fulldev/image",
|
|
998
|
+
"@fulldev/item",
|
|
999
|
+
"@fulldev/section"
|
|
1000
|
+
],
|
|
1001
|
+
"files": [
|
|
1002
|
+
{
|
|
1003
|
+
"path": "src/components/blocks/article-1.astro",
|
|
1004
|
+
"type": "registry:block"
|
|
1005
|
+
}
|
|
1006
|
+
]
|
|
1007
|
+
},
|
|
1008
|
+
{
|
|
1009
|
+
"name": "article-2",
|
|
1010
|
+
"type": "registry:block",
|
|
1011
|
+
"registryDependencies": [
|
|
1012
|
+
"@fulldev/avatar",
|
|
1013
|
+
"@fulldev/image",
|
|
1014
|
+
"@fulldev/item",
|
|
1015
|
+
"@fulldev/section"
|
|
1016
|
+
],
|
|
1017
|
+
"files": [
|
|
1018
|
+
{
|
|
1019
|
+
"path": "src/components/blocks/article-2.astro",
|
|
1020
|
+
"type": "registry:block"
|
|
1021
|
+
}
|
|
1022
|
+
]
|
|
1023
|
+
},
|
|
1024
|
+
{
|
|
1025
|
+
"name": "articles-1",
|
|
1026
|
+
"type": "registry:block",
|
|
1027
|
+
"registryDependencies": [
|
|
1028
|
+
"@fulldev/avatar",
|
|
1029
|
+
"@fulldev/button",
|
|
1030
|
+
"@fulldev/icon",
|
|
1031
|
+
"@fulldev/image",
|
|
1032
|
+
"@fulldev/item",
|
|
1033
|
+
"@fulldev/section",
|
|
1034
|
+
"@fulldev/tile"
|
|
1035
|
+
],
|
|
1036
|
+
"files": [
|
|
1037
|
+
{
|
|
1038
|
+
"path": "src/components/blocks/articles-1.astro",
|
|
1039
|
+
"type": "registry:block"
|
|
1040
|
+
}
|
|
1041
|
+
]
|
|
1042
|
+
},
|
|
1043
|
+
{
|
|
1044
|
+
"name": "articles-2",
|
|
1045
|
+
"type": "registry:block",
|
|
1046
|
+
"registryDependencies": [
|
|
1047
|
+
"@fulldev/avatar",
|
|
1048
|
+
"@fulldev/button",
|
|
1049
|
+
"@fulldev/icon",
|
|
1050
|
+
"@fulldev/image",
|
|
1051
|
+
"@fulldev/item",
|
|
1052
|
+
"@fulldev/section",
|
|
1053
|
+
"@fulldev/tile"
|
|
1054
|
+
],
|
|
1055
|
+
"files": [
|
|
1056
|
+
{
|
|
1057
|
+
"path": "src/components/blocks/articles-2.astro",
|
|
1058
|
+
"type": "registry:block"
|
|
1059
|
+
}
|
|
1060
|
+
]
|
|
1061
|
+
},
|
|
1062
|
+
{
|
|
1063
|
+
"name": "articles-3",
|
|
1064
|
+
"type": "registry:block",
|
|
1065
|
+
"registryDependencies": [
|
|
1066
|
+
"@fulldev/avatar",
|
|
1067
|
+
"@fulldev/button",
|
|
1068
|
+
"@fulldev/icon",
|
|
1069
|
+
"@fulldev/image",
|
|
1070
|
+
"@fulldev/item",
|
|
1071
|
+
"@fulldev/section",
|
|
1072
|
+
"@fulldev/tile"
|
|
1073
|
+
],
|
|
1074
|
+
"files": [
|
|
1075
|
+
{
|
|
1076
|
+
"path": "src/components/blocks/articles-3.astro",
|
|
1077
|
+
"type": "registry:block"
|
|
1078
|
+
}
|
|
1079
|
+
]
|
|
1080
|
+
},
|
|
1081
|
+
{
|
|
1082
|
+
"name": "articles-4",
|
|
1083
|
+
"type": "registry:block",
|
|
1084
|
+
"registryDependencies": [
|
|
1085
|
+
"@fulldev/avatar",
|
|
1086
|
+
"@fulldev/button",
|
|
1087
|
+
"@fulldev/icon",
|
|
1088
|
+
"@fulldev/image",
|
|
1089
|
+
"@fulldev/item",
|
|
1090
|
+
"@fulldev/section",
|
|
1091
|
+
"@fulldev/tile"
|
|
1092
|
+
],
|
|
1093
|
+
"files": [
|
|
1094
|
+
{
|
|
1095
|
+
"path": "src/components/blocks/articles-4.astro",
|
|
1096
|
+
"type": "registry:block"
|
|
1097
|
+
}
|
|
1098
|
+
]
|
|
1099
|
+
},
|
|
1100
|
+
{
|
|
1101
|
+
"name": "banner-1",
|
|
1102
|
+
"type": "registry:block",
|
|
1103
|
+
"registryDependencies": ["@fulldev/banner", "@fulldev/icon"],
|
|
1104
|
+
"files": [
|
|
1105
|
+
{
|
|
1106
|
+
"path": "src/components/blocks/banner-1.astro",
|
|
1107
|
+
"type": "registry:block"
|
|
1108
|
+
}
|
|
1109
|
+
]
|
|
1110
|
+
},
|
|
1111
|
+
{
|
|
1112
|
+
"name": "banner-2",
|
|
1113
|
+
"type": "registry:block",
|
|
1114
|
+
"registryDependencies": ["@fulldev/banner", "@fulldev/icon"],
|
|
1115
|
+
"files": [
|
|
1116
|
+
{
|
|
1117
|
+
"path": "src/components/blocks/banner-2.astro",
|
|
1118
|
+
"type": "registry:block"
|
|
1119
|
+
}
|
|
1120
|
+
]
|
|
1121
|
+
},
|
|
1122
|
+
{
|
|
1123
|
+
"name": "contact-1",
|
|
1124
|
+
"type": "registry:block",
|
|
1125
|
+
"registryDependencies": [
|
|
1126
|
+
"@fulldev/auto-form",
|
|
1127
|
+
"@fulldev/icon",
|
|
1128
|
+
"@fulldev/item",
|
|
1129
|
+
"@fulldev/section"
|
|
1130
|
+
],
|
|
1131
|
+
"files": [
|
|
1132
|
+
{
|
|
1133
|
+
"path": "src/components/blocks/contact-1.astro",
|
|
1134
|
+
"type": "registry:block"
|
|
1135
|
+
}
|
|
1136
|
+
]
|
|
1137
|
+
},
|
|
1138
|
+
{
|
|
1139
|
+
"name": "contact-2",
|
|
1140
|
+
"type": "registry:block",
|
|
1141
|
+
"registryDependencies": [
|
|
1142
|
+
"@fulldev/auto-form",
|
|
1143
|
+
"@fulldev/icon",
|
|
1144
|
+
"@fulldev/item",
|
|
1145
|
+
"@fulldev/section"
|
|
1146
|
+
],
|
|
1147
|
+
"files": [
|
|
1148
|
+
{
|
|
1149
|
+
"path": "src/components/blocks/contact-2.astro",
|
|
1150
|
+
"type": "registry:block"
|
|
1151
|
+
}
|
|
1152
|
+
]
|
|
1153
|
+
},
|
|
1154
|
+
{
|
|
1155
|
+
"name": "contact-3",
|
|
1156
|
+
"type": "registry:block",
|
|
1157
|
+
"registryDependencies": [
|
|
1158
|
+
"@fulldev/auto-form",
|
|
1159
|
+
"@fulldev/icon",
|
|
1160
|
+
"@fulldev/image",
|
|
1161
|
+
"@fulldev/item",
|
|
1162
|
+
"@fulldev/section"
|
|
1163
|
+
],
|
|
1164
|
+
"files": [
|
|
1165
|
+
{
|
|
1166
|
+
"path": "src/components/blocks/contact-3.astro",
|
|
1167
|
+
"type": "registry:block"
|
|
1168
|
+
}
|
|
1169
|
+
]
|
|
1170
|
+
},
|
|
1171
|
+
{
|
|
1172
|
+
"name": "content-1",
|
|
1173
|
+
"type": "registry:block",
|
|
1174
|
+
"registryDependencies": [
|
|
1175
|
+
"@fulldev/button",
|
|
1176
|
+
"@fulldev/icon",
|
|
1177
|
+
"@fulldev/image",
|
|
1178
|
+
"@fulldev/list",
|
|
1179
|
+
"@fulldev/section"
|
|
1180
|
+
],
|
|
1181
|
+
"files": [
|
|
1182
|
+
{
|
|
1183
|
+
"path": "src/components/blocks/content-1.astro",
|
|
1184
|
+
"type": "registry:block"
|
|
1185
|
+
}
|
|
1186
|
+
]
|
|
1187
|
+
},
|
|
1188
|
+
{
|
|
1189
|
+
"name": "content-2",
|
|
1190
|
+
"type": "registry:block",
|
|
1191
|
+
"registryDependencies": [
|
|
1192
|
+
"@fulldev/button",
|
|
1193
|
+
"@fulldev/icon",
|
|
1194
|
+
"@fulldev/image",
|
|
1195
|
+
"@fulldev/list",
|
|
1196
|
+
"@fulldev/section"
|
|
1197
|
+
],
|
|
1198
|
+
"files": [
|
|
1199
|
+
{
|
|
1200
|
+
"path": "src/components/blocks/content-2.astro",
|
|
1201
|
+
"type": "registry:block"
|
|
1202
|
+
}
|
|
1203
|
+
]
|
|
1204
|
+
},
|
|
1205
|
+
{
|
|
1206
|
+
"name": "content-3",
|
|
1207
|
+
"type": "registry:block",
|
|
1208
|
+
"registryDependencies": [
|
|
1209
|
+
"@fulldev/button",
|
|
1210
|
+
"@fulldev/icon",
|
|
1211
|
+
"@fulldev/image",
|
|
1212
|
+
"@fulldev/list",
|
|
1213
|
+
"@fulldev/section"
|
|
1214
|
+
],
|
|
1215
|
+
"files": [
|
|
1216
|
+
{
|
|
1217
|
+
"path": "src/components/blocks/content-3.astro",
|
|
1218
|
+
"type": "registry:block"
|
|
1219
|
+
}
|
|
1220
|
+
]
|
|
1221
|
+
},
|
|
1222
|
+
{
|
|
1223
|
+
"name": "content-4",
|
|
1224
|
+
"type": "registry:block",
|
|
1225
|
+
"registryDependencies": [
|
|
1226
|
+
"@fulldev/button",
|
|
1227
|
+
"@fulldev/icon",
|
|
1228
|
+
"@fulldev/image",
|
|
1229
|
+
"@fulldev/list",
|
|
1230
|
+
"@fulldev/section"
|
|
1231
|
+
],
|
|
1232
|
+
"files": [
|
|
1233
|
+
{
|
|
1234
|
+
"path": "src/components/blocks/content-4.astro",
|
|
1235
|
+
"type": "registry:block"
|
|
1236
|
+
}
|
|
1237
|
+
]
|
|
1238
|
+
},
|
|
1239
|
+
{
|
|
1240
|
+
"name": "cta-1",
|
|
1241
|
+
"type": "registry:block",
|
|
1242
|
+
"registryDependencies": [
|
|
1243
|
+
"@fulldev/avatar",
|
|
1244
|
+
"@fulldev/button",
|
|
1245
|
+
"@fulldev/icon",
|
|
1246
|
+
"@fulldev/item",
|
|
1247
|
+
"@fulldev/rating",
|
|
1248
|
+
"@fulldev/section"
|
|
1249
|
+
],
|
|
1250
|
+
"files": [
|
|
1251
|
+
{
|
|
1252
|
+
"path": "src/components/blocks/cta-1.astro",
|
|
1253
|
+
"type": "registry:block"
|
|
1254
|
+
}
|
|
1255
|
+
]
|
|
1256
|
+
},
|
|
1257
|
+
{
|
|
1258
|
+
"name": "cta-2",
|
|
1259
|
+
"type": "registry:block",
|
|
1260
|
+
"registryDependencies": [
|
|
1261
|
+
"@fulldev/avatar",
|
|
1262
|
+
"@fulldev/button",
|
|
1263
|
+
"@fulldev/icon",
|
|
1264
|
+
"@fulldev/image",
|
|
1265
|
+
"@fulldev/item",
|
|
1266
|
+
"@fulldev/rating",
|
|
1267
|
+
"@fulldev/section"
|
|
1268
|
+
],
|
|
1269
|
+
"files": [
|
|
1270
|
+
{
|
|
1271
|
+
"path": "src/components/blocks/cta-2.astro",
|
|
1272
|
+
"type": "registry:block"
|
|
1273
|
+
}
|
|
1274
|
+
]
|
|
1275
|
+
},
|
|
1276
|
+
{
|
|
1277
|
+
"name": "cta-3",
|
|
1278
|
+
"type": "registry:block",
|
|
1279
|
+
"registryDependencies": [
|
|
1280
|
+
"@fulldev/avatar",
|
|
1281
|
+
"@fulldev/button",
|
|
1282
|
+
"@fulldev/icon",
|
|
1283
|
+
"@fulldev/item",
|
|
1284
|
+
"@fulldev/rating",
|
|
1285
|
+
"@fulldev/section"
|
|
1286
|
+
],
|
|
1287
|
+
"files": [
|
|
1288
|
+
{
|
|
1289
|
+
"path": "src/components/blocks/cta-3.astro",
|
|
1290
|
+
"type": "registry:block"
|
|
1291
|
+
}
|
|
1292
|
+
]
|
|
1293
|
+
},
|
|
1294
|
+
{
|
|
1295
|
+
"name": "cta-4",
|
|
1296
|
+
"type": "registry:block",
|
|
1297
|
+
"registryDependencies": [
|
|
1298
|
+
"@fulldev/avatar",
|
|
1299
|
+
"@fulldev/button",
|
|
1300
|
+
"@fulldev/icon",
|
|
1301
|
+
"@fulldev/image",
|
|
1302
|
+
"@fulldev/item",
|
|
1303
|
+
"@fulldev/rating",
|
|
1304
|
+
"@fulldev/section"
|
|
1305
|
+
],
|
|
1306
|
+
"files": [
|
|
1307
|
+
{
|
|
1308
|
+
"path": "src/components/blocks/cta-4.astro",
|
|
1309
|
+
"type": "registry:block"
|
|
1310
|
+
}
|
|
1311
|
+
]
|
|
1312
|
+
},
|
|
1313
|
+
{
|
|
1314
|
+
"name": "cta-5",
|
|
1315
|
+
"type": "registry:block",
|
|
1316
|
+
"registryDependencies": [
|
|
1317
|
+
"@fulldev/avatar",
|
|
1318
|
+
"@fulldev/button",
|
|
1319
|
+
"@fulldev/icon",
|
|
1320
|
+
"@fulldev/image",
|
|
1321
|
+
"@fulldev/item",
|
|
1322
|
+
"@fulldev/rating",
|
|
1323
|
+
"@fulldev/section"
|
|
1324
|
+
],
|
|
1325
|
+
"files": [
|
|
1326
|
+
{
|
|
1327
|
+
"path": "src/components/blocks/cta-5.astro",
|
|
1328
|
+
"type": "registry:block"
|
|
1329
|
+
}
|
|
1330
|
+
]
|
|
1331
|
+
},
|
|
1332
|
+
{
|
|
1333
|
+
"name": "cta-6",
|
|
1334
|
+
"type": "registry:block",
|
|
1335
|
+
"registryDependencies": [
|
|
1336
|
+
"@fulldev/avatar",
|
|
1337
|
+
"@fulldev/button",
|
|
1338
|
+
"@fulldev/icon",
|
|
1339
|
+
"@fulldev/item",
|
|
1340
|
+
"@fulldev/rating",
|
|
1341
|
+
"@fulldev/section"
|
|
1342
|
+
],
|
|
1343
|
+
"files": [
|
|
1344
|
+
{
|
|
1345
|
+
"path": "src/components/blocks/cta-6.astro",
|
|
1346
|
+
"type": "registry:block"
|
|
1347
|
+
}
|
|
1348
|
+
]
|
|
1349
|
+
},
|
|
1350
|
+
{
|
|
1351
|
+
"name": "cta-7",
|
|
1352
|
+
"type": "registry:block",
|
|
1353
|
+
"registryDependencies": [
|
|
1354
|
+
"@fulldev/avatar",
|
|
1355
|
+
"@fulldev/button",
|
|
1356
|
+
"@fulldev/icon",
|
|
1357
|
+
"@fulldev/image",
|
|
1358
|
+
"@fulldev/item",
|
|
1359
|
+
"@fulldev/rating",
|
|
1360
|
+
"@fulldev/section"
|
|
1361
|
+
],
|
|
1362
|
+
"files": [
|
|
1363
|
+
{
|
|
1364
|
+
"path": "src/components/blocks/cta-7.astro",
|
|
1365
|
+
"type": "registry:block"
|
|
1366
|
+
}
|
|
1367
|
+
]
|
|
1368
|
+
},
|
|
1369
|
+
{
|
|
1370
|
+
"name": "cta-8",
|
|
1371
|
+
"type": "registry:block",
|
|
1372
|
+
"registryDependencies": [
|
|
1373
|
+
"@fulldev/avatar",
|
|
1374
|
+
"@fulldev/button",
|
|
1375
|
+
"@fulldev/icon",
|
|
1376
|
+
"@fulldev/item",
|
|
1377
|
+
"@fulldev/rating",
|
|
1378
|
+
"@fulldev/section"
|
|
1379
|
+
],
|
|
1380
|
+
"files": [
|
|
1381
|
+
{
|
|
1382
|
+
"path": "src/components/blocks/cta-8.astro",
|
|
1383
|
+
"type": "registry:block"
|
|
1384
|
+
}
|
|
1385
|
+
]
|
|
1386
|
+
},
|
|
1387
|
+
{
|
|
1388
|
+
"name": "faqs-1",
|
|
1389
|
+
"type": "registry:block",
|
|
1390
|
+
"registryDependencies": [
|
|
1391
|
+
"@fulldev/accordion",
|
|
1392
|
+
"@fulldev/button",
|
|
1393
|
+
"@fulldev/icon",
|
|
1394
|
+
"@fulldev/section"
|
|
1395
|
+
],
|
|
1396
|
+
"files": [
|
|
1397
|
+
{
|
|
1398
|
+
"path": "src/components/blocks/faqs-1.astro",
|
|
1399
|
+
"type": "registry:block"
|
|
1400
|
+
}
|
|
1401
|
+
]
|
|
1402
|
+
},
|
|
1403
|
+
{
|
|
1404
|
+
"name": "faqs-2",
|
|
1405
|
+
"type": "registry:block",
|
|
1406
|
+
"registryDependencies": [
|
|
1407
|
+
"@fulldev/accordion",
|
|
1408
|
+
"@fulldev/button",
|
|
1409
|
+
"@fulldev/icon",
|
|
1410
|
+
"@fulldev/section"
|
|
1411
|
+
],
|
|
1412
|
+
"files": [
|
|
1413
|
+
{
|
|
1414
|
+
"path": "src/components/blocks/faqs-2.astro",
|
|
1415
|
+
"type": "registry:block"
|
|
1416
|
+
}
|
|
1417
|
+
]
|
|
1418
|
+
},
|
|
1419
|
+
{
|
|
1420
|
+
"name": "faqs-3",
|
|
1421
|
+
"type": "registry:block",
|
|
1422
|
+
"registryDependencies": [
|
|
1423
|
+
"@fulldev/accordion",
|
|
1424
|
+
"@fulldev/button",
|
|
1425
|
+
"@fulldev/icon",
|
|
1426
|
+
"@fulldev/section"
|
|
1427
|
+
],
|
|
1428
|
+
"files": [
|
|
1429
|
+
{
|
|
1430
|
+
"path": "src/components/blocks/faqs-3.astro",
|
|
1431
|
+
"type": "registry:block"
|
|
1432
|
+
}
|
|
1433
|
+
]
|
|
1434
|
+
},
|
|
1435
|
+
{
|
|
1436
|
+
"name": "faqs-4",
|
|
1437
|
+
"type": "registry:block",
|
|
1438
|
+
"registryDependencies": [
|
|
1439
|
+
"@fulldev/accordion",
|
|
1440
|
+
"@fulldev/button",
|
|
1441
|
+
"@fulldev/icon",
|
|
1442
|
+
"@fulldev/section"
|
|
1443
|
+
],
|
|
1444
|
+
"files": [
|
|
1445
|
+
{
|
|
1446
|
+
"path": "src/components/blocks/faqs-4.astro",
|
|
1447
|
+
"type": "registry:block"
|
|
1448
|
+
}
|
|
1449
|
+
]
|
|
1450
|
+
},
|
|
1451
|
+
{
|
|
1452
|
+
"name": "features-1",
|
|
1453
|
+
"type": "registry:block",
|
|
1454
|
+
"registryDependencies": [
|
|
1455
|
+
"@fulldev/button",
|
|
1456
|
+
"@fulldev/icon",
|
|
1457
|
+
"@fulldev/section",
|
|
1458
|
+
"@fulldev/tile"
|
|
1459
|
+
],
|
|
1460
|
+
"files": [
|
|
1461
|
+
{
|
|
1462
|
+
"path": "src/components/blocks/features-1.astro",
|
|
1463
|
+
"type": "registry:block"
|
|
1464
|
+
}
|
|
1465
|
+
]
|
|
1466
|
+
},
|
|
1467
|
+
{
|
|
1468
|
+
"name": "features-2",
|
|
1469
|
+
"type": "registry:block",
|
|
1470
|
+
"registryDependencies": [
|
|
1471
|
+
"@fulldev/button",
|
|
1472
|
+
"@fulldev/icon",
|
|
1473
|
+
"@fulldev/section",
|
|
1474
|
+
"@fulldev/tile"
|
|
1475
|
+
],
|
|
1476
|
+
"files": [
|
|
1477
|
+
{
|
|
1478
|
+
"path": "src/components/blocks/features-2.astro",
|
|
1479
|
+
"type": "registry:block"
|
|
1480
|
+
}
|
|
1481
|
+
]
|
|
1482
|
+
},
|
|
1483
|
+
{
|
|
1484
|
+
"name": "features-3",
|
|
1485
|
+
"type": "registry:block",
|
|
1486
|
+
"registryDependencies": [
|
|
1487
|
+
"@fulldev/image",
|
|
1488
|
+
"@fulldev/section",
|
|
1489
|
+
"@fulldev/tile"
|
|
1490
|
+
],
|
|
1491
|
+
"files": [
|
|
1492
|
+
{
|
|
1493
|
+
"path": "src/components/blocks/features-3.astro",
|
|
1494
|
+
"type": "registry:block"
|
|
1495
|
+
}
|
|
1496
|
+
]
|
|
1497
|
+
},
|
|
1498
|
+
{
|
|
1499
|
+
"name": "features-4",
|
|
1500
|
+
"type": "registry:block",
|
|
1501
|
+
"registryDependencies": [
|
|
1502
|
+
"@fulldev/button",
|
|
1503
|
+
"@fulldev/icon",
|
|
1504
|
+
"@fulldev/section",
|
|
1505
|
+
"@fulldev/tile"
|
|
1506
|
+
],
|
|
1507
|
+
"files": [
|
|
1508
|
+
{
|
|
1509
|
+
"path": "src/components/blocks/features-4.astro",
|
|
1510
|
+
"type": "registry:block"
|
|
1511
|
+
}
|
|
1512
|
+
]
|
|
1513
|
+
},
|
|
1514
|
+
{
|
|
1515
|
+
"name": "features-5",
|
|
1516
|
+
"type": "registry:block",
|
|
1517
|
+
"registryDependencies": [
|
|
1518
|
+
"@fulldev/button",
|
|
1519
|
+
"@fulldev/icon",
|
|
1520
|
+
"@fulldev/section",
|
|
1521
|
+
"@fulldev/tile"
|
|
1522
|
+
],
|
|
1523
|
+
"files": [
|
|
1524
|
+
{
|
|
1525
|
+
"path": "src/components/blocks/features-5.astro",
|
|
1526
|
+
"type": "registry:block"
|
|
1527
|
+
}
|
|
1528
|
+
]
|
|
1529
|
+
},
|
|
1530
|
+
{
|
|
1531
|
+
"name": "features-6",
|
|
1532
|
+
"type": "registry:block",
|
|
1533
|
+
"registryDependencies": [
|
|
1534
|
+
"@fulldev/button",
|
|
1535
|
+
"@fulldev/icon",
|
|
1536
|
+
"@fulldev/section",
|
|
1537
|
+
"@fulldev/tile"
|
|
1538
|
+
],
|
|
1539
|
+
"files": [
|
|
1540
|
+
{
|
|
1541
|
+
"path": "src/components/blocks/features-6.astro",
|
|
1542
|
+
"type": "registry:block"
|
|
1543
|
+
}
|
|
1544
|
+
]
|
|
1545
|
+
},
|
|
1546
|
+
{
|
|
1547
|
+
"name": "footer-1",
|
|
1548
|
+
"type": "registry:block",
|
|
1549
|
+
"registryDependencies": [
|
|
1550
|
+
"@fulldev/footer",
|
|
1551
|
+
"@fulldev/icon",
|
|
1552
|
+
"@fulldev/logo"
|
|
1553
|
+
],
|
|
1554
|
+
"files": [
|
|
1555
|
+
{
|
|
1556
|
+
"path": "src/components/blocks/footer-1.astro",
|
|
1557
|
+
"type": "registry:block"
|
|
1558
|
+
}
|
|
1559
|
+
]
|
|
1560
|
+
},
|
|
1561
|
+
{
|
|
1562
|
+
"name": "footer-2",
|
|
1563
|
+
"type": "registry:block",
|
|
1564
|
+
"registryDependencies": [
|
|
1565
|
+
"@fulldev/footer",
|
|
1566
|
+
"@fulldev/icon",
|
|
1567
|
+
"@fulldev/logo"
|
|
1568
|
+
],
|
|
1569
|
+
"files": [
|
|
1570
|
+
{
|
|
1571
|
+
"path": "src/components/blocks/footer-2.astro",
|
|
1572
|
+
"type": "registry:block"
|
|
1573
|
+
}
|
|
1574
|
+
]
|
|
1575
|
+
},
|
|
1576
|
+
{
|
|
1577
|
+
"name": "header-1",
|
|
1578
|
+
"type": "registry:block",
|
|
1579
|
+
"registryDependencies": [
|
|
1580
|
+
"@fulldev/button",
|
|
1581
|
+
"@fulldev/collapsible",
|
|
1582
|
+
"@fulldev/header",
|
|
1583
|
+
"@fulldev/icon",
|
|
1584
|
+
"@fulldev/logo",
|
|
1585
|
+
"@fulldev/navigation-menu",
|
|
1586
|
+
"@fulldev/sheet",
|
|
1587
|
+
"@fulldev/sidebar",
|
|
1588
|
+
"@fulldev/theme-toggle"
|
|
1589
|
+
],
|
|
1590
|
+
"files": [
|
|
1591
|
+
{
|
|
1592
|
+
"path": "src/components/blocks/header-1.astro",
|
|
1593
|
+
"type": "registry:block"
|
|
1594
|
+
}
|
|
1595
|
+
]
|
|
1596
|
+
},
|
|
1597
|
+
{
|
|
1598
|
+
"name": "header-2",
|
|
1599
|
+
"type": "registry:block",
|
|
1600
|
+
"registryDependencies": [
|
|
1601
|
+
"@fulldev/button",
|
|
1602
|
+
"@fulldev/collapsible",
|
|
1603
|
+
"@fulldev/header",
|
|
1604
|
+
"@fulldev/icon",
|
|
1605
|
+
"@fulldev/logo",
|
|
1606
|
+
"@fulldev/navigation-menu",
|
|
1607
|
+
"@fulldev/sheet",
|
|
1608
|
+
"@fulldev/sidebar",
|
|
1609
|
+
"@fulldev/theme-toggle"
|
|
1610
|
+
],
|
|
1611
|
+
"files": [
|
|
1612
|
+
{
|
|
1613
|
+
"path": "src/components/blocks/header-2.astro",
|
|
1614
|
+
"type": "registry:block"
|
|
1615
|
+
}
|
|
1616
|
+
]
|
|
1617
|
+
},
|
|
1618
|
+
{
|
|
1619
|
+
"name": "header-3",
|
|
1620
|
+
"type": "registry:block",
|
|
1621
|
+
"registryDependencies": [
|
|
1622
|
+
"@fulldev/button",
|
|
1623
|
+
"@fulldev/collapsible",
|
|
1624
|
+
"@fulldev/header",
|
|
1625
|
+
"@fulldev/icon",
|
|
1626
|
+
"@fulldev/logo",
|
|
1627
|
+
"@fulldev/navigation-menu",
|
|
1628
|
+
"@fulldev/sheet",
|
|
1629
|
+
"@fulldev/sidebar",
|
|
1630
|
+
"@fulldev/theme-toggle"
|
|
1631
|
+
],
|
|
1632
|
+
"files": [
|
|
1633
|
+
{
|
|
1634
|
+
"path": "src/components/blocks/header-3.astro",
|
|
1635
|
+
"type": "registry:block"
|
|
1636
|
+
}
|
|
1637
|
+
]
|
|
1638
|
+
},
|
|
1639
|
+
{
|
|
1640
|
+
"name": "hero-1",
|
|
1641
|
+
"type": "registry:block",
|
|
1642
|
+
"registryDependencies": [
|
|
1643
|
+
"@fulldev/badge",
|
|
1644
|
+
"@fulldev/button",
|
|
1645
|
+
"@fulldev/icon",
|
|
1646
|
+
"@fulldev/image",
|
|
1647
|
+
"@fulldev/section"
|
|
1648
|
+
],
|
|
1649
|
+
"files": [
|
|
1650
|
+
{
|
|
1651
|
+
"path": "src/components/blocks/hero-1.astro",
|
|
1652
|
+
"type": "registry:block"
|
|
1653
|
+
}
|
|
1654
|
+
]
|
|
1655
|
+
},
|
|
1656
|
+
{
|
|
1657
|
+
"name": "hero-2",
|
|
1658
|
+
"type": "registry:block",
|
|
1659
|
+
"registryDependencies": [
|
|
1660
|
+
"@fulldev/avatar",
|
|
1661
|
+
"@fulldev/button",
|
|
1662
|
+
"@fulldev/icon",
|
|
1663
|
+
"@fulldev/image",
|
|
1664
|
+
"@fulldev/item",
|
|
1665
|
+
"@fulldev/rating",
|
|
1666
|
+
"@fulldev/section"
|
|
1667
|
+
],
|
|
1668
|
+
"files": [
|
|
1669
|
+
{
|
|
1670
|
+
"path": "src/components/blocks/hero-2.astro",
|
|
1671
|
+
"type": "registry:block"
|
|
1672
|
+
}
|
|
1673
|
+
]
|
|
1674
|
+
},
|
|
1675
|
+
{
|
|
1676
|
+
"name": "hero-3",
|
|
1677
|
+
"type": "registry:block",
|
|
1678
|
+
"registryDependencies": [
|
|
1679
|
+
"@fulldev/button",
|
|
1680
|
+
"@fulldev/icon",
|
|
1681
|
+
"@fulldev/image",
|
|
1682
|
+
"@fulldev/section"
|
|
1683
|
+
],
|
|
1684
|
+
"files": [
|
|
1685
|
+
{
|
|
1686
|
+
"path": "src/components/blocks/hero-3.astro",
|
|
1687
|
+
"type": "registry:block"
|
|
1688
|
+
}
|
|
1689
|
+
]
|
|
1690
|
+
},
|
|
1691
|
+
{
|
|
1692
|
+
"name": "hero-4",
|
|
1693
|
+
"type": "registry:block",
|
|
1694
|
+
"registryDependencies": [
|
|
1695
|
+
"@fulldev/button",
|
|
1696
|
+
"@fulldev/icon",
|
|
1697
|
+
"@fulldev/image",
|
|
1698
|
+
"@fulldev/section"
|
|
1699
|
+
],
|
|
1700
|
+
"files": [
|
|
1701
|
+
{
|
|
1702
|
+
"path": "src/components/blocks/hero-4.astro",
|
|
1703
|
+
"type": "registry:block"
|
|
1704
|
+
}
|
|
1705
|
+
]
|
|
1706
|
+
},
|
|
1707
|
+
{
|
|
1708
|
+
"name": "hero-5",
|
|
1709
|
+
"type": "registry:block",
|
|
1710
|
+
"registryDependencies": [
|
|
1711
|
+
"@fulldev/avatar",
|
|
1712
|
+
"@fulldev/button",
|
|
1713
|
+
"@fulldev/icon",
|
|
1714
|
+
"@fulldev/image",
|
|
1715
|
+
"@fulldev/item",
|
|
1716
|
+
"@fulldev/list",
|
|
1717
|
+
"@fulldev/rating",
|
|
1718
|
+
"@fulldev/section"
|
|
1719
|
+
],
|
|
1720
|
+
"files": [
|
|
1721
|
+
{
|
|
1722
|
+
"path": "src/components/blocks/hero-5.astro",
|
|
1723
|
+
"type": "registry:block"
|
|
1724
|
+
}
|
|
1725
|
+
]
|
|
1726
|
+
},
|
|
1727
|
+
{
|
|
1728
|
+
"name": "hero-6",
|
|
1729
|
+
"type": "registry:block",
|
|
1730
|
+
"registryDependencies": [
|
|
1731
|
+
"@fulldev/avatar",
|
|
1732
|
+
"@fulldev/button",
|
|
1733
|
+
"@fulldev/icon",
|
|
1734
|
+
"@fulldev/image",
|
|
1735
|
+
"@fulldev/item",
|
|
1736
|
+
"@fulldev/list",
|
|
1737
|
+
"@fulldev/rating",
|
|
1738
|
+
"@fulldev/section"
|
|
1739
|
+
],
|
|
1740
|
+
"files": [
|
|
1741
|
+
{
|
|
1742
|
+
"path": "src/components/blocks/hero-6.astro",
|
|
1743
|
+
"type": "registry:block"
|
|
1744
|
+
}
|
|
1745
|
+
]
|
|
1746
|
+
},
|
|
1747
|
+
{
|
|
1748
|
+
"name": "hero-7",
|
|
1749
|
+
"type": "registry:block",
|
|
1750
|
+
"registryDependencies": [
|
|
1751
|
+
"@fulldev/avatar",
|
|
1752
|
+
"@fulldev/button",
|
|
1753
|
+
"@fulldev/icon",
|
|
1754
|
+
"@fulldev/image",
|
|
1755
|
+
"@fulldev/item",
|
|
1756
|
+
"@fulldev/list",
|
|
1757
|
+
"@fulldev/rating",
|
|
1758
|
+
"@fulldev/section"
|
|
1759
|
+
],
|
|
1760
|
+
"files": [
|
|
1761
|
+
{
|
|
1762
|
+
"path": "src/components/blocks/hero-7.astro",
|
|
1763
|
+
"type": "registry:block"
|
|
1764
|
+
}
|
|
1765
|
+
]
|
|
1766
|
+
},
|
|
1767
|
+
{
|
|
1768
|
+
"name": "hero-8",
|
|
1769
|
+
"type": "registry:block",
|
|
1770
|
+
"registryDependencies": [
|
|
1771
|
+
"@fulldev/button",
|
|
1772
|
+
"@fulldev/icon",
|
|
1773
|
+
"@fulldev/image",
|
|
1774
|
+
"@fulldev/section"
|
|
1775
|
+
],
|
|
1776
|
+
"files": [
|
|
1777
|
+
{
|
|
1778
|
+
"path": "src/components/blocks/hero-8.astro",
|
|
1779
|
+
"type": "registry:block"
|
|
1780
|
+
}
|
|
1781
|
+
]
|
|
1782
|
+
},
|
|
1783
|
+
{
|
|
1784
|
+
"name": "hero-9",
|
|
1785
|
+
"type": "registry:block",
|
|
1786
|
+
"registryDependencies": [
|
|
1787
|
+
"@fulldev/avatar",
|
|
1788
|
+
"@fulldev/button",
|
|
1789
|
+
"@fulldev/icon",
|
|
1790
|
+
"@fulldev/image",
|
|
1791
|
+
"@fulldev/item",
|
|
1792
|
+
"@fulldev/list",
|
|
1793
|
+
"@fulldev/rating",
|
|
1794
|
+
"@fulldev/section"
|
|
1795
|
+
],
|
|
1796
|
+
"files": [
|
|
1797
|
+
{
|
|
1798
|
+
"path": "src/components/blocks/hero-9.astro",
|
|
1799
|
+
"type": "registry:block"
|
|
1800
|
+
}
|
|
1801
|
+
]
|
|
1802
|
+
},
|
|
1803
|
+
{
|
|
1804
|
+
"name": "hero-10",
|
|
1805
|
+
"type": "registry:block",
|
|
1806
|
+
"registryDependencies": [
|
|
1807
|
+
"@fulldev/avatar",
|
|
1808
|
+
"@fulldev/button",
|
|
1809
|
+
"@fulldev/icon",
|
|
1810
|
+
"@fulldev/image",
|
|
1811
|
+
"@fulldev/item",
|
|
1812
|
+
"@fulldev/rating",
|
|
1813
|
+
"@fulldev/section"
|
|
1814
|
+
],
|
|
1815
|
+
"files": [
|
|
1816
|
+
{
|
|
1817
|
+
"path": "src/components/blocks/hero-10.astro",
|
|
1818
|
+
"type": "registry:block"
|
|
1819
|
+
}
|
|
1820
|
+
]
|
|
1821
|
+
},
|
|
1822
|
+
{
|
|
1823
|
+
"name": "hero-11",
|
|
1824
|
+
"type": "registry:block",
|
|
1825
|
+
"registryDependencies": [
|
|
1826
|
+
"@fulldev/avatar",
|
|
1827
|
+
"@fulldev/button",
|
|
1828
|
+
"@fulldev/icon",
|
|
1829
|
+
"@fulldev/image",
|
|
1830
|
+
"@fulldev/item",
|
|
1831
|
+
"@fulldev/rating",
|
|
1832
|
+
"@fulldev/section"
|
|
1833
|
+
],
|
|
1834
|
+
"files": [
|
|
1835
|
+
{
|
|
1836
|
+
"path": "src/components/blocks/hero-11.astro",
|
|
1837
|
+
"type": "registry:block"
|
|
1838
|
+
}
|
|
1839
|
+
]
|
|
1840
|
+
},
|
|
1841
|
+
{
|
|
1842
|
+
"name": "hero-12",
|
|
1843
|
+
"type": "registry:block",
|
|
1844
|
+
"registryDependencies": [
|
|
1845
|
+
"@fulldev/button",
|
|
1846
|
+
"@fulldev/icon",
|
|
1847
|
+
"@fulldev/image",
|
|
1848
|
+
"@fulldev/section"
|
|
1849
|
+
],
|
|
1850
|
+
"files": [
|
|
1851
|
+
{
|
|
1852
|
+
"path": "src/components/blocks/hero-12.astro",
|
|
1853
|
+
"type": "registry:block"
|
|
1854
|
+
}
|
|
1855
|
+
]
|
|
1856
|
+
},
|
|
1857
|
+
{
|
|
1858
|
+
"name": "hero-13",
|
|
1859
|
+
"type": "registry:block",
|
|
1860
|
+
"registryDependencies": [
|
|
1861
|
+
"@fulldev/button",
|
|
1862
|
+
"@fulldev/icon",
|
|
1863
|
+
"@fulldev/image",
|
|
1864
|
+
"@fulldev/section"
|
|
1865
|
+
],
|
|
1866
|
+
"files": [
|
|
1867
|
+
{
|
|
1868
|
+
"path": "src/components/blocks/hero-13.astro",
|
|
1869
|
+
"type": "registry:block"
|
|
1870
|
+
}
|
|
1871
|
+
]
|
|
1872
|
+
},
|
|
1873
|
+
{
|
|
1874
|
+
"name": "logos-1",
|
|
1875
|
+
"type": "registry:block",
|
|
1876
|
+
"registryDependencies": ["@fulldev/logo", "@fulldev/section"],
|
|
1877
|
+
"files": [
|
|
1878
|
+
{
|
|
1879
|
+
"path": "src/components/blocks/logos-1.astro",
|
|
1880
|
+
"type": "registry:block"
|
|
1881
|
+
}
|
|
1882
|
+
]
|
|
1883
|
+
},
|
|
1884
|
+
{
|
|
1885
|
+
"name": "logos-2",
|
|
1886
|
+
"type": "registry:block",
|
|
1887
|
+
"registryDependencies": [
|
|
1888
|
+
"@fulldev/logo",
|
|
1889
|
+
"@fulldev/marquee",
|
|
1890
|
+
"@fulldev/section"
|
|
1891
|
+
],
|
|
1892
|
+
"files": [
|
|
1893
|
+
{
|
|
1894
|
+
"path": "src/components/blocks/logos-2.astro",
|
|
1895
|
+
"type": "registry:block"
|
|
1896
|
+
}
|
|
1897
|
+
]
|
|
1898
|
+
},
|
|
1899
|
+
{
|
|
1900
|
+
"name": "logos-3",
|
|
1901
|
+
"type": "registry:block",
|
|
1902
|
+
"registryDependencies": ["@fulldev/logo", "@fulldev/section"],
|
|
1903
|
+
"files": [
|
|
1904
|
+
{
|
|
1905
|
+
"path": "src/components/blocks/logos-3.astro",
|
|
1906
|
+
"type": "registry:block"
|
|
1907
|
+
}
|
|
1908
|
+
]
|
|
1909
|
+
},
|
|
1910
|
+
{
|
|
1911
|
+
"name": "pricings-1",
|
|
1912
|
+
"type": "registry:block",
|
|
1913
|
+
"registryDependencies": [
|
|
1914
|
+
"@fulldev/button",
|
|
1915
|
+
"@fulldev/icon",
|
|
1916
|
+
"@fulldev/list",
|
|
1917
|
+
"@fulldev/price",
|
|
1918
|
+
"@fulldev/section",
|
|
1919
|
+
"@fulldev/tile"
|
|
1920
|
+
],
|
|
1921
|
+
"files": [
|
|
1922
|
+
{
|
|
1923
|
+
"path": "src/components/blocks/pricings-1.astro",
|
|
1924
|
+
"type": "registry:block"
|
|
1925
|
+
}
|
|
1926
|
+
]
|
|
1927
|
+
},
|
|
1928
|
+
{
|
|
1929
|
+
"name": "pricings-2",
|
|
1930
|
+
"type": "registry:block",
|
|
1931
|
+
"registryDependencies": [
|
|
1932
|
+
"@fulldev/button",
|
|
1933
|
+
"@fulldev/icon",
|
|
1934
|
+
"@fulldev/list",
|
|
1935
|
+
"@fulldev/price",
|
|
1936
|
+
"@fulldev/section",
|
|
1937
|
+
"@fulldev/tile"
|
|
1938
|
+
],
|
|
1939
|
+
"files": [
|
|
1940
|
+
{
|
|
1941
|
+
"path": "src/components/blocks/pricings-2.astro",
|
|
1942
|
+
"type": "registry:block"
|
|
1943
|
+
}
|
|
1944
|
+
]
|
|
1945
|
+
},
|
|
1946
|
+
{
|
|
1947
|
+
"name": "pricings-3",
|
|
1948
|
+
"type": "registry:block",
|
|
1949
|
+
"registryDependencies": [
|
|
1950
|
+
"@fulldev/button",
|
|
1951
|
+
"@fulldev/icon",
|
|
1952
|
+
"@fulldev/list",
|
|
1953
|
+
"@fulldev/price",
|
|
1954
|
+
"@fulldev/section",
|
|
1955
|
+
"@fulldev/tile"
|
|
1956
|
+
],
|
|
1957
|
+
"files": [
|
|
1958
|
+
{
|
|
1959
|
+
"path": "src/components/blocks/pricings-3.astro",
|
|
1960
|
+
"type": "registry:block"
|
|
1961
|
+
}
|
|
1962
|
+
]
|
|
1963
|
+
},
|
|
1964
|
+
{
|
|
1965
|
+
"name": "product-1",
|
|
1966
|
+
"type": "registry:block",
|
|
1967
|
+
"registryDependencies": [
|
|
1968
|
+
"@fulldev/button",
|
|
1969
|
+
"@fulldev/icon",
|
|
1970
|
+
"@fulldev/image",
|
|
1971
|
+
"@fulldev/list",
|
|
1972
|
+
"@fulldev/native-carousel",
|
|
1973
|
+
"@fulldev/section"
|
|
1974
|
+
],
|
|
1975
|
+
"files": [
|
|
1976
|
+
{
|
|
1977
|
+
"path": "src/components/blocks/product-1.astro",
|
|
1978
|
+
"type": "registry:block"
|
|
1979
|
+
}
|
|
1980
|
+
]
|
|
1981
|
+
},
|
|
1982
|
+
{
|
|
1983
|
+
"name": "products-1",
|
|
1984
|
+
"type": "registry:block",
|
|
1985
|
+
"registryDependencies": [
|
|
1986
|
+
"@fulldev/button",
|
|
1987
|
+
"@fulldev/icon",
|
|
1988
|
+
"@fulldev/image",
|
|
1989
|
+
"@fulldev/price",
|
|
1990
|
+
"@fulldev/section",
|
|
1991
|
+
"@fulldev/tile"
|
|
1992
|
+
],
|
|
1993
|
+
"files": [
|
|
1994
|
+
{
|
|
1995
|
+
"path": "src/components/blocks/products-1.astro",
|
|
1996
|
+
"type": "registry:block"
|
|
1997
|
+
}
|
|
1998
|
+
]
|
|
1999
|
+
},
|
|
2000
|
+
{
|
|
2001
|
+
"name": "products-2",
|
|
2002
|
+
"type": "registry:block",
|
|
2003
|
+
"registryDependencies": [
|
|
2004
|
+
"@fulldev/button",
|
|
2005
|
+
"@fulldev/icon",
|
|
2006
|
+
"@fulldev/price",
|
|
2007
|
+
"@fulldev/section",
|
|
2008
|
+
"@fulldev/tile"
|
|
2009
|
+
],
|
|
2010
|
+
"files": [
|
|
2011
|
+
{
|
|
2012
|
+
"path": "src/components/blocks/products-2.astro",
|
|
2013
|
+
"type": "registry:block"
|
|
2014
|
+
}
|
|
2015
|
+
]
|
|
2016
|
+
},
|
|
2017
|
+
{
|
|
2018
|
+
"name": "products-3",
|
|
2019
|
+
"type": "registry:block",
|
|
2020
|
+
"registryDependencies": [
|
|
2021
|
+
"@fulldev/button",
|
|
2022
|
+
"@fulldev/icon",
|
|
2023
|
+
"@fulldev/section",
|
|
2024
|
+
"@fulldev/tile"
|
|
2025
|
+
],
|
|
2026
|
+
"files": [
|
|
2027
|
+
{
|
|
2028
|
+
"path": "src/components/blocks/products-3.astro",
|
|
2029
|
+
"type": "registry:block"
|
|
2030
|
+
}
|
|
2031
|
+
]
|
|
2032
|
+
},
|
|
2033
|
+
{
|
|
2034
|
+
"name": "products-4",
|
|
2035
|
+
"type": "registry:block",
|
|
2036
|
+
"registryDependencies": [
|
|
2037
|
+
"@fulldev/button",
|
|
2038
|
+
"@fulldev/icon",
|
|
2039
|
+
"@fulldev/section",
|
|
2040
|
+
"@fulldev/tile"
|
|
2041
|
+
],
|
|
2042
|
+
"files": [
|
|
2043
|
+
{
|
|
2044
|
+
"path": "src/components/blocks/products-4.astro",
|
|
2045
|
+
"type": "registry:block"
|
|
2046
|
+
}
|
|
2047
|
+
]
|
|
2048
|
+
},
|
|
2049
|
+
{
|
|
2050
|
+
"name": "products-5",
|
|
2051
|
+
"type": "registry:block",
|
|
2052
|
+
"registryDependencies": [
|
|
2053
|
+
"@fulldev/button",
|
|
2054
|
+
"@fulldev/icon",
|
|
2055
|
+
"@fulldev/image",
|
|
2056
|
+
"@fulldev/price",
|
|
2057
|
+
"@fulldev/section",
|
|
2058
|
+
"@fulldev/tile"
|
|
2059
|
+
],
|
|
2060
|
+
"files": [
|
|
2061
|
+
{
|
|
2062
|
+
"path": "src/components/blocks/products-5.astro",
|
|
2063
|
+
"type": "registry:block"
|
|
2064
|
+
}
|
|
2065
|
+
]
|
|
2066
|
+
},
|
|
2067
|
+
{
|
|
2068
|
+
"name": "reviews-1",
|
|
2069
|
+
"type": "registry:block",
|
|
2070
|
+
"registryDependencies": [
|
|
2071
|
+
"@fulldev/avatar",
|
|
2072
|
+
"@fulldev/button",
|
|
2073
|
+
"@fulldev/icon",
|
|
2074
|
+
"@fulldev/item",
|
|
2075
|
+
"@fulldev/rating",
|
|
2076
|
+
"@fulldev/section",
|
|
2077
|
+
"@fulldev/tile"
|
|
2078
|
+
],
|
|
2079
|
+
"files": [
|
|
2080
|
+
{
|
|
2081
|
+
"path": "src/components/blocks/reviews-1.astro",
|
|
2082
|
+
"type": "registry:block"
|
|
2083
|
+
}
|
|
2084
|
+
]
|
|
2085
|
+
},
|
|
2086
|
+
{
|
|
2087
|
+
"name": "reviews-2",
|
|
2088
|
+
"type": "registry:block",
|
|
2089
|
+
"registryDependencies": [
|
|
2090
|
+
"@fulldev/avatar",
|
|
2091
|
+
"@fulldev/button",
|
|
2092
|
+
"@fulldev/icon",
|
|
2093
|
+
"@fulldev/item",
|
|
2094
|
+
"@fulldev/rating",
|
|
2095
|
+
"@fulldev/section",
|
|
2096
|
+
"@fulldev/tile"
|
|
2097
|
+
],
|
|
2098
|
+
"files": [
|
|
2099
|
+
{
|
|
2100
|
+
"path": "src/components/blocks/reviews-2.astro",
|
|
2101
|
+
"type": "registry:block"
|
|
2102
|
+
}
|
|
2103
|
+
]
|
|
2104
|
+
},
|
|
2105
|
+
{
|
|
2106
|
+
"name": "reviews-3",
|
|
2107
|
+
"type": "registry:block",
|
|
2108
|
+
"registryDependencies": [
|
|
2109
|
+
"@fulldev/button",
|
|
2110
|
+
"@fulldev/icon",
|
|
2111
|
+
"@fulldev/item",
|
|
2112
|
+
"@fulldev/native-carousel",
|
|
2113
|
+
"@fulldev/rating",
|
|
2114
|
+
"@fulldev/section",
|
|
2115
|
+
"@fulldev/tile"
|
|
2116
|
+
],
|
|
2117
|
+
"files": [
|
|
2118
|
+
{
|
|
2119
|
+
"path": "src/components/blocks/reviews-3.astro",
|
|
2120
|
+
"type": "registry:block"
|
|
2121
|
+
}
|
|
2122
|
+
]
|
|
2123
|
+
},
|
|
2124
|
+
{
|
|
2125
|
+
"name": "reviews-4",
|
|
2126
|
+
"type": "registry:block",
|
|
2127
|
+
"registryDependencies": [
|
|
2128
|
+
"@fulldev/avatar",
|
|
2129
|
+
"@fulldev/button",
|
|
2130
|
+
"@fulldev/icon",
|
|
2131
|
+
"@fulldev/item",
|
|
2132
|
+
"@fulldev/marquee",
|
|
2133
|
+
"@fulldev/rating",
|
|
2134
|
+
"@fulldev/section",
|
|
2135
|
+
"@fulldev/tile"
|
|
2136
|
+
],
|
|
2137
|
+
"files": [
|
|
2138
|
+
{
|
|
2139
|
+
"path": "src/components/blocks/reviews-4.astro",
|
|
2140
|
+
"type": "registry:block"
|
|
2141
|
+
}
|
|
2142
|
+
]
|
|
2143
|
+
},
|
|
2144
|
+
{
|
|
2145
|
+
"name": "reviews-5",
|
|
2146
|
+
"type": "registry:block",
|
|
2147
|
+
"registryDependencies": [
|
|
2148
|
+
"@fulldev/avatar",
|
|
2149
|
+
"@fulldev/button",
|
|
2150
|
+
"@fulldev/icon",
|
|
2151
|
+
"@fulldev/item",
|
|
2152
|
+
"@fulldev/marquee",
|
|
2153
|
+
"@fulldev/rating",
|
|
2154
|
+
"@fulldev/section",
|
|
2155
|
+
"@fulldev/tile"
|
|
2156
|
+
],
|
|
2157
|
+
"files": [
|
|
2158
|
+
{
|
|
2159
|
+
"path": "src/components/blocks/reviews-5.astro",
|
|
2160
|
+
"type": "registry:block"
|
|
2161
|
+
}
|
|
2162
|
+
]
|
|
2163
|
+
},
|
|
2164
|
+
{
|
|
2165
|
+
"name": "services-1",
|
|
2166
|
+
"type": "registry:block",
|
|
2167
|
+
"registryDependencies": [
|
|
2168
|
+
"@fulldev/button",
|
|
2169
|
+
"@fulldev/icon",
|
|
2170
|
+
"@fulldev/image",
|
|
2171
|
+
"@fulldev/section",
|
|
2172
|
+
"@fulldev/tile"
|
|
2173
|
+
],
|
|
2174
|
+
"files": [
|
|
2175
|
+
{
|
|
2176
|
+
"path": "src/components/blocks/services-1.astro",
|
|
2177
|
+
"type": "registry:block"
|
|
2178
|
+
}
|
|
2179
|
+
]
|
|
2180
|
+
},
|
|
2181
|
+
{
|
|
2182
|
+
"name": "services-2",
|
|
2183
|
+
"type": "registry:block",
|
|
2184
|
+
"registryDependencies": [
|
|
2185
|
+
"@fulldev/button",
|
|
2186
|
+
"@fulldev/icon",
|
|
2187
|
+
"@fulldev/image",
|
|
2188
|
+
"@fulldev/section",
|
|
2189
|
+
"@fulldev/tile"
|
|
2190
|
+
],
|
|
2191
|
+
"files": [
|
|
2192
|
+
{
|
|
2193
|
+
"path": "src/components/blocks/services-2.astro",
|
|
2194
|
+
"type": "registry:block"
|
|
2195
|
+
}
|
|
2196
|
+
]
|
|
2197
|
+
},
|
|
2198
|
+
{
|
|
2199
|
+
"name": "services-3",
|
|
2200
|
+
"type": "registry:block",
|
|
2201
|
+
"registryDependencies": [
|
|
2202
|
+
"@fulldev/button",
|
|
2203
|
+
"@fulldev/image",
|
|
2204
|
+
"@fulldev/section",
|
|
2205
|
+
"@fulldev/tile"
|
|
2206
|
+
],
|
|
2207
|
+
"files": [
|
|
2208
|
+
{
|
|
2209
|
+
"path": "src/components/blocks/services-3.astro",
|
|
2210
|
+
"type": "registry:block"
|
|
2211
|
+
}
|
|
2212
|
+
]
|
|
2213
|
+
},
|
|
2214
|
+
{
|
|
2215
|
+
"name": "services-4",
|
|
2216
|
+
"type": "registry:block",
|
|
2217
|
+
"registryDependencies": [
|
|
2218
|
+
"@fulldev/button",
|
|
2219
|
+
"@fulldev/icon",
|
|
2220
|
+
"@fulldev/image",
|
|
2221
|
+
"@fulldev/section",
|
|
2222
|
+
"@fulldev/tile"
|
|
2223
|
+
],
|
|
2224
|
+
"files": [
|
|
2225
|
+
{
|
|
2226
|
+
"path": "src/components/blocks/services-4.astro",
|
|
2227
|
+
"type": "registry:block"
|
|
2228
|
+
}
|
|
2229
|
+
]
|
|
2230
|
+
},
|
|
2231
|
+
{
|
|
2232
|
+
"name": "services-5",
|
|
2233
|
+
"type": "registry:block",
|
|
2234
|
+
"registryDependencies": [
|
|
2235
|
+
"@fulldev/button",
|
|
2236
|
+
"@fulldev/icon",
|
|
2237
|
+
"@fulldev/image",
|
|
2238
|
+
"@fulldev/section",
|
|
2239
|
+
"@fulldev/tile"
|
|
2240
|
+
],
|
|
2241
|
+
"files": [
|
|
2242
|
+
{
|
|
2243
|
+
"path": "src/components/blocks/services-5.astro",
|
|
2244
|
+
"type": "registry:block"
|
|
2245
|
+
}
|
|
2246
|
+
]
|
|
2247
|
+
},
|
|
2248
|
+
{
|
|
2249
|
+
"name": "services-6",
|
|
2250
|
+
"type": "registry:block",
|
|
2251
|
+
"registryDependencies": [
|
|
2252
|
+
"@fulldev/button",
|
|
2253
|
+
"@fulldev/icon",
|
|
2254
|
+
"@fulldev/section",
|
|
2255
|
+
"@fulldev/tile"
|
|
2256
|
+
],
|
|
2257
|
+
"files": [
|
|
2258
|
+
{
|
|
2259
|
+
"path": "src/components/blocks/services-6.astro",
|
|
2260
|
+
"type": "registry:block"
|
|
2261
|
+
}
|
|
2262
|
+
]
|
|
2263
|
+
},
|
|
2264
|
+
{
|
|
2265
|
+
"name": "services-7",
|
|
2266
|
+
"type": "registry:block",
|
|
2267
|
+
"registryDependencies": [
|
|
2268
|
+
"@fulldev/button",
|
|
2269
|
+
"@fulldev/icon",
|
|
2270
|
+
"@fulldev/image",
|
|
2271
|
+
"@fulldev/section",
|
|
2272
|
+
"@fulldev/tile"
|
|
2273
|
+
],
|
|
2274
|
+
"files": [
|
|
2275
|
+
{
|
|
2276
|
+
"path": "src/components/blocks/services-7.astro",
|
|
2277
|
+
"type": "registry:block"
|
|
2278
|
+
}
|
|
2279
|
+
]
|
|
2280
|
+
},
|
|
2281
|
+
{
|
|
2282
|
+
"name": "components",
|
|
2283
|
+
"type": "registry:item",
|
|
2284
|
+
"registryDependencies": [
|
|
2285
|
+
"@fulldev/accordion",
|
|
2286
|
+
"@fulldev/alert",
|
|
2287
|
+
"@fulldev/auto-form",
|
|
2288
|
+
"@fulldev/avatar",
|
|
2289
|
+
"@fulldev/badge",
|
|
2290
|
+
"@fulldev/banner",
|
|
2291
|
+
"@fulldev/button",
|
|
2292
|
+
"@fulldev/checkbox",
|
|
2293
|
+
"@fulldev/collapsible",
|
|
2294
|
+
"@fulldev/empty",
|
|
2295
|
+
"@fulldev/field",
|
|
2296
|
+
"@fulldev/footer",
|
|
2297
|
+
"@fulldev/header",
|
|
2298
|
+
"@fulldev/icon",
|
|
2299
|
+
"@fulldev/image",
|
|
2300
|
+
"@fulldev/input",
|
|
2301
|
+
"@fulldev/item",
|
|
2302
|
+
"@fulldev/label",
|
|
2303
|
+
"@fulldev/list",
|
|
2304
|
+
"@fulldev/logo",
|
|
2305
|
+
"@fulldev/marquee",
|
|
2306
|
+
"@fulldev/native-carousel",
|
|
2307
|
+
"@fulldev/native-select",
|
|
2308
|
+
"@fulldev/navigation-menu",
|
|
2309
|
+
"@fulldev/price",
|
|
2310
|
+
"@fulldev/radio-group",
|
|
2311
|
+
"@fulldev/rating",
|
|
2312
|
+
"@fulldev/section",
|
|
2313
|
+
"@fulldev/separator",
|
|
2314
|
+
"@fulldev/sheet",
|
|
2315
|
+
"@fulldev/sidebar",
|
|
2316
|
+
"@fulldev/skeleton",
|
|
2317
|
+
"@fulldev/spinner",
|
|
2318
|
+
"@fulldev/table",
|
|
2319
|
+
"@fulldev/tabs",
|
|
2320
|
+
"@fulldev/textarea",
|
|
2321
|
+
"@fulldev/theme-toggle",
|
|
2322
|
+
"@fulldev/tile",
|
|
2323
|
+
"@fulldev/video"
|
|
2324
|
+
]
|
|
2325
|
+
},
|
|
2326
|
+
{
|
|
2327
|
+
"name": "blocks",
|
|
2328
|
+
"type": "registry:component",
|
|
2329
|
+
"files": [
|
|
2330
|
+
{
|
|
2331
|
+
"path": "src/components/block.astro",
|
|
2332
|
+
"type": "registry:component"
|
|
2333
|
+
}
|
|
2334
|
+
],
|
|
2335
|
+
"registryDependencies": [
|
|
2336
|
+
"@fulldev/article-1",
|
|
2337
|
+
"@fulldev/article-2",
|
|
2338
|
+
"@fulldev/articles-1",
|
|
2339
|
+
"@fulldev/articles-2",
|
|
2340
|
+
"@fulldev/articles-3",
|
|
2341
|
+
"@fulldev/articles-4",
|
|
2342
|
+
"@fulldev/banner-1",
|
|
2343
|
+
"@fulldev/banner-2",
|
|
2344
|
+
"@fulldev/contact-1",
|
|
2345
|
+
"@fulldev/contact-2",
|
|
2346
|
+
"@fulldev/contact-3",
|
|
2347
|
+
"@fulldev/content-1",
|
|
2348
|
+
"@fulldev/content-2",
|
|
2349
|
+
"@fulldev/content-3",
|
|
2350
|
+
"@fulldev/content-4",
|
|
2351
|
+
"@fulldev/cta-1",
|
|
2352
|
+
"@fulldev/cta-2",
|
|
2353
|
+
"@fulldev/cta-3",
|
|
2354
|
+
"@fulldev/cta-4",
|
|
2355
|
+
"@fulldev/cta-5",
|
|
2356
|
+
"@fulldev/cta-6",
|
|
2357
|
+
"@fulldev/cta-7",
|
|
2358
|
+
"@fulldev/cta-8",
|
|
2359
|
+
"@fulldev/faqs-1",
|
|
2360
|
+
"@fulldev/faqs-2",
|
|
2361
|
+
"@fulldev/faqs-3",
|
|
2362
|
+
"@fulldev/faqs-4",
|
|
2363
|
+
"@fulldev/features-1",
|
|
2364
|
+
"@fulldev/features-2",
|
|
2365
|
+
"@fulldev/features-3",
|
|
2366
|
+
"@fulldev/features-4",
|
|
2367
|
+
"@fulldev/features-5",
|
|
2368
|
+
"@fulldev/features-6",
|
|
2369
|
+
"@fulldev/footer-1",
|
|
2370
|
+
"@fulldev/footer-2",
|
|
2371
|
+
"@fulldev/header-1",
|
|
2372
|
+
"@fulldev/header-2",
|
|
2373
|
+
"@fulldev/header-3",
|
|
2374
|
+
"@fulldev/hero-1",
|
|
2375
|
+
"@fulldev/hero-2",
|
|
2376
|
+
"@fulldev/hero-3",
|
|
2377
|
+
"@fulldev/hero-4",
|
|
2378
|
+
"@fulldev/hero-5",
|
|
2379
|
+
"@fulldev/hero-6",
|
|
2380
|
+
"@fulldev/hero-7",
|
|
2381
|
+
"@fulldev/hero-8",
|
|
2382
|
+
"@fulldev/hero-9",
|
|
2383
|
+
"@fulldev/hero-10",
|
|
2384
|
+
"@fulldev/hero-11",
|
|
2385
|
+
"@fulldev/hero-12",
|
|
2386
|
+
"@fulldev/hero-13",
|
|
2387
|
+
"@fulldev/logos-1",
|
|
2388
|
+
"@fulldev/logos-2",
|
|
2389
|
+
"@fulldev/logos-3",
|
|
2390
|
+
"@fulldev/pricings-1",
|
|
2391
|
+
"@fulldev/pricings-2",
|
|
2392
|
+
"@fulldev/pricings-3",
|
|
2393
|
+
"@fulldev/product-1",
|
|
2394
|
+
"@fulldev/products-1",
|
|
2395
|
+
"@fulldev/products-2",
|
|
2396
|
+
"@fulldev/products-3",
|
|
2397
|
+
"@fulldev/products-4",
|
|
2398
|
+
"@fulldev/products-5",
|
|
2399
|
+
"@fulldev/reviews-1",
|
|
2400
|
+
"@fulldev/reviews-2",
|
|
2401
|
+
"@fulldev/reviews-3",
|
|
2402
|
+
"@fulldev/reviews-4",
|
|
2403
|
+
"@fulldev/reviews-5",
|
|
2404
|
+
"@fulldev/services-1",
|
|
2405
|
+
"@fulldev/services-2",
|
|
2406
|
+
"@fulldev/services-3",
|
|
2407
|
+
"@fulldev/services-4",
|
|
2408
|
+
"@fulldev/services-5",
|
|
2409
|
+
"@fulldev/services-6",
|
|
2410
|
+
"@fulldev/services-7",
|
|
2411
|
+
"@fulldev/content-5",
|
|
2412
|
+
"@fulldev/content-6"
|
|
2413
|
+
]
|
|
2414
|
+
},
|
|
2415
|
+
{
|
|
2416
|
+
"name": "layout",
|
|
2417
|
+
"type": "registry:component",
|
|
2418
|
+
"files": [
|
|
2419
|
+
{
|
|
2420
|
+
"path": "src/components/layout.astro",
|
|
2421
|
+
"type": "registry:component"
|
|
2422
|
+
}
|
|
2423
|
+
],
|
|
2424
|
+
"registryDependencies": ["@fulldev/block"]
|
|
2425
|
+
},
|
|
2426
|
+
{
|
|
2427
|
+
"name": "page",
|
|
2428
|
+
"type": "registry:file",
|
|
2429
|
+
"files": [
|
|
2430
|
+
{
|
|
2431
|
+
"path": "src/pages/[...page].astro",
|
|
2432
|
+
"type": "registry:file",
|
|
2433
|
+
"target": "src/pages/[...page].astro"
|
|
2434
|
+
}
|
|
2435
|
+
],
|
|
2436
|
+
"registryDependencies": [
|
|
2437
|
+
"@fulldev/layout",
|
|
2438
|
+
"@fulldev/blocks",
|
|
2439
|
+
"@fulldev/components"
|
|
2440
|
+
]
|
|
2441
|
+
}
|
|
2442
|
+
]
|
|
2443
|
+
}
|