@inf-monkeys-tech/monkeys-design 1.0.53 → 1.0.54

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.
@@ -0,0 +1,1257 @@
1
+ import * as React from 'react';
2
+ import { ReactNode, MouseEvent, ElementType, CSSProperties, ComponentPropsWithoutRef, ComponentType, HTMLAttributes, KeyboardEvent, DragEvent } from 'react';
3
+ import * as react_jsx_runtime from 'react/jsx-runtime';
4
+ import { c1 as BaseTableSortDirection, c as BaseAppearance, bL as BaseTableColumnSizes, bJ as BaseTableColumnOrderChangeDetail, bK as BaseTableColumnSizeChangeDetail } from './types-c6ec8b90925b.mjs';
5
+ interface WorkbenchResizableSidebarItem {
6
+ id: string;
7
+ label: ReactNode;
8
+ icon?: ReactNode;
9
+ active?: boolean;
10
+ disabled?: boolean;
11
+ href?: string;
12
+ to?: string;
13
+ title?: string;
14
+ endContent?: ReactNode;
15
+ className?: string;
16
+ onClick?: (event: MouseEvent<HTMLElement>) => void;
17
+ }
18
+ interface WorkbenchResizableSidebarSection {
19
+ id: string;
20
+ label?: ReactNode;
21
+ items: WorkbenchResizableSidebarItem[];
22
+ className?: string;
23
+ labelClassName?: string;
24
+ }
25
+ interface WorkbenchResizableSidebarClassNames {
26
+ root?: string;
27
+ header?: string;
28
+ title?: string;
29
+ collapseButton?: string;
30
+ list?: string;
31
+ section?: string;
32
+ sectionLabel?: string;
33
+ item?: string;
34
+ itemIcon?: string;
35
+ itemLabel?: string;
36
+ resizeHandle?: string;
37
+ mobileNav?: string;
38
+ mobileItem?: string;
39
+ }
40
+ interface WorkbenchResizableSidebarProps {
41
+ title?: ReactNode;
42
+ items: WorkbenchResizableSidebarItem[];
43
+ sections?: WorkbenchResizableSidebarSection[];
44
+ activeItemId?: string;
45
+ itemAs?: ElementType;
46
+ collapsed?: boolean;
47
+ defaultCollapsed?: boolean;
48
+ onCollapsedChange?: (collapsed: boolean) => void;
49
+ width?: number;
50
+ onWidthChange?: (width: number) => void;
51
+ defaultWidth?: number;
52
+ minWidth?: number;
53
+ maxWidth?: number;
54
+ collapsedWidth?: number;
55
+ collapseThreshold?: number;
56
+ storageKey?: string;
57
+ resizable?: boolean;
58
+ collapsible?: boolean;
59
+ collapseLabel?: string;
60
+ expandLabel?: string;
61
+ resizeLabel?: string;
62
+ desktopClassName?: string;
63
+ mobileClassName?: string;
64
+ className?: string;
65
+ classNames?: WorkbenchResizableSidebarClassNames;
66
+ style?: CSSProperties;
67
+ }
68
+ declare const WorkbenchResizableSidebar: React.ForwardRefExoticComponent<WorkbenchResizableSidebarProps & React.RefAttributes<HTMLElement>>;
69
+ interface WorkbenchContentPaneClassNames {
70
+ root?: string;
71
+ header?: string;
72
+ body?: string;
73
+ footer?: string;
74
+ }
75
+ interface WorkbenchContentPaneBodyProps extends Omit<ComponentPropsWithoutRef<'div'>, 'children' | 'className'> {
76
+ className?: string;
77
+ }
78
+ interface WorkbenchContentPaneProps extends Omit<ComponentPropsWithoutRef<'section'>, 'children' | 'className' | 'style'> {
79
+ as?: ElementType;
80
+ bodyAs?: ElementType;
81
+ header?: ReactNode;
82
+ footer?: ReactNode;
83
+ children?: ReactNode;
84
+ className?: string;
85
+ headerClassName?: string;
86
+ bodyClassName?: string;
87
+ footerClassName?: string;
88
+ bodyProps?: WorkbenchContentPaneBodyProps;
89
+ classNames?: WorkbenchContentPaneClassNames;
90
+ style?: CSSProperties;
91
+ [key: string]: any;
92
+ }
93
+ declare const WorkbenchContentPane: React.ForwardRefExoticComponent<Omit<WorkbenchContentPaneProps, "ref"> & React.RefAttributes<HTMLElement>>;
94
+ interface WorkbenchGalleryColumn {
95
+ key: string;
96
+ label?: ReactNode;
97
+ renderType?: string;
98
+ type?: string;
99
+ wrap?: boolean;
100
+ [key: string]: any;
101
+ }
102
+ interface WorkbenchGallerySettingsValue {
103
+ visibleColumnKeys?: string[];
104
+ galleryFieldKey?: string;
105
+ galleryLayout?: 'fixed' | 'masonry' | string;
106
+ galleryDensity?: 'comfortable' | 'compact' | 'detailed' | string;
107
+ galleryGridColumns?: 'auto' | number | string;
108
+ galleryBentoColumns?: 1 | 2 | 3 | number;
109
+ galleryDetailVisibility?: 'all' | 'limit' | string;
110
+ galleryDetailLimit?: number | string;
111
+ [key: string]: any;
112
+ }
113
+ interface WorkbenchGallerySettingsOption<Value extends number | string = string> {
114
+ value: Value;
115
+ label: ReactNode;
116
+ disabled?: boolean;
117
+ }
118
+ interface WorkbenchGallerySettingsLabels {
119
+ settingsButton?: ReactNode;
120
+ title?: ReactNode;
121
+ visibleColumns?: ReactNode;
122
+ coverField?: ReactNode;
123
+ autoDetect?: ReactNode;
124
+ cardDensity?: ReactNode;
125
+ cardColumns?: ReactNode;
126
+ detailColumns?: ReactNode;
127
+ fieldVisibility?: ReactNode;
128
+ fieldLimit?: ReactNode;
129
+ fieldLimitHint?: ReactNode;
130
+ layout?: ReactNode;
131
+ compact?: ReactNode;
132
+ comfortable?: ReactNode;
133
+ detailed?: ReactNode;
134
+ autoColumns?: ReactNode;
135
+ columns?: (count: number) => ReactNode;
136
+ bentoColumns?: (count: number) => ReactNode;
137
+ topLimit?: ReactNode;
138
+ allFields?: ReactNode;
139
+ adaptiveGrid?: ReactNode;
140
+ masonry?: ReactNode;
141
+ }
142
+ interface WorkbenchGallerySettingsPanelClassNames {
143
+ root?: string;
144
+ section?: string;
145
+ sectionHeader?: string;
146
+ columnList?: string;
147
+ columnItem?: string;
148
+ control?: string;
149
+ }
150
+ interface WorkbenchGallerySettingsPanelProps {
151
+ columns?: WorkbenchGalleryColumn[];
152
+ galleryFieldOptions?: WorkbenchGalleryColumn[];
153
+ value?: WorkbenchGallerySettingsValue;
154
+ onValueChange?: (nextValue: WorkbenchGallerySettingsValue, patch: Partial<WorkbenchGallerySettingsValue>) => void;
155
+ labels?: WorkbenchGallerySettingsLabels;
156
+ densityOptions?: Array<WorkbenchGallerySettingsOption>;
157
+ gridColumnOptions?: Array<WorkbenchGallerySettingsOption<'auto' | number>>;
158
+ bentoColumnOptions?: Array<WorkbenchGallerySettingsOption<number>>;
159
+ detailVisibilityOptions?: Array<WorkbenchGallerySettingsOption>;
160
+ layoutOptions?: Array<WorkbenchGallerySettingsOption>;
161
+ getColumnLabel?: (column: WorkbenchGalleryColumn) => ReactNode;
162
+ getColumnDescription?: (column: WorkbenchGalleryColumn) => ReactNode;
163
+ showColumnVisibility?: boolean;
164
+ showGalleryControls?: boolean;
165
+ showLayoutControl?: boolean;
166
+ showGridColumns?: boolean;
167
+ showDetailColumns?: boolean;
168
+ allowEmptyVisibleColumns?: boolean;
169
+ className?: string;
170
+ classNames?: WorkbenchGallerySettingsPanelClassNames;
171
+ }
172
+ interface WorkbenchGallerySettingsButtonClassNames {
173
+ root?: string;
174
+ trigger?: string;
175
+ popover?: string;
176
+ header?: string;
177
+ panel?: string;
178
+ }
179
+ interface WorkbenchGallerySettingsButtonProps extends WorkbenchGallerySettingsPanelProps {
180
+ open?: boolean;
181
+ defaultOpen?: boolean;
182
+ onOpenChange?: (open: boolean) => void;
183
+ triggerIcon?: ReactNode;
184
+ triggerLabel?: ReactNode;
185
+ triggerTitle?: string;
186
+ align?: 'end' | 'start';
187
+ popoverWidth?: number;
188
+ panelHeader?: ReactNode;
189
+ panelBefore?: ReactNode;
190
+ panelAfter?: ReactNode;
191
+ panelClassName?: string;
192
+ buttonClassName?: string;
193
+ popoverClassName?: string;
194
+ buttonClassNames?: WorkbenchGallerySettingsButtonClassNames;
195
+ }
196
+ declare function WorkbenchGallerySettingsPanel({ columns, galleryFieldOptions, value, onValueChange, labels, densityOptions, gridColumnOptions, bentoColumnOptions, detailVisibilityOptions, layoutOptions, getColumnLabel, getColumnDescription, showColumnVisibility, showGalleryControls, showLayoutControl, showGridColumns, showDetailColumns, allowEmptyVisibleColumns, className, classNames, }: WorkbenchGallerySettingsPanelProps): react_jsx_runtime.JSX.Element;
197
+ declare function WorkbenchGallerySettingsButton({ open, defaultOpen, onOpenChange, triggerIcon, triggerLabel, triggerTitle, align, popoverWidth, panelHeader, panelBefore, panelAfter, panelClassName, buttonClassName, popoverClassName, buttonClassNames, labels, className, classNames, ...panelProps }: WorkbenchGallerySettingsButtonProps): react_jsx_runtime.JSX.Element;
198
+ interface WorkbenchContentToolbarViewModeOption {
199
+ value: string;
200
+ label: ReactNode;
201
+ icon?: ReactNode;
202
+ disabled?: boolean;
203
+ }
204
+ interface WorkbenchContentToolbarClassNames {
205
+ root?: string;
206
+ start?: string;
207
+ end?: string;
208
+ viewModeRoot?: string;
209
+ viewModeTrigger?: string;
210
+ viewModeMenu?: string;
211
+ viewModeItem?: string;
212
+ settings?: string;
213
+ }
214
+ interface WorkbenchContentToolbarProps extends Omit<ComponentPropsWithoutRef<'div'>, 'children' | 'className'> {
215
+ as?: ElementType;
216
+ children?: ReactNode;
217
+ end?: ReactNode;
218
+ viewMode?: string;
219
+ viewModeOptions?: WorkbenchContentToolbarViewModeOption[];
220
+ onViewModeChange?: (nextValue: string, option: WorkbenchContentToolbarViewModeOption) => void;
221
+ gallerySettings?: false | WorkbenchGallerySettingsButtonProps;
222
+ gallerySettingsPlacement?: 'end' | 'start';
223
+ className?: string;
224
+ startClassName?: string;
225
+ endClassName?: string;
226
+ classNames?: WorkbenchContentToolbarClassNames;
227
+ [key: string]: any;
228
+ }
229
+ declare const WorkbenchContentToolbar: React.ForwardRefExoticComponent<Omit<WorkbenchContentToolbarProps, "ref"> & React.RefAttributes<HTMLElement>>;
230
+ interface WorkbenchDetailSidebarClassNames {
231
+ root?: string;
232
+ header?: string;
233
+ body?: string;
234
+ footer?: string;
235
+ resizeHandle?: string;
236
+ autoBody?: string;
237
+ section?: string;
238
+ sectionHeader?: string;
239
+ sectionTitle?: string;
240
+ sectionDescription?: string;
241
+ descriptionList?: string;
242
+ descriptionListItem?: string;
243
+ descriptionListTerm?: string;
244
+ descriptionListValue?: string;
245
+ fieldLabel?: string;
246
+ fieldLabelIcon?: string;
247
+ fieldValue?: string;
248
+ mediaValue?: string;
249
+ mediaImage?: string;
250
+ mediaCaption?: string;
251
+ emptyState?: string;
252
+ }
253
+ interface WorkbenchDetailSidebarBodyProps extends Omit<ComponentPropsWithoutRef<'div'>, 'children' | 'className'> {
254
+ className?: string;
255
+ }
256
+ interface WorkbenchDetailSidebarField<Row = any> {
257
+ key: string;
258
+ label?: ReactNode;
259
+ labelIcon?: ElementType | ReactNode;
260
+ icon?: ElementType | ReactNode;
261
+ renderType?: string;
262
+ value?: ((record: null | Row | undefined, field: WorkbenchDetailSidebarField<Row>) => ReactNode) | ReactNode;
263
+ description?: ReactNode;
264
+ hidden?: ((field: WorkbenchDetailSidebarField<Row>, record: null | Row | undefined) => boolean) | boolean;
265
+ emptyValue?: ReactNode;
266
+ [key: string]: any;
267
+ }
268
+ interface WorkbenchDetailSidebarSection<Row = any> {
269
+ id?: string;
270
+ title?: ReactNode;
271
+ description?: ReactNode;
272
+ fields?: WorkbenchDetailSidebarField<Row>[];
273
+ columns?: 1 | 2 | 3;
274
+ hidden?: ((section: WorkbenchDetailSidebarSection<Row>, record: null | Row | undefined) => boolean) | boolean;
275
+ emptyState?: ReactNode;
276
+ [key: string]: any;
277
+ }
278
+ interface WorkbenchDetailSidebarRenderContext<Row = any> {
279
+ field: WorkbenchDetailSidebarField<Row>;
280
+ fieldIndex: number;
281
+ section: WorkbenchDetailSidebarSection<Row>;
282
+ sectionIndex: number;
283
+ record: null | Row | undefined;
284
+ }
285
+ interface WorkbenchDetailSidebarProps<Row = any> extends Omit<ComponentPropsWithoutRef<'aside'>, 'children' | 'className' | 'style'> {
286
+ as?: ElementType;
287
+ bodyAs?: ElementType;
288
+ open?: boolean;
289
+ width?: number | string;
290
+ header?: ReactNode;
291
+ footer?: ReactNode;
292
+ resizeHandle?: ReactNode;
293
+ children?: ReactNode;
294
+ record?: null | Row;
295
+ fields?: WorkbenchDetailSidebarField<Row>[];
296
+ sections?: WorkbenchDetailSidebarSection<Row>[];
297
+ fieldColumns?: 1 | 2 | 3;
298
+ emptyValue?: ReactNode;
299
+ emptyState?: ReactNode;
300
+ getFieldValue?: (field: WorkbenchDetailSidebarField<Row>, record: null | Row | undefined, context: WorkbenchDetailSidebarRenderContext<Row>) => unknown;
301
+ renderFieldValue?: (field: WorkbenchDetailSidebarField<Row>, record: null | Row | undefined, context: WorkbenchDetailSidebarRenderContext<Row>) => ReactNode;
302
+ formatFieldValue?: (value: unknown, context: WorkbenchDetailSidebarRenderContext<Row>) => ReactNode;
303
+ formatFieldLabel?: (label: ReactNode, context: Omit<WorkbenchDetailSidebarRenderContext<Row>, 'fieldIndex'> & {
304
+ field: WorkbenchDetailSidebarField<Row>;
305
+ fieldIndex?: number;
306
+ }) => ReactNode;
307
+ className?: string;
308
+ headerClassName?: string;
309
+ bodyClassName?: string;
310
+ footerClassName?: string;
311
+ resizeHandleClassName?: string;
312
+ bodyProps?: WorkbenchDetailSidebarBodyProps;
313
+ classNames?: WorkbenchDetailSidebarClassNames;
314
+ style?: CSSProperties;
315
+ [key: string]: any;
316
+ }
317
+ declare const WorkbenchDetailSidebar: React.ForwardRefExoticComponent<Omit<WorkbenchDetailSidebarProps<any>, "ref"> & React.RefAttributes<HTMLElement>>;
318
+ interface WorkbenchTableViewColumn {
319
+ key: string;
320
+ label?: ReactNode;
321
+ helperText?: ReactNode;
322
+ renderType?: string;
323
+ type?: string;
324
+ description?: ReactNode;
325
+ meta?: ReactNode;
326
+ actions?: ReactNode;
327
+ trailing?: ReactNode;
328
+ wrap?: boolean;
329
+ align?: 'center' | 'left' | 'right';
330
+ width?: number | string;
331
+ minWidth?: number | string;
332
+ maxWidth?: number | string;
333
+ sortable?: boolean;
334
+ sortDirection?: BaseTableSortDirection;
335
+ sortLabel?: string;
336
+ draggable?: boolean;
337
+ dragLabel?: string;
338
+ resizable?: boolean;
339
+ resizeLabel?: string;
340
+ compactHeaderClassName?: string;
341
+ compactCellClassName?: string;
342
+ headerClassName?: string;
343
+ cellClassName?: string;
344
+ [key: string]: any;
345
+ }
346
+ interface WorkbenchTableViewClassNames {
347
+ root?: string;
348
+ scrollArea?: string;
349
+ table?: string;
350
+ header?: string;
351
+ headerRow?: string;
352
+ headerCell?: string;
353
+ body?: string;
354
+ row?: string;
355
+ cell?: string;
356
+ footer?: string;
357
+ helper?: string;
358
+ }
359
+ interface WorkbenchTableViewRenderContext<Row = any> {
360
+ row: Row;
361
+ rowIndex: number;
362
+ column: WorkbenchTableViewColumn;
363
+ columnIndex: number;
364
+ compact: boolean;
365
+ surface: 'list' | string;
366
+ }
367
+ interface WorkbenchTableViewHeaderContext<Row = any> {
368
+ column: WorkbenchTableViewColumn;
369
+ columnIndex: number;
370
+ columns: WorkbenchTableViewColumn[];
371
+ rows: Row[];
372
+ columnType?: string;
373
+ }
374
+ interface WorkbenchTableViewProps<Row = any> {
375
+ rows?: Row[];
376
+ columns?: WorkbenchTableViewColumn[];
377
+ onRowClick?: (row: Row, rowIndex: number) => void;
378
+ selectedRowKey?: string;
379
+ selectedLinkKey?: string;
380
+ activePrimaryColumn?: null | WorkbenchTableViewColumn;
381
+ activeTablePrimaryColumn?: null | WorkbenchTableViewColumn;
382
+ renderedRowCount?: number;
383
+ totalRowCount?: number;
384
+ tableMinWidth?: number;
385
+ minWidth?: number;
386
+ bodyMaxHeight?: number | string;
387
+ stickyFirstColumn?: boolean;
388
+ appearance?: BaseAppearance;
389
+ columnOrder?: string[];
390
+ columnSizes?: BaseTableColumnSizes;
391
+ columnDragEnabled?: boolean;
392
+ columnResizeEnabled?: boolean;
393
+ className?: string;
394
+ tableClassName?: string;
395
+ rowClassName?: ((row: Row, rowIndex: number) => string | undefined) | string;
396
+ classNames?: WorkbenchTableViewClassNames;
397
+ style?: CSSProperties;
398
+ renderCell?: (column: WorkbenchTableViewColumn, row: Row, context: WorkbenchTableViewRenderContext<Row>) => ReactNode;
399
+ renderFieldValue?: (column: WorkbenchTableViewColumn, row: Row, context: WorkbenchTableViewRenderContext<Row>) => ReactNode;
400
+ renderColumnHeader?: (column: WorkbenchTableViewColumn, context: WorkbenchTableViewHeaderContext<Row>) => ReactNode;
401
+ onColumnOrderChange?: (nextOrder: string[], detail: BaseTableColumnOrderChangeDetail) => void;
402
+ onColumnSizeChange?: (columnId: string, width: number, detail: BaseTableColumnSizeChangeDetail) => void;
403
+ onSort?: (columnKey: string, column: WorkbenchTableViewColumn) => void;
404
+ formatLabel?: (value: ReactNode, context?: {
405
+ column?: WorkbenchTableViewColumn;
406
+ }) => ReactNode;
407
+ getColumnDataType?: (columnKey: string, rows: Row[], column?: WorkbenchTableViewColumn) => string | undefined;
408
+ getColumnIcon?: (columnType?: string, column?: WorkbenchTableViewColumn) => ComponentType<{
409
+ className?: string;
410
+ }> | null | ReactNode | undefined;
411
+ getColumnTypeIcon?: (columnType?: string, column?: WorkbenchTableViewColumn) => ComponentType<{
412
+ className?: string;
413
+ }> | null | ReactNode | undefined;
414
+ getRowKey?: (row: Row, rowIndex: number) => number | string;
415
+ getRowSelectionKey?: (row: Row, rowIndex: number) => number | string | undefined;
416
+ isActionColumn?: (column: WorkbenchTableViewColumn) => boolean;
417
+ isActionField?: (column: WorkbenchTableViewColumn) => boolean;
418
+ isRowDisabled?: (row: Row, rowIndex: number) => boolean;
419
+ isWorkbenchPlaceholderRow?: (row: Row, rowIndex?: number) => boolean;
420
+ emptyState?: ReactNode;
421
+ hiddenRowsMessage?: ((hiddenRowCount: number, renderedRowCount: number, totalRowCount: number) => ReactNode) | ReactNode;
422
+ }
423
+ declare function WorkbenchTableView<Row = any>({ rows, columns, onRowClick, selectedRowKey, selectedLinkKey, activePrimaryColumn, activeTablePrimaryColumn, renderedRowCount, totalRowCount, tableMinWidth, minWidth, bodyMaxHeight, stickyFirstColumn, appearance, columnOrder, columnSizes, columnDragEnabled, columnResizeEnabled, className, tableClassName, rowClassName, classNames, style, renderCell, renderFieldValue, renderColumnHeader, onColumnOrderChange, onColumnSizeChange, onSort, formatLabel, getColumnDataType, getColumnIcon, getColumnTypeIcon, getRowKey, getRowSelectionKey, isActionColumn, isActionField, isRowDisabled, isWorkbenchPlaceholderRow, emptyState, hiddenRowsMessage, }: WorkbenchTableViewProps<Row>): react_jsx_runtime.JSX.Element;
424
+ interface InteractiveTableColumn {
425
+ key: string;
426
+ label?: ReactNode;
427
+ description?: ReactNode;
428
+ align?: 'center' | 'left' | 'right';
429
+ width?: number | string;
430
+ minWidth?: number;
431
+ maxWidth?: number;
432
+ sortable?: boolean;
433
+ sortDirection?: BaseTableSortDirection;
434
+ sortLabel?: string;
435
+ draggable?: boolean;
436
+ resizable?: boolean;
437
+ className?: string;
438
+ headerClassName?: string;
439
+ cellClassName?: string;
440
+ wrap?: boolean;
441
+ [key: string]: any;
442
+ }
443
+ interface InteractiveTableClassNames {
444
+ root?: string;
445
+ header?: string;
446
+ headerLeading?: string;
447
+ headerTitle?: string;
448
+ headerDescription?: string;
449
+ headerActions?: string;
450
+ scrollArea?: string;
451
+ table?: string;
452
+ tableHeader?: string;
453
+ headerRow?: string;
454
+ headerCell?: string;
455
+ body?: string;
456
+ row?: string;
457
+ pinnedTopRow?: string;
458
+ cell?: string;
459
+ empty?: string;
460
+ }
461
+ interface InteractiveTableRenderContext<Row = any> {
462
+ row: Row;
463
+ rowIndex: number;
464
+ column: InteractiveTableColumn;
465
+ columnIndex: number;
466
+ isPinnedTopRow: boolean;
467
+ }
468
+ interface InteractiveTableHeaderContext<Row = any> {
469
+ column: InteractiveTableColumn;
470
+ columnIndex: number;
471
+ columns: InteractiveTableColumn[];
472
+ rows: Row[];
473
+ }
474
+ interface InteractiveTableRowState {
475
+ disabled?: boolean;
476
+ pending?: boolean;
477
+ saving?: boolean;
478
+ selected?: boolean;
479
+ }
480
+ interface InteractiveTableHeaderProps {
481
+ title?: ReactNode;
482
+ description?: ReactNode;
483
+ actions?: ReactNode;
484
+ resetColumnSizesLabel?: ReactNode;
485
+ }
486
+ interface InteractiveTableColumnMenuLabels {
487
+ columnActions?: ReactNode;
488
+ freezeColumn?: ReactNode;
489
+ freezeEndColumn?: ReactNode;
490
+ unfreezeColumn?: ReactNode;
491
+ unfreezeEndColumn?: ReactNode;
492
+ unfreezeAllColumns?: ReactNode;
493
+ resetColumnWidth?: ReactNode;
494
+ frozenColumnTitle?: string;
495
+ }
496
+ interface InteractiveTableProps<Row = any, PinnedTopRow = Row> {
497
+ rows?: Row[];
498
+ columns?: InteractiveTableColumn[];
499
+ pinnedTopRows?: PinnedTopRow[];
500
+ getRowKey?: (row: Row, rowIndex: number) => number | string;
501
+ getPinnedTopRowKey?: (row: PinnedTopRow, rowIndex: number) => number | string;
502
+ renderCell?: (column: InteractiveTableColumn, row: Row, context: InteractiveTableRenderContext<Row>) => ReactNode;
503
+ renderPinnedTopCell?: (column: InteractiveTableColumn, row: PinnedTopRow, context: InteractiveTableRenderContext<PinnedTopRow>) => ReactNode;
504
+ renderColumnHeader?: (column: InteractiveTableColumn, context: InteractiveTableHeaderContext<Row>) => ReactNode;
505
+ onRowClick?: (row: Row, rowIndex: number) => void;
506
+ getRowState?: (row: Row, rowIndex: number) => InteractiveTableRowState | undefined;
507
+ rowClassName?: ((row: Row, rowIndex: number) => string | undefined) | string;
508
+ pinnedTopRowClassName?: ((row: PinnedTopRow, rowIndex: number) => string | undefined) | string;
509
+ emptyState?: ReactNode;
510
+ header?: InteractiveTableHeaderProps;
511
+ showResetColumnSizes?: boolean;
512
+ columnMenuLabels?: InteractiveTableColumnMenuLabels;
513
+ columnStorageKey?: string;
514
+ columnOrder?: string[];
515
+ columnSizes?: BaseTableColumnSizes;
516
+ defaultColumnSizes?: BaseTableColumnSizes;
517
+ columnDragEnabled?: boolean;
518
+ columnResizeEnabled?: boolean;
519
+ frozenColumnCount?: number;
520
+ frozenEndColumnCount?: number;
521
+ tableMinWidth?: number;
522
+ bodyMaxHeight?: number | string;
523
+ appearance?: BaseAppearance;
524
+ className?: string;
525
+ tableClassName?: string;
526
+ classNames?: InteractiveTableClassNames;
527
+ style?: CSSProperties;
528
+ onColumnOrderChange?: (nextOrder: string[], detail: BaseTableColumnOrderChangeDetail) => void;
529
+ onColumnSizeChange?: (columnId: string, width: number, detail: BaseTableColumnSizeChangeDetail) => void;
530
+ onResetColumnSizes?: (nextSizes: BaseTableColumnSizes) => void;
531
+ onFrozenColumnCountChange?: (nextCount: number) => void;
532
+ onFrozenEndColumnCountChange?: (nextCount: number) => void;
533
+ onSort?: (columnKey: string, column: InteractiveTableColumn) => void;
534
+ }
535
+ interface InteractiveTableEditableTextCellProps {
536
+ value?: null | string;
537
+ placeholder?: string;
538
+ disabled?: boolean;
539
+ multiline?: boolean;
540
+ commitOnBlur?: boolean;
541
+ className?: string;
542
+ inputClassName?: string;
543
+ onCommit?: (value: string) => Promise<void> | void;
544
+ }
545
+ interface InteractiveTableReadonlyCellProps {
546
+ children?: ReactNode;
547
+ mono?: boolean;
548
+ className?: string;
549
+ }
550
+ interface InteractiveTableSelectOption<T extends string = string> {
551
+ value: T;
552
+ label: string;
553
+ }
554
+ interface InteractiveTableSelectCellProps<T extends string = string> {
555
+ value: T;
556
+ options: Array<InteractiveTableSelectOption<T>>;
557
+ disabled?: boolean;
558
+ ariaLabel: string;
559
+ children: ReactNode;
560
+ className?: string;
561
+ onChange?: (nextValue: T) => void;
562
+ }
563
+ declare function InteractiveTable<Row = any, PinnedTopRow = Row>({ rows, columns, pinnedTopRows, getRowKey, getPinnedTopRowKey, renderCell, renderPinnedTopCell, renderColumnHeader, onRowClick, getRowState, rowClassName, pinnedTopRowClassName, emptyState, columnMenuLabels, columnStorageKey, columnOrder, columnSizes, defaultColumnSizes, columnDragEnabled, columnResizeEnabled, frozenColumnCount, frozenEndColumnCount, tableMinWidth, bodyMaxHeight, appearance, className, tableClassName, classNames, style, onColumnOrderChange, onColumnSizeChange, onResetColumnSizes, onFrozenColumnCountChange, onFrozenEndColumnCountChange, onSort, }: InteractiveTableProps<Row, PinnedTopRow>): react_jsx_runtime.JSX.Element;
564
+ declare function InteractiveTableEditableTextCell({ value, placeholder, disabled, multiline, commitOnBlur, className, inputClassName, onCommit, }: InteractiveTableEditableTextCellProps): react_jsx_runtime.JSX.Element;
565
+ declare function InteractiveTableReadonlyCell({ children, mono, className, }: InteractiveTableReadonlyCellProps): react_jsx_runtime.JSX.Element;
566
+ declare function InteractiveTableSelectCell<T extends string = string>({ value, options, disabled, ariaLabel, children, className, onChange, }: InteractiveTableSelectCellProps<T>): react_jsx_runtime.JSX.Element;
567
+ interface WorkbenchGalleryRecordVisual {
568
+ Icon?: ComponentType<{
569
+ className?: string;
570
+ }> | ReactNode;
571
+ icon?: ComponentType<{
572
+ className?: string;
573
+ }> | ReactNode;
574
+ chipClassName?: string;
575
+ iconClassName?: string;
576
+ label?: ReactNode;
577
+ title?: ReactNode;
578
+ [key: string]: any;
579
+ }
580
+ interface WorkbenchGalleryLabels {
581
+ fieldCount?: (count: number) => ReactNode;
582
+ coverOnlyHint?: ReactNode;
583
+ }
584
+ interface WorkbenchGalleryCardProps<Row = any> {
585
+ row: Row;
586
+ columns: WorkbenchGalleryColumn[];
587
+ onClick?: () => void;
588
+ isSelected?: boolean;
589
+ isMasonry?: boolean;
590
+ galleryFieldKey?: string;
591
+ galleryDensity?: 'comfortable' | 'compact' | 'detailed' | string;
592
+ galleryBentoColumns?: 1 | 2 | 3 | number;
593
+ galleryDetailVisibility?: 'all' | 'limit' | string;
594
+ galleryDetailLimit?: number | string;
595
+ shouldEnhanceMultimodal?: boolean;
596
+ getFieldValue?: (column: WorkbenchGalleryColumn, row: Row) => unknown;
597
+ isMediaColumn?: (column: WorkbenchGalleryColumn, row: Row) => boolean;
598
+ isTitleCandidate?: (column: WorkbenchGalleryColumn, row: Row) => boolean;
599
+ isSummaryCandidate?: (column: WorkbenchGalleryColumn, row: Row) => boolean;
600
+ getDisplayText?: (value: unknown) => ReactNode;
601
+ renderFieldValue?: (column: WorkbenchGalleryColumn, row: Row, context: {
602
+ compact?: boolean;
603
+ surface?: string;
604
+ }) => ReactNode;
605
+ getImagePreviewSrc?: (value: unknown, rowId?: number | string, columnLabel?: ReactNode) => string;
606
+ isImageField?: (column: WorkbenchGalleryColumn, value: unknown) => boolean;
607
+ isAudioField?: (column: WorkbenchGalleryColumn, value: unknown) => boolean;
608
+ AudioPlayerComponent?: ComponentType<{
609
+ filename: string;
610
+ }>;
611
+ cardVariant?: 'chromatic-bento' | 'default' | 'image-only' | 'preview-only' | string;
612
+ renderPreview?: (context: WorkbenchGalleryCardRenderContext<Row>) => ReactNode;
613
+ renderMeta?: (context: WorkbenchGalleryCardMetaContext<Row>) => ReactNode;
614
+ renderLeadingVisual?: (context: WorkbenchGalleryCardMetaContext<Row> & {
615
+ iconVisual?: null | WorkbenchGalleryRecordVisual;
616
+ }) => ReactNode;
617
+ resolveRecordVisual?: (value: unknown, row: Row, iconColumn?: WorkbenchGalleryColumn) => null | undefined | WorkbenchGalleryRecordVisual;
618
+ hiddenDetailFieldKeys?: string[];
619
+ labels?: WorkbenchGalleryLabels;
620
+ formatLabel?: (value: ReactNode, context?: {
621
+ column?: WorkbenchGalleryColumn;
622
+ }) => ReactNode;
623
+ className?: string;
624
+ }
625
+ interface WorkbenchGalleryCardRenderContext<Row = any> {
626
+ row: Row;
627
+ mediaColumn?: null | WorkbenchGalleryColumn;
628
+ mediaValue: unknown;
629
+ isImageMedia: boolean;
630
+ isAudioMedia: boolean;
631
+ iconVisual?: null | WorkbenchGalleryRecordVisual;
632
+ IconComponent?: ComponentType<{
633
+ className?: string;
634
+ }> | null;
635
+ previewClassName: string;
636
+ }
637
+ interface WorkbenchGalleryCardMetaContext<Row = any> {
638
+ row: Row;
639
+ contentColumns: WorkbenchGalleryColumn[];
640
+ detailColumns: WorkbenchGalleryColumn[];
641
+ titleColumn?: null | WorkbenchGalleryColumn;
642
+ summaryColumn?: null | WorkbenchGalleryColumn;
643
+ getDisplayText: (value: unknown) => ReactNode;
644
+ getFieldValue: (column: WorkbenchGalleryColumn, row: Row) => unknown;
645
+ }
646
+ declare function WorkbenchGalleryCard<Row = any>({ row, columns, onClick, isSelected, isMasonry, galleryFieldKey, galleryDensity, galleryBentoColumns, galleryDetailVisibility, galleryDetailLimit, shouldEnhanceMultimodal, getFieldValue, isMediaColumn, isTitleCandidate, isSummaryCandidate, getDisplayText, renderFieldValue, getImagePreviewSrc, isImageField, isAudioField, AudioPlayerComponent, cardVariant, renderPreview, renderMeta, renderLeadingVisual, resolveRecordVisual, hiddenDetailFieldKeys, labels, formatLabel, className, }: WorkbenchGalleryCardProps<Row>): react_jsx_runtime.JSX.Element;
647
+ interface WorkbenchMasonryItemSize {
648
+ width?: number | string;
649
+ height?: number | string;
650
+ columnSpan?: number;
651
+ rowSpan?: number;
652
+ }
653
+ interface WorkbenchMasonryLayoutContext {
654
+ columnCount: number;
655
+ columnSpan?: number;
656
+ columnWidth: number;
657
+ containerWidth: number;
658
+ gap: number;
659
+ itemWidth?: number;
660
+ placementStrategy: 'dense' | 'shelf' | 'shortest';
661
+ rowSpan?: number;
662
+ rowHeight: number;
663
+ size?: WorkbenchMasonryItemSize;
664
+ }
665
+ interface WorkbenchMasonryLayoutProps<Item = any> {
666
+ items?: readonly Item[];
667
+ renderItem: (item: Item, context: WorkbenchMasonryLayoutContext) => ReactNode;
668
+ getItemKey?: (item: Item, index: number) => number | string;
669
+ getItemSize?: (item: Item, context: WorkbenchMasonryLayoutContext) => undefined | WorkbenchMasonryItemSize;
670
+ columnWidth?: number | string;
671
+ columnCount?: number;
672
+ gap?: number;
673
+ rowHeight?: number;
674
+ placementStrategy?: 'dense' | 'shelf' | 'shortest';
675
+ containerProps?: Omit<HTMLAttributes<HTMLDivElement>, 'children'>;
676
+ getItemProps?: (item: Item, context: WorkbenchMasonryLayoutContext) => Omit<HTMLAttributes<HTMLDivElement>, 'children'>;
677
+ className?: string;
678
+ }
679
+ declare function WorkbenchMasonryLayout<Item = any>({ items, renderItem, getItemKey, getItemSize, columnWidth, columnCount: requestedColumnCount, gap, rowHeight, placementStrategy, containerProps, getItemProps, className, }: WorkbenchMasonryLayoutProps<Item>): react_jsx_runtime.JSX.Element;
680
+ interface WorkbenchGalleryViewProps<Row = any> extends Omit<WorkbenchGalleryCardProps<Row>, 'columns' | 'isMasonry' | 'isSelected' | 'onClick' | 'row'> {
681
+ rows?: Row[];
682
+ columns?: WorkbenchGalleryColumn[];
683
+ onRowClick?: (row: Row, rowIndex: number) => void;
684
+ selectedLinkKey?: string;
685
+ selectedRowKey?: string;
686
+ className?: string;
687
+ isMasonry?: boolean;
688
+ galleryLayoutMode?: 'auto' | 'rail' | string;
689
+ galleryRailCardWidth?: number;
690
+ galleryGridColumns?: 'auto' | number | string;
691
+ galleryGridCardWidth?: number | string;
692
+ galleryMasonryColumnWidth?: number | string;
693
+ masonryPlacementStrategy?: 'dense' | 'shelf';
694
+ getMasonryItemSize?: (row: Row, context: {
695
+ defaultSize: WorkbenchMasonryItemSize;
696
+ columnCount: number;
697
+ columnWidth: number;
698
+ containerWidth: number;
699
+ gap: number;
700
+ placementStrategy: 'dense' | 'shelf';
701
+ rowHeight: number;
702
+ }) => undefined | WorkbenchMasonryItemSize;
703
+ }
704
+ declare function WorkbenchGalleryView<Row = any>({ rows, columns, onRowClick, selectedLinkKey, selectedRowKey, className, isMasonry, galleryLayoutMode, galleryRailCardWidth, galleryGridColumns, galleryGridCardWidth, galleryMasonryColumnWidth, masonryPlacementStrategy, galleryFieldKey, galleryDensity, galleryBentoColumns, galleryDetailVisibility, galleryDetailLimit, shouldEnhanceMultimodal, getFieldValue, isMediaColumn, isTitleCandidate, isSummaryCandidate, getDisplayText, renderFieldValue, getImagePreviewSrc, isImageField, isAudioField, AudioPlayerComponent, cardVariant, renderPreview, renderMeta, renderLeadingVisual, resolveRecordVisual, hiddenDetailFieldKeys, labels, formatLabel, getMasonryItemSize, }: WorkbenchGalleryViewProps<Row>): react_jsx_runtime.JSX.Element;
705
+ type WorkbenchCollectionLoadingVariant = 'skeleton' | 'spinner';
706
+ interface WorkbenchCollectionSkeletonConfig {
707
+ count?: number;
708
+ loadMoreCount?: number;
709
+ aspectRatios?: readonly number[];
710
+ animated?: boolean;
711
+ }
712
+ type WorkbenchCollectionKey = number | string;
713
+ type WorkbenchCollectionLayoutMode = 'dense' | 'grid' | 'masonry' | 'rail';
714
+ type WorkbenchCollectionSelectionMode = 'multiple' | 'none' | 'single';
715
+ type WorkbenchCollectionSelectionBehavior = 'range' | 'replace' | 'toggle';
716
+ type WorkbenchCollectionActivationEvent = KeyboardEvent<HTMLElement> | MouseEvent<HTMLElement>;
717
+ type WorkbenchCollectionItemStatus = 'failed' | 'idle' | 'loading' | 'pending' | string;
718
+ type WorkbenchCollectionItemSlotName = 'actions' | 'badges' | 'body' | 'detail' | 'detailTrigger' | 'fallback' | 'footer' | 'header' | 'media' | 'meta' | 'selectionControl' | 'statusOverlay' | 'title' | 'top';
719
+ type WorkbenchCollectionResponsive<Value> = {
720
+ mobile?: Value;
721
+ tablet?: Value;
722
+ desktop?: Value;
723
+ } | Value;
724
+ type WorkbenchCollectionItemSize = WorkbenchMasonryItemSize;
725
+ interface WorkbenchCollectionLayoutContext {
726
+ mode: WorkbenchCollectionLayoutMode;
727
+ columnCount: number;
728
+ columnSpan?: number;
729
+ columnWidth: number;
730
+ containerWidth: number;
731
+ gap: number;
732
+ itemWidth?: number;
733
+ placementStrategy: 'dense' | 'shelf' | 'shortest';
734
+ rowSpan?: number;
735
+ rowHeight: number;
736
+ size?: WorkbenchCollectionItemSize;
737
+ }
738
+ interface WorkbenchCollectionLayoutSnapshot {
739
+ mode: WorkbenchCollectionLayoutMode;
740
+ columnCount: number;
741
+ columnWidth: number;
742
+ containerWidth: number;
743
+ gap: number;
744
+ itemCount: number;
745
+ }
746
+ interface WorkbenchCollectionItemContext<Item> {
747
+ item: Item;
748
+ index: number;
749
+ key: WorkbenchCollectionKey;
750
+ status: WorkbenchCollectionItemStatus;
751
+ disabled: boolean;
752
+ selected: boolean;
753
+ selectionMode: WorkbenchCollectionSelectionMode;
754
+ layout: WorkbenchCollectionLayoutContext;
755
+ select: (behavior?: WorkbenchCollectionSelectionBehavior) => void;
756
+ preview: () => void;
757
+ detail: () => void;
758
+ renderSlot: (name: WorkbenchCollectionItemSlotName) => ReactNode;
759
+ notifyMediaLoad: () => void;
760
+ notifyMediaError: (error?: unknown) => void;
761
+ }
762
+ interface WorkbenchCollectionStateConfig {
763
+ loading?: boolean;
764
+ loadingMore?: boolean;
765
+ error?: unknown;
766
+ empty?: boolean;
767
+ hasMore?: boolean;
768
+ permission?: boolean;
769
+ offline?: boolean;
770
+ }
771
+ interface WorkbenchCollectionSelectionConfig<Item> {
772
+ mode?: WorkbenchCollectionSelectionMode;
773
+ selectedKeys?: Iterable<WorkbenchCollectionKey>;
774
+ defaultSelectedKeys?: Iterable<WorkbenchCollectionKey>;
775
+ behavior?: WorkbenchCollectionSelectionBehavior;
776
+ isItemDisabled?: (item: Item, index: number) => boolean;
777
+ }
778
+ interface WorkbenchCollectionGroupingConfig<Item> {
779
+ getGroupKey: (item: Item, index: number) => WorkbenchCollectionKey;
780
+ getGroupLabel?: (groupKey: WorkbenchCollectionKey, firstItem: Item) => ReactNode;
781
+ }
782
+ interface WorkbenchCollectionLoadingConfig {
783
+ rootMargin?: string;
784
+ threshold?: number;
785
+ /** Request another page while the configured scroll viewport is not filled. */
786
+ autoFill?: boolean;
787
+ /** Collection loading defaults to a layout-aware skeleton. */
788
+ variant?: WorkbenchCollectionLoadingVariant;
789
+ skeleton?: WorkbenchCollectionSkeletonConfig;
790
+ }
791
+ type WorkbenchCollectionHoverEffect = 'highlight' | 'lift-shadow' | 'lift' | 'none' | 'scale' | 'shadow';
792
+ type WorkbenchCollectionTitleVisibility = 'always' | 'hover' | 'never';
793
+ type WorkbenchCollectionTitlePlacement = 'above' | 'below' | 'overlay-bottom' | 'overlay-center' | 'overlay-top';
794
+ type WorkbenchCollectionActionsVisibility = 'always' | 'hover' | 'never';
795
+ type WorkbenchCollectionActionsPlacement = 'above' | 'below' | 'overlay-bottom' | 'overlay-top';
796
+ type WorkbenchCollectionItemAlign = 'center' | 'end' | 'start';
797
+ interface WorkbenchCollectionItemTitleConfig<Item> {
798
+ getContent?: (item: Item, context: WorkbenchCollectionItemContext<Item>) => ReactNode;
799
+ visibility?: WorkbenchCollectionTitleVisibility;
800
+ placement?: WorkbenchCollectionTitlePlacement;
801
+ align?: WorkbenchCollectionItemAlign;
802
+ maxLines?: number;
803
+ surface?: 'none' | 'scrim' | 'surface';
804
+ }
805
+ interface WorkbenchCollectionItemActionsConfig {
806
+ visibility?: WorkbenchCollectionActionsVisibility;
807
+ placement?: WorkbenchCollectionActionsPlacement;
808
+ align?: WorkbenchCollectionItemAlign;
809
+ wrap?: boolean;
810
+ }
811
+ interface WorkbenchCollectionItemConfig<Item> {
812
+ title?: WorkbenchCollectionItemTitleConfig<Item>;
813
+ actions?: WorkbenchCollectionItemActionsConfig;
814
+ }
815
+ interface WorkbenchCollectionAppearanceConfig {
816
+ density?: 'comfortable' | 'compact' | 'detailed' | string;
817
+ radius?: 'lg' | 'md' | 'none' | 'sm' | 'xl' | string;
818
+ mediaFit?: 'contain' | 'cover' | 'natural';
819
+ hover?: WorkbenchCollectionHoverEffect;
820
+ selection?: 'none' | 'outline' | 'ring';
821
+ }
822
+ interface WorkbenchCollectionLabels {
823
+ collection: string;
824
+ loading: string;
825
+ empty: string;
826
+ loadError: string;
827
+ refreshError: string;
828
+ retry: string;
829
+ loadingMore: string;
830
+ permission: string;
831
+ offline: string;
832
+ requestAccess: string;
833
+ }
834
+ interface WorkbenchCollectionVirtualizationRenderOptions<Item> {
835
+ items: readonly Item[];
836
+ keys: readonly WorkbenchCollectionKey[];
837
+ layout: WorkbenchCollectionLayoutConfig<Item>;
838
+ scrollOwner: HTMLElement | null;
839
+ renderItem: (item: Item, index: number, layout: WorkbenchCollectionLayoutContext) => ReactNode;
840
+ }
841
+ interface WorkbenchCollectionVirtualizationAdapter<Item> {
842
+ supports?: (mode: WorkbenchCollectionLayoutMode) => boolean;
843
+ render: (options: WorkbenchCollectionVirtualizationRenderOptions<Item>) => ReactNode;
844
+ }
845
+ interface WorkbenchCollectionVirtualizationConfig<Item> {
846
+ enabled?: boolean;
847
+ adapter?: WorkbenchCollectionVirtualizationAdapter<Item>;
848
+ fallback?: 'error' | 'render-all';
849
+ }
850
+ interface WorkbenchCollectionLayoutConfig<Item> {
851
+ mode: WorkbenchCollectionLayoutMode;
852
+ columns?: 'auto' | WorkbenchCollectionResponsive<number>;
853
+ /** Control whether an underfilled automatic grid stretches its items or preserves full-grid card widths. */
854
+ underfilledBehavior?: 'preserve-columns' | 'stretch-items';
855
+ maxColumns?: WorkbenchCollectionResponsive<number>;
856
+ minCardWidth?: number | string;
857
+ idealCardWidth?: number | string;
858
+ maxCardWidth?: number | string;
859
+ cardWidth?: number | string;
860
+ columnWidth?: number | string;
861
+ gap?: number;
862
+ rowHeight?: number;
863
+ placementStrategy?: 'dense' | 'shelf' | 'shortest';
864
+ padding?: number | string;
865
+ fillHeight?: boolean;
866
+ maxHeight?: number | string;
867
+ scrollOwner?: 'parent' | 'self' | HTMLElement | null;
868
+ getItemSize?: (item: Item, context: WorkbenchCollectionLayoutContext) => undefined | WorkbenchCollectionItemSize;
869
+ getItemAspectRatio?: (item: Item, index: number) => number | undefined;
870
+ }
871
+ interface WorkbenchCollectionConfig<Item> {
872
+ getItemKey?: (item: Item, index: number) => WorkbenchCollectionKey;
873
+ getItemStatus?: (item: Item, index: number) => WorkbenchCollectionItemStatus;
874
+ layout: WorkbenchCollectionLayoutConfig<Item>;
875
+ state?: WorkbenchCollectionStateConfig;
876
+ selection?: WorkbenchCollectionSelectionConfig<Item>;
877
+ grouping?: WorkbenchCollectionGroupingConfig<Item>;
878
+ loading?: WorkbenchCollectionLoadingConfig;
879
+ virtualization?: WorkbenchCollectionVirtualizationConfig<Item>;
880
+ item?: WorkbenchCollectionItemConfig<Item>;
881
+ appearance?: WorkbenchCollectionAppearanceConfig;
882
+ labels?: Partial<WorkbenchCollectionLabels>;
883
+ scrollRestorationKey?: string;
884
+ }
885
+ interface WorkbenchCollectionSlotContext<Item> {
886
+ items: readonly Item[];
887
+ error?: unknown;
888
+ loading: boolean;
889
+ loadingMore: boolean;
890
+ selectedKeys: ReadonlySet<WorkbenchCollectionKey>;
891
+ retry: () => void;
892
+ }
893
+ interface WorkbenchCollectionGroupContext<Item> {
894
+ key: WorkbenchCollectionKey;
895
+ label?: ReactNode;
896
+ items: readonly Item[];
897
+ groupIndex: number;
898
+ }
899
+ type WorkbenchCollectionItemSlots<Item> = Partial<Record<WorkbenchCollectionItemSlotName, (item: Item, context: WorkbenchCollectionItemContext<Item>) => ReactNode>>;
900
+ interface WorkbenchCollectionSlots<Item> {
901
+ header?: ((context: WorkbenchCollectionSlotContext<Item>) => ReactNode) | ReactNode;
902
+ toolbar?: ((context: WorkbenchCollectionSlotContext<Item>) => ReactNode) | ReactNode;
903
+ beforeItems?: ((context: WorkbenchCollectionSlotContext<Item>) => ReactNode) | ReactNode;
904
+ groupHeading?: (group: WorkbenchCollectionGroupContext<Item>, context: WorkbenchCollectionSlotContext<Item>) => ReactNode;
905
+ selectionToolbar?: ((context: WorkbenchCollectionSlotContext<Item>) => ReactNode) | ReactNode;
906
+ loading?: ((context: WorkbenchCollectionSlotContext<Item>) => ReactNode) | ReactNode;
907
+ empty?: ((context: WorkbenchCollectionSlotContext<Item>) => ReactNode) | ReactNode;
908
+ error?: ((context: WorkbenchCollectionSlotContext<Item>) => ReactNode) | ReactNode;
909
+ permission?: ((context: WorkbenchCollectionSlotContext<Item>) => ReactNode) | ReactNode;
910
+ offline?: ((context: WorkbenchCollectionSlotContext<Item>) => ReactNode) | ReactNode;
911
+ loadMore?: ((context: WorkbenchCollectionSlotContext<Item>) => ReactNode) | ReactNode;
912
+ footer?: ((context: WorkbenchCollectionSlotContext<Item>) => ReactNode) | ReactNode;
913
+ item?: WorkbenchCollectionItemSlots<Item>;
914
+ }
915
+ interface WorkbenchCollectionCallbacks<Item> {
916
+ onItemClick?: (item: Item, context: WorkbenchCollectionItemContext<Item>, event: WorkbenchCollectionActivationEvent) => void;
917
+ onItemDoubleClick?: (item: Item, context: WorkbenchCollectionItemContext<Item>, event: MouseEvent<HTMLElement>) => void;
918
+ onItemHoverChange?: (item: Item, context: WorkbenchCollectionItemContext<Item>, hovered: boolean, event: MouseEvent<HTMLElement>) => void;
919
+ onItemPreview?: (item: Item, context: WorkbenchCollectionItemContext<Item>) => void;
920
+ onItemDetail?: (item: Item, context: WorkbenchCollectionItemContext<Item>) => void;
921
+ onItemDragStart?: (item: Item, context: WorkbenchCollectionItemContext<Item>, event: DragEvent<HTMLElement>) => void;
922
+ onItemDrop?: (item: Item, context: WorkbenchCollectionItemContext<Item>, event: DragEvent<HTMLElement>) => void;
923
+ onSelectionChange?: (selectedKeys: ReadonlySet<WorkbenchCollectionKey>, details: {
924
+ item: Item;
925
+ key: WorkbenchCollectionKey;
926
+ behavior: WorkbenchCollectionSelectionBehavior;
927
+ }) => void;
928
+ onLoadMore?: () => Promise<void> | void;
929
+ onRetry?: () => void;
930
+ onRequestAccess?: () => void;
931
+ onLayoutChange?: (snapshot: WorkbenchCollectionLayoutSnapshot) => void;
932
+ onLayoutReady?: (snapshot: WorkbenchCollectionLayoutSnapshot) => void;
933
+ onMediaLoad?: (item: Item, context: WorkbenchCollectionItemContext<Item>) => void;
934
+ onMediaError?: (item: Item, context: WorkbenchCollectionItemContext<Item>, error?: unknown) => void;
935
+ }
936
+ interface WorkbenchCollectionClassNames {
937
+ root?: string;
938
+ header?: string;
939
+ toolbar?: string;
940
+ selectionToolbar?: string;
941
+ beforeItems?: string;
942
+ items?: string;
943
+ layout?: string;
944
+ group?: string;
945
+ groupHeading?: string;
946
+ item?: string;
947
+ itemContent?: string;
948
+ itemTitle?: string;
949
+ itemActions?: string;
950
+ status?: string;
951
+ loadMore?: string;
952
+ footer?: string;
953
+ }
954
+ interface WorkbenchCollectionProps<Item> {
955
+ items: readonly Item[];
956
+ config: WorkbenchCollectionConfig<Item>;
957
+ renderItem: (item: Item, context: WorkbenchCollectionItemContext<Item>) => ReactNode;
958
+ slots?: WorkbenchCollectionSlots<Item>;
959
+ callbacks?: WorkbenchCollectionCallbacks<Item>;
960
+ className?: string;
961
+ classNames?: WorkbenchCollectionClassNames;
962
+ style?: CSSProperties;
963
+ ariaLabel?: string;
964
+ }
965
+ declare function WorkbenchCollection<Item>({ items, config, renderItem, slots, callbacks, className, classNames, style, ariaLabel, }: WorkbenchCollectionProps<Item>): react_jsx_runtime.JSX.Element;
966
+ interface WorkbenchLaneColumn<ColumnId extends string = string> {
967
+ id: ColumnId;
968
+ label?: ReactNode;
969
+ icon?: ReactNode;
970
+ className?: string;
971
+ headerClassName?: string;
972
+ bodyClassName?: string;
973
+ badgeClassName?: string;
974
+ iconClassName?: string;
975
+ }
976
+ interface WorkbenchLaneClassNames {
977
+ root?: string;
978
+ column?: string;
979
+ columnHeader?: string;
980
+ columnIcon?: string;
981
+ columnBadge?: string;
982
+ columnCount?: string;
983
+ columnBody?: string;
984
+ cardWrapper?: string;
985
+ overlayWrapper?: string;
986
+ emptyColumn?: string;
987
+ }
988
+ interface WorkbenchLaneRenderCardContext<Row = any, ColumnId extends string = string> {
989
+ row: Row;
990
+ rowIndex: number;
991
+ column: WorkbenchLaneColumn<ColumnId>;
992
+ isDragging: boolean;
993
+ isOverlay: boolean;
994
+ }
995
+ interface WorkbenchLaneViewProps<Row = any, ColumnId extends string = string> {
996
+ rows?: Row[];
997
+ columns?: Array<WorkbenchLaneColumn<ColumnId>>;
998
+ getRowId?: (row: Row, rowIndex: number) => string;
999
+ getColumnId?: (row: Row, rowIndex: number) => ColumnId;
1000
+ renderCard?: (row: Row, context: WorkbenchLaneRenderCardContext<Row, ColumnId>) => ReactNode;
1001
+ renderOverlayCard?: (row: Row, context: WorkbenchLaneRenderCardContext<Row, ColumnId>) => ReactNode;
1002
+ onMoveRow?: (rowId: string, nextColumnId: ColumnId, row: Row) => void;
1003
+ emptyColumn?: ReactNode;
1004
+ activationDistance?: number;
1005
+ columnWidth?: number | string;
1006
+ columnMinHeight?: number | string;
1007
+ className?: string;
1008
+ classNames?: WorkbenchLaneClassNames;
1009
+ style?: CSSProperties;
1010
+ }
1011
+ declare function WorkbenchLaneView<Row = any, ColumnId extends string = string>({ rows, columns, getRowId, getColumnId, renderCard, renderOverlayCard, onMoveRow, emptyColumn, activationDistance, columnWidth, columnMinHeight, className, classNames, style, }: WorkbenchLaneViewProps<Row, ColumnId>): react_jsx_runtime.JSX.Element;
1012
+ interface WorkbenchMetricItem {
1013
+ id: string;
1014
+ label: ReactNode;
1015
+ value: ReactNode;
1016
+ progress?: number;
1017
+ description?: ReactNode;
1018
+ }
1019
+ type WorkbenchMetricGridVariant = "bars" | "cards" | "list";
1020
+ type WorkbenchMetricGridDensity = "comfortable" | "compact";
1021
+ interface WorkbenchMetricGridProps {
1022
+ items: WorkbenchMetricItem[];
1023
+ variant?: WorkbenchMetricGridVariant;
1024
+ density?: WorkbenchMetricGridDensity;
1025
+ emptyState?: ReactNode;
1026
+ ariaLabel?: string;
1027
+ className?: string;
1028
+ itemClassName?: string;
1029
+ }
1030
+ declare function WorkbenchMetricGrid({ items, variant, density, emptyState, ariaLabel, className, itemClassName, }: WorkbenchMetricGridProps): null | react_jsx_runtime.JSX.Element;
1031
+ type WorkbenchVisualizationTone = "accent" | "muted" | "primary" | "secondary";
1032
+ interface WorkbenchScatterPoint {
1033
+ id: string;
1034
+ label: string;
1035
+ x: number;
1036
+ y: number;
1037
+ size?: number;
1038
+ description?: string;
1039
+ tone?: WorkbenchVisualizationTone;
1040
+ }
1041
+ interface WorkbenchScatterAxis {
1042
+ label: string;
1043
+ min?: number;
1044
+ max?: number;
1045
+ }
1046
+ interface WorkbenchScatterThresholds {
1047
+ x?: number;
1048
+ y?: number;
1049
+ }
1050
+ interface WorkbenchScatterPlotProps {
1051
+ points: WorkbenchScatterPoint[];
1052
+ xAxis: WorkbenchScatterAxis;
1053
+ yAxis: WorkbenchScatterAxis;
1054
+ thresholds?: WorkbenchScatterThresholds;
1055
+ selectedPointId?: string;
1056
+ onPointSelect?: (point: WorkbenchScatterPoint) => void;
1057
+ width?: number;
1058
+ height?: number;
1059
+ emptyState?: ReactNode;
1060
+ ariaLabel?: string;
1061
+ className?: string;
1062
+ }
1063
+ declare function WorkbenchScatterPlot({ points, xAxis, yAxis, thresholds, selectedPointId, onPointSelect, width, height, emptyState, ariaLabel, className, }: WorkbenchScatterPlotProps): null | react_jsx_runtime.JSX.Element;
1064
+ interface WorkbenchRelationshipNode {
1065
+ id: string;
1066
+ label: string;
1067
+ meta?: string;
1068
+ tone?: WorkbenchVisualizationTone;
1069
+ }
1070
+ interface WorkbenchRelationshipEdge {
1071
+ id?: string;
1072
+ sourceId: string;
1073
+ targetId: string;
1074
+ label?: string;
1075
+ }
1076
+ interface WorkbenchRelationshipGraphProps {
1077
+ nodes: WorkbenchRelationshipNode[];
1078
+ edges: WorkbenchRelationshipEdge[];
1079
+ selectedNodeId?: string;
1080
+ onNodeSelect?: (node: WorkbenchRelationshipNode) => void;
1081
+ width?: number;
1082
+ height?: number;
1083
+ emptyState?: ReactNode;
1084
+ ariaLabel?: string;
1085
+ className?: string;
1086
+ variant?: "default" | "radar";
1087
+ }
1088
+ declare function WorkbenchRelationshipGraph({ nodes, edges, selectedNodeId, onNodeSelect, width, height, emptyState, ariaLabel, className, variant, }: WorkbenchRelationshipGraphProps): null | react_jsx_runtime.JSX.Element;
1089
+ type WorkbenchJourneyItemState = "complete" | "current" | "upcoming";
1090
+ interface WorkbenchJourneyItem {
1091
+ id: string;
1092
+ label: ReactNode;
1093
+ eyebrow?: ReactNode;
1094
+ state?: WorkbenchJourneyItemState;
1095
+ disabled?: boolean;
1096
+ }
1097
+ interface WorkbenchJourneyNavigationProps {
1098
+ items: WorkbenchJourneyItem[];
1099
+ onItemSelect?: (item: WorkbenchJourneyItem) => void;
1100
+ ariaLabel?: string;
1101
+ className?: string;
1102
+ }
1103
+ declare function WorkbenchJourneyNavigation({ items, onItemSelect, ariaLabel, className, }: WorkbenchJourneyNavigationProps): react_jsx_runtime.JSX.Element;
1104
+ interface WorkbenchRankedListMetric {
1105
+ id: string;
1106
+ label: ReactNode;
1107
+ value: ReactNode;
1108
+ }
1109
+ interface WorkbenchRankedListItem {
1110
+ id: string;
1111
+ label: ReactNode;
1112
+ description?: ReactNode;
1113
+ score?: ReactNode;
1114
+ tags?: ReactNode[];
1115
+ metrics?: WorkbenchRankedListMetric[];
1116
+ leading?: ReactNode;
1117
+ trailing?: ReactNode;
1118
+ }
1119
+ interface WorkbenchRankedListProps {
1120
+ items: WorkbenchRankedListItem[];
1121
+ selectedItemId?: string;
1122
+ onItemSelect?: (item: WorkbenchRankedListItem) => void;
1123
+ emptyState?: ReactNode;
1124
+ ariaLabel?: string;
1125
+ className?: string;
1126
+ }
1127
+ declare function WorkbenchRankedList({ items, selectedItemId, onItemSelect, emptyState, ariaLabel, className, }: WorkbenchRankedListProps): null | react_jsx_runtime.JSX.Element;
1128
+ interface WorkbenchSelectionTrayItem {
1129
+ id: string;
1130
+ label: ReactNode;
1131
+ meta?: ReactNode;
1132
+ }
1133
+ interface WorkbenchSelectionTrayProps {
1134
+ title: ReactNode;
1135
+ description?: ReactNode;
1136
+ items: WorkbenchSelectionTrayItem[];
1137
+ onRemove?: (item: WorkbenchSelectionTrayItem) => void;
1138
+ removeLabel?: (item: WorkbenchSelectionTrayItem) => string;
1139
+ actions?: ReactNode;
1140
+ emptyState?: ReactNode;
1141
+ className?: string;
1142
+ }
1143
+ declare function WorkbenchSelectionTray({ title, description, items, onRemove, removeLabel, actions, emptyState, className, }: WorkbenchSelectionTrayProps): react_jsx_runtime.JSX.Element;
1144
+ interface WorkbenchEvidenceItem {
1145
+ id: string;
1146
+ title: ReactNode;
1147
+ description?: ReactNode;
1148
+ source?: ReactNode;
1149
+ timestamp?: ReactNode;
1150
+ marker?: ReactNode;
1151
+ action?: ReactNode;
1152
+ }
1153
+ interface WorkbenchEvidenceListProps {
1154
+ items: WorkbenchEvidenceItem[];
1155
+ emptyState?: ReactNode;
1156
+ ariaLabel?: string;
1157
+ className?: string;
1158
+ }
1159
+ declare function WorkbenchEvidenceList({ items, emptyState, ariaLabel, className, }: WorkbenchEvidenceListProps): null | react_jsx_runtime.JSX.Element;
1160
+ interface WorkbenchAssetGalleryItem {
1161
+ id: string;
1162
+ url: string;
1163
+ alt: string;
1164
+ title?: ReactNode;
1165
+ description?: ReactNode;
1166
+ badges?: ReactNode[];
1167
+ }
1168
+ interface WorkbenchAssetGalleryProps {
1169
+ items: WorkbenchAssetGalleryItem[];
1170
+ selectedItemId?: string;
1171
+ onItemSelect?: (item: WorkbenchAssetGalleryItem) => void;
1172
+ emptyState?: ReactNode;
1173
+ ariaLabel?: string;
1174
+ className?: string;
1175
+ }
1176
+ declare function WorkbenchAssetGallery({ items, selectedItemId, onItemSelect, emptyState, ariaLabel, className, }: WorkbenchAssetGalleryProps): null | react_jsx_runtime.JSX.Element;
1177
+ interface WorkbenchRadarNavigationChild {
1178
+ id: string;
1179
+ label: ReactNode;
1180
+ icon?: ReactNode;
1181
+ }
1182
+ interface WorkbenchRadarNavigationItem {
1183
+ id: string;
1184
+ label: ReactNode;
1185
+ icon?: ReactNode;
1186
+ children?: WorkbenchRadarNavigationChild[];
1187
+ }
1188
+ interface WorkbenchRadarWorkspaceProps {
1189
+ navigationItems?: WorkbenchRadarNavigationItem[];
1190
+ activeNavigationId?: string;
1191
+ activeNavigationChildId?: string;
1192
+ onNavigationSelect?: (item: WorkbenchRadarNavigationItem) => void;
1193
+ onNavigationChildSelect?: (child: WorkbenchRadarNavigationChild, parent: WorkbenchRadarNavigationItem) => void;
1194
+ navigationFooter?: ReactNode;
1195
+ navigation?: ReactNode;
1196
+ children: ReactNode;
1197
+ inspector?: ReactNode;
1198
+ inspectorLabel?: string;
1199
+ className?: string;
1200
+ contentClassName?: string;
1201
+ minimumHeight?: number | string;
1202
+ ariaLabel?: string;
1203
+ }
1204
+ interface WorkbenchRadarNavigationProps {
1205
+ items: WorkbenchRadarNavigationItem[];
1206
+ activeItemId?: string;
1207
+ activeChildId?: string;
1208
+ onItemSelect?: (item: WorkbenchRadarNavigationItem) => void;
1209
+ onChildSelect?: (child: WorkbenchRadarNavigationChild, parent: WorkbenchRadarNavigationItem) => void;
1210
+ footer?: ReactNode;
1211
+ ariaLabel?: string;
1212
+ }
1213
+ declare function WorkbenchRadarNavigation({ items, activeItemId, activeChildId, onItemSelect, onChildSelect, footer, ariaLabel, }: WorkbenchRadarNavigationProps): react_jsx_runtime.JSX.Element;
1214
+ declare function WorkbenchRadarWorkspace({ navigationItems, activeNavigationId, activeNavigationChildId, onNavigationSelect, onNavigationChildSelect, navigationFooter, navigation, children, inspector, inspectorLabel, className, contentClassName, minimumHeight, ariaLabel, }: WorkbenchRadarWorkspaceProps): react_jsx_runtime.JSX.Element;
1215
+ declare function WorkbenchRadarInspectorSection({ title, icon, description, children, className, }: {
1216
+ title: ReactNode;
1217
+ icon?: ReactNode;
1218
+ description?: ReactNode;
1219
+ children?: ReactNode;
1220
+ className?: string;
1221
+ }): react_jsx_runtime.JSX.Element;
1222
+ declare function WorkbenchRadarFilterChip({ label, value, icon, selected, onSelect, className, }: {
1223
+ label: ReactNode;
1224
+ value?: ReactNode;
1225
+ icon?: ReactNode;
1226
+ selected?: boolean;
1227
+ onSelect?: () => void;
1228
+ className?: string;
1229
+ }): react_jsx_runtime.JSX.Element;
1230
+ interface WorkbenchRadarQuadrant {
1231
+ id: "high-high" | "high-low" | "low-high" | "low-low";
1232
+ title: ReactNode;
1233
+ description?: ReactNode;
1234
+ }
1235
+ interface WorkbenchRadarLegendItem {
1236
+ id: string;
1237
+ label: ReactNode;
1238
+ tone?: WorkbenchVisualizationTone;
1239
+ }
1240
+ interface WorkbenchRadarMatrixProps {
1241
+ points: WorkbenchScatterPoint[];
1242
+ xAxis: WorkbenchScatterAxis;
1243
+ yAxis: WorkbenchScatterAxis;
1244
+ thresholds?: WorkbenchScatterThresholds;
1245
+ quadrants?: WorkbenchRadarQuadrant[];
1246
+ legend?: WorkbenchRadarLegendItem[];
1247
+ selectedPointId?: string;
1248
+ onPointSelect?: (point: WorkbenchScatterPoint) => void;
1249
+ width?: number;
1250
+ height?: number;
1251
+ labelLimit?: number;
1252
+ emptyState?: ReactNode;
1253
+ ariaLabel?: string;
1254
+ className?: string;
1255
+ }
1256
+ declare function WorkbenchRadarMatrix({ points, xAxis, yAxis, thresholds, quadrants, legend, selectedPointId, onPointSelect, width, height, labelLimit, emptyState, ariaLabel, className, }: WorkbenchRadarMatrixProps): null | react_jsx_runtime.JSX.Element;
1257
+ export { type WorkbenchCollectionTitleVisibility as $, type WorkbenchCollectionItemConfig as A, type WorkbenchCollectionItemContext as B, type WorkbenchCollectionItemSize as C, type WorkbenchCollectionItemSlotName as D, type WorkbenchCollectionItemSlots as E, type WorkbenchCollectionItemStatus as F, type WorkbenchCollectionItemTitleConfig as G, type WorkbenchCollectionKey as H, InteractiveTable as I, type WorkbenchCollectionLabels as J, type WorkbenchCollectionLayoutConfig as K, type WorkbenchCollectionLayoutContext as L, type WorkbenchCollectionLayoutMode as M, type WorkbenchCollectionLayoutSnapshot as N, type WorkbenchCollectionLoadingConfig as O, type WorkbenchCollectionLoadingVariant as P, type WorkbenchCollectionProps as Q, type WorkbenchCollectionResponsive as R, type WorkbenchCollectionSelectionBehavior as S, type WorkbenchCollectionSelectionConfig as T, type WorkbenchCollectionSelectionMode as U, type WorkbenchCollectionSkeletonConfig as V, WorkbenchAssetGallery as W, type WorkbenchCollectionSlotContext as X, type WorkbenchCollectionSlots as Y, type WorkbenchCollectionStateConfig as Z, type WorkbenchCollectionTitlePlacement as _, type InteractiveTableClassNames as a, type WorkbenchRadarNavigationChild as a$, type WorkbenchCollectionVirtualizationAdapter as a0, type WorkbenchCollectionVirtualizationConfig as a1, type WorkbenchCollectionVirtualizationRenderOptions as a2, WorkbenchContentPane as a3, type WorkbenchContentPaneBodyProps as a4, type WorkbenchContentPaneClassNames as a5, type WorkbenchContentPaneProps as a6, WorkbenchContentToolbar as a7, type WorkbenchContentToolbarClassNames as a8, type WorkbenchContentToolbarProps as a9, type WorkbenchGallerySettingsValue as aA, WorkbenchGalleryView as aB, type WorkbenchGalleryViewProps as aC, type WorkbenchJourneyItem as aD, type WorkbenchJourneyItemState as aE, WorkbenchJourneyNavigation as aF, type WorkbenchJourneyNavigationProps as aG, type WorkbenchLaneClassNames as aH, type WorkbenchLaneColumn as aI, type WorkbenchLaneRenderCardContext as aJ, WorkbenchLaneView as aK, type WorkbenchLaneViewProps as aL, type WorkbenchMasonryItemSize as aM, WorkbenchMasonryLayout as aN, type WorkbenchMasonryLayoutContext as aO, type WorkbenchMasonryLayoutProps as aP, WorkbenchMetricGrid as aQ, type WorkbenchMetricGridDensity as aR, type WorkbenchMetricGridProps as aS, type WorkbenchMetricGridVariant as aT, type WorkbenchMetricItem as aU, WorkbenchRadarFilterChip as aV, WorkbenchRadarInspectorSection as aW, type WorkbenchRadarLegendItem as aX, WorkbenchRadarMatrix as aY, type WorkbenchRadarMatrixProps as aZ, WorkbenchRadarNavigation as a_, type WorkbenchContentToolbarViewModeOption as aa, WorkbenchDetailSidebar as ab, type WorkbenchDetailSidebarBodyProps as ac, type WorkbenchDetailSidebarClassNames as ad, type WorkbenchDetailSidebarField as ae, type WorkbenchDetailSidebarProps as af, type WorkbenchDetailSidebarRenderContext as ag, type WorkbenchDetailSidebarSection as ah, type WorkbenchEvidenceItem as ai, WorkbenchEvidenceList as aj, type WorkbenchEvidenceListProps as ak, WorkbenchGalleryCard as al, type WorkbenchGalleryCardMetaContext as am, type WorkbenchGalleryCardProps as an, type WorkbenchGalleryCardRenderContext as ao, type WorkbenchGalleryColumn as ap, type WorkbenchGalleryLabels as aq, type WorkbenchGalleryRecordVisual as ar, WorkbenchGallerySettingsButton as as, type WorkbenchGallerySettingsButtonClassNames as at, type WorkbenchGallerySettingsButtonProps as au, type WorkbenchGallerySettingsLabels as av, type WorkbenchGallerySettingsOption as aw, WorkbenchGallerySettingsPanel as ax, type WorkbenchGallerySettingsPanelClassNames as ay, type WorkbenchGallerySettingsPanelProps as az, type InteractiveTableColumn as b, type WorkbenchRadarNavigationItem as b0, type WorkbenchRadarNavigationProps as b1, type WorkbenchRadarQuadrant as b2, WorkbenchRadarWorkspace as b3, type WorkbenchRadarWorkspaceProps as b4, WorkbenchRankedList as b5, type WorkbenchRankedListItem as b6, type WorkbenchRankedListMetric as b7, type WorkbenchRankedListProps as b8, type WorkbenchRelationshipEdge as b9, type WorkbenchCollectionItemAlign as bA, WorkbenchRelationshipGraph as ba, type WorkbenchRelationshipGraphProps as bb, type WorkbenchRelationshipNode as bc, WorkbenchResizableSidebar as bd, type WorkbenchResizableSidebarClassNames as be, type WorkbenchResizableSidebarItem as bf, type WorkbenchResizableSidebarProps as bg, type WorkbenchResizableSidebarSection as bh, type WorkbenchScatterAxis as bi, WorkbenchScatterPlot as bj, type WorkbenchScatterPlotProps as bk, type WorkbenchScatterPoint as bl, type WorkbenchScatterThresholds as bm, WorkbenchSelectionTray as bn, type WorkbenchSelectionTrayItem as bo, type WorkbenchSelectionTrayProps as bp, WorkbenchTableView as bq, type WorkbenchTableViewClassNames as br, type WorkbenchTableViewColumn as bs, type WorkbenchTableViewHeaderContext as bt, type WorkbenchTableViewProps as bu, type WorkbenchTableViewRenderContext as bv, type WorkbenchVisualizationTone as bw, type WorkbenchCollectionActionsPlacement as bx, type WorkbenchCollectionActionsVisibility as by, type WorkbenchCollectionItemActionsConfig as bz, type InteractiveTableColumnMenuLabels as c, InteractiveTableEditableTextCell as d, type InteractiveTableEditableTextCellProps as e, type InteractiveTableHeaderContext as f, type InteractiveTableHeaderProps as g, type InteractiveTableProps as h, InteractiveTableReadonlyCell as i, type InteractiveTableReadonlyCellProps as j, type InteractiveTableRenderContext as k, type InteractiveTableRowState as l, InteractiveTableSelectCell as m, type InteractiveTableSelectCellProps as n, type InteractiveTableSelectOption as o, type WorkbenchAssetGalleryItem as p, type WorkbenchAssetGalleryProps as q, WorkbenchCollection as r, type WorkbenchCollectionActivationEvent as s, type WorkbenchCollectionAppearanceConfig as t, type WorkbenchCollectionCallbacks as u, type WorkbenchCollectionClassNames as v, type WorkbenchCollectionConfig as w, type WorkbenchCollectionGroupContext as x, type WorkbenchCollectionGroupingConfig as y, type WorkbenchCollectionHoverEffect as z };