react-router 0.0.0-experimental-e56aa53bc → 0.0.0-experimental-aecfb0db1
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 +19 -0
- package/dist/development/{chunk-RMWJZNG5.mjs → chunk-RXFCVJK2.mjs} +1132 -1142
- 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 -6129
- package/dist/development/dom-export.mjs +6 -3
- package/dist/development/index.d.mts +13 -68
- package/dist/development/index.d.ts +1873 -198
- package/dist/development/index.js +1132 -1151
- package/dist/development/index.mjs +2 -19
- 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/development/{fog-of-war-DrUCUQQ-.d.ts → lib-BJBhVBWN.d.mts} +136 -178
- package/dist/{production/route-data-BIYebJr3.d.mts → development/route-data-BmDen1H_.d.mts} +12 -12
- package/dist/development/{route-data-BIYebJr3.d.mts → route-data-fNWkI-4T.d.ts} +12 -12
- package/dist/production/{chunk-BXBFRMFA.mjs → chunk-TLRBG5AD.mjs} +1132 -1142
- 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 -6129
- package/dist/production/dom-export.mjs +6 -3
- package/dist/production/index.d.mts +13 -68
- package/dist/production/index.d.ts +1873 -198
- package/dist/production/index.js +1132 -1151
- package/dist/production/index.mjs +2 -19
- 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/production/{fog-of-war-DrUCUQQ-.d.ts → lib-BJBhVBWN.d.mts} +136 -178
- package/dist/{development/route-data-BIYebJr3.d.ts → production/route-data-BmDen1H_.d.mts} +12 -12
- package/dist/production/{route-data-BIYebJr3.d.ts → route-data-fNWkI-4T.d.ts} +12 -12
- package/package.json +6 -35
- package/dist/development/data-CQbyyGzl.d.mts +0 -11
- package/dist/development/data-CQbyyGzl.d.ts +0 -11
- package/dist/development/fog-of-war-C5L_Yd5M.d.mts +0 -1778
- package/dist/development/rsc-export.d.mts +0 -1788
- package/dist/development/rsc-export.d.ts +0 -1788
- package/dist/development/rsc-export.js +0 -2778
- package/dist/development/rsc-export.mjs +0 -2743
- package/dist/production/data-CQbyyGzl.d.mts +0 -11
- package/dist/production/data-CQbyyGzl.d.ts +0 -11
- package/dist/production/fog-of-war-C5L_Yd5M.d.mts +0 -1778
- package/dist/production/rsc-export.d.mts +0 -1788
- package/dist/production/rsc-export.d.ts +0 -1788
- package/dist/production/rsc-export.js +0 -2778
- package/dist/production/rsc-export.mjs +0 -2743
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* react-router v0.0.0-experimental-
|
|
2
|
+
* react-router v0.0.0-experimental-aecfb0db1
|
|
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-TLRBG5AD.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, j as RevalidationState, U as UIMatch, S as SerializeFrom, B as BlockerFunction, k as Blocker, l as StaticHandlerContext, m as StaticHandler, F as FutureConfig, C as CreateStaticHandlerOptions$1, I as InitialEntry, H as HydrationState, u as unstable_InitialContext, n as IndexRouteObject, o as LoaderFunction, p as ActionFunction, M as MetaFunction, q as LinksFunction, r as NonIndexRouteObject, s as MiddlewareEnabled, t as AppLoadContext, E as Equal, v as RouterState, w as PatchRoutesOnNavigationFunction, x as DataRouteObject, y as ClientLoaderFunction } from './route-data-BmDen1H_.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, J as Fetcher, a0 as FormEncType, a1 as FormMethod, aF as Future, G as GetScrollPositionFunction, z 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, K as NavigationStates, as as Navigator, aC as PageLinkDescriptor, at as PatchRoutesOnNavigationFunctionArgs, a6 as PathParam, a7 as RedirectFunction, au as RouteMatch, V as RouterFetchOptions, R as RouterInit, Q as RouterNavigateOptions, O 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-BmDen1H_.mjs';
|
|
3
|
+
import { A as AssetsManifest, E as EntryContext, F as FutureConfig$1, S as ServerBuild } from './lib-BJBhVBWN.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-BJBhVBWN.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
|
|
|
@@ -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 {
|
|
@@ -534,7 +483,7 @@ interface RoutesTestStubProps {
|
|
|
534
483
|
/**
|
|
535
484
|
* Future flags mimicking the settings in react-router.config.ts
|
|
536
485
|
*/
|
|
537
|
-
future?: Partial<FutureConfig>;
|
|
486
|
+
future?: Partial<FutureConfig$1>;
|
|
538
487
|
}
|
|
539
488
|
/**
|
|
540
489
|
* @category Utils
|
|
@@ -615,7 +564,7 @@ interface SessionData {
|
|
|
615
564
|
/**
|
|
616
565
|
* Session persists data across HTTP requests.
|
|
617
566
|
*
|
|
618
|
-
* @see https://
|
|
567
|
+
* @see https://reactrouter.com/explanation/sessions-and-cookies#sessions
|
|
619
568
|
*/
|
|
620
569
|
interface Session<Data = SessionData, FlashData = Data> {
|
|
621
570
|
/**
|
|
@@ -665,15 +614,13 @@ type CreateSessionFunction = <Data = SessionData, FlashData = Data>(initialData?
|
|
|
665
614
|
*
|
|
666
615
|
* Note: This function is typically not invoked directly by application code.
|
|
667
616
|
* Instead, use a `SessionStorage` object's `getSession` method.
|
|
668
|
-
*
|
|
669
|
-
* @see https://remix.run/utils/sessions#createsession
|
|
670
617
|
*/
|
|
671
618
|
declare const createSession: CreateSessionFunction;
|
|
672
619
|
type IsSessionFunction = (object: any) => object is Session;
|
|
673
620
|
/**
|
|
674
|
-
* Returns true if an object is a
|
|
621
|
+
* Returns true if an object is a React Router session.
|
|
675
622
|
*
|
|
676
|
-
* @see https://
|
|
623
|
+
* @see https://reactrouter.com/api/utils/isSession
|
|
677
624
|
*/
|
|
678
625
|
declare const isSession: IsSessionFunction;
|
|
679
626
|
/**
|
|
@@ -814,11 +761,6 @@ type ToArgs<T> = Equal<T, {}> extends true ? [] : Partial<T> extends T ? [T] | [
|
|
|
814
761
|
*/
|
|
815
762
|
declare function href<Path extends keyof Args>(path: Path, ...args: Args[Path]): string;
|
|
816
763
|
|
|
817
|
-
declare function routeRSCServerRequest(request: Request, requestServer: (request: Request) => Promise<Response>, decode: (body: ReadableStream<Uint8Array>) => Promise<ServerPayload>, renderHTML: (payload: ServerPayload) => ReadableStream<Uint8Array> | Promise<ReadableStream<Uint8Array>>): Promise<Response>;
|
|
818
|
-
declare function RSCStaticRouter({ payload }: {
|
|
819
|
-
payload: ServerPayload;
|
|
820
|
-
}): React.JSX.Element | null;
|
|
821
|
-
|
|
822
764
|
declare function deserializeErrors(errors: RouterState["errors"]): RouterState["errors"];
|
|
823
765
|
|
|
824
766
|
type RemixErrorBoundaryProps = React.PropsWithChildren<{
|
|
@@ -842,6 +784,9 @@ declare class RemixErrorBoundary extends React.Component<RemixErrorBoundaryProps
|
|
|
842
784
|
render(): string | number | boolean | Iterable<React.ReactNode> | React.JSX.Element | null | undefined;
|
|
843
785
|
}
|
|
844
786
|
|
|
787
|
+
declare function getPatchRoutesOnNavigationFunction(manifest: AssetsManifest, routeModules: RouteModules, ssr: boolean, routeDiscovery: ServerBuild["routeDiscovery"], isSpaMode: boolean, basename: string | undefined): PatchRoutesOnNavigationFunction | undefined;
|
|
788
|
+
declare function useFogOFWarDiscovery(router: Router, manifest: AssetsManifest, routeModules: RouteModules, ssr: boolean, routeDiscovery: ServerBuild["routeDiscovery"], isSpaMode: boolean): void;
|
|
789
|
+
|
|
845
790
|
declare function getHydrationData(state: {
|
|
846
791
|
loaderData?: Router["state"]["loaderData"];
|
|
847
792
|
actionData?: Router["state"]["actionData"];
|
|
@@ -852,4 +797,4 @@ declare function getHydrationData(state: {
|
|
|
852
797
|
hasHydrateFallback: boolean;
|
|
853
798
|
}, location: Path, basename: string | undefined, isSpaMode: boolean): HydrationState;
|
|
854
799
|
|
|
855
|
-
export { ActionFunction,
|
|
800
|
+
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, RevalidationState, 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 };
|