@redneckz/wildless-cms-uni-blocks 0.14.167 → 0.14.169
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 +4 -4
- package/bundle/bundle.umd.min.js +1 -1
- package/dist/components/ContentPage/ContentPage.js +3 -3
- package/dist/components/ContentPage/ContentPage.js.map +1 -1
- package/lib/components/ContentPage/ContentPage.js +3 -3
- package/lib/components/ContentPage/ContentPage.js.map +1 -1
- package/mobile/bundle/bundle.umd.js +4 -4
- package/mobile/bundle/bundle.umd.min.js +1 -1
- package/mobile/dist/components/ContentPage/ContentPage.js +3 -3
- package/mobile/dist/components/ContentPage/ContentPage.js.map +1 -1
- package/mobile/lib/components/ContentPage/ContentPage.js +3 -3
- package/mobile/lib/components/ContentPage/ContentPage.js.map +1 -1
- package/mobile/src/components/ContentPage/ContentPage.tsx +3 -3
- package/package.json +1 -1
- package/src/components/ContentPage/ContentPage.tsx +3 -3
package/bundle/bundle.umd.js
CHANGED
|
@@ -5984,11 +5984,11 @@
|
|
|
5984
5984
|
const STICKY_FOOTER_SLOT = 'sticky-footer';
|
|
5985
5985
|
const EMPTY_DATA = {};
|
|
5986
5986
|
const ContentPage = JSX(({ className, data = EMPTY_DATA, blocksRegistry, blockDecorator }) => {
|
|
5987
|
-
const { slots, blocks, ...pageContent } = data;
|
|
5988
|
-
const resolvedPageContent = useJSONRef(pageContent);
|
|
5987
|
+
const { slots, blocks, fallback, ...pageContent } = data;
|
|
5988
|
+
const resolvedPageContent = useJSONRef(pageContent, fallback);
|
|
5989
5989
|
const options = {
|
|
5990
5990
|
key: '',
|
|
5991
|
-
page: { slots, blocks, ...resolvedPageContent },
|
|
5991
|
+
page: { slots, blocks, fallback, ...resolvedPageContent },
|
|
5992
5992
|
blocksRegistry,
|
|
5993
5993
|
blockDecorator,
|
|
5994
5994
|
parent: data,
|
|
@@ -6007,7 +6007,7 @@
|
|
|
6007
6007
|
slots: () => [HEADER_SLOT, FOOTER_SLOT, STICKY_FOOTER_SLOT],
|
|
6008
6008
|
});
|
|
6009
6009
|
|
|
6010
|
-
const packageVersion = "0.14.
|
|
6010
|
+
const packageVersion = "0.14.168";
|
|
6011
6011
|
|
|
6012
6012
|
exports.Blocks = Blocks;
|
|
6013
6013
|
exports.ContentPage = ContentPage;
|