@retinalabsllc/zairusjs 8.1.60 → 8.1.80
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 +7 -21
- package/dist/index.d.ts +7 -21
- package/dist/index.js +218 -215
- package/dist/index.mjs +260 -257
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -78,39 +78,23 @@ interface AppLogo$1 {
|
|
|
78
78
|
alt: string;
|
|
79
79
|
}
|
|
80
80
|
interface HeroSectionProps {
|
|
81
|
-
/** Optional small pill text at the very top (e.g., "AI Research Company") */
|
|
82
81
|
badgeText?: string;
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
/** The text inside the collaborator cursor tag */
|
|
88
|
-
cursorLabel: string;
|
|
89
|
-
/** Optional subtitle below the main headline */
|
|
82
|
+
titlePrefix?: React.ReactNode;
|
|
83
|
+
/** The text that receives the highlight. Defaults to "Retina" */
|
|
84
|
+
highlightText?: string;
|
|
85
|
+
cursorLabel?: string;
|
|
90
86
|
subtitle?: string;
|
|
91
|
-
/** Primary 3D Button text */
|
|
92
87
|
ctaText?: string;
|
|
93
|
-
/** Primary 3D Button link */
|
|
94
88
|
ctaHref?: string;
|
|
95
|
-
/** Optional Secondary flat white button text */
|
|
96
89
|
secondaryCtaText?: string;
|
|
97
|
-
/** Optional Secondary flat white button link */
|
|
98
90
|
secondaryCtaHref?: string;
|
|
99
|
-
/** Should the App Logos section render? */
|
|
100
91
|
showApps?: boolean;
|
|
101
|
-
/** Optional small text above the logos (e.g., "INTEGRATES WITH") */
|
|
102
92
|
appsText?: string;
|
|
103
|
-
/** Array of logo images to display */
|
|
104
93
|
appLogos?: AppLogo$1[];
|
|
105
|
-
/** Should the bottom dashboard image render? */
|
|
106
94
|
showImage?: boolean;
|
|
107
|
-
/** URL for the dashboard image */
|
|
108
95
|
imageSrc?: string;
|
|
109
|
-
/** URL for the background video (mp4, webm) */
|
|
110
96
|
bgVideoSrc?: string;
|
|
111
|
-
/** URL for the background image (serves as the poster/fallback for the video) */
|
|
112
97
|
bgImageSrc?: string;
|
|
113
|
-
/** If true, the primary CTA opens the Waitlist Dialog instead of linking */
|
|
114
98
|
isWaitlist?: boolean;
|
|
115
99
|
}
|
|
116
100
|
declare const HeroSection: React.FC<HeroSectionProps>;
|
|
@@ -401,10 +385,12 @@ interface ConsultantProfile {
|
|
|
401
385
|
id: string | number;
|
|
402
386
|
name: string;
|
|
403
387
|
role: string;
|
|
388
|
+
/** Generic text field to display under the role (replaces static 'Experience' text) */
|
|
404
389
|
description?: string;
|
|
405
390
|
imageSrc: string;
|
|
406
391
|
}
|
|
407
392
|
interface ConsultantShowcaseProps {
|
|
393
|
+
/** Array of profiles to display in the swipeable showcase */
|
|
408
394
|
profiles: ConsultantProfile[];
|
|
409
395
|
}
|
|
410
396
|
declare const ConsultantShowcase: React.FC<ConsultantShowcaseProps>;
|
|
@@ -463,7 +449,7 @@ interface ProjectItem {
|
|
|
463
449
|
link: string;
|
|
464
450
|
/** If true, uses a standard <a> tag with target="_blank" instead of next/link */
|
|
465
451
|
isExternal?: boolean;
|
|
466
|
-
/** Badge text. If "Production", it gets highlighted. */
|
|
452
|
+
/** Badge text. If "Production", it gets highlighted in black. */
|
|
467
453
|
status: string;
|
|
468
454
|
description: string;
|
|
469
455
|
}
|
package/dist/index.d.ts
CHANGED
|
@@ -78,39 +78,23 @@ interface AppLogo$1 {
|
|
|
78
78
|
alt: string;
|
|
79
79
|
}
|
|
80
80
|
interface HeroSectionProps {
|
|
81
|
-
/** Optional small pill text at the very top (e.g., "AI Research Company") */
|
|
82
81
|
badgeText?: string;
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
/** The text inside the collaborator cursor tag */
|
|
88
|
-
cursorLabel: string;
|
|
89
|
-
/** Optional subtitle below the main headline */
|
|
82
|
+
titlePrefix?: React.ReactNode;
|
|
83
|
+
/** The text that receives the highlight. Defaults to "Retina" */
|
|
84
|
+
highlightText?: string;
|
|
85
|
+
cursorLabel?: string;
|
|
90
86
|
subtitle?: string;
|
|
91
|
-
/** Primary 3D Button text */
|
|
92
87
|
ctaText?: string;
|
|
93
|
-
/** Primary 3D Button link */
|
|
94
88
|
ctaHref?: string;
|
|
95
|
-
/** Optional Secondary flat white button text */
|
|
96
89
|
secondaryCtaText?: string;
|
|
97
|
-
/** Optional Secondary flat white button link */
|
|
98
90
|
secondaryCtaHref?: string;
|
|
99
|
-
/** Should the App Logos section render? */
|
|
100
91
|
showApps?: boolean;
|
|
101
|
-
/** Optional small text above the logos (e.g., "INTEGRATES WITH") */
|
|
102
92
|
appsText?: string;
|
|
103
|
-
/** Array of logo images to display */
|
|
104
93
|
appLogos?: AppLogo$1[];
|
|
105
|
-
/** Should the bottom dashboard image render? */
|
|
106
94
|
showImage?: boolean;
|
|
107
|
-
/** URL for the dashboard image */
|
|
108
95
|
imageSrc?: string;
|
|
109
|
-
/** URL for the background video (mp4, webm) */
|
|
110
96
|
bgVideoSrc?: string;
|
|
111
|
-
/** URL for the background image (serves as the poster/fallback for the video) */
|
|
112
97
|
bgImageSrc?: string;
|
|
113
|
-
/** If true, the primary CTA opens the Waitlist Dialog instead of linking */
|
|
114
98
|
isWaitlist?: boolean;
|
|
115
99
|
}
|
|
116
100
|
declare const HeroSection: React.FC<HeroSectionProps>;
|
|
@@ -401,10 +385,12 @@ interface ConsultantProfile {
|
|
|
401
385
|
id: string | number;
|
|
402
386
|
name: string;
|
|
403
387
|
role: string;
|
|
388
|
+
/** Generic text field to display under the role (replaces static 'Experience' text) */
|
|
404
389
|
description?: string;
|
|
405
390
|
imageSrc: string;
|
|
406
391
|
}
|
|
407
392
|
interface ConsultantShowcaseProps {
|
|
393
|
+
/** Array of profiles to display in the swipeable showcase */
|
|
408
394
|
profiles: ConsultantProfile[];
|
|
409
395
|
}
|
|
410
396
|
declare const ConsultantShowcase: React.FC<ConsultantShowcaseProps>;
|
|
@@ -463,7 +449,7 @@ interface ProjectItem {
|
|
|
463
449
|
link: string;
|
|
464
450
|
/** If true, uses a standard <a> tag with target="_blank" instead of next/link */
|
|
465
451
|
isExternal?: boolean;
|
|
466
|
-
/** Badge text. If "Production", it gets highlighted. */
|
|
452
|
+
/** Badge text. If "Production", it gets highlighted in black. */
|
|
467
453
|
status: string;
|
|
468
454
|
description: string;
|
|
469
455
|
}
|