@retinalabsllc/zairusjs 5.1.10 → 5.1.19

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
@@ -99,23 +99,6 @@ interface PipleAuthProps {
99
99
  }
100
100
  declare const PipleAuth: React.FC<PipleAuthProps>;
101
101
 
102
- interface ZairusShareProps {
103
- fileName: string;
104
- fileSize: string;
105
- useRecaptcha?: boolean;
106
- recaptchaSiteKey?: string;
107
- /**
108
- * The download handler.
109
- * It provides the recaptcha token (if enabled) and an `updateProgress` callback
110
- * so your parent page can stream the chunk decryption progress (0 to 100) to the UI.
111
- */
112
- onDownloadRequest: (recaptchaToken: string | undefined, updateProgress: (percent: number) => void) => Promise<{
113
- success: boolean;
114
- error?: string;
115
- }>;
116
- }
117
- declare const ZairusShareCard: React.FC<ZairusShareProps>;
118
-
119
102
  interface HeaderLink {
120
103
  label: string;
121
104
  href: string;
@@ -129,7 +112,6 @@ interface HeaderProps {
129
112
  showLogo?: boolean;
130
113
  invert?: boolean;
131
114
  hideHeaderText?: boolean;
132
- light?: boolean;
133
115
  compact?: boolean;
134
116
  }
135
117
  declare const Header: React.FC<HeaderProps>;
@@ -190,6 +172,10 @@ interface HeroSectionProps {
190
172
  showImage?: boolean;
191
173
  /** URL for the dashboard image */
192
174
  imageSrc?: string;
175
+ /** URL for the background video (mp4, webm) */
176
+ bgVideoSrc?: string;
177
+ /** URL for the background image (serves as the poster/fallback for the video) */
178
+ bgImageSrc?: string;
193
179
  }
194
180
  declare const HeroSection: React.FC<HeroSectionProps>;
195
181
 
@@ -219,18 +205,6 @@ interface FeatureScrollProps {
219
205
  }
220
206
  declare const FeatureScroll: React.FC<FeatureScrollProps>;
221
207
 
222
- interface AITranscriptionFeatureProps {
223
- tagline: string;
224
- headline: React.ReactNode;
225
- description: string;
226
- imagePath?: string;
227
- detailTextPrefix: string;
228
- highlightText: string;
229
- cursorLabel: string;
230
- detailTextSuffix: string;
231
- }
232
- declare const AITranscriptionFeature: React.FC<AITranscriptionFeatureProps>;
233
-
234
208
  interface PlatformFeatureItem {
235
209
  title: string;
236
210
  desc: string;
@@ -366,29 +340,6 @@ interface ManagedBoardBlockProps {
366
340
  }
367
341
  declare const ManagedBoardBlock: React.FC<ManagedBoardBlockProps>;
368
342
 
369
- interface ProjectItem {
370
- id: string;
371
- title: string;
372
- /** Right-aligned text, can be a date or a category like "Core Technology" */
373
- date: string;
374
- /** The destination URL */
375
- link: string;
376
- /** If true, uses a standard <a> tag with target="_blank" instead of next/link */
377
- isExternal?: boolean;
378
- /** Badge text. If "Production", it gets highlighted in black. */
379
- status: string;
380
- description: string;
381
- }
382
- interface ManagedProjectsBlockProps {
383
- /** Small tracking text above the main title */
384
- tagline?: string;
385
- /** Main H1 title of the page */
386
- title: string;
387
- /** Array of project objects */
388
- projects: ProjectItem[];
389
- }
390
- declare const ManagedProjectsBlock: React.FC<ManagedProjectsBlockProps>;
391
-
392
343
  interface ManagedNotFoundBlockProps {
393
344
  /** The main error title. Defaults to "404 - Page Not Found" */
394
345
  title?: string;
@@ -476,20 +427,6 @@ interface PortfolioHeroProps {
476
427
  }
477
428
  declare const PortfolioHero: React.FC<PortfolioHeroProps>;
478
429
 
479
- interface ProductHeroProps {
480
- badgeText?: string;
481
- titlePrefix: React.ReactNode;
482
- highlightText: string;
483
- subtitle?: string;
484
- ctaText?: string;
485
- ctaHref?: string;
486
- secondaryCtaText?: string;
487
- secondaryCtaHref?: string;
488
- /** Array of exactly 3 images for the carousel (Mandatory) */
489
- images: string[];
490
- }
491
- declare const ProductHero: React.FC<ProductHeroProps>;
492
-
493
430
  interface GifFeatureCardProps {
494
431
  /** The URL path to your .gif file */
495
432
  gifSrc: string;
@@ -566,6 +503,7 @@ declare const Banner: React.FC<BannerProps>;
566
503
  interface UniversalOrganizationPageProps {
567
504
  initialOrgName: string;
568
505
  initialSlug: string;
506
+ initialUsername?: string;
569
507
  orgId: string;
570
508
  isReadOnly?: boolean;
571
509
  slugPrefixUrl?: string;
@@ -585,71 +523,6 @@ interface UniversalOrganizationPageProps {
585
523
  }
586
524
  declare const UniversalOrganizationPage: React.FC<UniversalOrganizationPageProps>;
587
525
 
588
- interface UniversalIdentityPageProps {
589
- headerTitle: string;
590
- headerDescription: string;
591
- primaryInputLabel: string;
592
- secondaryInputLabel?: string;
593
- initialPrimaryValue: string;
594
- initialSecondaryValue?: string;
595
- resourceId: string;
596
- isReadOnly?: boolean;
597
- allowDeletion?: boolean;
598
- deleteWarningText?: string;
599
- onSaveIdentity: (payload: {
600
- resourceId: string;
601
- primaryValue?: string;
602
- secondaryValue?: string;
603
- }) => Promise<{
604
- success: boolean;
605
- error?: string;
606
- }>;
607
- onDeleteResource?: (resourceId: string) => Promise<{
608
- success: boolean;
609
- error?: string;
610
- }>;
611
- onSuccessfulDeleteRedirect?: string;
612
- }
613
- declare const UniversalIdentityPage: React.FC<UniversalIdentityPageProps>;
614
-
615
- interface UniversalMember {
616
- id: string;
617
- userId: string;
618
- fullName: string;
619
- email: string;
620
- displayImage?: string;
621
- profileColor?: string;
622
- role: string;
623
- joinedAt: string | Date;
624
- }
625
- interface UniversalMembersPageProps {
626
- headerTitle: string;
627
- headerDescription: string;
628
- currentUserId?: string;
629
- members: UniversalMember[];
630
- isLoading: boolean;
631
- currentPage: number;
632
- totalPages: number;
633
- onPageChange: (page: number) => void;
634
- canManage: boolean;
635
- canChangeRoles: boolean;
636
- availableRoles: string[];
637
- requireNamesForInvite: boolean;
638
- onInviteMember: (email: string, firstName?: string, lastName?: string) => Promise<{
639
- success: boolean;
640
- error?: string;
641
- }>;
642
- onRemoveMember: (member: UniversalMember) => Promise<{
643
- success: boolean;
644
- error?: string;
645
- }>;
646
- onUpdateRole: (member: UniversalMember, newRole: string) => Promise<{
647
- success: boolean;
648
- error?: string;
649
- }>;
650
- }
651
- declare const UniversalMembersPage: React.FC<UniversalMembersPageProps>;
652
-
653
526
  interface UniversalProfileSettingsProps {
654
527
  initialFirstName: string;
655
528
  initialLastName: string;
@@ -668,201 +541,6 @@ interface UniversalProfileSettingsProps {
668
541
  }
669
542
  declare const UniversalProfileSettings: React.FC<UniversalProfileSettingsProps>;
670
543
 
671
- interface UniversalInvoice {
672
- id: string;
673
- name: string;
674
- subtext: string;
675
- amountDue: number;
676
- status: string;
677
- createdAt: string | Date;
678
- }
679
- interface UniversalBillingPageProps {
680
- headerTitle: string;
681
- headerDescription: string;
682
- isReadOnly?: boolean;
683
- isModMode?: boolean;
684
- metricPrimaryLabel?: string;
685
- metricPrimaryValue?: number;
686
- metricPrimarySubtext?: string;
687
- metricSecondaryLabel?: string;
688
- metricSecondaryValue?: number;
689
- metricSecondarySubtext?: string;
690
- showBillingOverview?: boolean;
691
- billingStatus?: string;
692
- nextBillingDate?: string | Date | null;
693
- lastPaidDate?: string | Date | null;
694
- showUsageMetrics?: boolean;
695
- usageMetrics?: Array<{
696
- label: string;
697
- value: string | number;
698
- }>;
699
- showSearchAndFilter?: boolean;
700
- searchQuery?: string;
701
- onSearchChange?: (val: string) => void;
702
- timeframe?: string;
703
- onTimeframeChange?: (val: string) => void;
704
- invoices: UniversalInvoice[];
705
- isLoading: boolean;
706
- currentPage: number;
707
- totalPages: number;
708
- onPageChange: (page: number) => void;
709
- onPayInvoice?: (invoiceId: string) => Promise<{
710
- success: boolean;
711
- error?: string;
712
- message?: string;
713
- }>;
714
- onUpdateInvoiceStatus?: (invoiceId: string, status: string, twoFactorCode: string) => Promise<{
715
- success: boolean;
716
- error?: string;
717
- message?: string;
718
- }>;
719
- }
720
- declare const UniversalBillingPage: React.FC<UniversalBillingPageProps>;
721
-
722
- interface CheckoutInvoiceData {
723
- id: string;
724
- invoiceNumber: string;
725
- name: string;
726
- amountDue: number;
727
- status: string;
728
- createdAt: string | Date;
729
- }
730
- interface UniversalCheckoutViewProps {
731
- invoice: CheckoutInvoiceData | null;
732
- isLoading: boolean;
733
- isReadOnly?: boolean;
734
- onPayInvoice: (invoiceId: string) => Promise<{
735
- success: boolean;
736
- error?: string;
737
- message?: string;
738
- }>;
739
- onBackClick?: () => void;
740
- }
741
- declare const UniversalCheckoutView: React.FC<UniversalCheckoutViewProps>;
742
-
743
- interface DashboardStat {
744
- label: string;
745
- value: string | number;
746
- valueClass?: string;
747
- }
748
- interface DashboardListItem {
749
- id: string;
750
- primaryText: string;
751
- secondaryText: string;
752
- rightText?: string;
753
- rightBadge?: string;
754
- rightBadgeClass?: string;
755
- }
756
- interface DashboardList {
757
- title: string;
758
- icon: React.ReactNode;
759
- emptyMessage: string;
760
- items: DashboardListItem[];
761
- }
762
- interface UniversalDashboardPageProps {
763
- headerTitle: string;
764
- headerDescription: string;
765
- timeframes?: {
766
- id: string;
767
- label: string;
768
- }[];
769
- activeTimeframe?: string;
770
- onTimeframeChange?: (id: string) => void;
771
- stats: DashboardStat[];
772
- lists: DashboardList[];
773
- isLoading?: boolean;
774
- }
775
- declare const UniversalDashboardPage: React.FC<UniversalDashboardPageProps>;
776
-
777
- interface AgentStat {
778
- label: string;
779
- value: string | number;
780
- icon: React.ReactNode;
781
- }
782
- interface AgentFilePayload {
783
- file: File;
784
- fileName: string;
785
- fileType: string;
786
- fileSize: number;
787
- }
788
- interface UniversalAgentConsoleProps {
789
- headerTitle: string;
790
- headerDescription: string;
791
- stats: AgentStat[];
792
- tabs: {
793
- id: string;
794
- label: string;
795
- }[];
796
- activeTab: string;
797
- onTabChange: (tab: string) => void;
798
- listData: any[];
799
- isLoadingList: boolean;
800
- currentPage: number;
801
- totalPages: number;
802
- onPageChange: (page: number) => void;
803
- onRowClick: (id: string) => void;
804
- currentView: 'list' | 'details';
805
- onBackToList: () => void;
806
- selectedApp: any | null;
807
- currentAgentId: string | null;
808
- onAcceptApplication: (id: string) => Promise<{
809
- success: boolean;
810
- }>;
811
- onUpdateStatus: (id: string, status: string, message: string) => Promise<{
812
- success: boolean;
813
- }>;
814
- onUploadArchives: (id: string, files: AgentFilePayload[]) => Promise<{
815
- success: boolean;
816
- }>;
817
- onDeleteArchive: (appId: string, archiveId: string) => Promise<{
818
- success: boolean;
819
- }>;
820
- }
821
- declare const UniversalAgentConsole: React.FC<UniversalAgentConsoleProps>;
822
-
823
- interface OverviewStat {
824
- label: string;
825
- value: string | number;
826
- icon: React.ReactNode;
827
- }
828
- interface OverviewAlert {
829
- title: string;
830
- items: {
831
- label: string;
832
- text: string;
833
- }[];
834
- type?: 'error' | 'warning' | 'info';
835
- }
836
- interface UniversalOverviewPageProps {
837
- headerTitle: string;
838
- headerDescription: string;
839
- quickStats: OverviewStat[];
840
- detailsTitle?: string;
841
- details: {
842
- label: string;
843
- value: string;
844
- }[];
845
- primaryAction?: {
846
- label: string;
847
- onClick?: () => void;
848
- href?: string;
849
- icon?: React.ReactNode;
850
- isLoading?: boolean;
851
- };
852
- alerts?: OverviewAlert[];
853
- banner?: {
854
- isVisible: boolean;
855
- title: string;
856
- message: string;
857
- type: 'success' | 'warning' | 'alert';
858
- icon?: any;
859
- isDismissible?: boolean;
860
- onDismiss?: () => void;
861
- action?: React.ReactNode;
862
- };
863
- }
864
- declare const UniversalOverviewPage: React.FC<UniversalOverviewPageProps>;
865
-
866
544
  interface UniversalErrorViewProps {
867
545
  isBooting: boolean;
868
546
  isLoading: boolean;
@@ -879,132 +557,6 @@ interface UniversalErrorViewProps {
879
557
  }
880
558
  declare const UniversalErrorView: React.FC<UniversalErrorViewProps>;
881
559
 
882
- interface SearchTypeOption {
883
- value: string;
884
- label: string;
885
- }
886
- interface UniversalLookupPageProps {
887
- headerTitle: string;
888
- headerDescription: string;
889
- searchOptions: SearchTypeOption[];
890
- selectedSearchType: string;
891
- onSearchTypeChange: (val: string) => void;
892
- searchQuery: string;
893
- onSearchQueryChange: (val: string) => void;
894
- isSearching: boolean;
895
- onSearch: (e: React.FormEvent) => void;
896
- resultContent?: React.ReactNode;
897
- modals?: React.ReactNode;
898
- }
899
- declare const UniversalLookupPage: React.FC<UniversalLookupPageProps>;
900
-
901
- interface DirectoryItem {
902
- id: string;
903
- icon: React.ReactNode;
904
- primaryText: React.ReactNode;
905
- secondaryText: React.ReactNode;
906
- rightBadge?: string;
907
- rightBadgeClass?: string;
908
- }
909
- interface UniversalDirectoryPageProps {
910
- headerTitle: string;
911
- headerDescription: string;
912
- hideSearch?: boolean;
913
- headerAction?: React.ReactNode;
914
- searchPlaceholder?: string;
915
- searchQuery: string;
916
- onSearchChange: (val: string) => void;
917
- currentView: 'list' | 'details';
918
- onBackToList: () => void;
919
- items: DirectoryItem[];
920
- isLoading: boolean;
921
- currentPage: number;
922
- totalPages: number;
923
- onPageChange: (page: number) => void;
924
- onRowClick: (id: string) => void;
925
- detailsContent?: React.ReactNode;
926
- modals?: React.ReactNode;
927
- }
928
- declare const UniversalDirectoryPage: React.FC<UniversalDirectoryPageProps>;
929
-
930
- type DriveItemType = 'FOLDER' | 'FILE' | 'DOC' | 'SHEET' | 'IMAGE' | 'VIDEO' | 'AUDIO' | 'PDF' | 'TXT' | 'CODE' | 'ARCHIVE';
931
- interface FileIconMapperProps {
932
- type: DriveItemType | string;
933
- mimeType?: string;
934
- }
935
- declare const FileIconMapper: React.FC<FileIconMapperProps>;
936
-
937
- interface DriveItem$1 {
938
- id: string;
939
- name: string;
940
- type: DriveItemType | string;
941
- mimeType?: string;
942
- size: number | bigint;
943
- parentId: string | null;
944
- updatedAt: string | Date;
945
- }
946
- interface UploadQueueJob {
947
- id: string;
948
- name: string;
949
- progress: number;
950
- status: 'PENDING' | 'UPLOADING' | 'COMPLETED' | 'FAILED';
951
- }
952
- interface UniversalDriveViewProps {
953
- currentFolderId: string | null;
954
- folderBreadcrumbs: Array<{
955
- id: string | null;
956
- name: string;
957
- }>;
958
- items: DriveItem$1[];
959
- uploadQueue: UploadQueueJob[];
960
- isLoading: boolean;
961
- searchQuery: string;
962
- currentPage: number;
963
- totalPages: number;
964
- connect?: boolean;
965
- onSearchChange: (val: string) => void;
966
- onNavigateFolder: (folderId: string | null) => void;
967
- onCreateFolder: (name: string) => Promise<void>;
968
- onRenameItem: (itemId: string, newName: string) => Promise<void>;
969
- onUploadFiles: (files: FileList) => Promise<void>;
970
- onMoveToTrash: (ids: string[]) => Promise<void>;
971
- onClearUploadQueue?: () => void;
972
- onPageChange: (page: number) => void;
973
- onRefresh: () => void;
974
- onFetchFoldersForExplorer: (folderId: string | null) => Promise<{
975
- folders: DriveItem$1[];
976
- breadcrumbs: any[];
977
- }>;
978
- onExecuteMoveCopy: (action: 'copy' | 'move', targetFolderId: string | null, itemIds: string[]) => Promise<void>;
979
- onOpenFile: (item: DriveItem$1) => void;
980
- onShareItems: (items: DriveItem$1[]) => void;
981
- }
982
- declare const UniversalDriveView: React.FC<UniversalDriveViewProps>;
983
-
984
- interface DriveItem {
985
- id: string;
986
- name: string;
987
- type: DriveItemType | string;
988
- mimeType?: string;
989
- size: number | bigint;
990
- parentId: string | null;
991
- updatedAt: string | Date;
992
- }
993
- interface UniversalTrashViewProps {
994
- items: DriveItem[];
995
- isLoading: boolean;
996
- searchQuery: string;
997
- currentPage: number;
998
- totalPages: number;
999
- onSearchChange: (val: string) => void;
1000
- onRestoreItems: (ids: string[]) => Promise<void>;
1001
- onDeletePermanently: (ids: string[]) => Promise<void>;
1002
- onEmptyTrash: () => Promise<void>;
1003
- onPageChange: (page: number) => void;
1004
- onRefresh: () => void;
1005
- }
1006
- declare const UniversalTrashView: React.FC<UniversalTrashViewProps>;
1007
-
1008
560
  interface UniversalTransaction {
1009
561
  id: string;
1010
562
  cardId?: string | null;
@@ -1095,117 +647,12 @@ interface CardLogoProps {
1095
647
  }
1096
648
  declare const CardLogo: React.FC<CardLogoProps>;
1097
649
 
1098
- interface DriveItemOpenerProps {
1099
- item: DriveItem$1 | null;
1100
- onClose: () => void;
1101
- }
1102
- declare const DriveItemOpener: React.FC<DriveItemOpenerProps>;
1103
-
1104
- interface DriveShareModalProps {
1105
- items: DriveItem$1[] | null;
1106
- onClose: () => void;
1107
- }
1108
- declare const DriveShareModal: React.FC<DriveShareModalProps>;
1109
-
1110
- interface AiApproveDeclineProps {
1111
- suggestionTitle: string;
1112
- suggestionValue: React.ReactNode;
1113
- onApprove: () => void;
1114
- onDecline: () => void;
1115
- onEdit?: (newVal: string) => void;
1116
- }
1117
- declare const AiApproveDecline: React.FC<AiApproveDeclineProps>;
1118
-
1119
- type AiTaskStatus = 'pending' | 'loading' | 'success' | 'error';
1120
- interface AiTask {
1121
- id: string;
1122
- label: string;
1123
- status: AiTaskStatus;
1124
- }
1125
- interface AiStageCheckProps {
1126
- tasks: AiTask[];
1127
- }
1128
- declare const AiStageCheck: React.FC<AiStageCheckProps>;
1129
-
1130
650
  interface StaggerProps {
1131
651
  steps: string[];
1132
652
  currentStep: number;
1133
653
  }
1134
654
  declare const Stagger: React.FC<StaggerProps>;
1135
655
 
1136
- interface CompanyMember {
1137
- id: string;
1138
- fullName: string;
1139
- email: string;
1140
- phone: string;
1141
- role: 'Director Only' | 'Shareholder Only' | 'Both Director & Shareholder';
1142
- sharePercentage: string;
1143
- nationality: string;
1144
- address: string;
1145
- city: string;
1146
- state: string;
1147
- idFileUrl: string;
1148
- idMetadata: any;
1149
- idExtractedData: any;
1150
- passportFileUrl: string;
1151
- passportMetadata: any;
1152
- signatureFileUrl: string;
1153
- signatureMetadata: any;
1154
- }
1155
- interface UniversalRegistrationFlowProps {
1156
- applicationId: string;
1157
- type: 'company' | 'business';
1158
- apiEndpoint: string;
1159
- onCancelOrClose: () => void;
1160
- onRedirectToBilling: () => void;
1161
- onRedirectToApplication: (appId: string) => void;
1162
- }
1163
- declare const UniversalRegistrationFlow: React.FC<UniversalRegistrationFlowProps>;
1164
-
1165
- interface UniversalDeveloperSettingsProps {
1166
- initialPublicKey: string;
1167
- initialWebhookUrl: string;
1168
- isReadOnly?: boolean;
1169
- isLoading?: boolean;
1170
- onGenerateKeys: () => Promise<{
1171
- success: boolean;
1172
- data?: {
1173
- publicKey: string;
1174
- secretKey: string;
1175
- };
1176
- error?: string;
1177
- }>;
1178
- onSaveWebhook: (webhookUrl: string) => Promise<{
1179
- success: boolean;
1180
- data?: {
1181
- webhookUrl: string;
1182
- };
1183
- error?: string;
1184
- }>;
1185
- }
1186
- declare const UniversalDeveloperSettings: React.FC<UniversalDeveloperSettingsProps>;
1187
-
1188
- interface AppLibraryItem$1 {
1189
- id: string;
1190
- name: string;
1191
- category: string;
1192
- logoSrc: string;
1193
- onClick?: () => void;
1194
- }
1195
- interface AppLibraryCategory {
1196
- id: string;
1197
- title: string;
1198
- apps: AppLibraryItem$1[];
1199
- seeMoreLabel?: string;
1200
- onSeeMore?: () => void;
1201
- }
1202
- interface UniversalAppLibraryProps {
1203
- tagline?: string;
1204
- headline?: React.ReactNode;
1205
- categories: AppLibraryCategory[];
1206
- }
1207
- declare const UniversalAppLibrary: React.FC<UniversalAppLibraryProps>;
1208
-
1209
656
  interface StatItem {
1210
657
  /** The small text label above the number */
1211
658
  label: string;
@@ -1230,12 +677,10 @@ interface ConsultantProfile {
1230
677
  id: string | number;
1231
678
  name: string;
1232
679
  role: string;
1233
- /** Generic text field to display under the role (replaces static 'Experience' text) */
1234
680
  description?: string;
1235
681
  imageSrc: string;
1236
682
  }
1237
683
  interface ConsultantShowcaseProps {
1238
- /** Array of profiles to display in the swipeable showcase */
1239
684
  profiles: ConsultantProfile[];
1240
685
  }
1241
686
  declare const ConsultantShowcase: React.FC<ConsultantShowcaseProps>;
@@ -1285,54 +730,4 @@ interface ContentGridBlockProps {
1285
730
  }
1286
731
  declare const ContentGridBlock: React.FC<ContentGridBlockProps>;
1287
732
 
1288
- interface AppDetailsData {
1289
- name: string;
1290
- developer: string;
1291
- tagline: string;
1292
- logoSrc: string;
1293
- description: string;
1294
- screenshots: string[];
1295
- platforms: {
1296
- android: boolean;
1297
- ios: boolean;
1298
- };
1299
- stats: {
1300
- type: 'App' | 'Widget' | string;
1301
- size: string;
1302
- rating?: string;
1303
- downloads?: string;
1304
- };
1305
- information: {
1306
- category: string;
1307
- version: string;
1308
- developer: string;
1309
- website: string;
1310
- email: string;
1311
- };
1312
- ctaText?: string;
1313
- ctaHref?: string;
1314
- secondaryCtaText?: string;
1315
- secondaryCtaHref?: string;
1316
- }
1317
- interface UniversalAppDetailsProps {
1318
- app: AppDetailsData;
1319
- onBack?: () => void;
1320
- }
1321
- declare const UniversalAppDetails: React.FC<UniversalAppDetailsProps>;
1322
-
1323
- interface AppLibraryItem {
1324
- id: string;
1325
- name: string;
1326
- category: string;
1327
- logoSrc: string;
1328
- onClick?: () => void;
1329
- }
1330
- interface UniversalAppCategoryGridProps {
1331
- tagline?: string;
1332
- categoryTitle: React.ReactNode;
1333
- apps: AppLibraryItem[];
1334
- onBack?: () => void;
1335
- }
1336
- declare const UniversalAppCategoryGrid: React.FC<UniversalAppCategoryGridProps>;
1337
-
1338
- 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, Banner, type BannerProps, type BentoFeature, type BoardMember, CardLogo, type CardLogoProps, type CardNetwork, 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, type HomeActionBtn, 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, PipleAuth, type PipleAuthProps, type PlatformFeatureItem, PlatformFeatures, type PlatformFeaturesProps, PortfolioHero, type PortfolioHeroProps, type AppLogo as PricingAppLogo, type PricingFeature, type PricingPlan, type PricingTab, ProductHero, type ProductHeroProps, type ProjectItem, type QuickActionItem, 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, 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, UniversalHomeView, type UniversalHomeViewProps, 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 UniversalTransaction, UniversalTransactionPage, type UniversalTransactionPageProps, UniversalTrashView, type UniversalTrashViewProps, type UniversalWallet, UniversalWalletPage, type UniversalWalletPageProps, type UploadQueueJob, ZairusAuth, type ZairusAuthProps, ZairusShareCard, type ZairusShareProps };
733
+ export { AppBento2, type AppBento2Props, Banner, type BannerProps, type BentoFeature, type BoardMember, CardLogo, type CardLogoProps, type CardNetwork, 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, type HomeActionBtn, ManagedBoardBlock, type ManagedBoardBlockProps, ManagedContactBlock, type ManagedContactBlockProps, ManagedDocument, type ManagedDocumentProps, ManagedNewsletterSplitBlock, type ManagedNewsletterSplitBlockProps, ManagedNotFoundBlock, type ManagedNotFoundBlockProps, ManagedPricingBlock, type ManagedPricingBlockProps, ManagedToaster, MedicalFeatureStatsBlock, type NavItem, NumberInput, type NumberInputProps, PageSpinner, type PageSpinnerProps, PipleAuth, type PipleAuthProps, type PlatformFeatureItem, PlatformFeatures, type PlatformFeaturesProps, PortfolioHero, type PortfolioHeroProps, type AppLogo as PricingAppLogo, type PricingFeature, type PricingPlan, type PricingTab, type QuickActionItem, type ScrollFeature, type SocialContact, type SocialLink, Stagger, type StaggerProps, type StatItem, TextInput, type TextInputProps, ThreeDActionButton, type ThreeDActionButtonProps, ThreeDButton, type ThreeDButtonProps, UniversalErrorView, type UniversalErrorViewProps, UniversalHomeView, type UniversalHomeViewProps, UniversalOrganizationPage, type UniversalOrganizationPageProps, UniversalProfileSettings, type UniversalProfileSettingsProps, UniversalSidebar, type UniversalSidebarProps, type UniversalTransaction, UniversalTransactionPage, type UniversalTransactionPageProps, type UniversalWallet, UniversalWalletPage, type UniversalWalletPageProps, ZairusAuth, type ZairusAuthProps };