react-router 7.16.0 → 7.17.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 +9 -1
- package/dist/development/{browser-nIQ4Nsyi.d.mts → browser-CGcs-0pD.d.mts} +1 -1
- package/dist/development/{chunk-QUQL4437.mjs → chunk-6CSD65Y2.mjs} +2 -2
- package/dist/{production/chunk-NALGHHKE.mjs → development/chunk-ASILSGTR.mjs} +2 -2
- package/dist/development/{chunk-SRID2YZ2.js → chunk-KFNXW4AL.js} +1 -1
- package/dist/development/{chunk-XEJDWL2B.js → chunk-PBLBZ3QU.js} +7 -7
- package/dist/{production/chunk-SKEDDLRM.js → development/chunk-PULC7NLK.js} +99 -99
- package/dist/development/{context-m8rizgnE.d.mts → context-CmHpk1Ws.d.mts} +1 -1
- package/dist/development/dom-export.d.mts +3 -3
- package/dist/development/dom-export.d.ts +1 -1
- package/dist/development/dom-export.js +28 -28
- package/dist/development/dom-export.mjs +3 -3
- package/dist/development/{index-react-server-client-BLiUx67a.d.ts → index-react-server-client-CwU9bE5R.d.ts} +1 -1
- package/dist/development/{index-react-server-client-CdKROblb.d.mts → index-react-server-client-DPrDrCew.d.mts} +1 -1
- package/dist/development/index-react-server-client.d.mts +2 -2
- package/dist/development/index-react-server-client.d.ts +1 -1
- 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 +6 -6
- package/dist/development/index.d.ts +2 -2
- package/dist/development/index.js +85 -85
- 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/{browser-nIQ4Nsyi.d.mts → browser-CGcs-0pD.d.mts} +1 -1
- package/dist/{development/chunk-S54KXAEJ.mjs → production/chunk-5TQZEVD5.mjs} +2 -2
- package/dist/production/{chunk-EAQNHM3N.js → chunk-CTIXC7EV.js} +7 -7
- package/dist/{development/chunk-IBI7OMNB.js → production/chunk-EN242BO4.js} +99 -99
- package/dist/production/{chunk-Q65P7S7Y.mjs → chunk-OSYEOCBT.mjs} +2 -2
- package/dist/production/{chunk-Y7DNFQZP.js → chunk-RTRY3JFT.js} +1 -1
- package/dist/production/{context-m8rizgnE.d.mts → context-CmHpk1Ws.d.mts} +1 -1
- package/dist/production/dom-export.d.mts +3 -3
- package/dist/production/dom-export.d.ts +1 -1
- package/dist/production/dom-export.js +28 -28
- package/dist/production/dom-export.mjs +3 -3
- package/dist/production/{index-react-server-client-BLiUx67a.d.ts → index-react-server-client-CwU9bE5R.d.ts} +1 -1
- package/dist/production/{index-react-server-client-CdKROblb.d.mts → index-react-server-client-DPrDrCew.d.mts} +1 -1
- package/dist/production/index-react-server-client.d.mts +2 -2
- package/dist/production/index-react-server-client.d.ts +1 -1
- 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 +6 -6
- package/dist/production/index.d.ts +2 -2
- package/dist/production/index.js +85 -85
- 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/docs/explanation/backend-for-frontend.md +50 -0
- package/docs/explanation/code-splitting.md +61 -0
- package/docs/explanation/concurrency.md +135 -0
- package/docs/explanation/form-vs-fetcher.md +292 -0
- package/docs/explanation/hot-module-replacement.md +137 -0
- package/docs/explanation/hydration.md +14 -0
- package/docs/explanation/index-query-param.md +86 -0
- package/docs/explanation/index.md +4 -0
- package/docs/explanation/lazy-route-discovery.md +78 -0
- package/docs/explanation/location.md +6 -0
- package/docs/explanation/progressive-enhancement.md +150 -0
- package/docs/explanation/race-conditions.md +88 -0
- package/docs/explanation/react-transitions.md +160 -0
- package/docs/explanation/route-matching.md +7 -0
- package/docs/explanation/server-client-execution.md +4 -0
- package/docs/explanation/sessions-and-cookies.md +465 -0
- package/docs/explanation/special-files.md +16 -0
- package/docs/explanation/state-management.md +524 -0
- package/docs/explanation/styling.md +87 -0
- package/docs/explanation/type-safety.md +82 -0
- package/docs/how-to/accessibility.md +44 -0
- package/docs/how-to/client-data.md +199 -0
- package/docs/how-to/data-strategy.md +317 -0
- package/docs/how-to/error-boundary.md +231 -0
- package/docs/how-to/error-reporting.md +142 -0
- package/docs/how-to/fetchers.md +307 -0
- package/docs/how-to/file-route-conventions.md +410 -0
- package/docs/how-to/file-uploads.md +217 -0
- package/docs/how-to/form-validation.md +120 -0
- package/docs/how-to/headers.md +164 -0
- package/docs/how-to/index.md +4 -0
- package/docs/how-to/instrumentation.md +556 -0
- package/docs/how-to/meta.md +40 -0
- package/docs/how-to/middleware.md +763 -0
- package/docs/how-to/navigation-blocking.md +233 -0
- package/docs/how-to/optimize-revalidation.md +12 -0
- package/docs/how-to/pre-rendering.md +225 -0
- package/docs/how-to/presets.md +103 -0
- package/docs/how-to/react-server-components.md +899 -0
- package/docs/how-to/resource-routes.md +126 -0
- package/docs/how-to/route-module-type-safety.md +100 -0
- package/docs/how-to/search-params.md +4 -0
- package/docs/how-to/security.md +30 -0
- package/docs/how-to/server-bundles.md +66 -0
- package/docs/how-to/spa.md +120 -0
- package/docs/how-to/status.md +63 -0
- package/docs/how-to/suspense.md +132 -0
- package/docs/how-to/using-handle.md +117 -0
- package/docs/how-to/view-transitions.md +237 -0
- package/docs/how-to/webhook.md +50 -0
- package/docs/index.md +39 -0
- package/docs/start/data/actions.md +138 -0
- package/docs/start/data/custom.md +198 -0
- package/docs/start/data/data-loading.md +44 -0
- package/docs/start/data/index.md +4 -0
- package/docs/start/data/installation.md +52 -0
- package/docs/start/data/navigating.md +12 -0
- package/docs/start/data/pending-ui.md +12 -0
- package/docs/start/data/route-object.md +268 -0
- package/docs/start/data/routing.md +281 -0
- package/docs/start/data/testing.md +8 -0
- package/docs/start/declarative/index.md +4 -0
- package/docs/start/declarative/installation.md +43 -0
- package/docs/start/declarative/navigating.md +133 -0
- package/docs/start/declarative/routing.md +237 -0
- package/docs/start/declarative/url-values.md +65 -0
- package/docs/start/framework/actions.md +174 -0
- package/docs/start/framework/data-loading.md +201 -0
- package/docs/start/framework/deploying.md +96 -0
- package/docs/start/framework/index.md +4 -0
- package/docs/start/framework/installation.md +41 -0
- package/docs/start/framework/navigating.md +182 -0
- package/docs/start/framework/pending-ui.md +142 -0
- package/docs/start/framework/rendering.md +59 -0
- package/docs/start/framework/route-module.md +527 -0
- package/docs/start/framework/routing.md +362 -0
- package/docs/start/framework/testing.md +133 -0
- package/docs/start/index.md +4 -0
- package/docs/start/modes.md +201 -0
- package/docs/upgrading/component-routes.md +363 -0
- package/docs/upgrading/future.md +280 -0
- package/docs/upgrading/index.md +4 -0
- package/docs/upgrading/remix.md +403 -0
- package/docs/upgrading/router-provider.md +442 -0
- package/docs/upgrading/v6.md +382 -0
- package/package.json +2 -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 _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 v7.
|
|
2
|
+
* react-router v7.17.0
|
|
3
3
|
*
|
|
4
4
|
* Copyright (c) Remix Software Inc.
|
|
5
5
|
*
|
|
@@ -51,7 +51,7 @@
|
|
|
51
51
|
|
|
52
52
|
|
|
53
53
|
|
|
54
|
-
var
|
|
54
|
+
var _chunkKFNXW4ALjs = require('./chunk-KFNXW4AL.js');
|
|
55
55
|
|
|
56
56
|
// lib/dom/dom.ts
|
|
57
57
|
var defaultMethod = "get";
|
|
@@ -122,7 +122,7 @@ var supportedFormEncTypes = /* @__PURE__ */ new Set([
|
|
|
122
122
|
]);
|
|
123
123
|
function getFormEncType(encType) {
|
|
124
124
|
if (encType != null && !supportedFormEncTypes.has(encType)) {
|
|
125
|
-
|
|
125
|
+
_chunkKFNXW4ALjs.warning.call(void 0,
|
|
126
126
|
false,
|
|
127
127
|
`"${encType}" is not a valid \`encType\` for \`<Form>\`/\`<fetcher.Form>\` and will default to "${defaultEncType}"`
|
|
128
128
|
);
|
|
@@ -138,7 +138,7 @@ function getFormSubmissionInfo(target, basename) {
|
|
|
138
138
|
let body;
|
|
139
139
|
if (isFormElement(target)) {
|
|
140
140
|
let attr = target.getAttribute("action");
|
|
141
|
-
action = attr ?
|
|
141
|
+
action = attr ? _chunkKFNXW4ALjs.stripBasename.call(void 0, attr, basename) : null;
|
|
142
142
|
method = target.getAttribute("method") || defaultMethod;
|
|
143
143
|
encType = getFormEncType(target.getAttribute("enctype")) || defaultEncType;
|
|
144
144
|
formData = new FormData(target);
|
|
@@ -150,7 +150,7 @@ function getFormSubmissionInfo(target, basename) {
|
|
|
150
150
|
);
|
|
151
151
|
}
|
|
152
152
|
let attr = target.getAttribute("formaction") || form.getAttribute("action");
|
|
153
|
-
action = attr ?
|
|
153
|
+
action = attr ? _chunkKFNXW4ALjs.stripBasename.call(void 0, attr, basename) : null;
|
|
154
154
|
method = target.getAttribute("formmethod") || form.getAttribute("method") || defaultMethod;
|
|
155
155
|
encType = getFormEncType(target.getAttribute("formenctype")) || getFormEncType(form.getAttribute("enctype")) || defaultEncType;
|
|
156
156
|
formData = new FormData(form, target);
|
|
@@ -187,20 +187,20 @@ var isBrowser = typeof window !== "undefined" && typeof window.document !== "und
|
|
|
187
187
|
try {
|
|
188
188
|
if (isBrowser) {
|
|
189
189
|
window.__reactRouterVersion = // @ts-expect-error
|
|
190
|
-
"7.
|
|
190
|
+
"7.17.0";
|
|
191
191
|
}
|
|
192
192
|
} catch (e) {
|
|
193
193
|
}
|
|
194
194
|
function createBrowserRouter(routes, opts) {
|
|
195
|
-
return
|
|
195
|
+
return _chunkKFNXW4ALjs.createRouter.call(void 0, {
|
|
196
196
|
basename: _optionalChain([opts, 'optionalAccess', _2 => _2.basename]),
|
|
197
197
|
getContext: _optionalChain([opts, 'optionalAccess', _3 => _3.getContext]),
|
|
198
198
|
future: _optionalChain([opts, 'optionalAccess', _4 => _4.future]),
|
|
199
|
-
history:
|
|
199
|
+
history: _chunkKFNXW4ALjs.createBrowserHistory.call(void 0, { window: _optionalChain([opts, 'optionalAccess', _5 => _5.window]) }),
|
|
200
200
|
hydrationData: _optionalChain([opts, 'optionalAccess', _6 => _6.hydrationData]) || parseHydrationData(),
|
|
201
201
|
routes,
|
|
202
|
-
mapRouteProperties:
|
|
203
|
-
hydrationRouteProperties:
|
|
202
|
+
mapRouteProperties: _chunkKFNXW4ALjs.mapRouteProperties,
|
|
203
|
+
hydrationRouteProperties: _chunkKFNXW4ALjs.hydrationRouteProperties,
|
|
204
204
|
dataStrategy: _optionalChain([opts, 'optionalAccess', _7 => _7.dataStrategy]),
|
|
205
205
|
patchRoutesOnNavigation: _optionalChain([opts, 'optionalAccess', _8 => _8.patchRoutesOnNavigation]),
|
|
206
206
|
window: _optionalChain([opts, 'optionalAccess', _9 => _9.window]),
|
|
@@ -208,15 +208,15 @@ function createBrowserRouter(routes, opts) {
|
|
|
208
208
|
}).initialize();
|
|
209
209
|
}
|
|
210
210
|
function createHashRouter(routes, opts) {
|
|
211
|
-
return
|
|
211
|
+
return _chunkKFNXW4ALjs.createRouter.call(void 0, {
|
|
212
212
|
basename: _optionalChain([opts, 'optionalAccess', _11 => _11.basename]),
|
|
213
213
|
getContext: _optionalChain([opts, 'optionalAccess', _12 => _12.getContext]),
|
|
214
214
|
future: _optionalChain([opts, 'optionalAccess', _13 => _13.future]),
|
|
215
|
-
history:
|
|
215
|
+
history: _chunkKFNXW4ALjs.createHashHistory.call(void 0, { window: _optionalChain([opts, 'optionalAccess', _14 => _14.window]) }),
|
|
216
216
|
hydrationData: _optionalChain([opts, 'optionalAccess', _15 => _15.hydrationData]) || parseHydrationData(),
|
|
217
217
|
routes,
|
|
218
|
-
mapRouteProperties:
|
|
219
|
-
hydrationRouteProperties:
|
|
218
|
+
mapRouteProperties: _chunkKFNXW4ALjs.mapRouteProperties,
|
|
219
|
+
hydrationRouteProperties: _chunkKFNXW4ALjs.hydrationRouteProperties,
|
|
220
220
|
dataStrategy: _optionalChain([opts, 'optionalAccess', _16 => _16.dataStrategy]),
|
|
221
221
|
patchRoutesOnNavigation: _optionalChain([opts, 'optionalAccess', _17 => _17.patchRoutesOnNavigation]),
|
|
222
222
|
window: _optionalChain([opts, 'optionalAccess', _18 => _18.window]),
|
|
@@ -239,7 +239,7 @@ function deserializeErrors(errors) {
|
|
|
239
239
|
let serialized = {};
|
|
240
240
|
for (let [key, val] of entries) {
|
|
241
241
|
if (val && val.__type === "RouteErrorResponse") {
|
|
242
|
-
serialized[key] = new (0,
|
|
242
|
+
serialized[key] = new (0, _chunkKFNXW4ALjs.ErrorResponseImpl)(
|
|
243
243
|
val.status,
|
|
244
244
|
val.statusText,
|
|
245
245
|
val.data,
|
|
@@ -276,7 +276,7 @@ function BrowserRouter({
|
|
|
276
276
|
}) {
|
|
277
277
|
let historyRef = React.useRef();
|
|
278
278
|
if (historyRef.current == null) {
|
|
279
|
-
historyRef.current =
|
|
279
|
+
historyRef.current = _chunkKFNXW4ALjs.createBrowserHistory.call(void 0, { window: window2, v5Compat: true });
|
|
280
280
|
}
|
|
281
281
|
let history = historyRef.current;
|
|
282
282
|
let [state, setStateImpl] = React.useState({
|
|
@@ -295,7 +295,7 @@ function BrowserRouter({
|
|
|
295
295
|
);
|
|
296
296
|
React.useLayoutEffect(() => history.listen(setState), [history, setState]);
|
|
297
297
|
return /* @__PURE__ */ React.createElement(
|
|
298
|
-
|
|
298
|
+
_chunkKFNXW4ALjs.Router,
|
|
299
299
|
{
|
|
300
300
|
basename,
|
|
301
301
|
children,
|
|
@@ -314,7 +314,7 @@ function HashRouter({
|
|
|
314
314
|
}) {
|
|
315
315
|
let historyRef = React.useRef();
|
|
316
316
|
if (historyRef.current == null) {
|
|
317
|
-
historyRef.current =
|
|
317
|
+
historyRef.current = _chunkKFNXW4ALjs.createHashHistory.call(void 0, { window: window2, v5Compat: true });
|
|
318
318
|
}
|
|
319
319
|
let history = historyRef.current;
|
|
320
320
|
let [state, setStateImpl] = React.useState({
|
|
@@ -333,7 +333,7 @@ function HashRouter({
|
|
|
333
333
|
);
|
|
334
334
|
React.useLayoutEffect(() => history.listen(setState), [history, setState]);
|
|
335
335
|
return /* @__PURE__ */ React.createElement(
|
|
336
|
-
|
|
336
|
+
_chunkKFNXW4ALjs.Router,
|
|
337
337
|
{
|
|
338
338
|
basename,
|
|
339
339
|
children,
|
|
@@ -366,7 +366,7 @@ function HistoryRouter({
|
|
|
366
366
|
);
|
|
367
367
|
React.useLayoutEffect(() => history.listen(setState), [history, setState]);
|
|
368
368
|
return /* @__PURE__ */ React.createElement(
|
|
369
|
-
|
|
369
|
+
_chunkKFNXW4ALjs.Router,
|
|
370
370
|
{
|
|
371
371
|
basename,
|
|
372
372
|
children,
|
|
@@ -396,26 +396,26 @@ var Link = React.forwardRef(
|
|
|
396
396
|
defaultShouldRevalidate,
|
|
397
397
|
...rest
|
|
398
398
|
}, forwardedRef) {
|
|
399
|
-
let { basename, navigator, useTransitions } = React.useContext(
|
|
399
|
+
let { basename, navigator, useTransitions } = React.useContext(_chunkKFNXW4ALjs.NavigationContext);
|
|
400
400
|
let isAbsolute = typeof to === "string" && ABSOLUTE_URL_REGEX.test(to);
|
|
401
|
-
let parsed =
|
|
401
|
+
let parsed = _chunkKFNXW4ALjs.parseToInfo.call(void 0, to, basename);
|
|
402
402
|
to = parsed.to;
|
|
403
|
-
let href =
|
|
404
|
-
let location =
|
|
403
|
+
let href = _chunkKFNXW4ALjs.useHref.call(void 0, to, { relative });
|
|
404
|
+
let location = _chunkKFNXW4ALjs.useLocation.call(void 0, );
|
|
405
405
|
let maskedHref = null;
|
|
406
406
|
if (mask) {
|
|
407
|
-
let resolved =
|
|
407
|
+
let resolved = _chunkKFNXW4ALjs.resolveTo.call(void 0,
|
|
408
408
|
mask,
|
|
409
409
|
[],
|
|
410
410
|
location.mask ? location.mask.pathname : "/",
|
|
411
411
|
true
|
|
412
412
|
);
|
|
413
413
|
if (basename !== "/") {
|
|
414
|
-
resolved.pathname = resolved.pathname === "/" ? basename :
|
|
414
|
+
resolved.pathname = resolved.pathname === "/" ? basename : _chunkKFNXW4ALjs.joinPaths.call(void 0, [basename, resolved.pathname]);
|
|
415
415
|
}
|
|
416
416
|
maskedHref = navigator.createHref(resolved);
|
|
417
417
|
}
|
|
418
|
-
let [shouldPrefetch, prefetchRef, prefetchHandlers] =
|
|
418
|
+
let [shouldPrefetch, prefetchRef, prefetchHandlers] = _chunkKFNXW4ALjs.usePrefetchBehavior.call(void 0,
|
|
419
419
|
prefetch,
|
|
420
420
|
rest
|
|
421
421
|
);
|
|
@@ -446,13 +446,13 @@ var Link = React.forwardRef(
|
|
|
446
446
|
...prefetchHandlers,
|
|
447
447
|
href: (isSpaLink ? maskedHref : void 0) || parsed.absoluteURL || href,
|
|
448
448
|
onClick: isSpaLink ? handleClick : onClick,
|
|
449
|
-
ref:
|
|
449
|
+
ref: _chunkKFNXW4ALjs.mergeRefs.call(void 0, forwardedRef, prefetchRef),
|
|
450
450
|
target,
|
|
451
451
|
"data-discover": !isAbsolute && discover === "render" ? "true" : void 0
|
|
452
452
|
}
|
|
453
453
|
)
|
|
454
454
|
);
|
|
455
|
-
return shouldPrefetch && !isAbsolute ? /* @__PURE__ */ React.createElement(React.Fragment, null, link, /* @__PURE__ */ React.createElement(
|
|
455
|
+
return shouldPrefetch && !isAbsolute ? /* @__PURE__ */ React.createElement(React.Fragment, null, link, /* @__PURE__ */ React.createElement(_chunkKFNXW4ALjs.PrefetchPageLinks, { page: href })) : link;
|
|
456
456
|
}
|
|
457
457
|
);
|
|
458
458
|
Link.displayName = "Link";
|
|
@@ -468,10 +468,10 @@ var NavLink = React.forwardRef(
|
|
|
468
468
|
children,
|
|
469
469
|
...rest
|
|
470
470
|
}, ref) {
|
|
471
|
-
let path =
|
|
472
|
-
let location =
|
|
473
|
-
let routerState = React.useContext(
|
|
474
|
-
let { navigator, basename } = React.useContext(
|
|
471
|
+
let path = _chunkKFNXW4ALjs.useResolvedPath.call(void 0, to, { relative: rest.relative });
|
|
472
|
+
let location = _chunkKFNXW4ALjs.useLocation.call(void 0, );
|
|
473
|
+
let routerState = React.useContext(_chunkKFNXW4ALjs.DataRouterStateContext);
|
|
474
|
+
let { navigator, basename } = React.useContext(_chunkKFNXW4ALjs.NavigationContext);
|
|
475
475
|
let isTransitioning = routerState != null && // Conditional usage is OK here because the usage of a data router is static
|
|
476
476
|
// eslint-disable-next-line react-hooks/rules-of-hooks
|
|
477
477
|
useViewTransitionState(path) && viewTransition === true;
|
|
@@ -484,7 +484,7 @@ var NavLink = React.forwardRef(
|
|
|
484
484
|
toPathname = toPathname.toLowerCase();
|
|
485
485
|
}
|
|
486
486
|
if (nextLocationPathname && basename) {
|
|
487
|
-
nextLocationPathname =
|
|
487
|
+
nextLocationPathname = _chunkKFNXW4ALjs.stripBasename.call(void 0, nextLocationPathname, basename) || nextLocationPathname;
|
|
488
488
|
}
|
|
489
489
|
const endSlashPosition = toPathname !== "/" && toPathname.endsWith("/") ? toPathname.length - 1 : toPathname.length;
|
|
490
490
|
let isActive = locationPathname === toPathname || !end && locationPathname.startsWith(toPathname) && locationPathname.charAt(endSlashPosition) === "/";
|
|
@@ -540,7 +540,7 @@ var Form = React.forwardRef(
|
|
|
540
540
|
defaultShouldRevalidate,
|
|
541
541
|
...props
|
|
542
542
|
}, forwardedRef) => {
|
|
543
|
-
let { useTransitions } = React.useContext(
|
|
543
|
+
let { useTransitions } = React.useContext(_chunkKFNXW4ALjs.NavigationContext);
|
|
544
544
|
let submit = useSubmit();
|
|
545
545
|
let formAction = useFormAction(action, { relative });
|
|
546
546
|
let formMethod = method.toLowerCase() === "get" ? "get" : "post";
|
|
@@ -587,10 +587,10 @@ function ScrollRestoration({
|
|
|
587
587
|
storageKey,
|
|
588
588
|
...props
|
|
589
589
|
}) {
|
|
590
|
-
let remixContext = React.useContext(
|
|
591
|
-
let { basename } = React.useContext(
|
|
592
|
-
let location =
|
|
593
|
-
let matches =
|
|
590
|
+
let remixContext = React.useContext(_chunkKFNXW4ALjs.FrameworkContext);
|
|
591
|
+
let { basename } = React.useContext(_chunkKFNXW4ALjs.NavigationContext);
|
|
592
|
+
let location = _chunkKFNXW4ALjs.useLocation.call(void 0, );
|
|
593
|
+
let matches = _chunkKFNXW4ALjs.useMatches.call(void 0, );
|
|
594
594
|
useScrollRestoration({ getKey, storageKey });
|
|
595
595
|
let ssrKey = React.useMemo(
|
|
596
596
|
() => {
|
|
@@ -632,9 +632,9 @@ function ScrollRestoration({
|
|
|
632
632
|
...props,
|
|
633
633
|
suppressHydrationWarning: true,
|
|
634
634
|
dangerouslySetInnerHTML: {
|
|
635
|
-
__html: `(${restoreScroll})(${
|
|
635
|
+
__html: `(${restoreScroll})(${_chunkKFNXW4ALjs.escapeHtml.call(void 0,
|
|
636
636
|
JSON.stringify(storageKey || SCROLL_RESTORATION_STORAGE_KEY)
|
|
637
|
-
)}, ${
|
|
637
|
+
)}, ${_chunkKFNXW4ALjs.escapeHtml.call(void 0, JSON.stringify(ssrKey))})`
|
|
638
638
|
}
|
|
639
639
|
}
|
|
640
640
|
);
|
|
@@ -644,13 +644,13 @@ function getDataRouterConsoleError(hookName) {
|
|
|
644
644
|
return `${hookName} must be used within a data router. See https://reactrouter.com/en/main/routers/picking-a-router.`;
|
|
645
645
|
}
|
|
646
646
|
function useDataRouterContext(hookName) {
|
|
647
|
-
let ctx = React.useContext(
|
|
648
|
-
|
|
647
|
+
let ctx = React.useContext(_chunkKFNXW4ALjs.DataRouterContext);
|
|
648
|
+
_chunkKFNXW4ALjs.invariant.call(void 0, ctx, getDataRouterConsoleError(hookName));
|
|
649
649
|
return ctx;
|
|
650
650
|
}
|
|
651
651
|
function useDataRouterState(hookName) {
|
|
652
|
-
let state = React.useContext(
|
|
653
|
-
|
|
652
|
+
let state = React.useContext(_chunkKFNXW4ALjs.DataRouterStateContext);
|
|
653
|
+
_chunkKFNXW4ALjs.invariant.call(void 0, state, getDataRouterConsoleError(hookName));
|
|
654
654
|
return state;
|
|
655
655
|
}
|
|
656
656
|
function useLinkClickHandler(to, {
|
|
@@ -664,14 +664,14 @@ function useLinkClickHandler(to, {
|
|
|
664
664
|
defaultShouldRevalidate,
|
|
665
665
|
useTransitions
|
|
666
666
|
} = {}) {
|
|
667
|
-
let navigate =
|
|
668
|
-
let location =
|
|
669
|
-
let path =
|
|
667
|
+
let navigate = _chunkKFNXW4ALjs.useNavigate.call(void 0, );
|
|
668
|
+
let location = _chunkKFNXW4ALjs.useLocation.call(void 0, );
|
|
669
|
+
let path = _chunkKFNXW4ALjs.useResolvedPath.call(void 0, to, { relative });
|
|
670
670
|
return React.useCallback(
|
|
671
671
|
(event) => {
|
|
672
672
|
if (shouldProcessLinkClick(event, target)) {
|
|
673
673
|
event.preventDefault();
|
|
674
|
-
let replace = replaceProp !== void 0 ? replaceProp :
|
|
674
|
+
let replace = replaceProp !== void 0 ? replaceProp : _chunkKFNXW4ALjs.createPath.call(void 0, location) === _chunkKFNXW4ALjs.createPath.call(void 0, path);
|
|
675
675
|
let doNavigate = () => navigate(to, {
|
|
676
676
|
replace,
|
|
677
677
|
mask,
|
|
@@ -706,13 +706,13 @@ function useLinkClickHandler(to, {
|
|
|
706
706
|
);
|
|
707
707
|
}
|
|
708
708
|
function useSearchParams(defaultInit) {
|
|
709
|
-
|
|
709
|
+
_chunkKFNXW4ALjs.warning.call(void 0,
|
|
710
710
|
typeof URLSearchParams !== "undefined",
|
|
711
711
|
`You cannot use the \`useSearchParams\` hook in a browser that does not support the URLSearchParams API. If you need to support Internet Explorer 11, we recommend you load a polyfill such as https://github.com/ungap/url-search-params.`
|
|
712
712
|
);
|
|
713
713
|
let defaultSearchParamsRef = React.useRef(createSearchParams(defaultInit));
|
|
714
714
|
let hasSetSearchParamsRef = React.useRef(false);
|
|
715
|
-
let location =
|
|
715
|
+
let location = _chunkKFNXW4ALjs.useLocation.call(void 0, );
|
|
716
716
|
let searchParams = React.useMemo(
|
|
717
717
|
() => (
|
|
718
718
|
// Only merge in the defaults if we haven't yet called setSearchParams.
|
|
@@ -725,7 +725,7 @@ function useSearchParams(defaultInit) {
|
|
|
725
725
|
),
|
|
726
726
|
[location.search]
|
|
727
727
|
);
|
|
728
|
-
let navigate =
|
|
728
|
+
let navigate = _chunkKFNXW4ALjs.useNavigate.call(void 0, );
|
|
729
729
|
let setSearchParams = React.useCallback(
|
|
730
730
|
(nextInit, navigateOptions) => {
|
|
731
731
|
const newSearchParams = createSearchParams(
|
|
@@ -742,8 +742,8 @@ var fetcherId = 0;
|
|
|
742
742
|
var getUniqueFetcherId = () => `__${String(++fetcherId)}__`;
|
|
743
743
|
function useSubmit() {
|
|
744
744
|
let { router } = useDataRouterContext("useSubmit" /* UseSubmit */);
|
|
745
|
-
let { basename } = React.useContext(
|
|
746
|
-
let currentRouteId =
|
|
745
|
+
let { basename } = React.useContext(_chunkKFNXW4ALjs.NavigationContext);
|
|
746
|
+
let currentRouteId = _chunkKFNXW4ALjs.useRouteId.call(void 0, );
|
|
747
747
|
let routerFetch = router.fetch;
|
|
748
748
|
let routerNavigate = router.navigate;
|
|
749
749
|
return React.useCallback(
|
|
@@ -783,12 +783,12 @@ function useSubmit() {
|
|
|
783
783
|
);
|
|
784
784
|
}
|
|
785
785
|
function useFormAction(action, { relative } = {}) {
|
|
786
|
-
let { basename } = React.useContext(
|
|
787
|
-
let routeContext = React.useContext(
|
|
788
|
-
|
|
786
|
+
let { basename } = React.useContext(_chunkKFNXW4ALjs.NavigationContext);
|
|
787
|
+
let routeContext = React.useContext(_chunkKFNXW4ALjs.RouteContext);
|
|
788
|
+
_chunkKFNXW4ALjs.invariant.call(void 0, routeContext, "useFormAction must be used inside a RouteContext");
|
|
789
789
|
let [match] = routeContext.matches.slice(-1);
|
|
790
|
-
let path = { ...
|
|
791
|
-
let location =
|
|
790
|
+
let path = { ..._chunkKFNXW4ALjs.useResolvedPath.call(void 0, action ? action : ".", { relative }) };
|
|
791
|
+
let location = _chunkKFNXW4ALjs.useLocation.call(void 0, );
|
|
792
792
|
if (action == null) {
|
|
793
793
|
path.search = location.search;
|
|
794
794
|
let params = new URLSearchParams(path.search);
|
|
@@ -805,21 +805,21 @@ function useFormAction(action, { relative } = {}) {
|
|
|
805
805
|
path.search = path.search ? path.search.replace(/^\?/, "?index&") : "?index";
|
|
806
806
|
}
|
|
807
807
|
if (basename !== "/") {
|
|
808
|
-
path.pathname = path.pathname === "/" ? basename :
|
|
808
|
+
path.pathname = path.pathname === "/" ? basename : _chunkKFNXW4ALjs.joinPaths.call(void 0, [basename, path.pathname]);
|
|
809
809
|
}
|
|
810
|
-
return
|
|
810
|
+
return _chunkKFNXW4ALjs.createPath.call(void 0, path);
|
|
811
811
|
}
|
|
812
812
|
function useFetcher({
|
|
813
813
|
key
|
|
814
814
|
} = {}) {
|
|
815
815
|
let { router } = useDataRouterContext("useFetcher" /* UseFetcher */);
|
|
816
816
|
let state = useDataRouterState("useFetcher" /* UseFetcher */);
|
|
817
|
-
let fetcherData = React.useContext(
|
|
818
|
-
let route = React.useContext(
|
|
817
|
+
let fetcherData = React.useContext(_chunkKFNXW4ALjs.FetchersContext);
|
|
818
|
+
let route = React.useContext(_chunkKFNXW4ALjs.RouteContext);
|
|
819
819
|
let routeId = _optionalChain([route, 'access', _23 => _23.matches, 'access', _24 => _24[route.matches.length - 1], 'optionalAccess', _25 => _25.route, 'access', _26 => _26.id]);
|
|
820
|
-
|
|
821
|
-
|
|
822
|
-
|
|
820
|
+
_chunkKFNXW4ALjs.invariant.call(void 0, fetcherData, `useFetcher must be used inside a FetchersContext`);
|
|
821
|
+
_chunkKFNXW4ALjs.invariant.call(void 0, route, `useFetcher must be used inside a RouteContext`);
|
|
822
|
+
_chunkKFNXW4ALjs.invariant.call(void 0,
|
|
823
823
|
routeId != null,
|
|
824
824
|
`useFetcher can only be used on routes that contain a unique "id"`
|
|
825
825
|
);
|
|
@@ -835,7 +835,7 @@ function useFetcher({
|
|
|
835
835
|
}, [deleteFetcher, getFetcher, fetcherKey]);
|
|
836
836
|
let load = React.useCallback(
|
|
837
837
|
async (href, opts) => {
|
|
838
|
-
|
|
838
|
+
_chunkKFNXW4ALjs.invariant.call(void 0, routeId, "No routeId available for fetcher.load()");
|
|
839
839
|
await routerFetch(fetcherKey, routeId, href, opts);
|
|
840
840
|
},
|
|
841
841
|
[fetcherKey, routeId, routerFetch]
|
|
@@ -864,7 +864,7 @@ function useFetcher({
|
|
|
864
864
|
FetcherForm2.displayName = "fetcher.Form";
|
|
865
865
|
return FetcherForm2;
|
|
866
866
|
}, [fetcherKey]);
|
|
867
|
-
let fetcher = state.fetchers.get(fetcherKey) ||
|
|
867
|
+
let fetcher = state.fetchers.get(fetcherKey) || _chunkKFNXW4ALjs.IDLE_FETCHER;
|
|
868
868
|
let data = fetcherData.get(fetcherKey);
|
|
869
869
|
let fetcherWithComponents = React.useMemo(
|
|
870
870
|
() => ({
|
|
@@ -898,7 +898,7 @@ function getScrollRestorationKey(location, matches, basename, getKey) {
|
|
|
898
898
|
key = getKey(
|
|
899
899
|
{
|
|
900
900
|
...location,
|
|
901
|
-
pathname:
|
|
901
|
+
pathname: _chunkKFNXW4ALjs.stripBasename.call(void 0, location.pathname, basename) || location.pathname
|
|
902
902
|
},
|
|
903
903
|
matches
|
|
904
904
|
);
|
|
@@ -919,10 +919,10 @@ function useScrollRestoration({
|
|
|
919
919
|
let { restoreScrollPosition, preventScrollReset } = useDataRouterState(
|
|
920
920
|
"useScrollRestoration" /* UseScrollRestoration */
|
|
921
921
|
);
|
|
922
|
-
let { basename } = React.useContext(
|
|
923
|
-
let location =
|
|
924
|
-
let matches =
|
|
925
|
-
let navigation =
|
|
922
|
+
let { basename } = React.useContext(_chunkKFNXW4ALjs.NavigationContext);
|
|
923
|
+
let location = _chunkKFNXW4ALjs.useLocation.call(void 0, );
|
|
924
|
+
let matches = _chunkKFNXW4ALjs.useMatches.call(void 0, );
|
|
925
|
+
let navigation = _chunkKFNXW4ALjs.useNavigation.call(void 0, );
|
|
926
926
|
React.useEffect(() => {
|
|
927
927
|
window.history.scrollRestoration = "manual";
|
|
928
928
|
return () => {
|
|
@@ -941,7 +941,7 @@ function useScrollRestoration({
|
|
|
941
941
|
JSON.stringify(savedScrollPositions)
|
|
942
942
|
);
|
|
943
943
|
} catch (error) {
|
|
944
|
-
|
|
944
|
+
_chunkKFNXW4ALjs.warning.call(void 0,
|
|
945
945
|
false,
|
|
946
946
|
`Failed to save scroll positions in sessionStorage, <ScrollRestoration /> will not work properly (${error}).`
|
|
947
947
|
);
|
|
@@ -988,7 +988,7 @@ function useScrollRestoration({
|
|
|
988
988
|
}
|
|
989
989
|
}
|
|
990
990
|
} catch (e2) {
|
|
991
|
-
|
|
991
|
+
_chunkKFNXW4ALjs.warning.call(void 0,
|
|
992
992
|
false,
|
|
993
993
|
`"${location.hash.slice(
|
|
994
994
|
1
|
|
@@ -1026,7 +1026,7 @@ function usePrompt({
|
|
|
1026
1026
|
when,
|
|
1027
1027
|
message
|
|
1028
1028
|
}) {
|
|
1029
|
-
let blocker =
|
|
1029
|
+
let blocker = _chunkKFNXW4ALjs.useBlocker.call(void 0, when);
|
|
1030
1030
|
React.useEffect(() => {
|
|
1031
1031
|
if (blocker.state === "blocked") {
|
|
1032
1032
|
let proceed = window.confirm(message);
|
|
@@ -1044,21 +1044,21 @@ function usePrompt({
|
|
|
1044
1044
|
}, [blocker, when]);
|
|
1045
1045
|
}
|
|
1046
1046
|
function useViewTransitionState(to, { relative } = {}) {
|
|
1047
|
-
let vtContext = React.useContext(
|
|
1048
|
-
|
|
1047
|
+
let vtContext = React.useContext(_chunkKFNXW4ALjs.ViewTransitionContext);
|
|
1048
|
+
_chunkKFNXW4ALjs.invariant.call(void 0,
|
|
1049
1049
|
vtContext != null,
|
|
1050
1050
|
"`useViewTransitionState` must be used within `react-router-dom`'s `RouterProvider`. Did you accidentally import `RouterProvider` from `react-router`?"
|
|
1051
1051
|
);
|
|
1052
1052
|
let { basename } = useDataRouterContext(
|
|
1053
1053
|
"useViewTransitionState" /* useViewTransitionState */
|
|
1054
1054
|
);
|
|
1055
|
-
let path =
|
|
1055
|
+
let path = _chunkKFNXW4ALjs.useResolvedPath.call(void 0, to, { relative });
|
|
1056
1056
|
if (!vtContext.isTransitioning) {
|
|
1057
1057
|
return false;
|
|
1058
1058
|
}
|
|
1059
|
-
let currentPath =
|
|
1060
|
-
let nextPath =
|
|
1061
|
-
return
|
|
1059
|
+
let currentPath = _chunkKFNXW4ALjs.stripBasename.call(void 0, vtContext.currentLocation.pathname, basename) || vtContext.currentLocation.pathname;
|
|
1060
|
+
let nextPath = _chunkKFNXW4ALjs.stripBasename.call(void 0, vtContext.nextLocation.pathname, basename) || vtContext.nextLocation.pathname;
|
|
1061
|
+
return _chunkKFNXW4ALjs.matchPath.call(void 0, path.pathname, nextPath) != null || _chunkKFNXW4ALjs.matchPath.call(void 0, path.pathname, currentPath) != null;
|
|
1062
1062
|
}
|
|
1063
1063
|
|
|
1064
1064
|
// lib/dom/server.tsx
|
|
@@ -1069,7 +1069,7 @@ function StaticRouter({
|
|
|
1069
1069
|
location: locationProp = "/"
|
|
1070
1070
|
}) {
|
|
1071
1071
|
if (typeof locationProp === "string") {
|
|
1072
|
-
locationProp =
|
|
1072
|
+
locationProp = _chunkKFNXW4ALjs.parsePath.call(void 0, locationProp);
|
|
1073
1073
|
}
|
|
1074
1074
|
let action = "POP" /* Pop */;
|
|
1075
1075
|
let location = {
|
|
@@ -1082,7 +1082,7 @@ function StaticRouter({
|
|
|
1082
1082
|
};
|
|
1083
1083
|
let staticNavigator = getStatelessNavigator();
|
|
1084
1084
|
return /* @__PURE__ */ React2.createElement(
|
|
1085
|
-
|
|
1085
|
+
_chunkKFNXW4ALjs.Router,
|
|
1086
1086
|
{
|
|
1087
1087
|
basename,
|
|
1088
1088
|
children,
|
|
@@ -1100,7 +1100,7 @@ function StaticRouterProvider({
|
|
|
1100
1100
|
hydrate = true,
|
|
1101
1101
|
nonce
|
|
1102
1102
|
}) {
|
|
1103
|
-
|
|
1103
|
+
_chunkKFNXW4ALjs.invariant.call(void 0,
|
|
1104
1104
|
router && context,
|
|
1105
1105
|
"You must provide `router` and `context` to <StaticRouterProvider>"
|
|
1106
1106
|
);
|
|
@@ -1119,12 +1119,12 @@ function StaticRouterProvider({
|
|
|
1119
1119
|
actionData: context.actionData,
|
|
1120
1120
|
errors: serializeErrors(context.errors)
|
|
1121
1121
|
};
|
|
1122
|
-
let json =
|
|
1122
|
+
let json = _chunkKFNXW4ALjs.escapeHtml.call(void 0, JSON.stringify(JSON.stringify(data)));
|
|
1123
1123
|
hydrateScript = `window.__staticRouterHydrationData = JSON.parse(${json});`;
|
|
1124
1124
|
}
|
|
1125
1125
|
let { state } = dataRouterContext.router;
|
|
1126
|
-
return /* @__PURE__ */ React2.createElement(React2.Fragment, null, /* @__PURE__ */ React2.createElement(
|
|
1127
|
-
|
|
1126
|
+
return /* @__PURE__ */ React2.createElement(React2.Fragment, null, /* @__PURE__ */ React2.createElement(_chunkKFNXW4ALjs.DataRouterContext.Provider, { value: dataRouterContext }, /* @__PURE__ */ React2.createElement(_chunkKFNXW4ALjs.DataRouterStateContext.Provider, { value: state }, /* @__PURE__ */ React2.createElement(_chunkKFNXW4ALjs.FetchersContext.Provider, { value: fetchersContext }, /* @__PURE__ */ React2.createElement(_chunkKFNXW4ALjs.ViewTransitionContext.Provider, { value: { isTransitioning: false } }, /* @__PURE__ */ React2.createElement(
|
|
1127
|
+
_chunkKFNXW4ALjs.Router,
|
|
1128
1128
|
{
|
|
1129
1129
|
basename: dataRouterContext.basename,
|
|
1130
1130
|
location: state.location,
|
|
@@ -1134,7 +1134,7 @@ function StaticRouterProvider({
|
|
|
1134
1134
|
useTransitions: false
|
|
1135
1135
|
},
|
|
1136
1136
|
/* @__PURE__ */ React2.createElement(
|
|
1137
|
-
|
|
1137
|
+
_chunkKFNXW4ALjs.DataRoutes,
|
|
1138
1138
|
{
|
|
1139
1139
|
manifest: router.manifest,
|
|
1140
1140
|
routes: router.routes,
|
|
@@ -1157,7 +1157,7 @@ function serializeErrors(errors) {
|
|
|
1157
1157
|
let entries = Object.entries(errors);
|
|
1158
1158
|
let serialized = {};
|
|
1159
1159
|
for (let [key, val] of entries) {
|
|
1160
|
-
if (
|
|
1160
|
+
if (_chunkKFNXW4ALjs.isRouteErrorResponse.call(void 0, val)) {
|
|
1161
1161
|
serialized[key] = { ...val, __type: "RouteErrorResponse" };
|
|
1162
1162
|
} else if (val instanceof Error) {
|
|
1163
1163
|
serialized[key] = {
|
|
@@ -1207,16 +1207,16 @@ function getStatelessNavigator() {
|
|
|
1207
1207
|
};
|
|
1208
1208
|
}
|
|
1209
1209
|
function createStaticHandler2(routes, opts) {
|
|
1210
|
-
return
|
|
1210
|
+
return _chunkKFNXW4ALjs.createStaticHandler.call(void 0, routes, {
|
|
1211
1211
|
...opts,
|
|
1212
|
-
mapRouteProperties:
|
|
1212
|
+
mapRouteProperties: _chunkKFNXW4ALjs.mapRouteProperties
|
|
1213
1213
|
});
|
|
1214
1214
|
}
|
|
1215
1215
|
function createStaticRouter(routes, context, opts = {}) {
|
|
1216
1216
|
let manifest = {};
|
|
1217
|
-
let dataRoutes =
|
|
1217
|
+
let dataRoutes = _chunkKFNXW4ALjs.convertRoutesToDataRoutes.call(void 0,
|
|
1218
1218
|
routes,
|
|
1219
|
-
|
|
1219
|
+
_chunkKFNXW4ALjs.mapRouteProperties,
|
|
1220
1220
|
void 0,
|
|
1221
1221
|
manifest
|
|
1222
1222
|
);
|
|
@@ -1250,7 +1250,7 @@ function createStaticRouter(routes, context, opts = {}) {
|
|
|
1250
1250
|
errors: context.errors,
|
|
1251
1251
|
initialized: true,
|
|
1252
1252
|
renderFallback: false,
|
|
1253
|
-
navigation:
|
|
1253
|
+
navigation: _chunkKFNXW4ALjs.IDLE_NAVIGATION,
|
|
1254
1254
|
restoreScrollPosition: null,
|
|
1255
1255
|
preventScrollReset: false,
|
|
1256
1256
|
revalidation: "idle",
|
|
@@ -1291,7 +1291,7 @@ function createStaticRouter(routes, context, opts = {}) {
|
|
|
1291
1291
|
createHref,
|
|
1292
1292
|
encodeLocation,
|
|
1293
1293
|
getFetcher() {
|
|
1294
|
-
return
|
|
1294
|
+
return _chunkKFNXW4ALjs.IDLE_FETCHER;
|
|
1295
1295
|
},
|
|
1296
1296
|
deleteFetcher() {
|
|
1297
1297
|
throw msg("deleteFetcher");
|
|
@@ -1303,7 +1303,7 @@ function createStaticRouter(routes, context, opts = {}) {
|
|
|
1303
1303
|
throw msg("dispose");
|
|
1304
1304
|
},
|
|
1305
1305
|
getBlocker() {
|
|
1306
|
-
return
|
|
1306
|
+
return _chunkKFNXW4ALjs.IDLE_BLOCKER;
|
|
1307
1307
|
},
|
|
1308
1308
|
deleteBlocker() {
|
|
1309
1309
|
throw msg("deleteBlocker");
|
|
@@ -1321,10 +1321,10 @@ function createStaticRouter(routes, context, opts = {}) {
|
|
|
1321
1321
|
};
|
|
1322
1322
|
}
|
|
1323
1323
|
function createHref(to) {
|
|
1324
|
-
return typeof to === "string" ? to :
|
|
1324
|
+
return typeof to === "string" ? to : _chunkKFNXW4ALjs.createPath.call(void 0, to);
|
|
1325
1325
|
}
|
|
1326
1326
|
function encodeLocation(to) {
|
|
1327
|
-
let href = typeof to === "string" ? to :
|
|
1327
|
+
let href = typeof to === "string" ? to : _chunkKFNXW4ALjs.createPath.call(void 0, to);
|
|
1328
1328
|
href = href.replace(/ $/, "%20");
|
|
1329
1329
|
let encoded = ABSOLUTE_URL_REGEX2.test(href) ? new URL(href) : new URL(href, "http://localhost");
|
|
1330
1330
|
return {
|
|
@@ -896,7 +896,7 @@ interface RouterProviderProps {
|
|
|
896
896
|
* and is only present for render errors.
|
|
897
897
|
*
|
|
898
898
|
* ```tsx
|
|
899
|
-
* <RouterProvider onError=(error, info) => {
|
|
899
|
+
* <RouterProvider onError={(error, info) => {
|
|
900
900
|
* let { location, params, pattern, errorInfo } = info;
|
|
901
901
|
* console.error(error, location, errorInfo);
|
|
902
902
|
* reportToErrorService(error, location, errorInfo);
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import * as React from 'react';
|
|
2
|
-
import { a as RouterProviderProps$1, R as RouterInit, C as ClientInstrumentation, b as ClientOnErrorFunction } from './context-
|
|
3
|
-
export { D as unstable_DecodeActionFunction, a as unstable_DecodeFormStateFunction, b as unstable_DecodeReplyFunction, R as unstable_RSCHydratedRouter, d as unstable_RSCManifestPayload, e as unstable_RSCPayload, f as unstable_RSCRenderPayload, c as unstable_createCallServer } from './browser-
|
|
2
|
+
import { a as RouterProviderProps$1, R as RouterInit, C as ClientInstrumentation, b as ClientOnErrorFunction } from './context-CmHpk1Ws.mjs';
|
|
3
|
+
export { D as unstable_DecodeActionFunction, a as unstable_DecodeFormStateFunction, b as unstable_DecodeReplyFunction, R as unstable_RSCHydratedRouter, d as unstable_RSCManifestPayload, e as unstable_RSCPayload, f as unstable_RSCRenderPayload, c as unstable_createCallServer } from './browser-CGcs-0pD.mjs';
|
|
4
4
|
import './data-U8FS-wNn.mjs';
|
|
5
5
|
|
|
6
6
|
type RouterProviderProps = Omit<RouterProviderProps$1, "flushSync">;
|
|
@@ -82,7 +82,7 @@ interface HydratedRouterProps {
|
|
|
82
82
|
* and is only present for render errors.
|
|
83
83
|
*
|
|
84
84
|
* ```tsx
|
|
85
|
-
* <HydratedRouter onError=(error, info) => {
|
|
85
|
+
* <HydratedRouter onError={(error, info) => {
|
|
86
86
|
* let { location, params, pattern, errorInfo } = info;
|
|
87
87
|
* console.error(error, location, errorInfo);
|
|
88
88
|
* reportToErrorService(error, location, errorInfo);
|
|
@@ -83,7 +83,7 @@ interface HydratedRouterProps {
|
|
|
83
83
|
* and is only present for render errors.
|
|
84
84
|
*
|
|
85
85
|
* ```tsx
|
|
86
|
-
* <HydratedRouter onError=(error, info) => {
|
|
86
|
+
* <HydratedRouter onError={(error, info) => {
|
|
87
87
|
* let { location, params, pattern, errorInfo } = info;
|
|
88
88
|
* console.error(error, location, errorInfo);
|
|
89
89
|
* reportToErrorService(error, location, errorInfo);
|