cec-nuxt-lib 0.10.12 → 0.10.13
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
|
@@ -306,7 +306,7 @@ const htmlComponent = (props2) => {
|
|
|
306
306
|
let item = props2.block?.value;
|
|
307
307
|
return item.html;
|
|
308
308
|
};
|
|
309
|
-
const
|
|
309
|
+
const link = (props2) => {
|
|
310
310
|
let item = props2.block?.value;
|
|
311
311
|
return `<a href="${item.target}" >${item.label}</a>`;
|
|
312
312
|
};
|
|
@@ -660,7 +660,7 @@ const renderer = createRenderer({
|
|
|
660
660
|
horizontalTable,
|
|
661
661
|
htmlComponent,
|
|
662
662
|
imageWithCSS,
|
|
663
|
-
|
|
663
|
+
link,
|
|
664
664
|
promotionalBannerWithText,
|
|
665
665
|
promotionalContrastRegion
|
|
666
666
|
}
|
package/package.json
CHANGED