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.modern.js
CHANGED
@@ -276,6 +276,7 @@ var FormInput = /*#__PURE__*/function (_React$Component) {
|
|
276
276
|
}, "*") : '') : '', /*#__PURE__*/React.createElement("div", {
|
277
277
|
className: style$2.form_input_container_icon
|
278
278
|
}, /*#__PURE__*/React.createElement("div", null, this.props.children), /*#__PURE__*/React.createElement("input", {
|
279
|
+
style: this.props.styleInput,
|
279
280
|
className: style$2.form_input_icon,
|
280
281
|
type: this.props.type,
|
281
282
|
placeholder: this.props.placeholder,
|
@@ -299,6 +300,7 @@ var FormInput = /*#__PURE__*/function (_React$Component) {
|
|
299
300
|
}, this.props.title, ' ', this.props.required ? /*#__PURE__*/React.createElement("span", {
|
300
301
|
className: "red"
|
301
302
|
}, "*") : '') : '', /*#__PURE__*/React.createElement("input", {
|
303
|
+
style: this.props.styleInput,
|
302
304
|
className: style$2.form_input,
|
303
305
|
type: this.props.type,
|
304
306
|
placeholder: this.props.placeholder,
|
@@ -384,9 +386,10 @@ var FormSelect = /*#__PURE__*/function (_React$Component) {
|
|
384
386
|
}, this.props.title, ' ', this.props.required ? /*#__PURE__*/React.createElement("span", {
|
385
387
|
className: "red"
|
386
388
|
}, "*") : '') : '', this.props.ignore !== true ? /*#__PURE__*/React.createElement("select", {
|
389
|
+
style: this.props.styleInput,
|
387
390
|
className: style$5.form_select,
|
388
391
|
onChange: this.props.onChange,
|
389
|
-
value: this.props.value ? this.props.value :
|
392
|
+
value: this.props.value ? this.props.value : 'DEFAULT',
|
390
393
|
name: this.props.name,
|
391
394
|
required: this.props.required,
|
392
395
|
disabled: this.props.disabled,
|
@@ -401,9 +404,10 @@ var FormSelect = /*#__PURE__*/function (_React$Component) {
|
|
401
404
|
disabled: element.disabled ? element.disabled : false
|
402
405
|
}, element.text);
|
403
406
|
}) : '') : /*#__PURE__*/React.createElement("select", {
|
407
|
+
style: this.props.styleInput,
|
404
408
|
className: style$5.form_select,
|
405
409
|
onChange: this.props.onChange,
|
406
|
-
value: this.props.value ? this.props.value :
|
410
|
+
value: this.props.value ? this.props.value : 'DEFAULT',
|
407
411
|
name: this.props.name,
|
408
412
|
required: this.props.required,
|
409
413
|
disabled: this.props.disabled
|