@elliemae/ds-shuttle 3.13.1-rc.1 → 3.13.1-rc.2
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/AnimationState.d.ts +27 -0
- package/dist/types/DSShuttle.d.ts +156 -0
- package/dist/types/SearchState.d.ts +23 -0
- package/dist/types/Shuttle.actions.d.ts +11 -0
- package/dist/types/ShuttleContainer.d.ts +2 -0
- package/dist/types/ShuttleImpl.d.ts +3 -0
- package/dist/types/ShuttleRenderer.d.ts +37 -0
- package/dist/types/ShuttleState.d.ts +54 -0
- package/dist/types/animation/animationConfig.d.ts +68 -0
- package/dist/types/classedComponents.d.ts +14 -0
- package/dist/types/components/LoadingIndicator.d.ts +3 -0
- package/dist/types/components/OverflowList.d.ts +7 -0
- package/dist/types/components/ShuttleBreadcrumb.d.ts +7 -0
- package/dist/types/components/ShuttleInfiniteScrollIndicator.d.ts +5 -0
- package/dist/types/components/ShuttleListItem/ActionButtons.d.ts +3 -0
- package/dist/types/components/ShuttleListItem/ShuttleListItem.d.ts +14 -0
- package/dist/types/components/ShuttleListItem/ShuttleSourceListItem.d.ts +13 -0
- package/dist/types/components/ShuttleListItem/ShuttleTargetListItem.d.ts +13 -0
- package/dist/types/components/ShuttleListPanel.d.ts +7 -0
- package/dist/types/components/ShuttleSearchBox.d.ts +22 -0
- package/dist/types/components/ShuttleSource.d.ts +54 -0
- package/dist/types/components/ShuttleTarget.d.ts +16 -0
- package/dist/types/components/VirtualizedItem.d.ts +4 -0
- package/dist/types/components/VirtualizedList.d.ts +12 -0
- package/dist/types/components/VirtualizedSortableList.d.ts +6 -0
- package/dist/types/helper.d.ts +16 -0
- package/dist/types/index.d.ts +1 -0
- package/dist/types/tests/DSShuttle.events.test.d.ts +1 -0
- package/dist/types/tests/DSShuttle.test.d.ts +1 -0
- package/dist/types/tests/utils.d.ts +116 -0
- package/dist/types/updateShuttleStateFromProps.d.ts +3 -0
- package/dist/types/utils.d.ts +2 -0
- package/dist/types/withProviders.d.ts +3 -0
- package/package.json +11 -11
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
declare const AnimationState: import("constate/dist/ts/src/types").ContextHookReturn<unknown, {
|
|
2
|
+
state: {
|
|
3
|
+
isMoving: boolean;
|
|
4
|
+
isMovingBack: boolean;
|
|
5
|
+
isDrillingDown: boolean;
|
|
6
|
+
};
|
|
7
|
+
setIsMoving: () => void;
|
|
8
|
+
setIsMovingBack: () => void;
|
|
9
|
+
setIsDrillingDown: () => void;
|
|
10
|
+
reset: () => void;
|
|
11
|
+
}, [(value: {
|
|
12
|
+
state: {
|
|
13
|
+
isMoving: boolean;
|
|
14
|
+
isMovingBack: boolean;
|
|
15
|
+
isDrillingDown: boolean;
|
|
16
|
+
};
|
|
17
|
+
setIsMoving: () => void;
|
|
18
|
+
setIsMovingBack: () => void;
|
|
19
|
+
setIsDrillingDown: () => void;
|
|
20
|
+
reset: () => void;
|
|
21
|
+
}) => {
|
|
22
|
+
isMoving: boolean;
|
|
23
|
+
isMovingBack: boolean;
|
|
24
|
+
isDrillingDown: boolean;
|
|
25
|
+
}[]]>;
|
|
26
|
+
export { AnimationState };
|
|
27
|
+
export default AnimationState;
|
|
@@ -0,0 +1,156 @@
|
|
|
1
|
+
import utils from './utils';
|
|
2
|
+
declare const DSShuttle: {
|
|
3
|
+
({ containerProps, idField, parentIdField, showIcons, items, selectedItems, nonSelectedItems, onSearch, onSearchOpen, onSearchClose, onDrillDown, onDrillDownTarget, onTargetSortEnd, setGetStatus, targetSortable, sourceEmptyMessage, sourceRootTitle, targetEmptyMessage, targetRootTitle, composeSourceItemProps, composeTargetItemProps, onAddToTarget, onAddCheckedItems, onRemoveFromTarget, onRemoveAllFromTarget, onChange, renderSourceCounter, renderTargetCounter, sourceClearItemsText, targetClearItemsText, searchPlaceholder, loadingSource, loadingTarget, onGetMoreItems, hasNextPage, moreItemsLoading, }: {
|
|
4
|
+
containerProps?: {} | undefined;
|
|
5
|
+
idField?: string | undefined;
|
|
6
|
+
parentIdField?: string | undefined;
|
|
7
|
+
showIcons?: boolean | undefined;
|
|
8
|
+
items?: never[] | undefined;
|
|
9
|
+
selectedItems?: undefined;
|
|
10
|
+
nonSelectedItems?: undefined;
|
|
11
|
+
onSearch?: (() => void) | undefined;
|
|
12
|
+
onSearchOpen?: (() => void) | undefined;
|
|
13
|
+
onSearchClose?: (() => void) | undefined;
|
|
14
|
+
onDrillDown?: (() => void) | undefined;
|
|
15
|
+
onDrillDownTarget?: (() => void) | undefined;
|
|
16
|
+
onTargetSortEnd?: (() => void) | undefined;
|
|
17
|
+
setGetStatus?: (() => void) | undefined;
|
|
18
|
+
targetSortable?: boolean | undefined;
|
|
19
|
+
sourceEmptyMessage?: string | undefined;
|
|
20
|
+
sourceRootTitle?: string | undefined;
|
|
21
|
+
targetEmptyMessage?: string | undefined;
|
|
22
|
+
targetRootTitle?: string | undefined;
|
|
23
|
+
composeSourceItemProps?: (() => {}) | undefined;
|
|
24
|
+
composeTargetItemProps?: (() => {}) | undefined;
|
|
25
|
+
onAddToTarget?: (() => void) | undefined;
|
|
26
|
+
onAddCheckedItems?: (() => void) | undefined;
|
|
27
|
+
onRemoveFromTarget?: (() => void) | undefined;
|
|
28
|
+
onRemoveAllFromTarget?: (() => void) | undefined;
|
|
29
|
+
onChange?: (() => void) | undefined;
|
|
30
|
+
renderSourceCounter?: (() => void) | undefined;
|
|
31
|
+
renderTargetCounter?: (() => void) | undefined;
|
|
32
|
+
sourceClearItemsText?: string | undefined;
|
|
33
|
+
targetClearItemsText?: string | undefined;
|
|
34
|
+
searchPlaceholder?: string | undefined;
|
|
35
|
+
loadingSource?: boolean | undefined;
|
|
36
|
+
loadingTarget?: boolean | undefined;
|
|
37
|
+
onGetMoreItems?: (() => null) | undefined;
|
|
38
|
+
hasNextPage?: boolean | undefined;
|
|
39
|
+
moreItemsLoading: any;
|
|
40
|
+
}): JSX.Element;
|
|
41
|
+
propTypes: {
|
|
42
|
+
/** inject props to shuttle wrapper */
|
|
43
|
+
containerProps: import("@elliemae/ds-utilities/dist/types/props-helpers/propTypes/types").ReactDescT;
|
|
44
|
+
/** The identifier field for the item object */
|
|
45
|
+
idField: import("@elliemae/ds-utilities/dist/types/props-helpers/propTypes/types").ReactDescT;
|
|
46
|
+
/** The parent identifier field for the item object */
|
|
47
|
+
parentIdField: import("@elliemae/ds-utilities/dist/types/props-helpers/propTypes/types").ReactDescT;
|
|
48
|
+
/** Whether to show the icons or not */
|
|
49
|
+
showIcons: import("@elliemae/ds-utilities/dist/types/props-helpers/propTypes/types").ReactDescT;
|
|
50
|
+
/** List of items */
|
|
51
|
+
items: import("@elliemae/ds-utilities/dist/types/props-helpers/propTypes/types").ReactDescT;
|
|
52
|
+
/** Array of item ids that are selected. If passed the component behaves as controlled */
|
|
53
|
+
selectedItems: import("@elliemae/ds-utilities/dist/types/props-helpers/propTypes/types").ReactDescT;
|
|
54
|
+
/** Array of item ids that aren't selected. Should include ALL non selected items, even those not rendered */
|
|
55
|
+
nonSelectedItems: import("@elliemae/ds-utilities/dist/types/props-helpers/propTypes/types").ReactDescT;
|
|
56
|
+
/** Handler on search */
|
|
57
|
+
onSearch: import("@elliemae/ds-utilities/dist/types/props-helpers/propTypes/types").ReactDescT;
|
|
58
|
+
/** Handler when the searchbox is visible */
|
|
59
|
+
onSearchOpen: import("@elliemae/ds-utilities/dist/types/props-helpers/propTypes/types").ReactDescT;
|
|
60
|
+
/** Handler when the searchbox is not visible */
|
|
61
|
+
onSearchClose: import("@elliemae/ds-utilities/dist/types/props-helpers/propTypes/types").ReactDescT;
|
|
62
|
+
/** Source handler when a user navigates to a level down on the nested structure. First param: item drilled. Second param: direction ("up" | "down") */
|
|
63
|
+
onDrillDown: import("@elliemae/ds-utilities/dist/types/props-helpers/propTypes/types").ReactDescT;
|
|
64
|
+
/** Target handler when a user navigates to a level down on the nested structure. First param: item drilled. Second param: direction ("up" | "down") */
|
|
65
|
+
onDrillDownTarget: import("@elliemae/ds-utilities/dist/types/props-helpers/propTypes/types").ReactDescT;
|
|
66
|
+
/** Target handler when user stops dragging an item */
|
|
67
|
+
onTargetSortEnd: import("@elliemae/ds-utilities/dist/types/props-helpers/propTypes/types").ReactDescT;
|
|
68
|
+
/** Callback function that gets more items for Infinite Scroll */
|
|
69
|
+
onGetMoreItems: import("@elliemae/ds-utilities/dist/types/props-helpers/propTypes/types").ReactDescT;
|
|
70
|
+
/** Wheter there are mor items loading for Infinite Scroll */
|
|
71
|
+
moreItemsLoading: import("@elliemae/ds-utilities/dist/types/props-helpers/propTypes/types").ReactDescT;
|
|
72
|
+
/** Wheter there is a next page for Infinite Scroll, controls when to trigger onGetMoreItems */
|
|
73
|
+
hasNextPage: import("@elliemae/ds-utilities/dist/types/props-helpers/propTypes/types").ReactDescT;
|
|
74
|
+
/** Function that takes as a parameter an internal getter for the state */
|
|
75
|
+
setGetStatus: import("@elliemae/ds-utilities/dist/types/props-helpers/propTypes/types").ReactDescT;
|
|
76
|
+
/** Whether the target can be sortable with DnD */
|
|
77
|
+
targetSortable: import("@elliemae/ds-utilities/dist/types/props-helpers/propTypes/types").ReactDescT;
|
|
78
|
+
/** Handler when the searchbox is visible */
|
|
79
|
+
sourceRootTitle: import("@elliemae/ds-utilities/dist/types/props-helpers/propTypes/types").ReactDescT;
|
|
80
|
+
/** Source text when there is no items */
|
|
81
|
+
sourceEmptyMessage: import("@elliemae/ds-utilities/dist/types/props-helpers/propTypes/types").ReactDescT;
|
|
82
|
+
/** Target text when there is no items */
|
|
83
|
+
targetEmptyMessage: import("@elliemae/ds-utilities/dist/types/props-helpers/propTypes/types").ReactDescT;
|
|
84
|
+
/** Target text for the first hierarchy item */
|
|
85
|
+
targetRootTitle: import("@elliemae/ds-utilities/dist/types/props-helpers/propTypes/types").ReactDescT;
|
|
86
|
+
/** Function that allow to compose the item props in the source */
|
|
87
|
+
composeSourceItemProps: import("@elliemae/ds-utilities/dist/types/props-helpers/propTypes/types").ReactDescT;
|
|
88
|
+
/** Function that allow to compose the item props in the target */
|
|
89
|
+
composeTargetItemProps: import("@elliemae/ds-utilities/dist/types/props-helpers/propTypes/types").ReactDescT;
|
|
90
|
+
/** Handler when a users moves an item to the target */
|
|
91
|
+
onAddToTarget: import("@elliemae/ds-utilities/dist/types/props-helpers/propTypes/types").ReactDescT;
|
|
92
|
+
/** Handler when a users moves all the 'checked' items to the target */
|
|
93
|
+
onAddCheckedItems: import("@elliemae/ds-utilities/dist/types/props-helpers/propTypes/types").ReactDescT;
|
|
94
|
+
/** Handler when a user removes an item from the target */
|
|
95
|
+
onRemoveFromTarget: import("@elliemae/ds-utilities/dist/types/props-helpers/propTypes/types").ReactDescT;
|
|
96
|
+
/** Handler when a user removes all the items from the target */
|
|
97
|
+
onRemoveAllFromTarget: import("@elliemae/ds-utilities/dist/types/props-helpers/propTypes/types").ReactDescT;
|
|
98
|
+
/** Handler for every change on the state */
|
|
99
|
+
onChange: import("@elliemae/ds-utilities/dist/types/props-helpers/propTypes/types").ReactDescT;
|
|
100
|
+
/** Function that returns an element for the source counter */
|
|
101
|
+
renderSourceCounter: import("@elliemae/ds-utilities/dist/types/props-helpers/propTypes/types").ReactDescT;
|
|
102
|
+
/** Function that returns an element for the target counter */
|
|
103
|
+
renderTargetCounter: import("@elliemae/ds-utilities/dist/types/props-helpers/propTypes/types").ReactDescT;
|
|
104
|
+
/** Source text for the clear items button */
|
|
105
|
+
sourceClearItemsText: import("@elliemae/ds-utilities/dist/types/props-helpers/propTypes/types").ReactDescT;
|
|
106
|
+
/** Target text for the clear items button */
|
|
107
|
+
targetClearItemsText: import("@elliemae/ds-utilities/dist/types/props-helpers/propTypes/types").ReactDescT;
|
|
108
|
+
/** Searchbox placeholder */
|
|
109
|
+
searchPlaceholder: import("@elliemae/ds-utilities/dist/types/props-helpers/propTypes/types").ReactDescT;
|
|
110
|
+
/** Displays loading indicator on source section */
|
|
111
|
+
loadingSource: import("@elliemae/ds-utilities/dist/types/props-helpers/propTypes/types").ReactDescT;
|
|
112
|
+
/** Displays loading indicator on target section */
|
|
113
|
+
loadingTarget: import("@elliemae/ds-utilities/dist/types/props-helpers/propTypes/types").ReactDescT;
|
|
114
|
+
};
|
|
115
|
+
displayName: string;
|
|
116
|
+
};
|
|
117
|
+
declare const DSShuttleWithSchema: import("@elliemae/ds-utilities/dist/types/props-helpers/propTypes/types").DocumentedReactComponent<{
|
|
118
|
+
containerProps?: {} | undefined;
|
|
119
|
+
idField?: string | undefined;
|
|
120
|
+
parentIdField?: string | undefined;
|
|
121
|
+
showIcons?: boolean | undefined;
|
|
122
|
+
items?: never[] | undefined;
|
|
123
|
+
selectedItems?: undefined;
|
|
124
|
+
nonSelectedItems?: undefined;
|
|
125
|
+
onSearch?: (() => void) | undefined;
|
|
126
|
+
onSearchOpen?: (() => void) | undefined;
|
|
127
|
+
onSearchClose?: (() => void) | undefined;
|
|
128
|
+
onDrillDown?: (() => void) | undefined;
|
|
129
|
+
onDrillDownTarget?: (() => void) | undefined;
|
|
130
|
+
onTargetSortEnd?: (() => void) | undefined;
|
|
131
|
+
setGetStatus?: (() => void) | undefined;
|
|
132
|
+
targetSortable?: boolean | undefined;
|
|
133
|
+
sourceEmptyMessage?: string | undefined;
|
|
134
|
+
sourceRootTitle?: string | undefined;
|
|
135
|
+
targetEmptyMessage?: string | undefined;
|
|
136
|
+
targetRootTitle?: string | undefined;
|
|
137
|
+
composeSourceItemProps?: (() => {}) | undefined;
|
|
138
|
+
composeTargetItemProps?: (() => {}) | undefined;
|
|
139
|
+
onAddToTarget?: (() => void) | undefined;
|
|
140
|
+
onAddCheckedItems?: (() => void) | undefined;
|
|
141
|
+
onRemoveFromTarget?: (() => void) | undefined;
|
|
142
|
+
onRemoveAllFromTarget?: (() => void) | undefined;
|
|
143
|
+
onChange?: (() => void) | undefined;
|
|
144
|
+
renderSourceCounter?: (() => void) | undefined;
|
|
145
|
+
renderTargetCounter?: (() => void) | undefined;
|
|
146
|
+
sourceClearItemsText?: string | undefined;
|
|
147
|
+
targetClearItemsText?: string | undefined;
|
|
148
|
+
searchPlaceholder?: string | undefined;
|
|
149
|
+
loadingSource?: boolean | undefined;
|
|
150
|
+
loadingTarget?: boolean | undefined;
|
|
151
|
+
onGetMoreItems?: (() => null) | undefined;
|
|
152
|
+
hasNextPage?: boolean | undefined;
|
|
153
|
+
moreItemsLoading: any;
|
|
154
|
+
}>;
|
|
155
|
+
export { utils, DSShuttleWithSchema, DSShuttle };
|
|
156
|
+
export default DSShuttle;
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
declare const SearchState: import("constate/dist/ts/src/types").ContextHookReturn<unknown, {
|
|
3
|
+
state: {
|
|
4
|
+
searchTerm: string;
|
|
5
|
+
searching: boolean;
|
|
6
|
+
};
|
|
7
|
+
setSearchTerm: import("react").Dispatch<import("react").SetStateAction<string>>;
|
|
8
|
+
toggleSearchBox: (userVisible: any) => void;
|
|
9
|
+
reset: () => void;
|
|
10
|
+
}, [(value: {
|
|
11
|
+
state: {
|
|
12
|
+
searchTerm: string;
|
|
13
|
+
searching: boolean;
|
|
14
|
+
};
|
|
15
|
+
setSearchTerm: import("react").Dispatch<import("react").SetStateAction<string>>;
|
|
16
|
+
toggleSearchBox: (userVisible: any) => void;
|
|
17
|
+
reset: () => void;
|
|
18
|
+
}) => {
|
|
19
|
+
searchTerm: string;
|
|
20
|
+
searching: boolean;
|
|
21
|
+
}[]]>;
|
|
22
|
+
export { SearchState };
|
|
23
|
+
export default SearchState;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
export function toggleItemSelection(itemId: any): (state: any) => any;
|
|
2
|
+
export function navigateTo(item: any, dest: any): (state: any) => any;
|
|
3
|
+
export function moveItem(item: any): (state: any) => any;
|
|
4
|
+
export function addToTarget(itemToAdd: any, collection: any): (state: any, { idField }: {
|
|
5
|
+
idField: any;
|
|
6
|
+
}) => any;
|
|
7
|
+
export function removeFromTarget(itemToRemove: any): (state: any, { idField }: {
|
|
8
|
+
idField: any;
|
|
9
|
+
}) => any;
|
|
10
|
+
export function resetCheckedItems(): (state: any) => any;
|
|
11
|
+
export function resetMovedItems(): (state: any) => any;
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
declare function ShuttleRenderer({ containerProps, onNavigateOnTargetTo, onNavigateOnSourceTo, onMoveItemToSource, onMoveItemToTarget, onClearMovedItems, onMoveCheckedItems, onClearCheckedItems, onToggleSearch, onSearch, onSearchClose, onSearchOpen, searching, onCheckItem, hierarchy, hierarchyDest, checkedItems, sourceItems, targetItems, sourceEmptyMessage, targetEmptyMessage, composeTargetItemProps, composeSourceItemProps, targetSortable, sourceSortable, onSourceSortEnd, onTargetSortEnd, loadingSource, loadingTarget, onGetMoreItems, moreItemsLoading, hasNextPage, ...otherProps }: {
|
|
2
|
+
[x: string]: any;
|
|
3
|
+
containerProps: any;
|
|
4
|
+
onNavigateOnTargetTo?: (() => void) | undefined;
|
|
5
|
+
onNavigateOnSourceTo?: (() => void) | undefined;
|
|
6
|
+
onMoveItemToSource?: (() => void) | undefined;
|
|
7
|
+
onMoveItemToTarget?: (() => void) | undefined;
|
|
8
|
+
onClearMovedItems?: (() => void) | undefined;
|
|
9
|
+
onMoveCheckedItems?: (() => void) | undefined;
|
|
10
|
+
onClearCheckedItems?: (() => void) | undefined;
|
|
11
|
+
onToggleSearch?: (() => void) | undefined;
|
|
12
|
+
onSearch?: (() => void) | undefined;
|
|
13
|
+
onSearchClose?: (() => void) | undefined;
|
|
14
|
+
onSearchOpen?: (() => void) | undefined;
|
|
15
|
+
searching?: boolean | undefined;
|
|
16
|
+
onCheckItem?: (() => void) | undefined;
|
|
17
|
+
hierarchy?: never[] | undefined;
|
|
18
|
+
hierarchyDest?: never[] | undefined;
|
|
19
|
+
checkedItems?: never[] | undefined;
|
|
20
|
+
sourceItems?: never[] | undefined;
|
|
21
|
+
targetItems?: never[] | undefined;
|
|
22
|
+
sourceEmptyMessage: any;
|
|
23
|
+
targetEmptyMessage: any;
|
|
24
|
+
composeTargetItemProps: any;
|
|
25
|
+
composeSourceItemProps: any;
|
|
26
|
+
targetSortable: any;
|
|
27
|
+
sourceSortable: any;
|
|
28
|
+
onSourceSortEnd: any;
|
|
29
|
+
onTargetSortEnd: any;
|
|
30
|
+
loadingSource?: boolean | undefined;
|
|
31
|
+
loadingTarget?: boolean | undefined;
|
|
32
|
+
onGetMoreItems?: (() => void) | undefined;
|
|
33
|
+
moreItemsLoading?: boolean | undefined;
|
|
34
|
+
hasNextPage?: boolean | undefined;
|
|
35
|
+
}): JSX.Element;
|
|
36
|
+
export { ShuttleRenderer };
|
|
37
|
+
export default ShuttleRenderer;
|
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
declare const useShuttleStateHOC: import("constate/dist/ts/src/types").ContextHookReturn<unknown, {
|
|
2
|
+
state: {
|
|
3
|
+
checkedItems: never[];
|
|
4
|
+
movedItems: {};
|
|
5
|
+
hierarchy: {
|
|
6
|
+
name: string;
|
|
7
|
+
id: null;
|
|
8
|
+
}[];
|
|
9
|
+
hierarchyDest: {
|
|
10
|
+
name: string;
|
|
11
|
+
id: null;
|
|
12
|
+
}[];
|
|
13
|
+
};
|
|
14
|
+
toggleItemSelection: (item: any) => void;
|
|
15
|
+
moveCheckedItems: (items: any, dest?: boolean) => void;
|
|
16
|
+
moveItem: (item: any, dest: any) => void;
|
|
17
|
+
resetMovedItems: () => void;
|
|
18
|
+
resetCheckedItems: () => void;
|
|
19
|
+
navigate: (item: any, dest: any) => void;
|
|
20
|
+
setMovedItems: (itemsIds?: never[], items?: never[]) => void;
|
|
21
|
+
}, [(value: {
|
|
22
|
+
state: {
|
|
23
|
+
checkedItems: never[];
|
|
24
|
+
movedItems: {};
|
|
25
|
+
hierarchy: {
|
|
26
|
+
name: string;
|
|
27
|
+
id: null;
|
|
28
|
+
}[];
|
|
29
|
+
hierarchyDest: {
|
|
30
|
+
name: string;
|
|
31
|
+
id: null;
|
|
32
|
+
}[];
|
|
33
|
+
};
|
|
34
|
+
toggleItemSelection: (item: any) => void;
|
|
35
|
+
moveCheckedItems: (items: any, dest?: boolean) => void;
|
|
36
|
+
moveItem: (item: any, dest: any) => void;
|
|
37
|
+
resetMovedItems: () => void;
|
|
38
|
+
resetCheckedItems: () => void;
|
|
39
|
+
navigate: (item: any, dest: any) => void;
|
|
40
|
+
setMovedItems: (itemsIds?: never[], items?: never[]) => void;
|
|
41
|
+
}) => {
|
|
42
|
+
checkedItems: never[];
|
|
43
|
+
movedItems: {};
|
|
44
|
+
hierarchy: {
|
|
45
|
+
name: string;
|
|
46
|
+
id: null;
|
|
47
|
+
}[];
|
|
48
|
+
hierarchyDest: {
|
|
49
|
+
name: string;
|
|
50
|
+
id: null;
|
|
51
|
+
}[];
|
|
52
|
+
}[]]>;
|
|
53
|
+
export { useShuttleStateHOC as ShuttleState };
|
|
54
|
+
export default useShuttleStateHOC;
|
|
@@ -0,0 +1,68 @@
|
|
|
1
|
+
export declare const animationConfig: {
|
|
2
|
+
slideRight: {
|
|
3
|
+
from: {
|
|
4
|
+
transform: string;
|
|
5
|
+
};
|
|
6
|
+
to: {
|
|
7
|
+
transform: string;
|
|
8
|
+
};
|
|
9
|
+
};
|
|
10
|
+
slideLeft: {
|
|
11
|
+
from: {
|
|
12
|
+
transform: string;
|
|
13
|
+
};
|
|
14
|
+
to: {
|
|
15
|
+
transform: string;
|
|
16
|
+
};
|
|
17
|
+
};
|
|
18
|
+
moveItem: (isMovingLeft: any) => {
|
|
19
|
+
config: {
|
|
20
|
+
duration: number;
|
|
21
|
+
};
|
|
22
|
+
enter: {
|
|
23
|
+
opacity: number;
|
|
24
|
+
transform: string;
|
|
25
|
+
};
|
|
26
|
+
from: {
|
|
27
|
+
opacity: number;
|
|
28
|
+
transform: string;
|
|
29
|
+
};
|
|
30
|
+
leave: {
|
|
31
|
+
transform: string;
|
|
32
|
+
};
|
|
33
|
+
};
|
|
34
|
+
moveList: (isDrillingDown: any) => {
|
|
35
|
+
config: {
|
|
36
|
+
duration: number;
|
|
37
|
+
};
|
|
38
|
+
enter: {
|
|
39
|
+
opacity: number;
|
|
40
|
+
transform: string;
|
|
41
|
+
};
|
|
42
|
+
from: {
|
|
43
|
+
opacity: number;
|
|
44
|
+
transform: string;
|
|
45
|
+
};
|
|
46
|
+
leave: {
|
|
47
|
+
opacity: number;
|
|
48
|
+
transform: string;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
breadcrumb: () => {
|
|
52
|
+
config: {
|
|
53
|
+
duration: number;
|
|
54
|
+
};
|
|
55
|
+
enter: {
|
|
56
|
+
opacity: number;
|
|
57
|
+
transform: string;
|
|
58
|
+
};
|
|
59
|
+
from: {
|
|
60
|
+
opacity: number;
|
|
61
|
+
transform: string;
|
|
62
|
+
};
|
|
63
|
+
leave: {
|
|
64
|
+
opacity: number;
|
|
65
|
+
transform: string;
|
|
66
|
+
};
|
|
67
|
+
};
|
|
68
|
+
};
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
export declare const ShuttleContainer: import("react").ForwardRefExoticComponent<import("react").RefAttributes<unknown>>;
|
|
3
|
+
export declare const ShuttleWrapper: import("react").ForwardRefExoticComponent<import("react").RefAttributes<unknown>>;
|
|
4
|
+
export declare const ShuttleHeader: import("react").ForwardRefExoticComponent<import("react").RefAttributes<unknown>>;
|
|
5
|
+
export declare const ShuttleHeaderBreadcrumb: import("react").ForwardRefExoticComponent<import("react").RefAttributes<unknown>>;
|
|
6
|
+
export declare const ShuttleHeaderSearchToggle: import("react").ForwardRefExoticComponent<import("react").RefAttributes<unknown>>;
|
|
7
|
+
export declare const ShuttleList: import("react").ForwardRefExoticComponent<import("react").RefAttributes<unknown>>;
|
|
8
|
+
export declare const ShuttleListPanel: import("react").ForwardRefExoticComponent<import("react").RefAttributes<unknown>>;
|
|
9
|
+
export declare const Overflow: import("react").ForwardRefExoticComponent<import("react").RefAttributes<unknown>>;
|
|
10
|
+
export declare const EmptyMessage: import("react").ForwardRefExoticComponent<import("react").RefAttributes<unknown>>;
|
|
11
|
+
export declare const LoadingList: import("react").ForwardRefExoticComponent<import("react").RefAttributes<unknown>>;
|
|
12
|
+
export declare const ShuttleFooter: import("react").ForwardRefExoticComponent<import("react").RefAttributes<unknown>>;
|
|
13
|
+
export declare const ShuttleFooterActions: import("react").ForwardRefExoticComponent<import("react").RefAttributes<unknown>>;
|
|
14
|
+
export declare const ShuttleFooterCounter: import("react").ForwardRefExoticComponent<import("react").RefAttributes<unknown>>;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
declare function ShuttleBreadcrumb({ className, hierarchy, onNavigateTo }: {
|
|
2
|
+
className?: string | undefined;
|
|
3
|
+
hierarchy?: never[] | undefined;
|
|
4
|
+
onNavigateTo?: (() => null) | undefined;
|
|
5
|
+
}): JSX.Element;
|
|
6
|
+
export { ShuttleBreadcrumb };
|
|
7
|
+
export default ShuttleBreadcrumb;
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
declare function ShuttleListItem({ item, showIcons, showIcon, onSelect, isChecked, style, showActions, actions, showSortHandler, ...rest }: {
|
|
2
|
+
[x: string]: any;
|
|
3
|
+
item?: {} | undefined;
|
|
4
|
+
showIcons?: undefined;
|
|
5
|
+
showIcon?: boolean | undefined;
|
|
6
|
+
onSelect?: (() => null) | undefined;
|
|
7
|
+
isChecked?: boolean | undefined;
|
|
8
|
+
style?: undefined;
|
|
9
|
+
showActions?: boolean | undefined;
|
|
10
|
+
actions?: never[] | undefined;
|
|
11
|
+
showSortHandler?: boolean | undefined;
|
|
12
|
+
}): JSX.Element;
|
|
13
|
+
export { ShuttleListItem };
|
|
14
|
+
export default ShuttleListItem;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
declare function ShuttleSourceListItem({ item, onItemCheck, onMoveToTarget, onNavigateOnSourceTo, isChecked, showMoveButton, showDrillDownButton, index, ...rest }: {
|
|
2
|
+
[x: string]: any;
|
|
3
|
+
item?: {} | undefined;
|
|
4
|
+
onItemCheck?: (() => null) | undefined;
|
|
5
|
+
onMoveToTarget?: (() => null) | undefined;
|
|
6
|
+
onNavigateOnSourceTo?: (() => null) | undefined;
|
|
7
|
+
isChecked?: boolean | undefined;
|
|
8
|
+
showMoveButton?: boolean | undefined;
|
|
9
|
+
showDrillDownButton?: boolean | undefined;
|
|
10
|
+
index: any;
|
|
11
|
+
}): JSX.Element;
|
|
12
|
+
export { ShuttleSourceListItem };
|
|
13
|
+
export default ShuttleSourceListItem;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
declare function ShuttleTargetListItem({ item, onMoveToSource, onNavigateOnTargetTo, isRoot, showDeleteButton, showDrillDownButton, showActions, index, ...rest }: {
|
|
2
|
+
[x: string]: any;
|
|
3
|
+
item?: {} | undefined;
|
|
4
|
+
onMoveToSource?: (() => null) | undefined;
|
|
5
|
+
onNavigateOnTargetTo?: (() => null) | undefined;
|
|
6
|
+
isRoot?: boolean | undefined;
|
|
7
|
+
showDeleteButton?: boolean | undefined;
|
|
8
|
+
showDrillDownButton?: boolean | undefined;
|
|
9
|
+
showActions?: boolean | undefined;
|
|
10
|
+
index: any;
|
|
11
|
+
}): JSX.Element;
|
|
12
|
+
export { ShuttleTargetListItem };
|
|
13
|
+
export default ShuttleTargetListItem;
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { Component } from 'react';
|
|
2
|
+
declare class ShuttleSearchBox extends Component {
|
|
3
|
+
static defaultProps: {
|
|
4
|
+
filterOnKeyStroke: boolean;
|
|
5
|
+
onChange: () => null;
|
|
6
|
+
onFilter: () => null;
|
|
7
|
+
};
|
|
8
|
+
constructor(props: any);
|
|
9
|
+
static getDerivedStateFromProps(nextProps: any, { prevProps }: {
|
|
10
|
+
prevProps: any;
|
|
11
|
+
}): {
|
|
12
|
+
value: any;
|
|
13
|
+
prevProps: {
|
|
14
|
+
value: any;
|
|
15
|
+
};
|
|
16
|
+
} | null;
|
|
17
|
+
handleChange(e: any): void;
|
|
18
|
+
handleKeyPress(e: any): void;
|
|
19
|
+
render(): JSX.Element;
|
|
20
|
+
}
|
|
21
|
+
export { ShuttleSearchBox };
|
|
22
|
+
export default ShuttleSearchBox;
|
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
import PropTypes from 'prop-types';
|
|
2
|
+
declare function ShuttleSource({ items, checkedItems, // build Map() and memoize it for better performance
|
|
3
|
+
hierarchy, onMoveItem, onCheckItem, onMoveCheckedItems, onNavigateTo, onClearCheckedItems, emptyMessage, composeSourceItemProps, loading, onSearch, onSearchClose, onSearchOpen, sourceSortable, onSortEnd, sourceClearItemsText, searchPlaceholder, renderSourceCounter, onGetMoreItems, moreItemsLoading, hasNextPage, }: {
|
|
4
|
+
items?: never[] | undefined;
|
|
5
|
+
checkedItems?: never[] | undefined;
|
|
6
|
+
hierarchy?: never[] | undefined;
|
|
7
|
+
onMoveItem?: (() => void) | undefined;
|
|
8
|
+
onCheckItem?: (() => void) | undefined;
|
|
9
|
+
onMoveCheckedItems?: (() => void) | undefined;
|
|
10
|
+
onNavigateTo?: (() => void) | undefined;
|
|
11
|
+
onClearCheckedItems?: (() => void) | undefined;
|
|
12
|
+
emptyMessage?: string | undefined;
|
|
13
|
+
composeSourceItemProps?: (() => void) | undefined;
|
|
14
|
+
loading?: boolean | undefined;
|
|
15
|
+
onSearch?: (() => void) | undefined;
|
|
16
|
+
onSearchClose?: (() => void) | undefined;
|
|
17
|
+
onSearchOpen?: (() => void) | undefined;
|
|
18
|
+
sourceSortable?: boolean | undefined;
|
|
19
|
+
onSortEnd?: (() => void) | undefined;
|
|
20
|
+
sourceClearItemsText?: string | undefined;
|
|
21
|
+
searchPlaceholder: any;
|
|
22
|
+
renderSourceCounter?: ((amount: any) => string) | undefined;
|
|
23
|
+
onGetMoreItems?: (() => void) | undefined;
|
|
24
|
+
moreItemsLoading?: boolean | undefined;
|
|
25
|
+
hasNextPage?: boolean | undefined;
|
|
26
|
+
}): JSX.Element;
|
|
27
|
+
declare namespace ShuttleSource {
|
|
28
|
+
var propTypes: {
|
|
29
|
+
items: PropTypes.Requireable<(PropTypes.InferProps<{}> | null | undefined)[]>;
|
|
30
|
+
checkedItems: PropTypes.Requireable<(PropTypes.InferProps<{}> | null | undefined)[]>;
|
|
31
|
+
hierarchy: PropTypes.Requireable<(PropTypes.InferProps<{}> | null | undefined)[]>;
|
|
32
|
+
onMoveItem: PropTypes.Requireable<(...args: any[]) => any>;
|
|
33
|
+
onCheckItem: PropTypes.Requireable<(...args: any[]) => any>;
|
|
34
|
+
onMoveCheckedItems: PropTypes.Requireable<(...args: any[]) => any>;
|
|
35
|
+
onNavigateTo: PropTypes.Requireable<(...args: any[]) => any>;
|
|
36
|
+
onClearCheckedItems: PropTypes.Requireable<(...args: any[]) => any>;
|
|
37
|
+
emptyMessage: PropTypes.Requireable<string>;
|
|
38
|
+
composeSourceItemProps: PropTypes.Requireable<(...args: any[]) => any>;
|
|
39
|
+
loading: PropTypes.Requireable<boolean>;
|
|
40
|
+
onSearch: PropTypes.Requireable<(...args: any[]) => any>;
|
|
41
|
+
onSearchClose: PropTypes.Requireable<(...args: any[]) => any>;
|
|
42
|
+
onSearchOpen: PropTypes.Requireable<(...args: any[]) => any>;
|
|
43
|
+
sourceSortable: PropTypes.Requireable<boolean>;
|
|
44
|
+
onSortEnd: PropTypes.Requireable<(...args: any[]) => any>;
|
|
45
|
+
sourceClearItemsText: PropTypes.Requireable<string>;
|
|
46
|
+
searchPlaceholder: PropTypes.Requireable<string>;
|
|
47
|
+
renderSourceCounter: PropTypes.Requireable<(...args: any[]) => any>;
|
|
48
|
+
onGetMoreItems: PropTypes.Requireable<(...args: any[]) => any>;
|
|
49
|
+
moreItemsLoading: PropTypes.Requireable<boolean>;
|
|
50
|
+
hasNextPage: PropTypes.Requireable<boolean>;
|
|
51
|
+
};
|
|
52
|
+
}
|
|
53
|
+
export { ShuttleSource };
|
|
54
|
+
export default ShuttleSource;
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
declare function ShuttleTarget({ items, hierarchy, onNavigateTo, onMoveItem, onClearMovedItems, emptyMessage, composeTargetItemProps, targetSortable, onSortEnd, targetClearItemsText, renderTargetCounter, loading, }: {
|
|
2
|
+
items?: never[] | undefined;
|
|
3
|
+
hierarchy?: never[] | undefined;
|
|
4
|
+
onNavigateTo?: (() => void) | undefined;
|
|
5
|
+
onMoveItem?: (() => void) | undefined;
|
|
6
|
+
onClearMovedItems?: (() => void) | undefined;
|
|
7
|
+
emptyMessage?: string | undefined;
|
|
8
|
+
composeTargetItemProps?: (() => {}) | undefined;
|
|
9
|
+
targetSortable?: boolean | undefined;
|
|
10
|
+
onSortEnd?: (() => void) | undefined;
|
|
11
|
+
targetClearItemsText?: string | undefined;
|
|
12
|
+
renderTargetCounter?: ((amount: any) => string) | undefined;
|
|
13
|
+
loading?: boolean | undefined;
|
|
14
|
+
}): JSX.Element;
|
|
15
|
+
export { ShuttleTarget };
|
|
16
|
+
export default ShuttleTarget;
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
declare function VirtualizedList({ items, itemRenderer, searching, target, innerRef, children, hasNextPage, getMoreItems, }: {
|
|
2
|
+
items: any;
|
|
3
|
+
itemRenderer: any;
|
|
4
|
+
searching: any;
|
|
5
|
+
target?: boolean | undefined;
|
|
6
|
+
innerRef: any;
|
|
7
|
+
children: any;
|
|
8
|
+
hasNextPage?: boolean | undefined;
|
|
9
|
+
getMoreItems?: (() => void) | undefined;
|
|
10
|
+
}): JSX.Element;
|
|
11
|
+
export { VirtualizedList };
|
|
12
|
+
export default VirtualizedList;
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
export declare const getHierarchyTypeName: (dest: any) => "hierarchy" | "hierarchyDest";
|
|
2
|
+
export declare const checkHasChildren: (list: any, currentItem: any) => any;
|
|
3
|
+
export declare const getActiveIdFromHierarchy: (hierarchy?: never[]) => never;
|
|
4
|
+
export declare const filterItemsByHierarchy: (list: any, hierarchyId: any, parentField?: string) => any;
|
|
5
|
+
export declare const getItemsById: (ids: any, list: any) => any;
|
|
6
|
+
export declare const toggleInObject: (obj: any, key: any, value: any) => any;
|
|
7
|
+
export declare const isMovable: (item: any) => any;
|
|
8
|
+
export declare const pipe: (actions: any) => (initState: any, props: any) => any;
|
|
9
|
+
export declare const moveItems: ({ oldIndex, newIndex }: {
|
|
10
|
+
oldIndex: any;
|
|
11
|
+
newIndex: any;
|
|
12
|
+
}) => (items: any) => any;
|
|
13
|
+
export declare const prepareItems: (items: any) => unknown;
|
|
14
|
+
export declare function getChildrenFromParent(parentId: any, options: any): (items: any) => any;
|
|
15
|
+
export declare function filterMovedItems(movedItems: any, options: any): (items: any) => any;
|
|
16
|
+
export declare function filterBySearch(term: any, searching: any): (items: any) => any;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default, utils, DSShuttleWithSchema, DSShuttle } from './DSShuttle';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1,116 @@
|
|
|
1
|
+
export const eventsOptions: ({
|
|
2
|
+
parent: null;
|
|
3
|
+
id: string;
|
|
4
|
+
name: string;
|
|
5
|
+
lastName: string;
|
|
6
|
+
firstName: string;
|
|
7
|
+
fullName: string;
|
|
8
|
+
email: string;
|
|
9
|
+
phone: string;
|
|
10
|
+
cellPhone: string;
|
|
11
|
+
fax: string;
|
|
12
|
+
userId: string;
|
|
13
|
+
isMoveableContainer?: undefined;
|
|
14
|
+
} | {
|
|
15
|
+
parent: null;
|
|
16
|
+
id: string;
|
|
17
|
+
name: string;
|
|
18
|
+
lastName: string;
|
|
19
|
+
firstName: string;
|
|
20
|
+
isMoveableContainer: boolean;
|
|
21
|
+
fullName: string;
|
|
22
|
+
email: string;
|
|
23
|
+
phone: string;
|
|
24
|
+
cellPhone: string;
|
|
25
|
+
fax: string;
|
|
26
|
+
userId: string;
|
|
27
|
+
} | {
|
|
28
|
+
parent: string;
|
|
29
|
+
id: string;
|
|
30
|
+
name: string;
|
|
31
|
+
lastName: string;
|
|
32
|
+
firstName: string;
|
|
33
|
+
fullName: string;
|
|
34
|
+
email: string;
|
|
35
|
+
phone: string;
|
|
36
|
+
cellPhone: string;
|
|
37
|
+
fax: string;
|
|
38
|
+
userId: string;
|
|
39
|
+
isMoveableContainer?: undefined;
|
|
40
|
+
})[];
|
|
41
|
+
export const shortOptions: ({
|
|
42
|
+
parent: null;
|
|
43
|
+
id: string;
|
|
44
|
+
name: string;
|
|
45
|
+
lastName: string;
|
|
46
|
+
firstName: string;
|
|
47
|
+
fullName: string;
|
|
48
|
+
email: string;
|
|
49
|
+
phone: string;
|
|
50
|
+
cellPhone: string;
|
|
51
|
+
fax: string;
|
|
52
|
+
userId: string;
|
|
53
|
+
} | {
|
|
54
|
+
parent: string;
|
|
55
|
+
id: string;
|
|
56
|
+
name: string;
|
|
57
|
+
lastName: string;
|
|
58
|
+
firstName: string;
|
|
59
|
+
fullName: string;
|
|
60
|
+
email: string;
|
|
61
|
+
phone: string;
|
|
62
|
+
cellPhone: string;
|
|
63
|
+
fax: string;
|
|
64
|
+
userId: string;
|
|
65
|
+
})[];
|
|
66
|
+
export const options: {
|
|
67
|
+
parent: null;
|
|
68
|
+
id: string;
|
|
69
|
+
name: string;
|
|
70
|
+
lastName: string;
|
|
71
|
+
firstName: string;
|
|
72
|
+
fullName: string;
|
|
73
|
+
email: string;
|
|
74
|
+
phone: string;
|
|
75
|
+
cellPhone: string;
|
|
76
|
+
fax: string;
|
|
77
|
+
userId: string;
|
|
78
|
+
}[];
|
|
79
|
+
export const newLoadedOptions: {
|
|
80
|
+
parent: null;
|
|
81
|
+
id: string;
|
|
82
|
+
name: string;
|
|
83
|
+
lastName: string;
|
|
84
|
+
firstName: string;
|
|
85
|
+
fullName: string;
|
|
86
|
+
email: string;
|
|
87
|
+
phone: string;
|
|
88
|
+
cellPhone: string;
|
|
89
|
+
fax: string;
|
|
90
|
+
userId: string;
|
|
91
|
+
}[];
|
|
92
|
+
export const options2: ({
|
|
93
|
+
parent: null;
|
|
94
|
+
id: string;
|
|
95
|
+
name: string;
|
|
96
|
+
lastName: string;
|
|
97
|
+
firstName: string;
|
|
98
|
+
fullName: string;
|
|
99
|
+
email: string;
|
|
100
|
+
phone: string;
|
|
101
|
+
cellPhone: string;
|
|
102
|
+
fax: string;
|
|
103
|
+
userId: string;
|
|
104
|
+
} | {
|
|
105
|
+
parent: string;
|
|
106
|
+
id: string;
|
|
107
|
+
name: string;
|
|
108
|
+
lastName: string;
|
|
109
|
+
firstName: string;
|
|
110
|
+
fullName: string;
|
|
111
|
+
email: string;
|
|
112
|
+
phone: string;
|
|
113
|
+
cellPhone: string;
|
|
114
|
+
fax: string;
|
|
115
|
+
userId: string;
|
|
116
|
+
})[];
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@elliemae/ds-shuttle",
|
|
3
|
-
"version": "3.13.1-rc.
|
|
3
|
+
"version": "3.13.1-rc.2",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"description": "ICE MT - Dimsum - Shuttle",
|
|
6
6
|
"files": [
|
|
@@ -163,16 +163,16 @@
|
|
|
163
163
|
"react-window": "~1.8.6",
|
|
164
164
|
"react-window-infinite-loader": "~1.0.7",
|
|
165
165
|
"treetabular": "~3.6.0",
|
|
166
|
-
"@elliemae/ds-breadcrumb": "3.13.1-rc.
|
|
167
|
-
"@elliemae/ds-button": "3.13.1-rc.
|
|
168
|
-
"@elliemae/ds-circular-progress-indicator": "3.13.1-rc.
|
|
169
|
-
"@elliemae/ds-classnames": "3.13.1-rc.
|
|
170
|
-
"@elliemae/ds-form": "3.13.1-rc.
|
|
171
|
-
"@elliemae/ds-icons": "3.13.1-rc.
|
|
172
|
-
"@elliemae/ds-
|
|
173
|
-
"@elliemae/ds-
|
|
174
|
-
"@elliemae/ds-
|
|
175
|
-
"@elliemae/ds-utilities": "3.13.1-rc.
|
|
166
|
+
"@elliemae/ds-breadcrumb": "3.13.1-rc.2",
|
|
167
|
+
"@elliemae/ds-button": "3.13.1-rc.2",
|
|
168
|
+
"@elliemae/ds-circular-progress-indicator": "3.13.1-rc.2",
|
|
169
|
+
"@elliemae/ds-classnames": "3.13.1-rc.2",
|
|
170
|
+
"@elliemae/ds-form": "3.13.1-rc.2",
|
|
171
|
+
"@elliemae/ds-icons": "3.13.1-rc.2",
|
|
172
|
+
"@elliemae/ds-system": "3.13.1-rc.2",
|
|
173
|
+
"@elliemae/ds-truncated-tooltip-text": "3.13.1-rc.2",
|
|
174
|
+
"@elliemae/ds-indeterminate-progress-indicator": "3.13.1-rc.2",
|
|
175
|
+
"@elliemae/ds-utilities": "3.13.1-rc.2"
|
|
176
176
|
},
|
|
177
177
|
"devDependencies": {
|
|
178
178
|
"@testing-library/jest-dom": "~5.16.4",
|