@handled-ai/design-system 0.3.1 → 0.4.3
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.ts +187 -3
- package/dist/index.js +2127 -1162
- package/dist/index.js.map +1 -1
- package/package.json +13 -1
package/dist/index.d.ts
CHANGED
|
@@ -1,10 +1,11 @@
|
|
|
1
1
|
import { ClassValue } from 'clsx';
|
|
2
2
|
import * as React$1 from 'react';
|
|
3
|
+
import { HTMLAttributes, ComponentProps } from 'react';
|
|
3
4
|
import { Avatar as Avatar$1, Dialog as Dialog$1, DropdownMenu as DropdownMenu$1, Progress as Progress$1, ScrollArea as ScrollArea$1, Select as Select$1, Separator as Separator$1, Tooltip as Tooltip$1, Tabs as Tabs$1 } from 'radix-ui';
|
|
4
5
|
import * as class_variance_authority_types from 'class-variance-authority/types';
|
|
5
6
|
import { VariantProps } from 'class-variance-authority';
|
|
6
7
|
import * as RechartsPrimitive from 'recharts';
|
|
7
|
-
import { SortingState } from '@tanstack/react-table';
|
|
8
|
+
import { SortingState, ColumnDef } from '@tanstack/react-table';
|
|
8
9
|
import * as LabelPrimitive from '@radix-ui/react-label';
|
|
9
10
|
import { LucideIcon } from 'lucide-react';
|
|
10
11
|
|
|
@@ -1362,6 +1363,7 @@ interface InboxViewConfig {
|
|
|
1362
1363
|
filterCategories?: InboxFilterCategory[];
|
|
1363
1364
|
detailSections?: InboxDetailSections;
|
|
1364
1365
|
accountContacts?: SuggestedContact[];
|
|
1366
|
+
buildAccountContacts?: (item: QueueItem) => SuggestedContact[];
|
|
1365
1367
|
emailSignature?: string;
|
|
1366
1368
|
buildSuggestedActions?: (item: QueueItem) => SuggestedAction[];
|
|
1367
1369
|
buildSourceItems?: (item: QueueItem) => SourceDef[];
|
|
@@ -1451,6 +1453,25 @@ interface AccountsViewConfig {
|
|
|
1451
1453
|
interface WorkQueueViewConfig {
|
|
1452
1454
|
[key: string]: unknown;
|
|
1453
1455
|
}
|
|
1456
|
+
interface AdminTab {
|
|
1457
|
+
id: string;
|
|
1458
|
+
label: string;
|
|
1459
|
+
icon?: React$1.ComponentType<{
|
|
1460
|
+
className?: string;
|
|
1461
|
+
}>;
|
|
1462
|
+
content: React$1.ReactNode;
|
|
1463
|
+
}
|
|
1464
|
+
interface AdminViewConfig {
|
|
1465
|
+
/** View title displayed in the header. Defaults to "Admin". */
|
|
1466
|
+
title?: string;
|
|
1467
|
+
/** Icon displayed next to the title. */
|
|
1468
|
+
icon?: React$1.ComponentType<{
|
|
1469
|
+
className?: string;
|
|
1470
|
+
}>;
|
|
1471
|
+
tabs: AdminTab[];
|
|
1472
|
+
/** Which tab is active initially. Defaults to first tab's id. */
|
|
1473
|
+
defaultTab?: string;
|
|
1474
|
+
}
|
|
1454
1475
|
interface EntityPanelSection {
|
|
1455
1476
|
type: "details" | "contacts" | "recentActivity" | "connectedApps" | "systemActivity";
|
|
1456
1477
|
props?: Record<string, unknown>;
|
|
@@ -1467,6 +1488,7 @@ interface PrototypeConfig {
|
|
|
1467
1488
|
insights?: InsightsViewConfig;
|
|
1468
1489
|
accounts?: AccountsViewConfig;
|
|
1469
1490
|
workQueue?: WorkQueueViewConfig;
|
|
1491
|
+
admin?: AdminViewConfig;
|
|
1470
1492
|
};
|
|
1471
1493
|
defaultView: string;
|
|
1472
1494
|
entityPanel?: EntityPanelConfig;
|
|
@@ -1505,7 +1527,7 @@ interface PrototypeInboxViewProps extends InboxViewConfig {
|
|
|
1505
1527
|
onOpenRecentActivity?: () => void;
|
|
1506
1528
|
onNavigateToInbox?: () => void;
|
|
1507
1529
|
}
|
|
1508
|
-
declare function PrototypeInboxView({ items, filterCategories, detailSections, accountContacts, emailSignature, buildSuggestedActions: buildSuggestedActionsProp, buildSourceItems: buildSourceItemsProp, getSignalScore: getSignalScoreProp, getTimelineEvents, iconMap, headerActions, onOpenEntityPanel, onOpenRecentActivity, }: PrototypeInboxViewProps): React$1.JSX.Element;
|
|
1530
|
+
declare function PrototypeInboxView({ items, filterCategories, detailSections, accountContacts, buildAccountContacts, emailSignature, buildSuggestedActions: buildSuggestedActionsProp, buildSourceItems: buildSourceItemsProp, getSignalScore: getSignalScoreProp, getTimelineEvents, iconMap, headerActions, onOpenEntityPanel, onOpenRecentActivity, }: PrototypeInboxViewProps): React$1.JSX.Element;
|
|
1509
1531
|
|
|
1510
1532
|
interface PrototypeInsightsViewProps extends InsightsViewConfig {
|
|
1511
1533
|
assistantName?: string;
|
|
@@ -1520,9 +1542,171 @@ interface PrototypeAccountsViewProps extends AccountsViewConfig {
|
|
|
1520
1542
|
}
|
|
1521
1543
|
declare function PrototypeAccountsView({ filterTabs, headerActions, onRowClick, }: PrototypeAccountsViewProps): React$1.JSX.Element;
|
|
1522
1544
|
|
|
1545
|
+
interface PrototypeAdminViewProps extends AdminViewConfig {
|
|
1546
|
+
headerActions?: React$1.ReactNode;
|
|
1547
|
+
}
|
|
1548
|
+
declare function PrototypeAdminView({ title, icon: Icon, tabs, defaultTab, headerActions, }: PrototypeAdminViewProps): React$1.JSX.Element | null;
|
|
1549
|
+
|
|
1523
1550
|
interface PrototypeWorkQueueViewProps {
|
|
1524
1551
|
headerActions?: React$1.ReactNode;
|
|
1525
1552
|
}
|
|
1526
1553
|
declare function PrototypeWorkQueueView({ headerActions, }: PrototypeWorkQueueViewProps): React$1.JSX.Element;
|
|
1527
1554
|
|
|
1528
|
-
|
|
1555
|
+
type MessageProps = HTMLAttributes<HTMLDivElement> & {
|
|
1556
|
+
from: "user" | "assistant";
|
|
1557
|
+
};
|
|
1558
|
+
declare const Message: ({ className, from, ...props }: MessageProps) => React$1.JSX.Element;
|
|
1559
|
+
declare const messageContentVariants: (props?: ({
|
|
1560
|
+
variant?: "flat" | "contained" | null | undefined;
|
|
1561
|
+
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
1562
|
+
type MessageContentProps = HTMLAttributes<HTMLDivElement> & VariantProps<typeof messageContentVariants>;
|
|
1563
|
+
declare const MessageContent: ({ children, className, variant, ...props }: MessageContentProps) => React$1.JSX.Element;
|
|
1564
|
+
type MessageAvatarProps = ComponentProps<typeof Avatar> & {
|
|
1565
|
+
src?: string;
|
|
1566
|
+
name?: string;
|
|
1567
|
+
};
|
|
1568
|
+
declare const MessageAvatar: ({ src, name, className, children, ...props }: MessageAvatarProps) => React$1.JSX.Element;
|
|
1569
|
+
|
|
1570
|
+
type StatusType = "success" | "warning" | "error" | "neutral";
|
|
1571
|
+
interface StatusBadgeProps extends React$1.HTMLAttributes<HTMLDivElement> {
|
|
1572
|
+
status: string;
|
|
1573
|
+
statusMap?: Record<string, StatusType>;
|
|
1574
|
+
}
|
|
1575
|
+
declare function StatusBadge({ status, statusMap, className, ...props }: StatusBadgeProps): React$1.JSX.Element;
|
|
1576
|
+
|
|
1577
|
+
interface SimpleDataTableProps<TData> {
|
|
1578
|
+
columns: ColumnDef<TData, any>[];
|
|
1579
|
+
data: TData[];
|
|
1580
|
+
onRowClick?: (row: TData) => void;
|
|
1581
|
+
emptyIcon?: React$1.ReactNode;
|
|
1582
|
+
emptyMessage?: string;
|
|
1583
|
+
emptyDescription?: string;
|
|
1584
|
+
className?: string;
|
|
1585
|
+
}
|
|
1586
|
+
declare function SimpleDataTable<TData>({ columns, data, onRowClick, emptyIcon, emptyMessage, emptyDescription, className, }: SimpleDataTableProps<TData>): React$1.JSX.Element;
|
|
1587
|
+
|
|
1588
|
+
type AgentOrbState = null | "thinking" | "listening" | "talking";
|
|
1589
|
+
interface AgentOrbProps {
|
|
1590
|
+
state?: AgentOrbState;
|
|
1591
|
+
colors?: [string, string];
|
|
1592
|
+
volumeMode?: "auto" | "manual";
|
|
1593
|
+
manualInput?: number;
|
|
1594
|
+
manualOutput?: number;
|
|
1595
|
+
inputVolumeRef?: React.RefObject<number>;
|
|
1596
|
+
outputVolumeRef?: React.RefObject<number>;
|
|
1597
|
+
getInputVolume?: () => number;
|
|
1598
|
+
getOutputVolume?: () => number;
|
|
1599
|
+
seed?: number;
|
|
1600
|
+
showGlow?: boolean;
|
|
1601
|
+
className?: string;
|
|
1602
|
+
}
|
|
1603
|
+
/**
|
|
1604
|
+
* Full AgentOrb with optional CSS glow wrapper.
|
|
1605
|
+
* Colors default to CSS `--primary` via computed style at mount time.
|
|
1606
|
+
*/
|
|
1607
|
+
declare function AgentOrb({ state, colors, volumeMode, manualInput, manualOutput, inputVolumeRef, outputVolumeRef, getInputVolume, getOutputVolume, seed, showGlow, className, }: AgentOrbProps): React$1.JSX.Element;
|
|
1608
|
+
interface AgentOrbCanvasProps {
|
|
1609
|
+
colors?: [string, string];
|
|
1610
|
+
seed?: number;
|
|
1611
|
+
agentState?: AgentOrbState;
|
|
1612
|
+
volumeMode?: "auto" | "manual";
|
|
1613
|
+
manualInput?: number;
|
|
1614
|
+
manualOutput?: number;
|
|
1615
|
+
inputVolumeRef?: React.RefObject<number>;
|
|
1616
|
+
outputVolumeRef?: React.RefObject<number>;
|
|
1617
|
+
getInputVolume?: () => number;
|
|
1618
|
+
getOutputVolume?: () => number;
|
|
1619
|
+
className?: string;
|
|
1620
|
+
resizeDebounce?: number;
|
|
1621
|
+
}
|
|
1622
|
+
declare function AgentOrbCanvas({ colors, seed, agentState, volumeMode, manualInput, manualOutput, inputVolumeRef, outputVolumeRef, getInputVolume, getOutputVolume, className, resizeDebounce, }: AgentOrbCanvasProps): React$1.JSX.Element;
|
|
1623
|
+
|
|
1624
|
+
type AgentWidgetStatus = "idle" | "connecting" | "connected" | "error";
|
|
1625
|
+
type AgentWidgetMode = "listening" | "speaking" | null;
|
|
1626
|
+
interface AgentWidgetMessage {
|
|
1627
|
+
from: "user" | "assistant";
|
|
1628
|
+
text: string;
|
|
1629
|
+
}
|
|
1630
|
+
interface AgentWidgetProps {
|
|
1631
|
+
status?: AgentWidgetStatus;
|
|
1632
|
+
mode?: AgentWidgetMode;
|
|
1633
|
+
messages?: AgentWidgetMessage[];
|
|
1634
|
+
onSendMessage?: (text: string) => void;
|
|
1635
|
+
onEndSession?: () => void;
|
|
1636
|
+
inputMode?: "voice" | "text" | "voice+text";
|
|
1637
|
+
visualSlot?: React$1.ReactNode;
|
|
1638
|
+
assistantAvatarSlot?: React$1.ReactNode;
|
|
1639
|
+
header?: React$1.ReactNode;
|
|
1640
|
+
footer?: React$1.ReactNode;
|
|
1641
|
+
className?: string;
|
|
1642
|
+
}
|
|
1643
|
+
declare function AgentWidget({ status, mode, messages, onSendMessage, onEndSession, inputMode, visualSlot, assistantAvatarSlot, header, footer, className, }: AgentWidgetProps): React$1.JSX.Element;
|
|
1644
|
+
|
|
1645
|
+
type AgentPopoverStep = string;
|
|
1646
|
+
interface AgentPopoverContextValue {
|
|
1647
|
+
step: AgentPopoverStep;
|
|
1648
|
+
setStep: (step: AgentPopoverStep) => void;
|
|
1649
|
+
}
|
|
1650
|
+
declare function useAgentPopover(): AgentPopoverContextValue;
|
|
1651
|
+
interface AgentPopoverProps {
|
|
1652
|
+
open: boolean;
|
|
1653
|
+
onOpenChange: (open: boolean) => void;
|
|
1654
|
+
defaultStep?: string;
|
|
1655
|
+
step?: string;
|
|
1656
|
+
onStepChange?: (step: string) => void;
|
|
1657
|
+
children: React$1.ReactNode;
|
|
1658
|
+
className?: string;
|
|
1659
|
+
}
|
|
1660
|
+
declare function AgentPopover({ open, onOpenChange, defaultStep, step: controlledStep, onStepChange, children, className, }: AgentPopoverProps): React$1.JSX.Element | null;
|
|
1661
|
+
type ConnectionStatus = "ready" | "connected" | "listening" | "speaking";
|
|
1662
|
+
interface AgentPopoverBrandingProps {
|
|
1663
|
+
title?: string;
|
|
1664
|
+
subtitle?: string;
|
|
1665
|
+
badge?: string;
|
|
1666
|
+
visualSlot?: React$1.ReactNode;
|
|
1667
|
+
statusIndicator?: ConnectionStatus;
|
|
1668
|
+
className?: string;
|
|
1669
|
+
}
|
|
1670
|
+
declare function AgentPopoverBranding({ title, subtitle, badge, visualSlot, statusIndicator, className, }: AgentPopoverBrandingProps): React$1.JSX.Element;
|
|
1671
|
+
interface AgentPopoverStepContentProps {
|
|
1672
|
+
step: string;
|
|
1673
|
+
children: React$1.ReactNode;
|
|
1674
|
+
className?: string;
|
|
1675
|
+
}
|
|
1676
|
+
declare function AgentPopoverStepContent({ step, children, className }: AgentPopoverStepContentProps): React$1.JSX.Element | null;
|
|
1677
|
+
interface AgentPopoverFormField {
|
|
1678
|
+
name: string;
|
|
1679
|
+
label: string;
|
|
1680
|
+
type?: "text" | "email" | "tel" | "textarea";
|
|
1681
|
+
placeholder?: string;
|
|
1682
|
+
required?: boolean;
|
|
1683
|
+
}
|
|
1684
|
+
interface AgentPopoverFormProps {
|
|
1685
|
+
fields?: AgentPopoverFormField[];
|
|
1686
|
+
submitLabel?: string;
|
|
1687
|
+
onSubmit?: (values: Record<string, string>) => void;
|
|
1688
|
+
className?: string;
|
|
1689
|
+
children?: React$1.ReactNode;
|
|
1690
|
+
}
|
|
1691
|
+
declare function AgentPopoverForm({ fields, submitLabel, onSubmit, className, children, }: AgentPopoverFormProps): React$1.JSX.Element;
|
|
1692
|
+
interface AgentPopoverOverviewProps {
|
|
1693
|
+
userSummary?: Record<string, string>;
|
|
1694
|
+
discussionPoints?: string[];
|
|
1695
|
+
actions?: React$1.ReactNode;
|
|
1696
|
+
className?: string;
|
|
1697
|
+
}
|
|
1698
|
+
declare function AgentPopoverOverview({ userSummary, discussionPoints, actions, className, }: AgentPopoverOverviewProps): React$1.JSX.Element;
|
|
1699
|
+
interface AgentPopoverChatProps {
|
|
1700
|
+
messages?: AgentWidgetMessage[];
|
|
1701
|
+
onSendMessage?: (text: string) => void;
|
|
1702
|
+
onEndSession?: () => void;
|
|
1703
|
+
inputMode?: "voice" | "text" | "voice+text";
|
|
1704
|
+
visualSlot?: React$1.ReactNode;
|
|
1705
|
+
assistantAvatarSlot?: React$1.ReactNode;
|
|
1706
|
+
status?: AgentWidgetStatus;
|
|
1707
|
+
mode?: AgentWidgetMode;
|
|
1708
|
+
className?: string;
|
|
1709
|
+
}
|
|
1710
|
+
declare function AgentPopoverChat({ messages, onSendMessage, onEndSession, inputMode, visualSlot, assistantAvatarSlot, status, mode, className, }: AgentPopoverChatProps): React$1.JSX.Element;
|
|
1711
|
+
|
|
1712
|
+
export { type AccountFilterTab, type AccountsViewConfig, type ActiveVariant, ActivityDetail, type ActivityDetailData, type ActivityDetailProps, type ActivityItem, ActivityLog, type ActivityLogItem, type ActivityLogProps, type ActivityParticipant, ActivityRow, type ActivityThreadMessage, type AdminTab, type AdminViewConfig, AgentOrb, AgentOrbCanvas, type AgentOrbProps, type AgentOrbState, AgentPopover, AgentPopoverBranding, type AgentPopoverBrandingProps, AgentPopoverChat, type AgentPopoverChatProps, type AgentPopoverContextValue, AgentPopoverForm, type AgentPopoverFormField, type AgentPopoverFormProps, AgentPopoverOverview, type AgentPopoverOverviewProps, type AgentPopoverProps, type AgentPopoverStep, AgentPopoverStepContent, type AgentPopoverStepContentProps, AgentWidget, type AgentWidgetMessage, type AgentWidgetMode, type AgentWidgetProps, type AgentWidgetStatus, type AssigneeFilter, Avatar, AvatarBadge, AvatarFallback, AvatarGroup, AvatarGroupCount, AvatarImage, Badge, BarChartComponent, type BarChartComponentProps, type BarSeries, Button, CHART_CURSOR_STYLE, CHART_TOOLTIP_STYLE, Card, CardAction, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, type ChartConfig, ChartContainer, ChartLegend, ChartLegendContent, ChartStyle, ChartTooltip, ChartTooltipContent, type ChartTooltipEntry, CheckInsCard, Citation, ConnectedApps, type ConnectionStatus, type ContactChannel, type ContactItem, ContactList, type ContactListProps, DataTable, DataTableDisplay, type DataTableDisplayColumn, DataTableFilter, type DataTableFilterCategory, type DataTableQuickViewValue, DataTableQuickViews, DataTableToolbar, DetailViewHeader, DetailViewSummary, DetailViewThread, Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogTitle, DialogTrigger, DonutChart, type DonutChartProps, type DonutSegment, DropdownMenu, DropdownMenuCheckboxItem, DropdownMenuContent, DropdownMenuGroup, DropdownMenuItem, DropdownMenuLabel, DropdownMenuPortal, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuSeparator, DropdownMenuShortcut, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubTrigger, DropdownMenuTrigger, EntityActivityItem, EntityDetails, type EntityMetadataField, EntityMetadataGrid, EntityPanel, type EntityPanelBrandIcons, type EntityPanelConfig, EntityPanelHeader, type EntityPanelSection, EntityPanelTabs, EntitySection, type GroupedListGroup, GroupedListView, type GroupedListViewProps, type InboxDetailSections, type InboxFilterCategory, InboxGroupHeader, InboxRow, type InboxRowProps, InboxToolbar, type InboxToolbarProps, type InboxViewConfig, Input, type InsightsViewConfig, ItemList, ItemListDisplay, type ItemListDisplayState, ItemListFilter, type ItemListFilterCategory, type ItemListGrouping, type ItemListQuickView, ItemListToolbar, type ItemListViewMode, Label, Message, MessageAvatar, type MessageAvatarProps, MessageContent, type MessageContentProps, type MessageProps, MetricCard, type MetricCardData, type MetricCardProps, type MetricDataPoint, PerformanceMetricsTable, type PerformanceMetricsTableRow, type PerformanceMetricsTableSortOption, type PipelineFilterBreakdown, PipelineOverview, type PipelineOverviewProps, type PipelineStage, type PipelineStageMetrics, type PipelineStageTiming, PotentialContacts, PreviewList, PreviewListItem, type PreviewListItemProps, Progress, PrototypeAccountsView, type PrototypeAccountsViewProps, PrototypeAdminView, type PrototypeAdminViewProps, type PrototypeBrandConfig, type PrototypeConfig, PrototypeInboxView, type PrototypeInboxViewProps, PrototypeInsightsView, type PrototypeInsightsViewProps, PrototypeShell, type PrototypeShellProps, PrototypeWorkQueueView, type PrototypeWorkQueueViewProps, type QueueItem, QuickActionChatArea, QuickActionModal, type QuickActionPriority$1 as QuickActionPriority, QuickActionSidebarNav, type QuickActionSubmitPayload, type QuickActionTaskDraft, type QuickActionTemplate, RecentActivity, RecentlyCompletedCard, type RecommendedAction, RecommendedActionsSection, ReportCard, type ReportCardProps, SankeyChart, type SankeyData, type SankeyDropOff, type SankeyHoverCardData, type SankeyLink, type SankeyNode, type SankeyStageMetrics, ScoreAnalysisModal, type ScoreAnalysisModalProps, ScoreAnalysisPanel, ScoreBreakdown, type ScoreBreakdownProps, type ScoreFactor, ScoreFeedback, ScoreRing, type ScoreRingProps, ScrollArea, ScrollBar, Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, SelectTrigger, SelectValue, Separator, Sheet, SheetClose, SheetContent, SheetDescription, SheetFooter, SheetHeader, SheetTitle, SheetTrigger, Sidebar, SidebarContent, SidebarFooter, SidebarGroup, SidebarGroupAction, SidebarGroupContent, SidebarGroupLabel, SidebarHeader, SidebarInput, SidebarInset, SidebarMenu, SidebarMenuAction, SidebarMenuBadge, SidebarMenuButton, SidebarMenuItem, SidebarMenuSkeleton, SidebarMenuSub, SidebarMenuSubButton, SidebarMenuSubItem, type SidebarNavItem, type SidebarNavSection, SidebarProvider, SidebarRail, SidebarSeparator, SidebarTrigger, type SidebarUserProfile, SignalApproval, Actions as SignalApprovalActions, Gate as SignalApprovalGate, Root as SignalApprovalRoot, type SignalScoreData, SimpleChartTooltip, type SimpleChartTooltipProps, SimpleDataTable, type SimpleDataTableProps, Skeleton, type SourceDef, SourceList, StatusBadge, type StatusBadgeProps, type StatusType, type StyledBarItem, StyledBarList, type StyledBarListProps, type SuggestedAction, type SuggestedActionCallMeta, type SuggestedActionEmailMeta, type SuggestedActionFollowUp, type SuggestedActionReplyTo, type SuggestedActionThreadMessage, type SuggestedActionTicket, SuggestedActions, type SuggestedActionsIconMap, type SuggestedActionsProps, type SuggestedContact, SystemActivity, Table, TableBody, TableCaption, TableCell, TableFooter, TableHead, TableHeader, TableRow, Tabs, TabsContent, TabsList, TabsTrigger, Textarea, ThreadMessage, TimelineActivity, type TimelineActivityProps, type TimelineEvent, Tooltip, TooltipContent, TooltipProvider, TooltipTrigger, TopLineMetrics, type TopLineMetricsProps, TopTasksCard, TrendAreaChart, type TrendAreaChartProps, type TrendSeries, UpcomingMeetingsCard, type UserMenuItem, type ViewMode, ViewModeToggle, type ViewModeToggleProps, VolumeAnalysisChart, type VolumeAnalysisChartProps, type VolumeDataKey, type WorkQueueViewConfig, badgeVariants, buttonVariants, cn, getScoreColor, tabsListVariants, useAgentPopover, useIsMobile, useScoreFeedback, useSidebar, useSignalApproval };
|