@inertiajs/core 2.3.11 → 2.3.13

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": "@inertiajs/core",
3
- "version": "2.3.11",
3
+ "version": "2.3.13",
4
4
  "license": "MIT",
5
5
  "description": "A framework for creating server-driven single page apps.",
6
6
  "contributors": [
@@ -46,8 +46,8 @@
46
46
  "dependencies": {
47
47
  "@types/lodash-es": "^4.17.12",
48
48
  "axios": "^1.13.2",
49
- "laravel-precognition": "^1.0.0",
50
- "lodash-es": "^4.17.22",
49
+ "laravel-precognition": "^1.0.1",
50
+ "lodash-es": "^4.17.23",
51
51
  "qs": "^6.14.1"
52
52
  },
53
53
  "devDependencies": {
package/types/url.d.ts CHANGED
@@ -6,6 +6,7 @@ export declare function mergeDataIntoQueryString<T extends RequestPayload>(metho
6
6
  export declare function urlWithoutHash(url: URL | Location): URL;
7
7
  export declare const setHashIfSameUrl: (originUrl: URL | Location, destinationUrl: URL | Location) => void;
8
8
  export declare const isSameUrlWithoutHash: (url1: URL | Location, url2: URL | Location) => boolean;
9
+ export declare const isSameUrlWithoutQueryOrHash: (url1: URL | Location, url2: URL | Location) => boolean;
9
10
  export declare function isUrlMethodPair(href: unknown): href is UrlMethodPair;
10
11
  export declare function urlHasProtocol(url: string): boolean;
11
12
  export declare function urlToString(url: URL | string, absolute: boolean): string;