ui-kit-ck-consultant 0.5.189 → 0.5.192

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.
@@ -3447,7 +3447,9 @@ var ListingVertical = /*#__PURE__*/function (_React$Component) {
3447
3447
  green: element.green,
3448
3448
  orange: element.orange,
3449
3449
  title: element.title,
3450
- subtitle: element.subtitle
3450
+ subtitle: element.subtitle,
3451
+ date: element.date,
3452
+ icon: element.icon
3451
3453
  });
3452
3454
  });
3453
3455
  tmpData.map(function (element, idx) {
@@ -3828,17 +3830,35 @@ var Footer = /*#__PURE__*/function (_React$Component) {
3828
3830
  _proto.render = function render() {
3829
3831
  return /*#__PURE__*/React.createElement("div", {
3830
3832
  className: style$v.footer
3831
- }, /*#__PURE__*/React.createElement("div", null, /*#__PURE__*/React.createElement("img", {
3833
+ }, /*#__PURE__*/React.createElement(Row, null, /*#__PURE__*/React.createElement(Col, {
3834
+ xs: 12,
3835
+ md: 12,
3836
+ lg: 4,
3837
+ className: "mt-5 mb-5 d-flex"
3838
+ }, /*#__PURE__*/React.createElement("img", {
3839
+ className: "m-auto",
3832
3840
  src: this.props.logo
3833
- })), /*#__PURE__*/React.createElement("div", null, /*#__PURE__*/React.createElement("a", {
3841
+ })), /*#__PURE__*/React.createElement(Col, {
3842
+ xs: 12,
3843
+ md: 6,
3844
+ lg: 4,
3845
+ className: "mt-5 mb-5 d-flex"
3846
+ }, /*#__PURE__*/React.createElement("a", {
3847
+ className: "m-auto",
3834
3848
  target: "_blank",
3835
3849
  href: this.props.legal,
3836
3850
  onClick: this.props.onLegalClick
3837
- }, "Mentions L\xE9gales")), /*#__PURE__*/React.createElement("div", null, /*#__PURE__*/React.createElement("a", {
3851
+ }, "Mentions L\xE9gales")), /*#__PURE__*/React.createElement(Col, {
3852
+ xs: 12,
3853
+ md: 6,
3854
+ lg: 4,
3855
+ className: "mt-5 mb-5 d-flex"
3856
+ }, /*#__PURE__*/React.createElement("a", {
3857
+ className: "m-auto",
3838
3858
  target: "_blank",
3839
3859
  href: this.props.rgpd,
3840
3860
  onClick: this.props.onRgpdClick
3841
- }, "RGPD & Cookies")));
3861
+ }, "RGPD & Cookies"))));
3842
3862
  };
3843
3863
 
3844
3864
  return Footer;