@handled-ai/design-system 0.6.0 → 0.7.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 +400 -317
- package/dist/index.js +1619 -1414
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { ClassValue } from 'clsx';
|
|
2
|
-
import * as React
|
|
2
|
+
import * as React from 'react';
|
|
3
3
|
import { HTMLAttributes, ComponentProps } from 'react';
|
|
4
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';
|
|
5
5
|
import * as class_variance_authority_types from 'class-variance-authority/types';
|
|
@@ -28,13 +28,13 @@ interface ActivityParticipant {
|
|
|
28
28
|
role?: string;
|
|
29
29
|
}
|
|
30
30
|
interface ActivityDetailData {
|
|
31
|
-
icon: React
|
|
31
|
+
icon: React.ReactNode;
|
|
32
32
|
title: string;
|
|
33
33
|
details: string;
|
|
34
34
|
content?: string;
|
|
35
35
|
time: string;
|
|
36
36
|
source: string;
|
|
37
|
-
sourceIcon?: React
|
|
37
|
+
sourceIcon?: React.ReactNode;
|
|
38
38
|
type?: "email" | "call" | "meeting" | "signal";
|
|
39
39
|
thread?: ActivityThreadMessage[];
|
|
40
40
|
participants?: ActivityParticipant[];
|
|
@@ -44,9 +44,9 @@ interface ActivityDetailData {
|
|
|
44
44
|
interface ActivityDetailProps {
|
|
45
45
|
activity: ActivityDetailData;
|
|
46
46
|
onBack?: () => void;
|
|
47
|
-
actions?: React
|
|
47
|
+
actions?: React.ReactNode;
|
|
48
48
|
}
|
|
49
|
-
declare function ActivityDetail({ activity, onBack, actions }: ActivityDetailProps): React
|
|
49
|
+
declare function ActivityDetail({ activity, onBack, actions }: ActivityDetailProps): React.JSX.Element;
|
|
50
50
|
|
|
51
51
|
interface ActivityLogItem {
|
|
52
52
|
id: string;
|
|
@@ -63,30 +63,30 @@ interface ActivityLogProps {
|
|
|
63
63
|
}
|
|
64
64
|
declare function ActivityRow({ item }: {
|
|
65
65
|
item: ActivityLogItem;
|
|
66
|
-
}): React
|
|
67
|
-
declare function ActivityLog({ items, title, initialLimit }: ActivityLogProps): React
|
|
66
|
+
}): React.JSX.Element;
|
|
67
|
+
declare function ActivityLog({ items, title, initialLimit }: ActivityLogProps): React.JSX.Element;
|
|
68
68
|
|
|
69
|
-
declare function Avatar({ className, size, ...props }: React
|
|
69
|
+
declare function Avatar({ className, size, ...props }: React.ComponentProps<typeof Avatar$1.Root> & {
|
|
70
70
|
size?: "default" | "sm" | "lg";
|
|
71
|
-
}): React
|
|
72
|
-
declare function AvatarImage({ className, ...props }: React
|
|
73
|
-
declare function AvatarFallback({ className, ...props }: React
|
|
74
|
-
declare function AvatarBadge({ className, ...props }: React
|
|
75
|
-
declare function AvatarGroup({ className, ...props }: React
|
|
76
|
-
declare function AvatarGroupCount({ className, ...props }: React
|
|
71
|
+
}): React.JSX.Element;
|
|
72
|
+
declare function AvatarImage({ className, ...props }: React.ComponentProps<typeof Avatar$1.Image>): React.JSX.Element;
|
|
73
|
+
declare function AvatarFallback({ className, ...props }: React.ComponentProps<typeof Avatar$1.Fallback>): React.JSX.Element;
|
|
74
|
+
declare function AvatarBadge({ className, ...props }: React.ComponentProps<"span">): React.JSX.Element;
|
|
75
|
+
declare function AvatarGroup({ className, ...props }: React.ComponentProps<"div">): React.JSX.Element;
|
|
76
|
+
declare function AvatarGroupCount({ className, ...props }: React.ComponentProps<"div">): React.JSX.Element;
|
|
77
77
|
|
|
78
78
|
declare const badgeVariants: (props?: ({
|
|
79
79
|
variant?: "default" | "destructive" | "outline" | "secondary" | "ghost" | "link" | null | undefined;
|
|
80
80
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
81
|
-
declare function Badge({ className, variant, asChild, ...props }: React
|
|
81
|
+
declare function Badge({ className, variant, asChild, ...props }: React.ComponentProps<"span"> & VariantProps<typeof badgeVariants> & {
|
|
82
82
|
asChild?: boolean;
|
|
83
|
-
}): React
|
|
83
|
+
}): React.JSX.Element;
|
|
84
84
|
|
|
85
85
|
interface BarSeries {
|
|
86
86
|
dataKey: string;
|
|
87
87
|
color: string;
|
|
88
88
|
name?: string;
|
|
89
|
-
icon?: React
|
|
89
|
+
icon?: React.ComponentType<{
|
|
90
90
|
className?: string;
|
|
91
91
|
}>;
|
|
92
92
|
barSize?: number;
|
|
@@ -101,23 +101,23 @@ interface BarChartComponentProps {
|
|
|
101
101
|
barGap?: number;
|
|
102
102
|
className?: string;
|
|
103
103
|
}
|
|
104
|
-
declare function BarChartComponent({ data, bars, height, xAxisKey, showGrid, showLegend, barGap, className, }: BarChartComponentProps): React
|
|
104
|
+
declare function BarChartComponent({ data, bars, height, xAxisKey, showGrid, showLegend, barGap, className, }: BarChartComponentProps): React.JSX.Element;
|
|
105
105
|
|
|
106
106
|
declare const buttonVariants: (props?: ({
|
|
107
107
|
variant?: "default" | "destructive" | "outline" | "secondary" | "ghost" | "link" | null | undefined;
|
|
108
108
|
size?: "default" | "sm" | "lg" | "icon" | null | undefined;
|
|
109
109
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
110
|
-
declare function Button({ className, variant, size, asChild, ...props }: React
|
|
110
|
+
declare function Button({ className, variant, size, asChild, ...props }: React.ComponentProps<"button"> & VariantProps<typeof buttonVariants> & {
|
|
111
111
|
asChild?: boolean;
|
|
112
|
-
}): React
|
|
112
|
+
}): React.JSX.Element;
|
|
113
113
|
|
|
114
|
-
declare function Card({ className, ...props }: React
|
|
115
|
-
declare function CardHeader({ className, ...props }: React
|
|
116
|
-
declare function CardTitle({ className, ...props }: React
|
|
117
|
-
declare function CardDescription({ className, ...props }: React
|
|
118
|
-
declare function CardAction({ className, ...props }: React
|
|
119
|
-
declare function CardContent({ className, ...props }: React
|
|
120
|
-
declare function CardFooter({ className, ...props }: React
|
|
114
|
+
declare function Card({ className, ...props }: React.ComponentProps<"div">): React.JSX.Element;
|
|
115
|
+
declare function CardHeader({ className, ...props }: React.ComponentProps<"div">): React.JSX.Element;
|
|
116
|
+
declare function CardTitle({ className, ...props }: React.ComponentProps<"div">): React.JSX.Element;
|
|
117
|
+
declare function CardDescription({ className, ...props }: React.ComponentProps<"div">): React.JSX.Element;
|
|
118
|
+
declare function CardAction({ className, ...props }: React.ComponentProps<"div">): React.JSX.Element;
|
|
119
|
+
declare function CardContent({ className, ...props }: React.ComponentProps<"div">): React.JSX.Element;
|
|
120
|
+
declare function CardFooter({ className, ...props }: React.ComponentProps<"div">): React.JSX.Element;
|
|
121
121
|
|
|
122
122
|
declare const THEMES: {
|
|
123
123
|
readonly light: "";
|
|
@@ -125,8 +125,8 @@ declare const THEMES: {
|
|
|
125
125
|
};
|
|
126
126
|
type ChartConfig = {
|
|
127
127
|
[k in string]: {
|
|
128
|
-
label?: React
|
|
129
|
-
icon?: React
|
|
128
|
+
label?: React.ReactNode;
|
|
129
|
+
icon?: React.ComponentType;
|
|
130
130
|
} & ({
|
|
131
131
|
color?: string;
|
|
132
132
|
theme?: never;
|
|
@@ -135,14 +135,14 @@ type ChartConfig = {
|
|
|
135
135
|
theme: Record<keyof typeof THEMES, string>;
|
|
136
136
|
});
|
|
137
137
|
};
|
|
138
|
-
declare function ChartContainer({ id, className, children, config, ...props }: React
|
|
138
|
+
declare function ChartContainer({ id, className, children, config, ...props }: React.ComponentProps<"div"> & {
|
|
139
139
|
config: ChartConfig;
|
|
140
|
-
children: React
|
|
141
|
-
}): React
|
|
140
|
+
children: React.ComponentProps<typeof RechartsPrimitive.ResponsiveContainer>["children"];
|
|
141
|
+
}): React.JSX.Element;
|
|
142
142
|
declare const ChartStyle: ({ id, config }: {
|
|
143
143
|
id: string;
|
|
144
144
|
config: ChartConfig;
|
|
145
|
-
}) => React
|
|
145
|
+
}) => React.JSX.Element | null;
|
|
146
146
|
declare const ChartTooltip: typeof RechartsPrimitive.Tooltip;
|
|
147
147
|
type TooltipPayloadItem = {
|
|
148
148
|
name?: string;
|
|
@@ -152,12 +152,12 @@ type TooltipPayloadItem = {
|
|
|
152
152
|
color?: string;
|
|
153
153
|
fill?: string;
|
|
154
154
|
};
|
|
155
|
-
declare function ChartTooltipContent({ active, payload, className, indicator, hideLabel, hideIndicator, label, labelFormatter, labelClassName, formatter, color, nameKey, labelKey, }: React
|
|
155
|
+
declare function ChartTooltipContent({ active, payload, className, indicator, hideLabel, hideIndicator, label, labelFormatter, labelClassName, formatter, color, nameKey, labelKey, }: React.ComponentProps<"div"> & {
|
|
156
156
|
active?: boolean;
|
|
157
157
|
payload?: TooltipPayloadItem[];
|
|
158
158
|
label?: string;
|
|
159
|
-
labelFormatter?: (value: unknown, payload: TooltipPayloadItem[]) => React
|
|
160
|
-
formatter?: (value: unknown, name: string, item: TooltipPayloadItem, index: number, payload: Record<string, unknown>) => React
|
|
159
|
+
labelFormatter?: (value: unknown, payload: TooltipPayloadItem[]) => React.ReactNode;
|
|
160
|
+
formatter?: (value: unknown, name: string, item: TooltipPayloadItem, index: number, payload: Record<string, unknown>) => React.ReactNode;
|
|
161
161
|
hideLabel?: boolean;
|
|
162
162
|
hideIndicator?: boolean;
|
|
163
163
|
indicator?: "line" | "dot" | "dashed";
|
|
@@ -165,19 +165,19 @@ declare function ChartTooltipContent({ active, payload, className, indicator, hi
|
|
|
165
165
|
labelKey?: string;
|
|
166
166
|
labelClassName?: string;
|
|
167
167
|
color?: string;
|
|
168
|
-
}): React
|
|
168
|
+
}): React.JSX.Element | null;
|
|
169
169
|
declare const ChartLegend: typeof RechartsPrimitive.Legend;
|
|
170
170
|
type LegendPayloadItem = {
|
|
171
171
|
value?: string;
|
|
172
172
|
dataKey?: string;
|
|
173
173
|
[key: string]: unknown;
|
|
174
174
|
};
|
|
175
|
-
declare function ChartLegendContent({ className, hideIcon, payload, verticalAlign, nameKey, }: React
|
|
175
|
+
declare function ChartLegendContent({ className, hideIcon, payload, verticalAlign, nameKey, }: React.ComponentProps<"div"> & {
|
|
176
176
|
payload?: LegendPayloadItem[];
|
|
177
177
|
verticalAlign?: "top" | "bottom";
|
|
178
178
|
hideIcon?: boolean;
|
|
179
179
|
nameKey?: string;
|
|
180
|
-
}): React
|
|
180
|
+
}): React.JSX.Element | null;
|
|
181
181
|
|
|
182
182
|
interface ChartTooltipEntry {
|
|
183
183
|
name?: string;
|
|
@@ -194,8 +194,8 @@ interface SimpleChartTooltipProps {
|
|
|
194
194
|
formatter?: (value: number | string, name: string) => [string, string];
|
|
195
195
|
className?: string;
|
|
196
196
|
}
|
|
197
|
-
declare function SimpleChartTooltip({ active, payload, label, formatter, className, }: SimpleChartTooltipProps): React
|
|
198
|
-
declare const CHART_TOOLTIP_STYLE: React
|
|
197
|
+
declare function SimpleChartTooltip({ active, payload, label, formatter, className, }: SimpleChartTooltipProps): React.JSX.Element | null;
|
|
198
|
+
declare const CHART_TOOLTIP_STYLE: React.CSSProperties;
|
|
199
199
|
declare const CHART_CURSOR_STYLE: {
|
|
200
200
|
stroke: string;
|
|
201
201
|
strokeWidth: number;
|
|
@@ -204,7 +204,7 @@ declare const CHART_CURSOR_STYLE: {
|
|
|
204
204
|
|
|
205
205
|
interface ContactChannel {
|
|
206
206
|
type: "linkedin" | "gmail" | "salesforce" | "phone" | "custom";
|
|
207
|
-
icon: React
|
|
207
|
+
icon: React.ReactNode;
|
|
208
208
|
label?: string;
|
|
209
209
|
onClick?: () => void;
|
|
210
210
|
}
|
|
@@ -231,19 +231,19 @@ interface ContactListProps {
|
|
|
231
231
|
onAdd?: () => void;
|
|
232
232
|
addLabel?: string;
|
|
233
233
|
}
|
|
234
|
-
declare function ContactList({ title, count, contacts, onAdd, addLabel }: ContactListProps): React
|
|
234
|
+
declare function ContactList({ title, count, contacts, onAdd, addLabel }: ContactListProps): React.JSX.Element;
|
|
235
235
|
|
|
236
236
|
declare function TopTasksCard({ onViewAll }: {
|
|
237
237
|
onViewAll?: () => void;
|
|
238
|
-
}): React
|
|
239
|
-
declare function UpcomingMeetingsCard(): React
|
|
240
|
-
declare function RecentlyCompletedCard(): React
|
|
241
|
-
declare function CheckInsCard(): React
|
|
238
|
+
}): React.JSX.Element;
|
|
239
|
+
declare function UpcomingMeetingsCard(): React.JSX.Element;
|
|
240
|
+
declare function RecentlyCompletedCard(): React.JSX.Element;
|
|
241
|
+
declare function CheckInsCard(): React.JSX.Element;
|
|
242
242
|
|
|
243
243
|
interface DataTableFilterCategory {
|
|
244
244
|
id: string;
|
|
245
245
|
label: string;
|
|
246
|
-
icon: React
|
|
246
|
+
icon: React.ComponentType<{
|
|
247
247
|
className?: string;
|
|
248
248
|
}>;
|
|
249
249
|
options: string[];
|
|
@@ -253,7 +253,7 @@ interface DataTableFilterProps {
|
|
|
253
253
|
selectedFilters: Record<string, string[]>;
|
|
254
254
|
onToggleFilter: (categoryId: string, option: string) => void;
|
|
255
255
|
}
|
|
256
|
-
declare function DataTableFilter({ categories, selectedFilters, onToggleFilter, }: DataTableFilterProps): React
|
|
256
|
+
declare function DataTableFilter({ categories, selectedFilters, onToggleFilter, }: DataTableFilterProps): React.JSX.Element;
|
|
257
257
|
|
|
258
258
|
type DataRow = {
|
|
259
259
|
id: string;
|
|
@@ -288,7 +288,7 @@ interface DataTableProps {
|
|
|
288
288
|
onScoreApproveFeedback?: (account: string, scoreType: string, reasons: string[], detail: string) => void;
|
|
289
289
|
onScoreDismissFeedback?: (account: string, scoreType: string, reasons: string[], detail: string) => void;
|
|
290
290
|
}
|
|
291
|
-
declare function DataTable({ onRowClick, rows: rowsProp, filterCategories: filterCategoriesProp, quickViews: quickViewsProp, moreQuickViews: moreQuickViewsProp, quickViewFilters: quickViewFiltersProp, iconMap, entityUrlBuilder, onScoreFactorFeedback, onScoreApproveFeedback, onScoreDismissFeedback, }?: DataTableProps): React
|
|
291
|
+
declare function DataTable({ onRowClick, rows: rowsProp, filterCategories: filterCategoriesProp, quickViews: quickViewsProp, moreQuickViews: moreQuickViewsProp, quickViewFilters: quickViewFiltersProp, iconMap, entityUrlBuilder, onScoreFactorFeedback, onScoreApproveFeedback, onScoreDismissFeedback, }?: DataTableProps): React.JSX.Element;
|
|
292
292
|
|
|
293
293
|
interface DataTableDisplayColumn {
|
|
294
294
|
id: string;
|
|
@@ -303,7 +303,7 @@ interface DataTableDisplayProps {
|
|
|
303
303
|
onToggleColumn: (columnId: string) => void;
|
|
304
304
|
onReset: () => void;
|
|
305
305
|
}
|
|
306
|
-
declare function DataTableDisplay({ sorting, onSortingChange, columns, onToggleColumn, onReset, }: DataTableDisplayProps): React
|
|
306
|
+
declare function DataTableDisplay({ sorting, onSortingChange, columns, onToggleColumn, onReset, }: DataTableDisplayProps): React.JSX.Element;
|
|
307
307
|
|
|
308
308
|
type DataTableQuickViewValue = string | null;
|
|
309
309
|
interface DataTableQuickViewsProps {
|
|
@@ -313,7 +313,7 @@ interface DataTableQuickViewsProps {
|
|
|
313
313
|
onViewChange: (next: DataTableQuickViewValue) => void;
|
|
314
314
|
className?: string;
|
|
315
315
|
}
|
|
316
|
-
declare function DataTableQuickViews({ quickViews, moreViews, activeView, onViewChange, className, }: DataTableQuickViewsProps): React
|
|
316
|
+
declare function DataTableQuickViews({ quickViews, moreViews, activeView, onViewChange, className, }: DataTableQuickViewsProps): React.JSX.Element;
|
|
317
317
|
|
|
318
318
|
interface DataTableToolbarProps {
|
|
319
319
|
categories: DataTableFilterCategory[];
|
|
@@ -325,20 +325,20 @@ interface DataTableToolbarProps {
|
|
|
325
325
|
onToggleColumn: (columnId: string) => void;
|
|
326
326
|
onResetDisplay: () => void;
|
|
327
327
|
}
|
|
328
|
-
declare function DataTableToolbar({ categories, selectedFilters, onToggleFilter, sorting, onSortingChange, displayColumns, onToggleColumn, onResetDisplay, }: DataTableToolbarProps): React
|
|
328
|
+
declare function DataTableToolbar({ categories, selectedFilters, onToggleFilter, sorting, onSortingChange, displayColumns, onToggleColumn, onResetDisplay, }: DataTableToolbarProps): React.JSX.Element;
|
|
329
329
|
|
|
330
330
|
declare function DetailViewHeader({ title, breadcrumbs, badges, onBack, }: {
|
|
331
331
|
title: string;
|
|
332
|
-
breadcrumbs: React
|
|
333
|
-
badges: React
|
|
332
|
+
breadcrumbs: React.ReactNode;
|
|
333
|
+
badges: React.ReactNode;
|
|
334
334
|
onBack?: () => void;
|
|
335
|
-
}): React
|
|
335
|
+
}): React.JSX.Element;
|
|
336
336
|
declare function DetailViewSummary({ title, children, sources, actions, }: {
|
|
337
337
|
title?: string;
|
|
338
|
-
children: React
|
|
339
|
-
sources?: React
|
|
340
|
-
actions?: React
|
|
341
|
-
}): React
|
|
338
|
+
children: React.ReactNode;
|
|
339
|
+
sources?: React.ReactNode;
|
|
340
|
+
actions?: React.ReactNode;
|
|
341
|
+
}): React.JSX.Element;
|
|
342
342
|
type SourceDef = {
|
|
343
343
|
id: number | string;
|
|
344
344
|
summary: string;
|
|
@@ -347,41 +347,41 @@ type SourceDef = {
|
|
|
347
347
|
declare function Citation({ number, source, }: {
|
|
348
348
|
number: number | string;
|
|
349
349
|
source?: SourceDef;
|
|
350
|
-
}): React
|
|
350
|
+
}): React.JSX.Element;
|
|
351
351
|
declare function SourceList({ sources }: {
|
|
352
352
|
sources: SourceDef[];
|
|
353
|
-
}): React
|
|
353
|
+
}): React.JSX.Element;
|
|
354
354
|
declare function DetailViewThread({ title, actionCount, children, }: {
|
|
355
355
|
title: string;
|
|
356
356
|
actionCount?: number;
|
|
357
|
-
children: React
|
|
358
|
-
}): React
|
|
357
|
+
children: React.ReactNode;
|
|
358
|
+
}): React.JSX.Element;
|
|
359
359
|
declare function ThreadMessage({ icon, subject, time, messageCount, threadLink, sender, senderTime, children, isExpanded, }: {
|
|
360
|
-
icon?: React
|
|
360
|
+
icon?: React.ReactNode;
|
|
361
361
|
subject: string;
|
|
362
362
|
time: string;
|
|
363
363
|
messageCount?: number;
|
|
364
364
|
threadLink?: string;
|
|
365
365
|
sender?: string;
|
|
366
366
|
senderTime?: string;
|
|
367
|
-
children: React
|
|
367
|
+
children: React.ReactNode;
|
|
368
368
|
isExpanded?: boolean;
|
|
369
|
-
}): React
|
|
370
|
-
|
|
371
|
-
declare function Dialog({ ...props }: React
|
|
372
|
-
declare function DialogTrigger({ ...props }: React
|
|
373
|
-
declare function DialogPortal({ ...props }: React
|
|
374
|
-
declare function DialogClose({ ...props }: React
|
|
375
|
-
declare function DialogOverlay({ className, ...props }: React
|
|
376
|
-
declare function DialogContent({ className, children, showCloseButton, ...props }: React
|
|
369
|
+
}): React.JSX.Element;
|
|
370
|
+
|
|
371
|
+
declare function Dialog({ ...props }: React.ComponentProps<typeof Dialog$1.Root>): React.JSX.Element;
|
|
372
|
+
declare function DialogTrigger({ ...props }: React.ComponentProps<typeof Dialog$1.Trigger>): React.JSX.Element;
|
|
373
|
+
declare function DialogPortal({ ...props }: React.ComponentProps<typeof Dialog$1.Portal>): React.JSX.Element;
|
|
374
|
+
declare function DialogClose({ ...props }: React.ComponentProps<typeof Dialog$1.Close>): React.JSX.Element;
|
|
375
|
+
declare function DialogOverlay({ className, ...props }: React.ComponentProps<typeof Dialog$1.Overlay>): React.JSX.Element;
|
|
376
|
+
declare function DialogContent({ className, children, showCloseButton, ...props }: React.ComponentProps<typeof Dialog$1.Content> & {
|
|
377
377
|
showCloseButton?: boolean;
|
|
378
|
-
}): React
|
|
379
|
-
declare function DialogHeader({ className, ...props }: React
|
|
380
|
-
declare function DialogFooter({ className, showCloseButton, children, ...props }: React
|
|
378
|
+
}): React.JSX.Element;
|
|
379
|
+
declare function DialogHeader({ className, ...props }: React.ComponentProps<"div">): React.JSX.Element;
|
|
380
|
+
declare function DialogFooter({ className, showCloseButton, children, ...props }: React.ComponentProps<"div"> & {
|
|
381
381
|
showCloseButton?: boolean;
|
|
382
|
-
}): React
|
|
383
|
-
declare function DialogTitle({ className, ...props }: React
|
|
384
|
-
declare function DialogDescription({ className, ...props }: React
|
|
382
|
+
}): React.JSX.Element;
|
|
383
|
+
declare function DialogTitle({ className, ...props }: React.ComponentProps<typeof Dialog$1.Title>): React.JSX.Element;
|
|
384
|
+
declare function DialogDescription({ className, ...props }: React.ComponentProps<typeof Dialog$1.Description>): React.JSX.Element;
|
|
385
385
|
|
|
386
386
|
interface DonutSegment {
|
|
387
387
|
name: string;
|
|
@@ -399,37 +399,37 @@ interface DonutChartProps {
|
|
|
399
399
|
showLegend?: boolean;
|
|
400
400
|
className?: string;
|
|
401
401
|
}
|
|
402
|
-
declare function DonutChart({ data, centerLabel, size, innerRadius, outerRadius, paddingAngle, showTooltip, showLegend, className, }: DonutChartProps): React
|
|
402
|
+
declare function DonutChart({ data, centerLabel, size, innerRadius, outerRadius, paddingAngle, showTooltip, showLegend, className, }: DonutChartProps): React.JSX.Element;
|
|
403
403
|
|
|
404
|
-
declare function DropdownMenu({ ...props }: React
|
|
405
|
-
declare function DropdownMenuPortal({ ...props }: React
|
|
406
|
-
declare function DropdownMenuTrigger({ ...props }: React
|
|
407
|
-
declare function DropdownMenuContent({ className, sideOffset, ...props }: React
|
|
408
|
-
declare function DropdownMenuGroup({ ...props }: React
|
|
409
|
-
declare function DropdownMenuItem({ className, inset, variant, ...props }: React
|
|
404
|
+
declare function DropdownMenu({ ...props }: React.ComponentProps<typeof DropdownMenu$1.Root>): React.JSX.Element;
|
|
405
|
+
declare function DropdownMenuPortal({ ...props }: React.ComponentProps<typeof DropdownMenu$1.Portal>): React.JSX.Element;
|
|
406
|
+
declare function DropdownMenuTrigger({ ...props }: React.ComponentProps<typeof DropdownMenu$1.Trigger>): React.JSX.Element;
|
|
407
|
+
declare function DropdownMenuContent({ className, sideOffset, ...props }: React.ComponentProps<typeof DropdownMenu$1.Content>): React.JSX.Element;
|
|
408
|
+
declare function DropdownMenuGroup({ ...props }: React.ComponentProps<typeof DropdownMenu$1.Group>): React.JSX.Element;
|
|
409
|
+
declare function DropdownMenuItem({ className, inset, variant, ...props }: React.ComponentProps<typeof DropdownMenu$1.Item> & {
|
|
410
410
|
inset?: boolean;
|
|
411
411
|
variant?: "default" | "destructive";
|
|
412
|
-
}): React
|
|
413
|
-
declare function DropdownMenuCheckboxItem({ className, children, checked, ...props }: React
|
|
414
|
-
declare function DropdownMenuRadioGroup({ ...props }: React
|
|
415
|
-
declare function DropdownMenuRadioItem({ className, children, ...props }: React
|
|
416
|
-
declare function DropdownMenuLabel({ className, inset, ...props }: React
|
|
412
|
+
}): React.JSX.Element;
|
|
413
|
+
declare function DropdownMenuCheckboxItem({ className, children, checked, ...props }: React.ComponentProps<typeof DropdownMenu$1.CheckboxItem>): React.JSX.Element;
|
|
414
|
+
declare function DropdownMenuRadioGroup({ ...props }: React.ComponentProps<typeof DropdownMenu$1.RadioGroup>): React.JSX.Element;
|
|
415
|
+
declare function DropdownMenuRadioItem({ className, children, ...props }: React.ComponentProps<typeof DropdownMenu$1.RadioItem>): React.JSX.Element;
|
|
416
|
+
declare function DropdownMenuLabel({ className, inset, ...props }: React.ComponentProps<typeof DropdownMenu$1.Label> & {
|
|
417
417
|
inset?: boolean;
|
|
418
|
-
}): React
|
|
419
|
-
declare function DropdownMenuSeparator({ className, ...props }: React
|
|
420
|
-
declare function DropdownMenuShortcut({ className, ...props }: React
|
|
421
|
-
declare function DropdownMenuSub({ ...props }: React
|
|
422
|
-
declare function DropdownMenuSubTrigger({ className, inset, children, ...props }: React
|
|
418
|
+
}): React.JSX.Element;
|
|
419
|
+
declare function DropdownMenuSeparator({ className, ...props }: React.ComponentProps<typeof DropdownMenu$1.Separator>): React.JSX.Element;
|
|
420
|
+
declare function DropdownMenuShortcut({ className, ...props }: React.ComponentProps<"span">): React.JSX.Element;
|
|
421
|
+
declare function DropdownMenuSub({ ...props }: React.ComponentProps<typeof DropdownMenu$1.Sub>): React.JSX.Element;
|
|
422
|
+
declare function DropdownMenuSubTrigger({ className, inset, children, ...props }: React.ComponentProps<typeof DropdownMenu$1.SubTrigger> & {
|
|
423
423
|
inset?: boolean;
|
|
424
|
-
}): React
|
|
425
|
-
declare function DropdownMenuSubContent({ className, ...props }: React
|
|
424
|
+
}): React.JSX.Element;
|
|
425
|
+
declare function DropdownMenuSubContent({ className, ...props }: React.ComponentProps<typeof DropdownMenu$1.SubContent>): React.JSX.Element;
|
|
426
426
|
|
|
427
427
|
interface TimelineEvent {
|
|
428
428
|
id: string;
|
|
429
|
-
icon: React
|
|
430
|
-
title: React
|
|
429
|
+
icon: React.ReactNode;
|
|
430
|
+
title: React.ReactNode;
|
|
431
431
|
time: string;
|
|
432
|
-
preview?: React
|
|
432
|
+
preview?: React.ReactNode;
|
|
433
433
|
email?: {
|
|
434
434
|
from: string;
|
|
435
435
|
fromEmail?: string;
|
|
@@ -438,34 +438,35 @@ interface TimelineEvent {
|
|
|
438
438
|
bcc?: string;
|
|
439
439
|
date?: string;
|
|
440
440
|
subject?: string;
|
|
441
|
-
body: React
|
|
441
|
+
body: React.ReactNode;
|
|
442
442
|
};
|
|
443
|
-
content?: React
|
|
443
|
+
content?: React.ReactNode;
|
|
444
444
|
source?: {
|
|
445
445
|
label: string;
|
|
446
446
|
url: string;
|
|
447
447
|
};
|
|
448
448
|
defaultExpanded?: boolean;
|
|
449
449
|
isInteractive?: boolean;
|
|
450
|
+
onSourceClick?: () => void;
|
|
450
451
|
}
|
|
451
452
|
interface TimelineActivityProps {
|
|
452
453
|
events: TimelineEvent[];
|
|
453
454
|
className?: string;
|
|
454
455
|
}
|
|
455
|
-
declare function TimelineActivity({ events, className }: TimelineActivityProps): React
|
|
456
|
+
declare function TimelineActivity({ events, className }: TimelineActivityProps): React.JSX.Element;
|
|
456
457
|
|
|
457
458
|
declare function EntityPanel({ isOpen, onClose, children, }: {
|
|
458
459
|
isOpen: boolean;
|
|
459
460
|
onClose: (open: boolean) => void;
|
|
460
|
-
children?: React
|
|
461
|
-
}): React
|
|
461
|
+
children?: React.ReactNode;
|
|
462
|
+
}): React.JSX.Element;
|
|
462
463
|
declare function EntityPanelHeader({ icon, title, badgeLabel, subtitle, headerAction, }: {
|
|
463
|
-
icon?: React
|
|
464
|
+
icon?: React.ReactNode;
|
|
464
465
|
title: string;
|
|
465
466
|
badgeLabel?: string;
|
|
466
467
|
subtitle?: string;
|
|
467
|
-
headerAction?: React
|
|
468
|
-
}): React
|
|
468
|
+
headerAction?: React.ReactNode;
|
|
469
|
+
}): React.JSX.Element;
|
|
469
470
|
declare function EntityPanelTabs({ tabs, activeTab, onTabChange, }: {
|
|
470
471
|
tabs: {
|
|
471
472
|
id: string;
|
|
@@ -473,29 +474,29 @@ declare function EntityPanelTabs({ tabs, activeTab, onTabChange, }: {
|
|
|
473
474
|
}[];
|
|
474
475
|
activeTab: string;
|
|
475
476
|
onTabChange: (id: string) => void;
|
|
476
|
-
}): React
|
|
477
|
+
}): React.JSX.Element;
|
|
477
478
|
interface EntityMetadataField {
|
|
478
|
-
icon: React
|
|
479
|
+
icon: React.ComponentType<{
|
|
479
480
|
className?: string;
|
|
480
481
|
}>;
|
|
481
482
|
label: string;
|
|
482
|
-
value: React
|
|
483
|
+
value: React.ReactNode;
|
|
483
484
|
}
|
|
484
485
|
declare function EntityMetadataGrid({ fields }: {
|
|
485
486
|
fields: EntityMetadataField[];
|
|
486
|
-
}): React
|
|
487
|
+
}): React.JSX.Element;
|
|
487
488
|
declare function EntitySection({ title, children, action, }: {
|
|
488
489
|
title: string;
|
|
489
|
-
children: React
|
|
490
|
-
action?: React
|
|
491
|
-
}): React
|
|
490
|
+
children: React.ReactNode;
|
|
491
|
+
action?: React.ReactNode;
|
|
492
|
+
}): React.JSX.Element;
|
|
492
493
|
declare function EntityActivityItem({ icon, title, description, date, }: {
|
|
493
|
-
icon?: React
|
|
494
|
-
title: React
|
|
495
|
-
description?: React
|
|
494
|
+
icon?: React.ReactNode;
|
|
495
|
+
title: React.ReactNode;
|
|
496
|
+
description?: React.ReactNode;
|
|
496
497
|
date?: string;
|
|
497
|
-
}): React
|
|
498
|
-
declare function SystemActivity(): React
|
|
498
|
+
}): React.JSX.Element;
|
|
499
|
+
declare function SystemActivity(): React.JSX.Element;
|
|
499
500
|
interface EntityPanelBrandIcons {
|
|
500
501
|
linkedin?: string;
|
|
501
502
|
gmail?: string;
|
|
@@ -504,22 +505,22 @@ interface EntityPanelBrandIcons {
|
|
|
504
505
|
}
|
|
505
506
|
declare function PotentialContacts({ icons, }: {
|
|
506
507
|
icons?: Pick<EntityPanelBrandIcons, "linkedin" | "gmail">;
|
|
507
|
-
}): React
|
|
508
|
+
}): React.JSX.Element;
|
|
508
509
|
type ActivityItem = TimelineEvent;
|
|
509
510
|
declare function RecentActivity({ title, count, filters, items, }: {
|
|
510
511
|
title?: string;
|
|
511
512
|
count?: string;
|
|
512
513
|
filters?: string[];
|
|
513
514
|
items?: TimelineEvent[];
|
|
514
|
-
}): React
|
|
515
|
+
}): React.JSX.Element;
|
|
515
516
|
declare function ConnectedApps({ icons, }: {
|
|
516
517
|
icons?: Pick<EntityPanelBrandIcons, "slack" | "gdoc">;
|
|
517
|
-
}): React
|
|
518
|
+
}): React.JSX.Element;
|
|
518
519
|
declare function EntityDetails({ onClose }: {
|
|
519
520
|
onClose?: () => void;
|
|
520
|
-
}): React
|
|
521
|
+
}): React.JSX.Element;
|
|
521
522
|
|
|
522
|
-
interface InboxRowProps extends React
|
|
523
|
+
interface InboxRowProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
523
524
|
itemId: string;
|
|
524
525
|
statusColor: "red" | "orange" | "gray";
|
|
525
526
|
primaryText: string;
|
|
@@ -537,18 +538,18 @@ interface InboxRowProps extends React$1.HTMLAttributes<HTMLDivElement> {
|
|
|
537
538
|
status: string;
|
|
538
539
|
time: string;
|
|
539
540
|
}
|
|
540
|
-
declare const InboxRow: React
|
|
541
|
+
declare const InboxRow: React.ForwardRefExoticComponent<InboxRowProps & React.RefAttributes<HTMLDivElement>>;
|
|
541
542
|
declare function InboxGroupHeader({ title, count }: {
|
|
542
543
|
title: string;
|
|
543
544
|
count: number;
|
|
544
|
-
}): React
|
|
545
|
+
}): React.JSX.Element;
|
|
545
546
|
|
|
546
547
|
interface FilterDefinition {
|
|
547
548
|
id: string;
|
|
548
549
|
label: string;
|
|
549
550
|
options: string[];
|
|
550
551
|
defaultValue?: string;
|
|
551
|
-
icon?: "calendar" | React
|
|
552
|
+
icon?: "calendar" | React.ComponentType<{
|
|
552
553
|
className?: string;
|
|
553
554
|
}>;
|
|
554
555
|
}
|
|
@@ -559,13 +560,13 @@ interface InsightsFilterBarProps {
|
|
|
559
560
|
onClearAll?: () => void;
|
|
560
561
|
className?: string;
|
|
561
562
|
}
|
|
562
|
-
declare function InsightsFilterBar({ filters, values, onChange, onClearAll, className, }: InsightsFilterBarProps): React
|
|
563
|
+
declare function InsightsFilterBar({ filters, values, onChange, onClearAll, className, }: InsightsFilterBarProps): React.JSX.Element;
|
|
563
564
|
|
|
564
565
|
type AssigneeFilter = "me" | "team" | "all";
|
|
565
566
|
interface InboxFilterCategory {
|
|
566
567
|
id: string;
|
|
567
568
|
label: string;
|
|
568
|
-
icon: React
|
|
569
|
+
icon: React.ReactNode;
|
|
569
570
|
options: string[];
|
|
570
571
|
}
|
|
571
572
|
interface InboxToolbarProps {
|
|
@@ -577,11 +578,11 @@ interface InboxToolbarProps {
|
|
|
577
578
|
onClearFilters: () => void;
|
|
578
579
|
className?: string;
|
|
579
580
|
}
|
|
580
|
-
declare function InboxToolbar({ assignee, onAssigneeChange, filterCategories, selectedFilters, onFilterChange, onClearFilters, className, }: InboxToolbarProps): React
|
|
581
|
+
declare function InboxToolbar({ assignee, onAssigneeChange, filterCategories, selectedFilters, onFilterChange, onClearFilters, className, }: InboxToolbarProps): React.JSX.Element;
|
|
581
582
|
|
|
582
|
-
declare function Input({ className, type, ...props }: React
|
|
583
|
+
declare function Input({ className, type, ...props }: React.ComponentProps<"input">): React.JSX.Element;
|
|
583
584
|
|
|
584
|
-
declare function ItemList(): React
|
|
585
|
+
declare function ItemList(): React.JSX.Element;
|
|
585
586
|
interface GroupedListGroup<T> {
|
|
586
587
|
key: string;
|
|
587
588
|
label: string;
|
|
@@ -589,14 +590,14 @@ interface GroupedListGroup<T> {
|
|
|
589
590
|
}
|
|
590
591
|
interface GroupedListViewProps<T> {
|
|
591
592
|
groups: GroupedListGroup<T>[];
|
|
592
|
-
renderRow: (item: T, index: number) => React
|
|
593
|
+
renderRow: (item: T, index: number) => React.ReactNode;
|
|
593
594
|
getItemKey: (item: T) => string;
|
|
594
595
|
selectedKey?: string;
|
|
595
596
|
onItemClick?: (item: T) => void;
|
|
596
597
|
emptyMessage?: string;
|
|
597
598
|
className?: string;
|
|
598
599
|
}
|
|
599
|
-
declare function GroupedListView<T>({ groups, renderRow, getItemKey, selectedKey, onItemClick, emptyMessage, className, }: GroupedListViewProps<T>): React
|
|
600
|
+
declare function GroupedListView<T>({ groups, renderRow, getItemKey, selectedKey, onItemClick, emptyMessage, className, }: GroupedListViewProps<T>): React.JSX.Element;
|
|
600
601
|
|
|
601
602
|
type ItemListGrouping = "stage" | "owner" | "risk";
|
|
602
603
|
type ItemListViewMode = "list" | "board";
|
|
@@ -615,7 +616,7 @@ interface ItemListDisplayProps {
|
|
|
615
616
|
onChange: (next: ItemListDisplayState) => void;
|
|
616
617
|
onReset: () => void;
|
|
617
618
|
}
|
|
618
|
-
declare function ItemListDisplay({ value, onChange, onReset, }: ItemListDisplayProps): React
|
|
619
|
+
declare function ItemListDisplay({ value, onChange, onReset, }: ItemListDisplayProps): React.JSX.Element;
|
|
619
620
|
|
|
620
621
|
interface ItemListFilterCategory {
|
|
621
622
|
id: string;
|
|
@@ -628,7 +629,7 @@ interface ItemListFilterProps {
|
|
|
628
629
|
onToggleFilter: (categoryId: string, option: string) => void;
|
|
629
630
|
onClearFilters: () => void;
|
|
630
631
|
}
|
|
631
|
-
declare function ItemListFilter({ categories, selectedFilters, onToggleFilter, onClearFilters, }: ItemListFilterProps): React
|
|
632
|
+
declare function ItemListFilter({ categories, selectedFilters, onToggleFilter, onClearFilters, }: ItemListFilterProps): React.JSX.Element;
|
|
632
633
|
|
|
633
634
|
interface ItemListQuickView {
|
|
634
635
|
id: string;
|
|
@@ -646,10 +647,11 @@ interface ItemListToolbarProps {
|
|
|
646
647
|
display: ItemListDisplayState;
|
|
647
648
|
onDisplayChange: (next: ItemListDisplayState) => void;
|
|
648
649
|
onResetDisplay: () => void;
|
|
650
|
+
searchSlot?: React.ReactNode;
|
|
649
651
|
}
|
|
650
|
-
declare function ItemListToolbar({ quickViews, activeQuickView, onQuickViewChange, filterCategories, selectedFilters, onToggleFilter, onClearFilters, display, onDisplayChange, onResetDisplay, }: ItemListToolbarProps): React
|
|
652
|
+
declare function ItemListToolbar({ quickViews, activeQuickView, onQuickViewChange, filterCategories, selectedFilters, onToggleFilter, onClearFilters, display, onDisplayChange, onResetDisplay, searchSlot, }: ItemListToolbarProps): React.JSX.Element;
|
|
651
653
|
|
|
652
|
-
declare function Label({ className, ...props }: React
|
|
654
|
+
declare function Label({ className, ...props }: React.ComponentProps<typeof LabelPrimitive.Root>): React.JSX.Element;
|
|
653
655
|
|
|
654
656
|
interface MetricDataPoint {
|
|
655
657
|
label: string;
|
|
@@ -671,7 +673,7 @@ interface MetricCardProps {
|
|
|
671
673
|
showExternalLink?: boolean;
|
|
672
674
|
showInfo?: boolean;
|
|
673
675
|
}
|
|
674
|
-
declare function MetricCard({ title, value, unit, subtitle, change, footerText, dataPoints, showExternalLink, showInfo, }: MetricCardProps): React
|
|
676
|
+
declare function MetricCard({ title, value, unit, subtitle, change, footerText, dataPoints, showExternalLink, showInfo, }: MetricCardProps): React.JSX.Element;
|
|
675
677
|
|
|
676
678
|
interface PerformanceMetricsTableRow {
|
|
677
679
|
id: string;
|
|
@@ -706,7 +708,7 @@ interface PerformanceMetricsTableProps {
|
|
|
706
708
|
pageSize?: number;
|
|
707
709
|
searchPlaceholder?: string;
|
|
708
710
|
}
|
|
709
|
-
declare function PerformanceMetricsTable({ title, entityColumnLabel, primaryMetricColumnLabel, rateColumnLabel, metricOneColumnLabel, metricTwoColumnLabel, metricThreeColumnLabel, metricFourColumnLabel, viewOptions, roleOptions, sortOptions, rows, pageSize, searchPlaceholder, }: PerformanceMetricsTableProps): React
|
|
711
|
+
declare function PerformanceMetricsTable({ title, entityColumnLabel, primaryMetricColumnLabel, rateColumnLabel, metricOneColumnLabel, metricTwoColumnLabel, metricThreeColumnLabel, metricFourColumnLabel, viewOptions, roleOptions, sortOptions, rows, pageSize, searchPlaceholder, }: PerformanceMetricsTableProps): React.JSX.Element;
|
|
710
712
|
|
|
711
713
|
interface PipelineStage {
|
|
712
714
|
id: string;
|
|
@@ -737,6 +739,7 @@ interface PipelineOverviewProps {
|
|
|
737
739
|
stageMetrics: Record<string, PipelineStageMetrics>;
|
|
738
740
|
stageTimings: (PipelineStageTiming | null)[];
|
|
739
741
|
filterOptions?: string[];
|
|
742
|
+
onFilterChange?: (filterOption: string) => void;
|
|
740
743
|
filterBreakdowns?: Record<string, PipelineFilterBreakdown>;
|
|
741
744
|
countingModes?: string[];
|
|
742
745
|
countingModeTooltip?: string;
|
|
@@ -778,27 +781,27 @@ interface PipelineOverviewProps {
|
|
|
778
781
|
onViewInWorkQueue?: (stageId: string) => void;
|
|
779
782
|
className?: string;
|
|
780
783
|
}
|
|
781
|
-
declare function PipelineOverview({ title, stages, stageMetrics, stageTimings, filterOptions, filterBreakdowns, countingModes, countingModeTooltip, flowNodes, dropOffDistribution, flowLinks, totalReceived, nodeAmounts, unitLabel, terminalUnitLabel, terminalNodeIds, sankeyMargin, sankeyLabelPadding, alwaysShowConversionBadges, dropOffNodeColor, onViewInWorkQueue, className, }: PipelineOverviewProps): React
|
|
784
|
+
declare function PipelineOverview({ title, stages, stageMetrics, stageTimings, filterOptions, onFilterChange, filterBreakdowns, countingModes, countingModeTooltip, flowNodes, dropOffDistribution, flowLinks, totalReceived, nodeAmounts, unitLabel, terminalUnitLabel, terminalNodeIds, sankeyMargin, sankeyLabelPadding, alwaysShowConversionBadges, dropOffNodeColor, onViewInWorkQueue, className, }: PipelineOverviewProps): React.JSX.Element;
|
|
782
785
|
|
|
783
|
-
declare function PreviewList({ children, className, ...props }: React
|
|
784
|
-
interface PreviewListItemProps extends Omit<React
|
|
785
|
-
icon?: React
|
|
786
|
-
title: React
|
|
787
|
-
subtitle?: React
|
|
788
|
-
meta?: React
|
|
789
|
-
action?: React
|
|
786
|
+
declare function PreviewList({ children, className, ...props }: React.HTMLAttributes<HTMLDivElement>): React.JSX.Element;
|
|
787
|
+
interface PreviewListItemProps extends Omit<React.HTMLAttributes<HTMLDivElement>, 'title'> {
|
|
788
|
+
icon?: React.ReactNode;
|
|
789
|
+
title: React.ReactNode;
|
|
790
|
+
subtitle?: React.ReactNode;
|
|
791
|
+
meta?: React.ReactNode;
|
|
792
|
+
action?: React.ReactNode;
|
|
790
793
|
isHoverable?: boolean;
|
|
791
794
|
}
|
|
792
|
-
declare const PreviewListItem: React
|
|
795
|
+
declare const PreviewListItem: React.ForwardRefExoticComponent<PreviewListItemProps & React.RefAttributes<HTMLDivElement>>;
|
|
793
796
|
|
|
794
|
-
declare function Progress({ className, value, ...props }: React
|
|
797
|
+
declare function Progress({ className, value, ...props }: React.ComponentProps<typeof Progress$1.Root>): React.JSX.Element;
|
|
795
798
|
|
|
796
799
|
type QuickActionPriority$1 = "normal" | "high" | "urgent";
|
|
797
800
|
interface QuickActionSubmitPayload {
|
|
798
801
|
message: string;
|
|
799
802
|
priority: QuickActionPriority$1;
|
|
800
803
|
}
|
|
801
|
-
interface QuickActionChatAreaProps extends Omit<React
|
|
804
|
+
interface QuickActionChatAreaProps extends Omit<React.ComponentProps<"div">, "onSubmit"> {
|
|
802
805
|
placeholder?: string;
|
|
803
806
|
submitLabel?: string;
|
|
804
807
|
value?: string;
|
|
@@ -812,9 +815,9 @@ interface QuickActionChatAreaProps extends Omit<React$1.ComponentProps<"div">, "
|
|
|
812
815
|
clearOnSubmit?: boolean;
|
|
813
816
|
showEnterHint?: boolean;
|
|
814
817
|
}
|
|
815
|
-
declare function QuickActionChatArea({ className, placeholder, submitLabel, value, defaultValue, onValueChange, priority, defaultPriority, onPriorityChange, onSubmit, allowEmptySubmit, clearOnSubmit, showEnterHint, ...props }: QuickActionChatAreaProps): React
|
|
818
|
+
declare function QuickActionChatArea({ className, placeholder, submitLabel, value, defaultValue, onValueChange, priority, defaultPriority, onPriorityChange, onSubmit, allowEmptySubmit, clearOnSubmit, showEnterHint, ...props }: QuickActionChatAreaProps): React.JSX.Element;
|
|
816
819
|
|
|
817
|
-
type TemplateIcon = React
|
|
820
|
+
type TemplateIcon = React.ComponentType<{
|
|
818
821
|
className?: string;
|
|
819
822
|
}>;
|
|
820
823
|
interface QuickActionTemplate {
|
|
@@ -839,14 +842,15 @@ interface QuickActionModalProps {
|
|
|
839
842
|
className?: string;
|
|
840
843
|
onCreateTask?: (draft: QuickActionTaskDraft) => void;
|
|
841
844
|
}
|
|
842
|
-
declare function QuickActionModal({ open, onOpenChange, templates, title, description, className, onCreateTask, }: QuickActionModalProps): React
|
|
845
|
+
declare function QuickActionModal({ open, onOpenChange, templates, title, description, className, onCreateTask, }: QuickActionModalProps): React.JSX.Element;
|
|
843
846
|
|
|
844
847
|
interface SidebarNavItem {
|
|
845
848
|
id: string;
|
|
846
849
|
label: string;
|
|
847
|
-
icon: React
|
|
850
|
+
icon: React.ComponentType<{
|
|
848
851
|
className?: string;
|
|
849
852
|
}>;
|
|
853
|
+
children?: SidebarNavItem[];
|
|
850
854
|
}
|
|
851
855
|
interface SidebarNavSection {
|
|
852
856
|
title?: string;
|
|
@@ -861,13 +865,13 @@ interface SidebarUserProfile {
|
|
|
861
865
|
interface UserMenuItem {
|
|
862
866
|
id: string;
|
|
863
867
|
label: string;
|
|
864
|
-
icon: React
|
|
868
|
+
icon: React.ComponentType<{
|
|
865
869
|
className?: string;
|
|
866
870
|
}>;
|
|
867
871
|
destructive?: boolean;
|
|
868
872
|
}
|
|
869
873
|
type ActiveVariant = "default" | "gradient";
|
|
870
|
-
interface QuickActionSidebarNavProps extends React
|
|
874
|
+
interface QuickActionSidebarNavProps extends React.ComponentProps<"aside"> {
|
|
871
875
|
brandLabel?: string;
|
|
872
876
|
brandSubtitle?: string;
|
|
873
877
|
brandImage?: string;
|
|
@@ -881,8 +885,11 @@ interface QuickActionSidebarNavProps extends React$1.ComponentProps<"aside"> {
|
|
|
881
885
|
onUserMenuAction?: (itemId: string) => void;
|
|
882
886
|
onCreateTask?: (draft: QuickActionTaskDraft) => void;
|
|
883
887
|
defaultCollapsed?: boolean;
|
|
888
|
+
quickActionTemplates?: QuickActionTemplate[];
|
|
889
|
+
quickActionTitle?: string;
|
|
890
|
+
quickActionDescription?: string;
|
|
884
891
|
}
|
|
885
|
-
declare function QuickActionSidebarNav({ className, brandLabel, brandSubtitle, brandImage, hideQuickAction, navSections, activeItemId, activeVariant, onNavigate, user, userMenuItems, onUserMenuAction, onCreateTask, defaultCollapsed, ...props }: QuickActionSidebarNavProps): React
|
|
892
|
+
declare function QuickActionSidebarNav({ className, brandLabel, brandSubtitle, brandImage, hideQuickAction, navSections, activeItemId, activeVariant, onNavigate, user, userMenuItems, onUserMenuAction, onCreateTask, defaultCollapsed, quickActionTemplates, quickActionTitle, quickActionDescription, ...props }: QuickActionSidebarNavProps): React.JSX.Element;
|
|
886
893
|
|
|
887
894
|
interface RecommendedAction {
|
|
888
895
|
id: string;
|
|
@@ -902,7 +909,7 @@ interface RecommendedActionsSectionProps {
|
|
|
902
909
|
onDismissAction?: (action: RecommendedAction) => void;
|
|
903
910
|
onFeedback?: (actionId: string, feedback: "useful" | "not_useful", comment: string) => void;
|
|
904
911
|
}
|
|
905
|
-
declare function RecommendedActionsSection({ actions, title, onQueueAction, onDismissAction, onFeedback, }: RecommendedActionsSectionProps): React
|
|
912
|
+
declare function RecommendedActionsSection({ actions, title, onQueueAction, onDismissAction, onFeedback, }: RecommendedActionsSectionProps): React.JSX.Element;
|
|
906
913
|
|
|
907
914
|
interface ReportCardFilterOption {
|
|
908
915
|
label: string;
|
|
@@ -920,12 +927,12 @@ interface ReportCardProps {
|
|
|
920
927
|
selectedToggle?: string;
|
|
921
928
|
onToggleChange?: (value: string) => void;
|
|
922
929
|
/** Render slot between header and content */
|
|
923
|
-
headerExtra?: React
|
|
924
|
-
children: React
|
|
930
|
+
headerExtra?: React.ReactNode;
|
|
931
|
+
children: React.ReactNode;
|
|
925
932
|
className?: string;
|
|
926
933
|
contentClassName?: string;
|
|
927
934
|
}
|
|
928
|
-
declare function ReportCard({ title, subtitle, filterOptions, selectedFilter, onFilterChange, toggleOptions, selectedToggle, onToggleChange, headerExtra, children, className, contentClassName, }: ReportCardProps): React
|
|
935
|
+
declare function ReportCard({ title, subtitle, filterOptions, selectedFilter, onFilterChange, toggleOptions, selectedToggle, onToggleChange, headerExtra, children, className, contentClassName, }: ReportCardProps): React.JSX.Element;
|
|
929
936
|
|
|
930
937
|
interface SankeyNode {
|
|
931
938
|
id: string;
|
|
@@ -974,7 +981,7 @@ interface SankeyChartProps {
|
|
|
974
981
|
onViewDetails?: (nodeId: string) => void;
|
|
975
982
|
className?: string;
|
|
976
983
|
}
|
|
977
|
-
declare function SankeyChart({ data, height, nodeOpacity, nodeThickness, nodeBorderWidth, linkOpacity, linkHoverOpacity, enableLabels, labelTextColor, stageMetrics, onDropOffClick, onViewDetails, className, }: SankeyChartProps): React
|
|
984
|
+
declare function SankeyChart({ data, height, nodeOpacity, nodeThickness, nodeBorderWidth, linkOpacity, linkHoverOpacity, enableLabels, labelTextColor, stageMetrics, onDropOffClick, onViewDetails, className, }: SankeyChartProps): React.JSX.Element;
|
|
978
985
|
|
|
979
986
|
interface ScoreFactor {
|
|
980
987
|
key: string;
|
|
@@ -988,7 +995,7 @@ interface ScoreBreakdownProps {
|
|
|
988
995
|
onFactorFeedback?: (factorKey: string, type: "up" | "down" | null, detail?: string) => void;
|
|
989
996
|
className?: string;
|
|
990
997
|
}
|
|
991
|
-
declare function ScoreBreakdown({ factors, onFactorFeedback, className }: ScoreBreakdownProps): React
|
|
998
|
+
declare function ScoreBreakdown({ factors, onFactorFeedback, className }: ScoreBreakdownProps): React.JSX.Element;
|
|
992
999
|
|
|
993
1000
|
interface ScoreAnalysisModalProps {
|
|
994
1001
|
open: boolean;
|
|
@@ -998,7 +1005,7 @@ interface ScoreAnalysisModalProps {
|
|
|
998
1005
|
score: number;
|
|
999
1006
|
denominator?: number;
|
|
1000
1007
|
whyNow: string;
|
|
1001
|
-
evidence: React
|
|
1008
|
+
evidence: React.ReactNode[];
|
|
1002
1009
|
factors?: ScoreFactor[];
|
|
1003
1010
|
onFactorFeedback?: (factorKey: string, type: "up" | "down" | null, detail?: string) => void;
|
|
1004
1011
|
companyName?: string;
|
|
@@ -1006,8 +1013,10 @@ interface ScoreAnalysisModalProps {
|
|
|
1006
1013
|
onApprove?: () => void;
|
|
1007
1014
|
onApproveFeedback?: (reasons: string[], detail: string) => void;
|
|
1008
1015
|
onDismiss?: (reasons: string[], detail: string) => void;
|
|
1016
|
+
/** When true, renders as an absolute-positioned inline panel instead of a Radix Sheet portal. Useful when the component is inside a container that should not be escaped. */
|
|
1017
|
+
useInlinePanel?: boolean;
|
|
1009
1018
|
}
|
|
1010
|
-
declare function ScoreAnalysisModal({ open, onOpenChange, title, description, score, denominator, whyNow, evidence, factors, onFactorFeedback, companyName, opportunityUrl, onApprove, onApproveFeedback, onDismiss, }: ScoreAnalysisModalProps): React
|
|
1019
|
+
declare function ScoreAnalysisModal({ open, onOpenChange, title, description, score, denominator, whyNow, evidence, factors, onFactorFeedback, companyName, opportunityUrl, onApprove, onApproveFeedback, onDismiss, useInlinePanel, }: ScoreAnalysisModalProps): React.JSX.Element | null;
|
|
1011
1020
|
declare const ScoreAnalysisPanel: typeof ScoreAnalysisModal;
|
|
1012
1021
|
|
|
1013
1022
|
interface SubmittedScoreFeedback {
|
|
@@ -1031,16 +1040,16 @@ interface ScoreFeedbackState {
|
|
|
1031
1040
|
}
|
|
1032
1041
|
declare function useScoreFeedback(): ScoreFeedbackState;
|
|
1033
1042
|
interface RootProps$1 {
|
|
1034
|
-
children: React
|
|
1043
|
+
children: React.ReactNode;
|
|
1035
1044
|
onSubmitFeedback?: (type: "up" | "down", pills: string[], detail: string) => void;
|
|
1036
1045
|
}
|
|
1037
|
-
declare function Root$1({ children, onSubmitFeedback }: RootProps$1): React
|
|
1046
|
+
declare function Root$1({ children, onSubmitFeedback }: RootProps$1): React.JSX.Element;
|
|
1038
1047
|
declare function Trigger({ className }: {
|
|
1039
1048
|
className?: string;
|
|
1040
|
-
}): React
|
|
1049
|
+
}): React.JSX.Element;
|
|
1041
1050
|
declare function Panel({ className }: {
|
|
1042
1051
|
className?: string;
|
|
1043
|
-
}): React
|
|
1052
|
+
}): React.JSX.Element | null;
|
|
1044
1053
|
declare const ScoreFeedback: {
|
|
1045
1054
|
Root: typeof Root$1;
|
|
1046
1055
|
Trigger: typeof Trigger;
|
|
@@ -1056,42 +1065,42 @@ interface ScoreRingProps {
|
|
|
1056
1065
|
className?: string;
|
|
1057
1066
|
showLabel?: boolean;
|
|
1058
1067
|
}
|
|
1059
|
-
declare function ScoreRing({ score, denominator, size, strokeWidth, className, showLabel, }: ScoreRingProps): React
|
|
1068
|
+
declare function ScoreRing({ score, denominator, size, strokeWidth, className, showLabel, }: ScoreRingProps): React.JSX.Element;
|
|
1060
1069
|
|
|
1061
|
-
declare function ScrollArea({ className, children, ...props }: React
|
|
1062
|
-
declare function ScrollBar({ className, orientation, ...props }: React
|
|
1070
|
+
declare function ScrollArea({ className, children, ...props }: React.ComponentProps<typeof ScrollArea$1.Root>): React.JSX.Element;
|
|
1071
|
+
declare function ScrollBar({ className, orientation, ...props }: React.ComponentProps<typeof ScrollArea$1.ScrollAreaScrollbar>): React.JSX.Element;
|
|
1063
1072
|
|
|
1064
|
-
declare function Select({ ...props }: React
|
|
1065
|
-
declare function SelectGroup({ ...props }: React
|
|
1066
|
-
declare function SelectValue({ ...props }: React
|
|
1067
|
-
declare function SelectTrigger({ className, size, children, ...props }: React
|
|
1073
|
+
declare function Select({ ...props }: React.ComponentProps<typeof Select$1.Root>): React.JSX.Element;
|
|
1074
|
+
declare function SelectGroup({ ...props }: React.ComponentProps<typeof Select$1.Group>): React.JSX.Element;
|
|
1075
|
+
declare function SelectValue({ ...props }: React.ComponentProps<typeof Select$1.Value>): React.JSX.Element;
|
|
1076
|
+
declare function SelectTrigger({ className, size, children, ...props }: React.ComponentProps<typeof Select$1.Trigger> & {
|
|
1068
1077
|
size?: "sm" | "default";
|
|
1069
|
-
}): React
|
|
1070
|
-
declare function SelectContent({ className, children, position, align, ...props }: React
|
|
1071
|
-
declare function SelectLabel({ className, ...props }: React
|
|
1072
|
-
declare function SelectItem({ className, children, ...props }: React
|
|
1073
|
-
declare function SelectSeparator({ className, ...props }: React
|
|
1074
|
-
declare function SelectScrollUpButton({ className, ...props }: React
|
|
1075
|
-
declare function SelectScrollDownButton({ className, ...props }: React
|
|
1076
|
-
|
|
1077
|
-
declare function Separator({ className, orientation, decorative, ...props }: React
|
|
1078
|
-
|
|
1079
|
-
declare function Sheet({ ...props }: React
|
|
1080
|
-
declare function SheetTrigger({ ...props }: React
|
|
1081
|
-
declare function SheetClose({ ...props }: React
|
|
1082
|
-
declare function SheetContent({ className, children, side, showCloseButton, ...props }: React
|
|
1078
|
+
}): React.JSX.Element;
|
|
1079
|
+
declare function SelectContent({ className, children, position, align, ...props }: React.ComponentProps<typeof Select$1.Content>): React.JSX.Element;
|
|
1080
|
+
declare function SelectLabel({ className, ...props }: React.ComponentProps<typeof Select$1.Label>): React.JSX.Element;
|
|
1081
|
+
declare function SelectItem({ className, children, ...props }: React.ComponentProps<typeof Select$1.Item>): React.JSX.Element;
|
|
1082
|
+
declare function SelectSeparator({ className, ...props }: React.ComponentProps<typeof Select$1.Separator>): React.JSX.Element;
|
|
1083
|
+
declare function SelectScrollUpButton({ className, ...props }: React.ComponentProps<typeof Select$1.ScrollUpButton>): React.JSX.Element;
|
|
1084
|
+
declare function SelectScrollDownButton({ className, ...props }: React.ComponentProps<typeof Select$1.ScrollDownButton>): React.JSX.Element;
|
|
1085
|
+
|
|
1086
|
+
declare function Separator({ className, orientation, decorative, ...props }: React.ComponentProps<typeof Separator$1.Root>): React.JSX.Element;
|
|
1087
|
+
|
|
1088
|
+
declare function Sheet({ ...props }: React.ComponentProps<typeof Dialog$1.Root>): React.JSX.Element;
|
|
1089
|
+
declare function SheetTrigger({ ...props }: React.ComponentProps<typeof Dialog$1.Trigger>): React.JSX.Element;
|
|
1090
|
+
declare function SheetClose({ ...props }: React.ComponentProps<typeof Dialog$1.Close>): React.JSX.Element;
|
|
1091
|
+
declare function SheetContent({ className, children, side, showCloseButton, ...props }: React.ComponentProps<typeof Dialog$1.Content> & {
|
|
1083
1092
|
side?: "top" | "right" | "bottom" | "left";
|
|
1084
1093
|
showCloseButton?: boolean;
|
|
1085
|
-
}): React
|
|
1086
|
-
declare function SheetHeader({ className, ...props }: React
|
|
1087
|
-
declare function SheetFooter({ className, ...props }: React
|
|
1088
|
-
declare function SheetTitle({ className, ...props }: React
|
|
1089
|
-
declare function SheetDescription({ className, ...props }: React
|
|
1094
|
+
}): React.JSX.Element;
|
|
1095
|
+
declare function SheetHeader({ className, ...props }: React.ComponentProps<"div">): React.JSX.Element;
|
|
1096
|
+
declare function SheetFooter({ className, ...props }: React.ComponentProps<"div">): React.JSX.Element;
|
|
1097
|
+
declare function SheetTitle({ className, ...props }: React.ComponentProps<typeof Dialog$1.Title>): React.JSX.Element;
|
|
1098
|
+
declare function SheetDescription({ className, ...props }: React.ComponentProps<typeof Dialog$1.Description>): React.JSX.Element;
|
|
1090
1099
|
|
|
1091
|
-
declare function TooltipProvider({ delayDuration, ...props }: React
|
|
1092
|
-
declare function Tooltip({ ...props }: React
|
|
1093
|
-
declare function TooltipTrigger({ ...props }: React
|
|
1094
|
-
declare function TooltipContent({ className, sideOffset, children, ...props }: React
|
|
1100
|
+
declare function TooltipProvider({ delayDuration, ...props }: React.ComponentProps<typeof Tooltip$1.Provider>): React.JSX.Element;
|
|
1101
|
+
declare function Tooltip({ ...props }: React.ComponentProps<typeof Tooltip$1.Root>): React.JSX.Element;
|
|
1102
|
+
declare function TooltipTrigger({ ...props }: React.ComponentProps<typeof Tooltip$1.Trigger>): React.JSX.Element;
|
|
1103
|
+
declare function TooltipContent({ className, sideOffset, children, ...props }: React.ComponentProps<typeof Tooltip$1.Content>): React.JSX.Element;
|
|
1095
1104
|
|
|
1096
1105
|
type SidebarContextProps = {
|
|
1097
1106
|
state: "expanded" | "collapsed";
|
|
@@ -1103,64 +1112,75 @@ type SidebarContextProps = {
|
|
|
1103
1112
|
toggleSidebar: () => void;
|
|
1104
1113
|
};
|
|
1105
1114
|
declare function useSidebar(): SidebarContextProps;
|
|
1106
|
-
declare function SidebarProvider({ defaultOpen, open: openProp, onOpenChange: setOpenProp, className, style, children, ...props }: React
|
|
1115
|
+
declare function SidebarProvider({ defaultOpen, open: openProp, onOpenChange: setOpenProp, className, style, children, ...props }: React.ComponentProps<"div"> & {
|
|
1107
1116
|
defaultOpen?: boolean;
|
|
1108
1117
|
open?: boolean;
|
|
1109
1118
|
onOpenChange?: (open: boolean) => void;
|
|
1110
|
-
}): React
|
|
1111
|
-
declare function Sidebar({ side, variant, collapsible, className, children, ...props }: React
|
|
1119
|
+
}): React.JSX.Element;
|
|
1120
|
+
declare function Sidebar({ side, variant, collapsible, className, children, ...props }: React.ComponentProps<"div"> & {
|
|
1112
1121
|
side?: "left" | "right";
|
|
1113
1122
|
variant?: "sidebar" | "floating" | "inset";
|
|
1114
1123
|
collapsible?: "offcanvas" | "icon" | "none";
|
|
1115
|
-
}): React
|
|
1116
|
-
declare function SidebarTrigger({ className, onClick, ...props }: React
|
|
1117
|
-
declare function SidebarRail({ className, ...props }: React
|
|
1118
|
-
declare function SidebarInset({ className, ...props }: React
|
|
1119
|
-
declare function SidebarInput({ className, ...props }: React
|
|
1120
|
-
declare function SidebarHeader({ className, ...props }: React
|
|
1121
|
-
declare function SidebarFooter({ className, ...props }: React
|
|
1122
|
-
declare function SidebarSeparator({ className, ...props }: React
|
|
1123
|
-
declare function SidebarContent({ className, ...props }: React
|
|
1124
|
-
declare function SidebarGroup({ className, ...props }: React
|
|
1125
|
-
declare function SidebarGroupLabel({ className, asChild, ...props }: React
|
|
1124
|
+
}): React.JSX.Element;
|
|
1125
|
+
declare function SidebarTrigger({ className, onClick, ...props }: React.ComponentProps<typeof Button>): React.JSX.Element;
|
|
1126
|
+
declare function SidebarRail({ className, ...props }: React.ComponentProps<"button">): React.JSX.Element;
|
|
1127
|
+
declare function SidebarInset({ className, ...props }: React.ComponentProps<"main">): React.JSX.Element;
|
|
1128
|
+
declare function SidebarInput({ className, ...props }: React.ComponentProps<typeof Input>): React.JSX.Element;
|
|
1129
|
+
declare function SidebarHeader({ className, ...props }: React.ComponentProps<"div">): React.JSX.Element;
|
|
1130
|
+
declare function SidebarFooter({ className, ...props }: React.ComponentProps<"div">): React.JSX.Element;
|
|
1131
|
+
declare function SidebarSeparator({ className, ...props }: React.ComponentProps<typeof Separator>): React.JSX.Element;
|
|
1132
|
+
declare function SidebarContent({ className, ...props }: React.ComponentProps<"div">): React.JSX.Element;
|
|
1133
|
+
declare function SidebarGroup({ className, ...props }: React.ComponentProps<"div">): React.JSX.Element;
|
|
1134
|
+
declare function SidebarGroupLabel({ className, asChild, ...props }: React.ComponentProps<"div"> & {
|
|
1126
1135
|
asChild?: boolean;
|
|
1127
|
-
}): React
|
|
1128
|
-
declare function SidebarGroupAction({ className, asChild, ...props }: React
|
|
1136
|
+
}): React.JSX.Element;
|
|
1137
|
+
declare function SidebarGroupAction({ className, asChild, ...props }: React.ComponentProps<"button"> & {
|
|
1129
1138
|
asChild?: boolean;
|
|
1130
|
-
}): React
|
|
1131
|
-
declare function SidebarGroupContent({ className, ...props }: React
|
|
1132
|
-
declare function SidebarMenu({ className, ...props }: React
|
|
1133
|
-
declare function SidebarMenuItem({ className, ...props }: React
|
|
1139
|
+
}): React.JSX.Element;
|
|
1140
|
+
declare function SidebarGroupContent({ className, ...props }: React.ComponentProps<"div">): React.JSX.Element;
|
|
1141
|
+
declare function SidebarMenu({ className, ...props }: React.ComponentProps<"ul">): React.JSX.Element;
|
|
1142
|
+
declare function SidebarMenuItem({ className, ...props }: React.ComponentProps<"li">): React.JSX.Element;
|
|
1134
1143
|
declare const sidebarMenuButtonVariants: (props?: ({
|
|
1135
1144
|
variant?: "default" | "outline" | null | undefined;
|
|
1136
1145
|
size?: "default" | "sm" | "lg" | null | undefined;
|
|
1137
1146
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
1138
|
-
declare function SidebarMenuButton({ asChild, isActive, variant, size, tooltip, className, ...props }: React
|
|
1147
|
+
declare function SidebarMenuButton({ asChild, isActive, variant, size, tooltip, className, ...props }: React.ComponentProps<"button"> & {
|
|
1139
1148
|
asChild?: boolean;
|
|
1140
1149
|
isActive?: boolean;
|
|
1141
|
-
tooltip?: string | React
|
|
1142
|
-
} & VariantProps<typeof sidebarMenuButtonVariants>): React
|
|
1143
|
-
declare function SidebarMenuAction({ className, asChild, showOnHover, ...props }: React
|
|
1150
|
+
tooltip?: string | React.ComponentProps<typeof TooltipContent>;
|
|
1151
|
+
} & VariantProps<typeof sidebarMenuButtonVariants>): React.JSX.Element;
|
|
1152
|
+
declare function SidebarMenuAction({ className, asChild, showOnHover, ...props }: React.ComponentProps<"button"> & {
|
|
1144
1153
|
asChild?: boolean;
|
|
1145
1154
|
showOnHover?: boolean;
|
|
1146
|
-
}): React
|
|
1147
|
-
declare function SidebarMenuBadge({ className, ...props }: React
|
|
1148
|
-
declare function SidebarMenuSkeleton({ className, showIcon, ...props }: React
|
|
1155
|
+
}): React.JSX.Element;
|
|
1156
|
+
declare function SidebarMenuBadge({ className, ...props }: React.ComponentProps<"div">): React.JSX.Element;
|
|
1157
|
+
declare function SidebarMenuSkeleton({ className, showIcon, ...props }: React.ComponentProps<"div"> & {
|
|
1149
1158
|
showIcon?: boolean;
|
|
1150
|
-
}): React
|
|
1151
|
-
declare function SidebarMenuSub({ className, ...props }: React
|
|
1152
|
-
declare function SidebarMenuSubItem({ className, ...props }: React
|
|
1153
|
-
declare function SidebarMenuSubButton({ asChild, size, isActive, className, ...props }: React
|
|
1159
|
+
}): React.JSX.Element;
|
|
1160
|
+
declare function SidebarMenuSub({ className, ...props }: React.ComponentProps<"ul">): React.JSX.Element;
|
|
1161
|
+
declare function SidebarMenuSubItem({ className, ...props }: React.ComponentProps<"li">): React.JSX.Element;
|
|
1162
|
+
declare function SidebarMenuSubButton({ asChild, size, isActive, className, ...props }: React.ComponentProps<"a"> & {
|
|
1154
1163
|
asChild?: boolean;
|
|
1155
1164
|
size?: "sm" | "md";
|
|
1156
1165
|
isActive?: boolean;
|
|
1157
|
-
}): React
|
|
1158
|
-
|
|
1159
|
-
type ApprovalState = "pending" | "confirming" | "approving-feedback" | "dismissing" | "approved" | "dismissed";
|
|
1166
|
+
}): React.JSX.Element;
|
|
1167
|
+
|
|
1168
|
+
type ApprovalState = "pending" | "confirming" | "approving-feedback" | "dismissing" | "approved" | "dismissed" | "auto-approved";
|
|
1169
|
+
interface SignalApprovalLabels {
|
|
1170
|
+
approveButton?: string;
|
|
1171
|
+
dismissButton?: string;
|
|
1172
|
+
approvedStatus?: string;
|
|
1173
|
+
dismissedStatus?: string;
|
|
1174
|
+
confirmPrompt?: string;
|
|
1175
|
+
dismissPrompt?: string;
|
|
1176
|
+
feedbackPrompt?: string;
|
|
1177
|
+
}
|
|
1160
1178
|
interface SignalApprovalContextValue {
|
|
1161
1179
|
approvalState: ApprovalState;
|
|
1162
1180
|
companyName: string;
|
|
1163
1181
|
opportunityUrl?: string;
|
|
1182
|
+
scheduledTime?: string;
|
|
1183
|
+
labels: Required<SignalApprovalLabels>;
|
|
1164
1184
|
approve: () => void;
|
|
1165
1185
|
submitApproveFeedback: (reasons: string[], detail: string) => void;
|
|
1166
1186
|
skipApproveFeedback: () => void;
|
|
@@ -1171,18 +1191,21 @@ interface SignalApprovalContextValue {
|
|
|
1171
1191
|
}
|
|
1172
1192
|
declare function useSignalApproval(): SignalApprovalContextValue;
|
|
1173
1193
|
interface RootProps {
|
|
1174
|
-
children: React
|
|
1194
|
+
children: React.ReactNode;
|
|
1175
1195
|
companyName: string;
|
|
1176
1196
|
opportunityUrl?: string;
|
|
1197
|
+
scheduledTime?: string;
|
|
1198
|
+
initialApprovalState?: ApprovalState;
|
|
1199
|
+
labels?: SignalApprovalLabels;
|
|
1177
1200
|
onApprove?: () => void;
|
|
1178
1201
|
onApproveFeedback?: (reasons: string[], detail: string) => void;
|
|
1179
1202
|
onDismiss?: (reasons: string[], detail: string) => void;
|
|
1180
1203
|
}
|
|
1181
|
-
declare function Root({ children, companyName, opportunityUrl, onApprove, onApproveFeedback, onDismiss }: RootProps): React
|
|
1182
|
-
declare function Actions(): React
|
|
1204
|
+
declare function Root({ children, companyName, opportunityUrl, scheduledTime, initialApprovalState, labels: labelOverrides, onApprove, onApproveFeedback, onDismiss }: RootProps): React.JSX.Element;
|
|
1205
|
+
declare function Actions(): React.JSX.Element;
|
|
1183
1206
|
declare function Gate({ children }: {
|
|
1184
|
-
children: React
|
|
1185
|
-
}): React
|
|
1207
|
+
children: React.ReactNode;
|
|
1208
|
+
}): React.JSX.Element;
|
|
1186
1209
|
|
|
1187
1210
|
declare const SignalApproval: {
|
|
1188
1211
|
Root: typeof Root;
|
|
@@ -1190,7 +1213,7 @@ declare const SignalApproval: {
|
|
|
1190
1213
|
Gate: typeof Gate;
|
|
1191
1214
|
};
|
|
1192
1215
|
|
|
1193
|
-
declare function Skeleton({ className, ...props }: React.ComponentProps<"div">): React
|
|
1216
|
+
declare function Skeleton({ className, ...props }: React.ComponentProps<"div">): React.JSX.Element;
|
|
1194
1217
|
|
|
1195
1218
|
interface StyledBarItem {
|
|
1196
1219
|
name: string;
|
|
@@ -1205,8 +1228,9 @@ interface StyledBarListProps {
|
|
|
1205
1228
|
showAnimation?: boolean;
|
|
1206
1229
|
showSubtitle?: boolean;
|
|
1207
1230
|
barColor?: string;
|
|
1231
|
+
barStyle?: React.CSSProperties;
|
|
1208
1232
|
}
|
|
1209
|
-
declare function StyledBarList({ data, valueFormatter, className, showAnimation, showSubtitle, barColor, }: StyledBarListProps): React
|
|
1233
|
+
declare function StyledBarList({ data, valueFormatter, className, showAnimation, showSubtitle, barColor, barStyle, }: StyledBarListProps): React.JSX.Element;
|
|
1210
1234
|
|
|
1211
1235
|
interface SuggestedActionsIconMap {
|
|
1212
1236
|
gmail?: string;
|
|
@@ -1268,9 +1292,16 @@ interface SuggestedActionCallMeta {
|
|
|
1268
1292
|
talkTrack: string;
|
|
1269
1293
|
allowDispatchAgent?: boolean;
|
|
1270
1294
|
}
|
|
1295
|
+
interface SuggestedActionManualMeta {
|
|
1296
|
+
taskDescription: string;
|
|
1297
|
+
}
|
|
1298
|
+
interface SuggestedActionBrowserMeta {
|
|
1299
|
+
url: string;
|
|
1300
|
+
actionDescription: string;
|
|
1301
|
+
}
|
|
1271
1302
|
interface SuggestedAction {
|
|
1272
1303
|
id: number | string;
|
|
1273
|
-
type: "email" | "ticket" | "slack" | "call";
|
|
1304
|
+
type: "email" | "ticket" | "slack" | "call" | "manual" | "browser";
|
|
1274
1305
|
label: string;
|
|
1275
1306
|
status: "pending" | "sent" | "dismissed";
|
|
1276
1307
|
content?: string;
|
|
@@ -1280,6 +1311,8 @@ interface SuggestedAction {
|
|
|
1280
1311
|
followUp?: SuggestedActionFollowUp;
|
|
1281
1312
|
emailMeta?: SuggestedActionEmailMeta;
|
|
1282
1313
|
callMeta?: SuggestedActionCallMeta;
|
|
1314
|
+
manualMeta?: SuggestedActionManualMeta;
|
|
1315
|
+
browserMeta?: SuggestedActionBrowserMeta;
|
|
1283
1316
|
}
|
|
1284
1317
|
interface SuggestedActionsProps {
|
|
1285
1318
|
actions: SuggestedAction[];
|
|
@@ -1288,34 +1321,42 @@ interface SuggestedActionsProps {
|
|
|
1288
1321
|
onSend?: (id: number | string) => void;
|
|
1289
1322
|
onSaveDraft?: (id: number | string) => void;
|
|
1290
1323
|
accountContacts?: SuggestedContact[];
|
|
1291
|
-
signature?: string;
|
|
1324
|
+
signature?: string | React.ReactNode;
|
|
1292
1325
|
onDuplicate?: (id: number | string) => void;
|
|
1293
1326
|
onOpenAccountDetails?: () => void;
|
|
1294
1327
|
onOpenRecentActivity?: () => void;
|
|
1295
1328
|
onMarkComplete?: (id: number | string) => void;
|
|
1296
|
-
onDispatchAgent?: (id: number | string
|
|
1329
|
+
onDispatchAgent?: (id: number | string, editedContent?: string, settings?: {
|
|
1330
|
+
aiDisclosureEnabled?: boolean;
|
|
1331
|
+
maxDurationMinutes?: string;
|
|
1332
|
+
callRecordingEnabled?: boolean;
|
|
1333
|
+
recordingNoticeEnabled?: boolean;
|
|
1334
|
+
}) => void;
|
|
1297
1335
|
iconMap?: SuggestedActionsIconMap;
|
|
1298
|
-
|
|
1299
|
-
|
|
1300
|
-
|
|
1301
|
-
|
|
1302
|
-
declare function
|
|
1303
|
-
|
|
1304
|
-
declare function
|
|
1305
|
-
declare function
|
|
1306
|
-
declare function
|
|
1307
|
-
declare function
|
|
1308
|
-
declare function
|
|
1309
|
-
|
|
1310
|
-
declare function
|
|
1336
|
+
sendLabel?: string;
|
|
1337
|
+
accountDetailsLabel?: string;
|
|
1338
|
+
dismissLabel?: string;
|
|
1339
|
+
}
|
|
1340
|
+
declare function SuggestedActions({ actions, title, onDismiss, onSend, onSaveDraft, accountContacts, signature, onDuplicate, onOpenAccountDetails, onOpenRecentActivity, onMarkComplete, onDispatchAgent, iconMap, sendLabel, accountDetailsLabel, dismissLabel, }: SuggestedActionsProps): React.JSX.Element;
|
|
1341
|
+
|
|
1342
|
+
declare function Table({ className, ...props }: React.ComponentProps<"table">): React.JSX.Element;
|
|
1343
|
+
declare function TableHeader({ className, ...props }: React.ComponentProps<"thead">): React.JSX.Element;
|
|
1344
|
+
declare function TableBody({ className, ...props }: React.ComponentProps<"tbody">): React.JSX.Element;
|
|
1345
|
+
declare function TableFooter({ className, ...props }: React.ComponentProps<"tfoot">): React.JSX.Element;
|
|
1346
|
+
declare function TableRow({ className, ...props }: React.ComponentProps<"tr">): React.JSX.Element;
|
|
1347
|
+
declare function TableHead({ className, ...props }: React.ComponentProps<"th">): React.JSX.Element;
|
|
1348
|
+
declare function TableCell({ className, ...props }: React.ComponentProps<"td">): React.JSX.Element;
|
|
1349
|
+
declare function TableCaption({ className, ...props }: React.ComponentProps<"caption">): React.JSX.Element;
|
|
1350
|
+
|
|
1351
|
+
declare function Tabs({ className, orientation, ...props }: React.ComponentProps<typeof Tabs$1.Root>): React.JSX.Element;
|
|
1311
1352
|
declare const tabsListVariants: (props?: ({
|
|
1312
1353
|
variant?: "default" | "line" | null | undefined;
|
|
1313
1354
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
1314
|
-
declare function TabsList({ className, variant, ...props }: React
|
|
1315
|
-
declare function TabsTrigger({ className, ...props }: React
|
|
1316
|
-
declare function TabsContent({ className, ...props }: React
|
|
1355
|
+
declare function TabsList({ className, variant, ...props }: React.ComponentProps<typeof Tabs$1.List> & VariantProps<typeof tabsListVariants>): React.JSX.Element;
|
|
1356
|
+
declare function TabsTrigger({ className, ...props }: React.ComponentProps<typeof Tabs$1.Trigger>): React.JSX.Element;
|
|
1357
|
+
declare function TabsContent({ className, ...props }: React.ComponentProps<typeof Tabs$1.Content>): React.JSX.Element;
|
|
1317
1358
|
|
|
1318
|
-
declare function Textarea({ className, ...props }: React
|
|
1359
|
+
declare function Textarea({ className, ...props }: React.ComponentProps<"textarea">): React.JSX.Element;
|
|
1319
1360
|
|
|
1320
1361
|
interface MetricCardData {
|
|
1321
1362
|
label: string;
|
|
@@ -1338,7 +1379,7 @@ interface TopLineMetricsProps {
|
|
|
1338
1379
|
onFilterChange?: (filter: string) => void;
|
|
1339
1380
|
className?: string;
|
|
1340
1381
|
}
|
|
1341
|
-
declare function TopLineMetrics({ metrics, chartData, filters, activeFilter, onFilterChange, className, }: TopLineMetricsProps): React
|
|
1382
|
+
declare function TopLineMetrics({ metrics, chartData, filters, activeFilter, onFilterChange, className, }: TopLineMetricsProps): React.JSX.Element;
|
|
1342
1383
|
|
|
1343
1384
|
interface TrendSeries {
|
|
1344
1385
|
dataKey: string;
|
|
@@ -1356,11 +1397,11 @@ interface TrendAreaChartProps {
|
|
|
1356
1397
|
tooltipFormatter?: (value: number | string, name: string) => [string, string];
|
|
1357
1398
|
className?: string;
|
|
1358
1399
|
}
|
|
1359
|
-
declare function TrendAreaChart({ data, series, height, xAxisKey, showGrid, yDomain, tooltipFormatter, className, }: TrendAreaChartProps): React
|
|
1400
|
+
declare function TrendAreaChart({ data, series, height, xAxisKey, showGrid, yDomain, tooltipFormatter, className, }: TrendAreaChartProps): React.JSX.Element;
|
|
1360
1401
|
|
|
1361
1402
|
interface ViewMode {
|
|
1362
1403
|
id: string;
|
|
1363
|
-
icon: React
|
|
1404
|
+
icon: React.ReactNode;
|
|
1364
1405
|
label: string;
|
|
1365
1406
|
}
|
|
1366
1407
|
interface ViewModeToggleProps {
|
|
@@ -1369,7 +1410,7 @@ interface ViewModeToggleProps {
|
|
|
1369
1410
|
onModeChange: (modeId: string) => void;
|
|
1370
1411
|
className?: string;
|
|
1371
1412
|
}
|
|
1372
|
-
declare function ViewModeToggle({ modes, activeMode, onModeChange, className }: ViewModeToggleProps): React
|
|
1413
|
+
declare function ViewModeToggle({ modes, activeMode, onModeChange, className }: ViewModeToggleProps): React.JSX.Element;
|
|
1373
1414
|
|
|
1374
1415
|
interface VolumeDataKey {
|
|
1375
1416
|
key: string;
|
|
@@ -1385,7 +1426,7 @@ interface VolumeAnalysisChartProps {
|
|
|
1385
1426
|
subtitle?: string;
|
|
1386
1427
|
className?: string;
|
|
1387
1428
|
}
|
|
1388
|
-
declare function VolumeAnalysisChart({ data, dataKeys, height, xAxisKey, stacked, title, subtitle, className, }: VolumeAnalysisChartProps): React
|
|
1429
|
+
declare function VolumeAnalysisChart({ data, dataKeys, height, xAxisKey, stacked, title, subtitle, className, }: VolumeAnalysisChartProps): React.JSX.Element;
|
|
1389
1430
|
|
|
1390
1431
|
interface PrototypeBrandConfig {
|
|
1391
1432
|
name: string;
|
|
@@ -1422,7 +1463,7 @@ interface InboxViewConfig {
|
|
|
1422
1463
|
detailSections?: InboxDetailSections;
|
|
1423
1464
|
accountContacts?: SuggestedContact[];
|
|
1424
1465
|
buildAccountContacts?: (item: QueueItem) => SuggestedContact[];
|
|
1425
|
-
emailSignature?: string;
|
|
1466
|
+
emailSignature?: string | React.ReactNode;
|
|
1426
1467
|
buildSuggestedActions?: (item: QueueItem) => SuggestedAction[];
|
|
1427
1468
|
buildSourceItems?: (item: QueueItem) => SourceDef[];
|
|
1428
1469
|
getSignalScore?: (company: string) => SignalScoreData;
|
|
@@ -1431,14 +1472,33 @@ interface InboxViewConfig {
|
|
|
1431
1472
|
hideToolbarActions?: boolean;
|
|
1432
1473
|
hideHoverActions?: boolean;
|
|
1433
1474
|
onSuggestedActionFeedback?: (actionId: number | string, feedback: string, actionTitle?: string) => void;
|
|
1475
|
+
buildEntityChips?: (item: QueueItem) => Array<{
|
|
1476
|
+
id: string;
|
|
1477
|
+
label: string;
|
|
1478
|
+
avatarLetter: string;
|
|
1479
|
+
onClick?: () => void;
|
|
1480
|
+
}>;
|
|
1481
|
+
quickFilterTabs?: Array<{
|
|
1482
|
+
id: string;
|
|
1483
|
+
label: string;
|
|
1484
|
+
count?: number;
|
|
1485
|
+
}>;
|
|
1486
|
+
hideAccountsButton?: boolean;
|
|
1487
|
+
accountDetailsLabel?: string;
|
|
1488
|
+
signalLabels?: {
|
|
1489
|
+
approveButton?: string;
|
|
1490
|
+
dismissButton?: string;
|
|
1491
|
+
approvedStatus?: string;
|
|
1492
|
+
dismissedStatus?: string;
|
|
1493
|
+
};
|
|
1434
1494
|
}
|
|
1435
1495
|
interface InsightsCustomTab {
|
|
1436
1496
|
id: string;
|
|
1437
1497
|
label: string;
|
|
1438
|
-
icon?: React
|
|
1498
|
+
icon?: React.ComponentType<{
|
|
1439
1499
|
className?: string;
|
|
1440
1500
|
}>;
|
|
1441
|
-
content: React
|
|
1501
|
+
content: React.ReactNode;
|
|
1442
1502
|
}
|
|
1443
1503
|
interface InsightsViewConfig {
|
|
1444
1504
|
customTabs?: InsightsCustomTab[];
|
|
@@ -1538,16 +1598,16 @@ interface WorkQueueViewConfig {
|
|
|
1538
1598
|
interface AdminTab {
|
|
1539
1599
|
id: string;
|
|
1540
1600
|
label: string;
|
|
1541
|
-
icon?: React
|
|
1601
|
+
icon?: React.ComponentType<{
|
|
1542
1602
|
className?: string;
|
|
1543
1603
|
}>;
|
|
1544
|
-
content: React
|
|
1604
|
+
content: React.ReactNode;
|
|
1545
1605
|
}
|
|
1546
1606
|
interface AdminViewConfig {
|
|
1547
1607
|
/** View title displayed in the header. Defaults to "Admin". */
|
|
1548
1608
|
title?: string;
|
|
1549
1609
|
/** Icon displayed next to the title. */
|
|
1550
|
-
icon?: React
|
|
1610
|
+
icon?: React.ComponentType<{
|
|
1551
1611
|
className?: string;
|
|
1552
1612
|
}>;
|
|
1553
1613
|
tabs: AdminTab[];
|
|
@@ -1584,15 +1644,15 @@ interface PrototypeShellProps {
|
|
|
1584
1644
|
* Optional ReactNode rendered in the header area of each view.
|
|
1585
1645
|
* Useful for adding an "Exit Preview" button in the design system showcase.
|
|
1586
1646
|
*/
|
|
1587
|
-
headerActions?: React
|
|
1647
|
+
headerActions?: React.ReactNode;
|
|
1588
1648
|
/**
|
|
1589
1649
|
* Custom content to render inside the EntityPanel.
|
|
1590
1650
|
* When provided, overrides the default section-based rendering.
|
|
1591
1651
|
* Receives `onClose` so children can close the panel.
|
|
1592
1652
|
*/
|
|
1593
|
-
entityPanelChildren?: React
|
|
1653
|
+
entityPanelChildren?: React.ReactNode | ((ctx: {
|
|
1594
1654
|
onClose: () => void;
|
|
1595
|
-
}) => React
|
|
1655
|
+
}) => React.ReactNode);
|
|
1596
1656
|
/**
|
|
1597
1657
|
* Fired on every sidebar navigation click (both navigable and non-navigable views).
|
|
1598
1658
|
* Useful for intercepting clicks on product-specific views like "settings"
|
|
@@ -1600,72 +1660,95 @@ interface PrototypeShellProps {
|
|
|
1600
1660
|
*/
|
|
1601
1661
|
onNavigate?: (viewId: string) => void;
|
|
1602
1662
|
}
|
|
1603
|
-
declare function PrototypeShell({ config, headerActions, entityPanelChildren, onNavigate, }: PrototypeShellProps): React
|
|
1663
|
+
declare function PrototypeShell({ config, headerActions, entityPanelChildren, onNavigate, }: PrototypeShellProps): React.JSX.Element;
|
|
1604
1664
|
|
|
1605
1665
|
interface PrototypeInboxViewProps extends InboxViewConfig {
|
|
1606
1666
|
/** Extra ReactNode rendered at the end of the header bar (e.g. exit button). */
|
|
1607
|
-
headerActions?: React
|
|
1667
|
+
headerActions?: React.ReactNode;
|
|
1608
1668
|
onOpenEntityPanel?: () => void;
|
|
1609
1669
|
onOpenRecentActivity?: () => void;
|
|
1610
1670
|
onNavigateToInbox?: () => void;
|
|
1671
|
+
onItemSelect?: (item: QueueItem) => void;
|
|
1672
|
+
defaultViewMode?: "list" | "split";
|
|
1673
|
+
}
|
|
1674
|
+
interface DetailViewProps {
|
|
1675
|
+
item: QueueItem;
|
|
1676
|
+
sections: InboxDetailSections;
|
|
1677
|
+
getSignalScore: (company: string) => SignalScoreData;
|
|
1678
|
+
buildSuggestedActions: (item: QueueItem) => SuggestedAction[];
|
|
1679
|
+
buildSourceItems: (item: QueueItem) => SourceDef[];
|
|
1680
|
+
getTimelineEvents?: (item: QueueItem) => TimelineEvent[];
|
|
1681
|
+
accountContacts: SuggestedContact[];
|
|
1682
|
+
emailSignature: string | React.ReactNode;
|
|
1683
|
+
iconMap: Record<string, string>;
|
|
1684
|
+
onOpenEntityPanel?: () => void;
|
|
1685
|
+
onOpenRecentActivity?: () => void;
|
|
1686
|
+
onSuggestedActionFeedback?: (actionId: number | string, feedback: string, actionTitle?: string) => void;
|
|
1687
|
+
signalLabels?: {
|
|
1688
|
+
approveButton?: string;
|
|
1689
|
+
dismissButton?: string;
|
|
1690
|
+
approvedStatus?: string;
|
|
1691
|
+
dismissedStatus?: string;
|
|
1692
|
+
};
|
|
1611
1693
|
}
|
|
1612
|
-
declare function
|
|
1694
|
+
declare function DetailView({ item, sections, getSignalScore, buildSuggestedActions, buildSourceItems, getTimelineEvents, accountContacts, emailSignature, iconMap, onOpenEntityPanel, onOpenRecentActivity, onSuggestedActionFeedback, signalLabels, }: DetailViewProps): React.JSX.Element;
|
|
1695
|
+
declare function PrototypeInboxView({ items, filterCategories, detailSections, accountContacts, buildAccountContacts, emailSignature, buildSuggestedActions: buildSuggestedActionsProp, buildSourceItems: buildSourceItemsProp, getSignalScore: getSignalScoreProp, getTimelineEvents, iconMap, hideToolbarActions, hideHoverActions, onSuggestedActionFeedback, headerActions, onOpenEntityPanel, onOpenRecentActivity, onItemSelect, defaultViewMode, buildEntityChips, quickFilterTabs, hideAccountsButton, accountDetailsLabel, signalLabels, }: PrototypeInboxViewProps): React.JSX.Element;
|
|
1613
1696
|
|
|
1614
1697
|
interface PrototypeInsightsViewProps extends InsightsViewConfig {
|
|
1615
1698
|
assistantName?: string;
|
|
1616
|
-
headerActions?: React
|
|
1699
|
+
headerActions?: React.ReactNode;
|
|
1617
1700
|
onNavigateToInbox?: () => void;
|
|
1618
1701
|
}
|
|
1619
|
-
declare function PrototypeInsightsView({ tabs, coaching, metrics, expandedMetrics, dashboardCards, analytics, assistantName, headerActions, onNavigateToInbox, customTabs, }: PrototypeInsightsViewProps): React
|
|
1702
|
+
declare function PrototypeInsightsView({ tabs, coaching, metrics, expandedMetrics, dashboardCards, analytics, assistantName, headerActions, onNavigateToInbox, customTabs, }: PrototypeInsightsViewProps): React.JSX.Element;
|
|
1620
1703
|
|
|
1621
1704
|
interface PrototypeAccountsViewProps extends AccountsViewConfig {
|
|
1622
|
-
headerActions?: React
|
|
1705
|
+
headerActions?: React.ReactNode;
|
|
1623
1706
|
onRowClick?: () => void;
|
|
1624
1707
|
}
|
|
1625
|
-
declare function PrototypeAccountsView({ filterTabs, headerActions, onRowClick, rows, filterCategories, quickViews, moreQuickViews, quickViewFilters, iconMap, entityUrlBuilder, onScoreFactorFeedback, onScoreApproveFeedback, onScoreDismissFeedback, }: PrototypeAccountsViewProps): React
|
|
1708
|
+
declare function PrototypeAccountsView({ filterTabs, headerActions, onRowClick, rows, filterCategories, quickViews, moreQuickViews, quickViewFilters, iconMap, entityUrlBuilder, onScoreFactorFeedback, onScoreApproveFeedback, onScoreDismissFeedback, }: PrototypeAccountsViewProps): React.JSX.Element;
|
|
1626
1709
|
|
|
1627
1710
|
interface PrototypeAdminViewProps extends AdminViewConfig {
|
|
1628
|
-
headerActions?: React
|
|
1711
|
+
headerActions?: React.ReactNode;
|
|
1629
1712
|
}
|
|
1630
|
-
declare function PrototypeAdminView({ title, icon: Icon, tabs, defaultTab, headerActions, }: PrototypeAdminViewProps): React
|
|
1713
|
+
declare function PrototypeAdminView({ title, icon: Icon, tabs, defaultTab, headerActions, }: PrototypeAdminViewProps): React.JSX.Element | null;
|
|
1631
1714
|
|
|
1632
1715
|
interface PrototypeWorkQueueViewProps {
|
|
1633
|
-
headerActions?: React
|
|
1716
|
+
headerActions?: React.ReactNode;
|
|
1634
1717
|
}
|
|
1635
|
-
declare function PrototypeWorkQueueView({ headerActions, }: PrototypeWorkQueueViewProps): React
|
|
1718
|
+
declare function PrototypeWorkQueueView({ headerActions, }: PrototypeWorkQueueViewProps): React.JSX.Element;
|
|
1636
1719
|
|
|
1637
1720
|
type MessageProps = HTMLAttributes<HTMLDivElement> & {
|
|
1638
1721
|
from: "user" | "assistant";
|
|
1639
1722
|
};
|
|
1640
|
-
declare const Message: ({ className, from, ...props }: MessageProps) => React
|
|
1723
|
+
declare const Message: ({ className, from, ...props }: MessageProps) => React.JSX.Element;
|
|
1641
1724
|
declare const messageContentVariants: (props?: ({
|
|
1642
1725
|
variant?: "flat" | "contained" | null | undefined;
|
|
1643
1726
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
1644
1727
|
type MessageContentProps = HTMLAttributes<HTMLDivElement> & VariantProps<typeof messageContentVariants>;
|
|
1645
|
-
declare const MessageContent: ({ children, className, variant, ...props }: MessageContentProps) => React
|
|
1728
|
+
declare const MessageContent: ({ children, className, variant, ...props }: MessageContentProps) => React.JSX.Element;
|
|
1646
1729
|
type MessageAvatarProps = ComponentProps<typeof Avatar> & {
|
|
1647
1730
|
src?: string;
|
|
1648
1731
|
name?: string;
|
|
1649
1732
|
};
|
|
1650
|
-
declare const MessageAvatar: ({ src, name, className, children, ...props }: MessageAvatarProps) => React
|
|
1733
|
+
declare const MessageAvatar: ({ src, name, className, children, ...props }: MessageAvatarProps) => React.JSX.Element;
|
|
1651
1734
|
|
|
1652
1735
|
type StatusType = "success" | "warning" | "error" | "neutral";
|
|
1653
|
-
interface StatusBadgeProps extends React
|
|
1736
|
+
interface StatusBadgeProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
1654
1737
|
status: string;
|
|
1655
1738
|
statusMap?: Record<string, StatusType>;
|
|
1656
1739
|
}
|
|
1657
|
-
declare function StatusBadge({ status, statusMap, className, ...props }: StatusBadgeProps): React
|
|
1740
|
+
declare function StatusBadge({ status, statusMap, className, ...props }: StatusBadgeProps): React.JSX.Element;
|
|
1658
1741
|
|
|
1659
1742
|
interface SimpleDataTableProps<TData> {
|
|
1660
1743
|
columns: ColumnDef<TData, any>[];
|
|
1661
1744
|
data: TData[];
|
|
1662
1745
|
onRowClick?: (row: TData) => void;
|
|
1663
|
-
emptyIcon?: React
|
|
1746
|
+
emptyIcon?: React.ReactNode;
|
|
1664
1747
|
emptyMessage?: string;
|
|
1665
1748
|
emptyDescription?: string;
|
|
1666
1749
|
className?: string;
|
|
1667
1750
|
}
|
|
1668
|
-
declare function SimpleDataTable<TData>({ columns, data, onRowClick, emptyIcon, emptyMessage, emptyDescription, className, }: SimpleDataTableProps<TData>): React
|
|
1751
|
+
declare function SimpleDataTable<TData>({ columns, data, onRowClick, emptyIcon, emptyMessage, emptyDescription, className, }: SimpleDataTableProps<TData>): React.JSX.Element;
|
|
1669
1752
|
|
|
1670
1753
|
type AgentOrbState = null | "thinking" | "listening" | "talking";
|
|
1671
1754
|
interface AgentOrbProps {
|
|
@@ -1686,7 +1769,7 @@ interface AgentOrbProps {
|
|
|
1686
1769
|
* Full AgentOrb with optional CSS glow wrapper.
|
|
1687
1770
|
* Colors default to CSS `--primary` via computed style at mount time.
|
|
1688
1771
|
*/
|
|
1689
|
-
declare function AgentOrb({ state, colors, volumeMode, manualInput, manualOutput, inputVolumeRef, outputVolumeRef, getInputVolume, getOutputVolume, seed, showGlow, className, }: AgentOrbProps): React
|
|
1772
|
+
declare function AgentOrb({ state, colors, volumeMode, manualInput, manualOutput, inputVolumeRef, outputVolumeRef, getInputVolume, getOutputVolume, seed, showGlow, className, }: AgentOrbProps): React.JSX.Element;
|
|
1690
1773
|
interface AgentOrbCanvasProps {
|
|
1691
1774
|
colors?: [string, string];
|
|
1692
1775
|
seed?: number;
|
|
@@ -1701,7 +1784,7 @@ interface AgentOrbCanvasProps {
|
|
|
1701
1784
|
className?: string;
|
|
1702
1785
|
resizeDebounce?: number;
|
|
1703
1786
|
}
|
|
1704
|
-
declare function AgentOrbCanvas({ colors, seed, agentState, volumeMode, manualInput, manualOutput, inputVolumeRef, outputVolumeRef, getInputVolume, getOutputVolume, className, resizeDebounce, }: AgentOrbCanvasProps): React
|
|
1787
|
+
declare function AgentOrbCanvas({ colors, seed, agentState, volumeMode, manualInput, manualOutput, inputVolumeRef, outputVolumeRef, getInputVolume, getOutputVolume, className, resizeDebounce, }: AgentOrbCanvasProps): React.JSX.Element;
|
|
1705
1788
|
|
|
1706
1789
|
type AgentWidgetStatus = "idle" | "connecting" | "connected" | "error";
|
|
1707
1790
|
type AgentWidgetMode = "listening" | "speaking" | null;
|
|
@@ -1716,13 +1799,13 @@ interface AgentWidgetProps {
|
|
|
1716
1799
|
onSendMessage?: (text: string) => void;
|
|
1717
1800
|
onEndSession?: () => void;
|
|
1718
1801
|
inputMode?: "voice" | "text" | "voice+text";
|
|
1719
|
-
visualSlot?: React
|
|
1720
|
-
assistantAvatarSlot?: React
|
|
1721
|
-
header?: React
|
|
1722
|
-
footer?: React
|
|
1802
|
+
visualSlot?: React.ReactNode;
|
|
1803
|
+
assistantAvatarSlot?: React.ReactNode;
|
|
1804
|
+
header?: React.ReactNode;
|
|
1805
|
+
footer?: React.ReactNode;
|
|
1723
1806
|
className?: string;
|
|
1724
1807
|
}
|
|
1725
|
-
declare function AgentWidget({ status, mode, messages, onSendMessage, onEndSession, inputMode, visualSlot, assistantAvatarSlot, header, footer, className, }: AgentWidgetProps): React
|
|
1808
|
+
declare function AgentWidget({ status, mode, messages, onSendMessage, onEndSession, inputMode, visualSlot, assistantAvatarSlot, header, footer, className, }: AgentWidgetProps): React.JSX.Element;
|
|
1726
1809
|
|
|
1727
1810
|
type AgentPopoverStep = string;
|
|
1728
1811
|
interface AgentPopoverContextValue {
|
|
@@ -1736,26 +1819,26 @@ interface AgentPopoverProps {
|
|
|
1736
1819
|
defaultStep?: string;
|
|
1737
1820
|
step?: string;
|
|
1738
1821
|
onStepChange?: (step: string) => void;
|
|
1739
|
-
children: React
|
|
1822
|
+
children: React.ReactNode;
|
|
1740
1823
|
className?: string;
|
|
1741
1824
|
}
|
|
1742
|
-
declare function AgentPopover({ open, onOpenChange, defaultStep, step: controlledStep, onStepChange, children, className, }: AgentPopoverProps): React
|
|
1825
|
+
declare function AgentPopover({ open, onOpenChange, defaultStep, step: controlledStep, onStepChange, children, className, }: AgentPopoverProps): React.JSX.Element | null;
|
|
1743
1826
|
type ConnectionStatus = "ready" | "connected" | "listening" | "speaking";
|
|
1744
1827
|
interface AgentPopoverBrandingProps {
|
|
1745
1828
|
title?: string;
|
|
1746
1829
|
subtitle?: string;
|
|
1747
1830
|
badge?: string;
|
|
1748
|
-
visualSlot?: React
|
|
1831
|
+
visualSlot?: React.ReactNode;
|
|
1749
1832
|
statusIndicator?: ConnectionStatus;
|
|
1750
1833
|
className?: string;
|
|
1751
1834
|
}
|
|
1752
|
-
declare function AgentPopoverBranding({ title, subtitle, badge, visualSlot, statusIndicator, className, }: AgentPopoverBrandingProps): React
|
|
1835
|
+
declare function AgentPopoverBranding({ title, subtitle, badge, visualSlot, statusIndicator, className, }: AgentPopoverBrandingProps): React.JSX.Element;
|
|
1753
1836
|
interface AgentPopoverStepContentProps {
|
|
1754
1837
|
step: string;
|
|
1755
|
-
children: React
|
|
1838
|
+
children: React.ReactNode;
|
|
1756
1839
|
className?: string;
|
|
1757
1840
|
}
|
|
1758
|
-
declare function AgentPopoverStepContent({ step, children, className }: AgentPopoverStepContentProps): React
|
|
1841
|
+
declare function AgentPopoverStepContent({ step, children, className }: AgentPopoverStepContentProps): React.JSX.Element | null;
|
|
1759
1842
|
interface AgentPopoverFormField {
|
|
1760
1843
|
name: string;
|
|
1761
1844
|
label: string;
|
|
@@ -1768,27 +1851,27 @@ interface AgentPopoverFormProps {
|
|
|
1768
1851
|
submitLabel?: string;
|
|
1769
1852
|
onSubmit?: (values: Record<string, string>) => void;
|
|
1770
1853
|
className?: string;
|
|
1771
|
-
children?: React
|
|
1854
|
+
children?: React.ReactNode;
|
|
1772
1855
|
}
|
|
1773
|
-
declare function AgentPopoverForm({ fields, submitLabel, onSubmit, className, children, }: AgentPopoverFormProps): React
|
|
1856
|
+
declare function AgentPopoverForm({ fields, submitLabel, onSubmit, className, children, }: AgentPopoverFormProps): React.JSX.Element;
|
|
1774
1857
|
interface AgentPopoverOverviewProps {
|
|
1775
1858
|
userSummary?: Record<string, string>;
|
|
1776
1859
|
discussionPoints?: string[];
|
|
1777
|
-
actions?: React
|
|
1860
|
+
actions?: React.ReactNode;
|
|
1778
1861
|
className?: string;
|
|
1779
1862
|
}
|
|
1780
|
-
declare function AgentPopoverOverview({ userSummary, discussionPoints, actions, className, }: AgentPopoverOverviewProps): React
|
|
1863
|
+
declare function AgentPopoverOverview({ userSummary, discussionPoints, actions, className, }: AgentPopoverOverviewProps): React.JSX.Element;
|
|
1781
1864
|
interface AgentPopoverChatProps {
|
|
1782
1865
|
messages?: AgentWidgetMessage[];
|
|
1783
1866
|
onSendMessage?: (text: string) => void;
|
|
1784
1867
|
onEndSession?: () => void;
|
|
1785
1868
|
inputMode?: "voice" | "text" | "voice+text";
|
|
1786
|
-
visualSlot?: React
|
|
1787
|
-
assistantAvatarSlot?: React
|
|
1869
|
+
visualSlot?: React.ReactNode;
|
|
1870
|
+
assistantAvatarSlot?: React.ReactNode;
|
|
1788
1871
|
status?: AgentWidgetStatus;
|
|
1789
1872
|
mode?: AgentWidgetMode;
|
|
1790
1873
|
className?: string;
|
|
1791
1874
|
}
|
|
1792
|
-
declare function AgentPopoverChat({ messages, onSendMessage, onEndSession, inputMode, visualSlot, assistantAvatarSlot, status, mode, className, }: AgentPopoverChatProps): React
|
|
1875
|
+
declare function AgentPopoverChat({ messages, onSendMessage, onEndSession, inputMode, visualSlot, assistantAvatarSlot, status, mode, className, }: AgentPopoverChatProps): React.JSX.Element;
|
|
1793
1876
|
|
|
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 };
|
|
1877
|
+
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 ApprovalState, 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, DetailView, DetailViewHeader, type DetailViewProps, 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, type SignalApprovalContextValue, Gate as SignalApprovalGate, type SignalApprovalLabels, Root as SignalApprovalRoot, type RootProps as SignalApprovalRootProps, 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 SuggestedActionBrowserMeta, type SuggestedActionCallMeta, type SuggestedActionEmailMeta, type SuggestedActionFollowUp, type SuggestedActionManualMeta, 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 };
|