@handled-ai/design-system 0.5.1 → 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 +455 -329
- package/dist/index.js +1721 -1446
- 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,14 +231,29 @@ 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
|
+
|
|
243
|
+
interface DataTableFilterCategory {
|
|
244
|
+
id: string;
|
|
245
|
+
label: string;
|
|
246
|
+
icon: React.ComponentType<{
|
|
247
|
+
className?: string;
|
|
248
|
+
}>;
|
|
249
|
+
options: string[];
|
|
250
|
+
}
|
|
251
|
+
interface DataTableFilterProps {
|
|
252
|
+
categories: DataTableFilterCategory[];
|
|
253
|
+
selectedFilters: Record<string, string[]>;
|
|
254
|
+
onToggleFilter: (categoryId: string, option: string) => void;
|
|
255
|
+
}
|
|
256
|
+
declare function DataTableFilter({ categories, selectedFilters, onToggleFilter, }: DataTableFilterProps): React.JSX.Element;
|
|
242
257
|
|
|
243
258
|
type DataRow = {
|
|
244
259
|
id: string;
|
|
@@ -258,9 +273,22 @@ type DataRow = {
|
|
|
258
273
|
opportunityCount: number;
|
|
259
274
|
productAdoptionScore: number;
|
|
260
275
|
};
|
|
261
|
-
|
|
276
|
+
interface DataTableProps {
|
|
262
277
|
onRowClick?: (row: DataRow) => void;
|
|
263
|
-
|
|
278
|
+
rows?: DataRow[];
|
|
279
|
+
filterCategories?: DataTableFilterCategory[];
|
|
280
|
+
quickViews?: string[];
|
|
281
|
+
moreQuickViews?: string[];
|
|
282
|
+
quickViewFilters?: Record<string, (row: DataRow) => boolean>;
|
|
283
|
+
iconMap?: {
|
|
284
|
+
salesforce?: string;
|
|
285
|
+
};
|
|
286
|
+
entityUrlBuilder?: (row: DataRow) => string;
|
|
287
|
+
onScoreFactorFeedback?: (account: string, scoreType: string, factorKey: string, type: "up" | "down" | null, detail?: string) => void;
|
|
288
|
+
onScoreApproveFeedback?: (account: string, scoreType: string, reasons: string[], detail: string) => void;
|
|
289
|
+
onScoreDismissFeedback?: (account: string, scoreType: string, reasons: string[], detail: string) => void;
|
|
290
|
+
}
|
|
291
|
+
declare function DataTable({ onRowClick, rows: rowsProp, filterCategories: filterCategoriesProp, quickViews: quickViewsProp, moreQuickViews: moreQuickViewsProp, quickViewFilters: quickViewFiltersProp, iconMap, entityUrlBuilder, onScoreFactorFeedback, onScoreApproveFeedback, onScoreDismissFeedback, }?: DataTableProps): React.JSX.Element;
|
|
264
292
|
|
|
265
293
|
interface DataTableDisplayColumn {
|
|
266
294
|
id: string;
|
|
@@ -275,22 +303,7 @@ interface DataTableDisplayProps {
|
|
|
275
303
|
onToggleColumn: (columnId: string) => void;
|
|
276
304
|
onReset: () => void;
|
|
277
305
|
}
|
|
278
|
-
declare function DataTableDisplay({ sorting, onSortingChange, columns, onToggleColumn, onReset, }: DataTableDisplayProps): React
|
|
279
|
-
|
|
280
|
-
interface DataTableFilterCategory {
|
|
281
|
-
id: string;
|
|
282
|
-
label: string;
|
|
283
|
-
icon: React$1.ComponentType<{
|
|
284
|
-
className?: string;
|
|
285
|
-
}>;
|
|
286
|
-
options: string[];
|
|
287
|
-
}
|
|
288
|
-
interface DataTableFilterProps {
|
|
289
|
-
categories: DataTableFilterCategory[];
|
|
290
|
-
selectedFilters: Record<string, string[]>;
|
|
291
|
-
onToggleFilter: (categoryId: string, option: string) => void;
|
|
292
|
-
}
|
|
293
|
-
declare function DataTableFilter({ categories, selectedFilters, onToggleFilter, }: DataTableFilterProps): React$1.JSX.Element;
|
|
306
|
+
declare function DataTableDisplay({ sorting, onSortingChange, columns, onToggleColumn, onReset, }: DataTableDisplayProps): React.JSX.Element;
|
|
294
307
|
|
|
295
308
|
type DataTableQuickViewValue = string | null;
|
|
296
309
|
interface DataTableQuickViewsProps {
|
|
@@ -300,7 +313,7 @@ interface DataTableQuickViewsProps {
|
|
|
300
313
|
onViewChange: (next: DataTableQuickViewValue) => void;
|
|
301
314
|
className?: string;
|
|
302
315
|
}
|
|
303
|
-
declare function DataTableQuickViews({ quickViews, moreViews, activeView, onViewChange, className, }: DataTableQuickViewsProps): React
|
|
316
|
+
declare function DataTableQuickViews({ quickViews, moreViews, activeView, onViewChange, className, }: DataTableQuickViewsProps): React.JSX.Element;
|
|
304
317
|
|
|
305
318
|
interface DataTableToolbarProps {
|
|
306
319
|
categories: DataTableFilterCategory[];
|
|
@@ -312,20 +325,20 @@ interface DataTableToolbarProps {
|
|
|
312
325
|
onToggleColumn: (columnId: string) => void;
|
|
313
326
|
onResetDisplay: () => void;
|
|
314
327
|
}
|
|
315
|
-
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;
|
|
316
329
|
|
|
317
330
|
declare function DetailViewHeader({ title, breadcrumbs, badges, onBack, }: {
|
|
318
331
|
title: string;
|
|
319
|
-
breadcrumbs: React
|
|
320
|
-
badges: React
|
|
332
|
+
breadcrumbs: React.ReactNode;
|
|
333
|
+
badges: React.ReactNode;
|
|
321
334
|
onBack?: () => void;
|
|
322
|
-
}): React
|
|
335
|
+
}): React.JSX.Element;
|
|
323
336
|
declare function DetailViewSummary({ title, children, sources, actions, }: {
|
|
324
337
|
title?: string;
|
|
325
|
-
children: React
|
|
326
|
-
sources?: React
|
|
327
|
-
actions?: React
|
|
328
|
-
}): React
|
|
338
|
+
children: React.ReactNode;
|
|
339
|
+
sources?: React.ReactNode;
|
|
340
|
+
actions?: React.ReactNode;
|
|
341
|
+
}): React.JSX.Element;
|
|
329
342
|
type SourceDef = {
|
|
330
343
|
id: number | string;
|
|
331
344
|
summary: string;
|
|
@@ -334,41 +347,41 @@ type SourceDef = {
|
|
|
334
347
|
declare function Citation({ number, source, }: {
|
|
335
348
|
number: number | string;
|
|
336
349
|
source?: SourceDef;
|
|
337
|
-
}): React
|
|
350
|
+
}): React.JSX.Element;
|
|
338
351
|
declare function SourceList({ sources }: {
|
|
339
352
|
sources: SourceDef[];
|
|
340
|
-
}): React
|
|
353
|
+
}): React.JSX.Element;
|
|
341
354
|
declare function DetailViewThread({ title, actionCount, children, }: {
|
|
342
355
|
title: string;
|
|
343
356
|
actionCount?: number;
|
|
344
|
-
children: React
|
|
345
|
-
}): React
|
|
357
|
+
children: React.ReactNode;
|
|
358
|
+
}): React.JSX.Element;
|
|
346
359
|
declare function ThreadMessage({ icon, subject, time, messageCount, threadLink, sender, senderTime, children, isExpanded, }: {
|
|
347
|
-
icon?: React
|
|
360
|
+
icon?: React.ReactNode;
|
|
348
361
|
subject: string;
|
|
349
362
|
time: string;
|
|
350
363
|
messageCount?: number;
|
|
351
364
|
threadLink?: string;
|
|
352
365
|
sender?: string;
|
|
353
366
|
senderTime?: string;
|
|
354
|
-
children: React
|
|
367
|
+
children: React.ReactNode;
|
|
355
368
|
isExpanded?: boolean;
|
|
356
|
-
}): React
|
|
357
|
-
|
|
358
|
-
declare function Dialog({ ...props }: React
|
|
359
|
-
declare function DialogTrigger({ ...props }: React
|
|
360
|
-
declare function DialogPortal({ ...props }: React
|
|
361
|
-
declare function DialogClose({ ...props }: React
|
|
362
|
-
declare function DialogOverlay({ className, ...props }: React
|
|
363
|
-
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> & {
|
|
364
377
|
showCloseButton?: boolean;
|
|
365
|
-
}): React
|
|
366
|
-
declare function DialogHeader({ className, ...props }: React
|
|
367
|
-
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"> & {
|
|
368
381
|
showCloseButton?: boolean;
|
|
369
|
-
}): React
|
|
370
|
-
declare function DialogTitle({ className, ...props }: React
|
|
371
|
-
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;
|
|
372
385
|
|
|
373
386
|
interface DonutSegment {
|
|
374
387
|
name: string;
|
|
@@ -386,37 +399,37 @@ interface DonutChartProps {
|
|
|
386
399
|
showLegend?: boolean;
|
|
387
400
|
className?: string;
|
|
388
401
|
}
|
|
389
|
-
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;
|
|
390
403
|
|
|
391
|
-
declare function DropdownMenu({ ...props }: React
|
|
392
|
-
declare function DropdownMenuPortal({ ...props }: React
|
|
393
|
-
declare function DropdownMenuTrigger({ ...props }: React
|
|
394
|
-
declare function DropdownMenuContent({ className, sideOffset, ...props }: React
|
|
395
|
-
declare function DropdownMenuGroup({ ...props }: React
|
|
396
|
-
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> & {
|
|
397
410
|
inset?: boolean;
|
|
398
411
|
variant?: "default" | "destructive";
|
|
399
|
-
}): React
|
|
400
|
-
declare function DropdownMenuCheckboxItem({ className, children, checked, ...props }: React
|
|
401
|
-
declare function DropdownMenuRadioGroup({ ...props }: React
|
|
402
|
-
declare function DropdownMenuRadioItem({ className, children, ...props }: React
|
|
403
|
-
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> & {
|
|
404
417
|
inset?: boolean;
|
|
405
|
-
}): React
|
|
406
|
-
declare function DropdownMenuSeparator({ className, ...props }: React
|
|
407
|
-
declare function DropdownMenuShortcut({ className, ...props }: React
|
|
408
|
-
declare function DropdownMenuSub({ ...props }: React
|
|
409
|
-
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> & {
|
|
410
423
|
inset?: boolean;
|
|
411
|
-
}): React
|
|
412
|
-
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;
|
|
413
426
|
|
|
414
427
|
interface TimelineEvent {
|
|
415
428
|
id: string;
|
|
416
|
-
icon: React
|
|
417
|
-
title: React
|
|
429
|
+
icon: React.ReactNode;
|
|
430
|
+
title: React.ReactNode;
|
|
418
431
|
time: string;
|
|
419
|
-
preview?: React
|
|
432
|
+
preview?: React.ReactNode;
|
|
420
433
|
email?: {
|
|
421
434
|
from: string;
|
|
422
435
|
fromEmail?: string;
|
|
@@ -425,33 +438,35 @@ interface TimelineEvent {
|
|
|
425
438
|
bcc?: string;
|
|
426
439
|
date?: string;
|
|
427
440
|
subject?: string;
|
|
428
|
-
body: React
|
|
441
|
+
body: React.ReactNode;
|
|
429
442
|
};
|
|
430
|
-
content?: React
|
|
443
|
+
content?: React.ReactNode;
|
|
431
444
|
source?: {
|
|
432
445
|
label: string;
|
|
433
446
|
url: string;
|
|
434
447
|
};
|
|
435
448
|
defaultExpanded?: boolean;
|
|
436
449
|
isInteractive?: boolean;
|
|
450
|
+
onSourceClick?: () => void;
|
|
437
451
|
}
|
|
438
452
|
interface TimelineActivityProps {
|
|
439
453
|
events: TimelineEvent[];
|
|
440
454
|
className?: string;
|
|
441
455
|
}
|
|
442
|
-
declare function TimelineActivity({ events, className }: TimelineActivityProps): React
|
|
456
|
+
declare function TimelineActivity({ events, className }: TimelineActivityProps): React.JSX.Element;
|
|
443
457
|
|
|
444
458
|
declare function EntityPanel({ isOpen, onClose, children, }: {
|
|
445
459
|
isOpen: boolean;
|
|
446
460
|
onClose: (open: boolean) => void;
|
|
447
|
-
children?: React
|
|
448
|
-
}): React
|
|
449
|
-
declare function EntityPanelHeader({ icon, title, badgeLabel, subtitle, }: {
|
|
450
|
-
icon?: React
|
|
461
|
+
children?: React.ReactNode;
|
|
462
|
+
}): React.JSX.Element;
|
|
463
|
+
declare function EntityPanelHeader({ icon, title, badgeLabel, subtitle, headerAction, }: {
|
|
464
|
+
icon?: React.ReactNode;
|
|
451
465
|
title: string;
|
|
452
466
|
badgeLabel?: string;
|
|
453
467
|
subtitle?: string;
|
|
454
|
-
|
|
468
|
+
headerAction?: React.ReactNode;
|
|
469
|
+
}): React.JSX.Element;
|
|
455
470
|
declare function EntityPanelTabs({ tabs, activeTab, onTabChange, }: {
|
|
456
471
|
tabs: {
|
|
457
472
|
id: string;
|
|
@@ -459,29 +474,29 @@ declare function EntityPanelTabs({ tabs, activeTab, onTabChange, }: {
|
|
|
459
474
|
}[];
|
|
460
475
|
activeTab: string;
|
|
461
476
|
onTabChange: (id: string) => void;
|
|
462
|
-
}): React
|
|
477
|
+
}): React.JSX.Element;
|
|
463
478
|
interface EntityMetadataField {
|
|
464
|
-
icon: React
|
|
479
|
+
icon: React.ComponentType<{
|
|
465
480
|
className?: string;
|
|
466
481
|
}>;
|
|
467
482
|
label: string;
|
|
468
|
-
value: React
|
|
483
|
+
value: React.ReactNode;
|
|
469
484
|
}
|
|
470
485
|
declare function EntityMetadataGrid({ fields }: {
|
|
471
486
|
fields: EntityMetadataField[];
|
|
472
|
-
}): React
|
|
487
|
+
}): React.JSX.Element;
|
|
473
488
|
declare function EntitySection({ title, children, action, }: {
|
|
474
489
|
title: string;
|
|
475
|
-
children: React
|
|
476
|
-
action?: React
|
|
477
|
-
}): React
|
|
490
|
+
children: React.ReactNode;
|
|
491
|
+
action?: React.ReactNode;
|
|
492
|
+
}): React.JSX.Element;
|
|
478
493
|
declare function EntityActivityItem({ icon, title, description, date, }: {
|
|
479
|
-
icon?: React
|
|
480
|
-
title: React
|
|
481
|
-
description?: React
|
|
494
|
+
icon?: React.ReactNode;
|
|
495
|
+
title: React.ReactNode;
|
|
496
|
+
description?: React.ReactNode;
|
|
482
497
|
date?: string;
|
|
483
|
-
}): React
|
|
484
|
-
declare function SystemActivity(): React
|
|
498
|
+
}): React.JSX.Element;
|
|
499
|
+
declare function SystemActivity(): React.JSX.Element;
|
|
485
500
|
interface EntityPanelBrandIcons {
|
|
486
501
|
linkedin?: string;
|
|
487
502
|
gmail?: string;
|
|
@@ -490,22 +505,22 @@ interface EntityPanelBrandIcons {
|
|
|
490
505
|
}
|
|
491
506
|
declare function PotentialContacts({ icons, }: {
|
|
492
507
|
icons?: Pick<EntityPanelBrandIcons, "linkedin" | "gmail">;
|
|
493
|
-
}): React
|
|
508
|
+
}): React.JSX.Element;
|
|
494
509
|
type ActivityItem = TimelineEvent;
|
|
495
510
|
declare function RecentActivity({ title, count, filters, items, }: {
|
|
496
511
|
title?: string;
|
|
497
512
|
count?: string;
|
|
498
513
|
filters?: string[];
|
|
499
514
|
items?: TimelineEvent[];
|
|
500
|
-
}): React
|
|
515
|
+
}): React.JSX.Element;
|
|
501
516
|
declare function ConnectedApps({ icons, }: {
|
|
502
517
|
icons?: Pick<EntityPanelBrandIcons, "slack" | "gdoc">;
|
|
503
|
-
}): React
|
|
518
|
+
}): React.JSX.Element;
|
|
504
519
|
declare function EntityDetails({ onClose }: {
|
|
505
520
|
onClose?: () => void;
|
|
506
|
-
}): React
|
|
521
|
+
}): React.JSX.Element;
|
|
507
522
|
|
|
508
|
-
interface InboxRowProps extends React
|
|
523
|
+
interface InboxRowProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
509
524
|
itemId: string;
|
|
510
525
|
statusColor: "red" | "orange" | "gray";
|
|
511
526
|
primaryText: string;
|
|
@@ -523,18 +538,18 @@ interface InboxRowProps extends React$1.HTMLAttributes<HTMLDivElement> {
|
|
|
523
538
|
status: string;
|
|
524
539
|
time: string;
|
|
525
540
|
}
|
|
526
|
-
declare const InboxRow: React
|
|
541
|
+
declare const InboxRow: React.ForwardRefExoticComponent<InboxRowProps & React.RefAttributes<HTMLDivElement>>;
|
|
527
542
|
declare function InboxGroupHeader({ title, count }: {
|
|
528
543
|
title: string;
|
|
529
544
|
count: number;
|
|
530
|
-
}): React
|
|
545
|
+
}): React.JSX.Element;
|
|
531
546
|
|
|
532
547
|
interface FilterDefinition {
|
|
533
548
|
id: string;
|
|
534
549
|
label: string;
|
|
535
550
|
options: string[];
|
|
536
551
|
defaultValue?: string;
|
|
537
|
-
icon?: "calendar" | React
|
|
552
|
+
icon?: "calendar" | React.ComponentType<{
|
|
538
553
|
className?: string;
|
|
539
554
|
}>;
|
|
540
555
|
}
|
|
@@ -545,13 +560,13 @@ interface InsightsFilterBarProps {
|
|
|
545
560
|
onClearAll?: () => void;
|
|
546
561
|
className?: string;
|
|
547
562
|
}
|
|
548
|
-
declare function InsightsFilterBar({ filters, values, onChange, onClearAll, className, }: InsightsFilterBarProps): React
|
|
563
|
+
declare function InsightsFilterBar({ filters, values, onChange, onClearAll, className, }: InsightsFilterBarProps): React.JSX.Element;
|
|
549
564
|
|
|
550
565
|
type AssigneeFilter = "me" | "team" | "all";
|
|
551
566
|
interface InboxFilterCategory {
|
|
552
567
|
id: string;
|
|
553
568
|
label: string;
|
|
554
|
-
icon: React
|
|
569
|
+
icon: React.ReactNode;
|
|
555
570
|
options: string[];
|
|
556
571
|
}
|
|
557
572
|
interface InboxToolbarProps {
|
|
@@ -563,11 +578,11 @@ interface InboxToolbarProps {
|
|
|
563
578
|
onClearFilters: () => void;
|
|
564
579
|
className?: string;
|
|
565
580
|
}
|
|
566
|
-
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;
|
|
567
582
|
|
|
568
|
-
declare function Input({ className, type, ...props }: React
|
|
583
|
+
declare function Input({ className, type, ...props }: React.ComponentProps<"input">): React.JSX.Element;
|
|
569
584
|
|
|
570
|
-
declare function ItemList(): React
|
|
585
|
+
declare function ItemList(): React.JSX.Element;
|
|
571
586
|
interface GroupedListGroup<T> {
|
|
572
587
|
key: string;
|
|
573
588
|
label: string;
|
|
@@ -575,14 +590,14 @@ interface GroupedListGroup<T> {
|
|
|
575
590
|
}
|
|
576
591
|
interface GroupedListViewProps<T> {
|
|
577
592
|
groups: GroupedListGroup<T>[];
|
|
578
|
-
renderRow: (item: T, index: number) => React
|
|
593
|
+
renderRow: (item: T, index: number) => React.ReactNode;
|
|
579
594
|
getItemKey: (item: T) => string;
|
|
580
595
|
selectedKey?: string;
|
|
581
596
|
onItemClick?: (item: T) => void;
|
|
582
597
|
emptyMessage?: string;
|
|
583
598
|
className?: string;
|
|
584
599
|
}
|
|
585
|
-
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;
|
|
586
601
|
|
|
587
602
|
type ItemListGrouping = "stage" | "owner" | "risk";
|
|
588
603
|
type ItemListViewMode = "list" | "board";
|
|
@@ -601,7 +616,7 @@ interface ItemListDisplayProps {
|
|
|
601
616
|
onChange: (next: ItemListDisplayState) => void;
|
|
602
617
|
onReset: () => void;
|
|
603
618
|
}
|
|
604
|
-
declare function ItemListDisplay({ value, onChange, onReset, }: ItemListDisplayProps): React
|
|
619
|
+
declare function ItemListDisplay({ value, onChange, onReset, }: ItemListDisplayProps): React.JSX.Element;
|
|
605
620
|
|
|
606
621
|
interface ItemListFilterCategory {
|
|
607
622
|
id: string;
|
|
@@ -614,7 +629,7 @@ interface ItemListFilterProps {
|
|
|
614
629
|
onToggleFilter: (categoryId: string, option: string) => void;
|
|
615
630
|
onClearFilters: () => void;
|
|
616
631
|
}
|
|
617
|
-
declare function ItemListFilter({ categories, selectedFilters, onToggleFilter, onClearFilters, }: ItemListFilterProps): React
|
|
632
|
+
declare function ItemListFilter({ categories, selectedFilters, onToggleFilter, onClearFilters, }: ItemListFilterProps): React.JSX.Element;
|
|
618
633
|
|
|
619
634
|
interface ItemListQuickView {
|
|
620
635
|
id: string;
|
|
@@ -632,10 +647,11 @@ interface ItemListToolbarProps {
|
|
|
632
647
|
display: ItemListDisplayState;
|
|
633
648
|
onDisplayChange: (next: ItemListDisplayState) => void;
|
|
634
649
|
onResetDisplay: () => void;
|
|
650
|
+
searchSlot?: React.ReactNode;
|
|
635
651
|
}
|
|
636
|
-
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;
|
|
637
653
|
|
|
638
|
-
declare function Label({ className, ...props }: React
|
|
654
|
+
declare function Label({ className, ...props }: React.ComponentProps<typeof LabelPrimitive.Root>): React.JSX.Element;
|
|
639
655
|
|
|
640
656
|
interface MetricDataPoint {
|
|
641
657
|
label: string;
|
|
@@ -657,7 +673,7 @@ interface MetricCardProps {
|
|
|
657
673
|
showExternalLink?: boolean;
|
|
658
674
|
showInfo?: boolean;
|
|
659
675
|
}
|
|
660
|
-
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;
|
|
661
677
|
|
|
662
678
|
interface PerformanceMetricsTableRow {
|
|
663
679
|
id: string;
|
|
@@ -692,7 +708,7 @@ interface PerformanceMetricsTableProps {
|
|
|
692
708
|
pageSize?: number;
|
|
693
709
|
searchPlaceholder?: string;
|
|
694
710
|
}
|
|
695
|
-
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;
|
|
696
712
|
|
|
697
713
|
interface PipelineStage {
|
|
698
714
|
id: string;
|
|
@@ -723,6 +739,7 @@ interface PipelineOverviewProps {
|
|
|
723
739
|
stageMetrics: Record<string, PipelineStageMetrics>;
|
|
724
740
|
stageTimings: (PipelineStageTiming | null)[];
|
|
725
741
|
filterOptions?: string[];
|
|
742
|
+
onFilterChange?: (filterOption: string) => void;
|
|
726
743
|
filterBreakdowns?: Record<string, PipelineFilterBreakdown>;
|
|
727
744
|
countingModes?: string[];
|
|
728
745
|
countingModeTooltip?: string;
|
|
@@ -764,27 +781,27 @@ interface PipelineOverviewProps {
|
|
|
764
781
|
onViewInWorkQueue?: (stageId: string) => void;
|
|
765
782
|
className?: string;
|
|
766
783
|
}
|
|
767
|
-
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;
|
|
768
785
|
|
|
769
|
-
declare function PreviewList({ children, className, ...props }: React
|
|
770
|
-
interface PreviewListItemProps extends Omit<React
|
|
771
|
-
icon?: React
|
|
772
|
-
title: React
|
|
773
|
-
subtitle?: React
|
|
774
|
-
meta?: React
|
|
775
|
-
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;
|
|
776
793
|
isHoverable?: boolean;
|
|
777
794
|
}
|
|
778
|
-
declare const PreviewListItem: React
|
|
795
|
+
declare const PreviewListItem: React.ForwardRefExoticComponent<PreviewListItemProps & React.RefAttributes<HTMLDivElement>>;
|
|
779
796
|
|
|
780
|
-
declare function Progress({ className, value, ...props }: React
|
|
797
|
+
declare function Progress({ className, value, ...props }: React.ComponentProps<typeof Progress$1.Root>): React.JSX.Element;
|
|
781
798
|
|
|
782
799
|
type QuickActionPriority$1 = "normal" | "high" | "urgent";
|
|
783
800
|
interface QuickActionSubmitPayload {
|
|
784
801
|
message: string;
|
|
785
802
|
priority: QuickActionPriority$1;
|
|
786
803
|
}
|
|
787
|
-
interface QuickActionChatAreaProps extends Omit<React
|
|
804
|
+
interface QuickActionChatAreaProps extends Omit<React.ComponentProps<"div">, "onSubmit"> {
|
|
788
805
|
placeholder?: string;
|
|
789
806
|
submitLabel?: string;
|
|
790
807
|
value?: string;
|
|
@@ -798,9 +815,9 @@ interface QuickActionChatAreaProps extends Omit<React$1.ComponentProps<"div">, "
|
|
|
798
815
|
clearOnSubmit?: boolean;
|
|
799
816
|
showEnterHint?: boolean;
|
|
800
817
|
}
|
|
801
|
-
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;
|
|
802
819
|
|
|
803
|
-
type TemplateIcon = React
|
|
820
|
+
type TemplateIcon = React.ComponentType<{
|
|
804
821
|
className?: string;
|
|
805
822
|
}>;
|
|
806
823
|
interface QuickActionTemplate {
|
|
@@ -825,14 +842,15 @@ interface QuickActionModalProps {
|
|
|
825
842
|
className?: string;
|
|
826
843
|
onCreateTask?: (draft: QuickActionTaskDraft) => void;
|
|
827
844
|
}
|
|
828
|
-
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;
|
|
829
846
|
|
|
830
847
|
interface SidebarNavItem {
|
|
831
848
|
id: string;
|
|
832
849
|
label: string;
|
|
833
|
-
icon: React
|
|
850
|
+
icon: React.ComponentType<{
|
|
834
851
|
className?: string;
|
|
835
852
|
}>;
|
|
853
|
+
children?: SidebarNavItem[];
|
|
836
854
|
}
|
|
837
855
|
interface SidebarNavSection {
|
|
838
856
|
title?: string;
|
|
@@ -847,15 +865,17 @@ interface SidebarUserProfile {
|
|
|
847
865
|
interface UserMenuItem {
|
|
848
866
|
id: string;
|
|
849
867
|
label: string;
|
|
850
|
-
icon: React
|
|
868
|
+
icon: React.ComponentType<{
|
|
851
869
|
className?: string;
|
|
852
870
|
}>;
|
|
853
871
|
destructive?: boolean;
|
|
854
872
|
}
|
|
855
873
|
type ActiveVariant = "default" | "gradient";
|
|
856
|
-
interface QuickActionSidebarNavProps extends React
|
|
874
|
+
interface QuickActionSidebarNavProps extends React.ComponentProps<"aside"> {
|
|
857
875
|
brandLabel?: string;
|
|
858
876
|
brandSubtitle?: string;
|
|
877
|
+
brandImage?: string;
|
|
878
|
+
hideQuickAction?: boolean;
|
|
859
879
|
navSections?: SidebarNavSection[];
|
|
860
880
|
activeItemId?: string;
|
|
861
881
|
activeVariant?: ActiveVariant;
|
|
@@ -865,8 +885,11 @@ interface QuickActionSidebarNavProps extends React$1.ComponentProps<"aside"> {
|
|
|
865
885
|
onUserMenuAction?: (itemId: string) => void;
|
|
866
886
|
onCreateTask?: (draft: QuickActionTaskDraft) => void;
|
|
867
887
|
defaultCollapsed?: boolean;
|
|
888
|
+
quickActionTemplates?: QuickActionTemplate[];
|
|
889
|
+
quickActionTitle?: string;
|
|
890
|
+
quickActionDescription?: string;
|
|
868
891
|
}
|
|
869
|
-
declare function QuickActionSidebarNav({ className, brandLabel, brandSubtitle, 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;
|
|
870
893
|
|
|
871
894
|
interface RecommendedAction {
|
|
872
895
|
id: string;
|
|
@@ -886,7 +909,7 @@ interface RecommendedActionsSectionProps {
|
|
|
886
909
|
onDismissAction?: (action: RecommendedAction) => void;
|
|
887
910
|
onFeedback?: (actionId: string, feedback: "useful" | "not_useful", comment: string) => void;
|
|
888
911
|
}
|
|
889
|
-
declare function RecommendedActionsSection({ actions, title, onQueueAction, onDismissAction, onFeedback, }: RecommendedActionsSectionProps): React
|
|
912
|
+
declare function RecommendedActionsSection({ actions, title, onQueueAction, onDismissAction, onFeedback, }: RecommendedActionsSectionProps): React.JSX.Element;
|
|
890
913
|
|
|
891
914
|
interface ReportCardFilterOption {
|
|
892
915
|
label: string;
|
|
@@ -904,12 +927,12 @@ interface ReportCardProps {
|
|
|
904
927
|
selectedToggle?: string;
|
|
905
928
|
onToggleChange?: (value: string) => void;
|
|
906
929
|
/** Render slot between header and content */
|
|
907
|
-
headerExtra?: React
|
|
908
|
-
children: React
|
|
930
|
+
headerExtra?: React.ReactNode;
|
|
931
|
+
children: React.ReactNode;
|
|
909
932
|
className?: string;
|
|
910
933
|
contentClassName?: string;
|
|
911
934
|
}
|
|
912
|
-
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;
|
|
913
936
|
|
|
914
937
|
interface SankeyNode {
|
|
915
938
|
id: string;
|
|
@@ -958,7 +981,7 @@ interface SankeyChartProps {
|
|
|
958
981
|
onViewDetails?: (nodeId: string) => void;
|
|
959
982
|
className?: string;
|
|
960
983
|
}
|
|
961
|
-
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;
|
|
962
985
|
|
|
963
986
|
interface ScoreFactor {
|
|
964
987
|
key: string;
|
|
@@ -972,7 +995,7 @@ interface ScoreBreakdownProps {
|
|
|
972
995
|
onFactorFeedback?: (factorKey: string, type: "up" | "down" | null, detail?: string) => void;
|
|
973
996
|
className?: string;
|
|
974
997
|
}
|
|
975
|
-
declare function ScoreBreakdown({ factors, onFactorFeedback, className }: ScoreBreakdownProps): React
|
|
998
|
+
declare function ScoreBreakdown({ factors, onFactorFeedback, className }: ScoreBreakdownProps): React.JSX.Element;
|
|
976
999
|
|
|
977
1000
|
interface ScoreAnalysisModalProps {
|
|
978
1001
|
open: boolean;
|
|
@@ -982,7 +1005,7 @@ interface ScoreAnalysisModalProps {
|
|
|
982
1005
|
score: number;
|
|
983
1006
|
denominator?: number;
|
|
984
1007
|
whyNow: string;
|
|
985
|
-
evidence: React
|
|
1008
|
+
evidence: React.ReactNode[];
|
|
986
1009
|
factors?: ScoreFactor[];
|
|
987
1010
|
onFactorFeedback?: (factorKey: string, type: "up" | "down" | null, detail?: string) => void;
|
|
988
1011
|
companyName?: string;
|
|
@@ -990,8 +1013,10 @@ interface ScoreAnalysisModalProps {
|
|
|
990
1013
|
onApprove?: () => void;
|
|
991
1014
|
onApproveFeedback?: (reasons: string[], detail: string) => void;
|
|
992
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;
|
|
993
1018
|
}
|
|
994
|
-
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;
|
|
995
1020
|
declare const ScoreAnalysisPanel: typeof ScoreAnalysisModal;
|
|
996
1021
|
|
|
997
1022
|
interface SubmittedScoreFeedback {
|
|
@@ -1015,16 +1040,16 @@ interface ScoreFeedbackState {
|
|
|
1015
1040
|
}
|
|
1016
1041
|
declare function useScoreFeedback(): ScoreFeedbackState;
|
|
1017
1042
|
interface RootProps$1 {
|
|
1018
|
-
children: React
|
|
1043
|
+
children: React.ReactNode;
|
|
1019
1044
|
onSubmitFeedback?: (type: "up" | "down", pills: string[], detail: string) => void;
|
|
1020
1045
|
}
|
|
1021
|
-
declare function Root$1({ children, onSubmitFeedback }: RootProps$1): React
|
|
1046
|
+
declare function Root$1({ children, onSubmitFeedback }: RootProps$1): React.JSX.Element;
|
|
1022
1047
|
declare function Trigger({ className }: {
|
|
1023
1048
|
className?: string;
|
|
1024
|
-
}): React
|
|
1049
|
+
}): React.JSX.Element;
|
|
1025
1050
|
declare function Panel({ className }: {
|
|
1026
1051
|
className?: string;
|
|
1027
|
-
}): React
|
|
1052
|
+
}): React.JSX.Element | null;
|
|
1028
1053
|
declare const ScoreFeedback: {
|
|
1029
1054
|
Root: typeof Root$1;
|
|
1030
1055
|
Trigger: typeof Trigger;
|
|
@@ -1040,42 +1065,42 @@ interface ScoreRingProps {
|
|
|
1040
1065
|
className?: string;
|
|
1041
1066
|
showLabel?: boolean;
|
|
1042
1067
|
}
|
|
1043
|
-
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;
|
|
1044
1069
|
|
|
1045
|
-
declare function ScrollArea({ className, children, ...props }: React
|
|
1046
|
-
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;
|
|
1047
1072
|
|
|
1048
|
-
declare function Select({ ...props }: React
|
|
1049
|
-
declare function SelectGroup({ ...props }: React
|
|
1050
|
-
declare function SelectValue({ ...props }: React
|
|
1051
|
-
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> & {
|
|
1052
1077
|
size?: "sm" | "default";
|
|
1053
|
-
}): React
|
|
1054
|
-
declare function SelectContent({ className, children, position, align, ...props }: React
|
|
1055
|
-
declare function SelectLabel({ className, ...props }: React
|
|
1056
|
-
declare function SelectItem({ className, children, ...props }: React
|
|
1057
|
-
declare function SelectSeparator({ className, ...props }: React
|
|
1058
|
-
declare function SelectScrollUpButton({ className, ...props }: React
|
|
1059
|
-
declare function SelectScrollDownButton({ className, ...props }: React
|
|
1060
|
-
|
|
1061
|
-
declare function Separator({ className, orientation, decorative, ...props }: React
|
|
1062
|
-
|
|
1063
|
-
declare function Sheet({ ...props }: React
|
|
1064
|
-
declare function SheetTrigger({ ...props }: React
|
|
1065
|
-
declare function SheetClose({ ...props }: React
|
|
1066
|
-
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> & {
|
|
1067
1092
|
side?: "top" | "right" | "bottom" | "left";
|
|
1068
1093
|
showCloseButton?: boolean;
|
|
1069
|
-
}): React
|
|
1070
|
-
declare function SheetHeader({ className, ...props }: React
|
|
1071
|
-
declare function SheetFooter({ className, ...props }: React
|
|
1072
|
-
declare function SheetTitle({ className, ...props }: React
|
|
1073
|
-
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;
|
|
1074
1099
|
|
|
1075
|
-
declare function TooltipProvider({ delayDuration, ...props }: React
|
|
1076
|
-
declare function Tooltip({ ...props }: React
|
|
1077
|
-
declare function TooltipTrigger({ ...props }: React
|
|
1078
|
-
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;
|
|
1079
1104
|
|
|
1080
1105
|
type SidebarContextProps = {
|
|
1081
1106
|
state: "expanded" | "collapsed";
|
|
@@ -1087,64 +1112,75 @@ type SidebarContextProps = {
|
|
|
1087
1112
|
toggleSidebar: () => void;
|
|
1088
1113
|
};
|
|
1089
1114
|
declare function useSidebar(): SidebarContextProps;
|
|
1090
|
-
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"> & {
|
|
1091
1116
|
defaultOpen?: boolean;
|
|
1092
1117
|
open?: boolean;
|
|
1093
1118
|
onOpenChange?: (open: boolean) => void;
|
|
1094
|
-
}): React
|
|
1095
|
-
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"> & {
|
|
1096
1121
|
side?: "left" | "right";
|
|
1097
1122
|
variant?: "sidebar" | "floating" | "inset";
|
|
1098
1123
|
collapsible?: "offcanvas" | "icon" | "none";
|
|
1099
|
-
}): React
|
|
1100
|
-
declare function SidebarTrigger({ className, onClick, ...props }: React
|
|
1101
|
-
declare function SidebarRail({ className, ...props }: React
|
|
1102
|
-
declare function SidebarInset({ className, ...props }: React
|
|
1103
|
-
declare function SidebarInput({ className, ...props }: React
|
|
1104
|
-
declare function SidebarHeader({ className, ...props }: React
|
|
1105
|
-
declare function SidebarFooter({ className, ...props }: React
|
|
1106
|
-
declare function SidebarSeparator({ className, ...props }: React
|
|
1107
|
-
declare function SidebarContent({ className, ...props }: React
|
|
1108
|
-
declare function SidebarGroup({ className, ...props }: React
|
|
1109
|
-
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"> & {
|
|
1110
1135
|
asChild?: boolean;
|
|
1111
|
-
}): React
|
|
1112
|
-
declare function SidebarGroupAction({ className, asChild, ...props }: React
|
|
1136
|
+
}): React.JSX.Element;
|
|
1137
|
+
declare function SidebarGroupAction({ className, asChild, ...props }: React.ComponentProps<"button"> & {
|
|
1113
1138
|
asChild?: boolean;
|
|
1114
|
-
}): React
|
|
1115
|
-
declare function SidebarGroupContent({ className, ...props }: React
|
|
1116
|
-
declare function SidebarMenu({ className, ...props }: React
|
|
1117
|
-
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;
|
|
1118
1143
|
declare const sidebarMenuButtonVariants: (props?: ({
|
|
1119
1144
|
variant?: "default" | "outline" | null | undefined;
|
|
1120
1145
|
size?: "default" | "sm" | "lg" | null | undefined;
|
|
1121
1146
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
1122
|
-
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"> & {
|
|
1123
1148
|
asChild?: boolean;
|
|
1124
1149
|
isActive?: boolean;
|
|
1125
|
-
tooltip?: string | React
|
|
1126
|
-
} & VariantProps<typeof sidebarMenuButtonVariants>): React
|
|
1127
|
-
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"> & {
|
|
1128
1153
|
asChild?: boolean;
|
|
1129
1154
|
showOnHover?: boolean;
|
|
1130
|
-
}): React
|
|
1131
|
-
declare function SidebarMenuBadge({ className, ...props }: React
|
|
1132
|
-
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"> & {
|
|
1133
1158
|
showIcon?: boolean;
|
|
1134
|
-
}): React
|
|
1135
|
-
declare function SidebarMenuSub({ className, ...props }: React
|
|
1136
|
-
declare function SidebarMenuSubItem({ className, ...props }: React
|
|
1137
|
-
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"> & {
|
|
1138
1163
|
asChild?: boolean;
|
|
1139
1164
|
size?: "sm" | "md";
|
|
1140
1165
|
isActive?: boolean;
|
|
1141
|
-
}): React
|
|
1142
|
-
|
|
1143
|
-
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
|
+
}
|
|
1144
1178
|
interface SignalApprovalContextValue {
|
|
1145
1179
|
approvalState: ApprovalState;
|
|
1146
1180
|
companyName: string;
|
|
1147
1181
|
opportunityUrl?: string;
|
|
1182
|
+
scheduledTime?: string;
|
|
1183
|
+
labels: Required<SignalApprovalLabels>;
|
|
1148
1184
|
approve: () => void;
|
|
1149
1185
|
submitApproveFeedback: (reasons: string[], detail: string) => void;
|
|
1150
1186
|
skipApproveFeedback: () => void;
|
|
@@ -1155,18 +1191,21 @@ interface SignalApprovalContextValue {
|
|
|
1155
1191
|
}
|
|
1156
1192
|
declare function useSignalApproval(): SignalApprovalContextValue;
|
|
1157
1193
|
interface RootProps {
|
|
1158
|
-
children: React
|
|
1194
|
+
children: React.ReactNode;
|
|
1159
1195
|
companyName: string;
|
|
1160
1196
|
opportunityUrl?: string;
|
|
1197
|
+
scheduledTime?: string;
|
|
1198
|
+
initialApprovalState?: ApprovalState;
|
|
1199
|
+
labels?: SignalApprovalLabels;
|
|
1161
1200
|
onApprove?: () => void;
|
|
1162
1201
|
onApproveFeedback?: (reasons: string[], detail: string) => void;
|
|
1163
1202
|
onDismiss?: (reasons: string[], detail: string) => void;
|
|
1164
1203
|
}
|
|
1165
|
-
declare function Root({ children, companyName, opportunityUrl, onApprove, onApproveFeedback, onDismiss }: RootProps): React
|
|
1166
|
-
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;
|
|
1167
1206
|
declare function Gate({ children }: {
|
|
1168
|
-
children: React
|
|
1169
|
-
}): React
|
|
1207
|
+
children: React.ReactNode;
|
|
1208
|
+
}): React.JSX.Element;
|
|
1170
1209
|
|
|
1171
1210
|
declare const SignalApproval: {
|
|
1172
1211
|
Root: typeof Root;
|
|
@@ -1174,7 +1213,7 @@ declare const SignalApproval: {
|
|
|
1174
1213
|
Gate: typeof Gate;
|
|
1175
1214
|
};
|
|
1176
1215
|
|
|
1177
|
-
declare function Skeleton({ className, ...props }: React.ComponentProps<"div">): React
|
|
1216
|
+
declare function Skeleton({ className, ...props }: React.ComponentProps<"div">): React.JSX.Element;
|
|
1178
1217
|
|
|
1179
1218
|
interface StyledBarItem {
|
|
1180
1219
|
name: string;
|
|
@@ -1189,8 +1228,9 @@ interface StyledBarListProps {
|
|
|
1189
1228
|
showAnimation?: boolean;
|
|
1190
1229
|
showSubtitle?: boolean;
|
|
1191
1230
|
barColor?: string;
|
|
1231
|
+
barStyle?: React.CSSProperties;
|
|
1192
1232
|
}
|
|
1193
|
-
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;
|
|
1194
1234
|
|
|
1195
1235
|
interface SuggestedActionsIconMap {
|
|
1196
1236
|
gmail?: string;
|
|
@@ -1252,9 +1292,16 @@ interface SuggestedActionCallMeta {
|
|
|
1252
1292
|
talkTrack: string;
|
|
1253
1293
|
allowDispatchAgent?: boolean;
|
|
1254
1294
|
}
|
|
1295
|
+
interface SuggestedActionManualMeta {
|
|
1296
|
+
taskDescription: string;
|
|
1297
|
+
}
|
|
1298
|
+
interface SuggestedActionBrowserMeta {
|
|
1299
|
+
url: string;
|
|
1300
|
+
actionDescription: string;
|
|
1301
|
+
}
|
|
1255
1302
|
interface SuggestedAction {
|
|
1256
1303
|
id: number | string;
|
|
1257
|
-
type: "email" | "ticket" | "slack" | "call";
|
|
1304
|
+
type: "email" | "ticket" | "slack" | "call" | "manual" | "browser";
|
|
1258
1305
|
label: string;
|
|
1259
1306
|
status: "pending" | "sent" | "dismissed";
|
|
1260
1307
|
content?: string;
|
|
@@ -1264,6 +1311,8 @@ interface SuggestedAction {
|
|
|
1264
1311
|
followUp?: SuggestedActionFollowUp;
|
|
1265
1312
|
emailMeta?: SuggestedActionEmailMeta;
|
|
1266
1313
|
callMeta?: SuggestedActionCallMeta;
|
|
1314
|
+
manualMeta?: SuggestedActionManualMeta;
|
|
1315
|
+
browserMeta?: SuggestedActionBrowserMeta;
|
|
1267
1316
|
}
|
|
1268
1317
|
interface SuggestedActionsProps {
|
|
1269
1318
|
actions: SuggestedAction[];
|
|
@@ -1272,34 +1321,42 @@ interface SuggestedActionsProps {
|
|
|
1272
1321
|
onSend?: (id: number | string) => void;
|
|
1273
1322
|
onSaveDraft?: (id: number | string) => void;
|
|
1274
1323
|
accountContacts?: SuggestedContact[];
|
|
1275
|
-
signature?: string;
|
|
1324
|
+
signature?: string | React.ReactNode;
|
|
1276
1325
|
onDuplicate?: (id: number | string) => void;
|
|
1277
1326
|
onOpenAccountDetails?: () => void;
|
|
1278
1327
|
onOpenRecentActivity?: () => void;
|
|
1279
1328
|
onMarkComplete?: (id: number | string) => void;
|
|
1280
|
-
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;
|
|
1281
1335
|
iconMap?: SuggestedActionsIconMap;
|
|
1282
|
-
|
|
1283
|
-
|
|
1284
|
-
|
|
1285
|
-
|
|
1286
|
-
declare function
|
|
1287
|
-
|
|
1288
|
-
declare function
|
|
1289
|
-
declare function
|
|
1290
|
-
declare function
|
|
1291
|
-
declare function
|
|
1292
|
-
declare function
|
|
1293
|
-
|
|
1294
|
-
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;
|
|
1295
1352
|
declare const tabsListVariants: (props?: ({
|
|
1296
1353
|
variant?: "default" | "line" | null | undefined;
|
|
1297
1354
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
1298
|
-
declare function TabsList({ className, variant, ...props }: React
|
|
1299
|
-
declare function TabsTrigger({ className, ...props }: React
|
|
1300
|
-
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;
|
|
1301
1358
|
|
|
1302
|
-
declare function Textarea({ className, ...props }: React
|
|
1359
|
+
declare function Textarea({ className, ...props }: React.ComponentProps<"textarea">): React.JSX.Element;
|
|
1303
1360
|
|
|
1304
1361
|
interface MetricCardData {
|
|
1305
1362
|
label: string;
|
|
@@ -1322,7 +1379,7 @@ interface TopLineMetricsProps {
|
|
|
1322
1379
|
onFilterChange?: (filter: string) => void;
|
|
1323
1380
|
className?: string;
|
|
1324
1381
|
}
|
|
1325
|
-
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;
|
|
1326
1383
|
|
|
1327
1384
|
interface TrendSeries {
|
|
1328
1385
|
dataKey: string;
|
|
@@ -1340,11 +1397,11 @@ interface TrendAreaChartProps {
|
|
|
1340
1397
|
tooltipFormatter?: (value: number | string, name: string) => [string, string];
|
|
1341
1398
|
className?: string;
|
|
1342
1399
|
}
|
|
1343
|
-
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;
|
|
1344
1401
|
|
|
1345
1402
|
interface ViewMode {
|
|
1346
1403
|
id: string;
|
|
1347
|
-
icon: React
|
|
1404
|
+
icon: React.ReactNode;
|
|
1348
1405
|
label: string;
|
|
1349
1406
|
}
|
|
1350
1407
|
interface ViewModeToggleProps {
|
|
@@ -1353,7 +1410,7 @@ interface ViewModeToggleProps {
|
|
|
1353
1410
|
onModeChange: (modeId: string) => void;
|
|
1354
1411
|
className?: string;
|
|
1355
1412
|
}
|
|
1356
|
-
declare function ViewModeToggle({ modes, activeMode, onModeChange, className }: ViewModeToggleProps): React
|
|
1413
|
+
declare function ViewModeToggle({ modes, activeMode, onModeChange, className }: ViewModeToggleProps): React.JSX.Element;
|
|
1357
1414
|
|
|
1358
1415
|
interface VolumeDataKey {
|
|
1359
1416
|
key: string;
|
|
@@ -1369,7 +1426,7 @@ interface VolumeAnalysisChartProps {
|
|
|
1369
1426
|
subtitle?: string;
|
|
1370
1427
|
className?: string;
|
|
1371
1428
|
}
|
|
1372
|
-
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;
|
|
1373
1430
|
|
|
1374
1431
|
interface PrototypeBrandConfig {
|
|
1375
1432
|
name: string;
|
|
@@ -1391,6 +1448,9 @@ interface SignalScoreData {
|
|
|
1391
1448
|
whyNow: string;
|
|
1392
1449
|
evidence: string[];
|
|
1393
1450
|
confidence: number;
|
|
1451
|
+
onFactorFeedback?: (factorKey: string, type: "up" | "down" | null, detail?: string) => void;
|
|
1452
|
+
onApproveFeedback?: (reasons: string[], detail: string) => void;
|
|
1453
|
+
onDismissFeedback?: (reasons: string[], detail: string) => void;
|
|
1394
1454
|
}
|
|
1395
1455
|
interface InboxDetailSections {
|
|
1396
1456
|
signalBrief?: boolean;
|
|
@@ -1403,14 +1463,45 @@ interface InboxViewConfig {
|
|
|
1403
1463
|
detailSections?: InboxDetailSections;
|
|
1404
1464
|
accountContacts?: SuggestedContact[];
|
|
1405
1465
|
buildAccountContacts?: (item: QueueItem) => SuggestedContact[];
|
|
1406
|
-
emailSignature?: string;
|
|
1466
|
+
emailSignature?: string | React.ReactNode;
|
|
1407
1467
|
buildSuggestedActions?: (item: QueueItem) => SuggestedAction[];
|
|
1408
1468
|
buildSourceItems?: (item: QueueItem) => SourceDef[];
|
|
1409
1469
|
getSignalScore?: (company: string) => SignalScoreData;
|
|
1410
1470
|
getTimelineEvents?: (item: QueueItem) => TimelineEvent[];
|
|
1411
1471
|
iconMap?: Record<string, string>;
|
|
1472
|
+
hideToolbarActions?: boolean;
|
|
1473
|
+
hideHoverActions?: boolean;
|
|
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
|
+
};
|
|
1494
|
+
}
|
|
1495
|
+
interface InsightsCustomTab {
|
|
1496
|
+
id: string;
|
|
1497
|
+
label: string;
|
|
1498
|
+
icon?: React.ComponentType<{
|
|
1499
|
+
className?: string;
|
|
1500
|
+
}>;
|
|
1501
|
+
content: React.ReactNode;
|
|
1412
1502
|
}
|
|
1413
1503
|
interface InsightsViewConfig {
|
|
1504
|
+
customTabs?: InsightsCustomTab[];
|
|
1414
1505
|
tabs?: {
|
|
1415
1506
|
overview?: boolean;
|
|
1416
1507
|
analytics?: boolean;
|
|
@@ -1488,6 +1579,18 @@ interface AccountFilterTab {
|
|
|
1488
1579
|
}
|
|
1489
1580
|
interface AccountsViewConfig {
|
|
1490
1581
|
filterTabs?: AccountFilterTab[];
|
|
1582
|
+
rows?: DataRow[];
|
|
1583
|
+
filterCategories?: DataTableFilterCategory[];
|
|
1584
|
+
quickViews?: string[];
|
|
1585
|
+
moreQuickViews?: string[];
|
|
1586
|
+
quickViewFilters?: Record<string, (row: DataRow) => boolean>;
|
|
1587
|
+
iconMap?: {
|
|
1588
|
+
salesforce?: string;
|
|
1589
|
+
};
|
|
1590
|
+
entityUrlBuilder?: (row: DataRow) => string;
|
|
1591
|
+
onScoreFactorFeedback?: (account: string, scoreType: string, factorKey: string, type: "up" | "down" | null, detail?: string) => void;
|
|
1592
|
+
onScoreApproveFeedback?: (account: string, scoreType: string, reasons: string[], detail: string) => void;
|
|
1593
|
+
onScoreDismissFeedback?: (account: string, scoreType: string, reasons: string[], detail: string) => void;
|
|
1491
1594
|
}
|
|
1492
1595
|
interface WorkQueueViewConfig {
|
|
1493
1596
|
[key: string]: unknown;
|
|
@@ -1495,16 +1598,16 @@ interface WorkQueueViewConfig {
|
|
|
1495
1598
|
interface AdminTab {
|
|
1496
1599
|
id: string;
|
|
1497
1600
|
label: string;
|
|
1498
|
-
icon?: React
|
|
1601
|
+
icon?: React.ComponentType<{
|
|
1499
1602
|
className?: string;
|
|
1500
1603
|
}>;
|
|
1501
|
-
content: React
|
|
1604
|
+
content: React.ReactNode;
|
|
1502
1605
|
}
|
|
1503
1606
|
interface AdminViewConfig {
|
|
1504
1607
|
/** View title displayed in the header. Defaults to "Admin". */
|
|
1505
1608
|
title?: string;
|
|
1506
1609
|
/** Icon displayed next to the title. */
|
|
1507
|
-
icon?: React
|
|
1610
|
+
icon?: React.ComponentType<{
|
|
1508
1611
|
className?: string;
|
|
1509
1612
|
}>;
|
|
1510
1613
|
tabs: AdminTab[];
|
|
@@ -1541,15 +1644,15 @@ interface PrototypeShellProps {
|
|
|
1541
1644
|
* Optional ReactNode rendered in the header area of each view.
|
|
1542
1645
|
* Useful for adding an "Exit Preview" button in the design system showcase.
|
|
1543
1646
|
*/
|
|
1544
|
-
headerActions?: React
|
|
1647
|
+
headerActions?: React.ReactNode;
|
|
1545
1648
|
/**
|
|
1546
1649
|
* Custom content to render inside the EntityPanel.
|
|
1547
1650
|
* When provided, overrides the default section-based rendering.
|
|
1548
1651
|
* Receives `onClose` so children can close the panel.
|
|
1549
1652
|
*/
|
|
1550
|
-
entityPanelChildren?: React
|
|
1653
|
+
entityPanelChildren?: React.ReactNode | ((ctx: {
|
|
1551
1654
|
onClose: () => void;
|
|
1552
|
-
}) => React
|
|
1655
|
+
}) => React.ReactNode);
|
|
1553
1656
|
/**
|
|
1554
1657
|
* Fired on every sidebar navigation click (both navigable and non-navigable views).
|
|
1555
1658
|
* Useful for intercepting clicks on product-specific views like "settings"
|
|
@@ -1557,72 +1660,95 @@ interface PrototypeShellProps {
|
|
|
1557
1660
|
*/
|
|
1558
1661
|
onNavigate?: (viewId: string) => void;
|
|
1559
1662
|
}
|
|
1560
|
-
declare function PrototypeShell({ config, headerActions, entityPanelChildren, onNavigate, }: PrototypeShellProps): React
|
|
1663
|
+
declare function PrototypeShell({ config, headerActions, entityPanelChildren, onNavigate, }: PrototypeShellProps): React.JSX.Element;
|
|
1561
1664
|
|
|
1562
1665
|
interface PrototypeInboxViewProps extends InboxViewConfig {
|
|
1563
1666
|
/** Extra ReactNode rendered at the end of the header bar (e.g. exit button). */
|
|
1564
|
-
headerActions?: React
|
|
1667
|
+
headerActions?: React.ReactNode;
|
|
1565
1668
|
onOpenEntityPanel?: () => void;
|
|
1566
1669
|
onOpenRecentActivity?: () => void;
|
|
1567
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
|
+
};
|
|
1568
1693
|
}
|
|
1569
|
-
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;
|
|
1570
1696
|
|
|
1571
1697
|
interface PrototypeInsightsViewProps extends InsightsViewConfig {
|
|
1572
1698
|
assistantName?: string;
|
|
1573
|
-
headerActions?: React
|
|
1699
|
+
headerActions?: React.ReactNode;
|
|
1574
1700
|
onNavigateToInbox?: () => void;
|
|
1575
1701
|
}
|
|
1576
|
-
declare function PrototypeInsightsView({ tabs, coaching, metrics, expandedMetrics, dashboardCards, analytics, assistantName, headerActions, onNavigateToInbox, }: PrototypeInsightsViewProps): React
|
|
1702
|
+
declare function PrototypeInsightsView({ tabs, coaching, metrics, expandedMetrics, dashboardCards, analytics, assistantName, headerActions, onNavigateToInbox, customTabs, }: PrototypeInsightsViewProps): React.JSX.Element;
|
|
1577
1703
|
|
|
1578
1704
|
interface PrototypeAccountsViewProps extends AccountsViewConfig {
|
|
1579
|
-
headerActions?: React
|
|
1705
|
+
headerActions?: React.ReactNode;
|
|
1580
1706
|
onRowClick?: () => void;
|
|
1581
1707
|
}
|
|
1582
|
-
declare function PrototypeAccountsView({ filterTabs, headerActions, onRowClick, }: PrototypeAccountsViewProps): React
|
|
1708
|
+
declare function PrototypeAccountsView({ filterTabs, headerActions, onRowClick, rows, filterCategories, quickViews, moreQuickViews, quickViewFilters, iconMap, entityUrlBuilder, onScoreFactorFeedback, onScoreApproveFeedback, onScoreDismissFeedback, }: PrototypeAccountsViewProps): React.JSX.Element;
|
|
1583
1709
|
|
|
1584
1710
|
interface PrototypeAdminViewProps extends AdminViewConfig {
|
|
1585
|
-
headerActions?: React
|
|
1711
|
+
headerActions?: React.ReactNode;
|
|
1586
1712
|
}
|
|
1587
|
-
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;
|
|
1588
1714
|
|
|
1589
1715
|
interface PrototypeWorkQueueViewProps {
|
|
1590
|
-
headerActions?: React
|
|
1716
|
+
headerActions?: React.ReactNode;
|
|
1591
1717
|
}
|
|
1592
|
-
declare function PrototypeWorkQueueView({ headerActions, }: PrototypeWorkQueueViewProps): React
|
|
1718
|
+
declare function PrototypeWorkQueueView({ headerActions, }: PrototypeWorkQueueViewProps): React.JSX.Element;
|
|
1593
1719
|
|
|
1594
1720
|
type MessageProps = HTMLAttributes<HTMLDivElement> & {
|
|
1595
1721
|
from: "user" | "assistant";
|
|
1596
1722
|
};
|
|
1597
|
-
declare const Message: ({ className, from, ...props }: MessageProps) => React
|
|
1723
|
+
declare const Message: ({ className, from, ...props }: MessageProps) => React.JSX.Element;
|
|
1598
1724
|
declare const messageContentVariants: (props?: ({
|
|
1599
1725
|
variant?: "flat" | "contained" | null | undefined;
|
|
1600
1726
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
1601
1727
|
type MessageContentProps = HTMLAttributes<HTMLDivElement> & VariantProps<typeof messageContentVariants>;
|
|
1602
|
-
declare const MessageContent: ({ children, className, variant, ...props }: MessageContentProps) => React
|
|
1728
|
+
declare const MessageContent: ({ children, className, variant, ...props }: MessageContentProps) => React.JSX.Element;
|
|
1603
1729
|
type MessageAvatarProps = ComponentProps<typeof Avatar> & {
|
|
1604
1730
|
src?: string;
|
|
1605
1731
|
name?: string;
|
|
1606
1732
|
};
|
|
1607
|
-
declare const MessageAvatar: ({ src, name, className, children, ...props }: MessageAvatarProps) => React
|
|
1733
|
+
declare const MessageAvatar: ({ src, name, className, children, ...props }: MessageAvatarProps) => React.JSX.Element;
|
|
1608
1734
|
|
|
1609
1735
|
type StatusType = "success" | "warning" | "error" | "neutral";
|
|
1610
|
-
interface StatusBadgeProps extends React
|
|
1736
|
+
interface StatusBadgeProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
1611
1737
|
status: string;
|
|
1612
1738
|
statusMap?: Record<string, StatusType>;
|
|
1613
1739
|
}
|
|
1614
|
-
declare function StatusBadge({ status, statusMap, className, ...props }: StatusBadgeProps): React
|
|
1740
|
+
declare function StatusBadge({ status, statusMap, className, ...props }: StatusBadgeProps): React.JSX.Element;
|
|
1615
1741
|
|
|
1616
1742
|
interface SimpleDataTableProps<TData> {
|
|
1617
1743
|
columns: ColumnDef<TData, any>[];
|
|
1618
1744
|
data: TData[];
|
|
1619
1745
|
onRowClick?: (row: TData) => void;
|
|
1620
|
-
emptyIcon?: React
|
|
1746
|
+
emptyIcon?: React.ReactNode;
|
|
1621
1747
|
emptyMessage?: string;
|
|
1622
1748
|
emptyDescription?: string;
|
|
1623
1749
|
className?: string;
|
|
1624
1750
|
}
|
|
1625
|
-
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;
|
|
1626
1752
|
|
|
1627
1753
|
type AgentOrbState = null | "thinking" | "listening" | "talking";
|
|
1628
1754
|
interface AgentOrbProps {
|
|
@@ -1643,7 +1769,7 @@ interface AgentOrbProps {
|
|
|
1643
1769
|
* Full AgentOrb with optional CSS glow wrapper.
|
|
1644
1770
|
* Colors default to CSS `--primary` via computed style at mount time.
|
|
1645
1771
|
*/
|
|
1646
|
-
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;
|
|
1647
1773
|
interface AgentOrbCanvasProps {
|
|
1648
1774
|
colors?: [string, string];
|
|
1649
1775
|
seed?: number;
|
|
@@ -1658,7 +1784,7 @@ interface AgentOrbCanvasProps {
|
|
|
1658
1784
|
className?: string;
|
|
1659
1785
|
resizeDebounce?: number;
|
|
1660
1786
|
}
|
|
1661
|
-
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;
|
|
1662
1788
|
|
|
1663
1789
|
type AgentWidgetStatus = "idle" | "connecting" | "connected" | "error";
|
|
1664
1790
|
type AgentWidgetMode = "listening" | "speaking" | null;
|
|
@@ -1673,13 +1799,13 @@ interface AgentWidgetProps {
|
|
|
1673
1799
|
onSendMessage?: (text: string) => void;
|
|
1674
1800
|
onEndSession?: () => void;
|
|
1675
1801
|
inputMode?: "voice" | "text" | "voice+text";
|
|
1676
|
-
visualSlot?: React
|
|
1677
|
-
assistantAvatarSlot?: React
|
|
1678
|
-
header?: React
|
|
1679
|
-
footer?: React
|
|
1802
|
+
visualSlot?: React.ReactNode;
|
|
1803
|
+
assistantAvatarSlot?: React.ReactNode;
|
|
1804
|
+
header?: React.ReactNode;
|
|
1805
|
+
footer?: React.ReactNode;
|
|
1680
1806
|
className?: string;
|
|
1681
1807
|
}
|
|
1682
|
-
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;
|
|
1683
1809
|
|
|
1684
1810
|
type AgentPopoverStep = string;
|
|
1685
1811
|
interface AgentPopoverContextValue {
|
|
@@ -1693,26 +1819,26 @@ interface AgentPopoverProps {
|
|
|
1693
1819
|
defaultStep?: string;
|
|
1694
1820
|
step?: string;
|
|
1695
1821
|
onStepChange?: (step: string) => void;
|
|
1696
|
-
children: React
|
|
1822
|
+
children: React.ReactNode;
|
|
1697
1823
|
className?: string;
|
|
1698
1824
|
}
|
|
1699
|
-
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;
|
|
1700
1826
|
type ConnectionStatus = "ready" | "connected" | "listening" | "speaking";
|
|
1701
1827
|
interface AgentPopoverBrandingProps {
|
|
1702
1828
|
title?: string;
|
|
1703
1829
|
subtitle?: string;
|
|
1704
1830
|
badge?: string;
|
|
1705
|
-
visualSlot?: React
|
|
1831
|
+
visualSlot?: React.ReactNode;
|
|
1706
1832
|
statusIndicator?: ConnectionStatus;
|
|
1707
1833
|
className?: string;
|
|
1708
1834
|
}
|
|
1709
|
-
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;
|
|
1710
1836
|
interface AgentPopoverStepContentProps {
|
|
1711
1837
|
step: string;
|
|
1712
|
-
children: React
|
|
1838
|
+
children: React.ReactNode;
|
|
1713
1839
|
className?: string;
|
|
1714
1840
|
}
|
|
1715
|
-
declare function AgentPopoverStepContent({ step, children, className }: AgentPopoverStepContentProps): React
|
|
1841
|
+
declare function AgentPopoverStepContent({ step, children, className }: AgentPopoverStepContentProps): React.JSX.Element | null;
|
|
1716
1842
|
interface AgentPopoverFormField {
|
|
1717
1843
|
name: string;
|
|
1718
1844
|
label: string;
|
|
@@ -1725,27 +1851,27 @@ interface AgentPopoverFormProps {
|
|
|
1725
1851
|
submitLabel?: string;
|
|
1726
1852
|
onSubmit?: (values: Record<string, string>) => void;
|
|
1727
1853
|
className?: string;
|
|
1728
|
-
children?: React
|
|
1854
|
+
children?: React.ReactNode;
|
|
1729
1855
|
}
|
|
1730
|
-
declare function AgentPopoverForm({ fields, submitLabel, onSubmit, className, children, }: AgentPopoverFormProps): React
|
|
1856
|
+
declare function AgentPopoverForm({ fields, submitLabel, onSubmit, className, children, }: AgentPopoverFormProps): React.JSX.Element;
|
|
1731
1857
|
interface AgentPopoverOverviewProps {
|
|
1732
1858
|
userSummary?: Record<string, string>;
|
|
1733
1859
|
discussionPoints?: string[];
|
|
1734
|
-
actions?: React
|
|
1860
|
+
actions?: React.ReactNode;
|
|
1735
1861
|
className?: string;
|
|
1736
1862
|
}
|
|
1737
|
-
declare function AgentPopoverOverview({ userSummary, discussionPoints, actions, className, }: AgentPopoverOverviewProps): React
|
|
1863
|
+
declare function AgentPopoverOverview({ userSummary, discussionPoints, actions, className, }: AgentPopoverOverviewProps): React.JSX.Element;
|
|
1738
1864
|
interface AgentPopoverChatProps {
|
|
1739
1865
|
messages?: AgentWidgetMessage[];
|
|
1740
1866
|
onSendMessage?: (text: string) => void;
|
|
1741
1867
|
onEndSession?: () => void;
|
|
1742
1868
|
inputMode?: "voice" | "text" | "voice+text";
|
|
1743
|
-
visualSlot?: React
|
|
1744
|
-
assistantAvatarSlot?: React
|
|
1869
|
+
visualSlot?: React.ReactNode;
|
|
1870
|
+
assistantAvatarSlot?: React.ReactNode;
|
|
1745
1871
|
status?: AgentWidgetStatus;
|
|
1746
1872
|
mode?: AgentWidgetMode;
|
|
1747
1873
|
className?: string;
|
|
1748
1874
|
}
|
|
1749
|
-
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;
|
|
1750
1876
|
|
|
1751
|
-
export { type AccountFilterTab, type AccountsViewConfig, type ActiveVariant, ActivityDetail, type ActivityDetailData, type ActivityDetailProps, type ActivityItem, ActivityLog, type ActivityLogItem, type ActivityLogProps, type ActivityParticipant, ActivityRow, type ActivityThreadMessage, type AdminTab, type AdminViewConfig, AgentOrb, AgentOrbCanvas, type AgentOrbProps, type AgentOrbState, AgentPopover, AgentPopoverBranding, type AgentPopoverBrandingProps, AgentPopoverChat, type AgentPopoverChatProps, type AgentPopoverContextValue, AgentPopoverForm, type AgentPopoverFormField, type AgentPopoverFormProps, AgentPopoverOverview, type AgentPopoverOverviewProps, type AgentPopoverProps, type AgentPopoverStep, AgentPopoverStepContent, type AgentPopoverStepContentProps, AgentWidget, type AgentWidgetMessage, type AgentWidgetMode, type AgentWidgetProps, type AgentWidgetStatus, type AssigneeFilter, Avatar, AvatarBadge, AvatarFallback, AvatarGroup, AvatarGroupCount, AvatarImage, Badge, BarChartComponent, type BarChartComponentProps, type BarSeries, Button, CHART_CURSOR_STYLE, CHART_TOOLTIP_STYLE, Card, CardAction, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, type ChartConfig, ChartContainer, ChartLegend, ChartLegendContent, ChartStyle, ChartTooltip, ChartTooltipContent, type ChartTooltipEntry, CheckInsCard, Citation, ConnectedApps, type ConnectionStatus, type ContactChannel, type ContactItem, ContactList, type ContactListProps, DataTable, DataTableDisplay, type DataTableDisplayColumn, DataTableFilter, type DataTableFilterCategory, type DataTableQuickViewValue, DataTableQuickViews, DataTableToolbar, DetailViewHeader, DetailViewSummary, DetailViewThread, Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogTitle, DialogTrigger, DonutChart, type DonutChartProps, type DonutSegment, DropdownMenu, DropdownMenuCheckboxItem, DropdownMenuContent, DropdownMenuGroup, DropdownMenuItem, DropdownMenuLabel, DropdownMenuPortal, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuSeparator, DropdownMenuShortcut, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubTrigger, DropdownMenuTrigger, EntityActivityItem, EntityDetails, type EntityMetadataField, EntityMetadataGrid, EntityPanel, type EntityPanelBrandIcons, type EntityPanelConfig, EntityPanelHeader, type EntityPanelSection, EntityPanelTabs, EntitySection, type FilterDefinition, type GroupedListGroup, GroupedListView, type GroupedListViewProps, type InboxDetailSections, type InboxFilterCategory, InboxGroupHeader, InboxRow, type InboxRowProps, InboxToolbar, type InboxToolbarProps, type InboxViewConfig, Input, InsightsFilterBar, type InsightsFilterBarProps, type InsightsViewConfig, ItemList, ItemListDisplay, type ItemListDisplayState, ItemListFilter, type ItemListFilterCategory, type ItemListGrouping, type ItemListQuickView, ItemListToolbar, type ItemListViewMode, Label, Message, MessageAvatar, type MessageAvatarProps, MessageContent, type MessageContentProps, type MessageProps, MetricCard, type MetricCardData, type MetricCardProps, type MetricDataPoint, PerformanceMetricsTable, type PerformanceMetricsTableRow, type PerformanceMetricsTableSortOption, type PipelineFilterBreakdown, PipelineOverview, type PipelineOverviewProps, type PipelineStage, type PipelineStageMetrics, type PipelineStageTiming, PotentialContacts, PreviewList, PreviewListItem, type PreviewListItemProps, Progress, PrototypeAccountsView, type PrototypeAccountsViewProps, PrototypeAdminView, type PrototypeAdminViewProps, type PrototypeBrandConfig, type PrototypeConfig, PrototypeInboxView, type PrototypeInboxViewProps, PrototypeInsightsView, type PrototypeInsightsViewProps, PrototypeShell, type PrototypeShellProps, PrototypeWorkQueueView, type PrototypeWorkQueueViewProps, type QueueItem, QuickActionChatArea, QuickActionModal, type QuickActionPriority$1 as QuickActionPriority, QuickActionSidebarNav, type QuickActionSubmitPayload, type QuickActionTaskDraft, type QuickActionTemplate, RecentActivity, RecentlyCompletedCard, type RecommendedAction, RecommendedActionsSection, ReportCard, type ReportCardProps, SankeyChart, type SankeyData, type SankeyDropOff, type SankeyHoverCardData, type SankeyLink, type SankeyNode, type SankeyStageMetrics, ScoreAnalysisModal, type ScoreAnalysisModalProps, ScoreAnalysisPanel, ScoreBreakdown, type ScoreBreakdownProps, type ScoreFactor, ScoreFeedback, ScoreRing, type ScoreRingProps, ScrollArea, ScrollBar, Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, SelectTrigger, SelectValue, Separator, Sheet, SheetClose, SheetContent, SheetDescription, SheetFooter, SheetHeader, SheetTitle, SheetTrigger, Sidebar, SidebarContent, SidebarFooter, SidebarGroup, SidebarGroupAction, SidebarGroupContent, SidebarGroupLabel, SidebarHeader, SidebarInput, SidebarInset, SidebarMenu, SidebarMenuAction, SidebarMenuBadge, SidebarMenuButton, SidebarMenuItem, SidebarMenuSkeleton, SidebarMenuSub, SidebarMenuSubButton, SidebarMenuSubItem, type SidebarNavItem, type SidebarNavSection, SidebarProvider, SidebarRail, SidebarSeparator, SidebarTrigger, type SidebarUserProfile, SignalApproval, Actions as SignalApprovalActions, Gate as SignalApprovalGate, Root as SignalApprovalRoot, type SignalScoreData, SimpleChartTooltip, type SimpleChartTooltipProps, SimpleDataTable, type SimpleDataTableProps, Skeleton, type SourceDef, SourceList, StatusBadge, type StatusBadgeProps, type StatusType, type StyledBarItem, StyledBarList, type StyledBarListProps, type SuggestedAction, type SuggestedActionCallMeta, type SuggestedActionEmailMeta, type SuggestedActionFollowUp, type SuggestedActionReplyTo, type SuggestedActionThreadMessage, type SuggestedActionTicket, SuggestedActions, type SuggestedActionsIconMap, type SuggestedActionsProps, type SuggestedContact, SystemActivity, Table, TableBody, TableCaption, TableCell, TableFooter, TableHead, TableHeader, TableRow, Tabs, TabsContent, TabsList, TabsTrigger, Textarea, ThreadMessage, TimelineActivity, type TimelineActivityProps, type TimelineEvent, Tooltip, TooltipContent, TooltipProvider, TooltipTrigger, TopLineMetrics, type TopLineMetricsProps, TopTasksCard, TrendAreaChart, type TrendAreaChartProps, type TrendSeries, UpcomingMeetingsCard, type UserMenuItem, type ViewMode, ViewModeToggle, type ViewModeToggleProps, VolumeAnalysisChart, type VolumeAnalysisChartProps, type VolumeDataKey, type WorkQueueViewConfig, badgeVariants, buttonVariants, cn, getScoreColor, tabsListVariants, useAgentPopover, useIsMobile, useScoreFeedback, useSidebar, useSignalApproval };
|
|
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 };
|