@retinalabsllc/zairusjs 0.6.1 → 0.6.2
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 +187 -113
- package/dist/index.mjs +174 -96
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -730,6 +730,16 @@ interface UniversalOverviewPageProps {
|
|
|
730
730
|
isLoading?: boolean;
|
|
731
731
|
};
|
|
732
732
|
alerts?: OverviewAlert[];
|
|
733
|
+
banner?: {
|
|
734
|
+
isVisible: boolean;
|
|
735
|
+
title: string;
|
|
736
|
+
message: string;
|
|
737
|
+
type: 'success' | 'warning' | 'alert';
|
|
738
|
+
icon?: any;
|
|
739
|
+
isDismissible?: boolean;
|
|
740
|
+
onDismiss?: () => void;
|
|
741
|
+
action?: React.ReactNode;
|
|
742
|
+
};
|
|
733
743
|
}
|
|
734
744
|
declare const UniversalOverviewPage: React.FC<UniversalOverviewPageProps>;
|
|
735
745
|
|
|
@@ -852,4 +862,22 @@ interface UniversalRegistrationFlowProps {
|
|
|
852
862
|
}
|
|
853
863
|
declare const UniversalRegistrationFlow: React.FC<UniversalRegistrationFlowProps>;
|
|
854
864
|
|
|
855
|
-
|
|
865
|
+
interface BannerProps {
|
|
866
|
+
/** The heading text of the banner */
|
|
867
|
+
title: string;
|
|
868
|
+
/** The main message content */
|
|
869
|
+
message: string;
|
|
870
|
+
/** The type of banner, determines colors and default icon */
|
|
871
|
+
type: 'success' | 'warning' | 'alert';
|
|
872
|
+
/** Optional custom icon to override the default */
|
|
873
|
+
icon?: any;
|
|
874
|
+
/** Whether the banner can be dismissed by the user */
|
|
875
|
+
isDismissible?: boolean;
|
|
876
|
+
/** Optional callback when the banner is dismissed */
|
|
877
|
+
onDismiss?: () => void;
|
|
878
|
+
/** Optional custom action button */
|
|
879
|
+
action?: React.ReactNode;
|
|
880
|
+
}
|
|
881
|
+
declare const Banner: React.FC<BannerProps>;
|
|
882
|
+
|
|
883
|
+
export { AITranscriptionFeature, type AITranscriptionFeatureProps, type AgentFilePayload, type AgentStat, AiApproveDecline, type AiApproveDeclineProps, AiStageCheck, type AiStageCheckProps, type AiTask, type AiTaskStatus, AppBento2, type AppBento2Props, Banner, type BannerProps, type BentoFeature, type BoardMember, type CompanyDetails, type CompanyMember, type DashboardList, type DashboardListItem, type DashboardStat, 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, HeroSection, type HeroSectionProps, ManagedBoardBlock, type ManagedBoardBlockProps, ManagedContactBlock, type ManagedContactBlockProps, ManagedDocument, type ManagedDocumentProps, ManagedNewsletterSplitBlock, type ManagedNewsletterSplitBlockProps, ManagedNotFoundBlock, type ManagedNotFoundBlockProps, ManagedPricingBlock, type ManagedPricingBlockProps, ManagedProjectsBlock, type ManagedProjectsBlockProps, ManagedToaster, type NavItem, NumberInput, type NumberInputProps, type OverviewAlert, type OverviewStat, PageSpinner, type PageSpinnerProps, type PlatformFeatureItem, PlatformFeatures, type PlatformFeaturesProps, PortfolioHero, type PortfolioHeroProps, type PricingFeature, type PricingPlan, ProductHero, type ProductHeroProps, type ProjectItem, type ScrollFeature, type SearchTypeOption, type SocialContact, type SocialLink, Stagger, type StaggerProps, TextInput, type TextInputProps, ThreeDActionButton, type ThreeDActionButtonProps, ThreeDButton, type ThreeDButtonProps, UniversalAgentConsole, type UniversalAgentConsoleProps, UniversalBillingPage, type UniversalBillingPageProps, UniversalDashboardPage, type UniversalDashboardPageProps, UniversalDirectoryPage, type UniversalDirectoryPageProps, UniversalErrorView, type UniversalErrorViewProps, UniversalIdentityPage, type UniversalIdentityPageProps, type UniversalInvoice, UniversalLookupPage, type UniversalLookupPageProps, type UniversalMember, UniversalMembersPage, type UniversalMembersPageProps, UniversalOrganizationPage, type UniversalOrganizationPageProps, UniversalOverviewPage, type UniversalOverviewPageProps, UniversalProfileSettings, type UniversalProfileSettingsProps, UniversalRegistrationFlow, type UniversalRegistrationFlowProps, UniversalSidebar, type UniversalSidebarProps, type WorkspaceItem, ZairusAuth, type ZairusAuthProps };
|
package/dist/index.d.ts
CHANGED
|
@@ -730,6 +730,16 @@ interface UniversalOverviewPageProps {
|
|
|
730
730
|
isLoading?: boolean;
|
|
731
731
|
};
|
|
732
732
|
alerts?: OverviewAlert[];
|
|
733
|
+
banner?: {
|
|
734
|
+
isVisible: boolean;
|
|
735
|
+
title: string;
|
|
736
|
+
message: string;
|
|
737
|
+
type: 'success' | 'warning' | 'alert';
|
|
738
|
+
icon?: any;
|
|
739
|
+
isDismissible?: boolean;
|
|
740
|
+
onDismiss?: () => void;
|
|
741
|
+
action?: React.ReactNode;
|
|
742
|
+
};
|
|
733
743
|
}
|
|
734
744
|
declare const UniversalOverviewPage: React.FC<UniversalOverviewPageProps>;
|
|
735
745
|
|
|
@@ -852,4 +862,22 @@ interface UniversalRegistrationFlowProps {
|
|
|
852
862
|
}
|
|
853
863
|
declare const UniversalRegistrationFlow: React.FC<UniversalRegistrationFlowProps>;
|
|
854
864
|
|
|
855
|
-
|
|
865
|
+
interface BannerProps {
|
|
866
|
+
/** The heading text of the banner */
|
|
867
|
+
title: string;
|
|
868
|
+
/** The main message content */
|
|
869
|
+
message: string;
|
|
870
|
+
/** The type of banner, determines colors and default icon */
|
|
871
|
+
type: 'success' | 'warning' | 'alert';
|
|
872
|
+
/** Optional custom icon to override the default */
|
|
873
|
+
icon?: any;
|
|
874
|
+
/** Whether the banner can be dismissed by the user */
|
|
875
|
+
isDismissible?: boolean;
|
|
876
|
+
/** Optional callback when the banner is dismissed */
|
|
877
|
+
onDismiss?: () => void;
|
|
878
|
+
/** Optional custom action button */
|
|
879
|
+
action?: React.ReactNode;
|
|
880
|
+
}
|
|
881
|
+
declare const Banner: React.FC<BannerProps>;
|
|
882
|
+
|
|
883
|
+
export { AITranscriptionFeature, type AITranscriptionFeatureProps, type AgentFilePayload, type AgentStat, AiApproveDecline, type AiApproveDeclineProps, AiStageCheck, type AiStageCheckProps, type AiTask, type AiTaskStatus, AppBento2, type AppBento2Props, Banner, type BannerProps, type BentoFeature, type BoardMember, type CompanyDetails, type CompanyMember, type DashboardList, type DashboardListItem, type DashboardStat, 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, HeroSection, type HeroSectionProps, ManagedBoardBlock, type ManagedBoardBlockProps, ManagedContactBlock, type ManagedContactBlockProps, ManagedDocument, type ManagedDocumentProps, ManagedNewsletterSplitBlock, type ManagedNewsletterSplitBlockProps, ManagedNotFoundBlock, type ManagedNotFoundBlockProps, ManagedPricingBlock, type ManagedPricingBlockProps, ManagedProjectsBlock, type ManagedProjectsBlockProps, ManagedToaster, type NavItem, NumberInput, type NumberInputProps, type OverviewAlert, type OverviewStat, PageSpinner, type PageSpinnerProps, type PlatformFeatureItem, PlatformFeatures, type PlatformFeaturesProps, PortfolioHero, type PortfolioHeroProps, type PricingFeature, type PricingPlan, ProductHero, type ProductHeroProps, type ProjectItem, type ScrollFeature, type SearchTypeOption, type SocialContact, type SocialLink, Stagger, type StaggerProps, TextInput, type TextInputProps, ThreeDActionButton, type ThreeDActionButtonProps, ThreeDButton, type ThreeDButtonProps, UniversalAgentConsole, type UniversalAgentConsoleProps, UniversalBillingPage, type UniversalBillingPageProps, UniversalDashboardPage, type UniversalDashboardPageProps, UniversalDirectoryPage, type UniversalDirectoryPageProps, UniversalErrorView, type UniversalErrorViewProps, UniversalIdentityPage, type UniversalIdentityPageProps, type UniversalInvoice, UniversalLookupPage, type UniversalLookupPageProps, type UniversalMember, UniversalMembersPage, type UniversalMembersPageProps, UniversalOrganizationPage, type UniversalOrganizationPageProps, UniversalOverviewPage, type UniversalOverviewPageProps, UniversalProfileSettings, type UniversalProfileSettingsProps, UniversalRegistrationFlow, type UniversalRegistrationFlowProps, UniversalSidebar, type UniversalSidebarProps, type WorkspaceItem, ZairusAuth, type ZairusAuthProps };
|