dune-react 0.0.8 → 0.0.10
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/dist/components/puck-base/article-card.js +1 -1
- package/dist/components/puck-base/button.js +2 -1
- package/dist/components/puck-base/container.d.ts +7 -1
- package/dist/components/puck-base/container.js +2 -1
- package/dist/components/puck-base/content.d.ts +1 -4
- package/dist/components/puck-base/content.js +15 -17
- package/dist/components/puck-base/core/fields.d.ts +1 -127
- package/dist/components/puck-base/core/fields.js +1 -76
- package/dist/components/puck-base/core/styles.d.ts +1877 -0
- package/dist/components/puck-base/core/styles.js +286 -0
- package/dist/components/puck-base/core/types.d.ts +2 -2
- package/dist/components/puck-base/core/with-editable.d.ts +4 -1
- package/dist/components/puck-base/core/with-editable.js +51 -27
- package/dist/components/puck-base/editor-context.d.ts +8 -0
- package/dist/components/puck-base/fields/auto-field.d.ts +1 -0
- package/dist/components/puck-base/fields/auto-field.js +131 -49
- package/dist/components/puck-base/gradient-text.js +12 -3
- package/dist/components/puck-block/banner-sections/announcement-banner-1/announcement-banner.d.ts +9 -7
- package/dist/components/puck-block/banner-sections/announcement-banner-1/announcement-banner.js +11 -8
- package/dist/components/puck-block/banner-sections/announcement-banner-1/index.js +19 -37
- package/dist/components/puck-block/banner-sections/marquee-1/index.js +26 -24
- package/dist/components/puck-block/banner-sections/marquee-1/marquee.d.ts +9 -9
- package/dist/components/puck-block/banner-sections/marquee-1/marquee.js +28 -21
- package/dist/components/puck-block/banner-sections/props.d.ts +22 -0
- package/dist/components/puck-block/contact-sections/api/form-leads.d.ts +16 -0
- package/dist/components/puck-block/contact-sections/api/form-leads.js +25 -0
- package/dist/components/puck-block/contact-sections/contact-us-1/contact-us.d.ts +13 -4
- package/dist/components/puck-block/contact-sections/contact-us-1/contact-us.js +122 -121
- package/dist/components/puck-block/contact-sections/contact-us-1/index.js +87 -7
- package/dist/components/puck-block/contact-sections/contact-us-2/contact-us-2.d.ts +30 -0
- package/dist/components/puck-block/contact-sections/contact-us-2/contact-us-2.js +234 -0
- package/dist/components/puck-block/contact-sections/contact-us-2/index.d.ts +5 -0
- package/dist/components/puck-block/contact-sections/contact-us-2/index.js +74 -0
- package/dist/components/puck-block/contact-sections/contact-us-3/contact-us-3.d.ts +32 -0
- package/dist/components/puck-block/contact-sections/contact-us-3/contact-us-3.js +250 -0
- package/dist/components/puck-block/contact-sections/contact-us-3/index.d.ts +5 -0
- package/dist/components/puck-block/contact-sections/contact-us-3/index.js +114 -0
- package/dist/components/puck-block/contact-sections/props.d.ts +65 -0
- package/dist/components/puck-block/cta-sections/banner-cta-1/banner-cta.d.ts +12 -9
- package/dist/components/puck-block/cta-sections/banner-cta-1/banner-cta.js +28 -30
- package/dist/components/puck-block/cta-sections/banner-cta-1/index.js +23 -25
- package/dist/components/puck-block/cta-sections/cta-1/cta.d.ts +6 -4
- package/dist/components/puck-block/cta-sections/cta-1/cta.js +5 -7
- package/dist/components/puck-block/cta-sections/cta-1/index.js +5 -9
- package/dist/components/puck-block/cta-sections/gradient-cta-1/gradient-cta.d.ts +10 -10
- package/dist/components/puck-block/cta-sections/gradient-cta-1/gradient-cta.js +24 -20
- package/dist/components/puck-block/cta-sections/gradient-cta-1/index.js +36 -29
- package/dist/components/puck-block/cta-sections/newsletter-signup-1/index.js +13 -5
- package/dist/components/puck-block/cta-sections/newsletter-signup-1/newsletter-signup.d.ts +7 -3
- package/dist/components/puck-block/cta-sections/newsletter-signup-1/newsletter-signup.js +36 -32
- package/dist/components/puck-block/cta-sections/promo-section-1/index.js +4 -5
- package/dist/components/puck-block/cta-sections/promo-section-1/promo-section.d.ts +6 -4
- package/dist/components/puck-block/cta-sections/promo-section-1/promo-section.js +94 -79
- package/dist/components/puck-block/cta-sections/props.d.ts +47 -0
- package/dist/components/puck-block/faq-sections/accordion-1/accordion.d.ts +6 -4
- package/dist/components/puck-block/faq-sections/accordion-1/accordion.js +39 -33
- package/dist/components/puck-block/faq-sections/accordion-1/index.js +3 -5
- package/dist/components/puck-block/faq-sections/faq-1/faq.d.ts +9 -7
- package/dist/components/puck-block/faq-sections/faq-1/faq.js +50 -44
- package/dist/components/puck-block/faq-sections/faq-1/index.js +12 -14
- package/dist/components/puck-block/faq-sections/faq-2/faq-2.d.ts +18 -0
- package/dist/components/puck-block/faq-sections/faq-2/faq-2.js +54 -0
- package/dist/components/puck-block/faq-sections/faq-2/index.d.ts +5 -0
- package/dist/components/puck-block/faq-sections/faq-2/index.js +61 -0
- package/dist/components/puck-block/faq-sections/props.d.ts +30 -0
- package/dist/components/puck-block/feature-sections/bento-1/bento.d.ts +6 -4
- package/dist/components/puck-block/feature-sections/bento-1/bento.js +2 -4
- package/dist/components/puck-block/feature-sections/bento-1/index.js +4 -5
- package/dist/components/puck-block/feature-sections/feature-cards-1/feature-cards.d.ts +8 -7
- package/dist/components/puck-block/feature-sections/feature-cards-1/feature-cards.js +15 -7
- package/dist/components/puck-block/feature-sections/feature-cards-1/index.js +37 -18
- package/dist/components/puck-block/feature-sections/feature-showcase-1/feature-showcase.d.ts +6 -4
- package/dist/components/puck-block/feature-sections/feature-showcase-1/feature-showcase.js +4 -12
- package/dist/components/puck-block/feature-sections/feature-showcase-1/index.js +4 -5
- package/dist/components/puck-block/feature-sections/icon-grid-1/icon-grid.d.ts +6 -4
- package/dist/components/puck-block/feature-sections/icon-grid-1/icon-grid.js +59 -53
- package/dist/components/puck-block/feature-sections/icon-grid-1/index.js +7 -8
- package/dist/components/puck-block/feature-sections/product-features-1/index.js +4 -5
- package/dist/components/puck-block/feature-sections/product-features-1/product-features.d.ts +6 -4
- package/dist/components/puck-block/feature-sections/product-features-1/product-features.js +7 -29
- package/dist/components/puck-block/feature-sections/props.d.ts +48 -0
- package/dist/components/puck-block/footer-sections/footer-1/footer.d.ts +5 -3
- package/dist/components/puck-block/footer-sections/footer-1/footer.js +6 -6
- package/dist/components/puck-block/footer-sections/footer-1/index.js +3 -5
- package/dist/components/puck-block/footer-sections/props.d.ts +31 -0
- package/dist/components/puck-block/gallery-sections/gallery-1/gallery.d.ts +9 -7
- package/dist/components/puck-block/gallery-sections/gallery-1/gallery.js +49 -40
- package/dist/components/puck-block/gallery-sections/gallery-1/index.js +32 -34
- package/dist/components/puck-block/gallery-sections/gallery-2/gallery-2.d.ts +16 -0
- package/dist/components/puck-block/gallery-sections/gallery-2/gallery-2.js +86 -0
- package/dist/components/puck-block/gallery-sections/gallery-2/index.d.ts +5 -0
- package/dist/components/puck-block/gallery-sections/gallery-2/index.js +42 -0
- package/dist/components/puck-block/gallery-sections/gallery-3/gallery-3.d.ts +19 -0
- package/dist/components/puck-block/gallery-sections/gallery-3/gallery-3.js +119 -0
- package/dist/components/puck-block/gallery-sections/gallery-3/index.d.ts +5 -0
- package/dist/components/puck-block/gallery-sections/gallery-3/index.js +59 -0
- package/dist/components/puck-block/gallery-sections/props.d.ts +26 -0
- package/dist/components/puck-block/header-sections/header-1/header.d.ts +7 -5
- package/dist/components/puck-block/header-sections/header-1/header.js +8 -9
- package/dist/components/puck-block/header-sections/header-1/index.d.ts +1 -1
- package/dist/components/puck-block/header-sections/header-1/index.js +13 -12
- package/dist/components/puck-block/header-sections/props.d.ts +41 -0
- package/dist/components/puck-block/header-sections/sticky-nav-1/index.js +12 -12
- package/dist/components/puck-block/header-sections/sticky-nav-1/sticky-nav.d.ts +8 -6
- package/dist/components/puck-block/header-sections/sticky-nav-1/sticky-nav.js +5 -5
- package/dist/components/puck-block/hero-sections/fullscreen-hero-1/fullscreen-hero.d.ts +11 -4
- package/dist/components/puck-block/hero-sections/fullscreen-hero-1/fullscreen-hero.js +60 -23
- package/dist/components/puck-block/hero-sections/fullscreen-hero-1/index.js +18 -6
- package/dist/components/puck-block/hero-sections/gradient-hero-1/gradient-hero.d.ts +9 -5
- package/dist/components/puck-block/hero-sections/gradient-hero-1/gradient-hero.js +37 -24
- package/dist/components/puck-block/hero-sections/gradient-hero-1/index.js +18 -15
- package/dist/components/puck-block/hero-sections/grid-hero-1/grid-hero.d.ts +7 -6
- package/dist/components/puck-block/hero-sections/grid-hero-1/grid-hero.js +7 -10
- package/dist/components/puck-block/hero-sections/grid-hero-1/index.js +43 -11
- package/dist/components/puck-block/hero-sections/hero-1/hero.d.ts +6 -4
- package/dist/components/puck-block/hero-sections/hero-1/hero.js +5 -7
- package/dist/components/puck-block/hero-sections/hero-1/index.js +4 -4
- package/dist/components/puck-block/hero-sections/image-hero-1/image-hero.d.ts +14 -8
- package/dist/components/puck-block/hero-sections/image-hero-1/image-hero.js +64 -60
- package/dist/components/puck-block/hero-sections/image-hero-1/index.js +16 -34
- package/dist/components/puck-block/hero-sections/props.d.ts +71 -0
- package/dist/components/puck-block/hero-sections/split-hero-1/index.js +6 -5
- package/dist/components/puck-block/hero-sections/split-hero-1/split-hero.d.ts +8 -8
- package/dist/components/puck-block/hero-sections/split-hero-1/split-hero.js +48 -47
- package/dist/components/puck-block/hero-sections/video-hero-1/index.js +4 -3
- package/dist/components/puck-block/hero-sections/video-hero-1/video-hero.d.ts +6 -2
- package/dist/components/puck-block/hero-sections/video-hero-1/video-hero.js +30 -22
- package/dist/components/puck-block/index.d.ts +15 -0
- package/dist/components/puck-block/location-sections/location-1/index.d.ts +5 -0
- package/dist/components/puck-block/location-sections/location-1/index.js +108 -0
- package/dist/components/puck-block/location-sections/location-1/location.d.ts +28 -0
- package/dist/components/puck-block/location-sections/location-1/location.js +137 -0
- package/dist/components/puck-block/location-sections/location-2/index.d.ts +5 -0
- package/dist/components/puck-block/location-sections/location-2/index.js +123 -0
- package/dist/components/puck-block/location-sections/location-2/location.d.ts +30 -0
- package/dist/components/puck-block/location-sections/location-2/location.js +131 -0
- package/dist/components/puck-block/location-sections/location-3/index.d.ts +5 -0
- package/dist/components/puck-block/location-sections/location-3/index.js +84 -0
- package/dist/components/puck-block/location-sections/location-3/location.d.ts +24 -0
- package/dist/components/puck-block/location-sections/location-3/location.js +127 -0
- package/dist/components/puck-block/location-sections/props.d.ts +45 -0
- package/dist/components/puck-block/metrics-sections/props.d.ts +43 -0
- package/dist/components/puck-block/metrics-sections/stats-1/index.js +6 -7
- package/dist/components/puck-block/metrics-sections/stats-1/stats.d.ts +7 -5
- package/dist/components/puck-block/metrics-sections/stats-1/stats.js +61 -55
- package/dist/components/puck-block/metrics-sections/stats-2/index.d.ts +5 -0
- package/dist/components/puck-block/metrics-sections/stats-2/index.js +76 -0
- package/dist/components/puck-block/metrics-sections/stats-2/stats-2.d.ts +18 -0
- package/dist/components/puck-block/metrics-sections/stats-2/stats-2.js +57 -0
- package/dist/components/puck-block/metrics-sections/stats-3/index.d.ts +5 -0
- package/dist/components/puck-block/metrics-sections/stats-3/index.js +86 -0
- package/dist/components/puck-block/metrics-sections/stats-3/stats-3.d.ts +18 -0
- package/dist/components/puck-block/metrics-sections/stats-3/stats-3.js +56 -0
- package/dist/components/puck-block/pricing-sections/comparison-1/comparison.d.ts +7 -5
- package/dist/components/puck-block/pricing-sections/comparison-1/comparison.js +45 -39
- package/dist/components/puck-block/pricing-sections/comparison-1/index.js +5 -7
- package/dist/components/puck-block/pricing-sections/pricing-1/index.js +10 -11
- package/dist/components/puck-block/pricing-sections/pricing-1/pricing.d.ts +8 -6
- package/dist/components/puck-block/pricing-sections/pricing-1/pricing.js +47 -35
- package/dist/components/puck-block/pricing-sections/pricing-2/index.d.ts +5 -0
- package/dist/components/puck-block/pricing-sections/pricing-2/index.js +151 -0
- package/dist/components/puck-block/pricing-sections/pricing-2/pricing-2.d.ts +26 -0
- package/dist/components/puck-block/pricing-sections/pricing-2/pricing-2.js +71 -0
- package/dist/components/puck-block/pricing-sections/props.d.ts +46 -0
- package/dist/components/puck-block/showcase-sections/before-after-1/before-after.d.ts +22 -0
- package/dist/components/puck-block/showcase-sections/before-after-1/before-after.js +71 -0
- package/dist/components/puck-block/showcase-sections/before-after-1/index.d.ts +5 -0
- package/dist/components/puck-block/showcase-sections/before-after-1/index.js +73 -0
- package/dist/components/puck-block/showcase-sections/case-study-1/case-study.d.ts +6 -2
- package/dist/components/puck-block/showcase-sections/case-study-1/case-study.js +30 -28
- package/dist/components/puck-block/showcase-sections/case-study-1/index.js +4 -3
- package/dist/components/puck-block/showcase-sections/props.d.ts +48 -0
- package/dist/components/puck-block/showcase-sections/step-by-step-1/index.js +3 -5
- package/dist/components/puck-block/showcase-sections/step-by-step-1/step-by-step.d.ts +6 -4
- package/dist/components/puck-block/showcase-sections/step-by-step-1/step-by-step.js +38 -41
- package/dist/components/puck-block/team-sections/props.d.ts +39 -0
- package/dist/components/puck-block/team-sections/team-grid-1/index.js +4 -5
- package/dist/components/puck-block/team-sections/team-grid-1/team-grid.d.ts +6 -4
- package/dist/components/puck-block/team-sections/team-grid-1/team-grid.js +27 -41
- package/dist/components/puck-block/team-sections/team-grid-2/index.d.ts +5 -0
- package/dist/components/puck-block/team-sections/team-grid-2/index.js +62 -0
- package/dist/components/puck-block/team-sections/team-grid-2/team-grid-2.d.ts +23 -0
- package/dist/components/puck-block/team-sections/team-grid-2/team-grid-2.js +44 -0
- package/dist/components/puck-block/team-sections/team-profiles-1/index.d.ts +5 -0
- package/dist/components/puck-block/team-sections/team-profiles-1/index.js +53 -0
- package/dist/components/puck-block/team-sections/team-profiles-1/team-profiles.d.ts +23 -0
- package/dist/components/puck-block/team-sections/team-profiles-1/team-profiles.js +105 -0
- package/dist/components/puck-block/testimonial-sections/customers-1/customers.d.ts +9 -7
- package/dist/components/puck-block/testimonial-sections/customers-1/customers.js +8 -11
- package/dist/components/puck-block/testimonial-sections/customers-1/index.js +17 -17
- package/dist/components/puck-block/testimonial-sections/logo-marquee-1/index.js +15 -12
- package/dist/components/puck-block/testimonial-sections/logo-marquee-1/logo-marquee.d.ts +7 -3
- package/dist/components/puck-block/testimonial-sections/logo-marquee-1/logo-marquee.js +34 -24
- package/dist/components/puck-block/testimonial-sections/logo-wall-1/index.d.ts +5 -0
- package/dist/components/puck-block/testimonial-sections/logo-wall-1/index.js +51 -0
- package/dist/components/puck-block/testimonial-sections/logo-wall-1/logo-wall.d.ts +17 -0
- package/dist/components/puck-block/testimonial-sections/logo-wall-1/logo-wall.js +55 -0
- package/dist/components/puck-block/testimonial-sections/props.d.ts +34 -0
- package/dist/components/puck-block/testimonial-sections/review-section-1/index.js +16 -15
- package/dist/components/puck-block/testimonial-sections/review-section-1/review-section.d.ts +8 -6
- package/dist/components/puck-block/testimonial-sections/review-section-1/review-section.js +25 -19
- package/dist/components/puck-block/testimonial-sections/testimonials-1/index.js +17 -17
- package/dist/components/puck-block/testimonial-sections/testimonials-1/testimonials.d.ts +8 -6
- package/dist/components/puck-block/testimonial-sections/testimonials-1/testimonials.js +76 -63
- package/dist/components/puck-block/text-sections/articles-1/articles.d.ts +7 -4
- package/dist/components/puck-block/text-sections/articles-1/articles.js +42 -22
- package/dist/components/puck-block/text-sections/articles-1/index.js +31 -19
- package/dist/components/puck-block/text-sections/content-section-1/content-section.d.ts +7 -5
- package/dist/components/puck-block/text-sections/content-section-1/content-section.js +11 -12
- package/dist/components/puck-block/text-sections/content-section-1/index.js +14 -14
- package/dist/components/puck-block/text-sections/props.d.ts +58 -0
- package/dist/components/puck-block/text-sections/rich-text-1/index.js +13 -15
- package/dist/components/puck-block/text-sections/rich-text-1/rich-text.d.ts +7 -5
- package/dist/components/puck-block/text-sections/rich-text-1/rich-text.js +11 -11
- package/dist/components/puck-block/text-sections/tab-section-1/index.js +4 -5
- package/dist/components/puck-block/text-sections/tab-section-1/tab-section.d.ts +6 -4
- package/dist/components/puck-block/text-sections/tab-section-1/tab-section.js +6 -7
- package/dist/components/puck-block/text-sections/timeline-1/index.js +3 -5
- package/dist/components/puck-block/text-sections/timeline-1/timeline.d.ts +6 -4
- package/dist/components/puck-block/text-sections/timeline-1/timeline.js +3 -5
- package/dist/components/puck-block/text-sections/two-column-1/index.js +4 -6
- package/dist/components/puck-block/text-sections/two-column-1/two-column.d.ts +6 -4
- package/dist/components/puck-block/text-sections/two-column-1/two-column.js +5 -7
- package/dist/components/shadcn/navigation-menu.d.ts +1 -1
- package/dist/components/shadcn/navigation-menu.js +33 -0
- package/dist/index.js +106 -75
- package/package.json +1 -1
|
@@ -5,12 +5,14 @@ type ImageWithAspectRatio = CompoundImageProps & {
|
|
|
5
5
|
aspectRatio?: "16x9" | "1x1";
|
|
6
6
|
};
|
|
7
7
|
export interface TwoColumnProps extends CompoundContentProps {
|
|
8
|
-
padding?: CompoundContainerProps["padding"];
|
|
9
|
-
sectionStyle?: CompoundContainerProps["sectionStyle"];
|
|
10
|
-
backgroundColor?: string;
|
|
11
8
|
layout?: "text-start" | "text-end";
|
|
12
9
|
images?: ImageWithAspectRatio[];
|
|
13
10
|
border?: "true" | "false";
|
|
11
|
+
styles?: {
|
|
12
|
+
padding?: CompoundContainerProps["padding"];
|
|
13
|
+
sectionStyle?: CompoundContainerProps["sectionStyle"];
|
|
14
|
+
backgroundColor?: string;
|
|
15
|
+
};
|
|
14
16
|
}
|
|
15
|
-
export declare const TwoColumn: ({
|
|
17
|
+
export declare const TwoColumn: ({ layout, border, badge, heading, description, features, buttons, images, styles, }: TwoColumnProps) => import("react/jsx-runtime").JSX.Element;
|
|
16
18
|
export {};
|
|
@@ -6,9 +6,6 @@ import { CompoundContainer } from "../../../puck-base/container.js";
|
|
|
6
6
|
import { CompoundContent } from "../../../puck-base/content.js";
|
|
7
7
|
import { CompoundImage } from "../../../puck-base/image.js";
|
|
8
8
|
const TwoColumn = ({
|
|
9
|
-
padding,
|
|
10
|
-
sectionStyle,
|
|
11
|
-
backgroundColor,
|
|
12
9
|
layout,
|
|
13
10
|
border = "false",
|
|
14
11
|
badge,
|
|
@@ -16,16 +13,17 @@ const TwoColumn = ({
|
|
|
16
13
|
description,
|
|
17
14
|
features,
|
|
18
15
|
buttons,
|
|
19
|
-
images
|
|
16
|
+
images,
|
|
17
|
+
styles
|
|
20
18
|
}) => {
|
|
21
19
|
const hasSingleImage = Array.isArray(images) && images.length === 1;
|
|
22
20
|
const hasMultipleImages = Array.isArray(images) && images.length > 1;
|
|
23
21
|
return /* @__PURE__ */ jsx(
|
|
24
22
|
CompoundContainer,
|
|
25
23
|
{
|
|
26
|
-
padding,
|
|
27
|
-
sectionStyle,
|
|
28
|
-
backgroundColor,
|
|
24
|
+
padding: styles == null ? void 0 : styles.padding,
|
|
25
|
+
sectionStyle: styles == null ? void 0 : styles.sectionStyle,
|
|
26
|
+
backgroundColor: styles == null ? void 0 : styles.backgroundColor,
|
|
29
27
|
children: /* @__PURE__ */ jsxs(
|
|
30
28
|
"div",
|
|
31
29
|
{
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { NavigationMenu as NavigationMenuPrimitive } from "@base-ui/react/navigation-menu";
|
|
2
|
-
declare function NavigationMenu({ align, className, children, ...props }: NavigationMenuPrimitive.Root.Props & Pick<NavigationMenuPrimitive.Positioner.Props, "align">): import("react/jsx-runtime").JSX.Element;
|
|
2
|
+
declare function NavigationMenu({ align, className, children, onValueChange, ...props }: NavigationMenuPrimitive.Root.Props & Pick<NavigationMenuPrimitive.Positioner.Props, "align">): import("react/jsx-runtime").JSX.Element;
|
|
3
3
|
declare function NavigationMenuList({ className, ...props }: React.ComponentPropsWithRef<typeof NavigationMenuPrimitive.List>): import("react/jsx-runtime").JSX.Element;
|
|
4
4
|
declare function NavigationMenuItem({ className, ...props }: React.ComponentPropsWithRef<typeof NavigationMenuPrimitive.Item>): import("react/jsx-runtime").JSX.Element;
|
|
5
5
|
declare const navigationMenuTriggerStyle: (props?: import("class-variance-authority/types").ClassProp | undefined) => string;
|
|
@@ -1,14 +1,45 @@
|
|
|
1
1
|
import { jsxs, jsx } from "react/jsx-runtime";
|
|
2
|
+
import { useState, useCallback } from "react";
|
|
2
3
|
import { NavigationMenu as NavigationMenu$1 } from "@base-ui/react/navigation-menu";
|
|
3
4
|
import { cva } from "class-variance-authority";
|
|
4
5
|
import { cn } from "../../utils/css-utils.js";
|
|
5
6
|
import { ChevronDownIcon } from "lucide-react";
|
|
7
|
+
import { useEditorContext } from "../puck-base/editor-context.js";
|
|
6
8
|
function NavigationMenu({
|
|
7
9
|
align = "start",
|
|
8
10
|
className,
|
|
9
11
|
children,
|
|
12
|
+
onValueChange,
|
|
10
13
|
...props
|
|
11
14
|
}) {
|
|
15
|
+
const { isEditor } = useEditorContext();
|
|
16
|
+
const [value, setValue] = useState(props.defaultValue ?? null);
|
|
17
|
+
const handleValueChange = useCallback(
|
|
18
|
+
(newValue, details) => {
|
|
19
|
+
if (newValue === null && details.reason === "focus-out") return;
|
|
20
|
+
setValue(newValue);
|
|
21
|
+
onValueChange == null ? void 0 : onValueChange(newValue, details);
|
|
22
|
+
},
|
|
23
|
+
[onValueChange]
|
|
24
|
+
);
|
|
25
|
+
if (!isEditor) {
|
|
26
|
+
return /* @__PURE__ */ jsxs(
|
|
27
|
+
NavigationMenu$1.Root,
|
|
28
|
+
{
|
|
29
|
+
"data-slot": "navigation-menu",
|
|
30
|
+
className: cn(
|
|
31
|
+
"group/navigation-menu relative flex max-w-max flex-1 items-center justify-center",
|
|
32
|
+
className
|
|
33
|
+
),
|
|
34
|
+
onValueChange,
|
|
35
|
+
...props,
|
|
36
|
+
children: [
|
|
37
|
+
children,
|
|
38
|
+
/* @__PURE__ */ jsx(NavigationMenuPositioner, { align })
|
|
39
|
+
]
|
|
40
|
+
}
|
|
41
|
+
);
|
|
42
|
+
}
|
|
12
43
|
return /* @__PURE__ */ jsxs(
|
|
13
44
|
NavigationMenu$1.Root,
|
|
14
45
|
{
|
|
@@ -17,6 +48,8 @@ function NavigationMenu({
|
|
|
17
48
|
"group/navigation-menu relative flex max-w-max flex-1 items-center justify-center",
|
|
18
49
|
className
|
|
19
50
|
),
|
|
51
|
+
value,
|
|
52
|
+
onValueChange: handleValueChange,
|
|
20
53
|
...props,
|
|
21
54
|
children: [
|
|
22
55
|
children,
|
package/dist/index.js
CHANGED
|
@@ -15,20 +15,21 @@ import { AutoField } from "./components/puck-base/fields/auto-field.js";
|
|
|
15
15
|
import { Avatar, AvatarBadge, AvatarFallback, AvatarGroup, AvatarGroupCount, AvatarImage } from "./components/shadcn/avatar.js";
|
|
16
16
|
import { Badge, badgeVariants } from "./components/shadcn/badge.js";
|
|
17
17
|
import { conf as conf4 } from "./components/puck-block/cta-sections/banner-cta-1/index.js";
|
|
18
|
-
import { conf as conf5 } from "./components/puck-block/
|
|
18
|
+
import { conf as conf5 } from "./components/puck-block/showcase-sections/before-after-1/index.js";
|
|
19
|
+
import { conf as conf6 } from "./components/puck-block/feature-sections/bento-1/index.js";
|
|
19
20
|
import { Breadcrumb, BreadcrumbEllipsis, BreadcrumbItem, BreadcrumbLink, BreadcrumbList, BreadcrumbPage, BreadcrumbSeparator } from "./components/shadcn/breadcrumb.js";
|
|
20
21
|
import { Button, buttonVariants } from "./components/shadcn/button.js";
|
|
21
22
|
import { ButtonGroup, ButtonGroupSeparator, ButtonGroupText, buttonGroupVariants } from "./components/shadcn/button-group.js";
|
|
22
23
|
import { Calendar, CalendarDayButton } from "./components/shadcn/calendar.js";
|
|
23
24
|
import { Card, CardAction, CardContent, CardDescription, CardFooter, CardHeader, CardTitle } from "./components/shadcn/card.js";
|
|
24
25
|
import { Carousel, CarouselContent, CarouselItem, CarouselNext, CarouselPrevious, useCarousel } from "./components/shadcn/carousel.js";
|
|
25
|
-
import { conf as
|
|
26
|
+
import { conf as conf7 } from "./components/puck-block/showcase-sections/case-study-1/index.js";
|
|
26
27
|
import { ChartContainer, ChartLegend, ChartLegendContent, ChartStyle, ChartTooltip, ChartTooltipContent } from "./components/shadcn/chart.js";
|
|
27
28
|
import { Checkbox } from "./components/shadcn/checkbox.js";
|
|
28
29
|
import { Collapsible, CollapsibleContent, CollapsibleTrigger } from "./components/shadcn/collapsible.js";
|
|
29
30
|
import { Combobox, ComboboxChip, ComboboxChips, ComboboxChipsInput, ComboboxCollection, ComboboxContent, ComboboxEmpty, ComboboxGroup, ComboboxInput, ComboboxItem, ComboboxLabel, ComboboxList, ComboboxSeparator, ComboboxTrigger, ComboboxValue, useComboboxAnchor } from "./components/shadcn/combobox.js";
|
|
30
31
|
import { Command, CommandDialog, CommandEmpty, CommandGroup, CommandInput, CommandItem, CommandList, CommandSeparator, CommandShortcut } from "./components/shadcn/command.js";
|
|
31
|
-
import { conf as
|
|
32
|
+
import { conf as conf8 } from "./components/puck-block/pricing-sections/comparison-1/index.js";
|
|
32
33
|
import { CompoundArticleCard } from "./components/puck-base/article-card.js";
|
|
33
34
|
import { CompoundBadge } from "./components/puck-base/badge.js";
|
|
34
35
|
import { CompoundButton } from "./components/puck-base/button.js";
|
|
@@ -38,12 +39,14 @@ import { CompoundContent } from "./components/puck-base/content.js";
|
|
|
38
39
|
import { CompoundField, fieldTypes } from "./components/puck-base/field.js";
|
|
39
40
|
import { CompoundForm, formMethods } from "./components/puck-base/form.js";
|
|
40
41
|
import { CompoundImage } from "./components/puck-base/image.js";
|
|
41
|
-
import { conf as
|
|
42
|
-
import { conf as
|
|
42
|
+
import { conf as conf9 } from "./components/puck-block/contact-sections/contact-us-2/index.js";
|
|
43
|
+
import { conf as conf10 } from "./components/puck-block/contact-sections/contact-us-3/index.js";
|
|
44
|
+
import { conf as conf11 } from "./components/puck-block/contact-sections/contact-us-1/index.js";
|
|
45
|
+
import { conf as conf12 } from "./components/puck-block/text-sections/content-section-1/index.js";
|
|
43
46
|
import { ContextMenu, ContextMenuCheckboxItem, ContextMenuContent, ContextMenuGroup, ContextMenuItem, ContextMenuLabel, ContextMenuPortal, ContextMenuRadioGroup, ContextMenuRadioItem, ContextMenuSeparator, ContextMenuShortcut, ContextMenuSub, ContextMenuSubContent, ContextMenuSubTrigger, ContextMenuTrigger } from "./components/shadcn/context-menu.js";
|
|
44
47
|
import { Cover } from "./components/ui-block/cover/index.js";
|
|
45
|
-
import { conf as
|
|
46
|
-
import { conf as
|
|
48
|
+
import { conf as conf13 } from "./components/puck-block/cta-sections/cta-1/index.js";
|
|
49
|
+
import { conf as conf14 } from "./components/puck-block/testimonial-sections/customers-1/index.js";
|
|
47
50
|
import { Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogTitle, DialogTrigger } from "./components/shadcn/dialog.js";
|
|
48
51
|
import { DirectionProvider, useDirection } from "@base-ui/react/direction-provider";
|
|
49
52
|
import { Drawer, DrawerClose, DrawerContent, DrawerDescription, DrawerFooter, DrawerHeader, DrawerOverlay, DrawerPortal, DrawerTitle, DrawerTrigger } from "./components/shadcn/drawer.js";
|
|
@@ -51,22 +54,25 @@ import { DropdownMenu, DropdownMenuCheckboxItem, DropdownMenuContent, DropdownMe
|
|
|
51
54
|
import { EditorContextProvider, useEditorContext } from "./components/puck-base/editor-context.js";
|
|
52
55
|
import { Empty, EmptyContent, EmptyDescription, EmptyHeader, EmptyMedia, EmptyTitle } from "./components/shadcn/empty.js";
|
|
53
56
|
import { ErrorBoundary } from "./components/puck-base/error-boundary.js";
|
|
54
|
-
import { conf as
|
|
55
|
-
import { conf as
|
|
56
|
-
import { conf as
|
|
57
|
+
import { conf as conf15 } from "./components/puck-block/faq-sections/faq-2/index.js";
|
|
58
|
+
import { conf as conf16 } from "./components/puck-block/faq-sections/faq-1/index.js";
|
|
59
|
+
import { conf as conf17 } from "./components/puck-block/feature-sections/feature-cards-1/index.js";
|
|
60
|
+
import { conf as conf18 } from "./components/puck-block/feature-sections/feature-showcase-1/index.js";
|
|
57
61
|
import { Field, FieldContent, FieldDescription, FieldError, FieldGroup, FieldLabel, FieldLegend, FieldSeparator, FieldSet, FieldTitle } from "./components/shadcn/field.js";
|
|
58
|
-
import { conf as
|
|
62
|
+
import { conf as conf19 } from "./components/puck-block/footer-sections/footer-1/index.js";
|
|
59
63
|
import { Form, FormControl, FormDescription, FormField, FormItem, FormLabel, FormMessage } from "./components/shadcn/form.js";
|
|
60
|
-
import { conf as
|
|
61
|
-
import { conf as
|
|
62
|
-
import { conf as
|
|
63
|
-
import { conf as
|
|
64
|
+
import { conf as conf20 } from "./components/puck-block/hero-sections/fullscreen-hero-1/index.js";
|
|
65
|
+
import { conf as conf21 } from "./components/puck-block/gallery-sections/gallery-2/index.js";
|
|
66
|
+
import { conf as conf22 } from "./components/puck-block/gallery-sections/gallery-3/index.js";
|
|
67
|
+
import { conf as conf23 } from "./components/puck-block/gallery-sections/gallery-1/index.js";
|
|
68
|
+
import { conf as conf24 } from "./components/puck-block/cta-sections/gradient-cta-1/index.js";
|
|
69
|
+
import { conf as conf25 } from "./components/puck-block/hero-sections/gradient-hero-1/index.js";
|
|
64
70
|
import { GradientText } from "./components/puck-base/gradient-text.js";
|
|
65
|
-
import { conf as
|
|
66
|
-
import { conf as
|
|
71
|
+
import { conf as conf26 } from "./components/puck-block/hero-sections/grid-hero-1/index.js";
|
|
72
|
+
import { conf as conf27 } from "./components/puck-block/hero-sections/hero-1/index.js";
|
|
67
73
|
import { HoverCard, HoverCardContent, HoverCardTrigger } from "./components/shadcn/hover-card.js";
|
|
68
|
-
import { conf as
|
|
69
|
-
import { conf as
|
|
74
|
+
import { conf as conf28 } from "./components/puck-block/feature-sections/icon-grid-1/index.js";
|
|
75
|
+
import { conf as conf29 } from "./components/puck-block/hero-sections/image-hero-1/index.js";
|
|
70
76
|
import { ImageUploadField } from "./components/puck-base/image-upload-field.js";
|
|
71
77
|
import { InlineEditable } from "./components/puck-base/inline-editable.js";
|
|
72
78
|
import { Input } from "./components/shadcn/input.js";
|
|
@@ -76,23 +82,28 @@ import { Item, ItemActions, ItemContent, ItemDescription, ItemFooter, ItemGroup,
|
|
|
76
82
|
import { Kbd, KbdGroup } from "./components/shadcn/kbd.js";
|
|
77
83
|
import { Label } from "./components/shadcn/label.js";
|
|
78
84
|
import { LayoutTextFlip } from "./components/shadcn/layout-text-flip.js";
|
|
79
|
-
import { conf as
|
|
80
|
-
import { conf as
|
|
85
|
+
import { conf as conf30 } from "./components/puck-block/location-sections/location-2/index.js";
|
|
86
|
+
import { conf as conf31 } from "./components/puck-block/location-sections/location-3/index.js";
|
|
87
|
+
import { conf as conf32 } from "./components/puck-block/location-sections/location-1/index.js";
|
|
88
|
+
import { conf as conf33 } from "./components/puck-block/testimonial-sections/logo-marquee-1/index.js";
|
|
89
|
+
import { conf as conf34 } from "./components/puck-block/testimonial-sections/logo-wall-1/index.js";
|
|
90
|
+
import { conf as conf35 } from "./components/puck-block/banner-sections/marquee-1/index.js";
|
|
81
91
|
import { Menubar, MenubarCheckboxItem, MenubarContent, MenubarGroup, MenubarItem, MenubarLabel, MenubarMenu, MenubarPortal, MenubarRadioGroup, MenubarRadioItem, MenubarSeparator, MenubarShortcut, MenubarSub, MenubarSubContent, MenubarSubTrigger, MenubarTrigger } from "./components/shadcn/menubar.js";
|
|
82
92
|
import { MobileNav, MobileNavHeader, MobileNavMenu, MobileNavToggle, NavBody, NavItems, Navbar, NavbarButton, NavbarLogo } from "./components/shadcn/resizable-navbar.js";
|
|
83
93
|
import { NativeSelect, NativeSelectOptGroup, NativeSelectOption } from "./components/shadcn/native-select.js";
|
|
84
94
|
import { NavigationMenu, NavigationMenuContent, NavigationMenuIndicator, NavigationMenuItem, NavigationMenuLink, NavigationMenuList, NavigationMenuPositioner, NavigationMenuTrigger, navigationMenuTriggerStyle } from "./components/shadcn/navigation-menu.js";
|
|
85
|
-
import { conf as
|
|
95
|
+
import { conf as conf36 } from "./components/puck-block/cta-sections/newsletter-signup-1/index.js";
|
|
86
96
|
import { Pagination, PaginationContent, PaginationEllipsis, PaginationItem, PaginationLink, PaginationNext, PaginationPrevious } from "./components/shadcn/pagination.js";
|
|
87
97
|
import { Popover, PopoverContent, PopoverDescription, PopoverHeader, PopoverTitle, PopoverTrigger } from "./components/shadcn/popover.js";
|
|
88
|
-
import { conf as
|
|
89
|
-
import { conf as
|
|
98
|
+
import { conf as conf37 } from "./components/puck-block/pricing-sections/pricing-2/index.js";
|
|
99
|
+
import { conf as conf38 } from "./components/puck-block/pricing-sections/pricing-1/index.js";
|
|
100
|
+
import { conf as conf39 } from "./components/puck-block/feature-sections/product-features-1/index.js";
|
|
90
101
|
import { Progress, ProgressIndicator, ProgressLabel, ProgressTrack, ProgressValue } from "./components/shadcn/progress.js";
|
|
91
|
-
import { conf as
|
|
102
|
+
import { conf as conf40 } from "./components/puck-block/cta-sections/promo-section-1/index.js";
|
|
92
103
|
import { RadioGroup, RadioGroupItem } from "./components/shadcn/radio-group.js";
|
|
93
104
|
import { ResizableHandle, ResizablePanel, ResizablePanelGroup } from "./components/shadcn/resizable.js";
|
|
94
|
-
import { conf as
|
|
95
|
-
import { conf as
|
|
105
|
+
import { conf as conf41 } from "./components/puck-block/testimonial-sections/review-section-1/index.js";
|
|
106
|
+
import { conf as conf42 } from "./components/puck-block/text-sections/rich-text-1/index.js";
|
|
96
107
|
import { ScrollArea, ScrollBar } from "./components/shadcn/scroll-area.js";
|
|
97
108
|
import { Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, SelectTrigger, SelectValue } from "./components/shadcn/select.js";
|
|
98
109
|
import { Separator } from "./components/shadcn/separator.js";
|
|
@@ -102,28 +113,33 @@ import { Skeleton } from "./components/shadcn/skeleton.js";
|
|
|
102
113
|
import { Slider } from "./components/shadcn/slider.js";
|
|
103
114
|
import { SparklesCore } from "./components/ui-block/sparkles/index.js";
|
|
104
115
|
import { Spinner } from "./components/shadcn/spinner.js";
|
|
105
|
-
import { conf as
|
|
116
|
+
import { conf as conf43 } from "./components/puck-block/hero-sections/split-hero-1/index.js";
|
|
106
117
|
import { Spotlight } from "./components/ui-block/spotlight/index.js";
|
|
107
|
-
import { conf as
|
|
108
|
-
import { conf as
|
|
109
|
-
import { conf as
|
|
118
|
+
import { conf as conf44 } from "./components/puck-block/metrics-sections/stats-2/index.js";
|
|
119
|
+
import { conf as conf45 } from "./components/puck-block/metrics-sections/stats-3/index.js";
|
|
120
|
+
import { conf as conf46 } from "./components/puck-block/metrics-sections/stats-1/index.js";
|
|
121
|
+
import { conf as conf47 } from "./components/puck-block/showcase-sections/step-by-step-1/index.js";
|
|
122
|
+
import { conf as conf48 } from "./components/puck-block/header-sections/sticky-nav-1/index.js";
|
|
110
123
|
import { Switch } from "./components/shadcn/switch.js";
|
|
111
|
-
import { conf as
|
|
124
|
+
import { conf as conf49 } from "./components/puck-block/text-sections/tab-section-1/index.js";
|
|
112
125
|
import { Table, TableBody, TableCaption, TableCell, TableFooter, TableHead, TableHeader, TableRow } from "./components/shadcn/table.js";
|
|
113
126
|
import { Tabs, TabsContent, TabsList, TabsTrigger, tabsListVariants } from "./components/shadcn/tabs.js";
|
|
114
|
-
import { conf as
|
|
115
|
-
import { conf as
|
|
127
|
+
import { conf as conf50 } from "./components/puck-block/team-sections/team-grid-2/index.js";
|
|
128
|
+
import { conf as conf51 } from "./components/puck-block/team-sections/team-grid-1/index.js";
|
|
129
|
+
import { conf as conf52 } from "./components/puck-block/team-sections/team-profiles-1/index.js";
|
|
130
|
+
import { conf as conf53 } from "./components/puck-block/testimonial-sections/testimonials-1/index.js";
|
|
116
131
|
import { Textarea } from "./components/shadcn/textarea.js";
|
|
117
|
-
import { conf as
|
|
132
|
+
import { conf as conf54 } from "./components/puck-block/text-sections/timeline-1/index.js";
|
|
118
133
|
import { Toaster } from "./components/shadcn/sonner.js";
|
|
119
134
|
import { Toggle, toggleVariants } from "./components/shadcn/toggle.js";
|
|
120
135
|
import { ToggleGroup, ToggleGroupItem } from "./components/shadcn/toggle-group.js";
|
|
121
136
|
import { Tooltip, TooltipContent, TooltipProvider, TooltipTrigger } from "./components/shadcn/tooltip.js";
|
|
122
137
|
import { TweetCard, truncate } from "./components/shadcn/tweet-card.js";
|
|
123
138
|
import { TweetCardClient } from "./components/shadcn/tweet-card-client.js";
|
|
124
|
-
import { conf as
|
|
125
|
-
import { conf as
|
|
126
|
-
import { action, actionDefaults,
|
|
139
|
+
import { conf as conf55 } from "./components/puck-block/text-sections/two-column-1/index.js";
|
|
140
|
+
import { conf as conf56 } from "./components/puck-block/hero-sections/video-hero-1/index.js";
|
|
141
|
+
import { action, actionDefaults, badge, button, buttons, card, cards, contentFields, contentFieldsWithFeatures, description, features, field, fieldDefaults, form, formDefaults, getPlaceholderImageUrl, heading, icon, image, image16x9Placeholder, image1x1Placeholder, image9x16Placeholder, images } from "./components/puck-base/core/fields.js";
|
|
142
|
+
import { backgroundColor, backgroundImage, padding, paddingDefaults, paddingLevel, sectionOverlay, sectionStyle } from "./components/puck-base/core/styles.js";
|
|
127
143
|
import { base64ToFile, base64ToUrl, blobToBase64, blobToUrl, convertBase64ToBlob, structureFile } from "./utils/utils-canvas.js";
|
|
128
144
|
import { cn, liquidGlass } from "./utils/css-utils.js";
|
|
129
145
|
import { downloadImage, downloadImageClient, fetchHasOnlineFile, getBase64Client, isValidFileSize, isValidFileType } from "./utils/utils-image.js";
|
|
@@ -172,7 +188,8 @@ export {
|
|
|
172
188
|
default2 as Background,
|
|
173
189
|
Badge,
|
|
174
190
|
conf4 as BannerCtaConf,
|
|
175
|
-
conf5 as
|
|
191
|
+
conf5 as BeforeAfterConf,
|
|
192
|
+
conf6 as BentoConf,
|
|
176
193
|
Breadcrumb,
|
|
177
194
|
BreadcrumbEllipsis,
|
|
178
195
|
BreadcrumbItem,
|
|
@@ -198,7 +215,7 @@ export {
|
|
|
198
215
|
CarouselItem,
|
|
199
216
|
CarouselNext,
|
|
200
217
|
CarouselPrevious,
|
|
201
|
-
|
|
218
|
+
conf7 as CaseStudyConf,
|
|
202
219
|
ChartContainer,
|
|
203
220
|
ChartLegend,
|
|
204
221
|
ChartLegendContent,
|
|
@@ -233,7 +250,7 @@ export {
|
|
|
233
250
|
CommandList,
|
|
234
251
|
CommandSeparator,
|
|
235
252
|
CommandShortcut,
|
|
236
|
-
|
|
253
|
+
conf8 as ComparisonConf,
|
|
237
254
|
CompoundArticleCard,
|
|
238
255
|
CompoundBadge,
|
|
239
256
|
CompoundButton,
|
|
@@ -243,8 +260,10 @@ export {
|
|
|
243
260
|
CompoundField,
|
|
244
261
|
CompoundForm,
|
|
245
262
|
CompoundImage,
|
|
246
|
-
|
|
247
|
-
|
|
263
|
+
conf9 as ContactUs2Conf,
|
|
264
|
+
conf10 as ContactUs3Conf,
|
|
265
|
+
conf11 as ContactUsConf,
|
|
266
|
+
conf12 as ContentSectionConf,
|
|
248
267
|
ContextMenu,
|
|
249
268
|
ContextMenuCheckboxItem,
|
|
250
269
|
ContextMenuContent,
|
|
@@ -261,8 +280,8 @@ export {
|
|
|
261
280
|
ContextMenuSubTrigger,
|
|
262
281
|
ContextMenuTrigger,
|
|
263
282
|
Cover,
|
|
264
|
-
|
|
265
|
-
|
|
283
|
+
conf13 as CtaConf,
|
|
284
|
+
conf14 as CustomersConf,
|
|
266
285
|
Dialog,
|
|
267
286
|
DialogClose,
|
|
268
287
|
DialogContent,
|
|
@@ -307,9 +326,10 @@ export {
|
|
|
307
326
|
EmptyMedia,
|
|
308
327
|
EmptyTitle,
|
|
309
328
|
ErrorBoundary,
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
|
|
329
|
+
conf15 as Faq2Conf,
|
|
330
|
+
conf16 as FaqConf,
|
|
331
|
+
conf17 as FeatureCardsConf,
|
|
332
|
+
conf18 as FeatureShowcaseConf,
|
|
313
333
|
Field,
|
|
314
334
|
FieldContent,
|
|
315
335
|
FieldDescription,
|
|
@@ -320,7 +340,7 @@ export {
|
|
|
320
340
|
FieldSeparator,
|
|
321
341
|
FieldSet,
|
|
322
342
|
FieldTitle,
|
|
323
|
-
|
|
343
|
+
conf19 as FooterConf,
|
|
324
344
|
Form,
|
|
325
345
|
FormControl,
|
|
326
346
|
FormDescription,
|
|
@@ -328,19 +348,21 @@ export {
|
|
|
328
348
|
FormItem,
|
|
329
349
|
FormLabel,
|
|
330
350
|
FormMessage,
|
|
331
|
-
|
|
332
|
-
|
|
333
|
-
|
|
334
|
-
|
|
351
|
+
conf20 as FullscreenHeroConf,
|
|
352
|
+
conf21 as Gallery2Conf,
|
|
353
|
+
conf22 as Gallery3Conf,
|
|
354
|
+
conf23 as GalleryConf,
|
|
355
|
+
conf24 as GradientCtaConf,
|
|
356
|
+
conf25 as GradientHeroConf,
|
|
335
357
|
GradientText,
|
|
336
|
-
|
|
358
|
+
conf26 as GridHeroConf,
|
|
337
359
|
default3 as HeaderConf,
|
|
338
|
-
|
|
360
|
+
conf27 as HeroConf,
|
|
339
361
|
HoverCard,
|
|
340
362
|
HoverCardContent,
|
|
341
363
|
HoverCardTrigger,
|
|
342
|
-
|
|
343
|
-
|
|
364
|
+
conf28 as IconGridConf,
|
|
365
|
+
conf29 as ImageHeroConf,
|
|
344
366
|
ImageUploadField,
|
|
345
367
|
InlineEditable,
|
|
346
368
|
Input,
|
|
@@ -368,8 +390,12 @@ export {
|
|
|
368
390
|
KbdGroup,
|
|
369
391
|
Label,
|
|
370
392
|
LayoutTextFlip,
|
|
371
|
-
|
|
372
|
-
|
|
393
|
+
conf30 as Location2Conf,
|
|
394
|
+
conf31 as Location3Conf,
|
|
395
|
+
conf32 as LocationConf,
|
|
396
|
+
conf33 as LogoMarqueeConf,
|
|
397
|
+
conf34 as LogoWallConf,
|
|
398
|
+
conf35 as MarqueeConf,
|
|
373
399
|
Menubar,
|
|
374
400
|
MenubarCheckboxItem,
|
|
375
401
|
MenubarContent,
|
|
@@ -406,7 +432,7 @@ export {
|
|
|
406
432
|
NavigationMenuList,
|
|
407
433
|
NavigationMenuPositioner,
|
|
408
434
|
NavigationMenuTrigger,
|
|
409
|
-
|
|
435
|
+
conf36 as NewsletterSignupConf,
|
|
410
436
|
Pagination,
|
|
411
437
|
PaginationContent,
|
|
412
438
|
PaginationEllipsis,
|
|
@@ -420,21 +446,22 @@ export {
|
|
|
420
446
|
PopoverHeader,
|
|
421
447
|
PopoverTitle,
|
|
422
448
|
PopoverTrigger,
|
|
423
|
-
|
|
424
|
-
|
|
449
|
+
conf37 as Pricing2Conf,
|
|
450
|
+
conf38 as PricingConf,
|
|
451
|
+
conf39 as ProductFeaturesConf,
|
|
425
452
|
Progress,
|
|
426
453
|
ProgressIndicator,
|
|
427
454
|
ProgressLabel,
|
|
428
455
|
ProgressTrack,
|
|
429
456
|
ProgressValue,
|
|
430
|
-
|
|
457
|
+
conf40 as PromoSectionConf,
|
|
431
458
|
RadioGroup,
|
|
432
459
|
RadioGroupItem,
|
|
433
460
|
ResizableHandle,
|
|
434
461
|
ResizablePanel,
|
|
435
462
|
ResizablePanelGroup,
|
|
436
|
-
|
|
437
|
-
|
|
463
|
+
conf41 as ReviewSectionConf,
|
|
464
|
+
conf42 as RichTextConf,
|
|
438
465
|
ScrollArea,
|
|
439
466
|
ScrollBar,
|
|
440
467
|
Select,
|
|
@@ -484,13 +511,15 @@ export {
|
|
|
484
511
|
Slider,
|
|
485
512
|
SparklesCore,
|
|
486
513
|
Spinner,
|
|
487
|
-
|
|
514
|
+
conf43 as SplitHeroConf,
|
|
488
515
|
Spotlight,
|
|
489
|
-
|
|
490
|
-
|
|
491
|
-
|
|
516
|
+
conf44 as Stats2Conf,
|
|
517
|
+
conf45 as Stats3Conf,
|
|
518
|
+
conf46 as StatsConf,
|
|
519
|
+
conf47 as StepByStepConf,
|
|
520
|
+
conf48 as StickyNavConf,
|
|
492
521
|
Switch,
|
|
493
|
-
|
|
522
|
+
conf49 as TabSectionConf,
|
|
494
523
|
Table,
|
|
495
524
|
TableBody,
|
|
496
525
|
TableCaption,
|
|
@@ -503,10 +532,12 @@ export {
|
|
|
503
532
|
TabsContent,
|
|
504
533
|
TabsList,
|
|
505
534
|
TabsTrigger,
|
|
506
|
-
|
|
507
|
-
|
|
535
|
+
conf50 as TeamGrid2Conf,
|
|
536
|
+
conf51 as TeamGridConf,
|
|
537
|
+
conf52 as TeamProfilesConf,
|
|
538
|
+
conf53 as TestimonialsConf,
|
|
508
539
|
Textarea,
|
|
509
|
-
|
|
540
|
+
conf54 as TimelineConf,
|
|
510
541
|
Toaster,
|
|
511
542
|
Toggle,
|
|
512
543
|
ToggleGroup,
|
|
@@ -517,8 +548,8 @@ export {
|
|
|
517
548
|
TooltipTrigger,
|
|
518
549
|
TweetCard,
|
|
519
550
|
TweetCardClient,
|
|
520
|
-
|
|
521
|
-
|
|
551
|
+
conf55 as TwoColumnConf,
|
|
552
|
+
conf56 as VideoHeroConf,
|
|
522
553
|
action,
|
|
523
554
|
actionDefaults,
|
|
524
555
|
backgroundColor,
|