ui-kit-ck-consultant 0.5.193 → 0.5.196

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.
@@ -900,7 +900,8 @@ var Card = /*#__PURE__*/function (_React$Component) {
900
900
  className: classNames$1(style$b.card, this.props.className)
901
901
  }, this.props.imgLeft ? /*#__PURE__*/React.createElement("div", {
902
902
  style: {
903
- overflow: 'hidden'
903
+ overflow: 'hidden',
904
+ width: '100%'
904
905
  }
905
906
  }, /*#__PURE__*/React.createElement("img", {
906
907
  style: {
@@ -941,7 +942,8 @@ var Card = /*#__PURE__*/function (_React$Component) {
941
942
  className: classNames$1(style$b.card_body, this.props.classNameChildren)
942
943
  }, this.props.children)), this.props.imgRight ? /*#__PURE__*/React.createElement("div", {
943
944
  style: {
944
- overflow: 'hidden'
945
+ overflow: 'hidden',
946
+ width: '100%'
945
947
  }
946
948
  }, /*#__PURE__*/React.createElement("img", {
947
949
  style: {
@@ -3271,6 +3273,9 @@ var AlertElement = /*#__PURE__*/function (_React$Component) {
3271
3273
  return /*#__PURE__*/React.createElement("div", {
3272
3274
  className: classNames$1(style$q.alert_element, this.props.backgroundColor)
3273
3275
  }, /*#__PURE__*/React.createElement("span", {
3276
+ style: this.props.bold ? {
3277
+ fontWeight: 'bold'
3278
+ } : {},
3274
3279
  className: this.props.textColor
3275
3280
  }, this.props.children), /*#__PURE__*/React.createElement("span", {
3276
3281
  className: classNames$1(style$q.alert_element_icon, this.props.textColor)
@@ -3397,10 +3402,14 @@ var ListingVerticalItem = /*#__PURE__*/function (_React$Component) {
3397
3402
  return /*#__PURE__*/React.createElement("div", {
3398
3403
  className: listingClass
3399
3404
  }, /*#__PURE__*/React.createElement("div", {
3400
- className: style$s.listing_vertical_left
3401
- }, this.props.icon ? this.props.icon : this.props.green ? /*#__PURE__*/React.createElement(FontAwesomeIcon, {
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, {
3402
3411
  icon: faCheck
3403
- }) : ''), /*#__PURE__*/React.createElement("div", {
3412
+ })), /*#__PURE__*/React.createElement("div", {
3404
3413
  className: style$s.listing_vertical_right
3405
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)));
3406
3415
  };