@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.
@@ -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>['onClick']>[0]) => void;
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 DSShuttleV2T } from '../../react-desc-prop-types.js';
3
2
  export declare const useAutoCalculated: (propsWithDefaults: DSShuttleV2T.InternalProps) => {
4
3
  destinationVirtualRef: import("react").MutableRefObject<{
@@ -1,4 +1,3 @@
1
- /// <reference types="react" />
2
1
  type ActionRefVirtualized = {
3
2
  scrollTo: (index: number) => void;
4
3
  };
@@ -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
- <U_1>(selector: (state: ZustandT.InternalStore<DSShuttleV2T.InternalAtoms, DSShuttleV2T.Selectors, DSShuttleV2T.Reducers>) => U_1, equalityFn?: ((a: U_1, b: U_1) => boolean) | undefined): U_1;
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
- <U_1>(selector: (state: ZustandT.InternalStore<DSShuttleV2T.InternalAtoms, DSShuttleV2T.Selectors, DSShuttleV2T.Reducers>) => U_1, equalityFn?: ((a: U_1, b: U_1) => boolean) | undefined): U_1;
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 | undefined;
6
- disabled?: boolean | undefined;
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.KeyboardEvent<HTMLButtonElement> | React.MouseEvent<HTMLButtonElement, MouseEvent>) => void;
5
- handleClickSingleMove: (e: React.KeyboardEvent<HTMLButtonElement> | React.MouseEvent<HTMLButtonElement, MouseEvent>) => void;
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['tooltipHelpers'];
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['tooltipHelpers'];
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.52.1",
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.52.1",
42
- "@elliemae/ds-circular-progress-indicator": "3.52.1",
43
- "@elliemae/ds-drag-and-drop": "3.52.1",
44
- "@elliemae/ds-fast-list": "3.52.1",
45
- "@elliemae/ds-form-checkbox": "3.52.1",
46
- "@elliemae/ds-form-input-text": "3.52.1",
47
- "@elliemae/ds-grid": "3.52.1",
48
- "@elliemae/ds-hooks-fontsize-detector": "3.52.1",
49
- "@elliemae/ds-hooks-headless-tooltip": "3.52.1",
50
- "@elliemae/ds-hooks-on-blur-out": "3.52.1",
51
- "@elliemae/ds-indeterminate-progress-indicator": "3.52.1",
52
- "@elliemae/ds-popperjs": "3.52.1",
53
- "@elliemae/ds-icons": "3.52.1",
54
- "@elliemae/ds-props-helpers": "3.52.1",
55
- "@elliemae/ds-system": "3.52.1",
56
- "@elliemae/ds-typescript-helpers": "3.52.1",
57
- "@elliemae/ds-typography": "3.52.1",
58
- "@elliemae/ds-zustand-helpers": "3.52.1"
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.63",
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-monorepo-devops": "3.52.1",
66
- "@elliemae/ds-breadcrumb": "3.52.1",
67
- "@elliemae/ds-tree-model": "3.52.1"
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",