@vaadin/component-base 24.2.2 → 24.2.3

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vaadin/component-base",
3
- "version": "24.2.2",
3
+ "version": "24.2.3",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
@@ -42,5 +42,5 @@
42
42
  "@vaadin/testing-helpers": "^0.5.0",
43
43
  "sinon": "^13.0.2"
44
44
  },
45
- "gitHead": "ed5edf42bd39119a7ab29b41000e7017af1579bc"
45
+ "gitHead": "72e557e765e72559e9c6a525e257d185ad186dc5"
46
46
  }
@@ -45,7 +45,7 @@ const registered = new Set();
45
45
  export const ElementMixin = (superClass) =>
46
46
  class VaadinElementMixin extends DirMixin(superClass) {
47
47
  static get version() {
48
- return '24.2.2';
48
+ return '24.2.3';
49
49
  }
50
50
 
51
51
  /** @protected */
@@ -5,6 +5,7 @@
5
5
  */
6
6
 
7
7
  /**
8
- * Check if two paths match
8
+ * Check if two paths can be resolved as URLs
9
+ * with the same origin and pathname.
9
10
  */
10
11
  export declare function matchPaths(path1: string, path2: string): boolean;
package/src/url-utils.js CHANGED
@@ -5,12 +5,15 @@
5
5
  */
6
6
 
7
7
  /**
8
- * Check if two paths match
8
+ * Check if two paths can be resolved as URLs
9
+ * with the same origin and pathname.
9
10
  *
10
11
  * @param {string} path1
11
12
  * @param {string} path2
12
13
  */
13
14
  export function matchPaths(path1, path2) {
14
15
  const base = document.baseURI;
15
- return new URL(path1, base).pathname === new URL(path2, base).pathname;
16
+ const url1 = new URL(path1, base);
17
+ const url2 = new URL(path2, base);
18
+ return url1.origin === url2.origin && url1.pathname === url2.pathname;
16
19
  }