@pixonui/react 0.5.22 → 0.5.27

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 CHANGED
@@ -1422,8 +1422,9 @@ interface DialogProps {
1422
1422
  onClose: () => void;
1423
1423
  children: React__default.ReactNode;
1424
1424
  className?: string;
1425
+ hideClose?: boolean;
1425
1426
  }
1426
- declare function Dialog({ isOpen, onClose, children, className }: DialogProps): React__default.ReactPortal | null;
1427
+ declare function Dialog({ isOpen, onClose, children, className, hideClose }: DialogProps): React__default.ReactPortal | null;
1427
1428
  declare function DialogHeader({ className, children }: React__default.HTMLAttributes<HTMLDivElement>): react_jsx_runtime.JSX.Element;
1428
1429
  declare function DialogFooter({ className, children }: React__default.HTMLAttributes<HTMLDivElement>): react_jsx_runtime.JSX.Element;
1429
1430
  declare function DialogTitle({ className, children }: React__default.HTMLAttributes<HTMLHeadingElement>): react_jsx_runtime.JSX.Element;
@@ -1657,6 +1658,38 @@ interface AIResponseProps extends React__default.HTMLAttributes<HTMLDivElement>,
1657
1658
  */
1658
1659
  declare const AIResponse: React__default.ForwardRefExoticComponent<AIResponseProps & React__default.RefAttributes<HTMLDivElement>>;
1659
1660
 
1661
+ interface AISummaryCardProps extends React__default.HTMLAttributes<HTMLDivElement> {
1662
+ summary: string;
1663
+ onRegenerate?: () => void;
1664
+ isLoading?: boolean;
1665
+ }
1666
+ declare function AISummaryCard({ summary, onRegenerate, isLoading, className, ...props }: AISummaryCardProps): react_jsx_runtime.JSX.Element;
1667
+
1668
+ interface SmartReplySuggestionsProps {
1669
+ replies: string[];
1670
+ onSelect: (reply: string) => void;
1671
+ isLoading?: boolean;
1672
+ }
1673
+ declare function SmartReplySuggestions({ replies, onSelect, isLoading }: SmartReplySuggestionsProps): react_jsx_runtime.JSX.Element;
1674
+
1675
+ interface BulkActionBarProps {
1676
+ isVisible: boolean;
1677
+ selectedCount: number;
1678
+ onClose: () => void;
1679
+ onDelete?: () => void;
1680
+ onForward?: () => void;
1681
+ onMarkRead?: () => void;
1682
+ onCopyAll?: () => void;
1683
+ }
1684
+ declare function BulkActionBar({ isVisible, selectedCount, onClose, onDelete, onForward, onMarkRead, onCopyAll }: BulkActionBarProps): react_jsx_runtime.JSX.Element;
1685
+
1686
+ interface ConnectionStatusBannerProps {
1687
+ status: 'disconnected' | 'connecting' | 'reconnecting' | 'error';
1688
+ onRetry?: () => void;
1689
+ message?: string;
1690
+ }
1691
+ declare function ConnectionStatusBanner({ status, onRetry, message }: ConnectionStatusBannerProps): react_jsx_runtime.JSX.Element;
1692
+
1660
1693
  type UserStatus = 'online' | 'offline' | 'away' | 'busy';
1661
1694
  type PresenceStatus = 'unavailable' | 'available' | 'composing' | 'recording' | 'paused';
1662
1695
  interface User {
@@ -1670,6 +1703,7 @@ interface User {
1670
1703
  phone?: string;
1671
1704
  isOnline?: boolean;
1672
1705
  verified?: boolean;
1706
+ tags?: string[];
1673
1707
  }
1674
1708
  type MessageType = 'text' | 'image' | 'file' | 'system' | 'audio' | 'video' | 'location' | 'contact' | 'poll' | 'sticker' | 'template' | 'interactive' | 'reaction' | 'revoked';
1675
1709
  type MessageStatus = 'sending' | 'sent' | 'delivered' | 'read' | 'failed' | 'played';
@@ -1777,6 +1811,10 @@ interface Message {
1777
1811
  forwardingScore?: number;
1778
1812
  broadcast?: boolean;
1779
1813
  starred?: boolean;
1814
+ agentName?: string;
1815
+ isInternalNote?: boolean;
1816
+ transcription?: string;
1817
+ isTranscribing?: boolean;
1780
1818
  }
1781
1819
  interface Conversation {
1782
1820
  id: string;
@@ -1793,6 +1831,11 @@ interface Conversation {
1793
1831
  isReadOnly?: boolean;
1794
1832
  ephemeralExpiration?: number;
1795
1833
  labels?: string[];
1834
+ activeFlowName?: string;
1835
+ jid?: string;
1836
+ instanceId?: number;
1837
+ status?: 'open' | 'closed';
1838
+ sessionWindowExpiresAt?: string | Date;
1796
1839
  wallpaper?: string;
1797
1840
  }
1798
1841
  interface GroupInfo {
@@ -1870,6 +1913,8 @@ interface MessageListProps extends Omit<React__default.HTMLAttributes<HTMLDivEle
1870
1913
  onAction?: (message: Message, action: any) => void;
1871
1914
  onImageClick?: (url: string) => void;
1872
1915
  onTTS?: (message: Message) => void;
1916
+ onTranscribe?: (message: Message) => void;
1917
+ hasAi?: boolean;
1873
1918
  onLoadMore?: () => void;
1874
1919
  hasMore?: boolean;
1875
1920
  isLoadingMore?: boolean;
@@ -1877,7 +1922,7 @@ interface MessageListProps extends Omit<React__default.HTMLAttributes<HTMLDivEle
1877
1922
  dateFormat?: string;
1878
1923
  groupByDate?: boolean;
1879
1924
  }
1880
- declare function MessageList({ messages, currentUserId, className, onReply, onReact, onDelete, onEdit, onForward, onCopy, onPin, onStar, onSelect, onAction, onImageClick, onTTS, onLoadMore, hasMore, isLoadingMore, selectedMessages, dateFormat, groupByDate, ...props }: MessageListProps): react_jsx_runtime.JSX.Element;
1925
+ declare function MessageList({ messages, currentUserId, className, onReply, onReact, onDelete, onEdit, onForward, onCopy, onPin, onStar, onSelect, onAction, onImageClick, onTTS, onTranscribe, hasAi, onLoadMore, hasMore, isLoadingMore, selectedMessages, dateFormat, groupByDate, ...props }: MessageListProps): react_jsx_runtime.JSX.Element;
1881
1926
 
1882
1927
  interface MessageBubbleProps {
1883
1928
  message: Message;
@@ -1897,9 +1942,11 @@ interface MessageBubbleProps {
1897
1942
  onAction?: (action: any) => void;
1898
1943
  onImageClick?: (url: string) => void;
1899
1944
  onTTS?: () => void;
1945
+ onTranscribe?: (message: Message) => void;
1946
+ hasAi?: boolean;
1900
1947
  isSelected?: boolean;
1901
1948
  }
1902
- declare function MessageBubble({ message, isOwn, showAvatar, showStatus, className, onReply, onReact, onDelete, onEdit, onForward, onCopy, onPin, onStar, onSelect, onAction, onTTS, onImageClick, isSelected }: MessageBubbleProps): react_jsx_runtime.JSX.Element;
1949
+ declare function MessageBubble({ message, isOwn, showAvatar, showStatus, className, onReply, onReact, onDelete, onEdit, onForward, onCopy, onPin, onStar, onSelect, onAction, onTTS, onTranscribe, hasAi, onImageClick, isSelected }: MessageBubbleProps): react_jsx_runtime.JSX.Element;
1903
1950
 
1904
1951
  interface ChatInputProps extends Omit<React__default.HTMLAttributes<HTMLDivElement>, 'onSelect' | 'onChange'> {
1905
1952
  value?: string;
@@ -2043,6 +2090,40 @@ interface MessageSearchProps extends Omit<React__default.HTMLAttributes<HTMLDivE
2043
2090
  }
2044
2091
  declare function MessageSearch({ onSearch, results, onResultClick, onClose, className, ...props }: MessageSearchProps): react_jsx_runtime.JSX.Element;
2045
2092
 
2093
+ interface WaveformAudioProps extends React__default.HTMLAttributes<HTMLDivElement> {
2094
+ src: string;
2095
+ duration?: number;
2096
+ isMe?: boolean;
2097
+ bars?: number;
2098
+ }
2099
+ declare function WaveformAudio({ src, duration, isMe, bars, className, ...props }: WaveformAudioProps): react_jsx_runtime.JSX.Element;
2100
+
2101
+ interface StickyDateHeaderProps extends React__default.HTMLAttributes<HTMLDivElement> {
2102
+ date: string | Date;
2103
+ sticky?: boolean;
2104
+ }
2105
+ declare function StickyDateHeader({ date, sticky, className, ...props }: StickyDateHeaderProps): react_jsx_runtime.JSX.Element;
2106
+
2107
+ interface MediaLightboxProps {
2108
+ isOpen: boolean;
2109
+ onClose: () => void;
2110
+ url: string;
2111
+ type?: 'image' | 'video';
2112
+ fileName?: string;
2113
+ caption?: string;
2114
+ }
2115
+ declare function MediaLightbox({ isOpen, onClose, url, type, fileName, caption }: MediaLightboxProps): react_jsx_runtime.JSX.Element | null;
2116
+
2117
+ interface VirtualizedMessageListProps {
2118
+ messages: Message[];
2119
+ currentUserId: string;
2120
+ onReply?: (message: Message) => void;
2121
+ onImageClick?: (url: string) => void;
2122
+ className?: string;
2123
+ itemHeight?: number;
2124
+ }
2125
+ declare function VirtualizedMessageList({ messages, currentUserId, onReply, onImageClick, className, itemHeight }: VirtualizedMessageListProps): react_jsx_runtime.JSX.Element;
2126
+
2046
2127
  interface ChatState {
2047
2128
  conversations: Map<string, Conversation>;
2048
2129
  messages: Map<string, Message[]>;
@@ -2187,6 +2268,29 @@ interface KbdProps extends React__default.HTMLAttributes<HTMLElement> {
2187
2268
  }
2188
2269
  declare const Kbd: React__default.ForwardRefExoticComponent<KbdProps & React__default.RefAttributes<HTMLElement>>;
2189
2270
 
2271
+ type AnimatePreset = 'fade' | 'fade-up' | 'fade-down' | 'scale' | 'slide-bottom' | 'slide-top';
2272
+ interface AnimateProps extends React__default.HTMLAttributes<HTMLDivElement> {
2273
+ children: React__default.ReactNode;
2274
+ preset?: AnimatePreset;
2275
+ show?: boolean;
2276
+ delay?: number;
2277
+ duration?: number;
2278
+ className?: string;
2279
+ onAnimationComplete?: () => void;
2280
+ }
2281
+ declare function Animate({ children, preset, show, delay, duration, className, onAnimationComplete, style, ...props }: AnimateProps): react_jsx_runtime.JSX.Element | null;
2282
+
2283
+ interface PresenceProps {
2284
+ present: boolean;
2285
+ children: React__default.ReactElement;
2286
+ exitDuration?: number;
2287
+ }
2288
+ /**
2289
+ * A lightweight alternative to framer-motion's AnimatePresence.
2290
+ * It ensures the child stays in the DOM until the exit duration completes.
2291
+ */
2292
+ declare function Presence({ present, children, exitDuration }: PresenceProps): React__default.ReactElement<any, string | React__default.JSXElementConstructor<any>> | null;
2293
+
2190
2294
  type Theme = "dark" | "light" | "system";
2191
2295
  type ThemeProviderProps = {
2192
2296
  children: React__default.ReactNode;
@@ -2707,6 +2811,13 @@ interface VoiceRecorderHook {
2707
2811
  }
2708
2812
  declare function useVoiceRecorder(): VoiceRecorderHook;
2709
2813
 
2814
+ /**
2815
+ * Hook to manage the presence of a component for unmounting animations.
2816
+ * @param isVisible Whether the component should be visible
2817
+ * @param exitDuration Duration of the exit animation in ms
2818
+ */
2819
+ declare function usePresence(isVisible: boolean, exitDuration?: number): boolean;
2820
+
2710
2821
  declare function cn(...inputs: ClassValue[]): string;
2711
2822
 
2712
2823
  /**
@@ -2731,4 +2842,4 @@ declare function truncate(str: string, length: number): string;
2731
2842
  */
2732
2843
  declare function slugify(str: string): string;
2733
2844
 
2734
- export { AIPromptInput, type AIPromptInputProps, AIResponse, type AIResponseProps, type AIResponseSource, Accordion, AccordionContent, type AccordionContentProps, AccordionItem, type AccordionItemProps, type AccordionProps, AccordionTrigger, type AccordionTriggerProps, Alert, type AlertProps, type AlertVariant, type Align, AreaChart, type AreaChartProps, AssigneePicker, type Attachment, AudioPlayer, Avatar, Background, type BackgroundProps, Badge, type BadgeProps, BarChart, type BarChartProps, Breadcrumb, BreadcrumbEllipsis, BreadcrumbItem, BreadcrumbLink, BreadcrumbList, BreadcrumbPage, BreadcrumbSeparator, type Breakpoint, Button, type ButtonProps, Calendar, type CalendarProps, Card, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, CarouselMessage, ChartContainer, type ChartContainerProps, type ChartContextValue, type ChartDataPoint, ChartGrid, ChartSkeleton, ChartTooltip, ChartXAxis, ChartYAxis, type ChatAttachment, ChatBanner, ChatHeader, ChatInput, type ChatLabel, ChatLayout, type ChatMessage, ChatProfile, ChatSidebar, Checkbox, type CheckboxProps, Checklist, type ChecklistItem, Collapse, type CollapseProps, ColorPicker, type ColorPickerProps, type Column, ColumnLimit, Combobox, ComboboxContent, ComboboxEmpty, ComboboxInput, ComboboxItem, type ComboboxItemProps, ComboboxList, type ComboboxProps, ComboboxTrigger, Command, CommandDialog, type CommandDialogProps, CommandEmpty, CommandGroup, CommandInput, CommandItem, CommandList, CommandShortcut, ConfirmDialog, type ConfirmDialogProps, Container, type ContainerProps, type Conversation, DataTable, DatePicker, type DatePickerProps, DateSeparator, DateTimePicker, type DateTimePickerProps, Dialog, DialogDescription, DialogFooter, DialogHeader, type DialogProps, DialogTitle, Divider, type DragState, Drawer, DrawerDescription, DrawerFooter, DrawerHeader, type DrawerProps, DrawerTitle, type DropPosition, DropdownMenu, DropdownMenuContent, type DropdownMenuContentProps, DropdownMenuItem, type DropdownMenuItemProps, DropdownMenuLabel, type DropdownMenuProps, DropdownMenuSeparator, DropdownMenuTrigger, type DropdownMenuTriggerProps, DueDatePicker, type ElementScrollValues, EmojiPicker, EmptyState, type EmptyStateProps, FileDropzone, type FileDropzoneProps, type FilterOption, FormControl, FormDescription, FormItem, FormLabel, FormMessage, GlowButton, type GlowButtonProps, Grid, type GridProps, GroupHeader, type GroupInfo, type GroupMember, Heading, type HeadingProps, HeroText, type HeroTextProps, type HistoryState, Image, type ImageProps, type InteractiveButton, type InteractiveCard, type InteractiveContent, type InteractiveListSection, InteractiveMessage, KanbanBoard as Kanban, KanbanBoard, type KanbanBoardColumn, type KanbanBoardState, type KanbanBoardTask, KanbanCalendarView, type KanbanCalendarViewProps, KanbanCard, KanbanColumn, type KanbanColumnDef, KanbanFilterBar, type KanbanFilterBarProps, KanbanHeader, type KanbanHistoryEntry, type KanbanLabel, KanbanListView, type KanbanProps, KanbanQuickAdd, KanbanSwimlane, KanbanTableView, type KanbanTask, KanbanTaskModal, type KanbanTaskModalProps, KanbanTimelineView, type KanbanUser, Kbd, type KbdProps, Label, LabelPicker, type LabelProps, LetterPullup, type LetterPullupProps, LineChart, type LineChartProps, LinkPreview, Magnetic, type MagneticProps, Marquee, type MarqueeProps, MentionList, type Message, MessageBubble, MessageList, MessageSearch, type MessageStatus, type MessageType, MetricCard, type MetricCardProps, Modal, ModalDescription, ModalFooter, ModalHeader, type ModalProps, ModalTitle, Motion, MotionGroup, type MotionProps, type MousePosition, Navbar, NumberInput, type NumberInputProps, NumberTicker, type NumberTickerProps, OTPInput, type OTPInputProps, OnlineIndicator, type Orientation, PageLoader, type PageLoaderProps, PageTransition, type PageTransitionProps, Pagination, PaginationContent, PaginationEllipsis, PaginationItem, PaginationLink, PaginationNext, PaginationPrevious, Parallax, PasswordInput, type PasswordInputProps, PieChart, type PieChartProps, type PollOption, Popover, PopoverContent, type PopoverContentProps, type PopoverProps, PopoverTrigger, type PopoverTriggerProps, type PresenceStatus, PrimaryButton, Progress, type ProgressProps, type ProgressSize, type ProgressVariant, RadarChart, type RadarChartProps, type RadarDataPoint, RadioGroup, RadioGroupItem, type RadioGroupItemProps, type RadioGroupProps, Rating, type RatingProps, ReadReceipt, ReplyPreview, Reveal, type RevealProps, type SavedFilter, ScrollArea, type ScrollAreaProps, type ScrollDirection, ScrollProgress, type ScrollProgressProps, type ScrollValues, Select, type SelectOption, type SelectProps, Separator, type SeparatorProps, ShinyText, type ShinyTextProps, type ShortcutHandler, type ShortcutMap, type Side, Sidebar, SidebarContent, type SidebarContentProps, SidebarFooter, type SidebarFooterProps, SidebarGroup, type SidebarGroupProps, SidebarHeader, type SidebarHeaderProps, SidebarItem, type SidebarItemProps, type SidebarProps, Skeleton, type SkeletonProps, SkipToContent, type SkipToContentProps, Slider, type SliderProps, type SortConfig, Sparkline, type SparklineProps, Spotlight, type SpotlightProps, Stack, type StackProps, StatusDot, type StatusDotProps, Stepper, type StepperProps, type Subtask, SubtaskList, Surface, type SurfaceProps, Switch, type SwitchProps, SystemMessage, Table, TableBody, TableCell, TableHead, TableHeader, type TableProps, TableRow, type TableRowProps, Tabs, TabsContent, type TabsContentProps, TabsList, type TabsListProps, type TabsProps, TabsTrigger, type TabsTriggerProps, TagInput, type TagInputProps, TaskActivity, TaskAttachments, TaskComments, Terminal, TerminalLine, type TerminalProps, Text, TextGradient, type TextGradientProps, TextInput, type TextInputProps, TextMotion, Textarea, type TextareaProps, ThemeProvider, ThemeToggle, TimeTracker, Timeline, TimelineItem, type TimelineItemProps, Toast, ToastContext, type ToastContextType, type ToastOptions, type ToastProps, ToastProvider, type ToastVariant, ToggleGroup, type ToggleGroupProps, Tooltip, type TooltipPosition, type TooltipProps, Tree, type TreeNode, type TreeProps, TypingIndicator, type UseChatOptions, type UseClipboardOptions, type UseInViewOptions, type UseInfiniteScrollOptions, type UseVirtualListOptions, type User, UserMenu, type UserMenuProps, UserPreview, type UserPreviewProps, type UserStatus, VoiceRecorder, type VoiceRecorderHook, type YAxisProps, chatStore, cn, formatCurrency, formatDate, formatNumber, normalize, slugify, truncate, useActiveChat, useAsync, useBaileysSync, useBreakpoint, useChart, useChat, useChatMedia, useChatMessages, useChatPresence, useChatSearch, useChatSearchWorker, useChatStore, useClickOutside, useClipboard, useContainerQuery, useConversations, useDebounce, useDrag, useElementScroll, useFetch, useFlip, useFloating, useForm, useHistory, useIdle, useInView, useInfiniteScroll, useIntersection, useKanban, useKanbanFilters, useKanbanHistory, useKanbanKeyboard, useKanbanSync, useKanbanUndo, useKeyboardShortcuts, useLocalStorage, useMediaQuery, useMessages, useMousePosition, useOnMount, useOnUnmount, useOrientation, usePrevious, useReadReceipts, useReducedMotion, useScroll, useScrollDirection, useScrollLock, useScrollTransform, useScrollVelocity, useSearch, useSequence, useSessionStorage, useSocket, useSpring, useStagger, useTextScramble, useTheme, useThrottle, useTimer, useToast, useToggle, useTypingIndicator, useUserPresence, useViewTransition, useVirtualList, useVoiceRecorder };
2845
+ export { AIPromptInput, type AIPromptInputProps, AIResponse, type AIResponseProps, type AIResponseSource, AISummaryCard, Accordion, AccordionContent, type AccordionContentProps, AccordionItem, type AccordionItemProps, type AccordionProps, AccordionTrigger, type AccordionTriggerProps, Alert, type AlertProps, type AlertVariant, type Align, Animate, type AnimatePreset, AreaChart, type AreaChartProps, AssigneePicker, type Attachment, AudioPlayer, Avatar, Background, type BackgroundProps, Badge, type BadgeProps, BarChart, type BarChartProps, Breadcrumb, BreadcrumbEllipsis, BreadcrumbItem, BreadcrumbLink, BreadcrumbList, BreadcrumbPage, BreadcrumbSeparator, type Breakpoint, BulkActionBar, Button, type ButtonProps, Calendar, type CalendarProps, Card, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, CarouselMessage, ChartContainer, type ChartContainerProps, type ChartContextValue, type ChartDataPoint, ChartGrid, ChartSkeleton, ChartTooltip, ChartXAxis, ChartYAxis, type ChatAttachment, ChatBanner, ChatHeader, ChatInput, type ChatLabel, ChatLayout, type ChatMessage, ChatProfile, ChatSidebar, Checkbox, type CheckboxProps, Checklist, type ChecklistItem, Collapse, type CollapseProps, ColorPicker, type ColorPickerProps, type Column, ColumnLimit, Combobox, ComboboxContent, ComboboxEmpty, ComboboxInput, ComboboxItem, type ComboboxItemProps, ComboboxList, type ComboboxProps, ComboboxTrigger, Command, CommandDialog, type CommandDialogProps, CommandEmpty, CommandGroup, CommandInput, CommandItem, CommandList, CommandShortcut, ConfirmDialog, type ConfirmDialogProps, ConnectionStatusBanner, Container, type ContainerProps, type Conversation, DataTable, DatePicker, type DatePickerProps, DateSeparator, DateTimePicker, type DateTimePickerProps, Dialog, DialogDescription, DialogFooter, DialogHeader, type DialogProps, DialogTitle, Divider, type DragState, Drawer, DrawerDescription, DrawerFooter, DrawerHeader, type DrawerProps, DrawerTitle, type DropPosition, DropdownMenu, DropdownMenuContent, type DropdownMenuContentProps, DropdownMenuItem, type DropdownMenuItemProps, DropdownMenuLabel, type DropdownMenuProps, DropdownMenuSeparator, DropdownMenuTrigger, type DropdownMenuTriggerProps, DueDatePicker, type ElementScrollValues, EmojiPicker, EmptyState, type EmptyStateProps, FileDropzone, type FileDropzoneProps, type FilterOption, FormControl, FormDescription, FormItem, FormLabel, FormMessage, GlowButton, type GlowButtonProps, Grid, type GridProps, GroupHeader, type GroupInfo, type GroupMember, Heading, type HeadingProps, HeroText, type HeroTextProps, type HistoryState, Image, type ImageProps, type InteractiveButton, type InteractiveCard, type InteractiveContent, type InteractiveListSection, InteractiveMessage, KanbanBoard as Kanban, KanbanBoard, type KanbanBoardColumn, type KanbanBoardState, type KanbanBoardTask, KanbanCalendarView, type KanbanCalendarViewProps, KanbanCard, KanbanColumn, type KanbanColumnDef, KanbanFilterBar, type KanbanFilterBarProps, KanbanHeader, type KanbanHistoryEntry, type KanbanLabel, KanbanListView, type KanbanProps, KanbanQuickAdd, KanbanSwimlane, KanbanTableView, type KanbanTask, KanbanTaskModal, type KanbanTaskModalProps, KanbanTimelineView, type KanbanUser, Kbd, type KbdProps, Label, LabelPicker, type LabelProps, LetterPullup, type LetterPullupProps, LineChart, type LineChartProps, LinkPreview, Magnetic, type MagneticProps, Marquee, type MarqueeProps, MediaLightbox, MentionList, type Message, MessageBubble, MessageList, MessageSearch, type MessageStatus, type MessageType, MetricCard, type MetricCardProps, Modal, ModalDescription, ModalFooter, ModalHeader, type ModalProps, ModalTitle, Motion, MotionGroup, type MotionProps, type MousePosition, Navbar, NumberInput, type NumberInputProps, NumberTicker, type NumberTickerProps, OTPInput, type OTPInputProps, OnlineIndicator, type Orientation, PageLoader, type PageLoaderProps, PageTransition, type PageTransitionProps, Pagination, PaginationContent, PaginationEllipsis, PaginationItem, PaginationLink, PaginationNext, PaginationPrevious, Parallax, PasswordInput, type PasswordInputProps, PieChart, type PieChartProps, type PollOption, Popover, PopoverContent, type PopoverContentProps, type PopoverProps, PopoverTrigger, type PopoverTriggerProps, Presence, type PresenceStatus, PrimaryButton, Progress, type ProgressProps, type ProgressSize, type ProgressVariant, RadarChart, type RadarChartProps, type RadarDataPoint, RadioGroup, RadioGroupItem, type RadioGroupItemProps, type RadioGroupProps, Rating, type RatingProps, ReadReceipt, ReplyPreview, Reveal, type RevealProps, type SavedFilter, ScrollArea, type ScrollAreaProps, type ScrollDirection, ScrollProgress, type ScrollProgressProps, type ScrollValues, Select, type SelectOption, type SelectProps, Separator, type SeparatorProps, ShinyText, type ShinyTextProps, type ShortcutHandler, type ShortcutMap, type Side, Sidebar, SidebarContent, type SidebarContentProps, SidebarFooter, type SidebarFooterProps, SidebarGroup, type SidebarGroupProps, SidebarHeader, type SidebarHeaderProps, SidebarItem, type SidebarItemProps, type SidebarProps, Skeleton, type SkeletonProps, SkipToContent, type SkipToContentProps, Slider, type SliderProps, SmartReplySuggestions, type SortConfig, Sparkline, type SparklineProps, Spotlight, type SpotlightProps, Stack, type StackProps, StatusDot, type StatusDotProps, Stepper, type StepperProps, StickyDateHeader, type Subtask, SubtaskList, Surface, type SurfaceProps, Switch, type SwitchProps, SystemMessage, Table, TableBody, TableCell, TableHead, TableHeader, type TableProps, TableRow, type TableRowProps, Tabs, TabsContent, type TabsContentProps, TabsList, type TabsListProps, type TabsProps, TabsTrigger, type TabsTriggerProps, TagInput, type TagInputProps, TaskActivity, TaskAttachments, TaskComments, Terminal, TerminalLine, type TerminalProps, Text, TextGradient, type TextGradientProps, TextInput, type TextInputProps, TextMotion, Textarea, type TextareaProps, ThemeProvider, ThemeToggle, TimeTracker, Timeline, TimelineItem, type TimelineItemProps, Toast, ToastContext, type ToastContextType, type ToastOptions, type ToastProps, ToastProvider, type ToastVariant, ToggleGroup, type ToggleGroupProps, Tooltip, type TooltipPosition, type TooltipProps, Tree, type TreeNode, type TreeProps, TypingIndicator, type UseChatOptions, type UseClipboardOptions, type UseInViewOptions, type UseInfiniteScrollOptions, type UseVirtualListOptions, type User, UserMenu, type UserMenuProps, UserPreview, type UserPreviewProps, type UserStatus, VirtualizedMessageList, VoiceRecorder, type VoiceRecorderHook, WaveformAudio, type YAxisProps, chatStore, cn, formatCurrency, formatDate, formatNumber, normalize, slugify, truncate, useActiveChat, useAsync, useBaileysSync, useBreakpoint, useChart, useChat, useChatMedia, useChatMessages, useChatPresence, useChatSearch, useChatSearchWorker, useChatStore, useClickOutside, useClipboard, useContainerQuery, useConversations, useDebounce, useDrag, useElementScroll, useFetch, useFlip, useFloating, useForm, useHistory, useIdle, useInView, useInfiniteScroll, useIntersection, useKanban, useKanbanFilters, useKanbanHistory, useKanbanKeyboard, useKanbanSync, useKanbanUndo, useKeyboardShortcuts, useLocalStorage, useMediaQuery, useMessages, useMousePosition, useOnMount, useOnUnmount, useOrientation, usePresence, usePrevious, useReadReceipts, useReducedMotion, useScroll, useScrollDirection, useScrollLock, useScrollTransform, useScrollVelocity, useSearch, useSequence, useSessionStorage, useSocket, useSpring, useStagger, useTextScramble, useTheme, useThrottle, useTimer, useToast, useToggle, useTypingIndicator, useUserPresence, useViewTransition, useVirtualList, useVoiceRecorder };
package/dist/index.d.ts CHANGED
@@ -1422,8 +1422,9 @@ interface DialogProps {
1422
1422
  onClose: () => void;
1423
1423
  children: React__default.ReactNode;
1424
1424
  className?: string;
1425
+ hideClose?: boolean;
1425
1426
  }
1426
- declare function Dialog({ isOpen, onClose, children, className }: DialogProps): React__default.ReactPortal | null;
1427
+ declare function Dialog({ isOpen, onClose, children, className, hideClose }: DialogProps): React__default.ReactPortal | null;
1427
1428
  declare function DialogHeader({ className, children }: React__default.HTMLAttributes<HTMLDivElement>): react_jsx_runtime.JSX.Element;
1428
1429
  declare function DialogFooter({ className, children }: React__default.HTMLAttributes<HTMLDivElement>): react_jsx_runtime.JSX.Element;
1429
1430
  declare function DialogTitle({ className, children }: React__default.HTMLAttributes<HTMLHeadingElement>): react_jsx_runtime.JSX.Element;
@@ -1657,6 +1658,38 @@ interface AIResponseProps extends React__default.HTMLAttributes<HTMLDivElement>,
1657
1658
  */
1658
1659
  declare const AIResponse: React__default.ForwardRefExoticComponent<AIResponseProps & React__default.RefAttributes<HTMLDivElement>>;
1659
1660
 
1661
+ interface AISummaryCardProps extends React__default.HTMLAttributes<HTMLDivElement> {
1662
+ summary: string;
1663
+ onRegenerate?: () => void;
1664
+ isLoading?: boolean;
1665
+ }
1666
+ declare function AISummaryCard({ summary, onRegenerate, isLoading, className, ...props }: AISummaryCardProps): react_jsx_runtime.JSX.Element;
1667
+
1668
+ interface SmartReplySuggestionsProps {
1669
+ replies: string[];
1670
+ onSelect: (reply: string) => void;
1671
+ isLoading?: boolean;
1672
+ }
1673
+ declare function SmartReplySuggestions({ replies, onSelect, isLoading }: SmartReplySuggestionsProps): react_jsx_runtime.JSX.Element;
1674
+
1675
+ interface BulkActionBarProps {
1676
+ isVisible: boolean;
1677
+ selectedCount: number;
1678
+ onClose: () => void;
1679
+ onDelete?: () => void;
1680
+ onForward?: () => void;
1681
+ onMarkRead?: () => void;
1682
+ onCopyAll?: () => void;
1683
+ }
1684
+ declare function BulkActionBar({ isVisible, selectedCount, onClose, onDelete, onForward, onMarkRead, onCopyAll }: BulkActionBarProps): react_jsx_runtime.JSX.Element;
1685
+
1686
+ interface ConnectionStatusBannerProps {
1687
+ status: 'disconnected' | 'connecting' | 'reconnecting' | 'error';
1688
+ onRetry?: () => void;
1689
+ message?: string;
1690
+ }
1691
+ declare function ConnectionStatusBanner({ status, onRetry, message }: ConnectionStatusBannerProps): react_jsx_runtime.JSX.Element;
1692
+
1660
1693
  type UserStatus = 'online' | 'offline' | 'away' | 'busy';
1661
1694
  type PresenceStatus = 'unavailable' | 'available' | 'composing' | 'recording' | 'paused';
1662
1695
  interface User {
@@ -1670,6 +1703,7 @@ interface User {
1670
1703
  phone?: string;
1671
1704
  isOnline?: boolean;
1672
1705
  verified?: boolean;
1706
+ tags?: string[];
1673
1707
  }
1674
1708
  type MessageType = 'text' | 'image' | 'file' | 'system' | 'audio' | 'video' | 'location' | 'contact' | 'poll' | 'sticker' | 'template' | 'interactive' | 'reaction' | 'revoked';
1675
1709
  type MessageStatus = 'sending' | 'sent' | 'delivered' | 'read' | 'failed' | 'played';
@@ -1777,6 +1811,10 @@ interface Message {
1777
1811
  forwardingScore?: number;
1778
1812
  broadcast?: boolean;
1779
1813
  starred?: boolean;
1814
+ agentName?: string;
1815
+ isInternalNote?: boolean;
1816
+ transcription?: string;
1817
+ isTranscribing?: boolean;
1780
1818
  }
1781
1819
  interface Conversation {
1782
1820
  id: string;
@@ -1793,6 +1831,11 @@ interface Conversation {
1793
1831
  isReadOnly?: boolean;
1794
1832
  ephemeralExpiration?: number;
1795
1833
  labels?: string[];
1834
+ activeFlowName?: string;
1835
+ jid?: string;
1836
+ instanceId?: number;
1837
+ status?: 'open' | 'closed';
1838
+ sessionWindowExpiresAt?: string | Date;
1796
1839
  wallpaper?: string;
1797
1840
  }
1798
1841
  interface GroupInfo {
@@ -1870,6 +1913,8 @@ interface MessageListProps extends Omit<React__default.HTMLAttributes<HTMLDivEle
1870
1913
  onAction?: (message: Message, action: any) => void;
1871
1914
  onImageClick?: (url: string) => void;
1872
1915
  onTTS?: (message: Message) => void;
1916
+ onTranscribe?: (message: Message) => void;
1917
+ hasAi?: boolean;
1873
1918
  onLoadMore?: () => void;
1874
1919
  hasMore?: boolean;
1875
1920
  isLoadingMore?: boolean;
@@ -1877,7 +1922,7 @@ interface MessageListProps extends Omit<React__default.HTMLAttributes<HTMLDivEle
1877
1922
  dateFormat?: string;
1878
1923
  groupByDate?: boolean;
1879
1924
  }
1880
- declare function MessageList({ messages, currentUserId, className, onReply, onReact, onDelete, onEdit, onForward, onCopy, onPin, onStar, onSelect, onAction, onImageClick, onTTS, onLoadMore, hasMore, isLoadingMore, selectedMessages, dateFormat, groupByDate, ...props }: MessageListProps): react_jsx_runtime.JSX.Element;
1925
+ declare function MessageList({ messages, currentUserId, className, onReply, onReact, onDelete, onEdit, onForward, onCopy, onPin, onStar, onSelect, onAction, onImageClick, onTTS, onTranscribe, hasAi, onLoadMore, hasMore, isLoadingMore, selectedMessages, dateFormat, groupByDate, ...props }: MessageListProps): react_jsx_runtime.JSX.Element;
1881
1926
 
1882
1927
  interface MessageBubbleProps {
1883
1928
  message: Message;
@@ -1897,9 +1942,11 @@ interface MessageBubbleProps {
1897
1942
  onAction?: (action: any) => void;
1898
1943
  onImageClick?: (url: string) => void;
1899
1944
  onTTS?: () => void;
1945
+ onTranscribe?: (message: Message) => void;
1946
+ hasAi?: boolean;
1900
1947
  isSelected?: boolean;
1901
1948
  }
1902
- declare function MessageBubble({ message, isOwn, showAvatar, showStatus, className, onReply, onReact, onDelete, onEdit, onForward, onCopy, onPin, onStar, onSelect, onAction, onTTS, onImageClick, isSelected }: MessageBubbleProps): react_jsx_runtime.JSX.Element;
1949
+ declare function MessageBubble({ message, isOwn, showAvatar, showStatus, className, onReply, onReact, onDelete, onEdit, onForward, onCopy, onPin, onStar, onSelect, onAction, onTTS, onTranscribe, hasAi, onImageClick, isSelected }: MessageBubbleProps): react_jsx_runtime.JSX.Element;
1903
1950
 
1904
1951
  interface ChatInputProps extends Omit<React__default.HTMLAttributes<HTMLDivElement>, 'onSelect' | 'onChange'> {
1905
1952
  value?: string;
@@ -2043,6 +2090,40 @@ interface MessageSearchProps extends Omit<React__default.HTMLAttributes<HTMLDivE
2043
2090
  }
2044
2091
  declare function MessageSearch({ onSearch, results, onResultClick, onClose, className, ...props }: MessageSearchProps): react_jsx_runtime.JSX.Element;
2045
2092
 
2093
+ interface WaveformAudioProps extends React__default.HTMLAttributes<HTMLDivElement> {
2094
+ src: string;
2095
+ duration?: number;
2096
+ isMe?: boolean;
2097
+ bars?: number;
2098
+ }
2099
+ declare function WaveformAudio({ src, duration, isMe, bars, className, ...props }: WaveformAudioProps): react_jsx_runtime.JSX.Element;
2100
+
2101
+ interface StickyDateHeaderProps extends React__default.HTMLAttributes<HTMLDivElement> {
2102
+ date: string | Date;
2103
+ sticky?: boolean;
2104
+ }
2105
+ declare function StickyDateHeader({ date, sticky, className, ...props }: StickyDateHeaderProps): react_jsx_runtime.JSX.Element;
2106
+
2107
+ interface MediaLightboxProps {
2108
+ isOpen: boolean;
2109
+ onClose: () => void;
2110
+ url: string;
2111
+ type?: 'image' | 'video';
2112
+ fileName?: string;
2113
+ caption?: string;
2114
+ }
2115
+ declare function MediaLightbox({ isOpen, onClose, url, type, fileName, caption }: MediaLightboxProps): react_jsx_runtime.JSX.Element | null;
2116
+
2117
+ interface VirtualizedMessageListProps {
2118
+ messages: Message[];
2119
+ currentUserId: string;
2120
+ onReply?: (message: Message) => void;
2121
+ onImageClick?: (url: string) => void;
2122
+ className?: string;
2123
+ itemHeight?: number;
2124
+ }
2125
+ declare function VirtualizedMessageList({ messages, currentUserId, onReply, onImageClick, className, itemHeight }: VirtualizedMessageListProps): react_jsx_runtime.JSX.Element;
2126
+
2046
2127
  interface ChatState {
2047
2128
  conversations: Map<string, Conversation>;
2048
2129
  messages: Map<string, Message[]>;
@@ -2187,6 +2268,29 @@ interface KbdProps extends React__default.HTMLAttributes<HTMLElement> {
2187
2268
  }
2188
2269
  declare const Kbd: React__default.ForwardRefExoticComponent<KbdProps & React__default.RefAttributes<HTMLElement>>;
2189
2270
 
2271
+ type AnimatePreset = 'fade' | 'fade-up' | 'fade-down' | 'scale' | 'slide-bottom' | 'slide-top';
2272
+ interface AnimateProps extends React__default.HTMLAttributes<HTMLDivElement> {
2273
+ children: React__default.ReactNode;
2274
+ preset?: AnimatePreset;
2275
+ show?: boolean;
2276
+ delay?: number;
2277
+ duration?: number;
2278
+ className?: string;
2279
+ onAnimationComplete?: () => void;
2280
+ }
2281
+ declare function Animate({ children, preset, show, delay, duration, className, onAnimationComplete, style, ...props }: AnimateProps): react_jsx_runtime.JSX.Element | null;
2282
+
2283
+ interface PresenceProps {
2284
+ present: boolean;
2285
+ children: React__default.ReactElement;
2286
+ exitDuration?: number;
2287
+ }
2288
+ /**
2289
+ * A lightweight alternative to framer-motion's AnimatePresence.
2290
+ * It ensures the child stays in the DOM until the exit duration completes.
2291
+ */
2292
+ declare function Presence({ present, children, exitDuration }: PresenceProps): React__default.ReactElement<any, string | React__default.JSXElementConstructor<any>> | null;
2293
+
2190
2294
  type Theme = "dark" | "light" | "system";
2191
2295
  type ThemeProviderProps = {
2192
2296
  children: React__default.ReactNode;
@@ -2707,6 +2811,13 @@ interface VoiceRecorderHook {
2707
2811
  }
2708
2812
  declare function useVoiceRecorder(): VoiceRecorderHook;
2709
2813
 
2814
+ /**
2815
+ * Hook to manage the presence of a component for unmounting animations.
2816
+ * @param isVisible Whether the component should be visible
2817
+ * @param exitDuration Duration of the exit animation in ms
2818
+ */
2819
+ declare function usePresence(isVisible: boolean, exitDuration?: number): boolean;
2820
+
2710
2821
  declare function cn(...inputs: ClassValue[]): string;
2711
2822
 
2712
2823
  /**
@@ -2731,4 +2842,4 @@ declare function truncate(str: string, length: number): string;
2731
2842
  */
2732
2843
  declare function slugify(str: string): string;
2733
2844
 
2734
- export { AIPromptInput, type AIPromptInputProps, AIResponse, type AIResponseProps, type AIResponseSource, Accordion, AccordionContent, type AccordionContentProps, AccordionItem, type AccordionItemProps, type AccordionProps, AccordionTrigger, type AccordionTriggerProps, Alert, type AlertProps, type AlertVariant, type Align, AreaChart, type AreaChartProps, AssigneePicker, type Attachment, AudioPlayer, Avatar, Background, type BackgroundProps, Badge, type BadgeProps, BarChart, type BarChartProps, Breadcrumb, BreadcrumbEllipsis, BreadcrumbItem, BreadcrumbLink, BreadcrumbList, BreadcrumbPage, BreadcrumbSeparator, type Breakpoint, Button, type ButtonProps, Calendar, type CalendarProps, Card, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, CarouselMessage, ChartContainer, type ChartContainerProps, type ChartContextValue, type ChartDataPoint, ChartGrid, ChartSkeleton, ChartTooltip, ChartXAxis, ChartYAxis, type ChatAttachment, ChatBanner, ChatHeader, ChatInput, type ChatLabel, ChatLayout, type ChatMessage, ChatProfile, ChatSidebar, Checkbox, type CheckboxProps, Checklist, type ChecklistItem, Collapse, type CollapseProps, ColorPicker, type ColorPickerProps, type Column, ColumnLimit, Combobox, ComboboxContent, ComboboxEmpty, ComboboxInput, ComboboxItem, type ComboboxItemProps, ComboboxList, type ComboboxProps, ComboboxTrigger, Command, CommandDialog, type CommandDialogProps, CommandEmpty, CommandGroup, CommandInput, CommandItem, CommandList, CommandShortcut, ConfirmDialog, type ConfirmDialogProps, Container, type ContainerProps, type Conversation, DataTable, DatePicker, type DatePickerProps, DateSeparator, DateTimePicker, type DateTimePickerProps, Dialog, DialogDescription, DialogFooter, DialogHeader, type DialogProps, DialogTitle, Divider, type DragState, Drawer, DrawerDescription, DrawerFooter, DrawerHeader, type DrawerProps, DrawerTitle, type DropPosition, DropdownMenu, DropdownMenuContent, type DropdownMenuContentProps, DropdownMenuItem, type DropdownMenuItemProps, DropdownMenuLabel, type DropdownMenuProps, DropdownMenuSeparator, DropdownMenuTrigger, type DropdownMenuTriggerProps, DueDatePicker, type ElementScrollValues, EmojiPicker, EmptyState, type EmptyStateProps, FileDropzone, type FileDropzoneProps, type FilterOption, FormControl, FormDescription, FormItem, FormLabel, FormMessage, GlowButton, type GlowButtonProps, Grid, type GridProps, GroupHeader, type GroupInfo, type GroupMember, Heading, type HeadingProps, HeroText, type HeroTextProps, type HistoryState, Image, type ImageProps, type InteractiveButton, type InteractiveCard, type InteractiveContent, type InteractiveListSection, InteractiveMessage, KanbanBoard as Kanban, KanbanBoard, type KanbanBoardColumn, type KanbanBoardState, type KanbanBoardTask, KanbanCalendarView, type KanbanCalendarViewProps, KanbanCard, KanbanColumn, type KanbanColumnDef, KanbanFilterBar, type KanbanFilterBarProps, KanbanHeader, type KanbanHistoryEntry, type KanbanLabel, KanbanListView, type KanbanProps, KanbanQuickAdd, KanbanSwimlane, KanbanTableView, type KanbanTask, KanbanTaskModal, type KanbanTaskModalProps, KanbanTimelineView, type KanbanUser, Kbd, type KbdProps, Label, LabelPicker, type LabelProps, LetterPullup, type LetterPullupProps, LineChart, type LineChartProps, LinkPreview, Magnetic, type MagneticProps, Marquee, type MarqueeProps, MentionList, type Message, MessageBubble, MessageList, MessageSearch, type MessageStatus, type MessageType, MetricCard, type MetricCardProps, Modal, ModalDescription, ModalFooter, ModalHeader, type ModalProps, ModalTitle, Motion, MotionGroup, type MotionProps, type MousePosition, Navbar, NumberInput, type NumberInputProps, NumberTicker, type NumberTickerProps, OTPInput, type OTPInputProps, OnlineIndicator, type Orientation, PageLoader, type PageLoaderProps, PageTransition, type PageTransitionProps, Pagination, PaginationContent, PaginationEllipsis, PaginationItem, PaginationLink, PaginationNext, PaginationPrevious, Parallax, PasswordInput, type PasswordInputProps, PieChart, type PieChartProps, type PollOption, Popover, PopoverContent, type PopoverContentProps, type PopoverProps, PopoverTrigger, type PopoverTriggerProps, type PresenceStatus, PrimaryButton, Progress, type ProgressProps, type ProgressSize, type ProgressVariant, RadarChart, type RadarChartProps, type RadarDataPoint, RadioGroup, RadioGroupItem, type RadioGroupItemProps, type RadioGroupProps, Rating, type RatingProps, ReadReceipt, ReplyPreview, Reveal, type RevealProps, type SavedFilter, ScrollArea, type ScrollAreaProps, type ScrollDirection, ScrollProgress, type ScrollProgressProps, type ScrollValues, Select, type SelectOption, type SelectProps, Separator, type SeparatorProps, ShinyText, type ShinyTextProps, type ShortcutHandler, type ShortcutMap, type Side, Sidebar, SidebarContent, type SidebarContentProps, SidebarFooter, type SidebarFooterProps, SidebarGroup, type SidebarGroupProps, SidebarHeader, type SidebarHeaderProps, SidebarItem, type SidebarItemProps, type SidebarProps, Skeleton, type SkeletonProps, SkipToContent, type SkipToContentProps, Slider, type SliderProps, type SortConfig, Sparkline, type SparklineProps, Spotlight, type SpotlightProps, Stack, type StackProps, StatusDot, type StatusDotProps, Stepper, type StepperProps, type Subtask, SubtaskList, Surface, type SurfaceProps, Switch, type SwitchProps, SystemMessage, Table, TableBody, TableCell, TableHead, TableHeader, type TableProps, TableRow, type TableRowProps, Tabs, TabsContent, type TabsContentProps, TabsList, type TabsListProps, type TabsProps, TabsTrigger, type TabsTriggerProps, TagInput, type TagInputProps, TaskActivity, TaskAttachments, TaskComments, Terminal, TerminalLine, type TerminalProps, Text, TextGradient, type TextGradientProps, TextInput, type TextInputProps, TextMotion, Textarea, type TextareaProps, ThemeProvider, ThemeToggle, TimeTracker, Timeline, TimelineItem, type TimelineItemProps, Toast, ToastContext, type ToastContextType, type ToastOptions, type ToastProps, ToastProvider, type ToastVariant, ToggleGroup, type ToggleGroupProps, Tooltip, type TooltipPosition, type TooltipProps, Tree, type TreeNode, type TreeProps, TypingIndicator, type UseChatOptions, type UseClipboardOptions, type UseInViewOptions, type UseInfiniteScrollOptions, type UseVirtualListOptions, type User, UserMenu, type UserMenuProps, UserPreview, type UserPreviewProps, type UserStatus, VoiceRecorder, type VoiceRecorderHook, type YAxisProps, chatStore, cn, formatCurrency, formatDate, formatNumber, normalize, slugify, truncate, useActiveChat, useAsync, useBaileysSync, useBreakpoint, useChart, useChat, useChatMedia, useChatMessages, useChatPresence, useChatSearch, useChatSearchWorker, useChatStore, useClickOutside, useClipboard, useContainerQuery, useConversations, useDebounce, useDrag, useElementScroll, useFetch, useFlip, useFloating, useForm, useHistory, useIdle, useInView, useInfiniteScroll, useIntersection, useKanban, useKanbanFilters, useKanbanHistory, useKanbanKeyboard, useKanbanSync, useKanbanUndo, useKeyboardShortcuts, useLocalStorage, useMediaQuery, useMessages, useMousePosition, useOnMount, useOnUnmount, useOrientation, usePrevious, useReadReceipts, useReducedMotion, useScroll, useScrollDirection, useScrollLock, useScrollTransform, useScrollVelocity, useSearch, useSequence, useSessionStorage, useSocket, useSpring, useStagger, useTextScramble, useTheme, useThrottle, useTimer, useToast, useToggle, useTypingIndicator, useUserPresence, useViewTransition, useVirtualList, useVoiceRecorder };
2845
+ export { AIPromptInput, type AIPromptInputProps, AIResponse, type AIResponseProps, type AIResponseSource, AISummaryCard, Accordion, AccordionContent, type AccordionContentProps, AccordionItem, type AccordionItemProps, type AccordionProps, AccordionTrigger, type AccordionTriggerProps, Alert, type AlertProps, type AlertVariant, type Align, Animate, type AnimatePreset, AreaChart, type AreaChartProps, AssigneePicker, type Attachment, AudioPlayer, Avatar, Background, type BackgroundProps, Badge, type BadgeProps, BarChart, type BarChartProps, Breadcrumb, BreadcrumbEllipsis, BreadcrumbItem, BreadcrumbLink, BreadcrumbList, BreadcrumbPage, BreadcrumbSeparator, type Breakpoint, BulkActionBar, Button, type ButtonProps, Calendar, type CalendarProps, Card, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, CarouselMessage, ChartContainer, type ChartContainerProps, type ChartContextValue, type ChartDataPoint, ChartGrid, ChartSkeleton, ChartTooltip, ChartXAxis, ChartYAxis, type ChatAttachment, ChatBanner, ChatHeader, ChatInput, type ChatLabel, ChatLayout, type ChatMessage, ChatProfile, ChatSidebar, Checkbox, type CheckboxProps, Checklist, type ChecklistItem, Collapse, type CollapseProps, ColorPicker, type ColorPickerProps, type Column, ColumnLimit, Combobox, ComboboxContent, ComboboxEmpty, ComboboxInput, ComboboxItem, type ComboboxItemProps, ComboboxList, type ComboboxProps, ComboboxTrigger, Command, CommandDialog, type CommandDialogProps, CommandEmpty, CommandGroup, CommandInput, CommandItem, CommandList, CommandShortcut, ConfirmDialog, type ConfirmDialogProps, ConnectionStatusBanner, Container, type ContainerProps, type Conversation, DataTable, DatePicker, type DatePickerProps, DateSeparator, DateTimePicker, type DateTimePickerProps, Dialog, DialogDescription, DialogFooter, DialogHeader, type DialogProps, DialogTitle, Divider, type DragState, Drawer, DrawerDescription, DrawerFooter, DrawerHeader, type DrawerProps, DrawerTitle, type DropPosition, DropdownMenu, DropdownMenuContent, type DropdownMenuContentProps, DropdownMenuItem, type DropdownMenuItemProps, DropdownMenuLabel, type DropdownMenuProps, DropdownMenuSeparator, DropdownMenuTrigger, type DropdownMenuTriggerProps, DueDatePicker, type ElementScrollValues, EmojiPicker, EmptyState, type EmptyStateProps, FileDropzone, type FileDropzoneProps, type FilterOption, FormControl, FormDescription, FormItem, FormLabel, FormMessage, GlowButton, type GlowButtonProps, Grid, type GridProps, GroupHeader, type GroupInfo, type GroupMember, Heading, type HeadingProps, HeroText, type HeroTextProps, type HistoryState, Image, type ImageProps, type InteractiveButton, type InteractiveCard, type InteractiveContent, type InteractiveListSection, InteractiveMessage, KanbanBoard as Kanban, KanbanBoard, type KanbanBoardColumn, type KanbanBoardState, type KanbanBoardTask, KanbanCalendarView, type KanbanCalendarViewProps, KanbanCard, KanbanColumn, type KanbanColumnDef, KanbanFilterBar, type KanbanFilterBarProps, KanbanHeader, type KanbanHistoryEntry, type KanbanLabel, KanbanListView, type KanbanProps, KanbanQuickAdd, KanbanSwimlane, KanbanTableView, type KanbanTask, KanbanTaskModal, type KanbanTaskModalProps, KanbanTimelineView, type KanbanUser, Kbd, type KbdProps, Label, LabelPicker, type LabelProps, LetterPullup, type LetterPullupProps, LineChart, type LineChartProps, LinkPreview, Magnetic, type MagneticProps, Marquee, type MarqueeProps, MediaLightbox, MentionList, type Message, MessageBubble, MessageList, MessageSearch, type MessageStatus, type MessageType, MetricCard, type MetricCardProps, Modal, ModalDescription, ModalFooter, ModalHeader, type ModalProps, ModalTitle, Motion, MotionGroup, type MotionProps, type MousePosition, Navbar, NumberInput, type NumberInputProps, NumberTicker, type NumberTickerProps, OTPInput, type OTPInputProps, OnlineIndicator, type Orientation, PageLoader, type PageLoaderProps, PageTransition, type PageTransitionProps, Pagination, PaginationContent, PaginationEllipsis, PaginationItem, PaginationLink, PaginationNext, PaginationPrevious, Parallax, PasswordInput, type PasswordInputProps, PieChart, type PieChartProps, type PollOption, Popover, PopoverContent, type PopoverContentProps, type PopoverProps, PopoverTrigger, type PopoverTriggerProps, Presence, type PresenceStatus, PrimaryButton, Progress, type ProgressProps, type ProgressSize, type ProgressVariant, RadarChart, type RadarChartProps, type RadarDataPoint, RadioGroup, RadioGroupItem, type RadioGroupItemProps, type RadioGroupProps, Rating, type RatingProps, ReadReceipt, ReplyPreview, Reveal, type RevealProps, type SavedFilter, ScrollArea, type ScrollAreaProps, type ScrollDirection, ScrollProgress, type ScrollProgressProps, type ScrollValues, Select, type SelectOption, type SelectProps, Separator, type SeparatorProps, ShinyText, type ShinyTextProps, type ShortcutHandler, type ShortcutMap, type Side, Sidebar, SidebarContent, type SidebarContentProps, SidebarFooter, type SidebarFooterProps, SidebarGroup, type SidebarGroupProps, SidebarHeader, type SidebarHeaderProps, SidebarItem, type SidebarItemProps, type SidebarProps, Skeleton, type SkeletonProps, SkipToContent, type SkipToContentProps, Slider, type SliderProps, SmartReplySuggestions, type SortConfig, Sparkline, type SparklineProps, Spotlight, type SpotlightProps, Stack, type StackProps, StatusDot, type StatusDotProps, Stepper, type StepperProps, StickyDateHeader, type Subtask, SubtaskList, Surface, type SurfaceProps, Switch, type SwitchProps, SystemMessage, Table, TableBody, TableCell, TableHead, TableHeader, type TableProps, TableRow, type TableRowProps, Tabs, TabsContent, type TabsContentProps, TabsList, type TabsListProps, type TabsProps, TabsTrigger, type TabsTriggerProps, TagInput, type TagInputProps, TaskActivity, TaskAttachments, TaskComments, Terminal, TerminalLine, type TerminalProps, Text, TextGradient, type TextGradientProps, TextInput, type TextInputProps, TextMotion, Textarea, type TextareaProps, ThemeProvider, ThemeToggle, TimeTracker, Timeline, TimelineItem, type TimelineItemProps, Toast, ToastContext, type ToastContextType, type ToastOptions, type ToastProps, ToastProvider, type ToastVariant, ToggleGroup, type ToggleGroupProps, Tooltip, type TooltipPosition, type TooltipProps, Tree, type TreeNode, type TreeProps, TypingIndicator, type UseChatOptions, type UseClipboardOptions, type UseInViewOptions, type UseInfiniteScrollOptions, type UseVirtualListOptions, type User, UserMenu, type UserMenuProps, UserPreview, type UserPreviewProps, type UserStatus, VirtualizedMessageList, VoiceRecorder, type VoiceRecorderHook, WaveformAudio, type YAxisProps, chatStore, cn, formatCurrency, formatDate, formatNumber, normalize, slugify, truncate, useActiveChat, useAsync, useBaileysSync, useBreakpoint, useChart, useChat, useChatMedia, useChatMessages, useChatPresence, useChatSearch, useChatSearchWorker, useChatStore, useClickOutside, useClipboard, useContainerQuery, useConversations, useDebounce, useDrag, useElementScroll, useFetch, useFlip, useFloating, useForm, useHistory, useIdle, useInView, useInfiniteScroll, useIntersection, useKanban, useKanbanFilters, useKanbanHistory, useKanbanKeyboard, useKanbanSync, useKanbanUndo, useKeyboardShortcuts, useLocalStorage, useMediaQuery, useMessages, useMousePosition, useOnMount, useOnUnmount, useOrientation, usePresence, usePrevious, useReadReceipts, useReducedMotion, useScroll, useScrollDirection, useScrollLock, useScrollTransform, useScrollVelocity, useSearch, useSequence, useSessionStorage, useSocket, useSpring, useStagger, useTextScramble, useTheme, useThrottle, useTimer, useToast, useToggle, useTypingIndicator, useUserPresence, useViewTransition, useVirtualList, useVoiceRecorder };