@inf-monkeys-tech/monkeys-design 0.4.37 → 0.4.38
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 +6 -59
- package/dist/components/data-explorer/index.d.ts +6 -59
- package/dist/components/data-explorer/index.js +412 -8
- package/dist/components/data-explorer/index.js.map +1 -1
- package/dist/components/data-explorer/index.mjs +413 -10
- package/dist/components/data-explorer/index.mjs.map +1 -1
- package/dist/index.d.mts +2 -2
- package/dist/index.d.ts +2 -2
- package/dist/index.js +2 -0
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +2 -0
- package/dist/index.mjs.map +1 -1
- package/dist/theme-DnbkgyCq.d.mts +61 -0
- package/dist/theme-rXHbVr6l.d.ts +61 -0
- package/dist/theme-system/index.d.mts +1 -1
- package/dist/theme-system/index.d.ts +1 -1
- package/dist/theme-system/index.js +3 -0
- package/dist/theme-system/index.js.map +1 -1
- package/dist/theme-system/index.mjs +3 -0
- package/dist/theme-system/index.mjs.map +1 -1
- package/dist/{types-B81dpI1o.d.mts → types-BnC3Z85r.d.mts} +98 -1
- package/dist/{types-B81dpI1o.d.ts → types-BnC3Z85r.d.ts} +98 -1
- package/package.json +3 -1
|
@@ -820,6 +820,103 @@ interface DataExplorerViewTreeProps<TNodeSource = unknown, TGroupSource = unknow
|
|
|
820
820
|
onAction?: (payload: DataExplorerViewTreeActionContext<TNodeSource, TGroupSource, TContext>) => void | Promise<void>;
|
|
821
821
|
onReorderNodes?: (payload: DataExplorerViewTreeReorderPayload<TNodeSource, TGroupSource, TContext>) => void | Promise<void>;
|
|
822
822
|
}
|
|
823
|
+
interface DataExplorerDraggableTreeNode<TSource = unknown, TContext = unknown> {
|
|
824
|
+
id: string;
|
|
825
|
+
label: ReactNode;
|
|
826
|
+
description?: ReactNode;
|
|
827
|
+
icon?: ReactNode;
|
|
828
|
+
meta?: ReactNode;
|
|
829
|
+
badge?: ReactNode;
|
|
830
|
+
ariaLabel?: string;
|
|
831
|
+
disabled?: boolean;
|
|
832
|
+
selectable?: boolean;
|
|
833
|
+
collapsible?: boolean;
|
|
834
|
+
draggable?: boolean;
|
|
835
|
+
defaultExpanded?: boolean;
|
|
836
|
+
source?: TSource;
|
|
837
|
+
context?: TContext;
|
|
838
|
+
children?: Array<DataExplorerDraggableTreeNode<TSource, TContext>>;
|
|
839
|
+
className?: string;
|
|
840
|
+
itemClassName?: string;
|
|
841
|
+
childrenClassName?: string;
|
|
842
|
+
}
|
|
843
|
+
interface DataExplorerDraggableTreeFlattenedNode<TSource = unknown, TContext = unknown> {
|
|
844
|
+
node: DataExplorerDraggableTreeNode<TSource, TContext>;
|
|
845
|
+
parentId?: string;
|
|
846
|
+
index: number;
|
|
847
|
+
depth: number;
|
|
848
|
+
}
|
|
849
|
+
interface DataExplorerDraggableTreeDragPayload<TSource = unknown, TContext = unknown> {
|
|
850
|
+
activeNode: DataExplorerDraggableTreeNode<TSource, TContext>;
|
|
851
|
+
overNode: DataExplorerDraggableTreeNode<TSource, TContext>;
|
|
852
|
+
activeParentId?: string;
|
|
853
|
+
overParentId?: string;
|
|
854
|
+
activeIndex: number;
|
|
855
|
+
overIndex: number;
|
|
856
|
+
sameParent: boolean;
|
|
857
|
+
context?: TContext;
|
|
858
|
+
}
|
|
859
|
+
interface DataExplorerDraggableTreeRenderContext<TSource = unknown, TContext = unknown> {
|
|
860
|
+
node: DataExplorerDraggableTreeNode<TSource, TContext>;
|
|
861
|
+
depth: number;
|
|
862
|
+
expanded: boolean;
|
|
863
|
+
selected: boolean;
|
|
864
|
+
dragging: boolean;
|
|
865
|
+
disabled: boolean;
|
|
866
|
+
context?: TContext;
|
|
867
|
+
}
|
|
868
|
+
interface DataExplorerDraggableTreeClassNames {
|
|
869
|
+
root?: string;
|
|
870
|
+
list?: string;
|
|
871
|
+
item?: string;
|
|
872
|
+
itemButton?: string;
|
|
873
|
+
itemSelected?: string;
|
|
874
|
+
itemDisabled?: string;
|
|
875
|
+
itemDragging?: string;
|
|
876
|
+
itemOver?: string;
|
|
877
|
+
itemContent?: string;
|
|
878
|
+
dragHandle?: string;
|
|
879
|
+
toggle?: string;
|
|
880
|
+
icon?: string;
|
|
881
|
+
label?: string;
|
|
882
|
+
description?: string;
|
|
883
|
+
meta?: string;
|
|
884
|
+
badge?: string;
|
|
885
|
+
actions?: string;
|
|
886
|
+
children?: string;
|
|
887
|
+
connector?: string;
|
|
888
|
+
overlay?: string;
|
|
889
|
+
empty?: string;
|
|
890
|
+
loading?: string;
|
|
891
|
+
}
|
|
892
|
+
interface DataExplorerDraggableTreeLabels {
|
|
893
|
+
expand?: string;
|
|
894
|
+
collapse?: string;
|
|
895
|
+
loading?: ReactNode;
|
|
896
|
+
empty?: ReactNode;
|
|
897
|
+
dragHandle?: string;
|
|
898
|
+
}
|
|
899
|
+
interface DataExplorerDraggableTreeProps<TSource = unknown, TContext = unknown> {
|
|
900
|
+
nodes: Array<DataExplorerDraggableTreeNode<TSource, TContext>>;
|
|
901
|
+
context?: TContext;
|
|
902
|
+
selectedNodeId?: string;
|
|
903
|
+
expandedNodeIds?: string[];
|
|
904
|
+
defaultExpandedNodeIds?: string[];
|
|
905
|
+
resetExpansionKey?: string | number;
|
|
906
|
+
indentSize?: number;
|
|
907
|
+
activationMode?: 'row' | 'handle';
|
|
908
|
+
loading?: boolean;
|
|
909
|
+
empty?: ReactNode;
|
|
910
|
+
labels?: DataExplorerDraggableTreeLabels;
|
|
911
|
+
appearance?: DataExplorerAppearance;
|
|
912
|
+
className?: string;
|
|
913
|
+
classNames?: DataExplorerDraggableTreeClassNames;
|
|
914
|
+
renderNodeActions?: (payload: DataExplorerDraggableTreeRenderContext<TSource, TContext>) => ReactNode;
|
|
915
|
+
renderNodeChildren?: (payload: DataExplorerDraggableTreeRenderContext<TSource, TContext>) => ReactNode;
|
|
916
|
+
onSelectNode?: (node: DataExplorerDraggableTreeNode<TSource, TContext>, context: TContext | undefined) => void;
|
|
917
|
+
onExpandedNodeIdsChange?: (ids: string[]) => void;
|
|
918
|
+
onDragEnd?: (payload: DataExplorerDraggableTreeDragPayload<TSource, TContext>) => void | Promise<void>;
|
|
919
|
+
}
|
|
823
920
|
interface DataExplorerPageClassNames {
|
|
824
921
|
root?: string;
|
|
825
922
|
sidebar?: string;
|
|
@@ -1169,4 +1266,4 @@ interface DataExplorerDisplayCollectionItemContext<TSource = unknown> {
|
|
|
1169
1266
|
}
|
|
1170
1267
|
type DataExplorerDisplayCollectionItemPropsResolver<TProps, TSource = unknown> = Partial<TProps> | ((context: DataExplorerDisplayCollectionItemContext<TSource>) => Partial<TProps> | undefined);
|
|
1171
1268
|
|
|
1172
|
-
export type { DataExplorerSelectClassNames as $, DataExplorerImagePreviewProps as A, DataExplorerDisplayAction as B, DataExplorerDisplayActionContext as C, DataExplorerActionBarClassNames as D, DataExplorerDisplayActionMenuClassNames as E, DataExplorerDisplayActionMenuProps as F, DataExplorerDisplayBadge as G, DataExplorerDisplayCardClassNames as H, DataExplorerDisplayCardProps as I, DataExplorerDisplayCollectionItemContext as J, DataExplorerDisplayCollectionItemPropsResolver as K, DataExplorerDisplayCollectionViewProps as L, DataExplorerDisplayItem as M, DataExplorerDisplayListItemClassNames as N, DataExplorerDisplayListItemProps as O, DataExplorerDisplayMediaClassNames as P, DataExplorerDisplayMediaItem as Q, DataExplorerDisplayMediaKind as R, DataExplorerDisplayMediaProps as S, DataExplorerDisplayMetadata as T, DataExplorerPageClassNames as U, DataExplorerPageProps as V, DataExplorerRecordCardClassNames as W, DataExplorerRecordCardProps as X, DataExplorerResolvedTheme as Y, DataExplorerResolver as Z, DataExplorerRadius as _, DataExplorerActionBarProps as a, DataExplorerSelectProps as a0, DataExplorerThemePresetId as a1, DataExplorerThemeStyles as a2, DataExplorerThemeSlots as a3, DataExplorerMeasuredGridOptions as a4, DataExplorerToolbarAction as a5, DataExplorerToolbarActionItem as a6, DataExplorerToolbarActionKind as a7, DataExplorerToolbarActionOption as a8, DataExplorerToolbarActionsClassNames as a9, DataExplorerViewItemShellClassNames as aA, DataExplorerViewItemDefinition as aB, DataExplorerViewItemShellProps as aC, DataExplorerViewItemProps as aD, DataExplorerViewOption as aE, DataExplorerViewRenderProps as aF, DataExplorerViewShellClassNames as aG, DataExplorerViewShellProps as aH, DataExplorerViewProps as aI,
|
|
1269
|
+
export type { DataExplorerSelectClassNames as $, DataExplorerImagePreviewProps as A, DataExplorerDisplayAction as B, DataExplorerDisplayActionContext as C, DataExplorerActionBarClassNames as D, DataExplorerDisplayActionMenuClassNames as E, DataExplorerDisplayActionMenuProps as F, DataExplorerDisplayBadge as G, DataExplorerDisplayCardClassNames as H, DataExplorerDisplayCardProps as I, DataExplorerDisplayCollectionItemContext as J, DataExplorerDisplayCollectionItemPropsResolver as K, DataExplorerDisplayCollectionViewProps as L, DataExplorerDisplayItem as M, DataExplorerDisplayListItemClassNames as N, DataExplorerDisplayListItemProps as O, DataExplorerDisplayMediaClassNames as P, DataExplorerDisplayMediaItem as Q, DataExplorerDisplayMediaKind as R, DataExplorerDisplayMediaProps as S, DataExplorerDisplayMetadata as T, DataExplorerPageClassNames as U, DataExplorerPageProps as V, DataExplorerRecordCardClassNames as W, DataExplorerRecordCardProps as X, DataExplorerResolvedTheme as Y, DataExplorerResolver as Z, DataExplorerRadius as _, DataExplorerActionBarProps as a, DataExplorerSelectProps as a0, DataExplorerThemePresetId as a1, DataExplorerThemeStyles as a2, DataExplorerThemeSlots as a3, DataExplorerMeasuredGridOptions as a4, DataExplorerToolbarAction as a5, DataExplorerToolbarActionItem as a6, DataExplorerToolbarActionKind as a7, DataExplorerToolbarActionOption as a8, DataExplorerToolbarActionsClassNames as a9, DataExplorerViewItemShellClassNames as aA, DataExplorerViewItemDefinition as aB, DataExplorerViewItemShellProps as aC, DataExplorerViewItemProps as aD, DataExplorerViewOption as aE, DataExplorerViewRenderProps as aF, DataExplorerViewShellClassNames as aG, DataExplorerViewShellProps as aH, DataExplorerViewProps as aI, DataExplorerDraggableTreeProps as aJ, DataExplorerCapabilityBucketsConfig as aK, DataExplorerCapabilitySidebarConfig as aL, DataExplorerCapabilityToolbarConfig as aM, DataExplorerCapabilityViewOption as aN, DataExplorerCapabilityViewsConfig as aO, DataExplorerDraggableTreeClassNames as aP, DataExplorerDraggableTreeDragPayload as aQ, DataExplorerDraggableTreeFlattenedNode as aR, DataExplorerDraggableTreeLabels as aS, DataExplorerDraggableTreeNode as aT, DataExplorerDraggableTreeRenderContext as aU, DataExplorerShellVariantId as aV, DataExplorerSurfaceConfig as aW, DataExplorerSurfaceId as aX, DataExplorerToolbarActionsLayout as aa, DataExplorerToolbarActionsProps as ab, DataExplorerToolbarShellClassNames as ac, DataExplorerToolbarShellProps as ad, DataExplorerToolbarViewOption as ae, DataExplorerTreeClassNames as af, DataExplorerTreeRenderProps as ag, DataExplorerTreeShellClassNames as ah, DataExplorerTreeShellProps as ai, DataExplorerTreeProps as aj, DataExplorerViewTreeAction as ak, DataExplorerViewTreeActionContext as al, DataExplorerViewTreeClassNames as am, DataExplorerViewTreeEntryType as an, DataExplorerViewTreeGroup as ao, DataExplorerViewTreeLabels as ap, DataExplorerViewTreeNode as aq, DataExplorerViewTreeProps as ar, DataExplorerViewTreeReorderPayload as as, DataExplorerViewClassNames as at, DataExplorerViewCollectionClassNames as au, DataExplorerViewCollectionLayout as av, DataExplorerViewCollectionOptions as aw, DataExplorerViewCollectionProps as ax, DataExplorerViewDefinition as ay, DataExplorerViewId as az, DataExplorerAction as b, 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, DataExplorerDensity as o, DataExplorerDetailFieldClassNames as p, DataExplorerDetailFieldDefinition as q, DataExplorerDetailFieldProps as r, DataExplorerDetailNavigation as s, DataExplorerDetailSectionClassNames as t, DataExplorerDetailSectionDefinition as u, DataExplorerDetailSectionProps as v, DataExplorerDetailShellClassNames as w, DataExplorerDetailShellProps as x, DataExplorerImagePreviewClassNames as y, DataExplorerImagePreviewNaturalSize as z };
|
|
@@ -820,6 +820,103 @@ interface DataExplorerViewTreeProps<TNodeSource = unknown, TGroupSource = unknow
|
|
|
820
820
|
onAction?: (payload: DataExplorerViewTreeActionContext<TNodeSource, TGroupSource, TContext>) => void | Promise<void>;
|
|
821
821
|
onReorderNodes?: (payload: DataExplorerViewTreeReorderPayload<TNodeSource, TGroupSource, TContext>) => void | Promise<void>;
|
|
822
822
|
}
|
|
823
|
+
interface DataExplorerDraggableTreeNode<TSource = unknown, TContext = unknown> {
|
|
824
|
+
id: string;
|
|
825
|
+
label: ReactNode;
|
|
826
|
+
description?: ReactNode;
|
|
827
|
+
icon?: ReactNode;
|
|
828
|
+
meta?: ReactNode;
|
|
829
|
+
badge?: ReactNode;
|
|
830
|
+
ariaLabel?: string;
|
|
831
|
+
disabled?: boolean;
|
|
832
|
+
selectable?: boolean;
|
|
833
|
+
collapsible?: boolean;
|
|
834
|
+
draggable?: boolean;
|
|
835
|
+
defaultExpanded?: boolean;
|
|
836
|
+
source?: TSource;
|
|
837
|
+
context?: TContext;
|
|
838
|
+
children?: Array<DataExplorerDraggableTreeNode<TSource, TContext>>;
|
|
839
|
+
className?: string;
|
|
840
|
+
itemClassName?: string;
|
|
841
|
+
childrenClassName?: string;
|
|
842
|
+
}
|
|
843
|
+
interface DataExplorerDraggableTreeFlattenedNode<TSource = unknown, TContext = unknown> {
|
|
844
|
+
node: DataExplorerDraggableTreeNode<TSource, TContext>;
|
|
845
|
+
parentId?: string;
|
|
846
|
+
index: number;
|
|
847
|
+
depth: number;
|
|
848
|
+
}
|
|
849
|
+
interface DataExplorerDraggableTreeDragPayload<TSource = unknown, TContext = unknown> {
|
|
850
|
+
activeNode: DataExplorerDraggableTreeNode<TSource, TContext>;
|
|
851
|
+
overNode: DataExplorerDraggableTreeNode<TSource, TContext>;
|
|
852
|
+
activeParentId?: string;
|
|
853
|
+
overParentId?: string;
|
|
854
|
+
activeIndex: number;
|
|
855
|
+
overIndex: number;
|
|
856
|
+
sameParent: boolean;
|
|
857
|
+
context?: TContext;
|
|
858
|
+
}
|
|
859
|
+
interface DataExplorerDraggableTreeRenderContext<TSource = unknown, TContext = unknown> {
|
|
860
|
+
node: DataExplorerDraggableTreeNode<TSource, TContext>;
|
|
861
|
+
depth: number;
|
|
862
|
+
expanded: boolean;
|
|
863
|
+
selected: boolean;
|
|
864
|
+
dragging: boolean;
|
|
865
|
+
disabled: boolean;
|
|
866
|
+
context?: TContext;
|
|
867
|
+
}
|
|
868
|
+
interface DataExplorerDraggableTreeClassNames {
|
|
869
|
+
root?: string;
|
|
870
|
+
list?: string;
|
|
871
|
+
item?: string;
|
|
872
|
+
itemButton?: string;
|
|
873
|
+
itemSelected?: string;
|
|
874
|
+
itemDisabled?: string;
|
|
875
|
+
itemDragging?: string;
|
|
876
|
+
itemOver?: string;
|
|
877
|
+
itemContent?: string;
|
|
878
|
+
dragHandle?: string;
|
|
879
|
+
toggle?: string;
|
|
880
|
+
icon?: string;
|
|
881
|
+
label?: string;
|
|
882
|
+
description?: string;
|
|
883
|
+
meta?: string;
|
|
884
|
+
badge?: string;
|
|
885
|
+
actions?: string;
|
|
886
|
+
children?: string;
|
|
887
|
+
connector?: string;
|
|
888
|
+
overlay?: string;
|
|
889
|
+
empty?: string;
|
|
890
|
+
loading?: string;
|
|
891
|
+
}
|
|
892
|
+
interface DataExplorerDraggableTreeLabels {
|
|
893
|
+
expand?: string;
|
|
894
|
+
collapse?: string;
|
|
895
|
+
loading?: ReactNode;
|
|
896
|
+
empty?: ReactNode;
|
|
897
|
+
dragHandle?: string;
|
|
898
|
+
}
|
|
899
|
+
interface DataExplorerDraggableTreeProps<TSource = unknown, TContext = unknown> {
|
|
900
|
+
nodes: Array<DataExplorerDraggableTreeNode<TSource, TContext>>;
|
|
901
|
+
context?: TContext;
|
|
902
|
+
selectedNodeId?: string;
|
|
903
|
+
expandedNodeIds?: string[];
|
|
904
|
+
defaultExpandedNodeIds?: string[];
|
|
905
|
+
resetExpansionKey?: string | number;
|
|
906
|
+
indentSize?: number;
|
|
907
|
+
activationMode?: 'row' | 'handle';
|
|
908
|
+
loading?: boolean;
|
|
909
|
+
empty?: ReactNode;
|
|
910
|
+
labels?: DataExplorerDraggableTreeLabels;
|
|
911
|
+
appearance?: DataExplorerAppearance;
|
|
912
|
+
className?: string;
|
|
913
|
+
classNames?: DataExplorerDraggableTreeClassNames;
|
|
914
|
+
renderNodeActions?: (payload: DataExplorerDraggableTreeRenderContext<TSource, TContext>) => ReactNode;
|
|
915
|
+
renderNodeChildren?: (payload: DataExplorerDraggableTreeRenderContext<TSource, TContext>) => ReactNode;
|
|
916
|
+
onSelectNode?: (node: DataExplorerDraggableTreeNode<TSource, TContext>, context: TContext | undefined) => void;
|
|
917
|
+
onExpandedNodeIdsChange?: (ids: string[]) => void;
|
|
918
|
+
onDragEnd?: (payload: DataExplorerDraggableTreeDragPayload<TSource, TContext>) => void | Promise<void>;
|
|
919
|
+
}
|
|
823
920
|
interface DataExplorerPageClassNames {
|
|
824
921
|
root?: string;
|
|
825
922
|
sidebar?: string;
|
|
@@ -1169,4 +1266,4 @@ interface DataExplorerDisplayCollectionItemContext<TSource = unknown> {
|
|
|
1169
1266
|
}
|
|
1170
1267
|
type DataExplorerDisplayCollectionItemPropsResolver<TProps, TSource = unknown> = Partial<TProps> | ((context: DataExplorerDisplayCollectionItemContext<TSource>) => Partial<TProps> | undefined);
|
|
1171
1268
|
|
|
1172
|
-
export type { DataExplorerSelectClassNames as $, DataExplorerImagePreviewProps as A, DataExplorerDisplayAction as B, DataExplorerDisplayActionContext as C, DataExplorerActionBarClassNames as D, DataExplorerDisplayActionMenuClassNames as E, DataExplorerDisplayActionMenuProps as F, DataExplorerDisplayBadge as G, DataExplorerDisplayCardClassNames as H, DataExplorerDisplayCardProps as I, DataExplorerDisplayCollectionItemContext as J, DataExplorerDisplayCollectionItemPropsResolver as K, DataExplorerDisplayCollectionViewProps as L, DataExplorerDisplayItem as M, DataExplorerDisplayListItemClassNames as N, DataExplorerDisplayListItemProps as O, DataExplorerDisplayMediaClassNames as P, DataExplorerDisplayMediaItem as Q, DataExplorerDisplayMediaKind as R, DataExplorerDisplayMediaProps as S, DataExplorerDisplayMetadata as T, DataExplorerPageClassNames as U, DataExplorerPageProps as V, DataExplorerRecordCardClassNames as W, DataExplorerRecordCardProps as X, DataExplorerResolvedTheme as Y, DataExplorerResolver as Z, DataExplorerRadius as _, DataExplorerActionBarProps as a, DataExplorerSelectProps as a0, DataExplorerThemePresetId as a1, DataExplorerThemeStyles as a2, DataExplorerThemeSlots as a3, DataExplorerMeasuredGridOptions as a4, DataExplorerToolbarAction as a5, DataExplorerToolbarActionItem as a6, DataExplorerToolbarActionKind as a7, DataExplorerToolbarActionOption as a8, DataExplorerToolbarActionsClassNames as a9, DataExplorerViewItemShellClassNames as aA, DataExplorerViewItemDefinition as aB, DataExplorerViewItemShellProps as aC, DataExplorerViewItemProps as aD, DataExplorerViewOption as aE, DataExplorerViewRenderProps as aF, DataExplorerViewShellClassNames as aG, DataExplorerViewShellProps as aH, DataExplorerViewProps as aI,
|
|
1269
|
+
export type { DataExplorerSelectClassNames as $, DataExplorerImagePreviewProps as A, DataExplorerDisplayAction as B, DataExplorerDisplayActionContext as C, DataExplorerActionBarClassNames as D, DataExplorerDisplayActionMenuClassNames as E, DataExplorerDisplayActionMenuProps as F, DataExplorerDisplayBadge as G, DataExplorerDisplayCardClassNames as H, DataExplorerDisplayCardProps as I, DataExplorerDisplayCollectionItemContext as J, DataExplorerDisplayCollectionItemPropsResolver as K, DataExplorerDisplayCollectionViewProps as L, DataExplorerDisplayItem as M, DataExplorerDisplayListItemClassNames as N, DataExplorerDisplayListItemProps as O, DataExplorerDisplayMediaClassNames as P, DataExplorerDisplayMediaItem as Q, DataExplorerDisplayMediaKind as R, DataExplorerDisplayMediaProps as S, DataExplorerDisplayMetadata as T, DataExplorerPageClassNames as U, DataExplorerPageProps as V, DataExplorerRecordCardClassNames as W, DataExplorerRecordCardProps as X, DataExplorerResolvedTheme as Y, DataExplorerResolver as Z, DataExplorerRadius as _, DataExplorerActionBarProps as a, DataExplorerSelectProps as a0, DataExplorerThemePresetId as a1, DataExplorerThemeStyles as a2, DataExplorerThemeSlots as a3, DataExplorerMeasuredGridOptions as a4, DataExplorerToolbarAction as a5, DataExplorerToolbarActionItem as a6, DataExplorerToolbarActionKind as a7, DataExplorerToolbarActionOption as a8, DataExplorerToolbarActionsClassNames as a9, DataExplorerViewItemShellClassNames as aA, DataExplorerViewItemDefinition as aB, DataExplorerViewItemShellProps as aC, DataExplorerViewItemProps as aD, DataExplorerViewOption as aE, DataExplorerViewRenderProps as aF, DataExplorerViewShellClassNames as aG, DataExplorerViewShellProps as aH, DataExplorerViewProps as aI, DataExplorerDraggableTreeProps as aJ, DataExplorerCapabilityBucketsConfig as aK, DataExplorerCapabilitySidebarConfig as aL, DataExplorerCapabilityToolbarConfig as aM, DataExplorerCapabilityViewOption as aN, DataExplorerCapabilityViewsConfig as aO, DataExplorerDraggableTreeClassNames as aP, DataExplorerDraggableTreeDragPayload as aQ, DataExplorerDraggableTreeFlattenedNode as aR, DataExplorerDraggableTreeLabels as aS, DataExplorerDraggableTreeNode as aT, DataExplorerDraggableTreeRenderContext as aU, DataExplorerShellVariantId as aV, DataExplorerSurfaceConfig as aW, DataExplorerSurfaceId as aX, DataExplorerToolbarActionsLayout as aa, DataExplorerToolbarActionsProps as ab, DataExplorerToolbarShellClassNames as ac, DataExplorerToolbarShellProps as ad, DataExplorerToolbarViewOption as ae, DataExplorerTreeClassNames as af, DataExplorerTreeRenderProps as ag, DataExplorerTreeShellClassNames as ah, DataExplorerTreeShellProps as ai, DataExplorerTreeProps as aj, DataExplorerViewTreeAction as ak, DataExplorerViewTreeActionContext as al, DataExplorerViewTreeClassNames as am, DataExplorerViewTreeEntryType as an, DataExplorerViewTreeGroup as ao, DataExplorerViewTreeLabels as ap, DataExplorerViewTreeNode as aq, DataExplorerViewTreeProps as ar, DataExplorerViewTreeReorderPayload as as, DataExplorerViewClassNames as at, DataExplorerViewCollectionClassNames as au, DataExplorerViewCollectionLayout as av, DataExplorerViewCollectionOptions as aw, DataExplorerViewCollectionProps as ax, DataExplorerViewDefinition as ay, DataExplorerViewId as az, DataExplorerAction as b, 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, DataExplorerDensity as o, DataExplorerDetailFieldClassNames as p, DataExplorerDetailFieldDefinition as q, DataExplorerDetailFieldProps as r, DataExplorerDetailNavigation as s, DataExplorerDetailSectionClassNames as t, DataExplorerDetailSectionDefinition as u, DataExplorerDetailSectionProps as v, DataExplorerDetailShellClassNames as w, DataExplorerDetailShellProps as x, DataExplorerImagePreviewClassNames as y, DataExplorerImagePreviewNaturalSize as z };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@inf-monkeys-tech/monkeys-design",
|
|
3
|
-
"version": "0.4.
|
|
3
|
+
"version": "0.4.38",
|
|
4
4
|
"description": "Monkeys Design Components Library",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"module": "dist/index.mjs",
|
|
@@ -93,6 +93,8 @@
|
|
|
93
93
|
},
|
|
94
94
|
"dependencies": {
|
|
95
95
|
"@dnd-kit/core": "^6.3.1",
|
|
96
|
+
"@dnd-kit/sortable": "^10.0.0",
|
|
97
|
+
"@dnd-kit/utilities": "^3.2.2",
|
|
96
98
|
"@radix-ui/react-context-menu": "^2.2.16",
|
|
97
99
|
"@radix-ui/react-dropdown-menu": "^2.0.6",
|
|
98
100
|
"@radix-ui/react-tooltip": "^1.0.7",
|