@retinalabsllc/zairusjs 16.2.2 → 16.3.0
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 +54 -9
- package/dist/index.d.ts +54 -9
- package/dist/index.js +1326 -1291
- package/dist/index.mjs +1354 -1310
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -114,6 +114,39 @@ interface FooterProps {
|
|
|
114
114
|
}
|
|
115
115
|
declare const Footer: React.FC<FooterProps>;
|
|
116
116
|
|
|
117
|
+
interface UniversalMember2$2 {
|
|
118
|
+
id: string;
|
|
119
|
+
userId: string;
|
|
120
|
+
fullName: string;
|
|
121
|
+
avatarUrl?: string | null;
|
|
122
|
+
role: string;
|
|
123
|
+
}
|
|
124
|
+
interface UniversalHuddleDetailsProps {
|
|
125
|
+
onBackHref: string;
|
|
126
|
+
huddle: {
|
|
127
|
+
id: string;
|
|
128
|
+
title: string;
|
|
129
|
+
status: string;
|
|
130
|
+
huddleType: 'PUBLIC' | 'PRIVATE';
|
|
131
|
+
startTime: string;
|
|
132
|
+
endTime: string | null;
|
|
133
|
+
timezone: string;
|
|
134
|
+
participantIds: string[];
|
|
135
|
+
};
|
|
136
|
+
canEdit: boolean;
|
|
137
|
+
canDelete: boolean;
|
|
138
|
+
members: UniversalMember2$2[];
|
|
139
|
+
isMembersLoading: boolean;
|
|
140
|
+
membersCurrentPage: number;
|
|
141
|
+
membersTotalPages: number;
|
|
142
|
+
onMembersPageChange: (page: number) => void;
|
|
143
|
+
membersSearchQuery: string;
|
|
144
|
+
onMembersSearchChange: (query: string) => void;
|
|
145
|
+
onUpdateSubmit: (payload: any) => Promise<void>;
|
|
146
|
+
onDeleteSubmit: (action: 'cancel_huddle' | 'delete_huddle') => Promise<void>;
|
|
147
|
+
}
|
|
148
|
+
declare const UniversalHuddleDetails: React.FC<UniversalHuddleDetailsProps>;
|
|
149
|
+
|
|
117
150
|
interface MobileNavItem {
|
|
118
151
|
label: string;
|
|
119
152
|
href: string;
|
|
@@ -1076,13 +1109,15 @@ interface UniversalMember2$1 {
|
|
|
1076
1109
|
id: string;
|
|
1077
1110
|
userId: string;
|
|
1078
1111
|
fullName: string;
|
|
1112
|
+
email?: string;
|
|
1079
1113
|
avatarUrl?: string | null;
|
|
1080
|
-
status:
|
|
1114
|
+
status: string;
|
|
1081
1115
|
role: string;
|
|
1116
|
+
isRootAdmin?: boolean;
|
|
1082
1117
|
}
|
|
1083
1118
|
interface UniversalSettingsProps {
|
|
1084
1119
|
accountType: 'INDIVIDUAL' | 'ORGANIZATION';
|
|
1085
|
-
userRole?:
|
|
1120
|
+
userRole?: string;
|
|
1086
1121
|
members?: UniversalMember2$1[];
|
|
1087
1122
|
isMembersLoading?: boolean;
|
|
1088
1123
|
membersCurrentPage?: number;
|
|
@@ -1096,12 +1131,21 @@ interface UniversalSettingsProps {
|
|
|
1096
1131
|
onRoleFilterChange?: (role: string) => void;
|
|
1097
1132
|
onRemoveMember?: (memberId: string) => Promise<void>;
|
|
1098
1133
|
onInviteMember?: (email: string) => Promise<void>;
|
|
1099
|
-
|
|
1100
|
-
|
|
1101
|
-
|
|
1102
|
-
|
|
1103
|
-
|
|
1104
|
-
|
|
1134
|
+
onUpdateRole?: (memberId: string, newRole: string) => Promise<void>;
|
|
1135
|
+
initialOrgName?: string;
|
|
1136
|
+
initialOrgSlug?: string;
|
|
1137
|
+
initialFullName?: string;
|
|
1138
|
+
initialEmail?: string;
|
|
1139
|
+
onSaveProfile?: (payload: {
|
|
1140
|
+
firstName: string;
|
|
1141
|
+
lastName: string;
|
|
1142
|
+
}) => Promise<{
|
|
1143
|
+
success: boolean;
|
|
1144
|
+
error?: string;
|
|
1145
|
+
}>;
|
|
1146
|
+
onSaveOrganization?: (payload: {
|
|
1147
|
+
name: string;
|
|
1148
|
+
slug: string;
|
|
1105
1149
|
}) => Promise<{
|
|
1106
1150
|
success: boolean;
|
|
1107
1151
|
error?: string;
|
|
@@ -1125,6 +1169,7 @@ interface UniversalMember2 {
|
|
|
1125
1169
|
}
|
|
1126
1170
|
interface UniversalCreateHuddleProps {
|
|
1127
1171
|
onBackHref: string;
|
|
1172
|
+
userRole?: string;
|
|
1128
1173
|
members: UniversalMember2[];
|
|
1129
1174
|
isMembersLoading: boolean;
|
|
1130
1175
|
membersCurrentPage: number;
|
|
@@ -1142,4 +1187,4 @@ interface UniversalCreateHuddleProps {
|
|
|
1142
1187
|
}
|
|
1143
1188
|
declare const UniversalCreateHuddle: React.FC<UniversalCreateHuddleProps>;
|
|
1144
1189
|
|
|
1145
|
-
export { AppBento2, type AppBento2Props, type BannerProps, type BarIconProps, type BentoFeature, type BoardMember, type CardData, CardInfoDialog, type CardInfoDialogProps, type CompanyDetails, type ConsultantProfile, ConsultantShowcase, type ConsultantShowcaseProps, ContentGridBlock, type ContentGridBlockProps, type CryptoOption, type DocumentSectionData, type EmailContact, Faq, type FaqItem, type FaqProps, FeatureScroll, type FeatureScrollProps, type FiatCurrencyOption, Footer, type FooterColumn, type FooterLink, type FooterProps, FundCardDialog, type FundCardDialogProps, GifFeatureCard, type GifFeatureCardProps, Header, type HeaderLink, type HeaderProps, type AppLogo$1 as HeroAppLogo, HeroSection, type HeroSectionProps, type HomeActionBtn, type HomeActionBtn2, type LeaderboardItem, ManagedBoardBlock, type ManagedBoardBlockProps, ManagedContactBlock, type ManagedContactBlockProps, ManagedDocument, type ManagedDocumentProps, ManagedNewsletterSplitBlock, type ManagedNewsletterSplitBlockProps, ManagedNotFoundBlock, type ManagedNotFoundBlockProps, ManagedPricingBlock, type ManagedPricingBlockProps, ManagedProjectsBlock, type ManagedProjectsBlockProps, ManagedToaster, MedicalFeatureStatsBlock, MobileNav, type MobileNavItem, type MobileNavProps, type NavItem, type NetworkOption, type NotificationItem, type NotificationItem2, NumberInput, type NumberInputProps, PageSpinner, type PageSpinnerProps, PinDialerBottomSheet, type PinDialerBottomSheetProps, PipleAuth, type PipleAuthProps, type PlatformFeatureItem, PlatformFeatures, type PlatformFeaturesProps, PortfolioHero, type PortfolioHeroProps, type AppLogo as PricingAppLogo, type PricingFeature, type PricingFeature2, type PricingPlan, type PricingTab, type ProjectItem, type RateCalculationPayload, type ReferralProfile, type RewardItem, type RewardProfile, type ScrollFeature, type SocialContact, type SocialLink, type StatItem, TextInput, type TextInputProps, ThreeDActionButton, type ThreeDActionButtonProps, ThreeDButton, type ThreeDButtonProps, type TierOption, UniversalBuyCryptoPage, type UniversalBuyCryptoPageProps, UniversalCardActionPage, type UniversalCardActionPageProps, UniversalCardPage, type UniversalCardPageProps, UniversalCreateHuddle, type UniversalCreateHuddleProps, UniversalErrorView, type UniversalErrorViewProps, UniversalHome2, type UniversalHome2Props, UniversalHomeView, type UniversalHomeViewProps, type UniversalHuddle, UniversalHuddlesPage, type UniversalHuddlesPageProps, type UniversalMember, type UniversalMember2$1 as UniversalMember2, UniversalMembersPage, type UniversalMembersPageProps, UniversalOrganizationPage, type UniversalOrganizationPageProps, UniversalProfilePage, type UniversalProfilePageProps, UniversalProfileSettings, type UniversalProfileSettingsProps, type UniversalReferralItem, UniversalReferralPage, type UniversalReferralPageProps, UniversalRewardPage, type UniversalRewardPageProps, UniversalSecurityPage, type UniversalSecurityPageProps, UniversalSettings, type UniversalSettingsProps, UniversalSidebar, type UniversalSidebarProps, type UniversalTransaction, UniversalTransactionPage, type UniversalTransactionPageProps, UniversalVerificationPage, type UniversalVerificationPageProps, type UniversalWallet, UniversalWalletPage, type UniversalWalletPageProps, type VerificationStatus, WaitlistDialog, type WaitlistDialogProps };
|
|
1190
|
+
export { AppBento2, type AppBento2Props, type BannerProps, type BarIconProps, type BentoFeature, type BoardMember, type CardData, CardInfoDialog, type CardInfoDialogProps, type CompanyDetails, type ConsultantProfile, ConsultantShowcase, type ConsultantShowcaseProps, ContentGridBlock, type ContentGridBlockProps, type CryptoOption, type DocumentSectionData, type EmailContact, Faq, type FaqItem, type FaqProps, FeatureScroll, type FeatureScrollProps, type FiatCurrencyOption, Footer, type FooterColumn, type FooterLink, type FooterProps, FundCardDialog, type FundCardDialogProps, GifFeatureCard, type GifFeatureCardProps, Header, type HeaderLink, type HeaderProps, type AppLogo$1 as HeroAppLogo, HeroSection, type HeroSectionProps, type HomeActionBtn, type HomeActionBtn2, type LeaderboardItem, ManagedBoardBlock, type ManagedBoardBlockProps, ManagedContactBlock, type ManagedContactBlockProps, ManagedDocument, type ManagedDocumentProps, ManagedNewsletterSplitBlock, type ManagedNewsletterSplitBlockProps, ManagedNotFoundBlock, type ManagedNotFoundBlockProps, ManagedPricingBlock, type ManagedPricingBlockProps, ManagedProjectsBlock, type ManagedProjectsBlockProps, ManagedToaster, MedicalFeatureStatsBlock, MobileNav, type MobileNavItem, type MobileNavProps, type NavItem, type NetworkOption, type NotificationItem, type NotificationItem2, NumberInput, type NumberInputProps, PageSpinner, type PageSpinnerProps, PinDialerBottomSheet, type PinDialerBottomSheetProps, PipleAuth, type PipleAuthProps, type PlatformFeatureItem, PlatformFeatures, type PlatformFeaturesProps, PortfolioHero, type PortfolioHeroProps, type AppLogo as PricingAppLogo, type PricingFeature, type PricingFeature2, type PricingPlan, type PricingTab, type ProjectItem, type RateCalculationPayload, type ReferralProfile, type RewardItem, type RewardProfile, type ScrollFeature, type SocialContact, type SocialLink, type StatItem, TextInput, type TextInputProps, ThreeDActionButton, type ThreeDActionButtonProps, ThreeDButton, type ThreeDButtonProps, type TierOption, UniversalBuyCryptoPage, type UniversalBuyCryptoPageProps, UniversalCardActionPage, type UniversalCardActionPageProps, UniversalCardPage, type UniversalCardPageProps, UniversalCreateHuddle, type UniversalCreateHuddleProps, UniversalErrorView, type UniversalErrorViewProps, UniversalHome2, type UniversalHome2Props, UniversalHomeView, type UniversalHomeViewProps, type UniversalHuddle, UniversalHuddleDetails, type UniversalHuddleDetailsProps, UniversalHuddlesPage, type UniversalHuddlesPageProps, type UniversalMember, type UniversalMember2$1 as UniversalMember2, UniversalMembersPage, type UniversalMembersPageProps, UniversalOrganizationPage, type UniversalOrganizationPageProps, UniversalProfilePage, type UniversalProfilePageProps, UniversalProfileSettings, type UniversalProfileSettingsProps, type UniversalReferralItem, UniversalReferralPage, type UniversalReferralPageProps, UniversalRewardPage, type UniversalRewardPageProps, UniversalSecurityPage, type UniversalSecurityPageProps, UniversalSettings, type UniversalSettingsProps, UniversalSidebar, type UniversalSidebarProps, type UniversalTransaction, UniversalTransactionPage, type UniversalTransactionPageProps, UniversalVerificationPage, type UniversalVerificationPageProps, type UniversalWallet, UniversalWalletPage, type UniversalWalletPageProps, type VerificationStatus, WaitlistDialog, type WaitlistDialogProps };
|
package/dist/index.d.ts
CHANGED
|
@@ -114,6 +114,39 @@ interface FooterProps {
|
|
|
114
114
|
}
|
|
115
115
|
declare const Footer: React.FC<FooterProps>;
|
|
116
116
|
|
|
117
|
+
interface UniversalMember2$2 {
|
|
118
|
+
id: string;
|
|
119
|
+
userId: string;
|
|
120
|
+
fullName: string;
|
|
121
|
+
avatarUrl?: string | null;
|
|
122
|
+
role: string;
|
|
123
|
+
}
|
|
124
|
+
interface UniversalHuddleDetailsProps {
|
|
125
|
+
onBackHref: string;
|
|
126
|
+
huddle: {
|
|
127
|
+
id: string;
|
|
128
|
+
title: string;
|
|
129
|
+
status: string;
|
|
130
|
+
huddleType: 'PUBLIC' | 'PRIVATE';
|
|
131
|
+
startTime: string;
|
|
132
|
+
endTime: string | null;
|
|
133
|
+
timezone: string;
|
|
134
|
+
participantIds: string[];
|
|
135
|
+
};
|
|
136
|
+
canEdit: boolean;
|
|
137
|
+
canDelete: boolean;
|
|
138
|
+
members: UniversalMember2$2[];
|
|
139
|
+
isMembersLoading: boolean;
|
|
140
|
+
membersCurrentPage: number;
|
|
141
|
+
membersTotalPages: number;
|
|
142
|
+
onMembersPageChange: (page: number) => void;
|
|
143
|
+
membersSearchQuery: string;
|
|
144
|
+
onMembersSearchChange: (query: string) => void;
|
|
145
|
+
onUpdateSubmit: (payload: any) => Promise<void>;
|
|
146
|
+
onDeleteSubmit: (action: 'cancel_huddle' | 'delete_huddle') => Promise<void>;
|
|
147
|
+
}
|
|
148
|
+
declare const UniversalHuddleDetails: React.FC<UniversalHuddleDetailsProps>;
|
|
149
|
+
|
|
117
150
|
interface MobileNavItem {
|
|
118
151
|
label: string;
|
|
119
152
|
href: string;
|
|
@@ -1076,13 +1109,15 @@ interface UniversalMember2$1 {
|
|
|
1076
1109
|
id: string;
|
|
1077
1110
|
userId: string;
|
|
1078
1111
|
fullName: string;
|
|
1112
|
+
email?: string;
|
|
1079
1113
|
avatarUrl?: string | null;
|
|
1080
|
-
status:
|
|
1114
|
+
status: string;
|
|
1081
1115
|
role: string;
|
|
1116
|
+
isRootAdmin?: boolean;
|
|
1082
1117
|
}
|
|
1083
1118
|
interface UniversalSettingsProps {
|
|
1084
1119
|
accountType: 'INDIVIDUAL' | 'ORGANIZATION';
|
|
1085
|
-
userRole?:
|
|
1120
|
+
userRole?: string;
|
|
1086
1121
|
members?: UniversalMember2$1[];
|
|
1087
1122
|
isMembersLoading?: boolean;
|
|
1088
1123
|
membersCurrentPage?: number;
|
|
@@ -1096,12 +1131,21 @@ interface UniversalSettingsProps {
|
|
|
1096
1131
|
onRoleFilterChange?: (role: string) => void;
|
|
1097
1132
|
onRemoveMember?: (memberId: string) => Promise<void>;
|
|
1098
1133
|
onInviteMember?: (email: string) => Promise<void>;
|
|
1099
|
-
|
|
1100
|
-
|
|
1101
|
-
|
|
1102
|
-
|
|
1103
|
-
|
|
1104
|
-
|
|
1134
|
+
onUpdateRole?: (memberId: string, newRole: string) => Promise<void>;
|
|
1135
|
+
initialOrgName?: string;
|
|
1136
|
+
initialOrgSlug?: string;
|
|
1137
|
+
initialFullName?: string;
|
|
1138
|
+
initialEmail?: string;
|
|
1139
|
+
onSaveProfile?: (payload: {
|
|
1140
|
+
firstName: string;
|
|
1141
|
+
lastName: string;
|
|
1142
|
+
}) => Promise<{
|
|
1143
|
+
success: boolean;
|
|
1144
|
+
error?: string;
|
|
1145
|
+
}>;
|
|
1146
|
+
onSaveOrganization?: (payload: {
|
|
1147
|
+
name: string;
|
|
1148
|
+
slug: string;
|
|
1105
1149
|
}) => Promise<{
|
|
1106
1150
|
success: boolean;
|
|
1107
1151
|
error?: string;
|
|
@@ -1125,6 +1169,7 @@ interface UniversalMember2 {
|
|
|
1125
1169
|
}
|
|
1126
1170
|
interface UniversalCreateHuddleProps {
|
|
1127
1171
|
onBackHref: string;
|
|
1172
|
+
userRole?: string;
|
|
1128
1173
|
members: UniversalMember2[];
|
|
1129
1174
|
isMembersLoading: boolean;
|
|
1130
1175
|
membersCurrentPage: number;
|
|
@@ -1142,4 +1187,4 @@ interface UniversalCreateHuddleProps {
|
|
|
1142
1187
|
}
|
|
1143
1188
|
declare const UniversalCreateHuddle: React.FC<UniversalCreateHuddleProps>;
|
|
1144
1189
|
|
|
1145
|
-
export { AppBento2, type AppBento2Props, type BannerProps, type BarIconProps, type BentoFeature, type BoardMember, type CardData, CardInfoDialog, type CardInfoDialogProps, type CompanyDetails, type ConsultantProfile, ConsultantShowcase, type ConsultantShowcaseProps, ContentGridBlock, type ContentGridBlockProps, type CryptoOption, type DocumentSectionData, type EmailContact, Faq, type FaqItem, type FaqProps, FeatureScroll, type FeatureScrollProps, type FiatCurrencyOption, Footer, type FooterColumn, type FooterLink, type FooterProps, FundCardDialog, type FundCardDialogProps, GifFeatureCard, type GifFeatureCardProps, Header, type HeaderLink, type HeaderProps, type AppLogo$1 as HeroAppLogo, HeroSection, type HeroSectionProps, type HomeActionBtn, type HomeActionBtn2, type LeaderboardItem, ManagedBoardBlock, type ManagedBoardBlockProps, ManagedContactBlock, type ManagedContactBlockProps, ManagedDocument, type ManagedDocumentProps, ManagedNewsletterSplitBlock, type ManagedNewsletterSplitBlockProps, ManagedNotFoundBlock, type ManagedNotFoundBlockProps, ManagedPricingBlock, type ManagedPricingBlockProps, ManagedProjectsBlock, type ManagedProjectsBlockProps, ManagedToaster, MedicalFeatureStatsBlock, MobileNav, type MobileNavItem, type MobileNavProps, type NavItem, type NetworkOption, type NotificationItem, type NotificationItem2, NumberInput, type NumberInputProps, PageSpinner, type PageSpinnerProps, PinDialerBottomSheet, type PinDialerBottomSheetProps, PipleAuth, type PipleAuthProps, type PlatformFeatureItem, PlatformFeatures, type PlatformFeaturesProps, PortfolioHero, type PortfolioHeroProps, type AppLogo as PricingAppLogo, type PricingFeature, type PricingFeature2, type PricingPlan, type PricingTab, type ProjectItem, type RateCalculationPayload, type ReferralProfile, type RewardItem, type RewardProfile, type ScrollFeature, type SocialContact, type SocialLink, type StatItem, TextInput, type TextInputProps, ThreeDActionButton, type ThreeDActionButtonProps, ThreeDButton, type ThreeDButtonProps, type TierOption, UniversalBuyCryptoPage, type UniversalBuyCryptoPageProps, UniversalCardActionPage, type UniversalCardActionPageProps, UniversalCardPage, type UniversalCardPageProps, UniversalCreateHuddle, type UniversalCreateHuddleProps, UniversalErrorView, type UniversalErrorViewProps, UniversalHome2, type UniversalHome2Props, UniversalHomeView, type UniversalHomeViewProps, type UniversalHuddle, UniversalHuddlesPage, type UniversalHuddlesPageProps, type UniversalMember, type UniversalMember2$1 as UniversalMember2, UniversalMembersPage, type UniversalMembersPageProps, UniversalOrganizationPage, type UniversalOrganizationPageProps, UniversalProfilePage, type UniversalProfilePageProps, UniversalProfileSettings, type UniversalProfileSettingsProps, type UniversalReferralItem, UniversalReferralPage, type UniversalReferralPageProps, UniversalRewardPage, type UniversalRewardPageProps, UniversalSecurityPage, type UniversalSecurityPageProps, UniversalSettings, type UniversalSettingsProps, UniversalSidebar, type UniversalSidebarProps, type UniversalTransaction, UniversalTransactionPage, type UniversalTransactionPageProps, UniversalVerificationPage, type UniversalVerificationPageProps, type UniversalWallet, UniversalWalletPage, type UniversalWalletPageProps, type VerificationStatus, WaitlistDialog, type WaitlistDialogProps };
|
|
1190
|
+
export { AppBento2, type AppBento2Props, type BannerProps, type BarIconProps, type BentoFeature, type BoardMember, type CardData, CardInfoDialog, type CardInfoDialogProps, type CompanyDetails, type ConsultantProfile, ConsultantShowcase, type ConsultantShowcaseProps, ContentGridBlock, type ContentGridBlockProps, type CryptoOption, type DocumentSectionData, type EmailContact, Faq, type FaqItem, type FaqProps, FeatureScroll, type FeatureScrollProps, type FiatCurrencyOption, Footer, type FooterColumn, type FooterLink, type FooterProps, FundCardDialog, type FundCardDialogProps, GifFeatureCard, type GifFeatureCardProps, Header, type HeaderLink, type HeaderProps, type AppLogo$1 as HeroAppLogo, HeroSection, type HeroSectionProps, type HomeActionBtn, type HomeActionBtn2, type LeaderboardItem, ManagedBoardBlock, type ManagedBoardBlockProps, ManagedContactBlock, type ManagedContactBlockProps, ManagedDocument, type ManagedDocumentProps, ManagedNewsletterSplitBlock, type ManagedNewsletterSplitBlockProps, ManagedNotFoundBlock, type ManagedNotFoundBlockProps, ManagedPricingBlock, type ManagedPricingBlockProps, ManagedProjectsBlock, type ManagedProjectsBlockProps, ManagedToaster, MedicalFeatureStatsBlock, MobileNav, type MobileNavItem, type MobileNavProps, type NavItem, type NetworkOption, type NotificationItem, type NotificationItem2, NumberInput, type NumberInputProps, PageSpinner, type PageSpinnerProps, PinDialerBottomSheet, type PinDialerBottomSheetProps, PipleAuth, type PipleAuthProps, type PlatformFeatureItem, PlatformFeatures, type PlatformFeaturesProps, PortfolioHero, type PortfolioHeroProps, type AppLogo as PricingAppLogo, type PricingFeature, type PricingFeature2, type PricingPlan, type PricingTab, type ProjectItem, type RateCalculationPayload, type ReferralProfile, type RewardItem, type RewardProfile, type ScrollFeature, type SocialContact, type SocialLink, type StatItem, TextInput, type TextInputProps, ThreeDActionButton, type ThreeDActionButtonProps, ThreeDButton, type ThreeDButtonProps, type TierOption, UniversalBuyCryptoPage, type UniversalBuyCryptoPageProps, UniversalCardActionPage, type UniversalCardActionPageProps, UniversalCardPage, type UniversalCardPageProps, UniversalCreateHuddle, type UniversalCreateHuddleProps, UniversalErrorView, type UniversalErrorViewProps, UniversalHome2, type UniversalHome2Props, UniversalHomeView, type UniversalHomeViewProps, type UniversalHuddle, UniversalHuddleDetails, type UniversalHuddleDetailsProps, UniversalHuddlesPage, type UniversalHuddlesPageProps, type UniversalMember, type UniversalMember2$1 as UniversalMember2, UniversalMembersPage, type UniversalMembersPageProps, UniversalOrganizationPage, type UniversalOrganizationPageProps, UniversalProfilePage, type UniversalProfilePageProps, UniversalProfileSettings, type UniversalProfileSettingsProps, type UniversalReferralItem, UniversalReferralPage, type UniversalReferralPageProps, UniversalRewardPage, type UniversalRewardPageProps, UniversalSecurityPage, type UniversalSecurityPageProps, UniversalSettings, type UniversalSettingsProps, UniversalSidebar, type UniversalSidebarProps, type UniversalTransaction, UniversalTransactionPage, type UniversalTransactionPageProps, UniversalVerificationPage, type UniversalVerificationPageProps, type UniversalWallet, UniversalWalletPage, type UniversalWalletPageProps, type VerificationStatus, WaitlistDialog, type WaitlistDialogProps };
|