@redneckz/wildless-cms-uni-blocks 0.14.85 → 0.14.87

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.
Files changed (25) hide show
  1. package/bundle/bundle.umd.js +2 -2
  2. package/bundle/bundle.umd.min.js +1 -1
  3. package/dist/components/StickyBottomMenu/StickyBottomMenuItem.js +3 -1
  4. package/dist/components/StickyBottomMenu/StickyBottomMenuItem.js.map +1 -1
  5. package/dist/components/TariffsTable/EmbeddableCellData.js +1 -1
  6. package/dist/components/TariffsTable/EmbeddableCellData.js.map +1 -1
  7. package/lib/components/StickyBottomMenu/StickyBottomMenuItem.js +3 -1
  8. package/lib/components/StickyBottomMenu/StickyBottomMenuItem.js.map +1 -1
  9. package/lib/components/TariffsTable/EmbeddableCellData.js +1 -1
  10. package/lib/components/TariffsTable/EmbeddableCellData.js.map +1 -1
  11. package/mobile/bundle/bundle.umd.js +5 -3
  12. package/mobile/bundle/bundle.umd.min.js +1 -1
  13. package/mobile/dist/components/StickyBottomMenu/StickyBottomMenuItem.js +3 -1
  14. package/mobile/dist/components/StickyBottomMenu/StickyBottomMenuItem.js.map +1 -1
  15. package/mobile/dist/components/TariffsTable/EmbeddableCellData.js +1 -1
  16. package/mobile/dist/components/TariffsTable/EmbeddableCellData.js.map +1 -1
  17. package/mobile/lib/components/StickyBottomMenu/StickyBottomMenuItem.js +3 -1
  18. package/mobile/lib/components/StickyBottomMenu/StickyBottomMenuItem.js.map +1 -1
  19. package/mobile/lib/components/TariffsTable/EmbeddableCellData.js +1 -1
  20. package/mobile/lib/components/TariffsTable/EmbeddableCellData.js.map +1 -1
  21. package/mobile/src/components/StickyBottomMenu/StickyBottomMenuItem.tsx +3 -2
  22. package/mobile/src/components/TariffsTable/EmbeddableCellData.tsx +6 -2
  23. package/package.json +1 -1
  24. package/src/components/StickyBottomMenu/StickyBottomMenuItem.tsx +3 -2
  25. package/src/components/TariffsTable/EmbeddableCellData.tsx +6 -2
@@ -5375,7 +5375,7 @@
5375
5375
  const renderButtonsCellData = ({ buttons }) => renderButtonsSection(buttons, {
5376
5376
  buttonClassName: 'basis-0',
5377
5377
  });
5378
- const renderLabelDescriptionCellData = ({ label, description }) => (jsxs("div", { className: "space-y-2xs", children: [label ? jsx("div", { children: label }) : null, description ? (jsx("div", { children: jsx(Text, { size: "text-s", color: "text-secondary-text", children: description }) })) : null] }));
5378
+ 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] }));
5379
5379
  const renderImgCellData = ({ image }) => (image?.src ? jsx(Img, { image: image }) : null);
5380
5380
  const renderListCellData = ({ isDotted, ...rest }) => (jsx(List, { className: "flex flex-col justify-between items-start text-h6", isDotted: isDotted ?? true, ...rest }));
5381
5381
  const renderInnerTableCellData = ({ isVisible, displayTable, dataUrl, pdfUrl, isOpen, }) => isVisible ? (jsx(TableInnerButton, { isOpen: isOpen, onClick: () => {
@@ -5789,7 +5789,7 @@
5789
5789
  return (jsx("div", { className: "flex items-end absolute bottom-0 right-0 h-full pointer-events-none", children: jsx(LikeControl, { className: "rounded-tl-3xl sticky bottom-0 pointer-events-auto" }) }));
5790
5790
  }
5791
5791
 
5792
- const packageVersion = "0.14.84";
5792
+ const packageVersion = "0.14.86";
5793
5793
 
5794
5794
  exports.Blocks = Blocks;
5795
5795
  exports.ContentPage = ContentPage;