react-router-native 6.13.0 → 6.14.0-pre.1
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 +15 -0
- package/dist/index.d.ts +3 -3
- package/dist/index.js +1 -1
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,20 @@
|
|
|
1
1
|
# `react-router-native`
|
|
2
2
|
|
|
3
|
+
## 6.14.0-pre.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies:
|
|
8
|
+
- `react-router@6.14.0-pre.1`
|
|
9
|
+
|
|
10
|
+
## 6.14.0-pre.0
|
|
11
|
+
|
|
12
|
+
### Patch Changes
|
|
13
|
+
|
|
14
|
+
- upgrade typescript to 5.1 ([#10581](https://github.com/remix-run/react-router/pull/10581))
|
|
15
|
+
- Updated dependencies:
|
|
16
|
+
- `react-router@6.14.0-pre.0`
|
|
17
|
+
|
|
3
18
|
## 6.13.0
|
|
4
19
|
|
|
5
20
|
### Patch Changes
|
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
|
|
53
|
-
export
|
|
54
|
-
export
|
|
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
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "react-router-native",
|
|
3
|
-
"version": "6.
|
|
3
|
+
"version": "6.14.0-pre.1",
|
|
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.
|
|
25
|
+
"react-router": "6.14.0-pre.1"
|
|
26
26
|
},
|
|
27
27
|
"devDependencies": {
|
|
28
28
|
"react": "^18.2.0",
|