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.css
CHANGED
@@ -2611,11 +2611,11 @@
|
|
2611
2611
|
z-index: 5;
|
2612
2612
|
}
|
2613
2613
|
|
2614
|
-
._2RiQY span:first-child{
|
2614
|
+
._2RiQY span:first-child {
|
2615
2615
|
text-align: center;
|
2616
2616
|
}
|
2617
2617
|
|
2618
|
-
._2RiQY span:last-child{
|
2618
|
+
._2RiQY span:last-child {
|
2619
2619
|
font-weight: bold;
|
2620
2620
|
}
|
2621
2621
|
|
@@ -2680,6 +2680,7 @@
|
|
2680
2680
|
}
|
2681
2681
|
|
2682
2682
|
._uTVeE {
|
2683
|
+
flex-shrink: 0;
|
2683
2684
|
margin: auto 0;
|
2684
2685
|
display: flex;
|
2685
2686
|
width: 30px;
|
package/dist/index.js
CHANGED
@@ -358,7 +358,8 @@ var FormTextarea = /*#__PURE__*/function (_React$Component) {
|
|
358
358
|
value: this.props.value,
|
359
359
|
name: this.props.name,
|
360
360
|
required: this.props.required,
|
361
|
-
disabled: this.props.disabled
|
361
|
+
disabled: this.props.disabled,
|
362
|
+
style: this.props.style
|
362
363
|
}), this.props.error ? /*#__PURE__*/React__default.createElement("span", {
|
363
364
|
className: style$3.form_textarea_error
|
364
365
|
}, this.props.error) : '');
|
@@ -3362,7 +3363,8 @@ var Chips = /*#__PURE__*/function (_Component) {
|
|
3362
3363
|
var _this2 = this;
|
3363
3364
|
|
3364
3365
|
return /*#__PURE__*/React__default.createElement("div", {
|
3365
|
-
className: classNames$1(style$r.component)
|
3366
|
+
className: classNames$1(style$r.component, this.props.className),
|
3367
|
+
style: this.props.style
|
3366
3368
|
}, /*#__PURE__*/React__default.createElement("div", {
|
3367
3369
|
className: classNames$1(style$r['display-chips'])
|
3368
3370
|
}, this.state.chipsList.length > 0 ? this.state.chipsList.map(function (chips, idx) {
|