dune-react 0.0.23 → 0.0.25
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/image.js +1 -1
- package/dist/components/puck-block/banner-sections/dual-row-marquee/dual-row-marquee.js +77 -53
- package/dist/components/puck-block/contact-sections/tab-locations/tab-locations.js +71 -55
- package/dist/components/puck-block/feature-sections/tab-feature/component.js +1 -1
- package/dist/components/puck-block/gallery-sections/image-carousel/index.d.ts +14 -1
- package/dist/components/puck-block/gallery-sections/interactive-portfolio/interactive-portfolio.js +165 -104
- package/dist/components/puck-block/gallery-sections/masonry-grid/index.d.ts +17 -1
- package/dist/components/puck-block/gallery-sections/masonry-grid/masonry-grid.js +56 -31
- package/dist/components/puck-block/gallery-sections/portfolio-cards/index.d.ts +17 -1
- package/dist/components/puck-block/gallery-sections/portfolio-cards/portfolio-cards.js +40 -12
- package/dist/components/puck-block/gallery-sections/props.d.ts +31 -2
- package/dist/components/puck-block/gallery-sections/props.js +17 -4
- package/dist/components/puck-block/gallery-sections/scroll-parallax/scroll-parallax.js +68 -37
- package/dist/components/puck-block/gallery-sections/scroll-parallax-portfolio/scroll-parallax-portfolio.js +308 -151
- package/dist/components/puck-block/gallery-sections/static-grid/index.d.ts +17 -1
- package/dist/components/puck-block/header-sections/centered-navbar/centered-navbar.js +94 -14
- package/dist/components/puck-block/hero-sections/grid-expand-hero/index.d.ts +17 -1
- package/dist/components/puck-block/hero-sections/inline-image-hero/inline-image-hero.js +59 -28
- package/dist/components/puck-block/hero-sections/multi-image-grid-hero/index.d.ts +17 -1
- package/dist/components/puck-block/hero-sections/props.d.ts +34 -2
- package/dist/components/puck-block/hero-sections/props.js +18 -4
- package/dist/components/puck-block/hero-sections/tab-hero/component.js +1 -1
- package/dist/components/puck-block/index.d.ts +1 -0
- package/dist/components/puck-block/location-sections/index.d.ts +3 -0
- package/dist/components/puck-block/location-sections/location-1/index.js +102 -0
- package/dist/components/puck-block/location-sections/location-1/location.d.ts +0 -3
- package/dist/components/puck-block/location-sections/location-1/location.js +139 -0
- package/dist/components/puck-block/location-sections/location-2/index.js +126 -0
- package/dist/components/puck-block/location-sections/location-2/location.d.ts +0 -3
- package/dist/components/puck-block/location-sections/location-2/location.js +133 -0
- package/dist/components/puck-block/location-sections/location-3/index.js +109 -0
- package/dist/components/puck-block/location-sections/location-3/location.d.ts +0 -3
- package/dist/components/puck-block/location-sections/location-3/location.js +140 -0
- package/dist/components/puck-block/location-sections/props.d.ts +0 -3
- package/dist/components/puck-block/metrics-sections/tab-stats/tab-stats.js +1 -1
- package/dist/components/puck-block/pricing-sections/pricing-comparison-table/component.js +134 -33
- package/dist/components/puck-block/pricing-sections/tab-pricing-grid/component.js +86 -40
- package/dist/components/puck-block/pricing-sections/tab-single-pricing/component.js +1 -1
- package/dist/components/puck-block/registry.generated.d.ts +228 -6
- package/dist/components/puck-block/registry.generated.js +157 -138
- package/dist/components/puck-block/showcase-sections/tab-timeline/component.js +1 -1
- package/dist/components/puck-block/testimonial-sections/bento-testimonial/component.js +157 -83
- package/dist/components/puck-block/testimonial-sections/centered-testimonial/component.js +71 -28
- package/dist/components/puck-block/testimonial-sections/image-testimonial/component.js +66 -29
- package/dist/components/puck-block/testimonial-sections/image-testimonial-carousel/component.js +1 -1
- package/dist/components/puck-block/testimonial-sections/tab-testimonial/component.js +4 -4
- package/dist/components/puck-block/testimonial-sections/testimonial-card-grid/component.js +2 -2
- package/dist/components/puck-block/testimonial-sections/testimonial-carousel/component.js +1 -1
- package/dist/components/puck-core/core/props/form.js +25 -1
- package/dist/components/puck-core/fields/location-field.js +4 -1
- package/dist/index.js +6 -0
- package/package.json +4 -1
|
@@ -12,7 +12,11 @@ const ScrollParallax = (props) => {
|
|
|
12
12
|
...ScrollParallaxDefaults,
|
|
13
13
|
...props
|
|
14
14
|
};
|
|
15
|
-
const {
|
|
15
|
+
const {
|
|
16
|
+
className: sectionClassName,
|
|
17
|
+
style: sectionStyle,
|
|
18
|
+
css
|
|
19
|
+
} = styles ?? {};
|
|
16
20
|
const { isEditor } = useEditorContext();
|
|
17
21
|
const transformRef = useRef(null);
|
|
18
22
|
const [scrollContainerRef] = useScrollContainer(transformRef);
|
|
@@ -22,42 +26,60 @@ const ScrollParallax = (props) => {
|
|
|
22
26
|
});
|
|
23
27
|
const x = useTransform(scrollYProgress, [0, 1], ["0%", "-100%"]);
|
|
24
28
|
if (isEditor) {
|
|
25
|
-
return /* @__PURE__ */ jsxs(
|
|
26
|
-
|
|
27
|
-
/* @__PURE__ */ jsx("h2", { className: "rb-5 mb-5 text-5xl font-bold md:mb-6 md:text-7xl lg:text-8xl", children: heading }),
|
|
28
|
-
/* @__PURE__ */ jsx("p", { className: "md:text-md", children: description })
|
|
29
|
-
] }) }),
|
|
30
|
-
/* @__PURE__ */ jsx("div", { className: "px-[5%] py-12", children: /* @__PURE__ */ jsx("div", { className: "grid grid-cols-1 gap-6 sm:grid-cols-2 lg:grid-cols-3", children: images.map((image, index) => /* @__PURE__ */ jsx("div", { className: "overflow-hidden", children: /* @__PURE__ */ jsx(
|
|
31
|
-
CompoundImage,
|
|
32
|
-
{
|
|
33
|
-
className: "aspect-video w-full object-cover",
|
|
34
|
-
src: image.src,
|
|
35
|
-
alt: image.alt
|
|
36
|
-
}
|
|
37
|
-
) }, index)) }) })
|
|
38
|
-
] });
|
|
39
|
-
}
|
|
40
|
-
return /* @__PURE__ */ jsxs(SectionWrapper, { ref: transformRef, className: cn(sectionClassName), style: sectionStyle, css, children: [
|
|
41
|
-
/* @__PURE__ */ jsx("div", { className: "px-[5%] pt-16 md:pt-24 lg:pt-28", children: /* @__PURE__ */ jsxs("div", { className: "container text-center", children: [
|
|
42
|
-
/* @__PURE__ */ jsx("h2", { className: "rb-5 mb-5 text-5xl font-bold md:mb-6 md:text-7xl lg:text-8xl", children: heading }),
|
|
43
|
-
/* @__PURE__ */ jsx("p", { className: "md:text-md", children: description })
|
|
44
|
-
] }) }),
|
|
45
|
-
/* @__PURE__ */ jsx("div", { className: "h-[400vh]", children: /* @__PURE__ */ jsx("div", { className: "sticky top-0 mt-[-10vh] flex h-screen w-screen max-w-full flex-col items-start justify-center overflow-hidden px-[5%] md:mt-0", children: /* @__PURE__ */ jsx(
|
|
46
|
-
motion.div,
|
|
29
|
+
return /* @__PURE__ */ jsxs(
|
|
30
|
+
SectionWrapper,
|
|
47
31
|
{
|
|
48
|
-
|
|
49
|
-
className:
|
|
50
|
-
|
|
51
|
-
|
|
32
|
+
ref: transformRef,
|
|
33
|
+
className: cn(sectionClassName),
|
|
34
|
+
style: sectionStyle,
|
|
35
|
+
css,
|
|
36
|
+
children: [
|
|
37
|
+
/* @__PURE__ */ jsx("div", { className: "px-[5%] pt-16 md:pt-24 lg:pt-28", children: /* @__PURE__ */ jsxs("div", { className: "container text-center", children: [
|
|
38
|
+
/* @__PURE__ */ jsx("h2", { className: "rb-5 mb-5 text-5xl font-bold md:mb-6 md:text-7xl lg:text-8xl", children: heading }),
|
|
39
|
+
/* @__PURE__ */ jsx("p", { className: "md:text-md", children: description })
|
|
40
|
+
] }) }),
|
|
41
|
+
/* @__PURE__ */ jsx("div", { className: "px-[5%] py-12", children: /* @__PURE__ */ jsx("div", { className: "grid grid-cols-1 gap-6 sm:grid-cols-2 lg:grid-cols-3", children: images.map((image, index) => /* @__PURE__ */ jsx("div", { className: "overflow-hidden", children: /* @__PURE__ */ jsx(
|
|
42
|
+
CompoundImage,
|
|
43
|
+
{
|
|
44
|
+
className: "aspect-video w-full object-cover",
|
|
45
|
+
src: image.src,
|
|
46
|
+
alt: image.alt
|
|
47
|
+
}
|
|
48
|
+
) }, index)) }) })
|
|
49
|
+
]
|
|
50
|
+
}
|
|
51
|
+
);
|
|
52
|
+
}
|
|
53
|
+
return /* @__PURE__ */ jsxs(
|
|
54
|
+
SectionWrapper,
|
|
55
|
+
{
|
|
56
|
+
ref: transformRef,
|
|
57
|
+
className: cn(sectionClassName),
|
|
58
|
+
style: sectionStyle,
|
|
59
|
+
css,
|
|
60
|
+
children: [
|
|
61
|
+
/* @__PURE__ */ jsx("div", { className: "px-[5%] pt-16 md:pt-24 lg:pt-28", children: /* @__PURE__ */ jsxs("div", { className: "container text-center", children: [
|
|
62
|
+
/* @__PURE__ */ jsx("h2", { className: "rb-5 mb-5 text-5xl font-bold md:mb-6 md:text-7xl lg:text-8xl", children: heading }),
|
|
63
|
+
/* @__PURE__ */ jsx("p", { className: "md:text-md", children: description })
|
|
64
|
+
] }) }),
|
|
65
|
+
/* @__PURE__ */ jsx("div", { className: "h-[400vh]", children: /* @__PURE__ */ jsx("div", { className: "sticky top-0 mt-[-10vh] flex h-screen w-screen max-w-full flex-col items-start justify-center overflow-hidden px-[5%] md:mt-0", children: /* @__PURE__ */ jsx(
|
|
66
|
+
motion.div,
|
|
52
67
|
{
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
68
|
+
style: { x },
|
|
69
|
+
className: "flex w-[150vh] items-center gap-x-6 sm:w-[200vh] md:gap-x-8 lg:w-[400vh]",
|
|
70
|
+
children: images.map((image, index) => /* @__PURE__ */ jsx("a", { className: "inline-block max-w-full", children: /* @__PURE__ */ jsx("div", { className: "relative size-full max-w-full overflow-hidden", children: /* @__PURE__ */ jsx(
|
|
71
|
+
CompoundImage,
|
|
72
|
+
{
|
|
73
|
+
className: "h-[80vh] max-h-[25rem] object-cover sm:max-h-[30rem] sm:w-[90vw] md:max-h-[40rem] md:w-[80vw] lg:max-h-none",
|
|
74
|
+
src: image.src,
|
|
75
|
+
alt: image.alt
|
|
76
|
+
}
|
|
77
|
+
) }) }, index))
|
|
56
78
|
}
|
|
57
|
-
) }) }
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
79
|
+
) }) })
|
|
80
|
+
]
|
|
81
|
+
}
|
|
82
|
+
);
|
|
61
83
|
};
|
|
62
84
|
const ScrollParallaxDefaults = {
|
|
63
85
|
tagline: "",
|
|
@@ -66,9 +88,18 @@ const ScrollParallaxDefaults = {
|
|
|
66
88
|
button: { label: "View all" },
|
|
67
89
|
buttons: [],
|
|
68
90
|
images: [
|
|
69
|
-
{
|
|
70
|
-
|
|
71
|
-
|
|
91
|
+
{
|
|
92
|
+
src: "https://picsum.photos/seed/scroll-1/1200/800",
|
|
93
|
+
alt: "Gallery image 1"
|
|
94
|
+
},
|
|
95
|
+
{
|
|
96
|
+
src: "https://picsum.photos/seed/scroll-2/1200/800",
|
|
97
|
+
alt: "Gallery image 2"
|
|
98
|
+
},
|
|
99
|
+
{
|
|
100
|
+
src: "https://picsum.photos/seed/scroll-3/1200/800",
|
|
101
|
+
alt: "Gallery image 3"
|
|
102
|
+
}
|
|
72
103
|
],
|
|
73
104
|
projects: [],
|
|
74
105
|
hoverLinks: [],
|