@retinalabsllc/zairusjs 8.1.60 → 8.1.65

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