@redneckz/wildless-cms-uni-blocks 0.14.868 → 0.14.869
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.869.js +13 -0
- package/bundle/bundle.umd.js +1 -1
- package/bundle/bundle.umd.min.js +1 -1
- package/bundle/model/FormTypeFieldDef.d.ts +1 -1
- package/dist/model/FormTypeFieldDef.d.ts +1 -1
- package/lib/model/FormTypeFieldDef.d.ts +1 -1
- package/mobile/bundle/bundle.umd.js +1 -1
- package/mobile/bundle/bundle.umd.min.js +1 -1
- package/mobile/bundle/model/FormTypeFieldDef.d.ts +1 -1
- package/mobile/dist/model/FormTypeFieldDef.d.ts +1 -1
- package/mobile/lib/model/FormTypeFieldDef.d.ts +1 -1
- package/mobile/src/components/ApplicationForm/ApplicationForm.example.json +3 -3
- package/mobile/src/model/FormTypeFieldDef.ts +1 -1
- package/package.json +1 -1
- package/src/components/ApplicationForm/ApplicationForm.example.json +3 -3
- package/src/components/ApplicationForm/ApplicationForm.fixture.mobile.tsx +2 -2
- package/src/components/ApplicationForm/ApplicationForm.fixture.tsx +2 -2
- package/src/model/FormTypeFieldDef.ts +1 -1
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { traversePageBlocks } from '../utils.js';
|
|
2
|
+
|
|
3
|
+
export const description = 'v0.14.869';
|
|
4
|
+
|
|
5
|
+
export default traversePageBlocks(adjustFromType);
|
|
6
|
+
|
|
7
|
+
function adjustFromType(block) {
|
|
8
|
+
const content = block?.content;
|
|
9
|
+
|
|
10
|
+
if (block?.type === 'ApplicationForm' && content?.typeForm === 'RFB') {
|
|
11
|
+
content.typeForm = 'FCB';
|
|
12
|
+
}
|
|
13
|
+
}
|
package/bundle/bundle.umd.js
CHANGED
|
@@ -11151,7 +11151,7 @@
|
|
|
11151
11151
|
slots: () => [HEADER_SLOT, FOOTER_SLOT, STICKY_FOOTER_SLOT],
|
|
11152
11152
|
});
|
|
11153
11153
|
|
|
11154
|
-
const packageVersion = "0.14.
|
|
11154
|
+
const packageVersion = "0.14.868";
|
|
11155
11155
|
|
|
11156
11156
|
exports.Blocks = Blocks;
|
|
11157
11157
|
exports.ContentPage = ContentPage;
|