@retinalabsllc/zairusjs 4.0.19 → 4.0.21
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 +89 -1
- package/dist/index.d.ts +89 -1
- package/dist/index.js +924 -665
- package/dist/index.mjs +870 -605
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -66,6 +66,23 @@ interface ZairusAuthProps {
|
|
|
66
66
|
}
|
|
67
67
|
declare const ZairusAuth: React.FC<ZairusAuthProps>;
|
|
68
68
|
|
|
69
|
+
interface ZairusShareProps {
|
|
70
|
+
fileName: string;
|
|
71
|
+
fileSize: string;
|
|
72
|
+
useRecaptcha?: boolean;
|
|
73
|
+
recaptchaSiteKey?: string;
|
|
74
|
+
/**
|
|
75
|
+
* The download handler.
|
|
76
|
+
* It provides the recaptcha token (if enabled) and an `updateProgress` callback
|
|
77
|
+
* so your parent page can stream the chunk decryption progress (0 to 100) to the UI.
|
|
78
|
+
*/
|
|
79
|
+
onDownloadRequest: (recaptchaToken: string | undefined, updateProgress: (percent: number) => void) => Promise<{
|
|
80
|
+
success: boolean;
|
|
81
|
+
error?: string;
|
|
82
|
+
}>;
|
|
83
|
+
}
|
|
84
|
+
declare const ZairusShareCard: React.FC<ZairusShareProps>;
|
|
85
|
+
|
|
69
86
|
interface HeaderLink {
|
|
70
87
|
label: string;
|
|
71
88
|
href: string;
|
|
@@ -1045,6 +1062,27 @@ interface UniversalDeveloperSettingsProps {
|
|
|
1045
1062
|
}
|
|
1046
1063
|
declare const UniversalDeveloperSettings: React.FC<UniversalDeveloperSettingsProps>;
|
|
1047
1064
|
|
|
1065
|
+
interface AppLibraryItem$1 {
|
|
1066
|
+
id: string;
|
|
1067
|
+
name: string;
|
|
1068
|
+
category: string;
|
|
1069
|
+
logoSrc: string;
|
|
1070
|
+
onClick?: () => void;
|
|
1071
|
+
}
|
|
1072
|
+
interface AppLibraryCategory {
|
|
1073
|
+
id: string;
|
|
1074
|
+
title: string;
|
|
1075
|
+
apps: AppLibraryItem$1[];
|
|
1076
|
+
seeMoreLabel?: string;
|
|
1077
|
+
onSeeMore?: () => void;
|
|
1078
|
+
}
|
|
1079
|
+
interface UniversalAppLibraryProps {
|
|
1080
|
+
tagline?: string;
|
|
1081
|
+
headline?: React.ReactNode;
|
|
1082
|
+
categories: AppLibraryCategory[];
|
|
1083
|
+
}
|
|
1084
|
+
declare const UniversalAppLibrary: React.FC<UniversalAppLibraryProps>;
|
|
1085
|
+
|
|
1048
1086
|
interface StatItem {
|
|
1049
1087
|
/** The small text label above the number */
|
|
1050
1088
|
label: string;
|
|
@@ -1124,4 +1162,54 @@ interface ContentGridBlockProps {
|
|
|
1124
1162
|
}
|
|
1125
1163
|
declare const ContentGridBlock: React.FC<ContentGridBlockProps>;
|
|
1126
1164
|
|
|
1127
|
-
|
|
1165
|
+
interface AppDetailsData {
|
|
1166
|
+
name: string;
|
|
1167
|
+
developer: string;
|
|
1168
|
+
tagline: string;
|
|
1169
|
+
logoSrc: string;
|
|
1170
|
+
description: string;
|
|
1171
|
+
screenshots: string[];
|
|
1172
|
+
platforms: {
|
|
1173
|
+
android: boolean;
|
|
1174
|
+
ios: boolean;
|
|
1175
|
+
};
|
|
1176
|
+
stats: {
|
|
1177
|
+
type: 'App' | 'Widget' | string;
|
|
1178
|
+
size: string;
|
|
1179
|
+
rating?: string;
|
|
1180
|
+
downloads?: string;
|
|
1181
|
+
};
|
|
1182
|
+
information: {
|
|
1183
|
+
category: string;
|
|
1184
|
+
version: string;
|
|
1185
|
+
developer: string;
|
|
1186
|
+
website: string;
|
|
1187
|
+
email: string;
|
|
1188
|
+
};
|
|
1189
|
+
ctaText?: string;
|
|
1190
|
+
ctaHref?: string;
|
|
1191
|
+
secondaryCtaText?: string;
|
|
1192
|
+
secondaryCtaHref?: string;
|
|
1193
|
+
}
|
|
1194
|
+
interface UniversalAppDetailsProps {
|
|
1195
|
+
app: AppDetailsData;
|
|
1196
|
+
onBack?: () => void;
|
|
1197
|
+
}
|
|
1198
|
+
declare const UniversalAppDetails: React.FC<UniversalAppDetailsProps>;
|
|
1199
|
+
|
|
1200
|
+
interface AppLibraryItem {
|
|
1201
|
+
id: string;
|
|
1202
|
+
name: string;
|
|
1203
|
+
category: string;
|
|
1204
|
+
logoSrc: string;
|
|
1205
|
+
onClick?: () => void;
|
|
1206
|
+
}
|
|
1207
|
+
interface UniversalAppCategoryGridProps {
|
|
1208
|
+
tagline?: string;
|
|
1209
|
+
categoryTitle: React.ReactNode;
|
|
1210
|
+
apps: AppLibraryItem[];
|
|
1211
|
+
onBack?: () => void;
|
|
1212
|
+
}
|
|
1213
|
+
declare const UniversalAppCategoryGrid: React.FC<UniversalAppCategoryGridProps>;
|
|
1214
|
+
|
|
1215
|
+
export { AITranscriptionFeature, type AITranscriptionFeatureProps, type AgentFilePayload, type AgentStat, AiApproveDecline, type AiApproveDeclineProps, AiStageCheck, type AiStageCheckProps, type AiTask, type AiTaskStatus, AppBento2, type AppBento2Props, type AppDetailsData, type AppLibraryCategory, type AppLibraryItem$1 as AppLibraryItem, type AppTypeKey, Banner, type BannerProps, type BentoFeature, type BoardMember, type CheckoutInvoiceData, type CompanyDetails, type CompanyMember, type ConsultantProfile, ConsultantShowcase, type ConsultantShowcaseProps, ContentGridBlock, type ContentGridBlockProps, type DashboardList, type DashboardListItem, type DashboardStat, type DocumentSectionData, type DriveItem$1 as DriveItem, DriveItemOpener, type DriveItemOpenerProps, type DriveItemType, DriveShareModal, type DriveShareModalProps, type EmailContact, Faq, type FaqItem, type FaqProps, FeatureScroll, type FeatureScrollProps, FileIconMapper, type FileIconMapperProps, 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 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, type PricingTab, ProductHero, type ProductHeroProps, type ProjectItem, type ScrollFeature, type SearchTypeOption, type SocialContact, type SocialLink, Stagger, type StaggerProps, type StatItem, type StorageConfig, TextInput, type TextInputProps, ThreeDActionButton, type ThreeDActionButtonProps, ThreeDButton, type ThreeDButtonProps, UniversalAgentConsole, type UniversalAgentConsoleProps, UniversalAppCategoryGrid, type UniversalAppCategoryGridProps, UniversalAppDetails, type UniversalAppDetailsProps, UniversalAppLibrary, type UniversalAppLibraryProps, UniversalBillingPage, type UniversalBillingPageProps, UniversalCheckoutView, type UniversalCheckoutViewProps, UniversalDashboardPage, type UniversalDashboardPageProps, UniversalDeveloperSettings, type UniversalDeveloperSettingsProps, UniversalDirectoryPage, type UniversalDirectoryPageProps, UniversalDriveView, type UniversalDriveViewProps, 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, UniversalTrashView, type UniversalTrashViewProps, type UploadQueueJob, type WorkspaceItem, ZairusAuth, type ZairusAuthProps, ZairusShareCard, type ZairusShareProps };
|
package/dist/index.d.ts
CHANGED
|
@@ -66,6 +66,23 @@ interface ZairusAuthProps {
|
|
|
66
66
|
}
|
|
67
67
|
declare const ZairusAuth: React.FC<ZairusAuthProps>;
|
|
68
68
|
|
|
69
|
+
interface ZairusShareProps {
|
|
70
|
+
fileName: string;
|
|
71
|
+
fileSize: string;
|
|
72
|
+
useRecaptcha?: boolean;
|
|
73
|
+
recaptchaSiteKey?: string;
|
|
74
|
+
/**
|
|
75
|
+
* The download handler.
|
|
76
|
+
* It provides the recaptcha token (if enabled) and an `updateProgress` callback
|
|
77
|
+
* so your parent page can stream the chunk decryption progress (0 to 100) to the UI.
|
|
78
|
+
*/
|
|
79
|
+
onDownloadRequest: (recaptchaToken: string | undefined, updateProgress: (percent: number) => void) => Promise<{
|
|
80
|
+
success: boolean;
|
|
81
|
+
error?: string;
|
|
82
|
+
}>;
|
|
83
|
+
}
|
|
84
|
+
declare const ZairusShareCard: React.FC<ZairusShareProps>;
|
|
85
|
+
|
|
69
86
|
interface HeaderLink {
|
|
70
87
|
label: string;
|
|
71
88
|
href: string;
|
|
@@ -1045,6 +1062,27 @@ interface UniversalDeveloperSettingsProps {
|
|
|
1045
1062
|
}
|
|
1046
1063
|
declare const UniversalDeveloperSettings: React.FC<UniversalDeveloperSettingsProps>;
|
|
1047
1064
|
|
|
1065
|
+
interface AppLibraryItem$1 {
|
|
1066
|
+
id: string;
|
|
1067
|
+
name: string;
|
|
1068
|
+
category: string;
|
|
1069
|
+
logoSrc: string;
|
|
1070
|
+
onClick?: () => void;
|
|
1071
|
+
}
|
|
1072
|
+
interface AppLibraryCategory {
|
|
1073
|
+
id: string;
|
|
1074
|
+
title: string;
|
|
1075
|
+
apps: AppLibraryItem$1[];
|
|
1076
|
+
seeMoreLabel?: string;
|
|
1077
|
+
onSeeMore?: () => void;
|
|
1078
|
+
}
|
|
1079
|
+
interface UniversalAppLibraryProps {
|
|
1080
|
+
tagline?: string;
|
|
1081
|
+
headline?: React.ReactNode;
|
|
1082
|
+
categories: AppLibraryCategory[];
|
|
1083
|
+
}
|
|
1084
|
+
declare const UniversalAppLibrary: React.FC<UniversalAppLibraryProps>;
|
|
1085
|
+
|
|
1048
1086
|
interface StatItem {
|
|
1049
1087
|
/** The small text label above the number */
|
|
1050
1088
|
label: string;
|
|
@@ -1124,4 +1162,54 @@ interface ContentGridBlockProps {
|
|
|
1124
1162
|
}
|
|
1125
1163
|
declare const ContentGridBlock: React.FC<ContentGridBlockProps>;
|
|
1126
1164
|
|
|
1127
|
-
|
|
1165
|
+
interface AppDetailsData {
|
|
1166
|
+
name: string;
|
|
1167
|
+
developer: string;
|
|
1168
|
+
tagline: string;
|
|
1169
|
+
logoSrc: string;
|
|
1170
|
+
description: string;
|
|
1171
|
+
screenshots: string[];
|
|
1172
|
+
platforms: {
|
|
1173
|
+
android: boolean;
|
|
1174
|
+
ios: boolean;
|
|
1175
|
+
};
|
|
1176
|
+
stats: {
|
|
1177
|
+
type: 'App' | 'Widget' | string;
|
|
1178
|
+
size: string;
|
|
1179
|
+
rating?: string;
|
|
1180
|
+
downloads?: string;
|
|
1181
|
+
};
|
|
1182
|
+
information: {
|
|
1183
|
+
category: string;
|
|
1184
|
+
version: string;
|
|
1185
|
+
developer: string;
|
|
1186
|
+
website: string;
|
|
1187
|
+
email: string;
|
|
1188
|
+
};
|
|
1189
|
+
ctaText?: string;
|
|
1190
|
+
ctaHref?: string;
|
|
1191
|
+
secondaryCtaText?: string;
|
|
1192
|
+
secondaryCtaHref?: string;
|
|
1193
|
+
}
|
|
1194
|
+
interface UniversalAppDetailsProps {
|
|
1195
|
+
app: AppDetailsData;
|
|
1196
|
+
onBack?: () => void;
|
|
1197
|
+
}
|
|
1198
|
+
declare const UniversalAppDetails: React.FC<UniversalAppDetailsProps>;
|
|
1199
|
+
|
|
1200
|
+
interface AppLibraryItem {
|
|
1201
|
+
id: string;
|
|
1202
|
+
name: string;
|
|
1203
|
+
category: string;
|
|
1204
|
+
logoSrc: string;
|
|
1205
|
+
onClick?: () => void;
|
|
1206
|
+
}
|
|
1207
|
+
interface UniversalAppCategoryGridProps {
|
|
1208
|
+
tagline?: string;
|
|
1209
|
+
categoryTitle: React.ReactNode;
|
|
1210
|
+
apps: AppLibraryItem[];
|
|
1211
|
+
onBack?: () => void;
|
|
1212
|
+
}
|
|
1213
|
+
declare const UniversalAppCategoryGrid: React.FC<UniversalAppCategoryGridProps>;
|
|
1214
|
+
|
|
1215
|
+
export { AITranscriptionFeature, type AITranscriptionFeatureProps, type AgentFilePayload, type AgentStat, AiApproveDecline, type AiApproveDeclineProps, AiStageCheck, type AiStageCheckProps, type AiTask, type AiTaskStatus, AppBento2, type AppBento2Props, type AppDetailsData, type AppLibraryCategory, type AppLibraryItem$1 as AppLibraryItem, type AppTypeKey, Banner, type BannerProps, type BentoFeature, type BoardMember, type CheckoutInvoiceData, type CompanyDetails, type CompanyMember, type ConsultantProfile, ConsultantShowcase, type ConsultantShowcaseProps, ContentGridBlock, type ContentGridBlockProps, type DashboardList, type DashboardListItem, type DashboardStat, type DocumentSectionData, type DriveItem$1 as DriveItem, DriveItemOpener, type DriveItemOpenerProps, type DriveItemType, DriveShareModal, type DriveShareModalProps, type EmailContact, Faq, type FaqItem, type FaqProps, FeatureScroll, type FeatureScrollProps, FileIconMapper, type FileIconMapperProps, 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 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, type PricingTab, ProductHero, type ProductHeroProps, type ProjectItem, type ScrollFeature, type SearchTypeOption, type SocialContact, type SocialLink, Stagger, type StaggerProps, type StatItem, type StorageConfig, TextInput, type TextInputProps, ThreeDActionButton, type ThreeDActionButtonProps, ThreeDButton, type ThreeDButtonProps, UniversalAgentConsole, type UniversalAgentConsoleProps, UniversalAppCategoryGrid, type UniversalAppCategoryGridProps, UniversalAppDetails, type UniversalAppDetailsProps, UniversalAppLibrary, type UniversalAppLibraryProps, UniversalBillingPage, type UniversalBillingPageProps, UniversalCheckoutView, type UniversalCheckoutViewProps, UniversalDashboardPage, type UniversalDashboardPageProps, UniversalDeveloperSettings, type UniversalDeveloperSettingsProps, UniversalDirectoryPage, type UniversalDirectoryPageProps, UniversalDriveView, type UniversalDriveViewProps, 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, UniversalTrashView, type UniversalTrashViewProps, type UploadQueueJob, type WorkspaceItem, ZairusAuth, type ZairusAuthProps, ZairusShareCard, type ZairusShareProps };
|