@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.
- package/bin/migration-scripts/0.14.1061.js +13 -0
- package/bundle/bundle.umd.js +1 -1
- package/bundle/bundle.umd.min.js +1 -1
- package/lib/components/OfficesAtmsMap/OfficesAtmsMapLayout.d.ts +1 -1
- package/mobile/bundle/bundle.umd.js +1 -1
- package/mobile/bundle/bundle.umd.min.js +1 -1
- package/mobile/src/components/ApplicationForm/ApplicationForm.example.json +1 -0
- package/package.json +1 -1
- package/src/components/ApplicationForm/ApplicationForm.example.json +1 -0
- package/src/components/ApplicationForm/ApplicationForm.fixture.tsx +1 -1
|
@@ -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
|
+
}
|
package/bundle/bundle.umd.js
CHANGED
|
@@ -14819,7 +14819,7 @@
|
|
|
14819
14819
|
slots: () => [HEADER_SLOT, FOOTER_SLOT, STICKY_FOOTER_SLOT],
|
|
14820
14820
|
});
|
|
14821
14821
|
|
|
14822
|
-
const packageVersion = "0.14.
|
|
14822
|
+
const packageVersion = "0.14.1060";
|
|
14823
14823
|
|
|
14824
14824
|
exports.Blocks = Blocks;
|
|
14825
14825
|
exports.ContentPage = ContentPage;
|