react-router-dom-v5-compat 6.26.0 → 6.26.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 +9 -0
- package/dist/index.js +3 -3
- package/dist/index.js.map +1 -1
- package/dist/main.js +1 -1
- package/dist/react-router-dom/index.d.ts +3 -3
- package/dist/umd/react-router-dom-v5-compat.development.js +3 -3
- package/dist/umd/react-router-dom-v5-compat.development.js.map +1 -1
- package/dist/umd/react-router-dom-v5-compat.production.min.js +2 -2
- package/dist/umd/react-router-dom-v5-compat.production.min.js.map +1 -1
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
package/dist/index.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* React Router DOM v5 Compat v6.26.
|
|
2
|
+
* React Router DOM v5 Compat v6.26.1
|
|
3
3
|
*
|
|
4
4
|
* Copyright (c) Remix Software Inc.
|
|
5
5
|
*
|
|
@@ -240,7 +240,7 @@ function createBrowserRouter(routes, opts) {
|
|
|
240
240
|
routes,
|
|
241
241
|
mapRouteProperties: UNSAFE_mapRouteProperties,
|
|
242
242
|
unstable_dataStrategy: opts == null ? void 0 : opts.unstable_dataStrategy,
|
|
243
|
-
|
|
243
|
+
unstable_patchRoutesOnNavigation: opts == null ? void 0 : opts.unstable_patchRoutesOnNavigation,
|
|
244
244
|
window: opts == null ? void 0 : opts.window
|
|
245
245
|
}).initialize();
|
|
246
246
|
}
|
|
@@ -257,7 +257,7 @@ function createHashRouter(routes, opts) {
|
|
|
257
257
|
routes,
|
|
258
258
|
mapRouteProperties: UNSAFE_mapRouteProperties,
|
|
259
259
|
unstable_dataStrategy: opts == null ? void 0 : opts.unstable_dataStrategy,
|
|
260
|
-
|
|
260
|
+
unstable_patchRoutesOnNavigation: opts == null ? void 0 : opts.unstable_patchRoutesOnNavigation,
|
|
261
261
|
window: opts == null ? void 0 : opts.window
|
|
262
262
|
}).initialize();
|
|
263
263
|
}
|