@commandcenterio/convert-ui 0.0.9 → 0.0.10
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/index.d.mts +32 -1
- package/dist/index.d.ts +32 -1
- package/dist/index.js +7780 -65
- package/dist/index.mjs +7761 -65
- package/package.json +3 -2
package/dist/index.d.mts
CHANGED
@@ -142,6 +142,15 @@ interface HeroProps {
|
|
142
142
|
}
|
143
143
|
declare const Hero: ({ styleType, headline, subheadline, children, imageSrc, classNames, imageAlt, imageOverlayOpacity, }: HeroProps) => react_jsx_runtime.JSX.Element;
|
144
144
|
|
145
|
+
type HeroParallaxProps = {
|
146
|
+
products: {
|
147
|
+
title: string;
|
148
|
+
link: string;
|
149
|
+
thumbnail: string;
|
150
|
+
}[];
|
151
|
+
};
|
152
|
+
declare const HeroParallax: ({ products }: HeroParallaxProps) => react_jsx_runtime.JSX.Element;
|
153
|
+
|
145
154
|
interface MasonryProps {
|
146
155
|
children: ReactNode[];
|
147
156
|
classNames?: string;
|
@@ -149,6 +158,28 @@ interface MasonryProps {
|
|
149
158
|
}
|
150
159
|
declare const Masonry: React$1.FC<MasonryProps>;
|
151
160
|
|
161
|
+
type Axis = "X" | "Y";
|
162
|
+
type Align = "start" | "center" | "end";
|
163
|
+
interface AnimationProps {
|
164
|
+
axis?: Axis;
|
165
|
+
reverse?: boolean;
|
166
|
+
offset: -1 | 0 | 1;
|
167
|
+
id: number;
|
168
|
+
}
|
169
|
+
interface MarqueeComponentProps extends Omit<AnimationProps, "offset" | "id"> {
|
170
|
+
align?: Align;
|
171
|
+
background?: string;
|
172
|
+
duration?: number;
|
173
|
+
height?: string;
|
174
|
+
gap?: string;
|
175
|
+
pauseOnHover?: boolean;
|
176
|
+
width?: string;
|
177
|
+
className?: string;
|
178
|
+
children: React.ReactNode;
|
179
|
+
}
|
180
|
+
|
181
|
+
declare const Marquee: ({ axis, reverse, align, background, duration, height, gap, pauseOnHover, width, className, children, }: MarqueeComponentProps) => react_jsx_runtime.JSX.Element;
|
182
|
+
|
152
183
|
type LinkTypes = {
|
153
184
|
link: string;
|
154
185
|
text: string;
|
@@ -285,4 +316,4 @@ declare namespace Button {
|
|
285
316
|
var displayName: string;
|
286
317
|
}
|
287
318
|
|
288
|
-
export { AccordionContainer, AccordionItem, AnimateBorder, type AnimateBorderProps, AnimatedHeader, AnimationObserver, type AnimationObserverProps, BentoBox, BookNow, Button, type ButtonProps, CTA, CookieConsentForm, Footer, Hero, Masonry, Navbar, Offer, PrettyCard, Ratings, SectionContainer, SectionHeader, SellingPropContainer, SellingProposition, StackedScroller, TestimonialCard, TestimonialDisplay };
|
319
|
+
export { AccordionContainer, AccordionItem, AnimateBorder, type AnimateBorderProps, AnimatedHeader, AnimationObserver, type AnimationObserverProps, BentoBox, BookNow, Button, type ButtonProps, CTA, CookieConsentForm, Footer, Hero, HeroParallax, Marquee, Masonry, Navbar, Offer, PrettyCard, Ratings, SectionContainer, SectionHeader, SellingPropContainer, SellingProposition, StackedScroller, TestimonialCard, TestimonialDisplay };
|
package/dist/index.d.ts
CHANGED
@@ -142,6 +142,15 @@ interface HeroProps {
|
|
142
142
|
}
|
143
143
|
declare const Hero: ({ styleType, headline, subheadline, children, imageSrc, classNames, imageAlt, imageOverlayOpacity, }: HeroProps) => react_jsx_runtime.JSX.Element;
|
144
144
|
|
145
|
+
type HeroParallaxProps = {
|
146
|
+
products: {
|
147
|
+
title: string;
|
148
|
+
link: string;
|
149
|
+
thumbnail: string;
|
150
|
+
}[];
|
151
|
+
};
|
152
|
+
declare const HeroParallax: ({ products }: HeroParallaxProps) => react_jsx_runtime.JSX.Element;
|
153
|
+
|
145
154
|
interface MasonryProps {
|
146
155
|
children: ReactNode[];
|
147
156
|
classNames?: string;
|
@@ -149,6 +158,28 @@ interface MasonryProps {
|
|
149
158
|
}
|
150
159
|
declare const Masonry: React$1.FC<MasonryProps>;
|
151
160
|
|
161
|
+
type Axis = "X" | "Y";
|
162
|
+
type Align = "start" | "center" | "end";
|
163
|
+
interface AnimationProps {
|
164
|
+
axis?: Axis;
|
165
|
+
reverse?: boolean;
|
166
|
+
offset: -1 | 0 | 1;
|
167
|
+
id: number;
|
168
|
+
}
|
169
|
+
interface MarqueeComponentProps extends Omit<AnimationProps, "offset" | "id"> {
|
170
|
+
align?: Align;
|
171
|
+
background?: string;
|
172
|
+
duration?: number;
|
173
|
+
height?: string;
|
174
|
+
gap?: string;
|
175
|
+
pauseOnHover?: boolean;
|
176
|
+
width?: string;
|
177
|
+
className?: string;
|
178
|
+
children: React.ReactNode;
|
179
|
+
}
|
180
|
+
|
181
|
+
declare const Marquee: ({ axis, reverse, align, background, duration, height, gap, pauseOnHover, width, className, children, }: MarqueeComponentProps) => react_jsx_runtime.JSX.Element;
|
182
|
+
|
152
183
|
type LinkTypes = {
|
153
184
|
link: string;
|
154
185
|
text: string;
|
@@ -285,4 +316,4 @@ declare namespace Button {
|
|
285
316
|
var displayName: string;
|
286
317
|
}
|
287
318
|
|
288
|
-
export { AccordionContainer, AccordionItem, AnimateBorder, type AnimateBorderProps, AnimatedHeader, AnimationObserver, type AnimationObserverProps, BentoBox, BookNow, Button, type ButtonProps, CTA, CookieConsentForm, Footer, Hero, Masonry, Navbar, Offer, PrettyCard, Ratings, SectionContainer, SectionHeader, SellingPropContainer, SellingProposition, StackedScroller, TestimonialCard, TestimonialDisplay };
|
319
|
+
export { AccordionContainer, AccordionItem, AnimateBorder, type AnimateBorderProps, AnimatedHeader, AnimationObserver, type AnimationObserverProps, BentoBox, BookNow, Button, type ButtonProps, CTA, CookieConsentForm, Footer, Hero, HeroParallax, Marquee, Masonry, Navbar, Offer, PrettyCard, Ratings, SectionContainer, SectionHeader, SellingPropContainer, SellingProposition, StackedScroller, TestimonialCard, TestimonialDisplay };
|