@elliemae/ds-data-table 3.46.5 → 3.46.7

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.
@@ -1,41 +1,40 @@
1
1
  /// <reference types="react" />
2
- import { type ZustandT } from '@elliemae/ds-zustand-helpers';
3
2
  import { type DSDataTableT } from '../../react-desc-prop-types.js';
4
3
  export declare const PropsProvider: ({ createStore, children, }: {
5
- createStore: () => ZustandT.ZustandStore<ZustandT.PropsStore<DSDataTableT.DefaultProps & DSDataTableT.RequiredProps & DSDataTableT.OptionalProps & DSDataTableT.UseAutoCalculatedT>>;
4
+ createStore: () => ZustandT.ZustandStore<ZustandT.PropsStore<PropsType & AutoCalculatedValuesType>>;
6
5
  children: import("react").ReactNode;
7
- }) => import("react").FunctionComponentElement<import("react").ProviderProps<ZustandT.ZustandStore<ZustandT.PropsStore<DSDataTableT.DefaultProps & DSDataTableT.RequiredProps & DSDataTableT.OptionalProps & DSDataTableT.UseAutoCalculatedT>> | undefined>>, usePropsStore: {
8
- (): ZustandT.PropsStore<DSDataTableT.DefaultProps & DSDataTableT.RequiredProps & DSDataTableT.OptionalProps & DSDataTableT.UseAutoCalculatedT>;
9
- <U>(selector: (state: ZustandT.PropsStore<DSDataTableT.DefaultProps & DSDataTableT.RequiredProps & DSDataTableT.OptionalProps & DSDataTableT.UseAutoCalculatedT>) => U, equalityFn?: ((a: U, b: U) => boolean) | undefined): U;
6
+ }) => import("react").FunctionComponentElement<import("react").ProviderProps<any>>, usePropsStore: {
7
+ (): ZustandT.PropsStore<PropsType & AutoCalculatedValuesType>;
8
+ <U>(selector: (state: ZustandT.PropsStore<PropsType & AutoCalculatedValuesType>) => U, equalityFn?: ((a: U, b: U) => boolean) | undefined): U;
10
9
  }, InternalProvider: ({ createStore, children, }: {
11
- createStore: () => ZustandT.ZustandStore<ZustandT.InternalStore<DSDataTableT.InternalAtoms, DSDataTableT.Selectors, DSDataTableT.Reducers>>;
10
+ createStore: () => ZustandT.ZustandStore<ZustandT.InternalStore<AtomValuesType, SelectorsType, ReducersType>>;
12
11
  children: import("react").ReactNode;
13
- }) => import("react").FunctionComponentElement<import("react").ProviderProps<ZustandT.ZustandStore<ZustandT.InternalStore<DSDataTableT.InternalAtoms, DSDataTableT.Selectors, DSDataTableT.Reducers>> | undefined>>, useInternalStore: {
14
- (): ZustandT.InternalStore<DSDataTableT.InternalAtoms, DSDataTableT.Selectors, DSDataTableT.Reducers>;
15
- <U_1>(selector: (state: ZustandT.InternalStore<DSDataTableT.InternalAtoms, DSDataTableT.Selectors, DSDataTableT.Reducers>) => U_1, equalityFn?: ((a: U_1, b: U_1) => boolean) | undefined): U_1;
12
+ }) => import("react").FunctionComponentElement<import("react").ProviderProps<any>>, useInternalStore: {
13
+ (): ZustandT.InternalStore<AtomValuesType, SelectorsType, ReducersType>;
14
+ <U_1>(selector: (state: ZustandT.InternalStore<AtomValuesType, SelectorsType, ReducersType>) => U_1, equalityFn?: ((a: U_1, b: U_1) => boolean) | undefined): U_1;
16
15
  };
17
16
  export declare const useWholeStore: () => DSDataTableT.Context;
18
17
  export declare const config: {
19
18
  defaultProps: () => DSDataTableT.InternalProps;
20
19
  internalAtomDefaultValues: DSDataTableT.InternalAtoms;
21
20
  useAutoCalculated: (propsWithDefaults: DSDataTableT.InternalProps) => DSDataTableT.UseAutoCalculatedT;
22
- selectors: ZustandT.SelectorObject<DSDataTableT.ShuttleInternalStore, DSDataTableT.Selectors>;
23
- reducers: ZustandT.ReducerObject<DSDataTableT.ShuttleInternalStore, DSDataTableT.Reducers>;
24
- subscribers: ZustandT.Subscribers<DSDataTableT.ShuttleInternalStore>;
21
+ selectors: ZustandT.SelectorObject<ZustandT.InternalStore<DSDataTableT.InternalAtoms, DSDataTableT.Selectors, DSDataTableT.Reducers>, DSDataTableT.Selectors>;
22
+ reducers: ZustandT.ReducerObject<ZustandT.InternalStore<DSDataTableT.InternalAtoms, DSDataTableT.Selectors, DSDataTableT.Reducers>, DSDataTableT.Reducers>;
23
+ subscribers: ZustandT.Subscribers<ZustandT.InternalStore<DSDataTableT.InternalAtoms, DSDataTableT.Selectors, DSDataTableT.Reducers>>;
25
24
  PropsProvider: ({ createStore, children, }: {
26
- createStore: () => ZustandT.ZustandStore<ZustandT.PropsStore<DSDataTableT.DefaultProps & DSDataTableT.RequiredProps & DSDataTableT.OptionalProps & DSDataTableT.UseAutoCalculatedT>>;
25
+ createStore: () => ZustandT.ZustandStore<ZustandT.PropsStore<PropsType & AutoCalculatedValuesType>>;
27
26
  children: import("react").ReactNode;
28
- }) => import("react").FunctionComponentElement<import("react").ProviderProps<ZustandT.ZustandStore<ZustandT.PropsStore<DSDataTableT.DefaultProps & DSDataTableT.RequiredProps & DSDataTableT.OptionalProps & DSDataTableT.UseAutoCalculatedT>> | undefined>>;
27
+ }) => import("react").FunctionComponentElement<import("react").ProviderProps<any>>;
29
28
  usePropsStore: {
30
- (): ZustandT.PropsStore<DSDataTableT.DefaultProps & DSDataTableT.RequiredProps & DSDataTableT.OptionalProps & DSDataTableT.UseAutoCalculatedT>;
31
- <U>(selector: (state: ZustandT.PropsStore<DSDataTableT.DefaultProps & DSDataTableT.RequiredProps & DSDataTableT.OptionalProps & DSDataTableT.UseAutoCalculatedT>) => U, equalityFn?: ((a: U, b: U) => boolean) | undefined): U;
29
+ (): ZustandT.PropsStore<PropsType & AutoCalculatedValuesType>;
30
+ <U>(selector: (state: ZustandT.PropsStore<PropsType & AutoCalculatedValuesType>) => U, equalityFn?: ((a: U, b: U) => boolean) | undefined): U;
32
31
  };
33
32
  InternalProvider: ({ createStore, children, }: {
34
- createStore: () => ZustandT.ZustandStore<ZustandT.InternalStore<DSDataTableT.InternalAtoms, DSDataTableT.Selectors, DSDataTableT.Reducers>>;
33
+ createStore: () => ZustandT.ZustandStore<ZustandT.InternalStore<AtomValuesType, SelectorsType, ReducersType>>;
35
34
  children: import("react").ReactNode;
36
- }) => import("react").FunctionComponentElement<import("react").ProviderProps<ZustandT.ZustandStore<ZustandT.InternalStore<DSDataTableT.InternalAtoms, DSDataTableT.Selectors, DSDataTableT.Reducers>> | undefined>>;
35
+ }) => import("react").FunctionComponentElement<import("react").ProviderProps<any>>;
37
36
  useInternalStore: {
38
- (): ZustandT.InternalStore<DSDataTableT.InternalAtoms, DSDataTableT.Selectors, DSDataTableT.Reducers>;
39
- <U_1>(selector: (state: ZustandT.InternalStore<DSDataTableT.InternalAtoms, DSDataTableT.Selectors, DSDataTableT.Reducers>) => U_1, equalityFn?: ((a: U_1, b: U_1) => boolean) | undefined): U_1;
37
+ (): ZustandT.InternalStore<AtomValuesType, SelectorsType, ReducersType>;
38
+ <U_1>(selector: (state: ZustandT.InternalStore<AtomValuesType, SelectorsType, ReducersType>) => U_1, equalityFn?: ((a: U_1, b: U_1) => boolean) | undefined): U_1;
40
39
  };
41
40
  };
@@ -1,2 +1,5 @@
1
1
  import type { DSDataTableT } from '../react-desc-prop-types.js';
2
- export declare const columnsToGrid: (columns: DSDataTableT.InternalColumn[], colsLayoutStyle: DSDataTableT.ColsLayoutStyleValues) => string[];
2
+ export declare const columnsToGrid: (columns: DSDataTableT.InternalColumn[], colsLayoutStyle: TypescriptHelpersT.ObjectValues<{
3
+ readonly Fixed: "fixed";
4
+ readonly Auto: "auto";
5
+ }>) => string[];
@@ -1,2 +1 @@
1
- /// <reference types="react" />
2
- export declare const StyledWrapper: import("styled-components").StyledComponent<import("react").ForwardRefExoticComponent<import("@elliemae/ds-grid").DSGridT.Props & import("react").RefAttributes<HTMLDivElement>>, import("@elliemae/ds-system").Theme, object & import("@elliemae/ds-system").OwnerInterface & import("@elliemae/ds-system").InnerRefInterface<import("react").ForwardRefExoticComponent<import("@elliemae/ds-grid").DSGridT.Props & import("react").RefAttributes<HTMLDivElement>>>, never>;
1
+ export declare const StyledWrapper: any;
@@ -1,4 +1,4 @@
1
- import type { WeakValidationMap } from 'react';
1
+ /// <reference types="react" />
2
2
  import type { Range, useVirtual } from 'react-virtual/types';
3
3
  import type { ZustandT } from '@elliemae/ds-zustand-helpers';
4
4
  import { type TypescriptHelpersT } from '@elliemae/ds-typescript-helpers';
@@ -1,67 +1,22 @@
1
- /// <reference types="react" />
2
- import { type Theme } from '@elliemae/ds-system';
3
- import type { DSDataTableT } from './react-desc-prop-types.js';
4
- interface WidthAndHeight {
5
- width?: string | number;
6
- height?: string | number;
7
- }
8
- export declare const StyledFocusWithin: import("styled-components").StyledComponent<import("react").ForwardRefExoticComponent<import("@elliemae/ds-grid").DSGridT.Props & import("react").RefAttributes<HTMLDivElement>>, Theme, {
9
- hideFocus?: boolean | undefined;
10
- } & import("@elliemae/ds-system").OwnerInterface & import("@elliemae/ds-system").InnerRefInterface<import("react").ForwardRefExoticComponent<import("@elliemae/ds-grid").DSGridT.Props & import("react").RefAttributes<HTMLDivElement>>>, never>;
11
- export declare const StyledDataTableWrapper: import("styled-components").StyledComponent<import("react").ForwardRefExoticComponent<import("@elliemae/ds-grid").DSGridT.Props & import("react").RefAttributes<HTMLDivElement>>, Theme, WidthAndHeight & import("@elliemae/ds-system").OwnerInterface & import("@elliemae/ds-system").InnerRefInterface<import("react").ForwardRefExoticComponent<import("@elliemae/ds-grid").DSGridT.Props & import("react").RefAttributes<HTMLDivElement>>>, never>;
12
- export declare const StyledDataTableContentWrapper: import("styled-components").StyledComponent<import("react").ForwardRefExoticComponent<import("@elliemae/ds-grid").DSGridT.Props & import("react").RefAttributes<HTMLDivElement>>, Theme, {
13
- noSelectionAllowed: boolean;
14
- } & import("@elliemae/ds-system").OwnerInterface & import("@elliemae/ds-system").InnerRefInterface<import("react").ForwardRefExoticComponent<import("@elliemae/ds-grid").DSGridT.Props & import("react").RefAttributes<HTMLDivElement>>>, never>;
15
- export declare const StyledTableWrapper: import("styled-components").StyledComponent<"div", Theme, WidthAndHeight & import("@elliemae/ds-system").OwnerInterface & import("@elliemae/ds-system").InnerRefInterface<"div">, never>;
16
- export declare const StyledPaginationWrapper: import("styled-components").StyledComponent<"div", Theme, object & import("@elliemae/ds-system").OwnerInterface & import("@elliemae/ds-system").InnerRefInterface<"div">, never>;
17
- export declare const StyledTableContentWrapper: import("styled-components").StyledComponent<import("react").ForwardRefExoticComponent<import("@elliemae/ds-grid").DSGridT.Props & import("react").RefAttributes<HTMLDivElement>>, Theme, {
18
- height?: string | number | undefined;
19
- } & import("@elliemae/ds-system").OwnerInterface & import("@elliemae/ds-system").InnerRefInterface<import("react").ForwardRefExoticComponent<import("@elliemae/ds-grid").DSGridT.Props & import("react").RefAttributes<HTMLDivElement>>>, never>;
20
- export declare const StyledVirtualListWrapper: import("styled-components").StyledComponent<import("react").ForwardRefExoticComponent<import("@elliemae/ds-grid").DSGridT.Props & import("react").RefAttributes<HTMLDivElement>>, Theme, {
21
- gridLayout: string[];
22
- totalColumnsWidth: string | number;
23
- } & import("@elliemae/ds-system").OwnerInterface & import("@elliemae/ds-system").InnerRefInterface<import("react").ForwardRefExoticComponent<import("@elliemae/ds-grid").DSGridT.Props & import("react").RefAttributes<HTMLDivElement>>>, never>;
24
- export declare const StyledHeadWrapper: import("styled-components").StyledComponent<import("react").ForwardRefExoticComponent<import("@elliemae/ds-grid").DSGridT.Props & import("react").RefAttributes<HTMLDivElement>>, Theme, {
25
- colsLayoutStyle: string;
26
- } & import("@elliemae/ds-system").OwnerInterface & import("@elliemae/ds-system").InnerRefInterface<import("react").ForwardRefExoticComponent<import("@elliemae/ds-grid").DSGridT.Props & import("react").RefAttributes<HTMLDivElement>>>, never>;
27
- export declare const StyledHeadTr: import("styled-components").StyledComponent<import("react").ForwardRefExoticComponent<import("@elliemae/ds-grid").DSGridT.Props & import("react").RefAttributes<HTMLDivElement>>, Theme, {
28
- isExpandable: boolean;
29
- colsLayoutStyle: DSDataTableT.ColsLayoutStyleValues;
30
- } & import("@elliemae/ds-system").OwnerInterface & import("@elliemae/ds-system").InnerRefInterface<import("react").ForwardRefExoticComponent<import("@elliemae/ds-grid").DSGridT.Props & import("react").RefAttributes<HTMLDivElement>>>, never>;
31
- export declare const StyledHeadTh: import("styled-components").StyledComponent<"div", Theme, {
32
- isDraggingActive?: boolean | undefined;
33
- column: DSDataTableT.InternalColumn;
34
- shouldShowDnD?: boolean | undefined;
35
- } & import("@elliemae/ds-system").OwnerInterface & import("@elliemae/ds-system").InnerRefInterface<"div">, never>;
36
- export declare const StyledHeaderRightIconsWrapper: import("styled-components").StyledComponent<"div", Theme, object & import("@elliemae/ds-system").OwnerInterface & import("@elliemae/ds-system").InnerRefInterface<"div">, never>;
37
- export declare const StyledResizer: import("styled-components").StyledComponent<import("react").ComponentType<import("@elliemae/ds-form-input-text").DSInputTextT.Props>, Theme, object & import("@elliemae/ds-system").OwnerInterface & import("@elliemae/ds-system").InnerRefInterface<import("react").ComponentType<import("@elliemae/ds-form-input-text").DSInputTextT.Props>>, never>;
38
- export declare const StyledActionCell: import("styled-components").StyledComponent<"div", Theme, object & import("@elliemae/ds-system").OwnerInterface & import("@elliemae/ds-system").InnerRefInterface<"div">, never>;
39
- export declare const StyledCell: import("styled-components").StyledComponent<"div", Theme, {
40
- theme: Theme;
41
- column: DSDataTableT.InternalColumn;
42
- } & import("@elliemae/ds-system").OwnerInterface & import("@elliemae/ds-system").InnerRefInterface<"div">, never>;
43
- export declare const StyledCellContent: import("styled-components").StyledComponent<"div", Theme, object & import("@elliemae/ds-system").OwnerInterface & import("@elliemae/ds-system").InnerRefInterface<"div">, never>;
44
- export declare const StyledPencilIcon: import("styled-components").StyledComponent<(rest: import("@elliemae/ds-icons").SvgIconT.Props) => import("react/jsx-runtime.js").JSX.Element, Theme, object & import("@elliemae/ds-system").OwnerInterface & import("@elliemae/ds-system").InnerRefInterface<(rest: import("@elliemae/ds-icons").SvgIconT.Props) => import("react/jsx-runtime.js").JSX.Element>, never>;
45
- export declare const StyledEditableContainer: import("styled-components").StyledComponent<import("react").ForwardRefExoticComponent<import("@elliemae/ds-grid").DSGridT.Props & import("react").RefAttributes<HTMLDivElement>>, Theme, {
46
- shouldDisplayEditIcon?: boolean | undefined;
47
- } & import("@elliemae/ds-system").OwnerInterface & import("@elliemae/ds-system").InnerRefInterface<import("react").ForwardRefExoticComponent<import("@elliemae/ds-grid").DSGridT.Props & import("react").RefAttributes<HTMLDivElement>>>, never>;
48
- export declare const StyledFullsizeGrid: import("styled-components").StyledComponent<import("react").ForwardRefExoticComponent<import("@elliemae/ds-grid").DSGridT.Props & import("react").RefAttributes<HTMLDivElement>>, Theme, {
49
- minHeight: string;
50
- } & import("@elliemae/ds-system").OwnerInterface & import("@elliemae/ds-system").InnerRefInterface<import("react").ForwardRefExoticComponent<import("@elliemae/ds-grid").DSGridT.Props & import("react").RefAttributes<HTMLDivElement>>>, never>;
51
- export declare const GroupHeaderContainer: import("styled-components").StyledComponent<import("react").ForwardRefExoticComponent<import("@elliemae/ds-grid").DSGridT.Props & import("react").RefAttributes<HTMLDivElement>>, Theme, {
52
- paddingLeft: string;
53
- } & import("@elliemae/ds-system").OwnerInterface & import("@elliemae/ds-system").InnerRefInterface<import("react").ForwardRefExoticComponent<import("@elliemae/ds-grid").DSGridT.Props & import("react").RefAttributes<HTMLDivElement>>>, never>;
54
- export declare const GroupHeaderTitle: import("styled-components").StyledComponent<"span", Theme, object & import("@elliemae/ds-system").OwnerInterface & import("@elliemae/ds-system").InnerRefInterface<"span">, never>;
55
- export declare const StyledCellContainer: import("styled-components").StyledComponent<import("react").ForwardRefExoticComponent<import("@elliemae/ds-grid").DSGridT.Props & import("react").RefAttributes<HTMLDivElement>>, Theme, {
56
- backgroundColor?: string | undefined;
57
- isDragOverlay?: boolean | undefined;
58
- isDragging?: boolean | undefined;
59
- isDisabled?: boolean | undefined;
60
- isDropValid?: boolean | undefined;
61
- shouldDisplayHover?: boolean | undefined;
62
- isDropIndicatorPositionInside?: boolean | undefined;
63
- minHeight?: string | undefined;
64
- gridTemplateColumns?: string | undefined;
65
- } & import("@elliemae/ds-system").OwnerInterface & import("@elliemae/ds-system").InnerRefInterface<import("react").ForwardRefExoticComponent<import("@elliemae/ds-grid").DSGridT.Props & import("react").RefAttributes<HTMLDivElement>>>, never>;
66
- export declare const ScreenReaderOnly: import("styled-components").StyledComponent<"div", Theme, object & import("@elliemae/ds-system").OwnerInterface & import("@elliemae/ds-system").InnerRefInterface<"div">, never>;
67
- export {};
1
+ export declare const StyledFocusWithin: any;
2
+ export declare const StyledDataTableWrapper: any;
3
+ export declare const StyledDataTableContentWrapper: any;
4
+ export declare const StyledTableWrapper: any;
5
+ export declare const StyledPaginationWrapper: any;
6
+ export declare const StyledTableContentWrapper: any;
7
+ export declare const StyledVirtualListWrapper: any;
8
+ export declare const StyledHeadWrapper: any;
9
+ export declare const StyledHeadTr: any;
10
+ export declare const StyledHeadTh: any;
11
+ export declare const StyledHeaderRightIconsWrapper: any;
12
+ export declare const StyledResizer: any;
13
+ export declare const StyledActionCell: any;
14
+ export declare const StyledCell: any;
15
+ export declare const StyledCellContent: any;
16
+ export declare const StyledPencilIcon: any;
17
+ export declare const StyledEditableContainer: any;
18
+ export declare const StyledFullsizeGrid: any;
19
+ export declare const GroupHeaderContainer: any;
20
+ export declare const GroupHeaderTitle: any;
21
+ export declare const StyledCellContainer: any;
22
+ export declare const ScreenReaderOnly: any;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@elliemae/ds-data-table",
3
- "version": "3.46.5",
3
+ "version": "3.46.7",
4
4
  "license": "MIT",
5
5
  "description": "ICE MT - Dimsum - Data Table",
6
6
  "files": [
@@ -39,38 +39,38 @@
39
39
  "react-virtual": "~2.10.4",
40
40
  "uid": "~2.0.1",
41
41
  "use-onclickoutside": "0.4.1",
42
- "@elliemae/ds-button": "3.46.5",
43
- "@elliemae/ds-button-v2": "3.46.5",
44
- "@elliemae/ds-circular-progress-indicator": "3.46.5",
45
- "@elliemae/ds-drag-and-drop": "3.46.5",
46
- "@elliemae/ds-dropdownmenu": "3.46.5",
47
- "@elliemae/ds-dropdownmenu-v2": "3.46.5",
48
- "@elliemae/ds-form-checkbox": "3.46.5",
49
- "@elliemae/ds-form-date-range-picker": "3.46.5",
50
- "@elliemae/ds-form-date-time-picker": "3.46.5",
51
- "@elliemae/ds-form-helpers-mask-hooks": "3.46.5",
52
- "@elliemae/ds-form-input-text": "3.46.5",
53
- "@elliemae/ds-form-combobox": "3.46.5",
54
- "@elliemae/ds-form-layout-blocks": "3.46.5",
55
- "@elliemae/ds-form-radio": "3.46.5",
56
- "@elliemae/ds-grid": "3.46.5",
57
- "@elliemae/ds-icons": "3.46.5",
58
- "@elliemae/ds-pagination": "3.46.5",
59
- "@elliemae/ds-popperjs": "3.46.5",
60
- "@elliemae/ds-props-helpers": "3.46.5",
61
- "@elliemae/ds-skeleton": "3.46.5",
62
- "@elliemae/ds-pills-v2": "3.46.5",
63
- "@elliemae/ds-system": "3.46.5",
64
- "@elliemae/ds-truncated-tooltip-text": "3.46.5",
65
- "@elliemae/ds-zustand-helpers": "3.46.5",
66
- "@elliemae/ds-typescript-helpers": "3.46.5"
42
+ "@elliemae/ds-button": "3.46.7",
43
+ "@elliemae/ds-button-v2": "3.46.7",
44
+ "@elliemae/ds-dropdownmenu": "3.46.7",
45
+ "@elliemae/ds-circular-progress-indicator": "3.46.7",
46
+ "@elliemae/ds-dropdownmenu-v2": "3.46.7",
47
+ "@elliemae/ds-drag-and-drop": "3.46.7",
48
+ "@elliemae/ds-form-combobox": "3.46.7",
49
+ "@elliemae/ds-form-checkbox": "3.46.7",
50
+ "@elliemae/ds-form-date-range-picker": "3.46.7",
51
+ "@elliemae/ds-form-date-time-picker": "3.46.7",
52
+ "@elliemae/ds-form-helpers-mask-hooks": "3.46.7",
53
+ "@elliemae/ds-form-layout-blocks": "3.46.7",
54
+ "@elliemae/ds-form-radio": "3.46.7",
55
+ "@elliemae/ds-form-input-text": "3.46.7",
56
+ "@elliemae/ds-grid": "3.46.7",
57
+ "@elliemae/ds-icons": "3.46.7",
58
+ "@elliemae/ds-pills-v2": "3.46.7",
59
+ "@elliemae/ds-pagination": "3.46.7",
60
+ "@elliemae/ds-popperjs": "3.46.7",
61
+ "@elliemae/ds-props-helpers": "3.46.7",
62
+ "@elliemae/ds-skeleton": "3.46.7",
63
+ "@elliemae/ds-system": "3.46.7",
64
+ "@elliemae/ds-truncated-tooltip-text": "3.46.7",
65
+ "@elliemae/ds-zustand-helpers": "3.46.7",
66
+ "@elliemae/ds-typescript-helpers": "3.46.7"
67
67
  },
68
68
  "devDependencies": {
69
69
  "@elliemae/pui-cli": "9.0.0-next.50",
70
70
  "styled-components": "~5.3.9",
71
71
  "styled-system": "~5.1.5",
72
- "@elliemae/ds-toolbar-v2": "3.46.5",
73
- "@elliemae/ds-monorepo-devops": "3.46.5"
72
+ "@elliemae/ds-monorepo-devops": "3.46.7",
73
+ "@elliemae/ds-toolbar-v2": "3.46.7"
74
74
  },
75
75
  "peerDependencies": {
76
76
  "lodash": "^4.17.21",