@redneckz/wildless-cms-uni-blocks 0.14.203 → 0.14.204
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 +4 -1
- package/bundle/bundle.umd.min.js +1 -1
- package/dist/hooks/useNavigateHandler.js +5 -0
- package/dist/hooks/useNavigateHandler.js.map +1 -1
- package/lib/hooks/useNavigateHandler.js +5 -0
- package/lib/hooks/useNavigateHandler.js.map +1 -1
- package/mobile/bundle/bundle.umd.js +4 -1
- package/mobile/bundle/bundle.umd.min.js +1 -1
- package/mobile/dist/hooks/useNavigateHandler.js +5 -0
- package/mobile/dist/hooks/useNavigateHandler.js.map +1 -1
- package/mobile/lib/hooks/useNavigateHandler.js +5 -0
- package/mobile/lib/hooks/useNavigateHandler.js.map +1 -1
- package/mobile/src/hooks/useNavigateHandler.ts +6 -0
- package/package.json +1 -1
- package/src/hooks/useNavigateHandler.ts +6 -0
package/bundle/bundle.umd.js
CHANGED
|
@@ -5876,6 +5876,9 @@
|
|
|
5876
5876
|
};
|
|
5877
5877
|
|
|
5878
5878
|
const useNavigateHandler = () => {
|
|
5879
|
+
useEffect(() => {
|
|
5880
|
+
getSessionQuery(); //? Call first time for save query in sessionStorage
|
|
5881
|
+
}, []);
|
|
5879
5882
|
useEventListener(globalThis, 'click', navigationHandler);
|
|
5880
5883
|
};
|
|
5881
5884
|
const navigationHandler = (ev) => {
|
|
@@ -6037,7 +6040,7 @@
|
|
|
6037
6040
|
slots: () => [HEADER_SLOT, FOOTER_SLOT, STICKY_FOOTER_SLOT],
|
|
6038
6041
|
});
|
|
6039
6042
|
|
|
6040
|
-
const packageVersion = "0.14.
|
|
6043
|
+
const packageVersion = "0.14.203";
|
|
6041
6044
|
|
|
6042
6045
|
exports.Blocks = Blocks;
|
|
6043
6046
|
exports.ContentPage = ContentPage;
|