@elliemae/ds-data-table 3.53.0-beta.5 → 3.53.0-beta.8

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,4 +1,3 @@
1
- /// <reference types="react" />
2
1
  import type { DSDataTableT } from './react-desc-prop-types.js';
3
2
  export declare const DataTable: React.FunctionComponent<DSDataTableT.Props>;
4
3
  export declare const DataTableWithSchema: import("@elliemae/ds-props-helpers/dist/types/propTypes/types.js").DocumentedReactComponent<DSDataTableT.Props>;
@@ -1,4 +1,3 @@
1
- /// <reference types="react" />
2
1
  import type { DSDataTableT } from '../react-desc-prop-types.js';
3
2
  export declare const useInternalStateConfig: () => {
4
3
  drilldownRowId: string | null;
@@ -1,4 +1,3 @@
1
- /// <reference types="react" />
2
1
  import { type DSDataTableT } from '../../react-desc-prop-types.js';
3
2
  export declare const PropsProvider: ({ createStore, children, }: {
4
3
  createStore: () => import("@elliemae/ds-zustand-helpers").ZustandT.ZustandStore<import("@elliemae/ds-zustand-helpers").ZustandT.PropsStore<DSDataTableT.DefaultProps & DSDataTableT.RequiredProps & DSDataTableT.OptionalProps & DSDataTableT.UseAutoCalculatedT>>;
@@ -11,5 +10,5 @@ export declare const PropsProvider: ({ createStore, children, }: {
11
10
  children: import("react").ReactNode;
12
11
  }) => import("react").FunctionComponentElement<import("react").ProviderProps<import("@elliemae/ds-zustand-helpers").ZustandT.ZustandStore<import("@elliemae/ds-zustand-helpers").ZustandT.InternalStore<DSDataTableT.InternalAtoms, DSDataTableT.Selectors, DSDataTableT.Reducers>> | undefined>>, useInternalStore: {
13
12
  (): import("@elliemae/ds-zustand-helpers").ZustandT.InternalStore<DSDataTableT.InternalAtoms, DSDataTableT.Selectors, DSDataTableT.Reducers>;
14
- <U_1>(selector: (state: import("@elliemae/ds-zustand-helpers").ZustandT.InternalStore<DSDataTableT.InternalAtoms, DSDataTableT.Selectors, DSDataTableT.Reducers>) => U_1, equalityFn?: ((a: U_1, b: U_1) => boolean) | undefined): U_1;
13
+ <U>(selector: (state: import("@elliemae/ds-zustand-helpers").ZustandT.InternalStore<DSDataTableT.InternalAtoms, DSDataTableT.Selectors, DSDataTableT.Reducers>) => U, equalityFn?: ((a: U, b: U) => boolean) | undefined): U;
15
14
  };
@@ -1,4 +1,3 @@
1
- /// <reference types="react" />
2
1
  import { type ZustandT } from '@elliemae/ds-zustand-helpers';
3
2
  import { type DSDataTableT } from '../../react-desc-prop-types.js';
4
3
  export declare const useWholeStore: () => DSDataTableT.Context;
@@ -23,6 +22,6 @@ export declare const config: {
23
22
  }) => import("react").FunctionComponentElement<import("react").ProviderProps<ZustandT.ZustandStore<ZustandT.InternalStore<DSDataTableT.InternalAtoms, DSDataTableT.Selectors, DSDataTableT.Reducers>> | undefined>>;
24
23
  useInternalStore: {
25
24
  (): ZustandT.InternalStore<DSDataTableT.InternalAtoms, DSDataTableT.Selectors, DSDataTableT.Reducers>;
26
- <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;
25
+ <U>(selector: (state: ZustandT.InternalStore<DSDataTableT.InternalAtoms, DSDataTableT.Selectors, DSDataTableT.Reducers>) => U, equalityFn?: ((a: U, b: U) => boolean) | undefined): U;
27
26
  };
28
27
  };
@@ -1,6 +1,3 @@
1
1
  import type { DSDataTableT } from '../../react-desc-prop-types.js';
2
- export declare const isFilterValueValidForCurrencyRange: (value: unknown) => value is {
3
- from: string;
4
- to: string;
5
- };
2
+ export declare const isFilterValueValidForCurrencyRange: (value: unknown) => value is Parameters<DSDataTableT.FilterFnOutOfTheBoxCurrencyRange>[2];
6
3
  export declare const currencyRangeFilterFn: DSDataTableT.FilterFnOutOfTheBoxCurrencyRange;
@@ -1,7 +1,3 @@
1
1
  import type { DSDataTableT } from '../../react-desc-prop-types.js';
2
- export declare const isFilterValueValidForDateSwitcher: (value: unknown) => value is {
3
- startDate: string;
4
- endDate: string;
5
- isDateRange: boolean;
6
- };
2
+ export declare const isFilterValueValidForDateSwitcher: (value: unknown) => value is Parameters<DSDataTableT.FilterFnOutOfTheBoxDateSwitcher>[2];
7
3
  export declare const dateSwitcherFilterFn: DSDataTableT.FilterFnOutOfTheBoxDateSwitcher;
@@ -1,6 +1,3 @@
1
1
  import type { DSDataTableT } from '../../react-desc-prop-types.js';
2
- export declare const isFilterValueValidForMultiSelect: (value: unknown) => value is {
3
- label: string;
4
- value: string;
5
- }[];
2
+ export declare const isFilterValueValidForMultiSelect: (value: unknown) => value is Parameters<DSDataTableT.FilterFnOutOfTheBoxMultiSelect>[2];
6
3
  export declare const multiSelectFilterFn: DSDataTableT.FilterFnOutOfTheBoxMultiSelect;
@@ -1,6 +1,3 @@
1
1
  import type { DSDataTableT } from '../../react-desc-prop-types.js';
2
- export declare const isFilterValueValidForNumberRange: (value: unknown) => value is {
3
- from?: number | undefined;
4
- to?: number | undefined;
5
- };
2
+ export declare const isFilterValueValidForNumberRange: (value: unknown) => value is Parameters<DSDataTableT.FilterFnOutOfTheBoxNumberRange>[2];
6
3
  export declare const numberRangeFilterFn: DSDataTableT.FilterFnOutOfTheBoxNumberRange;
@@ -1,3 +1,3 @@
1
1
  import type { DSDataTableT } from '../../react-desc-prop-types.js';
2
- export declare const isValidFilterValueForSingleDate: (value: unknown) => value is string;
2
+ export declare const isValidFilterValueForSingleDate: (value: unknown) => value is Parameters<DSDataTableT.FilterFnOutOfTheBoxSingleDate>[2];
3
3
  export declare const singleDateFilterFn: DSDataTableT.FilterFnOutOfTheBoxSingleDate;
@@ -1,6 +1,3 @@
1
1
  import type { DSDataTableT } from '../../react-desc-prop-types.js';
2
- export declare const isValueValidForSingleSelect: (value: unknown) => value is {
3
- label: string;
4
- value: string;
5
- };
2
+ export declare const isValueValidForSingleSelect: (value: unknown) => value is Parameters<DSDataTableT.FilterFnOutOfTheBoxSingleSelect>[2];
6
3
  export declare const singleSelectFilterFn: DSDataTableT.FilterFnOutOfTheBoxSingleSelect;
@@ -5,7 +5,7 @@ export declare const useRowRendererHandlers: ({ row, itemIndex, items, draggable
5
5
  row: DSDataTableT.InternalRow;
6
6
  itemIndex: number;
7
7
  items: DSDataTableT.InternalRow[];
8
- draggableProps: SortableItemContextType['draggableProps'];
8
+ draggableProps: SortableItemContextType["draggableProps"];
9
9
  isDragOverlay: boolean;
10
10
  drilldownRowId: string | null;
11
11
  }) => {
@@ -1,2 +1,2 @@
1
1
  import type { DSDataTableT } from '../react-desc-prop-types.js';
2
- export declare const getIdFromUniqueRowAccessor: (uniqueRowAccessor: DSDataTableT.UniqueRowAccessorType, row: Pick<DSDataTableT.InternalRow, 'id' | 'original'>) => string;
2
+ export declare const getIdFromUniqueRowAccessor: (uniqueRowAccessor: DSDataTableT.UniqueRowAccessorType, row: Pick<DSDataTableT.InternalRow, "id" | "original">) => string;
@@ -1,2 +1 @@
1
- /// <reference types="react" />
2
1
  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,4 +1,3 @@
1
- /// <reference types="react" />
2
1
  import type { DSDataTableT } from '../../react-desc-prop-types.js';
3
2
  type UseHeaderCellHandlersType = (args: {
4
3
  hasFilter: boolean;
@@ -1,3 +1,2 @@
1
- /// <reference types="react" />
2
1
  import type { DnDGroupContextType } from './withConditionalDnDColumnContext.js';
3
2
  export declare const DnDGroupContext: import("react").Context<DnDGroupContextType>;
@@ -1,4 +1,3 @@
1
- /// <reference types="react" />
2
1
  import type { DSDataTableT } from '../../react-desc-prop-types.js';
3
2
  export type DnDTreeContextType = {
4
3
  visibleItems: DSDataTableT.InternalRow[];
@@ -1,4 +1,3 @@
1
- /// <reference types="react" />
2
1
  import type { DSDataTableT } from '../../react-desc-prop-types.js';
3
2
  export type SortableItemContextType = {
4
3
  draggableProps: DSDataTableT.DraggablePropsT;
@@ -1,2 +1 @@
1
- /// <reference types="react" />
2
1
  export declare const MemoizedLoader: import("react").MemoExoticComponent<() => import("react/jsx-runtime.js").JSX.Element>;
@@ -1,2 +1 @@
1
- /// <reference types="react" />
2
1
  export declare const MainContent: () => JSX.Element;
@@ -8,8 +8,8 @@ export declare const Row: React.ComponentType<{
8
8
  }>;
9
9
  declare const RowWithContext: (props: {
10
10
  row: DSDataTableT.InternalRow;
11
- measureRef?: ((el: HTMLElement | null) => void) | undefined;
12
- itemWrapperStyle?: React.CSSProperties | undefined;
11
+ measureRef?: (el: HTMLElement | null) => void;
12
+ itemWrapperStyle?: React.CSSProperties;
13
13
  isDragOverlay: boolean;
14
14
  }) => import("react/jsx-runtime.js").JSX.Element;
15
15
  export { RowWithContext };
@@ -1,4 +1,3 @@
1
- /// <reference types="react" />
2
1
  import type { XstyledProps } from '@elliemae/ds-props-helpers';
3
2
  import type { DSDataTableT } from '../../react-desc-prop-types.js';
4
3
  import type { SortableItemContextType } from '../HoC/SortableItemContext.js';
@@ -1,4 +1,3 @@
1
- /// <reference types="react" />
2
1
  import type { DSDataTableT } from '../react-desc-prop-types.js';
3
2
  export declare const SortableHeaderCell: ({ items, isDragOverlay, isGroup, colId, ...rest }: {
4
3
  items: DSDataTableT.InternalColumn[];
@@ -1,4 +1,3 @@
1
- /// <reference types="react" />
2
1
  import { type Theme } from '@elliemae/ds-system';
3
2
  import type { DSDataTableT } from './react-desc-prop-types.js';
4
3
  interface WidthAndHeight {
@@ -6,7 +5,7 @@ interface WidthAndHeight {
6
5
  height?: string | number;
7
6
  }
8
7
  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;
8
+ hideFocus?: boolean;
10
9
  } & 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
10
  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
11
  export declare const StyledDataTableContentWrapper: import("styled-components").StyledComponent<import("react").ForwardRefExoticComponent<import("@elliemae/ds-grid").DSGridT.Props & import("react").RefAttributes<HTMLDivElement>>, Theme, {
@@ -15,7 +14,7 @@ export declare const StyledDataTableContentWrapper: import("styled-components").
15
14
  export declare const StyledTableWrapper: import("styled-components").StyledComponent<"div", Theme, WidthAndHeight & import("@elliemae/ds-system").OwnerInterface & import("@elliemae/ds-system").InnerRefInterface<"div">, never>;
16
15
  export declare const StyledPaginationWrapper: import("styled-components").StyledComponent<"div", Theme, object & import("@elliemae/ds-system").OwnerInterface & import("@elliemae/ds-system").InnerRefInterface<"div">, never>;
17
16
  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;
17
+ height?: string | number;
19
18
  } & 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
19
  export declare const StyledVirtualListWrapper: import("styled-components").StyledComponent<import("react").ForwardRefExoticComponent<import("@elliemae/ds-grid").DSGridT.Props & import("react").RefAttributes<HTMLDivElement>>, Theme, {
21
20
  gridLayout: string[];
@@ -29,9 +28,9 @@ export declare const StyledHeadTr: import("styled-components").StyledComponent<i
29
28
  colsLayoutStyle: DSDataTableT.ColsLayoutStyleValues;
30
29
  } & 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
30
  export declare const StyledHeadTh: import("styled-components").StyledComponent<"div", Theme, {
32
- isDraggingActive?: boolean | undefined;
31
+ isDraggingActive?: boolean;
33
32
  column: DSDataTableT.InternalColumn;
34
- shouldShowDnD?: boolean | undefined;
33
+ shouldShowDnD?: boolean;
35
34
  } & import("@elliemae/ds-system").OwnerInterface & import("@elliemae/ds-system").InnerRefInterface<"div">, never>;
36
35
  export declare const StyledHeaderRightIconsWrapper: import("styled-components").StyledComponent<"div", Theme, object & import("@elliemae/ds-system").OwnerInterface & import("@elliemae/ds-system").InnerRefInterface<"div">, never>;
37
36
  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>;
@@ -43,7 +42,7 @@ export declare const StyledCell: import("styled-components").StyledComponent<"di
43
42
  export declare const StyledCellContent: import("styled-components").StyledComponent<"div", Theme, object & import("@elliemae/ds-system").OwnerInterface & import("@elliemae/ds-system").InnerRefInterface<"div">, never>;
44
43
  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
44
  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;
45
+ shouldDisplayEditIcon?: boolean;
47
46
  } & 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
47
  export declare const StyledFullsizeGrid: import("styled-components").StyledComponent<import("react").ForwardRefExoticComponent<import("@elliemae/ds-grid").DSGridT.Props & import("react").RefAttributes<HTMLDivElement>>, Theme, {
49
48
  minHeight: string;
@@ -53,15 +52,15 @@ export declare const GroupHeaderContainer: import("styled-components").StyledCom
53
52
  } & 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
53
  export declare const GroupHeaderTitle: import("styled-components").StyledComponent<"span", Theme, object & import("@elliemae/ds-system").OwnerInterface & import("@elliemae/ds-system").InnerRefInterface<"span">, never>;
55
54
  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;
55
+ backgroundColor?: string;
56
+ isDragOverlay?: boolean;
57
+ isDragging?: boolean;
58
+ isDisabled?: boolean;
59
+ isDropValid?: boolean;
60
+ shouldDisplayHover?: boolean;
61
+ isDropIndicatorPositionInside?: boolean;
62
+ minHeight?: string;
63
+ gridTemplateColumns?: string;
65
64
  } & 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
65
  export declare const ScreenReaderOnly: import("styled-components").StyledComponent<"div", Theme, object & import("@elliemae/ds-system").OwnerInterface & import("@elliemae/ds-system").InnerRefInterface<"div">, never>;
67
66
  export {};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@elliemae/ds-data-table",
3
- "version": "3.53.0-beta.5",
3
+ "version": "3.53.0-beta.8",
4
4
  "license": "MIT",
5
5
  "description": "ICE MT - Dimsum - Data Table",
6
6
  "files": [
@@ -39,39 +39,39 @@
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.53.0-beta.5",
43
- "@elliemae/ds-dropdownmenu": "3.53.0-beta.5",
44
- "@elliemae/ds-circular-progress-indicator": "3.53.0-beta.5",
45
- "@elliemae/ds-dropdownmenu-v2": "3.53.0-beta.5",
46
- "@elliemae/ds-drag-and-drop": "3.53.0-beta.5",
47
- "@elliemae/ds-button-v2": "3.53.0-beta.5",
48
- "@elliemae/ds-form-checkbox": "3.53.0-beta.5",
49
- "@elliemae/ds-form-date-range-picker": "3.53.0-beta.5",
50
- "@elliemae/ds-form-combobox": "3.53.0-beta.5",
51
- "@elliemae/ds-form-helpers-mask-hooks": "3.53.0-beta.5",
52
- "@elliemae/ds-form-date-time-picker": "3.53.0-beta.5",
53
- "@elliemae/ds-form-layout-blocks": "3.53.0-beta.5",
54
- "@elliemae/ds-form-radio": "3.53.0-beta.5",
55
- "@elliemae/ds-form-input-text": "3.53.0-beta.5",
56
- "@elliemae/ds-grid": "3.53.0-beta.5",
57
- "@elliemae/ds-icons": "3.53.0-beta.5",
58
- "@elliemae/ds-pagination": "3.53.0-beta.5",
59
- "@elliemae/ds-pills-v2": "3.53.0-beta.5",
60
- "@elliemae/ds-popperjs": "3.53.0-beta.5",
61
- "@elliemae/ds-props-helpers": "3.53.0-beta.5",
62
- "@elliemae/ds-skeleton": "3.53.0-beta.5",
63
- "@elliemae/ds-typescript-helpers": "3.53.0-beta.5",
64
- "@elliemae/ds-zustand-helpers": "3.53.0-beta.5",
65
- "@elliemae/ds-truncated-tooltip-text": "3.53.0-beta.5",
66
- "@elliemae/ds-system": "3.53.0-beta.5"
42
+ "@elliemae/ds-button": "3.53.0-beta.8",
43
+ "@elliemae/ds-button-v2": "3.53.0-beta.8",
44
+ "@elliemae/ds-circular-progress-indicator": "3.53.0-beta.8",
45
+ "@elliemae/ds-drag-and-drop": "3.53.0-beta.8",
46
+ "@elliemae/ds-form-checkbox": "3.53.0-beta.8",
47
+ "@elliemae/ds-form-combobox": "3.53.0-beta.8",
48
+ "@elliemae/ds-dropdownmenu": "3.53.0-beta.8",
49
+ "@elliemae/ds-form-date-range-picker": "3.53.0-beta.8",
50
+ "@elliemae/ds-form-helpers-mask-hooks": "3.53.0-beta.8",
51
+ "@elliemae/ds-form-date-time-picker": "3.53.0-beta.8",
52
+ "@elliemae/ds-form-input-text": "3.53.0-beta.8",
53
+ "@elliemae/ds-dropdownmenu-v2": "3.53.0-beta.8",
54
+ "@elliemae/ds-form-radio": "3.53.0-beta.8",
55
+ "@elliemae/ds-form-layout-blocks": "3.53.0-beta.8",
56
+ "@elliemae/ds-pills-v2": "3.53.0-beta.8",
57
+ "@elliemae/ds-popperjs": "3.53.0-beta.8",
58
+ "@elliemae/ds-icons": "3.53.0-beta.8",
59
+ "@elliemae/ds-grid": "3.53.0-beta.8",
60
+ "@elliemae/ds-props-helpers": "3.53.0-beta.8",
61
+ "@elliemae/ds-skeleton": "3.53.0-beta.8",
62
+ "@elliemae/ds-pagination": "3.53.0-beta.8",
63
+ "@elliemae/ds-system": "3.53.0-beta.8",
64
+ "@elliemae/ds-typescript-helpers": "3.53.0-beta.8",
65
+ "@elliemae/ds-zustand-helpers": "3.53.0-beta.8",
66
+ "@elliemae/ds-truncated-tooltip-text": "3.53.0-beta.8"
67
67
  },
68
68
  "devDependencies": {
69
- "@elliemae/pui-cli": "9.0.0-next.63",
69
+ "@elliemae/pui-cli": "9.0.0-next.65",
70
70
  "jest": "~29.7.0",
71
71
  "styled-components": "~5.3.9",
72
72
  "styled-system": "^5.1.5",
73
- "@elliemae/ds-toolbar-v2": "3.53.0-beta.5",
74
- "@elliemae/ds-monorepo-devops": "3.53.0-beta.5"
73
+ "@elliemae/ds-monorepo-devops": "3.53.0-beta.8",
74
+ "@elliemae/ds-toolbar-v2": "3.53.0-beta.8"
75
75
  },
76
76
  "peerDependencies": {
77
77
  "lodash-es": "^4.17.21",