@retinalabsllc/zairusjs 9.0.70 → 9.0.85
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 +28 -1
- package/dist/index.d.ts +28 -1
- package/dist/index.js +435 -150
- package/dist/index.mjs +438 -145
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -182,6 +182,7 @@ interface UniversalProfileSettingsProps {
|
|
|
182
182
|
success: boolean;
|
|
183
183
|
error?: string;
|
|
184
184
|
}>;
|
|
185
|
+
onBack?: () => void;
|
|
185
186
|
}
|
|
186
187
|
declare const UniversalProfileSettings: React.FC<UniversalProfileSettingsProps>;
|
|
187
188
|
|
|
@@ -384,6 +385,32 @@ interface AppBento2Props {
|
|
|
384
385
|
}
|
|
385
386
|
declare const AppBento2: React.FC<AppBento2Props>;
|
|
386
387
|
|
|
388
|
+
interface UniversalSecurityPageProps {
|
|
389
|
+
has2FA: boolean;
|
|
390
|
+
hasPasskey: boolean;
|
|
391
|
+
userEmail?: string;
|
|
392
|
+
is2FALoading?: boolean;
|
|
393
|
+
isPasskeyLoading?: boolean;
|
|
394
|
+
onBack: () => void;
|
|
395
|
+
onRequest2FASetup?: () => Promise<{
|
|
396
|
+
secret: string;
|
|
397
|
+
qrCodeUrl: string;
|
|
398
|
+
}>;
|
|
399
|
+
onVerifyAndEnable2FA?: (otp: string) => Promise<{
|
|
400
|
+
success: boolean;
|
|
401
|
+
}>;
|
|
402
|
+
onVerifyAndDisable2FA?: (otp: string) => Promise<{
|
|
403
|
+
success: boolean;
|
|
404
|
+
}>;
|
|
405
|
+
onEnablePasskey?: () => Promise<{
|
|
406
|
+
success: boolean;
|
|
407
|
+
}>;
|
|
408
|
+
onDisablePasskey?: () => Promise<{
|
|
409
|
+
success: boolean;
|
|
410
|
+
}>;
|
|
411
|
+
}
|
|
412
|
+
declare const UniversalSecurityPage: React.FC<UniversalSecurityPageProps>;
|
|
413
|
+
|
|
387
414
|
interface ScrollFeature {
|
|
388
415
|
title: string;
|
|
389
416
|
desc: string;
|
|
@@ -740,4 +767,4 @@ interface WaitlistDialogProps {
|
|
|
740
767
|
}
|
|
741
768
|
declare const WaitlistDialog: React.FC<WaitlistDialogProps>;
|
|
742
769
|
|
|
743
|
-
export { AppBento2, type AppBento2Props, type BannerProps, type BentoFeature, type BoardMember, 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, ManagedProjectsBlock, type ManagedProjectsBlockProps, ManagedToaster, MedicalFeatureStatsBlock, MobileNav, type MobileNavItem, type MobileNavProps, 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 ProjectItem, type ScrollFeature, type SocialContact, type SocialLink, type StatItem, TextInput, type TextInputProps, ThreeDActionButton, type ThreeDActionButtonProps, ThreeDButton, type ThreeDButtonProps, UniversalCardPage, type UniversalCardPageProps, UniversalErrorView, type UniversalErrorViewProps, UniversalHomeView, type UniversalHomeViewProps, UniversalOrganizationPage, type UniversalOrganizationPageProps, UniversalProfilePage, type UniversalProfilePageProps, UniversalProfileSettings, type UniversalProfileSettingsProps, UniversalSidebar, type UniversalSidebarProps, type UniversalTransaction, UniversalTransactionPage, type UniversalTransactionPageProps, type UniversalWallet, UniversalWalletPage, type UniversalWalletPageProps, WaitlistDialog, type WaitlistDialogProps };
|
|
770
|
+
export { AppBento2, type AppBento2Props, type BannerProps, type BentoFeature, type BoardMember, 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, ManagedProjectsBlock, type ManagedProjectsBlockProps, ManagedToaster, MedicalFeatureStatsBlock, MobileNav, type MobileNavItem, type MobileNavProps, 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 ProjectItem, type ScrollFeature, type SocialContact, type SocialLink, type StatItem, TextInput, type TextInputProps, ThreeDActionButton, type ThreeDActionButtonProps, ThreeDButton, type ThreeDButtonProps, UniversalCardPage, type UniversalCardPageProps, UniversalErrorView, type UniversalErrorViewProps, UniversalHomeView, type UniversalHomeViewProps, UniversalOrganizationPage, type UniversalOrganizationPageProps, UniversalProfilePage, type UniversalProfilePageProps, UniversalProfileSettings, type UniversalProfileSettingsProps, UniversalSecurityPage, type UniversalSecurityPageProps, UniversalSidebar, type UniversalSidebarProps, type UniversalTransaction, UniversalTransactionPage, type UniversalTransactionPageProps, type UniversalWallet, UniversalWalletPage, type UniversalWalletPageProps, WaitlistDialog, type WaitlistDialogProps };
|
package/dist/index.d.ts
CHANGED
|
@@ -182,6 +182,7 @@ interface UniversalProfileSettingsProps {
|
|
|
182
182
|
success: boolean;
|
|
183
183
|
error?: string;
|
|
184
184
|
}>;
|
|
185
|
+
onBack?: () => void;
|
|
185
186
|
}
|
|
186
187
|
declare const UniversalProfileSettings: React.FC<UniversalProfileSettingsProps>;
|
|
187
188
|
|
|
@@ -384,6 +385,32 @@ interface AppBento2Props {
|
|
|
384
385
|
}
|
|
385
386
|
declare const AppBento2: React.FC<AppBento2Props>;
|
|
386
387
|
|
|
388
|
+
interface UniversalSecurityPageProps {
|
|
389
|
+
has2FA: boolean;
|
|
390
|
+
hasPasskey: boolean;
|
|
391
|
+
userEmail?: string;
|
|
392
|
+
is2FALoading?: boolean;
|
|
393
|
+
isPasskeyLoading?: boolean;
|
|
394
|
+
onBack: () => void;
|
|
395
|
+
onRequest2FASetup?: () => Promise<{
|
|
396
|
+
secret: string;
|
|
397
|
+
qrCodeUrl: string;
|
|
398
|
+
}>;
|
|
399
|
+
onVerifyAndEnable2FA?: (otp: string) => Promise<{
|
|
400
|
+
success: boolean;
|
|
401
|
+
}>;
|
|
402
|
+
onVerifyAndDisable2FA?: (otp: string) => Promise<{
|
|
403
|
+
success: boolean;
|
|
404
|
+
}>;
|
|
405
|
+
onEnablePasskey?: () => Promise<{
|
|
406
|
+
success: boolean;
|
|
407
|
+
}>;
|
|
408
|
+
onDisablePasskey?: () => Promise<{
|
|
409
|
+
success: boolean;
|
|
410
|
+
}>;
|
|
411
|
+
}
|
|
412
|
+
declare const UniversalSecurityPage: React.FC<UniversalSecurityPageProps>;
|
|
413
|
+
|
|
387
414
|
interface ScrollFeature {
|
|
388
415
|
title: string;
|
|
389
416
|
desc: string;
|
|
@@ -740,4 +767,4 @@ interface WaitlistDialogProps {
|
|
|
740
767
|
}
|
|
741
768
|
declare const WaitlistDialog: React.FC<WaitlistDialogProps>;
|
|
742
769
|
|
|
743
|
-
export { AppBento2, type AppBento2Props, type BannerProps, type BentoFeature, type BoardMember, 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, ManagedProjectsBlock, type ManagedProjectsBlockProps, ManagedToaster, MedicalFeatureStatsBlock, MobileNav, type MobileNavItem, type MobileNavProps, 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 ProjectItem, type ScrollFeature, type SocialContact, type SocialLink, type StatItem, TextInput, type TextInputProps, ThreeDActionButton, type ThreeDActionButtonProps, ThreeDButton, type ThreeDButtonProps, UniversalCardPage, type UniversalCardPageProps, UniversalErrorView, type UniversalErrorViewProps, UniversalHomeView, type UniversalHomeViewProps, UniversalOrganizationPage, type UniversalOrganizationPageProps, UniversalProfilePage, type UniversalProfilePageProps, UniversalProfileSettings, type UniversalProfileSettingsProps, UniversalSidebar, type UniversalSidebarProps, type UniversalTransaction, UniversalTransactionPage, type UniversalTransactionPageProps, type UniversalWallet, UniversalWalletPage, type UniversalWalletPageProps, WaitlistDialog, type WaitlistDialogProps };
|
|
770
|
+
export { AppBento2, type AppBento2Props, type BannerProps, type BentoFeature, type BoardMember, 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, ManagedProjectsBlock, type ManagedProjectsBlockProps, ManagedToaster, MedicalFeatureStatsBlock, MobileNav, type MobileNavItem, type MobileNavProps, 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 ProjectItem, type ScrollFeature, type SocialContact, type SocialLink, type StatItem, TextInput, type TextInputProps, ThreeDActionButton, type ThreeDActionButtonProps, ThreeDButton, type ThreeDButtonProps, UniversalCardPage, type UniversalCardPageProps, UniversalErrorView, type UniversalErrorViewProps, UniversalHomeView, type UniversalHomeViewProps, UniversalOrganizationPage, type UniversalOrganizationPageProps, UniversalProfilePage, type UniversalProfilePageProps, UniversalProfileSettings, type UniversalProfileSettingsProps, UniversalSecurityPage, type UniversalSecurityPageProps, UniversalSidebar, type UniversalSidebarProps, type UniversalTransaction, UniversalTransactionPage, type UniversalTransactionPageProps, type UniversalWallet, UniversalWalletPage, type UniversalWalletPageProps, WaitlistDialog, type WaitlistDialogProps };
|