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.
@@ -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) {
@@ -4017,7 +4019,18 @@ var Gauge = /*#__PURE__*/function (_React$Component) {
4017
4019
 
4018
4020
  return /*#__PURE__*/React.createElement("div", {
4019
4021
  className: this.props.className
4020
- }, /*#__PURE__*/React.createElement("span", {
4022
+ }, this.props.onEdit ? /*#__PURE__*/React.createElement("span", {
4023
+ style: {
4024
+ display: 'inline-block',
4025
+ fontSize: '14px',
4026
+ fontWeight: 'bold',
4027
+ color: 'var(--blue)',
4028
+ marginBottom: '16px',
4029
+ cursor: 'pointer',
4030
+ textDecoration: 'underline'
4031
+ },
4032
+ onClick: this.props.onEdit
4033
+ }, this.props.title) : /*#__PURE__*/React.createElement("span", {
4021
4034
  style: {
4022
4035
  display: 'inline-block',
4023
4036
  fontSize: '14px',