cec-nuxt-lib 0.11.17 → 0.11.18
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/module.json
CHANGED
|
@@ -592,6 +592,9 @@ const processUri = (uri) => {
|
|
|
592
592
|
const genericList = (props2) => {
|
|
593
593
|
return genList(props2.block.value, props2.block.id);
|
|
594
594
|
};
|
|
595
|
+
const genericListAsAccordion = (props2) => {
|
|
596
|
+
return;
|
|
597
|
+
};
|
|
595
598
|
const genList = (item, id) => {
|
|
596
599
|
let heading = item.title ? `<h2 class="fs-4 mt-3">${item.title}</h2>` : "";
|
|
597
600
|
return listItems.value[id] && listItems.value[id].length ? `
|
|
@@ -656,6 +659,7 @@ const renderer = createRenderer({
|
|
|
656
659
|
promotionalFullWidthImageWithOverlay,
|
|
657
660
|
promotionalFullWidthImageWithSideOverlay,
|
|
658
661
|
genericList,
|
|
662
|
+
genericListAsAccordion,
|
|
659
663
|
heroUnit,
|
|
660
664
|
horizontalTable,
|
|
661
665
|
htmlComponent,
|
package/package.json
CHANGED