@bigbinary/neeto-site-blocks 1.8.28 → 1.9.0
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.cjs.js +81 -25
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.js +81 -25
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.cjs.js
CHANGED
|
@@ -14763,7 +14763,7 @@ var withConditionalRender = function withConditionalRender(Component, condition)
|
|
|
14763
14763
|
return ConditionalRender;
|
|
14764
14764
|
};
|
|
14765
14765
|
|
|
14766
|
-
var _excluded$A = ["id", "disableButtonAndLinks", "wrapperClassName", "index"];
|
|
14766
|
+
var _excluded$A = ["id", "disableButtonAndLinks", "wrapperClassName", "index", "image"];
|
|
14767
14767
|
var StyledImage = styled__default["default"].img.attrs(function () {
|
|
14768
14768
|
return {
|
|
14769
14769
|
className: "hover:mix-blend-multiply"
|
|
@@ -14794,6 +14794,7 @@ var StyledImageWithWrapper = function StyledImageWithWrapper(_ref2) {
|
|
|
14794
14794
|
disableButtonAndLinks = _ref2.disableButtonAndLinks,
|
|
14795
14795
|
wrapperClassName = _ref2.wrapperClassName,
|
|
14796
14796
|
index = _ref2.index,
|
|
14797
|
+
image = _ref2.image,
|
|
14797
14798
|
props = _objectWithoutProperties__default["default"](_ref2, _excluded$A);
|
|
14798
14799
|
var _useElementClick = useElementClick({
|
|
14799
14800
|
id: id,
|
|
@@ -14805,7 +14806,13 @@ var StyledImageWithWrapper = function StyledImageWithWrapper(_ref2) {
|
|
|
14805
14806
|
"neeto-site-highlight__element": disableButtonAndLinks
|
|
14806
14807
|
}, wrapperClassName, wrapperClassName)),
|
|
14807
14808
|
onClick: disableButtonAndLinks && handleImageClick
|
|
14808
|
-
}, /*#__PURE__*/React__default["default"].createElement(StyledImage,
|
|
14809
|
+
}, /*#__PURE__*/React__default["default"].createElement(StyledImage, _extends__default["default"]({
|
|
14810
|
+
as: image !== null && image !== void 0 ? image : "img",
|
|
14811
|
+
height: 0,
|
|
14812
|
+
objectFit: "contain",
|
|
14813
|
+
sizes: "100vw",
|
|
14814
|
+
width: 0
|
|
14815
|
+
}, props)));
|
|
14809
14816
|
};
|
|
14810
14817
|
var StyledImage$1 = withConditionalRender(StyledImageWithWrapper, prop("src"));
|
|
14811
14818
|
|
|
@@ -21358,7 +21365,7 @@ const SwiperSlide = /*#__PURE__*/React.forwardRef(function (_temp, externalRef)
|
|
|
21358
21365
|
});
|
|
21359
21366
|
SwiperSlide.displayName = 'SwiperSlide';
|
|
21360
21367
|
|
|
21361
|
-
var _excluded$r = ["configurations", "className", "id", "disableButtonAndLinks"];
|
|
21368
|
+
var _excluded$r = ["configurations", "className", "id", "disableButtonAndLinks", "image"];
|
|
21362
21369
|
function ownKeys$h(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); enumerableOnly && (symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; })), keys.push.apply(keys, symbols); } return keys; }
|
|
21363
21370
|
function _objectSpread$h(target) { for (var i = 1; i < arguments.length; i++) { var source = null != arguments[i] ? arguments[i] : {}; i % 2 ? ownKeys$h(Object(source), !0).forEach(function (key) { _defineProperty__default["default"](target, key, source[key]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)) : ownKeys$h(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } return target; }
|
|
21364
21371
|
var CardsInGridView = function CardsInGridView(_ref) {
|
|
@@ -21367,6 +21374,7 @@ var CardsInGridView = function CardsInGridView(_ref) {
|
|
|
21367
21374
|
className = _ref$className === void 0 ? "" : _ref$className,
|
|
21368
21375
|
id = _ref.id,
|
|
21369
21376
|
disableButtonAndLinks = _ref.disableButtonAndLinks,
|
|
21377
|
+
image = _ref.image,
|
|
21370
21378
|
otherProps = _objectWithoutProperties__default["default"](_ref, _excluded$r);
|
|
21371
21379
|
var _useState = React.useState(0),
|
|
21372
21380
|
_useState2 = _slicedToArray__default["default"](_useState, 2),
|
|
@@ -21409,6 +21417,7 @@ var CardsInGridView = function CardsInGridView(_ref) {
|
|
|
21409
21417
|
to: href
|
|
21410
21418
|
}, otherProps), /*#__PURE__*/React__default["default"].createElement(StyledImage$1, {
|
|
21411
21419
|
disableButtonAndLinks: disableButtonAndLinks,
|
|
21420
|
+
image: image,
|
|
21412
21421
|
index: index,
|
|
21413
21422
|
design: mergeRight(design.cardImage, style),
|
|
21414
21423
|
id: "cards-in-grid-view-".concat(index, "-image"),
|
|
@@ -21635,7 +21644,7 @@ var CardsWithCustomizableGrid = function CardsWithCustomizableGrid(_ref) {
|
|
|
21635
21644
|
}, button, otherProps)))));
|
|
21636
21645
|
};
|
|
21637
21646
|
|
|
21638
|
-
var _excluded$p = ["configurations", "className", "id", "disableButtonAndLinks"];
|
|
21647
|
+
var _excluded$p = ["configurations", "className", "id", "disableButtonAndLinks", "image"];
|
|
21639
21648
|
function ownKeys$g(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); enumerableOnly && (symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; })), keys.push.apply(keys, symbols); } return keys; }
|
|
21640
21649
|
function _objectSpread$g(target) { for (var i = 1; i < arguments.length; i++) { var source = null != arguments[i] ? arguments[i] : {}; i % 2 ? ownKeys$g(Object(source), !0).forEach(function (key) { _defineProperty__default["default"](target, key, source[key]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)) : ownKeys$g(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } return target; }
|
|
21641
21650
|
var CardsWithImage = function CardsWithImage(_ref) {
|
|
@@ -21644,6 +21653,7 @@ var CardsWithImage = function CardsWithImage(_ref) {
|
|
|
21644
21653
|
className = _ref$className === void 0 ? "" : _ref$className,
|
|
21645
21654
|
id = _ref.id,
|
|
21646
21655
|
disableButtonAndLinks = _ref.disableButtonAndLinks,
|
|
21656
|
+
image = _ref.image,
|
|
21647
21657
|
otherProps = _objectWithoutProperties__default["default"](_ref, _excluded$p);
|
|
21648
21658
|
var properties = configurations.properties,
|
|
21649
21659
|
design = configurations.design;
|
|
@@ -21716,6 +21726,7 @@ var CardsWithImage = function CardsWithImage(_ref) {
|
|
|
21716
21726
|
className: "absolute bottom-0 right-0 flex items-end justify-end"
|
|
21717
21727
|
}, /*#__PURE__*/React__default["default"].createElement(StyledImage$1, {
|
|
21718
21728
|
disableButtonAndLinks: disableButtonAndLinks,
|
|
21729
|
+
image: image,
|
|
21719
21730
|
index: index,
|
|
21720
21731
|
className: "!justify-self-end",
|
|
21721
21732
|
design: design.cardImage,
|
|
@@ -39397,7 +39408,7 @@ var CtaWithEmailAction = function CtaWithEmailAction(_ref) {
|
|
|
39397
39408
|
}, otherProps), promotionText));
|
|
39398
39409
|
};
|
|
39399
39410
|
|
|
39400
|
-
var _excluded$m = ["configurations", "className", "id"];
|
|
39411
|
+
var _excluded$m = ["configurations", "className", "id", "image"];
|
|
39401
39412
|
function ownKeys$e(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); enumerableOnly && (symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; })), keys.push.apply(keys, symbols); } return keys; }
|
|
39402
39413
|
function _objectSpread$e(target) { for (var i = 1; i < arguments.length; i++) { var source = null != arguments[i] ? arguments[i] : {}; i % 2 ? ownKeys$e(Object(source), !0).forEach(function (key) { _defineProperty__default["default"](target, key, source[key]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)) : ownKeys$e(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } return target; }
|
|
39403
39414
|
var CtaWithLogo = function CtaWithLogo(_ref) {
|
|
@@ -39405,6 +39416,7 @@ var CtaWithLogo = function CtaWithLogo(_ref) {
|
|
|
39405
39416
|
_ref$className = _ref.className,
|
|
39406
39417
|
className = _ref$className === void 0 ? "" : _ref$className,
|
|
39407
39418
|
id = _ref.id,
|
|
39419
|
+
image = _ref.image,
|
|
39408
39420
|
otherProps = _objectWithoutProperties__default["default"](_ref, _excluded$m);
|
|
39409
39421
|
var properties = configurations.properties,
|
|
39410
39422
|
design = configurations.design;
|
|
@@ -39426,6 +39438,7 @@ var CtaWithLogo = function CtaWithLogo(_ref) {
|
|
|
39426
39438
|
design: design.body,
|
|
39427
39439
|
nestedClassName: baseClasses
|
|
39428
39440
|
}, /*#__PURE__*/React__default["default"].createElement(StyledImage$1, {
|
|
39441
|
+
image: image,
|
|
39429
39442
|
alt: "logo",
|
|
39430
39443
|
className: "col-span-10 col-start-2 mx-auto sm:col-span-2 sm:col-start-1",
|
|
39431
39444
|
design: design.logo,
|
|
@@ -39661,7 +39674,7 @@ var FeatureWithBulletList = function FeatureWithBulletList(_ref) {
|
|
|
39661
39674
|
}, otherProps), description)), /*#__PURE__*/React__default["default"].createElement(BulletList, null));
|
|
39662
39675
|
};
|
|
39663
39676
|
|
|
39664
|
-
var _excluded$j = ["configurations", "className", "id"];
|
|
39677
|
+
var _excluded$j = ["configurations", "className", "id", "image"];
|
|
39665
39678
|
function ownKeys$b(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); enumerableOnly && (symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; })), keys.push.apply(keys, symbols); } return keys; }
|
|
39666
39679
|
function _objectSpread$b(target) { for (var i = 1; i < arguments.length; i++) { var source = null != arguments[i] ? arguments[i] : {}; i % 2 ? ownKeys$b(Object(source), !0).forEach(function (key) { _defineProperty__default["default"](target, key, source[key]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)) : ownKeys$b(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } return target; }
|
|
39667
39680
|
var FeatureWithDetails = function FeatureWithDetails(_ref) {
|
|
@@ -39669,6 +39682,7 @@ var FeatureWithDetails = function FeatureWithDetails(_ref) {
|
|
|
39669
39682
|
_ref$className = _ref.className,
|
|
39670
39683
|
className = _ref$className === void 0 ? "" : _ref$className,
|
|
39671
39684
|
id = _ref.id,
|
|
39685
|
+
image = _ref.image,
|
|
39672
39686
|
otherProps = _objectWithoutProperties__default["default"](_ref, _excluded$j);
|
|
39673
39687
|
var properties = configurations.properties,
|
|
39674
39688
|
design = configurations.design;
|
|
@@ -39748,6 +39762,7 @@ var FeatureWithDetails = function FeatureWithDetails(_ref) {
|
|
|
39748
39762
|
className: mediaBaseClasses
|
|
39749
39763
|
}, /*#__PURE__*/React__default["default"].createElement(Media, {
|
|
39750
39764
|
autoPlay: autoPlay,
|
|
39765
|
+
image: image,
|
|
39751
39766
|
isEmbedded: isEmbedded,
|
|
39752
39767
|
videoUrl: videoUrl,
|
|
39753
39768
|
design: design.media,
|
|
@@ -39758,12 +39773,13 @@ var FeatureWithDetails = function FeatureWithDetails(_ref) {
|
|
|
39758
39773
|
})));
|
|
39759
39774
|
};
|
|
39760
39775
|
|
|
39761
|
-
var _excluded$i = ["configurations", "className", "id"];
|
|
39776
|
+
var _excluded$i = ["configurations", "className", "id", "image"];
|
|
39762
39777
|
var FeatureWithGrid = function FeatureWithGrid(_ref) {
|
|
39763
39778
|
var configurations = _ref.configurations,
|
|
39764
39779
|
_ref$className = _ref.className,
|
|
39765
39780
|
className = _ref$className === void 0 ? "" : _ref$className,
|
|
39766
39781
|
id = _ref.id,
|
|
39782
|
+
image = _ref.image,
|
|
39767
39783
|
otherProps = _objectWithoutProperties__default["default"](_ref, _excluded$i);
|
|
39768
39784
|
var properties = configurations.properties,
|
|
39769
39785
|
design = configurations.design;
|
|
@@ -39808,6 +39824,7 @@ var FeatureWithGrid = function FeatureWithGrid(_ref) {
|
|
|
39808
39824
|
style: design.description
|
|
39809
39825
|
}, otherProps), description), /*#__PURE__*/React__default["default"].createElement(Media, {
|
|
39810
39826
|
autoPlay: autoPlay,
|
|
39827
|
+
image: image,
|
|
39811
39828
|
isEmbedded: isEmbedded,
|
|
39812
39829
|
videoUrl: videoUrl,
|
|
39813
39830
|
className: "m-auto",
|
|
@@ -39827,6 +39844,7 @@ var FeatureWithGrid = function FeatureWithGrid(_ref) {
|
|
|
39827
39844
|
className: gridClasses(index),
|
|
39828
39845
|
key: getUniqueKey(featureTitle, featureDescription, index)
|
|
39829
39846
|
}, /*#__PURE__*/React__default["default"].createElement(StyledImage$1, {
|
|
39847
|
+
image: image,
|
|
39830
39848
|
index: index,
|
|
39831
39849
|
alt: featureImageAlt,
|
|
39832
39850
|
design: design.featureImage,
|
|
@@ -39850,12 +39868,13 @@ var FeatureWithGrid = function FeatureWithGrid(_ref) {
|
|
|
39850
39868
|
}));
|
|
39851
39869
|
};
|
|
39852
39870
|
|
|
39853
|
-
var _excluded$h = ["configurations", "className", "id"];
|
|
39871
|
+
var _excluded$h = ["configurations", "className", "id", "image"];
|
|
39854
39872
|
var FeatureWithImage = function FeatureWithImage(_ref) {
|
|
39855
39873
|
var configurations = _ref.configurations,
|
|
39856
39874
|
_ref$className = _ref.className,
|
|
39857
39875
|
className = _ref$className === void 0 ? "" : _ref$className,
|
|
39858
39876
|
id = _ref.id,
|
|
39877
|
+
image = _ref.image,
|
|
39859
39878
|
otherProps = _objectWithoutProperties__default["default"](_ref, _excluded$h);
|
|
39860
39879
|
var properties = configurations.properties,
|
|
39861
39880
|
design = configurations.design;
|
|
@@ -39903,6 +39922,7 @@ var FeatureWithImage = function FeatureWithImage(_ref) {
|
|
|
39903
39922
|
className: mediaBaseClasses
|
|
39904
39923
|
}, /*#__PURE__*/React__default["default"].createElement(Media, {
|
|
39905
39924
|
autoPlay: autoPlay,
|
|
39925
|
+
image: image,
|
|
39906
39926
|
isEmbedded: isEmbedded,
|
|
39907
39927
|
videoUrl: videoUrl,
|
|
39908
39928
|
design: design.media,
|
|
@@ -39966,12 +39986,13 @@ var FeatureWithJumboText = function FeatureWithJumboText(_ref) {
|
|
|
39966
39986
|
}, otherProps), description)));
|
|
39967
39987
|
};
|
|
39968
39988
|
|
|
39969
|
-
var _excluded$f = ["configurations", "className", "id"];
|
|
39989
|
+
var _excluded$f = ["configurations", "className", "id", "image"];
|
|
39970
39990
|
var FeatureWithList = function FeatureWithList(_ref) {
|
|
39971
39991
|
var configurations = _ref.configurations,
|
|
39972
39992
|
_ref$className = _ref.className,
|
|
39973
39993
|
className = _ref$className === void 0 ? "" : _ref$className,
|
|
39974
39994
|
id = _ref.id,
|
|
39995
|
+
image = _ref.image,
|
|
39975
39996
|
otherProps = _objectWithoutProperties__default["default"](_ref, _excluded$f);
|
|
39976
39997
|
var properties = configurations.properties,
|
|
39977
39998
|
design = configurations.design;
|
|
@@ -40046,6 +40067,7 @@ var FeatureWithList = function FeatureWithList(_ref) {
|
|
|
40046
40067
|
className: mediaBaseClasses
|
|
40047
40068
|
}, /*#__PURE__*/React__default["default"].createElement(Media, {
|
|
40048
40069
|
autoPlay: autoPlay,
|
|
40070
|
+
image: image,
|
|
40049
40071
|
isEmbedded: isEmbedded,
|
|
40050
40072
|
videoUrl: videoUrl,
|
|
40051
40073
|
design: design.media,
|
|
@@ -40056,12 +40078,13 @@ var FeatureWithList = function FeatureWithList(_ref) {
|
|
|
40056
40078
|
})));
|
|
40057
40079
|
};
|
|
40058
40080
|
|
|
40059
|
-
var _excluded$e = ["configurations", "className", "id"];
|
|
40081
|
+
var _excluded$e = ["configurations", "className", "id", "image"];
|
|
40060
40082
|
var FeatureWithProgressBar = function FeatureWithProgressBar(_ref) {
|
|
40061
40083
|
var configurations = _ref.configurations,
|
|
40062
40084
|
_ref$className = _ref.className,
|
|
40063
40085
|
className = _ref$className === void 0 ? "" : _ref$className,
|
|
40064
40086
|
id = _ref.id,
|
|
40087
|
+
image = _ref.image,
|
|
40065
40088
|
otherProps = _objectWithoutProperties__default["default"](_ref, _excluded$e);
|
|
40066
40089
|
var _useState = React.useState(configurations.properties.features[0].id),
|
|
40067
40090
|
_useState2 = _slicedToArray__default["default"](_useState, 2),
|
|
@@ -40171,6 +40194,7 @@ var FeatureWithProgressBar = function FeatureWithProgressBar(_ref) {
|
|
|
40171
40194
|
})), /*#__PURE__*/React__default["default"].createElement("div", {
|
|
40172
40195
|
className: imageBaseClasses
|
|
40173
40196
|
}, /*#__PURE__*/React__default["default"].createElement(Media, {
|
|
40197
|
+
image: image,
|
|
40174
40198
|
autoPlay: features[selectedTabId - 1].media.autoPlay,
|
|
40175
40199
|
design: design.media,
|
|
40176
40200
|
disableButtonAndLinks: otherProps.disableButtonAndLinks,
|
|
@@ -40182,7 +40206,7 @@ var FeatureWithProgressBar = function FeatureWithProgressBar(_ref) {
|
|
|
40182
40206
|
})));
|
|
40183
40207
|
};
|
|
40184
40208
|
|
|
40185
|
-
var _excluded$d = ["configurations", "className", "id"];
|
|
40209
|
+
var _excluded$d = ["configurations", "className", "id", "image"];
|
|
40186
40210
|
function ownKeys$a(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); enumerableOnly && (symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; })), keys.push.apply(keys, symbols); } return keys; }
|
|
40187
40211
|
function _objectSpread$a(target) { for (var i = 1; i < arguments.length; i++) { var source = null != arguments[i] ? arguments[i] : {}; i % 2 ? ownKeys$a(Object(source), !0).forEach(function (key) { _defineProperty__default["default"](target, key, source[key]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)) : ownKeys$a(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } return target; }
|
|
40188
40212
|
var FooterClassic = function FooterClassic(_ref) {
|
|
@@ -40190,6 +40214,7 @@ var FooterClassic = function FooterClassic(_ref) {
|
|
|
40190
40214
|
_ref$className = _ref.className,
|
|
40191
40215
|
className = _ref$className === void 0 ? "" : _ref$className,
|
|
40192
40216
|
id = _ref.id,
|
|
40217
|
+
image = _ref.image,
|
|
40193
40218
|
otherProps = _objectWithoutProperties__default["default"](_ref, _excluded$d);
|
|
40194
40219
|
var properties = configurations.properties,
|
|
40195
40220
|
design = configurations.design;
|
|
@@ -40222,6 +40247,7 @@ var FooterClassic = function FooterClassic(_ref) {
|
|
|
40222
40247
|
}), /*#__PURE__*/React__default["default"].createElement("div", {
|
|
40223
40248
|
className: "col-span-12 sm:col-span-12 sm:mx-20 sm:flex sm:justify-between sm:gap-y-0"
|
|
40224
40249
|
}, /*#__PURE__*/React__default["default"].createElement(StyledImage$1, {
|
|
40250
|
+
image: image,
|
|
40225
40251
|
design: design.logo,
|
|
40226
40252
|
disableButtonAndLinks: otherProps.disableButtonAndLinks,
|
|
40227
40253
|
id: "footer-classic-logo",
|
|
@@ -40273,6 +40299,7 @@ var FooterClassic = function FooterClassic(_ref) {
|
|
|
40273
40299
|
design: design.body,
|
|
40274
40300
|
nestedClassName: baseClasses
|
|
40275
40301
|
}, /*#__PURE__*/React__default["default"].createElement(StyledImage$1, {
|
|
40302
|
+
image: image,
|
|
40276
40303
|
design: design.logo,
|
|
40277
40304
|
disableButtonAndLinks: otherProps.disableButtonAndLinks,
|
|
40278
40305
|
id: "footer-classic-logo",
|
|
@@ -40320,7 +40347,7 @@ var FooterClassic = function FooterClassic(_ref) {
|
|
|
40320
40347
|
}, otherProps), copyrightText));
|
|
40321
40348
|
};
|
|
40322
40349
|
|
|
40323
|
-
var _excluded$c = ["configurations", "className", "id"];
|
|
40350
|
+
var _excluded$c = ["configurations", "className", "id", "image"];
|
|
40324
40351
|
function ownKeys$9(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); enumerableOnly && (symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; })), keys.push.apply(keys, symbols); } return keys; }
|
|
40325
40352
|
function _objectSpread$9(target) { for (var i = 1; i < arguments.length; i++) { var source = null != arguments[i] ? arguments[i] : {}; i % 2 ? ownKeys$9(Object(source), !0).forEach(function (key) { _defineProperty__default["default"](target, key, source[key]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)) : ownKeys$9(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } return target; }
|
|
40326
40353
|
var FooterWithIcons = function FooterWithIcons(_ref) {
|
|
@@ -40328,6 +40355,7 @@ var FooterWithIcons = function FooterWithIcons(_ref) {
|
|
|
40328
40355
|
_ref$className = _ref.className,
|
|
40329
40356
|
className = _ref$className === void 0 ? "" : _ref$className,
|
|
40330
40357
|
id = _ref.id,
|
|
40358
|
+
image = _ref.image,
|
|
40331
40359
|
otherProps = _objectWithoutProperties__default["default"](_ref, _excluded$c);
|
|
40332
40360
|
var properties = configurations.properties,
|
|
40333
40361
|
design = configurations.design;
|
|
@@ -40351,6 +40379,7 @@ var FooterWithIcons = function FooterWithIcons(_ref) {
|
|
|
40351
40379
|
}, /*#__PURE__*/React__default["default"].createElement("div", {
|
|
40352
40380
|
className: "col-span-12 grid grid-cols-8 gap-y-4 sm:col-span-7 sm:w-full sm:gap-x-4 lg:col-span-6"
|
|
40353
40381
|
}, /*#__PURE__*/React__default["default"].createElement(StyledImage$1, {
|
|
40382
|
+
image: image,
|
|
40354
40383
|
design: design.logo,
|
|
40355
40384
|
disableButtonAndLinks: otherProps.disableButtonAndLinks,
|
|
40356
40385
|
id: "footer-with-icons-logo",
|
|
@@ -40395,7 +40424,7 @@ var FooterWithIcons = function FooterWithIcons(_ref) {
|
|
|
40395
40424
|
}, otherProps), copyrightText));
|
|
40396
40425
|
};
|
|
40397
40426
|
|
|
40398
|
-
var _excluded$b = ["configurations", "className", "id"];
|
|
40427
|
+
var _excluded$b = ["configurations", "className", "id", "image"];
|
|
40399
40428
|
function ownKeys$8(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); enumerableOnly && (symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; })), keys.push.apply(keys, symbols); } return keys; }
|
|
40400
40429
|
function _objectSpread$8(target) { for (var i = 1; i < arguments.length; i++) { var source = null != arguments[i] ? arguments[i] : {}; i % 2 ? ownKeys$8(Object(source), !0).forEach(function (key) { _defineProperty__default["default"](target, key, source[key]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)) : ownKeys$8(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } return target; }
|
|
40401
40430
|
var FooterWithLinks = function FooterWithLinks(_ref) {
|
|
@@ -40403,6 +40432,7 @@ var FooterWithLinks = function FooterWithLinks(_ref) {
|
|
|
40403
40432
|
_ref$className = _ref.className,
|
|
40404
40433
|
className = _ref$className === void 0 ? "" : _ref$className,
|
|
40405
40434
|
id = _ref.id,
|
|
40435
|
+
image = _ref.image,
|
|
40406
40436
|
otherProps = _objectWithoutProperties__default["default"](_ref, _excluded$b);
|
|
40407
40437
|
var properties = configurations.properties,
|
|
40408
40438
|
design = configurations.design;
|
|
@@ -40430,6 +40460,7 @@ var FooterWithLinks = function FooterWithLinks(_ref) {
|
|
|
40430
40460
|
}, /*#__PURE__*/React__default["default"].createElement("div", {
|
|
40431
40461
|
className: "flex items-center gap-x-2"
|
|
40432
40462
|
}, /*#__PURE__*/React__default["default"].createElement(StyledImage$1, {
|
|
40463
|
+
image: image,
|
|
40433
40464
|
design: design.logo,
|
|
40434
40465
|
disableButtonAndLinks: otherProps.disableButtonAndLinks,
|
|
40435
40466
|
id: "footer-with-links-logo",
|
|
@@ -42363,7 +42394,8 @@ var GalleryClassic = function GalleryClassic(_ref) {
|
|
|
42363
42394
|
_ref$className = _ref.className,
|
|
42364
42395
|
className = _ref$className === void 0 ? "" : _ref$className,
|
|
42365
42396
|
id = _ref.id,
|
|
42366
|
-
disableButtonAndLinks = _ref.disableButtonAndLinks
|
|
42397
|
+
disableButtonAndLinks = _ref.disableButtonAndLinks,
|
|
42398
|
+
image = _ref.image;
|
|
42367
42399
|
var swiperRef = React.useRef(null);
|
|
42368
42400
|
var properties = configurations.properties,
|
|
42369
42401
|
design = configurations.design;
|
|
@@ -42439,6 +42471,7 @@ var GalleryClassic = function GalleryClassic(_ref) {
|
|
|
42439
42471
|
key: getUniqueKey(src, title, index)
|
|
42440
42472
|
}, /*#__PURE__*/React__default["default"].createElement(StyledImage$1, {
|
|
42441
42473
|
disableButtonAndLinks: disableButtonAndLinks,
|
|
42474
|
+
image: image,
|
|
42442
42475
|
index: index,
|
|
42443
42476
|
src: src,
|
|
42444
42477
|
alt: caption,
|
|
@@ -42459,12 +42492,13 @@ var GalleryClassic = function GalleryClassic(_ref) {
|
|
|
42459
42492
|
}));
|
|
42460
42493
|
};
|
|
42461
42494
|
|
|
42462
|
-
var _excluded$a = ["configurations", "className", "id"];
|
|
42495
|
+
var _excluded$a = ["configurations", "className", "id", "image"];
|
|
42463
42496
|
var GalleryWithAutoplay = function GalleryWithAutoplay(_ref) {
|
|
42464
42497
|
var configurations = _ref.configurations,
|
|
42465
42498
|
_ref$className = _ref.className,
|
|
42466
42499
|
className = _ref$className === void 0 ? "" : _ref$className,
|
|
42467
42500
|
id = _ref.id,
|
|
42501
|
+
image = _ref.image,
|
|
42468
42502
|
otherProps = _objectWithoutProperties__default["default"](_ref, _excluded$a);
|
|
42469
42503
|
var _useState = React.useState(null),
|
|
42470
42504
|
_useState2 = _slicedToArray__default["default"](_useState, 2),
|
|
@@ -42528,6 +42562,7 @@ var GalleryWithAutoplay = function GalleryWithAutoplay(_ref) {
|
|
|
42528
42562
|
className: "swiper__wrapper",
|
|
42529
42563
|
key: getUniqueKey(src, caption, index)
|
|
42530
42564
|
}, /*#__PURE__*/React__default["default"].createElement(StyledImage$1, {
|
|
42565
|
+
image: image,
|
|
42531
42566
|
index: index,
|
|
42532
42567
|
src: src,
|
|
42533
42568
|
alt: caption,
|
|
@@ -42564,6 +42599,7 @@ var GalleryWithAutoplay = function GalleryWithAutoplay(_ref) {
|
|
|
42564
42599
|
key: getUniqueKey(src, title, index)
|
|
42565
42600
|
}, /*#__PURE__*/React__default["default"].createElement(StyledImage$1, {
|
|
42566
42601
|
alt: alt,
|
|
42602
|
+
image: image,
|
|
42567
42603
|
index: index,
|
|
42568
42604
|
src: src,
|
|
42569
42605
|
title: title,
|
|
@@ -42592,7 +42628,7 @@ var useElementVisible = function useElementVisible(ref) {
|
|
|
42592
42628
|
return isIntersecting;
|
|
42593
42629
|
};
|
|
42594
42630
|
|
|
42595
|
-
var _excluded$9 = ["configurations", "className", "currentPath", "id"];
|
|
42631
|
+
var _excluded$9 = ["configurations", "className", "currentPath", "id", "image"];
|
|
42596
42632
|
function ownKeys$7(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); enumerableOnly && (symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; })), keys.push.apply(keys, symbols); } return keys; }
|
|
42597
42633
|
function _objectSpread$7(target) { for (var i = 1; i < arguments.length; i++) { var source = null != arguments[i] ? arguments[i] : {}; i % 2 ? ownKeys$7(Object(source), !0).forEach(function (key) { _defineProperty__default["default"](target, key, source[key]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)) : ownKeys$7(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } return target; }
|
|
42598
42634
|
var HeaderWithButtons = function HeaderWithButtons(_ref) {
|
|
@@ -42601,6 +42637,7 @@ var HeaderWithButtons = function HeaderWithButtons(_ref) {
|
|
|
42601
42637
|
className = _ref$className === void 0 ? "" : _ref$className,
|
|
42602
42638
|
currentPath = _ref.currentPath,
|
|
42603
42639
|
id = _ref.id,
|
|
42640
|
+
image = _ref.image,
|
|
42604
42641
|
otherProps = _objectWithoutProperties__default["default"](_ref, _excluded$9);
|
|
42605
42642
|
var _useState = React.useState(false),
|
|
42606
42643
|
_useState2 = _slicedToArray__default["default"](_useState, 2),
|
|
@@ -42632,6 +42669,7 @@ var HeaderWithButtons = function HeaderWithButtons(_ref) {
|
|
|
42632
42669
|
"col-span-3 sm:col-span-4 sm:col-start-2": neetoCist.isNotEmpty(buttons)
|
|
42633
42670
|
})
|
|
42634
42671
|
}, otherProps), /*#__PURE__*/React__default["default"].createElement(StyledImage$1, {
|
|
42672
|
+
image: image,
|
|
42635
42673
|
className: "max-h-8 sm:max-h-10 lg:max-h-14",
|
|
42636
42674
|
design: design.logo,
|
|
42637
42675
|
src: properties.logo.src
|
|
@@ -42694,7 +42732,7 @@ var HeaderWithButtons = function HeaderWithButtons(_ref) {
|
|
|
42694
42732
|
}))));
|
|
42695
42733
|
};
|
|
42696
42734
|
|
|
42697
|
-
var _excluded$8 = ["configurations", "className", "id"];
|
|
42735
|
+
var _excluded$8 = ["configurations", "className", "id", "image"];
|
|
42698
42736
|
function ownKeys$6(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); enumerableOnly && (symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; })), keys.push.apply(keys, symbols); } return keys; }
|
|
42699
42737
|
function _objectSpread$6(target) { for (var i = 1; i < arguments.length; i++) { var source = null != arguments[i] ? arguments[i] : {}; i % 2 ? ownKeys$6(Object(source), !0).forEach(function (key) { _defineProperty__default["default"](target, key, source[key]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)) : ownKeys$6(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } return target; }
|
|
42700
42738
|
var HeaderWithDropdownLinks = function HeaderWithDropdownLinks(_ref) {
|
|
@@ -42702,6 +42740,7 @@ var HeaderWithDropdownLinks = function HeaderWithDropdownLinks(_ref) {
|
|
|
42702
42740
|
_ref$className = _ref.className,
|
|
42703
42741
|
className = _ref$className === void 0 ? "" : _ref$className,
|
|
42704
42742
|
id = _ref.id,
|
|
42743
|
+
image = _ref.image,
|
|
42705
42744
|
otherProps = _objectWithoutProperties__default["default"](_ref, _excluded$8);
|
|
42706
42745
|
var _useState = React.useState(false),
|
|
42707
42746
|
_useState2 = _slicedToArray__default["default"](_useState, 2),
|
|
@@ -42747,6 +42786,7 @@ var HeaderWithDropdownLinks = function HeaderWithDropdownLinks(_ref) {
|
|
|
42747
42786
|
className: "flex w-full gap-x-2",
|
|
42748
42787
|
to: properties.logo.to
|
|
42749
42788
|
}, otherProps), /*#__PURE__*/React__default["default"].createElement(StyledImage$1, {
|
|
42789
|
+
image: image,
|
|
42750
42790
|
className: "max-h-8 sm:max-h-10 lg:max-h-14",
|
|
42751
42791
|
design: design.logo,
|
|
42752
42792
|
disableButtonAndLinks: otherProps.disableButtonAndLinks,
|
|
@@ -42805,7 +42845,7 @@ var HeaderWithDropdownLinks = function HeaderWithDropdownLinks(_ref) {
|
|
|
42805
42845
|
})))));
|
|
42806
42846
|
};
|
|
42807
42847
|
|
|
42808
|
-
var _excluded$7 = ["configurations", "className", "currentPath", "id"];
|
|
42848
|
+
var _excluded$7 = ["configurations", "className", "currentPath", "id", "image"];
|
|
42809
42849
|
function ownKeys$5(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); enumerableOnly && (symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; })), keys.push.apply(keys, symbols); } return keys; }
|
|
42810
42850
|
function _objectSpread$5(target) { for (var i = 1; i < arguments.length; i++) { var source = null != arguments[i] ? arguments[i] : {}; i % 2 ? ownKeys$5(Object(source), !0).forEach(function (key) { _defineProperty__default["default"](target, key, source[key]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)) : ownKeys$5(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } return target; }
|
|
42811
42851
|
var HeaderWithIcons = function HeaderWithIcons(_ref) {
|
|
@@ -42814,6 +42854,7 @@ var HeaderWithIcons = function HeaderWithIcons(_ref) {
|
|
|
42814
42854
|
className = _ref$className === void 0 ? "" : _ref$className,
|
|
42815
42855
|
currentPath = _ref.currentPath,
|
|
42816
42856
|
id = _ref.id,
|
|
42857
|
+
image = _ref.image,
|
|
42817
42858
|
otherProps = _objectWithoutProperties__default["default"](_ref, _excluded$7);
|
|
42818
42859
|
var _useState = React.useState(false),
|
|
42819
42860
|
_useState2 = _slicedToArray__default["default"](_useState, 2),
|
|
@@ -42853,6 +42894,7 @@ var HeaderWithIcons = function HeaderWithIcons(_ref) {
|
|
|
42853
42894
|
className: "col-span-6 col-start-4 m-auto flex max-h-8 justify-center sm:col-span-4 sm:col-start-5 sm:max-h-10 lg:col-span-3 lg:col-start-6 lg:max-h-14",
|
|
42854
42895
|
to: properties.logo.to
|
|
42855
42896
|
}, otherProps), /*#__PURE__*/React__default["default"].createElement(StyledImage$1, {
|
|
42897
|
+
image: image,
|
|
42856
42898
|
design: design.logo,
|
|
42857
42899
|
disableButtonAndLinks: otherProps.disableButtonAndLinks,
|
|
42858
42900
|
id: "header-with-icons-logo",
|
|
@@ -42924,7 +42966,7 @@ var HeaderWithIcons = function HeaderWithIcons(_ref) {
|
|
|
42924
42966
|
})))));
|
|
42925
42967
|
};
|
|
42926
42968
|
|
|
42927
|
-
var _excluded$6 = ["configurations", "className", "id", "currentPath"];
|
|
42969
|
+
var _excluded$6 = ["configurations", "className", "id", "currentPath", "image"];
|
|
42928
42970
|
function ownKeys$4(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); enumerableOnly && (symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; })), keys.push.apply(keys, symbols); } return keys; }
|
|
42929
42971
|
function _objectSpread$4(target) { for (var i = 1; i < arguments.length; i++) { var source = null != arguments[i] ? arguments[i] : {}; i % 2 ? ownKeys$4(Object(source), !0).forEach(function (key) { _defineProperty__default["default"](target, key, source[key]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)) : ownKeys$4(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } return target; }
|
|
42930
42972
|
var HeaderWithLogoTitle = function HeaderWithLogoTitle(_ref) {
|
|
@@ -42933,6 +42975,7 @@ var HeaderWithLogoTitle = function HeaderWithLogoTitle(_ref) {
|
|
|
42933
42975
|
className = _ref$className === void 0 ? "" : _ref$className,
|
|
42934
42976
|
id = _ref.id,
|
|
42935
42977
|
currentPath = _ref.currentPath,
|
|
42978
|
+
image = _ref.image,
|
|
42936
42979
|
otherProps = _objectWithoutProperties__default["default"](_ref, _excluded$6);
|
|
42937
42980
|
var _useState = React.useState(false),
|
|
42938
42981
|
_useState2 = _slicedToArray__default["default"](_useState, 2),
|
|
@@ -42966,6 +43009,7 @@ var HeaderWithLogoTitle = function HeaderWithLogoTitle(_ref) {
|
|
|
42966
43009
|
className: "flex w-full gap-x-2",
|
|
42967
43010
|
to: properties.logo.to
|
|
42968
43011
|
}, otherProps), /*#__PURE__*/React__default["default"].createElement(StyledImage$1, {
|
|
43012
|
+
image: image,
|
|
42969
43013
|
className: "max-h-8 sm:max-h-10 lg:max-h-14",
|
|
42970
43014
|
design: design.logo,
|
|
42971
43015
|
disableButtonAndLinks: otherProps.disableButtonAndLinks,
|
|
@@ -43039,7 +43083,7 @@ var HeaderWithLogoTitle = function HeaderWithLogoTitle(_ref) {
|
|
|
43039
43083
|
}))));
|
|
43040
43084
|
};
|
|
43041
43085
|
|
|
43042
|
-
var _excluded$5 = ["configurations", "className", "id"];
|
|
43086
|
+
var _excluded$5 = ["configurations", "className", "id", "image"];
|
|
43043
43087
|
function ownKeys$3(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); enumerableOnly && (symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; })), keys.push.apply(keys, symbols); } return keys; }
|
|
43044
43088
|
function _objectSpread$3(target) { for (var i = 1; i < arguments.length; i++) { var source = null != arguments[i] ? arguments[i] : {}; i % 2 ? ownKeys$3(Object(source), !0).forEach(function (key) { _defineProperty__default["default"](target, key, source[key]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)) : ownKeys$3(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } return target; }
|
|
43045
43089
|
var HeroWithCallToAction = function HeroWithCallToAction(_ref) {
|
|
@@ -43047,6 +43091,7 @@ var HeroWithCallToAction = function HeroWithCallToAction(_ref) {
|
|
|
43047
43091
|
_ref$className = _ref.className,
|
|
43048
43092
|
className = _ref$className === void 0 ? "" : _ref$className,
|
|
43049
43093
|
id = _ref.id,
|
|
43094
|
+
image = _ref.image,
|
|
43050
43095
|
otherProps = _objectWithoutProperties__default["default"](_ref, _excluded$5);
|
|
43051
43096
|
var properties = configurations.properties,
|
|
43052
43097
|
design = configurations.design;
|
|
@@ -43122,6 +43167,7 @@ var HeroWithCallToAction = function HeroWithCallToAction(_ref) {
|
|
|
43122
43167
|
className: mediaBaseClasses
|
|
43123
43168
|
}, /*#__PURE__*/React__default["default"].createElement(Media, {
|
|
43124
43169
|
autoPlay: autoPlay,
|
|
43170
|
+
image: image,
|
|
43125
43171
|
isEmbedded: isEmbedded,
|
|
43126
43172
|
videoUrl: videoUrl,
|
|
43127
43173
|
design: design.media,
|
|
@@ -43131,7 +43177,7 @@ var HeroWithCallToAction = function HeroWithCallToAction(_ref) {
|
|
|
43131
43177
|
})));
|
|
43132
43178
|
};
|
|
43133
43179
|
|
|
43134
|
-
var _excluded$4 = ["configurations", "className", "id", "disableButtonAndLinks"];
|
|
43180
|
+
var _excluded$4 = ["configurations", "className", "id", "disableButtonAndLinks", "image"];
|
|
43135
43181
|
function ownKeys$2(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); enumerableOnly && (symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; })), keys.push.apply(keys, symbols); } return keys; }
|
|
43136
43182
|
function _objectSpread$2(target) { for (var i = 1; i < arguments.length; i++) { var source = null != arguments[i] ? arguments[i] : {}; i % 2 ? ownKeys$2(Object(source), !0).forEach(function (key) { _defineProperty__default["default"](target, key, source[key]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)) : ownKeys$2(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } return target; }
|
|
43137
43183
|
var HeroWithGallery = function HeroWithGallery(_ref) {
|
|
@@ -43140,6 +43186,7 @@ var HeroWithGallery = function HeroWithGallery(_ref) {
|
|
|
43140
43186
|
className = _ref$className === void 0 ? "" : _ref$className,
|
|
43141
43187
|
id = _ref.id,
|
|
43142
43188
|
disableButtonAndLinks = _ref.disableButtonAndLinks,
|
|
43189
|
+
image = _ref.image,
|
|
43143
43190
|
otherProps = _objectWithoutProperties__default["default"](_ref, _excluded$4);
|
|
43144
43191
|
var _useState = React.useState(null),
|
|
43145
43192
|
_useState2 = _slicedToArray__default["default"](_useState, 2),
|
|
@@ -43248,6 +43295,7 @@ var HeroWithGallery = function HeroWithGallery(_ref) {
|
|
|
43248
43295
|
}))
|
|
43249
43296
|
}, /*#__PURE__*/React__default["default"].createElement(Media, {
|
|
43250
43297
|
disableButtonAndLinks: disableButtonAndLinks,
|
|
43298
|
+
image: image,
|
|
43251
43299
|
index: index,
|
|
43252
43300
|
autoPlay: media.autoPlay,
|
|
43253
43301
|
design: design.media,
|
|
@@ -43316,7 +43364,8 @@ var LogoClouds = function LogoClouds(_ref) {
|
|
|
43316
43364
|
_ref$className = _ref.className,
|
|
43317
43365
|
className = _ref$className === void 0 ? "" : _ref$className,
|
|
43318
43366
|
id = _ref.id,
|
|
43319
|
-
disableButtonAndLinks = _ref.disableButtonAndLinks
|
|
43367
|
+
disableButtonAndLinks = _ref.disableButtonAndLinks,
|
|
43368
|
+
image = _ref.image;
|
|
43320
43369
|
var properties = configurations.properties,
|
|
43321
43370
|
design = configurations.design;
|
|
43322
43371
|
var _properties$logos = properties.logos,
|
|
@@ -43365,6 +43414,7 @@ var LogoClouds = function LogoClouds(_ref) {
|
|
|
43365
43414
|
}, /*#__PURE__*/React__default["default"].createElement(StyledImage$1, {
|
|
43366
43415
|
alt: alt,
|
|
43367
43416
|
disableButtonAndLinks: disableButtonAndLinks,
|
|
43417
|
+
image: image,
|
|
43368
43418
|
index: index,
|
|
43369
43419
|
src: src,
|
|
43370
43420
|
title: title,
|
|
@@ -43580,7 +43630,8 @@ var Slides = function Slides(_ref) {
|
|
|
43580
43630
|
id = _ref.id,
|
|
43581
43631
|
disableButtonAndLinks = _ref.disableButtonAndLinks,
|
|
43582
43632
|
pageUrl = _ref.pageUrl,
|
|
43583
|
-
hostUrl = _ref.hostUrl
|
|
43633
|
+
hostUrl = _ref.hostUrl,
|
|
43634
|
+
image = _ref.image;
|
|
43584
43635
|
var _useState = React.useState(0),
|
|
43585
43636
|
_useState2 = _slicedToArray__default["default"](_useState, 2),
|
|
43586
43637
|
activeIndex = _useState2[0],
|
|
@@ -43621,6 +43672,7 @@ var Slides = function Slides(_ref) {
|
|
|
43621
43672
|
return /*#__PURE__*/React__default["default"].createElement("div", {
|
|
43622
43673
|
className: "bottom-0 col-span-12 flex w-full justify-center sm:absolute sm:col-span-10 sm:col-start-2"
|
|
43623
43674
|
}, /*#__PURE__*/React__default["default"].createElement(StyledImage$1, {
|
|
43675
|
+
image: image,
|
|
43624
43676
|
design: design.image,
|
|
43625
43677
|
src: imageUrl
|
|
43626
43678
|
}));
|
|
@@ -43697,7 +43749,7 @@ var Slides = function Slides(_ref) {
|
|
|
43697
43749
|
}));
|
|
43698
43750
|
};
|
|
43699
43751
|
|
|
43700
|
-
var _excluded$1 = ["configurations", "className", "id"];
|
|
43752
|
+
var _excluded$1 = ["configurations", "className", "id", "image"];
|
|
43701
43753
|
function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); enumerableOnly && (symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; })), keys.push.apply(keys, symbols); } return keys; }
|
|
43702
43754
|
function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = null != arguments[i] ? arguments[i] : {}; i % 2 ? ownKeys(Object(source), !0).forEach(function (key) { _defineProperty__default["default"](target, key, source[key]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)) : ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } return target; }
|
|
43703
43755
|
var TestimonialWithSlider = function TestimonialWithSlider(_ref) {
|
|
@@ -43705,6 +43757,7 @@ var TestimonialWithSlider = function TestimonialWithSlider(_ref) {
|
|
|
43705
43757
|
_ref$className = _ref.className,
|
|
43706
43758
|
className = _ref$className === void 0 ? "" : _ref$className,
|
|
43707
43759
|
id = _ref.id,
|
|
43760
|
+
image = _ref.image,
|
|
43708
43761
|
otherProps = _objectWithoutProperties__default["default"](_ref, _excluded$1);
|
|
43709
43762
|
var _useState = React.useState(null),
|
|
43710
43763
|
_useState2 = _slicedToArray__default["default"](_useState, 2),
|
|
@@ -43776,6 +43829,7 @@ var TestimonialWithSlider = function TestimonialWithSlider(_ref) {
|
|
|
43776
43829
|
}, /*#__PURE__*/React__default["default"].createElement("div", {
|
|
43777
43830
|
className: imageClasses(imagePosition)
|
|
43778
43831
|
}, /*#__PURE__*/React__default["default"].createElement(StyledImage$1, {
|
|
43832
|
+
image: image,
|
|
43779
43833
|
index: index,
|
|
43780
43834
|
src: src,
|
|
43781
43835
|
className: "ns-testimonial-image-aspect-ratio object-cover",
|
|
@@ -43828,12 +43882,13 @@ var TestimonialWithSlider = function TestimonialWithSlider(_ref) {
|
|
|
43828
43882
|
}, button, otherProps))));
|
|
43829
43883
|
};
|
|
43830
43884
|
|
|
43831
|
-
var _excluded = ["configurations", "className", "id"];
|
|
43885
|
+
var _excluded = ["configurations", "className", "id", "image"];
|
|
43832
43886
|
var TestimonialWithVerticalView = function TestimonialWithVerticalView(_ref) {
|
|
43833
43887
|
var configurations = _ref.configurations,
|
|
43834
43888
|
_ref$className = _ref.className,
|
|
43835
43889
|
className = _ref$className === void 0 ? "" : _ref$className,
|
|
43836
43890
|
id = _ref.id,
|
|
43891
|
+
image = _ref.image,
|
|
43837
43892
|
otherProps = _objectWithoutProperties__default["default"](_ref, _excluded);
|
|
43838
43893
|
var properties = configurations.properties,
|
|
43839
43894
|
design = configurations.design;
|
|
@@ -43891,6 +43946,7 @@ var TestimonialWithVerticalView = function TestimonialWithVerticalView(_ref) {
|
|
|
43891
43946
|
}, /*#__PURE__*/React__default["default"].createElement("div", {
|
|
43892
43947
|
className: imageClasses
|
|
43893
43948
|
}, /*#__PURE__*/React__default["default"].createElement(StyledImage$1, {
|
|
43949
|
+
image: image,
|
|
43894
43950
|
index: index,
|
|
43895
43951
|
src: src,
|
|
43896
43952
|
className: "ns-testimonial-image-aspect-ratio",
|