react-router-native 6.13.0-pre.1 → 6.14.0-pre.0

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/CHANGELOG.md CHANGED
@@ -1,18 +1,19 @@
1
1
  # `react-router-native`
2
2
 
3
- ## 6.13.0-pre.1
3
+ ## 6.14.0-pre.0
4
4
 
5
5
  ### Patch Changes
6
6
 
7
+ - upgrade typescript to 5.1 ([#10581](https://github.com/remix-run/react-router/pull/10581))
7
8
  - Updated dependencies:
8
- - `react-router@6.13.0-pre.1`
9
+ - `react-router@6.14.0-pre.0`
9
10
 
10
- ## 6.12.2-pre.0
11
+ ## 6.13.0
11
12
 
12
13
  ### Patch Changes
13
14
 
14
15
  - Updated dependencies:
15
- - `react-router@6.12.2-pre.0`
16
+ - `react-router@6.13.0`
16
17
 
17
18
  ## 6.12.1
18
19
 
package/dist/index.d.ts CHANGED
@@ -49,9 +49,9 @@ export declare function useDeepLinking(): void;
49
49
  * URLSearchParams interface.
50
50
  */
51
51
  export declare function useSearchParams(defaultInit?: URLSearchParamsInit): [URLSearchParams, SetURLSearchParams];
52
- export declare type SetURLSearchParams = (nextInit?: URLSearchParamsInit | ((prev: URLSearchParams) => URLSearchParamsInit), navigateOpts?: NavigateOptions) => void;
53
- export declare type ParamKeyValuePair = [string, string];
54
- export declare type URLSearchParamsInit = string | ParamKeyValuePair[] | Record<string, string | string[]> | URLSearchParams;
52
+ export type SetURLSearchParams = (nextInit?: URLSearchParamsInit | ((prev: URLSearchParams) => URLSearchParamsInit), navigateOpts?: NavigateOptions) => void;
53
+ export type ParamKeyValuePair = [string, string];
54
+ export type URLSearchParamsInit = string | ParamKeyValuePair[] | Record<string, string | string[]> | URLSearchParams;
55
55
  /**
56
56
  * Creates a URLSearchParams object using the given initializer.
57
57
  *
package/dist/index.js CHANGED
@@ -1,5 +1,5 @@
1
1
  /**
2
- * React Router Native v6.13.0-pre.1
2
+ * React Router Native v6.14.0-pre.0
3
3
  *
4
4
  * Copyright (c) Remix Software Inc.
5
5
  *
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "react-router-native",
3
- "version": "6.13.0-pre.1",
3
+ "version": "6.14.0-pre.0",
4
4
  "description": "Declarative routing for React Native applications",
5
5
  "keywords": [
6
6
  "react",
@@ -22,7 +22,7 @@
22
22
  "types": "./dist/index.d.ts",
23
23
  "dependencies": {
24
24
  "@ungap/url-search-params": "^0.1.4",
25
- "react-router": "6.13.0-pre.1"
25
+ "react-router": "6.14.0-pre.0"
26
26
  },
27
27
  "devDependencies": {
28
28
  "react": "^18.2.0",