@retinalabsllc/zairusjs 8.1.50 → 8.1.59
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 +9 -1
- package/dist/index.d.ts +9 -1
- package/dist/index.js +337 -225
- package/dist/index.mjs +306 -195
- 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
|
|
|
@@ -475,4 +477,10 @@ interface ManagedProjectsBlockProps {
|
|
|
475
477
|
}
|
|
476
478
|
declare const ManagedProjectsBlock: React.FC<ManagedProjectsBlockProps>;
|
|
477
479
|
|
|
478
|
-
|
|
480
|
+
interface WaitlistDialogProps {
|
|
481
|
+
isOpen: boolean;
|
|
482
|
+
onClose: () => void;
|
|
483
|
+
}
|
|
484
|
+
declare const WaitlistDialog: React.FC<WaitlistDialogProps>;
|
|
485
|
+
|
|
486
|
+
export { AppBento2, type AppBento2Props, type BentoFeature, type BoardMember, type CompanyDetails, type ConsultantProfile, ConsultantShowcase, type ConsultantShowcaseProps, ContentGridBlock, type ContentGridBlockProps, type DocumentSectionData, type EmailContact, Faq, type FaqItem, type FaqProps, FeatureScroll, type FeatureScrollProps, Footer, type FooterColumn, type FooterLink, type FooterProps, GifFeatureCard, type GifFeatureCardProps, Header, type HeaderLink, type HeaderProps, type AppLogo$1 as HeroAppLogo, HeroSection, type HeroSectionProps, ManagedBoardBlock, type ManagedBoardBlockProps, ManagedContactBlock, type ManagedContactBlockProps, ManagedDocument, type ManagedDocumentProps, ManagedNewsletterSplitBlock, type ManagedNewsletterSplitBlockProps, ManagedNotFoundBlock, type ManagedNotFoundBlockProps, ManagedPricingBlock, type ManagedPricingBlockProps, ManagedProjectsBlock, type ManagedProjectsBlockProps, ManagedToaster, MedicalFeatureStatsBlock, NumberInput, type NumberInputProps, PageSpinner, type PageSpinnerProps, type PlatformFeatureItem, PlatformFeatures, type PlatformFeaturesProps, PortfolioHero, type PortfolioHeroProps, type AppLogo as PricingAppLogo, type PricingFeature, type PricingPlan, type PricingTab, type ProjectItem, type ScrollFeature, type SocialContact, type SocialLink, type StatItem, TextInput, type TextInputProps, ThreeDActionButton, type ThreeDActionButtonProps, ThreeDButton, type ThreeDButtonProps, WaitlistDialog, type WaitlistDialogProps };
|
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
|
|
|
@@ -475,4 +477,10 @@ interface ManagedProjectsBlockProps {
|
|
|
475
477
|
}
|
|
476
478
|
declare const ManagedProjectsBlock: React.FC<ManagedProjectsBlockProps>;
|
|
477
479
|
|
|
478
|
-
|
|
480
|
+
interface WaitlistDialogProps {
|
|
481
|
+
isOpen: boolean;
|
|
482
|
+
onClose: () => void;
|
|
483
|
+
}
|
|
484
|
+
declare const WaitlistDialog: React.FC<WaitlistDialogProps>;
|
|
485
|
+
|
|
486
|
+
export { AppBento2, type AppBento2Props, type BentoFeature, type BoardMember, type CompanyDetails, type ConsultantProfile, ConsultantShowcase, type ConsultantShowcaseProps, ContentGridBlock, type ContentGridBlockProps, type DocumentSectionData, type EmailContact, Faq, type FaqItem, type FaqProps, FeatureScroll, type FeatureScrollProps, Footer, type FooterColumn, type FooterLink, type FooterProps, GifFeatureCard, type GifFeatureCardProps, Header, type HeaderLink, type HeaderProps, type AppLogo$1 as HeroAppLogo, HeroSection, type HeroSectionProps, ManagedBoardBlock, type ManagedBoardBlockProps, ManagedContactBlock, type ManagedContactBlockProps, ManagedDocument, type ManagedDocumentProps, ManagedNewsletterSplitBlock, type ManagedNewsletterSplitBlockProps, ManagedNotFoundBlock, type ManagedNotFoundBlockProps, ManagedPricingBlock, type ManagedPricingBlockProps, ManagedProjectsBlock, type ManagedProjectsBlockProps, ManagedToaster, MedicalFeatureStatsBlock, NumberInput, type NumberInputProps, PageSpinner, type PageSpinnerProps, type PlatformFeatureItem, PlatformFeatures, type PlatformFeaturesProps, PortfolioHero, type PortfolioHeroProps, type AppLogo as PricingAppLogo, type PricingFeature, type PricingPlan, type PricingTab, type ProjectItem, type ScrollFeature, type SocialContact, type SocialLink, type StatItem, TextInput, type TextInputProps, ThreeDActionButton, type ThreeDActionButtonProps, ThreeDButton, type ThreeDButtonProps, WaitlistDialog, type WaitlistDialogProps };
|