ui-kit-ck-consultant 0.5.210 → 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 +12 -1
- package/dist/index.js.map +1 -1
- package/dist/index.modern.js +12 -1
- package/dist/index.modern.js.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
@@ -4022,7 +4022,18 @@ var Gauge = /*#__PURE__*/function (_React$Component) {
|
|
4022
4022
|
|
4023
4023
|
return /*#__PURE__*/React__default.createElement("div", {
|
4024
4024
|
className: this.props.className
|
4025
|
-
}, /*#__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", {
|
4026
4037
|
style: {
|
4027
4038
|
display: 'inline-block',
|
4028
4039
|
fontSize: '14px',
|