sprintify-ui 0.10.44 → 0.10.45

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.
@@ -15130,7 +15130,7 @@ const Sa = /* @__PURE__ */ Wa(cy), dy = { class: "flex grow items-center justify
15130
15130
  }
15131
15131
  );
15132
15132
  function te() {
15133
- return mt.parseQueryString(window.location.search.replace(/^(\?)/, ""));
15133
+ return o.historyMode ? mt.parseQueryString(window.location.search.replace(/^(\?)/, "")) : {};
15134
15134
  }
15135
15135
  function ke() {
15136
15136
  if (!o.historyMode || h || f.name != v)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sprintify-ui",
3
- "version": "0.10.44",
3
+ "version": "0.10.45",
4
4
  "type": "module",
5
5
  "scripts": {
6
6
  "build": "rimraf dist && vue-tsc && vite build",
@@ -603,6 +603,9 @@ watch(
603
603
  );
604
604
 
605
605
  function getRouteQuery() {
606
+ if (!props.historyMode) {
607
+ return {};
608
+ }
606
609
  return config.parseQueryString(window.location.search.replace(/^(\?)/, ''));
607
610
  }
608
611