@redneckz/wildless-cms-uni-blocks 0.14.267 → 0.14.268

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.
@@ -5619,6 +5619,7 @@
5619
5619
  const [containerRef, scroll] = useSwipeListScroll({ itemCount });
5620
5620
  return (jsxs(BlockWrapper, { className: style(className), defaultPadding: "p-0", ...rest, children: [jsxs("div", { className: "relative border-b-8 border-primary-main", children: [jsx(SwipeListContainer, { itemClassName: "flex", containerRef: containerRef, snapAlign: "snap-end", gap: 8, onVisibleIndicesChange: scroll.handleVisibleIndicesChange, children: tabs.map(renderTabButton(activeTabIndex, setActiveTabIndex, tabAlign)) }), jsx(CarouselScrollButtons, { scroll: scroll, arrowsPadded: true, onScrollLeft: decActiveSlideIndex, onScrollRight: incActiveSlideIndex, activeIndex: activeSlideIndex, itemCount: itemCount })] }), jsx("div", { className: "space-y-px @5xl:space-y-0 @5xl:grid @5xl:grid-cols-12 @5xl:gap-2xs", children: tabs[activeTabIndex]?.href ? (jsx(TabsLayoutRedirectSection, { tab: tabs[activeTabIndex] })) : (renderBlocksList(block?.slots?.[slotName], {
5621
5621
  ...rest?.options,
5622
+ key: `${slotName}-${block?.type}`,
5622
5623
  slotName,
5623
5624
  parent: block,
5624
5625
  })) })] }));
@@ -6110,7 +6111,7 @@
6110
6111
  slots: () => [HEADER_SLOT, FOOTER_SLOT, STICKY_FOOTER_SLOT],
6111
6112
  });
6112
6113
 
6113
- const packageVersion = "0.14.266";
6114
+ const packageVersion = "0.14.267";
6114
6115
 
6115
6116
  exports.Blocks = Blocks;
6116
6117
  exports.ContentPage = ContentPage;