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.js
CHANGED
@@ -3448,10 +3448,13 @@ var ListingHorizontalItem = /*#__PURE__*/function (_React$Component) {
|
|
3448
3448
|
return /*#__PURE__*/React__default.createElement("div", {
|
3449
3449
|
className: listingClass
|
3450
3450
|
}, /*#__PURE__*/React__default.createElement("div", {
|
3451
|
-
className: style$s.listing_horizontal_icon
|
3452
|
-
|
3451
|
+
className: style$s.listing_horizontal_icon,
|
3452
|
+
style: this.props.color ? {
|
3453
|
+
backgroundColor: this.props.color
|
3454
|
+
} : null
|
3455
|
+
}, this.props.icon ? this.props.icon : /*#__PURE__*/React__default.createElement(reactFontawesome.FontAwesomeIcon, {
|
3453
3456
|
icon: freeSolidSvgIcons.faCheck
|
3454
|
-
})
|
3457
|
+
})), /*#__PURE__*/React__default.createElement("div", {
|
3455
3458
|
className: style$s.listing_horizontal_text
|
3456
3459
|
}, /*#__PURE__*/React__default.createElement("span", null, this.props.date), /*#__PURE__*/React__default.createElement("span", null, this.props.title), /*#__PURE__*/React__default.createElement("span", null, this.props.subtitle)));
|
3457
3460
|
};
|
@@ -3500,6 +3503,7 @@ var ListingHorizontal = /*#__PURE__*/function (_React$Component) {
|
|
3500
3503
|
key: idx,
|
3501
3504
|
green: element.green,
|
3502
3505
|
orange: element.orange,
|
3506
|
+
color: element.color,
|
3503
3507
|
title: element.title,
|
3504
3508
|
subtitle: element.subtitle,
|
3505
3509
|
date: element.date,
|