sccoreui 4.1.2 → 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.
|
@@ -76,9 +76,9 @@ export interface TextFieldProps {
|
|
|
76
76
|
errors: any;
|
|
77
77
|
touched: any;
|
|
78
78
|
name: string;
|
|
79
|
-
length
|
|
80
|
-
label
|
|
81
|
-
placeholder
|
|
79
|
+
length?: string;
|
|
80
|
+
label?: string;
|
|
81
|
+
placeholder?: string;
|
|
82
82
|
optional?: boolean;
|
|
83
83
|
maxLength?: number;
|
|
84
84
|
className?: string;
|
|
@@ -89,9 +89,9 @@ export interface NumberFieldProps {
|
|
|
89
89
|
errors: any;
|
|
90
90
|
touched: any;
|
|
91
91
|
name: string;
|
|
92
|
-
length
|
|
93
|
-
label
|
|
94
|
-
placeholder
|
|
92
|
+
length?: string;
|
|
93
|
+
label?: string;
|
|
94
|
+
placeholder?: string;
|
|
95
95
|
optional?: boolean;
|
|
96
96
|
setFieldValue: any;
|
|
97
97
|
min?: number;
|
|
@@ -105,9 +105,9 @@ export interface TextAreaFieldProps {
|
|
|
105
105
|
errors: any;
|
|
106
106
|
touched: any;
|
|
107
107
|
name: string;
|
|
108
|
-
length
|
|
109
|
-
label
|
|
110
|
-
placeholder
|
|
108
|
+
length?: string;
|
|
109
|
+
label?: string;
|
|
110
|
+
placeholder?: string;
|
|
111
111
|
optional?: boolean;
|
|
112
112
|
values?: any;
|
|
113
113
|
className?: string;
|
|
@@ -118,9 +118,9 @@ 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
125
|
optional?: boolean;
|
|
126
126
|
customSelectedTemplate?: any;
|
|
@@ -135,9 +135,9 @@ 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
142
|
optional?: boolean;
|
|
143
143
|
customFieldsTemplate?: any;
|