@redneckz/wildless-cms-uni-blocks 0.14.181 → 0.14.182
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/bundle/bundle.umd.js +2 -2
- package/bundle/bundle.umd.min.js +1 -1
- package/dist/components/ApplicationForm/getFormatData.js +1 -1
- package/dist/components/ApplicationForm/getFormatData.js.map +1 -1
- package/lib/components/ApplicationForm/getFormatData.js +1 -1
- package/lib/components/ApplicationForm/getFormatData.js.map +1 -1
- package/mobile/bundle/bundle.umd.js +2 -2
- package/mobile/bundle/bundle.umd.min.js +1 -1
- package/mobile/dist/components/ApplicationForm/getFormatData.js +1 -1
- package/mobile/dist/components/ApplicationForm/getFormatData.js.map +1 -1
- package/mobile/lib/components/ApplicationForm/getFormatData.js +1 -1
- package/mobile/lib/components/ApplicationForm/getFormatData.js.map +1 -1
- package/mobile/src/components/ApplicationForm/getFormatData.tsx +1 -1
- package/package.json +1 -1
- package/src/components/ApplicationForm/getFormatData.tsx +1 -1
package/bundle/bundle.umd.js
CHANGED
|
@@ -1909,7 +1909,7 @@
|
|
|
1909
1909
|
return (jsx(BlockWrapper, { className: className, defaultPadding: "p-6xl", ...rest, children: jsxs("div", { className: "container max-w-[978px] space-y-lg", children: [title ? jsx(Heading, { headingType: "h3", title: title, className: "@xl:text-center" }) : null, children, responseType ? jsx(ResponseNotification, { responseType: responseType }) : null] }) }));
|
|
1910
1910
|
});
|
|
1911
1911
|
|
|
1912
|
-
const getFormatData = (data) => Object.fromEntries(Object.entries(data).map(([k, v]) => [k, (
|
|
1912
|
+
const getFormatData = (data) => Object.fromEntries(Object.entries(data).map(([k, v]) => [k, (k === 'region' ? v?.text : v?.key) || v]));
|
|
1913
1913
|
|
|
1914
1914
|
const columnStyle = {
|
|
1915
1915
|
1: 'space-y-s max-w-2xl mx-auto',
|
|
@@ -6006,7 +6006,7 @@
|
|
|
6006
6006
|
slots: () => [HEADER_SLOT, FOOTER_SLOT, STICKY_FOOTER_SLOT],
|
|
6007
6007
|
});
|
|
6008
6008
|
|
|
6009
|
-
const packageVersion = "0.14.
|
|
6009
|
+
const packageVersion = "0.14.181";
|
|
6010
6010
|
|
|
6011
6011
|
exports.Blocks = Blocks;
|
|
6012
6012
|
exports.ContentPage = ContentPage;
|