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.
@@ -832,7 +832,8 @@ var Header = /*#__PURE__*/function (_React$Component) {
832
832
  return /*#__PURE__*/React.createElement("div", {
833
833
  className: classNames$1(style$a.header, this.props.className)
834
834
  }, /*#__PURE__*/React.createElement("div", {
835
- className: style$a.header_absolute
835
+ className: style$a.header_absolute,
836
+ style: this.props.styleBackground
836
837
  }), /*#__PURE__*/React.createElement("div", {
837
838
  className: style$a.header_left
838
839
  }, this.props.logo ? /*#__PURE__*/React.createElement("img", {
@@ -901,7 +902,7 @@ var Card = /*#__PURE__*/function (_React$Component) {
901
902
  }, this.props.imgLeft ? /*#__PURE__*/React.createElement("div", {
902
903
  style: {
903
904
  overflow: 'hidden',
904
- width: '100%'
905
+ width: this.props.customWidthImgLeft || '100%'
905
906
  }
906
907
  }, /*#__PURE__*/React.createElement("img", {
907
908
  style: {
@@ -943,7 +944,7 @@ var Card = /*#__PURE__*/function (_React$Component) {
943
944
  }, this.props.children)), this.props.imgRight ? /*#__PURE__*/React.createElement("div", {
944
945
  style: {
945
946
  overflow: 'hidden',
946
- width: '100%'
947
+ width: this.props.customWidthImgRight || '100%'
947
948
  }
948
949
  }, /*#__PURE__*/React.createElement("img", {
949
950
  style: {
@@ -3455,6 +3456,8 @@ var ListingVertical = /*#__PURE__*/function (_React$Component) {
3455
3456
  key: idx,
3456
3457
  green: element.green,
3457
3458
  orange: element.orange,
3459
+ color: element.color,
3460
+ backgroundColor: element.backgroundColor,
3458
3461
  title: element.title,
3459
3462
  subtitle: element.subtitle,
3460
3463
  date: element.date,