@redneckz/wildless-cms-uni-blocks 0.14.84 → 0.14.86

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 (27) hide show
  1. package/bundle/bundle.umd.js +3 -3
  2. package/bundle/bundle.umd.min.js +1 -1
  3. package/dist/components/CarouselLinks/CarouselLinkButton.js +1 -1
  4. package/dist/components/CarouselLinks/CarouselLinkButton.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/common.css +1 -1
  8. package/lib/components/CarouselLinks/CarouselLinkButton.js +1 -1
  9. package/lib/components/CarouselLinks/CarouselLinkButton.js.map +1 -1
  10. package/lib/components/TariffsTable/EmbeddableCellData.js +1 -1
  11. package/lib/components/TariffsTable/EmbeddableCellData.js.map +1 -1
  12. package/mobile/bundle/bundle.umd.js +3 -3
  13. package/mobile/bundle/bundle.umd.min.js +1 -1
  14. package/mobile/dist/components/CarouselLinks/CarouselLinkButton.js +1 -1
  15. package/mobile/dist/components/CarouselLinks/CarouselLinkButton.js.map +1 -1
  16. package/mobile/dist/components/TariffsTable/EmbeddableCellData.js +1 -1
  17. package/mobile/dist/components/TariffsTable/EmbeddableCellData.js.map +1 -1
  18. package/mobile/lib/common.css +1 -1
  19. package/mobile/lib/components/CarouselLinks/CarouselLinkButton.js +1 -1
  20. package/mobile/lib/components/CarouselLinks/CarouselLinkButton.js.map +1 -1
  21. package/mobile/lib/components/TariffsTable/EmbeddableCellData.js +1 -1
  22. package/mobile/lib/components/TariffsTable/EmbeddableCellData.js.map +1 -1
  23. package/mobile/src/components/CarouselLinks/CarouselLinkButton.tsx +2 -7
  24. package/mobile/src/components/TariffsTable/EmbeddableCellData.tsx +6 -2
  25. package/package.json +1 -1
  26. package/src/components/CarouselLinks/CarouselLinkButton.tsx +2 -7
  27. package/src/components/TariffsTable/EmbeddableCellData.tsx +6 -2
@@ -3022,7 +3022,7 @@
3022
3022
  const CarouselLinkButton = JSX(({ className = '', ...linkProps }) => {
3023
3023
  const link = useLink();
3024
3024
  const { text, href, target, onClick } = link(linkProps);
3025
- return text ? (jsx("div", { className: style('flex relative group/link pl-s pb-s min-w-[16rem] xl:min-w-[20rem]', className), children: jsxs("div", { className: "relative min-h-16 w-full", children: [jsxs("a", { className: style(LINK_CLASS_NAME, 'sm:rounded-md rounded-none w-full px-xl py-lg whitespace-nowrap z-10'), role: "link", href: href, target: target, onClick: onClick, children: [jsx(Text, { size: "text-l", font: "font-light", color: "text-primary-text", children: text }), jsx(Img, { className: "group-hover/link:brightness-100 hidden xl:block ml-2xs", image: { icon: 'ArrowRightIcon', iconVersion: 'black' }, imageClassName: "group-hover/link:text-primary-main hidden xl:block", width: "24", height: "24" })] }), jsx("div", { className: style(LINK_BORDER_CLASS_NAME, '-bottom-1.5 -left-1.5') }), jsx("div", { className: style(LINK_BORDER_CLASS_NAME, '-bottom-3 -left-3') })] }) })) : null;
3025
+ return text ? (jsx("div", { className: style('flex relative group/link pl-s pb-s min-w-64 xl:min-w-80', className), children: jsxs("div", { className: "relative min-h-16 w-full", children: [jsxs("a", { className: style(LINK_CLASS_NAME, 'rounded-md lg:rounded-none w-full p-lg whitespace-nowrap z-10'), role: "link", href: href, target: target, onClick: onClick, children: [jsx(Text, { size: "text-l", font: "font-light", color: "text-primary-text", children: text }), jsx(Img, { className: "group-hover/link:brightness-100 hidden xl:block ml-2xs", image: { icon: 'ArrowRightIcon', iconVersion: 'black' }, imageClassName: "group-hover/link:text-primary-main hidden xl:block", width: "24", height: "24" })] }), jsx("div", { className: style(LINK_BORDER_CLASS_NAME, '-bottom-1.5 -left-1.5') }), jsx("div", { className: style(LINK_BORDER_CLASS_NAME, '-bottom-3 -left-3') })] }) })) : null;
3026
3026
  });
3027
3027
 
3028
3028
  const MAX_LINKS_COUNT = 10;
@@ -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.83";
5792
+ const packageVersion = "0.14.85";
5793
5793
 
5794
5794
  exports.Blocks = Blocks;
5795
5795
  exports.ContentPage = ContentPage;