@redneckz/wildless-cms-uni-blocks 0.14.934 → 0.14.935

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.
@@ -4635,7 +4635,7 @@
4635
4635
  return [storedValue, setValue];
4636
4636
  }
4637
4637
 
4638
- const InfoCard = JSX(({ __html, icon = 'InfoCircleIcon', iconVersion = 'black' }) => (jsxs("div", { className: "flex flex-row items-center w-full min-h-14 bg-main-gray rounded-lg gap-m p-m", children: [jsx("div", { className: "rounded-full bg-white p-xs", children: jsx(Icon, { name: icon, width: "24", height: "24", iconVersion: iconVersion }) }), jsx("div", { className: "", children: jsx(RichText, { __html: __html }) })] })));
4638
+ const InfoCard = JSX(({ __html, icon = 'InfoCircleIcon', iconVersion = 'black', image }) => (jsxs("div", { className: "flex flex-row items-center w-full min-h-14 bg-main-gray rounded-lg gap-m p-m", children: [jsx("div", { className: "rounded-full bg-white p-xs", children: image ? (jsx(Img, { image: image, className: "block w-max" })) : (jsx(Icon, { name: icon, width: "24", height: "24", iconVersion: iconVersion })) }), jsx("div", { className: "", children: jsx(RichText, { __html: __html }) })] })));
4639
4639
 
4640
4640
  const getCardTypes = async (paymentSystemTypeCd, creditProgramId) => {
4641
4641
  const data = await fetchRetailJSON('/dictionaryFiltered', 'POST', {
@@ -12444,7 +12444,7 @@
12444
12444
  slots: () => [HEADER_SLOT, FOOTER_SLOT, STICKY_FOOTER_SLOT],
12445
12445
  });
12446
12446
 
12447
- const packageVersion = "0.14.933";
12447
+ const packageVersion = "0.14.934";
12448
12448
 
12449
12449
  exports.Blocks = Blocks;
12450
12450
  exports.ContentPage = ContentPage;