@redneckz/wildless-cms-uni-blocks 0.14.539 → 0.14.540
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/bundle/bundle.umd.js +3 -2
- package/bundle/bundle.umd.min.js +1 -1
- package/dist/components/Footer/SocialMedia.js +2 -1
- package/dist/components/Footer/SocialMedia.js.map +1 -1
- package/lib/components/Footer/SocialMedia.js +2 -1
- package/lib/components/Footer/SocialMedia.js.map +1 -1
- package/mobile/bundle/bundle.umd.js +3 -2
- package/mobile/bundle/bundle.umd.min.js +1 -1
- package/mobile/dist/components/Footer/SocialMedia.js +2 -1
- package/mobile/dist/components/Footer/SocialMedia.js.map +1 -1
- package/mobile/lib/components/Footer/SocialMedia.js +2 -1
- package/mobile/lib/components/Footer/SocialMedia.js.map +1 -1
- package/mobile/src/components/Footer/SocialMedia.tsx +2 -1
- package/package.json +1 -1
- package/src/components/Footer/SocialMedia.tsx +2 -1
package/bundle/bundle.umd.js
CHANGED
|
@@ -3638,13 +3638,14 @@
|
|
|
3638
3638
|
const { iconMapped } = findIconByHref(href);
|
|
3639
3639
|
const iconCustom = isIcon(icon) ? icon : iconMapped;
|
|
3640
3640
|
const buttonText = showButtonText ? { text } : { text: '' };
|
|
3641
|
+
const iconVersion = _?.icon?.iconVersion || 'color';
|
|
3641
3642
|
if (!hasText && text) {
|
|
3642
3643
|
setHasText(true);
|
|
3643
3644
|
}
|
|
3644
3645
|
return {
|
|
3645
3646
|
..._,
|
|
3646
3647
|
...buttonText,
|
|
3647
|
-
icon: { ...iconCustom, iconVersion:
|
|
3648
|
+
icon: { ...iconCustom, iconVersion: iconVersion },
|
|
3648
3649
|
version: _?.version ?? version,
|
|
3649
3650
|
};
|
|
3650
3651
|
});
|
|
@@ -6504,7 +6505,7 @@
|
|
|
6504
6505
|
slots: () => [HEADER_SLOT, FOOTER_SLOT, STICKY_FOOTER_SLOT],
|
|
6505
6506
|
});
|
|
6506
6507
|
|
|
6507
|
-
const packageVersion = "0.14.
|
|
6508
|
+
const packageVersion = "0.14.539";
|
|
6508
6509
|
|
|
6509
6510
|
exports.Blocks = Blocks;
|
|
6510
6511
|
exports.ContentPage = ContentPage;
|