@redneckz/wildless-cms-uni-blocks 0.14.529 → 0.14.530

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.
@@ -29,8 +29,8 @@ function adjustClearContent(block) {
29
29
  }
30
30
  }
31
31
  if (content?.steps?.length) {
32
- for (let slide of content.steps) {
33
- slide = clearContent(slide);
32
+ for (const slide of content.steps) {
33
+ clearContent(slide);
34
34
  }
35
35
  }
36
36
  }
@@ -6448,7 +6448,7 @@
6448
6448
  slots: () => [HEADER_SLOT, FOOTER_SLOT, STICKY_FOOTER_SLOT],
6449
6449
  });
6450
6450
 
6451
- const packageVersion = "0.14.528";
6451
+ const packageVersion = "0.14.529";
6452
6452
 
6453
6453
  exports.Blocks = Blocks;
6454
6454
  exports.ContentPage = ContentPage;