sccoreui 4.1.1 → 4.1.2
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,9 +68,9 @@ 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;
|
|
@@ -79,11 +79,11 @@ export interface TextFieldProps {
|
|
|
79
79
|
length: string;
|
|
80
80
|
label: string;
|
|
81
81
|
placeholder: string;
|
|
82
|
-
optional
|
|
83
|
-
maxLength
|
|
84
|
-
className
|
|
85
|
-
validate
|
|
86
|
-
disabled
|
|
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;
|
|
@@ -92,14 +92,14 @@ export interface NumberFieldProps {
|
|
|
92
92
|
length: string;
|
|
93
93
|
label: string;
|
|
94
94
|
placeholder: string;
|
|
95
|
-
optional
|
|
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;
|
|
@@ -108,11 +108,11 @@ export interface TextAreaFieldProps {
|
|
|
108
108
|
length: string;
|
|
109
109
|
label: string;
|
|
110
110
|
placeholder: string;
|
|
111
|
-
optional
|
|
112
|
-
values
|
|
113
|
-
className
|
|
114
|
-
maxLength
|
|
115
|
-
validate
|
|
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;
|
|
@@ -122,14 +122,14 @@ export interface DropDownFieldProps {
|
|
|
122
122
|
label: string;
|
|
123
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;
|
|
@@ -139,11 +139,11 @@ export interface MultiSelectProps {
|
|
|
139
139
|
label: string;
|
|
140
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
|
}
|