@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.
@@ -3520,7 +3520,7 @@
3520
3520
  const useMediaQuery = (screenRange) => {
3521
3521
  const screenWidth = screens[screenRange];
3522
3522
  const mq = `(min-width: ${screenWidth})`;
3523
- return window.matchMedia(mq).matches;
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.456";
6598
+ const packageVersion = "0.14.457";
6599
6599
 
6600
6600
  exports.Blocks = Blocks;
6601
6601
  exports.ContentPage = ContentPage;