@citron-systems/citron-ui 1.11.0 → 1.13.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.cts +62 -3
- package/dist/index.d.ts +62 -3
- package/dist/index.js +3 -3
- package/dist/index.mjs +3 -3
- package/package.json +2 -1
package/dist/index.d.cts
CHANGED
|
@@ -349,6 +349,8 @@ interface TaskItemData {
|
|
|
349
349
|
date: string;
|
|
350
350
|
assignee: string;
|
|
351
351
|
completed?: boolean;
|
|
352
|
+
/** Jira issue key when synced (e.g. PROJ-123). Shown on Kanban cards. */
|
|
353
|
+
jiraKey?: string;
|
|
352
354
|
}
|
|
353
355
|
interface TaskWithStatus extends TaskItemData {
|
|
354
356
|
status: TaskStatus;
|
|
@@ -503,9 +505,11 @@ interface TasksViewProps {
|
|
|
503
505
|
onTaskCreate?: (payload: TaskCreatePayload) => void;
|
|
504
506
|
onTaskToggle?: (taskId: string) => void;
|
|
505
507
|
onTaskClick?: (taskId: string) => void;
|
|
508
|
+
/** Invoked when tasks are reordered or moved between columns in Kanban (Jira-style board). */
|
|
509
|
+
onTasksReorder?: (tasks: TaskWithStatus[]) => void;
|
|
506
510
|
className?: string;
|
|
507
511
|
}
|
|
508
|
-
declare function TasksView({ initialTasks, onTaskCreate, onTaskToggle, onTaskClick, className, }: TasksViewProps): react_jsx_runtime.JSX.Element;
|
|
512
|
+
declare function TasksView({ initialTasks, onTaskCreate, onTaskToggle, onTaskClick, onTasksReorder, className, }: TasksViewProps): react_jsx_runtime.JSX.Element;
|
|
509
513
|
|
|
510
514
|
interface EmailCampaignsViewProps {
|
|
511
515
|
onSendNow?: () => void;
|
|
@@ -518,6 +522,47 @@ interface EmailCampaignsViewProps {
|
|
|
518
522
|
}
|
|
519
523
|
declare function EmailCampaignsView({ onSendNow, onSchedule, onSaveDraft, onNewCampaign, onGenerateWithAI, onTemplateClick, className, }: EmailCampaignsViewProps): react_jsx_runtime.JSX.Element;
|
|
520
524
|
|
|
525
|
+
type CitronTheme = 'light' | 'dark';
|
|
526
|
+
declare const CITRON_THEME_STORAGE_KEY = "citron-ui-theme";
|
|
527
|
+
interface ThemeContextValue {
|
|
528
|
+
theme: CitronTheme;
|
|
529
|
+
setTheme: (theme: CitronTheme) => void;
|
|
530
|
+
toggleTheme: () => void;
|
|
531
|
+
}
|
|
532
|
+
interface ThemeProviderProps {
|
|
533
|
+
children: ReactNode;
|
|
534
|
+
}
|
|
535
|
+
declare function ThemeProvider({ children }: ThemeProviderProps): react_jsx_runtime.JSX.Element;
|
|
536
|
+
declare function useTheme(): ThemeContextValue;
|
|
537
|
+
|
|
538
|
+
interface ThemeSwitcherButtonProps extends ButtonHTMLAttributes<HTMLButtonElement> {
|
|
539
|
+
className?: string;
|
|
540
|
+
}
|
|
541
|
+
declare function ThemeSwitcherButton({ className, type, ...props }: ThemeSwitcherButtonProps): react_jsx_runtime.JSX.Element;
|
|
542
|
+
|
|
543
|
+
interface TaskKanbanBoardProps {
|
|
544
|
+
tasks: TaskWithStatus[];
|
|
545
|
+
onTasksChange: (tasks: TaskWithStatus[]) => void;
|
|
546
|
+
className?: string;
|
|
547
|
+
}
|
|
548
|
+
declare function TaskKanbanBoard({ tasks, onTasksChange, className }: TaskKanbanBoardProps): react_jsx_runtime.JSX.Element;
|
|
549
|
+
|
|
550
|
+
interface TaskKanbanColumnProps {
|
|
551
|
+
columnId: TaskStatus;
|
|
552
|
+
title: string;
|
|
553
|
+
count: number;
|
|
554
|
+
children: ReactNode;
|
|
555
|
+
className?: string;
|
|
556
|
+
}
|
|
557
|
+
declare function TaskKanbanColumn({ columnId, title, count, children, className, }: TaskKanbanColumnProps): react_jsx_runtime.JSX.Element;
|
|
558
|
+
|
|
559
|
+
interface TaskKanbanCardProps {
|
|
560
|
+
task: TaskWithStatus;
|
|
561
|
+
index: number;
|
|
562
|
+
className?: string;
|
|
563
|
+
}
|
|
564
|
+
declare function TaskKanbanCard({ task, index, className }: TaskKanbanCardProps): react_jsx_runtime.JSX.Element;
|
|
565
|
+
|
|
521
566
|
interface AccordionItem {
|
|
522
567
|
id: string;
|
|
523
568
|
title: ReactNode;
|
|
@@ -611,9 +656,11 @@ interface AppSidebarProps {
|
|
|
611
656
|
logo?: ReactNode;
|
|
612
657
|
/** When true the status dot at the bottom pulses with an animation. */
|
|
613
658
|
showStatusDot?: boolean;
|
|
659
|
+
/** Renders the global theme toggle (moon/sun) next to bottom nav items. Requires ThemeProvider. */
|
|
660
|
+
showThemeToggle?: boolean;
|
|
614
661
|
className?: string;
|
|
615
662
|
}
|
|
616
|
-
declare function AppSidebar({ items, bottomItems, activePath, onNavigate, logo, showStatusDot, className, }: AppSidebarProps): react_jsx_runtime.JSX.Element;
|
|
663
|
+
declare function AppSidebar({ items, bottomItems, activePath, onNavigate, logo, showStatusDot, showThemeToggle, className, }: AppSidebarProps): react_jsx_runtime.JSX.Element;
|
|
617
664
|
|
|
618
665
|
type EventStatus = 'success' | 'warning' | 'error' | 'danger' | 'info';
|
|
619
666
|
interface EventFeedItem {
|
|
@@ -1395,4 +1442,16 @@ interface NavLinkRouterProps extends Omit<NavLinkProps$1, 'className'> {
|
|
|
1395
1442
|
}
|
|
1396
1443
|
declare const NavLinkRouter: react.ForwardRefExoticComponent<NavLinkRouterProps & react.RefAttributes<HTMLAnchorElement>>;
|
|
1397
1444
|
|
|
1398
|
-
|
|
1445
|
+
/**
|
|
1446
|
+
* Semantic CSS variable names from @citron-systems/citron-ds (resolved values follow [data-theme] on documentElement).
|
|
1447
|
+
*/
|
|
1448
|
+
declare const semanticBackgroundPrimary = "var(--inkblot-semantic-color-background-primary)";
|
|
1449
|
+
declare const semanticBackgroundSecondary = "var(--inkblot-semantic-color-background-secondary)";
|
|
1450
|
+
declare const semanticBorderDefault = "var(--inkblot-semantic-color-border-default)";
|
|
1451
|
+
declare const semanticTextPrimary = "var(--inkblot-semantic-color-text-primary)";
|
|
1452
|
+
declare const semanticTextSecondary = "var(--inkblot-semantic-color-text-secondary)";
|
|
1453
|
+
declare const semanticInteractivePrimary = "var(--inkblot-semantic-color-interactive-primary)";
|
|
1454
|
+
declare const semanticInteractiveSecondary = "var(--inkblot-semantic-color-interactive-secondary)";
|
|
1455
|
+
declare const semanticInteractiveSecondaryHover = "var(--inkblot-semantic-color-interactive-secondary-hover)";
|
|
1456
|
+
|
|
1457
|
+
export { AIComposeInput, type AIComposeInputProps, AIEmailGenerator, type AIEmailGeneratorProps, Accordion, type AccordionItem, type AccordionProps, type ActionButtonItem, ActionButtons, type ActionButtonsProps, ActivityStream, type ActivityStreamProps, Alert, AlertDialog, type AlertDialogProps, type AlertProps, type AlertVariant, AppLayout, type AppLayoutProps, AppNavigationRail, type AppNavigationRailItem, type AppNavigationRailProps, AppSidebar, type AppSidebarItem, type AppSidebarProps, AspectRatio, type AspectRatioProps, Avatar, type AvatarProps, type AvatarSize, Badge, type BadgeProps, type BadgeVariant, type BlockType, Breadcrumb, type BreadcrumbItem, type BreadcrumbProps, Button, type ButtonProps, type ButtonVariant, CITRON_THEME_STORAGE_KEY, Calendar, type CalendarProps, type CampaignStatus, CampaignTable, type CampaignTableProps, type CampaignTableRow, type CanvasBlock, type CanvasContextValue, CanvasProvider, type CanvasProviderProps, Card, CardContent, CardDescription, CardFooter, CardHeader, type CardProps, CardTitle, Carousel, type CarouselProps, Chart, type ChartDatum, type ChartProps, ChatFeed, type ChatFeedProps, type ChatMessage, Checkbox, type CheckboxProps, CircularScore, type CircularScoreProps, type CitronEvent, type CitronTheme, Collapsible, type CollapsibleProps, Command, CommandBar, type CommandBarProps, CommandCanvas, type CommandCanvasCardType, type CommandCanvasMessage, type CommandCanvasProps, CommandInterface, type CommandInterfaceProps, type CommandItem, type CommandProps, ContextMenu, type ContextMenuItem, type ContextMenuProps, Dialog, DialogClose, type DialogCloseProps, DialogContent, type DialogContentProps, DialogDescription, type DialogDescriptionProps, DialogFooter, type DialogFooterProps, DialogHeader, type DialogHeaderProps, type DialogProps, DialogTitle, type DialogTitleProps, DialogTrigger, type DialogTriggerProps, Drawer, DrawerClose, type DrawerCloseProps, DrawerContent, type DrawerContentProps, DrawerDescription, type DrawerDescriptionProps, DrawerFooter, type DrawerFooterProps, DrawerHeader, type DrawerHeaderProps, type DrawerProps, DrawerTitle, type DrawerTitleProps, DrawerTrigger, type DrawerTriggerProps, DropdownMenu, DropdownMenuContent, type DropdownMenuContentProps, DropdownMenuItem, type DropdownMenuItemProps, type DropdownMenuProps, DropdownMenuSeparator, type DropdownMenuSeparatorProps, DropdownMenuTrigger, type DropdownMenuTriggerProps, type Edge, type EmailBlock, EmailBlockEditor, type EmailBlockEditorProps, EmailCampaignsView, type EmailCampaignsViewProps, EmailComposeActionButtons, type EmailTemplateItem, EmailTemplatesSection, type EmailTemplatesSectionProps, EntityCard, type EntityCardProps, type EntityCardStat, EntityCommandCard, type EntityCommandCardProps, type EntityCommandCardStat, type EntityType, ErrorBoundary, type ErrorBoundaryProps, EventFeed, type EventFeedItem, type EventFeedProps, EventRow, type EventRowProps, type EventStatus, type EventStreamEvent, EventStreamFeed, type EventStreamFeedProps, EventStreamSidebar, type EventStreamSidebarProps, type EventStreamStatus, Form, FormActions, type FormActionsProps, FormField, type FormFieldProps, type FormProps, type GraphEdge, type GraphNode$1 as GraphNode, GraphView, type GraphViewProps, GuidedTour, type GuidedTourProps, type GuidedTourStep, HoverCard, HoverCardContent, type HoverCardContentProps, type HoverCardProps, HoverCardTrigger, type HoverCardTriggerProps, Input, InputOtp, type InputOtpProps, type InputProps, IntelligenceCard, type IntelligenceCardProps, IntelligenceLab, type IntelligenceLabInsight, type IntelligenceLabKpiCard, type IntelligenceLabProps, IntelligenceScoreCard, type IntelligenceScoreCardProps, type IntelligenceScoreItem, Label, type LabelProps, MainShell, type MainShellProps, Menubar, MenubarCloseZone, type MenubarCloseZoneProps, MenubarContent, type MenubarContentProps, MenubarItem, type MenubarItemProps, MenubarMenu, type MenubarMenuProps, type MenubarProps, MenubarSeparator, type MenubarSeparatorProps, MenubarTrigger, type MenubarTriggerProps, type MetricComparisonItem, MetricComparisonList, type MetricComparisonListProps, type MetricComparisonVariant, ModuleContainer, type ModuleContainerProps, ModuleErrorBoundary, type ModuleErrorBoundaryProps, ModuleSkeleton, type ModuleSkeletonProps, NavLink, type NavLinkProps, NavLinkRouter, type NavLinkRouterProps, NavigationMenu, type NavigationMenuItem, type NavigationMenuProps, OSNavigationRail, type OSNavigationRailItem, type OSNavigationRailProps, OnboardingWizard, type OnboardingWizardProps, PageErrorFallback, type PageErrorFallbackProps, PageHeader, PageHeaderActionButton, type PageHeaderActionButtonProps, type PageHeaderProps, Pagination, type PaginationProps, Popover, PopoverClose, type PopoverCloseProps, PopoverContent, type PopoverContentProps, type PopoverProps, PopoverTrigger, type PopoverTriggerProps, Progress, type ProgressProps, RadioGroup, RadioGroupItem, type RadioGroupItemProps, type RadioGroupOption, type RadioGroupProps, Resizable, type ResizableProps, RightPanel, type RightPanelAgent, type RightPanelChatMessage, type RightPanelProps, type RightPanelTab, RouteWithErrorBoundary, type RouteWithErrorBoundaryProps, ScrollArea, type ScrollAreaProps, SearchBar, type SearchBarProps, Select, type SelectOption, type SelectProps, Separator, type SeparatorOrientation, type SeparatorProps, Sheet, type SheetProps, type SheetSide, Sidebar, type SidebarItem, type SidebarProps, Skeleton, type SkeletonProps, Slider, type SliderProps, Sonner, type SonnerProps, type StatCardChangeVariant, StatCardGrid, type StatCardGridProps, type StatCardItem, type StatCardWithChartItem, StatCards, type StatCardsProps, StatCardsWithChart, type StatCardsWithChartProps, StatusBadge, type StatusBadgeProps, type StatusBadgeVariant, Switch, type SwitchProps, type TabItem, TabSystem, type TabSystemProps, Table, TableBody, TableCaption, TableCell, TableEmptyState, TableHead, TableHeader, TableRow, type TableSortDirection, Tabs, type TabsItem, type TabsProps, TaskCreateForm, type TaskCreateFormProps, type TaskCreatePayload, TaskItem, type TaskItemData, type TaskItemProps, TaskKanbanBoard, type TaskKanbanBoardProps, TaskKanbanCard, type TaskKanbanCardProps, TaskKanbanColumn, type TaskKanbanColumnProps, TaskList, type TaskListProps, type TaskPriority, type TaskSection, type TaskStatus, type TaskWithStatus, TasksView, type TasksViewProps, TemplateCard, type TemplateCardProps, Textarea, type TextareaProps, type TextareaResize, type ThemeContextValue, ThemeProvider, ThemeSwitcherButton, type ThemeSwitcherButtonProps, Toast, type ToastAction, type ToastProps, type ToastVariant, Toaster, type ToasterItem, type ToasterPosition, type ToasterProps, Toggle, ToggleGroup, type ToggleGroupItem, type ToggleGroupProps, type ToggleGroupType, type ToggleProps, type ToggleSize, type ToggleVariant, Tooltip, type TooltipProps, type TooltipSide, semanticBackgroundPrimary, semanticBackgroundSecondary, semanticBorderDefault, semanticInteractivePrimary, semanticInteractiveSecondary, semanticInteractiveSecondaryHover, semanticTextPrimary, semanticTextSecondary, useCanvas, useTheme };
|
package/dist/index.d.ts
CHANGED
|
@@ -349,6 +349,8 @@ interface TaskItemData {
|
|
|
349
349
|
date: string;
|
|
350
350
|
assignee: string;
|
|
351
351
|
completed?: boolean;
|
|
352
|
+
/** Jira issue key when synced (e.g. PROJ-123). Shown on Kanban cards. */
|
|
353
|
+
jiraKey?: string;
|
|
352
354
|
}
|
|
353
355
|
interface TaskWithStatus extends TaskItemData {
|
|
354
356
|
status: TaskStatus;
|
|
@@ -503,9 +505,11 @@ interface TasksViewProps {
|
|
|
503
505
|
onTaskCreate?: (payload: TaskCreatePayload) => void;
|
|
504
506
|
onTaskToggle?: (taskId: string) => void;
|
|
505
507
|
onTaskClick?: (taskId: string) => void;
|
|
508
|
+
/** Invoked when tasks are reordered or moved between columns in Kanban (Jira-style board). */
|
|
509
|
+
onTasksReorder?: (tasks: TaskWithStatus[]) => void;
|
|
506
510
|
className?: string;
|
|
507
511
|
}
|
|
508
|
-
declare function TasksView({ initialTasks, onTaskCreate, onTaskToggle, onTaskClick, className, }: TasksViewProps): react_jsx_runtime.JSX.Element;
|
|
512
|
+
declare function TasksView({ initialTasks, onTaskCreate, onTaskToggle, onTaskClick, onTasksReorder, className, }: TasksViewProps): react_jsx_runtime.JSX.Element;
|
|
509
513
|
|
|
510
514
|
interface EmailCampaignsViewProps {
|
|
511
515
|
onSendNow?: () => void;
|
|
@@ -518,6 +522,47 @@ interface EmailCampaignsViewProps {
|
|
|
518
522
|
}
|
|
519
523
|
declare function EmailCampaignsView({ onSendNow, onSchedule, onSaveDraft, onNewCampaign, onGenerateWithAI, onTemplateClick, className, }: EmailCampaignsViewProps): react_jsx_runtime.JSX.Element;
|
|
520
524
|
|
|
525
|
+
type CitronTheme = 'light' | 'dark';
|
|
526
|
+
declare const CITRON_THEME_STORAGE_KEY = "citron-ui-theme";
|
|
527
|
+
interface ThemeContextValue {
|
|
528
|
+
theme: CitronTheme;
|
|
529
|
+
setTheme: (theme: CitronTheme) => void;
|
|
530
|
+
toggleTheme: () => void;
|
|
531
|
+
}
|
|
532
|
+
interface ThemeProviderProps {
|
|
533
|
+
children: ReactNode;
|
|
534
|
+
}
|
|
535
|
+
declare function ThemeProvider({ children }: ThemeProviderProps): react_jsx_runtime.JSX.Element;
|
|
536
|
+
declare function useTheme(): ThemeContextValue;
|
|
537
|
+
|
|
538
|
+
interface ThemeSwitcherButtonProps extends ButtonHTMLAttributes<HTMLButtonElement> {
|
|
539
|
+
className?: string;
|
|
540
|
+
}
|
|
541
|
+
declare function ThemeSwitcherButton({ className, type, ...props }: ThemeSwitcherButtonProps): react_jsx_runtime.JSX.Element;
|
|
542
|
+
|
|
543
|
+
interface TaskKanbanBoardProps {
|
|
544
|
+
tasks: TaskWithStatus[];
|
|
545
|
+
onTasksChange: (tasks: TaskWithStatus[]) => void;
|
|
546
|
+
className?: string;
|
|
547
|
+
}
|
|
548
|
+
declare function TaskKanbanBoard({ tasks, onTasksChange, className }: TaskKanbanBoardProps): react_jsx_runtime.JSX.Element;
|
|
549
|
+
|
|
550
|
+
interface TaskKanbanColumnProps {
|
|
551
|
+
columnId: TaskStatus;
|
|
552
|
+
title: string;
|
|
553
|
+
count: number;
|
|
554
|
+
children: ReactNode;
|
|
555
|
+
className?: string;
|
|
556
|
+
}
|
|
557
|
+
declare function TaskKanbanColumn({ columnId, title, count, children, className, }: TaskKanbanColumnProps): react_jsx_runtime.JSX.Element;
|
|
558
|
+
|
|
559
|
+
interface TaskKanbanCardProps {
|
|
560
|
+
task: TaskWithStatus;
|
|
561
|
+
index: number;
|
|
562
|
+
className?: string;
|
|
563
|
+
}
|
|
564
|
+
declare function TaskKanbanCard({ task, index, className }: TaskKanbanCardProps): react_jsx_runtime.JSX.Element;
|
|
565
|
+
|
|
521
566
|
interface AccordionItem {
|
|
522
567
|
id: string;
|
|
523
568
|
title: ReactNode;
|
|
@@ -611,9 +656,11 @@ interface AppSidebarProps {
|
|
|
611
656
|
logo?: ReactNode;
|
|
612
657
|
/** When true the status dot at the bottom pulses with an animation. */
|
|
613
658
|
showStatusDot?: boolean;
|
|
659
|
+
/** Renders the global theme toggle (moon/sun) next to bottom nav items. Requires ThemeProvider. */
|
|
660
|
+
showThemeToggle?: boolean;
|
|
614
661
|
className?: string;
|
|
615
662
|
}
|
|
616
|
-
declare function AppSidebar({ items, bottomItems, activePath, onNavigate, logo, showStatusDot, className, }: AppSidebarProps): react_jsx_runtime.JSX.Element;
|
|
663
|
+
declare function AppSidebar({ items, bottomItems, activePath, onNavigate, logo, showStatusDot, showThemeToggle, className, }: AppSidebarProps): react_jsx_runtime.JSX.Element;
|
|
617
664
|
|
|
618
665
|
type EventStatus = 'success' | 'warning' | 'error' | 'danger' | 'info';
|
|
619
666
|
interface EventFeedItem {
|
|
@@ -1395,4 +1442,16 @@ interface NavLinkRouterProps extends Omit<NavLinkProps$1, 'className'> {
|
|
|
1395
1442
|
}
|
|
1396
1443
|
declare const NavLinkRouter: react.ForwardRefExoticComponent<NavLinkRouterProps & react.RefAttributes<HTMLAnchorElement>>;
|
|
1397
1444
|
|
|
1398
|
-
|
|
1445
|
+
/**
|
|
1446
|
+
* Semantic CSS variable names from @citron-systems/citron-ds (resolved values follow [data-theme] on documentElement).
|
|
1447
|
+
*/
|
|
1448
|
+
declare const semanticBackgroundPrimary = "var(--inkblot-semantic-color-background-primary)";
|
|
1449
|
+
declare const semanticBackgroundSecondary = "var(--inkblot-semantic-color-background-secondary)";
|
|
1450
|
+
declare const semanticBorderDefault = "var(--inkblot-semantic-color-border-default)";
|
|
1451
|
+
declare const semanticTextPrimary = "var(--inkblot-semantic-color-text-primary)";
|
|
1452
|
+
declare const semanticTextSecondary = "var(--inkblot-semantic-color-text-secondary)";
|
|
1453
|
+
declare const semanticInteractivePrimary = "var(--inkblot-semantic-color-interactive-primary)";
|
|
1454
|
+
declare const semanticInteractiveSecondary = "var(--inkblot-semantic-color-interactive-secondary)";
|
|
1455
|
+
declare const semanticInteractiveSecondaryHover = "var(--inkblot-semantic-color-interactive-secondary-hover)";
|
|
1456
|
+
|
|
1457
|
+
export { AIComposeInput, type AIComposeInputProps, AIEmailGenerator, type AIEmailGeneratorProps, Accordion, type AccordionItem, type AccordionProps, type ActionButtonItem, ActionButtons, type ActionButtonsProps, ActivityStream, type ActivityStreamProps, Alert, AlertDialog, type AlertDialogProps, type AlertProps, type AlertVariant, AppLayout, type AppLayoutProps, AppNavigationRail, type AppNavigationRailItem, type AppNavigationRailProps, AppSidebar, type AppSidebarItem, type AppSidebarProps, AspectRatio, type AspectRatioProps, Avatar, type AvatarProps, type AvatarSize, Badge, type BadgeProps, type BadgeVariant, type BlockType, Breadcrumb, type BreadcrumbItem, type BreadcrumbProps, Button, type ButtonProps, type ButtonVariant, CITRON_THEME_STORAGE_KEY, Calendar, type CalendarProps, type CampaignStatus, CampaignTable, type CampaignTableProps, type CampaignTableRow, type CanvasBlock, type CanvasContextValue, CanvasProvider, type CanvasProviderProps, Card, CardContent, CardDescription, CardFooter, CardHeader, type CardProps, CardTitle, Carousel, type CarouselProps, Chart, type ChartDatum, type ChartProps, ChatFeed, type ChatFeedProps, type ChatMessage, Checkbox, type CheckboxProps, CircularScore, type CircularScoreProps, type CitronEvent, type CitronTheme, Collapsible, type CollapsibleProps, Command, CommandBar, type CommandBarProps, CommandCanvas, type CommandCanvasCardType, type CommandCanvasMessage, type CommandCanvasProps, CommandInterface, type CommandInterfaceProps, type CommandItem, type CommandProps, ContextMenu, type ContextMenuItem, type ContextMenuProps, Dialog, DialogClose, type DialogCloseProps, DialogContent, type DialogContentProps, DialogDescription, type DialogDescriptionProps, DialogFooter, type DialogFooterProps, DialogHeader, type DialogHeaderProps, type DialogProps, DialogTitle, type DialogTitleProps, DialogTrigger, type DialogTriggerProps, Drawer, DrawerClose, type DrawerCloseProps, DrawerContent, type DrawerContentProps, DrawerDescription, type DrawerDescriptionProps, DrawerFooter, type DrawerFooterProps, DrawerHeader, type DrawerHeaderProps, type DrawerProps, DrawerTitle, type DrawerTitleProps, DrawerTrigger, type DrawerTriggerProps, DropdownMenu, DropdownMenuContent, type DropdownMenuContentProps, DropdownMenuItem, type DropdownMenuItemProps, type DropdownMenuProps, DropdownMenuSeparator, type DropdownMenuSeparatorProps, DropdownMenuTrigger, type DropdownMenuTriggerProps, type Edge, type EmailBlock, EmailBlockEditor, type EmailBlockEditorProps, EmailCampaignsView, type EmailCampaignsViewProps, EmailComposeActionButtons, type EmailTemplateItem, EmailTemplatesSection, type EmailTemplatesSectionProps, EntityCard, type EntityCardProps, type EntityCardStat, EntityCommandCard, type EntityCommandCardProps, type EntityCommandCardStat, type EntityType, ErrorBoundary, type ErrorBoundaryProps, EventFeed, type EventFeedItem, type EventFeedProps, EventRow, type EventRowProps, type EventStatus, type EventStreamEvent, EventStreamFeed, type EventStreamFeedProps, EventStreamSidebar, type EventStreamSidebarProps, type EventStreamStatus, Form, FormActions, type FormActionsProps, FormField, type FormFieldProps, type FormProps, type GraphEdge, type GraphNode$1 as GraphNode, GraphView, type GraphViewProps, GuidedTour, type GuidedTourProps, type GuidedTourStep, HoverCard, HoverCardContent, type HoverCardContentProps, type HoverCardProps, HoverCardTrigger, type HoverCardTriggerProps, Input, InputOtp, type InputOtpProps, type InputProps, IntelligenceCard, type IntelligenceCardProps, IntelligenceLab, type IntelligenceLabInsight, type IntelligenceLabKpiCard, type IntelligenceLabProps, IntelligenceScoreCard, type IntelligenceScoreCardProps, type IntelligenceScoreItem, Label, type LabelProps, MainShell, type MainShellProps, Menubar, MenubarCloseZone, type MenubarCloseZoneProps, MenubarContent, type MenubarContentProps, MenubarItem, type MenubarItemProps, MenubarMenu, type MenubarMenuProps, type MenubarProps, MenubarSeparator, type MenubarSeparatorProps, MenubarTrigger, type MenubarTriggerProps, type MetricComparisonItem, MetricComparisonList, type MetricComparisonListProps, type MetricComparisonVariant, ModuleContainer, type ModuleContainerProps, ModuleErrorBoundary, type ModuleErrorBoundaryProps, ModuleSkeleton, type ModuleSkeletonProps, NavLink, type NavLinkProps, NavLinkRouter, type NavLinkRouterProps, NavigationMenu, type NavigationMenuItem, type NavigationMenuProps, OSNavigationRail, type OSNavigationRailItem, type OSNavigationRailProps, OnboardingWizard, type OnboardingWizardProps, PageErrorFallback, type PageErrorFallbackProps, PageHeader, PageHeaderActionButton, type PageHeaderActionButtonProps, type PageHeaderProps, Pagination, type PaginationProps, Popover, PopoverClose, type PopoverCloseProps, PopoverContent, type PopoverContentProps, type PopoverProps, PopoverTrigger, type PopoverTriggerProps, Progress, type ProgressProps, RadioGroup, RadioGroupItem, type RadioGroupItemProps, type RadioGroupOption, type RadioGroupProps, Resizable, type ResizableProps, RightPanel, type RightPanelAgent, type RightPanelChatMessage, type RightPanelProps, type RightPanelTab, RouteWithErrorBoundary, type RouteWithErrorBoundaryProps, ScrollArea, type ScrollAreaProps, SearchBar, type SearchBarProps, Select, type SelectOption, type SelectProps, Separator, type SeparatorOrientation, type SeparatorProps, Sheet, type SheetProps, type SheetSide, Sidebar, type SidebarItem, type SidebarProps, Skeleton, type SkeletonProps, Slider, type SliderProps, Sonner, type SonnerProps, type StatCardChangeVariant, StatCardGrid, type StatCardGridProps, type StatCardItem, type StatCardWithChartItem, StatCards, type StatCardsProps, StatCardsWithChart, type StatCardsWithChartProps, StatusBadge, type StatusBadgeProps, type StatusBadgeVariant, Switch, type SwitchProps, type TabItem, TabSystem, type TabSystemProps, Table, TableBody, TableCaption, TableCell, TableEmptyState, TableHead, TableHeader, TableRow, type TableSortDirection, Tabs, type TabsItem, type TabsProps, TaskCreateForm, type TaskCreateFormProps, type TaskCreatePayload, TaskItem, type TaskItemData, type TaskItemProps, TaskKanbanBoard, type TaskKanbanBoardProps, TaskKanbanCard, type TaskKanbanCardProps, TaskKanbanColumn, type TaskKanbanColumnProps, TaskList, type TaskListProps, type TaskPriority, type TaskSection, type TaskStatus, type TaskWithStatus, TasksView, type TasksViewProps, TemplateCard, type TemplateCardProps, Textarea, type TextareaProps, type TextareaResize, type ThemeContextValue, ThemeProvider, ThemeSwitcherButton, type ThemeSwitcherButtonProps, Toast, type ToastAction, type ToastProps, type ToastVariant, Toaster, type ToasterItem, type ToasterPosition, type ToasterProps, Toggle, ToggleGroup, type ToggleGroupItem, type ToggleGroupProps, type ToggleGroupType, type ToggleProps, type ToggleSize, type ToggleVariant, Tooltip, type TooltipProps, type TooltipSide, semanticBackgroundPrimary, semanticBackgroundSecondary, semanticBorderDefault, semanticInteractivePrimary, semanticInteractiveSecondary, semanticInteractiveSecondaryHover, semanticTextPrimary, semanticTextSecondary, useCanvas, useTheme };
|