@elliemae/ds-shuttle 3.17.0-next.9 → 3.17.0
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/DSShuttle.d.ts +1 -2
- package/dist/types/ShuttleContainer.d.ts +1 -2
- package/dist/types/ShuttleImpl.d.ts +1 -2
- package/dist/types/ShuttleRenderer.d.ts +1 -2
- package/dist/types/components/LoadingIndicator.d.ts +1 -2
- package/dist/types/components/OverflowList.d.ts +1 -2
- package/dist/types/components/ShuttleBreadcrumb.d.ts +1 -2
- package/dist/types/components/ShuttleInfiniteScrollIndicator.d.ts +1 -2
- package/dist/types/components/ShuttleListItem/ActionButtons.d.ts +3 -4
- package/dist/types/components/ShuttleListItem/ShuttleListItem.d.ts +1 -2
- package/dist/types/components/ShuttleListItem/ShuttleSourceListItem.d.ts +1 -2
- package/dist/types/components/ShuttleListItem/ShuttleTargetListItem.d.ts +1 -2
- package/dist/types/components/ShuttleListPanel.d.ts +1 -2
- package/dist/types/components/ShuttleSearchBox.d.ts +1 -1
- package/dist/types/components/ShuttleSource.d.ts +1 -2
- package/dist/types/components/ShuttleTarget.d.ts +1 -2
- package/dist/types/components/VirtualizedList.d.ts +1 -2
- package/dist/types/components/VirtualizedSortableList.d.ts +1 -2
- package/dist/types/withProviders.d.ts +1 -2
- package/package.json +12 -12
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
/// <reference types="react" />
|
|
2
1
|
import utils from './utils.js';
|
|
3
2
|
declare const DSShuttle: {
|
|
4
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, }: {
|
|
@@ -38,7 +37,7 @@ declare const DSShuttle: {
|
|
|
38
37
|
onGetMoreItems?: (() => null) | undefined;
|
|
39
38
|
hasNextPage?: boolean | undefined;
|
|
40
39
|
moreItemsLoading: any;
|
|
41
|
-
}): JSX.Element;
|
|
40
|
+
}): import("react/jsx-runtime.js").JSX.Element;
|
|
42
41
|
propTypes: {
|
|
43
42
|
/** inject props to shuttle wrapper */
|
|
44
43
|
containerProps: import("@elliemae/ds-props-helpers/dist/types/propTypes/types.js").ReactDescT;
|
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
/// <reference types="react" />
|
|
2
1
|
declare const 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 }: {
|
|
3
2
|
[x: string]: any;
|
|
4
3
|
containerProps: any;
|
|
@@ -33,6 +32,6 @@ declare const ShuttleRenderer: ({ containerProps, onNavigateOnTargetTo, onNaviga
|
|
|
33
32
|
onGetMoreItems?: (() => void) | undefined;
|
|
34
33
|
moreItemsLoading?: boolean | undefined;
|
|
35
34
|
hasNextPage?: boolean | undefined;
|
|
36
|
-
}) => JSX.Element;
|
|
35
|
+
}) => import("react/jsx-runtime.js").JSX.Element;
|
|
37
36
|
export { ShuttleRenderer };
|
|
38
37
|
export default ShuttleRenderer;
|
|
@@ -1,8 +1,7 @@
|
|
|
1
|
-
/// <reference types="react" />
|
|
2
1
|
declare function OverflowList({ className, activeHierarchy, children }: {
|
|
3
2
|
className?: string | undefined;
|
|
4
3
|
activeHierarchy?: string | undefined;
|
|
5
4
|
children: any;
|
|
6
|
-
}): JSX.Element[];
|
|
5
|
+
}): import("react/jsx-runtime.js").JSX.Element[];
|
|
7
6
|
export { OverflowList };
|
|
8
7
|
export default OverflowList;
|
|
@@ -1,8 +1,7 @@
|
|
|
1
|
-
/// <reference types="react" />
|
|
2
1
|
declare const ShuttleBreadcrumb: ({ className, hierarchy, onNavigateTo }: {
|
|
3
2
|
className?: string | undefined;
|
|
4
3
|
hierarchy?: never[] | undefined;
|
|
5
4
|
onNavigateTo?: (() => null) | undefined;
|
|
6
|
-
}) => JSX.Element;
|
|
5
|
+
}) => import("react/jsx-runtime.js").JSX.Element;
|
|
7
6
|
export { ShuttleBreadcrumb };
|
|
8
7
|
export default ShuttleBreadcrumb;
|
|
@@ -1,6 +1,5 @@
|
|
|
1
|
-
/// <reference types="react" />
|
|
2
1
|
declare const ShuttleInfiniteScrollIndicator: ({ isOpen }: {
|
|
3
2
|
isOpen: any;
|
|
4
|
-
}) => JSX.Element;
|
|
3
|
+
}) => import("react/jsx-runtime").JSX.Element;
|
|
5
4
|
export { ShuttleInfiniteScrollIndicator };
|
|
6
5
|
export default ShuttleInfiniteScrollIndicator;
|
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
|
|
2
|
-
export declare const
|
|
3
|
-
export declare const
|
|
4
|
-
export declare const DrillDownButton: (props: any) => JSX.Element;
|
|
1
|
+
export declare const DeleteButton: (props: any) => import("react/jsx-runtime").JSX.Element;
|
|
2
|
+
export declare const MoveButton: (props: any) => import("react/jsx-runtime").JSX.Element;
|
|
3
|
+
export declare const DrillDownButton: (props: any) => import("react/jsx-runtime").JSX.Element;
|
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
/// <reference types="react" />
|
|
2
1
|
declare const ShuttleListItem: ({ item, showIcons, showIcon, onSelect, isChecked, style, showActions, actions, showSortHandler, ...rest }: {
|
|
3
2
|
[x: string]: any;
|
|
4
3
|
item?: {} | undefined;
|
|
@@ -10,6 +9,6 @@ declare const ShuttleListItem: ({ item, showIcons, showIcon, onSelect, isChecked
|
|
|
10
9
|
showActions?: boolean | undefined;
|
|
11
10
|
actions?: never[] | undefined;
|
|
12
11
|
showSortHandler?: boolean | undefined;
|
|
13
|
-
}) => JSX.Element;
|
|
12
|
+
}) => import("react/jsx-runtime.js").JSX.Element;
|
|
14
13
|
export { ShuttleListItem };
|
|
15
14
|
export default ShuttleListItem;
|
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
/// <reference types="react" />
|
|
2
1
|
declare const ShuttleSourceListItem: ({ item, onItemCheck, onMoveToTarget, onNavigateOnSourceTo, isChecked, showMoveButton, showDrillDownButton, index, ...rest }: {
|
|
3
2
|
[x: string]: any;
|
|
4
3
|
item?: {} | undefined;
|
|
@@ -9,6 +8,6 @@ declare const ShuttleSourceListItem: ({ item, onItemCheck, onMoveToTarget, onNav
|
|
|
9
8
|
showMoveButton?: boolean | undefined;
|
|
10
9
|
showDrillDownButton?: boolean | undefined;
|
|
11
10
|
index: any;
|
|
12
|
-
}) => JSX.Element;
|
|
11
|
+
}) => import("react/jsx-runtime.js").JSX.Element;
|
|
13
12
|
export { ShuttleSourceListItem };
|
|
14
13
|
export default ShuttleSourceListItem;
|
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
/// <reference types="react" />
|
|
2
1
|
declare const ShuttleTargetListItem: ({ item, onMoveToSource, onNavigateOnTargetTo, isRoot, showDeleteButton, showDrillDownButton, showActions, index, ...rest }: {
|
|
3
2
|
[x: string]: any;
|
|
4
3
|
item?: {} | undefined;
|
|
@@ -9,6 +8,6 @@ declare const ShuttleTargetListItem: ({ item, onMoveToSource, onNavigateOnTarget
|
|
|
9
8
|
showDrillDownButton?: boolean | undefined;
|
|
10
9
|
showActions?: boolean | undefined;
|
|
11
10
|
index: any;
|
|
12
|
-
}) => JSX.Element;
|
|
11
|
+
}) => import("react/jsx-runtime.js").JSX.Element;
|
|
13
12
|
export { ShuttleTargetListItem };
|
|
14
13
|
export default ShuttleTargetListItem;
|
|
@@ -1,8 +1,7 @@
|
|
|
1
|
-
/// <reference types="react" />
|
|
2
1
|
declare const ShuttleListPanel: ({ onClick, open, children }: {
|
|
3
2
|
onClick?: (() => null) | undefined;
|
|
4
3
|
open?: boolean | undefined;
|
|
5
4
|
children: any;
|
|
6
|
-
}) => JSX.Element;
|
|
5
|
+
}) => import("react/jsx-runtime.js").JSX.Element;
|
|
7
6
|
export { ShuttleListPanel };
|
|
8
7
|
export default ShuttleListPanel;
|
|
@@ -16,7 +16,7 @@ declare class ShuttleSearchBox extends Component {
|
|
|
16
16
|
} | null;
|
|
17
17
|
handleChange(e: any): void;
|
|
18
18
|
handleKeyPress(e: any): void;
|
|
19
|
-
render(): JSX.Element;
|
|
19
|
+
render(): import("react/jsx-runtime").JSX.Element;
|
|
20
20
|
}
|
|
21
21
|
export { ShuttleSearchBox };
|
|
22
22
|
export default ShuttleSearchBox;
|
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
/// <reference types="react" />
|
|
2
1
|
import PropTypes from 'prop-types';
|
|
3
2
|
declare const ShuttleSource: {
|
|
4
3
|
({ items, checkedItems, hierarchy, onMoveItem, onCheckItem, onMoveCheckedItems, onNavigateTo, onClearCheckedItems, emptyMessage, composeSourceItemProps, loading, onSearch, onSearchClose, onSearchOpen, sourceSortable, onSortEnd, sourceClearItemsText, searchPlaceholder, renderSourceCounter, onGetMoreItems, moreItemsLoading, hasNextPage, }: {
|
|
@@ -24,7 +23,7 @@ declare const ShuttleSource: {
|
|
|
24
23
|
onGetMoreItems?: (() => void) | undefined;
|
|
25
24
|
moreItemsLoading?: boolean | undefined;
|
|
26
25
|
hasNextPage?: boolean | undefined;
|
|
27
|
-
}): JSX.Element;
|
|
26
|
+
}): import("react/jsx-runtime.js").JSX.Element;
|
|
28
27
|
propTypes: {
|
|
29
28
|
items: PropTypes.Requireable<(PropTypes.InferProps<{}> | null | undefined)[]>;
|
|
30
29
|
checkedItems: PropTypes.Requireable<(PropTypes.InferProps<{}> | null | undefined)[]>;
|
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
/// <reference types="react" />
|
|
2
1
|
declare const ShuttleTarget: ({ items, hierarchy, onNavigateTo, onMoveItem, onClearMovedItems, emptyMessage, composeTargetItemProps, targetSortable, onSortEnd, targetClearItemsText, renderTargetCounter, loading, }: {
|
|
3
2
|
items?: never[] | undefined;
|
|
4
3
|
hierarchy?: never[] | undefined;
|
|
@@ -12,6 +11,6 @@ declare const ShuttleTarget: ({ items, hierarchy, onNavigateTo, onMoveItem, onCl
|
|
|
12
11
|
targetClearItemsText?: string | undefined;
|
|
13
12
|
renderTargetCounter?: ((amount: any) => string) | undefined;
|
|
14
13
|
loading?: boolean | undefined;
|
|
15
|
-
}) => JSX.Element;
|
|
14
|
+
}) => import("react/jsx-runtime.js").JSX.Element;
|
|
16
15
|
export { ShuttleTarget };
|
|
17
16
|
export default ShuttleTarget;
|
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
/// <reference types="react" />
|
|
2
1
|
declare const VirtualizedList: ({ items, itemRenderer, searching, target, innerRef, children, hasNextPage, getMoreItems, }: {
|
|
3
2
|
items: any;
|
|
4
3
|
itemRenderer: any;
|
|
@@ -8,6 +7,6 @@ declare const VirtualizedList: ({ items, itemRenderer, searching, target, innerR
|
|
|
8
7
|
children: any;
|
|
9
8
|
hasNextPage?: boolean | undefined;
|
|
10
9
|
getMoreItems?: (() => void) | undefined;
|
|
11
|
-
}) => JSX.Element;
|
|
10
|
+
}) => import("react/jsx-runtime.js").JSX.Element;
|
|
12
11
|
export { VirtualizedList };
|
|
13
12
|
export default VirtualizedList;
|
|
@@ -1,7 +1,6 @@
|
|
|
1
|
-
/// <reference types="react" />
|
|
2
1
|
declare const VirtualizedSortableList: ({ items, ...otherProps }: {
|
|
3
2
|
[x: string]: any;
|
|
4
3
|
items: any;
|
|
5
|
-
}) => JSX.Element;
|
|
4
|
+
}) => import("react/jsx-runtime.js").JSX.Element;
|
|
6
5
|
export { VirtualizedSortableList };
|
|
7
6
|
export default VirtualizedSortableList;
|
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
|
|
2
|
-
declare function withProviders(Component: any): (props: any) => JSX.Element;
|
|
1
|
+
declare function withProviders(Component: any): (props: any) => import("react/jsx-runtime.js").JSX.Element;
|
|
3
2
|
export { withProviders };
|
|
4
3
|
export default withProviders;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@elliemae/ds-shuttle",
|
|
3
|
-
"version": "3.17.0
|
|
3
|
+
"version": "3.17.0",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"description": "ICE MT - Dimsum - Shuttle",
|
|
6
6
|
"files": [
|
|
@@ -163,17 +163,17 @@
|
|
|
163
163
|
"react-window": "~1.8.8",
|
|
164
164
|
"react-window-infinite-loader": "~1.0.8",
|
|
165
165
|
"treetabular": "~3.6.0",
|
|
166
|
-
"@elliemae/ds-
|
|
167
|
-
"@elliemae/ds-
|
|
168
|
-
"@elliemae/ds-
|
|
169
|
-
"@elliemae/ds-
|
|
170
|
-
"@elliemae/ds-
|
|
171
|
-
"@elliemae/ds-indeterminate-progress-indicator": "3.17.0
|
|
172
|
-
"@elliemae/ds-
|
|
173
|
-
"@elliemae/ds-
|
|
174
|
-
"@elliemae/ds-
|
|
175
|
-
"@elliemae/ds-
|
|
176
|
-
"@elliemae/ds-
|
|
166
|
+
"@elliemae/ds-breadcrumb": "3.17.0",
|
|
167
|
+
"@elliemae/ds-button": "3.17.0",
|
|
168
|
+
"@elliemae/ds-circular-progress-indicator": "3.17.0",
|
|
169
|
+
"@elliemae/ds-form": "3.17.0",
|
|
170
|
+
"@elliemae/ds-classnames": "3.17.0",
|
|
171
|
+
"@elliemae/ds-indeterminate-progress-indicator": "3.17.0",
|
|
172
|
+
"@elliemae/ds-icons": "3.17.0",
|
|
173
|
+
"@elliemae/ds-props-helpers": "3.17.0",
|
|
174
|
+
"@elliemae/ds-system": "3.17.0",
|
|
175
|
+
"@elliemae/ds-truncated-tooltip-text": "3.17.0",
|
|
176
|
+
"@elliemae/ds-utilities": "3.17.0"
|
|
177
177
|
},
|
|
178
178
|
"devDependencies": {
|
|
179
179
|
"@testing-library/jest-dom": "~5.16.5",
|