@elliemae/ds-shuttle-v2 3.70.0-next.53 → 3.70.0-next.58
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/cjs/package.json +1 -4
- package/dist/esm/package.json +1 -4
- package/dist/types/parts/Header.d.ts +1 -1
- package/dist/types/parts/Item/Item.d.ts +2 -1
- package/dist/types/parts/Item/ItemActions/ItemActions.d.ts +1 -1
- package/dist/types/parts/Item/ItemMiddleSection.d.ts +1 -1
- package/dist/types/parts/Item/ItemOverlay.d.ts +1 -1
- package/dist/types/parts/Item/ItemSelectionUi/CheckboxSelectionUI.d.ts +2 -1
- package/dist/types/parts/Item/ItemSelectionUi/ItemSelectionUI.d.ts +2 -1
- package/dist/types/parts/Item/ItemSelectionUi/VerticalBarSelectionUI.d.ts +2 -1
- package/dist/types/parts/Item/TextSection.d.ts +1 -1
- package/dist/types/parts/MainContent.d.ts +1 -1
- package/dist/types/parts/Panel/bottom/LoadMoreBtn.d.ts +2 -1
- package/dist/types/parts/Panel/bottom/LoadingMore.d.ts +2 -1
- package/dist/types/parts/Panel/bottom/PanelContentBottomSection.d.ts +1 -1
- package/dist/types/parts/Panel/middle/EmptyItems.d.ts +2 -1
- package/dist/types/parts/Panel/middle/LoadingItems.d.ts +2 -1
- package/dist/types/parts/Panel/middle/MultipleSelectionAction.d.ts +1 -1
- package/dist/types/parts/Panel/middle/PanelContentMiddleSection.d.ts +1 -1
- package/dist/types/parts/Panel/middle/ShuttleLoadingAnnouncement.d.ts +1 -1
- package/dist/types/parts/Panel/top/AriaLivePanelCenter.d.ts +2 -1
- package/dist/types/parts/Panel/top/PanelContentTopSection.d.ts +2 -1
- package/dist/types/parts/Panel/top/PanelFilterSection.d.ts +2 -1
- package/dist/types/parts/Panel/top/SelectionHeader.d.ts +1 -1
- package/dist/types/parts/PanelWrapper.d.ts +1 -1
- package/package.json +26 -26
package/dist/cjs/package.json
CHANGED
package/dist/esm/package.json
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
2
|
import { type DSShuttleV2T } from '../react-desc-prop-types.js';
|
|
3
|
-
export declare const Header: React.MemoExoticComponent<(panelMetaInfo: DSShuttleV2T.PanelMetaInfo) =>
|
|
3
|
+
export declare const Header: React.MemoExoticComponent<(panelMetaInfo: DSShuttleV2T.PanelMetaInfo) => React.JSX.Element>;
|
|
@@ -1,2 +1,3 @@
|
|
|
1
|
+
import React from 'react';
|
|
1
2
|
import { type DSShuttleV2T } from '../../react-desc-prop-types.js';
|
|
2
|
-
export declare const ItemSortable: (props: DSShuttleV2T.ItemMeta) =>
|
|
3
|
+
export declare const ItemSortable: (props: DSShuttleV2T.ItemMeta) => React.JSX.Element;
|
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
2
|
import { type DSShuttleV2T } from '../../../react-desc-prop-types.js';
|
|
3
|
-
export declare const ItemActions: React.MemoExoticComponent<(itemMeta: DSShuttleV2T.ItemMeta) =>
|
|
3
|
+
export declare const ItemActions: React.MemoExoticComponent<(itemMeta: DSShuttleV2T.ItemMeta) => React.JSX.Element>;
|
|
@@ -2,4 +2,4 @@ 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
4
|
tooltipHelpers?: DSShuttleV2T.ComponentProps["tooltipHelpers"];
|
|
5
|
-
}) =>
|
|
5
|
+
}) => React.JSX.Element>;
|
|
@@ -2,4 +2,4 @@ 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
4
|
tooltipHelpers?: DSShuttleV2T.ComponentProps["tooltipHelpers"];
|
|
5
|
-
}) =>
|
|
5
|
+
}) => React.JSX.Element>;
|
|
@@ -1,2 +1,3 @@
|
|
|
1
|
+
import React from 'react';
|
|
1
2
|
import type { SelectionUIProps } from './ItemSelectionUI.types.js';
|
|
2
|
-
export declare const CheckboxSelectionUI: (props: SelectionUIProps) =>
|
|
3
|
+
export declare const CheckboxSelectionUI: (props: SelectionUIProps) => React.JSX.Element;
|
|
@@ -1,2 +1,3 @@
|
|
|
1
|
+
import React from 'react';
|
|
1
2
|
import type { SelectionUIProps } from './ItemSelectionUI.types.js';
|
|
2
|
-
export declare const ItemSelectionUI: (props: SelectionUIProps) =>
|
|
3
|
+
export declare const ItemSelectionUI: (props: SelectionUIProps) => React.JSX.Element;
|
|
@@ -1,2 +1,3 @@
|
|
|
1
|
+
import React from 'react';
|
|
1
2
|
import type { SelectionUIProps } from './ItemSelectionUI.types.js';
|
|
2
|
-
export declare const VerticalBarSelectionUI: (props: SelectionUIProps) =>
|
|
3
|
+
export declare const VerticalBarSelectionUI: (props: SelectionUIProps) => React.JSX.Element;
|
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
2
|
import { type DSShuttleV2T } from '../../react-desc-prop-types.js';
|
|
3
|
-
export declare const TextSection: React.MemoExoticComponent<(props: DSShuttleV2T.ItemMeta) =>
|
|
3
|
+
export declare const TextSection: React.MemoExoticComponent<(props: DSShuttleV2T.ItemMeta) => React.JSX.Element>;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
|
-
export declare const MainContent: React.MemoExoticComponent<() =>
|
|
2
|
+
export declare const MainContent: React.MemoExoticComponent<() => React.JSX.Element>;
|
|
@@ -1,2 +1,3 @@
|
|
|
1
|
+
import React from 'react';
|
|
1
2
|
import { type DSShuttleV2T } from '../../../react-desc-prop-types.js';
|
|
2
|
-
export declare const LoadMoreBtn: (panelMetaInfo: DSShuttleV2T.PanelMetaInfo) =>
|
|
3
|
+
export declare const LoadMoreBtn: (panelMetaInfo: DSShuttleV2T.PanelMetaInfo) => React.JSX.Element;
|
|
@@ -1,2 +1,3 @@
|
|
|
1
|
+
import React from 'react';
|
|
1
2
|
import { type DSShuttleV2T } from '../../../react-desc-prop-types.js';
|
|
2
|
-
export declare const LoadingMore: (panelMetaInfo: DSShuttleV2T.PanelMetaInfo) =>
|
|
3
|
+
export declare const LoadingMore: (panelMetaInfo: DSShuttleV2T.PanelMetaInfo) => React.JSX.Element;
|
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
2
|
import { type DSShuttleV2T } from '../../../react-desc-prop-types.js';
|
|
3
|
-
export declare const PanelContentBottomSection: React.MemoExoticComponent<(panelMetaInfo: DSShuttleV2T.PanelMetaInfo) =>
|
|
3
|
+
export declare const PanelContentBottomSection: React.MemoExoticComponent<(panelMetaInfo: DSShuttleV2T.PanelMetaInfo) => React.JSX.Element>;
|
|
@@ -1,2 +1,3 @@
|
|
|
1
|
+
import React from 'react';
|
|
1
2
|
import { type DSShuttleV2T } from '../../../react-desc-prop-types.js';
|
|
2
|
-
export declare const EmptyItems: (panelMetaInfo: DSShuttleV2T.PanelMetaInfo) =>
|
|
3
|
+
export declare const EmptyItems: (panelMetaInfo: DSShuttleV2T.PanelMetaInfo) => React.JSX.Element;
|
|
@@ -1,2 +1,3 @@
|
|
|
1
|
+
import React from 'react';
|
|
1
2
|
import { type DSShuttleV2T } from '../../../react-desc-prop-types.js';
|
|
2
|
-
export declare const LoadingItems: (panelMetaInfo: DSShuttleV2T.PanelMetaInfo) =>
|
|
3
|
+
export declare const LoadingItems: (panelMetaInfo: DSShuttleV2T.PanelMetaInfo) => React.JSX.Element;
|
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
2
|
import { type DSShuttleV2T } from '../../../react-desc-prop-types.js';
|
|
3
|
-
export declare const MultipleSelectionAction: React.MemoExoticComponent<(panelMeta: DSShuttleV2T.PanelMetaInfo) =>
|
|
3
|
+
export declare const MultipleSelectionAction: React.MemoExoticComponent<(panelMeta: DSShuttleV2T.PanelMetaInfo) => React.JSX.Element>;
|
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
2
|
import { type DSShuttleV2T } from '../../../react-desc-prop-types.js';
|
|
3
|
-
export declare const PanelContentMiddleSection: React.MemoExoticComponent<(panelMetaInfo: DSShuttleV2T.PanelMetaInfo) =>
|
|
3
|
+
export declare const PanelContentMiddleSection: React.MemoExoticComponent<(panelMetaInfo: DSShuttleV2T.PanelMetaInfo) => React.JSX.Element>;
|
|
@@ -3,5 +3,5 @@ interface ShuttleLoadingAnnouncementProps {
|
|
|
3
3
|
isLoading: boolean;
|
|
4
4
|
headerProps?: Record<string, unknown>;
|
|
5
5
|
}
|
|
6
|
-
export declare const ShuttleLoadingAnnouncement: React.MemoExoticComponent<({ isLoading, headerProps }: ShuttleLoadingAnnouncementProps) =>
|
|
6
|
+
export declare const ShuttleLoadingAnnouncement: React.MemoExoticComponent<({ isLoading, headerProps }: ShuttleLoadingAnnouncementProps) => React.JSX.Element>;
|
|
7
7
|
export {};
|
|
@@ -1,2 +1,3 @@
|
|
|
1
|
+
import React from 'react';
|
|
1
2
|
import { type DSShuttleV2T } from '../../../react-desc-prop-types.js';
|
|
2
|
-
export declare const AriaLivePanelCenter: (panelMetaInfo: DSShuttleV2T.PanelMetaInfo) =>
|
|
3
|
+
export declare const AriaLivePanelCenter: (panelMetaInfo: DSShuttleV2T.PanelMetaInfo) => React.JSX.Element;
|
|
@@ -1,2 +1,3 @@
|
|
|
1
|
+
import React from 'react';
|
|
1
2
|
import { type DSShuttleV2T } from '../../../react-desc-prop-types.js';
|
|
2
|
-
export declare const PanelContentTopSection: (panelMetaInfo: DSShuttleV2T.PanelMetaInfo) =>
|
|
3
|
+
export declare const PanelContentTopSection: (panelMetaInfo: DSShuttleV2T.PanelMetaInfo) => React.JSX.Element;
|
|
@@ -1,2 +1,3 @@
|
|
|
1
|
+
import React from 'react';
|
|
1
2
|
import { type DSShuttleV2T } from '../../../react-desc-prop-types.js';
|
|
2
|
-
export declare const PanelFilterSection: (panelMetaInfo: DSShuttleV2T.PanelMetaInfo) =>
|
|
3
|
+
export declare const PanelFilterSection: (panelMetaInfo: DSShuttleV2T.PanelMetaInfo) => React.JSX.Element;
|
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
2
|
import { type DSShuttleV2T } from '../../../react-desc-prop-types.js';
|
|
3
|
-
export declare const SelectionHeader: React.MemoExoticComponent<(panelMetaInfo: DSShuttleV2T.PanelMetaInfo) =>
|
|
3
|
+
export declare const SelectionHeader: React.MemoExoticComponent<(panelMetaInfo: DSShuttleV2T.PanelMetaInfo) => React.JSX.Element>;
|
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
2
|
import { type DSShuttleV2T } from '../react-desc-prop-types.js';
|
|
3
|
-
export declare const PanelWrapper: React.MemoExoticComponent<(panelMetaInfo: DSShuttleV2T.PanelMetaInfo) =>
|
|
3
|
+
export declare const PanelWrapper: React.MemoExoticComponent<(panelMetaInfo: DSShuttleV2T.PanelMetaInfo) => React.JSX.Element>;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@elliemae/ds-shuttle-v2",
|
|
3
|
-
"version": "3.70.0-next.
|
|
3
|
+
"version": "3.70.0-next.58",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"description": "ICE MT - Dimsum - Shuttle v2",
|
|
6
6
|
"files": [
|
|
@@ -39,39 +39,39 @@
|
|
|
39
39
|
"@xstyled/styled-components": "~3.8.1",
|
|
40
40
|
"fast-deep-equal": "~3.1.3",
|
|
41
41
|
"uid": "^2.0.2",
|
|
42
|
-
"@elliemae/ds-circular-progress-indicator": "3.70.0-next.
|
|
43
|
-
"@elliemae/ds-
|
|
44
|
-
"@elliemae/ds-
|
|
45
|
-
"@elliemae/ds-floating-context": "3.70.0-next.
|
|
46
|
-
"@elliemae/ds-form-
|
|
47
|
-
"@elliemae/ds-
|
|
48
|
-
"@elliemae/ds-
|
|
49
|
-
"@elliemae/ds-grid": "3.70.0-next.
|
|
50
|
-
"@elliemae/ds-hooks-fontsize-detector": "3.70.0-next.
|
|
51
|
-
"@elliemae/ds-hooks-
|
|
52
|
-
"@elliemae/ds-
|
|
53
|
-
"@elliemae/ds-
|
|
54
|
-
"@elliemae/ds-
|
|
55
|
-
"@elliemae/ds-
|
|
56
|
-
"@elliemae/ds-
|
|
57
|
-
"@elliemae/ds-
|
|
58
|
-
"@elliemae/ds-
|
|
59
|
-
"@elliemae/ds-
|
|
42
|
+
"@elliemae/ds-circular-progress-indicator": "3.70.0-next.58",
|
|
43
|
+
"@elliemae/ds-button-v2": "3.70.0-next.58",
|
|
44
|
+
"@elliemae/ds-drag-and-drop": "3.70.0-next.58",
|
|
45
|
+
"@elliemae/ds-floating-context": "3.70.0-next.58",
|
|
46
|
+
"@elliemae/ds-form-checkbox": "3.70.0-next.58",
|
|
47
|
+
"@elliemae/ds-fast-list": "3.70.0-next.58",
|
|
48
|
+
"@elliemae/ds-form-input-text": "3.70.0-next.58",
|
|
49
|
+
"@elliemae/ds-grid": "3.70.0-next.58",
|
|
50
|
+
"@elliemae/ds-hooks-fontsize-detector": "3.70.0-next.58",
|
|
51
|
+
"@elliemae/ds-hooks-headless-tooltip": "3.70.0-next.58",
|
|
52
|
+
"@elliemae/ds-hooks-on-blur-out": "3.70.0-next.58",
|
|
53
|
+
"@elliemae/ds-icons": "3.70.0-next.58",
|
|
54
|
+
"@elliemae/ds-indeterminate-progress-indicator": "3.70.0-next.58",
|
|
55
|
+
"@elliemae/ds-props-helpers": "3.70.0-next.58",
|
|
56
|
+
"@elliemae/ds-system": "3.70.0-next.58",
|
|
57
|
+
"@elliemae/ds-typography": "3.70.0-next.58",
|
|
58
|
+
"@elliemae/ds-typescript-helpers": "3.70.0-next.58",
|
|
59
|
+
"@elliemae/ds-zustand-helpers": "3.70.0-next.58"
|
|
60
60
|
},
|
|
61
61
|
"devDependencies": {
|
|
62
62
|
"jest": "^30.0.0",
|
|
63
63
|
"lodash-es": "^4.18.1",
|
|
64
|
-
"styled-components": "~5.3.
|
|
65
|
-
"@elliemae/ds-breadcrumb": "3.70.0-next.
|
|
66
|
-
"@elliemae/ds-monorepo-devops": "3.70.0-next.
|
|
67
|
-
"@elliemae/ds-test-utils": "3.70.0-next.
|
|
68
|
-
"@elliemae/ds-tree-model": "3.70.0-next.
|
|
64
|
+
"styled-components": "~5.3.11",
|
|
65
|
+
"@elliemae/ds-breadcrumb": "3.70.0-next.58",
|
|
66
|
+
"@elliemae/ds-monorepo-devops": "3.70.0-next.58",
|
|
67
|
+
"@elliemae/ds-test-utils": "3.70.0-next.58",
|
|
68
|
+
"@elliemae/ds-tree-model": "3.70.0-next.58"
|
|
69
69
|
},
|
|
70
70
|
"peerDependencies": {
|
|
71
71
|
"lodash-es": "^4.18.1",
|
|
72
72
|
"react": "^18.3.1",
|
|
73
73
|
"react-dom": "^18.3.1",
|
|
74
|
-
"styled-components": "~5.3.
|
|
74
|
+
"styled-components": "~5.3.11"
|
|
75
75
|
},
|
|
76
76
|
"publishConfig": {
|
|
77
77
|
"access": "public",
|
|
@@ -86,4 +86,4 @@
|
|
|
86
86
|
"build": "cross-env NODE_ENV=production node ../../../scripts/build/build.mjs",
|
|
87
87
|
"checkDeps": "npx -yes ../../util/ds-codemods check-missing-packages --projectFolderPath=\"./\" --ignorePackagesGlobPattern=\"\" --ignoreFilesGlobPattern=\"**/test-ables/*,**/tests/*\""
|
|
88
88
|
}
|
|
89
|
-
}
|
|
89
|
+
}
|