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: any;
72
- className: string;
73
- onSubmit: any;
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: string;
80
- label: string;
81
- placeholder: string;
82
- optional: boolean;
83
- maxLength: number;
84
- className: string;
85
- validate: any;
86
- disabled: boolean;
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: string;
93
- label: string;
94
- placeholder: string;
95
- optional: boolean;
92
+ length?: string;
93
+ label?: string;
94
+ placeholder?: string;
95
+ optional?: boolean;
96
96
  setFieldValue: any;
97
- min: number;
98
- max: number;
99
- maxLength: number;
100
- className: string;
101
- validate: any;
102
- disabled: boolean;
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: string;
109
- label: string;
110
- placeholder: string;
111
- optional: boolean;
112
- values: any;
113
- className: string;
114
- maxLength: number;
115
- validate: any;
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: string;
122
- label: string;
123
- placeholder: string;
121
+ length?: string;
122
+ label?: string;
123
+ placeholder?: string;
124
124
  options: any[];
125
- optional: boolean;
126
- customSelectedTemplate: any;
127
- customFieldsTemplate: any;
128
- optionLabel: string;
129
- optionDisabled: any;
130
- className: string;
131
- validate: any;
132
- disabled: boolean;
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: string;
139
- label: string;
140
- placeholder: string;
138
+ length?: string;
139
+ label?: string;
140
+ placeholder?: string;
141
141
  options: any[];
142
- optional: boolean;
143
- customFieldsTemplate: any;
144
- optionLabel: string;
145
- optionDisabled: any;
146
- className: string;
147
- validate: any;
148
- disabled: boolean;
142
+ optional?: boolean;
143
+ customFieldsTemplate?: any;
144
+ optionLabel?: string;
145
+ optionDisabled?: any;
146
+ className?: string;
147
+ validate?: any;
148
+ disabled?: boolean;
149
149
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sccoreui",
3
- "version": "4.1.1",
3
+ "version": "4.1.3",
4
4
  "description": "ui-sccore",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.js",