ui-kit-ck-consultant 0.5.188 → 0.5.191
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 +3 -1
- package/dist/index.js +27 -7
- package/dist/index.js.map +1 -1
- package/dist/index.modern.js +27 -7
- package/dist/index.modern.js.map +1 -1
- package/package.json +1 -1
package/dist/index.modern.js
CHANGED
@@ -3398,11 +3398,11 @@ var ListingVerticalItem = /*#__PURE__*/function (_React$Component) {
|
|
3398
3398
|
className: listingClass
|
3399
3399
|
}, /*#__PURE__*/React.createElement("div", {
|
3400
3400
|
className: style$s.listing_vertical_left
|
3401
|
-
}, this.props.green ? /*#__PURE__*/React.createElement(FontAwesomeIcon, {
|
3401
|
+
}, this.props.icon ? this.props.icon : this.props.green ? /*#__PURE__*/React.createElement(FontAwesomeIcon, {
|
3402
3402
|
icon: faCheck
|
3403
3403
|
}) : ''), /*#__PURE__*/React.createElement("div", {
|
3404
3404
|
className: style$s.listing_vertical_right
|
3405
|
-
}, /*#__PURE__*/React.createElement("span", null, this.props.title), /*#__PURE__*/React.createElement("span", null, this.props.subtitle)));
|
3405
|
+
}, /*#__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
3406
|
};
|
3407
3407
|
|
3408
3408
|
return ListingVerticalItem;
|
@@ -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(
|
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(
|
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(
|
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;
|