sccoreui 4.1.1 → 4.1.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.
|
@@ -68,82 +68,82 @@ export interface FormComponentProps {
|
|
|
68
68
|
children: any;
|
|
69
69
|
validateOnChange: boolean;
|
|
70
70
|
validateOnBlur: boolean;
|
|
71
|
-
validateForm
|
|
72
|
-
className
|
|
73
|
-
onSubmit
|
|
71
|
+
validateForm?: any;
|
|
72
|
+
className?: string;
|
|
73
|
+
onSubmit?: any;
|
|
74
74
|
}
|
|
75
75
|
export interface TextFieldProps {
|
|
76
76
|
errors: any;
|
|
77
77
|
touched: any;
|
|
78
78
|
name: string;
|
|
79
|
-
length
|
|
80
|
-
label
|
|
81
|
-
placeholder
|
|
82
|
-
optional
|
|
83
|
-
maxLength
|
|
84
|
-
className
|
|
85
|
-
validate
|
|
86
|
-
disabled
|
|
79
|
+
length?: string;
|
|
80
|
+
label?: string;
|
|
81
|
+
placeholder?: string;
|
|
82
|
+
optional?: boolean;
|
|
83
|
+
maxLength?: number;
|
|
84
|
+
className?: string;
|
|
85
|
+
validate?: any;
|
|
86
|
+
disabled?: boolean;
|
|
87
87
|
}
|
|
88
88
|
export interface NumberFieldProps {
|
|
89
89
|
errors: any;
|
|
90
90
|
touched: any;
|
|
91
91
|
name: string;
|
|
92
|
-
length
|
|
93
|
-
label
|
|
94
|
-
placeholder
|
|
95
|
-
optional
|
|
92
|
+
length?: string;
|
|
93
|
+
label?: string;
|
|
94
|
+
placeholder?: string;
|
|
95
|
+
optional?: boolean;
|
|
96
96
|
setFieldValue: any;
|
|
97
|
-
min
|
|
98
|
-
max
|
|
99
|
-
maxLength
|
|
100
|
-
className
|
|
101
|
-
validate
|
|
102
|
-
disabled
|
|
97
|
+
min?: number;
|
|
98
|
+
max?: number;
|
|
99
|
+
maxLength?: number;
|
|
100
|
+
className?: string;
|
|
101
|
+
validate?: any;
|
|
102
|
+
disabled?: boolean;
|
|
103
103
|
}
|
|
104
104
|
export interface TextAreaFieldProps {
|
|
105
105
|
errors: any;
|
|
106
106
|
touched: any;
|
|
107
107
|
name: string;
|
|
108
|
-
length
|
|
109
|
-
label
|
|
110
|
-
placeholder
|
|
111
|
-
optional
|
|
112
|
-
values
|
|
113
|
-
className
|
|
114
|
-
maxLength
|
|
115
|
-
validate
|
|
108
|
+
length?: string;
|
|
109
|
+
label?: string;
|
|
110
|
+
placeholder?: string;
|
|
111
|
+
optional?: boolean;
|
|
112
|
+
values?: any;
|
|
113
|
+
className?: string;
|
|
114
|
+
maxLength?: number;
|
|
115
|
+
validate?: any;
|
|
116
116
|
}
|
|
117
117
|
export interface DropDownFieldProps {
|
|
118
118
|
errors: any;
|
|
119
119
|
touched: any;
|
|
120
120
|
name: string;
|
|
121
|
-
length
|
|
122
|
-
label
|
|
123
|
-
placeholder
|
|
121
|
+
length?: string;
|
|
122
|
+
label?: string;
|
|
123
|
+
placeholder?: string;
|
|
124
124
|
options: any[];
|
|
125
|
-
optional
|
|
126
|
-
customSelectedTemplate
|
|
127
|
-
customFieldsTemplate
|
|
128
|
-
optionLabel
|
|
129
|
-
optionDisabled
|
|
130
|
-
className
|
|
131
|
-
validate
|
|
132
|
-
disabled
|
|
125
|
+
optional?: boolean;
|
|
126
|
+
customSelectedTemplate?: any;
|
|
127
|
+
customFieldsTemplate?: any;
|
|
128
|
+
optionLabel?: string;
|
|
129
|
+
optionDisabled?: any;
|
|
130
|
+
className?: string;
|
|
131
|
+
validate?: any;
|
|
132
|
+
disabled?: boolean;
|
|
133
133
|
}
|
|
134
134
|
export interface MultiSelectProps {
|
|
135
135
|
errors: any;
|
|
136
136
|
touched: any;
|
|
137
137
|
name: string;
|
|
138
|
-
length
|
|
139
|
-
label
|
|
140
|
-
placeholder
|
|
138
|
+
length?: string;
|
|
139
|
+
label?: string;
|
|
140
|
+
placeholder?: string;
|
|
141
141
|
options: any[];
|
|
142
|
-
optional
|
|
143
|
-
customFieldsTemplate
|
|
144
|
-
optionLabel
|
|
145
|
-
optionDisabled
|
|
146
|
-
className
|
|
147
|
-
validate
|
|
148
|
-
disabled
|
|
142
|
+
optional?: boolean;
|
|
143
|
+
customFieldsTemplate?: any;
|
|
144
|
+
optionLabel?: string;
|
|
145
|
+
optionDisabled?: any;
|
|
146
|
+
className?: string;
|
|
147
|
+
validate?: any;
|
|
148
|
+
disabled?: boolean;
|
|
149
149
|
}
|