@retinalabsllc/zairusjs 20.1.8 → 20.1.10
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 +21 -1
- package/dist/index.d.ts +21 -1
- package/dist/index.js +234 -38
- package/dist/index.mjs +239 -38
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -154,6 +154,7 @@ interface MobileNavItem {
|
|
|
154
154
|
}
|
|
155
155
|
interface MobileNavProps {
|
|
156
156
|
items: MobileNavItem[];
|
|
157
|
+
hideMobileNav?: boolean;
|
|
157
158
|
}
|
|
158
159
|
declare const MobileNav: React.FC<MobileNavProps>;
|
|
159
160
|
|
|
@@ -1187,4 +1188,23 @@ interface UniversalCreateHuddleProps {
|
|
|
1187
1188
|
}
|
|
1188
1189
|
declare const UniversalCreateHuddle: React.FC<UniversalCreateHuddleProps>;
|
|
1189
1190
|
|
|
1190
|
-
|
|
1191
|
+
interface HomeHuddleCalendarProps {
|
|
1192
|
+
huddles: Array<{
|
|
1193
|
+
id: string;
|
|
1194
|
+
name: string;
|
|
1195
|
+
status: string;
|
|
1196
|
+
imageUrl?: string | null;
|
|
1197
|
+
timeString: string;
|
|
1198
|
+
}>;
|
|
1199
|
+
isLoading: boolean;
|
|
1200
|
+
currentPage: number;
|
|
1201
|
+
totalPages: number;
|
|
1202
|
+
onPageChange: (page: number) => void;
|
|
1203
|
+
searchQuery?: string;
|
|
1204
|
+
onSearchChange?: (q: string) => void;
|
|
1205
|
+
statusFilter?: string;
|
|
1206
|
+
onStatusFilterChange?: (s: string) => void;
|
|
1207
|
+
}
|
|
1208
|
+
declare const HomeHuddleCalendar: React.FC<HomeHuddleCalendarProps>;
|
|
1209
|
+
|
|
1210
|
+
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, HomeHuddleCalendar, type HomeHuddleCalendarProps, 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
|
@@ -154,6 +154,7 @@ interface MobileNavItem {
|
|
|
154
154
|
}
|
|
155
155
|
interface MobileNavProps {
|
|
156
156
|
items: MobileNavItem[];
|
|
157
|
+
hideMobileNav?: boolean;
|
|
157
158
|
}
|
|
158
159
|
declare const MobileNav: React.FC<MobileNavProps>;
|
|
159
160
|
|
|
@@ -1187,4 +1188,23 @@ interface UniversalCreateHuddleProps {
|
|
|
1187
1188
|
}
|
|
1188
1189
|
declare const UniversalCreateHuddle: React.FC<UniversalCreateHuddleProps>;
|
|
1189
1190
|
|
|
1190
|
-
|
|
1191
|
+
interface HomeHuddleCalendarProps {
|
|
1192
|
+
huddles: Array<{
|
|
1193
|
+
id: string;
|
|
1194
|
+
name: string;
|
|
1195
|
+
status: string;
|
|
1196
|
+
imageUrl?: string | null;
|
|
1197
|
+
timeString: string;
|
|
1198
|
+
}>;
|
|
1199
|
+
isLoading: boolean;
|
|
1200
|
+
currentPage: number;
|
|
1201
|
+
totalPages: number;
|
|
1202
|
+
onPageChange: (page: number) => void;
|
|
1203
|
+
searchQuery?: string;
|
|
1204
|
+
onSearchChange?: (q: string) => void;
|
|
1205
|
+
statusFilter?: string;
|
|
1206
|
+
onStatusFilterChange?: (s: string) => void;
|
|
1207
|
+
}
|
|
1208
|
+
declare const HomeHuddleCalendar: React.FC<HomeHuddleCalendarProps>;
|
|
1209
|
+
|
|
1210
|
+
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, HomeHuddleCalendar, type HomeHuddleCalendarProps, 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 };
|