@redneckz/wildless-cms-uni-blocks 0.14.1060 → 0.14.1061

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.
@@ -0,0 +1,13 @@
1
+ import { traversePageBlocks } from '../utils.js';
2
+
3
+ export const description = 'v0.14.1061';
4
+
5
+ export default traversePageBlocks(adjustDPSTForm);
6
+
7
+ function adjustDPSTForm(block) {
8
+ const content = block?.content;
9
+
10
+ if (block?.type === 'ApplicationForm' && content?.typeForm === 'DPST') {
11
+ content.sections[0].columns = 2;
12
+ }
13
+ }
@@ -14819,7 +14819,7 @@
14819
14819
  slots: () => [HEADER_SLOT, FOOTER_SLOT, STICKY_FOOTER_SLOT],
14820
14820
  });
14821
14821
 
14822
- const packageVersion = "0.14.1059";
14822
+ const packageVersion = "0.14.1060";
14823
14823
 
14824
14824
  exports.Blocks = Blocks;
14825
14825
  exports.ContentPage = ContentPage;