@redneckz/wildless-cms-uni-blocks 0.14.536 → 0.14.537

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.
@@ -5731,15 +5731,15 @@
5731
5731
  const renderNavButton = ({ activeSlideIndex, onClick }) => ({ nav }, i) => {
5732
5732
  const isActive = i === activeSlideIndex;
5733
5733
  const btnClassName = isActive
5734
- ? 'min-w-[350px] bg-white shadow-dark-blue border-none p-6'
5735
- : 'min-w-72 ease-in duration-300 bg-white/10 px-xl py-lg hover:backdrop-blur';
5734
+ ? 'min-w-[370px] mt-s h-28 bg-white shadow-dark-blue border-none p-6'
5735
+ : 'min-w-72 mt-lg h-24 ease-in duration-300 bg-white/10 px-xl py-lg hover:backdrop-blur';
5736
5736
  const btnTitleClassName = isActive
5737
5737
  ? 'text-primary-text text-h6 py-xs'
5738
5738
  : 'text-l pb-2xs text-secondary-text group-data-secondary:text-white';
5739
5739
  const btnDescClassName = isActive
5740
5740
  ? 'text-secondary-text text-l font-light'
5741
5741
  : 'text-secondary-text text-m font-light group-data-secondary:text-white/80';
5742
- return (jsxs("button", { type: "button", onClick: () => onClick(i), "aria-label": nav?.title, className: style('max-h-28 mt-xs ml-xs relative px-xl box-border overflow-hidden text-left grow basis-0 border border-gray group-data-secondary:border-white/50 whitespace-nowrap', btnClassName), children: [jsx("div", { className: btnTitleClassName, children: nav?.title }), jsx("div", { className: btnDescClassName, children: nav?.description })] }, String(i)));
5742
+ return (jsxs("button", { type: "button", onClick: () => onClick(i), "aria-label": nav?.title, className: style('relative overflow-hidden grow', 'ml-xs px-xl', 'box-border basis-0 border', 'border-gray group-data-secondary:border-white/50', 'text-left whitespace-nowrap', btnClassName), children: [jsx("div", { className: btnTitleClassName, children: nav?.title }), jsx("div", { className: btnDescClassName, children: nav?.description })] }, String(i)));
5743
5743
  };
5744
5744
 
5745
5745
  const RepresentativeOfficeInfo = JSX(({ address, email, telephone, button, className = '', __html, icon, title, version = 'primary', ...rest }) => (jsxs(BlockWrapper, { className: style('box-border text-left space-y-s', className), version: version, ...rest, children: [jsxs("div", { className: "w-full flex justify-between flex-row-reverse", children: [isIcon(icon) ? (jsx("div", { className: 'w-10 h-7 sm:w-24 sm:h-16', children: jsx(Img, { image: icon }) })) : null, title ? jsx(Heading, { headingType: "h3", as: "h3", title: title }) : null] }), jsxs("div", { className: "w-full space-y-m", children: [__html ? renderDescriptionBlock(__html) : null, renderBlock({
@@ -6504,7 +6504,7 @@
6504
6504
  slots: () => [HEADER_SLOT, FOOTER_SLOT, STICKY_FOOTER_SLOT],
6505
6505
  });
6506
6506
 
6507
- const packageVersion = "0.14.535";
6507
+ const packageVersion = "0.14.536";
6508
6508
 
6509
6509
  exports.Blocks = Blocks;
6510
6510
  exports.ContentPage = ContentPage;