@elliemae/ds-controlled-form 2.0.0-rc.1 → 2.0.0-rc.13
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/cjs/controlled-checkbox/ControlledCheckbox.js +1 -1
- package/cjs/controlled-checkbox/config/useValidateProps.js +2 -2
- package/cjs/controlled-checkbox/styles.js +1 -1
- package/cjs/controlled-date-range-picker/config/useControlledDateRangePicker.js +19 -3
- package/cjs/controlled-date-range-picker/parts/ControlledDateRangeContent.js +20 -4
- package/cjs/controlled-date-time-picker/config/useControlledDateTimePicker.js +6 -2
- package/cjs/controlled-date-time-picker/parts/ControlledDateTimePickerContent.js +18 -4
- package/esm/controlled-checkbox/ControlledCheckbox.js +1 -1
- package/esm/controlled-checkbox/config/useValidateProps.js +2 -2
- package/esm/controlled-checkbox/styles.js +1 -1
- package/esm/controlled-date-range-picker/config/useControlledDateRangePicker.js +15 -3
- package/esm/controlled-date-range-picker/parts/ControlledDateRangeContent.js +19 -4
- package/esm/controlled-date-time-picker/config/useControlledDateTimePicker.js +6 -2
- package/esm/controlled-date-time-picker/parts/ControlledDateTimePickerContent.js +18 -5
- package/package.json +16 -9
- package/types/controlled-checkbox/ControlledCheckbox.d.ts +60 -10
- package/types/controlled-checkbox/config/useValidateProps.d.ts +1 -1
- package/types/controlled-checkbox/propTypes.d.ts +55 -9
- package/types/controlled-checkbox/styles.d.ts +4 -4
- package/types/controlled-date-range-picker/ControlledDateRangePicker.d.ts +12 -2
- package/types/controlled-date-range-picker/propTypes.d.ts +7 -1
- package/types/controlled-date-time-picker/ControlledDateTimePicker.d.ts +81 -22
- package/types/controlled-date-time-picker/parts/Pickers/Calendar/Styleds.d.ts +16 -67
- package/types/controlled-date-time-picker/parts/Pickers/CalendarWithTimeWheel/Styleds.d.ts +6 -23
- package/types/controlled-date-time-picker/parts/Pickers/TimeWheel/Styleds.d.ts +16 -67
- package/types/controlled-date-time-picker/parts/Styleds.d.ts +12 -29
- package/types/controlled-date-time-picker/propTypes.d.ts +76 -21
- package/types/controlled-toggle/ControlledToggle.d.ts +78 -13
- package/types/controlled-toggle/propTypes.d.ts +73 -12
- package/types/controlled-toggle/styles.d.ts +7 -7
|
@@ -1,14 +1,60 @@
|
|
|
1
|
+
/// <reference path="../../../../../shared/typings/react-desc.d.ts" />
|
|
1
2
|
export declare const propTypes: {
|
|
2
3
|
checked: any;
|
|
3
|
-
value:
|
|
4
|
+
value: {
|
|
5
|
+
defaultValue<T = unknown>(arg: T): {
|
|
6
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
7
|
+
};
|
|
8
|
+
isRequired: import("react-desc").PropTypesDescValidator;
|
|
9
|
+
};
|
|
4
10
|
name: any;
|
|
5
|
-
label:
|
|
11
|
+
label: {
|
|
12
|
+
defaultValue<T = unknown>(arg: T): {
|
|
13
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
14
|
+
};
|
|
15
|
+
isRequired: import("react-desc").PropTypesDescValidator;
|
|
16
|
+
};
|
|
6
17
|
id: any;
|
|
7
|
-
readOnly:
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
18
|
+
readOnly: {
|
|
19
|
+
defaultValue<T = unknown>(arg: T): {
|
|
20
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
21
|
+
};
|
|
22
|
+
isRequired: import("react-desc").PropTypesDescValidator;
|
|
23
|
+
};
|
|
24
|
+
hasError: {
|
|
25
|
+
defaultValue<T = unknown>(arg: T): {
|
|
26
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
27
|
+
};
|
|
28
|
+
isRequired: import("react-desc").PropTypesDescValidator;
|
|
29
|
+
};
|
|
30
|
+
disabled: {
|
|
31
|
+
defaultValue<T = unknown>(arg: T): {
|
|
32
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
33
|
+
};
|
|
34
|
+
isRequired: import("react-desc").PropTypesDescValidator;
|
|
35
|
+
};
|
|
36
|
+
ariaControls: {
|
|
37
|
+
defaultValue<T = unknown>(arg: T): {
|
|
38
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
39
|
+
};
|
|
40
|
+
isRequired: import("react-desc").PropTypesDescValidator;
|
|
41
|
+
};
|
|
42
|
+
ariaLabel: {
|
|
43
|
+
defaultValue<T = unknown>(arg: T): {
|
|
44
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
45
|
+
};
|
|
46
|
+
isRequired: import("react-desc").PropTypesDescValidator;
|
|
47
|
+
};
|
|
48
|
+
innerRef: {
|
|
49
|
+
defaultValue<T = unknown>(arg: T): {
|
|
50
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
51
|
+
};
|
|
52
|
+
isRequired: import("react-desc").PropTypesDescValidator;
|
|
53
|
+
};
|
|
54
|
+
autoFocus: {
|
|
55
|
+
defaultValue<T = unknown>(arg: T): {
|
|
56
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
57
|
+
};
|
|
58
|
+
isRequired: import("react-desc").PropTypesDescValidator;
|
|
59
|
+
};
|
|
14
60
|
};
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { StyledCheckBoxT, StyledLabelT } from './index.d';
|
|
2
|
-
export declare const StyledContainer: import("styled-components").StyledComponent<"div",
|
|
3
|
-
export declare const StyledCheckBox: import("styled-components").StyledComponent<"span",
|
|
4
|
-
export declare const StyledInput: import("styled-components").StyledComponent<"input",
|
|
5
|
-
export declare const StyledLabel: import("styled-components").StyledComponent<"label",
|
|
2
|
+
export declare const StyledContainer: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, {}, never>;
|
|
3
|
+
export declare const StyledCheckBox: import("styled-components").StyledComponent<"span", import("styled-components").DefaultTheme, StyledCheckBoxT, never>;
|
|
4
|
+
export declare const StyledInput: import("styled-components").StyledComponent<"input", import("styled-components").DefaultTheme, {}, never>;
|
|
5
|
+
export declare const StyledLabel: import("styled-components").StyledComponent<"label", import("styled-components").DefaultTheme, StyledLabelT, never>;
|
|
@@ -1,10 +1,20 @@
|
|
|
1
|
+
/// <reference path="../../../../../shared/typings/react-desc.d.ts" />
|
|
1
2
|
/// <reference types="react" />
|
|
2
3
|
import type { DateRangePickerPropsT } from './index.d';
|
|
3
4
|
declare const DSControlledDateRangePicker: {
|
|
4
5
|
(props: DateRangePickerPropsT): JSX.Element;
|
|
5
6
|
propTypes: {
|
|
6
|
-
type:
|
|
7
|
+
type: {
|
|
8
|
+
defaultValue<T = unknown>(arg: T): {
|
|
9
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
10
|
+
};
|
|
11
|
+
isRequired: import("react-desc").PropTypesDescValidator;
|
|
12
|
+
};
|
|
7
13
|
};
|
|
8
14
|
};
|
|
9
|
-
declare const DSControlledDateRangePickerWithSchema:
|
|
15
|
+
declare const DSControlledDateRangePickerWithSchema: {
|
|
16
|
+
(props?: DateRangePickerPropsT | undefined): JSX.Element;
|
|
17
|
+
propTypes: unknown;
|
|
18
|
+
toTypescript: () => import("react-desc").TypescriptSchema;
|
|
19
|
+
};
|
|
10
20
|
export { DSControlledDateRangePickerWithSchema, DSControlledDateRangePicker };
|
|
@@ -1,3 +1,9 @@
|
|
|
1
|
+
/// <reference path="../../../../../shared/typings/react-desc.d.ts" />
|
|
1
2
|
export declare const propTypes: {
|
|
2
|
-
type:
|
|
3
|
+
type: {
|
|
4
|
+
defaultValue<T = unknown>(arg: T): {
|
|
5
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
6
|
+
};
|
|
7
|
+
isRequired: import("react-desc").PropTypesDescValidator;
|
|
8
|
+
};
|
|
3
9
|
};
|
|
@@ -1,30 +1,89 @@
|
|
|
1
|
+
/// <reference path="../../../../../shared/typings/react-desc.d.ts" />
|
|
1
2
|
/// <reference types="react" />
|
|
2
3
|
import type { DateTimePickerPropsT } from './index.d';
|
|
3
4
|
declare const DSControlledDateTimePicker: {
|
|
4
5
|
(props: DateTimePickerPropsT): JSX.Element;
|
|
5
6
|
propTypes: {
|
|
6
|
-
type:
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
7
|
+
type: {
|
|
8
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
9
|
+
};
|
|
10
|
+
disabled: {
|
|
11
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
12
|
+
};
|
|
13
|
+
isClearable: {
|
|
14
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
15
|
+
};
|
|
16
|
+
dateTime: {
|
|
17
|
+
defaultValue<T = unknown>(arg: T): {
|
|
18
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
19
|
+
};
|
|
20
|
+
isRequired: import("react-desc").PropTypesDescValidator;
|
|
21
|
+
};
|
|
22
|
+
date: {
|
|
23
|
+
defaultValue<T = unknown>(arg: T): {
|
|
24
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
25
|
+
};
|
|
26
|
+
isRequired: import("react-desc").PropTypesDescValidator;
|
|
27
|
+
};
|
|
28
|
+
time: {
|
|
29
|
+
defaultValue<T = unknown>(arg: T): {
|
|
30
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
31
|
+
};
|
|
32
|
+
isRequired: import("react-desc").PropTypesDescValidator;
|
|
33
|
+
};
|
|
34
|
+
onDateChange: {
|
|
35
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
36
|
+
};
|
|
37
|
+
onTimeChange: {
|
|
38
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
39
|
+
};
|
|
40
|
+
onDateTimeChange: {
|
|
41
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
42
|
+
};
|
|
43
|
+
onMonthChange: {
|
|
44
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
45
|
+
};
|
|
46
|
+
onDayChange: {
|
|
47
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
48
|
+
};
|
|
49
|
+
onYearChange: {
|
|
50
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
51
|
+
};
|
|
52
|
+
onHourChange: {
|
|
53
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
54
|
+
};
|
|
55
|
+
onMinuteChange: {
|
|
56
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
57
|
+
};
|
|
58
|
+
onMeridiemChange: {
|
|
59
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
60
|
+
};
|
|
61
|
+
getIsDisabledDay: {
|
|
62
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
63
|
+
};
|
|
64
|
+
getIsOutOfRangeDay: {
|
|
65
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
66
|
+
};
|
|
67
|
+
getIsDisabledTime: {
|
|
68
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
69
|
+
};
|
|
70
|
+
emptyPickerStartingMonth: {
|
|
71
|
+
defaultValue<T = unknown>(arg: T): {
|
|
72
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
73
|
+
};
|
|
74
|
+
isRequired: import("react-desc").PropTypesDescValidator;
|
|
75
|
+
};
|
|
76
|
+
onCalendarOpenFocusedDay: {
|
|
77
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
78
|
+
};
|
|
79
|
+
minutesInterval: {
|
|
80
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
81
|
+
};
|
|
27
82
|
};
|
|
28
83
|
};
|
|
29
|
-
declare const DSControlledDateTimePickerWithSchema:
|
|
84
|
+
declare const DSControlledDateTimePickerWithSchema: {
|
|
85
|
+
(props?: DateTimePickerPropsT | undefined): JSX.Element;
|
|
86
|
+
propTypes: unknown;
|
|
87
|
+
toTypescript: () => import("react-desc").TypescriptSchema;
|
|
88
|
+
};
|
|
30
89
|
export { DSControlledDateTimePickerWithSchema, DSControlledDateTimePicker };
|
|
@@ -1,73 +1,22 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
2
|
export declare const StyledIconTriggerButton: import("styled-components").StyledComponent<{
|
|
3
|
-
(props: import("@elliemae/ds-button/types/v2/
|
|
4
|
-
propTypes:
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
size: any;
|
|
8
|
-
disabled: any;
|
|
9
|
-
onClick: any;
|
|
10
|
-
onKeyDown: any;
|
|
11
|
-
onBlur: any;
|
|
12
|
-
onFocus: any;
|
|
13
|
-
className: any;
|
|
14
|
-
tabIndex: any;
|
|
15
|
-
innerRef: any;
|
|
16
|
-
'aria-label': any;
|
|
17
|
-
'aria-pressed': any;
|
|
18
|
-
'data-testid': any;
|
|
19
|
-
role: any;
|
|
20
|
-
children: any;
|
|
21
|
-
};
|
|
22
|
-
}, any, {}, never>;
|
|
23
|
-
export declare const StyledShadowWrapper: import("styled-components").StyledComponent<"div", any, {
|
|
3
|
+
(props: import("@elliemae/ds-button/types/v2/propTypes").DSButtonPropsT): JSX.Element;
|
|
4
|
+
propTypes: import("react").WeakValidationMap<unknown>;
|
|
5
|
+
}, import("styled-components").DefaultTheme, {}, never>;
|
|
6
|
+
export declare const StyledShadowWrapper: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, {
|
|
24
7
|
isControllerOnly: boolean;
|
|
25
8
|
}, never>;
|
|
26
|
-
export declare const StyledCalendarWrapper: import("styled-components").StyledComponent<"div",
|
|
27
|
-
export declare const StyledHeader: import("styled-components").StyledComponent<"section",
|
|
9
|
+
export declare const StyledCalendarWrapper: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, {}, never>;
|
|
10
|
+
export declare const StyledHeader: import("styled-components").StyledComponent<"section", import("styled-components").DefaultTheme, {}, never>;
|
|
28
11
|
export declare const StyledHeaderButton: import("styled-components").StyledComponent<{
|
|
29
|
-
(props: import("@elliemae/ds-button/types/v2/
|
|
30
|
-
propTypes:
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
size: any;
|
|
34
|
-
disabled: any;
|
|
35
|
-
onClick: any;
|
|
36
|
-
onKeyDown: any;
|
|
37
|
-
onBlur: any;
|
|
38
|
-
onFocus: any;
|
|
39
|
-
className: any;
|
|
40
|
-
tabIndex: any;
|
|
41
|
-
innerRef: any;
|
|
42
|
-
'aria-label': any;
|
|
43
|
-
'aria-pressed': any;
|
|
44
|
-
'data-testid': any;
|
|
45
|
-
role: any;
|
|
46
|
-
children: any;
|
|
47
|
-
};
|
|
48
|
-
}, any, {}, never>;
|
|
49
|
-
export declare const StyledBody: import("styled-components").StyledComponent<"section", any, {}, never>;
|
|
12
|
+
(props: import("@elliemae/ds-button/types/v2/propTypes").DSButtonPropsT): JSX.Element;
|
|
13
|
+
propTypes: import("react").WeakValidationMap<unknown>;
|
|
14
|
+
}, import("styled-components").DefaultTheme, {}, never>;
|
|
15
|
+
export declare const StyledBody: import("styled-components").StyledComponent<"section", import("styled-components").DefaultTheme, {}, never>;
|
|
50
16
|
export declare const StyledDayBtn: import("styled-components").StyledComponent<{
|
|
51
|
-
(props: import("@elliemae/ds-button/types/v2/
|
|
52
|
-
propTypes:
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
onClick: any;
|
|
58
|
-
onKeyDown: any;
|
|
59
|
-
onBlur: any;
|
|
60
|
-
onFocus: any;
|
|
61
|
-
className: any;
|
|
62
|
-
tabIndex: any;
|
|
63
|
-
innerRef: any;
|
|
64
|
-
'aria-label': any;
|
|
65
|
-
'aria-pressed': any;
|
|
66
|
-
'data-testid': any;
|
|
67
|
-
role: any;
|
|
68
|
-
children: any;
|
|
69
|
-
};
|
|
70
|
-
}, any, {}, never>;
|
|
71
|
-
export declare const StyledWeekDaysListWrapper: import("styled-components").StyledComponent<import("react").ForwardRefExoticComponent<import("@elliemae/ds-grid/types/types").GridPropsT & import("react").RefAttributes<HTMLDivElement>>, any, {}, never>;
|
|
72
|
-
export declare const StyledWeekDaysHeaderItem: import("styled-components").StyledComponent<"div", any, {}, never>;
|
|
73
|
-
export declare const CalendarFooterMessage: import("styled-components").StyledComponent<"footer", any, {}, never>;
|
|
17
|
+
(props: import("@elliemae/ds-button/types/v2/propTypes").DSButtonPropsT): JSX.Element;
|
|
18
|
+
propTypes: import("react").WeakValidationMap<unknown>;
|
|
19
|
+
}, import("styled-components").DefaultTheme, {}, never>;
|
|
20
|
+
export declare const StyledWeekDaysListWrapper: import("styled-components").StyledComponent<import("react").ForwardRefExoticComponent<import("@elliemae/ds-grid/types/types").GridPropsT & import("react").RefAttributes<HTMLDivElement>>, import("styled-components").DefaultTheme, {}, never>;
|
|
21
|
+
export declare const StyledWeekDaysHeaderItem: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, {}, never>;
|
|
22
|
+
export declare const CalendarFooterMessage: import("styled-components").StyledComponent<"footer", import("styled-components").DefaultTheme, {}, never>;
|
|
@@ -1,29 +1,12 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
2
|
export declare const StyledIconTriggerButton: import("styled-components").StyledComponent<{
|
|
3
|
-
(props: import("@elliemae/ds-button/types/v2/
|
|
4
|
-
propTypes:
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
size: any;
|
|
8
|
-
disabled: any;
|
|
9
|
-
onClick: any;
|
|
10
|
-
onKeyDown: any;
|
|
11
|
-
onBlur: any;
|
|
12
|
-
onFocus: any;
|
|
13
|
-
className: any;
|
|
14
|
-
tabIndex: any;
|
|
15
|
-
innerRef: any;
|
|
16
|
-
'aria-label': any;
|
|
17
|
-
'aria-pressed': any;
|
|
18
|
-
'data-testid': any;
|
|
19
|
-
role: any;
|
|
20
|
-
children: any;
|
|
21
|
-
};
|
|
22
|
-
}, any, {}, never>;
|
|
23
|
-
export declare const StyledCalendarWithTimeWheelWrapper: import("styled-components").StyledComponent<"div", any, {
|
|
3
|
+
(props: import("@elliemae/ds-button/types/v2/propTypes").DSButtonPropsT): JSX.Element;
|
|
4
|
+
propTypes: import("react").WeakValidationMap<unknown>;
|
|
5
|
+
}, import("styled-components").DefaultTheme, {}, never>;
|
|
6
|
+
export declare const StyledCalendarWithTimeWheelWrapper: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, {
|
|
24
7
|
isControllerOnly: boolean;
|
|
25
8
|
}, never>;
|
|
26
9
|
export declare const StyledCalendar: import("styled-components").StyledComponent<({ className }: {
|
|
27
10
|
className?: string | undefined;
|
|
28
|
-
}) => JSX.Element,
|
|
29
|
-
export declare const CalendarWithTimeWheelFooterMessage: import("styled-components").StyledComponent<"footer",
|
|
11
|
+
}) => JSX.Element, import("styled-components").DefaultTheme, {}, never>;
|
|
12
|
+
export declare const CalendarWithTimeWheelFooterMessage: import("styled-components").StyledComponent<"footer", import("styled-components").DefaultTheme, {}, never>;
|
|
@@ -1,79 +1,28 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
2
|
export declare const StyledIconTriggerButton: import("styled-components").StyledComponent<{
|
|
3
|
-
(props: import("@elliemae/ds-button/types/v2/
|
|
4
|
-
propTypes:
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
size: any;
|
|
8
|
-
disabled: any;
|
|
9
|
-
onClick: any;
|
|
10
|
-
onKeyDown: any;
|
|
11
|
-
onBlur: any;
|
|
12
|
-
onFocus: any;
|
|
13
|
-
className: any;
|
|
14
|
-
tabIndex: any;
|
|
15
|
-
innerRef: any;
|
|
16
|
-
'aria-label': any;
|
|
17
|
-
'aria-pressed': any;
|
|
18
|
-
'data-testid': any;
|
|
19
|
-
role: any;
|
|
20
|
-
children: any;
|
|
21
|
-
};
|
|
22
|
-
}, any, {}, never>;
|
|
23
|
-
export declare const StyledWheelList: import("styled-components").StyledComponent<"div", any, {}, never>;
|
|
3
|
+
(props: import("@elliemae/ds-button/types/v2/propTypes").DSButtonPropsT): JSX.Element;
|
|
4
|
+
propTypes: import("react").WeakValidationMap<unknown>;
|
|
5
|
+
}, import("styled-components").DefaultTheme, {}, never>;
|
|
6
|
+
export declare const StyledWheelList: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, {}, never>;
|
|
24
7
|
interface StyledWheelListItemPropsT {
|
|
25
8
|
isCurrentListItem?: boolean;
|
|
26
9
|
selected?: boolean;
|
|
27
10
|
}
|
|
28
|
-
export declare const StyledTimePickerContainer: import("styled-components").StyledComponent<"div",
|
|
11
|
+
export declare const StyledTimePickerContainer: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, {
|
|
29
12
|
showShadow?: boolean | undefined;
|
|
30
13
|
isControllerOnly: boolean;
|
|
31
14
|
}, never>;
|
|
32
|
-
export declare const StyledTimePickerHead: import("styled-components").StyledComponent<import("react").ForwardRefExoticComponent<import("@elliemae/ds-grid/types/types").GridPropsT & import("react").RefAttributes<HTMLDivElement>>,
|
|
33
|
-
export declare const StyledTimePickerWheelsLegend: import("styled-components").StyledComponent<"div",
|
|
34
|
-
export declare const StyledTimePickerWheelWrapper: import("styled-components").StyledComponent<"div",
|
|
15
|
+
export declare const StyledTimePickerHead: import("styled-components").StyledComponent<import("react").ForwardRefExoticComponent<import("@elliemae/ds-grid/types/types").GridPropsT & import("react").RefAttributes<HTMLDivElement>>, import("styled-components").DefaultTheme, {}, never>;
|
|
16
|
+
export declare const StyledTimePickerWheelsLegend: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, {}, never>;
|
|
17
|
+
export declare const StyledTimePickerWheelWrapper: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, {}, never>;
|
|
35
18
|
export declare const StyledTimeBtn: import("styled-components").StyledComponent<{
|
|
36
|
-
(props: import("@elliemae/ds-button/types/v2/
|
|
37
|
-
propTypes:
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
size: any;
|
|
41
|
-
disabled: any;
|
|
42
|
-
onClick: any;
|
|
43
|
-
onKeyDown: any;
|
|
44
|
-
onBlur: any;
|
|
45
|
-
onFocus: any;
|
|
46
|
-
className: any;
|
|
47
|
-
tabIndex: any;
|
|
48
|
-
innerRef: any;
|
|
49
|
-
'aria-label': any;
|
|
50
|
-
'aria-pressed': any;
|
|
51
|
-
'data-testid': any;
|
|
52
|
-
role: any;
|
|
53
|
-
children: any;
|
|
54
|
-
};
|
|
55
|
-
}, any, {}, never>;
|
|
56
|
-
export declare const StyledWheelListItem: import("styled-components").StyledComponent<"div", any, StyledWheelListItemPropsT, never>;
|
|
19
|
+
(props: import("@elliemae/ds-button/types/v2/propTypes").DSButtonPropsT): JSX.Element;
|
|
20
|
+
propTypes: import("react").WeakValidationMap<unknown>;
|
|
21
|
+
}, import("styled-components").DefaultTheme, {}, never>;
|
|
22
|
+
export declare const StyledWheelListItem: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, StyledWheelListItemPropsT, never>;
|
|
57
23
|
export declare const StyledWheelChangeTimeBtn: import("styled-components").StyledComponent<{
|
|
58
|
-
(props: import("@elliemae/ds-button/types/v2/
|
|
59
|
-
propTypes:
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
size: any;
|
|
63
|
-
disabled: any;
|
|
64
|
-
onClick: any;
|
|
65
|
-
onKeyDown: any;
|
|
66
|
-
onBlur: any;
|
|
67
|
-
onFocus: any;
|
|
68
|
-
className: any;
|
|
69
|
-
tabIndex: any;
|
|
70
|
-
innerRef: any;
|
|
71
|
-
'aria-label': any;
|
|
72
|
-
'aria-pressed': any;
|
|
73
|
-
'data-testid': any;
|
|
74
|
-
role: any;
|
|
75
|
-
children: any;
|
|
76
|
-
};
|
|
77
|
-
}, any, {}, never>;
|
|
78
|
-
export declare const TimeWheelFooterMessage: import("styled-components").StyledComponent<"footer", any, {}, never>;
|
|
24
|
+
(props: import("@elliemae/ds-button/types/v2/propTypes").DSButtonPropsT): JSX.Element;
|
|
25
|
+
propTypes: import("react").WeakValidationMap<unknown>;
|
|
26
|
+
}, import("styled-components").DefaultTheme, {}, never>;
|
|
27
|
+
export declare const TimeWheelFooterMessage: import("styled-components").StyledComponent<"footer", import("styled-components").DefaultTheme, {}, never>;
|
|
79
28
|
export {};
|
|
@@ -1,33 +1,16 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
|
-
export declare const StyledSeparator: import("styled-components").StyledComponent<import("react").ForwardRefExoticComponent<import("@elliemae/ds-grid/types/types").GridPropsT & import("react").RefAttributes<HTMLDivElement>>,
|
|
3
|
-
export declare const StyledColonSeparator: import("styled-components").StyledComponent<import("react").ForwardRefExoticComponent<import("@elliemae/ds-grid/types/types").GridPropsT & import("react").RefAttributes<HTMLDivElement>>,
|
|
4
|
-
export declare const Styled2DigitsInput: import("styled-components").StyledComponent<"input",
|
|
5
|
-
export declare const StyledMin4DigitsInput: import("styled-components").StyledComponent<"input",
|
|
6
|
-
export declare const StyledInputsWrapperGrid: import("styled-components").StyledComponent<import("react").ForwardRefExoticComponent<import("@elliemae/ds-grid/types/types").GridPropsT & import("react").RefAttributes<HTMLDivElement>>,
|
|
7
|
-
export declare const StyledDateInputsWrapperGrid: import("styled-components").StyledComponent<"div",
|
|
8
|
-
export declare const StyledTimeInputsWrapperGrid: import("styled-components").StyledComponent<"div",
|
|
9
|
-
export declare const StyledPickersIconsWrapperGrid: import("styled-components").StyledComponent<import("react").ForwardRefExoticComponent<import("@elliemae/ds-grid/types/types").GridPropsT & import("react").RefAttributes<HTMLDivElement>>,
|
|
2
|
+
export declare const StyledSeparator: import("styled-components").StyledComponent<import("react").ForwardRefExoticComponent<import("@elliemae/ds-grid/types/types").GridPropsT & import("react").RefAttributes<HTMLDivElement>>, import("styled-components").DefaultTheme, {}, never>;
|
|
3
|
+
export declare const StyledColonSeparator: import("styled-components").StyledComponent<import("react").ForwardRefExoticComponent<import("@elliemae/ds-grid/types/types").GridPropsT & import("react").RefAttributes<HTMLDivElement>>, import("styled-components").DefaultTheme, {}, never>;
|
|
4
|
+
export declare const Styled2DigitsInput: import("styled-components").StyledComponent<"input", import("styled-components").DefaultTheme, {}, never>;
|
|
5
|
+
export declare const StyledMin4DigitsInput: import("styled-components").StyledComponent<"input", import("styled-components").DefaultTheme, {}, never>;
|
|
6
|
+
export declare const StyledInputsWrapperGrid: import("styled-components").StyledComponent<import("react").ForwardRefExoticComponent<import("@elliemae/ds-grid/types/types").GridPropsT & import("react").RefAttributes<HTMLDivElement>>, import("styled-components").DefaultTheme, {}, never>;
|
|
7
|
+
export declare const StyledDateInputsWrapperGrid: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, {}, never>;
|
|
8
|
+
export declare const StyledTimeInputsWrapperGrid: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, {}, never>;
|
|
9
|
+
export declare const StyledPickersIconsWrapperGrid: import("styled-components").StyledComponent<import("react").ForwardRefExoticComponent<import("@elliemae/ds-grid/types/types").GridPropsT & import("react").RefAttributes<HTMLDivElement>>, import("styled-components").DefaultTheme, {
|
|
10
10
|
isControllerOnly: boolean;
|
|
11
11
|
}, never>;
|
|
12
|
-
export declare const StyledFocusWithIn: import("styled-components").StyledComponent<import("react").ForwardRefExoticComponent<import("@elliemae/ds-grid/types/types").GridPropsT & import("react").RefAttributes<HTMLDivElement>>,
|
|
12
|
+
export declare const StyledFocusWithIn: import("styled-components").StyledComponent<import("react").ForwardRefExoticComponent<import("@elliemae/ds-grid/types/types").GridPropsT & import("react").RefAttributes<HTMLDivElement>>, import("styled-components").DefaultTheme, {}, never>;
|
|
13
13
|
export declare const StyledClearButton: import("styled-components").StyledComponent<{
|
|
14
|
-
(props: import("@elliemae/ds-button/types/v2/
|
|
15
|
-
propTypes:
|
|
16
|
-
|
|
17
|
-
buttonType: any;
|
|
18
|
-
size: any;
|
|
19
|
-
disabled: any;
|
|
20
|
-
onClick: any;
|
|
21
|
-
onKeyDown: any;
|
|
22
|
-
onBlur: any;
|
|
23
|
-
onFocus: any;
|
|
24
|
-
className: any;
|
|
25
|
-
tabIndex: any;
|
|
26
|
-
innerRef: any;
|
|
27
|
-
'aria-label': any;
|
|
28
|
-
'aria-pressed': any;
|
|
29
|
-
'data-testid': any;
|
|
30
|
-
role: any;
|
|
31
|
-
children: any;
|
|
32
|
-
};
|
|
33
|
-
}, any, {}, never>;
|
|
14
|
+
(props: import("@elliemae/ds-button/types/v2/propTypes").DSButtonPropsT): JSX.Element;
|
|
15
|
+
propTypes: import("react").WeakValidationMap<unknown>;
|
|
16
|
+
}, import("styled-components").DefaultTheme, {}, never>;
|
|
@@ -1,23 +1,78 @@
|
|
|
1
|
+
/// <reference path="../../../../../shared/typings/react-desc.d.ts" />
|
|
1
2
|
export declare const propTypes: {
|
|
2
|
-
type:
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
3
|
+
type: {
|
|
4
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
5
|
+
};
|
|
6
|
+
disabled: {
|
|
7
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
8
|
+
};
|
|
9
|
+
isClearable: {
|
|
10
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
11
|
+
};
|
|
12
|
+
dateTime: {
|
|
13
|
+
defaultValue<T = unknown>(arg: T): {
|
|
14
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
15
|
+
};
|
|
16
|
+
isRequired: import("react-desc").PropTypesDescValidator;
|
|
17
|
+
};
|
|
18
|
+
date: {
|
|
19
|
+
defaultValue<T = unknown>(arg: T): {
|
|
20
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
21
|
+
};
|
|
22
|
+
isRequired: import("react-desc").PropTypesDescValidator;
|
|
23
|
+
};
|
|
24
|
+
time: {
|
|
25
|
+
defaultValue<T = unknown>(arg: T): {
|
|
26
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
27
|
+
};
|
|
28
|
+
isRequired: import("react-desc").PropTypesDescValidator;
|
|
29
|
+
};
|
|
30
|
+
onDateChange: {
|
|
31
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
32
|
+
};
|
|
33
|
+
onTimeChange: {
|
|
34
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
35
|
+
};
|
|
36
|
+
onDateTimeChange: {
|
|
37
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
38
|
+
};
|
|
39
|
+
onMonthChange: {
|
|
40
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
41
|
+
};
|
|
42
|
+
onDayChange: {
|
|
43
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
44
|
+
};
|
|
45
|
+
onYearChange: {
|
|
46
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
47
|
+
};
|
|
48
|
+
onHourChange: {
|
|
49
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
50
|
+
};
|
|
51
|
+
onMinuteChange: {
|
|
52
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
53
|
+
};
|
|
54
|
+
onMeridiemChange: {
|
|
55
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
56
|
+
};
|
|
57
|
+
getIsDisabledDay: {
|
|
58
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
59
|
+
};
|
|
60
|
+
getIsOutOfRangeDay: {
|
|
61
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
62
|
+
};
|
|
63
|
+
getIsDisabledTime: {
|
|
64
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
65
|
+
};
|
|
66
|
+
emptyPickerStartingMonth: {
|
|
67
|
+
defaultValue<T = unknown>(arg: T): {
|
|
68
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
69
|
+
};
|
|
70
|
+
isRequired: import("react-desc").PropTypesDescValidator;
|
|
71
|
+
};
|
|
72
|
+
onCalendarOpenFocusedDay: {
|
|
73
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
74
|
+
};
|
|
75
|
+
minutesInterval: {
|
|
76
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
77
|
+
};
|
|
23
78
|
};
|