@elliemae/ds-form 2.0.2 → 2.1.0-rc.3
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/Checkbox/DSCheckbox.js +2 -2
- package/cjs/MenuItem/components/Section/styled.js +2 -2
- package/cjs/MenuItem/components/Separator/styled.js +2 -2
- package/cjs/MenuItem/components/SubmenuItem/index.js +1 -1
- package/cjs/MenuItem/components/styled.js +4 -9
- package/cjs/Radio/DSRadio.js +9 -4
- package/esm/Checkbox/DSCheckbox.js +2 -2
- package/esm/MenuItem/components/Section/styled.js +2 -2
- package/esm/MenuItem/components/Separator/styled.js +2 -2
- package/esm/MenuItem/components/SubmenuItem/index.js +1 -1
- package/esm/MenuItem/components/styled.js +5 -9
- package/esm/Radio/DSRadio.js +9 -4
- package/package.json +23 -23
- package/types/Checkbox/DSCheckbox.d.ts +36 -47
- package/types/Checkbox/props.d.ts +14 -14
- package/types/CheckboxGroup/DSCheckboxGroup.d.ts +12 -12
- package/types/CheckboxGroup/props.d.ts +12 -12
- package/types/ComboBox/v3/ComboBox.d.ts +2 -2
- package/types/ComboBox/v3/propTypes.d.ts +2 -2
- package/types/DateInput/DSDateInput.d.ts +32 -32
- package/types/DateInput/props.d.ts +64 -32
- package/types/DateInputV2/components/DSDateInput.d.ts +20 -20
- package/types/DateInputV2/components/props.d.ts +20 -20
- package/types/FloatingLabelInput/DSFloatingLabelInput.d.ts +38 -38
- package/types/FormItem/DSFormItemLayout.d.ts +112 -112
- package/types/FormItem/Error/DSError.d.ts +4 -4
- package/types/FormItem/defaultProps.d.ts +38 -38
- package/types/FormItem/props.d.ts +74 -74
- package/types/InputGroup/DSInputGroup.d.ts +14 -14
- package/types/InputGroup/props.d.ts +14 -14
- package/types/InputMask/DSInputMask.d.ts +54 -54
- package/types/InputMask/props.d.ts +54 -54
- package/types/InputProtected/DSInputProtected.d.ts +12 -12
- package/types/InputProtected/props.d.ts +12 -12
- package/types/LargeInputText/DSLargeInputText.d.ts +54 -54
- package/types/LargeInputText/props.d.ts +54 -54
- package/types/MenuItem/components/SubmenuItem/styled.d.ts +1 -1
- package/types/MenuItem/components/styled.d.ts +5 -3
- package/types/MenuItem/props.d.ts +3 -3
- package/types/Radio/DSRadio.d.ts +56 -46
- package/types/RadioGroup/DSRadioGroup.d.ts +12 -12
- package/types/RadioGroup/props.d.ts +12 -12
- package/types/SearchBox/DSSearchBox.d.ts +40 -40
- package/types/SearchBox/NavSearchBox.d.ts +24 -7
- package/types/SearchBox/SButton.d.ts +4 -4
- package/types/SearchBox/props.d.ts +44 -44
- package/types/TextBox/DSTextBox.d.ts +38 -38
- package/types/TimeInput/DSTimeInput.d.ts +22 -22
- package/types/Toggle/DSToggle.d.ts +22 -22
|
@@ -2,59 +2,59 @@
|
|
|
2
2
|
export declare const props: {
|
|
3
3
|
/** props injected to wrapper of page header */
|
|
4
4
|
containerProps: {
|
|
5
|
-
defaultValue
|
|
5
|
+
defaultValue(arg: import("react-desc").ReactDescPossibleDefaultValues): {
|
|
6
6
|
deprecated: import("react-desc").PropTypesDescValidator;
|
|
7
7
|
};
|
|
8
|
-
isRequired: import("react-desc").
|
|
8
|
+
isRequired: import("react-desc").PropTypesDescValue;
|
|
9
9
|
};
|
|
10
10
|
/** inner ref for input group wrapper */
|
|
11
11
|
innerRef: {
|
|
12
|
-
defaultValue
|
|
12
|
+
defaultValue(arg: import("react-desc").ReactDescPossibleDefaultValues): {
|
|
13
13
|
deprecated: import("react-desc").PropTypesDescValidator;
|
|
14
14
|
};
|
|
15
|
-
isRequired: import("react-desc").
|
|
15
|
+
isRequired: import("react-desc").PropTypesDescValue;
|
|
16
16
|
};
|
|
17
17
|
/** class for input group wrapper */
|
|
18
18
|
className: {
|
|
19
|
-
defaultValue
|
|
19
|
+
defaultValue(arg: import("react-desc").ReactDescPossibleDefaultValues): {
|
|
20
20
|
deprecated: import("react-desc").PropTypesDescValidator;
|
|
21
21
|
};
|
|
22
|
-
isRequired: import("react-desc").
|
|
22
|
+
isRequired: import("react-desc").PropTypesDescValue;
|
|
23
23
|
};
|
|
24
24
|
/**
|
|
25
25
|
* Set style for the input group
|
|
26
26
|
*/
|
|
27
27
|
style: {
|
|
28
|
-
defaultValue
|
|
28
|
+
defaultValue(arg: import("react-desc").ReactDescPossibleDefaultValues): {
|
|
29
29
|
deprecated: import("react-desc").PropTypesDescValidator;
|
|
30
30
|
};
|
|
31
|
-
isRequired: import("react-desc").
|
|
31
|
+
isRequired: import("react-desc").PropTypesDescValue;
|
|
32
32
|
};
|
|
33
33
|
/**
|
|
34
34
|
* Component to be added at the left side of the input
|
|
35
35
|
*/
|
|
36
36
|
leftAddon: {
|
|
37
|
-
defaultValue
|
|
37
|
+
defaultValue(arg: import("react-desc").ReactDescPossibleDefaultValues): {
|
|
38
38
|
deprecated: import("react-desc").PropTypesDescValidator;
|
|
39
39
|
};
|
|
40
|
-
isRequired: import("react-desc").
|
|
40
|
+
isRequired: import("react-desc").PropTypesDescValue;
|
|
41
41
|
};
|
|
42
42
|
/**
|
|
43
43
|
* Component to be added at the right side of the input
|
|
44
44
|
*/
|
|
45
45
|
rightAddon: {
|
|
46
|
-
defaultValue
|
|
46
|
+
defaultValue(arg: import("react-desc").ReactDescPossibleDefaultValues): {
|
|
47
47
|
deprecated: import("react-desc").PropTypesDescValidator;
|
|
48
48
|
};
|
|
49
|
-
isRequired: import("react-desc").
|
|
49
|
+
isRequired: import("react-desc").PropTypesDescValue;
|
|
50
50
|
};
|
|
51
51
|
/**
|
|
52
52
|
* Input components to show
|
|
53
53
|
*/
|
|
54
54
|
children: {
|
|
55
|
-
defaultValue
|
|
55
|
+
defaultValue(arg: import("react-desc").ReactDescPossibleDefaultValues): {
|
|
56
56
|
deprecated: import("react-desc").PropTypesDescValidator;
|
|
57
57
|
};
|
|
58
|
-
isRequired: import("react-desc").
|
|
58
|
+
isRequired: import("react-desc").PropTypesDescValue;
|
|
59
59
|
};
|
|
60
60
|
};
|
|
@@ -13,172 +13,172 @@ declare const DSInputMask: {
|
|
|
13
13
|
}): any;
|
|
14
14
|
propTypes: {
|
|
15
15
|
autoFocus: {
|
|
16
|
-
defaultValue
|
|
16
|
+
defaultValue(arg: import("react-desc").ReactDescPossibleDefaultValues): {
|
|
17
17
|
deprecated: import("react-desc").PropTypesDescValidator;
|
|
18
18
|
};
|
|
19
|
-
isRequired: import("react-desc").
|
|
19
|
+
isRequired: import("react-desc").PropTypesDescValue;
|
|
20
20
|
};
|
|
21
21
|
style: {
|
|
22
|
-
defaultValue
|
|
22
|
+
defaultValue(arg: import("react-desc").ReactDescPossibleDefaultValues): {
|
|
23
23
|
deprecated: import("react-desc").PropTypesDescValidator;
|
|
24
24
|
};
|
|
25
|
-
isRequired: import("react-desc").
|
|
25
|
+
isRequired: import("react-desc").PropTypesDescValue;
|
|
26
26
|
};
|
|
27
27
|
disabled: {
|
|
28
|
-
defaultValue
|
|
28
|
+
defaultValue(arg: import("react-desc").ReactDescPossibleDefaultValues): {
|
|
29
29
|
deprecated: import("react-desc").PropTypesDescValidator;
|
|
30
30
|
};
|
|
31
|
-
isRequired: import("react-desc").
|
|
31
|
+
isRequired: import("react-desc").PropTypesDescValue;
|
|
32
32
|
};
|
|
33
33
|
disableTooltip: {
|
|
34
34
|
deprecated: import("react-desc").PropTypesDescValidator;
|
|
35
35
|
};
|
|
36
36
|
className: {
|
|
37
|
-
defaultValue
|
|
37
|
+
defaultValue(arg: import("react-desc").ReactDescPossibleDefaultValues): {
|
|
38
38
|
deprecated: import("react-desc").PropTypesDescValidator;
|
|
39
39
|
};
|
|
40
|
-
isRequired: import("react-desc").
|
|
40
|
+
isRequired: import("react-desc").PropTypesDescValue;
|
|
41
41
|
};
|
|
42
42
|
name: {
|
|
43
|
-
defaultValue
|
|
43
|
+
defaultValue(arg: import("react-desc").ReactDescPossibleDefaultValues): {
|
|
44
44
|
deprecated: import("react-desc").PropTypesDescValidator;
|
|
45
45
|
};
|
|
46
|
-
isRequired: import("react-desc").
|
|
46
|
+
isRequired: import("react-desc").PropTypesDescValue;
|
|
47
47
|
};
|
|
48
48
|
maxLength: {
|
|
49
|
-
defaultValue
|
|
49
|
+
defaultValue(arg: import("react-desc").ReactDescPossibleDefaultValues): {
|
|
50
50
|
deprecated: import("react-desc").PropTypesDescValidator;
|
|
51
51
|
};
|
|
52
|
-
isRequired: import("react-desc").
|
|
52
|
+
isRequired: import("react-desc").PropTypesDescValue;
|
|
53
53
|
};
|
|
54
54
|
minLength: {
|
|
55
|
-
defaultValue
|
|
55
|
+
defaultValue(arg: import("react-desc").ReactDescPossibleDefaultValues): {
|
|
56
56
|
deprecated: import("react-desc").PropTypesDescValidator;
|
|
57
57
|
};
|
|
58
|
-
isRequired: import("react-desc").
|
|
58
|
+
isRequired: import("react-desc").PropTypesDescValue;
|
|
59
59
|
};
|
|
60
60
|
fluidWidth: {
|
|
61
|
-
defaultValue
|
|
61
|
+
defaultValue(arg: import("react-desc").ReactDescPossibleDefaultValues): {
|
|
62
62
|
deprecated: import("react-desc").PropTypesDescValidator;
|
|
63
63
|
};
|
|
64
|
-
isRequired: import("react-desc").
|
|
64
|
+
isRequired: import("react-desc").PropTypesDescValue;
|
|
65
65
|
};
|
|
66
66
|
isShowElipsisActive: {
|
|
67
67
|
deprecated: import("react-desc").PropTypesDescValidator;
|
|
68
68
|
};
|
|
69
69
|
placeholder: {
|
|
70
|
-
defaultValue
|
|
70
|
+
defaultValue(arg: import("react-desc").ReactDescPossibleDefaultValues): {
|
|
71
71
|
deprecated: import("react-desc").PropTypesDescValidator;
|
|
72
72
|
};
|
|
73
|
-
isRequired: import("react-desc").
|
|
73
|
+
isRequired: import("react-desc").PropTypesDescValue;
|
|
74
74
|
};
|
|
75
75
|
onKeyDown: {
|
|
76
|
-
defaultValue
|
|
76
|
+
defaultValue(arg: import("react-desc").ReactDescPossibleDefaultValues): {
|
|
77
77
|
deprecated: import("react-desc").PropTypesDescValidator;
|
|
78
78
|
};
|
|
79
|
-
isRequired: import("react-desc").
|
|
79
|
+
isRequired: import("react-desc").PropTypesDescValue;
|
|
80
80
|
};
|
|
81
81
|
onClick: {
|
|
82
|
-
defaultValue
|
|
82
|
+
defaultValue(arg: import("react-desc").ReactDescPossibleDefaultValues): {
|
|
83
83
|
deprecated: import("react-desc").PropTypesDescValidator;
|
|
84
84
|
};
|
|
85
|
-
isRequired: import("react-desc").
|
|
85
|
+
isRequired: import("react-desc").PropTypesDescValue;
|
|
86
86
|
};
|
|
87
87
|
onChange: {
|
|
88
|
-
defaultValue
|
|
88
|
+
defaultValue(arg: import("react-desc").ReactDescPossibleDefaultValues): {
|
|
89
89
|
deprecated: import("react-desc").PropTypesDescValidator;
|
|
90
90
|
};
|
|
91
|
-
isRequired: import("react-desc").
|
|
91
|
+
isRequired: import("react-desc").PropTypesDescValue;
|
|
92
92
|
};
|
|
93
93
|
onFocus: {
|
|
94
|
-
defaultValue
|
|
94
|
+
defaultValue(arg: import("react-desc").ReactDescPossibleDefaultValues): {
|
|
95
95
|
deprecated: import("react-desc").PropTypesDescValidator;
|
|
96
96
|
};
|
|
97
|
-
isRequired: import("react-desc").
|
|
97
|
+
isRequired: import("react-desc").PropTypesDescValue;
|
|
98
98
|
};
|
|
99
99
|
onBlur: {
|
|
100
|
-
defaultValue
|
|
100
|
+
defaultValue(arg: import("react-desc").ReactDescPossibleDefaultValues): {
|
|
101
101
|
deprecated: import("react-desc").PropTypesDescValidator;
|
|
102
102
|
};
|
|
103
|
-
isRequired: import("react-desc").
|
|
103
|
+
isRequired: import("react-desc").PropTypesDescValue;
|
|
104
104
|
};
|
|
105
105
|
onPaste: {
|
|
106
|
-
defaultValue
|
|
106
|
+
defaultValue(arg: import("react-desc").ReactDescPossibleDefaultValues): {
|
|
107
107
|
deprecated: import("react-desc").PropTypesDescValidator;
|
|
108
108
|
};
|
|
109
|
-
isRequired: import("react-desc").
|
|
109
|
+
isRequired: import("react-desc").PropTypesDescValue;
|
|
110
110
|
};
|
|
111
111
|
onKeyUp: {
|
|
112
|
-
defaultValue
|
|
112
|
+
defaultValue(arg: import("react-desc").ReactDescPossibleDefaultValues): {
|
|
113
113
|
deprecated: import("react-desc").PropTypesDescValidator;
|
|
114
114
|
};
|
|
115
|
-
isRequired: import("react-desc").
|
|
115
|
+
isRequired: import("react-desc").PropTypesDescValue;
|
|
116
116
|
};
|
|
117
117
|
value: {
|
|
118
|
-
defaultValue
|
|
118
|
+
defaultValue(arg: import("react-desc").ReactDescPossibleDefaultValues): {
|
|
119
119
|
deprecated: import("react-desc").PropTypesDescValidator;
|
|
120
120
|
};
|
|
121
|
-
isRequired: import("react-desc").
|
|
121
|
+
isRequired: import("react-desc").PropTypesDescValue;
|
|
122
122
|
};
|
|
123
123
|
hasError: {
|
|
124
|
-
defaultValue
|
|
124
|
+
defaultValue(arg: import("react-desc").ReactDescPossibleDefaultValues): {
|
|
125
125
|
deprecated: import("react-desc").PropTypesDescValidator;
|
|
126
126
|
};
|
|
127
|
-
isRequired: import("react-desc").
|
|
127
|
+
isRequired: import("react-desc").PropTypesDescValue;
|
|
128
128
|
};
|
|
129
129
|
readOnly: {
|
|
130
|
-
defaultValue
|
|
130
|
+
defaultValue(arg: import("react-desc").ReactDescPossibleDefaultValues): {
|
|
131
131
|
deprecated: import("react-desc").PropTypesDescValidator;
|
|
132
132
|
};
|
|
133
|
-
isRequired: import("react-desc").
|
|
133
|
+
isRequired: import("react-desc").PropTypesDescValue;
|
|
134
134
|
};
|
|
135
135
|
innerRef: {
|
|
136
|
-
defaultValue
|
|
136
|
+
defaultValue(arg: import("react-desc").ReactDescPossibleDefaultValues): {
|
|
137
137
|
deprecated: import("react-desc").PropTypesDescValidator;
|
|
138
138
|
};
|
|
139
|
-
isRequired: import("react-desc").
|
|
139
|
+
isRequired: import("react-desc").PropTypesDescValue;
|
|
140
140
|
};
|
|
141
141
|
type: {
|
|
142
|
-
defaultValue
|
|
142
|
+
defaultValue(arg: import("react-desc").ReactDescPossibleDefaultValues): {
|
|
143
143
|
deprecated: import("react-desc").PropTypesDescValidator;
|
|
144
144
|
};
|
|
145
|
-
isRequired: import("react-desc").
|
|
145
|
+
isRequired: import("react-desc").PropTypesDescValue;
|
|
146
146
|
};
|
|
147
147
|
clearable: {
|
|
148
|
-
defaultValue
|
|
148
|
+
defaultValue(arg: import("react-desc").ReactDescPossibleDefaultValues): {
|
|
149
149
|
deprecated: import("react-desc").PropTypesDescValidator;
|
|
150
150
|
};
|
|
151
|
-
isRequired: import("react-desc").
|
|
151
|
+
isRequired: import("react-desc").PropTypesDescValue;
|
|
152
152
|
};
|
|
153
153
|
leftComponent: {
|
|
154
|
-
defaultValue
|
|
154
|
+
defaultValue(arg: import("react-desc").ReactDescPossibleDefaultValues): {
|
|
155
155
|
deprecated: import("react-desc").PropTypesDescValidator;
|
|
156
156
|
};
|
|
157
|
-
isRequired: import("react-desc").
|
|
157
|
+
isRequired: import("react-desc").PropTypesDescValue;
|
|
158
158
|
};
|
|
159
159
|
rightComponent: {
|
|
160
|
-
defaultValue
|
|
160
|
+
defaultValue(arg: import("react-desc").ReactDescPossibleDefaultValues): {
|
|
161
161
|
deprecated: import("react-desc").PropTypesDescValidator;
|
|
162
162
|
};
|
|
163
|
-
isRequired: import("react-desc").
|
|
163
|
+
isRequired: import("react-desc").PropTypesDescValue;
|
|
164
164
|
};
|
|
165
165
|
mask: {
|
|
166
|
-
defaultValue
|
|
166
|
+
defaultValue(arg: import("react-desc").ReactDescPossibleDefaultValues): {
|
|
167
167
|
deprecated: import("react-desc").PropTypesDescValidator;
|
|
168
168
|
};
|
|
169
|
-
isRequired: import("react-desc").
|
|
169
|
+
isRequired: import("react-desc").PropTypesDescValue;
|
|
170
170
|
};
|
|
171
171
|
pipe: {
|
|
172
|
-
defaultValue
|
|
172
|
+
defaultValue(arg: import("react-desc").ReactDescPossibleDefaultValues): {
|
|
173
173
|
deprecated: import("react-desc").PropTypesDescValidator;
|
|
174
174
|
};
|
|
175
|
-
isRequired: import("react-desc").
|
|
175
|
+
isRequired: import("react-desc").PropTypesDescValue;
|
|
176
176
|
};
|
|
177
177
|
useSubfix: {
|
|
178
|
-
defaultValue
|
|
178
|
+
defaultValue(arg: import("react-desc").ReactDescPossibleDefaultValues): {
|
|
179
179
|
deprecated: import("react-desc").PropTypesDescValidator;
|
|
180
180
|
};
|
|
181
|
-
isRequired: import("react-desc").
|
|
181
|
+
isRequired: import("react-desc").PropTypesDescValue;
|
|
182
182
|
};
|
|
183
183
|
placeholderChar: {
|
|
184
184
|
deprecated: import("react-desc").PropTypesDescValidator;
|
|
@@ -2,28 +2,28 @@
|
|
|
2
2
|
export declare const inputProps: {
|
|
3
3
|
/** Should component focus automatically */
|
|
4
4
|
autoFocus: {
|
|
5
|
-
defaultValue
|
|
5
|
+
defaultValue(arg: import("react-desc").ReactDescPossibleDefaultValues): {
|
|
6
6
|
deprecated: import("react-desc").PropTypesDescValidator;
|
|
7
7
|
};
|
|
8
|
-
isRequired: import("react-desc").
|
|
8
|
+
isRequired: import("react-desc").PropTypesDescValue;
|
|
9
9
|
};
|
|
10
10
|
/**
|
|
11
11
|
* Set style for the input mask
|
|
12
12
|
*/
|
|
13
13
|
style: {
|
|
14
|
-
defaultValue
|
|
14
|
+
defaultValue(arg: import("react-desc").ReactDescPossibleDefaultValues): {
|
|
15
15
|
deprecated: import("react-desc").PropTypesDescValidator;
|
|
16
16
|
};
|
|
17
|
-
isRequired: import("react-desc").
|
|
17
|
+
isRequired: import("react-desc").PropTypesDescValue;
|
|
18
18
|
};
|
|
19
19
|
/**
|
|
20
20
|
* Whether the input mask is disabled or not
|
|
21
21
|
*/
|
|
22
22
|
disabled: {
|
|
23
|
-
defaultValue
|
|
23
|
+
defaultValue(arg: import("react-desc").ReactDescPossibleDefaultValues): {
|
|
24
24
|
deprecated: import("react-desc").PropTypesDescValidator;
|
|
25
25
|
};
|
|
26
|
-
isRequired: import("react-desc").
|
|
26
|
+
isRequired: import("react-desc").PropTypesDescValue;
|
|
27
27
|
};
|
|
28
28
|
/** disableTooltip */
|
|
29
29
|
disableTooltip: {
|
|
@@ -31,44 +31,44 @@ export declare const inputProps: {
|
|
|
31
31
|
};
|
|
32
32
|
/** css class */
|
|
33
33
|
className: {
|
|
34
|
-
defaultValue
|
|
34
|
+
defaultValue(arg: import("react-desc").ReactDescPossibleDefaultValues): {
|
|
35
35
|
deprecated: import("react-desc").PropTypesDescValidator;
|
|
36
36
|
};
|
|
37
|
-
isRequired: import("react-desc").
|
|
37
|
+
isRequired: import("react-desc").PropTypesDescValue;
|
|
38
38
|
};
|
|
39
39
|
/** html name prop for form */
|
|
40
40
|
name: {
|
|
41
|
-
defaultValue
|
|
41
|
+
defaultValue(arg: import("react-desc").ReactDescPossibleDefaultValues): {
|
|
42
42
|
deprecated: import("react-desc").PropTypesDescValidator;
|
|
43
43
|
};
|
|
44
|
-
isRequired: import("react-desc").
|
|
44
|
+
isRequired: import("react-desc").PropTypesDescValue;
|
|
45
45
|
};
|
|
46
46
|
/**
|
|
47
47
|
* Max length for the input mask
|
|
48
48
|
*/
|
|
49
49
|
maxLength: {
|
|
50
|
-
defaultValue
|
|
50
|
+
defaultValue(arg: import("react-desc").ReactDescPossibleDefaultValues): {
|
|
51
51
|
deprecated: import("react-desc").PropTypesDescValidator;
|
|
52
52
|
};
|
|
53
|
-
isRequired: import("react-desc").
|
|
53
|
+
isRequired: import("react-desc").PropTypesDescValue;
|
|
54
54
|
};
|
|
55
55
|
/**
|
|
56
56
|
* Min length for the input mask
|
|
57
57
|
*/
|
|
58
58
|
minLength: {
|
|
59
|
-
defaultValue
|
|
59
|
+
defaultValue(arg: import("react-desc").ReactDescPossibleDefaultValues): {
|
|
60
60
|
deprecated: import("react-desc").PropTypesDescValidator;
|
|
61
61
|
};
|
|
62
|
-
isRequired: import("react-desc").
|
|
62
|
+
isRequired: import("react-desc").PropTypesDescValue;
|
|
63
63
|
};
|
|
64
64
|
/**
|
|
65
65
|
* Whether to make the content of the input mask fit the container or not
|
|
66
66
|
*/
|
|
67
67
|
fluidWidth: {
|
|
68
|
-
defaultValue
|
|
68
|
+
defaultValue(arg: import("react-desc").ReactDescPossibleDefaultValues): {
|
|
69
69
|
deprecated: import("react-desc").PropTypesDescValidator;
|
|
70
70
|
};
|
|
71
|
-
isRequired: import("react-desc").
|
|
71
|
+
isRequired: import("react-desc").PropTypesDescValue;
|
|
72
72
|
};
|
|
73
73
|
/** isShowElipsisActive */
|
|
74
74
|
isShowElipsisActive: {
|
|
@@ -78,171 +78,171 @@ export declare const inputProps: {
|
|
|
78
78
|
* Component that works as placeholder
|
|
79
79
|
*/
|
|
80
80
|
placeholder: {
|
|
81
|
-
defaultValue
|
|
81
|
+
defaultValue(arg: import("react-desc").ReactDescPossibleDefaultValues): {
|
|
82
82
|
deprecated: import("react-desc").PropTypesDescValidator;
|
|
83
83
|
};
|
|
84
|
-
isRequired: import("react-desc").
|
|
84
|
+
isRequired: import("react-desc").PropTypesDescValue;
|
|
85
85
|
};
|
|
86
86
|
/**
|
|
87
87
|
* Allows a function that is triggered once a key is being pressed
|
|
88
88
|
*/
|
|
89
89
|
onKeyDown: {
|
|
90
|
-
defaultValue
|
|
90
|
+
defaultValue(arg: import("react-desc").ReactDescPossibleDefaultValues): {
|
|
91
91
|
deprecated: import("react-desc").PropTypesDescValidator;
|
|
92
92
|
};
|
|
93
|
-
isRequired: import("react-desc").
|
|
93
|
+
isRequired: import("react-desc").PropTypesDescValue;
|
|
94
94
|
};
|
|
95
95
|
/**
|
|
96
96
|
* Allows a function that is triggered once the input mask is clicked
|
|
97
97
|
*/
|
|
98
98
|
onClick: {
|
|
99
|
-
defaultValue
|
|
99
|
+
defaultValue(arg: import("react-desc").ReactDescPossibleDefaultValues): {
|
|
100
100
|
deprecated: import("react-desc").PropTypesDescValidator;
|
|
101
101
|
};
|
|
102
|
-
isRequired: import("react-desc").
|
|
102
|
+
isRequired: import("react-desc").PropTypesDescValue;
|
|
103
103
|
};
|
|
104
104
|
/**
|
|
105
105
|
* Allows a function that is triggered once the input mask changes
|
|
106
106
|
*/
|
|
107
107
|
onChange: {
|
|
108
|
-
defaultValue
|
|
108
|
+
defaultValue(arg: import("react-desc").ReactDescPossibleDefaultValues): {
|
|
109
109
|
deprecated: import("react-desc").PropTypesDescValidator;
|
|
110
110
|
};
|
|
111
|
-
isRequired: import("react-desc").
|
|
111
|
+
isRequired: import("react-desc").PropTypesDescValue;
|
|
112
112
|
};
|
|
113
113
|
/**
|
|
114
114
|
* Allows a function that is triggered once the input mask is focused
|
|
115
115
|
*/
|
|
116
116
|
onFocus: {
|
|
117
|
-
defaultValue
|
|
117
|
+
defaultValue(arg: import("react-desc").ReactDescPossibleDefaultValues): {
|
|
118
118
|
deprecated: import("react-desc").PropTypesDescValidator;
|
|
119
119
|
};
|
|
120
|
-
isRequired: import("react-desc").
|
|
120
|
+
isRequired: import("react-desc").PropTypesDescValue;
|
|
121
121
|
};
|
|
122
122
|
/**
|
|
123
123
|
* Allows a function that is triggered once the input mask loses focus
|
|
124
124
|
*/
|
|
125
125
|
onBlur: {
|
|
126
|
-
defaultValue
|
|
126
|
+
defaultValue(arg: import("react-desc").ReactDescPossibleDefaultValues): {
|
|
127
127
|
deprecated: import("react-desc").PropTypesDescValidator;
|
|
128
128
|
};
|
|
129
|
-
isRequired: import("react-desc").
|
|
129
|
+
isRequired: import("react-desc").PropTypesDescValue;
|
|
130
130
|
};
|
|
131
131
|
/**
|
|
132
132
|
* Allows a function that is triggered once the input mask is pasted
|
|
133
133
|
*/
|
|
134
134
|
onPaste: {
|
|
135
|
-
defaultValue
|
|
135
|
+
defaultValue(arg: import("react-desc").ReactDescPossibleDefaultValues): {
|
|
136
136
|
deprecated: import("react-desc").PropTypesDescValidator;
|
|
137
137
|
};
|
|
138
|
-
isRequired: import("react-desc").
|
|
138
|
+
isRequired: import("react-desc").PropTypesDescValue;
|
|
139
139
|
};
|
|
140
140
|
/**
|
|
141
141
|
* Allows a function that is triggered once in the input mask a keyboard key is released
|
|
142
142
|
*/
|
|
143
143
|
onKeyUp: {
|
|
144
|
-
defaultValue
|
|
144
|
+
defaultValue(arg: import("react-desc").ReactDescPossibleDefaultValues): {
|
|
145
145
|
deprecated: import("react-desc").PropTypesDescValidator;
|
|
146
146
|
};
|
|
147
|
-
isRequired: import("react-desc").
|
|
147
|
+
isRequired: import("react-desc").PropTypesDescValue;
|
|
148
148
|
};
|
|
149
149
|
/**
|
|
150
150
|
* Default value once the component is initialized
|
|
151
151
|
*/
|
|
152
152
|
value: {
|
|
153
|
-
defaultValue
|
|
153
|
+
defaultValue(arg: import("react-desc").ReactDescPossibleDefaultValues): {
|
|
154
154
|
deprecated: import("react-desc").PropTypesDescValidator;
|
|
155
155
|
};
|
|
156
|
-
isRequired: import("react-desc").
|
|
156
|
+
isRequired: import("react-desc").PropTypesDescValue;
|
|
157
157
|
};
|
|
158
158
|
/**
|
|
159
159
|
* Whether the input mask has error or not
|
|
160
160
|
*/
|
|
161
161
|
hasError: {
|
|
162
|
-
defaultValue
|
|
162
|
+
defaultValue(arg: import("react-desc").ReactDescPossibleDefaultValues): {
|
|
163
163
|
deprecated: import("react-desc").PropTypesDescValidator;
|
|
164
164
|
};
|
|
165
|
-
isRequired: import("react-desc").
|
|
165
|
+
isRequired: import("react-desc").PropTypesDescValue;
|
|
166
166
|
};
|
|
167
167
|
/**
|
|
168
168
|
* Whether the input mask is read only or not
|
|
169
169
|
*/
|
|
170
170
|
readOnly: {
|
|
171
|
-
defaultValue
|
|
171
|
+
defaultValue(arg: import("react-desc").ReactDescPossibleDefaultValues): {
|
|
172
172
|
deprecated: import("react-desc").PropTypesDescValidator;
|
|
173
173
|
};
|
|
174
|
-
isRequired: import("react-desc").
|
|
174
|
+
isRequired: import("react-desc").PropTypesDescValue;
|
|
175
175
|
};
|
|
176
176
|
innerRef: {
|
|
177
|
-
defaultValue
|
|
177
|
+
defaultValue(arg: import("react-desc").ReactDescPossibleDefaultValues): {
|
|
178
178
|
deprecated: import("react-desc").PropTypesDescValidator;
|
|
179
179
|
};
|
|
180
|
-
isRequired: import("react-desc").
|
|
180
|
+
isRequired: import("react-desc").PropTypesDescValue;
|
|
181
181
|
};
|
|
182
182
|
/**
|
|
183
183
|
* Type of input. Ex: 'text'
|
|
184
184
|
*/
|
|
185
185
|
type: {
|
|
186
|
-
defaultValue
|
|
186
|
+
defaultValue(arg: import("react-desc").ReactDescPossibleDefaultValues): {
|
|
187
187
|
deprecated: import("react-desc").PropTypesDescValidator;
|
|
188
188
|
};
|
|
189
|
-
isRequired: import("react-desc").
|
|
189
|
+
isRequired: import("react-desc").PropTypesDescValue;
|
|
190
190
|
};
|
|
191
191
|
/**
|
|
192
192
|
* Whether the input mask is clearable or not
|
|
193
193
|
*/
|
|
194
194
|
clearable: {
|
|
195
|
-
defaultValue
|
|
195
|
+
defaultValue(arg: import("react-desc").ReactDescPossibleDefaultValues): {
|
|
196
196
|
deprecated: import("react-desc").PropTypesDescValidator;
|
|
197
197
|
};
|
|
198
|
-
isRequired: import("react-desc").
|
|
198
|
+
isRequired: import("react-desc").PropTypesDescValue;
|
|
199
199
|
};
|
|
200
200
|
/**
|
|
201
201
|
* Component to be added at the right side of the input
|
|
202
202
|
*/
|
|
203
203
|
leftComponent: {
|
|
204
|
-
defaultValue
|
|
204
|
+
defaultValue(arg: import("react-desc").ReactDescPossibleDefaultValues): {
|
|
205
205
|
deprecated: import("react-desc").PropTypesDescValidator;
|
|
206
206
|
};
|
|
207
|
-
isRequired: import("react-desc").
|
|
207
|
+
isRequired: import("react-desc").PropTypesDescValue;
|
|
208
208
|
};
|
|
209
209
|
/**
|
|
210
210
|
* Component to be added at the right side of the input
|
|
211
211
|
*/
|
|
212
212
|
rightComponent: {
|
|
213
|
-
defaultValue
|
|
213
|
+
defaultValue(arg: import("react-desc").ReactDescPossibleDefaultValues): {
|
|
214
214
|
deprecated: import("react-desc").PropTypesDescValidator;
|
|
215
215
|
};
|
|
216
|
-
isRequired: import("react-desc").
|
|
216
|
+
isRequired: import("react-desc").PropTypesDescValue;
|
|
217
217
|
};
|
|
218
218
|
/**
|
|
219
219
|
* Mask that has to match with the input information entered
|
|
220
220
|
* ['DATE', 'PHONE', 'PHONE_INTENATIONAL', 'SSN', 'US_ZIP_CODE', 'NUMBER', 'PERCENT']
|
|
221
221
|
*/
|
|
222
222
|
mask: {
|
|
223
|
-
defaultValue
|
|
223
|
+
defaultValue(arg: import("react-desc").ReactDescPossibleDefaultValues): {
|
|
224
224
|
deprecated: import("react-desc").PropTypesDescValidator;
|
|
225
225
|
};
|
|
226
|
-
isRequired: import("react-desc").
|
|
226
|
+
isRequired: import("react-desc").PropTypesDescValue;
|
|
227
227
|
};
|
|
228
228
|
/**
|
|
229
229
|
Expects pipe functions. i.e. autoCorrectedDatePipe
|
|
230
230
|
link a docu de text-mask
|
|
231
231
|
*/
|
|
232
232
|
pipe: {
|
|
233
|
-
defaultValue
|
|
233
|
+
defaultValue(arg: import("react-desc").ReactDescPossibleDefaultValues): {
|
|
234
234
|
deprecated: import("react-desc").PropTypesDescValidator;
|
|
235
235
|
};
|
|
236
|
-
isRequired: import("react-desc").
|
|
236
|
+
isRequired: import("react-desc").PropTypesDescValue;
|
|
237
237
|
};
|
|
238
238
|
/**
|
|
239
239
|
* Put a sufix after the input mask
|
|
240
240
|
*/
|
|
241
241
|
useSubfix: {
|
|
242
|
-
defaultValue
|
|
242
|
+
defaultValue(arg: import("react-desc").ReactDescPossibleDefaultValues): {
|
|
243
243
|
deprecated: import("react-desc").PropTypesDescValidator;
|
|
244
244
|
};
|
|
245
|
-
isRequired: import("react-desc").
|
|
245
|
+
isRequired: import("react-desc").PropTypesDescValue;
|
|
246
246
|
};
|
|
247
247
|
/**
|
|
248
248
|
* The placeholder character represents the fillable spot in the mask.
|