@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.
@@ -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, (v?.region ? v?.text : v?.key) || v]));
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.180";
6009
+ const packageVersion = "0.14.181";
6010
6010
 
6011
6011
  exports.Blocks = Blocks;
6012
6012
  exports.ContentPage = ContentPage;