@retinalabsllc/zairusjs 9.0.50 → 9.0.60
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 +31 -7
- package/dist/index.d.ts +31 -7
- package/dist/index.js +513 -550
- package/dist/index.mjs +463 -503
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -113,12 +113,6 @@ interface MobileNavItem {
|
|
|
113
113
|
}
|
|
114
114
|
interface MobileNavProps {
|
|
115
115
|
items: MobileNavItem[];
|
|
116
|
-
web3Address?: string;
|
|
117
|
-
web3Avatar?: string;
|
|
118
|
-
userInitials?: string;
|
|
119
|
-
unreadCount?: number;
|
|
120
|
-
onOpenNotifications?: () => void;
|
|
121
|
-
onLogout?: () => Promise<void>;
|
|
122
116
|
}
|
|
123
117
|
declare const MobileNav: React.FC<MobileNavProps>;
|
|
124
118
|
|
|
@@ -320,6 +314,36 @@ interface UniversalProfilePageProps {
|
|
|
320
314
|
}
|
|
321
315
|
declare const UniversalProfilePage: React.FC<UniversalProfilePageProps>;
|
|
322
316
|
|
|
317
|
+
interface NavItem {
|
|
318
|
+
name: string;
|
|
319
|
+
path: string;
|
|
320
|
+
icon: any;
|
|
321
|
+
}
|
|
322
|
+
interface UniversalSidebarProps {
|
|
323
|
+
navItems: NavItem[];
|
|
324
|
+
currentPath: string;
|
|
325
|
+
onNavClick?: (e: React.MouseEvent<HTMLAnchorElement>, path: string) => void;
|
|
326
|
+
userInitials?: string;
|
|
327
|
+
avatarUrl?: string;
|
|
328
|
+
web3Address?: string;
|
|
329
|
+
unreadCount?: number;
|
|
330
|
+
onOpenNotifications?: () => void;
|
|
331
|
+
showBackButton?: boolean;
|
|
332
|
+
backUrl?: string;
|
|
333
|
+
showLogoutAction?: boolean;
|
|
334
|
+
onLogout?: () => Promise<void>;
|
|
335
|
+
showNotifDialog?: boolean;
|
|
336
|
+
setShowNotifDialog?: (v: boolean) => void;
|
|
337
|
+
selectedNotif?: any;
|
|
338
|
+
setSelectedNotif?: (v: any) => void;
|
|
339
|
+
notificationsList?: any[];
|
|
340
|
+
notificationPage?: number;
|
|
341
|
+
notificationTotalPages?: number;
|
|
342
|
+
onNotificationPageChange?: (page: number) => void;
|
|
343
|
+
onNotificationClick?: (notif: any) => void;
|
|
344
|
+
}
|
|
345
|
+
declare const UniversalSidebar: React.FC<UniversalSidebarProps>;
|
|
346
|
+
|
|
323
347
|
interface AppLogo$1 {
|
|
324
348
|
src: string;
|
|
325
349
|
alt: string;
|
|
@@ -716,4 +740,4 @@ interface WaitlistDialogProps {
|
|
|
716
740
|
}
|
|
717
741
|
declare const WaitlistDialog: React.FC<WaitlistDialogProps>;
|
|
718
742
|
|
|
719
|
-
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, 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, type UniversalTransaction, UniversalTransactionPage, type UniversalTransactionPageProps, type UniversalWallet, UniversalWalletPage, type UniversalWalletPageProps, WaitlistDialog, type WaitlistDialogProps };
|
|
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 };
|
package/dist/index.d.ts
CHANGED
|
@@ -113,12 +113,6 @@ interface MobileNavItem {
|
|
|
113
113
|
}
|
|
114
114
|
interface MobileNavProps {
|
|
115
115
|
items: MobileNavItem[];
|
|
116
|
-
web3Address?: string;
|
|
117
|
-
web3Avatar?: string;
|
|
118
|
-
userInitials?: string;
|
|
119
|
-
unreadCount?: number;
|
|
120
|
-
onOpenNotifications?: () => void;
|
|
121
|
-
onLogout?: () => Promise<void>;
|
|
122
116
|
}
|
|
123
117
|
declare const MobileNav: React.FC<MobileNavProps>;
|
|
124
118
|
|
|
@@ -320,6 +314,36 @@ interface UniversalProfilePageProps {
|
|
|
320
314
|
}
|
|
321
315
|
declare const UniversalProfilePage: React.FC<UniversalProfilePageProps>;
|
|
322
316
|
|
|
317
|
+
interface NavItem {
|
|
318
|
+
name: string;
|
|
319
|
+
path: string;
|
|
320
|
+
icon: any;
|
|
321
|
+
}
|
|
322
|
+
interface UniversalSidebarProps {
|
|
323
|
+
navItems: NavItem[];
|
|
324
|
+
currentPath: string;
|
|
325
|
+
onNavClick?: (e: React.MouseEvent<HTMLAnchorElement>, path: string) => void;
|
|
326
|
+
userInitials?: string;
|
|
327
|
+
avatarUrl?: string;
|
|
328
|
+
web3Address?: string;
|
|
329
|
+
unreadCount?: number;
|
|
330
|
+
onOpenNotifications?: () => void;
|
|
331
|
+
showBackButton?: boolean;
|
|
332
|
+
backUrl?: string;
|
|
333
|
+
showLogoutAction?: boolean;
|
|
334
|
+
onLogout?: () => Promise<void>;
|
|
335
|
+
showNotifDialog?: boolean;
|
|
336
|
+
setShowNotifDialog?: (v: boolean) => void;
|
|
337
|
+
selectedNotif?: any;
|
|
338
|
+
setSelectedNotif?: (v: any) => void;
|
|
339
|
+
notificationsList?: any[];
|
|
340
|
+
notificationPage?: number;
|
|
341
|
+
notificationTotalPages?: number;
|
|
342
|
+
onNotificationPageChange?: (page: number) => void;
|
|
343
|
+
onNotificationClick?: (notif: any) => void;
|
|
344
|
+
}
|
|
345
|
+
declare const UniversalSidebar: React.FC<UniversalSidebarProps>;
|
|
346
|
+
|
|
323
347
|
interface AppLogo$1 {
|
|
324
348
|
src: string;
|
|
325
349
|
alt: string;
|
|
@@ -716,4 +740,4 @@ interface WaitlistDialogProps {
|
|
|
716
740
|
}
|
|
717
741
|
declare const WaitlistDialog: React.FC<WaitlistDialogProps>;
|
|
718
742
|
|
|
719
|
-
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, 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, type UniversalTransaction, UniversalTransactionPage, type UniversalTransactionPageProps, type UniversalWallet, UniversalWalletPage, type UniversalWalletPageProps, WaitlistDialog, type WaitlistDialogProps };
|
|
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 };
|