ui-kit-ck-consultant 0.5.212 → 0.5.213
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.
- package/dist/index.js +6 -2
- package/dist/index.js.map +1 -1
- package/dist/index.modern.js +6 -2
- package/dist/index.modern.js.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
@@ -279,6 +279,7 @@ var FormInput = /*#__PURE__*/function (_React$Component) {
|
|
279
279
|
}, "*") : '') : '', /*#__PURE__*/React__default.createElement("div", {
|
280
280
|
className: style$2.form_input_container_icon
|
281
281
|
}, /*#__PURE__*/React__default.createElement("div", null, this.props.children), /*#__PURE__*/React__default.createElement("input", {
|
282
|
+
style: this.props.styleInput,
|
282
283
|
className: style$2.form_input_icon,
|
283
284
|
type: this.props.type,
|
284
285
|
placeholder: this.props.placeholder,
|
@@ -302,6 +303,7 @@ var FormInput = /*#__PURE__*/function (_React$Component) {
|
|
302
303
|
}, this.props.title, ' ', this.props.required ? /*#__PURE__*/React__default.createElement("span", {
|
303
304
|
className: "red"
|
304
305
|
}, "*") : '') : '', /*#__PURE__*/React__default.createElement("input", {
|
306
|
+
style: this.props.styleInput,
|
305
307
|
className: style$2.form_input,
|
306
308
|
type: this.props.type,
|
307
309
|
placeholder: this.props.placeholder,
|
@@ -387,9 +389,10 @@ var FormSelect = /*#__PURE__*/function (_React$Component) {
|
|
387
389
|
}, this.props.title, ' ', this.props.required ? /*#__PURE__*/React__default.createElement("span", {
|
388
390
|
className: "red"
|
389
391
|
}, "*") : '') : '', this.props.ignore !== true ? /*#__PURE__*/React__default.createElement("select", {
|
392
|
+
style: this.props.styleInput,
|
390
393
|
className: style$5.form_select,
|
391
394
|
onChange: this.props.onChange,
|
392
|
-
value: this.props.value ? this.props.value :
|
395
|
+
value: this.props.value ? this.props.value : 'DEFAULT',
|
393
396
|
name: this.props.name,
|
394
397
|
required: this.props.required,
|
395
398
|
disabled: this.props.disabled,
|
@@ -404,9 +407,10 @@ var FormSelect = /*#__PURE__*/function (_React$Component) {
|
|
404
407
|
disabled: element.disabled ? element.disabled : false
|
405
408
|
}, element.text);
|
406
409
|
}) : '') : /*#__PURE__*/React__default.createElement("select", {
|
410
|
+
style: this.props.styleInput,
|
407
411
|
className: style$5.form_select,
|
408
412
|
onChange: this.props.onChange,
|
409
|
-
value: this.props.value ? this.props.value :
|
413
|
+
value: this.props.value ? this.props.value : 'DEFAULT',
|
410
414
|
name: this.props.name,
|
411
415
|
required: this.props.required,
|
412
416
|
disabled: this.props.disabled
|