File tree Expand file tree Collapse file tree 1 file changed +25
-26
lines changed Expand file tree Collapse file tree 1 file changed +25
-26
lines changed Original file line number Diff line number Diff line change @@ -18,7 +18,6 @@ export interface FormFieldProps<T> {
18
18
formFieldName : keyof T
19
19
}
20
20
21
-
22
21
/**
23
22
* FormTextFieldProps extends form-related MUI TextFieldProps with Formik
24
23
* props. The passed in form is used to compute error states and configure
@@ -27,31 +26,31 @@ export interface FormFieldProps<T> {
27
26
*/
28
27
export interface FormTextFieldProps < T >
29
28
extends Pick <
30
- TextFieldProps ,
31
- | "autoComplete"
32
- | "autoFocus"
33
- | "children"
34
- | "className"
35
- | "disabled"
36
- | "fullWidth"
37
- | "helperText"
38
- | "id"
39
- | "InputLabelProps"
40
- | "InputProps"
41
- | "inputProps"
42
- | "label"
43
- | "margin"
44
- | "multiline"
45
- | "onChange"
46
- | "placeholder"
47
- | "required"
48
- | "rows"
49
- | "select"
50
- | "SelectProps"
51
- | "style"
52
- | "type"
53
- > ,
54
- FormFieldProps < T > {
29
+ TextFieldProps ,
30
+ | "autoComplete"
31
+ | "autoFocus"
32
+ | "children"
33
+ | "className"
34
+ | "disabled"
35
+ | "fullWidth"
36
+ | "helperText"
37
+ | "id"
38
+ | "InputLabelProps"
39
+ | "InputProps"
40
+ | "inputProps"
41
+ | "label"
42
+ | "margin"
43
+ | "multiline"
44
+ | "onChange"
45
+ | "placeholder"
46
+ | "required"
47
+ | "rows"
48
+ | "select"
49
+ | "SelectProps"
50
+ | "style"
51
+ | "type"
52
+ > ,
53
+ FormFieldProps < T > {
55
54
/**
56
55
* eventTransform is an optional transformer on the event data before it is
57
56
* processed by formik.
You can’t perform that action at this time.
0 commit comments