@redneckz/wildless-cms-uni-blocks 0.14.389 → 0.14.390

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.
@@ -5843,7 +5843,7 @@
5843
5843
  const renderButtonsCellData = ({ buttons }) => renderButtonsSection(buttons, {
5844
5844
  buttonClassName: 'basis-0',
5845
5845
  });
5846
- const renderLabelDescriptionCellData = ({ label, description }) => (jsxs("div", { className: "space-y-2xs", children: [label ? (jsx("div", { children: jsx(Text, { size: "text-h6", children: label }) })) : null, description ? (jsx("div", { children: jsx(Text, { size: "text-l", color: "text-secondary-text", children: description }) })) : null] }));
5846
+ const renderLabelDescriptionCellData = ({ label, description }) => (jsxs("div", { className: "space-y-2xs", children: [label ? (jsx("div", { children: jsx(Text, { size: "text-h6", children: label }) })) : null, description ? (jsx("div", { className: "lg:text-l font-light text-xs", children: jsx(Text, { color: "text-secondary-text", children: description }) })) : null] }));
5847
5847
  const renderImgCellData = ({ image }) => (image?.src ? jsx(Img, { image: image }) : null);
5848
5848
  const renderListCellData = ({ isDotted, ...rest }) => (jsx(List, { className: "flex flex-col justify-between items-start text-h6", isDotted: isDotted ?? true, ...rest }));
5849
5849
  const renderInnerTableCellData = ({ isVisible, displayTable, dataUrl, pdfUrl, isOpen, }) => isVisible ? (jsx(TableInnerButton, { isOpen: isOpen, onClick: () => {
@@ -6264,7 +6264,7 @@
6264
6264
  slots: () => [HEADER_SLOT, FOOTER_SLOT, STICKY_FOOTER_SLOT],
6265
6265
  });
6266
6266
 
6267
- const packageVersion = "0.14.388";
6267
+ const packageVersion = "0.14.389";
6268
6268
 
6269
6269
  exports.Blocks = Blocks;
6270
6270
  exports.ContentPage = ContentPage;