@pixonui/react 0.5.22 → 0.5.26
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 +100 -1
- package/dist/index.d.ts +100 -1
- package/dist/index.js +12 -12
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +12 -12
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -1657,6 +1657,38 @@ interface AIResponseProps extends React__default.HTMLAttributes<HTMLDivElement>,
|
|
|
1657
1657
|
*/
|
|
1658
1658
|
declare const AIResponse: React__default.ForwardRefExoticComponent<AIResponseProps & React__default.RefAttributes<HTMLDivElement>>;
|
|
1659
1659
|
|
|
1660
|
+
interface AISummaryCardProps extends React__default.HTMLAttributes<HTMLDivElement> {
|
|
1661
|
+
summary: string;
|
|
1662
|
+
onRegenerate?: () => void;
|
|
1663
|
+
isLoading?: boolean;
|
|
1664
|
+
}
|
|
1665
|
+
declare function AISummaryCard({ summary, onRegenerate, isLoading, className, ...props }: AISummaryCardProps): react_jsx_runtime.JSX.Element;
|
|
1666
|
+
|
|
1667
|
+
interface SmartReplySuggestionsProps {
|
|
1668
|
+
replies: string[];
|
|
1669
|
+
onSelect: (reply: string) => void;
|
|
1670
|
+
isLoading?: boolean;
|
|
1671
|
+
}
|
|
1672
|
+
declare function SmartReplySuggestions({ replies, onSelect, isLoading }: SmartReplySuggestionsProps): react_jsx_runtime.JSX.Element;
|
|
1673
|
+
|
|
1674
|
+
interface BulkActionBarProps {
|
|
1675
|
+
isVisible: boolean;
|
|
1676
|
+
selectedCount: number;
|
|
1677
|
+
onClose: () => void;
|
|
1678
|
+
onDelete?: () => void;
|
|
1679
|
+
onForward?: () => void;
|
|
1680
|
+
onMarkRead?: () => void;
|
|
1681
|
+
onCopyAll?: () => void;
|
|
1682
|
+
}
|
|
1683
|
+
declare function BulkActionBar({ isVisible, selectedCount, onClose, onDelete, onForward, onMarkRead, onCopyAll }: BulkActionBarProps): react_jsx_runtime.JSX.Element;
|
|
1684
|
+
|
|
1685
|
+
interface ConnectionStatusBannerProps {
|
|
1686
|
+
status: 'disconnected' | 'connecting' | 'reconnecting' | 'error';
|
|
1687
|
+
onRetry?: () => void;
|
|
1688
|
+
message?: string;
|
|
1689
|
+
}
|
|
1690
|
+
declare function ConnectionStatusBanner({ status, onRetry, message }: ConnectionStatusBannerProps): react_jsx_runtime.JSX.Element;
|
|
1691
|
+
|
|
1660
1692
|
type UserStatus = 'online' | 'offline' | 'away' | 'busy';
|
|
1661
1693
|
type PresenceStatus = 'unavailable' | 'available' | 'composing' | 'recording' | 'paused';
|
|
1662
1694
|
interface User {
|
|
@@ -1670,6 +1702,7 @@ interface User {
|
|
|
1670
1702
|
phone?: string;
|
|
1671
1703
|
isOnline?: boolean;
|
|
1672
1704
|
verified?: boolean;
|
|
1705
|
+
tags?: string[];
|
|
1673
1706
|
}
|
|
1674
1707
|
type MessageType = 'text' | 'image' | 'file' | 'system' | 'audio' | 'video' | 'location' | 'contact' | 'poll' | 'sticker' | 'template' | 'interactive' | 'reaction' | 'revoked';
|
|
1675
1708
|
type MessageStatus = 'sending' | 'sent' | 'delivered' | 'read' | 'failed' | 'played';
|
|
@@ -1777,6 +1810,8 @@ interface Message {
|
|
|
1777
1810
|
forwardingScore?: number;
|
|
1778
1811
|
broadcast?: boolean;
|
|
1779
1812
|
starred?: boolean;
|
|
1813
|
+
agentName?: string;
|
|
1814
|
+
isInternalNote?: boolean;
|
|
1780
1815
|
}
|
|
1781
1816
|
interface Conversation {
|
|
1782
1817
|
id: string;
|
|
@@ -2043,6 +2078,40 @@ interface MessageSearchProps extends Omit<React__default.HTMLAttributes<HTMLDivE
|
|
|
2043
2078
|
}
|
|
2044
2079
|
declare function MessageSearch({ onSearch, results, onResultClick, onClose, className, ...props }: MessageSearchProps): react_jsx_runtime.JSX.Element;
|
|
2045
2080
|
|
|
2081
|
+
interface WaveformAudioProps extends React__default.HTMLAttributes<HTMLDivElement> {
|
|
2082
|
+
src: string;
|
|
2083
|
+
duration?: number;
|
|
2084
|
+
isMe?: boolean;
|
|
2085
|
+
bars?: number;
|
|
2086
|
+
}
|
|
2087
|
+
declare function WaveformAudio({ src, duration, isMe, bars, className, ...props }: WaveformAudioProps): react_jsx_runtime.JSX.Element;
|
|
2088
|
+
|
|
2089
|
+
interface StickyDateHeaderProps extends React__default.HTMLAttributes<HTMLDivElement> {
|
|
2090
|
+
date: string | Date;
|
|
2091
|
+
sticky?: boolean;
|
|
2092
|
+
}
|
|
2093
|
+
declare function StickyDateHeader({ date, sticky, className, ...props }: StickyDateHeaderProps): react_jsx_runtime.JSX.Element;
|
|
2094
|
+
|
|
2095
|
+
interface MediaLightboxProps {
|
|
2096
|
+
isOpen: boolean;
|
|
2097
|
+
onClose: () => void;
|
|
2098
|
+
url: string;
|
|
2099
|
+
type?: 'image' | 'video';
|
|
2100
|
+
fileName?: string;
|
|
2101
|
+
caption?: string;
|
|
2102
|
+
}
|
|
2103
|
+
declare function MediaLightbox({ isOpen, onClose, url, type, fileName, caption }: MediaLightboxProps): react_jsx_runtime.JSX.Element | null;
|
|
2104
|
+
|
|
2105
|
+
interface VirtualizedMessageListProps {
|
|
2106
|
+
messages: Message[];
|
|
2107
|
+
currentUserId: string;
|
|
2108
|
+
onReply?: (message: Message) => void;
|
|
2109
|
+
onImageClick?: (url: string) => void;
|
|
2110
|
+
className?: string;
|
|
2111
|
+
itemHeight?: number;
|
|
2112
|
+
}
|
|
2113
|
+
declare function VirtualizedMessageList({ messages, currentUserId, onReply, onImageClick, className, itemHeight }: VirtualizedMessageListProps): react_jsx_runtime.JSX.Element;
|
|
2114
|
+
|
|
2046
2115
|
interface ChatState {
|
|
2047
2116
|
conversations: Map<string, Conversation>;
|
|
2048
2117
|
messages: Map<string, Message[]>;
|
|
@@ -2187,6 +2256,29 @@ interface KbdProps extends React__default.HTMLAttributes<HTMLElement> {
|
|
|
2187
2256
|
}
|
|
2188
2257
|
declare const Kbd: React__default.ForwardRefExoticComponent<KbdProps & React__default.RefAttributes<HTMLElement>>;
|
|
2189
2258
|
|
|
2259
|
+
type AnimatePreset = 'fade' | 'fade-up' | 'fade-down' | 'scale' | 'slide-bottom' | 'slide-top';
|
|
2260
|
+
interface AnimateProps extends React__default.HTMLAttributes<HTMLDivElement> {
|
|
2261
|
+
children: React__default.ReactNode;
|
|
2262
|
+
preset?: AnimatePreset;
|
|
2263
|
+
show?: boolean;
|
|
2264
|
+
delay?: number;
|
|
2265
|
+
duration?: number;
|
|
2266
|
+
className?: string;
|
|
2267
|
+
onAnimationComplete?: () => void;
|
|
2268
|
+
}
|
|
2269
|
+
declare function Animate({ children, preset, show, delay, duration, className, onAnimationComplete, style, ...props }: AnimateProps): react_jsx_runtime.JSX.Element | null;
|
|
2270
|
+
|
|
2271
|
+
interface PresenceProps {
|
|
2272
|
+
present: boolean;
|
|
2273
|
+
children: React__default.ReactElement;
|
|
2274
|
+
exitDuration?: number;
|
|
2275
|
+
}
|
|
2276
|
+
/**
|
|
2277
|
+
* A lightweight alternative to framer-motion's AnimatePresence.
|
|
2278
|
+
* It ensures the child stays in the DOM until the exit duration completes.
|
|
2279
|
+
*/
|
|
2280
|
+
declare function Presence({ present, children, exitDuration }: PresenceProps): React__default.ReactElement<any, string | React__default.JSXElementConstructor<any>> | null;
|
|
2281
|
+
|
|
2190
2282
|
type Theme = "dark" | "light" | "system";
|
|
2191
2283
|
type ThemeProviderProps = {
|
|
2192
2284
|
children: React__default.ReactNode;
|
|
@@ -2707,6 +2799,13 @@ interface VoiceRecorderHook {
|
|
|
2707
2799
|
}
|
|
2708
2800
|
declare function useVoiceRecorder(): VoiceRecorderHook;
|
|
2709
2801
|
|
|
2802
|
+
/**
|
|
2803
|
+
* Hook to manage the presence of a component for unmounting animations.
|
|
2804
|
+
* @param isVisible Whether the component should be visible
|
|
2805
|
+
* @param exitDuration Duration of the exit animation in ms
|
|
2806
|
+
*/
|
|
2807
|
+
declare function usePresence(isVisible: boolean, exitDuration?: number): boolean;
|
|
2808
|
+
|
|
2710
2809
|
declare function cn(...inputs: ClassValue[]): string;
|
|
2711
2810
|
|
|
2712
2811
|
/**
|
|
@@ -2731,4 +2830,4 @@ declare function truncate(str: string, length: number): string;
|
|
|
2731
2830
|
*/
|
|
2732
2831
|
declare function slugify(str: string): string;
|
|
2733
2832
|
|
|
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 };
|
|
2833
|
+
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
|
@@ -1657,6 +1657,38 @@ interface AIResponseProps extends React__default.HTMLAttributes<HTMLDivElement>,
|
|
|
1657
1657
|
*/
|
|
1658
1658
|
declare const AIResponse: React__default.ForwardRefExoticComponent<AIResponseProps & React__default.RefAttributes<HTMLDivElement>>;
|
|
1659
1659
|
|
|
1660
|
+
interface AISummaryCardProps extends React__default.HTMLAttributes<HTMLDivElement> {
|
|
1661
|
+
summary: string;
|
|
1662
|
+
onRegenerate?: () => void;
|
|
1663
|
+
isLoading?: boolean;
|
|
1664
|
+
}
|
|
1665
|
+
declare function AISummaryCard({ summary, onRegenerate, isLoading, className, ...props }: AISummaryCardProps): react_jsx_runtime.JSX.Element;
|
|
1666
|
+
|
|
1667
|
+
interface SmartReplySuggestionsProps {
|
|
1668
|
+
replies: string[];
|
|
1669
|
+
onSelect: (reply: string) => void;
|
|
1670
|
+
isLoading?: boolean;
|
|
1671
|
+
}
|
|
1672
|
+
declare function SmartReplySuggestions({ replies, onSelect, isLoading }: SmartReplySuggestionsProps): react_jsx_runtime.JSX.Element;
|
|
1673
|
+
|
|
1674
|
+
interface BulkActionBarProps {
|
|
1675
|
+
isVisible: boolean;
|
|
1676
|
+
selectedCount: number;
|
|
1677
|
+
onClose: () => void;
|
|
1678
|
+
onDelete?: () => void;
|
|
1679
|
+
onForward?: () => void;
|
|
1680
|
+
onMarkRead?: () => void;
|
|
1681
|
+
onCopyAll?: () => void;
|
|
1682
|
+
}
|
|
1683
|
+
declare function BulkActionBar({ isVisible, selectedCount, onClose, onDelete, onForward, onMarkRead, onCopyAll }: BulkActionBarProps): react_jsx_runtime.JSX.Element;
|
|
1684
|
+
|
|
1685
|
+
interface ConnectionStatusBannerProps {
|
|
1686
|
+
status: 'disconnected' | 'connecting' | 'reconnecting' | 'error';
|
|
1687
|
+
onRetry?: () => void;
|
|
1688
|
+
message?: string;
|
|
1689
|
+
}
|
|
1690
|
+
declare function ConnectionStatusBanner({ status, onRetry, message }: ConnectionStatusBannerProps): react_jsx_runtime.JSX.Element;
|
|
1691
|
+
|
|
1660
1692
|
type UserStatus = 'online' | 'offline' | 'away' | 'busy';
|
|
1661
1693
|
type PresenceStatus = 'unavailable' | 'available' | 'composing' | 'recording' | 'paused';
|
|
1662
1694
|
interface User {
|
|
@@ -1670,6 +1702,7 @@ interface User {
|
|
|
1670
1702
|
phone?: string;
|
|
1671
1703
|
isOnline?: boolean;
|
|
1672
1704
|
verified?: boolean;
|
|
1705
|
+
tags?: string[];
|
|
1673
1706
|
}
|
|
1674
1707
|
type MessageType = 'text' | 'image' | 'file' | 'system' | 'audio' | 'video' | 'location' | 'contact' | 'poll' | 'sticker' | 'template' | 'interactive' | 'reaction' | 'revoked';
|
|
1675
1708
|
type MessageStatus = 'sending' | 'sent' | 'delivered' | 'read' | 'failed' | 'played';
|
|
@@ -1777,6 +1810,8 @@ interface Message {
|
|
|
1777
1810
|
forwardingScore?: number;
|
|
1778
1811
|
broadcast?: boolean;
|
|
1779
1812
|
starred?: boolean;
|
|
1813
|
+
agentName?: string;
|
|
1814
|
+
isInternalNote?: boolean;
|
|
1780
1815
|
}
|
|
1781
1816
|
interface Conversation {
|
|
1782
1817
|
id: string;
|
|
@@ -2043,6 +2078,40 @@ interface MessageSearchProps extends Omit<React__default.HTMLAttributes<HTMLDivE
|
|
|
2043
2078
|
}
|
|
2044
2079
|
declare function MessageSearch({ onSearch, results, onResultClick, onClose, className, ...props }: MessageSearchProps): react_jsx_runtime.JSX.Element;
|
|
2045
2080
|
|
|
2081
|
+
interface WaveformAudioProps extends React__default.HTMLAttributes<HTMLDivElement> {
|
|
2082
|
+
src: string;
|
|
2083
|
+
duration?: number;
|
|
2084
|
+
isMe?: boolean;
|
|
2085
|
+
bars?: number;
|
|
2086
|
+
}
|
|
2087
|
+
declare function WaveformAudio({ src, duration, isMe, bars, className, ...props }: WaveformAudioProps): react_jsx_runtime.JSX.Element;
|
|
2088
|
+
|
|
2089
|
+
interface StickyDateHeaderProps extends React__default.HTMLAttributes<HTMLDivElement> {
|
|
2090
|
+
date: string | Date;
|
|
2091
|
+
sticky?: boolean;
|
|
2092
|
+
}
|
|
2093
|
+
declare function StickyDateHeader({ date, sticky, className, ...props }: StickyDateHeaderProps): react_jsx_runtime.JSX.Element;
|
|
2094
|
+
|
|
2095
|
+
interface MediaLightboxProps {
|
|
2096
|
+
isOpen: boolean;
|
|
2097
|
+
onClose: () => void;
|
|
2098
|
+
url: string;
|
|
2099
|
+
type?: 'image' | 'video';
|
|
2100
|
+
fileName?: string;
|
|
2101
|
+
caption?: string;
|
|
2102
|
+
}
|
|
2103
|
+
declare function MediaLightbox({ isOpen, onClose, url, type, fileName, caption }: MediaLightboxProps): react_jsx_runtime.JSX.Element | null;
|
|
2104
|
+
|
|
2105
|
+
interface VirtualizedMessageListProps {
|
|
2106
|
+
messages: Message[];
|
|
2107
|
+
currentUserId: string;
|
|
2108
|
+
onReply?: (message: Message) => void;
|
|
2109
|
+
onImageClick?: (url: string) => void;
|
|
2110
|
+
className?: string;
|
|
2111
|
+
itemHeight?: number;
|
|
2112
|
+
}
|
|
2113
|
+
declare function VirtualizedMessageList({ messages, currentUserId, onReply, onImageClick, className, itemHeight }: VirtualizedMessageListProps): react_jsx_runtime.JSX.Element;
|
|
2114
|
+
|
|
2046
2115
|
interface ChatState {
|
|
2047
2116
|
conversations: Map<string, Conversation>;
|
|
2048
2117
|
messages: Map<string, Message[]>;
|
|
@@ -2187,6 +2256,29 @@ interface KbdProps extends React__default.HTMLAttributes<HTMLElement> {
|
|
|
2187
2256
|
}
|
|
2188
2257
|
declare const Kbd: React__default.ForwardRefExoticComponent<KbdProps & React__default.RefAttributes<HTMLElement>>;
|
|
2189
2258
|
|
|
2259
|
+
type AnimatePreset = 'fade' | 'fade-up' | 'fade-down' | 'scale' | 'slide-bottom' | 'slide-top';
|
|
2260
|
+
interface AnimateProps extends React__default.HTMLAttributes<HTMLDivElement> {
|
|
2261
|
+
children: React__default.ReactNode;
|
|
2262
|
+
preset?: AnimatePreset;
|
|
2263
|
+
show?: boolean;
|
|
2264
|
+
delay?: number;
|
|
2265
|
+
duration?: number;
|
|
2266
|
+
className?: string;
|
|
2267
|
+
onAnimationComplete?: () => void;
|
|
2268
|
+
}
|
|
2269
|
+
declare function Animate({ children, preset, show, delay, duration, className, onAnimationComplete, style, ...props }: AnimateProps): react_jsx_runtime.JSX.Element | null;
|
|
2270
|
+
|
|
2271
|
+
interface PresenceProps {
|
|
2272
|
+
present: boolean;
|
|
2273
|
+
children: React__default.ReactElement;
|
|
2274
|
+
exitDuration?: number;
|
|
2275
|
+
}
|
|
2276
|
+
/**
|
|
2277
|
+
* A lightweight alternative to framer-motion's AnimatePresence.
|
|
2278
|
+
* It ensures the child stays in the DOM until the exit duration completes.
|
|
2279
|
+
*/
|
|
2280
|
+
declare function Presence({ present, children, exitDuration }: PresenceProps): React__default.ReactElement<any, string | React__default.JSXElementConstructor<any>> | null;
|
|
2281
|
+
|
|
2190
2282
|
type Theme = "dark" | "light" | "system";
|
|
2191
2283
|
type ThemeProviderProps = {
|
|
2192
2284
|
children: React__default.ReactNode;
|
|
@@ -2707,6 +2799,13 @@ interface VoiceRecorderHook {
|
|
|
2707
2799
|
}
|
|
2708
2800
|
declare function useVoiceRecorder(): VoiceRecorderHook;
|
|
2709
2801
|
|
|
2802
|
+
/**
|
|
2803
|
+
* Hook to manage the presence of a component for unmounting animations.
|
|
2804
|
+
* @param isVisible Whether the component should be visible
|
|
2805
|
+
* @param exitDuration Duration of the exit animation in ms
|
|
2806
|
+
*/
|
|
2807
|
+
declare function usePresence(isVisible: boolean, exitDuration?: number): boolean;
|
|
2808
|
+
|
|
2710
2809
|
declare function cn(...inputs: ClassValue[]): string;
|
|
2711
2810
|
|
|
2712
2811
|
/**
|
|
@@ -2731,4 +2830,4 @@ declare function truncate(str: string, length: number): string;
|
|
|
2731
2830
|
*/
|
|
2732
2831
|
declare function slugify(str: string): string;
|
|
2733
2832
|
|
|
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 };
|
|
2833
|
+
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 };
|