@redneckz/wildless-cms-uni-blocks 0.14.497 → 0.14.498
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.
- package/bundle/bundle.umd.js +3 -3
- package/bundle/bundle.umd.min.js +1 -1
- package/dist/ui-kit/BaseFiltration/renderCarouselBlocks.js +1 -1
- package/dist/ui-kit/BaseFiltration/renderCarouselBlocks.js.map +1 -1
- package/dist/ui-kit/SwipeListControl/SwipeListDots.js +1 -1
- package/dist/ui-kit/SwipeListControl/SwipeListDots.js.map +1 -1
- package/lib/ui-kit/BaseFiltration/renderCarouselBlocks.js +1 -1
- package/lib/ui-kit/BaseFiltration/renderCarouselBlocks.js.map +1 -1
- package/lib/ui-kit/SwipeListControl/SwipeListDots.js +1 -1
- package/lib/ui-kit/SwipeListControl/SwipeListDots.js.map +1 -1
- package/mobile/bundle/bundle.umd.js +3 -3
- package/mobile/bundle/bundle.umd.min.js +1 -1
- package/mobile/dist/ui-kit/BaseFiltration/renderCarouselBlocks.js +1 -1
- package/mobile/dist/ui-kit/BaseFiltration/renderCarouselBlocks.js.map +1 -1
- package/mobile/dist/ui-kit/SwipeListControl/SwipeListDots.js +1 -1
- package/mobile/dist/ui-kit/SwipeListControl/SwipeListDots.js.map +1 -1
- package/mobile/lib/ui-kit/BaseFiltration/renderCarouselBlocks.js +1 -1
- package/mobile/lib/ui-kit/BaseFiltration/renderCarouselBlocks.js.map +1 -1
- package/mobile/lib/ui-kit/SwipeListControl/SwipeListDots.js +1 -1
- package/mobile/lib/ui-kit/SwipeListControl/SwipeListDots.js.map +1 -1
- package/mobile/src/ui-kit/BaseFiltration/renderCarouselBlocks.tsx +1 -1
- package/mobile/src/ui-kit/SwipeListControl/SwipeListDots.tsx +1 -1
- package/package.json +1 -1
- package/src/ui-kit/BaseFiltration/renderCarouselBlocks.tsx +1 -1
- package/src/ui-kit/SwipeListControl/SwipeListDots.tsx +1 -1
package/bundle/bundle.umd.js
CHANGED
|
@@ -2115,7 +2115,7 @@
|
|
|
2115
2115
|
'horizontal-list': 'w-6',
|
|
2116
2116
|
'vertical-list': 'h-6',
|
|
2117
2117
|
};
|
|
2118
|
-
const dotStyle = 'cursor-pointer rounded-full transition-width duration-300 bg-primary-main group-data-secondary:bg-white
|
|
2118
|
+
const dotStyle = 'cursor-pointer rounded-full transition-width duration-300 bg-primary-main group-data-secondary:bg-white';
|
|
2119
2119
|
const inactiveDotStyle = 'w-2 h-2 opacity-30';
|
|
2120
2120
|
const SwipeListDots = JSX(({ className = '', containerRef, activeIndex, dotCount = 0, listType = 'horizontal-list', version, }) => {
|
|
2121
2121
|
const handleClick = (idx) => {
|
|
@@ -2244,7 +2244,7 @@
|
|
|
2244
2244
|
return (jsxs("div", { className: style(className, listType === 'vertical-list' ? 'relative h-full' : ''), children: [jsx(SwipeListContainer, { containerRef: containerRef, activeIndex: activeIndex, visibleItemCount: visibleItemCount, gap: gap, padding: padding, listType: listType, snapAlign: snapAlign, minHeight: minHeight, onVisibleIndicesChange: scroll.handleVisibleIndicesChange, children: children }), jsx(SwipeListScrollButtons, { className: style(!showArrows && 'hidden lg:block'), scroll: scroll, hasBlur: hasBlur, arrowsPadded: arrowsPadded }), jsx(SwipeListDots, { className: style(!showDots && 'lg:hidden'), containerRef: containerRef, activeIndex: activeIndex, dotCount: itemCount, listType: listType, version: version })] }));
|
|
2245
2245
|
});
|
|
2246
2246
|
|
|
2247
|
-
const renderCarouselBlocks = ({ blocksToRender, ...rest }) => (jsx(SwipeListControl, { visibleItemCount: 0, gap: 0,
|
|
2247
|
+
const renderCarouselBlocks = ({ blocksToRender, ...rest }) => (jsx(SwipeListControl, { visibleItemCount: 0, gap: 0, arrowsPadded: true, children: renderBlocksList(blocksToRender, {
|
|
2248
2248
|
...rest.options,
|
|
2249
2249
|
parent: rest.block,
|
|
2250
2250
|
renderProps: (block, options, i) => (jsx("div", { className: style('relative min-w-80', getBorderStyle(true)), children: renderBlock$1(block, options) }, String(i))),
|
|
@@ -6445,7 +6445,7 @@
|
|
|
6445
6445
|
slots: () => [HEADER_SLOT, FOOTER_SLOT, STICKY_FOOTER_SLOT],
|
|
6446
6446
|
});
|
|
6447
6447
|
|
|
6448
|
-
const packageVersion = "0.14.
|
|
6448
|
+
const packageVersion = "0.14.497";
|
|
6449
6449
|
|
|
6450
6450
|
exports.Blocks = Blocks;
|
|
6451
6451
|
exports.ContentPage = ContentPage;
|