@elliemae/ds-form-date-time-picker 3.53.0-beta.7 → 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.
Files changed (40) hide show
  1. package/dist/types/ControlledDateTimePicker.d.ts +0 -1
  2. package/dist/types/ControlledDateTimePickerCTX.d.ts +0 -1
  3. package/dist/types/config/useFocusTracker.d.ts +0 -1
  4. package/dist/types/config/useGetFlags.d.ts +0 -1
  5. package/dist/types/config/useGetReferences.d.ts +0 -1
  6. package/dist/types/config/useRelevantValueFromProps.d.ts +0 -1
  7. package/dist/types/parts/ClearButton/ClearButton.d.ts +0 -1
  8. package/dist/types/parts/ClearButton/useClearButton.d.ts +0 -1
  9. package/dist/types/parts/ControlledDateTimePickerContent.d.ts +0 -1
  10. package/dist/types/parts/DateInputs/DateInputs.d.ts +0 -1
  11. package/dist/types/parts/Pickers/Calendar/Calendar.d.ts +0 -1
  12. package/dist/types/parts/Pickers/Calendar/CalendarContent.d.ts +0 -1
  13. package/dist/types/parts/Pickers/Calendar/CalendarContext.d.ts +0 -1
  14. package/dist/types/parts/Pickers/Calendar/CalendarHead.d.ts +0 -1
  15. package/dist/types/parts/Pickers/Calendar/CalendarIconTrigger.d.ts +0 -1
  16. package/dist/types/parts/Pickers/Calendar/CalendarMonthDays.d.ts +0 -1
  17. package/dist/types/parts/Pickers/Calendar/CalendarWrapper.d.ts +0 -1
  18. package/dist/types/parts/Pickers/Calendar/Day.d.ts +0 -1
  19. package/dist/types/parts/Pickers/Calendar/Styleds.d.ts +4 -5
  20. package/dist/types/parts/Pickers/Calendar/useConfigCalendarCTX.d.ts +0 -1
  21. package/dist/types/parts/Pickers/Calendar/useCurrentDisplayedMonthYearLogic.d.ts +0 -1
  22. package/dist/types/parts/Pickers/Calendar/useKeyboardHandlers.d.ts +0 -1
  23. package/dist/types/parts/Pickers/CalendarWithTimeWheel/CalendarWithTimeWheelContent.d.ts +0 -1
  24. package/dist/types/parts/Pickers/CalendarWithTimeWheel/CalendarWithTimeWheelContext.d.ts +0 -1
  25. package/dist/types/parts/Pickers/CalendarWithTimeWheel/CalendarWithTimeWheelIconTrigger.d.ts +0 -1
  26. package/dist/types/parts/Pickers/CalendarWithTimeWheel/Styleds.d.ts +4 -5
  27. package/dist/types/parts/Pickers/PickersIcons.d.ts +0 -1
  28. package/dist/types/parts/Pickers/TimeWheel/HoursList.d.ts +0 -1
  29. package/dist/types/parts/Pickers/TimeWheel/MeridiemList.d.ts +0 -1
  30. package/dist/types/parts/Pickers/TimeWheel/MinutesList.d.ts +0 -1
  31. package/dist/types/parts/Pickers/TimeWheel/Styleds.d.ts +2 -3
  32. package/dist/types/parts/Pickers/TimeWheel/TimeWheel.d.ts +0 -1
  33. package/dist/types/parts/Pickers/TimeWheel/TimeWheelContext.d.ts +0 -1
  34. package/dist/types/parts/Pickers/TimeWheel/TimeWheelIconTrigger.d.ts +0 -1
  35. package/dist/types/parts/Pickers/TimeWheel/useKeyboardHandlers.d.ts +0 -1
  36. package/dist/types/parts/Pickers/TimeWheel/usePopperTriggerLogic.d.ts +0 -1
  37. package/dist/types/parts/Styleds.d.ts +1 -2
  38. package/dist/types/parts/TimeInputs/TimeInputs.d.ts +0 -1
  39. package/dist/types/react-desc-prop-types.d.ts +0 -1
  40. package/package.json +11 -11
@@ -1,4 +1,3 @@
1
- /// <reference types="react" />
2
1
  import type { DSControlledDateTimePickerT } from './react-desc-prop-types.js';
3
2
  declare const DSControlledDateTimePicker: {
4
3
  (props: DSControlledDateTimePickerT.Props): JSX.Element;
@@ -1,4 +1,3 @@
1
- /// <reference types="react" />
2
1
  import type { ControlledDateTimePickerContextT } from './config/useControlledDateTimePicker.js';
3
2
  /** Context for cross component communication */
4
3
  export declare const ControlledDateTimePickerContext: import("react").Context<ControlledDateTimePickerContextT>;
@@ -1,4 +1,3 @@
1
- /// <reference types="react" />
2
1
  import type { useGetReferences } from './useGetReferences.js';
3
2
  import type { useGetFlags } from './useGetFlags.js';
4
3
  type LatestInteractionRegion = 'calendar-days' | 'calendar-head' | 'timewheel' | 'date-inputs' | 'time-inputs' | 'clear-btn' | 'picker-icon' | '';
@@ -1,4 +1,3 @@
1
- /// <reference types="react" />
2
1
  import type { DSControlledDateTimePickerT } from '../react-desc-prop-types.js';
3
2
  export declare const useGetFlags: (props: DSControlledDateTimePickerT.InternalProps) => {
4
3
  hideDatePicker: boolean;
@@ -1,4 +1,3 @@
1
- /// <reference types="react" />
2
1
  import type { useGetFlags } from './useGetFlags.js';
3
2
  type FirstSegment = 'month-input' | 'hour-input' | 'date-picker-icon' | 'time-picker-icon' | 'datetime-picker-icon' | '';
4
3
  type LastSegment = 'year-input' | 'meridiem-input' | 'clear-btn' | 'date-picker-icon' | 'time-picker-icon' | 'datetime-picker-icon' | '';
@@ -1,4 +1,3 @@
1
- /// <reference types="react" />
2
1
  import type { DSControlledDateTimePickerT } from '../react-desc-prop-types.js';
3
2
  export declare const useRelevantValueFromProps: (props: DSControlledDateTimePickerT.InternalProps) => {
4
3
  dateStringFromProps: string;
@@ -1,2 +1 @@
1
- /// <reference types="react" />
2
1
  export declare const ClearButton: () => JSX.Element;
@@ -1,4 +1,3 @@
1
- /// <reference types="react" />
2
1
  import type { DSControlledDateTimePickerInternalsT } from '../../sharedTypes.js';
3
2
  interface UseOnClearClickR {
4
3
  onClearClick: DSControlledDateTimePickerInternalsT.OnDSBtnClick;
@@ -1,2 +1 @@
1
- /// <reference types="react" />
2
1
  export declare const ControlledDateTimePickerContent: () => JSX.Element;
@@ -1,2 +1 @@
1
- /// <reference types="react" />
2
1
  export declare const DateInputs: () => JSX.Element;
@@ -1,4 +1,3 @@
1
- /// <reference types="react" />
2
1
  export declare const WrappedCalendarContext: ({ children }: {
3
2
  children: JSX.Element;
4
3
  }) => import("react/jsx-runtime.js").JSX.Element;
@@ -1,4 +1,3 @@
1
- /// <reference types="react" />
2
1
  export declare const CalendarContent: ({ className }: {
3
2
  className?: string;
4
3
  }) => JSX.Element;
@@ -1,4 +1,3 @@
1
- /// <reference types="react" />
2
1
  import type { CalendarContextT } from './useConfigCalendarCTX.js';
3
2
  export declare const defaultCalendarContext: CalendarContextT;
4
3
  /** Context for cross component communication */
@@ -1,2 +1 @@
1
- /// <reference types="react" />
2
1
  export declare const CalendarHead: () => JSX.Element;
@@ -1,2 +1 @@
1
- /// <reference types="react" />
2
1
  export declare const CalendarIconTrigger: () => JSX.Element;
@@ -1,2 +1 @@
1
- /// <reference types="react" />
2
1
  export declare const CalendarMonthDays: () => JSX.Element;
@@ -1,2 +1 @@
1
- /// <reference types="react" />
2
1
  export declare const CalendarWrapper: () => JSX.Element | null;
@@ -1,4 +1,3 @@
1
- /// <reference types="react" />
2
1
  import type { DSControlledDateTimePickerInternalsT } from '../../../sharedTypes.js';
3
2
  interface CalendarDayPropsT {
4
3
  metaDay: DSControlledDateTimePickerInternalsT.MetaMonthDay;
@@ -1,20 +1,19 @@
1
- /// <reference types="react" />
2
1
  export declare const StyledIconTriggerButton: import("styled-components").StyledComponent<import("react").ComponentType<import("@elliemae/ds-button-v2").DSButtonV2T.Props>, import("@elliemae/ds-system").Theme, object & import("@elliemae/ds-system").OwnerInterface & import("@elliemae/ds-system").InnerRefInterface<import("react").ComponentType<import("@elliemae/ds-button-v2").DSButtonV2T.Props>>, never>;
3
2
  export declare const StyledShadowWrapper: import("styled-components").StyledComponent<"div", import("@elliemae/ds-system").Theme, object & import("@elliemae/ds-system").OwnerInterface & import("@elliemae/ds-system").InnerRefInterface<"div">, never>;
4
3
  export declare const StyledCalendarWrapper: import("styled-components").StyledComponent<"div", import("@elliemae/ds-system").Theme, {
5
- readOnlyStyles?: boolean | undefined;
4
+ readOnlyStyles?: boolean;
6
5
  } & import("@elliemae/ds-system").OwnerInterface & import("@elliemae/ds-system").InnerRefInterface<"div">, never>;
7
6
  export declare const StyledHeader: import("styled-components").StyledComponent<"section", import("@elliemae/ds-system").Theme, object & import("@elliemae/ds-system").OwnerInterface & import("@elliemae/ds-system").InnerRefInterface<"section">, never>;
8
7
  export declare const StyledHeaderLabel: import("styled-components").StyledComponent<"h3", import("@elliemae/ds-system").Theme, object & import("@elliemae/ds-system").OwnerInterface & import("@elliemae/ds-system").InnerRefInterface<"h3">, never>;
9
8
  export declare const StyledHeaderButton: import("styled-components").StyledComponent<import("react").ComponentType<import("@elliemae/ds-button-v2").DSButtonV2T.Props>, import("@elliemae/ds-system").Theme, object & import("@elliemae/ds-system").OwnerInterface & import("@elliemae/ds-system").InnerRefInterface<import("react").ComponentType<import("@elliemae/ds-button-v2").DSButtonV2T.Props>>, never>;
10
9
  export declare const StyledBody: import("styled-components").StyledComponent<"section", import("@elliemae/ds-system").Theme, object & import("@elliemae/ds-system").OwnerInterface & import("@elliemae/ds-system").InnerRefInterface<"section">, never>;
11
10
  export declare const StyledDayBtn: import("styled-components").StyledComponent<import("react").ComponentType<import("@elliemae/ds-button-v2").DSButtonV2T.Props>, import("@elliemae/ds-system").Theme, {
12
- readOnlyStyles?: boolean | undefined;
11
+ readOnlyStyles?: boolean;
13
12
  } & import("@elliemae/ds-system").OwnerInterface & import("@elliemae/ds-system").InnerRefInterface<import("react").ComponentType<import("@elliemae/ds-button-v2").DSButtonV2T.Props>>, never>;
14
13
  export declare const StyledWeekDaysListWrapper: import("styled-components").StyledComponent<import("react").ForwardRefExoticComponent<import("@elliemae/ds-grid").DSGridT.Props & import("react").RefAttributes<HTMLDivElement>>, import("@elliemae/ds-system").Theme, {
15
- isHeader?: boolean | undefined;
14
+ isHeader?: boolean;
16
15
  } & import("@elliemae/ds-system").OwnerInterface & import("@elliemae/ds-system").InnerRefInterface<import("react").ForwardRefExoticComponent<import("@elliemae/ds-grid").DSGridT.Props & import("react").RefAttributes<HTMLDivElement>>>, never>;
17
16
  export declare const StyledWeekDaysHeaderItem: import("styled-components").StyledComponent<"div", import("@elliemae/ds-system").Theme, object & import("@elliemae/ds-system").OwnerInterface & import("@elliemae/ds-system").InnerRefInterface<"div">, never>;
18
17
  export declare const CalendarFooterMessage: import("styled-components").StyledComponent<"div", import("@elliemae/ds-system").Theme, {
19
- readOnlyStyles?: boolean | undefined;
18
+ readOnlyStyles?: boolean;
20
19
  } & import("@elliemae/ds-system").OwnerInterface & import("@elliemae/ds-system").InnerRefInterface<"div">, never>;
@@ -1,4 +1,3 @@
1
- /// <reference types="react" />
2
1
  import { type TypescriptHelpersT } from '@elliemae/ds-typescript-helpers';
3
2
  import { useCurrentDisplayedMonthYearLogic } from './useCurrentDisplayedMonthYearLogic.js';
4
3
  import { useFocusLogic } from './useFocusLogic.js';
@@ -1,4 +1,3 @@
1
- /// <reference types="react" />
2
1
  import type { DSControlledDateTimePickerInternalsT } from '../../../sharedTypes.js';
3
2
  interface UseCurrentDisplayedMonthYearLogicT {
4
3
  currentMonth: DSControlledDateTimePickerInternalsT.DateMonth;
@@ -1,4 +1,3 @@
1
- /// <reference types="react" />
2
1
  import type { DSControlledDateTimePickerInternalsT } from '../../../sharedTypes.js';
3
2
  import type { useCurrentDisplayedMonthYearLogic } from './useCurrentDisplayedMonthYearLogic.js';
4
3
  import type { useFocusLogic } from './useFocusLogic.js';
@@ -1,2 +1 @@
1
- /// <reference types="react" />
2
1
  export declare const CalendarWithTimeWheelContent: () => JSX.Element;
@@ -1,4 +1,3 @@
1
- /// <reference types="react" />
2
1
  import type { CalendarWithTimeWheelContextT } from './useConfigCalendarWithTimeWheelCTX.js';
3
2
  export declare const defaultCalendarWithTimeWheelContext: CalendarWithTimeWheelContextT;
4
3
  /** Context for cross component communication */
@@ -1,2 +1 @@
1
- /// <reference types="react" />
2
1
  export declare const CalendarWithTimeWheelIconTrigger: () => JSX.Element;
@@ -1,13 +1,12 @@
1
- /// <reference types="react" />
2
1
  export declare const StyledIconTriggerButton: import("styled-components").StyledComponent<import("react").ComponentType<import("@elliemae/ds-button-v2").DSButtonV2T.Props>, import("@elliemae/ds-system").Theme, object & import("@elliemae/ds-system").OwnerInterface & import("@elliemae/ds-system").InnerRefInterface<import("react").ComponentType<import("@elliemae/ds-button-v2").DSButtonV2T.Props>>, never>;
3
2
  export declare const StyledCalendarWithTimeWheelWrapper: import("styled-components").StyledComponent<"div", import("@elliemae/ds-system").Theme, {
4
- readOnlyStyles?: boolean | undefined;
3
+ readOnlyStyles?: boolean;
5
4
  } & import("@elliemae/ds-system").OwnerInterface & import("@elliemae/ds-system").InnerRefInterface<"div">, never>;
6
5
  export declare const StyledCalendar: import("styled-components").StyledComponent<({ className }: {
7
- className?: string | undefined;
6
+ className?: string;
8
7
  }) => JSX.Element, import("@elliemae/ds-system").Theme, object & import("@elliemae/ds-system").OwnerInterface & import("@elliemae/ds-system").InnerRefInterface<({ className }: {
9
- className?: string | undefined;
8
+ className?: string;
10
9
  }) => JSX.Element>, never>;
11
10
  export declare const CalendarWithTimeWheelFooterMessage: import("styled-components").StyledComponent<"div", import("@elliemae/ds-system").Theme, {
12
- readOnlyStyles?: boolean | undefined;
11
+ readOnlyStyles?: boolean;
13
12
  } & import("@elliemae/ds-system").OwnerInterface & import("@elliemae/ds-system").InnerRefInterface<"div">, never>;
@@ -1,2 +1 @@
1
- /// <reference types="react" />
2
1
  export declare const PickersIcons: () => JSX.Element;
@@ -1,2 +1 @@
1
- /// <reference types="react" />
2
1
  export declare const HoursList: () => JSX.Element;
@@ -1,3 +1,2 @@
1
- /// <reference types="react" />
2
1
  export declare const MeridiemList: () => JSX.Element;
3
2
  export default MeridiemList;
@@ -1,3 +1,2 @@
1
- /// <reference types="react" />
2
1
  export declare const MinutesList: () => JSX.Element;
3
2
  export default MinutesList;
@@ -1,4 +1,3 @@
1
- /// <reference types="react" />
2
1
  interface StyledWheelListItemPropsT {
3
2
  isCurrentListItem?: boolean;
4
3
  selected?: boolean;
@@ -13,7 +12,7 @@ export declare const StyledTimePickerContainer: import("styled-components").Styl
13
12
  export declare const StyledTimePickerHead: 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>;
14
13
  export declare const StyledTimePickerWheelsLegend: import("styled-components").StyledComponent<"div", import("@elliemae/ds-system").Theme, object & import("@elliemae/ds-system").OwnerInterface & import("@elliemae/ds-system").InnerRefInterface<"div">, never>;
15
14
  export declare const StyledTimePickerWheelWrapper: import("styled-components").StyledComponent<"div", import("@elliemae/ds-system").Theme, {
16
- readOnlyStyles?: boolean | undefined;
15
+ readOnlyStyles?: boolean;
17
16
  } & import("@elliemae/ds-system").OwnerInterface & import("@elliemae/ds-system").InnerRefInterface<"div">, never>;
18
17
  export declare const StyledTimeBtn: import("styled-components").StyledComponent<import("react").ComponentType<import("@elliemae/ds-button-v2").DSButtonV2T.Props>, import("@elliemae/ds-system").Theme, {
19
18
  isCurrentListItem: boolean;
@@ -23,6 +22,6 @@ export declare const StyledTimeBtn: import("styled-components").StyledComponent<
23
22
  export declare const StyledWheelListItem: import("styled-components").StyledComponent<"div", import("@elliemae/ds-system").Theme, StyledWheelListItemPropsT & import("@elliemae/ds-system").OwnerInterface & import("@elliemae/ds-system").InnerRefInterface<"div">, never>;
24
23
  export declare const StyledWheelChangeTimeBtn: import("styled-components").StyledComponent<import("react").ComponentType<import("@elliemae/ds-button-v2").DSButtonV2T.Props>, import("@elliemae/ds-system").Theme, object & import("@elliemae/ds-system").OwnerInterface & import("@elliemae/ds-system").InnerRefInterface<import("react").ComponentType<import("@elliemae/ds-button-v2").DSButtonV2T.Props>>, never>;
25
24
  export declare const TimeWheelFooterMessage: import("styled-components").StyledComponent<"div", import("@elliemae/ds-system").Theme, {
26
- readOnlyStyles?: boolean | undefined;
25
+ readOnlyStyles?: boolean;
27
26
  } & import("@elliemae/ds-system").OwnerInterface & import("@elliemae/ds-system").InnerRefInterface<"div">, never>;
28
27
  export {};
@@ -1,4 +1,3 @@
1
- /// <reference types="react" />
2
1
  export declare const WrappedTimeWheelContext: ({ children }: {
3
2
  children: JSX.Element;
4
3
  }) => import("react/jsx-runtime.js").JSX.Element;
@@ -1,4 +1,3 @@
1
- /// <reference types="react" />
2
1
  import type { TimeWheelContextT } from './useConfigTimePickerCTX.js';
3
2
  export declare const defaultTimePickerContext: TimeWheelContextT;
4
3
  /** Context for cross component communication */
@@ -1,2 +1 @@
1
- /// <reference types="react" />
2
1
  export declare const TimeWheelIconTrigger: () => JSX.Element;
@@ -1,4 +1,3 @@
1
- /// <reference types="react" />
2
1
  import type { useCurrentDisplayedWheelsLogic } from './useCurrentDisplayedWheelsLogic.js';
3
2
  interface UseKeyboardHandlersArgs {
4
3
  currentDisplayedTimeWheelLogic: ReturnType<typeof useCurrentDisplayedWheelsLogic>;
@@ -1,4 +1,3 @@
1
- /// <reference types="react" />
2
1
  import { type TypescriptHelpersT } from '@elliemae/ds-typescript-helpers';
3
2
  interface PopperTriggerLogicT {
4
3
  referenceElement: HTMLButtonElement | null;
@@ -1,4 +1,3 @@
1
- /// <reference types="react" />
2
1
  export declare const StyledSeparator: 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>;
3
2
  export declare const StyledColonSeparator: 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>;
4
3
  export declare const Styled2DigitsInput: import("styled-components").StyledComponent<import("styled-components").StyledComponent<"input", import("@elliemae/ds-system").Theme, object & import("@elliemae/ds-system").OwnerInterface & import("@elliemae/ds-system").InnerRefInterface<"input">, never>, import("@elliemae/ds-system").Theme, object & import("@elliemae/ds-system").OwnerInterface & import("@elliemae/ds-system").InnerRefInterface<import("styled-components").StyledComponent<"input", import("@elliemae/ds-system").Theme, object & import("@elliemae/ds-system").OwnerInterface & import("@elliemae/ds-system").InnerRefInterface<"input">, never>>, never>;
@@ -15,7 +14,7 @@ export declare const StyledInputsWrapperGrid: import("styled-components").Styled
15
14
  hasError: boolean;
16
15
  justPicker: boolean;
17
16
  disabled: boolean;
18
- readOnlyStyles?: boolean | undefined;
17
+ readOnlyStyles?: boolean;
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 StyledDateInputsWrapperGrid: import("styled-components").StyledComponent<"div", import("@elliemae/ds-system").Theme, object & import("@elliemae/ds-system").OwnerInterface & import("@elliemae/ds-system").InnerRefInterface<"div">, never>;
21
20
  export declare const StyledTimeInputsWrapperGrid: import("styled-components").StyledComponent<"div", import("@elliemae/ds-system").Theme, object & import("@elliemae/ds-system").OwnerInterface & import("@elliemae/ds-system").InnerRefInterface<"div">, never>;
@@ -1,2 +1 @@
1
- /// <reference types="react" />
2
1
  export declare const TimeInputs: () => JSX.Element;
@@ -1,4 +1,3 @@
1
- /// <reference types="prop-types" />
2
1
  import type React from 'react';
3
2
  import { type GlobalAttributesT, type XstyledProps, type ValidationMap } from '@elliemae/ds-props-helpers';
4
3
  import type { TypescriptHelpersT } from '@elliemae/ds-typescript-helpers';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@elliemae/ds-form-date-time-picker",
3
- "version": "3.53.0-beta.7",
3
+ "version": "3.53.0-beta.8",
4
4
  "license": "MIT",
5
5
  "description": "ICE MT - Dimsum - Controlled Form Date Time Picker",
6
6
  "files": [
@@ -36,22 +36,22 @@
36
36
  "indent": 4
37
37
  },
38
38
  "dependencies": {
39
- "@elliemae/ds-accessibility": "3.53.0-beta.7",
40
- "@elliemae/ds-button-v2": "3.53.0-beta.7",
41
- "@elliemae/ds-system": "3.53.0-beta.7",
42
- "@elliemae/ds-grid": "3.53.0-beta.7",
43
- "@elliemae/ds-props-helpers": "3.53.0-beta.7",
44
- "@elliemae/ds-typescript-helpers": "3.53.0-beta.7",
45
- "@elliemae/ds-icons": "3.53.0-beta.7",
46
- "@elliemae/ds-popperjs": "3.53.0-beta.7"
39
+ "@elliemae/ds-accessibility": "3.53.0-beta.8",
40
+ "@elliemae/ds-button-v2": "3.53.0-beta.8",
41
+ "@elliemae/ds-grid": "3.53.0-beta.8",
42
+ "@elliemae/ds-popperjs": "3.53.0-beta.8",
43
+ "@elliemae/ds-props-helpers": "3.53.0-beta.8",
44
+ "@elliemae/ds-icons": "3.53.0-beta.8",
45
+ "@elliemae/ds-typescript-helpers": "3.53.0-beta.8",
46
+ "@elliemae/ds-system": "3.53.0-beta.8"
47
47
  },
48
48
  "devDependencies": {
49
- "@elliemae/pui-cli": "9.0.0-next.63",
49
+ "@elliemae/pui-cli": "9.0.0-next.65",
50
50
  "@elliemae/pui-theme": "~2.13.0",
51
51
  "jest": "~29.7.0",
52
52
  "styled-components": "~5.3.9",
53
53
  "styled-system": "^5.1.5",
54
- "@elliemae/ds-monorepo-devops": "3.53.0-beta.7"
54
+ "@elliemae/ds-monorepo-devops": "3.53.0-beta.8"
55
55
  },
56
56
  "peerDependencies": {
57
57
  "@elliemae/pui-theme": "~2.13.0",