@redneckz/wildless-cms-uni-blocks 0.13.11 → 0.13.12
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 +5 -5
- package/bundle/bundle.umd.min.js +1 -1
- package/dist/ui-kit/BaseTile/BaseTile.js +4 -4
- package/lib/common.css +1 -1
- package/lib/ui-kit/BaseTile/BaseTile.js +4 -4
- package/mobile/bundle/bundle.umd.js +5 -5
- package/mobile/bundle/bundle.umd.min.js +1 -1
- package/mobile/dist/ui-kit/BaseTile/BaseTile.js +4 -4
- package/mobile/lib/common.css +1 -1
- package/mobile/lib/ui-kit/BaseTile/BaseTile.js +4 -4
- package/mobile/src/ui-kit/BaseTile/BaseTile.tsx +4 -4
- package/package.json +1 -1
- package/src/ui-kit/BaseTile/BaseTile.tsx +4 -4
package/bundle/bundle.umd.js
CHANGED
|
@@ -2608,11 +2608,11 @@
|
|
|
2608
2608
|
});
|
|
2609
2609
|
|
|
2610
2610
|
const imageAlignmentMap = {
|
|
2611
|
-
start: '@
|
|
2612
|
-
center: '@
|
|
2613
|
-
end: '@
|
|
2611
|
+
start: '@lg:self-start',
|
|
2612
|
+
center: '@lg:self-center',
|
|
2613
|
+
end: '@lg:self-end',
|
|
2614
2614
|
};
|
|
2615
|
-
const BaseTile = JSX(({ className, defaultPadding, padding, title = '', insetTitle = '', buttons, leftImage, rightImage, imageAlign, backImage, children, }) => (jsxs("div", { className: style('relative flex flex-col gap-3xl font-sans overflow-hidden', padding || defaultPadding, className), children: [title ? jsx("div", { className: "relative", children: title }) : null, jsxs("div", { className: "grow relative flex flex-col @
|
|
2615
|
+
const BaseTile = JSX(({ className, defaultPadding, padding, title = '', insetTitle = '', buttons, leftImage, rightImage, imageAlign, backImage, children, }) => (jsxs("div", { className: style('relative flex flex-col gap-3xl font-sans overflow-hidden', padding || defaultPadding, className), children: [title ? jsx("div", { className: "relative", children: title }) : null, jsxs("div", { className: "grow relative flex flex-col @lg:flex-row justify-around @lg:justify-between items-stretch gap-3xl", children: [renderImageContainer(leftImage, { imageAlign }), jsxs("div", { className: style('flex flex-col gap-3xl max-w-[600px] @xl:max-w-[728px]', leftImage ? '' : 'grow'), children: [insetTitle, jsx("div", { className: "grow", children: children }), backImage ? (jsx("div", { className: "justify-center mx-auto sm:absolute sm:-z-10 sm:-bottom-4 sm:-right-4", children: backImage })) : null, buttons] }), renderImageContainer(rightImage, {
|
|
2616
2616
|
className: '-order-1 @xl:order-1',
|
|
2617
2617
|
imageAlign,
|
|
2618
2618
|
})] })] })));
|
|
@@ -5297,7 +5297,7 @@
|
|
|
5297
5297
|
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" }) }));
|
|
5298
5298
|
}
|
|
5299
5299
|
|
|
5300
|
-
const packageVersion = "0.13.
|
|
5300
|
+
const packageVersion = "0.13.12";
|
|
5301
5301
|
|
|
5302
5302
|
exports.Blocks = Blocks;
|
|
5303
5303
|
exports.ContentPage = ContentPage;
|