@maxtropy/v-components 0.1.17-beta.18 → 0.1.17-beta.19

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.
@@ -25467,12 +25467,12 @@ function U5() {
25467
25467
  return window.rawOpen(e + o, r, a);
25468
25468
  if (typeof o == "string" && o.startsWith("http")) {
25469
25469
  const l = new URL(o), i = WF.find(
25470
- (c) => window[c.rawWindowName] === l.origin
25470
+ (p) => window[p.rawWindowName] === l.origin
25471
25471
  );
25472
25472
  if (!i)
25473
25473
  return window.rawOpen(o, r, a);
25474
- const u = window.location.origin + t + `/${i.appName}` + l.pathname;
25475
- return window.rawOpen(u, r, a);
25474
+ const u = l.pathname + l.search + l.hash, c = new URL(`${t}/${i.appName}${u}`, window.location.origin).href;
25475
+ return window.rawOpen(c, r, a);
25476
25476
  }
25477
25477
  return window.rawOpen(o, r, a);
25478
25478
  }, window.addEventListener("click", (o) => {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@maxtropy/v-components",
3
- "version": "0.1.17-beta.18",
3
+ "version": "0.1.17-beta.19",
4
4
  "files": [
5
5
  "dist"
6
6
  ],