@elliemae/ds-form-date-time-picker 3.46.4 → 3.46.6

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.
@@ -3,5 +3,5 @@ declare const DSControlledDateTimePicker: {
3
3
  (props: DSControlledDateTimePickerT.Props): JSX.Element;
4
4
  displayName: string;
5
5
  };
6
- declare const DSControlledDateTimePickerWithSchema: import("@elliemae/ds-props-helpers/dist/types/propTypes/types.js").DocumentedReactComponent<DSControlledDateTimePickerT.Props>;
6
+ declare const DSControlledDateTimePickerWithSchema: import("@elliemae/ds-props-helpers/dist/types/propTypes/types.js").DocumentedReactComponent<any>;
7
7
  export { DSControlledDateTimePickerWithSchema, DSControlledDateTimePicker };
@@ -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;
@@ -18,13 +17,13 @@ export declare const useGetFlags: (props: DSControlledDateTimePickerT.InternalPr
18
17
  isWithCalendarToo: boolean;
19
18
  withAnyInputs: boolean;
20
19
  withAnyPicker: boolean;
21
- withClearBtn: boolean;
20
+ withClearBtn: any;
22
21
  isWithDateInputs: boolean;
23
22
  isWithTimeInputs: boolean;
24
- autoFocusMonthInput: boolean;
25
- autoFocusPrevMonthArrow: boolean;
26
- innerRefMonthInput: import("react").MutableRefObject<HTMLInputElement | HTMLButtonElement | null> | (((ref: HTMLInputElement | HTMLButtonElement | null) => void) & ((ref: HTMLInputElement | HTMLButtonElement | null) => void)) | undefined;
27
- innerRefPrevMonthArrow: import("react").MutableRefObject<HTMLInputElement | HTMLButtonElement | null> | (((ref: HTMLInputElement | HTMLButtonElement | null) => void) & ((ref: HTMLInputElement | HTMLButtonElement | null) => void)) | undefined;
28
- shouldPreserveClearableSpace: boolean;
29
- withAnyRightController: boolean;
23
+ autoFocusMonthInput: any;
24
+ autoFocusPrevMonthArrow: any;
25
+ innerRefMonthInput: any;
26
+ innerRefPrevMonthArrow: any;
27
+ shouldPreserveClearableSpace: any;
28
+ withAnyRightController: any;
30
29
  };
@@ -1,30 +1,30 @@
1
1
  import type { DSControlledDateTimePickerT } from '../react-desc-prop-types.js';
2
2
  export declare const useGetPropsBasedOnType: (propsWithDefaults: DSControlledDateTimePickerT.InternalProps) => {
3
- getIsDisabledDay: import("@elliemae/ds-typescript-helpers").TypescriptHelpersT.BooleanGetter<string>;
4
- getIsOutOfRangeDay: import("@elliemae/ds-typescript-helpers").TypescriptHelpersT.BooleanGetter<string>;
5
- getIsStartRangeDay: import("@elliemae/ds-typescript-helpers").TypescriptHelpersT.BooleanGetter<string> | (() => void);
6
- getIsDayInRange: import("@elliemae/ds-typescript-helpers").TypescriptHelpersT.BooleanGetter<string> | (() => void);
7
- getIsEndRangeDay: import("@elliemae/ds-typescript-helpers").TypescriptHelpersT.BooleanGetter<string> | (() => void);
8
- appOnDateChange: DSControlledDateTimePickerT.OnDateChange;
9
- appOnMonthChange: DSControlledDateTimePickerT.AppOnInputChange;
10
- appOnDayChange: DSControlledDateTimePickerT.AppOnInputChange;
11
- appOnYearChange: DSControlledDateTimePickerT.AppOnInputChange;
3
+ getIsDisabledDay: any;
4
+ getIsOutOfRangeDay: any;
5
+ getIsStartRangeDay: any;
6
+ getIsDayInRange: any;
7
+ getIsEndRangeDay: any;
8
+ appOnDateChange: any;
9
+ appOnMonthChange: any;
10
+ appOnDayChange: any;
11
+ appOnYearChange: any;
12
12
  appDate: string;
13
- getIsDisabledTime: import("@elliemae/ds-typescript-helpers").TypescriptHelpersT.BooleanGetter<string>;
14
- appOnTimeChange: DSControlledDateTimePickerT.OnTimeChange;
15
- appOnHourChange: DSControlledDateTimePickerT.AppOnInputChange;
16
- appOnMinuteChange: DSControlledDateTimePickerT.AppOnInputChange;
17
- appOnMeridiemChange: DSControlledDateTimePickerT.AppOnInputChange;
13
+ getIsDisabledTime: any;
14
+ appOnTimeChange: any;
15
+ appOnHourChange: any;
16
+ appOnMinuteChange: any;
17
+ appOnMeridiemChange: any;
18
18
  appTime: string;
19
- appDateTime: string;
20
- appOnDateTimeChange: DSControlledDateTimePickerT.OnDateTimeChange;
21
- emptyPickerStartingMonth: string;
22
- onCalendarOpenFocusedDay: string | undefined;
23
- minutesInterval: number;
24
- onTimeWheelOpenStartingTime: string;
19
+ appDateTime: any;
20
+ appOnDateTimeChange: any;
21
+ emptyPickerStartingMonth: any;
22
+ onCalendarOpenFocusedDay: any;
23
+ minutesInterval: any;
24
+ onTimeWheelOpenStartingTime: any;
25
25
  isDate: boolean;
26
26
  isTime: boolean;
27
27
  isDateTime: boolean;
28
- fromDate: string | false | undefined;
29
- toDate: string | false | undefined;
28
+ fromDate: any;
29
+ toDate: any;
30
30
  };
@@ -1,10 +1,10 @@
1
1
  /// <reference types="react" />
2
2
  import type { DSControlledDateTimePickerT } from '../react-desc-prop-types.js';
3
3
  export declare const useRelevantValueFromProps: (props: DSControlledDateTimePickerT.InternalProps) => {
4
- dateStringFromProps: string;
5
- timeStringFromProps: string;
6
- tempDateString: string;
7
- setTempDateString: import("react").Dispatch<import("react").SetStateAction<string>>;
8
- tempTimeString: string;
9
- setTimeString: import("react").Dispatch<import("react").SetStateAction<string>>;
4
+ dateStringFromProps: any;
5
+ timeStringFromProps: any;
6
+ tempDateString: any;
7
+ setTempDateString: import("react").Dispatch<any>;
8
+ tempTimeString: any;
9
+ setTimeString: import("react").Dispatch<any>;
10
10
  };
@@ -1,14 +1,11 @@
1
- /// <reference types="react" />
2
- 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
- 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
- export declare const StyledCalendarWrapper: import("styled-components").StyledComponent<"div", import("@elliemae/ds-system").Theme, object & import("@elliemae/ds-system").OwnerInterface & import("@elliemae/ds-system").InnerRefInterface<"div">, never>;
5
- 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>;
6
- 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>;
7
- 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>;
8
- 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>;
9
- export declare const StyledDayBtn: 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
- 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, {
11
- isHeader?: boolean | undefined;
12
- } & import("@elliemae/ds-system").OwnerInterface & import("@elliemae/ds-system").InnerRefInterface<import("react").ForwardRefExoticComponent<import("@elliemae/ds-grid").DSGridT.Props & import("react").RefAttributes<HTMLDivElement>>>, never>;
13
- 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>;
14
- export declare const CalendarFooterMessage: import("styled-components").StyledComponent<"div", import("@elliemae/ds-system").Theme, object & import("@elliemae/ds-system").OwnerInterface & import("@elliemae/ds-system").InnerRefInterface<"div">, never>;
1
+ export declare const StyledIconTriggerButton: any;
2
+ export declare const StyledShadowWrapper: any;
3
+ export declare const StyledCalendarWrapper: any;
4
+ export declare const StyledHeader: any;
5
+ export declare const StyledHeaderLabel: any;
6
+ export declare const StyledHeaderButton: any;
7
+ export declare const StyledBody: any;
8
+ export declare const StyledDayBtn: any;
9
+ export declare const StyledWeekDaysListWrapper: any;
10
+ export declare const StyledWeekDaysHeaderItem: any;
11
+ export declare const CalendarFooterMessage: any;
@@ -1,9 +1,4 @@
1
- /// <reference types="react" />
2
- 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
- export declare const StyledCalendarWithTimeWheelWrapper: import("styled-components").StyledComponent<"div", import("@elliemae/ds-system").Theme, object & import("@elliemae/ds-system").OwnerInterface & import("@elliemae/ds-system").InnerRefInterface<"div">, never>;
4
- export declare const StyledCalendar: import("styled-components").StyledComponent<({ className }: {
5
- className?: string | undefined;
6
- }) => JSX.Element, import("@elliemae/ds-system").Theme, object & import("@elliemae/ds-system").OwnerInterface & import("@elliemae/ds-system").InnerRefInterface<({ className }: {
7
- className?: string | undefined;
8
- }) => JSX.Element>, never>;
9
- export declare const CalendarWithTimeWheelFooterMessage: import("styled-components").StyledComponent<"div", import("@elliemae/ds-system").Theme, object & import("@elliemae/ds-system").OwnerInterface & import("@elliemae/ds-system").InnerRefInterface<"div">, never>;
1
+ export declare const StyledIconTriggerButton: any;
2
+ export declare const StyledCalendarWithTimeWheelWrapper: any;
3
+ export declare const StyledCalendar: any;
4
+ export declare const CalendarWithTimeWheelFooterMessage: any;
@@ -1,24 +1,10 @@
1
- /// <reference types="react" />
2
- interface StyledWheelListItemPropsT {
3
- isCurrentListItem?: boolean;
4
- selected?: boolean;
5
- }
6
- interface StyledTimePickerContainerT {
7
- showShadow?: boolean;
8
- isControllerOnly: boolean;
9
- }
10
- 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>;
11
- export declare const StyledWheelList: import("styled-components").StyledComponent<"div", import("@elliemae/ds-system").Theme, object & import("@elliemae/ds-system").OwnerInterface & import("@elliemae/ds-system").InnerRefInterface<"div">, never>;
12
- export declare const StyledTimePickerContainer: import("styled-components").StyledComponent<"div", import("@elliemae/ds-system").Theme, StyledTimePickerContainerT & import("@elliemae/ds-system").OwnerInterface & import("@elliemae/ds-system").InnerRefInterface<"div">, never>;
13
- 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
- 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
- export declare const StyledTimePickerWheelWrapper: import("styled-components").StyledComponent<"div", import("@elliemae/ds-system").Theme, object & import("@elliemae/ds-system").OwnerInterface & import("@elliemae/ds-system").InnerRefInterface<"div">, never>;
16
- export declare const StyledTimeBtn: import("styled-components").StyledComponent<import("react").ComponentType<import("@elliemae/ds-button-v2").DSButtonV2T.Props>, import("@elliemae/ds-system").Theme, {
17
- isCurrentListItem: boolean;
18
- selected: boolean;
19
- isDisabled: boolean;
20
- } & import("@elliemae/ds-system").OwnerInterface & import("@elliemae/ds-system").InnerRefInterface<import("react").ComponentType<import("@elliemae/ds-button-v2").DSButtonV2T.Props>>, never>;
21
- 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>;
22
- 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>;
23
- export declare const TimeWheelFooterMessage: import("styled-components").StyledComponent<"div", import("@elliemae/ds-system").Theme, object & import("@elliemae/ds-system").OwnerInterface & import("@elliemae/ds-system").InnerRefInterface<"div">, never>;
24
- export {};
1
+ export declare const StyledIconTriggerButton: any;
2
+ export declare const StyledWheelList: any;
3
+ export declare const StyledTimePickerContainer: any;
4
+ export declare const StyledTimePickerHead: any;
5
+ export declare const StyledTimePickerWheelsLegend: any;
6
+ export declare const StyledTimePickerWheelWrapper: any;
7
+ export declare const StyledTimeBtn: any;
8
+ export declare const StyledWheelListItem: any;
9
+ export declare const StyledWheelChangeTimeBtn: any;
10
+ export declare const TimeWheelFooterMessage: any;
@@ -1,27 +1,16 @@
1
- /// <reference types="react" />
2
- 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
- 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
- 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>;
5
- export declare const StyledDateInput: import("styled-components").StyledComponent<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>, import("@elliemae/ds-system").Theme, object & import("@elliemae/ds-system").OwnerInterface & import("@elliemae/ds-system").InnerRefInterface<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>>, never>;
6
- export declare const StyledMonthInput: import("styled-components").StyledComponent<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>, import("@elliemae/ds-system").Theme, object & import("@elliemae/ds-system").OwnerInterface & import("@elliemae/ds-system").InnerRefInterface<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>>, never>;
7
- export declare const StyledYearInput: import("styled-components").StyledComponent<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>, import("@elliemae/ds-system").Theme, object & import("@elliemae/ds-system").OwnerInterface & import("@elliemae/ds-system").InnerRefInterface<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>>, never>;
8
- export declare const StyledHourInput: import("styled-components").StyledComponent<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>, import("@elliemae/ds-system").Theme, object & import("@elliemae/ds-system").OwnerInterface & import("@elliemae/ds-system").InnerRefInterface<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>>, never>;
9
- export declare const StyledMinuteInput: import("styled-components").StyledComponent<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>, import("@elliemae/ds-system").Theme, object & import("@elliemae/ds-system").OwnerInterface & import("@elliemae/ds-system").InnerRefInterface<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>>, never>;
10
- export declare const StyledMeridiemInput: import("styled-components").StyledComponent<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>, import("@elliemae/ds-system").Theme, object & import("@elliemae/ds-system").OwnerInterface & import("@elliemae/ds-system").InnerRefInterface<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>>, never>;
11
- export declare const StyledMin4DigitsInput: 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>;
12
- export declare const StyledInputsWrapperGrid: import("styled-components").StyledComponent<import("react").ForwardRefExoticComponent<import("@elliemae/ds-grid").DSGridT.Props & import("react").RefAttributes<HTMLDivElement>>, import("@elliemae/ds-system").Theme, {
13
- isControllerOnly: boolean;
14
- hasError: boolean;
15
- justPicker: boolean;
16
- disabled: boolean;
17
- } & import("@elliemae/ds-system").OwnerInterface & import("@elliemae/ds-system").InnerRefInterface<import("react").ForwardRefExoticComponent<import("@elliemae/ds-grid").DSGridT.Props & import("react").RefAttributes<HTMLDivElement>>>, never>;
18
- 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>;
19
- 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>;
20
- export declare const StyledPickersIconsWrapperGrid: import("styled-components").StyledComponent<import("react").ForwardRefExoticComponent<import("@elliemae/ds-grid").DSGridT.Props & import("react").RefAttributes<HTMLDivElement>>, import("@elliemae/ds-system").Theme, {
21
- isControllerOnly: boolean;
22
- hasError: boolean;
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 StyledFocusWithIn: 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>;
25
- export declare const StyledClearButton: import("styled-components").StyledComponent<import("react").ComponentType<import("@elliemae/ds-button-v2").DSButtonV2T.Props>, import("@elliemae/ds-system").Theme, {
26
- shouldDisplay: boolean;
27
- } & import("@elliemae/ds-system").OwnerInterface & import("@elliemae/ds-system").InnerRefInterface<import("react").ComponentType<import("@elliemae/ds-button-v2").DSButtonV2T.Props>>, never>;
1
+ export declare const StyledSeparator: any;
2
+ export declare const StyledColonSeparator: any;
3
+ export declare const Styled2DigitsInput: any;
4
+ export declare const StyledDateInput: any;
5
+ export declare const StyledMonthInput: any;
6
+ export declare const StyledYearInput: any;
7
+ export declare const StyledHourInput: any;
8
+ export declare const StyledMinuteInput: any;
9
+ export declare const StyledMeridiemInput: any;
10
+ export declare const StyledMin4DigitsInput: any;
11
+ export declare const StyledInputsWrapperGrid: any;
12
+ export declare const StyledDateInputsWrapperGrid: any;
13
+ export declare const StyledTimeInputsWrapperGrid: any;
14
+ export declare const StyledPickersIconsWrapperGrid: any;
15
+ export declare const StyledFocusWithIn: any;
16
+ export declare const StyledClearButton: any;
@@ -107,4 +107,4 @@ export declare namespace DSControlledDateTimePickerT {
107
107
  type InternalProps = InternalDateTimePickerProps | InternalDatePickerProps | InternalTimePickerProps;
108
108
  }
109
109
  export declare const defaultProps: DSControlledDateTimePickerT.DefaultProps;
110
- export declare const propTypes: ValidationMap<DSControlledDateTimePickerT.Props>;
110
+ export declare const propTypes: ValidationMap<any>;
@@ -1,4 +1,4 @@
1
1
  import type { DSControlledDateTimePickerT } from '../react-desc-prop-types.js';
2
- export declare const getIsDateTime: (props: DSControlledDateTimePickerT.Props | DSControlledDateTimePickerT.InternalProps) => props is DSControlledDateTimePickerT.DateTimePickerProps | DSControlledDateTimePickerT.InternalDateTimePickerProps;
2
+ export declare const getIsDateTime: (props: DSControlledDateTimePickerT.Props | DSControlledDateTimePickerT.InternalProps) => props is any;
3
3
  export declare const getIsDate: (props: DSControlledDateTimePickerT.Props | DSControlledDateTimePickerT.InternalProps) => props is DSControlledDateTimePickerT.DatePickerProps | DSControlledDateTimePickerT.InternalDatePickerProps;
4
4
  export declare const getIsTime: (props: DSControlledDateTimePickerT.Props | DSControlledDateTimePickerT.InternalProps) => props is DSControlledDateTimePickerT.TimePickerProps | DSControlledDateTimePickerT.InternalTimePickerProps;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@elliemae/ds-form-date-time-picker",
3
- "version": "3.46.4",
3
+ "version": "3.46.6",
4
4
  "license": "MIT",
5
5
  "description": "ICE MT - Dimsum - Controlled Form Date Time Picker",
6
6
  "files": [
@@ -36,21 +36,21 @@
36
36
  "indent": 4
37
37
  },
38
38
  "dependencies": {
39
- "@elliemae/ds-accessibility": "3.46.4",
40
- "@elliemae/ds-grid": "3.46.4",
41
- "@elliemae/ds-button-v2": "3.46.4",
42
- "@elliemae/ds-icons": "3.46.4",
43
- "@elliemae/ds-popperjs": "3.46.4",
44
- "@elliemae/ds-props-helpers": "3.46.4",
45
- "@elliemae/ds-system": "3.46.4",
46
- "@elliemae/ds-typescript-helpers": "3.46.4"
39
+ "@elliemae/ds-accessibility": "3.46.6",
40
+ "@elliemae/ds-button-v2": "3.46.6",
41
+ "@elliemae/ds-grid": "3.46.6",
42
+ "@elliemae/ds-icons": "3.46.6",
43
+ "@elliemae/ds-popperjs": "3.46.6",
44
+ "@elliemae/ds-props-helpers": "3.46.6",
45
+ "@elliemae/ds-typescript-helpers": "3.46.6",
46
+ "@elliemae/ds-system": "3.46.6"
47
47
  },
48
48
  "devDependencies": {
49
49
  "@elliemae/pui-cli": "9.0.0-next.50",
50
50
  "@elliemae/pui-theme": "~2.10.0",
51
51
  "styled-components": "~5.3.9",
52
52
  "styled-system": "~5.1.5",
53
- "@elliemae/ds-monorepo-devops": "3.46.4"
53
+ "@elliemae/ds-monorepo-devops": "3.46.6"
54
54
  },
55
55
  "peerDependencies": {
56
56
  "@elliemae/pui-theme": "~2.10.0",