diy-template-components 2.0.80 → 2.0.81
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 +4 -3
- package/build/index.es.js.map +1 -1
- package/build/index.js +4 -3
- package/build/index.js.map +1 -1
- package/package.json +1 -1
package/build/index.es.js
CHANGED
|
@@ -3668,7 +3668,6 @@ const Section$3 = ({
|
|
|
3668
3668
|
sectionIndex,
|
|
3669
3669
|
extraProps
|
|
3670
3670
|
}) => {
|
|
3671
|
-
console.log('extraProps in banner center', extraProps, nodeData?.cta?.metadata?.default);
|
|
3672
3671
|
const {
|
|
3673
3672
|
layout: {
|
|
3674
3673
|
containerWidth
|
|
@@ -3746,7 +3745,8 @@ const Section$3 = ({
|
|
|
3746
3745
|
function BannerCarouselCenter({
|
|
3747
3746
|
sectionData,
|
|
3748
3747
|
isCustomWebsite,
|
|
3749
|
-
sectionIndex
|
|
3748
|
+
sectionIndex,
|
|
3749
|
+
extraProps
|
|
3750
3750
|
}) {
|
|
3751
3751
|
const classes = useSectionStyles$6({
|
|
3752
3752
|
isCustomWebsite
|
|
@@ -3765,7 +3765,8 @@ function BannerCarouselCenter({
|
|
|
3765
3765
|
nodeData: node,
|
|
3766
3766
|
isCustomWebsite: isCustomWebsite,
|
|
3767
3767
|
key: idx /* or some other unique property */,
|
|
3768
|
-
sectionIndex: sectionIndex
|
|
3768
|
+
sectionIndex: sectionIndex,
|
|
3769
|
+
extraProps: extraProps
|
|
3769
3770
|
}))));
|
|
3770
3771
|
}
|
|
3771
3772
|
|