@redneckz/wildless-cms-uni-blocks 0.14.450 → 0.14.452
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/utils.js +1 -1
- package/bundle/bundle.umd.js +3 -3
- package/bundle/bundle.umd.min.js +1 -1
- package/dist/components/ApplicationForm/getInitialFormState.js +1 -1
- package/dist/components/ApplicationForm/getInitialFormState.js.map +1 -1
- package/dist/components/TabsLayout/TabsLayout.js +1 -1
- package/dist/components/TabsLayout/TabsLayout.js.map +1 -1
- package/lib/components/ApplicationForm/getInitialFormState.js +1 -1
- package/lib/components/ApplicationForm/getInitialFormState.js.map +1 -1
- package/lib/components/TabsLayout/TabsLayout.js +1 -1
- package/lib/components/TabsLayout/TabsLayout.js.map +1 -1
- package/mobile/bundle/bundle.umd.js +3 -3
- package/mobile/bundle/bundle.umd.min.js +1 -1
- package/mobile/dist/components/ApplicationForm/getInitialFormState.js +1 -1
- package/mobile/dist/components/ApplicationForm/getInitialFormState.js.map +1 -1
- package/mobile/dist/components/TabsLayout/TabsLayout.js +1 -1
- package/mobile/dist/components/TabsLayout/TabsLayout.js.map +1 -1
- package/mobile/lib/components/ApplicationForm/getInitialFormState.js +1 -1
- package/mobile/lib/components/ApplicationForm/getInitialFormState.js.map +1 -1
- package/mobile/lib/components/TabsLayout/TabsLayout.js +1 -1
- package/mobile/lib/components/TabsLayout/TabsLayout.js.map +1 -1
- package/mobile/src/components/ApplicationForm/getInitialFormState.tsx +1 -1
- package/mobile/src/components/TabsLayout/TabsLayout.tsx +2 -2
- package/package.json +1 -1
- package/src/components/ApplicationForm/getInitialFormState.tsx +1 -1
- package/src/components/TabsLayout/TabsLayout.tsx +2 -2
package/bin/utils.js
CHANGED
|
@@ -86,7 +86,7 @@ export const traversePageBlocks =
|
|
|
86
86
|
(...handlers) =>
|
|
87
87
|
(uniPath, content, parent) => {
|
|
88
88
|
for (const h of handlers) {
|
|
89
|
-
h(content, parent);
|
|
89
|
+
h(content, parent, uniPath);
|
|
90
90
|
}
|
|
91
91
|
for (const block of content?.blocks || []) {
|
|
92
92
|
traversePageBlocks(...handlers)(uniPath, block, content);
|
package/bundle/bundle.umd.js
CHANGED
|
@@ -1937,7 +1937,7 @@
|
|
|
1937
1937
|
partnerComments: '',
|
|
1938
1938
|
annualRevenue: '',
|
|
1939
1939
|
term: 12,
|
|
1940
|
-
amount:
|
|
1940
|
+
amount: 100000,
|
|
1941
1941
|
acquiringType: ACQUIRING_TYPES[0],
|
|
1942
1942
|
serviceType: SERVICE_TYPES[0],
|
|
1943
1943
|
feedbackType: FEEDBACK_TYPES[0],
|
|
@@ -6129,7 +6129,7 @@
|
|
|
6129
6129
|
...rest?.options,
|
|
6130
6130
|
slotName,
|
|
6131
6131
|
parent: block,
|
|
6132
|
-
extraProps: { className: key === slotName ? '' : 'hidden' },
|
|
6132
|
+
extraProps: { className: key === slotName ? '!block' : 'hidden' }, //? hotfix for https://github.com/redneckz/wcms/issues/1816
|
|
6133
6133
|
})) })] }));
|
|
6134
6134
|
}, {
|
|
6135
6135
|
slots: ({ tabs }) => tabs?.filter((_) => _.type === 'group').map(getSlotName) || [],
|
|
@@ -6570,7 +6570,7 @@
|
|
|
6570
6570
|
slots: () => [HEADER_SLOT, FOOTER_SLOT, STICKY_FOOTER_SLOT],
|
|
6571
6571
|
});
|
|
6572
6572
|
|
|
6573
|
-
const packageVersion = "0.14.
|
|
6573
|
+
const packageVersion = "0.14.451";
|
|
6574
6574
|
|
|
6575
6575
|
exports.Blocks = Blocks;
|
|
6576
6576
|
exports.ContentPage = ContentPage;
|