@pixonui/react 0.5.21 → 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 +104 -3
- package/dist/index.d.ts +104 -3
- 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;
|
|
@@ -1869,6 +1904,7 @@ interface MessageListProps extends Omit<React__default.HTMLAttributes<HTMLDivEle
|
|
|
1869
1904
|
onSelect?: (message: Message) => void;
|
|
1870
1905
|
onAction?: (message: Message, action: any) => void;
|
|
1871
1906
|
onImageClick?: (url: string) => void;
|
|
1907
|
+
onTTS?: (message: Message) => void;
|
|
1872
1908
|
onLoadMore?: () => void;
|
|
1873
1909
|
hasMore?: boolean;
|
|
1874
1910
|
isLoadingMore?: boolean;
|
|
@@ -1876,7 +1912,7 @@ interface MessageListProps extends Omit<React__default.HTMLAttributes<HTMLDivEle
|
|
|
1876
1912
|
dateFormat?: string;
|
|
1877
1913
|
groupByDate?: boolean;
|
|
1878
1914
|
}
|
|
1879
|
-
declare function MessageList({ messages, currentUserId, className, onReply, onReact, onDelete, onEdit, onForward, onCopy, onPin, onStar, onSelect, onAction, onImageClick, onLoadMore, hasMore, isLoadingMore, selectedMessages, dateFormat, groupByDate, ...props }: MessageListProps): react_jsx_runtime.JSX.Element;
|
|
1915
|
+
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;
|
|
1880
1916
|
|
|
1881
1917
|
interface MessageBubbleProps {
|
|
1882
1918
|
message: Message;
|
|
@@ -1895,9 +1931,10 @@ interface MessageBubbleProps {
|
|
|
1895
1931
|
onSelect?: () => void;
|
|
1896
1932
|
onAction?: (action: any) => void;
|
|
1897
1933
|
onImageClick?: (url: string) => void;
|
|
1934
|
+
onTTS?: () => void;
|
|
1898
1935
|
isSelected?: boolean;
|
|
1899
1936
|
}
|
|
1900
|
-
declare function MessageBubble({ message, isOwn, showAvatar, showStatus, className, onReply, onReact, onDelete, onEdit, onForward, onCopy, onPin, onStar, onSelect, onAction, onImageClick, isSelected }: MessageBubbleProps): react_jsx_runtime.JSX.Element;
|
|
1937
|
+
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;
|
|
1901
1938
|
|
|
1902
1939
|
interface ChatInputProps extends Omit<React__default.HTMLAttributes<HTMLDivElement>, 'onSelect' | 'onChange'> {
|
|
1903
1940
|
value?: string;
|
|
@@ -2041,6 +2078,40 @@ interface MessageSearchProps extends Omit<React__default.HTMLAttributes<HTMLDivE
|
|
|
2041
2078
|
}
|
|
2042
2079
|
declare function MessageSearch({ onSearch, results, onResultClick, onClose, className, ...props }: MessageSearchProps): react_jsx_runtime.JSX.Element;
|
|
2043
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
|
+
|
|
2044
2115
|
interface ChatState {
|
|
2045
2116
|
conversations: Map<string, Conversation>;
|
|
2046
2117
|
messages: Map<string, Message[]>;
|
|
@@ -2185,6 +2256,29 @@ interface KbdProps extends React__default.HTMLAttributes<HTMLElement> {
|
|
|
2185
2256
|
}
|
|
2186
2257
|
declare const Kbd: React__default.ForwardRefExoticComponent<KbdProps & React__default.RefAttributes<HTMLElement>>;
|
|
2187
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
|
+
|
|
2188
2282
|
type Theme = "dark" | "light" | "system";
|
|
2189
2283
|
type ThemeProviderProps = {
|
|
2190
2284
|
children: React__default.ReactNode;
|
|
@@ -2705,6 +2799,13 @@ interface VoiceRecorderHook {
|
|
|
2705
2799
|
}
|
|
2706
2800
|
declare function useVoiceRecorder(): VoiceRecorderHook;
|
|
2707
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
|
+
|
|
2708
2809
|
declare function cn(...inputs: ClassValue[]): string;
|
|
2709
2810
|
|
|
2710
2811
|
/**
|
|
@@ -2729,4 +2830,4 @@ declare function truncate(str: string, length: number): string;
|
|
|
2729
2830
|
*/
|
|
2730
2831
|
declare function slugify(str: string): string;
|
|
2731
2832
|
|
|
2732
|
-
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;
|
|
@@ -1869,6 +1904,7 @@ interface MessageListProps extends Omit<React__default.HTMLAttributes<HTMLDivEle
|
|
|
1869
1904
|
onSelect?: (message: Message) => void;
|
|
1870
1905
|
onAction?: (message: Message, action: any) => void;
|
|
1871
1906
|
onImageClick?: (url: string) => void;
|
|
1907
|
+
onTTS?: (message: Message) => void;
|
|
1872
1908
|
onLoadMore?: () => void;
|
|
1873
1909
|
hasMore?: boolean;
|
|
1874
1910
|
isLoadingMore?: boolean;
|
|
@@ -1876,7 +1912,7 @@ interface MessageListProps extends Omit<React__default.HTMLAttributes<HTMLDivEle
|
|
|
1876
1912
|
dateFormat?: string;
|
|
1877
1913
|
groupByDate?: boolean;
|
|
1878
1914
|
}
|
|
1879
|
-
declare function MessageList({ messages, currentUserId, className, onReply, onReact, onDelete, onEdit, onForward, onCopy, onPin, onStar, onSelect, onAction, onImageClick, onLoadMore, hasMore, isLoadingMore, selectedMessages, dateFormat, groupByDate, ...props }: MessageListProps): react_jsx_runtime.JSX.Element;
|
|
1915
|
+
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;
|
|
1880
1916
|
|
|
1881
1917
|
interface MessageBubbleProps {
|
|
1882
1918
|
message: Message;
|
|
@@ -1895,9 +1931,10 @@ interface MessageBubbleProps {
|
|
|
1895
1931
|
onSelect?: () => void;
|
|
1896
1932
|
onAction?: (action: any) => void;
|
|
1897
1933
|
onImageClick?: (url: string) => void;
|
|
1934
|
+
onTTS?: () => void;
|
|
1898
1935
|
isSelected?: boolean;
|
|
1899
1936
|
}
|
|
1900
|
-
declare function MessageBubble({ message, isOwn, showAvatar, showStatus, className, onReply, onReact, onDelete, onEdit, onForward, onCopy, onPin, onStar, onSelect, onAction, onImageClick, isSelected }: MessageBubbleProps): react_jsx_runtime.JSX.Element;
|
|
1937
|
+
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;
|
|
1901
1938
|
|
|
1902
1939
|
interface ChatInputProps extends Omit<React__default.HTMLAttributes<HTMLDivElement>, 'onSelect' | 'onChange'> {
|
|
1903
1940
|
value?: string;
|
|
@@ -2041,6 +2078,40 @@ interface MessageSearchProps extends Omit<React__default.HTMLAttributes<HTMLDivE
|
|
|
2041
2078
|
}
|
|
2042
2079
|
declare function MessageSearch({ onSearch, results, onResultClick, onClose, className, ...props }: MessageSearchProps): react_jsx_runtime.JSX.Element;
|
|
2043
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
|
+
|
|
2044
2115
|
interface ChatState {
|
|
2045
2116
|
conversations: Map<string, Conversation>;
|
|
2046
2117
|
messages: Map<string, Message[]>;
|
|
@@ -2185,6 +2256,29 @@ interface KbdProps extends React__default.HTMLAttributes<HTMLElement> {
|
|
|
2185
2256
|
}
|
|
2186
2257
|
declare const Kbd: React__default.ForwardRefExoticComponent<KbdProps & React__default.RefAttributes<HTMLElement>>;
|
|
2187
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
|
+
|
|
2188
2282
|
type Theme = "dark" | "light" | "system";
|
|
2189
2283
|
type ThemeProviderProps = {
|
|
2190
2284
|
children: React__default.ReactNode;
|
|
@@ -2705,6 +2799,13 @@ interface VoiceRecorderHook {
|
|
|
2705
2799
|
}
|
|
2706
2800
|
declare function useVoiceRecorder(): VoiceRecorderHook;
|
|
2707
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
|
+
|
|
2708
2809
|
declare function cn(...inputs: ClassValue[]): string;
|
|
2709
2810
|
|
|
2710
2811
|
/**
|
|
@@ -2729,4 +2830,4 @@ declare function truncate(str: string, length: number): string;
|
|
|
2729
2830
|
*/
|
|
2730
2831
|
declare function slugify(str: string): string;
|
|
2731
2832
|
|
|
2732
|
-
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 };
|