@citron-systems/citron-ui 1.14.0 → 1.16.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 CHANGED
@@ -5,6 +5,50 @@ 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
+ /**
40
+ * Inline assistant panel that pushes layout content to the left on desktop.
41
+ * On screens < 768px it falls back to a fixed overlay.
42
+ *
43
+ * Must be placed as a direct flex child alongside the main content area
44
+ * (e.g. inside AppLayout's <main> or a custom flex wrapper).
45
+ */
46
+ declare function AssistantPanel({ open, onOpenChange, title, subtitle, className, ...chatProps }: AssistantPanelProps): react_jsx_runtime.JSX.Element;
47
+
48
+ interface CenteredAssistantChatProps extends GlobalAssistantChatProps {
49
+ }
50
+ declare function CenteredAssistantChat({ className, ...props }: CenteredAssistantChatProps): react_jsx_runtime.JSX.Element;
51
+
8
52
  interface ActionButtonItem {
9
53
  id: string;
10
54
  label: string;
@@ -83,20 +127,6 @@ interface EmailTemplatesSectionProps {
83
127
  }
84
128
  declare function EmailTemplatesSection({ title, onGenerateWithAI, templates, onTemplateClick, className, }: EmailTemplatesSectionProps): react_jsx_runtime.JSX.Element;
85
129
 
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
130
  type EntityType = 'Person' | 'Organization' | 'Deal';
101
131
  interface Edge {
102
132
  type: string;
@@ -428,27 +458,17 @@ interface AppNavigationRailProps {
428
458
  }
429
459
  declare function AppNavigationRail({ items, brandLogo, brandTitle, className, }: AppNavigationRailProps): react_jsx_runtime.JSX.Element;
430
460
 
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
461
  interface CommandBarProps {
443
462
  prompt: string;
444
463
  onPromptChange: (value: string) => void;
445
464
  onSubmit: () => void;
465
+ onFilesAttach?: (files: File[]) => void;
446
466
  isProcessing: boolean;
447
467
  placeholder?: string;
448
468
  subtitle?: string;
449
469
  className?: string;
450
470
  }
451
- declare function CommandBar({ prompt, onPromptChange, onSubmit, isProcessing, placeholder, subtitle, className, }: CommandBarProps): react_jsx_runtime.JSX.Element;
471
+ declare function CommandBar({ prompt, onPromptChange, onSubmit, onFilesAttach, isProcessing, placeholder, subtitle, className, }: CommandBarProps): react_jsx_runtime.JSX.Element;
452
472
 
453
473
  interface EventStreamSidebarProps {
454
474
  events: CitronEvent[];
@@ -563,6 +583,63 @@ interface TaskKanbanCardProps {
563
583
  }
564
584
  declare function TaskKanbanCard({ task, index, className }: TaskKanbanCardProps): react_jsx_runtime.JSX.Element;
565
585
 
586
+ interface NavLinkRouterProps extends Omit<NavLinkProps$1, 'className'> {
587
+ className?: string;
588
+ activeClassName?: string;
589
+ pendingClassName?: string;
590
+ }
591
+ declare const NavLinkRouter: react.ForwardRefExoticComponent<NavLinkRouterProps & react.RefAttributes<HTMLAnchorElement>>;
592
+
593
+ interface InvoiceClient {
594
+ id: string;
595
+ name: string;
596
+ email?: string;
597
+ }
598
+ interface InvoiceProduct {
599
+ id: string;
600
+ name: string;
601
+ unitPrice?: number;
602
+ }
603
+ interface InvoiceFormData {
604
+ clientId: string;
605
+ productId: string;
606
+ quantity: number;
607
+ paymentMethod: string;
608
+ taxType: string;
609
+ invoiceType: string;
610
+ bankAccount: string;
611
+ notes: string;
612
+ }
613
+ interface InvoiceFormProps {
614
+ clients: InvoiceClient[];
615
+ products: InvoiceProduct[];
616
+ paymentMethods?: string[];
617
+ taxTypes?: string[];
618
+ invoiceTypes?: string[];
619
+ bankAccounts?: string[];
620
+ value?: Partial<InvoiceFormData>;
621
+ onChange?: (data: Partial<InvoiceFormData>) => void;
622
+ onCreateClient?: () => void;
623
+ attempted?: boolean;
624
+ className?: string;
625
+ }
626
+ declare function InvoiceForm({ clients, products, paymentMethods, taxTypes, invoiceTypes, bankAccounts, value, onChange, onCreateClient, attempted, className, }: InvoiceFormProps): react_jsx_runtime.JSX.Element;
627
+
628
+ interface InvoicePreviewProps {
629
+ data: Partial<InvoiceFormData>;
630
+ clients: InvoiceClient[];
631
+ products: InvoiceProduct[];
632
+ className?: string;
633
+ }
634
+ declare function InvoicePreview({ data, clients, products, className }: InvoicePreviewProps): react_jsx_runtime.JSX.Element;
635
+
636
+ interface InvoiceEditorPageProps extends Omit<InvoiceFormProps, 'value' | 'onChange' | 'attempted'> {
637
+ onSubmit?: (data: InvoiceFormData) => void;
638
+ isSubmitting?: boolean;
639
+ className?: string;
640
+ }
641
+ declare function InvoiceEditorPage({ clients, products, onSubmit, onCreateClient, isSubmitting, className, ...formProps }: InvoiceEditorPageProps): react_jsx_runtime.JSX.Element;
642
+
566
643
  interface AccordionItem {
567
644
  id: string;
568
645
  title: ReactNode;
@@ -577,6 +654,30 @@ interface AccordionProps {
577
654
  }
578
655
  declare function Accordion({ items, defaultValue, allowMultiple, className, }: AccordionProps): react_jsx_runtime.JSX.Element;
579
656
 
657
+ interface AdvancedDropdownOption {
658
+ value: string;
659
+ label: string;
660
+ description?: string;
661
+ icon?: ReactNode;
662
+ disabled?: boolean;
663
+ }
664
+ interface AdvancedDropdownProps {
665
+ options?: AdvancedDropdownOption[];
666
+ /** Async loader — called with the current search query; takes precedence over `options`. */
667
+ loadOptions?: (query: string) => Promise<AdvancedDropdownOption[]>;
668
+ value?: string;
669
+ defaultValue?: string;
670
+ onChange?: (value: string | null) => void;
671
+ placeholder?: string;
672
+ searchPlaceholder?: string;
673
+ emptyMessage?: string;
674
+ loadingMessage?: string;
675
+ clearable?: boolean;
676
+ disabled?: boolean;
677
+ className?: string;
678
+ }
679
+ declare function AdvancedDropdown({ options: staticOptions, loadOptions, value: controlledValue, defaultValue, onChange, placeholder, searchPlaceholder, emptyMessage, loadingMessage, clearable, disabled, className, }: AdvancedDropdownProps): react_jsx_runtime.JSX.Element;
680
+
580
681
  type AlertVariant = 'info' | 'success' | 'warning' | 'error';
581
682
  interface AlertProps {
582
683
  title: ReactNode;
@@ -697,56 +798,15 @@ interface CanvasProviderProps {
697
798
  }
698
799
  declare function CanvasProvider({ children, initialBlocks }: CanvasProviderProps): react_jsx_runtime.JSX.Element;
699
800
 
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
801
  interface AppLayoutProps {
738
802
  children: ReactNode;
739
- /** @deprecated Use `showRightPanel` instead. */
740
803
  showEventFeed?: boolean;
741
- /** Shows the AI chat + events right panel. */
742
- showRightPanel?: boolean;
743
804
  sidebarProps?: Partial<AppSidebarProps>;
744
805
  eventFeedProps?: Partial<EventFeedProps>;
745
- rightPanelProps?: Partial<RightPanelProps>;
746
806
  canvasProviderProps?: Partial<CanvasProviderProps>;
747
807
  className?: string;
748
808
  }
749
- declare function AppLayout({ children, showEventFeed, showRightPanel, sidebarProps, eventFeedProps, rightPanelProps, canvasProviderProps, className, }: AppLayoutProps): react_jsx_runtime.JSX.Element;
809
+ declare function AppLayout({ children, showEventFeed, sidebarProps, eventFeedProps, canvasProviderProps, className, }: AppLayoutProps): react_jsx_runtime.JSX.Element;
750
810
 
751
811
  interface AspectRatioProps {
752
812
  ratio?: number;
@@ -913,7 +973,7 @@ interface CommandCanvasProps {
913
973
  onSend?: (value: string) => void;
914
974
  generateAssistantMessage?: (value: string) => Omit<CommandCanvasMessage, 'id' | 'role'>;
915
975
  renderCard?: (type: CommandCanvasCardType) => ReactNode;
916
- /** When true, hides the built-in input bar. Useful when using RightPanel for input. */
976
+ /** When true, hides the built-in input bar. */
917
977
  hideInput?: boolean;
918
978
  className?: string;
919
979
  }
@@ -1435,124 +1495,6 @@ interface TooltipProps extends Omit<HTMLAttributes<HTMLSpanElement>, 'content'>
1435
1495
  }
1436
1496
  declare function Tooltip({ content, side, open, defaultOpen, onOpenChange, disabled, className, children, ...props }: TooltipProps): react_jsx_runtime.JSX.Element;
1437
1497
 
1438
- interface NavLinkRouterProps extends Omit<NavLinkProps$1, 'className'> {
1439
- className?: string;
1440
- activeClassName?: string;
1441
- pendingClassName?: string;
1442
- }
1443
- declare const NavLinkRouter: react.ForwardRefExoticComponent<NavLinkRouterProps & react.RefAttributes<HTMLAnchorElement>>;
1444
-
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
- interface AdvancedDropdownOption {
1458
- value: string;
1459
- label: string;
1460
- description?: string;
1461
- icon?: ReactNode;
1462
- disabled?: boolean;
1463
- }
1464
- interface AdvancedDropdownProps {
1465
- options: AdvancedDropdownOption[];
1466
- value?: string;
1467
- defaultValue?: string;
1468
- onChange?: (value: string | null) => void;
1469
- placeholder?: string;
1470
- searchPlaceholder?: string;
1471
- emptyMessage?: string;
1472
- clearable?: boolean;
1473
- disabled?: boolean;
1474
- className?: string;
1475
- }
1476
- declare function AdvancedDropdown({ options, value: controlledValue, defaultValue, onChange, placeholder, searchPlaceholder, emptyMessage, clearable, disabled, className, }: AdvancedDropdownProps): react_jsx_runtime.JSX.Element;
1477
-
1478
- interface CenteredAIChatAgent {
1479
- id: string;
1480
- label: string;
1481
- description?: string;
1482
- }
1483
- interface CenteredAIChatMessage {
1484
- id: string;
1485
- role: 'user' | 'assistant';
1486
- content: string;
1487
- renderedContent?: ReactNode;
1488
- }
1489
- interface CenteredAIChatProps {
1490
- messages?: CenteredAIChatMessage[];
1491
- onSend?: (content: string) => void;
1492
- isProcessing?: boolean;
1493
- placeholder?: string;
1494
- agents?: CenteredAIChatAgent[];
1495
- activeAgent?: string;
1496
- onAgentChange?: (agentId: string) => void;
1497
- onFilesAttach?: (files: File[]) => void;
1498
- emptyStateMessage?: string;
1499
- className?: string;
1500
- }
1501
- declare function CenteredAIChat({ messages, onSend, isProcessing, placeholder, agents, activeAgent, onAgentChange, onFilesAttach, emptyStateMessage, className, }: CenteredAIChatProps): react_jsx_runtime.JSX.Element;
1502
-
1503
- interface ModuleAssistantMessage {
1504
- id: string;
1505
- role: 'user' | 'assistant';
1506
- content: string;
1507
- renderedContent?: ReactNode;
1508
- }
1509
- interface ModuleAssistantPanelProps {
1510
- moduleId: string;
1511
- moduleLabel: string;
1512
- agentLabel?: string;
1513
- messages?: ModuleAssistantMessage[];
1514
- onSend?: (content: string) => void;
1515
- isProcessing?: boolean;
1516
- placeholder?: string;
1517
- onClose?: () => void;
1518
- className?: string;
1519
- }
1520
- declare function ModuleAssistantPanel({ moduleLabel, agentLabel, messages, onSend, isProcessing, placeholder, onClose, className, }: ModuleAssistantPanelProps): react_jsx_runtime.JSX.Element;
1521
-
1522
- interface InvoiceClient {
1523
- id: string;
1524
- name: string;
1525
- email?: string;
1526
- }
1527
- interface InvoiceProduct {
1528
- id: string;
1529
- name: string;
1530
- unitPrice?: number;
1531
- }
1532
- interface SmartInvoiceFormData {
1533
- clientId: string;
1534
- productId: string;
1535
- quantity: number;
1536
- paymentMethod: string;
1537
- taxType: string;
1538
- invoiceType: string;
1539
- bankAccount: string;
1540
- notes: string;
1541
- }
1542
- interface SmartInvoiceBuilderProps {
1543
- clients: InvoiceClient[];
1544
- products: InvoiceProduct[];
1545
- paymentMethods?: string[];
1546
- taxTypes?: string[];
1547
- invoiceTypes?: string[];
1548
- bankAccounts?: string[];
1549
- onSubmit?: (data: SmartInvoiceFormData) => void;
1550
- onCreateClient?: () => void;
1551
- isSubmitting?: boolean;
1552
- className?: string;
1553
- }
1554
- declare function SmartInvoiceBuilder({ clients, products, paymentMethods, taxTypes, invoiceTypes, bankAccounts, onSubmit, onCreateClient, isSubmitting, className, }: SmartInvoiceBuilderProps): react_jsx_runtime.JSX.Element;
1555
-
1556
1498
  interface TemplateMasonryItem {
1557
1499
  id: string;
1558
1500
  title: string;
@@ -1595,4 +1537,16 @@ interface IntegrationPlaceholderProps {
1595
1537
  }
1596
1538
  declare function IntegrationPlaceholder({ name, description, icon, connected, onConnect, onDisconnect, className, }: IntegrationPlaceholderProps): react_jsx_runtime.JSX.Element;
1597
1539
 
1598
- 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, 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, CenteredAIChat, type CenteredAIChatAgent, type CenteredAIChatMessage, type CenteredAIChatProps, 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, IntegrationPlaceholder, type IntegrationPlaceholderProps, IntelligenceCard, type IntelligenceCardProps, IntelligenceLab, type IntelligenceLabInsight, type IntelligenceLabKpiCard, type IntelligenceLabProps, IntelligenceScoreCard, type IntelligenceScoreCardProps, type IntelligenceScoreItem, type InvoiceClient, 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, type ModuleAssistantMessage, ModuleAssistantPanel, type ModuleAssistantPanelProps, 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, SmartInvoiceBuilder, type SmartInvoiceBuilderProps, type SmartInvoiceFormData, 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, 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, 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 };
1540
+ /**
1541
+ * Semantic CSS variable names from @citron-systems/citron-ds (resolved values follow [data-theme] on documentElement).
1542
+ */
1543
+ declare const semanticBackgroundPrimary = "var(--inkblot-semantic-color-background-primary)";
1544
+ declare const semanticBackgroundSecondary = "var(--inkblot-semantic-color-background-secondary)";
1545
+ declare const semanticBorderDefault = "var(--inkblot-semantic-color-border-default)";
1546
+ declare const semanticTextPrimary = "var(--inkblot-semantic-color-text-primary)";
1547
+ declare const semanticTextSecondary = "var(--inkblot-semantic-color-text-secondary)";
1548
+ declare const semanticInteractivePrimary = "var(--inkblot-semantic-color-interactive-primary)";
1549
+ declare const semanticInteractiveSecondary = "var(--inkblot-semantic-color-interactive-secondary)";
1550
+ declare const semanticInteractiveSecondaryHover = "var(--inkblot-semantic-color-interactive-secondary-hover)";
1551
+
1552
+ 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 };