@redneckz/wildless-cms-uni-blocks 0.14.457 → 0.14.458
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/dist/hooks/useMediaQuery.js +1 -1
- package/dist/hooks/useMediaQuery.js.map +1 -1
- package/lib/hooks/useMediaQuery.js +1 -1
- package/lib/hooks/useMediaQuery.js.map +1 -1
- package/mobile/bundle/bundle.umd.js +2 -2
- package/mobile/bundle/bundle.umd.min.js +1 -1
- package/mobile/dist/hooks/useMediaQuery.js +1 -1
- package/mobile/dist/hooks/useMediaQuery.js.map +1 -1
- package/mobile/lib/hooks/useMediaQuery.js +1 -1
- package/mobile/lib/hooks/useMediaQuery.js.map +1 -1
- package/mobile/src/hooks/useMediaQuery.ts +1 -1
- package/package.json +1 -1
- package/src/hooks/useMediaQuery.ts +1 -1
package/bundle/bundle.umd.js
CHANGED
|
@@ -3520,7 +3520,7 @@
|
|
|
3520
3520
|
const useMediaQuery = (screenRange) => {
|
|
3521
3521
|
const screenWidth = screens[screenRange];
|
|
3522
3522
|
const mq = `(min-width: ${screenWidth})`;
|
|
3523
|
-
return
|
|
3523
|
+
return Boolean(globalThis.matchMedia?.(mq)?.matches);
|
|
3524
3524
|
};
|
|
3525
3525
|
|
|
3526
3526
|
const useMobileMode = () => {
|
|
@@ -6595,7 +6595,7 @@
|
|
|
6595
6595
|
slots: () => [HEADER_SLOT, FOOTER_SLOT, STICKY_FOOTER_SLOT],
|
|
6596
6596
|
});
|
|
6597
6597
|
|
|
6598
|
-
const packageVersion = "0.14.
|
|
6598
|
+
const packageVersion = "0.14.457";
|
|
6599
6599
|
|
|
6600
6600
|
exports.Blocks = Blocks;
|
|
6601
6601
|
exports.ContentPage = ContentPage;
|