@bigbinary/neeto-site-blocks 1.10.9 → 1.10.10
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 +64 -16
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.js +64 -16
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -14083,7 +14083,7 @@ var withConditionalRender = function withConditionalRender(Component, condition)
|
|
|
14083
14083
|
return ConditionalRender;
|
|
14084
14084
|
};
|
|
14085
14085
|
|
|
14086
|
-
var _excluded$B = ["id", "disableButtonAndLinks", "wrapperClassName", "index", "image"];
|
|
14086
|
+
var _excluded$B = ["id", "disableButtonAndLinks", "wrapperClassName", "index", "image", "isAddNewPane"];
|
|
14087
14087
|
var StyledImage = styled.img.attrs(function () {
|
|
14088
14088
|
return {
|
|
14089
14089
|
className: "hover:mix-blend-multiply"
|
|
@@ -14115,6 +14115,8 @@ var StyledImageWithWrapper = function StyledImageWithWrapper(_ref2) {
|
|
|
14115
14115
|
wrapperClassName = _ref2.wrapperClassName,
|
|
14116
14116
|
index = _ref2.index,
|
|
14117
14117
|
image = _ref2.image,
|
|
14118
|
+
_ref2$isAddNewPane = _ref2.isAddNewPane,
|
|
14119
|
+
isAddNewPane = _ref2$isAddNewPane === void 0 ? false : _ref2$isAddNewPane,
|
|
14118
14120
|
props = _objectWithoutProperties(_ref2, _excluded$B);
|
|
14119
14121
|
var _useElementClick = useElementClick({
|
|
14120
14122
|
id: id,
|
|
@@ -14123,7 +14125,7 @@ var StyledImageWithWrapper = function StyledImageWithWrapper(_ref2) {
|
|
|
14123
14125
|
handleImageClick = _useElementClick.handleImageClick;
|
|
14124
14126
|
return /*#__PURE__*/React__default.createElement(StyledWrapper, {
|
|
14125
14127
|
className: classnames("flex justify-center", _defineProperty$1({
|
|
14126
|
-
"neeto-site-highlight__element": disableButtonAndLinks
|
|
14128
|
+
"neeto-site-highlight__element": disableButtonAndLinks && !isAddNewPane
|
|
14127
14129
|
}, wrapperClassName, wrapperClassName)),
|
|
14128
14130
|
onClick: disableButtonAndLinks && handleImageClick
|
|
14129
14131
|
}, /*#__PURE__*/React__default.createElement(StyledImage, _extends$2({
|
|
@@ -15336,11 +15338,13 @@ var Button = function Button(_ref) {
|
|
|
15336
15338
|
Link = _ref.link,
|
|
15337
15339
|
_ref$disableButtonAnd = _ref.disableButtonAndLinks,
|
|
15338
15340
|
disableButtonAndLinks = _ref$disableButtonAnd === void 0 ? false : _ref$disableButtonAnd,
|
|
15341
|
+
_ref$isAddNewPane = _ref.isAddNewPane,
|
|
15342
|
+
isAddNewPane = _ref$isAddNewPane === void 0 ? false : _ref$isAddNewPane,
|
|
15339
15343
|
id = _ref.id,
|
|
15340
15344
|
index = _ref.index;
|
|
15341
15345
|
var anchorBaseClass = classnames("inline-flex items-center justify-center transition-all duration-300 ease-in-out", {
|
|
15342
|
-
"neeto-site-highlight__element after:z-10": disableButtonAndLinks,
|
|
15343
|
-
"pointer-events-none": !disableButtonAndLinks && action === ""
|
|
15346
|
+
"neeto-site-highlight__element after:z-10": disableButtonAndLinks && !isAddNewPane,
|
|
15347
|
+
"pointer-events-none": isAddNewPane || !disableButtonAndLinks && action === ""
|
|
15344
15348
|
});
|
|
15345
15349
|
var _useElementClick = useElementClick({
|
|
15346
15350
|
id: id,
|
|
@@ -15412,7 +15416,7 @@ var PageAndScroll = function PageAndScroll(_ref) {
|
|
|
15412
15416
|
}), label, Icon && /*#__PURE__*/React__default.createElement(Icon, null), children);
|
|
15413
15417
|
};
|
|
15414
15418
|
|
|
15415
|
-
var _excluded$x = ["to", "label", "style", "className", "icon", "action", "baseUrl", "draftMode", "link", "isHighlighted", "disableButtonAndLinks", "children", "disableHovering", "setIsMenuOpen", "id", "index", "router"];
|
|
15419
|
+
var _excluded$x = ["to", "label", "style", "className", "icon", "action", "baseUrl", "draftMode", "link", "isHighlighted", "disableButtonAndLinks", "children", "disableHovering", "setIsMenuOpen", "isAddNewPane", "id", "index", "router"];
|
|
15416
15420
|
function ownKeys$l(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; }
|
|
15417
15421
|
function _objectSpread$l(target) { for (var i = 1; i < arguments.length; i++) { var source = null != arguments[i] ? arguments[i] : {}; i % 2 ? ownKeys$l(Object(source), !0).forEach(function (key) { _defineProperty$1(target, key, source[key]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)) : ownKeys$l(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } return target; }
|
|
15418
15422
|
var LinkElement = function LinkElement(_ref) {
|
|
@@ -15441,13 +15445,15 @@ var LinkElement = function LinkElement(_ref) {
|
|
|
15441
15445
|
_ref$disableHovering = _ref.disableHovering,
|
|
15442
15446
|
disableHovering = _ref$disableHovering === void 0 ? false : _ref$disableHovering,
|
|
15443
15447
|
setIsMenuOpen = _ref.setIsMenuOpen,
|
|
15448
|
+
_ref$isAddNewPane = _ref.isAddNewPane,
|
|
15449
|
+
isAddNewPane = _ref$isAddNewPane === void 0 ? false : _ref$isAddNewPane,
|
|
15444
15450
|
id = _ref.id,
|
|
15445
15451
|
index = _ref.index,
|
|
15446
15452
|
router = _ref.router,
|
|
15447
15453
|
otherProps = _objectWithoutProperties(_ref, _excluded$x);
|
|
15448
15454
|
var baseClass = classnames("inline-flex items-center transition-all duration-300 ease-in-out relative", {
|
|
15449
|
-
"neeto-site-highlight__element": disableButtonAndLinks,
|
|
15450
|
-
"pointer-events-none": !disableButtonAndLinks && action === ""
|
|
15455
|
+
"neeto-site-highlight__element": disableButtonAndLinks && !isAddNewPane,
|
|
15456
|
+
"pointer-events-none": isAddNewPane || !disableButtonAndLinks && action === ""
|
|
15451
15457
|
});
|
|
15452
15458
|
var _useElementClick = useElementClick({
|
|
15453
15459
|
id: id,
|
|
@@ -15455,6 +15461,7 @@ var LinkElement = function LinkElement(_ref) {
|
|
|
15455
15461
|
}),
|
|
15456
15462
|
handleClick = _useElementClick.handleClick;
|
|
15457
15463
|
var handleLinkClick = function handleLinkClick(event) {
|
|
15464
|
+
if (isAddNewPane) return;
|
|
15458
15465
|
setIsMenuOpen && setIsMenuOpen(false);
|
|
15459
15466
|
disableButtonAndLinks && handleClick(event);
|
|
15460
15467
|
};
|
|
@@ -15774,7 +15781,7 @@ var Toggle = function Toggle(_ref) {
|
|
|
15774
15781
|
})));
|
|
15775
15782
|
};
|
|
15776
15783
|
|
|
15777
|
-
var _excluded$u = ["style", "component", "className", "isTitle", "children", "disableButtonAndLinks", "id", "index"];
|
|
15784
|
+
var _excluded$u = ["style", "component", "className", "isTitle", "children", "disableButtonAndLinks", "id", "index", "isAddNewPane"];
|
|
15778
15785
|
var Typography = function Typography(_ref) {
|
|
15779
15786
|
var _ref$style = _ref.style,
|
|
15780
15787
|
style = _ref$style === void 0 ? DEFAULT_TYPOGRAPHY_STYLES : _ref$style,
|
|
@@ -15789,6 +15796,8 @@ var Typography = function Typography(_ref) {
|
|
|
15789
15796
|
disableButtonAndLinks = _ref$disableButtonAnd === void 0 ? false : _ref$disableButtonAnd,
|
|
15790
15797
|
id = _ref.id,
|
|
15791
15798
|
index = _ref.index,
|
|
15799
|
+
_ref$isAddNewPane = _ref.isAddNewPane,
|
|
15800
|
+
isAddNewPane = _ref$isAddNewPane === void 0 ? false : _ref$isAddNewPane,
|
|
15792
15801
|
otherProps = _objectWithoutProperties(_ref, _excluded$u);
|
|
15793
15802
|
var _useElementClick = useElementClick({
|
|
15794
15803
|
id: id,
|
|
@@ -15804,9 +15813,9 @@ var Typography = function Typography(_ref) {
|
|
|
15804
15813
|
as: isTitle ? component : COMPONENTS.div,
|
|
15805
15814
|
design: style,
|
|
15806
15815
|
className: classnames("neeto-site-typography break-words", className, {
|
|
15807
|
-
"neeto-site-highlight__element": disableButtonAndLinks
|
|
15816
|
+
"neeto-site-highlight__element": disableButtonAndLinks && !isAddNewPane
|
|
15808
15817
|
}),
|
|
15809
|
-
onClick: handleTitleClick
|
|
15818
|
+
onClick: !isAddNewPane && handleTitleClick
|
|
15810
15819
|
}, otherProps), isTitle ? children : /*#__PURE__*/React__default.createElement(StyledInterweave, {
|
|
15811
15820
|
className: "neeto-editor-content",
|
|
15812
15821
|
content: children,
|
|
@@ -15861,6 +15870,7 @@ var BlogContent = function BlogContent(_ref) {
|
|
|
15861
15870
|
design: design.image,
|
|
15862
15871
|
disableButtonAndLinks: otherProps.disableButtonAndLinks,
|
|
15863
15872
|
id: "blog-content-image",
|
|
15873
|
+
isAddNewPane: otherProps.isAddNewPane,
|
|
15864
15874
|
src: imageSrc
|
|
15865
15875
|
})), /*#__PURE__*/React__default.createElement(Typography$1, _extends$2({
|
|
15866
15876
|
className: textClasses,
|
|
@@ -21059,7 +21069,9 @@ var CardsInGridView = function CardsInGridView(_ref) {
|
|
|
21059
21069
|
index: index,
|
|
21060
21070
|
design: mergeRight(design.cardImage, style),
|
|
21061
21071
|
id: "cards-in-grid-view-".concat(index, "-image"),
|
|
21072
|
+
isAddNewPane: otherProps.isAddNewPane,
|
|
21062
21073
|
src: imageUrl,
|
|
21074
|
+
wrapperClassName: "h-full w-full",
|
|
21063
21075
|
className: classnames("mx-auto", {
|
|
21064
21076
|
"max-h-40": mode === "landscape",
|
|
21065
21077
|
"max-h-72": mode === "portrait"
|
|
@@ -21072,11 +21084,13 @@ var CardsInGridView = function CardsInGridView(_ref) {
|
|
|
21072
21084
|
isTitle: true,
|
|
21073
21085
|
component: "h5",
|
|
21074
21086
|
id: "cards-in-grid-view-".concat(index, "-title"),
|
|
21087
|
+
isAddNewPane: otherProps.isAddNewPane,
|
|
21075
21088
|
style: design.cardTitle
|
|
21076
21089
|
}, title), /*#__PURE__*/React__default.createElement(Typography$1, {
|
|
21077
21090
|
disableButtonAndLinks: disableButtonAndLinks,
|
|
21078
21091
|
index: index,
|
|
21079
21092
|
id: "cards-in-grid-view-".concat(index, "-description"),
|
|
21093
|
+
isAddNewPane: otherProps.isAddNewPane,
|
|
21080
21094
|
style: design.cardDescription
|
|
21081
21095
|
}, description))));
|
|
21082
21096
|
};
|
|
@@ -21097,6 +21111,7 @@ var CardsInGridView = function CardsInGridView(_ref) {
|
|
|
21097
21111
|
className: "col-span-12",
|
|
21098
21112
|
component: "h3",
|
|
21099
21113
|
id: "cards-in-grid-view-title",
|
|
21114
|
+
isAddNewPane: otherProps.isAddNewPane,
|
|
21100
21115
|
style: design.title
|
|
21101
21116
|
}, title), /*#__PURE__*/React__default.createElement(ArrowButton, {
|
|
21102
21117
|
isStart: true,
|
|
@@ -21369,8 +21384,9 @@ var CardsWithImage = function CardsWithImage(_ref) {
|
|
|
21369
21384
|
className: "!justify-self-end",
|
|
21370
21385
|
design: design.cardImage,
|
|
21371
21386
|
id: "cards-with-image-".concat(index, "-image"),
|
|
21387
|
+
isAddNewPane: otherProps.isAddNewPane,
|
|
21372
21388
|
src: imageUrl,
|
|
21373
|
-
wrapperClassName: "grid"
|
|
21389
|
+
wrapperClassName: "grid h-full w-full"
|
|
21374
21390
|
}))));
|
|
21375
21391
|
}), isAddMoreRequired && /*#__PURE__*/React__default.createElement(MotionWrapper, {
|
|
21376
21392
|
enableAnimation: enableAnimation,
|
|
@@ -21688,6 +21704,7 @@ var CtaWithLogo = function CtaWithLogo(_ref) {
|
|
|
21688
21704
|
design: design.logo,
|
|
21689
21705
|
disableButtonAndLinks: otherProps.disableButtonAndLinks,
|
|
21690
21706
|
id: "cta-with-logo-logo",
|
|
21707
|
+
isAddNewPane: otherProps.isAddNewPane,
|
|
21691
21708
|
src: logoUrl,
|
|
21692
21709
|
wrapperClassName: "flex item-center flex-shrink-0"
|
|
21693
21710
|
}), /*#__PURE__*/React__default.createElement("div", {
|
|
@@ -22015,6 +22032,7 @@ var FeatureWithDetails = function FeatureWithDetails(_ref) {
|
|
|
22015
22032
|
design: design.media,
|
|
22016
22033
|
disableButtonAndLinks: otherProps.disableButtonAndLinks,
|
|
22017
22034
|
id: "feature-with-details-media",
|
|
22035
|
+
isAddNewPane: otherProps.isAddNewPane,
|
|
22018
22036
|
lgImageWidth: design.media.width,
|
|
22019
22037
|
src: imageUrl
|
|
22020
22038
|
})));
|
|
@@ -22078,6 +22096,7 @@ var FeatureWithGrid = function FeatureWithGrid(_ref) {
|
|
|
22078
22096
|
design: design.media,
|
|
22079
22097
|
disableButtonAndLinks: otherProps.disableButtonAndLinks,
|
|
22080
22098
|
id: "feature-with-grid-media",
|
|
22099
|
+
isAddNewPane: otherProps.isAddNewPane,
|
|
22081
22100
|
src: imageURL
|
|
22082
22101
|
})), features.map(function (_ref2, index) {
|
|
22083
22102
|
var featureTitle = _ref2.title,
|
|
@@ -22097,6 +22116,7 @@ var FeatureWithGrid = function FeatureWithGrid(_ref) {
|
|
|
22097
22116
|
design: design.featureImage,
|
|
22098
22117
|
disableButtonAndLinks: otherProps.disableButtonAndLinks,
|
|
22099
22118
|
id: "feature-with-grid-".concat(index, "-image"),
|
|
22119
|
+
isAddNewPane: otherProps.isAddNewPane,
|
|
22100
22120
|
src: featureImageUrl,
|
|
22101
22121
|
title: featureImageTitle
|
|
22102
22122
|
}), /*#__PURE__*/React__default.createElement(Typography$1, _extends$2({
|
|
@@ -22175,6 +22195,7 @@ var FeatureWithImage = function FeatureWithImage(_ref) {
|
|
|
22175
22195
|
design: design.media,
|
|
22176
22196
|
disableButtonAndLinks: otherProps.disableButtonAndLinks,
|
|
22177
22197
|
id: "feature-with-image-media",
|
|
22198
|
+
isAddNewPane: otherProps.isAddNewPane,
|
|
22178
22199
|
lgImageWidth: design.media.width,
|
|
22179
22200
|
src: imageUrl
|
|
22180
22201
|
})));
|
|
@@ -22320,6 +22341,7 @@ var FeatureWithList = function FeatureWithList(_ref) {
|
|
|
22320
22341
|
design: design.media,
|
|
22321
22342
|
disableButtonAndLinks: otherProps.disableButtonAndLinks,
|
|
22322
22343
|
id: "feature-with-list-media",
|
|
22344
|
+
isAddNewPane: otherProps.isAddNewPane,
|
|
22323
22345
|
lgImageWidth: design.media.width,
|
|
22324
22346
|
src: imageURL
|
|
22325
22347
|
})));
|
|
@@ -22447,6 +22469,7 @@ var FeatureWithProgressBar = function FeatureWithProgressBar(_ref) {
|
|
|
22447
22469
|
disableButtonAndLinks: otherProps.disableButtonAndLinks,
|
|
22448
22470
|
id: "feature-with-progress-bar-".concat(selectedTabId - 1, "-media"),
|
|
22449
22471
|
index: selectedTabId - 1,
|
|
22472
|
+
isAddNewPane: otherProps.isAddNewPane,
|
|
22450
22473
|
isEmbedded: features[selectedTabId - 1].media.isEmbedded,
|
|
22451
22474
|
src: features[selectedTabId - 1].media.src,
|
|
22452
22475
|
videoUrl: features[selectedTabId - 1].media.videoUrl
|
|
@@ -22498,6 +22521,7 @@ var FooterClassic = function FooterClassic(_ref) {
|
|
|
22498
22521
|
design: design.logo,
|
|
22499
22522
|
disableButtonAndLinks: otherProps.disableButtonAndLinks,
|
|
22500
22523
|
id: "footer-classic-logo",
|
|
22524
|
+
isAddNewPane: otherProps.isAddNewPane,
|
|
22501
22525
|
src: logo.src,
|
|
22502
22526
|
wrapperClassName: "mb-4 sm:mb-0"
|
|
22503
22527
|
}), /*#__PURE__*/React__default.createElement(ListWrapper$1, {
|
|
@@ -22554,6 +22578,7 @@ var FooterClassic = function FooterClassic(_ref) {
|
|
|
22554
22578
|
design: design.logo,
|
|
22555
22579
|
disableButtonAndLinks: otherProps.disableButtonAndLinks,
|
|
22556
22580
|
id: "footer-classic-logo",
|
|
22581
|
+
isAddNewPane: otherProps.isAddNewPane,
|
|
22557
22582
|
src: logo.src
|
|
22558
22583
|
})), /*#__PURE__*/React__default.createElement(ListWrapper$1, {
|
|
22559
22584
|
className: "flex flex-grow flex-wrap gap-x-7 gap-y-4 sm:justify-end",
|
|
@@ -22635,6 +22660,7 @@ var FooterWithIcons = function FooterWithIcons(_ref) {
|
|
|
22635
22660
|
design: design.logo,
|
|
22636
22661
|
disableButtonAndLinks: otherProps.disableButtonAndLinks,
|
|
22637
22662
|
id: "footer-with-icons-logo",
|
|
22663
|
+
isAddNewPane: otherProps.isAddNewPane,
|
|
22638
22664
|
src: logo.src,
|
|
22639
22665
|
wrapperClassName: "items-center"
|
|
22640
22666
|
}), logo.src && /*#__PURE__*/React__default.createElement(StyledWrapper, {
|
|
@@ -22714,6 +22740,7 @@ var FooterWithLinks = function FooterWithLinks(_ref) {
|
|
|
22714
22740
|
design: design.logo,
|
|
22715
22741
|
disableButtonAndLinks: otherProps.disableButtonAndLinks,
|
|
22716
22742
|
id: "footer-with-links-logo",
|
|
22743
|
+
isAddNewPane: otherProps.isAddNewPane,
|
|
22717
22744
|
src: logo.src
|
|
22718
22745
|
}), /*#__PURE__*/React__default.createElement(Typography$1, _extends$2({
|
|
22719
22746
|
design: design.logoTitle,
|
|
@@ -22816,7 +22843,8 @@ var GalleryClassic = function GalleryClassic(_ref) {
|
|
|
22816
22843
|
className = _ref$className === void 0 ? "" : _ref$className,
|
|
22817
22844
|
id = _ref.id,
|
|
22818
22845
|
disableButtonAndLinks = _ref.disableButtonAndLinks,
|
|
22819
|
-
image = _ref.image
|
|
22846
|
+
image = _ref.image,
|
|
22847
|
+
isAddNewPane = _ref.isAddNewPane;
|
|
22820
22848
|
var _useState = useState(null),
|
|
22821
22849
|
_useState2 = _slicedToArray(_useState, 2),
|
|
22822
22850
|
swiper = _useState2[0],
|
|
@@ -22844,12 +22872,14 @@ var GalleryClassic = function GalleryClassic(_ref) {
|
|
|
22844
22872
|
className: "col-span-12 col-start-1 sm:col-span-6 sm:col-start-4"
|
|
22845
22873
|
}, /*#__PURE__*/React__default.createElement(Typography$1, {
|
|
22846
22874
|
disableButtonAndLinks: disableButtonAndLinks,
|
|
22875
|
+
isAddNewPane: isAddNewPane,
|
|
22847
22876
|
isTitle: true,
|
|
22848
22877
|
component: "h3",
|
|
22849
22878
|
id: "gallery-classic-title",
|
|
22850
22879
|
style: design.title
|
|
22851
22880
|
}, title), /*#__PURE__*/React__default.createElement(Typography$1, {
|
|
22852
22881
|
disableButtonAndLinks: disableButtonAndLinks,
|
|
22882
|
+
isAddNewPane: isAddNewPane,
|
|
22853
22883
|
id: "gallery-classic-description",
|
|
22854
22884
|
style: design.description
|
|
22855
22885
|
}, description)), /*#__PURE__*/React__default.createElement(ArrowButton, {
|
|
@@ -22888,6 +22918,7 @@ var GalleryClassic = function GalleryClassic(_ref) {
|
|
|
22888
22918
|
disableButtonAndLinks: disableButtonAndLinks,
|
|
22889
22919
|
image: image,
|
|
22890
22920
|
index: index,
|
|
22921
|
+
isAddNewPane: isAddNewPane,
|
|
22891
22922
|
src: src,
|
|
22892
22923
|
alt: caption,
|
|
22893
22924
|
className: "sliding-image",
|
|
@@ -23729,7 +23760,9 @@ var GalleryWithAutoplay = function GalleryWithAutoplay(_ref) {
|
|
|
23729
23760
|
design: style,
|
|
23730
23761
|
disableButtonAndLinks: otherProps.disableButtonAndLinks,
|
|
23731
23762
|
id: "gallery-with-autoplay-images-".concat(index, "-image"),
|
|
23732
|
-
|
|
23763
|
+
isAddNewPane: otherProps.isAddNewPane,
|
|
23764
|
+
title: caption,
|
|
23765
|
+
wrapperClassName: "h-full w-full"
|
|
23733
23766
|
}));
|
|
23734
23767
|
}))), /*#__PURE__*/React__default.createElement("div", {
|
|
23735
23768
|
className: "ns-gallery-with-sliding-images sm:col-span-6 sm:col-start-4"
|
|
@@ -23953,6 +23986,7 @@ var HeaderWithDropdownLinks = function HeaderWithDropdownLinks(_ref) {
|
|
|
23953
23986
|
design: design.logo,
|
|
23954
23987
|
disableButtonAndLinks: otherProps.disableButtonAndLinks,
|
|
23955
23988
|
id: "header-with-dropdown-links-logo",
|
|
23989
|
+
isAddNewPane: otherProps.isAddNewPane,
|
|
23956
23990
|
src: properties.logo.src
|
|
23957
23991
|
}), /*#__PURE__*/React__default.createElement(Typography$1, _extends$2({
|
|
23958
23992
|
component: "p",
|
|
@@ -24060,6 +24094,7 @@ var HeaderWithIcons = function HeaderWithIcons(_ref) {
|
|
|
24060
24094
|
design: design.logo,
|
|
24061
24095
|
disableButtonAndLinks: otherProps.disableButtonAndLinks,
|
|
24062
24096
|
id: "header-with-icons-logo",
|
|
24097
|
+
isAddNewPane: otherProps.isAddNewPane,
|
|
24063
24098
|
src: properties.logo.src
|
|
24064
24099
|
})), /*#__PURE__*/React__default.createElement("div", {
|
|
24065
24100
|
className: "col-span-5 col-start-8 hidden justify-end sm:col-span-3 sm:col-start-10 sm:flex"
|
|
@@ -24176,6 +24211,7 @@ var HeaderWithLogoTitle = function HeaderWithLogoTitle(_ref) {
|
|
|
24176
24211
|
design: design.logo,
|
|
24177
24212
|
disableButtonAndLinks: otherProps.disableButtonAndLinks,
|
|
24178
24213
|
id: "header-with-logo-title-logo",
|
|
24214
|
+
isAddNewPane: otherProps.isAddNewPane,
|
|
24179
24215
|
src: properties.logo.src
|
|
24180
24216
|
}), /*#__PURE__*/React__default.createElement(Typography$1, {
|
|
24181
24217
|
component: "p",
|
|
@@ -24338,6 +24374,7 @@ var HeroWithCallToAction = function HeroWithCallToAction(_ref) {
|
|
|
24338
24374
|
design: design.media,
|
|
24339
24375
|
disableButtonAndLinks: otherProps.disableButtonAndLinks,
|
|
24340
24376
|
id: "hero-with-call-to-action-media",
|
|
24377
|
+
isAddNewPane: otherProps.isAddNewPane,
|
|
24341
24378
|
src: imageURL
|
|
24342
24379
|
})));
|
|
24343
24380
|
};
|
|
@@ -24425,6 +24462,7 @@ var HeroWithGallery = function HeroWithGallery(_ref) {
|
|
|
24425
24462
|
isTitle: true,
|
|
24426
24463
|
component: "h3",
|
|
24427
24464
|
id: "hero-with-gallery-slide-".concat(index, "-prefixTitle"),
|
|
24465
|
+
isAddNewPane: otherProps.isAddNewPane,
|
|
24428
24466
|
style: design.prefixTitle
|
|
24429
24467
|
}, content.prefixTitle), /*#__PURE__*/React__default.createElement(Typography$1, {
|
|
24430
24468
|
disableButtonAndLinks: disableButtonAndLinks,
|
|
@@ -24433,6 +24471,7 @@ var HeroWithGallery = function HeroWithGallery(_ref) {
|
|
|
24433
24471
|
className: textClasses(_objectSpread$2({}, media)),
|
|
24434
24472
|
component: "h1",
|
|
24435
24473
|
id: "hero-with-gallery-slide-".concat(index, "-title"),
|
|
24474
|
+
isAddNewPane: otherProps.isAddNewPane,
|
|
24436
24475
|
style: design.title
|
|
24437
24476
|
}, content.title), /*#__PURE__*/React__default.createElement(Typography$1, {
|
|
24438
24477
|
disableButtonAndLinks: disableButtonAndLinks,
|
|
@@ -24440,6 +24479,7 @@ var HeroWithGallery = function HeroWithGallery(_ref) {
|
|
|
24440
24479
|
className: textClasses(_objectSpread$2({}, media)),
|
|
24441
24480
|
component: "p",
|
|
24442
24481
|
id: "hero-with-gallery-slide-".concat(index, "-description"),
|
|
24482
|
+
isAddNewPane: otherProps.isAddNewPane,
|
|
24443
24483
|
style: design.description
|
|
24444
24484
|
}, content.description), /*#__PURE__*/React__default.createElement("div", {
|
|
24445
24485
|
className: buttonBaseClasses(_objectSpread$2({}, media))
|
|
@@ -24465,6 +24505,7 @@ var HeroWithGallery = function HeroWithGallery(_ref) {
|
|
|
24465
24505
|
autoPlay: media.autoPlay,
|
|
24466
24506
|
design: design.media,
|
|
24467
24507
|
id: "hero-with-gallery-slide-".concat(index, "-media"),
|
|
24508
|
+
isAddNewPane: otherProps.isAddNewPane,
|
|
24468
24509
|
isEmbedded: media.isEmbedded,
|
|
24469
24510
|
lgImageSize: design.media.width,
|
|
24470
24511
|
src: media.src,
|
|
@@ -24530,7 +24571,8 @@ var LogoClouds = function LogoClouds(_ref) {
|
|
|
24530
24571
|
className = _ref$className === void 0 ? "" : _ref$className,
|
|
24531
24572
|
id = _ref.id,
|
|
24532
24573
|
disableButtonAndLinks = _ref.disableButtonAndLinks,
|
|
24533
|
-
image = _ref.image
|
|
24574
|
+
image = _ref.image,
|
|
24575
|
+
isAddNewPane = _ref.isAddNewPane;
|
|
24534
24576
|
var properties = configurations.properties,
|
|
24535
24577
|
design = configurations.design;
|
|
24536
24578
|
var _properties$logos = properties.logos,
|
|
@@ -24562,6 +24604,7 @@ var LogoClouds = function LogoClouds(_ref) {
|
|
|
24562
24604
|
nestedClassName: baseClasses
|
|
24563
24605
|
}, /*#__PURE__*/React__default.createElement(Typography$1, {
|
|
24564
24606
|
disableButtonAndLinks: disableButtonAndLinks,
|
|
24607
|
+
isAddNewPane: isAddNewPane,
|
|
24565
24608
|
isTitle: true,
|
|
24566
24609
|
className: "col-span-12",
|
|
24567
24610
|
component: "h3",
|
|
@@ -24581,6 +24624,7 @@ var LogoClouds = function LogoClouds(_ref) {
|
|
|
24581
24624
|
disableButtonAndLinks: disableButtonAndLinks,
|
|
24582
24625
|
image: image,
|
|
24583
24626
|
index: index,
|
|
24627
|
+
isAddNewPane: isAddNewPane,
|
|
24584
24628
|
src: src,
|
|
24585
24629
|
title: title,
|
|
24586
24630
|
className: "logo-image",
|
|
@@ -25004,7 +25048,8 @@ var TestimonialWithSlider = function TestimonialWithSlider(_ref) {
|
|
|
25004
25048
|
className: "ns-testimonial-image-aspect-ratio object-cover",
|
|
25005
25049
|
design: design.testimonialImage,
|
|
25006
25050
|
disableButtonAndLinks: otherProps.disableButtonAndLinks,
|
|
25007
|
-
id: "testimonial-with-slider-".concat(index, "-image")
|
|
25051
|
+
id: "testimonial-with-slider-".concat(index, "-image"),
|
|
25052
|
+
isAddNewPane: otherProps.isAddNewPane
|
|
25008
25053
|
}), /*#__PURE__*/React__default.createElement(Typography$1, _extends$2({
|
|
25009
25054
|
index: index,
|
|
25010
25055
|
isTitle: true,
|
|
@@ -25027,6 +25072,7 @@ var TestimonialWithSlider = function TestimonialWithSlider(_ref) {
|
|
|
25027
25072
|
design: design.testimonialLogo,
|
|
25028
25073
|
disableButtonAndLinks: otherProps.disableButtonAndLinks,
|
|
25029
25074
|
id: "testimonial-with-slider-".concat(index, "-logo"),
|
|
25075
|
+
isAddNewPane: otherProps.isAddNewPane,
|
|
25030
25076
|
src: logoUrl
|
|
25031
25077
|
}), /*#__PURE__*/React__default.createElement(Typography$1, _extends$2({
|
|
25032
25078
|
style: design.testimonialDescription
|
|
@@ -25123,7 +25169,8 @@ var TestimonialWithVerticalView = function TestimonialWithVerticalView(_ref) {
|
|
|
25123
25169
|
className: "ns-testimonial-image-aspect-ratio",
|
|
25124
25170
|
design: design.testimonialImage,
|
|
25125
25171
|
disableButtonAndLinks: otherProps.disableButtonAndLinks,
|
|
25126
|
-
id: "testimonial-with-vertical-view-images-".concat(index, "-image")
|
|
25172
|
+
id: "testimonial-with-vertical-view-images-".concat(index, "-image"),
|
|
25173
|
+
isAddNewPane: otherProps.isAddNewPane
|
|
25127
25174
|
}), /*#__PURE__*/React__default.createElement(Typography$1, _extends$2({
|
|
25128
25175
|
index: index,
|
|
25129
25176
|
isTitle: true,
|
|
@@ -25144,6 +25191,7 @@ var TestimonialWithVerticalView = function TestimonialWithVerticalView(_ref) {
|
|
|
25144
25191
|
design: design.testimonialLogo,
|
|
25145
25192
|
disableButtonAndLinks: otherProps.disableButtonAndLinks,
|
|
25146
25193
|
id: "testimonial-with-vertical-view-images-".concat(index, "-logo"),
|
|
25194
|
+
isAddNewPane: otherProps.isAddNewPane,
|
|
25147
25195
|
src: logoUrl
|
|
25148
25196
|
}), /*#__PURE__*/React__default.createElement(Typography$1, _extends$2({
|
|
25149
25197
|
index: index,
|