@retinalabsllc/zairusjs 9.0.80 → 9.0.90
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 +29 -1
- package/dist/index.d.ts +29 -1
- package/dist/index.js +446 -149
- package/dist/index.mjs +450 -144
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -141,6 +141,7 @@ interface UniversalOrganizationPageProps {
|
|
|
141
141
|
isReadOnly?: boolean;
|
|
142
142
|
slugPrefixUrl?: string;
|
|
143
143
|
bannerProps?: BannerProps;
|
|
144
|
+
onBack?: () => void;
|
|
144
145
|
onSaveConfiguration: (payload: {
|
|
145
146
|
organizationId: string;
|
|
146
147
|
organizationName?: string;
|
|
@@ -182,6 +183,7 @@ interface UniversalProfileSettingsProps {
|
|
|
182
183
|
success: boolean;
|
|
183
184
|
error?: string;
|
|
184
185
|
}>;
|
|
186
|
+
onBack?: () => void;
|
|
185
187
|
}
|
|
186
188
|
declare const UniversalProfileSettings: React.FC<UniversalProfileSettingsProps>;
|
|
187
189
|
|
|
@@ -384,6 +386,32 @@ interface AppBento2Props {
|
|
|
384
386
|
}
|
|
385
387
|
declare const AppBento2: React.FC<AppBento2Props>;
|
|
386
388
|
|
|
389
|
+
interface UniversalSecurityPageProps {
|
|
390
|
+
has2FA: boolean;
|
|
391
|
+
hasPasskey: boolean;
|
|
392
|
+
userEmail?: string;
|
|
393
|
+
is2FALoading?: boolean;
|
|
394
|
+
isPasskeyLoading?: boolean;
|
|
395
|
+
onBack: () => void;
|
|
396
|
+
onRequest2FASetup?: () => Promise<{
|
|
397
|
+
secret: string;
|
|
398
|
+
qrCodeUrl: string;
|
|
399
|
+
}>;
|
|
400
|
+
onVerifyAndEnable2FA?: (otp: string) => Promise<{
|
|
401
|
+
success: boolean;
|
|
402
|
+
}>;
|
|
403
|
+
onVerifyAndDisable2FA?: (otp: string) => Promise<{
|
|
404
|
+
success: boolean;
|
|
405
|
+
}>;
|
|
406
|
+
onEnablePasskey?: () => Promise<{
|
|
407
|
+
success: boolean;
|
|
408
|
+
}>;
|
|
409
|
+
onDisablePasskey?: () => Promise<{
|
|
410
|
+
success: boolean;
|
|
411
|
+
}>;
|
|
412
|
+
}
|
|
413
|
+
declare const UniversalSecurityPage: React.FC<UniversalSecurityPageProps>;
|
|
414
|
+
|
|
387
415
|
interface ScrollFeature {
|
|
388
416
|
title: string;
|
|
389
417
|
desc: string;
|
|
@@ -740,4 +768,4 @@ interface WaitlistDialogProps {
|
|
|
740
768
|
}
|
|
741
769
|
declare const WaitlistDialog: React.FC<WaitlistDialogProps>;
|
|
742
770
|
|
|
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 };
|
|
771
|
+
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
|
@@ -141,6 +141,7 @@ interface UniversalOrganizationPageProps {
|
|
|
141
141
|
isReadOnly?: boolean;
|
|
142
142
|
slugPrefixUrl?: string;
|
|
143
143
|
bannerProps?: BannerProps;
|
|
144
|
+
onBack?: () => void;
|
|
144
145
|
onSaveConfiguration: (payload: {
|
|
145
146
|
organizationId: string;
|
|
146
147
|
organizationName?: string;
|
|
@@ -182,6 +183,7 @@ interface UniversalProfileSettingsProps {
|
|
|
182
183
|
success: boolean;
|
|
183
184
|
error?: string;
|
|
184
185
|
}>;
|
|
186
|
+
onBack?: () => void;
|
|
185
187
|
}
|
|
186
188
|
declare const UniversalProfileSettings: React.FC<UniversalProfileSettingsProps>;
|
|
187
189
|
|
|
@@ -384,6 +386,32 @@ interface AppBento2Props {
|
|
|
384
386
|
}
|
|
385
387
|
declare const AppBento2: React.FC<AppBento2Props>;
|
|
386
388
|
|
|
389
|
+
interface UniversalSecurityPageProps {
|
|
390
|
+
has2FA: boolean;
|
|
391
|
+
hasPasskey: boolean;
|
|
392
|
+
userEmail?: string;
|
|
393
|
+
is2FALoading?: boolean;
|
|
394
|
+
isPasskeyLoading?: boolean;
|
|
395
|
+
onBack: () => void;
|
|
396
|
+
onRequest2FASetup?: () => Promise<{
|
|
397
|
+
secret: string;
|
|
398
|
+
qrCodeUrl: string;
|
|
399
|
+
}>;
|
|
400
|
+
onVerifyAndEnable2FA?: (otp: string) => Promise<{
|
|
401
|
+
success: boolean;
|
|
402
|
+
}>;
|
|
403
|
+
onVerifyAndDisable2FA?: (otp: string) => Promise<{
|
|
404
|
+
success: boolean;
|
|
405
|
+
}>;
|
|
406
|
+
onEnablePasskey?: () => Promise<{
|
|
407
|
+
success: boolean;
|
|
408
|
+
}>;
|
|
409
|
+
onDisablePasskey?: () => Promise<{
|
|
410
|
+
success: boolean;
|
|
411
|
+
}>;
|
|
412
|
+
}
|
|
413
|
+
declare const UniversalSecurityPage: React.FC<UniversalSecurityPageProps>;
|
|
414
|
+
|
|
387
415
|
interface ScrollFeature {
|
|
388
416
|
title: string;
|
|
389
417
|
desc: string;
|
|
@@ -740,4 +768,4 @@ interface WaitlistDialogProps {
|
|
|
740
768
|
}
|
|
741
769
|
declare const WaitlistDialog: React.FC<WaitlistDialogProps>;
|
|
742
770
|
|
|
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 };
|
|
771
|
+
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 };
|