react-router 7.5.3 → 7.6.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 +57 -0
- package/dist/development/{chunk-AYJ5UCUI.mjs → chunk-RXI6MVY4.mjs} +903 -139
- package/dist/development/dom-export.d.mts +2 -2
- package/dist/development/dom-export.d.ts +1 -2
- package/dist/development/dom-export.js +34 -6102
- package/dist/development/dom-export.mjs +6 -3
- package/dist/development/index.d.mts +33 -67
- package/dist/development/index.d.ts +1893 -197
- package/dist/development/index.js +905 -141
- package/dist/development/index.mjs +2 -2
- package/dist/development/lib/types/route-module.d.mts +1 -2
- package/dist/development/lib/types/route-module.d.ts +1 -2
- package/dist/development/lib/types/route-module.js +1 -1
- package/dist/development/lib/types/route-module.mjs +1 -1
- package/dist/{production/fog-of-war-BLArG-qZ.d.ts → development/lib-CCSAGgcP.d.mts} +57 -12
- package/dist/{production/route-data-C12CLHiN.d.mts → development/route-data-B9_30zbP.d.ts} +11 -1
- package/dist/development/{route-data-C12CLHiN.d.mts → route-data-C6QaL0wu.d.mts} +11 -1
- package/dist/production/{chunk-KKWFQRUV.mjs → chunk-TW7XT4WH.mjs} +903 -139
- package/dist/production/dom-export.d.mts +2 -2
- package/dist/production/dom-export.d.ts +1 -2
- package/dist/production/dom-export.js +34 -6102
- package/dist/production/dom-export.mjs +6 -3
- package/dist/production/index.d.mts +33 -67
- package/dist/production/index.d.ts +1893 -197
- package/dist/production/index.js +905 -141
- package/dist/production/index.mjs +2 -2
- package/dist/production/lib/types/route-module.d.mts +1 -2
- package/dist/production/lib/types/route-module.d.ts +1 -2
- package/dist/production/lib/types/route-module.js +1 -1
- package/dist/production/lib/types/route-module.mjs +1 -1
- package/dist/{development/fog-of-war-BLArG-qZ.d.ts → production/lib-CCSAGgcP.d.mts} +57 -12
- package/dist/{development/route-data-C12CLHiN.d.ts → production/route-data-B9_30zbP.d.ts} +11 -1
- package/dist/production/{route-data-C12CLHiN.d.ts → route-data-C6QaL0wu.d.mts} +11 -1
- package/package.json +5 -3
- package/dist/development/data-CQbyyGzl.d.mts +0 -11
- package/dist/development/data-CQbyyGzl.d.ts +0 -11
- package/dist/development/fog-of-war-D2zsXvum.d.mts +0 -1691
- package/dist/production/data-CQbyyGzl.d.mts +0 -11
- package/dist/production/data-CQbyyGzl.d.ts +0 -11
- package/dist/production/fog-of-war-D2zsXvum.d.mts +0 -1691
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* react-router v7.
|
|
2
|
+
* react-router v7.6.0-pre.0
|
|
3
3
|
*
|
|
4
4
|
* Copyright (c) Remix Software Inc.
|
|
5
5
|
*
|
|
@@ -25,7 +25,7 @@ import {
|
|
|
25
25
|
invariant,
|
|
26
26
|
mapRouteProperties,
|
|
27
27
|
useFogOFWarDiscovery
|
|
28
|
-
} from "./chunk-
|
|
28
|
+
} from "./chunk-RXI6MVY4.mjs";
|
|
29
29
|
|
|
30
30
|
// lib/dom-export/dom-router-provider.tsx
|
|
31
31
|
import * as React from "react";
|
|
@@ -145,6 +145,7 @@ function createHydratedRouter({
|
|
|
145
145
|
ssrInfo.manifest,
|
|
146
146
|
ssrInfo.routeModules,
|
|
147
147
|
ssrInfo.context.ssr,
|
|
148
|
+
ssrInfo.context.routeDiscovery,
|
|
148
149
|
ssrInfo.context.isSpaMode,
|
|
149
150
|
ssrInfo.context.basename
|
|
150
151
|
)
|
|
@@ -195,6 +196,7 @@ function HydratedRouter(props) {
|
|
|
195
196
|
ssrInfo.manifest,
|
|
196
197
|
ssrInfo.routeModules,
|
|
197
198
|
ssrInfo.context.ssr,
|
|
199
|
+
ssrInfo.context.routeDiscovery,
|
|
198
200
|
ssrInfo.context.isSpaMode
|
|
199
201
|
);
|
|
200
202
|
return (
|
|
@@ -209,7 +211,8 @@ function HydratedRouter(props) {
|
|
|
209
211
|
future: ssrInfo.context.future,
|
|
210
212
|
criticalCss,
|
|
211
213
|
ssr: ssrInfo.context.ssr,
|
|
212
|
-
isSpaMode: ssrInfo.context.isSpaMode
|
|
214
|
+
isSpaMode: ssrInfo.context.isSpaMode,
|
|
215
|
+
routeDiscovery: ssrInfo.context.routeDiscovery
|
|
213
216
|
}
|
|
214
217
|
},
|
|
215
218
|
/* @__PURE__ */ React2.createElement(RemixErrorBoundary, { location }, /* @__PURE__ */ React2.createElement(RouterProvider2, { router }))
|
|
@@ -1,12 +1,11 @@
|
|
|
1
|
-
import { a as Router, b as RouteModules, D as DataStrategyFunction,
|
|
2
|
-
export {
|
|
3
|
-
import { A as AssetsManifest,
|
|
4
|
-
export {
|
|
1
|
+
import { a as Router, b as RouteModules, D as DataStrategyFunction, T as To, c as RelativeRoutingType, L as Location, A as Action, P as ParamParseKey, d as Path, e as PathPattern, f as PathMatch, N as NavigateOptions, g as Params$1, h as RouteObject, i as Navigation, U as UIMatch, S as SerializeFrom, B as BlockerFunction, j as Blocker, k as StaticHandlerContext, l as StaticHandler, F as FutureConfig, C as CreateStaticHandlerOptions$1, I as InitialEntry, H as HydrationState, u as unstable_InitialContext, m as IndexRouteObject, n as NonIndexRouteObject, o as LoaderFunction, p as ActionFunction, M as MetaFunction, q as LinksFunction, r as MiddlewareEnabled, s as AppLoadContext, E as Equal, t as RouterState, v as PatchRoutesOnNavigationFunction, w as DataRouteObject, x as ClientLoaderFunction } from './route-data-C6QaL0wu.mjs';
|
|
2
|
+
export { W as ActionFunctionArgs, av as ClientActionFunction, aw as ClientActionFunctionArgs, ax as ClientLoaderFunctionArgs, ar as DataRouteMatch, X as DataStrategyFunctionArgs, Y as DataStrategyMatch, Z as DataStrategyResult, $ as ErrorResponse, z as Fetcher, a0 as FormEncType, a1 as FormMethod, aF as Future, G as GetScrollPositionFunction, y as GetScrollRestorationKeyFunction, a2 as HTMLFormMethod, ay as HeadersArgs, az as HeadersFunction, aD as HtmlLinkDescriptor, ah as IDLE_BLOCKER, ag as IDLE_FETCHER, af as IDLE_NAVIGATION, a3 as LazyRouteFunction, aE as LinkDescriptor, a4 as LoaderFunctionArgs, aA as MetaArgs, aB as MetaDescriptor, J as NavigationStates, as as Navigator, aC as PageLinkDescriptor, at as PatchRoutesOnNavigationFunctionArgs, a6 as PathParam, a7 as RedirectFunction, V as RevalidationState, au as RouteMatch, Q as RouterFetchOptions, R as RouterInit, O as RouterNavigateOptions, K as RouterSubscriber, a9 as ShouldRevalidateFunction, aa as ShouldRevalidateFunctionArgs, aL as UNSAFE_DataRouterContext, aM as UNSAFE_DataRouterStateContext, _ as UNSAFE_DataWithResponseInit, aK as UNSAFE_ErrorResponseImpl, aN as UNSAFE_FetchersContext, aO as UNSAFE_LocationContext, aP as UNSAFE_NavigationContext, aQ as UNSAFE_RouteContext, aR as UNSAFE_ViewTransitionContext, aH as UNSAFE_createBrowserHistory, aJ as UNSAFE_createRouter, aI as UNSAFE_invariant, ad as createPath, ai as data, aj as generatePath, ak as isRouteErrorResponse, al as matchPath, am as matchRoutes, ae as parsePath, an as redirect, ao as redirectDocument, ap as replace, aq as resolvePath, a5 as unstable_MiddlewareFunction, a8 as unstable_RouterContext, ac as unstable_RouterContextProvider, aG as unstable_SerializesTo, ab as unstable_createContext } from './route-data-C6QaL0wu.mjs';
|
|
3
|
+
import { A as AssetsManifest, E as EntryContext, F as FutureConfig$1, S as ServerBuild } from './lib-CCSAGgcP.mjs';
|
|
4
|
+
export { f as Await, a as AwaitProps, Q as BrowserRouter, B as BrowserRouterProps, D as DOMRouterOpts, v as FetcherFormProps, C as FetcherSubmitFunction, a6 as FetcherSubmitOptions, G as FetcherWithComponents, X as Form, w as FormProps, ah as HandleDataRequestFunction, ai as HandleDocumentRequestFunction, aj as HandleErrorFunction, T as HashRouter, H as HashRouterProps, q as HistoryRouterProps, I as IndexRouteProps, L as LayoutRouteProps, U as Link, s as LinkProps, ad as Links, g as MemoryRouter, M as MemoryRouterOpts, b as MemoryRouterProps, ac as Meta, W as NavLink, t as NavLinkProps, u as NavLinkRenderProps, h as Navigate, N as NavigateProps, i as Outlet, O as OutletProps, a7 as ParamKeyValuePair, P as PathRouteProps, af 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, ae as Scripts, ag as ScriptsProps, Y as ScrollRestoration, x as ScrollRestorationProps, ak as ServerEntryModule, y as SetURLSearchParams, z as SubmitFunction, a8 as SubmitOptions, aa as SubmitTarget, an as UNSAFE_FrameworkContext, ao as UNSAFE_createClientRoutes, ap as UNSAFE_createClientRoutesWithHMRRevalidationOptOut, al as UNSAFE_hydrationRouteProperties, am as UNSAFE_mapRouteProperties, aq as UNSAFE_shouldHydrateRouteLoader, ar as UNSAFE_useScrollRestoration, a9 as URLSearchParamsInit, J as createBrowserRouter, K as createHashRouter, n as createMemoryRouter, o as createRoutesFromChildren, p as createRoutesFromElements, ab as createSearchParams, r as renderMatches, V as unstable_HistoryRouter, a4 as unstable_usePrompt, a3 as useBeforeUnload, a1 as useFetcher, a2 as useFetchers, a0 as useFormAction, Z as useLinkClickHandler, _ as useSearchParams, $ as useSubmit, a5 as useViewTransitionState } from './lib-CCSAGgcP.mjs';
|
|
5
5
|
import * as React from 'react';
|
|
6
6
|
import { ReactElement } from 'react';
|
|
7
7
|
import { ParseOptions, SerializeOptions } from 'cookie';
|
|
8
8
|
export { ParseOptions as CookieParseOptions, SerializeOptions as CookieSerializeOptions } from 'cookie';
|
|
9
|
-
import { A as AppLoadContext } from './data-CQbyyGzl.mjs';
|
|
10
9
|
|
|
11
10
|
declare const SingleFetchRedirectSymbol: unique symbol;
|
|
12
11
|
declare function getTurboStreamSingleFetchDataStrategy(getRouter: () => Router, manifest: AssetsManifest, routeModules: RouteModules, ssr: boolean, basename: string | undefined): DataStrategyFunction;
|
|
@@ -24,56 +23,6 @@ declare enum ServerMode {
|
|
|
24
23
|
Test = "test"
|
|
25
24
|
}
|
|
26
25
|
|
|
27
|
-
type ServerRouteManifest = RouteManifest<Omit<ServerRoute, "children">>;
|
|
28
|
-
interface ServerRoute extends Route {
|
|
29
|
-
children: ServerRoute[];
|
|
30
|
-
module: ServerRouteModule;
|
|
31
|
-
}
|
|
32
|
-
|
|
33
|
-
type OptionalCriticalCss = CriticalCss | undefined;
|
|
34
|
-
/**
|
|
35
|
-
* The output of the compiler for the server build.
|
|
36
|
-
*/
|
|
37
|
-
interface ServerBuild {
|
|
38
|
-
entry: {
|
|
39
|
-
module: ServerEntryModule;
|
|
40
|
-
};
|
|
41
|
-
routes: ServerRouteManifest;
|
|
42
|
-
assets: AssetsManifest;
|
|
43
|
-
basename?: string;
|
|
44
|
-
publicPath: string;
|
|
45
|
-
assetsBuildDirectory: string;
|
|
46
|
-
future: FutureConfig;
|
|
47
|
-
ssr: boolean;
|
|
48
|
-
unstable_getCriticalCss?: (args: {
|
|
49
|
-
pathname: string;
|
|
50
|
-
}) => OptionalCriticalCss | Promise<OptionalCriticalCss>;
|
|
51
|
-
/**
|
|
52
|
-
* @deprecated This is now done via a custom header during prerendering
|
|
53
|
-
*/
|
|
54
|
-
isSpaMode: boolean;
|
|
55
|
-
prerender: string[];
|
|
56
|
-
}
|
|
57
|
-
interface HandleDocumentRequestFunction {
|
|
58
|
-
(request: Request, responseStatusCode: number, responseHeaders: Headers, context: EntryContext, loadContext: MiddlewareEnabled extends true ? unstable_RouterContextProvider : AppLoadContext): Promise<Response> | Response;
|
|
59
|
-
}
|
|
60
|
-
interface HandleDataRequestFunction {
|
|
61
|
-
(response: Response, args: LoaderFunctionArgs | ActionFunctionArgs): Promise<Response> | Response;
|
|
62
|
-
}
|
|
63
|
-
interface HandleErrorFunction {
|
|
64
|
-
(error: unknown, args: LoaderFunctionArgs | ActionFunctionArgs): void;
|
|
65
|
-
}
|
|
66
|
-
/**
|
|
67
|
-
* A module that serves as the entry point for a Remix app during server
|
|
68
|
-
* rendering.
|
|
69
|
-
*/
|
|
70
|
-
interface ServerEntryModule {
|
|
71
|
-
default: HandleDocumentRequestFunction;
|
|
72
|
-
handleDataRequest?: HandleDataRequestFunction;
|
|
73
|
-
handleError?: HandleErrorFunction;
|
|
74
|
-
streamTimeout?: number;
|
|
75
|
-
}
|
|
76
|
-
|
|
77
26
|
/**
|
|
78
27
|
Resolves a URL against the current location.
|
|
79
28
|
|
|
@@ -294,8 +243,8 @@ declare function useNavigation(): Navigation;
|
|
|
294
243
|
@category Hooks
|
|
295
244
|
*/
|
|
296
245
|
declare function useRevalidator(): {
|
|
297
|
-
revalidate()
|
|
298
|
-
state:
|
|
246
|
+
revalidate: () => Promise<void>;
|
|
247
|
+
state: Router["state"]["revalidation"];
|
|
299
248
|
};
|
|
300
249
|
/**
|
|
301
250
|
* Returns the active route matches, useful for accessing loaderData for
|
|
@@ -475,7 +424,7 @@ declare function createStaticHandler(routes: RouteObject[], opts?: CreateStaticH
|
|
|
475
424
|
* @category Data Routers
|
|
476
425
|
*/
|
|
477
426
|
declare function createStaticRouter(routes: RouteObject[], context: StaticHandlerContext, opts?: {
|
|
478
|
-
future?: Partial<FutureConfig
|
|
427
|
+
future?: Partial<FutureConfig>;
|
|
479
428
|
}): Router;
|
|
480
429
|
|
|
481
430
|
interface ServerRouterProps {
|
|
@@ -492,19 +441,33 @@ interface ServerRouterProps {
|
|
|
492
441
|
*/
|
|
493
442
|
declare function ServerRouter({ context, url, nonce, }: ServerRouterProps): ReactElement;
|
|
494
443
|
|
|
495
|
-
interface
|
|
444
|
+
interface StubRouteExtensions {
|
|
445
|
+
Component?: React.ComponentType<{
|
|
446
|
+
params: ReturnType<typeof useParams>;
|
|
447
|
+
loaderData: ReturnType<typeof useLoaderData>;
|
|
448
|
+
actionData: ReturnType<typeof useActionData>;
|
|
449
|
+
matches: ReturnType<typeof useMatches>;
|
|
450
|
+
}>;
|
|
451
|
+
HydrateFallback?: React.ComponentType<{
|
|
452
|
+
params: ReturnType<typeof useParams>;
|
|
453
|
+
loaderData: ReturnType<typeof useLoaderData>;
|
|
454
|
+
actionData: ReturnType<typeof useActionData>;
|
|
455
|
+
}>;
|
|
456
|
+
ErrorBoundary?: React.ComponentType<{
|
|
457
|
+
params: ReturnType<typeof useParams>;
|
|
458
|
+
loaderData: ReturnType<typeof useLoaderData>;
|
|
459
|
+
actionData: ReturnType<typeof useActionData>;
|
|
460
|
+
error: ReturnType<typeof useRouteError>;
|
|
461
|
+
}>;
|
|
496
462
|
loader?: LoaderFunction;
|
|
497
463
|
action?: ActionFunction;
|
|
498
464
|
children?: StubRouteObject[];
|
|
499
465
|
meta?: MetaFunction;
|
|
500
466
|
links?: LinksFunction;
|
|
501
467
|
}
|
|
502
|
-
interface
|
|
503
|
-
|
|
504
|
-
|
|
505
|
-
children?: StubRouteObject[];
|
|
506
|
-
meta?: MetaFunction;
|
|
507
|
-
links?: LinksFunction;
|
|
468
|
+
interface StubIndexRouteObject extends Omit<IndexRouteObject, "Component" | "HydrateFallback" | "ErrorBoundary" | "loader" | "action" | "element" | "errorElement" | "children">, StubRouteExtensions {
|
|
469
|
+
}
|
|
470
|
+
interface StubNonIndexRouteObject extends Omit<NonIndexRouteObject, "Component" | "HydrateFallback" | "ErrorBoundary" | "loader" | "action" | "element" | "errorElement" | "children">, StubRouteExtensions {
|
|
508
471
|
}
|
|
509
472
|
type StubRouteObject = StubIndexRouteObject | StubNonIndexRouteObject;
|
|
510
473
|
interface RoutesTestStubProps {
|
|
@@ -534,7 +497,7 @@ interface RoutesTestStubProps {
|
|
|
534
497
|
/**
|
|
535
498
|
* Future flags mimicking the settings in react-router.config.ts
|
|
536
499
|
*/
|
|
537
|
-
future?: Partial<FutureConfig>;
|
|
500
|
+
future?: Partial<FutureConfig$1>;
|
|
538
501
|
}
|
|
539
502
|
/**
|
|
540
503
|
* @category Utils
|
|
@@ -835,6 +798,9 @@ declare class RemixErrorBoundary extends React.Component<RemixErrorBoundaryProps
|
|
|
835
798
|
render(): string | number | boolean | Iterable<React.ReactNode> | React.JSX.Element | null | undefined;
|
|
836
799
|
}
|
|
837
800
|
|
|
801
|
+
declare function getPatchRoutesOnNavigationFunction(manifest: AssetsManifest, routeModules: RouteModules, ssr: boolean, routeDiscovery: ServerBuild["routeDiscovery"], isSpaMode: boolean, basename: string | undefined): PatchRoutesOnNavigationFunction | undefined;
|
|
802
|
+
declare function useFogOFWarDiscovery(router: Router, manifest: AssetsManifest, routeModules: RouteModules, ssr: boolean, routeDiscovery: ServerBuild["routeDiscovery"], isSpaMode: boolean): void;
|
|
803
|
+
|
|
838
804
|
declare function getHydrationData(state: {
|
|
839
805
|
loaderData?: Router["state"]["loaderData"];
|
|
840
806
|
actionData?: Router["state"]["actionData"];
|
|
@@ -845,4 +811,4 @@ declare function getHydrationData(state: {
|
|
|
845
811
|
hasHydrateFallback: boolean;
|
|
846
812
|
}, location: Path, basename: string | undefined, isSpaMode: boolean): HydrationState;
|
|
847
813
|
|
|
848
|
-
export { ActionFunction,
|
|
814
|
+
export { ActionFunction, AppLoadContext, Blocker, BlockerFunction, ClientLoaderFunction, type Cookie, type CookieOptions, type CookieSignatureOptions, type CreateRequestHandlerFunction, DataRouteObject, Router as DataRouter, DataStrategyFunction, EntryContext, type FlashSessionData, HydrationState, IndexRouteObject, InitialEntry, type IsCookieFunction, type IsSessionFunction, LinksFunction, LoaderFunction, Location, MetaFunction, type NavigateFunction, NavigateOptions, Navigation, Action as NavigationType, NonIndexRouteObject, ParamParseKey, Params$1 as Params, PatchRoutesOnNavigationFunction, Path, PathMatch, PathPattern, type Register, RelativeRoutingType, type RequestHandler, RouteObject, RouterState, type RoutesTestStubProps, ServerBuild, ServerRouter, type ServerRouterProps, type Session, type SessionData, type SessionIdStorageStrategy, type SessionStorage, StaticHandler, StaticHandlerContext, StaticRouter, type StaticRouterProps, StaticRouterProvider, type StaticRouterProviderProps, To, UIMatch, AssetsManifest as UNSAFE_AssetsManifest, MiddlewareEnabled as UNSAFE_MiddlewareEnabled, RemixErrorBoundary as UNSAFE_RemixErrorBoundary, RouteModules as UNSAFE_RouteModules, ServerMode as UNSAFE_ServerMode, SingleFetchRedirectSymbol as UNSAFE_SingleFetchRedirectSymbol, decodeViaTurboStream as UNSAFE_decodeViaTurboStream, deserializeErrors as UNSAFE_deserializeErrors, getHydrationData as UNSAFE_getHydrationData, getPatchRoutesOnNavigationFunction as UNSAFE_getPatchRoutesOnNavigationFunction, getTurboStreamSingleFetchDataStrategy as UNSAFE_getTurboStreamSingleFetchDataStrategy, useFogOFWarDiscovery as UNSAFE_useFogOFWarDiscovery, createCookie, createCookieSessionStorage, createMemorySessionStorage, createRequestHandler, createRoutesStub, createSession, createSessionStorage, createStaticHandler, createStaticRouter, href, isCookie, isSession, unstable_InitialContext, setDevServerHooks as unstable_setDevServerHooks, useActionData, useAsyncError, useAsyncValue, useBlocker, useHref, useInRouterContext, useLoaderData, useLocation, useMatch, useMatches, useNavigate, useNavigation, useNavigationType, useOutlet, useOutletContext, useParams, useResolvedPath, useRevalidator, useRouteError, useRouteLoaderData, useRoutes };
|