@retinalabsllc/zairusjs 5.1.15 → 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;
@@ -586,71 +523,6 @@ interface UniversalOrganizationPageProps {
586
523
  }
587
524
  declare const UniversalOrganizationPage: React.FC<UniversalOrganizationPageProps>;
588
525
 
589
- interface UniversalIdentityPageProps {
590
- headerTitle: string;
591
- headerDescription: string;
592
- primaryInputLabel: string;
593
- secondaryInputLabel?: string;
594
- initialPrimaryValue: string;
595
- initialSecondaryValue?: string;
596
- resourceId: string;
597
- isReadOnly?: boolean;
598
- allowDeletion?: boolean;
599
- deleteWarningText?: string;
600
- onSaveIdentity: (payload: {
601
- resourceId: string;
602
- primaryValue?: string;
603
- secondaryValue?: string;
604
- }) => Promise<{
605
- success: boolean;
606
- error?: string;
607
- }>;
608
- onDeleteResource?: (resourceId: string) => Promise<{
609
- success: boolean;
610
- error?: string;
611
- }>;
612
- onSuccessfulDeleteRedirect?: string;
613
- }
614
- declare const UniversalIdentityPage: React.FC<UniversalIdentityPageProps>;
615
-
616
- interface UniversalMember {
617
- id: string;
618
- userId: string;
619
- fullName: string;
620
- email: string;
621
- displayImage?: string;
622
- profileColor?: string;
623
- role: string;
624
- joinedAt: string | Date;
625
- }
626
- interface UniversalMembersPageProps {
627
- headerTitle: string;
628
- headerDescription: string;
629
- currentUserId?: string;
630
- members: UniversalMember[];
631
- isLoading: boolean;
632
- currentPage: number;
633
- totalPages: number;
634
- onPageChange: (page: number) => void;
635
- canManage: boolean;
636
- canChangeRoles: boolean;
637
- availableRoles: string[];
638
- requireNamesForInvite: boolean;
639
- onInviteMember: (email: string, firstName?: string, lastName?: string) => Promise<{
640
- success: boolean;
641
- error?: string;
642
- }>;
643
- onRemoveMember: (member: UniversalMember) => Promise<{
644
- success: boolean;
645
- error?: string;
646
- }>;
647
- onUpdateRole: (member: UniversalMember, newRole: string) => Promise<{
648
- success: boolean;
649
- error?: string;
650
- }>;
651
- }
652
- declare const UniversalMembersPage: React.FC<UniversalMembersPageProps>;
653
-
654
526
  interface UniversalProfileSettingsProps {
655
527
  initialFirstName: string;
656
528
  initialLastName: string;
@@ -669,201 +541,6 @@ interface UniversalProfileSettingsProps {
669
541
  }
670
542
  declare const UniversalProfileSettings: React.FC<UniversalProfileSettingsProps>;
671
543
 
672
- interface UniversalInvoice {
673
- id: string;
674
- name: string;
675
- subtext: string;
676
- amountDue: number;
677
- status: string;
678
- createdAt: string | Date;
679
- }
680
- interface UniversalBillingPageProps {
681
- headerTitle: string;
682
- headerDescription: string;
683
- isReadOnly?: boolean;
684
- isModMode?: boolean;
685
- metricPrimaryLabel?: string;
686
- metricPrimaryValue?: number;
687
- metricPrimarySubtext?: string;
688
- metricSecondaryLabel?: string;
689
- metricSecondaryValue?: number;
690
- metricSecondarySubtext?: string;
691
- showBillingOverview?: boolean;
692
- billingStatus?: string;
693
- nextBillingDate?: string | Date | null;
694
- lastPaidDate?: string | Date | null;
695
- showUsageMetrics?: boolean;
696
- usageMetrics?: Array<{
697
- label: string;
698
- value: string | number;
699
- }>;
700
- showSearchAndFilter?: boolean;
701
- searchQuery?: string;
702
- onSearchChange?: (val: string) => void;
703
- timeframe?: string;
704
- onTimeframeChange?: (val: string) => void;
705
- invoices: UniversalInvoice[];
706
- isLoading: boolean;
707
- currentPage: number;
708
- totalPages: number;
709
- onPageChange: (page: number) => void;
710
- onPayInvoice?: (invoiceId: string) => Promise<{
711
- success: boolean;
712
- error?: string;
713
- message?: string;
714
- }>;
715
- onUpdateInvoiceStatus?: (invoiceId: string, status: string, twoFactorCode: string) => Promise<{
716
- success: boolean;
717
- error?: string;
718
- message?: string;
719
- }>;
720
- }
721
- declare const UniversalBillingPage: React.FC<UniversalBillingPageProps>;
722
-
723
- interface CheckoutInvoiceData {
724
- id: string;
725
- invoiceNumber: string;
726
- name: string;
727
- amountDue: number;
728
- status: string;
729
- createdAt: string | Date;
730
- }
731
- interface UniversalCheckoutViewProps {
732
- invoice: CheckoutInvoiceData | null;
733
- isLoading: boolean;
734
- isReadOnly?: boolean;
735
- onPayInvoice: (invoiceId: string) => Promise<{
736
- success: boolean;
737
- error?: string;
738
- message?: string;
739
- }>;
740
- onBackClick?: () => void;
741
- }
742
- declare const UniversalCheckoutView: React.FC<UniversalCheckoutViewProps>;
743
-
744
- interface DashboardStat {
745
- label: string;
746
- value: string | number;
747
- valueClass?: string;
748
- }
749
- interface DashboardListItem {
750
- id: string;
751
- primaryText: string;
752
- secondaryText: string;
753
- rightText?: string;
754
- rightBadge?: string;
755
- rightBadgeClass?: string;
756
- }
757
- interface DashboardList {
758
- title: string;
759
- icon: React.ReactNode;
760
- emptyMessage: string;
761
- items: DashboardListItem[];
762
- }
763
- interface UniversalDashboardPageProps {
764
- headerTitle: string;
765
- headerDescription: string;
766
- timeframes?: {
767
- id: string;
768
- label: string;
769
- }[];
770
- activeTimeframe?: string;
771
- onTimeframeChange?: (id: string) => void;
772
- stats: DashboardStat[];
773
- lists: DashboardList[];
774
- isLoading?: boolean;
775
- }
776
- declare const UniversalDashboardPage: React.FC<UniversalDashboardPageProps>;
777
-
778
- interface AgentStat {
779
- label: string;
780
- value: string | number;
781
- icon: React.ReactNode;
782
- }
783
- interface AgentFilePayload {
784
- file: File;
785
- fileName: string;
786
- fileType: string;
787
- fileSize: number;
788
- }
789
- interface UniversalAgentConsoleProps {
790
- headerTitle: string;
791
- headerDescription: string;
792
- stats: AgentStat[];
793
- tabs: {
794
- id: string;
795
- label: string;
796
- }[];
797
- activeTab: string;
798
- onTabChange: (tab: string) => void;
799
- listData: any[];
800
- isLoadingList: boolean;
801
- currentPage: number;
802
- totalPages: number;
803
- onPageChange: (page: number) => void;
804
- onRowClick: (id: string) => void;
805
- currentView: 'list' | 'details';
806
- onBackToList: () => void;
807
- selectedApp: any | null;
808
- currentAgentId: string | null;
809
- onAcceptApplication: (id: string) => Promise<{
810
- success: boolean;
811
- }>;
812
- onUpdateStatus: (id: string, status: string, message: string) => Promise<{
813
- success: boolean;
814
- }>;
815
- onUploadArchives: (id: string, files: AgentFilePayload[]) => Promise<{
816
- success: boolean;
817
- }>;
818
- onDeleteArchive: (appId: string, archiveId: string) => Promise<{
819
- success: boolean;
820
- }>;
821
- }
822
- declare const UniversalAgentConsole: React.FC<UniversalAgentConsoleProps>;
823
-
824
- interface OverviewStat {
825
- label: string;
826
- value: string | number;
827
- icon: React.ReactNode;
828
- }
829
- interface OverviewAlert {
830
- title: string;
831
- items: {
832
- label: string;
833
- text: string;
834
- }[];
835
- type?: 'error' | 'warning' | 'info';
836
- }
837
- interface UniversalOverviewPageProps {
838
- headerTitle: string;
839
- headerDescription: string;
840
- quickStats: OverviewStat[];
841
- detailsTitle?: string;
842
- details: {
843
- label: string;
844
- value: string;
845
- }[];
846
- primaryAction?: {
847
- label: string;
848
- onClick?: () => void;
849
- href?: string;
850
- icon?: React.ReactNode;
851
- isLoading?: boolean;
852
- };
853
- alerts?: OverviewAlert[];
854
- banner?: {
855
- isVisible: boolean;
856
- title: string;
857
- message: string;
858
- type: 'success' | 'warning' | 'alert';
859
- icon?: any;
860
- isDismissible?: boolean;
861
- onDismiss?: () => void;
862
- action?: React.ReactNode;
863
- };
864
- }
865
- declare const UniversalOverviewPage: React.FC<UniversalOverviewPageProps>;
866
-
867
544
  interface UniversalErrorViewProps {
868
545
  isBooting: boolean;
869
546
  isLoading: boolean;
@@ -880,132 +557,6 @@ interface UniversalErrorViewProps {
880
557
  }
881
558
  declare const UniversalErrorView: React.FC<UniversalErrorViewProps>;
882
559
 
883
- interface SearchTypeOption {
884
- value: string;
885
- label: string;
886
- }
887
- interface UniversalLookupPageProps {
888
- headerTitle: string;
889
- headerDescription: string;
890
- searchOptions: SearchTypeOption[];
891
- selectedSearchType: string;
892
- onSearchTypeChange: (val: string) => void;
893
- searchQuery: string;
894
- onSearchQueryChange: (val: string) => void;
895
- isSearching: boolean;
896
- onSearch: (e: React.FormEvent) => void;
897
- resultContent?: React.ReactNode;
898
- modals?: React.ReactNode;
899
- }
900
- declare const UniversalLookupPage: React.FC<UniversalLookupPageProps>;
901
-
902
- interface DirectoryItem {
903
- id: string;
904
- icon: React.ReactNode;
905
- primaryText: React.ReactNode;
906
- secondaryText: React.ReactNode;
907
- rightBadge?: string;
908
- rightBadgeClass?: string;
909
- }
910
- interface UniversalDirectoryPageProps {
911
- headerTitle: string;
912
- headerDescription: string;
913
- hideSearch?: boolean;
914
- headerAction?: React.ReactNode;
915
- searchPlaceholder?: string;
916
- searchQuery: string;
917
- onSearchChange: (val: string) => void;
918
- currentView: 'list' | 'details';
919
- onBackToList: () => void;
920
- items: DirectoryItem[];
921
- isLoading: boolean;
922
- currentPage: number;
923
- totalPages: number;
924
- onPageChange: (page: number) => void;
925
- onRowClick: (id: string) => void;
926
- detailsContent?: React.ReactNode;
927
- modals?: React.ReactNode;
928
- }
929
- declare const UniversalDirectoryPage: React.FC<UniversalDirectoryPageProps>;
930
-
931
- type DriveItemType = 'FOLDER' | 'FILE' | 'DOC' | 'SHEET' | 'IMAGE' | 'VIDEO' | 'AUDIO' | 'PDF' | 'TXT' | 'CODE' | 'ARCHIVE';
932
- interface FileIconMapperProps {
933
- type: DriveItemType | string;
934
- mimeType?: string;
935
- }
936
- declare const FileIconMapper: React.FC<FileIconMapperProps>;
937
-
938
- interface DriveItem$1 {
939
- id: string;
940
- name: string;
941
- type: DriveItemType | string;
942
- mimeType?: string;
943
- size: number | bigint;
944
- parentId: string | null;
945
- updatedAt: string | Date;
946
- }
947
- interface UploadQueueJob {
948
- id: string;
949
- name: string;
950
- progress: number;
951
- status: 'PENDING' | 'UPLOADING' | 'COMPLETED' | 'FAILED';
952
- }
953
- interface UniversalDriveViewProps {
954
- currentFolderId: string | null;
955
- folderBreadcrumbs: Array<{
956
- id: string | null;
957
- name: string;
958
- }>;
959
- items: DriveItem$1[];
960
- uploadQueue: UploadQueueJob[];
961
- isLoading: boolean;
962
- searchQuery: string;
963
- currentPage: number;
964
- totalPages: number;
965
- connect?: boolean;
966
- onSearchChange: (val: string) => void;
967
- onNavigateFolder: (folderId: string | null) => void;
968
- onCreateFolder: (name: string) => Promise<void>;
969
- onRenameItem: (itemId: string, newName: string) => Promise<void>;
970
- onUploadFiles: (files: FileList) => Promise<void>;
971
- onMoveToTrash: (ids: string[]) => Promise<void>;
972
- onClearUploadQueue?: () => void;
973
- onPageChange: (page: number) => void;
974
- onRefresh: () => void;
975
- onFetchFoldersForExplorer: (folderId: string | null) => Promise<{
976
- folders: DriveItem$1[];
977
- breadcrumbs: any[];
978
- }>;
979
- onExecuteMoveCopy: (action: 'copy' | 'move', targetFolderId: string | null, itemIds: string[]) => Promise<void>;
980
- onOpenFile: (item: DriveItem$1) => void;
981
- onShareItems: (items: DriveItem$1[]) => void;
982
- }
983
- declare const UniversalDriveView: React.FC<UniversalDriveViewProps>;
984
-
985
- interface DriveItem {
986
- id: string;
987
- name: string;
988
- type: DriveItemType | string;
989
- mimeType?: string;
990
- size: number | bigint;
991
- parentId: string | null;
992
- updatedAt: string | Date;
993
- }
994
- interface UniversalTrashViewProps {
995
- items: DriveItem[];
996
- isLoading: boolean;
997
- searchQuery: string;
998
- currentPage: number;
999
- totalPages: number;
1000
- onSearchChange: (val: string) => void;
1001
- onRestoreItems: (ids: string[]) => Promise<void>;
1002
- onDeletePermanently: (ids: string[]) => Promise<void>;
1003
- onEmptyTrash: () => Promise<void>;
1004
- onPageChange: (page: number) => void;
1005
- onRefresh: () => void;
1006
- }
1007
- declare const UniversalTrashView: React.FC<UniversalTrashViewProps>;
1008
-
1009
560
  interface UniversalTransaction {
1010
561
  id: string;
1011
562
  cardId?: string | null;
@@ -1096,117 +647,12 @@ interface CardLogoProps {
1096
647
  }
1097
648
  declare const CardLogo: React.FC<CardLogoProps>;
1098
649
 
1099
- interface DriveItemOpenerProps {
1100
- item: DriveItem$1 | null;
1101
- onClose: () => void;
1102
- }
1103
- declare const DriveItemOpener: React.FC<DriveItemOpenerProps>;
1104
-
1105
- interface DriveShareModalProps {
1106
- items: DriveItem$1[] | null;
1107
- onClose: () => void;
1108
- }
1109
- declare const DriveShareModal: React.FC<DriveShareModalProps>;
1110
-
1111
- interface AiApproveDeclineProps {
1112
- suggestionTitle: string;
1113
- suggestionValue: React.ReactNode;
1114
- onApprove: () => void;
1115
- onDecline: () => void;
1116
- onEdit?: (newVal: string) => void;
1117
- }
1118
- declare const AiApproveDecline: React.FC<AiApproveDeclineProps>;
1119
-
1120
- type AiTaskStatus = 'pending' | 'loading' | 'success' | 'error';
1121
- interface AiTask {
1122
- id: string;
1123
- label: string;
1124
- status: AiTaskStatus;
1125
- }
1126
- interface AiStageCheckProps {
1127
- tasks: AiTask[];
1128
- }
1129
- declare const AiStageCheck: React.FC<AiStageCheckProps>;
1130
-
1131
650
  interface StaggerProps {
1132
651
  steps: string[];
1133
652
  currentStep: number;
1134
653
  }
1135
654
  declare const Stagger: React.FC<StaggerProps>;
1136
655
 
1137
- interface CompanyMember {
1138
- id: string;
1139
- fullName: string;
1140
- email: string;
1141
- phone: string;
1142
- role: 'Director Only' | 'Shareholder Only' | 'Both Director & Shareholder';
1143
- sharePercentage: string;
1144
- nationality: string;
1145
- address: string;
1146
- city: string;
1147
- state: string;
1148
- idFileUrl: string;
1149
- idMetadata: any;
1150
- idExtractedData: any;
1151
- passportFileUrl: string;
1152
- passportMetadata: any;
1153
- signatureFileUrl: string;
1154
- signatureMetadata: any;
1155
- }
1156
- interface UniversalRegistrationFlowProps {
1157
- applicationId: string;
1158
- type: 'company' | 'business';
1159
- apiEndpoint: string;
1160
- onCancelOrClose: () => void;
1161
- onRedirectToBilling: () => void;
1162
- onRedirectToApplication: (appId: string) => void;
1163
- }
1164
- declare const UniversalRegistrationFlow: React.FC<UniversalRegistrationFlowProps>;
1165
-
1166
- interface UniversalDeveloperSettingsProps {
1167
- initialPublicKey: string;
1168
- initialWebhookUrl: string;
1169
- isReadOnly?: boolean;
1170
- isLoading?: boolean;
1171
- onGenerateKeys: () => Promise<{
1172
- success: boolean;
1173
- data?: {
1174
- publicKey: string;
1175
- secretKey: string;
1176
- };
1177
- error?: string;
1178
- }>;
1179
- onSaveWebhook: (webhookUrl: string) => Promise<{
1180
- success: boolean;
1181
- data?: {
1182
- webhookUrl: string;
1183
- };
1184
- error?: string;
1185
- }>;
1186
- }
1187
- declare const UniversalDeveloperSettings: React.FC<UniversalDeveloperSettingsProps>;
1188
-
1189
- interface AppLibraryItem$1 {
1190
- id: string;
1191
- name: string;
1192
- category: string;
1193
- logoSrc: string;
1194
- onClick?: () => void;
1195
- }
1196
- interface AppLibraryCategory {
1197
- id: string;
1198
- title: string;
1199
- apps: AppLibraryItem$1[];
1200
- seeMoreLabel?: string;
1201
- onSeeMore?: () => void;
1202
- }
1203
- interface UniversalAppLibraryProps {
1204
- tagline?: string;
1205
- headline?: React.ReactNode;
1206
- categories: AppLibraryCategory[];
1207
- }
1208
- declare const UniversalAppLibrary: React.FC<UniversalAppLibraryProps>;
1209
-
1210
656
  interface StatItem {
1211
657
  /** The small text label above the number */
1212
658
  label: string;
@@ -1231,12 +677,10 @@ interface ConsultantProfile {
1231
677
  id: string | number;
1232
678
  name: string;
1233
679
  role: string;
1234
- /** Generic text field to display under the role (replaces static 'Experience' text) */
1235
680
  description?: string;
1236
681
  imageSrc: string;
1237
682
  }
1238
683
  interface ConsultantShowcaseProps {
1239
- /** Array of profiles to display in the swipeable showcase */
1240
684
  profiles: ConsultantProfile[];
1241
685
  }
1242
686
  declare const ConsultantShowcase: React.FC<ConsultantShowcaseProps>;
@@ -1286,54 +730,4 @@ interface ContentGridBlockProps {
1286
730
  }
1287
731
  declare const ContentGridBlock: React.FC<ContentGridBlockProps>;
1288
732
 
1289
- interface AppDetailsData {
1290
- name: string;
1291
- developer: string;
1292
- tagline: string;
1293
- logoSrc: string;
1294
- description: string;
1295
- screenshots: string[];
1296
- platforms: {
1297
- android: boolean;
1298
- ios: boolean;
1299
- };
1300
- stats: {
1301
- type: 'App' | 'Widget' | string;
1302
- size: string;
1303
- rating?: string;
1304
- downloads?: string;
1305
- };
1306
- information: {
1307
- category: string;
1308
- version: string;
1309
- developer: string;
1310
- website: string;
1311
- email: string;
1312
- };
1313
- ctaText?: string;
1314
- ctaHref?: string;
1315
- secondaryCtaText?: string;
1316
- secondaryCtaHref?: string;
1317
- }
1318
- interface UniversalAppDetailsProps {
1319
- app: AppDetailsData;
1320
- onBack?: () => void;
1321
- }
1322
- declare const UniversalAppDetails: React.FC<UniversalAppDetailsProps>;
1323
-
1324
- interface AppLibraryItem {
1325
- id: string;
1326
- name: string;
1327
- category: string;
1328
- logoSrc: string;
1329
- onClick?: () => void;
1330
- }
1331
- interface UniversalAppCategoryGridProps {
1332
- tagline?: string;
1333
- categoryTitle: React.ReactNode;
1334
- apps: AppLibraryItem[];
1335
- onBack?: () => void;
1336
- }
1337
- declare const UniversalAppCategoryGrid: React.FC<UniversalAppCategoryGridProps>;
1338
-
1339
- 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 };