react-router 0.0.0-experimental-e157216e3 → 0.0.0-experimental-9c60e757e
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/dist/index.d.ts +1 -1
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/main.js +1 -1
- package/dist/react-router.development.js +1 -1
- package/dist/react-router.development.js.map +1 -1
- package/dist/react-router.production.min.js +1 -1
- package/dist/react-router.production.min.js.map +1 -1
- package/dist/umd/react-router.development.js +1 -1
- package/dist/umd/react-router.development.js.map +1 -1
- package/dist/umd/react-router.production.min.js +1 -1
- package/dist/umd/react-router.production.min.js.map +1 -1
- package/package.json +3 -3
package/dist/index.d.ts
CHANGED
|
@@ -23,7 +23,7 @@ export declare function createMemoryRouter(routes: RouteObject[], opts?: {
|
|
|
23
23
|
initialEntries?: InitialEntry[];
|
|
24
24
|
initialIndex?: number;
|
|
25
25
|
unstable_dataStrategy?: unstable_DataStrategyFunction;
|
|
26
|
-
unstable_patchRoutesOnMiss
|
|
26
|
+
unstable_patchRoutesOnMiss?: unstable_PatchRoutesOnMissFunction;
|
|
27
27
|
}): RemixRouter;
|
|
28
28
|
/** @internal */
|
|
29
29
|
export { DataRouterContext as UNSAFE_DataRouterContext, DataRouterStateContext as UNSAFE_DataRouterStateContext, LocationContext as UNSAFE_LocationContext, NavigationContext as UNSAFE_NavigationContext, RouteContext as UNSAFE_RouteContext, mapRouteProperties as UNSAFE_mapRouteProperties, useRouteId as UNSAFE_useRouteId, useRoutesImpl as UNSAFE_useRoutesImpl, };
|
package/dist/index.js
CHANGED