@citron-systems/citron-ui 1.14.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 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, showRightPanel, sidebarProps, eventFeedProps, rightPanelProps, canvasProviderProps, className, }: AppLayoutProps): react_jsx_runtime.JSX.Element;
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. Useful when using RightPanel for input. */
969
+ /** When true, hides the built-in input bar. */
917
970
  hideInput?: boolean;
918
971
  className?: string;
919
972
  }
@@ -1435,124 +1488,6 @@ 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 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
1491
  interface TemplateMasonryItem {
1557
1492
  id: string;
1558
1493
  title: string;
@@ -1595,4 +1530,16 @@ interface IntegrationPlaceholderProps {
1595
1530
  }
1596
1531
  declare function IntegrationPlaceholder({ name, description, icon, connected, onConnect, onDisconnect, className, }: IntegrationPlaceholderProps): react_jsx_runtime.JSX.Element;
1597
1532
 
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 };
1533
+ /**
1534
+ * Semantic CSS variable names from @citron-systems/citron-ds (resolved values follow [data-theme] on documentElement).
1535
+ */
1536
+ declare const semanticBackgroundPrimary = "var(--inkblot-semantic-color-background-primary)";
1537
+ declare const semanticBackgroundSecondary = "var(--inkblot-semantic-color-background-secondary)";
1538
+ declare const semanticBorderDefault = "var(--inkblot-semantic-color-border-default)";
1539
+ declare const semanticTextPrimary = "var(--inkblot-semantic-color-text-primary)";
1540
+ declare const semanticTextSecondary = "var(--inkblot-semantic-color-text-secondary)";
1541
+ declare const semanticInteractivePrimary = "var(--inkblot-semantic-color-interactive-primary)";
1542
+ declare const semanticInteractiveSecondary = "var(--inkblot-semantic-color-interactive-secondary)";
1543
+ declare const semanticInteractiveSecondaryHover = "var(--inkblot-semantic-color-interactive-secondary-hover)";
1544
+
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 };