@redneckz/wildless-cms-uni-blocks 0.14.273 → 0.14.274

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/bin/utils.js CHANGED
@@ -92,5 +92,11 @@ export const traversePageBlocks =
92
92
  traversePageBlocks(...handlers)(uniPath, block, content);
93
93
  }
94
94
 
95
+ for (const [, slot] of Object.entries(content?.slots ?? {})) {
96
+ for (const block of slot ?? []) {
97
+ traversePageBlocks(...handlers)(uniPath, block, content);
98
+ }
99
+ }
100
+
95
101
  return { ...content };
96
102
  };
@@ -6126,7 +6126,7 @@
6126
6126
  slots: () => [HEADER_SLOT, FOOTER_SLOT, STICKY_FOOTER_SLOT],
6127
6127
  });
6128
6128
 
6129
- const packageVersion = "0.14.272";
6129
+ const packageVersion = "0.14.273";
6130
6130
 
6131
6131
  exports.Blocks = Blocks;
6132
6132
  exports.ContentPage = ContentPage;