ui-kit-ck-consultant 0.5.179 → 0.5.182
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/css/style.css +18 -0
- package/dist/index.js +8 -4
- package/dist/index.js.map +1 -1
- package/dist/index.modern.js +8 -4
- package/dist/index.modern.js.map +1 -1
- package/package.json +1 -1
package/dist/index.modern.js
CHANGED
@@ -913,7 +913,9 @@ var Card = /*#__PURE__*/function (_React$Component) {
|
|
913
913
|
}, /*#__PURE__*/React.createElement("span", null), /*#__PURE__*/React.createElement("span", null), /*#__PURE__*/React.createElement("span", null), /*#__PURE__*/React.createElement("span", null)), this.props.loaderText ? /*#__PURE__*/React.createElement("p", null, this.props.loaderText) : null)) : null, /*#__PURE__*/React.createElement("div", {
|
914
914
|
style: {
|
915
915
|
position: 'relative',
|
916
|
-
width: '100%'
|
916
|
+
width: '100%',
|
917
|
+
display: 'flex',
|
918
|
+
flexDirection: 'column'
|
917
919
|
}
|
918
920
|
}, /*#__PURE__*/React.createElement("div", {
|
919
921
|
className: style$b.card_top_border,
|
@@ -3476,9 +3478,10 @@ var ListingHorizontalItem = /*#__PURE__*/function (_React$Component) {
|
|
3476
3478
|
className: listingClass
|
3477
3479
|
}, /*#__PURE__*/React.createElement("div", {
|
3478
3480
|
className: style$s.listing_horizontal_icon,
|
3479
|
-
style:
|
3480
|
-
backgroundColor: this.props.
|
3481
|
-
|
3481
|
+
style: {
|
3482
|
+
backgroundColor: this.props.backgroundColor ? this.props.backgroundColor : 'gray',
|
3483
|
+
color: this.props.color ? this.props.color : 'white'
|
3484
|
+
}
|
3482
3485
|
}, this.props.icon ? this.props.icon : /*#__PURE__*/React.createElement(FontAwesomeIcon, {
|
3483
3486
|
icon: faCheck
|
3484
3487
|
})), /*#__PURE__*/React.createElement("div", {
|
@@ -3531,6 +3534,7 @@ var ListingHorizontal = /*#__PURE__*/function (_React$Component) {
|
|
3531
3534
|
green: element.green,
|
3532
3535
|
orange: element.orange,
|
3533
3536
|
color: element.color,
|
3537
|
+
backgroundColor: element.backgroundColor,
|
3534
3538
|
title: element.title,
|
3535
3539
|
subtitle: element.subtitle,
|
3536
3540
|
date: element.date,
|