@inf-monkeys-tech/monkeys-design 1.0.104 → 1.0.107
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/components/data-explorer/index.d.mts +3 -3
- package/dist/components/data-explorer/index.d.ts +3 -3
- package/dist/components/data-explorer/index.js +61 -8
- package/dist/components/data-explorer/index.js.map +1 -1
- package/dist/components/data-explorer/index.mjs +61 -8
- package/dist/components/data-explorer/index.mjs.map +1 -1
- package/dist/components/navigation-sidebar/index.d.mts +1 -1
- package/dist/components/navigation-sidebar/index.d.ts +1 -1
- package/dist/index.d.mts +2 -2
- package/dist/index.d.ts +2 -2
- package/dist/index.js +61 -8
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +61 -8
- package/dist/index.mjs.map +1 -1
- package/dist/provider/index.d.mts +1 -1
- package/dist/provider/index.d.ts +1 -1
- package/dist/{theme-a44623472b15.d.mts → theme-6a0e4eb8e1c8.d.ts} +2 -2
- package/dist/{theme-88ae309f0f83.d.ts → theme-6fb6132629cb.d.mts} +2 -2
- package/dist/{types-c3e072f57261.d.mts → types-524c5b792610.d.mts} +57 -32
- package/dist/{types-c3e072f57261.d.ts → types-524c5b792610.d.ts} +57 -32
- package/package.json +1 -1
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { ReactNode, CSSProperties, ButtonHTMLAttributes, MouseEventHandler,
|
|
1
|
+
import { ReactNode, CSSProperties, ButtonHTMLAttributes, MouseEventHandler, HTMLAttributes, KeyboardEventHandler, ReactEventHandler, UIEvent, InputHTMLAttributes } from 'react';
|
|
2
2
|
type DataExplorerResolver<TValue, TContext = unknown> = ((context: TContext) => TValue) | TValue;
|
|
3
3
|
interface DataExplorerCapabilities {
|
|
4
4
|
canRead?: boolean;
|
|
@@ -6,12 +6,12 @@ interface DataExplorerCapabilities {
|
|
|
6
6
|
canDelete?: boolean;
|
|
7
7
|
[key: string]: boolean | undefined;
|
|
8
8
|
}
|
|
9
|
-
type DataExplorerThemePresetId =
|
|
10
|
-
type DataExplorerDensity =
|
|
11
|
-
type DataExplorerRadius =
|
|
12
|
-
type DataExplorerBorder =
|
|
13
|
-
type DataExplorerBackground =
|
|
14
|
-
type DataExplorerControlTone =
|
|
9
|
+
type DataExplorerThemePresetId = "compact" | "default" | "flat" | "glass" | "hard-edge" | "soft" | "tinted-glass";
|
|
10
|
+
type DataExplorerDensity = "comfortable" | "compact" | "default";
|
|
11
|
+
type DataExplorerRadius = "full" | "lg" | "md" | "none" | "sm" | "xl";
|
|
12
|
+
type DataExplorerBorder = "none" | "solid" | "strong" | "subtle";
|
|
13
|
+
type DataExplorerBackground = "dark-stage" | "glass" | "muted" | "plain" | "soft";
|
|
14
|
+
type DataExplorerControlTone = "danger" | "default" | "muted" | "primary";
|
|
15
15
|
interface DataExplorerThemeStyles {
|
|
16
16
|
surfaceRoot?: CSSProperties;
|
|
17
17
|
toolbarRoot?: CSSProperties;
|
|
@@ -154,7 +154,7 @@ interface DataExplorerAction<TContext = unknown> {
|
|
|
154
154
|
render?: (context: TContext) => ReactNode;
|
|
155
155
|
onClick?: (context: TContext) => Promise<void> | void;
|
|
156
156
|
}
|
|
157
|
-
type DataExplorerToolbarActionKind =
|
|
157
|
+
type DataExplorerToolbarActionKind = "button" | "icon-button" | "menu" | "select" | "toggle";
|
|
158
158
|
interface DataExplorerToolbarActionItem<TContext = unknown> {
|
|
159
159
|
id: string;
|
|
160
160
|
label: ReactNode;
|
|
@@ -180,8 +180,8 @@ interface DataExplorerToolbarAction<TContext = unknown> extends DataExplorerActi
|
|
|
180
180
|
kind?: DataExplorerToolbarActionKind;
|
|
181
181
|
triggerLabel?: string;
|
|
182
182
|
menuLabel?: ReactNode;
|
|
183
|
-
selectDisplay?:
|
|
184
|
-
align?:
|
|
183
|
+
selectDisplay?: "label-value" | "value";
|
|
184
|
+
align?: "center" | "end" | "start";
|
|
185
185
|
sideOffset?: number;
|
|
186
186
|
items?: Array<DataExplorerToolbarActionItem<TContext>>;
|
|
187
187
|
value?: DataExplorerResolver<number | string | undefined, TContext>;
|
|
@@ -205,12 +205,12 @@ interface DataExplorerButtonClassNames {
|
|
|
205
205
|
icon?: string;
|
|
206
206
|
label?: string;
|
|
207
207
|
}
|
|
208
|
-
interface DataExplorerButtonProps extends Omit<ButtonHTMLAttributes<HTMLButtonElement>,
|
|
208
|
+
interface DataExplorerButtonProps extends Omit<ButtonHTMLAttributes<HTMLButtonElement>, "children" | "className" | "disabled" | "onClick" | "style" | "title" | "type"> {
|
|
209
209
|
children?: ReactNode;
|
|
210
210
|
label?: ReactNode;
|
|
211
211
|
icon?: ReactNode;
|
|
212
212
|
endIcon?: ReactNode;
|
|
213
|
-
type?:
|
|
213
|
+
type?: "button" | "reset" | "submit";
|
|
214
214
|
title?: string;
|
|
215
215
|
ariaLabel?: string;
|
|
216
216
|
tone?: DataExplorerControlTone;
|
|
@@ -275,8 +275,8 @@ interface DataExplorerSelectProps {
|
|
|
275
275
|
title?: string;
|
|
276
276
|
triggerLabel?: string;
|
|
277
277
|
disabled?: boolean;
|
|
278
|
-
display?:
|
|
279
|
-
align?:
|
|
278
|
+
display?: "label-value" | "value";
|
|
279
|
+
align?: "center" | "end" | "start";
|
|
280
280
|
sideOffset?: number;
|
|
281
281
|
appearance?: DataExplorerAppearance;
|
|
282
282
|
className?: string;
|
|
@@ -302,7 +302,7 @@ interface DataExplorerCheckboxProps {
|
|
|
302
302
|
style?: CSSProperties;
|
|
303
303
|
onCheckedChange?: (checked: boolean) => Promise<void> | void;
|
|
304
304
|
}
|
|
305
|
-
type DataExplorerDisplayMediaKind =
|
|
305
|
+
type DataExplorerDisplayMediaKind = "audio" | "file" | "image" | "model" | "text" | "unknown" | "video" | (string & {});
|
|
306
306
|
interface DataExplorerDisplayMediaItem<TSource = unknown> {
|
|
307
307
|
id?: string;
|
|
308
308
|
kind?: DataExplorerDisplayMediaKind;
|
|
@@ -317,7 +317,7 @@ interface DataExplorerDisplayBadge {
|
|
|
317
317
|
id?: string;
|
|
318
318
|
label: ReactNode;
|
|
319
319
|
title?: string;
|
|
320
|
-
tone?:
|
|
320
|
+
tone?: "danger" | "default" | "muted" | "primary" | "success" | "warning";
|
|
321
321
|
}
|
|
322
322
|
interface DataExplorerDisplayMetadata {
|
|
323
323
|
id?: string;
|
|
@@ -329,19 +329,35 @@ interface DataExplorerDetailFieldClassNames {
|
|
|
329
329
|
root?: string;
|
|
330
330
|
label?: string;
|
|
331
331
|
icon?: string;
|
|
332
|
+
required?: string;
|
|
332
333
|
value?: string;
|
|
334
|
+
helper?: string;
|
|
335
|
+
error?: string;
|
|
333
336
|
}
|
|
337
|
+
type DataExplorerDataAttributes = {
|
|
338
|
+
[key: `data-${string}`]: boolean | number | string | undefined;
|
|
339
|
+
};
|
|
340
|
+
type DataExplorerHtmlAttributes<TElement> = HTMLAttributes<TElement> & DataExplorerDataAttributes;
|
|
334
341
|
interface DataExplorerDetailFieldDefinition<TContext = unknown> {
|
|
335
342
|
id?: string;
|
|
336
343
|
label: ReactNode;
|
|
337
344
|
icon?: ReactNode;
|
|
338
345
|
value?: ReactNode;
|
|
346
|
+
helperText?: ReactNode;
|
|
347
|
+
error?: ReactNode;
|
|
348
|
+
required?: boolean;
|
|
349
|
+
disabled?: boolean;
|
|
339
350
|
render?: (context: TContext) => ReactNode;
|
|
340
351
|
hidden?: DataExplorerResolver<boolean, TContext>;
|
|
341
352
|
title?: string;
|
|
342
353
|
className?: string;
|
|
343
354
|
valueClassName?: string;
|
|
344
355
|
classNames?: DataExplorerDetailFieldClassNames;
|
|
356
|
+
dataAttributes?: DataExplorerHtmlAttributes<HTMLDivElement>;
|
|
357
|
+
labelDataAttributes?: DataExplorerHtmlAttributes<HTMLSpanElement>;
|
|
358
|
+
valueDataAttributes?: DataExplorerHtmlAttributes<HTMLDivElement>;
|
|
359
|
+
helperDataAttributes?: DataExplorerHtmlAttributes<HTMLDivElement>;
|
|
360
|
+
errorDataAttributes?: DataExplorerHtmlAttributes<HTMLDivElement>;
|
|
345
361
|
}
|
|
346
362
|
interface DataExplorerDetailSectionClassNames {
|
|
347
363
|
root?: string;
|
|
@@ -463,11 +479,20 @@ interface DataExplorerDetailFieldProps<TContext = unknown> {
|
|
|
463
479
|
label?: ReactNode;
|
|
464
480
|
icon?: ReactNode;
|
|
465
481
|
value?: ReactNode;
|
|
482
|
+
helperText?: ReactNode;
|
|
483
|
+
error?: ReactNode;
|
|
484
|
+
required?: boolean;
|
|
485
|
+
disabled?: boolean;
|
|
466
486
|
children?: ReactNode;
|
|
467
487
|
context?: TContext;
|
|
468
488
|
className?: string;
|
|
469
489
|
valueClassName?: string;
|
|
470
490
|
classNames?: DataExplorerDetailFieldClassNames;
|
|
491
|
+
dataAttributes?: DataExplorerHtmlAttributes<HTMLDivElement>;
|
|
492
|
+
labelDataAttributes?: DataExplorerHtmlAttributes<HTMLSpanElement>;
|
|
493
|
+
valueDataAttributes?: DataExplorerHtmlAttributes<HTMLDivElement>;
|
|
494
|
+
helperDataAttributes?: DataExplorerHtmlAttributes<HTMLDivElement>;
|
|
495
|
+
errorDataAttributes?: DataExplorerHtmlAttributes<HTMLDivElement>;
|
|
471
496
|
}
|
|
472
497
|
interface DataExplorerDisplayActionContext<TSource = unknown> {
|
|
473
498
|
itemId?: string;
|
|
@@ -479,7 +504,7 @@ interface DataExplorerDisplayAction<TSource = unknown> {
|
|
|
479
504
|
label: ReactNode;
|
|
480
505
|
icon?: ReactNode;
|
|
481
506
|
title?: string;
|
|
482
|
-
tone?:
|
|
507
|
+
tone?: "danger" | "default" | "muted" | "primary";
|
|
483
508
|
separatorBefore?: boolean;
|
|
484
509
|
separatorAfter?: boolean;
|
|
485
510
|
className?: string;
|
|
@@ -507,7 +532,7 @@ interface DataExplorerDisplayItem<TSource = unknown> {
|
|
|
507
532
|
source?: TSource;
|
|
508
533
|
}
|
|
509
534
|
type DataExplorerViewId = string;
|
|
510
|
-
type DataExplorerViewCollectionLayout =
|
|
535
|
+
type DataExplorerViewCollectionLayout = "grid" | "list" | "waterfall" | (string & {});
|
|
511
536
|
interface DataExplorerViewCollectionClassNames {
|
|
512
537
|
root?: string;
|
|
513
538
|
items?: string;
|
|
@@ -660,7 +685,7 @@ interface DataExplorerTreeRenderProps<TNode = unknown, TContext = unknown> {
|
|
|
660
685
|
onSelect?: (node: TNode) => void;
|
|
661
686
|
renderChildren: () => ReactNode;
|
|
662
687
|
}
|
|
663
|
-
type DataExplorerViewTreeEntryType =
|
|
688
|
+
type DataExplorerViewTreeEntryType = "group" | "node";
|
|
664
689
|
interface DataExplorerViewTreeNode<TSource = unknown, TGroupSource = unknown, TContext = unknown> {
|
|
665
690
|
id: string;
|
|
666
691
|
label: ReactNode;
|
|
@@ -691,7 +716,7 @@ interface DataExplorerViewTreeGroup<TSource = unknown, TNodeSource = unknown, TC
|
|
|
691
716
|
selectable?: boolean;
|
|
692
717
|
collapsible?: boolean;
|
|
693
718
|
defaultExpanded?: boolean;
|
|
694
|
-
status?:
|
|
719
|
+
status?: "error" | "idle" | "loading";
|
|
695
720
|
loading?: boolean;
|
|
696
721
|
error?: ReactNode;
|
|
697
722
|
empty?: ReactNode;
|
|
@@ -797,7 +822,7 @@ interface DataExplorerViewTreeProps<TNodeSource = unknown, TGroupSource = unknow
|
|
|
797
822
|
loadingNode?: ReactNode;
|
|
798
823
|
error?: ReactNode;
|
|
799
824
|
labels?: DataExplorerViewTreeLabels;
|
|
800
|
-
reorderMode?:
|
|
825
|
+
reorderMode?: "any" | "none" | "same-parent";
|
|
801
826
|
appearance?: DataExplorerAppearance;
|
|
802
827
|
className?: string;
|
|
803
828
|
classNames?: DataExplorerViewTreeClassNames;
|
|
@@ -896,7 +921,7 @@ interface DataExplorerDraggableTreeProps<TSource = unknown, TContext = unknown>
|
|
|
896
921
|
defaultExpandedNodeIds?: string[];
|
|
897
922
|
resetExpansionKey?: number | string;
|
|
898
923
|
indentSize?: number;
|
|
899
|
-
activationMode?:
|
|
924
|
+
activationMode?: "handle" | "row";
|
|
900
925
|
loading?: boolean;
|
|
901
926
|
empty?: ReactNode;
|
|
902
927
|
labels?: DataExplorerDraggableTreeLabels;
|
|
@@ -961,7 +986,7 @@ interface DataExplorerFilterBarClassNames {
|
|
|
961
986
|
fields?: string;
|
|
962
987
|
actions?: string;
|
|
963
988
|
}
|
|
964
|
-
interface DataExplorerFilterBarProps extends Omit<HTMLAttributes<HTMLDivElement>,
|
|
989
|
+
interface DataExplorerFilterBarProps extends Omit<HTMLAttributes<HTMLDivElement>, "children" | "className"> {
|
|
965
990
|
label?: ReactNode;
|
|
966
991
|
leading?: ReactNode;
|
|
967
992
|
children?: ReactNode;
|
|
@@ -1103,7 +1128,7 @@ interface DataExplorerDisplayActionMenuProps<TSource = unknown> {
|
|
|
1103
1128
|
label?: ReactNode;
|
|
1104
1129
|
triggerLabel?: string;
|
|
1105
1130
|
triggerIcon?: ReactNode;
|
|
1106
|
-
align?:
|
|
1131
|
+
align?: "center" | "end" | "start";
|
|
1107
1132
|
sideOffset?: number;
|
|
1108
1133
|
appearance?: DataExplorerAppearance;
|
|
1109
1134
|
className?: string;
|
|
@@ -1158,7 +1183,7 @@ interface DataExplorerRecordCardProps<TSource = unknown> {
|
|
|
1158
1183
|
onToggleSelection?: (item: DataExplorerDisplayItem<TSource>) => void;
|
|
1159
1184
|
onToggleFavorite?: (item: DataExplorerDisplayItem<TSource>) => void;
|
|
1160
1185
|
}
|
|
1161
|
-
type DataExplorerMediaPreviewKind =
|
|
1186
|
+
type DataExplorerMediaPreviewKind = "audio" | "file" | "image" | "video";
|
|
1162
1187
|
interface DataExplorerMediaPreviewClassNames {
|
|
1163
1188
|
root?: string;
|
|
1164
1189
|
media?: string;
|
|
@@ -1171,8 +1196,8 @@ interface DataExplorerMediaPreviewProps {
|
|
|
1171
1196
|
kind?: DataExplorerMediaPreviewKind;
|
|
1172
1197
|
alt?: string;
|
|
1173
1198
|
title?: ReactNode;
|
|
1174
|
-
aspectRatio?:
|
|
1175
|
-
fit?:
|
|
1199
|
+
aspectRatio?: "1:1" | "16:9" | "3:4" | "4:3" | "9:16" | "auto" | "square" | "video";
|
|
1200
|
+
fit?: "contain" | "cover";
|
|
1176
1201
|
controls?: boolean;
|
|
1177
1202
|
loading?: boolean;
|
|
1178
1203
|
empty?: ReactNode;
|
|
@@ -1202,7 +1227,7 @@ interface DataExplorerUploadSurfaceProps {
|
|
|
1202
1227
|
hint?: ReactNode;
|
|
1203
1228
|
busyLabel?: ReactNode;
|
|
1204
1229
|
icon?: ReactNode;
|
|
1205
|
-
inputProps?: Omit<InputHTMLAttributes<HTMLInputElement>,
|
|
1230
|
+
inputProps?: Omit<InputHTMLAttributes<HTMLInputElement>, "accept" | "disabled" | "multiple" | "onChange" | "type"> & {
|
|
1206
1231
|
[key: `data-${string}`]: string | undefined;
|
|
1207
1232
|
};
|
|
1208
1233
|
className?: string;
|
|
@@ -1255,7 +1280,7 @@ interface DataExplorerRecordPickerProps {
|
|
|
1255
1280
|
appearance?: DataExplorerAppearance;
|
|
1256
1281
|
className?: string;
|
|
1257
1282
|
classNames?: DataExplorerRecordPickerClassNames;
|
|
1258
|
-
triggerProps?: Omit<ButtonHTMLAttributes<HTMLButtonElement>,
|
|
1283
|
+
triggerProps?: Omit<ButtonHTMLAttributes<HTMLButtonElement>, "children" | "className" | "disabled" | "type">;
|
|
1259
1284
|
dataAttributes?: {
|
|
1260
1285
|
root?: Record<string, string | undefined>;
|
|
1261
1286
|
trigger?: Record<string, string | undefined>;
|
|
@@ -1292,7 +1317,7 @@ interface DataExplorerCollectionFooterProps {
|
|
|
1292
1317
|
loadedLabel?: ReactNode;
|
|
1293
1318
|
pageSizeLabel?: ReactNode;
|
|
1294
1319
|
pageText?: ReactNode;
|
|
1295
|
-
tone?:
|
|
1320
|
+
tone?: "default" | "glass" | "hard-edge";
|
|
1296
1321
|
appearance?: DataExplorerAppearance;
|
|
1297
1322
|
className?: string;
|
|
1298
1323
|
classNames?: DataExplorerCollectionFooterClassNames;
|
|
@@ -1324,7 +1349,7 @@ interface DataExplorerToolbarActionsClassNames {
|
|
|
1324
1349
|
menuContent?: string;
|
|
1325
1350
|
menuItem?: string;
|
|
1326
1351
|
}
|
|
1327
|
-
type DataExplorerToolbarActionsLayout =
|
|
1352
|
+
type DataExplorerToolbarActionsLayout = "action-bar" | "inline" | "toolbar";
|
|
1328
1353
|
interface DataExplorerToolbarActionsProps<TContext = unknown> {
|
|
1329
1354
|
context?: TContext;
|
|
1330
1355
|
actions?: Array<DataExplorerToolbarAction<TContext>>;
|
|
@@ -1390,4 +1415,4 @@ interface DataExplorerDisplayCollectionItemContext<TSource = unknown> {
|
|
|
1390
1415
|
layout: DataExplorerViewCollectionLayout;
|
|
1391
1416
|
}
|
|
1392
1417
|
type DataExplorerDisplayCollectionItemPropsResolver<TProps, TSource = unknown> = ((context: DataExplorerDisplayCollectionItemContext<TSource>) => Partial<TProps> | undefined) | Partial<TProps>;
|
|
1393
|
-
export type {
|
|
1418
|
+
export type { DataExplorerMediaPreviewProps as $, DataExplorerDisplayActionContext as A, DataExplorerDisplayActionMenuClassNames as B, DataExplorerDisplayActionMenuProps as C, DataExplorerAction as D, DataExplorerDisplayBadge as E, DataExplorerDisplayCardClassNames as F, DataExplorerDisplayCardProps as G, DataExplorerDisplayCollectionItemContext as H, DataExplorerDisplayCollectionItemPropsResolver as I, DataExplorerDisplayCollectionViewProps as J, DataExplorerDisplayItem as K, DataExplorerDisplayListItemClassNames as L, DataExplorerDisplayListItemProps as M, DataExplorerDisplayMediaClassNames as N, DataExplorerDisplayMediaItem as O, DataExplorerDisplayMediaKind as P, DataExplorerDisplayMediaProps as Q, DataExplorerDisplayMetadata as R, DataExplorerFilterBarClassNames as S, DataExplorerFilterBarProps as T, DataExplorerHtmlAttributes as U, DataExplorerImagePreviewClassNames as V, DataExplorerImagePreviewNaturalSize as W, DataExplorerImagePreviewProps as X, DataExplorerMeasuredGridOptions as Y, DataExplorerMediaPreviewClassNames as Z, DataExplorerMediaPreviewKind as _, DataExplorerActionBarClassNames as a, DataExplorerDraggableTreeNode as a$, DataExplorerPageClassNames as a0, DataExplorerPageProps as a1, DataExplorerRadius as a2, DataExplorerRecordCardClassNames as a3, DataExplorerRecordCardProps as a4, DataExplorerRecordPickerClassNames as a5, DataExplorerRecordPickerOption as a6, DataExplorerRecordPickerProps as a7, DataExplorerResolvedTheme as a8, DataExplorerResolver as a9, DataExplorerViewCollectionProps as aA, DataExplorerViewDefinition as aB, DataExplorerViewId as aC, DataExplorerViewItemDefinition as aD, DataExplorerViewItemProps as aE, DataExplorerViewItemShellClassNames as aF, DataExplorerViewItemShellProps as aG, DataExplorerViewOption as aH, DataExplorerViewProps as aI, DataExplorerViewRenderProps as aJ, DataExplorerViewShellClassNames as aK, DataExplorerViewShellProps as aL, DataExplorerViewTreeAction as aM, DataExplorerViewTreeActionContext as aN, DataExplorerViewTreeClassNames as aO, DataExplorerViewTreeEntryType as aP, DataExplorerViewTreeGroup as aQ, DataExplorerViewTreeLabels as aR, DataExplorerViewTreeNode as aS, DataExplorerViewTreeProps as aT, DataExplorerViewTreeReorderPayload as aU, DataExplorerSplitButtonProps as aV, DataExplorerDraggableTreeProps as aW, DataExplorerDraggableTreeClassNames as aX, DataExplorerDraggableTreeDragPayload as aY, DataExplorerDraggableTreeFlattenedNode as aZ, DataExplorerDraggableTreeLabels as a_, DataExplorerSelectClassNames as aa, DataExplorerSelectProps as ab, DataExplorerThemePresetId as ac, DataExplorerThemeSlots as ad, DataExplorerThemeStyles as ae, DataExplorerToolbarAction as af, DataExplorerToolbarActionItem as ag, DataExplorerToolbarActionKind as ah, DataExplorerToolbarActionOption as ai, DataExplorerToolbarActionsClassNames as aj, DataExplorerToolbarActionsLayout as ak, DataExplorerToolbarActionsProps as al, DataExplorerToolbarShellClassNames as am, DataExplorerToolbarShellProps as an, DataExplorerToolbarViewOption as ao, DataExplorerTreeClassNames as ap, DataExplorerTreeProps as aq, DataExplorerTreeRenderProps as ar, DataExplorerTreeShellClassNames as as, DataExplorerTreeShellProps as at, DataExplorerUploadSurfaceClassNames as au, DataExplorerUploadSurfaceProps as av, DataExplorerViewClassNames as aw, DataExplorerViewCollectionClassNames as ax, DataExplorerViewCollectionLayout as ay, DataExplorerViewCollectionOptions as az, DataExplorerActionBarProps as b, DataExplorerDraggableTreeRenderContext as b0, DataExplorerSplitButtonClassNames as b1, DataExplorerSplitButtonItem as b2, DataExplorerAppearance as c, DataExplorerBackground as d, DataExplorerBorder as e, DataExplorerButtonClassNames as f, DataExplorerButtonProps as g, DataExplorerCapabilities as h, DataExplorerCheckboxClassNames as i, DataExplorerCheckboxProps as j, DataExplorerCollectionFooterClassNames as k, DataExplorerCollectionFooterProps as l, DataExplorerControlOption as m, DataExplorerControlTone as n, DataExplorerDataAttributes as o, DataExplorerDensity as p, DataExplorerDetailFieldClassNames as q, DataExplorerDetailFieldDefinition as r, DataExplorerDetailFieldProps as s, DataExplorerDetailNavigation as t, DataExplorerDetailSectionClassNames as u, DataExplorerDetailSectionDefinition as v, DataExplorerDetailSectionProps as w, DataExplorerDetailShellClassNames as x, DataExplorerDetailShellProps as y, DataExplorerDisplayAction as z };
|