@retinalabsllc/zairusjs 21.1.6 → 21.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 CHANGED
@@ -1285,7 +1285,7 @@ interface RootSidebarProps {
1285
1285
  showLogoutAction?: boolean;
1286
1286
  onLogout?: () => Promise<void>;
1287
1287
  }
1288
- declare function RootSidebar({ NavItem2s, currentPath, isMobileOpen, closeMobile, onNavClick, avatarSrc, title, subtitle, homeUrl, showWorkspaceSwitcher, workspaces, activeWorkspaceId, onSwitchWorkspace, showLogoutAction, onLogout }: RootSidebarProps): React.JSX.Element;
1288
+ declare function RootSidebar({ NavItem2s, currentPath, isMobileOpen, closeMobile, openMobile, onNavClick, avatarSrc, title, subtitle, homeUrl, showWorkspaceSwitcher, workspaces, activeWorkspaceId, onSwitchWorkspace, showLogoutAction, onLogout }: RootSidebarProps): React.JSX.Element;
1289
1289
 
1290
1290
  interface UniversalMember3 {
1291
1291
  id: string;
@@ -1390,4 +1390,66 @@ interface UniversalApplicationPage2Props {
1390
1390
  }
1391
1391
  declare const UniversalApplicationPage2: React.FC<UniversalApplicationPage2Props>;
1392
1392
 
1393
- 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, 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 HomeActionBtn3, 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 NavItem2, type NetworkOption, type NotificationItem, type NotificationItem2, type NotificationItem3, 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, RootSidebar, type RootSidebarProps, type ScrollFeature, type SocialContact, type SocialLink, type StatItem, TextInput, type TextInputProps, ThreeDActionButton, type ThreeDActionButtonProps, ThreeDButton, type ThreeDButtonProps, type TierOption, type UniversalApplication, UniversalApplicationPage2, type UniversalApplicationPage2Props, UniversalApplicationsPage, type UniversalApplicationsPageProps, UniversalBuyCryptoPage, type UniversalBuyCryptoPageProps, UniversalCardActionPage, type UniversalCardActionPageProps, UniversalCardPage, type UniversalCardPageProps, UniversalCreateHuddle, type UniversalCreateHuddleProps, UniversalDeveloperSettings, type UniversalDeveloperSettingsProps, UniversalErrorView, type UniversalErrorViewProps, UniversalHome2, type UniversalHome2Props, UniversalHome3, type UniversalHome3Props, UniversalHomeView, type UniversalHomeViewProps, type UniversalHuddle, UniversalHuddleDetails, type UniversalHuddleDetailsProps, UniversalHuddlesPage, type UniversalHuddlesPageProps, type UniversalMember, type UniversalMember2$1 as UniversalMember2, type UniversalMember3, UniversalMembersPage, type UniversalMembersPageProps, UniversalOrganizationPage, type UniversalOrganizationPageProps, UniversalProfilePage, type UniversalProfilePageProps, UniversalProfileSettings, type UniversalProfileSettingsProps, type UniversalReferralItem, UniversalReferralPage, type UniversalReferralPageProps, UniversalRewardPage, type UniversalRewardPageProps, UniversalSecurityPage, type UniversalSecurityPageProps, UniversalSettings, UniversalSettings2, type UniversalSettings2Props, type UniversalSettingsProps, UniversalSidebar, type UniversalSidebarProps, type UniversalTransaction, UniversalTransactionPage, type UniversalTransactionPageProps, UniversalVerificationPage, type UniversalVerificationPageProps, type UniversalWallet, UniversalWalletPage, type UniversalWalletPageProps, type VerificationStatus, WaitlistDialog, type WaitlistDialogProps, type WorkspaceItem };
1393
+ interface UniversalApplicationDetailsProps {
1394
+ onBackHref: string;
1395
+ application: {
1396
+ id: string;
1397
+ name: string;
1398
+ type: string;
1399
+ status: string;
1400
+ };
1401
+ canDelete: boolean;
1402
+ onDeleteSubmit: () => Promise<void>;
1403
+ }
1404
+ declare const UniversalApplicationDetails: React.FC<UniversalApplicationDetailsProps>;
1405
+
1406
+ interface UniversalMemberApp {
1407
+ id: string;
1408
+ userId: string;
1409
+ fullName: string;
1410
+ avatarUrl?: string | null;
1411
+ role: string;
1412
+ }
1413
+ interface UniversalCompanyApp {
1414
+ id: string;
1415
+ name: string;
1416
+ isPrivate: boolean;
1417
+ }
1418
+ interface ApplicationTypeMeta {
1419
+ key: string;
1420
+ label: string;
1421
+ desc: string;
1422
+ available?: boolean;
1423
+ }
1424
+ interface UniversalCreateApplicationProps {
1425
+ onBackHref: string;
1426
+ userRole?: string;
1427
+ applicationTypesMeta: ApplicationTypeMeta[];
1428
+ members: UniversalMemberApp[];
1429
+ isMembersLoading: boolean;
1430
+ membersCurrentPage: number;
1431
+ membersTotalPages: number;
1432
+ onMembersPageChange: (page: number) => void;
1433
+ membersSearchQuery: string;
1434
+ onMembersSearchChange: (query: string) => void;
1435
+ companies: UniversalCompanyApp[];
1436
+ isCompaniesLoading: boolean;
1437
+ companiesCurrentPage: number;
1438
+ companiesTotalPages: number;
1439
+ onCompaniesPageChange: (page: number) => void;
1440
+ companiesSearchQuery: string;
1441
+ onCompaniesSearchChange: (query: string) => void;
1442
+ onCreateSubmit: (payload: {
1443
+ creationMode: 'NEW' | 'EXISTING';
1444
+ companyId?: string;
1445
+ newCompany?: {
1446
+ name: string;
1447
+ isPrivate: boolean;
1448
+ assignedUsers: string[];
1449
+ };
1450
+ type: string;
1451
+ }) => Promise<void>;
1452
+ }
1453
+ declare const UniversalCreateApplication: React.FC<UniversalCreateApplicationProps>;
1454
+
1455
+ 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, 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 HomeActionBtn3, 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 NavItem2, type NetworkOption, type NotificationItem, type NotificationItem2, type NotificationItem3, 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, RootSidebar, type RootSidebarProps, type ScrollFeature, type SocialContact, type SocialLink, type StatItem, TextInput, type TextInputProps, ThreeDActionButton, type ThreeDActionButtonProps, ThreeDButton, type ThreeDButtonProps, type TierOption, type UniversalApplication, UniversalApplicationDetails, type UniversalApplicationDetailsProps, UniversalApplicationPage2, type UniversalApplicationPage2Props, UniversalApplicationsPage, type UniversalApplicationsPageProps, UniversalBuyCryptoPage, type UniversalBuyCryptoPageProps, UniversalCardActionPage, type UniversalCardActionPageProps, UniversalCardPage, type UniversalCardPageProps, type UniversalCompanyApp, UniversalCreateApplication, type UniversalCreateApplicationProps, UniversalCreateHuddle, type UniversalCreateHuddleProps, UniversalDeveloperSettings, type UniversalDeveloperSettingsProps, UniversalErrorView, type UniversalErrorViewProps, UniversalHome2, type UniversalHome2Props, UniversalHome3, type UniversalHome3Props, UniversalHomeView, type UniversalHomeViewProps, type UniversalHuddle, UniversalHuddleDetails, type UniversalHuddleDetailsProps, UniversalHuddlesPage, type UniversalHuddlesPageProps, type UniversalMember, type UniversalMember2$1 as UniversalMember2, type UniversalMember3, type UniversalMemberApp, UniversalMembersPage, type UniversalMembersPageProps, UniversalOrganizationPage, type UniversalOrganizationPageProps, UniversalProfilePage, type UniversalProfilePageProps, UniversalProfileSettings, type UniversalProfileSettingsProps, type UniversalReferralItem, UniversalReferralPage, type UniversalReferralPageProps, UniversalRewardPage, type UniversalRewardPageProps, UniversalSecurityPage, type UniversalSecurityPageProps, UniversalSettings, UniversalSettings2, type UniversalSettings2Props, type UniversalSettingsProps, UniversalSidebar, type UniversalSidebarProps, type UniversalTransaction, UniversalTransactionPage, type UniversalTransactionPageProps, UniversalVerificationPage, type UniversalVerificationPageProps, type UniversalWallet, UniversalWalletPage, type UniversalWalletPageProps, type VerificationStatus, WaitlistDialog, type WaitlistDialogProps, type WorkspaceItem };
package/dist/index.d.ts CHANGED
@@ -1285,7 +1285,7 @@ interface RootSidebarProps {
1285
1285
  showLogoutAction?: boolean;
1286
1286
  onLogout?: () => Promise<void>;
1287
1287
  }
1288
- declare function RootSidebar({ NavItem2s, currentPath, isMobileOpen, closeMobile, onNavClick, avatarSrc, title, subtitle, homeUrl, showWorkspaceSwitcher, workspaces, activeWorkspaceId, onSwitchWorkspace, showLogoutAction, onLogout }: RootSidebarProps): React.JSX.Element;
1288
+ declare function RootSidebar({ NavItem2s, currentPath, isMobileOpen, closeMobile, openMobile, onNavClick, avatarSrc, title, subtitle, homeUrl, showWorkspaceSwitcher, workspaces, activeWorkspaceId, onSwitchWorkspace, showLogoutAction, onLogout }: RootSidebarProps): React.JSX.Element;
1289
1289
 
1290
1290
  interface UniversalMember3 {
1291
1291
  id: string;
@@ -1390,4 +1390,66 @@ interface UniversalApplicationPage2Props {
1390
1390
  }
1391
1391
  declare const UniversalApplicationPage2: React.FC<UniversalApplicationPage2Props>;
1392
1392
 
1393
- 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, 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 HomeActionBtn3, 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 NavItem2, type NetworkOption, type NotificationItem, type NotificationItem2, type NotificationItem3, 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, RootSidebar, type RootSidebarProps, type ScrollFeature, type SocialContact, type SocialLink, type StatItem, TextInput, type TextInputProps, ThreeDActionButton, type ThreeDActionButtonProps, ThreeDButton, type ThreeDButtonProps, type TierOption, type UniversalApplication, UniversalApplicationPage2, type UniversalApplicationPage2Props, UniversalApplicationsPage, type UniversalApplicationsPageProps, UniversalBuyCryptoPage, type UniversalBuyCryptoPageProps, UniversalCardActionPage, type UniversalCardActionPageProps, UniversalCardPage, type UniversalCardPageProps, UniversalCreateHuddle, type UniversalCreateHuddleProps, UniversalDeveloperSettings, type UniversalDeveloperSettingsProps, UniversalErrorView, type UniversalErrorViewProps, UniversalHome2, type UniversalHome2Props, UniversalHome3, type UniversalHome3Props, UniversalHomeView, type UniversalHomeViewProps, type UniversalHuddle, UniversalHuddleDetails, type UniversalHuddleDetailsProps, UniversalHuddlesPage, type UniversalHuddlesPageProps, type UniversalMember, type UniversalMember2$1 as UniversalMember2, type UniversalMember3, UniversalMembersPage, type UniversalMembersPageProps, UniversalOrganizationPage, type UniversalOrganizationPageProps, UniversalProfilePage, type UniversalProfilePageProps, UniversalProfileSettings, type UniversalProfileSettingsProps, type UniversalReferralItem, UniversalReferralPage, type UniversalReferralPageProps, UniversalRewardPage, type UniversalRewardPageProps, UniversalSecurityPage, type UniversalSecurityPageProps, UniversalSettings, UniversalSettings2, type UniversalSettings2Props, type UniversalSettingsProps, UniversalSidebar, type UniversalSidebarProps, type UniversalTransaction, UniversalTransactionPage, type UniversalTransactionPageProps, UniversalVerificationPage, type UniversalVerificationPageProps, type UniversalWallet, UniversalWalletPage, type UniversalWalletPageProps, type VerificationStatus, WaitlistDialog, type WaitlistDialogProps, type WorkspaceItem };
1393
+ interface UniversalApplicationDetailsProps {
1394
+ onBackHref: string;
1395
+ application: {
1396
+ id: string;
1397
+ name: string;
1398
+ type: string;
1399
+ status: string;
1400
+ };
1401
+ canDelete: boolean;
1402
+ onDeleteSubmit: () => Promise<void>;
1403
+ }
1404
+ declare const UniversalApplicationDetails: React.FC<UniversalApplicationDetailsProps>;
1405
+
1406
+ interface UniversalMemberApp {
1407
+ id: string;
1408
+ userId: string;
1409
+ fullName: string;
1410
+ avatarUrl?: string | null;
1411
+ role: string;
1412
+ }
1413
+ interface UniversalCompanyApp {
1414
+ id: string;
1415
+ name: string;
1416
+ isPrivate: boolean;
1417
+ }
1418
+ interface ApplicationTypeMeta {
1419
+ key: string;
1420
+ label: string;
1421
+ desc: string;
1422
+ available?: boolean;
1423
+ }
1424
+ interface UniversalCreateApplicationProps {
1425
+ onBackHref: string;
1426
+ userRole?: string;
1427
+ applicationTypesMeta: ApplicationTypeMeta[];
1428
+ members: UniversalMemberApp[];
1429
+ isMembersLoading: boolean;
1430
+ membersCurrentPage: number;
1431
+ membersTotalPages: number;
1432
+ onMembersPageChange: (page: number) => void;
1433
+ membersSearchQuery: string;
1434
+ onMembersSearchChange: (query: string) => void;
1435
+ companies: UniversalCompanyApp[];
1436
+ isCompaniesLoading: boolean;
1437
+ companiesCurrentPage: number;
1438
+ companiesTotalPages: number;
1439
+ onCompaniesPageChange: (page: number) => void;
1440
+ companiesSearchQuery: string;
1441
+ onCompaniesSearchChange: (query: string) => void;
1442
+ onCreateSubmit: (payload: {
1443
+ creationMode: 'NEW' | 'EXISTING';
1444
+ companyId?: string;
1445
+ newCompany?: {
1446
+ name: string;
1447
+ isPrivate: boolean;
1448
+ assignedUsers: string[];
1449
+ };
1450
+ type: string;
1451
+ }) => Promise<void>;
1452
+ }
1453
+ declare const UniversalCreateApplication: React.FC<UniversalCreateApplicationProps>;
1454
+
1455
+ 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, 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 HomeActionBtn3, 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 NavItem2, type NetworkOption, type NotificationItem, type NotificationItem2, type NotificationItem3, 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, RootSidebar, type RootSidebarProps, type ScrollFeature, type SocialContact, type SocialLink, type StatItem, TextInput, type TextInputProps, ThreeDActionButton, type ThreeDActionButtonProps, ThreeDButton, type ThreeDButtonProps, type TierOption, type UniversalApplication, UniversalApplicationDetails, type UniversalApplicationDetailsProps, UniversalApplicationPage2, type UniversalApplicationPage2Props, UniversalApplicationsPage, type UniversalApplicationsPageProps, UniversalBuyCryptoPage, type UniversalBuyCryptoPageProps, UniversalCardActionPage, type UniversalCardActionPageProps, UniversalCardPage, type UniversalCardPageProps, type UniversalCompanyApp, UniversalCreateApplication, type UniversalCreateApplicationProps, UniversalCreateHuddle, type UniversalCreateHuddleProps, UniversalDeveloperSettings, type UniversalDeveloperSettingsProps, UniversalErrorView, type UniversalErrorViewProps, UniversalHome2, type UniversalHome2Props, UniversalHome3, type UniversalHome3Props, UniversalHomeView, type UniversalHomeViewProps, type UniversalHuddle, UniversalHuddleDetails, type UniversalHuddleDetailsProps, UniversalHuddlesPage, type UniversalHuddlesPageProps, type UniversalMember, type UniversalMember2$1 as UniversalMember2, type UniversalMember3, type UniversalMemberApp, UniversalMembersPage, type UniversalMembersPageProps, UniversalOrganizationPage, type UniversalOrganizationPageProps, UniversalProfilePage, type UniversalProfilePageProps, UniversalProfileSettings, type UniversalProfileSettingsProps, type UniversalReferralItem, UniversalReferralPage, type UniversalReferralPageProps, UniversalRewardPage, type UniversalRewardPageProps, UniversalSecurityPage, type UniversalSecurityPageProps, UniversalSettings, UniversalSettings2, type UniversalSettings2Props, type UniversalSettingsProps, UniversalSidebar, type UniversalSidebarProps, type UniversalTransaction, UniversalTransactionPage, type UniversalTransactionPageProps, UniversalVerificationPage, type UniversalVerificationPageProps, type UniversalWallet, UniversalWalletPage, type UniversalWalletPageProps, type VerificationStatus, WaitlistDialog, type WaitlistDialogProps, type WorkspaceItem };