react-router 0.0.0-experimental-1d8f3ee → 0.0.0-experimental-235eba2
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/development/{chunk-PACOJA5V.js → chunk-FMGWC27P.js} +9 -9
- package/dist/{production/chunk-FDXAKVCT.mjs → development/chunk-G5SITQUG.mjs} +2 -2
- package/dist/development/{chunk-DUZSUZPY.js → chunk-IPBRDHM5.js} +1 -1
- package/dist/development/{chunk-LCKD6EHG.mjs → chunk-QIMD7XHI.mjs} +4 -4
- package/dist/development/{chunk-XDNTV7B4.js → chunk-VI6JQQJE.js} +1 -1
- package/dist/development/dom-export.d.mts +1 -1
- package/dist/development/dom-export.d.ts +1 -1
- package/dist/development/dom-export.js +5 -5
- package/dist/development/dom-export.mjs +4 -4
- package/dist/development/index-react-server-client.js +4 -4
- package/dist/development/index-react-server-client.mjs +2 -2
- package/dist/development/index-react-server.js +1 -1
- package/dist/development/index-react-server.mjs +1 -1
- package/dist/development/index.d.mts +1 -1
- package/dist/development/index.d.ts +1 -1
- package/dist/development/index.js +100 -100
- package/dist/development/index.mjs +3 -3
- package/dist/development/lib/types/internal.js +1 -1
- package/dist/development/lib/types/internal.mjs +1 -1
- package/dist/production/{chunk-DUZSUZPY.js → chunk-IPBRDHM5.js} +1 -1
- package/dist/{development/chunk-RCYOOFMP.mjs → production/chunk-K5OF4EJE.mjs} +2 -2
- package/dist/production/{chunk-VJ4SUXKA.mjs → chunk-RNB2MV7B.mjs} +4 -4
- package/dist/production/{chunk-XDNTV7B4.js → chunk-VI6JQQJE.js} +1 -1
- package/dist/production/{chunk-F3UQRILU.js → chunk-ZGVHHRGW.js} +9 -9
- package/dist/production/dom-export.d.mts +1 -1
- package/dist/production/dom-export.d.ts +1 -1
- package/dist/production/dom-export.js +5 -5
- package/dist/production/dom-export.mjs +4 -4
- package/dist/production/index-react-server-client.js +4 -4
- package/dist/production/index-react-server-client.mjs +2 -2
- package/dist/production/index-react-server.js +1 -1
- package/dist/production/index-react-server.mjs +1 -1
- package/dist/production/index.d.mts +1 -1
- package/dist/production/index.d.ts +1 -1
- package/dist/production/index.js +100 -100
- package/dist/production/index.mjs +3 -3
- package/dist/production/lib/types/internal.js +1 -1
- package/dist/production/lib/types/internal.mjs +1 -1
- package/package.json +1 -1
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
"use strict";Object.defineProperty(exports, "__esModule", {value: true}); function _interopRequireWildcard(obj) { if (obj && obj.__esModule) { return obj; } else { var newObj = {}; if (obj != null) { for (var key in obj) { if (Object.prototype.hasOwnProperty.call(obj, key)) { newObj[key] = obj[key]; } } } newObj.default = obj; return newObj; } } function _nullishCoalesce(lhs, rhsFn) { if (lhs != null) { return lhs; } else { return rhsFn(); } } function _optionalChain(ops) { let lastAccessLHS = undefined; let value = ops[0]; let i = 1; while (i < ops.length) { const op = ops[i]; const fn = ops[i + 1]; i += 2; if ((op === 'optionalAccess' || op === 'optionalCall') && value == null) { return undefined; } if (op === 'access' || op === 'optionalAccess') { lastAccessLHS = value; value = fn(value); } else if (op === 'call' || op === 'optionalCall') { value = fn((...args) => value.call(lastAccessLHS, ...args)); lastAccessLHS = undefined; } } return value; }/**
|
|
2
|
-
* react-router v0.0.0-experimental-
|
|
2
|
+
* react-router v0.0.0-experimental-235eba2
|
|
3
3
|
*
|
|
4
4
|
* Copyright (c) Remix Software Inc.
|
|
5
5
|
*
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
|
|
12
12
|
|
|
13
13
|
|
|
14
|
-
var
|
|
14
|
+
var _chunkVI6JQQJEjs = require('./chunk-VI6JQQJE.js');
|
|
15
15
|
|
|
16
16
|
// lib/router/history.ts
|
|
17
17
|
var Action = /* @__PURE__ */ ((Action2) => {
|
|
@@ -366,7 +366,7 @@ function unstable_createContext(defaultValue) {
|
|
|
366
366
|
var _map;
|
|
367
367
|
var unstable_RouterContextProvider = class {
|
|
368
368
|
constructor(init) {
|
|
369
|
-
|
|
369
|
+
_chunkVI6JQQJEjs.__privateAdd.call(void 0, this, _map, /* @__PURE__ */ new Map());
|
|
370
370
|
if (init) {
|
|
371
371
|
for (let [context, value] of init) {
|
|
372
372
|
this.set(context, value);
|
|
@@ -374,8 +374,8 @@ var unstable_RouterContextProvider = class {
|
|
|
374
374
|
}
|
|
375
375
|
}
|
|
376
376
|
get(context) {
|
|
377
|
-
if (
|
|
378
|
-
return
|
|
377
|
+
if (_chunkVI6JQQJEjs.__privateGet.call(void 0, this, _map).has(context)) {
|
|
378
|
+
return _chunkVI6JQQJEjs.__privateGet.call(void 0, this, _map).get(context);
|
|
379
379
|
}
|
|
380
380
|
if (context.defaultValue !== void 0) {
|
|
381
381
|
return context.defaultValue;
|
|
@@ -383,7 +383,7 @@ var unstable_RouterContextProvider = class {
|
|
|
383
383
|
throw new Error("No value found for context");
|
|
384
384
|
}
|
|
385
385
|
set(context, value) {
|
|
386
|
-
|
|
386
|
+
_chunkVI6JQQJEjs.__privateGet.call(void 0, this, _map).set(context, value);
|
|
387
387
|
}
|
|
388
388
|
};
|
|
389
389
|
_map = new WeakMap();
|
|
@@ -8074,7 +8074,7 @@ function useFogOFWarDiscovery(router, manifest, routeModules, ssr, routeDiscover
|
|
|
8074
8074
|
attributeFilter: ["data-discover", "href", "action"]
|
|
8075
8075
|
});
|
|
8076
8076
|
return () => observer.disconnect();
|
|
8077
|
-
}, [ssr, isSpaMode, manifest, routeModules, router, routeDiscovery]);
|
|
8077
|
+
}, [ssr, isSpaMode, manifest, routeModules, router, routeDiscovery, loadRouteModule]);
|
|
8078
8078
|
}
|
|
8079
8079
|
function getManifestPath(_manifestPath, basename) {
|
|
8080
8080
|
let manifestPath = _manifestPath || "/__manifest";
|
|
@@ -8311,7 +8311,7 @@ function useKeyedPrefetchLinks(matches) {
|
|
|
8311
8311
|
return () => {
|
|
8312
8312
|
interrupted = true;
|
|
8313
8313
|
};
|
|
8314
|
-
}, [matches, manifest, routeModules]);
|
|
8314
|
+
}, [matches, manifest, routeModules, loadRouteModule]);
|
|
8315
8315
|
return keyedPrefetchLinks;
|
|
8316
8316
|
}
|
|
8317
8317
|
function PrefetchPageLinksImpl({
|
|
@@ -8772,7 +8772,7 @@ var isBrowser = typeof window !== "undefined" && typeof window.document !== "und
|
|
|
8772
8772
|
try {
|
|
8773
8773
|
if (isBrowser) {
|
|
8774
8774
|
window.__reactRouterVersion = // @ts-expect-error
|
|
8775
|
-
"0.0.0-experimental-
|
|
8775
|
+
"0.0.0-experimental-235eba2";
|
|
8776
8776
|
}
|
|
8777
8777
|
} catch (e) {
|
|
8778
8778
|
}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* react-router v0.0.0-experimental-
|
|
2
|
+
* react-router v0.0.0-experimental-235eba2
|
|
3
3
|
*
|
|
4
4
|
* Copyright (c) Remix Software Inc.
|
|
5
5
|
*
|
|
@@ -57,7 +57,7 @@ import {
|
|
|
57
57
|
withComponentProps,
|
|
58
58
|
withErrorBoundaryProps,
|
|
59
59
|
withHydrateFallbackProps
|
|
60
|
-
} from "./chunk-
|
|
60
|
+
} from "./chunk-QIMD7XHI.mjs";
|
|
61
61
|
|
|
62
62
|
// lib/dom/ssr/server.tsx
|
|
63
63
|
import * as React from "react";
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
"use strict";Object.defineProperty(exports, "__esModule", {value: true}); function _interopRequireWildcard(obj) { if (obj && obj.__esModule) { return obj; } else { var newObj = {}; if (obj != null) { for (var key in obj) { if (Object.prototype.hasOwnProperty.call(obj, key)) { newObj[key] = obj[key]; } } } newObj.default = obj; return newObj; } }/**
|
|
2
|
-
* react-router v0.0.0-experimental-
|
|
2
|
+
* react-router v0.0.0-experimental-235eba2
|
|
3
3
|
*
|
|
4
4
|
* Copyright (c) Remix Software Inc.
|
|
5
5
|
*
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* react-router v0.0.0-experimental-
|
|
2
|
+
* react-router v0.0.0-experimental-235eba2
|
|
3
3
|
*
|
|
4
4
|
* Copyright (c) Remix Software Inc.
|
|
5
5
|
*
|
|
@@ -8076,7 +8076,7 @@ function useFogOFWarDiscovery(router, manifest, routeModules, ssr, routeDiscover
|
|
|
8076
8076
|
attributeFilter: ["data-discover", "href", "action"]
|
|
8077
8077
|
});
|
|
8078
8078
|
return () => observer.disconnect();
|
|
8079
|
-
}, [ssr, isSpaMode, manifest, routeModules, router, routeDiscovery]);
|
|
8079
|
+
}, [ssr, isSpaMode, manifest, routeModules, router, routeDiscovery, loadRouteModule]);
|
|
8080
8080
|
}
|
|
8081
8081
|
function getManifestPath(_manifestPath, basename) {
|
|
8082
8082
|
let manifestPath = _manifestPath || "/__manifest";
|
|
@@ -8313,7 +8313,7 @@ function useKeyedPrefetchLinks(matches) {
|
|
|
8313
8313
|
return () => {
|
|
8314
8314
|
interrupted = true;
|
|
8315
8315
|
};
|
|
8316
|
-
}, [matches, manifest, routeModules]);
|
|
8316
|
+
}, [matches, manifest, routeModules, loadRouteModule]);
|
|
8317
8317
|
return keyedPrefetchLinks;
|
|
8318
8318
|
}
|
|
8319
8319
|
function PrefetchPageLinksImpl({
|
|
@@ -8774,7 +8774,7 @@ var isBrowser = typeof window !== "undefined" && typeof window.document !== "und
|
|
|
8774
8774
|
try {
|
|
8775
8775
|
if (isBrowser) {
|
|
8776
8776
|
window.__reactRouterVersion = // @ts-expect-error
|
|
8777
|
-
"0.0.0-experimental-
|
|
8777
|
+
"0.0.0-experimental-235eba2";
|
|
8778
8778
|
}
|
|
8779
8779
|
} catch (e) {
|
|
8780
8780
|
}
|
|
@@ -17,7 +17,7 @@ interface HydratedRouterProps {
|
|
|
17
17
|
* Optional function to take control over how route modules are loaded into
|
|
18
18
|
* the browser. Primarily for use by bundler plugins.
|
|
19
19
|
*/
|
|
20
|
-
|
|
20
|
+
unstable_loadRouteModule?: LoadRouteModuleFunction;
|
|
21
21
|
}
|
|
22
22
|
/**
|
|
23
23
|
* Framework-mode router component to be used in `entry.client.tsx` to hydrate a
|
|
@@ -15,7 +15,7 @@ interface HydratedRouterProps {
|
|
|
15
15
|
* Optional function to take control over how route modules are loaded into
|
|
16
16
|
* the browser. Primarily for use by bundler plugins.
|
|
17
17
|
*/
|
|
18
|
-
|
|
18
|
+
unstable_loadRouteModule?: LoadRouteModuleFunction;
|
|
19
19
|
}
|
|
20
20
|
/**
|
|
21
21
|
* Framework-mode router component to be used in `entry.client.tsx` to hydrate a
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
"use strict";Object.defineProperty(exports, "__esModule", {value: true}); function _interopRequireWildcard(obj) { if (obj && obj.__esModule) { return obj; } else { var newObj = {}; if (obj != null) { for (var key in obj) { if (Object.prototype.hasOwnProperty.call(obj, key)) { newObj[key] = obj[key]; } } } newObj.default = obj; return newObj; } } function _nullishCoalesce(lhs, rhsFn) { if (lhs != null) { return lhs; } else { return rhsFn(); } } function _optionalChain(ops) { let lastAccessLHS = undefined; let value = ops[0]; let i = 1; while (i < ops.length) { const op = ops[i]; const fn = ops[i + 1]; i += 2; if ((op === 'optionalAccess' || op === 'optionalCall') && value == null) { return undefined; } if (op === 'access' || op === 'optionalAccess') { lastAccessLHS = value; value = fn(value); } else if (op === 'call' || op === 'optionalCall') { value = fn((...args) => value.call(lastAccessLHS, ...args)); lastAccessLHS = undefined; } } return value; }/**
|
|
2
|
-
* react-router v0.0.0-experimental-
|
|
2
|
+
* react-router v0.0.0-experimental-235eba2
|
|
3
3
|
*
|
|
4
4
|
* Copyright (c) Remix Software Inc.
|
|
5
5
|
*
|
|
@@ -11,8 +11,8 @@
|
|
|
11
11
|
"use client";
|
|
12
12
|
|
|
13
13
|
|
|
14
|
-
var
|
|
15
|
-
require('./chunk-
|
|
14
|
+
var _chunkIPBRDHM5js = require('./chunk-IPBRDHM5.js');
|
|
15
|
+
require('./chunk-VI6JQQJE.js');
|
|
16
16
|
|
|
17
17
|
// lib/dom-export/dom-router-provider.tsx
|
|
18
18
|
var _react = require('react'); var React = _interopRequireWildcard(_react); var React2 = _interopRequireWildcard(_react);
|
|
@@ -68,7 +68,7 @@ function initSsrInfo() {
|
|
|
68
68
|
}
|
|
69
69
|
}
|
|
70
70
|
function createHydratedRouter({
|
|
71
|
-
loadRouteModule =
|
|
71
|
+
loadRouteModule = _chunkIPBRDHM5js.defaultLoadRouteModule,
|
|
72
72
|
unstable_getContext
|
|
73
73
|
}) {
|
|
74
74
|
initSsrInfo();
|
|
@@ -169,7 +169,7 @@ function createHydratedRouter({
|
|
|
169
169
|
return router2;
|
|
170
170
|
}
|
|
171
171
|
function HydratedRouter(props) {
|
|
172
|
-
let loadRouteModule = _nullishCoalesce(props.
|
|
172
|
+
let loadRouteModule = _nullishCoalesce(props.unstable_loadRouteModule, () => ( _chunkIPBRDHM5js.defaultLoadRouteModule));
|
|
173
173
|
if (!router) {
|
|
174
174
|
router = createHydratedRouter({
|
|
175
175
|
loadRouteModule,
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* react-router v0.0.0-experimental-
|
|
2
|
+
* react-router v0.0.0-experimental-235eba2
|
|
3
3
|
*
|
|
4
4
|
* Copyright (c) Remix Software Inc.
|
|
5
5
|
*
|
|
@@ -13,7 +13,7 @@ import {
|
|
|
13
13
|
defaultLoadRouteModule,
|
|
14
14
|
deserializeErrors,
|
|
15
15
|
getHydrationData
|
|
16
|
-
} from "./chunk-
|
|
16
|
+
} from "./chunk-G5SITQUG.mjs";
|
|
17
17
|
import {
|
|
18
18
|
FrameworkContext,
|
|
19
19
|
RemixErrorBoundary,
|
|
@@ -29,7 +29,7 @@ import {
|
|
|
29
29
|
invariant,
|
|
30
30
|
mapRouteProperties,
|
|
31
31
|
useFogOFWarDiscovery
|
|
32
|
-
} from "./chunk-
|
|
32
|
+
} from "./chunk-QIMD7XHI.mjs";
|
|
33
33
|
|
|
34
34
|
// lib/dom-export/dom-router-provider.tsx
|
|
35
35
|
import * as React from "react";
|
|
@@ -168,7 +168,7 @@ function createHydratedRouter({
|
|
|
168
168
|
return router2;
|
|
169
169
|
}
|
|
170
170
|
function HydratedRouter(props) {
|
|
171
|
-
let loadRouteModule = props.
|
|
171
|
+
let loadRouteModule = props.unstable_loadRouteModule ?? defaultLoadRouteModule;
|
|
172
172
|
if (!router) {
|
|
173
173
|
router = createHydratedRouter({
|
|
174
174
|
loadRouteModule,
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
"use strict";Object.defineProperty(exports, "__esModule", {value: true});/**
|
|
2
|
-
* react-router v0.0.0-experimental-
|
|
2
|
+
* react-router v0.0.0-experimental-235eba2
|
|
3
3
|
*
|
|
4
4
|
* Copyright (c) Remix Software Inc.
|
|
5
5
|
*
|
|
@@ -29,8 +29,8 @@
|
|
|
29
29
|
|
|
30
30
|
|
|
31
31
|
|
|
32
|
-
var
|
|
33
|
-
require('./chunk-
|
|
32
|
+
var _chunkFMGWC27Pjs = require('./chunk-FMGWC27P.js');
|
|
33
|
+
require('./chunk-VI6JQQJE.js');
|
|
34
34
|
|
|
35
35
|
|
|
36
36
|
|
|
@@ -51,4 +51,4 @@ require('./chunk-XDNTV7B4.js');
|
|
|
51
51
|
|
|
52
52
|
|
|
53
53
|
|
|
54
|
-
exports.Await =
|
|
54
|
+
exports.Await = _chunkFMGWC27Pjs.Await; exports.BrowserRouter = _chunkFMGWC27Pjs.BrowserRouter; exports.Form = _chunkFMGWC27Pjs.Form; exports.HashRouter = _chunkFMGWC27Pjs.HashRouter; exports.Link = _chunkFMGWC27Pjs.Link; exports.Links = _chunkFMGWC27Pjs.Links; exports.MemoryRouter = _chunkFMGWC27Pjs.MemoryRouter; exports.Meta = _chunkFMGWC27Pjs.Meta; exports.NavLink = _chunkFMGWC27Pjs.NavLink; exports.Navigate = _chunkFMGWC27Pjs.Navigate; exports.Outlet = _chunkFMGWC27Pjs.Outlet; exports.Route = _chunkFMGWC27Pjs.Route; exports.Router = _chunkFMGWC27Pjs.Router; exports.RouterProvider = _chunkFMGWC27Pjs.RouterProvider; exports.Routes = _chunkFMGWC27Pjs.Routes; exports.ScrollRestoration = _chunkFMGWC27Pjs.ScrollRestoration; exports.StaticRouter = _chunkFMGWC27Pjs.StaticRouter; exports.StaticRouterProvider = _chunkFMGWC27Pjs.StaticRouterProvider; exports.unstable_HistoryRouter = _chunkFMGWC27Pjs.HistoryRouter;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* react-router v0.0.0-experimental-
|
|
2
|
+
* react-router v0.0.0-experimental-235eba2
|
|
3
3
|
*
|
|
4
4
|
* Copyright (c) Remix Software Inc.
|
|
5
5
|
*
|
|
@@ -29,7 +29,7 @@ import {
|
|
|
29
29
|
ScrollRestoration,
|
|
30
30
|
StaticRouter,
|
|
31
31
|
StaticRouterProvider
|
|
32
|
-
} from "./chunk-
|
|
32
|
+
} from "./chunk-QIMD7XHI.mjs";
|
|
33
33
|
export {
|
|
34
34
|
Await,
|
|
35
35
|
BrowserRouter,
|
|
@@ -5,7 +5,7 @@ export { Await, BrowserRouter, Form, HashRouter, Link, Links, MemoryRouter, Meta
|
|
|
5
5
|
import { serialize, parse } from 'cookie';
|
|
6
6
|
|
|
7
7
|
/**
|
|
8
|
-
* react-router v0.0.0-experimental-
|
|
8
|
+
* react-router v0.0.0-experimental-235eba2
|
|
9
9
|
*
|
|
10
10
|
* Copyright (c) Remix Software Inc.
|
|
11
11
|
*
|
|
@@ -409,4 +409,4 @@ declare function getHydrationData(state: {
|
|
|
409
409
|
|
|
410
410
|
declare const unstable_matchRSCServerRequest: typeof matchRSCServerRequest;
|
|
411
411
|
|
|
412
|
-
export { ActionFunction, AppLoadContext, 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, NonIndexRouteObject, PatchRoutesOnNavigationFunction, Path, type RequestHandler, RouterState, type RoutesTestStubProps, ServerBuild, ServerRouter, type ServerRouterProps, type Session, type SessionData, type SessionIdStorageStrategy, type SessionStorage, AssetsManifest as UNSAFE_AssetsManifest, MiddlewareEnabled as UNSAFE_MiddlewareEnabled, RSCDefaultRootErrorBoundary as UNSAFE_RSCDefaultRootErrorBoundary, 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, href, isCookie, isSession, unstable_InitialContext, RSCPayload as unstable_RSCPayload, RSCStaticRouter as unstable_RSCStaticRouter, type SSRCreateFromReadableStreamFunction as unstable_SSRCreateFromReadableStreamFunction, unstable_matchRSCServerRequest, routeRSCServerRequest as unstable_routeRSCServerRequest, setDevServerHooks as unstable_setDevServerHooks };
|
|
412
|
+
export { ActionFunction, AppLoadContext, 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, NonIndexRouteObject, PatchRoutesOnNavigationFunction, Path, type RequestHandler, RouterState, type RoutesTestStubProps, ServerBuild, ServerRouter, type ServerRouterProps, type Session, type SessionData, type SessionIdStorageStrategy, type SessionStorage, AssetsManifest as UNSAFE_AssetsManifest, MiddlewareEnabled as UNSAFE_MiddlewareEnabled, RSCDefaultRootErrorBoundary as UNSAFE_RSCDefaultRootErrorBoundary, 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, href, isCookie, isSession, unstable_InitialContext, LoadRouteModuleFunction as unstable_LoadRouteModuleFunction, RSCPayload as unstable_RSCPayload, RSCStaticRouter as unstable_RSCStaticRouter, type SSRCreateFromReadableStreamFunction as unstable_SSRCreateFromReadableStreamFunction, unstable_matchRSCServerRequest, routeRSCServerRequest as unstable_routeRSCServerRequest, setDevServerHooks as unstable_setDevServerHooks };
|
|
@@ -554,4 +554,4 @@ declare function getHydrationData(state: {
|
|
|
554
554
|
|
|
555
555
|
declare const unstable_matchRSCServerRequest: typeof matchRSCServerRequest;
|
|
556
556
|
|
|
557
|
-
export { ActionFunction, AppLoadContext, ClientActionFunction, ClientLoaderFunction, type Cookie, type CookieOptions, type CookieSignatureOptions, type CreateRequestHandlerFunction, DataRouteObject, Router as DataRouter, DataStrategyFunction, EntryContext, type FlashSessionData, HeadersFunction, HydrationState, IndexRouteObject, InitialEntry, type IsCookieFunction, type IsSessionFunction, LinksFunction, LoaderFunction, Location, MetaFunction, NonIndexRouteObject, Params, PatchRoutesOnNavigationFunction, Path, type RequestHandler, RouterState, type RoutesTestStubProps, ServerBuild, ServerRouter, type ServerRouterProps, type Session, type SessionData, type SessionIdStorageStrategy, type SessionStorage, ShouldRevalidateFunction, AssetsManifest as UNSAFE_AssetsManifest, MiddlewareEnabled as UNSAFE_MiddlewareEnabled, RSCDefaultRootErrorBoundary as UNSAFE_RSCDefaultRootErrorBoundary, 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, href, isCookie, isSession, type BrowserCreateFromReadableStreamFunction as unstable_BrowserCreateFromReadableStreamFunction, type DecodeActionFunction as unstable_DecodeActionFunction, type DecodeFormStateFunction as unstable_DecodeFormStateFunction, type DecodeReplyFunction as unstable_DecodeReplyFunction, type EncodeReplyFunction as unstable_EncodeReplyFunction, unstable_InitialContext, type LoadServerActionFunction as unstable_LoadServerActionFunction, RSCHydratedRouter as unstable_RSCHydratedRouter, type RSCManifestPayload as unstable_RSCManifestPayload, type RSCMatch as unstable_RSCMatch, type RSCPayload as unstable_RSCPayload, type RSCRenderPayload as unstable_RSCRenderPayload, type RSCRouteConfig as unstable_RSCRouteConfig, type RSCRouteConfigEntry as unstable_RSCRouteConfigEntry, type RSCRouteManifest as unstable_RSCRouteManifest, type RSCRouteMatch as unstable_RSCRouteMatch, RSCStaticRouter as unstable_RSCStaticRouter, type SSRCreateFromReadableStreamFunction as unstable_SSRCreateFromReadableStreamFunction, createCallServer as unstable_createCallServer, getRSCStream as unstable_getRSCStream, unstable_matchRSCServerRequest, routeRSCServerRequest as unstable_routeRSCServerRequest, setDevServerHooks as unstable_setDevServerHooks };
|
|
557
|
+
export { ActionFunction, AppLoadContext, ClientActionFunction, ClientLoaderFunction, type Cookie, type CookieOptions, type CookieSignatureOptions, type CreateRequestHandlerFunction, DataRouteObject, Router as DataRouter, DataStrategyFunction, EntryContext, type FlashSessionData, HeadersFunction, HydrationState, IndexRouteObject, InitialEntry, type IsCookieFunction, type IsSessionFunction, LinksFunction, LoaderFunction, Location, MetaFunction, NonIndexRouteObject, Params, PatchRoutesOnNavigationFunction, Path, type RequestHandler, RouterState, type RoutesTestStubProps, ServerBuild, ServerRouter, type ServerRouterProps, type Session, type SessionData, type SessionIdStorageStrategy, type SessionStorage, ShouldRevalidateFunction, AssetsManifest as UNSAFE_AssetsManifest, MiddlewareEnabled as UNSAFE_MiddlewareEnabled, RSCDefaultRootErrorBoundary as UNSAFE_RSCDefaultRootErrorBoundary, 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, href, isCookie, isSession, type BrowserCreateFromReadableStreamFunction as unstable_BrowserCreateFromReadableStreamFunction, type DecodeActionFunction as unstable_DecodeActionFunction, type DecodeFormStateFunction as unstable_DecodeFormStateFunction, type DecodeReplyFunction as unstable_DecodeReplyFunction, type EncodeReplyFunction as unstable_EncodeReplyFunction, unstable_InitialContext, LoadRouteModuleFunction as unstable_LoadRouteModuleFunction, type LoadServerActionFunction as unstable_LoadServerActionFunction, RSCHydratedRouter as unstable_RSCHydratedRouter, type RSCManifestPayload as unstable_RSCManifestPayload, type RSCMatch as unstable_RSCMatch, type RSCPayload as unstable_RSCPayload, type RSCRenderPayload as unstable_RSCRenderPayload, type RSCRouteConfig as unstable_RSCRouteConfig, type RSCRouteConfigEntry as unstable_RSCRouteConfigEntry, type RSCRouteManifest as unstable_RSCRouteManifest, type RSCRouteMatch as unstable_RSCRouteMatch, RSCStaticRouter as unstable_RSCStaticRouter, type SSRCreateFromReadableStreamFunction as unstable_SSRCreateFromReadableStreamFunction, createCallServer as unstable_createCallServer, getRSCStream as unstable_getRSCStream, unstable_matchRSCServerRequest, routeRSCServerRequest as unstable_routeRSCServerRequest, setDevServerHooks as unstable_setDevServerHooks };
|