ui-kit-ck-consultant 0.5.163 → 0.5.164
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 +7 -3
- package/dist/index.js.map +1 -1
- package/dist/index.modern.js +7 -3
- package/dist/index.modern.js.map +1 -1
- package/package.json +1 -1
package/dist/index.modern.js
CHANGED
@@ -3445,10 +3445,13 @@ var ListingHorizontalItem = /*#__PURE__*/function (_React$Component) {
|
|
3445
3445
|
return /*#__PURE__*/React.createElement("div", {
|
3446
3446
|
className: listingClass
|
3447
3447
|
}, /*#__PURE__*/React.createElement("div", {
|
3448
|
-
className: style$s.listing_horizontal_icon
|
3449
|
-
|
3448
|
+
className: style$s.listing_horizontal_icon,
|
3449
|
+
style: this.props.color ? {
|
3450
|
+
backgroundColor: this.props.color
|
3451
|
+
} : null
|
3452
|
+
}, this.props.icon ? this.props.icon : /*#__PURE__*/React.createElement(FontAwesomeIcon, {
|
3450
3453
|
icon: faCheck
|
3451
|
-
})
|
3454
|
+
})), /*#__PURE__*/React.createElement("div", {
|
3452
3455
|
className: style$s.listing_horizontal_text
|
3453
3456
|
}, /*#__PURE__*/React.createElement("span", null, this.props.date), /*#__PURE__*/React.createElement("span", null, this.props.title), /*#__PURE__*/React.createElement("span", null, this.props.subtitle)));
|
3454
3457
|
};
|
@@ -3497,6 +3500,7 @@ var ListingHorizontal = /*#__PURE__*/function (_React$Component) {
|
|
3497
3500
|
key: idx,
|
3498
3501
|
green: element.green,
|
3499
3502
|
orange: element.orange,
|
3503
|
+
color: element.color,
|
3500
3504
|
title: element.title,
|
3501
3505
|
subtitle: element.subtitle,
|
3502
3506
|
date: element.date,
|