@citron-systems/citron-ui 1.13.0 → 1.15.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 +162 -74
- package/dist/index.d.ts +162 -74
- package/dist/index.js +3 -3
- package/dist/index.mjs +3 -3
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -5,6 +5,43 @@ import { LucideIcon } from 'lucide-react';
|
|
|
5
5
|
import { FallbackProps } from 'react-error-boundary';
|
|
6
6
|
import { NavLinkProps as NavLinkProps$1 } from 'react-router-dom';
|
|
7
7
|
|
|
8
|
+
interface AssistantMessage {
|
|
9
|
+
id: string;
|
|
10
|
+
role: 'user' | 'assistant';
|
|
11
|
+
content: string;
|
|
12
|
+
renderedContent?: ReactNode;
|
|
13
|
+
}
|
|
14
|
+
interface PendingAttachment {
|
|
15
|
+
file: File;
|
|
16
|
+
kind: 'image' | 'file';
|
|
17
|
+
previewUrl?: string;
|
|
18
|
+
}
|
|
19
|
+
interface GlobalAssistantChatProps {
|
|
20
|
+
messages?: AssistantMessage[];
|
|
21
|
+
onSend?: (payload: {
|
|
22
|
+
text: string;
|
|
23
|
+
files: File[];
|
|
24
|
+
}) => void;
|
|
25
|
+
isProcessing?: boolean;
|
|
26
|
+
placeholder?: string;
|
|
27
|
+
emptyStateMessage?: string;
|
|
28
|
+
className?: string;
|
|
29
|
+
}
|
|
30
|
+
declare function GlobalAssistantChat({ messages, onSend, isProcessing, placeholder, emptyStateMessage, className, }: GlobalAssistantChatProps): react_jsx_runtime.JSX.Element;
|
|
31
|
+
|
|
32
|
+
interface AssistantPanelProps extends Omit<GlobalAssistantChatProps, 'className'> {
|
|
33
|
+
open: boolean;
|
|
34
|
+
onOpenChange?: (open: boolean) => void;
|
|
35
|
+
title?: string;
|
|
36
|
+
subtitle?: string;
|
|
37
|
+
className?: string;
|
|
38
|
+
}
|
|
39
|
+
declare function AssistantPanel({ open, onOpenChange, title, subtitle, className, ...chatProps }: AssistantPanelProps): react_jsx_runtime.JSX.Element;
|
|
40
|
+
|
|
41
|
+
interface CenteredAssistantChatProps extends GlobalAssistantChatProps {
|
|
42
|
+
}
|
|
43
|
+
declare function CenteredAssistantChat({ className, ...props }: CenteredAssistantChatProps): react_jsx_runtime.JSX.Element;
|
|
44
|
+
|
|
8
45
|
interface ActionButtonItem {
|
|
9
46
|
id: string;
|
|
10
47
|
label: string;
|
|
@@ -83,20 +120,6 @@ interface EmailTemplatesSectionProps {
|
|
|
83
120
|
}
|
|
84
121
|
declare function EmailTemplatesSection({ title, onGenerateWithAI, templates, onTemplateClick, className, }: EmailTemplatesSectionProps): react_jsx_runtime.JSX.Element;
|
|
85
122
|
|
|
86
|
-
interface CommandInterfaceProps {
|
|
87
|
-
promptValue?: string;
|
|
88
|
-
onPromptChange?: (value: string) => void;
|
|
89
|
-
onPromptSubmit?: () => void;
|
|
90
|
-
onFilesAttach?: (files: File[]) => void;
|
|
91
|
-
isProcessing?: boolean;
|
|
92
|
-
response?: ReactNode;
|
|
93
|
-
placeholder?: string;
|
|
94
|
-
accept?: string;
|
|
95
|
-
multiple?: boolean;
|
|
96
|
-
className?: string;
|
|
97
|
-
}
|
|
98
|
-
declare function CommandInterface({ promptValue, onPromptChange, onPromptSubmit, onFilesAttach, isProcessing, response, placeholder, accept, multiple, className, }: CommandInterfaceProps): react_jsx_runtime.JSX.Element;
|
|
99
|
-
|
|
100
123
|
type EntityType = 'Person' | 'Organization' | 'Deal';
|
|
101
124
|
interface Edge {
|
|
102
125
|
type: string;
|
|
@@ -428,27 +451,17 @@ interface AppNavigationRailProps {
|
|
|
428
451
|
}
|
|
429
452
|
declare function AppNavigationRail({ items, brandLogo, brandTitle, className, }: AppNavigationRailProps): react_jsx_runtime.JSX.Element;
|
|
430
453
|
|
|
431
|
-
interface ChatFeedProps {
|
|
432
|
-
entities: GraphNode$1[];
|
|
433
|
-
events: CitronEvent[];
|
|
434
|
-
onFocusEntity?: (entity: GraphNode$1) => void;
|
|
435
|
-
findEntity?: (name: string) => GraphNode$1 | null;
|
|
436
|
-
placeholder?: string;
|
|
437
|
-
emptyMessage?: string;
|
|
438
|
-
className?: string;
|
|
439
|
-
}
|
|
440
|
-
declare function ChatFeed({ entities, events, onFocusEntity, findEntity, placeholder, emptyMessage, className, }: ChatFeedProps): react_jsx_runtime.JSX.Element;
|
|
441
|
-
|
|
442
454
|
interface CommandBarProps {
|
|
443
455
|
prompt: string;
|
|
444
456
|
onPromptChange: (value: string) => void;
|
|
445
457
|
onSubmit: () => void;
|
|
458
|
+
onFilesAttach?: (files: File[]) => void;
|
|
446
459
|
isProcessing: boolean;
|
|
447
460
|
placeholder?: string;
|
|
448
461
|
subtitle?: string;
|
|
449
462
|
className?: string;
|
|
450
463
|
}
|
|
451
|
-
declare function CommandBar({ prompt, onPromptChange, onSubmit, isProcessing, placeholder, subtitle, className, }: CommandBarProps): react_jsx_runtime.JSX.Element;
|
|
464
|
+
declare function CommandBar({ prompt, onPromptChange, onSubmit, onFilesAttach, isProcessing, placeholder, subtitle, className, }: CommandBarProps): react_jsx_runtime.JSX.Element;
|
|
452
465
|
|
|
453
466
|
interface EventStreamSidebarProps {
|
|
454
467
|
events: CitronEvent[];
|
|
@@ -563,6 +576,63 @@ interface TaskKanbanCardProps {
|
|
|
563
576
|
}
|
|
564
577
|
declare function TaskKanbanCard({ task, index, className }: TaskKanbanCardProps): react_jsx_runtime.JSX.Element;
|
|
565
578
|
|
|
579
|
+
interface NavLinkRouterProps extends Omit<NavLinkProps$1, 'className'> {
|
|
580
|
+
className?: string;
|
|
581
|
+
activeClassName?: string;
|
|
582
|
+
pendingClassName?: string;
|
|
583
|
+
}
|
|
584
|
+
declare const NavLinkRouter: react.ForwardRefExoticComponent<NavLinkRouterProps & react.RefAttributes<HTMLAnchorElement>>;
|
|
585
|
+
|
|
586
|
+
interface InvoiceClient {
|
|
587
|
+
id: string;
|
|
588
|
+
name: string;
|
|
589
|
+
email?: string;
|
|
590
|
+
}
|
|
591
|
+
interface InvoiceProduct {
|
|
592
|
+
id: string;
|
|
593
|
+
name: string;
|
|
594
|
+
unitPrice?: number;
|
|
595
|
+
}
|
|
596
|
+
interface InvoiceFormData {
|
|
597
|
+
clientId: string;
|
|
598
|
+
productId: string;
|
|
599
|
+
quantity: number;
|
|
600
|
+
paymentMethod: string;
|
|
601
|
+
taxType: string;
|
|
602
|
+
invoiceType: string;
|
|
603
|
+
bankAccount: string;
|
|
604
|
+
notes: string;
|
|
605
|
+
}
|
|
606
|
+
interface InvoiceFormProps {
|
|
607
|
+
clients: InvoiceClient[];
|
|
608
|
+
products: InvoiceProduct[];
|
|
609
|
+
paymentMethods?: string[];
|
|
610
|
+
taxTypes?: string[];
|
|
611
|
+
invoiceTypes?: string[];
|
|
612
|
+
bankAccounts?: string[];
|
|
613
|
+
value?: Partial<InvoiceFormData>;
|
|
614
|
+
onChange?: (data: Partial<InvoiceFormData>) => void;
|
|
615
|
+
onCreateClient?: () => void;
|
|
616
|
+
attempted?: boolean;
|
|
617
|
+
className?: string;
|
|
618
|
+
}
|
|
619
|
+
declare function InvoiceForm({ clients, products, paymentMethods, taxTypes, invoiceTypes, bankAccounts, value, onChange, onCreateClient, attempted, className, }: InvoiceFormProps): react_jsx_runtime.JSX.Element;
|
|
620
|
+
|
|
621
|
+
interface InvoicePreviewProps {
|
|
622
|
+
data: Partial<InvoiceFormData>;
|
|
623
|
+
clients: InvoiceClient[];
|
|
624
|
+
products: InvoiceProduct[];
|
|
625
|
+
className?: string;
|
|
626
|
+
}
|
|
627
|
+
declare function InvoicePreview({ data, clients, products, className }: InvoicePreviewProps): react_jsx_runtime.JSX.Element;
|
|
628
|
+
|
|
629
|
+
interface InvoiceEditorPageProps extends Omit<InvoiceFormProps, 'value' | 'onChange' | 'attempted'> {
|
|
630
|
+
onSubmit?: (data: InvoiceFormData) => void;
|
|
631
|
+
isSubmitting?: boolean;
|
|
632
|
+
className?: string;
|
|
633
|
+
}
|
|
634
|
+
declare function InvoiceEditorPage({ clients, products, onSubmit, onCreateClient, isSubmitting, className, ...formProps }: InvoiceEditorPageProps): react_jsx_runtime.JSX.Element;
|
|
635
|
+
|
|
566
636
|
interface AccordionItem {
|
|
567
637
|
id: string;
|
|
568
638
|
title: ReactNode;
|
|
@@ -577,6 +647,30 @@ interface AccordionProps {
|
|
|
577
647
|
}
|
|
578
648
|
declare function Accordion({ items, defaultValue, allowMultiple, className, }: AccordionProps): react_jsx_runtime.JSX.Element;
|
|
579
649
|
|
|
650
|
+
interface AdvancedDropdownOption {
|
|
651
|
+
value: string;
|
|
652
|
+
label: string;
|
|
653
|
+
description?: string;
|
|
654
|
+
icon?: ReactNode;
|
|
655
|
+
disabled?: boolean;
|
|
656
|
+
}
|
|
657
|
+
interface AdvancedDropdownProps {
|
|
658
|
+
options?: AdvancedDropdownOption[];
|
|
659
|
+
/** Async loader — called with the current search query; takes precedence over `options`. */
|
|
660
|
+
loadOptions?: (query: string) => Promise<AdvancedDropdownOption[]>;
|
|
661
|
+
value?: string;
|
|
662
|
+
defaultValue?: string;
|
|
663
|
+
onChange?: (value: string | null) => void;
|
|
664
|
+
placeholder?: string;
|
|
665
|
+
searchPlaceholder?: string;
|
|
666
|
+
emptyMessage?: string;
|
|
667
|
+
loadingMessage?: string;
|
|
668
|
+
clearable?: boolean;
|
|
669
|
+
disabled?: boolean;
|
|
670
|
+
className?: string;
|
|
671
|
+
}
|
|
672
|
+
declare function AdvancedDropdown({ options: staticOptions, loadOptions, value: controlledValue, defaultValue, onChange, placeholder, searchPlaceholder, emptyMessage, loadingMessage, clearable, disabled, className, }: AdvancedDropdownProps): react_jsx_runtime.JSX.Element;
|
|
673
|
+
|
|
580
674
|
type AlertVariant = 'info' | 'success' | 'warning' | 'error';
|
|
581
675
|
interface AlertProps {
|
|
582
676
|
title: ReactNode;
|
|
@@ -697,56 +791,15 @@ interface CanvasProviderProps {
|
|
|
697
791
|
}
|
|
698
792
|
declare function CanvasProvider({ children, initialBlocks }: CanvasProviderProps): react_jsx_runtime.JSX.Element;
|
|
699
793
|
|
|
700
|
-
type RightPanelTab = 'chat' | 'events';
|
|
701
|
-
interface RightPanelAgent {
|
|
702
|
-
id: string;
|
|
703
|
-
label: string;
|
|
704
|
-
icon: LucideIcon;
|
|
705
|
-
description: string;
|
|
706
|
-
}
|
|
707
|
-
interface RightPanelChatMessage {
|
|
708
|
-
id: string;
|
|
709
|
-
role: 'user' | 'assistant';
|
|
710
|
-
content: string;
|
|
711
|
-
files?: string[];
|
|
712
|
-
}
|
|
713
|
-
interface RightPanelProps {
|
|
714
|
-
defaultTab?: RightPanelTab;
|
|
715
|
-
tab?: RightPanelTab;
|
|
716
|
-
onTabChange?: (tab: RightPanelTab) => void;
|
|
717
|
-
agents?: RightPanelAgent[];
|
|
718
|
-
defaultAgent?: RightPanelAgent;
|
|
719
|
-
agent?: RightPanelAgent;
|
|
720
|
-
onAgentChange?: (agent: RightPanelAgent) => void;
|
|
721
|
-
messages?: RightPanelChatMessage[];
|
|
722
|
-
defaultMessages?: RightPanelChatMessage[];
|
|
723
|
-
onMessagesChange?: (messages: RightPanelChatMessage[]) => void;
|
|
724
|
-
onSend?: (content: string, files: File[]) => void;
|
|
725
|
-
onAddCanvasBlocks?: (blocks: CanvasBlock[]) => void;
|
|
726
|
-
agentResponses?: Record<string, {
|
|
727
|
-
text: string;
|
|
728
|
-
cards: ('entity' | 'intelligence')[];
|
|
729
|
-
}>;
|
|
730
|
-
autoRespond?: boolean;
|
|
731
|
-
autoRespondDelayMs?: number;
|
|
732
|
-
renderEventsTab?: () => ReactNode;
|
|
733
|
-
className?: string;
|
|
734
|
-
}
|
|
735
|
-
declare function RightPanel({ defaultTab, tab, onTabChange, agents, defaultAgent, agent, onAgentChange, messages, defaultMessages, onMessagesChange, onSend, onAddCanvasBlocks, agentResponses, autoRespond, autoRespondDelayMs, renderEventsTab, className, }: RightPanelProps): react_jsx_runtime.JSX.Element;
|
|
736
|
-
|
|
737
794
|
interface AppLayoutProps {
|
|
738
795
|
children: ReactNode;
|
|
739
|
-
/** @deprecated Use `showRightPanel` instead. */
|
|
740
796
|
showEventFeed?: boolean;
|
|
741
|
-
/** Shows the AI chat + events right panel. */
|
|
742
|
-
showRightPanel?: boolean;
|
|
743
797
|
sidebarProps?: Partial<AppSidebarProps>;
|
|
744
798
|
eventFeedProps?: Partial<EventFeedProps>;
|
|
745
|
-
rightPanelProps?: Partial<RightPanelProps>;
|
|
746
799
|
canvasProviderProps?: Partial<CanvasProviderProps>;
|
|
747
800
|
className?: string;
|
|
748
801
|
}
|
|
749
|
-
declare function AppLayout({ children, showEventFeed,
|
|
802
|
+
declare function AppLayout({ children, showEventFeed, sidebarProps, eventFeedProps, canvasProviderProps, className, }: AppLayoutProps): react_jsx_runtime.JSX.Element;
|
|
750
803
|
|
|
751
804
|
interface AspectRatioProps {
|
|
752
805
|
ratio?: number;
|
|
@@ -913,7 +966,7 @@ interface CommandCanvasProps {
|
|
|
913
966
|
onSend?: (value: string) => void;
|
|
914
967
|
generateAssistantMessage?: (value: string) => Omit<CommandCanvasMessage, 'id' | 'role'>;
|
|
915
968
|
renderCard?: (type: CommandCanvasCardType) => ReactNode;
|
|
916
|
-
/** When true, hides the built-in input bar.
|
|
969
|
+
/** When true, hides the built-in input bar. */
|
|
917
970
|
hideInput?: boolean;
|
|
918
971
|
className?: string;
|
|
919
972
|
}
|
|
@@ -1435,12 +1488,47 @@ interface TooltipProps extends Omit<HTMLAttributes<HTMLSpanElement>, 'content'>
|
|
|
1435
1488
|
}
|
|
1436
1489
|
declare function Tooltip({ content, side, open, defaultOpen, onOpenChange, disabled, className, children, ...props }: TooltipProps): react_jsx_runtime.JSX.Element;
|
|
1437
1490
|
|
|
1438
|
-
interface
|
|
1491
|
+
interface TemplateMasonryItem {
|
|
1492
|
+
id: string;
|
|
1493
|
+
title: string;
|
|
1494
|
+
description?: string;
|
|
1495
|
+
category?: string;
|
|
1496
|
+
thumbnail?: string;
|
|
1497
|
+
}
|
|
1498
|
+
interface TemplateMasonryGridProps {
|
|
1499
|
+
items: TemplateMasonryItem[];
|
|
1500
|
+
columns?: number;
|
|
1501
|
+
onSelect?: (item: TemplateMasonryItem) => void;
|
|
1502
|
+
onGenerateWithAI?: (item: TemplateMasonryItem) => void;
|
|
1439
1503
|
className?: string;
|
|
1440
|
-
activeClassName?: string;
|
|
1441
|
-
pendingClassName?: string;
|
|
1442
1504
|
}
|
|
1443
|
-
declare
|
|
1505
|
+
declare function TemplateMasonryGrid({ items, columns, onSelect, onGenerateWithAI, className, }: TemplateMasonryGridProps): react_jsx_runtime.JSX.Element;
|
|
1506
|
+
|
|
1507
|
+
interface TaskDetailsField {
|
|
1508
|
+
label: string;
|
|
1509
|
+
value: ReactNode;
|
|
1510
|
+
}
|
|
1511
|
+
interface TaskDetailsPanelProps {
|
|
1512
|
+
task: TaskItemData | null;
|
|
1513
|
+
open: boolean;
|
|
1514
|
+
onOpenChange?: (open: boolean) => void;
|
|
1515
|
+
extraFields?: TaskDetailsField[];
|
|
1516
|
+
onStatusChange?: (status: TaskStatus) => void;
|
|
1517
|
+
onAssigneeChange?: (assignee: string) => void;
|
|
1518
|
+
className?: string;
|
|
1519
|
+
}
|
|
1520
|
+
declare function TaskDetailsPanel({ task, open, onOpenChange, extraFields, onStatusChange, onAssigneeChange: _onAssigneeChange, className, }: TaskDetailsPanelProps): react_jsx_runtime.JSX.Element | null;
|
|
1521
|
+
|
|
1522
|
+
interface IntegrationPlaceholderProps {
|
|
1523
|
+
name: string;
|
|
1524
|
+
description: string;
|
|
1525
|
+
icon?: ReactNode;
|
|
1526
|
+
connected?: boolean;
|
|
1527
|
+
onConnect?: () => void;
|
|
1528
|
+
onDisconnect?: () => void;
|
|
1529
|
+
className?: string;
|
|
1530
|
+
}
|
|
1531
|
+
declare function IntegrationPlaceholder({ name, description, icon, connected, onConnect, onDisconnect, className, }: IntegrationPlaceholderProps): react_jsx_runtime.JSX.Element;
|
|
1444
1532
|
|
|
1445
1533
|
/**
|
|
1446
1534
|
* Semantic CSS variable names from @citron-systems/citron-ds (resolved values follow [data-theme] on documentElement).
|
|
@@ -1454,4 +1542,4 @@ declare const semanticInteractivePrimary = "var(--inkblot-semantic-color-interac
|
|
|
1454
1542
|
declare const semanticInteractiveSecondary = "var(--inkblot-semantic-color-interactive-secondary)";
|
|
1455
1543
|
declare const semanticInteractiveSecondaryHover = "var(--inkblot-semantic-color-interactive-secondary-hover)";
|
|
1456
1544
|
|
|
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,
|
|
1545
|
+
export { AIComposeInput, type AIComposeInputProps, AIEmailGenerator, type AIEmailGeneratorProps, Accordion, type AccordionItem, type AccordionProps, type ActionButtonItem, ActionButtons, type ActionButtonsProps, ActivityStream, type ActivityStreamProps, AdvancedDropdown, type AdvancedDropdownOption, type AdvancedDropdownProps, Alert, AlertDialog, type AlertDialogProps, type AlertProps, type AlertVariant, AppLayout, type AppLayoutProps, AppNavigationRail, type AppNavigationRailItem, type AppNavigationRailProps, AppSidebar, type AppSidebarItem, type AppSidebarProps, AspectRatio, type AspectRatioProps, type AssistantMessage, AssistantPanel, type AssistantPanelProps, 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, CenteredAssistantChat, type CenteredAssistantChatProps, Chart, type ChartDatum, type ChartProps, 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, 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, GlobalAssistantChat, type GlobalAssistantChatProps, 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, IntegrationPlaceholder, type IntegrationPlaceholderProps, IntelligenceCard, type IntelligenceCardProps, IntelligenceLab, type IntelligenceLabInsight, type IntelligenceLabKpiCard, type IntelligenceLabProps, IntelligenceScoreCard, type IntelligenceScoreCardProps, type IntelligenceScoreItem, type InvoiceClient, InvoiceEditorPage, type InvoiceEditorPageProps, InvoiceForm, type InvoiceFormData, type InvoiceFormProps, InvoicePreview, type InvoicePreviewProps, type InvoiceProduct, 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, type PendingAttachment, 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, 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, type TaskDetailsField, TaskDetailsPanel, type TaskDetailsPanelProps, TaskItem, type TaskItemData, type TaskItemProps, TaskKanbanBoard as TaskKanban, TaskKanbanBoard, type TaskKanbanBoardProps, TaskKanbanCard, type TaskKanbanCardProps, TaskKanbanColumn, type TaskKanbanColumnProps, type TaskKanbanBoardProps as TaskKanbanProps, TaskList, type TaskListProps, type TaskPriority, type TaskSection, type TaskStatus, type TaskWithStatus, TasksView, type TasksViewProps, TemplateCard, type TemplateCardProps, TemplateMasonryGrid, type TemplateMasonryGridProps, type TemplateMasonryItem, 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 };
|