react-router 7.0.1 → 7.0.2-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 +12 -1
- package/dist/development/{chunk-WFMEQ3WA.mjs → chunk-5NHAYKDH.mjs} +4 -2
- package/dist/development/dom-export.d.mts +1 -1
- package/dist/development/dom-export.d.ts +1 -1
- package/dist/development/dom-export.js +1 -1
- package/dist/development/dom-export.mjs +2 -2
- package/dist/{production/fog-of-war-BDQTYoRQ.d.mts → development/fog-of-war-BkI3XFdx.d.mts} +5 -1
- package/dist/development/{fog-of-war-CbNQuoo8.d.ts → fog-of-war-DU_DzpDb.d.ts} +5 -1
- package/dist/development/index.d.mts +2 -2
- package/dist/development/index.d.ts +2 -2
- package/dist/development/index.js +4 -3
- package/dist/development/index.mjs +4 -3
- package/dist/development/lib/types/route-module.d.mts +2 -2
- package/dist/development/lib/types/route-module.d.ts +2 -2
- package/dist/development/lib/types/route-module.js +1 -1
- package/dist/development/lib/types/route-module.mjs +1 -1
- package/dist/production/{chunk-7R3XDUXW.mjs → chunk-2LLEKEVP.mjs} +4 -2
- package/dist/production/dom-export.d.mts +1 -1
- package/dist/production/dom-export.d.ts +1 -1
- package/dist/production/dom-export.js +1 -1
- package/dist/production/dom-export.mjs +2 -2
- package/dist/{development/fog-of-war-BDQTYoRQ.d.mts → production/fog-of-war-BkI3XFdx.d.mts} +5 -1
- package/dist/production/{fog-of-war-CbNQuoo8.d.ts → fog-of-war-DU_DzpDb.d.ts} +5 -1
- package/dist/production/index.d.mts +2 -2
- package/dist/production/index.d.ts +2 -2
- package/dist/production/index.js +4 -3
- package/dist/production/index.mjs +4 -3
- package/dist/production/lib/types/route-module.d.mts +2 -2
- package/dist/production/lib/types/route-module.d.ts +2 -2
- package/dist/production/lib/types/route-module.js +1 -1
- package/dist/production/lib/types/route-module.mjs +1 -1
- package/package.json +20 -32
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,16 @@
|
|
|
1
1
|
# `react-router`
|
|
2
2
|
|
|
3
|
+
## 7.0.2-pre.0
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- temporarily only use one build in export map so packages can have a peer dependency on react router ([#12437](https://github.com/remix-run/react-router/pull/12437))
|
|
8
|
+
- Generate wide `matches` and `params` types for child routes ([#12397](https://github.com/remix-run/react-router/pull/12397))
|
|
9
|
+
|
|
10
|
+
At runtime, `matches` includes child route matches and `params` include child route path parameters.
|
|
11
|
+
But previously, we only generated types for parent routes and the current route in `matches` and `params`.
|
|
12
|
+
To align our generated types more closely to the runtime behavior, we now generate more permissive, wider types when accessing child route information.
|
|
13
|
+
|
|
3
14
|
## 7.0.1
|
|
4
15
|
|
|
5
16
|
## 7.0.0
|
|
@@ -19,7 +30,7 @@
|
|
|
19
30
|
- Collapse `@remix-run/server-runtime` into `react-router`
|
|
20
31
|
- Collapse `@remix-run/testing` into `react-router`
|
|
21
32
|
|
|
22
|
-
- Remove
|
|
33
|
+
- Remove single_fetch future flag. ([#11522](https://github.com/remix-run/react-router/pull/11522))
|
|
23
34
|
|
|
24
35
|
- Drop support for Node 16, React Router SSR now requires Node 18 or higher ([#11391](https://github.com/remix-run/react-router/pull/11391))
|
|
25
36
|
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* react-router v7.0.
|
|
2
|
+
* react-router v7.0.2-pre.0
|
|
3
3
|
*
|
|
4
4
|
* Copyright (c) Remix Software Inc.
|
|
5
5
|
*
|
|
@@ -5162,6 +5162,7 @@ function createRoutesFromChildren(children, parentPath = []) {
|
|
|
5162
5162
|
});
|
|
5163
5163
|
return routes;
|
|
5164
5164
|
}
|
|
5165
|
+
var createRoutesFromElements = createRoutesFromChildren;
|
|
5165
5166
|
function renderMatches(matches) {
|
|
5166
5167
|
return _renderMatches(matches);
|
|
5167
5168
|
}
|
|
@@ -6980,7 +6981,7 @@ function mergeRefs(...refs) {
|
|
|
6980
6981
|
var isBrowser = typeof window !== "undefined" && typeof window.document !== "undefined" && typeof window.document.createElement !== "undefined";
|
|
6981
6982
|
try {
|
|
6982
6983
|
if (isBrowser) {
|
|
6983
|
-
window.__reactRouterVersion = "7.0.
|
|
6984
|
+
window.__reactRouterVersion = "7.0.2-pre.0";
|
|
6984
6985
|
}
|
|
6985
6986
|
} catch (e) {
|
|
6986
6987
|
}
|
|
@@ -9563,6 +9564,7 @@ export {
|
|
|
9563
9564
|
Routes,
|
|
9564
9565
|
Await,
|
|
9565
9566
|
createRoutesFromChildren,
|
|
9567
|
+
createRoutesFromElements,
|
|
9566
9568
|
renderMatches,
|
|
9567
9569
|
createSearchParams,
|
|
9568
9570
|
SingleFetchRedirectSymbol,
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as React from 'react';
|
|
2
|
-
import { R as RouterProviderProps$1 } from './fog-of-war-
|
|
2
|
+
import { R as RouterProviderProps$1 } from './fog-of-war-BkI3XFdx.mjs';
|
|
3
3
|
import './route-data-DuV3tXo2.mjs';
|
|
4
4
|
|
|
5
5
|
type RouterProviderProps = Omit<RouterProviderProps$1, "flushSync">;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as React from 'react';
|
|
2
|
-
import { R as RouterProviderProps$1 } from './fog-of-war-
|
|
2
|
+
import { R as RouterProviderProps$1 } from './fog-of-war-DU_DzpDb.js';
|
|
3
3
|
import './route-data-DuV3tXo2.js';
|
|
4
4
|
|
|
5
5
|
type RouterProviderProps = Omit<RouterProviderProps$1, "flushSync">;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* react-router v7.0.
|
|
2
|
+
* react-router v7.0.2-pre.0
|
|
3
3
|
*
|
|
4
4
|
* Copyright (c) Remix Software Inc.
|
|
5
5
|
*
|
|
@@ -25,7 +25,7 @@ import {
|
|
|
25
25
|
matchRoutes,
|
|
26
26
|
shouldHydrateRouteLoader,
|
|
27
27
|
useFogOFWarDiscovery
|
|
28
|
-
} from "./chunk-
|
|
28
|
+
} from "./chunk-5NHAYKDH.mjs";
|
|
29
29
|
|
|
30
30
|
// lib/dom-export/dom-router-provider.tsx
|
|
31
31
|
import * as React from "react";
|
|
@@ -361,6 +361,10 @@ declare function Await<Resolve>({ children, errorElement, resolve, }: AwaitProps
|
|
|
361
361
|
* @category Utils
|
|
362
362
|
*/
|
|
363
363
|
declare function createRoutesFromChildren(children: React.ReactNode, parentPath?: number[]): RouteObject[];
|
|
364
|
+
/**
|
|
365
|
+
* Create route objects from JSX elements instead of arrays of objects
|
|
366
|
+
*/
|
|
367
|
+
declare let createRoutesFromElements: typeof createRoutesFromChildren;
|
|
364
368
|
/**
|
|
365
369
|
* Renders the result of `matchRoutes()` into a React element.
|
|
366
370
|
*
|
|
@@ -1592,4 +1596,4 @@ declare global {
|
|
|
1592
1596
|
declare function getPatchRoutesOnNavigationFunction(manifest: AssetsManifest, routeModules: RouteModules, isSpaMode: boolean, basename: string | undefined): PatchRoutesOnNavigationFunction | undefined;
|
|
1593
1597
|
declare function useFogOFWarDiscovery(router: Router$1, manifest: AssetsManifest, routeModules: RouteModules, isSpaMode: boolean): void;
|
|
1594
1598
|
|
|
1595
|
-
export {
|
|
1599
|
+
export { useFetcher as $, type AssetsManifest as A, type BrowserRouterProps as B, type FetcherWithComponents as C, createBrowserRouter as D, type EntryContext as E, type FutureConfig as F, createHashRouter as G, type HashRouterProps as H, type IndexRouteProps as I, BrowserRouter as J, HashRouter as K, type LayoutRouteProps as L, type MemoryRouterProps as M, type NavigateProps as N, type OutletProps as O, type PathRouteProps as P, Link as Q, type RouterProviderProps as R, type ScrollRestorationProps as S, HistoryRouter as T, NavLink as U, Form as V, ScrollRestoration as W, useLinkClickHandler as X, useSearchParams as Y, useSubmit as Z, useFormAction as _, type Route as a, useFetchers as a0, useBeforeUnload as a1, usePrompt as a2, useViewTransitionState as a3, type FetcherSubmitOptions as a4, type ParamKeyValuePair as a5, type SubmitOptions as a6, type URLSearchParamsInit as a7, type SubmitTarget as a8, createSearchParams as a9, Meta as aa, Links as ab, Scripts as ac, PrefetchPageLinks as ad, type ScriptsProps as ae, mapRouteProperties as af, FrameworkContext as ag, getPatchRoutesOnNavigationFunction as ah, useFogOFWarDiscovery as ai, createClientRoutes as aj, createClientRoutesWithHMRRevalidationOptOut as ak, shouldHydrateRouteLoader as al, useScrollRestoration as am, type AwaitProps as b, type RouteProps as c, type RouterProps as d, type RoutesProps as e, Await as f, MemoryRouter as g, Navigate as h, Outlet as i, Route$1 as j, Router as k, RouterProvider as l, Routes as m, createMemoryRouter as n, createRoutesFromChildren as o, createRoutesFromElements as p, type HistoryRouterProps as q, renderMatches as r, type LinkProps as s, type NavLinkProps as t, type NavLinkRenderProps as u, type FetcherFormProps as v, type FormProps as w, type SetURLSearchParams as x, type SubmitFunction as y, type FetcherSubmitFunction as z };
|
|
@@ -361,6 +361,10 @@ declare function Await<Resolve>({ children, errorElement, resolve, }: AwaitProps
|
|
|
361
361
|
* @category Utils
|
|
362
362
|
*/
|
|
363
363
|
declare function createRoutesFromChildren(children: React.ReactNode, parentPath?: number[]): RouteObject[];
|
|
364
|
+
/**
|
|
365
|
+
* Create route objects from JSX elements instead of arrays of objects
|
|
366
|
+
*/
|
|
367
|
+
declare let createRoutesFromElements: typeof createRoutesFromChildren;
|
|
364
368
|
/**
|
|
365
369
|
* Renders the result of `matchRoutes()` into a React element.
|
|
366
370
|
*
|
|
@@ -1592,4 +1596,4 @@ declare global {
|
|
|
1592
1596
|
declare function getPatchRoutesOnNavigationFunction(manifest: AssetsManifest, routeModules: RouteModules, isSpaMode: boolean, basename: string | undefined): PatchRoutesOnNavigationFunction | undefined;
|
|
1593
1597
|
declare function useFogOFWarDiscovery(router: Router$1, manifest: AssetsManifest, routeModules: RouteModules, isSpaMode: boolean): void;
|
|
1594
1598
|
|
|
1595
|
-
export {
|
|
1599
|
+
export { useFetcher as $, type AssetsManifest as A, type BrowserRouterProps as B, type FetcherWithComponents as C, createBrowserRouter as D, type EntryContext as E, type FutureConfig as F, createHashRouter as G, type HashRouterProps as H, type IndexRouteProps as I, BrowserRouter as J, HashRouter as K, type LayoutRouteProps as L, type MemoryRouterProps as M, type NavigateProps as N, type OutletProps as O, type PathRouteProps as P, Link as Q, type RouterProviderProps as R, type ScrollRestorationProps as S, HistoryRouter as T, NavLink as U, Form as V, ScrollRestoration as W, useLinkClickHandler as X, useSearchParams as Y, useSubmit as Z, useFormAction as _, type Route as a, useFetchers as a0, useBeforeUnload as a1, usePrompt as a2, useViewTransitionState as a3, type FetcherSubmitOptions as a4, type ParamKeyValuePair as a5, type SubmitOptions as a6, type URLSearchParamsInit as a7, type SubmitTarget as a8, createSearchParams as a9, Meta as aa, Links as ab, Scripts as ac, PrefetchPageLinks as ad, type ScriptsProps as ae, mapRouteProperties as af, FrameworkContext as ag, getPatchRoutesOnNavigationFunction as ah, useFogOFWarDiscovery as ai, createClientRoutes as aj, createClientRoutesWithHMRRevalidationOptOut as ak, shouldHydrateRouteLoader as al, useScrollRestoration as am, type AwaitProps as b, type RouteProps as c, type RouterProps as d, type RoutesProps as e, Await as f, MemoryRouter as g, Navigate as h, Outlet as i, Route$1 as j, Router as k, RouterProvider as l, Routes as m, createMemoryRouter as n, createRoutesFromChildren as o, createRoutesFromElements as p, type HistoryRouterProps as q, renderMatches as r, type LinkProps as s, type NavLinkProps as t, type NavLinkRenderProps as u, type FetcherFormProps as v, type FormProps as w, type SetURLSearchParams as x, type SubmitFunction as y, type FetcherSubmitFunction as z };
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { R as RouteModules, a as Router, D as DataStrategyFunction, A as ActionFunction, L as LoaderFunction, C as ClientActionFunction, b as ClientLoaderFunction, c as LinksFunction, M as MetaFunction, d as RouteManifest, e as LoaderFunctionArgs, f as ActionFunctionArgs, T as To, g as RelativeRoutingType, h as Location, i as Action, P as ParamParseKey, j as Path, k as PathPattern, l as PathMatch, N as NavigateOptions, m as Params, n as RouteObject, o as Navigation, p as RevalidationState, U as UIMatch, S as SerializeFrom, B as BlockerFunction, q as Blocker, r as StaticHandlerContext, s as StaticHandler, F as FutureConfig$1, t as CreateStaticHandlerOptions$1, I as InitialEntry, H as HydrationState, u as IndexRouteObject, v as NonIndexRouteObject, w as RouterState } from './route-data-DuV3tXo2.mjs';
|
|
2
2
|
export { ap as ClientActionFunctionArgs, aq as ClientLoaderFunctionArgs, aj as DataRouteMatch, ak as DataRouteObject, Q as DataStrategyFunctionArgs, V as DataStrategyMatch, W as DataStrategyResult, Y as ErrorResponse, y as Fetcher, Z as FormEncType, _ as FormMethod, G as GetScrollPositionFunction, x as GetScrollRestorationKeyFunction, $ as HTMLFormMethod, au as HtmlLinkDescriptor, a9 as IDLE_BLOCKER, a8 as IDLE_FETCHER, a7 as IDLE_NAVIGATION, a0 as LazyRouteFunction, av as LinkDescriptor, ar as MetaArgs, as as MetaDescriptor, z as NavigationStates, al as Navigator, at as PageLinkDescriptor, am as PatchRoutesOnNavigationFunction, an as PatchRoutesOnNavigationFunctionArgs, a1 as PathParam, a2 as RedirectFunction, ao as RouteMatch, O as RouterFetchOptions, E as RouterInit, K as RouterNavigateOptions, J as RouterSubscriber, a3 as ShouldRevalidateFunction, a4 as ShouldRevalidateFunctionArgs, aA as UNSAFE_DataRouterContext, aB as UNSAFE_DataRouterStateContext, X as UNSAFE_DataWithResponseInit, az as UNSAFE_ErrorResponseImpl, aC as UNSAFE_FetchersContext, aD as UNSAFE_LocationContext, aE as UNSAFE_NavigationContext, aF as UNSAFE_RouteContext, aG as UNSAFE_ViewTransitionContext, aw as UNSAFE_createBrowserHistory, ay as UNSAFE_createRouter, ax as UNSAFE_invariant, a5 as createPath, aa as data, ab as generatePath, ac as isRouteErrorResponse, ad as matchPath, ae as matchRoutes, a6 as parsePath, af as redirect, ag as redirectDocument, ah as replace, ai as resolvePath } from './route-data-DuV3tXo2.mjs';
|
|
3
|
-
import { A as AssetsManifest, a as Route, F as FutureConfig, E as EntryContext } from './fog-of-war-
|
|
4
|
-
export { f as Await, b as AwaitProps,
|
|
3
|
+
import { A as AssetsManifest, a as Route, F as FutureConfig, E as EntryContext } from './fog-of-war-BkI3XFdx.mjs';
|
|
4
|
+
export { f as Await, b as AwaitProps, J as BrowserRouter, B as BrowserRouterProps, v as FetcherFormProps, z as FetcherSubmitFunction, a4 as FetcherSubmitOptions, C as FetcherWithComponents, V as Form, w as FormProps, K as HashRouter, H as HashRouterProps, q as HistoryRouterProps, I as IndexRouteProps, L as LayoutRouteProps, Q as Link, s as LinkProps, ab as Links, g as MemoryRouter, M as MemoryRouterProps, aa as Meta, U as NavLink, t as NavLinkProps, u as NavLinkRenderProps, h as Navigate, N as NavigateProps, i as Outlet, O as OutletProps, a5 as ParamKeyValuePair, P as PathRouteProps, ad as PrefetchPageLinks, j as Route, c as RouteProps, k as Router, d as RouterProps, l as RouterProvider, R as RouterProviderProps, m as Routes, e as RoutesProps, ac as Scripts, ae as ScriptsProps, W as ScrollRestoration, S as ScrollRestorationProps, x as SetURLSearchParams, y as SubmitFunction, a6 as SubmitOptions, a8 as SubmitTarget, ag as UNSAFE_FrameworkContext, aj as UNSAFE_createClientRoutes, ak as UNSAFE_createClientRoutesWithHMRRevalidationOptOut, ah as UNSAFE_getPatchRoutesOnNavigationFunction, af as UNSAFE_mapRouteProperties, al as UNSAFE_shouldHydrateRouteLoader, ai as UNSAFE_useFogOFWarDiscovery, am as UNSAFE_useScrollRestoration, a7 as URLSearchParamsInit, D as createBrowserRouter, G as createHashRouter, n as createMemoryRouter, o as createRoutesFromChildren, p as createRoutesFromElements, a9 as createSearchParams, r as renderMatches, T as unstable_HistoryRouter, a2 as unstable_usePrompt, a1 as useBeforeUnload, $ as useFetcher, a0 as useFetchers, _ as useFormAction, X as useLinkClickHandler, Y as useSearchParams, Z as useSubmit, a3 as useViewTransitionState } from './fog-of-war-BkI3XFdx.mjs';
|
|
5
5
|
import * as React from 'react';
|
|
6
6
|
import { ReactElement } from 'react';
|
|
7
7
|
import { ParseOptions, SerializeOptions } from 'cookie';
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { R as RouteModules, a as Router, D as DataStrategyFunction, A as ActionFunction, L as LoaderFunction, C as ClientActionFunction, b as ClientLoaderFunction, c as LinksFunction, M as MetaFunction, d as RouteManifest, e as LoaderFunctionArgs, f as ActionFunctionArgs, T as To, g as RelativeRoutingType, h as Location, i as Action, P as ParamParseKey, j as Path, k as PathPattern, l as PathMatch, N as NavigateOptions, m as Params, n as RouteObject, o as Navigation, p as RevalidationState, U as UIMatch, S as SerializeFrom, B as BlockerFunction, q as Blocker, r as StaticHandlerContext, s as StaticHandler, F as FutureConfig$1, t as CreateStaticHandlerOptions$1, I as InitialEntry, H as HydrationState, u as IndexRouteObject, v as NonIndexRouteObject, w as RouterState } from './route-data-DuV3tXo2.js';
|
|
2
2
|
export { ap as ClientActionFunctionArgs, aq as ClientLoaderFunctionArgs, aj as DataRouteMatch, ak as DataRouteObject, Q as DataStrategyFunctionArgs, V as DataStrategyMatch, W as DataStrategyResult, Y as ErrorResponse, y as Fetcher, Z as FormEncType, _ as FormMethod, G as GetScrollPositionFunction, x as GetScrollRestorationKeyFunction, $ as HTMLFormMethod, au as HtmlLinkDescriptor, a9 as IDLE_BLOCKER, a8 as IDLE_FETCHER, a7 as IDLE_NAVIGATION, a0 as LazyRouteFunction, av as LinkDescriptor, ar as MetaArgs, as as MetaDescriptor, z as NavigationStates, al as Navigator, at as PageLinkDescriptor, am as PatchRoutesOnNavigationFunction, an as PatchRoutesOnNavigationFunctionArgs, a1 as PathParam, a2 as RedirectFunction, ao as RouteMatch, O as RouterFetchOptions, E as RouterInit, K as RouterNavigateOptions, J as RouterSubscriber, a3 as ShouldRevalidateFunction, a4 as ShouldRevalidateFunctionArgs, aA as UNSAFE_DataRouterContext, aB as UNSAFE_DataRouterStateContext, X as UNSAFE_DataWithResponseInit, az as UNSAFE_ErrorResponseImpl, aC as UNSAFE_FetchersContext, aD as UNSAFE_LocationContext, aE as UNSAFE_NavigationContext, aF as UNSAFE_RouteContext, aG as UNSAFE_ViewTransitionContext, aw as UNSAFE_createBrowserHistory, ay as UNSAFE_createRouter, ax as UNSAFE_invariant, a5 as createPath, aa as data, ab as generatePath, ac as isRouteErrorResponse, ad as matchPath, ae as matchRoutes, a6 as parsePath, af as redirect, ag as redirectDocument, ah as replace, ai as resolvePath } from './route-data-DuV3tXo2.js';
|
|
3
|
-
import { A as AssetsManifest, a as Route, F as FutureConfig, E as EntryContext } from './fog-of-war-
|
|
4
|
-
export { f as Await, b as AwaitProps,
|
|
3
|
+
import { A as AssetsManifest, a as Route, F as FutureConfig, E as EntryContext } from './fog-of-war-DU_DzpDb.js';
|
|
4
|
+
export { f as Await, b as AwaitProps, J as BrowserRouter, B as BrowserRouterProps, v as FetcherFormProps, z as FetcherSubmitFunction, a4 as FetcherSubmitOptions, C as FetcherWithComponents, V as Form, w as FormProps, K as HashRouter, H as HashRouterProps, q as HistoryRouterProps, I as IndexRouteProps, L as LayoutRouteProps, Q as Link, s as LinkProps, ab as Links, g as MemoryRouter, M as MemoryRouterProps, aa as Meta, U as NavLink, t as NavLinkProps, u as NavLinkRenderProps, h as Navigate, N as NavigateProps, i as Outlet, O as OutletProps, a5 as ParamKeyValuePair, P as PathRouteProps, ad as PrefetchPageLinks, j as Route, c as RouteProps, k as Router, d as RouterProps, l as RouterProvider, R as RouterProviderProps, m as Routes, e as RoutesProps, ac as Scripts, ae as ScriptsProps, W as ScrollRestoration, S as ScrollRestorationProps, x as SetURLSearchParams, y as SubmitFunction, a6 as SubmitOptions, a8 as SubmitTarget, ag as UNSAFE_FrameworkContext, aj as UNSAFE_createClientRoutes, ak as UNSAFE_createClientRoutesWithHMRRevalidationOptOut, ah as UNSAFE_getPatchRoutesOnNavigationFunction, af as UNSAFE_mapRouteProperties, al as UNSAFE_shouldHydrateRouteLoader, ai as UNSAFE_useFogOFWarDiscovery, am as UNSAFE_useScrollRestoration, a7 as URLSearchParamsInit, D as createBrowserRouter, G as createHashRouter, n as createMemoryRouter, o as createRoutesFromChildren, p as createRoutesFromElements, a9 as createSearchParams, r as renderMatches, T as unstable_HistoryRouter, a2 as unstable_usePrompt, a1 as useBeforeUnload, $ as useFetcher, a0 as useFetchers, _ as useFormAction, X as useLinkClickHandler, Y as useSearchParams, Z as useSubmit, a3 as useViewTransitionState } from './fog-of-war-DU_DzpDb.js';
|
|
5
5
|
import * as React from 'react';
|
|
6
6
|
import { ReactElement } from 'react';
|
|
7
7
|
import { ParseOptions, SerializeOptions } from 'cookie';
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* react-router v7.0.
|
|
2
|
+
* react-router v7.0.2-pre.0
|
|
3
3
|
*
|
|
4
4
|
* Copyright (c) Remix Software Inc.
|
|
5
5
|
*
|
|
@@ -99,7 +99,7 @@ __export(react_router_exports, {
|
|
|
99
99
|
createPath: () => createPath,
|
|
100
100
|
createRequestHandler: () => createRequestHandler,
|
|
101
101
|
createRoutesFromChildren: () => createRoutesFromChildren,
|
|
102
|
-
createRoutesFromElements: () =>
|
|
102
|
+
createRoutesFromElements: () => createRoutesFromElements,
|
|
103
103
|
createRoutesStub: () => createRoutesStub,
|
|
104
104
|
createSearchParams: () => createSearchParams,
|
|
105
105
|
createSession: () => createSession,
|
|
@@ -5307,6 +5307,7 @@ function createRoutesFromChildren(children, parentPath = []) {
|
|
|
5307
5307
|
});
|
|
5308
5308
|
return routes;
|
|
5309
5309
|
}
|
|
5310
|
+
var createRoutesFromElements = createRoutesFromChildren;
|
|
5310
5311
|
function renderMatches(matches) {
|
|
5311
5312
|
return _renderMatches(matches);
|
|
5312
5313
|
}
|
|
@@ -7125,7 +7126,7 @@ function mergeRefs(...refs) {
|
|
|
7125
7126
|
var isBrowser = typeof window !== "undefined" && typeof window.document !== "undefined" && typeof window.document.createElement !== "undefined";
|
|
7126
7127
|
try {
|
|
7127
7128
|
if (isBrowser) {
|
|
7128
|
-
window.__reactRouterVersion = "7.0.
|
|
7129
|
+
window.__reactRouterVersion = "7.0.2-pre.0";
|
|
7129
7130
|
}
|
|
7130
7131
|
} catch (e) {
|
|
7131
7132
|
}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* react-router v7.0.
|
|
2
|
+
* react-router v7.0.2-pre.0
|
|
3
3
|
*
|
|
4
4
|
* Copyright (c) Remix Software Inc.
|
|
5
5
|
*
|
|
@@ -60,6 +60,7 @@ import {
|
|
|
60
60
|
createRequestHandler,
|
|
61
61
|
createRouter,
|
|
62
62
|
createRoutesFromChildren,
|
|
63
|
+
createRoutesFromElements,
|
|
63
64
|
createRoutesStub,
|
|
64
65
|
createSearchParams,
|
|
65
66
|
createSession,
|
|
@@ -119,7 +120,7 @@ import {
|
|
|
119
120
|
useSearchParams,
|
|
120
121
|
useSubmit,
|
|
121
122
|
useViewTransitionState
|
|
122
|
-
} from "./chunk-
|
|
123
|
+
} from "./chunk-5NHAYKDH.mjs";
|
|
123
124
|
export {
|
|
124
125
|
Await,
|
|
125
126
|
BrowserRouter,
|
|
@@ -180,7 +181,7 @@ export {
|
|
|
180
181
|
createPath,
|
|
181
182
|
createRequestHandler,
|
|
182
183
|
createRoutesFromChildren,
|
|
183
|
-
|
|
184
|
+
createRoutesFromElements,
|
|
184
185
|
createRoutesStub,
|
|
185
186
|
createSearchParams,
|
|
186
187
|
createSession,
|
|
@@ -34,7 +34,7 @@ type MetaMatch<T extends RouteInfo> = Pretty<Pick<T, "id" | "params"> & {
|
|
|
34
34
|
handle?: unknown;
|
|
35
35
|
error?: unknown;
|
|
36
36
|
}>;
|
|
37
|
-
type MetaMatches<T extends RouteInfo[]> = T extends [infer F extends RouteInfo, ...infer R extends RouteInfo[]] ? [MetaMatch<F>, ...MetaMatches<R>] : [];
|
|
37
|
+
type MetaMatches<T extends RouteInfo[]> = T extends [infer F extends RouteInfo, ...infer R extends RouteInfo[]] ? [MetaMatch<F>, ...MetaMatches<R>] : MetaMatch<RouteInfo>[];
|
|
38
38
|
type CreateMetaArgs<T extends RouteInfo> = {
|
|
39
39
|
location: Location;
|
|
40
40
|
params: T["params"];
|
|
@@ -92,7 +92,7 @@ type Match<T extends RouteInfo> = Pretty<Pick<T, "id" | "params"> & {
|
|
|
92
92
|
data: T["loaderData"];
|
|
93
93
|
handle: unknown;
|
|
94
94
|
}>;
|
|
95
|
-
type Matches<T extends RouteInfo[]> = T extends [infer F extends RouteInfo, ...infer R extends RouteInfo[]] ? [Match<F>, ...Matches<R>] : [];
|
|
95
|
+
type Matches<T extends RouteInfo[]> = T extends [infer F extends RouteInfo, ...infer R extends RouteInfo[]] ? [Match<F>, ...Matches<R>] : Match<RouteInfo>[];
|
|
96
96
|
type CreateComponentProps<T extends RouteInfo> = {
|
|
97
97
|
params: T["params"];
|
|
98
98
|
loaderData: T["loaderData"];
|
|
@@ -34,7 +34,7 @@ type MetaMatch<T extends RouteInfo> = Pretty<Pick<T, "id" | "params"> & {
|
|
|
34
34
|
handle?: unknown;
|
|
35
35
|
error?: unknown;
|
|
36
36
|
}>;
|
|
37
|
-
type MetaMatches<T extends RouteInfo[]> = T extends [infer F extends RouteInfo, ...infer R extends RouteInfo[]] ? [MetaMatch<F>, ...MetaMatches<R>] : [];
|
|
37
|
+
type MetaMatches<T extends RouteInfo[]> = T extends [infer F extends RouteInfo, ...infer R extends RouteInfo[]] ? [MetaMatch<F>, ...MetaMatches<R>] : MetaMatch<RouteInfo>[];
|
|
38
38
|
type CreateMetaArgs<T extends RouteInfo> = {
|
|
39
39
|
location: Location;
|
|
40
40
|
params: T["params"];
|
|
@@ -92,7 +92,7 @@ type Match<T extends RouteInfo> = Pretty<Pick<T, "id" | "params"> & {
|
|
|
92
92
|
data: T["loaderData"];
|
|
93
93
|
handle: unknown;
|
|
94
94
|
}>;
|
|
95
|
-
type Matches<T extends RouteInfo[]> = T extends [infer F extends RouteInfo, ...infer R extends RouteInfo[]] ? [Match<F>, ...Matches<R>] : [];
|
|
95
|
+
type Matches<T extends RouteInfo[]> = T extends [infer F extends RouteInfo, ...infer R extends RouteInfo[]] ? [Match<F>, ...Matches<R>] : Match<RouteInfo>[];
|
|
96
96
|
type CreateComponentProps<T extends RouteInfo> = {
|
|
97
97
|
params: T["params"];
|
|
98
98
|
loaderData: T["loaderData"];
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* react-router v7.0.
|
|
2
|
+
* react-router v7.0.2-pre.0
|
|
3
3
|
*
|
|
4
4
|
* Copyright (c) Remix Software Inc.
|
|
5
5
|
*
|
|
@@ -5162,6 +5162,7 @@ function createRoutesFromChildren(children, parentPath = []) {
|
|
|
5162
5162
|
});
|
|
5163
5163
|
return routes;
|
|
5164
5164
|
}
|
|
5165
|
+
var createRoutesFromElements = createRoutesFromChildren;
|
|
5165
5166
|
function renderMatches(matches) {
|
|
5166
5167
|
return _renderMatches(matches);
|
|
5167
5168
|
}
|
|
@@ -6980,7 +6981,7 @@ function mergeRefs(...refs) {
|
|
|
6980
6981
|
var isBrowser = typeof window !== "undefined" && typeof window.document !== "undefined" && typeof window.document.createElement !== "undefined";
|
|
6981
6982
|
try {
|
|
6982
6983
|
if (isBrowser) {
|
|
6983
|
-
window.__reactRouterVersion = "7.0.
|
|
6984
|
+
window.__reactRouterVersion = "7.0.2-pre.0";
|
|
6984
6985
|
}
|
|
6985
6986
|
} catch (e) {
|
|
6986
6987
|
}
|
|
@@ -9563,6 +9564,7 @@ export {
|
|
|
9563
9564
|
Routes,
|
|
9564
9565
|
Await,
|
|
9565
9566
|
createRoutesFromChildren,
|
|
9567
|
+
createRoutesFromElements,
|
|
9566
9568
|
renderMatches,
|
|
9567
9569
|
createSearchParams,
|
|
9568
9570
|
SingleFetchRedirectSymbol,
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as React from 'react';
|
|
2
|
-
import { R as RouterProviderProps$1 } from './fog-of-war-
|
|
2
|
+
import { R as RouterProviderProps$1 } from './fog-of-war-BkI3XFdx.mjs';
|
|
3
3
|
import './route-data-DuV3tXo2.mjs';
|
|
4
4
|
|
|
5
5
|
type RouterProviderProps = Omit<RouterProviderProps$1, "flushSync">;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as React from 'react';
|
|
2
|
-
import { R as RouterProviderProps$1 } from './fog-of-war-
|
|
2
|
+
import { R as RouterProviderProps$1 } from './fog-of-war-DU_DzpDb.js';
|
|
3
3
|
import './route-data-DuV3tXo2.js';
|
|
4
4
|
|
|
5
5
|
type RouterProviderProps = Omit<RouterProviderProps$1, "flushSync">;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* react-router v7.0.
|
|
2
|
+
* react-router v7.0.2-pre.0
|
|
3
3
|
*
|
|
4
4
|
* Copyright (c) Remix Software Inc.
|
|
5
5
|
*
|
|
@@ -25,7 +25,7 @@ import {
|
|
|
25
25
|
matchRoutes,
|
|
26
26
|
shouldHydrateRouteLoader,
|
|
27
27
|
useFogOFWarDiscovery
|
|
28
|
-
} from "./chunk-
|
|
28
|
+
} from "./chunk-2LLEKEVP.mjs";
|
|
29
29
|
|
|
30
30
|
// lib/dom-export/dom-router-provider.tsx
|
|
31
31
|
import * as React from "react";
|
|
@@ -361,6 +361,10 @@ declare function Await<Resolve>({ children, errorElement, resolve, }: AwaitProps
|
|
|
361
361
|
* @category Utils
|
|
362
362
|
*/
|
|
363
363
|
declare function createRoutesFromChildren(children: React.ReactNode, parentPath?: number[]): RouteObject[];
|
|
364
|
+
/**
|
|
365
|
+
* Create route objects from JSX elements instead of arrays of objects
|
|
366
|
+
*/
|
|
367
|
+
declare let createRoutesFromElements: typeof createRoutesFromChildren;
|
|
364
368
|
/**
|
|
365
369
|
* Renders the result of `matchRoutes()` into a React element.
|
|
366
370
|
*
|
|
@@ -1592,4 +1596,4 @@ declare global {
|
|
|
1592
1596
|
declare function getPatchRoutesOnNavigationFunction(manifest: AssetsManifest, routeModules: RouteModules, isSpaMode: boolean, basename: string | undefined): PatchRoutesOnNavigationFunction | undefined;
|
|
1593
1597
|
declare function useFogOFWarDiscovery(router: Router$1, manifest: AssetsManifest, routeModules: RouteModules, isSpaMode: boolean): void;
|
|
1594
1598
|
|
|
1595
|
-
export {
|
|
1599
|
+
export { useFetcher as $, type AssetsManifest as A, type BrowserRouterProps as B, type FetcherWithComponents as C, createBrowserRouter as D, type EntryContext as E, type FutureConfig as F, createHashRouter as G, type HashRouterProps as H, type IndexRouteProps as I, BrowserRouter as J, HashRouter as K, type LayoutRouteProps as L, type MemoryRouterProps as M, type NavigateProps as N, type OutletProps as O, type PathRouteProps as P, Link as Q, type RouterProviderProps as R, type ScrollRestorationProps as S, HistoryRouter as T, NavLink as U, Form as V, ScrollRestoration as W, useLinkClickHandler as X, useSearchParams as Y, useSubmit as Z, useFormAction as _, type Route as a, useFetchers as a0, useBeforeUnload as a1, usePrompt as a2, useViewTransitionState as a3, type FetcherSubmitOptions as a4, type ParamKeyValuePair as a5, type SubmitOptions as a6, type URLSearchParamsInit as a7, type SubmitTarget as a8, createSearchParams as a9, Meta as aa, Links as ab, Scripts as ac, PrefetchPageLinks as ad, type ScriptsProps as ae, mapRouteProperties as af, FrameworkContext as ag, getPatchRoutesOnNavigationFunction as ah, useFogOFWarDiscovery as ai, createClientRoutes as aj, createClientRoutesWithHMRRevalidationOptOut as ak, shouldHydrateRouteLoader as al, useScrollRestoration as am, type AwaitProps as b, type RouteProps as c, type RouterProps as d, type RoutesProps as e, Await as f, MemoryRouter as g, Navigate as h, Outlet as i, Route$1 as j, Router as k, RouterProvider as l, Routes as m, createMemoryRouter as n, createRoutesFromChildren as o, createRoutesFromElements as p, type HistoryRouterProps as q, renderMatches as r, type LinkProps as s, type NavLinkProps as t, type NavLinkRenderProps as u, type FetcherFormProps as v, type FormProps as w, type SetURLSearchParams as x, type SubmitFunction as y, type FetcherSubmitFunction as z };
|
|
@@ -361,6 +361,10 @@ declare function Await<Resolve>({ children, errorElement, resolve, }: AwaitProps
|
|
|
361
361
|
* @category Utils
|
|
362
362
|
*/
|
|
363
363
|
declare function createRoutesFromChildren(children: React.ReactNode, parentPath?: number[]): RouteObject[];
|
|
364
|
+
/**
|
|
365
|
+
* Create route objects from JSX elements instead of arrays of objects
|
|
366
|
+
*/
|
|
367
|
+
declare let createRoutesFromElements: typeof createRoutesFromChildren;
|
|
364
368
|
/**
|
|
365
369
|
* Renders the result of `matchRoutes()` into a React element.
|
|
366
370
|
*
|
|
@@ -1592,4 +1596,4 @@ declare global {
|
|
|
1592
1596
|
declare function getPatchRoutesOnNavigationFunction(manifest: AssetsManifest, routeModules: RouteModules, isSpaMode: boolean, basename: string | undefined): PatchRoutesOnNavigationFunction | undefined;
|
|
1593
1597
|
declare function useFogOFWarDiscovery(router: Router$1, manifest: AssetsManifest, routeModules: RouteModules, isSpaMode: boolean): void;
|
|
1594
1598
|
|
|
1595
|
-
export {
|
|
1599
|
+
export { useFetcher as $, type AssetsManifest as A, type BrowserRouterProps as B, type FetcherWithComponents as C, createBrowserRouter as D, type EntryContext as E, type FutureConfig as F, createHashRouter as G, type HashRouterProps as H, type IndexRouteProps as I, BrowserRouter as J, HashRouter as K, type LayoutRouteProps as L, type MemoryRouterProps as M, type NavigateProps as N, type OutletProps as O, type PathRouteProps as P, Link as Q, type RouterProviderProps as R, type ScrollRestorationProps as S, HistoryRouter as T, NavLink as U, Form as V, ScrollRestoration as W, useLinkClickHandler as X, useSearchParams as Y, useSubmit as Z, useFormAction as _, type Route as a, useFetchers as a0, useBeforeUnload as a1, usePrompt as a2, useViewTransitionState as a3, type FetcherSubmitOptions as a4, type ParamKeyValuePair as a5, type SubmitOptions as a6, type URLSearchParamsInit as a7, type SubmitTarget as a8, createSearchParams as a9, Meta as aa, Links as ab, Scripts as ac, PrefetchPageLinks as ad, type ScriptsProps as ae, mapRouteProperties as af, FrameworkContext as ag, getPatchRoutesOnNavigationFunction as ah, useFogOFWarDiscovery as ai, createClientRoutes as aj, createClientRoutesWithHMRRevalidationOptOut as ak, shouldHydrateRouteLoader as al, useScrollRestoration as am, type AwaitProps as b, type RouteProps as c, type RouterProps as d, type RoutesProps as e, Await as f, MemoryRouter as g, Navigate as h, Outlet as i, Route$1 as j, Router as k, RouterProvider as l, Routes as m, createMemoryRouter as n, createRoutesFromChildren as o, createRoutesFromElements as p, type HistoryRouterProps as q, renderMatches as r, type LinkProps as s, type NavLinkProps as t, type NavLinkRenderProps as u, type FetcherFormProps as v, type FormProps as w, type SetURLSearchParams as x, type SubmitFunction as y, type FetcherSubmitFunction as z };
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { R as RouteModules, a as Router, D as DataStrategyFunction, A as ActionFunction, L as LoaderFunction, C as ClientActionFunction, b as ClientLoaderFunction, c as LinksFunction, M as MetaFunction, d as RouteManifest, e as LoaderFunctionArgs, f as ActionFunctionArgs, T as To, g as RelativeRoutingType, h as Location, i as Action, P as ParamParseKey, j as Path, k as PathPattern, l as PathMatch, N as NavigateOptions, m as Params, n as RouteObject, o as Navigation, p as RevalidationState, U as UIMatch, S as SerializeFrom, B as BlockerFunction, q as Blocker, r as StaticHandlerContext, s as StaticHandler, F as FutureConfig$1, t as CreateStaticHandlerOptions$1, I as InitialEntry, H as HydrationState, u as IndexRouteObject, v as NonIndexRouteObject, w as RouterState } from './route-data-DuV3tXo2.mjs';
|
|
2
2
|
export { ap as ClientActionFunctionArgs, aq as ClientLoaderFunctionArgs, aj as DataRouteMatch, ak as DataRouteObject, Q as DataStrategyFunctionArgs, V as DataStrategyMatch, W as DataStrategyResult, Y as ErrorResponse, y as Fetcher, Z as FormEncType, _ as FormMethod, G as GetScrollPositionFunction, x as GetScrollRestorationKeyFunction, $ as HTMLFormMethod, au as HtmlLinkDescriptor, a9 as IDLE_BLOCKER, a8 as IDLE_FETCHER, a7 as IDLE_NAVIGATION, a0 as LazyRouteFunction, av as LinkDescriptor, ar as MetaArgs, as as MetaDescriptor, z as NavigationStates, al as Navigator, at as PageLinkDescriptor, am as PatchRoutesOnNavigationFunction, an as PatchRoutesOnNavigationFunctionArgs, a1 as PathParam, a2 as RedirectFunction, ao as RouteMatch, O as RouterFetchOptions, E as RouterInit, K as RouterNavigateOptions, J as RouterSubscriber, a3 as ShouldRevalidateFunction, a4 as ShouldRevalidateFunctionArgs, aA as UNSAFE_DataRouterContext, aB as UNSAFE_DataRouterStateContext, X as UNSAFE_DataWithResponseInit, az as UNSAFE_ErrorResponseImpl, aC as UNSAFE_FetchersContext, aD as UNSAFE_LocationContext, aE as UNSAFE_NavigationContext, aF as UNSAFE_RouteContext, aG as UNSAFE_ViewTransitionContext, aw as UNSAFE_createBrowserHistory, ay as UNSAFE_createRouter, ax as UNSAFE_invariant, a5 as createPath, aa as data, ab as generatePath, ac as isRouteErrorResponse, ad as matchPath, ae as matchRoutes, a6 as parsePath, af as redirect, ag as redirectDocument, ah as replace, ai as resolvePath } from './route-data-DuV3tXo2.mjs';
|
|
3
|
-
import { A as AssetsManifest, a as Route, F as FutureConfig, E as EntryContext } from './fog-of-war-
|
|
4
|
-
export { f as Await, b as AwaitProps,
|
|
3
|
+
import { A as AssetsManifest, a as Route, F as FutureConfig, E as EntryContext } from './fog-of-war-BkI3XFdx.mjs';
|
|
4
|
+
export { f as Await, b as AwaitProps, J as BrowserRouter, B as BrowserRouterProps, v as FetcherFormProps, z as FetcherSubmitFunction, a4 as FetcherSubmitOptions, C as FetcherWithComponents, V as Form, w as FormProps, K as HashRouter, H as HashRouterProps, q as HistoryRouterProps, I as IndexRouteProps, L as LayoutRouteProps, Q as Link, s as LinkProps, ab as Links, g as MemoryRouter, M as MemoryRouterProps, aa as Meta, U as NavLink, t as NavLinkProps, u as NavLinkRenderProps, h as Navigate, N as NavigateProps, i as Outlet, O as OutletProps, a5 as ParamKeyValuePair, P as PathRouteProps, ad as PrefetchPageLinks, j as Route, c as RouteProps, k as Router, d as RouterProps, l as RouterProvider, R as RouterProviderProps, m as Routes, e as RoutesProps, ac as Scripts, ae as ScriptsProps, W as ScrollRestoration, S as ScrollRestorationProps, x as SetURLSearchParams, y as SubmitFunction, a6 as SubmitOptions, a8 as SubmitTarget, ag as UNSAFE_FrameworkContext, aj as UNSAFE_createClientRoutes, ak as UNSAFE_createClientRoutesWithHMRRevalidationOptOut, ah as UNSAFE_getPatchRoutesOnNavigationFunction, af as UNSAFE_mapRouteProperties, al as UNSAFE_shouldHydrateRouteLoader, ai as UNSAFE_useFogOFWarDiscovery, am as UNSAFE_useScrollRestoration, a7 as URLSearchParamsInit, D as createBrowserRouter, G as createHashRouter, n as createMemoryRouter, o as createRoutesFromChildren, p as createRoutesFromElements, a9 as createSearchParams, r as renderMatches, T as unstable_HistoryRouter, a2 as unstable_usePrompt, a1 as useBeforeUnload, $ as useFetcher, a0 as useFetchers, _ as useFormAction, X as useLinkClickHandler, Y as useSearchParams, Z as useSubmit, a3 as useViewTransitionState } from './fog-of-war-BkI3XFdx.mjs';
|
|
5
5
|
import * as React from 'react';
|
|
6
6
|
import { ReactElement } from 'react';
|
|
7
7
|
import { ParseOptions, SerializeOptions } from 'cookie';
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { R as RouteModules, a as Router, D as DataStrategyFunction, A as ActionFunction, L as LoaderFunction, C as ClientActionFunction, b as ClientLoaderFunction, c as LinksFunction, M as MetaFunction, d as RouteManifest, e as LoaderFunctionArgs, f as ActionFunctionArgs, T as To, g as RelativeRoutingType, h as Location, i as Action, P as ParamParseKey, j as Path, k as PathPattern, l as PathMatch, N as NavigateOptions, m as Params, n as RouteObject, o as Navigation, p as RevalidationState, U as UIMatch, S as SerializeFrom, B as BlockerFunction, q as Blocker, r as StaticHandlerContext, s as StaticHandler, F as FutureConfig$1, t as CreateStaticHandlerOptions$1, I as InitialEntry, H as HydrationState, u as IndexRouteObject, v as NonIndexRouteObject, w as RouterState } from './route-data-DuV3tXo2.js';
|
|
2
2
|
export { ap as ClientActionFunctionArgs, aq as ClientLoaderFunctionArgs, aj as DataRouteMatch, ak as DataRouteObject, Q as DataStrategyFunctionArgs, V as DataStrategyMatch, W as DataStrategyResult, Y as ErrorResponse, y as Fetcher, Z as FormEncType, _ as FormMethod, G as GetScrollPositionFunction, x as GetScrollRestorationKeyFunction, $ as HTMLFormMethod, au as HtmlLinkDescriptor, a9 as IDLE_BLOCKER, a8 as IDLE_FETCHER, a7 as IDLE_NAVIGATION, a0 as LazyRouteFunction, av as LinkDescriptor, ar as MetaArgs, as as MetaDescriptor, z as NavigationStates, al as Navigator, at as PageLinkDescriptor, am as PatchRoutesOnNavigationFunction, an as PatchRoutesOnNavigationFunctionArgs, a1 as PathParam, a2 as RedirectFunction, ao as RouteMatch, O as RouterFetchOptions, E as RouterInit, K as RouterNavigateOptions, J as RouterSubscriber, a3 as ShouldRevalidateFunction, a4 as ShouldRevalidateFunctionArgs, aA as UNSAFE_DataRouterContext, aB as UNSAFE_DataRouterStateContext, X as UNSAFE_DataWithResponseInit, az as UNSAFE_ErrorResponseImpl, aC as UNSAFE_FetchersContext, aD as UNSAFE_LocationContext, aE as UNSAFE_NavigationContext, aF as UNSAFE_RouteContext, aG as UNSAFE_ViewTransitionContext, aw as UNSAFE_createBrowserHistory, ay as UNSAFE_createRouter, ax as UNSAFE_invariant, a5 as createPath, aa as data, ab as generatePath, ac as isRouteErrorResponse, ad as matchPath, ae as matchRoutes, a6 as parsePath, af as redirect, ag as redirectDocument, ah as replace, ai as resolvePath } from './route-data-DuV3tXo2.js';
|
|
3
|
-
import { A as AssetsManifest, a as Route, F as FutureConfig, E as EntryContext } from './fog-of-war-
|
|
4
|
-
export { f as Await, b as AwaitProps,
|
|
3
|
+
import { A as AssetsManifest, a as Route, F as FutureConfig, E as EntryContext } from './fog-of-war-DU_DzpDb.js';
|
|
4
|
+
export { f as Await, b as AwaitProps, J as BrowserRouter, B as BrowserRouterProps, v as FetcherFormProps, z as FetcherSubmitFunction, a4 as FetcherSubmitOptions, C as FetcherWithComponents, V as Form, w as FormProps, K as HashRouter, H as HashRouterProps, q as HistoryRouterProps, I as IndexRouteProps, L as LayoutRouteProps, Q as Link, s as LinkProps, ab as Links, g as MemoryRouter, M as MemoryRouterProps, aa as Meta, U as NavLink, t as NavLinkProps, u as NavLinkRenderProps, h as Navigate, N as NavigateProps, i as Outlet, O as OutletProps, a5 as ParamKeyValuePair, P as PathRouteProps, ad as PrefetchPageLinks, j as Route, c as RouteProps, k as Router, d as RouterProps, l as RouterProvider, R as RouterProviderProps, m as Routes, e as RoutesProps, ac as Scripts, ae as ScriptsProps, W as ScrollRestoration, S as ScrollRestorationProps, x as SetURLSearchParams, y as SubmitFunction, a6 as SubmitOptions, a8 as SubmitTarget, ag as UNSAFE_FrameworkContext, aj as UNSAFE_createClientRoutes, ak as UNSAFE_createClientRoutesWithHMRRevalidationOptOut, ah as UNSAFE_getPatchRoutesOnNavigationFunction, af as UNSAFE_mapRouteProperties, al as UNSAFE_shouldHydrateRouteLoader, ai as UNSAFE_useFogOFWarDiscovery, am as UNSAFE_useScrollRestoration, a7 as URLSearchParamsInit, D as createBrowserRouter, G as createHashRouter, n as createMemoryRouter, o as createRoutesFromChildren, p as createRoutesFromElements, a9 as createSearchParams, r as renderMatches, T as unstable_HistoryRouter, a2 as unstable_usePrompt, a1 as useBeforeUnload, $ as useFetcher, a0 as useFetchers, _ as useFormAction, X as useLinkClickHandler, Y as useSearchParams, Z as useSubmit, a3 as useViewTransitionState } from './fog-of-war-DU_DzpDb.js';
|
|
5
5
|
import * as React from 'react';
|
|
6
6
|
import { ReactElement } from 'react';
|
|
7
7
|
import { ParseOptions, SerializeOptions } from 'cookie';
|
package/dist/production/index.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* react-router v7.0.
|
|
2
|
+
* react-router v7.0.2-pre.0
|
|
3
3
|
*
|
|
4
4
|
* Copyright (c) Remix Software Inc.
|
|
5
5
|
*
|
|
@@ -99,7 +99,7 @@ __export(react_router_exports, {
|
|
|
99
99
|
createPath: () => createPath,
|
|
100
100
|
createRequestHandler: () => createRequestHandler,
|
|
101
101
|
createRoutesFromChildren: () => createRoutesFromChildren,
|
|
102
|
-
createRoutesFromElements: () =>
|
|
102
|
+
createRoutesFromElements: () => createRoutesFromElements,
|
|
103
103
|
createRoutesStub: () => createRoutesStub,
|
|
104
104
|
createSearchParams: () => createSearchParams,
|
|
105
105
|
createSession: () => createSession,
|
|
@@ -5307,6 +5307,7 @@ function createRoutesFromChildren(children, parentPath = []) {
|
|
|
5307
5307
|
});
|
|
5308
5308
|
return routes;
|
|
5309
5309
|
}
|
|
5310
|
+
var createRoutesFromElements = createRoutesFromChildren;
|
|
5310
5311
|
function renderMatches(matches) {
|
|
5311
5312
|
return _renderMatches(matches);
|
|
5312
5313
|
}
|
|
@@ -7125,7 +7126,7 @@ function mergeRefs(...refs) {
|
|
|
7125
7126
|
var isBrowser = typeof window !== "undefined" && typeof window.document !== "undefined" && typeof window.document.createElement !== "undefined";
|
|
7126
7127
|
try {
|
|
7127
7128
|
if (isBrowser) {
|
|
7128
|
-
window.__reactRouterVersion = "7.0.
|
|
7129
|
+
window.__reactRouterVersion = "7.0.2-pre.0";
|
|
7129
7130
|
}
|
|
7130
7131
|
} catch (e) {
|
|
7131
7132
|
}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* react-router v7.0.
|
|
2
|
+
* react-router v7.0.2-pre.0
|
|
3
3
|
*
|
|
4
4
|
* Copyright (c) Remix Software Inc.
|
|
5
5
|
*
|
|
@@ -60,6 +60,7 @@ import {
|
|
|
60
60
|
createRequestHandler,
|
|
61
61
|
createRouter,
|
|
62
62
|
createRoutesFromChildren,
|
|
63
|
+
createRoutesFromElements,
|
|
63
64
|
createRoutesStub,
|
|
64
65
|
createSearchParams,
|
|
65
66
|
createSession,
|
|
@@ -119,7 +120,7 @@ import {
|
|
|
119
120
|
useSearchParams,
|
|
120
121
|
useSubmit,
|
|
121
122
|
useViewTransitionState
|
|
122
|
-
} from "./chunk-
|
|
123
|
+
} from "./chunk-2LLEKEVP.mjs";
|
|
123
124
|
export {
|
|
124
125
|
Await,
|
|
125
126
|
BrowserRouter,
|
|
@@ -180,7 +181,7 @@ export {
|
|
|
180
181
|
createPath,
|
|
181
182
|
createRequestHandler,
|
|
182
183
|
createRoutesFromChildren,
|
|
183
|
-
|
|
184
|
+
createRoutesFromElements,
|
|
184
185
|
createRoutesStub,
|
|
185
186
|
createSearchParams,
|
|
186
187
|
createSession,
|
|
@@ -34,7 +34,7 @@ type MetaMatch<T extends RouteInfo> = Pretty<Pick<T, "id" | "params"> & {
|
|
|
34
34
|
handle?: unknown;
|
|
35
35
|
error?: unknown;
|
|
36
36
|
}>;
|
|
37
|
-
type MetaMatches<T extends RouteInfo[]> = T extends [infer F extends RouteInfo, ...infer R extends RouteInfo[]] ? [MetaMatch<F>, ...MetaMatches<R>] : [];
|
|
37
|
+
type MetaMatches<T extends RouteInfo[]> = T extends [infer F extends RouteInfo, ...infer R extends RouteInfo[]] ? [MetaMatch<F>, ...MetaMatches<R>] : MetaMatch<RouteInfo>[];
|
|
38
38
|
type CreateMetaArgs<T extends RouteInfo> = {
|
|
39
39
|
location: Location;
|
|
40
40
|
params: T["params"];
|
|
@@ -92,7 +92,7 @@ type Match<T extends RouteInfo> = Pretty<Pick<T, "id" | "params"> & {
|
|
|
92
92
|
data: T["loaderData"];
|
|
93
93
|
handle: unknown;
|
|
94
94
|
}>;
|
|
95
|
-
type Matches<T extends RouteInfo[]> = T extends [infer F extends RouteInfo, ...infer R extends RouteInfo[]] ? [Match<F>, ...Matches<R>] : [];
|
|
95
|
+
type Matches<T extends RouteInfo[]> = T extends [infer F extends RouteInfo, ...infer R extends RouteInfo[]] ? [Match<F>, ...Matches<R>] : Match<RouteInfo>[];
|
|
96
96
|
type CreateComponentProps<T extends RouteInfo> = {
|
|
97
97
|
params: T["params"];
|
|
98
98
|
loaderData: T["loaderData"];
|
|
@@ -34,7 +34,7 @@ type MetaMatch<T extends RouteInfo> = Pretty<Pick<T, "id" | "params"> & {
|
|
|
34
34
|
handle?: unknown;
|
|
35
35
|
error?: unknown;
|
|
36
36
|
}>;
|
|
37
|
-
type MetaMatches<T extends RouteInfo[]> = T extends [infer F extends RouteInfo, ...infer R extends RouteInfo[]] ? [MetaMatch<F>, ...MetaMatches<R>] : [];
|
|
37
|
+
type MetaMatches<T extends RouteInfo[]> = T extends [infer F extends RouteInfo, ...infer R extends RouteInfo[]] ? [MetaMatch<F>, ...MetaMatches<R>] : MetaMatch<RouteInfo>[];
|
|
38
38
|
type CreateMetaArgs<T extends RouteInfo> = {
|
|
39
39
|
location: Location;
|
|
40
40
|
params: T["params"];
|
|
@@ -92,7 +92,7 @@ type Match<T extends RouteInfo> = Pretty<Pick<T, "id" | "params"> & {
|
|
|
92
92
|
data: T["loaderData"];
|
|
93
93
|
handle: unknown;
|
|
94
94
|
}>;
|
|
95
|
-
type Matches<T extends RouteInfo[]> = T extends [infer F extends RouteInfo, ...infer R extends RouteInfo[]] ? [Match<F>, ...Matches<R>] : [];
|
|
95
|
+
type Matches<T extends RouteInfo[]> = T extends [infer F extends RouteInfo, ...infer R extends RouteInfo[]] ? [Match<F>, ...Matches<R>] : Match<RouteInfo>[];
|
|
96
96
|
type CreateComponentProps<T extends RouteInfo> = {
|
|
97
97
|
params: T["params"];
|
|
98
98
|
loaderData: T["loaderData"];
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "react-router",
|
|
3
|
-
"version": "7.0.
|
|
3
|
+
"version": "7.0.2-pre.0",
|
|
4
4
|
"description": "Declarative routing for React",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"react",
|
|
@@ -18,58 +18,46 @@
|
|
|
18
18
|
"license": "MIT",
|
|
19
19
|
"author": "Remix Software <hello@remix.run>",
|
|
20
20
|
"sideEffects": false,
|
|
21
|
-
"types": "./dist/
|
|
22
|
-
"main": "./dist/
|
|
23
|
-
"module": "./dist/
|
|
21
|
+
"types": "./dist/development/index.d.ts",
|
|
22
|
+
"main": "./dist/development/index.js",
|
|
23
|
+
"module": "./dist/development/index.mjs",
|
|
24
24
|
"exports": {
|
|
25
25
|
".": {
|
|
26
26
|
"node": {
|
|
27
|
-
"types": "./dist/
|
|
28
|
-
"
|
|
29
|
-
|
|
30
|
-
"default": "./dist/development/index.js"
|
|
31
|
-
},
|
|
32
|
-
"module-sync": "./dist/production/index.mjs",
|
|
33
|
-
"default": "./dist/production/index.js"
|
|
27
|
+
"types": "./dist/development/index.d.ts",
|
|
28
|
+
"module-sync": "./dist/development/index.mjs",
|
|
29
|
+
"default": "./dist/development/index.js"
|
|
34
30
|
},
|
|
35
31
|
"import": {
|
|
36
|
-
"types": "./dist/
|
|
37
|
-
"
|
|
38
|
-
"default": "./dist/production/index.mjs"
|
|
32
|
+
"types": "./dist/development/index.d.mts",
|
|
33
|
+
"default": "./dist/development/index.mjs"
|
|
39
34
|
},
|
|
40
35
|
"default": {
|
|
41
|
-
"types": "./dist/
|
|
42
|
-
"
|
|
43
|
-
"default": "./dist/production/index.js"
|
|
36
|
+
"types": "./dist/development/index.d.ts",
|
|
37
|
+
"default": "./dist/development/index.js"
|
|
44
38
|
}
|
|
45
39
|
},
|
|
46
40
|
"./route-module": {
|
|
47
41
|
"import": {
|
|
48
|
-
"types": "./dist/
|
|
42
|
+
"types": "./dist/development/lib/types/route-module.d.mts"
|
|
49
43
|
},
|
|
50
44
|
"default": {
|
|
51
|
-
"types": "./dist/
|
|
45
|
+
"types": "./dist/development/lib/types/route-module.d.ts"
|
|
52
46
|
}
|
|
53
47
|
},
|
|
54
48
|
"./dom": {
|
|
55
49
|
"node": {
|
|
56
|
-
"types": "./dist/
|
|
57
|
-
"
|
|
58
|
-
|
|
59
|
-
"default": "./dist/development/dom-export.js"
|
|
60
|
-
},
|
|
61
|
-
"module-sync": "./dist/production/dom-export.mjs",
|
|
62
|
-
"default": "./dist/production/dom-export.js"
|
|
50
|
+
"types": "./dist/development/dom-export.d.ts",
|
|
51
|
+
"module-sync": "./dist/development/dom-export.mjs",
|
|
52
|
+
"default": "./dist/development/dom-export.js"
|
|
63
53
|
},
|
|
64
54
|
"import": {
|
|
65
|
-
"types": "./dist/
|
|
66
|
-
"
|
|
67
|
-
"default": "./dist/production/dom-export.mjs"
|
|
55
|
+
"types": "./dist/development/dom-export.d.mts",
|
|
56
|
+
"default": "./dist/development/dom-export.mjs"
|
|
68
57
|
},
|
|
69
58
|
"default": {
|
|
70
|
-
"types": "./dist/
|
|
71
|
-
"
|
|
72
|
-
"default": "./dist/production/dom-export.js"
|
|
59
|
+
"types": "./dist/development/dom-export.d.ts",
|
|
60
|
+
"default": "./dist/development/dom-export.js"
|
|
73
61
|
}
|
|
74
62
|
},
|
|
75
63
|
"./package.json": "./package.json"
|