ui-kit-ck-consultant 0.5.194 → 0.5.197
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 +12 -10
- package/dist/index.js +12 -3
- package/dist/index.js.map +1 -1
- package/dist/index.modern.js +12 -3
- package/dist/index.modern.js.map +1 -1
- package/package.json +1 -1
package/dist/index.modern.js
CHANGED
@@ -3273,6 +3273,9 @@ var AlertElement = /*#__PURE__*/function (_React$Component) {
|
|
3273
3273
|
return /*#__PURE__*/React.createElement("div", {
|
3274
3274
|
className: classNames$1(style$q.alert_element, this.props.backgroundColor)
|
3275
3275
|
}, /*#__PURE__*/React.createElement("span", {
|
3276
|
+
style: this.props.bold ? {
|
3277
|
+
fontWeight: 'bold'
|
3278
|
+
} : {},
|
3276
3279
|
className: this.props.textColor
|
3277
3280
|
}, this.props.children), /*#__PURE__*/React.createElement("span", {
|
3278
3281
|
className: classNames$1(style$q.alert_element_icon, this.props.textColor)
|
@@ -3399,10 +3402,14 @@ var ListingVerticalItem = /*#__PURE__*/function (_React$Component) {
|
|
3399
3402
|
return /*#__PURE__*/React.createElement("div", {
|
3400
3403
|
className: listingClass
|
3401
3404
|
}, /*#__PURE__*/React.createElement("div", {
|
3402
|
-
className: style$s.listing_vertical_left
|
3403
|
-
|
3405
|
+
className: style$s.listing_vertical_left,
|
3406
|
+
style: {
|
3407
|
+
backgroundColor: this.props.backgroundColor ? this.props.backgroundColor : 'gray',
|
3408
|
+
color: this.props.color ? this.props.color : 'white'
|
3409
|
+
}
|
3410
|
+
}, this.props.icon ? this.props.icon : /*#__PURE__*/React.createElement(FontAwesomeIcon, {
|
3404
3411
|
icon: faCheck
|
3405
|
-
})
|
3412
|
+
})), /*#__PURE__*/React.createElement("div", {
|
3406
3413
|
className: style$s.listing_vertical_right
|
3407
3414
|
}, /*#__PURE__*/React.createElement("span", null, this.props.date), /*#__PURE__*/React.createElement("span", null, this.props.title), /*#__PURE__*/React.createElement("span", null, this.props.subtitle)));
|
3408
3415
|
};
|
@@ -3448,6 +3455,8 @@ var ListingVertical = /*#__PURE__*/function (_React$Component) {
|
|
3448
3455
|
key: idx,
|
3449
3456
|
green: element.green,
|
3450
3457
|
orange: element.orange,
|
3458
|
+
color: element.color,
|
3459
|
+
backgroundColor: element.backgroundColor,
|
3451
3460
|
title: element.title,
|
3452
3461
|
subtitle: element.subtitle,
|
3453
3462
|
date: element.date,
|