@opensite/ui 2.0.8 → 2.1.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/dist/hero-agency-animated-images.cjs +4 -4
- package/dist/hero-agency-animated-images.js +4 -4
- package/dist/hero-business-carousel-dots.cjs +46 -36
- package/dist/hero-business-carousel-dots.js +46 -36
- package/dist/hero-coming-soon-countdown.cjs +93 -54
- package/dist/hero-coming-soon-countdown.d.cts +31 -6
- package/dist/hero-coming-soon-countdown.d.ts +31 -6
- package/dist/hero-coming-soon-countdown.js +93 -54
- package/dist/hero-creative-studio-stacked.cjs +9 -6
- package/dist/hero-creative-studio-stacked.d.cts +5 -1
- package/dist/hero-creative-studio-stacked.d.ts +5 -1
- package/dist/hero-creative-studio-stacked.js +9 -6
- package/dist/hero-customer-support-layered.cjs +1 -1
- package/dist/hero-customer-support-layered.js +1 -1
- package/dist/hero-developer-tools-code.cjs +2 -2
- package/dist/hero-developer-tools-code.js +2 -2
- package/dist/hero-digital-agency-fullscreen.cjs +14 -12
- package/dist/hero-digital-agency-fullscreen.d.cts +1 -1
- package/dist/hero-digital-agency-fullscreen.d.ts +1 -1
- package/dist/hero-digital-agency-fullscreen.js +14 -12
- package/dist/hero-ecommerce-product-showcase.cjs +76 -57
- package/dist/hero-ecommerce-product-showcase.js +76 -57
- package/dist/hero-enterprise-security.cjs +81 -60
- package/dist/hero-enterprise-security.js +81 -60
- package/dist/hero-event-registration.cjs +43 -10
- package/dist/hero-event-registration.js +43 -10
- package/dist/hero-hiring-animated-text.cjs +661 -639
- package/dist/hero-hiring-animated-text.d.cts +1 -9
- package/dist/hero-hiring-animated-text.d.ts +1 -9
- package/dist/hero-hiring-animated-text.js +657 -635
- package/dist/hero-saas-dashboard-preview.cjs +88 -46
- package/dist/hero-saas-dashboard-preview.d.cts +34 -19
- package/dist/hero-saas-dashboard-preview.d.ts +34 -19
- package/dist/hero-saas-dashboard-preview.js +89 -47
- package/dist/hero-split-image-newsletter.cjs +91 -49
- package/dist/hero-split-image-newsletter.d.cts +33 -18
- package/dist/hero-split-image-newsletter.d.ts +33 -18
- package/dist/hero-split-image-newsletter.js +92 -50
- package/dist/hero-startup-launch-cta.cjs +2 -2
- package/dist/hero-startup-launch-cta.js +2 -2
- package/dist/registry.cjs +556 -345
- package/dist/registry.js +556 -345
- package/package.json +1 -1
|
@@ -31,14 +31,6 @@ interface HeroHiringAnimatedTextProps {
|
|
|
31
31
|
* Custom slot for rendering actions (overrides actions array)
|
|
32
32
|
*/
|
|
33
33
|
actionsSlot?: React.ReactNode;
|
|
34
|
-
/**
|
|
35
|
-
* Scroll action configuration
|
|
36
|
-
*/
|
|
37
|
-
scrollAction?: ActionConfig;
|
|
38
|
-
/**
|
|
39
|
-
* Custom slot for scroll action (overrides scrollAction prop)
|
|
40
|
-
*/
|
|
41
|
-
scrollActionSlot?: React.ReactNode;
|
|
42
34
|
/**
|
|
43
35
|
* Background image URL
|
|
44
36
|
*/
|
|
@@ -83,6 +75,6 @@ interface HeroHiringAnimatedTextProps {
|
|
|
83
75
|
*/
|
|
84
76
|
actionsClassName?: string;
|
|
85
77
|
}
|
|
86
|
-
declare function HeroHiringAnimatedText({ headingPrefix, animatedTexts, headingSlot, description, actions, actionsSlot,
|
|
78
|
+
declare function HeroHiringAnimatedText({ headingPrefix, animatedTexts, headingSlot, description, actions, actionsSlot, backgroundImage, background, pattern, patternOpacity, className, spacing, containerClassName, contentClassName, headingClassName, descriptionClassName, actionsClassName, }: HeroHiringAnimatedTextProps): React.JSX.Element;
|
|
87
79
|
|
|
88
80
|
export { HeroHiringAnimatedText, type HeroHiringAnimatedTextProps };
|
|
@@ -31,14 +31,6 @@ interface HeroHiringAnimatedTextProps {
|
|
|
31
31
|
* Custom slot for rendering actions (overrides actions array)
|
|
32
32
|
*/
|
|
33
33
|
actionsSlot?: React.ReactNode;
|
|
34
|
-
/**
|
|
35
|
-
* Scroll action configuration
|
|
36
|
-
*/
|
|
37
|
-
scrollAction?: ActionConfig;
|
|
38
|
-
/**
|
|
39
|
-
* Custom slot for scroll action (overrides scrollAction prop)
|
|
40
|
-
*/
|
|
41
|
-
scrollActionSlot?: React.ReactNode;
|
|
42
34
|
/**
|
|
43
35
|
* Background image URL
|
|
44
36
|
*/
|
|
@@ -83,6 +75,6 @@ interface HeroHiringAnimatedTextProps {
|
|
|
83
75
|
*/
|
|
84
76
|
actionsClassName?: string;
|
|
85
77
|
}
|
|
86
|
-
declare function HeroHiringAnimatedText({ headingPrefix, animatedTexts, headingSlot, description, actions, actionsSlot,
|
|
78
|
+
declare function HeroHiringAnimatedText({ headingPrefix, animatedTexts, headingSlot, description, actions, actionsSlot, backgroundImage, background, pattern, patternOpacity, className, spacing, containerClassName, contentClassName, headingClassName, descriptionClassName, actionsClassName, }: HeroHiringAnimatedTextProps): React.JSX.Element;
|
|
87
79
|
|
|
88
80
|
export { HeroHiringAnimatedText, type HeroHiringAnimatedTextProps };
|