ui-kit-ck-consultant 0.5.195 → 0.5.198
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 +11 -5
- package/dist/index.js.map +1 -1
- package/dist/index.modern.js +11 -5
- package/dist/index.modern.js.map +1 -1
- package/package.json +1 -1
package/dist/index.modern.js
CHANGED
@@ -901,7 +901,7 @@ var Card = /*#__PURE__*/function (_React$Component) {
|
|
901
901
|
}, this.props.imgLeft ? /*#__PURE__*/React.createElement("div", {
|
902
902
|
style: {
|
903
903
|
overflow: 'hidden',
|
904
|
-
width: '100%'
|
904
|
+
width: this.props.customWidthImgLeft || '100%'
|
905
905
|
}
|
906
906
|
}, /*#__PURE__*/React.createElement("img", {
|
907
907
|
style: {
|
@@ -943,7 +943,7 @@ var Card = /*#__PURE__*/function (_React$Component) {
|
|
943
943
|
}, this.props.children)), this.props.imgRight ? /*#__PURE__*/React.createElement("div", {
|
944
944
|
style: {
|
945
945
|
overflow: 'hidden',
|
946
|
-
width: '100%'
|
946
|
+
width: this.props.customWidthImgRight || '100%'
|
947
947
|
}
|
948
948
|
}, /*#__PURE__*/React.createElement("img", {
|
949
949
|
style: {
|
@@ -3402,10 +3402,14 @@ var ListingVerticalItem = /*#__PURE__*/function (_React$Component) {
|
|
3402
3402
|
return /*#__PURE__*/React.createElement("div", {
|
3403
3403
|
className: listingClass
|
3404
3404
|
}, /*#__PURE__*/React.createElement("div", {
|
3405
|
-
className: style$s.listing_vertical_left
|
3406
|
-
|
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, {
|
3407
3411
|
icon: faCheck
|
3408
|
-
})
|
3412
|
+
})), /*#__PURE__*/React.createElement("div", {
|
3409
3413
|
className: style$s.listing_vertical_right
|
3410
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)));
|
3411
3415
|
};
|
@@ -3451,6 +3455,8 @@ var ListingVertical = /*#__PURE__*/function (_React$Component) {
|
|
3451
3455
|
key: idx,
|
3452
3456
|
green: element.green,
|
3453
3457
|
orange: element.orange,
|
3458
|
+
color: element.color,
|
3459
|
+
backgroundColor: element.backgroundColor,
|
3454
3460
|
title: element.title,
|
3455
3461
|
subtitle: element.subtitle,
|
3456
3462
|
date: element.date,
|