ui-kit-ck-consultant 0.5.207 → 0.5.210
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.css +3 -2
- package/dist/index.js +4 -2
- package/dist/index.js.map +1 -1
- package/dist/index.modern.js +4 -2
- package/dist/index.modern.js.map +1 -1
- package/package.json +1 -1
package/dist/index.modern.js
CHANGED
@@ -355,7 +355,8 @@ var FormTextarea = /*#__PURE__*/function (_React$Component) {
|
|
355
355
|
value: this.props.value,
|
356
356
|
name: this.props.name,
|
357
357
|
required: this.props.required,
|
358
|
-
disabled: this.props.disabled
|
358
|
+
disabled: this.props.disabled,
|
359
|
+
style: this.props.style
|
359
360
|
}), this.props.error ? /*#__PURE__*/React.createElement("span", {
|
360
361
|
className: style$3.form_textarea_error
|
361
362
|
}, this.props.error) : '');
|
@@ -3359,7 +3360,8 @@ var Chips = /*#__PURE__*/function (_Component) {
|
|
3359
3360
|
var _this2 = this;
|
3360
3361
|
|
3361
3362
|
return /*#__PURE__*/React.createElement("div", {
|
3362
|
-
className: classNames$1(style$r.component)
|
3363
|
+
className: classNames$1(style$r.component, this.props.className),
|
3364
|
+
style: this.props.style
|
3363
3365
|
}, /*#__PURE__*/React.createElement("div", {
|
3364
3366
|
className: classNames$1(style$r['display-chips'])
|
3365
3367
|
}, this.state.chipsList.length > 0 ? this.state.chipsList.map(function (chips, idx) {
|