diy-template-components 2.0.80 → 2.0.82
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/build/index.es.js +8 -3
- package/build/index.es.js.map +1 -1
- package/build/index.js +8 -3
- package/build/index.js.map +1 -1
- package/package.json +1 -1
package/build/index.es.js
CHANGED
|
@@ -1683,6 +1683,10 @@ function MobileHeader({
|
|
|
1683
1683
|
if (!header?.effectivePrice) {
|
|
1684
1684
|
return null;
|
|
1685
1685
|
}
|
|
1686
|
+
const body = document?.body;
|
|
1687
|
+
if (body) {
|
|
1688
|
+
body.style.marginBottom = '130px';
|
|
1689
|
+
}
|
|
1686
1690
|
return /*#__PURE__*/React.createElement(React.Fragment, null, /*#__PURE__*/React.createElement("div", {
|
|
1687
1691
|
className: classes.BottomSheetContainer
|
|
1688
1692
|
}, OfferDetailsJSX(), /*#__PURE__*/React.createElement("div", {
|
|
@@ -3668,7 +3672,6 @@ const Section$3 = ({
|
|
|
3668
3672
|
sectionIndex,
|
|
3669
3673
|
extraProps
|
|
3670
3674
|
}) => {
|
|
3671
|
-
console.log('extraProps in banner center', extraProps, nodeData?.cta?.metadata?.default);
|
|
3672
3675
|
const {
|
|
3673
3676
|
layout: {
|
|
3674
3677
|
containerWidth
|
|
@@ -3746,7 +3749,8 @@ const Section$3 = ({
|
|
|
3746
3749
|
function BannerCarouselCenter({
|
|
3747
3750
|
sectionData,
|
|
3748
3751
|
isCustomWebsite,
|
|
3749
|
-
sectionIndex
|
|
3752
|
+
sectionIndex,
|
|
3753
|
+
extraProps
|
|
3750
3754
|
}) {
|
|
3751
3755
|
const classes = useSectionStyles$6({
|
|
3752
3756
|
isCustomWebsite
|
|
@@ -3765,7 +3769,8 @@ function BannerCarouselCenter({
|
|
|
3765
3769
|
nodeData: node,
|
|
3766
3770
|
isCustomWebsite: isCustomWebsite,
|
|
3767
3771
|
key: idx /* or some other unique property */,
|
|
3768
|
-
sectionIndex: sectionIndex
|
|
3772
|
+
sectionIndex: sectionIndex,
|
|
3773
|
+
extraProps: extraProps
|
|
3769
3774
|
}))));
|
|
3770
3775
|
}
|
|
3771
3776
|
|