ui-kit-ck-consultant 0.5.196 → 0.5.199

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 CHANGED
@@ -835,7 +835,8 @@ var Header = /*#__PURE__*/function (_React$Component) {
835
835
  return /*#__PURE__*/React__default.createElement("div", {
836
836
  className: classNames$1(style$a.header, this.props.className)
837
837
  }, /*#__PURE__*/React__default.createElement("div", {
838
- className: style$a.header_absolute
838
+ className: style$a.header_absolute,
839
+ style: this.props.styleBackground
839
840
  }), /*#__PURE__*/React__default.createElement("div", {
840
841
  className: style$a.header_left
841
842
  }, this.props.logo ? /*#__PURE__*/React__default.createElement("img", {
@@ -904,7 +905,7 @@ var Card = /*#__PURE__*/function (_React$Component) {
904
905
  }, this.props.imgLeft ? /*#__PURE__*/React__default.createElement("div", {
905
906
  style: {
906
907
  overflow: 'hidden',
907
- width: '100%'
908
+ width: this.props.customWidthImgLeft || '100%'
908
909
  }
909
910
  }, /*#__PURE__*/React__default.createElement("img", {
910
911
  style: {
@@ -946,7 +947,7 @@ var Card = /*#__PURE__*/function (_React$Component) {
946
947
  }, this.props.children)), this.props.imgRight ? /*#__PURE__*/React__default.createElement("div", {
947
948
  style: {
948
949
  overflow: 'hidden',
949
- width: '100%'
950
+ width: this.props.customWidthImgRight || '100%'
950
951
  }
951
952
  }, /*#__PURE__*/React__default.createElement("img", {
952
953
  style: {
@@ -3458,6 +3459,8 @@ var ListingVertical = /*#__PURE__*/function (_React$Component) {
3458
3459
  key: idx,
3459
3460
  green: element.green,
3460
3461
  orange: element.orange,
3462
+ color: element.color,
3463
+ backgroundColor: element.backgroundColor,
3461
3464
  title: element.title,
3462
3465
  subtitle: element.subtitle,
3463
3466
  date: element.date,