@retinalabsllc/zairusjs 8.1.55 → 8.1.60
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 +2 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.js +329 -308
- package/dist/index.mjs +300 -279
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -110,6 +110,8 @@ interface HeroSectionProps {
|
|
|
110
110
|
bgVideoSrc?: string;
|
|
111
111
|
/** URL for the background image (serves as the poster/fallback for the video) */
|
|
112
112
|
bgImageSrc?: string;
|
|
113
|
+
/** If true, the primary CTA opens the Waitlist Dialog instead of linking */
|
|
114
|
+
isWaitlist?: boolean;
|
|
113
115
|
}
|
|
114
116
|
declare const HeroSection: React.FC<HeroSectionProps>;
|
|
115
117
|
|
package/dist/index.d.ts
CHANGED
|
@@ -110,6 +110,8 @@ interface HeroSectionProps {
|
|
|
110
110
|
bgVideoSrc?: string;
|
|
111
111
|
/** URL for the background image (serves as the poster/fallback for the video) */
|
|
112
112
|
bgImageSrc?: string;
|
|
113
|
+
/** If true, the primary CTA opens the Waitlist Dialog instead of linking */
|
|
114
|
+
isWaitlist?: boolean;
|
|
113
115
|
}
|
|
114
116
|
declare const HeroSection: React.FC<HeroSectionProps>;
|
|
115
117
|
|