@retinalabsllc/zairusjs 0.7.8 → 0.7.9
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 +116 -3
- package/dist/index.d.ts +116 -3
- package/dist/index.js +923 -553
- package/dist/index.mjs +640 -273
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -5,8 +5,11 @@ interface FaqItem {
|
|
|
5
5
|
answer: string;
|
|
6
6
|
}
|
|
7
7
|
interface FaqProps {
|
|
8
|
-
|
|
9
|
-
|
|
8
|
+
/** The small badge text at the top left */
|
|
9
|
+
badgeText?: string;
|
|
10
|
+
/** Main headline */
|
|
11
|
+
title?: React.ReactNode;
|
|
12
|
+
/** Array of questions and answers */
|
|
10
13
|
items: FaqItem[];
|
|
11
14
|
}
|
|
12
15
|
declare const Faq: React.FC<FaqProps>;
|
|
@@ -104,6 +107,10 @@ interface FooterProps {
|
|
|
104
107
|
}
|
|
105
108
|
declare const Footer: React.FC<FooterProps>;
|
|
106
109
|
|
|
110
|
+
interface AppLogo$1 {
|
|
111
|
+
src: string;
|
|
112
|
+
alt: string;
|
|
113
|
+
}
|
|
107
114
|
interface HeroSectionProps {
|
|
108
115
|
/** Optional small pill text at the very top (e.g., "AI Research Company") */
|
|
109
116
|
badgeText?: string;
|
|
@@ -123,6 +130,12 @@ interface HeroSectionProps {
|
|
|
123
130
|
secondaryCtaText?: string;
|
|
124
131
|
/** Optional Secondary flat white button link */
|
|
125
132
|
secondaryCtaHref?: string;
|
|
133
|
+
/** Should the App Logos section render? */
|
|
134
|
+
showApps?: boolean;
|
|
135
|
+
/** Optional small text above the logos (e.g., "INTEGRATES WITH") */
|
|
136
|
+
appsText?: string;
|
|
137
|
+
/** Array of logo images to display */
|
|
138
|
+
appLogos?: AppLogo$1[];
|
|
126
139
|
/** Should the bottom dashboard image render? */
|
|
127
140
|
showImage?: boolean;
|
|
128
141
|
/** URL for the dashboard image */
|
|
@@ -238,6 +251,10 @@ interface ManagedContactBlockProps {
|
|
|
238
251
|
}
|
|
239
252
|
declare const ManagedContactBlock: React.FC<ManagedContactBlockProps>;
|
|
240
253
|
|
|
254
|
+
interface AppLogo {
|
|
255
|
+
src: string;
|
|
256
|
+
alt: string;
|
|
257
|
+
}
|
|
241
258
|
interface PricingFeature {
|
|
242
259
|
name: string;
|
|
243
260
|
/** true = Checkmark, false = Cross, string = Checkmark with text (e.g., "3 Months") */
|
|
@@ -248,6 +265,10 @@ interface PricingPlan {
|
|
|
248
265
|
price: string;
|
|
249
266
|
period?: string;
|
|
250
267
|
description: string;
|
|
268
|
+
/** If true, displays the array of app logos below the description */
|
|
269
|
+
showApps?: boolean;
|
|
270
|
+
/** Array of small square logos to display */
|
|
271
|
+
appLogos?: AppLogo[];
|
|
251
272
|
ctaText: string;
|
|
252
273
|
ctaHref: string;
|
|
253
274
|
/** If true, uses the ThreeDButton and adds premium border styling */
|
|
@@ -902,4 +923,96 @@ interface UniversalDeveloperSettingsProps {
|
|
|
902
923
|
}
|
|
903
924
|
declare const UniversalDeveloperSettings: React.FC<UniversalDeveloperSettingsProps>;
|
|
904
925
|
|
|
905
|
-
|
|
926
|
+
interface FeatureItem {
|
|
927
|
+
/** Title of the feature card (only used if layout is 'text-top') */
|
|
928
|
+
title?: string;
|
|
929
|
+
/** Description of the feature card (only used if layout is 'text-top') */
|
|
930
|
+
description?: string;
|
|
931
|
+
/** URL of the image */
|
|
932
|
+
imageSrc: string;
|
|
933
|
+
/** Alt text for accessibility */
|
|
934
|
+
imageAlt?: string;
|
|
935
|
+
/** Determines the card style. 'full-image' fills the card, 'text-top' places text above an inset image */
|
|
936
|
+
layout: 'full-image' | 'text-top';
|
|
937
|
+
}
|
|
938
|
+
interface StatItem {
|
|
939
|
+
/** The small text label above the number */
|
|
940
|
+
label: string;
|
|
941
|
+
/** The large stat number (e.g., "12K+") */
|
|
942
|
+
value: string;
|
|
943
|
+
}
|
|
944
|
+
interface MedicalFeatureStatsBlockProps {
|
|
945
|
+
features: FeatureItem[];
|
|
946
|
+
/** Main headline for the bottom section */
|
|
947
|
+
bottomHeadline: React.ReactNode;
|
|
948
|
+
/** Paragraph text below the bottom headline */
|
|
949
|
+
bottomDescription: string;
|
|
950
|
+
/** Array of image URLs for the small avatar group */
|
|
951
|
+
avatars: string[];
|
|
952
|
+
/** Text displayed next to the avatars */
|
|
953
|
+
trustText: string;
|
|
954
|
+
/** Array of stat items to display in the large boxes */
|
|
955
|
+
stats: StatItem[];
|
|
956
|
+
}
|
|
957
|
+
declare const MedicalFeatureStatsBlock: React.FC<MedicalFeatureStatsBlockProps>;
|
|
958
|
+
|
|
959
|
+
interface ConsultantProfile {
|
|
960
|
+
id: string | number;
|
|
961
|
+
name: string;
|
|
962
|
+
role: string;
|
|
963
|
+
/** Generic text field to display under the role (replaces static 'Experience' text) */
|
|
964
|
+
description?: string;
|
|
965
|
+
imageSrc: string;
|
|
966
|
+
}
|
|
967
|
+
interface ConsultantShowcaseProps {
|
|
968
|
+
/** Array of profiles to display in the swipeable showcase */
|
|
969
|
+
profiles: ConsultantProfile[];
|
|
970
|
+
}
|
|
971
|
+
declare const ConsultantShowcase: React.FC<ConsultantShowcaseProps>;
|
|
972
|
+
|
|
973
|
+
interface ContentGridBlockProps {
|
|
974
|
+
/** Top Header Section Data */
|
|
975
|
+
header: {
|
|
976
|
+
titlePrefix: string;
|
|
977
|
+
/** The text that receives the highlighted styling */
|
|
978
|
+
highlightText: string;
|
|
979
|
+
};
|
|
980
|
+
/** Data for the bottom-left text card */
|
|
981
|
+
leftCard: {
|
|
982
|
+
mainText: string;
|
|
983
|
+
tag?: string;
|
|
984
|
+
title: string;
|
|
985
|
+
subtitle: string;
|
|
986
|
+
thumbnailSrc: string;
|
|
987
|
+
};
|
|
988
|
+
/** Data for the top-middle stats/info card */
|
|
989
|
+
middleTopCard: {
|
|
990
|
+
topRightLabel: string;
|
|
991
|
+
topRightAvatars: string[];
|
|
992
|
+
topRightCount: string;
|
|
993
|
+
badgePrefix: string;
|
|
994
|
+
badgeHighlight: string | number;
|
|
995
|
+
badgeSuffix: string;
|
|
996
|
+
title: string;
|
|
997
|
+
description: string;
|
|
998
|
+
};
|
|
999
|
+
/** Data for the bottom-middle text card */
|
|
1000
|
+
middleBottomCard: {
|
|
1001
|
+
title: string;
|
|
1002
|
+
subtitle: string;
|
|
1003
|
+
thumbnailSrc: string;
|
|
1004
|
+
mainText: string;
|
|
1005
|
+
tag?: string;
|
|
1006
|
+
};
|
|
1007
|
+
/** Data for the two right-side image background cards */
|
|
1008
|
+
rightCards: Array<{
|
|
1009
|
+
bgImageSrc: string;
|
|
1010
|
+
mainText: string;
|
|
1011
|
+
tag?: string;
|
|
1012
|
+
title: string;
|
|
1013
|
+
subtitle: string;
|
|
1014
|
+
}>;
|
|
1015
|
+
}
|
|
1016
|
+
declare const ContentGridBlock: React.FC<ContentGridBlockProps>;
|
|
1017
|
+
|
|
1018
|
+
export { AITranscriptionFeature, type AITranscriptionFeatureProps, type AgentFilePayload, type AgentStat, AiApproveDecline, type AiApproveDeclineProps, AiStageCheck, type AiStageCheckProps, type AiTask, type AiTaskStatus, AppBento2, type AppBento2Props, Banner, type BannerProps, type BentoFeature, type BoardMember, type CompanyDetails, type CompanyMember, type ConsultantProfile, ConsultantShowcase, type ConsultantShowcaseProps, ContentGridBlock, type ContentGridBlockProps, type DashboardList, type DashboardListItem, type DashboardStat, type DocumentSectionData, type EmailContact, Faq, type FaqItem, type FaqProps, type FeatureItem, 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, type MedicalFeatureStatsBlockProps, type NavItem, NumberInput, type NumberInputProps, type OverviewAlert, type OverviewStat, PageSpinner, type PageSpinnerProps, type PlatformFeatureItem, PlatformFeatures, type PlatformFeaturesProps, PortfolioHero, type PortfolioHeroProps, type AppLogo as PricingAppLogo, type PricingFeature, type PricingPlan, ProductHero, type ProductHeroProps, type ProjectItem, type ScrollFeature, type SearchTypeOption, type SocialContact, type SocialLink, Stagger, type StaggerProps, type StatItem, TextInput, type TextInputProps, ThreeDActionButton, type ThreeDActionButtonProps, ThreeDButton, type ThreeDButtonProps, UniversalAgentConsole, type UniversalAgentConsoleProps, UniversalBillingPage, type UniversalBillingPageProps, UniversalDashboardPage, type UniversalDashboardPageProps, UniversalDeveloperSettings, type UniversalDeveloperSettingsProps, UniversalDirectoryPage, type UniversalDirectoryPageProps, UniversalErrorView, type UniversalErrorViewProps, UniversalIdentityPage, type UniversalIdentityPageProps, type UniversalInvoice, UniversalLookupPage, type UniversalLookupPageProps, type UniversalMember, UniversalMembersPage, type UniversalMembersPageProps, UniversalOrganizationPage, type UniversalOrganizationPageProps, UniversalOverviewPage, type UniversalOverviewPageProps, UniversalProfileSettings, type UniversalProfileSettingsProps, UniversalRegistrationFlow, type UniversalRegistrationFlowProps, UniversalSidebar, type UniversalSidebarProps, type WorkspaceItem, ZairusAuth, type ZairusAuthProps };
|
package/dist/index.d.ts
CHANGED
|
@@ -5,8 +5,11 @@ interface FaqItem {
|
|
|
5
5
|
answer: string;
|
|
6
6
|
}
|
|
7
7
|
interface FaqProps {
|
|
8
|
-
|
|
9
|
-
|
|
8
|
+
/** The small badge text at the top left */
|
|
9
|
+
badgeText?: string;
|
|
10
|
+
/** Main headline */
|
|
11
|
+
title?: React.ReactNode;
|
|
12
|
+
/** Array of questions and answers */
|
|
10
13
|
items: FaqItem[];
|
|
11
14
|
}
|
|
12
15
|
declare const Faq: React.FC<FaqProps>;
|
|
@@ -104,6 +107,10 @@ interface FooterProps {
|
|
|
104
107
|
}
|
|
105
108
|
declare const Footer: React.FC<FooterProps>;
|
|
106
109
|
|
|
110
|
+
interface AppLogo$1 {
|
|
111
|
+
src: string;
|
|
112
|
+
alt: string;
|
|
113
|
+
}
|
|
107
114
|
interface HeroSectionProps {
|
|
108
115
|
/** Optional small pill text at the very top (e.g., "AI Research Company") */
|
|
109
116
|
badgeText?: string;
|
|
@@ -123,6 +130,12 @@ interface HeroSectionProps {
|
|
|
123
130
|
secondaryCtaText?: string;
|
|
124
131
|
/** Optional Secondary flat white button link */
|
|
125
132
|
secondaryCtaHref?: string;
|
|
133
|
+
/** Should the App Logos section render? */
|
|
134
|
+
showApps?: boolean;
|
|
135
|
+
/** Optional small text above the logos (e.g., "INTEGRATES WITH") */
|
|
136
|
+
appsText?: string;
|
|
137
|
+
/** Array of logo images to display */
|
|
138
|
+
appLogos?: AppLogo$1[];
|
|
126
139
|
/** Should the bottom dashboard image render? */
|
|
127
140
|
showImage?: boolean;
|
|
128
141
|
/** URL for the dashboard image */
|
|
@@ -238,6 +251,10 @@ interface ManagedContactBlockProps {
|
|
|
238
251
|
}
|
|
239
252
|
declare const ManagedContactBlock: React.FC<ManagedContactBlockProps>;
|
|
240
253
|
|
|
254
|
+
interface AppLogo {
|
|
255
|
+
src: string;
|
|
256
|
+
alt: string;
|
|
257
|
+
}
|
|
241
258
|
interface PricingFeature {
|
|
242
259
|
name: string;
|
|
243
260
|
/** true = Checkmark, false = Cross, string = Checkmark with text (e.g., "3 Months") */
|
|
@@ -248,6 +265,10 @@ interface PricingPlan {
|
|
|
248
265
|
price: string;
|
|
249
266
|
period?: string;
|
|
250
267
|
description: string;
|
|
268
|
+
/** If true, displays the array of app logos below the description */
|
|
269
|
+
showApps?: boolean;
|
|
270
|
+
/** Array of small square logos to display */
|
|
271
|
+
appLogos?: AppLogo[];
|
|
251
272
|
ctaText: string;
|
|
252
273
|
ctaHref: string;
|
|
253
274
|
/** If true, uses the ThreeDButton and adds premium border styling */
|
|
@@ -902,4 +923,96 @@ interface UniversalDeveloperSettingsProps {
|
|
|
902
923
|
}
|
|
903
924
|
declare const UniversalDeveloperSettings: React.FC<UniversalDeveloperSettingsProps>;
|
|
904
925
|
|
|
905
|
-
|
|
926
|
+
interface FeatureItem {
|
|
927
|
+
/** Title of the feature card (only used if layout is 'text-top') */
|
|
928
|
+
title?: string;
|
|
929
|
+
/** Description of the feature card (only used if layout is 'text-top') */
|
|
930
|
+
description?: string;
|
|
931
|
+
/** URL of the image */
|
|
932
|
+
imageSrc: string;
|
|
933
|
+
/** Alt text for accessibility */
|
|
934
|
+
imageAlt?: string;
|
|
935
|
+
/** Determines the card style. 'full-image' fills the card, 'text-top' places text above an inset image */
|
|
936
|
+
layout: 'full-image' | 'text-top';
|
|
937
|
+
}
|
|
938
|
+
interface StatItem {
|
|
939
|
+
/** The small text label above the number */
|
|
940
|
+
label: string;
|
|
941
|
+
/** The large stat number (e.g., "12K+") */
|
|
942
|
+
value: string;
|
|
943
|
+
}
|
|
944
|
+
interface MedicalFeatureStatsBlockProps {
|
|
945
|
+
features: FeatureItem[];
|
|
946
|
+
/** Main headline for the bottom section */
|
|
947
|
+
bottomHeadline: React.ReactNode;
|
|
948
|
+
/** Paragraph text below the bottom headline */
|
|
949
|
+
bottomDescription: string;
|
|
950
|
+
/** Array of image URLs for the small avatar group */
|
|
951
|
+
avatars: string[];
|
|
952
|
+
/** Text displayed next to the avatars */
|
|
953
|
+
trustText: string;
|
|
954
|
+
/** Array of stat items to display in the large boxes */
|
|
955
|
+
stats: StatItem[];
|
|
956
|
+
}
|
|
957
|
+
declare const MedicalFeatureStatsBlock: React.FC<MedicalFeatureStatsBlockProps>;
|
|
958
|
+
|
|
959
|
+
interface ConsultantProfile {
|
|
960
|
+
id: string | number;
|
|
961
|
+
name: string;
|
|
962
|
+
role: string;
|
|
963
|
+
/** Generic text field to display under the role (replaces static 'Experience' text) */
|
|
964
|
+
description?: string;
|
|
965
|
+
imageSrc: string;
|
|
966
|
+
}
|
|
967
|
+
interface ConsultantShowcaseProps {
|
|
968
|
+
/** Array of profiles to display in the swipeable showcase */
|
|
969
|
+
profiles: ConsultantProfile[];
|
|
970
|
+
}
|
|
971
|
+
declare const ConsultantShowcase: React.FC<ConsultantShowcaseProps>;
|
|
972
|
+
|
|
973
|
+
interface ContentGridBlockProps {
|
|
974
|
+
/** Top Header Section Data */
|
|
975
|
+
header: {
|
|
976
|
+
titlePrefix: string;
|
|
977
|
+
/** The text that receives the highlighted styling */
|
|
978
|
+
highlightText: string;
|
|
979
|
+
};
|
|
980
|
+
/** Data for the bottom-left text card */
|
|
981
|
+
leftCard: {
|
|
982
|
+
mainText: string;
|
|
983
|
+
tag?: string;
|
|
984
|
+
title: string;
|
|
985
|
+
subtitle: string;
|
|
986
|
+
thumbnailSrc: string;
|
|
987
|
+
};
|
|
988
|
+
/** Data for the top-middle stats/info card */
|
|
989
|
+
middleTopCard: {
|
|
990
|
+
topRightLabel: string;
|
|
991
|
+
topRightAvatars: string[];
|
|
992
|
+
topRightCount: string;
|
|
993
|
+
badgePrefix: string;
|
|
994
|
+
badgeHighlight: string | number;
|
|
995
|
+
badgeSuffix: string;
|
|
996
|
+
title: string;
|
|
997
|
+
description: string;
|
|
998
|
+
};
|
|
999
|
+
/** Data for the bottom-middle text card */
|
|
1000
|
+
middleBottomCard: {
|
|
1001
|
+
title: string;
|
|
1002
|
+
subtitle: string;
|
|
1003
|
+
thumbnailSrc: string;
|
|
1004
|
+
mainText: string;
|
|
1005
|
+
tag?: string;
|
|
1006
|
+
};
|
|
1007
|
+
/** Data for the two right-side image background cards */
|
|
1008
|
+
rightCards: Array<{
|
|
1009
|
+
bgImageSrc: string;
|
|
1010
|
+
mainText: string;
|
|
1011
|
+
tag?: string;
|
|
1012
|
+
title: string;
|
|
1013
|
+
subtitle: string;
|
|
1014
|
+
}>;
|
|
1015
|
+
}
|
|
1016
|
+
declare const ContentGridBlock: React.FC<ContentGridBlockProps>;
|
|
1017
|
+
|
|
1018
|
+
export { AITranscriptionFeature, type AITranscriptionFeatureProps, type AgentFilePayload, type AgentStat, AiApproveDecline, type AiApproveDeclineProps, AiStageCheck, type AiStageCheckProps, type AiTask, type AiTaskStatus, AppBento2, type AppBento2Props, Banner, type BannerProps, type BentoFeature, type BoardMember, type CompanyDetails, type CompanyMember, type ConsultantProfile, ConsultantShowcase, type ConsultantShowcaseProps, ContentGridBlock, type ContentGridBlockProps, type DashboardList, type DashboardListItem, type DashboardStat, type DocumentSectionData, type EmailContact, Faq, type FaqItem, type FaqProps, type FeatureItem, 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, type MedicalFeatureStatsBlockProps, type NavItem, NumberInput, type NumberInputProps, type OverviewAlert, type OverviewStat, PageSpinner, type PageSpinnerProps, type PlatformFeatureItem, PlatformFeatures, type PlatformFeaturesProps, PortfolioHero, type PortfolioHeroProps, type AppLogo as PricingAppLogo, type PricingFeature, type PricingPlan, ProductHero, type ProductHeroProps, type ProjectItem, type ScrollFeature, type SearchTypeOption, type SocialContact, type SocialLink, Stagger, type StaggerProps, type StatItem, TextInput, type TextInputProps, ThreeDActionButton, type ThreeDActionButtonProps, ThreeDButton, type ThreeDButtonProps, UniversalAgentConsole, type UniversalAgentConsoleProps, UniversalBillingPage, type UniversalBillingPageProps, UniversalDashboardPage, type UniversalDashboardPageProps, UniversalDeveloperSettings, type UniversalDeveloperSettingsProps, UniversalDirectoryPage, type UniversalDirectoryPageProps, UniversalErrorView, type UniversalErrorViewProps, UniversalIdentityPage, type UniversalIdentityPageProps, type UniversalInvoice, UniversalLookupPage, type UniversalLookupPageProps, type UniversalMember, UniversalMembersPage, type UniversalMembersPageProps, UniversalOrganizationPage, type UniversalOrganizationPageProps, UniversalOverviewPage, type UniversalOverviewPageProps, UniversalProfileSettings, type UniversalProfileSettingsProps, UniversalRegistrationFlow, type UniversalRegistrationFlowProps, UniversalSidebar, type UniversalSidebarProps, type WorkspaceItem, ZairusAuth, type ZairusAuthProps };
|