@lukeashford/aurelius 3.1.0 → 3.2.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.mts +11 -60
- package/dist/index.d.ts +11 -60
- package/dist/index.js +261 -397
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +219 -354
- package/dist/index.mjs.map +1 -1
- package/llms.md +3 -19
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -602,6 +602,8 @@ interface StepperProps extends React$1.HTMLAttributes<HTMLDivElement> {
|
|
|
602
602
|
}
|
|
603
603
|
declare const Stepper: React$1.ForwardRefExoticComponent<StepperProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
604
604
|
|
|
605
|
+
declare function ChatBubbleIcon({ className, ...props }: IconProps): React$1.JSX.Element;
|
|
606
|
+
|
|
605
607
|
declare function ChevronLeftIcon({ className, ...props }: IconProps): React$1.JSX.Element;
|
|
606
608
|
|
|
607
609
|
declare function ChevronRightIcon({ className, ...props }: IconProps): React$1.JSX.Element;
|
|
@@ -808,59 +810,6 @@ interface ChatInputProps extends Omit<React$1.HTMLAttributes<HTMLDivElement>, 'o
|
|
|
808
810
|
*/
|
|
809
811
|
declare const ChatInput: React$1.ForwardRefExoticComponent<ChatInputProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
810
812
|
|
|
811
|
-
interface Conversation {
|
|
812
|
-
id: string;
|
|
813
|
-
title: string;
|
|
814
|
-
preview?: string;
|
|
815
|
-
timestamp?: string;
|
|
816
|
-
isActive?: boolean;
|
|
817
|
-
}
|
|
818
|
-
interface ConversationSidebarProps extends React$1.HTMLAttributes<HTMLDivElement> {
|
|
819
|
-
/**
|
|
820
|
-
* List of conversations to display
|
|
821
|
-
*/
|
|
822
|
-
conversations: Conversation[];
|
|
823
|
-
/**
|
|
824
|
-
* Whether the sidebar is collapsed
|
|
825
|
-
*/
|
|
826
|
-
isCollapsed?: boolean;
|
|
827
|
-
/**
|
|
828
|
-
* Callback when a conversation is selected
|
|
829
|
-
*/
|
|
830
|
-
onSelectConversation?: (id: string) => void;
|
|
831
|
-
/**
|
|
832
|
-
* Callback when "New Chat" is clicked
|
|
833
|
-
*/
|
|
834
|
-
onNewChat?: () => void;
|
|
835
|
-
/**
|
|
836
|
-
* Callback to toggle collapse state
|
|
837
|
-
*/
|
|
838
|
-
onToggleCollapse?: () => void;
|
|
839
|
-
/**
|
|
840
|
-
* Current width of the sidebar (when expanded).
|
|
841
|
-
* Accepts CSS width value (e.g., "15vw", "256px").
|
|
842
|
-
*/
|
|
843
|
-
width?: string;
|
|
844
|
-
/**
|
|
845
|
-
* Callback to start resizing
|
|
846
|
-
*/
|
|
847
|
-
onResizeStart?: (e: React$1.MouseEvent) => void;
|
|
848
|
-
}
|
|
849
|
-
/**
|
|
850
|
-
* ConversationSidebar displays a collapsible list of past conversations.
|
|
851
|
-
*
|
|
852
|
-
* When collapsed, shows a thin strip with history icon at top.
|
|
853
|
-
* When expanded, shows chevron at top-left to collapse.
|
|
854
|
-
*/
|
|
855
|
-
declare const ConversationSidebar: React$1.ForwardRefExoticComponent<ConversationSidebarProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
856
|
-
/**
|
|
857
|
-
* Collapsed sidebar toggle button (for external use if needed)
|
|
858
|
-
*/
|
|
859
|
-
interface CollapsedSidebarToggleProps extends React$1.ButtonHTMLAttributes<HTMLButtonElement> {
|
|
860
|
-
onExpand?: () => void;
|
|
861
|
-
}
|
|
862
|
-
declare const CollapsedSidebarToggle: React$1.ForwardRefExoticComponent<CollapsedSidebarToggleProps & React$1.RefAttributes<HTMLButtonElement>>;
|
|
863
|
-
|
|
864
813
|
declare const TASK_STATUSES: {
|
|
865
814
|
readonly PENDING: "pending";
|
|
866
815
|
readonly IN_PROGRESS: "in_progress";
|
|
@@ -1338,6 +1287,13 @@ interface ChatMessage {
|
|
|
1338
1287
|
*/
|
|
1339
1288
|
isStreaming?: boolean;
|
|
1340
1289
|
}
|
|
1290
|
+
interface Conversation {
|
|
1291
|
+
id: string;
|
|
1292
|
+
title: string;
|
|
1293
|
+
preview?: string;
|
|
1294
|
+
timestamp?: string;
|
|
1295
|
+
isActive?: boolean;
|
|
1296
|
+
}
|
|
1341
1297
|
interface ChatInterfaceProps extends Omit<React$1.HTMLAttributes<HTMLDivElement>, 'onSubmit'> {
|
|
1342
1298
|
/**
|
|
1343
1299
|
* Array of messages in the conversation (flat mode)
|
|
@@ -1402,10 +1358,6 @@ interface ChatInterfaceProps extends Omit<React$1.HTMLAttributes<HTMLDivElement>
|
|
|
1402
1358
|
* Helper text shown in the empty state (when there are no messages).
|
|
1403
1359
|
*/
|
|
1404
1360
|
emptyStateHelper?: React$1.ReactNode;
|
|
1405
|
-
/**
|
|
1406
|
-
* Whether the sidebar should be initially collapsed.
|
|
1407
|
-
*/
|
|
1408
|
-
initialSidebarCollapsed?: boolean;
|
|
1409
1361
|
/**
|
|
1410
1362
|
* Custom content to show when the conversation is empty.
|
|
1411
1363
|
* Overrides the default centered input and helper text.
|
|
@@ -1463,10 +1415,9 @@ interface ChatInterfaceProps extends Omit<React$1.HTMLAttributes<HTMLDivElement>
|
|
|
1463
1415
|
* ChatInterface is the main orchestrator for a full-featured chat experience.
|
|
1464
1416
|
*
|
|
1465
1417
|
* Features:
|
|
1466
|
-
* - ConversationSidebar (far left) — collapsible list of past conversations
|
|
1467
1418
|
* - ChatView (center) — main conversation area with smart scrolling
|
|
1468
1419
|
* - Dual tool sidebar system — IntelliJ-style tool sidebars on left and right:
|
|
1469
|
-
* - Left sidebar: History (top-left) + consumer tools (bottom-left)
|
|
1420
|
+
* - Left sidebar: History (top-left, conversation list + new chat) + consumer tools (bottom-left)
|
|
1470
1421
|
* - Right sidebar: Artifacts (top-right) + Tasks (bottom-right) + consumer tools
|
|
1471
1422
|
* - Tools in the same group are mutually exclusive
|
|
1472
1423
|
* - Both panels can be open simultaneously — chat area shrinks to accommodate
|
|
@@ -1980,4 +1931,4 @@ declare const ArtifactVariantStack: React$1.ForwardRefExoticComponent<ArtifactVa
|
|
|
1980
1931
|
|
|
1981
1932
|
declare const version = "2.0.0";
|
|
1982
1933
|
|
|
1983
|
-
export { ARTIFACT_TYPES, Accordion, AccordionContent, type AccordionContentProps, AccordionItem, type AccordionItemProps, type AccordionProps, AccordionTrigger, type AccordionTriggerProps, Alert, AlertDialog, type AlertDialogProps, type AlertProps, type AlertVariant, type Artifact, ArtifactCard, type ArtifactCardProps, ArtifactGroup, type ArtifactGroupProps, type ArtifactNode, type ArtifactType, ArtifactVariantStack, type ArtifactVariantStackProps, ArtifactsPanel, type ArtifactsPanelProps, ArtifactsPanelToggle, type ArtifactsPanelToggleProps, type AspectRatio, type AspectRatioPreset, type Attachment, type AttachmentItem, AttachmentPreview, type AttachmentPreviewProps, type AttachmentStatus, AudioCard, type AudioCardProps, Avatar, type AvatarProps, type AvatarSize, Badge, type BadgeProps, type BadgeVariant, BranchNavigator, type BranchNavigatorProps, BrandIcon, type BrandIconProps, type BrandIconSize, type BrandIconVariant, Breadcrumb, type BreadcrumbEntry, BreadcrumbItem, type BreadcrumbItemProps, BreadcrumbLink, type BreadcrumbLinkProps, type BreadcrumbProps, Button, type ButtonProps, type ButtonSize, type ButtonVariant, Card, type CardBodyProps, type CardFooterProps, type CardHeaderProps, type CardMediaProps, type CardProps, type CardVariant, ChatInput, type ChatInputPosition, type ChatInputProps, ChatInterface, type ChatInterfaceProps, type ChatMessage, ChatView, type ChatViewItem, type ChatViewProps, CheckSquareIcon, Checkbox, type CheckboxProps, ChevronLeftIcon, ChevronRightIcon, CloseIcon, Col, type ColOffset, type ColOrder, type ColProps, type ColSpan,
|
|
1934
|
+
export { ARTIFACT_TYPES, Accordion, AccordionContent, type AccordionContentProps, AccordionItem, type AccordionItemProps, type AccordionProps, AccordionTrigger, type AccordionTriggerProps, Alert, AlertDialog, type AlertDialogProps, type AlertProps, type AlertVariant, type Artifact, ArtifactCard, type ArtifactCardProps, ArtifactGroup, type ArtifactGroupProps, type ArtifactNode, type ArtifactType, ArtifactVariantStack, type ArtifactVariantStackProps, ArtifactsPanel, type ArtifactsPanelProps, ArtifactsPanelToggle, type ArtifactsPanelToggleProps, type AspectRatio, type AspectRatioPreset, type Attachment, type AttachmentItem, AttachmentPreview, type AttachmentPreviewProps, type AttachmentStatus, AudioCard, type AudioCardProps, Avatar, type AvatarProps, type AvatarSize, Badge, type BadgeProps, type BadgeVariant, BranchNavigator, type BranchNavigatorProps, BrandIcon, type BrandIconProps, type BrandIconSize, type BrandIconVariant, Breadcrumb, type BreadcrumbEntry, BreadcrumbItem, type BreadcrumbItemProps, BreadcrumbLink, type BreadcrumbLinkProps, type BreadcrumbProps, Button, type ButtonProps, type ButtonSize, type ButtonVariant, Card, type CardBodyProps, type CardFooterProps, type CardHeaderProps, type CardMediaProps, type CardProps, type CardVariant, ChatBubbleIcon, ChatInput, type ChatInputPosition, type ChatInputProps, ChatInterface, type ChatInterfaceProps, type ChatMessage, ChatView, type ChatViewItem, type ChatViewProps, CheckSquareIcon, Checkbox, type CheckboxProps, ChevronLeftIcon, ChevronRightIcon, CloseIcon, Col, type ColOffset, type ColOrder, type ColProps, type ColSpan, ColorSwatch, type ColorSwatchProps, ConfirmDialog, type ConfirmDialogProps, Container, type ContainerProps, type ContainerSize, type Conversation, type ConversationTree, CrossSquareIcon, Divider, type DividerProps, Drawer, type DrawerPosition, type DrawerProps, EmptySquareIcon, ExpandIcon, type ExternalToolDefinition, FileChip, type FileChipProps, type FileChipStatus, HelperText, type HelperTextProps, HistoryIcon, type IconProps, ImageCard, type ImageCardProps, Input, type InputAddonProps, type InputElementProps, InputGroup, type InputGroupProps, InputLeftAddon, InputLeftElement, type InputProps, InputRightAddon, InputRightElement, InputWrapper, type InputWrapperProps, Label, type LabelProps, LayersIcon, List, ListItem, type ListItemProps, ListItemText, type ListItemTextProps, type ListProps, ListSubheader, type ListSubheaderProps, MarkdownContent, type MarkdownContentProps, MediaIcon, Menu, MenuContent, type MenuContentProps, MenuItem, type MenuItemProps, MenuLabel, type MenuProps, MenuSeparator, MenuTrigger, type MenuTriggerProps, Message, MessageActions, type MessageActionsConfig, type MessageActionsProps, type MessageActionsVariant, type MessageBranchInfo, type MessageNode, type MessageProps, type MessageVariant, Modal, type ModalProps, NODE_TYPES, Navbar, NavbarBrand, type NavbarBrandProps, NavbarContent, type NavbarContentProps, NavbarDivider, NavbarItem, type NavbarItemProps, NavbarLink, type NavbarLinkProps, type NavbarProps, type NodeType, Pagination, type PaginationProps, PdfCard, type PdfCardProps, PlusIcon, Popover, type PopoverAlign, type PopoverPosition, type PopoverProps, Progress, type ProgressProps, PromptDialog, type PromptDialogProps, Radio, type RadioProps, Row, type RowAlign, type RowGutter, type RowJustify, type RowProps, SCRIPT_ELEMENT_TYPES, ScriptCard, type ScriptCardProps, type ScriptElement, type ScriptElementType, SectionHeading, type SectionHeadingLevel, type SectionHeadingProps, Select, type SelectOption, type SelectProps, Skeleton, type SkeletonProps, Slider, type SliderProps, Spinner, type SpinnerProps, SquareLoaderIcon, Stack, type StackDirection, type StackGap, type StackProps, type Step, type StepStatus, Stepper, type StepperProps, StreamingCursor, type StreamingCursorProps, Switch, type SwitchProps, TASK_STATUSES, Tab, TabList, type TabListProps, TabPanel, type TabPanelProps, type TabProps, Table, TableBody, type TableBodyProps, TableCaption, type TableCaptionProps, TableCell, type TableCellProps, TableFooter, type TableFooterProps, TableHead, type TableHeadProps, TableHeader, type TableHeaderProps, type TableProps, TableRow, type TableRowProps, Tabs, type TabsProps, type Task, type TaskStatus, TextCard, type TextCardProps, Textarea, type TextareaProps, ThinkingIndicator, type ThinkingIndicatorProps, type ToastData, type ToastPosition, ToastProvider, type ToastProviderProps, type ToastVariant, TodosList, type TodosListProps, type ToolDefinition, type ToolGroup, ToolPanelContainer, type ToolPanelContainerProps, type ToolPanelState, ToolSidebar, type ToolSidebarProps, Tooltip, type TooltipProps, type UseArtifactTreeNavigationReturn, type UseScrollAnchorOptions, type UseScrollAnchorReturn, type VideoAspectRatio, type VideoAspectRatioPreset, VideoCard, type VideoCardProps, addMessageToTree, areAllTasksSettled, createEmptyTree, createPreviewUrl, generateId, getActivePathMessages, getSiblingInfo, isBranchPoint, isImageFile, messagesToTree, revokePreviewUrl, switchBranch, updateNodeContent, useArtifactTreeNavigation, useResizable, useScrollAnchor, useToast, version };
|
package/dist/index.d.ts
CHANGED
|
@@ -602,6 +602,8 @@ interface StepperProps extends React$1.HTMLAttributes<HTMLDivElement> {
|
|
|
602
602
|
}
|
|
603
603
|
declare const Stepper: React$1.ForwardRefExoticComponent<StepperProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
604
604
|
|
|
605
|
+
declare function ChatBubbleIcon({ className, ...props }: IconProps): React$1.JSX.Element;
|
|
606
|
+
|
|
605
607
|
declare function ChevronLeftIcon({ className, ...props }: IconProps): React$1.JSX.Element;
|
|
606
608
|
|
|
607
609
|
declare function ChevronRightIcon({ className, ...props }: IconProps): React$1.JSX.Element;
|
|
@@ -808,59 +810,6 @@ interface ChatInputProps extends Omit<React$1.HTMLAttributes<HTMLDivElement>, 'o
|
|
|
808
810
|
*/
|
|
809
811
|
declare const ChatInput: React$1.ForwardRefExoticComponent<ChatInputProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
810
812
|
|
|
811
|
-
interface Conversation {
|
|
812
|
-
id: string;
|
|
813
|
-
title: string;
|
|
814
|
-
preview?: string;
|
|
815
|
-
timestamp?: string;
|
|
816
|
-
isActive?: boolean;
|
|
817
|
-
}
|
|
818
|
-
interface ConversationSidebarProps extends React$1.HTMLAttributes<HTMLDivElement> {
|
|
819
|
-
/**
|
|
820
|
-
* List of conversations to display
|
|
821
|
-
*/
|
|
822
|
-
conversations: Conversation[];
|
|
823
|
-
/**
|
|
824
|
-
* Whether the sidebar is collapsed
|
|
825
|
-
*/
|
|
826
|
-
isCollapsed?: boolean;
|
|
827
|
-
/**
|
|
828
|
-
* Callback when a conversation is selected
|
|
829
|
-
*/
|
|
830
|
-
onSelectConversation?: (id: string) => void;
|
|
831
|
-
/**
|
|
832
|
-
* Callback when "New Chat" is clicked
|
|
833
|
-
*/
|
|
834
|
-
onNewChat?: () => void;
|
|
835
|
-
/**
|
|
836
|
-
* Callback to toggle collapse state
|
|
837
|
-
*/
|
|
838
|
-
onToggleCollapse?: () => void;
|
|
839
|
-
/**
|
|
840
|
-
* Current width of the sidebar (when expanded).
|
|
841
|
-
* Accepts CSS width value (e.g., "15vw", "256px").
|
|
842
|
-
*/
|
|
843
|
-
width?: string;
|
|
844
|
-
/**
|
|
845
|
-
* Callback to start resizing
|
|
846
|
-
*/
|
|
847
|
-
onResizeStart?: (e: React$1.MouseEvent) => void;
|
|
848
|
-
}
|
|
849
|
-
/**
|
|
850
|
-
* ConversationSidebar displays a collapsible list of past conversations.
|
|
851
|
-
*
|
|
852
|
-
* When collapsed, shows a thin strip with history icon at top.
|
|
853
|
-
* When expanded, shows chevron at top-left to collapse.
|
|
854
|
-
*/
|
|
855
|
-
declare const ConversationSidebar: React$1.ForwardRefExoticComponent<ConversationSidebarProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
856
|
-
/**
|
|
857
|
-
* Collapsed sidebar toggle button (for external use if needed)
|
|
858
|
-
*/
|
|
859
|
-
interface CollapsedSidebarToggleProps extends React$1.ButtonHTMLAttributes<HTMLButtonElement> {
|
|
860
|
-
onExpand?: () => void;
|
|
861
|
-
}
|
|
862
|
-
declare const CollapsedSidebarToggle: React$1.ForwardRefExoticComponent<CollapsedSidebarToggleProps & React$1.RefAttributes<HTMLButtonElement>>;
|
|
863
|
-
|
|
864
813
|
declare const TASK_STATUSES: {
|
|
865
814
|
readonly PENDING: "pending";
|
|
866
815
|
readonly IN_PROGRESS: "in_progress";
|
|
@@ -1338,6 +1287,13 @@ interface ChatMessage {
|
|
|
1338
1287
|
*/
|
|
1339
1288
|
isStreaming?: boolean;
|
|
1340
1289
|
}
|
|
1290
|
+
interface Conversation {
|
|
1291
|
+
id: string;
|
|
1292
|
+
title: string;
|
|
1293
|
+
preview?: string;
|
|
1294
|
+
timestamp?: string;
|
|
1295
|
+
isActive?: boolean;
|
|
1296
|
+
}
|
|
1341
1297
|
interface ChatInterfaceProps extends Omit<React$1.HTMLAttributes<HTMLDivElement>, 'onSubmit'> {
|
|
1342
1298
|
/**
|
|
1343
1299
|
* Array of messages in the conversation (flat mode)
|
|
@@ -1402,10 +1358,6 @@ interface ChatInterfaceProps extends Omit<React$1.HTMLAttributes<HTMLDivElement>
|
|
|
1402
1358
|
* Helper text shown in the empty state (when there are no messages).
|
|
1403
1359
|
*/
|
|
1404
1360
|
emptyStateHelper?: React$1.ReactNode;
|
|
1405
|
-
/**
|
|
1406
|
-
* Whether the sidebar should be initially collapsed.
|
|
1407
|
-
*/
|
|
1408
|
-
initialSidebarCollapsed?: boolean;
|
|
1409
1361
|
/**
|
|
1410
1362
|
* Custom content to show when the conversation is empty.
|
|
1411
1363
|
* Overrides the default centered input and helper text.
|
|
@@ -1463,10 +1415,9 @@ interface ChatInterfaceProps extends Omit<React$1.HTMLAttributes<HTMLDivElement>
|
|
|
1463
1415
|
* ChatInterface is the main orchestrator for a full-featured chat experience.
|
|
1464
1416
|
*
|
|
1465
1417
|
* Features:
|
|
1466
|
-
* - ConversationSidebar (far left) — collapsible list of past conversations
|
|
1467
1418
|
* - ChatView (center) — main conversation area with smart scrolling
|
|
1468
1419
|
* - Dual tool sidebar system — IntelliJ-style tool sidebars on left and right:
|
|
1469
|
-
* - Left sidebar: History (top-left) + consumer tools (bottom-left)
|
|
1420
|
+
* - Left sidebar: History (top-left, conversation list + new chat) + consumer tools (bottom-left)
|
|
1470
1421
|
* - Right sidebar: Artifacts (top-right) + Tasks (bottom-right) + consumer tools
|
|
1471
1422
|
* - Tools in the same group are mutually exclusive
|
|
1472
1423
|
* - Both panels can be open simultaneously — chat area shrinks to accommodate
|
|
@@ -1980,4 +1931,4 @@ declare const ArtifactVariantStack: React$1.ForwardRefExoticComponent<ArtifactVa
|
|
|
1980
1931
|
|
|
1981
1932
|
declare const version = "2.0.0";
|
|
1982
1933
|
|
|
1983
|
-
export { ARTIFACT_TYPES, Accordion, AccordionContent, type AccordionContentProps, AccordionItem, type AccordionItemProps, type AccordionProps, AccordionTrigger, type AccordionTriggerProps, Alert, AlertDialog, type AlertDialogProps, type AlertProps, type AlertVariant, type Artifact, ArtifactCard, type ArtifactCardProps, ArtifactGroup, type ArtifactGroupProps, type ArtifactNode, type ArtifactType, ArtifactVariantStack, type ArtifactVariantStackProps, ArtifactsPanel, type ArtifactsPanelProps, ArtifactsPanelToggle, type ArtifactsPanelToggleProps, type AspectRatio, type AspectRatioPreset, type Attachment, type AttachmentItem, AttachmentPreview, type AttachmentPreviewProps, type AttachmentStatus, AudioCard, type AudioCardProps, Avatar, type AvatarProps, type AvatarSize, Badge, type BadgeProps, type BadgeVariant, BranchNavigator, type BranchNavigatorProps, BrandIcon, type BrandIconProps, type BrandIconSize, type BrandIconVariant, Breadcrumb, type BreadcrumbEntry, BreadcrumbItem, type BreadcrumbItemProps, BreadcrumbLink, type BreadcrumbLinkProps, type BreadcrumbProps, Button, type ButtonProps, type ButtonSize, type ButtonVariant, Card, type CardBodyProps, type CardFooterProps, type CardHeaderProps, type CardMediaProps, type CardProps, type CardVariant, ChatInput, type ChatInputPosition, type ChatInputProps, ChatInterface, type ChatInterfaceProps, type ChatMessage, ChatView, type ChatViewItem, type ChatViewProps, CheckSquareIcon, Checkbox, type CheckboxProps, ChevronLeftIcon, ChevronRightIcon, CloseIcon, Col, type ColOffset, type ColOrder, type ColProps, type ColSpan,
|
|
1934
|
+
export { ARTIFACT_TYPES, Accordion, AccordionContent, type AccordionContentProps, AccordionItem, type AccordionItemProps, type AccordionProps, AccordionTrigger, type AccordionTriggerProps, Alert, AlertDialog, type AlertDialogProps, type AlertProps, type AlertVariant, type Artifact, ArtifactCard, type ArtifactCardProps, ArtifactGroup, type ArtifactGroupProps, type ArtifactNode, type ArtifactType, ArtifactVariantStack, type ArtifactVariantStackProps, ArtifactsPanel, type ArtifactsPanelProps, ArtifactsPanelToggle, type ArtifactsPanelToggleProps, type AspectRatio, type AspectRatioPreset, type Attachment, type AttachmentItem, AttachmentPreview, type AttachmentPreviewProps, type AttachmentStatus, AudioCard, type AudioCardProps, Avatar, type AvatarProps, type AvatarSize, Badge, type BadgeProps, type BadgeVariant, BranchNavigator, type BranchNavigatorProps, BrandIcon, type BrandIconProps, type BrandIconSize, type BrandIconVariant, Breadcrumb, type BreadcrumbEntry, BreadcrumbItem, type BreadcrumbItemProps, BreadcrumbLink, type BreadcrumbLinkProps, type BreadcrumbProps, Button, type ButtonProps, type ButtonSize, type ButtonVariant, Card, type CardBodyProps, type CardFooterProps, type CardHeaderProps, type CardMediaProps, type CardProps, type CardVariant, ChatBubbleIcon, ChatInput, type ChatInputPosition, type ChatInputProps, ChatInterface, type ChatInterfaceProps, type ChatMessage, ChatView, type ChatViewItem, type ChatViewProps, CheckSquareIcon, Checkbox, type CheckboxProps, ChevronLeftIcon, ChevronRightIcon, CloseIcon, Col, type ColOffset, type ColOrder, type ColProps, type ColSpan, ColorSwatch, type ColorSwatchProps, ConfirmDialog, type ConfirmDialogProps, Container, type ContainerProps, type ContainerSize, type Conversation, type ConversationTree, CrossSquareIcon, Divider, type DividerProps, Drawer, type DrawerPosition, type DrawerProps, EmptySquareIcon, ExpandIcon, type ExternalToolDefinition, FileChip, type FileChipProps, type FileChipStatus, HelperText, type HelperTextProps, HistoryIcon, type IconProps, ImageCard, type ImageCardProps, Input, type InputAddonProps, type InputElementProps, InputGroup, type InputGroupProps, InputLeftAddon, InputLeftElement, type InputProps, InputRightAddon, InputRightElement, InputWrapper, type InputWrapperProps, Label, type LabelProps, LayersIcon, List, ListItem, type ListItemProps, ListItemText, type ListItemTextProps, type ListProps, ListSubheader, type ListSubheaderProps, MarkdownContent, type MarkdownContentProps, MediaIcon, Menu, MenuContent, type MenuContentProps, MenuItem, type MenuItemProps, MenuLabel, type MenuProps, MenuSeparator, MenuTrigger, type MenuTriggerProps, Message, MessageActions, type MessageActionsConfig, type MessageActionsProps, type MessageActionsVariant, type MessageBranchInfo, type MessageNode, type MessageProps, type MessageVariant, Modal, type ModalProps, NODE_TYPES, Navbar, NavbarBrand, type NavbarBrandProps, NavbarContent, type NavbarContentProps, NavbarDivider, NavbarItem, type NavbarItemProps, NavbarLink, type NavbarLinkProps, type NavbarProps, type NodeType, Pagination, type PaginationProps, PdfCard, type PdfCardProps, PlusIcon, Popover, type PopoverAlign, type PopoverPosition, type PopoverProps, Progress, type ProgressProps, PromptDialog, type PromptDialogProps, Radio, type RadioProps, Row, type RowAlign, type RowGutter, type RowJustify, type RowProps, SCRIPT_ELEMENT_TYPES, ScriptCard, type ScriptCardProps, type ScriptElement, type ScriptElementType, SectionHeading, type SectionHeadingLevel, type SectionHeadingProps, Select, type SelectOption, type SelectProps, Skeleton, type SkeletonProps, Slider, type SliderProps, Spinner, type SpinnerProps, SquareLoaderIcon, Stack, type StackDirection, type StackGap, type StackProps, type Step, type StepStatus, Stepper, type StepperProps, StreamingCursor, type StreamingCursorProps, Switch, type SwitchProps, TASK_STATUSES, Tab, TabList, type TabListProps, TabPanel, type TabPanelProps, type TabProps, Table, TableBody, type TableBodyProps, TableCaption, type TableCaptionProps, TableCell, type TableCellProps, TableFooter, type TableFooterProps, TableHead, type TableHeadProps, TableHeader, type TableHeaderProps, type TableProps, TableRow, type TableRowProps, Tabs, type TabsProps, type Task, type TaskStatus, TextCard, type TextCardProps, Textarea, type TextareaProps, ThinkingIndicator, type ThinkingIndicatorProps, type ToastData, type ToastPosition, ToastProvider, type ToastProviderProps, type ToastVariant, TodosList, type TodosListProps, type ToolDefinition, type ToolGroup, ToolPanelContainer, type ToolPanelContainerProps, type ToolPanelState, ToolSidebar, type ToolSidebarProps, Tooltip, type TooltipProps, type UseArtifactTreeNavigationReturn, type UseScrollAnchorOptions, type UseScrollAnchorReturn, type VideoAspectRatio, type VideoAspectRatioPreset, VideoCard, type VideoCardProps, addMessageToTree, areAllTasksSettled, createEmptyTree, createPreviewUrl, generateId, getActivePathMessages, getSiblingInfo, isBranchPoint, isImageFile, messagesToTree, revokePreviewUrl, switchBranch, updateNodeContent, useArtifactTreeNavigation, useResizable, useScrollAnchor, useToast, version };
|