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: string;
80
- label: string;
81
- placeholder: string;
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: string;
93
- label: string;
94
- placeholder: string;
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: string;
109
- label: string;
110
- placeholder: string;
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: string;
122
- label: string;
123
- placeholder: string;
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: string;
139
- label: string;
140
- placeholder: string;
138
+ length?: string;
139
+ label?: string;
140
+ placeholder?: string;
141
141
  options: any[];
142
142
  optional?: boolean;
143
143
  customFieldsTemplate?: any;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sccoreui",
3
- "version": "4.1.2",
3
+ "version": "4.1.3",
4
4
  "description": "ui-sccore",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.js",