@redneckz/wildless-cms-uni-blocks 0.14.513 → 0.14.515
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 +2 -2
- package/bundle/bundle.umd.min.js +1 -1
- package/bundle/data/StickyMobileData.d.ts +2 -2
- package/dist/components/StickyBottomMenu/useBottomMenuItemDialog.js +1 -1
- package/dist/components/StickyBottomMenu/useBottomMenuItemDialog.js.map +1 -1
- package/dist/data/StickyMobileData.d.ts +2 -2
- package/dist/ui-kit/CookiePopup/CookiePopup.js +1 -1
- package/dist/ui-kit/CookiePopup/CookiePopup.js.map +1 -1
- package/lib/common.css +1 -1
- package/lib/components/StickyBottomMenu/useBottomMenuItemDialog.js +1 -1
- package/lib/components/StickyBottomMenu/useBottomMenuItemDialog.js.map +1 -1
- package/lib/data/StickyMobileData.d.ts +2 -2
- package/lib/ui-kit/CookiePopup/CookiePopup.js +1 -1
- package/lib/ui-kit/CookiePopup/CookiePopup.js.map +1 -1
- package/mobile/bundle/bundle.umd.js +3 -3
- package/mobile/bundle/bundle.umd.min.js +1 -1
- package/mobile/bundle/data/StickyMobileData.d.ts +2 -2
- package/mobile/dist/components/StickyBottomMenu/useBottomMenuItemDialog.js +1 -1
- package/mobile/dist/components/StickyBottomMenu/useBottomMenuItemDialog.js.map +1 -1
- package/mobile/dist/data/StickyMobileData.d.ts +2 -2
- package/mobile/dist/ui-kit/CookiePopup/CookiePopup.js +1 -1
- package/mobile/dist/ui-kit/CookiePopup/CookiePopup.js.map +1 -1
- package/mobile/lib/common.css +1 -1
- package/mobile/lib/components/StickyBottomMenu/useBottomMenuItemDialog.js +1 -1
- package/mobile/lib/components/StickyBottomMenu/useBottomMenuItemDialog.js.map +1 -1
- package/mobile/lib/data/StickyMobileData.d.ts +2 -2
- package/mobile/lib/ui-kit/CookiePopup/CookiePopup.js +1 -1
- package/mobile/lib/ui-kit/CookiePopup/CookiePopup.js.map +1 -1
- package/mobile/src/components/StickyBottomMenu/useBottomMenuItemDialog.tsx +5 -2
- package/mobile/src/data/StickyMobileData.ts +8 -7
- package/mobile/src/ui-kit/CookiePopup/CookiePopup.tsx +2 -2
- package/package.json +1 -1
- package/src/components/StickyBottomMenu/useBottomMenuItemDialog.tsx +5 -2
- package/src/data/StickyMobileData.ts +8 -7
- package/src/ui-kit/CookiePopup/CookiePopup.tsx +2 -2
package/bundle/bundle.umd.js
CHANGED
|
@@ -6316,7 +6316,7 @@
|
|
|
6316
6316
|
globalThis.localStorage?.setItem(COOKIE_DIALOG_ID, 'true');
|
|
6317
6317
|
close();
|
|
6318
6318
|
}, []);
|
|
6319
|
-
return opened && __html ? (jsx("div", { className: "container fixed left-0 right-0 bottom-0 z-50", role: "dialog", children: jsxs("div", { className: "bg-white m-xl p-xl rounded-md flex sm:items-center shadow-main-black", children: [jsx("div", { className: "sm:flex-1", children: jsx(RichText, { __html: __html }) }), jsx("div", { className: "ml-s sm:ml-0 w-
|
|
6319
|
+
return opened && __html ? (jsx("div", { className: "container fixed left-0 right-0 bottom-0 z-50", role: "dialog", children: jsxs("div", { className: "bg-white m-xl p-xl rounded-md flex sm:items-center shadow-main-black", children: [jsx("div", { className: "sm:flex-1", children: jsx(RichText, { __html: __html }) }), jsx("div", { className: "ml-s sm:ml-0 w-36 flex justify-end", children: jsx(CloseButton, { className: "bg-main-gray rounded-md w-11 h-11", onClose: handleClose }) })] }) })) : null;
|
|
6320
6320
|
});
|
|
6321
6321
|
|
|
6322
6322
|
function useList(initialList = []) {
|
|
@@ -6452,7 +6452,7 @@
|
|
|
6452
6452
|
slots: () => [HEADER_SLOT, FOOTER_SLOT, STICKY_FOOTER_SLOT],
|
|
6453
6453
|
});
|
|
6454
6454
|
|
|
6455
|
-
const packageVersion = "0.14.
|
|
6455
|
+
const packageVersion = "0.14.514";
|
|
6456
6456
|
|
|
6457
6457
|
exports.Blocks = Blocks;
|
|
6458
6458
|
exports.ContentPage = ContentPage;
|