@redneckz/wildless-cms-uni-blocks 0.14.280 → 0.14.282

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.
Files changed (66) hide show
  1. package/bin/migration-scripts/0.14.280.js +21 -0
  2. package/bundle/blocks.schema.json +1 -1
  3. package/bundle/bundle.umd.js +7 -4
  4. package/bundle/bundle.umd.min.js +1 -1
  5. package/bundle/components/ApplicationFormCustom/ApplicationFormCustomContent.d.ts +27 -1
  6. package/bundle/model/ContentPageDef.d.ts +1 -0
  7. package/bundle/model/LinkProps.d.ts +3 -3
  8. package/dist/components/ApplicationFormCustom/AddressBranchField.js +1 -1
  9. package/dist/components/ApplicationFormCustom/AddressBranchField.js.map +1 -1
  10. package/dist/components/ApplicationFormCustom/ApplicationFormCustomContent.d.ts +27 -1
  11. package/dist/components/ApplicationFormCustom/VedField.js +1 -1
  12. package/dist/components/ApplicationFormCustom/VedField.js.map +1 -1
  13. package/dist/components/ApplicationFormCustom/getInitialFormState.js +4 -2
  14. package/dist/components/ApplicationFormCustom/getInitialFormState.js.map +1 -1
  15. package/dist/model/ContentPageDef.d.ts +1 -0
  16. package/dist/model/LinkProps.d.ts +3 -3
  17. package/lib/common.css +1 -1
  18. package/lib/components/ApplicationFormCustom/AddressBranchField.js +1 -1
  19. package/lib/components/ApplicationFormCustom/AddressBranchField.js.map +1 -1
  20. package/lib/components/ApplicationFormCustom/ApplicationFormCustomContent.d.ts +27 -1
  21. package/lib/components/ApplicationFormCustom/VedField.js +1 -1
  22. package/lib/components/ApplicationFormCustom/VedField.js.map +1 -1
  23. package/lib/components/ApplicationFormCustom/getInitialFormState.js +4 -2
  24. package/lib/components/ApplicationFormCustom/getInitialFormState.js.map +1 -1
  25. package/lib/model/ContentPageDef.d.ts +1 -0
  26. package/lib/model/LinkProps.d.ts +3 -3
  27. package/mobile/bundle/bundle.umd.js +7 -4
  28. package/mobile/bundle/bundle.umd.min.js +1 -1
  29. package/mobile/bundle/components/ApplicationFormCustom/ApplicationFormCustomContent.d.ts +27 -1
  30. package/mobile/bundle/model/ContentPageDef.d.ts +1 -0
  31. package/mobile/bundle/model/LinkProps.d.ts +3 -3
  32. package/mobile/dist/components/ApplicationFormCustom/AddressBranchField.js +1 -1
  33. package/mobile/dist/components/ApplicationFormCustom/AddressBranchField.js.map +1 -1
  34. package/mobile/dist/components/ApplicationFormCustom/ApplicationFormCustomContent.d.ts +27 -1
  35. package/mobile/dist/components/ApplicationFormCustom/VedField.js +1 -1
  36. package/mobile/dist/components/ApplicationFormCustom/VedField.js.map +1 -1
  37. package/mobile/dist/components/ApplicationFormCustom/getInitialFormState.js +4 -2
  38. package/mobile/dist/components/ApplicationFormCustom/getInitialFormState.js.map +1 -1
  39. package/mobile/dist/model/ContentPageDef.d.ts +1 -0
  40. package/mobile/dist/model/LinkProps.d.ts +3 -3
  41. package/mobile/lib/common.css +1 -1
  42. package/mobile/lib/components/ApplicationFormCustom/AddressBranchField.js +1 -1
  43. package/mobile/lib/components/ApplicationFormCustom/AddressBranchField.js.map +1 -1
  44. package/mobile/lib/components/ApplicationFormCustom/ApplicationFormCustomContent.d.ts +27 -1
  45. package/mobile/lib/components/ApplicationFormCustom/VedField.js +1 -1
  46. package/mobile/lib/components/ApplicationFormCustom/VedField.js.map +1 -1
  47. package/mobile/lib/components/ApplicationFormCustom/getInitialFormState.js +4 -2
  48. package/mobile/lib/components/ApplicationFormCustom/getInitialFormState.js.map +1 -1
  49. package/mobile/lib/model/ContentPageDef.d.ts +1 -0
  50. package/mobile/lib/model/LinkProps.d.ts +3 -3
  51. package/mobile/src/components/ApplicationFormCustom/AddressBranchField.tsx +2 -2
  52. package/mobile/src/components/ApplicationFormCustom/ApplicationFormCustom.example.json +142 -64
  53. package/mobile/src/components/ApplicationFormCustom/ApplicationFormCustomContent.ts +31 -1
  54. package/mobile/src/components/ApplicationFormCustom/VedField.tsx +1 -1
  55. package/mobile/src/components/ApplicationFormCustom/getInitialFormState.tsx +5 -2
  56. package/mobile/src/model/ContentPageDef.ts +1 -0
  57. package/mobile/src/model/LinkProps.ts +3 -3
  58. package/package.json +1 -1
  59. package/src/components/ApplicationFormCustom/AddressBranchField.tsx +2 -2
  60. package/src/components/ApplicationFormCustom/ApplicationFormCustom.example.json +142 -64
  61. package/src/components/ApplicationFormCustom/ApplicationFormCustom.fixture.tsx +159 -101
  62. package/src/components/ApplicationFormCustom/ApplicationFormCustomContent.ts +31 -1
  63. package/src/components/ApplicationFormCustom/VedField.tsx +1 -1
  64. package/src/components/ApplicationFormCustom/getInitialFormState.tsx +5 -2
  65. package/src/model/ContentPageDef.ts +1 -0
  66. package/src/model/LinkProps.ts +3 -3
@@ -0,0 +1,21 @@
1
+ import { traversePageBlocks } from '../utils.js';
2
+
3
+ export const description = 'v0.14.280';
4
+
5
+ export default traversePageBlocks(adjustApplicationFormUltraPremiumBlock);
6
+
7
+ function adjustApplicationFormUltraPremiumBlock(block) {
8
+ const content = block?.content;
9
+
10
+ if (!content?.sections || block.type !== 'ApplicationFormCustom') {
11
+ return;
12
+ }
13
+ block.content.sections.map((section) => addFieldType(section?.inputs));
14
+ }
15
+
16
+ const addFieldType = (inputs) =>
17
+ inputs?.map((_) => {
18
+ _.fieldType = _?.name === 'vedTypes' ? 'ved' : 'common';
19
+
20
+ return _;
21
+ });