@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.
@@ -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.166";
6010
+ const packageVersion = "0.14.168";
6011
6011
 
6012
6012
  exports.Blocks = Blocks;
6013
6013
  exports.ContentPage = ContentPage;