@elliemae/ds-shuttle-v2 3.46.4 → 3.46.6
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/types/config/useAutoCalculated/index.d.ts +2 -2
- package/dist/types/config/useAutoCalculated/useShuttleVirtualized.d.ts +2 -2
- package/dist/types/config/useFocusTracker/useFocusActionTrackers.d.ts +5 -5
- package/dist/types/config/useFocusTracker/useFocusItemTracker.d.ts +6 -6
- package/dist/types/config/useFocusTracker/useFocusRegionTrackers.d.ts +11 -11
- package/dist/types/config/useFocusTracker/useFocusTracker.d.ts +22 -22
- package/dist/types/config/useStore/useStore.d.ts +21 -254
- package/dist/types/config/useValidateProps.d.ts +0 -1
- package/dist/types/parts/Dnd/DndHandle.d.ts +1 -5
- package/dist/types/parts/Item/Item.d.ts +1 -1
- package/dist/types/parts/Panel/middle/ItemListWrapper/Index.d.ts +1 -3
- package/dist/types/parts/Panel/middle/ItemListWrapper/useGetDatumHydratables.d.ts +5 -6
- package/dist/types/react-desc-prop-types.d.ts +0 -1
- package/dist/types/styles.d.ts +1 -1
- package/package.json +22 -22
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
2
|
import { type DSShuttleV2T } from '../../react-desc-prop-types.js';
|
|
3
3
|
export declare const useAutoCalculated: (propsWithDefaults: DSShuttleV2T.InternalProps) => {
|
|
4
|
-
destinationVirtualRef: import("react").
|
|
4
|
+
destinationVirtualRef: import("react").RefObject<{
|
|
5
5
|
scrollTo: (index: number) => void;
|
|
6
6
|
}>;
|
|
7
|
-
sourceVirtualRef: import("react").
|
|
7
|
+
sourceVirtualRef: import("react").RefObject<{
|
|
8
8
|
scrollTo: (index: number) => void;
|
|
9
9
|
}>;
|
|
10
10
|
destinationSelectedItemsMap: Record<string, {
|
|
@@ -3,7 +3,7 @@ type ActionRefVirtualized = {
|
|
|
3
3
|
scrollTo: (index: number) => void;
|
|
4
4
|
};
|
|
5
5
|
export declare const useShuttleVirtualized: () => {
|
|
6
|
-
destinationVirtualRef: import("react").
|
|
7
|
-
sourceVirtualRef: import("react").
|
|
6
|
+
destinationVirtualRef: import("react").RefObject<ActionRefVirtualized>;
|
|
7
|
+
sourceVirtualRef: import("react").RefObject<ActionRefVirtualized>;
|
|
8
8
|
};
|
|
9
9
|
export {};
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import { type DSShuttleV2T } from '../../react-desc-prop-types.js';
|
|
2
2
|
export declare const useFocusActionTrackers: () => {
|
|
3
|
-
trackFocusActionMove: () =>
|
|
4
|
-
trackFocusActionDrilldown: () =>
|
|
5
|
-
trackFocusActionDragAndDrop: () =>
|
|
6
|
-
trackFocusActionParent: () =>
|
|
7
|
-
trackFocusActionReset: () =>
|
|
3
|
+
trackFocusActionMove: () => any;
|
|
4
|
+
trackFocusActionDrilldown: () => any;
|
|
5
|
+
trackFocusActionDragAndDrop: () => any;
|
|
6
|
+
trackFocusActionParent: () => any;
|
|
7
|
+
trackFocusActionReset: () => any;
|
|
8
8
|
trackFocusPrevAction: ({ isDestinationPanel, datumHydratables, datumInternalMeta: { hydratedPreventMove } }: DSShuttleV2T.ItemMeta) => void;
|
|
9
9
|
trackFocusNextAction: ({ isDestinationPanel, datumHydratables, datumInternalMeta: { hydratedPreventMove } }: DSShuttleV2T.ItemMeta) => void;
|
|
10
10
|
};
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
import { type DSShuttleV2T } from '../../react-desc-prop-types.js';
|
|
2
2
|
export declare const useFocusItemTracker: () => {
|
|
3
|
-
trackFocusItem: (item: DSShuttleV2T.ConfiguredDatum) =>
|
|
4
|
-
trackFocusItemReset: () =>
|
|
5
|
-
trackFocusItemFirst: ({ isDestinationPanel }: DSShuttleV2T.PanelMetaInfo) =>
|
|
6
|
-
trackFocusItemLast: ({ isDestinationPanel }: DSShuttleV2T.PanelMetaInfo) =>
|
|
7
|
-
trackFocusLoadMoreBtnDestination: () =>
|
|
8
|
-
trackFocusLoadMoreBtn: () =>
|
|
3
|
+
trackFocusItem: (item: DSShuttleV2T.ConfiguredDatum) => any;
|
|
4
|
+
trackFocusItemReset: () => any;
|
|
5
|
+
trackFocusItemFirst: ({ isDestinationPanel }: DSShuttleV2T.PanelMetaInfo) => any;
|
|
6
|
+
trackFocusItemLast: ({ isDestinationPanel }: DSShuttleV2T.PanelMetaInfo) => any;
|
|
7
|
+
trackFocusLoadMoreBtnDestination: () => any;
|
|
8
|
+
trackFocusLoadMoreBtn: () => any;
|
|
9
9
|
trackFocusPrevItem: ({ isDestinationPanel }: DSShuttleV2T.PanelMetaInfo) => void;
|
|
10
10
|
trackFocusNextItem: ({ isDestinationPanel }: DSShuttleV2T.PanelMetaInfo) => void;
|
|
11
11
|
};
|
|
@@ -1,18 +1,18 @@
|
|
|
1
1
|
export declare const useFocusRegionTrackers: () => {
|
|
2
|
-
trackFocusRegionSourceHeader: () =>
|
|
3
|
-
trackFocusRegionSourcePanel: () =>
|
|
4
|
-
trackFocusRegionSourceBottom: () =>
|
|
5
|
-
trackFocusRegionSourcePanelItem: () =>
|
|
6
|
-
trackFocusRegionSourcePanelFocusAll: () =>
|
|
7
|
-
trackFocusRegionDestinationHeader: () =>
|
|
8
|
-
trackFocusRegionDestinationPanel: () =>
|
|
9
|
-
trackFocusRegionDestinationBottom: () =>
|
|
10
|
-
trackFocusRegionDestinationPanelItem: () =>
|
|
11
|
-
trackFocusRegionDestinationPanelFocusMoveAll: () =>
|
|
2
|
+
trackFocusRegionSourceHeader: () => any;
|
|
3
|
+
trackFocusRegionSourcePanel: () => any;
|
|
4
|
+
trackFocusRegionSourceBottom: () => any;
|
|
5
|
+
trackFocusRegionSourcePanelItem: () => any;
|
|
6
|
+
trackFocusRegionSourcePanelFocusAll: () => any;
|
|
7
|
+
trackFocusRegionDestinationHeader: () => any;
|
|
8
|
+
trackFocusRegionDestinationPanel: () => any;
|
|
9
|
+
trackFocusRegionDestinationBottom: () => any;
|
|
10
|
+
trackFocusRegionDestinationPanelItem: () => any;
|
|
11
|
+
trackFocusRegionDestinationPanelFocusMoveAll: () => any;
|
|
12
12
|
trackFocusRegionHeader: (isDestinationPanel: boolean) => void;
|
|
13
13
|
trackFocusRegionBottom: (isDestinationPanel: boolean) => void;
|
|
14
14
|
trackFocusRegionPanel: (isDestinationPanel: boolean) => void;
|
|
15
15
|
trackFocusRegionPanelItem: (isDestinationPanel: boolean) => void;
|
|
16
16
|
trackFocusRegionPanelFocusMoveAll: (isDestinationPanel: boolean) => void;
|
|
17
|
-
trackFocusRegionReset: () =>
|
|
17
|
+
trackFocusRegionReset: () => any;
|
|
18
18
|
};
|
|
@@ -1,33 +1,33 @@
|
|
|
1
1
|
export declare const useFocusTracker: () => {
|
|
2
|
-
trackFocusActionMove: () =>
|
|
3
|
-
trackFocusActionDrilldown: () =>
|
|
4
|
-
trackFocusActionDragAndDrop: () =>
|
|
5
|
-
trackFocusActionParent: () =>
|
|
6
|
-
trackFocusActionReset: () =>
|
|
2
|
+
trackFocusActionMove: () => any;
|
|
3
|
+
trackFocusActionDrilldown: () => any;
|
|
4
|
+
trackFocusActionDragAndDrop: () => any;
|
|
5
|
+
trackFocusActionParent: () => any;
|
|
6
|
+
trackFocusActionReset: () => any;
|
|
7
7
|
trackFocusPrevAction: ({ isDestinationPanel, datumHydratables, datumInternalMeta: { hydratedPreventMove } }: import("../../react-desc-prop-types.js").DSShuttleV2T.ItemMeta) => void;
|
|
8
8
|
trackFocusNextAction: ({ isDestinationPanel, datumHydratables, datumInternalMeta: { hydratedPreventMove } }: import("../../react-desc-prop-types.js").DSShuttleV2T.ItemMeta) => void;
|
|
9
|
-
trackFocusItem: (item: import("../../react-desc-prop-types.js").DSShuttleV2T.ConfiguredDatum) =>
|
|
10
|
-
trackFocusItemReset: () =>
|
|
11
|
-
trackFocusItemFirst: ({ isDestinationPanel }: import("../../react-desc-prop-types.js").DSShuttleV2T.PanelMetaInfo) =>
|
|
12
|
-
trackFocusItemLast: ({ isDestinationPanel }: import("../../react-desc-prop-types.js").DSShuttleV2T.PanelMetaInfo) =>
|
|
13
|
-
trackFocusLoadMoreBtnDestination: () =>
|
|
14
|
-
trackFocusLoadMoreBtn: () =>
|
|
9
|
+
trackFocusItem: (item: import("../../react-desc-prop-types.js").DSShuttleV2T.ConfiguredDatum) => any;
|
|
10
|
+
trackFocusItemReset: () => any;
|
|
11
|
+
trackFocusItemFirst: ({ isDestinationPanel }: import("../../react-desc-prop-types.js").DSShuttleV2T.PanelMetaInfo) => any;
|
|
12
|
+
trackFocusItemLast: ({ isDestinationPanel }: import("../../react-desc-prop-types.js").DSShuttleV2T.PanelMetaInfo) => any;
|
|
13
|
+
trackFocusLoadMoreBtnDestination: () => any;
|
|
14
|
+
trackFocusLoadMoreBtn: () => any;
|
|
15
15
|
trackFocusPrevItem: ({ isDestinationPanel }: import("../../react-desc-prop-types.js").DSShuttleV2T.PanelMetaInfo) => void;
|
|
16
16
|
trackFocusNextItem: ({ isDestinationPanel }: import("../../react-desc-prop-types.js").DSShuttleV2T.PanelMetaInfo) => void;
|
|
17
|
-
trackFocusRegionSourceHeader: () =>
|
|
18
|
-
trackFocusRegionSourcePanel: () =>
|
|
19
|
-
trackFocusRegionSourceBottom: () =>
|
|
20
|
-
trackFocusRegionSourcePanelItem: () =>
|
|
21
|
-
trackFocusRegionSourcePanelFocusAll: () =>
|
|
22
|
-
trackFocusRegionDestinationHeader: () =>
|
|
23
|
-
trackFocusRegionDestinationPanel: () =>
|
|
24
|
-
trackFocusRegionDestinationBottom: () =>
|
|
25
|
-
trackFocusRegionDestinationPanelItem: () =>
|
|
26
|
-
trackFocusRegionDestinationPanelFocusMoveAll: () =>
|
|
17
|
+
trackFocusRegionSourceHeader: () => any;
|
|
18
|
+
trackFocusRegionSourcePanel: () => any;
|
|
19
|
+
trackFocusRegionSourceBottom: () => any;
|
|
20
|
+
trackFocusRegionSourcePanelItem: () => any;
|
|
21
|
+
trackFocusRegionSourcePanelFocusAll: () => any;
|
|
22
|
+
trackFocusRegionDestinationHeader: () => any;
|
|
23
|
+
trackFocusRegionDestinationPanel: () => any;
|
|
24
|
+
trackFocusRegionDestinationBottom: () => any;
|
|
25
|
+
trackFocusRegionDestinationPanelItem: () => any;
|
|
26
|
+
trackFocusRegionDestinationPanelFocusMoveAll: () => any;
|
|
27
27
|
trackFocusRegionHeader: (isDestinationPanel: boolean) => void;
|
|
28
28
|
trackFocusRegionBottom: (isDestinationPanel: boolean) => void;
|
|
29
29
|
trackFocusRegionPanel: (isDestinationPanel: boolean) => void;
|
|
30
30
|
trackFocusRegionPanelItem: (isDestinationPanel: boolean) => void;
|
|
31
31
|
trackFocusRegionPanelFocusMoveAll: (isDestinationPanel: boolean) => void;
|
|
32
|
-
trackFocusRegionReset: () =>
|
|
32
|
+
trackFocusRegionReset: () => any;
|
|
33
33
|
};
|
|
@@ -1,143 +1,26 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
|
-
import { type ZustandT } from '@elliemae/ds-zustand-helpers';
|
|
3
2
|
import { type DSShuttleV2T } from '../../react-desc-prop-types.js';
|
|
4
3
|
export declare const PropsProvider: ({ createStore, children, }: {
|
|
5
|
-
createStore: () => ZustandT.ZustandStore<ZustandT.PropsStore<
|
|
6
|
-
destinationVirtualRef: import("react").MutableRefObject<{
|
|
7
|
-
scrollTo: (index: number) => void;
|
|
8
|
-
}>;
|
|
9
|
-
sourceVirtualRef: import("react").MutableRefObject<{
|
|
10
|
-
scrollTo: (index: number) => void;
|
|
11
|
-
}>;
|
|
12
|
-
destinationSelectedItemsMap: Record<string, {
|
|
13
|
-
datum: DSShuttleV2T.Datum;
|
|
14
|
-
index: number;
|
|
15
|
-
}>;
|
|
16
|
-
destinationSelectionItemArray: DSShuttleV2T.Datum[];
|
|
17
|
-
destinationSelectionArray: string[];
|
|
18
|
-
destinationHasMultipleSelectedItems: boolean;
|
|
19
|
-
destinationConfiguredData: DSShuttleV2T.ConfiguredDatum[];
|
|
20
|
-
destinationSelectionableData: DSShuttleV2T.ConfiguredDatum[];
|
|
21
|
-
destinationSelectionableDataIds: string[];
|
|
22
|
-
destinationSelectionableIds: string;
|
|
23
|
-
sourceConfiguredData: DSShuttleV2T.ConfiguredDatum[];
|
|
24
|
-
sourceSelectedItemsMap: Record<string, {
|
|
25
|
-
datum: DSShuttleV2T.Datum;
|
|
26
|
-
index: number;
|
|
27
|
-
}>;
|
|
28
|
-
sourceSelectionItemArray: DSShuttleV2T.Datum[];
|
|
29
|
-
sourceSelectionArray: string[];
|
|
30
|
-
sourceHasMultipleSelectedItems: boolean;
|
|
31
|
-
sourceSelectionableData: DSShuttleV2T.ConfiguredDatum[];
|
|
32
|
-
sourceSelectionableDataIds: string[];
|
|
33
|
-
sourceSelectionableIds: string;
|
|
34
|
-
}>>;
|
|
4
|
+
createStore: () => ZustandT.ZustandStore<ZustandT.PropsStore<PropsType & AutoCalculatedValuesType>>;
|
|
35
5
|
children: import("react").ReactNode;
|
|
36
|
-
}) => import("react").FunctionComponentElement<import("react").ProviderProps<
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
}>;
|
|
40
|
-
sourceVirtualRef: import("react").MutableRefObject<{
|
|
41
|
-
scrollTo: (index: number) => void;
|
|
42
|
-
}>;
|
|
43
|
-
destinationSelectedItemsMap: Record<string, {
|
|
44
|
-
datum: DSShuttleV2T.Datum;
|
|
45
|
-
index: number;
|
|
46
|
-
}>;
|
|
47
|
-
destinationSelectionItemArray: DSShuttleV2T.Datum[];
|
|
48
|
-
destinationSelectionArray: string[];
|
|
49
|
-
destinationHasMultipleSelectedItems: boolean;
|
|
50
|
-
destinationConfiguredData: DSShuttleV2T.ConfiguredDatum[];
|
|
51
|
-
destinationSelectionableData: DSShuttleV2T.ConfiguredDatum[];
|
|
52
|
-
destinationSelectionableDataIds: string[];
|
|
53
|
-
destinationSelectionableIds: string;
|
|
54
|
-
sourceConfiguredData: DSShuttleV2T.ConfiguredDatum[];
|
|
55
|
-
sourceSelectedItemsMap: Record<string, {
|
|
56
|
-
datum: DSShuttleV2T.Datum;
|
|
57
|
-
index: number;
|
|
58
|
-
}>;
|
|
59
|
-
sourceSelectionItemArray: DSShuttleV2T.Datum[];
|
|
60
|
-
sourceSelectionArray: string[];
|
|
61
|
-
sourceHasMultipleSelectedItems: boolean;
|
|
62
|
-
sourceSelectionableData: DSShuttleV2T.ConfiguredDatum[];
|
|
63
|
-
sourceSelectionableDataIds: string[];
|
|
64
|
-
sourceSelectionableIds: string;
|
|
65
|
-
}>> | undefined>>, usePropsStore: {
|
|
66
|
-
(): ZustandT.PropsStore<DSShuttleV2T.InternalProps & {
|
|
67
|
-
destinationVirtualRef: import("react").MutableRefObject<{
|
|
68
|
-
scrollTo: (index: number) => void;
|
|
69
|
-
}>;
|
|
70
|
-
sourceVirtualRef: import("react").MutableRefObject<{
|
|
71
|
-
scrollTo: (index: number) => void;
|
|
72
|
-
}>;
|
|
73
|
-
destinationSelectedItemsMap: Record<string, {
|
|
74
|
-
datum: DSShuttleV2T.Datum;
|
|
75
|
-
index: number;
|
|
76
|
-
}>;
|
|
77
|
-
destinationSelectionItemArray: DSShuttleV2T.Datum[];
|
|
78
|
-
destinationSelectionArray: string[];
|
|
79
|
-
destinationHasMultipleSelectedItems: boolean;
|
|
80
|
-
destinationConfiguredData: DSShuttleV2T.ConfiguredDatum[];
|
|
81
|
-
destinationSelectionableData: DSShuttleV2T.ConfiguredDatum[];
|
|
82
|
-
destinationSelectionableDataIds: string[];
|
|
83
|
-
destinationSelectionableIds: string;
|
|
84
|
-
sourceConfiguredData: DSShuttleV2T.ConfiguredDatum[];
|
|
85
|
-
sourceSelectedItemsMap: Record<string, {
|
|
86
|
-
datum: DSShuttleV2T.Datum;
|
|
87
|
-
index: number;
|
|
88
|
-
}>;
|
|
89
|
-
sourceSelectionItemArray: DSShuttleV2T.Datum[];
|
|
90
|
-
sourceSelectionArray: string[];
|
|
91
|
-
sourceHasMultipleSelectedItems: boolean;
|
|
92
|
-
sourceSelectionableData: DSShuttleV2T.ConfiguredDatum[];
|
|
93
|
-
sourceSelectionableDataIds: string[];
|
|
94
|
-
sourceSelectionableIds: string;
|
|
95
|
-
}>;
|
|
96
|
-
<U>(selector: (state: ZustandT.PropsStore<DSShuttleV2T.InternalProps & {
|
|
97
|
-
destinationVirtualRef: import("react").MutableRefObject<{
|
|
98
|
-
scrollTo: (index: number) => void;
|
|
99
|
-
}>;
|
|
100
|
-
sourceVirtualRef: import("react").MutableRefObject<{
|
|
101
|
-
scrollTo: (index: number) => void;
|
|
102
|
-
}>;
|
|
103
|
-
destinationSelectedItemsMap: Record<string, {
|
|
104
|
-
datum: DSShuttleV2T.Datum;
|
|
105
|
-
index: number;
|
|
106
|
-
}>;
|
|
107
|
-
destinationSelectionItemArray: DSShuttleV2T.Datum[];
|
|
108
|
-
destinationSelectionArray: string[];
|
|
109
|
-
destinationHasMultipleSelectedItems: boolean;
|
|
110
|
-
destinationConfiguredData: DSShuttleV2T.ConfiguredDatum[];
|
|
111
|
-
destinationSelectionableData: DSShuttleV2T.ConfiguredDatum[];
|
|
112
|
-
destinationSelectionableDataIds: string[];
|
|
113
|
-
destinationSelectionableIds: string;
|
|
114
|
-
sourceConfiguredData: DSShuttleV2T.ConfiguredDatum[];
|
|
115
|
-
sourceSelectedItemsMap: Record<string, {
|
|
116
|
-
datum: DSShuttleV2T.Datum;
|
|
117
|
-
index: number;
|
|
118
|
-
}>;
|
|
119
|
-
sourceSelectionItemArray: DSShuttleV2T.Datum[];
|
|
120
|
-
sourceSelectionArray: string[];
|
|
121
|
-
sourceHasMultipleSelectedItems: boolean;
|
|
122
|
-
sourceSelectionableData: DSShuttleV2T.ConfiguredDatum[];
|
|
123
|
-
sourceSelectionableDataIds: string[];
|
|
124
|
-
sourceSelectionableIds: string;
|
|
125
|
-
}>) => U, equalityFn?: ((a: U, b: U) => boolean) | undefined): U;
|
|
6
|
+
}) => import("react").FunctionComponentElement<import("react").ProviderProps<any>>, usePropsStore: {
|
|
7
|
+
(): ZustandT.PropsStore<PropsType & AutoCalculatedValuesType>;
|
|
8
|
+
<U>(selector: (state: ZustandT.PropsStore<PropsType & AutoCalculatedValuesType>) => U, equalityFn?: ((a: U, b: U) => boolean) | undefined): U;
|
|
126
9
|
}, InternalProvider: ({ createStore, children, }: {
|
|
127
|
-
createStore: () => ZustandT.ZustandStore<ZustandT.InternalStore<
|
|
10
|
+
createStore: () => ZustandT.ZustandStore<ZustandT.InternalStore<AtomValuesType, SelectorsType, ReducersType>>;
|
|
128
11
|
children: import("react").ReactNode;
|
|
129
|
-
}) => import("react").FunctionComponentElement<import("react").ProviderProps<
|
|
130
|
-
(): ZustandT.InternalStore<
|
|
131
|
-
<U_1>(selector: (state: ZustandT.InternalStore<
|
|
12
|
+
}) => import("react").FunctionComponentElement<import("react").ProviderProps<any>>, useInternalStore: {
|
|
13
|
+
(): ZustandT.InternalStore<AtomValuesType, SelectorsType, ReducersType>;
|
|
14
|
+
<U_1>(selector: (state: ZustandT.InternalStore<AtomValuesType, SelectorsType, ReducersType>) => U_1, equalityFn?: ((a: U_1, b: U_1) => boolean) | undefined): U_1;
|
|
132
15
|
};
|
|
133
16
|
export declare const config: {
|
|
134
17
|
defaultProps: DSShuttleV2T.InternalProps;
|
|
135
18
|
internalAtomDefaultValues: DSShuttleV2T.InternalAtoms;
|
|
136
19
|
useAutoCalculated: (propsWithDefaults: DSShuttleV2T.InternalProps) => {
|
|
137
|
-
destinationVirtualRef: import("react").
|
|
20
|
+
destinationVirtualRef: import("react").RefObject<{
|
|
138
21
|
scrollTo: (index: number) => void;
|
|
139
22
|
}>;
|
|
140
|
-
sourceVirtualRef: import("react").
|
|
23
|
+
sourceVirtualRef: import("react").RefObject<{
|
|
141
24
|
scrollTo: (index: number) => void;
|
|
142
25
|
}>;
|
|
143
26
|
destinationSelectedItemsMap: Record<string, {
|
|
@@ -163,139 +46,23 @@ export declare const config: {
|
|
|
163
46
|
sourceSelectionableDataIds: string[];
|
|
164
47
|
sourceSelectionableIds: string;
|
|
165
48
|
};
|
|
166
|
-
selectors: ZustandT.SelectorObject<DSShuttleV2T.
|
|
167
|
-
reducers: ZustandT.ReducerObject<DSShuttleV2T.
|
|
168
|
-
subscribers: ZustandT.Subscribers<DSShuttleV2T.
|
|
49
|
+
selectors: ZustandT.SelectorObject<ZustandT.InternalStore<DSShuttleV2T.InternalAtoms, DSShuttleV2T.Selectors, DSShuttleV2T.Reducers>, DSShuttleV2T.Selectors>;
|
|
50
|
+
reducers: ZustandT.ReducerObject<ZustandT.InternalStore<DSShuttleV2T.InternalAtoms, DSShuttleV2T.Selectors, DSShuttleV2T.Reducers>, DSShuttleV2T.Reducers>;
|
|
51
|
+
subscribers: ZustandT.Subscribers<ZustandT.InternalStore<DSShuttleV2T.InternalAtoms, DSShuttleV2T.Selectors, DSShuttleV2T.Reducers>>;
|
|
169
52
|
PropsProvider: ({ createStore, children, }: {
|
|
170
|
-
createStore: () => ZustandT.ZustandStore<ZustandT.PropsStore<
|
|
171
|
-
destinationVirtualRef: import("react").MutableRefObject<{
|
|
172
|
-
scrollTo: (index: number) => void;
|
|
173
|
-
}>;
|
|
174
|
-
sourceVirtualRef: import("react").MutableRefObject<{
|
|
175
|
-
scrollTo: (index: number) => void;
|
|
176
|
-
}>;
|
|
177
|
-
destinationSelectedItemsMap: Record<string, {
|
|
178
|
-
datum: DSShuttleV2T.Datum;
|
|
179
|
-
index: number;
|
|
180
|
-
}>;
|
|
181
|
-
destinationSelectionItemArray: DSShuttleV2T.Datum[];
|
|
182
|
-
destinationSelectionArray: string[];
|
|
183
|
-
destinationHasMultipleSelectedItems: boolean;
|
|
184
|
-
destinationConfiguredData: DSShuttleV2T.ConfiguredDatum[];
|
|
185
|
-
destinationSelectionableData: DSShuttleV2T.ConfiguredDatum[];
|
|
186
|
-
destinationSelectionableDataIds: string[];
|
|
187
|
-
destinationSelectionableIds: string;
|
|
188
|
-
sourceConfiguredData: DSShuttleV2T.ConfiguredDatum[];
|
|
189
|
-
sourceSelectedItemsMap: Record<string, {
|
|
190
|
-
datum: DSShuttleV2T.Datum;
|
|
191
|
-
index: number;
|
|
192
|
-
}>;
|
|
193
|
-
sourceSelectionItemArray: DSShuttleV2T.Datum[];
|
|
194
|
-
sourceSelectionArray: string[];
|
|
195
|
-
sourceHasMultipleSelectedItems: boolean;
|
|
196
|
-
sourceSelectionableData: DSShuttleV2T.ConfiguredDatum[];
|
|
197
|
-
sourceSelectionableDataIds: string[];
|
|
198
|
-
sourceSelectionableIds: string;
|
|
199
|
-
}>>;
|
|
53
|
+
createStore: () => ZustandT.ZustandStore<ZustandT.PropsStore<PropsType & AutoCalculatedValuesType>>;
|
|
200
54
|
children: import("react").ReactNode;
|
|
201
|
-
}) => import("react").FunctionComponentElement<import("react").ProviderProps<
|
|
202
|
-
destinationVirtualRef: import("react").MutableRefObject<{
|
|
203
|
-
scrollTo: (index: number) => void;
|
|
204
|
-
}>;
|
|
205
|
-
sourceVirtualRef: import("react").MutableRefObject<{
|
|
206
|
-
scrollTo: (index: number) => void;
|
|
207
|
-
}>;
|
|
208
|
-
destinationSelectedItemsMap: Record<string, {
|
|
209
|
-
datum: DSShuttleV2T.Datum;
|
|
210
|
-
index: number;
|
|
211
|
-
}>;
|
|
212
|
-
destinationSelectionItemArray: DSShuttleV2T.Datum[];
|
|
213
|
-
destinationSelectionArray: string[];
|
|
214
|
-
destinationHasMultipleSelectedItems: boolean;
|
|
215
|
-
destinationConfiguredData: DSShuttleV2T.ConfiguredDatum[];
|
|
216
|
-
destinationSelectionableData: DSShuttleV2T.ConfiguredDatum[];
|
|
217
|
-
destinationSelectionableDataIds: string[];
|
|
218
|
-
destinationSelectionableIds: string;
|
|
219
|
-
sourceConfiguredData: DSShuttleV2T.ConfiguredDatum[];
|
|
220
|
-
sourceSelectedItemsMap: Record<string, {
|
|
221
|
-
datum: DSShuttleV2T.Datum;
|
|
222
|
-
index: number;
|
|
223
|
-
}>;
|
|
224
|
-
sourceSelectionItemArray: DSShuttleV2T.Datum[];
|
|
225
|
-
sourceSelectionArray: string[];
|
|
226
|
-
sourceHasMultipleSelectedItems: boolean;
|
|
227
|
-
sourceSelectionableData: DSShuttleV2T.ConfiguredDatum[];
|
|
228
|
-
sourceSelectionableDataIds: string[];
|
|
229
|
-
sourceSelectionableIds: string;
|
|
230
|
-
}>> | undefined>>;
|
|
55
|
+
}) => import("react").FunctionComponentElement<import("react").ProviderProps<any>>;
|
|
231
56
|
usePropsStore: {
|
|
232
|
-
(): ZustandT.PropsStore<
|
|
233
|
-
|
|
234
|
-
scrollTo: (index: number) => void;
|
|
235
|
-
}>;
|
|
236
|
-
sourceVirtualRef: import("react").MutableRefObject<{
|
|
237
|
-
scrollTo: (index: number) => void;
|
|
238
|
-
}>;
|
|
239
|
-
destinationSelectedItemsMap: Record<string, {
|
|
240
|
-
datum: DSShuttleV2T.Datum;
|
|
241
|
-
index: number;
|
|
242
|
-
}>;
|
|
243
|
-
destinationSelectionItemArray: DSShuttleV2T.Datum[];
|
|
244
|
-
destinationSelectionArray: string[];
|
|
245
|
-
destinationHasMultipleSelectedItems: boolean;
|
|
246
|
-
destinationConfiguredData: DSShuttleV2T.ConfiguredDatum[];
|
|
247
|
-
destinationSelectionableData: DSShuttleV2T.ConfiguredDatum[];
|
|
248
|
-
destinationSelectionableDataIds: string[];
|
|
249
|
-
destinationSelectionableIds: string;
|
|
250
|
-
sourceConfiguredData: DSShuttleV2T.ConfiguredDatum[];
|
|
251
|
-
sourceSelectedItemsMap: Record<string, {
|
|
252
|
-
datum: DSShuttleV2T.Datum;
|
|
253
|
-
index: number;
|
|
254
|
-
}>;
|
|
255
|
-
sourceSelectionItemArray: DSShuttleV2T.Datum[];
|
|
256
|
-
sourceSelectionArray: string[];
|
|
257
|
-
sourceHasMultipleSelectedItems: boolean;
|
|
258
|
-
sourceSelectionableData: DSShuttleV2T.ConfiguredDatum[];
|
|
259
|
-
sourceSelectionableDataIds: string[];
|
|
260
|
-
sourceSelectionableIds: string;
|
|
261
|
-
}>;
|
|
262
|
-
<U>(selector: (state: ZustandT.PropsStore<DSShuttleV2T.InternalProps & {
|
|
263
|
-
destinationVirtualRef: import("react").MutableRefObject<{
|
|
264
|
-
scrollTo: (index: number) => void;
|
|
265
|
-
}>;
|
|
266
|
-
sourceVirtualRef: import("react").MutableRefObject<{
|
|
267
|
-
scrollTo: (index: number) => void;
|
|
268
|
-
}>;
|
|
269
|
-
destinationSelectedItemsMap: Record<string, {
|
|
270
|
-
datum: DSShuttleV2T.Datum;
|
|
271
|
-
index: number;
|
|
272
|
-
}>;
|
|
273
|
-
destinationSelectionItemArray: DSShuttleV2T.Datum[];
|
|
274
|
-
destinationSelectionArray: string[];
|
|
275
|
-
destinationHasMultipleSelectedItems: boolean;
|
|
276
|
-
destinationConfiguredData: DSShuttleV2T.ConfiguredDatum[];
|
|
277
|
-
destinationSelectionableData: DSShuttleV2T.ConfiguredDatum[];
|
|
278
|
-
destinationSelectionableDataIds: string[];
|
|
279
|
-
destinationSelectionableIds: string;
|
|
280
|
-
sourceConfiguredData: DSShuttleV2T.ConfiguredDatum[];
|
|
281
|
-
sourceSelectedItemsMap: Record<string, {
|
|
282
|
-
datum: DSShuttleV2T.Datum;
|
|
283
|
-
index: number;
|
|
284
|
-
}>;
|
|
285
|
-
sourceSelectionItemArray: DSShuttleV2T.Datum[];
|
|
286
|
-
sourceSelectionArray: string[];
|
|
287
|
-
sourceHasMultipleSelectedItems: boolean;
|
|
288
|
-
sourceSelectionableData: DSShuttleV2T.ConfiguredDatum[];
|
|
289
|
-
sourceSelectionableDataIds: string[];
|
|
290
|
-
sourceSelectionableIds: string;
|
|
291
|
-
}>) => U, equalityFn?: ((a: U, b: U) => boolean) | undefined): U;
|
|
57
|
+
(): ZustandT.PropsStore<PropsType & AutoCalculatedValuesType>;
|
|
58
|
+
<U>(selector: (state: ZustandT.PropsStore<PropsType & AutoCalculatedValuesType>) => U, equalityFn?: ((a: U, b: U) => boolean) | undefined): U;
|
|
292
59
|
};
|
|
293
60
|
InternalProvider: ({ createStore, children, }: {
|
|
294
|
-
createStore: () => ZustandT.ZustandStore<ZustandT.InternalStore<
|
|
61
|
+
createStore: () => ZustandT.ZustandStore<ZustandT.InternalStore<AtomValuesType, SelectorsType, ReducersType>>;
|
|
295
62
|
children: import("react").ReactNode;
|
|
296
|
-
}) => import("react").FunctionComponentElement<import("react").ProviderProps<
|
|
63
|
+
}) => import("react").FunctionComponentElement<import("react").ProviderProps<any>>;
|
|
297
64
|
useInternalStore: {
|
|
298
|
-
(): ZustandT.InternalStore<
|
|
299
|
-
<U_1>(selector: (state: ZustandT.InternalStore<
|
|
65
|
+
(): ZustandT.InternalStore<AtomValuesType, SelectorsType, ReducersType>;
|
|
66
|
+
<U_1>(selector: (state: ZustandT.InternalStore<AtomValuesType, SelectorsType, ReducersType>) => U_1, equalityFn?: ((a: U_1, b: U_1) => boolean) | undefined): U_1;
|
|
300
67
|
};
|
|
301
68
|
};
|
|
@@ -1,10 +1,6 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
2
|
import type { useSortable } from '@elliemae/ds-drag-and-drop';
|
|
3
|
-
export declare const StyledGripperButtonOrOverlay:
|
|
4
|
-
isActive: boolean;
|
|
5
|
-
isDragOverlay?: boolean | undefined;
|
|
6
|
-
disabled?: boolean | undefined;
|
|
7
|
-
} & import("@elliemae/ds-system").OwnerInterface & import("@elliemae/ds-system").InnerRefInterface<"div">, never>;
|
|
3
|
+
export declare const StyledGripperButtonOrOverlay: any;
|
|
8
4
|
export declare const DragHandle: React.ComponentType<{
|
|
9
5
|
id: string;
|
|
10
6
|
innerRef: React.RefObject<HTMLDivElement> | React.RefCallback<HTMLDivElement>;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
2
|
import { type DSShuttleV2T } from '../../react-desc-prop-types.js';
|
|
3
3
|
export declare const Item: React.MemoExoticComponent<(itemMeta: DSShuttleV2T.ItemMeta) => import("react/jsx-runtime.js").JSX.Element>;
|
|
4
|
-
declare const ItemSortable:
|
|
4
|
+
declare const ItemSortable: any;
|
|
5
5
|
export { ItemSortable };
|
|
6
6
|
export default ItemSortable;
|
|
@@ -1,4 +1,2 @@
|
|
|
1
|
-
|
|
2
|
-
import { type DSShuttleV2T } from '../../../../react-desc-prop-types.js';
|
|
3
|
-
export declare const ItemListWrapperWithContext: React.ComponentType<DSShuttleV2T.PanelMetaInfo>;
|
|
1
|
+
export declare const ItemListWrapperWithContext: any;
|
|
4
2
|
export default ItemListWrapperWithContext;
|
|
@@ -1,11 +1,10 @@
|
|
|
1
|
-
import React from 'react';
|
|
2
1
|
import { type DSShuttleV2T } from '../../../../react-desc-prop-types.js';
|
|
3
2
|
export declare const useGetDatumHydratables: (panelMetaInfo: DSShuttleV2T.PanelMetaInfo) => (item: DSShuttleV2T.ConfiguredDatum) => {
|
|
4
|
-
preventDrilldown?:
|
|
5
|
-
CustomRenderer?:
|
|
6
|
-
Icon?:
|
|
7
|
-
subtitle?:
|
|
3
|
+
preventDrilldown?: any;
|
|
4
|
+
CustomRenderer?: any;
|
|
5
|
+
Icon?: any;
|
|
6
|
+
subtitle?: any;
|
|
8
7
|
id: string;
|
|
9
8
|
preventMove: boolean;
|
|
10
|
-
label:
|
|
9
|
+
label: any;
|
|
11
10
|
};
|
package/dist/types/styles.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const StyledA11yNoVisible:
|
|
1
|
+
export declare const StyledA11yNoVisible: any;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@elliemae/ds-shuttle-v2",
|
|
3
|
-
"version": "3.46.
|
|
3
|
+
"version": "3.46.6",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"description": "ICE MT - Dimsum - Shuttle v2",
|
|
6
6
|
"files": [
|
|
@@ -38,32 +38,32 @@
|
|
|
38
38
|
"dependencies": {
|
|
39
39
|
"fast-deep-equal": "~3.1.3",
|
|
40
40
|
"uid": "~2.0.1",
|
|
41
|
-
"@elliemae/ds-button-v2": "3.46.
|
|
42
|
-
"@elliemae/ds-
|
|
43
|
-
"@elliemae/ds-
|
|
44
|
-
"@elliemae/ds-
|
|
45
|
-
"@elliemae/ds-form-
|
|
46
|
-
"@elliemae/ds-form-
|
|
47
|
-
"@elliemae/ds-grid": "3.46.
|
|
48
|
-
"@elliemae/ds-hooks-
|
|
49
|
-
"@elliemae/ds-hooks-headless-tooltip": "3.46.
|
|
50
|
-
"@elliemae/ds-
|
|
51
|
-
"@elliemae/ds-
|
|
52
|
-
"@elliemae/ds-
|
|
53
|
-
"@elliemae/ds-
|
|
54
|
-
"@elliemae/ds-
|
|
55
|
-
"@elliemae/ds-system": "3.46.
|
|
56
|
-
"@elliemae/ds-typescript-helpers": "3.46.
|
|
57
|
-
"@elliemae/ds-
|
|
58
|
-
"@elliemae/ds-
|
|
41
|
+
"@elliemae/ds-button-v2": "3.46.6",
|
|
42
|
+
"@elliemae/ds-circular-progress-indicator": "3.46.6",
|
|
43
|
+
"@elliemae/ds-drag-and-drop": "3.46.6",
|
|
44
|
+
"@elliemae/ds-fast-list": "3.46.6",
|
|
45
|
+
"@elliemae/ds-form-checkbox": "3.46.6",
|
|
46
|
+
"@elliemae/ds-form-input-text": "3.46.6",
|
|
47
|
+
"@elliemae/ds-grid": "3.46.6",
|
|
48
|
+
"@elliemae/ds-hooks-fontsize-detector": "3.46.6",
|
|
49
|
+
"@elliemae/ds-hooks-headless-tooltip": "3.46.6",
|
|
50
|
+
"@elliemae/ds-hooks-on-blur-out": "3.46.6",
|
|
51
|
+
"@elliemae/ds-icons": "3.46.6",
|
|
52
|
+
"@elliemae/ds-indeterminate-progress-indicator": "3.46.6",
|
|
53
|
+
"@elliemae/ds-popperjs": "3.46.6",
|
|
54
|
+
"@elliemae/ds-props-helpers": "3.46.6",
|
|
55
|
+
"@elliemae/ds-system": "3.46.6",
|
|
56
|
+
"@elliemae/ds-typescript-helpers": "3.46.6",
|
|
57
|
+
"@elliemae/ds-typography": "3.46.6",
|
|
58
|
+
"@elliemae/ds-zustand-helpers": "3.46.6"
|
|
59
59
|
},
|
|
60
60
|
"devDependencies": {
|
|
61
61
|
"@elliemae/pui-cli": "9.0.0-next.50",
|
|
62
62
|
"lodash": "^4.17.21",
|
|
63
63
|
"styled-components": "~5.3.9",
|
|
64
|
-
"@elliemae/ds-breadcrumb": "3.46.
|
|
65
|
-
"@elliemae/ds-
|
|
66
|
-
"@elliemae/ds-
|
|
64
|
+
"@elliemae/ds-breadcrumb": "3.46.6",
|
|
65
|
+
"@elliemae/ds-monorepo-devops": "3.46.6",
|
|
66
|
+
"@elliemae/ds-tree-model": "3.46.6"
|
|
67
67
|
},
|
|
68
68
|
"peerDependencies": {
|
|
69
69
|
"lodash": "^4.17.21",
|