ui-kit-ck-consultant 0.5.208 → 0.5.211
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 +16 -3
- package/dist/index.js.map +1 -1
- package/dist/index.modern.js +16 -3
- package/dist/index.modern.js.map +1 -1
- package/package.json +1 -1
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) {
|
@@ -4020,7 +4022,18 @@ var Gauge = /*#__PURE__*/function (_React$Component) {
|
|
4020
4022
|
|
4021
4023
|
return /*#__PURE__*/React__default.createElement("div", {
|
4022
4024
|
className: this.props.className
|
4023
|
-
}, /*#__PURE__*/React__default.createElement("span", {
|
4025
|
+
}, this.props.onEdit ? /*#__PURE__*/React__default.createElement("span", {
|
4026
|
+
style: {
|
4027
|
+
display: 'inline-block',
|
4028
|
+
fontSize: '14px',
|
4029
|
+
fontWeight: 'bold',
|
4030
|
+
color: 'var(--blue)',
|
4031
|
+
marginBottom: '16px',
|
4032
|
+
cursor: 'pointer',
|
4033
|
+
textDecoration: 'underline'
|
4034
|
+
},
|
4035
|
+
onClick: this.props.onEdit
|
4036
|
+
}, this.props.title) : /*#__PURE__*/React__default.createElement("span", {
|
4024
4037
|
style: {
|
4025
4038
|
display: 'inline-block',
|
4026
4039
|
fontSize: '14px',
|