@elliemae/ds-shuttle-v2 3.52.1 → 3.53.0-beta.10
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/itemMovementHelpers.d.ts +1 -1
- package/dist/types/config/useAutoCalculated/index.d.ts +0 -1
- package/dist/types/config/useAutoCalculated/useShuttleVirtualized.d.ts +0 -1
- package/dist/types/config/useStore/useStore.d.ts +2 -3
- package/dist/types/parts/Dnd/DndHandle.d.ts +2 -2
- package/dist/types/parts/Item/ItemActions/useActionsHandlers.d.ts +2 -2
- package/dist/types/parts/Item/ItemMiddleSection.d.ts +1 -1
- package/dist/types/parts/Item/ItemOverlay.d.ts +1 -1
- package/package.json +24 -23
|
@@ -2,6 +2,6 @@ import React from 'react';
|
|
|
2
2
|
import { type DSButtonT } from '@elliemae/ds-button-v2';
|
|
3
3
|
import { type DSShuttleV2T } from '../react-desc-prop-types.js';
|
|
4
4
|
export declare const useHandleMoveSelection: ({ isDestinationPanel }: DSShuttleV2T.PanelMetaInfo) => {
|
|
5
|
-
moveSelection: (event: Parameters<Required<DSButtonT.Props>[
|
|
5
|
+
moveSelection: (event: Parameters<Required<DSButtonT.Props>["onClick"]>[0]) => void;
|
|
6
6
|
};
|
|
7
7
|
export declare const useHandleMoveItem: ({ datum, datumInternalMeta, isDestinationPanel }: DSShuttleV2T.ItemMeta) => (event: React.MouseEvent<HTMLButtonElement> | React.KeyboardEvent<HTMLButtonElement>) => void;
|
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
/// <reference types="react" />
|
|
2
1
|
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, }: {
|
|
@@ -128,7 +127,7 @@ export declare const PropsProvider: ({ createStore, children, }: {
|
|
|
128
127
|
children: import("react").ReactNode;
|
|
129
128
|
}) => import("react").FunctionComponentElement<import("react").ProviderProps<ZustandT.ZustandStore<ZustandT.InternalStore<DSShuttleV2T.InternalAtoms, DSShuttleV2T.Selectors, DSShuttleV2T.Reducers>> | undefined>>, useInternalStore: {
|
|
130
129
|
(): ZustandT.InternalStore<DSShuttleV2T.InternalAtoms, DSShuttleV2T.Selectors, DSShuttleV2T.Reducers>;
|
|
131
|
-
<
|
|
130
|
+
<U>(selector: (state: ZustandT.InternalStore<DSShuttleV2T.InternalAtoms, DSShuttleV2T.Selectors, DSShuttleV2T.Reducers>) => U, equalityFn?: ((a: U, b: U) => boolean) | undefined): U;
|
|
132
131
|
};
|
|
133
132
|
export declare const config: {
|
|
134
133
|
defaultProps: DSShuttleV2T.InternalProps;
|
|
@@ -296,6 +295,6 @@ export declare const config: {
|
|
|
296
295
|
}) => import("react").FunctionComponentElement<import("react").ProviderProps<ZustandT.ZustandStore<ZustandT.InternalStore<DSShuttleV2T.InternalAtoms, DSShuttleV2T.Selectors, DSShuttleV2T.Reducers>> | undefined>>;
|
|
297
296
|
useInternalStore: {
|
|
298
297
|
(): ZustandT.InternalStore<DSShuttleV2T.InternalAtoms, DSShuttleV2T.Selectors, DSShuttleV2T.Reducers>;
|
|
299
|
-
<
|
|
298
|
+
<U>(selector: (state: ZustandT.InternalStore<DSShuttleV2T.InternalAtoms, DSShuttleV2T.Selectors, DSShuttleV2T.Reducers>) => U, equalityFn?: ((a: U, b: U) => boolean) | undefined): U;
|
|
300
299
|
};
|
|
301
300
|
};
|
|
@@ -2,8 +2,8 @@ import React from 'react';
|
|
|
2
2
|
import type { useSortable } from '@elliemae/ds-drag-and-drop';
|
|
3
3
|
export declare const StyledGripperButtonOrOverlay: import("styled-components").StyledComponent<"div", import("@elliemae/ds-system").Theme, {
|
|
4
4
|
isActive: boolean;
|
|
5
|
-
isDragOverlay?: boolean
|
|
6
|
-
disabled?: boolean
|
|
5
|
+
isDragOverlay?: boolean;
|
|
6
|
+
disabled?: boolean;
|
|
7
7
|
} & import("@elliemae/ds-system").OwnerInterface & import("@elliemae/ds-system").InnerRefInterface<"div">, never>;
|
|
8
8
|
export declare const DragHandle: React.ComponentType<{
|
|
9
9
|
id: string;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
2
|
import { type DSShuttleV2T } from '../../../react-desc-prop-types.js';
|
|
3
3
|
export declare const useActionsHandlers: (itemMeta: DSShuttleV2T.ItemMeta) => {
|
|
4
|
-
handleClickDrilldown: (e: React.
|
|
5
|
-
handleClickSingleMove: (e: React.
|
|
4
|
+
handleClickDrilldown: (e: React.MouseEvent<HTMLButtonElement> | React.KeyboardEvent<HTMLButtonElement>) => void;
|
|
5
|
+
handleClickSingleMove: (e: React.MouseEvent<HTMLButtonElement> | React.KeyboardEvent<HTMLButtonElement>) => void;
|
|
6
6
|
handleKeyDownSelectionBubbleUp: React.KeyboardEventHandler<HTMLButtonElement>;
|
|
7
7
|
};
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
2
|
import { type DSShuttleV2T } from '../../react-desc-prop-types.js';
|
|
3
3
|
export declare const ItemMiddleSection: React.MemoExoticComponent<(props: DSShuttleV2T.ItemMeta & {
|
|
4
|
-
tooltipHelpers?: DSShuttleV2T.ComponentProps[
|
|
4
|
+
tooltipHelpers?: DSShuttleV2T.ComponentProps["tooltipHelpers"];
|
|
5
5
|
}) => import("react/jsx-runtime.js").JSX.Element>;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
2
|
import { type DSShuttleV2T } from '../../react-desc-prop-types.js';
|
|
3
3
|
export declare const ItemOverlay: React.MemoExoticComponent<(itemMeta: DSShuttleV2T.ItemMeta & {
|
|
4
|
-
tooltipHelpers?: DSShuttleV2T.ComponentProps[
|
|
4
|
+
tooltipHelpers?: DSShuttleV2T.ComponentProps["tooltipHelpers"];
|
|
5
5
|
}) => import("react/jsx-runtime.js").JSX.Element>;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@elliemae/ds-shuttle-v2",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.53.0-beta.10",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"description": "ICE MT - Dimsum - Shuttle v2",
|
|
6
6
|
"files": [
|
|
@@ -38,33 +38,34 @@
|
|
|
38
38
|
"dependencies": {
|
|
39
39
|
"fast-deep-equal": "~3.1.3",
|
|
40
40
|
"uid": "~2.0.1",
|
|
41
|
-
"@elliemae/ds-button-v2": "3.
|
|
42
|
-
"@elliemae/ds-
|
|
43
|
-
"@elliemae/ds-
|
|
44
|
-
"@elliemae/ds-fast-list": "3.
|
|
45
|
-
"@elliemae/ds-form-
|
|
46
|
-
"@elliemae/ds-
|
|
47
|
-
"@elliemae/ds-grid": "3.
|
|
48
|
-
"@elliemae/ds-hooks-
|
|
49
|
-
"@elliemae/ds-hooks-
|
|
50
|
-
"@elliemae/ds-hooks-on-blur-out": "3.
|
|
51
|
-
"@elliemae/ds-
|
|
52
|
-
"@elliemae/ds-
|
|
53
|
-
"@elliemae/ds-
|
|
54
|
-
"@elliemae/ds-
|
|
55
|
-
"@elliemae/ds-
|
|
56
|
-
"@elliemae/ds-
|
|
57
|
-
"@elliemae/ds-
|
|
58
|
-
"@elliemae/ds-
|
|
41
|
+
"@elliemae/ds-button-v2": "3.53.0-beta.10",
|
|
42
|
+
"@elliemae/ds-drag-and-drop": "3.53.0-beta.10",
|
|
43
|
+
"@elliemae/ds-form-checkbox": "3.53.0-beta.10",
|
|
44
|
+
"@elliemae/ds-fast-list": "3.53.0-beta.10",
|
|
45
|
+
"@elliemae/ds-form-input-text": "3.53.0-beta.10",
|
|
46
|
+
"@elliemae/ds-circular-progress-indicator": "3.53.0-beta.10",
|
|
47
|
+
"@elliemae/ds-grid": "3.53.0-beta.10",
|
|
48
|
+
"@elliemae/ds-hooks-headless-tooltip": "3.53.0-beta.10",
|
|
49
|
+
"@elliemae/ds-hooks-fontsize-detector": "3.53.0-beta.10",
|
|
50
|
+
"@elliemae/ds-hooks-on-blur-out": "3.53.0-beta.10",
|
|
51
|
+
"@elliemae/ds-system": "3.53.0-beta.10",
|
|
52
|
+
"@elliemae/ds-props-helpers": "3.53.0-beta.10",
|
|
53
|
+
"@elliemae/ds-popperjs": "3.53.0-beta.10",
|
|
54
|
+
"@elliemae/ds-icons": "3.53.0-beta.10",
|
|
55
|
+
"@elliemae/ds-typescript-helpers": "3.53.0-beta.10",
|
|
56
|
+
"@elliemae/ds-indeterminate-progress-indicator": "3.53.0-beta.10",
|
|
57
|
+
"@elliemae/ds-zustand-helpers": "3.53.0-beta.10",
|
|
58
|
+
"@elliemae/ds-typography": "3.53.0-beta.10"
|
|
59
59
|
},
|
|
60
60
|
"devDependencies": {
|
|
61
|
-
"@elliemae/pui-cli": "9.0.0-next.
|
|
61
|
+
"@elliemae/pui-cli": "9.0.0-next.65",
|
|
62
62
|
"jest": "~29.7.0",
|
|
63
63
|
"lodash-es": "^4.17.21",
|
|
64
64
|
"styled-components": "~5.3.9",
|
|
65
|
-
"@elliemae/ds-
|
|
66
|
-
"@elliemae/ds-
|
|
67
|
-
"@elliemae/ds-
|
|
65
|
+
"@elliemae/ds-breadcrumb": "3.53.0-beta.10",
|
|
66
|
+
"@elliemae/ds-monorepo-devops": "3.53.0-beta.10",
|
|
67
|
+
"@elliemae/ds-test-utils": "3.53.0-beta.10",
|
|
68
|
+
"@elliemae/ds-tree-model": "3.53.0-beta.10"
|
|
68
69
|
},
|
|
69
70
|
"peerDependencies": {
|
|
70
71
|
"lodash-es": "^4.17.21",
|