@retinalabsllc/zairusjs 16.1.90 → 16.2.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 +11 -11
- package/dist/index.d.ts +11 -11
- package/dist/index.js +202 -214
- package/dist/index.mjs +204 -216
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -978,24 +978,25 @@ interface UniversalBuyCryptoPageProps {
|
|
|
978
978
|
}
|
|
979
979
|
declare const UniversalBuyCryptoPage: React.FC<UniversalBuyCryptoPageProps>;
|
|
980
980
|
|
|
981
|
-
interface
|
|
981
|
+
interface UniversalHuddle {
|
|
982
982
|
id: string;
|
|
983
983
|
name: string;
|
|
984
|
-
|
|
985
|
-
|
|
984
|
+
status: string;
|
|
985
|
+
imageUrl?: string | null;
|
|
986
|
+
timeString: string;
|
|
986
987
|
}
|
|
987
|
-
interface
|
|
988
|
+
interface UniversalHuddlesPageProps {
|
|
988
989
|
headerTitle: string;
|
|
989
990
|
headerDescription: string;
|
|
990
|
-
|
|
991
|
+
huddles: UniversalHuddle[];
|
|
991
992
|
isLoading: boolean;
|
|
992
993
|
currentPage: number;
|
|
993
994
|
totalPages: number;
|
|
994
995
|
onPageChange: (page: number) => void;
|
|
995
|
-
|
|
996
|
-
|
|
996
|
+
onHuddleClick: (huddleId: string) => void;
|
|
997
|
+
onCreateHuddle?: () => void;
|
|
997
998
|
}
|
|
998
|
-
declare const
|
|
999
|
+
declare const UniversalHuddlesPage: React.FC<UniversalHuddlesPageProps>;
|
|
999
1000
|
|
|
1000
1001
|
interface UniversalMember {
|
|
1001
1002
|
id: string;
|
|
@@ -1065,7 +1066,7 @@ interface UniversalHome2Props {
|
|
|
1065
1066
|
onResolveInvite?: (notif: NotificationItem2, resolution: 'ACCEPTED' | 'REJECTED') => Promise<void>;
|
|
1066
1067
|
formatNotifDate: (date: string | Date) => string;
|
|
1067
1068
|
customContent?: React.ReactNode;
|
|
1068
|
-
|
|
1069
|
+
huddlesProps: UniversalHuddlesPageProps;
|
|
1069
1070
|
onLogout?: () => Promise<void>;
|
|
1070
1071
|
}
|
|
1071
1072
|
declare const UniversalHome2: React.FC<UniversalHome2Props>;
|
|
@@ -1077,7 +1078,6 @@ interface UniversalMember2 {
|
|
|
1077
1078
|
avatarUrl?: string | null;
|
|
1078
1079
|
status: 'ACTIVE' | 'BUSY' | 'AWAY' | 'OFFLINE' | string;
|
|
1079
1080
|
role: string;
|
|
1080
|
-
departmentName?: string;
|
|
1081
1081
|
}
|
|
1082
1082
|
interface UniversalSettingsProps {
|
|
1083
1083
|
accountType: 'INDIVIDUAL' | 'ORGANIZATION';
|
|
@@ -1115,4 +1115,4 @@ interface UniversalSettingsProps {
|
|
|
1115
1115
|
}
|
|
1116
1116
|
declare const UniversalSettings: React.FC<UniversalSettingsProps>;
|
|
1117
1117
|
|
|
1118
|
-
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, type
|
|
1118
|
+
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, UniversalErrorView, type UniversalErrorViewProps, UniversalHome2, type UniversalHome2Props, UniversalHomeView, type UniversalHomeViewProps, type UniversalHuddle, UniversalHuddlesPage, type UniversalHuddlesPageProps, type UniversalMember, type 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
|
@@ -978,24 +978,25 @@ interface UniversalBuyCryptoPageProps {
|
|
|
978
978
|
}
|
|
979
979
|
declare const UniversalBuyCryptoPage: React.FC<UniversalBuyCryptoPageProps>;
|
|
980
980
|
|
|
981
|
-
interface
|
|
981
|
+
interface UniversalHuddle {
|
|
982
982
|
id: string;
|
|
983
983
|
name: string;
|
|
984
|
-
|
|
985
|
-
|
|
984
|
+
status: string;
|
|
985
|
+
imageUrl?: string | null;
|
|
986
|
+
timeString: string;
|
|
986
987
|
}
|
|
987
|
-
interface
|
|
988
|
+
interface UniversalHuddlesPageProps {
|
|
988
989
|
headerTitle: string;
|
|
989
990
|
headerDescription: string;
|
|
990
|
-
|
|
991
|
+
huddles: UniversalHuddle[];
|
|
991
992
|
isLoading: boolean;
|
|
992
993
|
currentPage: number;
|
|
993
994
|
totalPages: number;
|
|
994
995
|
onPageChange: (page: number) => void;
|
|
995
|
-
|
|
996
|
-
|
|
996
|
+
onHuddleClick: (huddleId: string) => void;
|
|
997
|
+
onCreateHuddle?: () => void;
|
|
997
998
|
}
|
|
998
|
-
declare const
|
|
999
|
+
declare const UniversalHuddlesPage: React.FC<UniversalHuddlesPageProps>;
|
|
999
1000
|
|
|
1000
1001
|
interface UniversalMember {
|
|
1001
1002
|
id: string;
|
|
@@ -1065,7 +1066,7 @@ interface UniversalHome2Props {
|
|
|
1065
1066
|
onResolveInvite?: (notif: NotificationItem2, resolution: 'ACCEPTED' | 'REJECTED') => Promise<void>;
|
|
1066
1067
|
formatNotifDate: (date: string | Date) => string;
|
|
1067
1068
|
customContent?: React.ReactNode;
|
|
1068
|
-
|
|
1069
|
+
huddlesProps: UniversalHuddlesPageProps;
|
|
1069
1070
|
onLogout?: () => Promise<void>;
|
|
1070
1071
|
}
|
|
1071
1072
|
declare const UniversalHome2: React.FC<UniversalHome2Props>;
|
|
@@ -1077,7 +1078,6 @@ interface UniversalMember2 {
|
|
|
1077
1078
|
avatarUrl?: string | null;
|
|
1078
1079
|
status: 'ACTIVE' | 'BUSY' | 'AWAY' | 'OFFLINE' | string;
|
|
1079
1080
|
role: string;
|
|
1080
|
-
departmentName?: string;
|
|
1081
1081
|
}
|
|
1082
1082
|
interface UniversalSettingsProps {
|
|
1083
1083
|
accountType: 'INDIVIDUAL' | 'ORGANIZATION';
|
|
@@ -1115,4 +1115,4 @@ interface UniversalSettingsProps {
|
|
|
1115
1115
|
}
|
|
1116
1116
|
declare const UniversalSettings: React.FC<UniversalSettingsProps>;
|
|
1117
1117
|
|
|
1118
|
-
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, type
|
|
1118
|
+
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, UniversalErrorView, type UniversalErrorViewProps, UniversalHome2, type UniversalHome2Props, UniversalHomeView, type UniversalHomeViewProps, type UniversalHuddle, UniversalHuddlesPage, type UniversalHuddlesPageProps, type UniversalMember, type 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 };
|