@handled-ai/design-system 0.5.1 → 0.6.0
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 +66 -23
- package/dist/index.js +122 -52
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -240,6 +240,21 @@ declare function UpcomingMeetingsCard(): React$1.JSX.Element;
|
|
|
240
240
|
declare function RecentlyCompletedCard(): React$1.JSX.Element;
|
|
241
241
|
declare function CheckInsCard(): React$1.JSX.Element;
|
|
242
242
|
|
|
243
|
+
interface DataTableFilterCategory {
|
|
244
|
+
id: string;
|
|
245
|
+
label: string;
|
|
246
|
+
icon: React$1.ComponentType<{
|
|
247
|
+
className?: string;
|
|
248
|
+
}>;
|
|
249
|
+
options: string[];
|
|
250
|
+
}
|
|
251
|
+
interface DataTableFilterProps {
|
|
252
|
+
categories: DataTableFilterCategory[];
|
|
253
|
+
selectedFilters: Record<string, string[]>;
|
|
254
|
+
onToggleFilter: (categoryId: string, option: string) => void;
|
|
255
|
+
}
|
|
256
|
+
declare function DataTableFilter({ categories, selectedFilters, onToggleFilter, }: DataTableFilterProps): React$1.JSX.Element;
|
|
257
|
+
|
|
243
258
|
type DataRow = {
|
|
244
259
|
id: string;
|
|
245
260
|
name: string;
|
|
@@ -258,9 +273,22 @@ type DataRow = {
|
|
|
258
273
|
opportunityCount: number;
|
|
259
274
|
productAdoptionScore: number;
|
|
260
275
|
};
|
|
261
|
-
|
|
276
|
+
interface DataTableProps {
|
|
262
277
|
onRowClick?: (row: DataRow) => void;
|
|
263
|
-
|
|
278
|
+
rows?: DataRow[];
|
|
279
|
+
filterCategories?: DataTableFilterCategory[];
|
|
280
|
+
quickViews?: string[];
|
|
281
|
+
moreQuickViews?: string[];
|
|
282
|
+
quickViewFilters?: Record<string, (row: DataRow) => boolean>;
|
|
283
|
+
iconMap?: {
|
|
284
|
+
salesforce?: string;
|
|
285
|
+
};
|
|
286
|
+
entityUrlBuilder?: (row: DataRow) => string;
|
|
287
|
+
onScoreFactorFeedback?: (account: string, scoreType: string, factorKey: string, type: "up" | "down" | null, detail?: string) => void;
|
|
288
|
+
onScoreApproveFeedback?: (account: string, scoreType: string, reasons: string[], detail: string) => void;
|
|
289
|
+
onScoreDismissFeedback?: (account: string, scoreType: string, reasons: string[], detail: string) => void;
|
|
290
|
+
}
|
|
291
|
+
declare function DataTable({ onRowClick, rows: rowsProp, filterCategories: filterCategoriesProp, quickViews: quickViewsProp, moreQuickViews: moreQuickViewsProp, quickViewFilters: quickViewFiltersProp, iconMap, entityUrlBuilder, onScoreFactorFeedback, onScoreApproveFeedback, onScoreDismissFeedback, }?: DataTableProps): React$1.JSX.Element;
|
|
264
292
|
|
|
265
293
|
interface DataTableDisplayColumn {
|
|
266
294
|
id: string;
|
|
@@ -277,21 +305,6 @@ interface DataTableDisplayProps {
|
|
|
277
305
|
}
|
|
278
306
|
declare function DataTableDisplay({ sorting, onSortingChange, columns, onToggleColumn, onReset, }: DataTableDisplayProps): React$1.JSX.Element;
|
|
279
307
|
|
|
280
|
-
interface DataTableFilterCategory {
|
|
281
|
-
id: string;
|
|
282
|
-
label: string;
|
|
283
|
-
icon: React$1.ComponentType<{
|
|
284
|
-
className?: string;
|
|
285
|
-
}>;
|
|
286
|
-
options: string[];
|
|
287
|
-
}
|
|
288
|
-
interface DataTableFilterProps {
|
|
289
|
-
categories: DataTableFilterCategory[];
|
|
290
|
-
selectedFilters: Record<string, string[]>;
|
|
291
|
-
onToggleFilter: (categoryId: string, option: string) => void;
|
|
292
|
-
}
|
|
293
|
-
declare function DataTableFilter({ categories, selectedFilters, onToggleFilter, }: DataTableFilterProps): React$1.JSX.Element;
|
|
294
|
-
|
|
295
308
|
type DataTableQuickViewValue = string | null;
|
|
296
309
|
interface DataTableQuickViewsProps {
|
|
297
310
|
quickViews: string[];
|
|
@@ -446,11 +459,12 @@ declare function EntityPanel({ isOpen, onClose, children, }: {
|
|
|
446
459
|
onClose: (open: boolean) => void;
|
|
447
460
|
children?: React$1.ReactNode;
|
|
448
461
|
}): React$1.JSX.Element;
|
|
449
|
-
declare function EntityPanelHeader({ icon, title, badgeLabel, subtitle, }: {
|
|
462
|
+
declare function EntityPanelHeader({ icon, title, badgeLabel, subtitle, headerAction, }: {
|
|
450
463
|
icon?: React$1.ReactNode;
|
|
451
464
|
title: string;
|
|
452
465
|
badgeLabel?: string;
|
|
453
466
|
subtitle?: string;
|
|
467
|
+
headerAction?: React$1.ReactNode;
|
|
454
468
|
}): React$1.JSX.Element;
|
|
455
469
|
declare function EntityPanelTabs({ tabs, activeTab, onTabChange, }: {
|
|
456
470
|
tabs: {
|
|
@@ -856,6 +870,8 @@ type ActiveVariant = "default" | "gradient";
|
|
|
856
870
|
interface QuickActionSidebarNavProps extends React$1.ComponentProps<"aside"> {
|
|
857
871
|
brandLabel?: string;
|
|
858
872
|
brandSubtitle?: string;
|
|
873
|
+
brandImage?: string;
|
|
874
|
+
hideQuickAction?: boolean;
|
|
859
875
|
navSections?: SidebarNavSection[];
|
|
860
876
|
activeItemId?: string;
|
|
861
877
|
activeVariant?: ActiveVariant;
|
|
@@ -866,7 +882,7 @@ interface QuickActionSidebarNavProps extends React$1.ComponentProps<"aside"> {
|
|
|
866
882
|
onCreateTask?: (draft: QuickActionTaskDraft) => void;
|
|
867
883
|
defaultCollapsed?: boolean;
|
|
868
884
|
}
|
|
869
|
-
declare function QuickActionSidebarNav({ className, brandLabel, brandSubtitle, navSections, activeItemId, activeVariant, onNavigate, user, userMenuItems, onUserMenuAction, onCreateTask, defaultCollapsed, ...props }: QuickActionSidebarNavProps): React$1.JSX.Element;
|
|
885
|
+
declare function QuickActionSidebarNav({ className, brandLabel, brandSubtitle, brandImage, hideQuickAction, navSections, activeItemId, activeVariant, onNavigate, user, userMenuItems, onUserMenuAction, onCreateTask, defaultCollapsed, ...props }: QuickActionSidebarNavProps): React$1.JSX.Element;
|
|
870
886
|
|
|
871
887
|
interface RecommendedAction {
|
|
872
888
|
id: string;
|
|
@@ -1391,6 +1407,9 @@ interface SignalScoreData {
|
|
|
1391
1407
|
whyNow: string;
|
|
1392
1408
|
evidence: string[];
|
|
1393
1409
|
confidence: number;
|
|
1410
|
+
onFactorFeedback?: (factorKey: string, type: "up" | "down" | null, detail?: string) => void;
|
|
1411
|
+
onApproveFeedback?: (reasons: string[], detail: string) => void;
|
|
1412
|
+
onDismissFeedback?: (reasons: string[], detail: string) => void;
|
|
1394
1413
|
}
|
|
1395
1414
|
interface InboxDetailSections {
|
|
1396
1415
|
signalBrief?: boolean;
|
|
@@ -1409,8 +1428,20 @@ interface InboxViewConfig {
|
|
|
1409
1428
|
getSignalScore?: (company: string) => SignalScoreData;
|
|
1410
1429
|
getTimelineEvents?: (item: QueueItem) => TimelineEvent[];
|
|
1411
1430
|
iconMap?: Record<string, string>;
|
|
1431
|
+
hideToolbarActions?: boolean;
|
|
1432
|
+
hideHoverActions?: boolean;
|
|
1433
|
+
onSuggestedActionFeedback?: (actionId: number | string, feedback: string, actionTitle?: string) => void;
|
|
1434
|
+
}
|
|
1435
|
+
interface InsightsCustomTab {
|
|
1436
|
+
id: string;
|
|
1437
|
+
label: string;
|
|
1438
|
+
icon?: React$1.ComponentType<{
|
|
1439
|
+
className?: string;
|
|
1440
|
+
}>;
|
|
1441
|
+
content: React$1.ReactNode;
|
|
1412
1442
|
}
|
|
1413
1443
|
interface InsightsViewConfig {
|
|
1444
|
+
customTabs?: InsightsCustomTab[];
|
|
1414
1445
|
tabs?: {
|
|
1415
1446
|
overview?: boolean;
|
|
1416
1447
|
analytics?: boolean;
|
|
@@ -1488,6 +1519,18 @@ interface AccountFilterTab {
|
|
|
1488
1519
|
}
|
|
1489
1520
|
interface AccountsViewConfig {
|
|
1490
1521
|
filterTabs?: AccountFilterTab[];
|
|
1522
|
+
rows?: DataRow[];
|
|
1523
|
+
filterCategories?: DataTableFilterCategory[];
|
|
1524
|
+
quickViews?: string[];
|
|
1525
|
+
moreQuickViews?: string[];
|
|
1526
|
+
quickViewFilters?: Record<string, (row: DataRow) => boolean>;
|
|
1527
|
+
iconMap?: {
|
|
1528
|
+
salesforce?: string;
|
|
1529
|
+
};
|
|
1530
|
+
entityUrlBuilder?: (row: DataRow) => string;
|
|
1531
|
+
onScoreFactorFeedback?: (account: string, scoreType: string, factorKey: string, type: "up" | "down" | null, detail?: string) => void;
|
|
1532
|
+
onScoreApproveFeedback?: (account: string, scoreType: string, reasons: string[], detail: string) => void;
|
|
1533
|
+
onScoreDismissFeedback?: (account: string, scoreType: string, reasons: string[], detail: string) => void;
|
|
1491
1534
|
}
|
|
1492
1535
|
interface WorkQueueViewConfig {
|
|
1493
1536
|
[key: string]: unknown;
|
|
@@ -1566,20 +1609,20 @@ interface PrototypeInboxViewProps extends InboxViewConfig {
|
|
|
1566
1609
|
onOpenRecentActivity?: () => void;
|
|
1567
1610
|
onNavigateToInbox?: () => void;
|
|
1568
1611
|
}
|
|
1569
|
-
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;
|
|
1612
|
+
declare function PrototypeInboxView({ items, filterCategories, detailSections, accountContacts, buildAccountContacts, emailSignature, buildSuggestedActions: buildSuggestedActionsProp, buildSourceItems: buildSourceItemsProp, getSignalScore: getSignalScoreProp, getTimelineEvents, iconMap, hideToolbarActions, hideHoverActions, onSuggestedActionFeedback, headerActions, onOpenEntityPanel, onOpenRecentActivity, }: PrototypeInboxViewProps): React$1.JSX.Element;
|
|
1570
1613
|
|
|
1571
1614
|
interface PrototypeInsightsViewProps extends InsightsViewConfig {
|
|
1572
1615
|
assistantName?: string;
|
|
1573
1616
|
headerActions?: React$1.ReactNode;
|
|
1574
1617
|
onNavigateToInbox?: () => void;
|
|
1575
1618
|
}
|
|
1576
|
-
declare function PrototypeInsightsView({ tabs, coaching, metrics, expandedMetrics, dashboardCards, analytics, assistantName, headerActions, onNavigateToInbox, }: PrototypeInsightsViewProps): React$1.JSX.Element;
|
|
1619
|
+
declare function PrototypeInsightsView({ tabs, coaching, metrics, expandedMetrics, dashboardCards, analytics, assistantName, headerActions, onNavigateToInbox, customTabs, }: PrototypeInsightsViewProps): React$1.JSX.Element;
|
|
1577
1620
|
|
|
1578
1621
|
interface PrototypeAccountsViewProps extends AccountsViewConfig {
|
|
1579
1622
|
headerActions?: React$1.ReactNode;
|
|
1580
1623
|
onRowClick?: () => void;
|
|
1581
1624
|
}
|
|
1582
|
-
declare function PrototypeAccountsView({ filterTabs, headerActions, onRowClick, }: PrototypeAccountsViewProps): React$1.JSX.Element;
|
|
1625
|
+
declare function PrototypeAccountsView({ filterTabs, headerActions, onRowClick, rows, filterCategories, quickViews, moreQuickViews, quickViewFilters, iconMap, entityUrlBuilder, onScoreFactorFeedback, onScoreApproveFeedback, onScoreDismissFeedback, }: PrototypeAccountsViewProps): React$1.JSX.Element;
|
|
1583
1626
|
|
|
1584
1627
|
interface PrototypeAdminViewProps extends AdminViewConfig {
|
|
1585
1628
|
headerActions?: React$1.ReactNode;
|
|
@@ -1748,4 +1791,4 @@ interface AgentPopoverChatProps {
|
|
|
1748
1791
|
}
|
|
1749
1792
|
declare function AgentPopoverChat({ messages, onSendMessage, onEndSession, inputMode, visualSlot, assistantAvatarSlot, status, mode, className, }: AgentPopoverChatProps): React$1.JSX.Element;
|
|
1750
1793
|
|
|
1751
|
-
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 FilterDefinition, type GroupedListGroup, GroupedListView, type GroupedListViewProps, type InboxDetailSections, type InboxFilterCategory, InboxGroupHeader, InboxRow, type InboxRowProps, InboxToolbar, type InboxToolbarProps, type InboxViewConfig, Input, InsightsFilterBar, type InsightsFilterBarProps, 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 };
|
|
1794
|
+
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, type DataRow, DataTable, DataTableDisplay, type DataTableDisplayColumn, DataTableFilter, type DataTableFilterCategory, type DataTableProps, 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 FilterDefinition, type GroupedListGroup, GroupedListView, type GroupedListViewProps, type InboxDetailSections, type InboxFilterCategory, InboxGroupHeader, InboxRow, type InboxRowProps, InboxToolbar, type InboxToolbarProps, type InboxViewConfig, Input, type InsightsCustomTab, InsightsFilterBar, type InsightsFilterBarProps, 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 };
|