@commandcenterio/convert-ui 0.0.9 → 0.0.11
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/index.d.mts +35 -2
- package/dist/index.d.ts +35 -2
- package/dist/index.js +7837 -100
- package/dist/index.mjs +7818 -100
- package/package.json +3 -2
package/dist/index.d.mts
CHANGED
|
@@ -122,8 +122,10 @@ interface FooterProps {
|
|
|
122
122
|
maxLogoHeight?: string;
|
|
123
123
|
leftElement?: JSX.Element;
|
|
124
124
|
openingHours?: OpeningHourType;
|
|
125
|
+
waterMark?: boolean;
|
|
126
|
+
className?: string;
|
|
125
127
|
}
|
|
126
|
-
declare const Footer: ({ links, logo, logoText, newsletter, socialLinks, maxLogoHeight, leftElement, openingHours, }: FooterProps) => react_jsx_runtime.JSX.Element;
|
|
128
|
+
declare const Footer: ({ links, logo, logoText, newsletter, socialLinks, maxLogoHeight, leftElement, openingHours, waterMark, className, }: FooterProps) => react_jsx_runtime.JSX.Element;
|
|
127
129
|
|
|
128
130
|
interface HeroProps {
|
|
129
131
|
styleType: string | 'Bento' | 'Traditional' | 'Image';
|
|
@@ -142,6 +144,15 @@ interface HeroProps {
|
|
|
142
144
|
}
|
|
143
145
|
declare const Hero: ({ styleType, headline, subheadline, children, imageSrc, classNames, imageAlt, imageOverlayOpacity, }: HeroProps) => react_jsx_runtime.JSX.Element;
|
|
144
146
|
|
|
147
|
+
type HeroParallaxProps = {
|
|
148
|
+
products: {
|
|
149
|
+
title: string;
|
|
150
|
+
link: string;
|
|
151
|
+
thumbnail: string;
|
|
152
|
+
}[];
|
|
153
|
+
};
|
|
154
|
+
declare const HeroParallax: ({ products }: HeroParallaxProps) => react_jsx_runtime.JSX.Element;
|
|
155
|
+
|
|
145
156
|
interface MasonryProps {
|
|
146
157
|
children: ReactNode[];
|
|
147
158
|
classNames?: string;
|
|
@@ -149,6 +160,28 @@ interface MasonryProps {
|
|
|
149
160
|
}
|
|
150
161
|
declare const Masonry: React$1.FC<MasonryProps>;
|
|
151
162
|
|
|
163
|
+
type Axis = "X" | "Y";
|
|
164
|
+
type Align = "start" | "center" | "end";
|
|
165
|
+
interface AnimationProps {
|
|
166
|
+
axis?: Axis;
|
|
167
|
+
reverse?: boolean;
|
|
168
|
+
offset: -1 | 0 | 1;
|
|
169
|
+
id: number;
|
|
170
|
+
}
|
|
171
|
+
interface MarqueeComponentProps extends Omit<AnimationProps, "offset" | "id"> {
|
|
172
|
+
align?: Align;
|
|
173
|
+
background?: string;
|
|
174
|
+
duration?: number;
|
|
175
|
+
height?: string;
|
|
176
|
+
gap?: string;
|
|
177
|
+
pauseOnHover?: boolean;
|
|
178
|
+
width?: string;
|
|
179
|
+
className?: string;
|
|
180
|
+
children: React.ReactNode;
|
|
181
|
+
}
|
|
182
|
+
|
|
183
|
+
declare const Marquee: ({ axis, reverse, align, background, duration, height, gap, pauseOnHover, width, className, children, }: MarqueeComponentProps) => react_jsx_runtime.JSX.Element;
|
|
184
|
+
|
|
152
185
|
type LinkTypes = {
|
|
153
186
|
link: string;
|
|
154
187
|
text: string;
|
|
@@ -285,4 +318,4 @@ declare namespace Button {
|
|
|
285
318
|
var displayName: string;
|
|
286
319
|
}
|
|
287
320
|
|
|
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 };
|
|
321
|
+
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
|
@@ -122,8 +122,10 @@ interface FooterProps {
|
|
|
122
122
|
maxLogoHeight?: string;
|
|
123
123
|
leftElement?: JSX.Element;
|
|
124
124
|
openingHours?: OpeningHourType;
|
|
125
|
+
waterMark?: boolean;
|
|
126
|
+
className?: string;
|
|
125
127
|
}
|
|
126
|
-
declare const Footer: ({ links, logo, logoText, newsletter, socialLinks, maxLogoHeight, leftElement, openingHours, }: FooterProps) => react_jsx_runtime.JSX.Element;
|
|
128
|
+
declare const Footer: ({ links, logo, logoText, newsletter, socialLinks, maxLogoHeight, leftElement, openingHours, waterMark, className, }: FooterProps) => react_jsx_runtime.JSX.Element;
|
|
127
129
|
|
|
128
130
|
interface HeroProps {
|
|
129
131
|
styleType: string | 'Bento' | 'Traditional' | 'Image';
|
|
@@ -142,6 +144,15 @@ interface HeroProps {
|
|
|
142
144
|
}
|
|
143
145
|
declare const Hero: ({ styleType, headline, subheadline, children, imageSrc, classNames, imageAlt, imageOverlayOpacity, }: HeroProps) => react_jsx_runtime.JSX.Element;
|
|
144
146
|
|
|
147
|
+
type HeroParallaxProps = {
|
|
148
|
+
products: {
|
|
149
|
+
title: string;
|
|
150
|
+
link: string;
|
|
151
|
+
thumbnail: string;
|
|
152
|
+
}[];
|
|
153
|
+
};
|
|
154
|
+
declare const HeroParallax: ({ products }: HeroParallaxProps) => react_jsx_runtime.JSX.Element;
|
|
155
|
+
|
|
145
156
|
interface MasonryProps {
|
|
146
157
|
children: ReactNode[];
|
|
147
158
|
classNames?: string;
|
|
@@ -149,6 +160,28 @@ interface MasonryProps {
|
|
|
149
160
|
}
|
|
150
161
|
declare const Masonry: React$1.FC<MasonryProps>;
|
|
151
162
|
|
|
163
|
+
type Axis = "X" | "Y";
|
|
164
|
+
type Align = "start" | "center" | "end";
|
|
165
|
+
interface AnimationProps {
|
|
166
|
+
axis?: Axis;
|
|
167
|
+
reverse?: boolean;
|
|
168
|
+
offset: -1 | 0 | 1;
|
|
169
|
+
id: number;
|
|
170
|
+
}
|
|
171
|
+
interface MarqueeComponentProps extends Omit<AnimationProps, "offset" | "id"> {
|
|
172
|
+
align?: Align;
|
|
173
|
+
background?: string;
|
|
174
|
+
duration?: number;
|
|
175
|
+
height?: string;
|
|
176
|
+
gap?: string;
|
|
177
|
+
pauseOnHover?: boolean;
|
|
178
|
+
width?: string;
|
|
179
|
+
className?: string;
|
|
180
|
+
children: React.ReactNode;
|
|
181
|
+
}
|
|
182
|
+
|
|
183
|
+
declare const Marquee: ({ axis, reverse, align, background, duration, height, gap, pauseOnHover, width, className, children, }: MarqueeComponentProps) => react_jsx_runtime.JSX.Element;
|
|
184
|
+
|
|
152
185
|
type LinkTypes = {
|
|
153
186
|
link: string;
|
|
154
187
|
text: string;
|
|
@@ -285,4 +318,4 @@ declare namespace Button {
|
|
|
285
318
|
var displayName: string;
|
|
286
319
|
}
|
|
287
320
|
|
|
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 };
|
|
321
|
+
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 };
|