Ignore:
Timestamp:
12/12/24 17:06:06 (5 weeks ago)
Author:
stefan toskovski <stefantoska84@…>
Branches:
main
Parents:
d565449
Message:

Pred finalna verzija

Location:
imaps-frontend/node_modules/react-router-dom
Files:
16 edited

Legend:

Unmodified
Added
Removed
  • imaps-frontend/node_modules/react-router-dom/CHANGELOG.md

    rd565449 r0c6b92a  
    11# `react-router-dom`
     2
     3## 6.28.0
     4
     5### Minor Changes
     6
     7- - Log deprecation warnings for v7 flags ([#11750](https://github.com/remix-run/react-router/pull/11750))
     8  - Add deprecation warnings to `json`/`defer` in favor of returning raw objects
     9    - These methods will be removed in React Router v7
     10
     11### Patch Changes
     12
     13- Update JSDoc URLs for new website structure (add /v6/ segment) ([#12141](https://github.com/remix-run/react-router/pull/12141))
     14- Updated dependencies:
     15  - `react-router@6.28.0`
     16  - `@remix-run/router@1.21.0`
     17
     18## 6.27.0
     19
     20### Minor Changes
     21
     22- Stabilize `unstable_patchRoutesOnNavigation` ([#11973](https://github.com/remix-run/react-router/pull/11973))
     23  - Add new `PatchRoutesOnNavigationFunctionArgs` type for convenience ([#11967](https://github.com/remix-run/react-router/pull/11967))
     24- Stabilize `unstable_dataStrategy` ([#11974](https://github.com/remix-run/react-router/pull/11974))
     25- Stabilize the `unstable_flushSync` option for navigations and fetchers ([#11989](https://github.com/remix-run/react-router/pull/11989))
     26- Stabilize the `unstable_viewTransition` option for navigations and the corresponding `unstable_useViewTransitionState` hook ([#11989](https://github.com/remix-run/react-router/pull/11989))
     27
     28### Patch Changes
     29
     30- Fix bug when submitting to the current contextual route (parent route with an index child) when an `?index` param already exists from a prior submission ([#12003](https://github.com/remix-run/react-router/pull/12003))
     31
     32- Fix `useFormAction` bug - when removing `?index` param it would not keep other non-Remix `index` params ([#12003](https://github.com/remix-run/react-router/pull/12003))
     33
     34- Fix types for `RouteObject` within `PatchRoutesOnNavigationFunction`'s `patch` method so it doesn't expect agnostic route objects passed to `patch` ([#11967](https://github.com/remix-run/react-router/pull/11967))
     35
     36- Updated dependencies:
     37  - `react-router@6.27.0`
     38  - `@remix-run/router@1.20.0`
     39
     40## 6.26.2
     41
     42### Patch Changes
     43
     44- Updated dependencies:
     45  - `@remix-run/router@1.19.2`
     46  - `react-router@6.26.2`
     47
     48## 6.26.1
     49
     50### Patch Changes
     51
     52- Rename `unstable_patchRoutesOnMiss` to `unstable_patchRoutesOnNavigation` to match new behavior ([#11888](https://github.com/remix-run/react-router/pull/11888))
     53- Updated dependencies:
     54  - `@remix-run/router@1.19.1`
     55  - `react-router@6.26.1`
    256
    357## 6.26.0
     
    55109- Add support for Lazy Route Discovery (a.k.a. Fog of War) ([#11626](https://github.com/remix-run/react-router/pull/11626))
    56110  - RFC: <https://github.com/remix-run/react-router/discussions/11113>
    57   - `unstable_patchRoutesOnMiss` docs: <https://reactrouter.com/en/main/routers/create-browser-router>
     111  - `unstable_patchRoutesOnMiss` docs: <https://reactrouter.com/v6/routers/create-browser-router>
    58112
    59113### Patch Changes
     
    521575### Minor Changes
    522576
    523 - Move [`React.startTransition`](https://react.dev/reference/react/startTransition) usage behind a [future flag](https://reactrouter.com/en/main/guides/api-development-strategy) to avoid issues with existing incompatible `Suspense` usages. We recommend folks adopting this flag to be better compatible with React concurrent mode, but if you run into issues you can continue without the use of `startTransition` until v7. Issues usually boils down to creating net-new promises during the render cycle, so if you run into issues you should either lift your promise creation out of the render cycle or put it behind a `useMemo`. ([#10596](https://github.com/remix-run/react-router/pull/10596))
     577- Move [`React.startTransition`](https://react.dev/reference/react/startTransition) usage behind a [future flag](https://reactrouter.com/v6/guides/api-development-strategy) to avoid issues with existing incompatible `Suspense` usages. We recommend folks adopting this flag to be better compatible with React concurrent mode, but if you run into issues you can continue without the use of `startTransition` until v7. Issues usually boils down to creating net-new promises during the render cycle, so if you run into issues you should either lift your promise creation out of the render cycle or put it behind a `useMemo`. ([#10596](https://github.com/remix-run/react-router/pull/10596))
    524578
    525579  Existing behavior will no longer include `React.startTransition`:
     
    612666### Minor Changes
    613667
    614 - Added support for [**Future Flags**](https://reactrouter.com/en/main/guides/api-development-strategy) in React Router. The first flag being introduced is `future.v7_normalizeFormMethod` which will normalize the exposed `useNavigation()/useFetcher()` `formMethod` fields as uppercase HTTP methods to align with the `fetch()` behavior. ([#10207](https://github.com/remix-run/react-router/pull/10207))
     668- Added support for [**Future Flags**](https://reactrouter.com/v6/guides/api-development-strategy) in React Router. The first flag being introduced is `future.v7_normalizeFormMethod` which will normalize the exposed `useNavigation()/useFetcher()` `formMethod` fields as uppercase HTTP methods to align with the `fetch()` behavior. ([#10207](https://github.com/remix-run/react-router/pull/10207))
    615669
    616670  - When `future.v7_normalizeFormMethod === false` (default v6 behavior),
     
    886940## 6.4.0
    887941
    888 Whoa this is a big one! `6.4.0` brings all the data loading and mutation APIs over from Remix. Here's a quick high level overview, but it's recommended you go check out the [docs](https://reactrouter.com), especially the [feature overview](https://reactrouter.com/start/overview) and the [tutorial](https://reactrouter.com/start/tutorial).
     942Whoa this is a big one! `6.4.0` brings all the data loading and mutation APIs over from Remix. Here's a quick high level overview, but it's recommended you go check out the [docs](https://reactrouter.com), especially the [feature overview](https://reactrouter.com/en/6.4.0/start/overview) and the [tutorial](https://reactrouter.com/en/6.4.0/start/tutorial).
    889943
    890944**New APIs**
  • imaps-frontend/node_modules/react-router-dom/README.md

    rd565449 r0c6b92a  
    33The `react-router-dom` package contains bindings for using [React
    44Router](https://github.com/remix-run/react-router) in web applications.
    5 Please see [the Getting Started guide](https://reactrouter.com/en/main/start/tutorial) for more information on how to get started with React Router.
     5Please see [the Getting Started guide](https://reactrouter.com/v6/start/tutorial) for more information on how to get started with React Router.
  • imaps-frontend/node_modules/react-router-dom/dist/dom.d.ts

    rd565449 r0c6b92a  
    7474     * Enable flushSync for this submission's state updates
    7575     */
    76     unstable_flushSync?: boolean;
     76    flushSync?: boolean;
    7777}
    7878/**
     
    106106     * Enable view transitions on this submission navigation
    107107     */
    108     unstable_viewTransition?: boolean;
     108    viewTransition?: boolean;
    109109}
    110110export declare function getFormSubmissionInfo(target: SubmitTarget, basename: string): {
  • imaps-frontend/node_modules/react-router-dom/dist/index.d.ts

    rd565449 r0c6b92a  
    44 */
    55import * as React from "react";
    6 import type { FutureConfig, Location, NavigateOptions, RelativeRoutingType, RouteObject, RouterProviderProps, To, unstable_PatchRoutesOnMissFunction } from "react-router";
    7 import type { unstable_DataStrategyFunction, unstable_DataStrategyFunctionArgs, unstable_DataStrategyMatch, Fetcher, FormEncType, FormMethod, FutureConfig as RouterFutureConfig, GetScrollRestorationKeyFunction, History, HTMLFormMethod, HydrationState, Router as RemixRouter, V7_FormMethod, BlockerFunction } from "@remix-run/router";
     6import type { FutureConfig, Location, NavigateOptions, RelativeRoutingType, RouteObject, RouterProviderProps, To, DataStrategyFunction, PatchRoutesOnNavigationFunction } from "react-router";
     7import type { Fetcher, FormEncType, FormMethod, FutureConfig as RouterFutureConfig, GetScrollRestorationKeyFunction, History, HTMLFormMethod, HydrationState, Router as RemixRouter, V7_FormMethod, BlockerFunction } from "@remix-run/router";
    88import { UNSAFE_ErrorResponseImpl as ErrorResponseImpl } from "@remix-run/router";
    99import type { SubmitOptions, ParamKeyValuePair, URLSearchParamsInit, SubmitTarget, FetcherSubmitOptions } from "./dom";
    1010import { createSearchParams } from "./dom";
    11 export type { unstable_DataStrategyFunction, unstable_DataStrategyFunctionArgs, unstable_DataStrategyMatch, FormEncType, FormMethod, GetScrollRestorationKeyFunction, ParamKeyValuePair, SubmitOptions, URLSearchParamsInit, V7_FormMethod, };
     11export type { FormEncType, FormMethod, GetScrollRestorationKeyFunction, ParamKeyValuePair, SubmitOptions, URLSearchParamsInit, V7_FormMethod, };
    1212export { createSearchParams, ErrorResponseImpl as UNSAFE_ErrorResponseImpl };
    13 export type { ActionFunction, ActionFunctionArgs, AwaitProps, Blocker, BlockerFunction, DataRouteMatch, DataRouteObject, ErrorResponse, Fetcher, FutureConfig, Hash, IndexRouteObject, IndexRouteProps, JsonFunction, LazyRouteFunction, LayoutRouteProps, LoaderFunction, LoaderFunctionArgs, Location, MemoryRouterProps, NavigateFunction, NavigateOptions, NavigateProps, Navigation, Navigator, NonIndexRouteObject, OutletProps, Params, ParamParseKey, Path, PathMatch, Pathname, PathParam, PathPattern, PathRouteProps, RedirectFunction, RelativeRoutingType, RouteMatch, RouteObject, RouteProps, RouterProps, RouterProviderProps, RoutesProps, Search, ShouldRevalidateFunction, ShouldRevalidateFunctionArgs, To, UIMatch, unstable_HandlerResult, unstable_PatchRoutesOnMissFunction, } from "react-router";
     13export type { ActionFunction, ActionFunctionArgs, AwaitProps, Blocker, BlockerFunction, DataRouteMatch, DataRouteObject, DataStrategyFunction, DataStrategyFunctionArgs, DataStrategyMatch, DataStrategyResult, ErrorResponse, Fetcher, FutureConfig, Hash, IndexRouteObject, IndexRouteProps, JsonFunction, LazyRouteFunction, LayoutRouteProps, LoaderFunction, LoaderFunctionArgs, Location, MemoryRouterProps, NavigateFunction, NavigateOptions, NavigateProps, Navigation, Navigator, NonIndexRouteObject, OutletProps, Params, ParamParseKey, PatchRoutesOnNavigationFunction, PatchRoutesOnNavigationFunctionArgs, Path, PathMatch, Pathname, PathParam, PathPattern, PathRouteProps, RedirectFunction, RelativeRoutingType, RouteMatch, RouteObject, RouteProps, RouterProps, RouterProviderProps, RoutesProps, Search, ShouldRevalidateFunction, ShouldRevalidateFunctionArgs, To, UIMatch, } from "react-router";
    1414export { AbortedDeferredError, Await, MemoryRouter, Navigate, NavigationType, Outlet, Route, Router, Routes, createMemoryRouter, createPath, createRoutesFromChildren, createRoutesFromElements, defer, isRouteErrorResponse, generatePath, json, matchPath, matchRoutes, parsePath, redirect, redirectDocument, replace, renderMatches, resolvePath, useActionData, useAsyncError, useAsyncValue, useBlocker, useHref, useInRouterContext, useLoaderData, useLocation, useMatch, useMatches, useNavigate, useNavigation, useNavigationType, useOutlet, useOutletContext, useParams, useResolvedPath, useRevalidator, useRouteError, useRouteLoaderData, useRoutes, } from "react-router";
    1515/** @internal */
     
    2626    future?: Partial<Omit<RouterFutureConfig, "v7_prependBasename">>;
    2727    hydrationData?: HydrationState;
    28     unstable_dataStrategy?: unstable_DataStrategyFunction;
    29     unstable_patchRoutesOnMiss?: unstable_PatchRoutesOnMissFunction;
     28    dataStrategy?: DataStrategyFunction;
     29    patchRoutesOnNavigation?: PatchRoutesOnNavigationFunction;
    3030    window?: Window;
    3131}
     
    100100    relative?: RelativeRoutingType;
    101101    to: To;
    102     unstable_viewTransition?: boolean;
     102    viewTransition?: boolean;
    103103}
    104104/**
     
    191191     * Enable view transitions on this Form navigation
    192192     */
    193     unstable_viewTransition?: boolean;
     193    viewTransition?: boolean;
    194194}
    195195/**
     
    217217 * use in our exported `<Link>`.
    218218 */
    219 export declare function useLinkClickHandler<E extends Element = HTMLAnchorElement>(to: To, { target, replace: replaceProp, state, preventScrollReset, relative, unstable_viewTransition, }?: {
     219export declare function useLinkClickHandler<E extends Element = HTMLAnchorElement>(to: To, { target, replace: replaceProp, state, preventScrollReset, relative, viewTransition, }?: {
    220220    target?: React.HTMLAttributeAnchorTarget;
    221221    replace?: boolean;
     
    223223    preventScrollReset?: boolean;
    224224    relative?: RelativeRoutingType;
    225     unstable_viewTransition?: boolean;
     225    viewTransition?: boolean;
    226226}): (event: React.MouseEvent<E, MouseEvent>) => void;
    227227/**
     
    269269    submit: FetcherSubmitFunction;
    270270    load: (href: string, opts?: {
    271         unstable_flushSync?: boolean;
     271        flushSync?: boolean;
    272272    }) => void;
    273273};
     
    329329    relative?: RelativeRoutingType;
    330330}): boolean;
    331 export { useViewTransitionState as unstable_useViewTransitionState };
     331export { useViewTransitionState as useViewTransitionState };
  • imaps-frontend/node_modules/react-router-dom/dist/index.js

    rd565449 r0c6b92a  
    11/**
    2  * React Router DOM v6.26.0
     2 * React Router DOM v6.28.0
    33 *
    44 * Copyright (c) Remix Software Inc.
     
    1111import * as React from 'react';
    1212import * as ReactDOM from 'react-dom';
    13 import { UNSAFE_mapRouteProperties, UNSAFE_DataRouterContext, UNSAFE_DataRouterStateContext, Router, UNSAFE_useRoutesImpl, UNSAFE_NavigationContext, useHref, useResolvedPath, useLocation, useNavigate, createPath, UNSAFE_useRouteId, UNSAFE_RouteContext, useMatches, useNavigation, useBlocker } from 'react-router';
     13import { UNSAFE_mapRouteProperties, UNSAFE_logV6DeprecationWarnings, UNSAFE_DataRouterContext, UNSAFE_DataRouterStateContext, Router, UNSAFE_useRoutesImpl, UNSAFE_NavigationContext, useHref, useResolvedPath, useLocation, useNavigate, createPath, UNSAFE_useRouteId, UNSAFE_RouteContext, useMatches, useNavigation, useBlocker } from 'react-router';
    1414export { AbortedDeferredError, Await, MemoryRouter, Navigate, NavigationType, Outlet, Route, Router, Routes, UNSAFE_DataRouterContext, UNSAFE_DataRouterStateContext, UNSAFE_LocationContext, UNSAFE_NavigationContext, UNSAFE_RouteContext, UNSAFE_useRouteId, createMemoryRouter, createPath, createRoutesFromChildren, createRoutesFromElements, defer, generatePath, isRouteErrorResponse, json, matchPath, matchRoutes, parsePath, redirect, redirectDocument, renderMatches, replace, resolvePath, useActionData, useAsyncError, useAsyncValue, useBlocker, useHref, useInRouterContext, useLoaderData, useLocation, useMatch, useMatches, useNavigate, useNavigation, useNavigationType, useOutlet, useOutletContext, useParams, useResolvedPath, useRevalidator, useRouteError, useRouteLoaderData, useRoutes } from 'react-router';
    1515import { stripBasename, UNSAFE_warning, createRouter, createBrowserHistory, createHashHistory, UNSAFE_ErrorResponseImpl, UNSAFE_invariant, joinPaths, IDLE_FETCHER, matchPath } from '@remix-run/router';
     
    209209}
    210210
    211 const _excluded = ["onClick", "relative", "reloadDocument", "replace", "state", "target", "to", "preventScrollReset", "unstable_viewTransition"],
    212   _excluded2 = ["aria-current", "caseSensitive", "className", "end", "style", "to", "unstable_viewTransition", "children"],
    213   _excluded3 = ["fetcherKey", "navigate", "reloadDocument", "replace", "state", "method", "action", "onSubmit", "relative", "preventScrollReset", "unstable_viewTransition"];
     211const _excluded = ["onClick", "relative", "reloadDocument", "replace", "state", "target", "to", "preventScrollReset", "viewTransition"],
     212  _excluded2 = ["aria-current", "caseSensitive", "className", "end", "style", "to", "viewTransition", "children"],
     213  _excluded3 = ["fetcherKey", "navigate", "reloadDocument", "replace", "state", "method", "action", "onSubmit", "relative", "preventScrollReset", "viewTransition"];
    214214// HEY YOU! DON'T TOUCH THIS VARIABLE!
    215215//
     
    239239    routes,
    240240    mapRouteProperties: UNSAFE_mapRouteProperties,
    241     unstable_dataStrategy: opts == null ? void 0 : opts.unstable_dataStrategy,
    242     unstable_patchRoutesOnMiss: opts == null ? void 0 : opts.unstable_patchRoutesOnMiss,
     241    dataStrategy: opts == null ? void 0 : opts.dataStrategy,
     242    patchRoutesOnNavigation: opts == null ? void 0 : opts.patchRoutesOnNavigation,
    243243    window: opts == null ? void 0 : opts.window
    244244  }).initialize();
     
    256256    routes,
    257257    mapRouteProperties: UNSAFE_mapRouteProperties,
    258     unstable_dataStrategy: opts == null ? void 0 : opts.unstable_dataStrategy,
    259     unstable_patchRoutesOnMiss: opts == null ? void 0 : opts.unstable_patchRoutesOnMiss,
     258    dataStrategy: opts == null ? void 0 : opts.dataStrategy,
     259    patchRoutesOnNavigation: opts == null ? void 0 : opts.patchRoutesOnNavigation,
    260260    window: opts == null ? void 0 : opts.window
    261261  }).initialize();
     
    415415    let {
    416416      deletedFetchers,
    417       unstable_flushSync: flushSync,
    418       unstable_viewTransitionOpts: viewTransitionOpts
     417      flushSync: flushSync,
     418      viewTransitionOpts: viewTransitionOpts
    419419    } = _ref2;
    420420    deletedFetchers.forEach(key => fetcherData.current.delete(key));
     
    575575    v7_relativeSplatPath: router.future.v7_relativeSplatPath
    576576  }), [router.future.v7_relativeSplatPath]);
     577  React.useEffect(() => UNSAFE_logV6DeprecationWarnings(future, router.future), [future, router.future]);
    577578  // The fragment and {null} here are important!  We need them to keep React 18's
    578579  // useId happy when we are server-rendering since we may have a <script> here
     
    640641  }, [setStateImpl, v7_startTransition]);
    641642  React.useLayoutEffect(() => history.listen(setState), [history, setState]);
     643  React.useEffect(() => UNSAFE_logV6DeprecationWarnings(future), [future]);
    642644  return /*#__PURE__*/React.createElement(Router, {
    643645    basename: basename,
     
    679681  }, [setStateImpl, v7_startTransition]);
    680682  React.useLayoutEffect(() => history.listen(setState), [history, setState]);
     683  React.useEffect(() => UNSAFE_logV6DeprecationWarnings(future), [future]);
    681684  return /*#__PURE__*/React.createElement(Router, {
    682685    basename: basename,
     
    712715  }, [setStateImpl, v7_startTransition]);
    713716  React.useLayoutEffect(() => history.listen(setState), [history, setState]);
     717  React.useEffect(() => UNSAFE_logV6DeprecationWarnings(future), [future]);
    714718  return /*#__PURE__*/React.createElement(Router, {
    715719    basename: basename,
     
    739743      to,
    740744      preventScrollReset,
    741       unstable_viewTransition
     745      viewTransition
    742746    } = _ref7,
    743747    rest = _objectWithoutPropertiesLoose(_ref7, _excluded);
     
    779783    preventScrollReset,
    780784    relative,
    781     unstable_viewTransition
     785    viewTransition
    782786  });
    783787  function handleClick(event) {
     
    812816      style: styleProp,
    813817      to,
    814       unstable_viewTransition,
     818      viewTransition,
    815819      children
    816820    } = _ref8,
     
    828832  // Conditional usage is OK here because the usage of a data router is static
    829833  // eslint-disable-next-line react-hooks/rules-of-hooks
    830   useViewTransitionState(path) && unstable_viewTransition === true;
     834  useViewTransitionState(path) && viewTransition === true;
    831835  let toPathname = navigator.encodeLocation ? navigator.encodeLocation(path).pathname : path.pathname;
    832836  let locationPathname = location.pathname;
     
    872876    style: style,
    873877    to: to,
    874     unstable_viewTransition: unstable_viewTransition
     878    viewTransition: viewTransition
    875879  }), typeof children === "function" ? children(renderProps) : children);
    876880});
     
    896900      relative,
    897901      preventScrollReset,
    898       unstable_viewTransition
     902      viewTransition
    899903    } = _ref9,
    900904    props = _objectWithoutPropertiesLoose(_ref9, _excluded3);
     
    918922      relative,
    919923      preventScrollReset,
    920       unstable_viewTransition
     924      viewTransition
    921925    });
    922926  };
     
    969973// Internal hooks
    970974function getDataRouterConsoleError(hookName) {
    971   return hookName + " must be used within a data router.  See https://reactrouter.com/routers/picking-a-router.";
     975  return hookName + " must be used within a data router.  See https://reactrouter.com/v6/routers/picking-a-router.";
    972976}
    973977function useDataRouterContext(hookName) {
     
    994998    preventScrollReset,
    995999    relative,
    996     unstable_viewTransition
     1000    viewTransition
    9971001  } = _temp === void 0 ? {} : _temp;
    9981002  let navigate = useNavigate();
     
    10121016        preventScrollReset,
    10131017        relative,
    1014         unstable_viewTransition
     1018        viewTransition
    10151019      });
    10161020    }
    1017   }, [location, navigate, path, replaceProp, state, target, to, preventScrollReset, relative, unstable_viewTransition]);
     1021  }, [location, navigate, path, replaceProp, state, target, to, preventScrollReset, relative, viewTransition]);
    10181022}
    10191023/**
     
    10781082        formMethod: options.method || method,
    10791083        formEncType: options.encType || encType,
    1080         unstable_flushSync: options.unstable_flushSync
     1084        flushSync: options.flushSync
    10811085      });
    10821086    } else {
     
    10901094        state: options.state,
    10911095        fromRouteId: currentRouteId,
    1092         unstable_flushSync: options.unstable_flushSync,
    1093         unstable_viewTransition: options.unstable_viewTransition
     1096        flushSync: options.flushSync,
     1097        viewTransition: options.viewTransition
    10941098      });
    10951099    }
     
    11251129    // on match.route.index below
    11261130    let params = new URLSearchParams(path.search);
    1127     if (params.has("index") && params.get("index") === "") {
     1131    let indexValues = params.getAll("index");
     1132    let hasNakedIndexParam = indexValues.some(v => v === "");
     1133    if (hasNakedIndexParam) {
    11281134      params.delete("index");
    1129       path.search = params.toString() ? "?" + params.toString() : "";
     1135      indexValues.filter(v => v).forEach(v => params.append("index", v));
     1136      let qs = params.toString();
     1137      path.search = qs ? "?" + qs : "";
    11301138    }
    11311139  }
     
    14181426  }
    14191427  let vtContext = React.useContext(ViewTransitionContext);
    1420   !(vtContext != null) ? process.env.NODE_ENV !== "production" ? UNSAFE_invariant(false, "`unstable_useViewTransitionState` must be used within `react-router-dom`'s `RouterProvider`.  " + "Did you accidentally import `RouterProvider` from `react-router`?") : UNSAFE_invariant(false) : void 0;
     1428  !(vtContext != null) ? process.env.NODE_ENV !== "production" ? UNSAFE_invariant(false, "`useViewTransitionState` must be used within `react-router-dom`'s `RouterProvider`.  " + "Did you accidentally import `RouterProvider` from `react-router`?") : UNSAFE_invariant(false) : void 0;
    14211429  let {
    14221430    basename
     
    14341442  // an indicated transition apply.  I.e., on the list view you have:
    14351443  //
    1436   //   <NavLink to="/details/1" unstable_viewTransition>
     1444  //   <NavLink to="/details/1" viewTransition>
    14371445  //
    14381446  // If you click the breadcrumb back to the list view:
    14391447  //
    1440   //   <NavLink to="/list" unstable_viewTransition>
     1448  //   <NavLink to="/list" viewTransition>
    14411449  //
    14421450  // We should apply the transition because it's indicated as active going
     
    14471455//#endregion
    14481456
    1449 export { BrowserRouter, Form, HashRouter, Link, NavLink, RouterProvider, ScrollRestoration, FetchersContext as UNSAFE_FetchersContext, ViewTransitionContext as UNSAFE_ViewTransitionContext, useScrollRestoration as UNSAFE_useScrollRestoration, createBrowserRouter, createHashRouter, createSearchParams, HistoryRouter as unstable_HistoryRouter, usePrompt as unstable_usePrompt, useViewTransitionState as unstable_useViewTransitionState, useBeforeUnload, useFetcher, useFetchers, useFormAction, useLinkClickHandler, useSearchParams, useSubmit };
     1457export { BrowserRouter, Form, HashRouter, Link, NavLink, RouterProvider, ScrollRestoration, FetchersContext as UNSAFE_FetchersContext, ViewTransitionContext as UNSAFE_ViewTransitionContext, useScrollRestoration as UNSAFE_useScrollRestoration, createBrowserRouter, createHashRouter, createSearchParams, HistoryRouter as unstable_HistoryRouter, usePrompt as unstable_usePrompt, useBeforeUnload, useFetcher, useFetchers, useFormAction, useLinkClickHandler, useSearchParams, useSubmit, useViewTransitionState };
    14501458//# sourceMappingURL=index.js.map
  • imaps-frontend/node_modules/react-router-dom/dist/index.js.map

    rd565449 r0c6b92a  
    1 {"version":3,"file":"index.js","sources":["../dom.ts","../index.tsx"],"sourcesContent":["import type {\n  FormEncType,\n  HTMLFormMethod,\n  RelativeRoutingType,\n} from \"@remix-run/router\";\nimport { stripBasename, UNSAFE_warning as warning } from \"@remix-run/router\";\n\nexport const defaultMethod: HTMLFormMethod = \"get\";\nconst defaultEncType: FormEncType = \"application/x-www-form-urlencoded\";\n\nexport function isHtmlElement(object: any): object is HTMLElement {\n  return object != null && typeof object.tagName === \"string\";\n}\n\nexport function isButtonElement(object: any): object is HTMLButtonElement {\n  return isHtmlElement(object) && object.tagName.toLowerCase() === \"button\";\n}\n\nexport function isFormElement(object: any): object is HTMLFormElement {\n  return isHtmlElement(object) && object.tagName.toLowerCase() === \"form\";\n}\n\nexport function isInputElement(object: any): object is HTMLInputElement {\n  return isHtmlElement(object) && object.tagName.toLowerCase() === \"input\";\n}\n\ntype LimitedMouseEvent = Pick<\n  MouseEvent,\n  \"button\" | \"metaKey\" | \"altKey\" | \"ctrlKey\" | \"shiftKey\"\n>;\n\nfunction isModifiedEvent(event: LimitedMouseEvent) {\n  return !!(event.metaKey || event.altKey || event.ctrlKey || event.shiftKey);\n}\n\nexport function shouldProcessLinkClick(\n  event: LimitedMouseEvent,\n  target?: string\n) {\n  return (\n    event.button === 0 && // Ignore everything but left clicks\n    (!target || target === \"_self\") && // Let browser handle \"target=_blank\" etc.\n    !isModifiedEvent(event) // Ignore clicks with modifier keys\n  );\n}\n\nexport type ParamKeyValuePair = [string, string];\n\nexport type URLSearchParamsInit =\n  | string\n  | ParamKeyValuePair[]\n  | Record<string, string | string[]>\n  | URLSearchParams;\n\n/**\n * Creates a URLSearchParams object using the given initializer.\n *\n * This is identical to `new URLSearchParams(init)` except it also\n * supports arrays as values in the object form of the initializer\n * instead of just strings. This is convenient when you need multiple\n * values for a given key, but don't want to use an array initializer.\n *\n * For example, instead of:\n *\n *   let searchParams = new URLSearchParams([\n *     ['sort', 'name'],\n *     ['sort', 'price']\n *   ]);\n *\n * you can do:\n *\n *   let searchParams = createSearchParams({\n *     sort: ['name', 'price']\n *   });\n */\nexport function createSearchParams(\n  init: URLSearchParamsInit = \"\"\n): URLSearchParams {\n  return new URLSearchParams(\n    typeof init === \"string\" ||\n    Array.isArray(init) ||\n    init instanceof URLSearchParams\n      ? init\n      : Object.keys(init).reduce((memo, key) => {\n          let value = init[key];\n          return memo.concat(\n            Array.isArray(value) ? value.map((v) => [key, v]) : [[key, value]]\n          );\n        }, [] as ParamKeyValuePair[])\n  );\n}\n\nexport function getSearchParamsForLocation(\n  locationSearch: string,\n  defaultSearchParams: URLSearchParams | null\n) {\n  let searchParams = createSearchParams(locationSearch);\n\n  if (defaultSearchParams) {\n    // Use `defaultSearchParams.forEach(...)` here instead of iterating of\n    // `defaultSearchParams.keys()` to work-around a bug in Firefox related to\n    // web extensions. Relevant Bugzilla tickets:\n    // https://bugzilla.mozilla.org/show_bug.cgi?id=1414602\n    // https://bugzilla.mozilla.org/show_bug.cgi?id=1023984\n    defaultSearchParams.forEach((_, key) => {\n      if (!searchParams.has(key)) {\n        defaultSearchParams.getAll(key).forEach((value) => {\n          searchParams.append(key, value);\n        });\n      }\n    });\n  }\n\n  return searchParams;\n}\n\n// Thanks https://github.com/sindresorhus/type-fest!\ntype JsonObject = { [Key in string]: JsonValue } & {\n  [Key in string]?: JsonValue | undefined;\n};\ntype JsonArray = JsonValue[] | readonly JsonValue[];\ntype JsonPrimitive = string | number | boolean | null;\ntype JsonValue = JsonPrimitive | JsonObject | JsonArray;\n\nexport type SubmitTarget =\n  | HTMLFormElement\n  | HTMLButtonElement\n  | HTMLInputElement\n  | FormData\n  | URLSearchParams\n  | JsonValue\n  | null;\n\n// One-time check for submitter support\nlet _formDataSupportsSubmitter: boolean | null = null;\n\nfunction isFormDataSubmitterSupported() {\n  if (_formDataSupportsSubmitter === null) {\n    try {\n      new FormData(\n        document.createElement(\"form\"),\n        // @ts-expect-error if FormData supports the submitter parameter, this will throw\n        0\n      );\n      _formDataSupportsSubmitter = false;\n    } catch (e) {\n      _formDataSupportsSubmitter = true;\n    }\n  }\n  return _formDataSupportsSubmitter;\n}\n\n/**\n * Submit options shared by both navigations and fetchers\n */\ninterface SharedSubmitOptions {\n  /**\n   * The HTTP method used to submit the form. Overrides `<form method>`.\n   * Defaults to \"GET\".\n   */\n  method?: HTMLFormMethod;\n\n  /**\n   * The action URL path used to submit the form. Overrides `<form action>`.\n   * Defaults to the path of the current route.\n   */\n  action?: string;\n\n  /**\n   * The encoding used to submit the form. Overrides `<form encType>`.\n   * Defaults to \"application/x-www-form-urlencoded\".\n   */\n  encType?: FormEncType;\n\n  /**\n   * Determines whether the form action is relative to the route hierarchy or\n   * the pathname.  Use this if you want to opt out of navigating the route\n   * hierarchy and want to instead route based on /-delimited URL segments\n   */\n  relative?: RelativeRoutingType;\n\n  /**\n   * In browser-based environments, prevent resetting scroll after this\n   * navigation when using the <ScrollRestoration> component\n   */\n  preventScrollReset?: boolean;\n\n  /**\n   * Enable flushSync for this submission's state updates\n   */\n  unstable_flushSync?: boolean;\n}\n\n/**\n * Submit options available to fetchers\n */\nexport interface FetcherSubmitOptions extends SharedSubmitOptions {}\n\n/**\n * Submit options available to navigations\n */\nexport interface SubmitOptions extends FetcherSubmitOptions {\n  /**\n   * Set `true` to replace the current entry in the browser's history stack\n   * instead of creating a new one (i.e. stay on \"the same page\"). Defaults\n   * to `false`.\n   */\n  replace?: boolean;\n\n  /**\n   * State object to add to the history stack entry for this navigation\n   */\n  state?: any;\n\n  /**\n   * Indicate a specific fetcherKey to use when using navigate=false\n   */\n  fetcherKey?: string;\n\n  /**\n   * navigate=false will use a fetcher instead of a navigation\n   */\n  navigate?: boolean;\n\n  /**\n   * Enable view transitions on this submission navigation\n   */\n  unstable_viewTransition?: boolean;\n}\n\nconst supportedFormEncTypes: Set<FormEncType> = new Set([\n  \"application/x-www-form-urlencoded\",\n  \"multipart/form-data\",\n  \"text/plain\",\n]);\n\nfunction getFormEncType(encType: string | null) {\n  if (encType != null && !supportedFormEncTypes.has(encType as FormEncType)) {\n    warning(\n      false,\n      `\"${encType}\" is not a valid \\`encType\\` for \\`<Form>\\`/\\`<fetcher.Form>\\` ` +\n        `and will default to \"${defaultEncType}\"`\n    );\n\n    return null;\n  }\n  return encType;\n}\n\nexport function getFormSubmissionInfo(\n  target: SubmitTarget,\n  basename: string\n): {\n  action: string | null;\n  method: string;\n  encType: string;\n  formData: FormData | undefined;\n  body: any;\n} {\n  let method: string;\n  let action: string | null;\n  let encType: string;\n  let formData: FormData | undefined;\n  let body: any;\n\n  if (isFormElement(target)) {\n    // When grabbing the action from the element, it will have had the basename\n    // prefixed to ensure non-JS scenarios work, so strip it since we'll\n    // re-prefix in the router\n    let attr = target.getAttribute(\"action\");\n    action = attr ? stripBasename(attr, basename) : null;\n    method = target.getAttribute(\"method\") || defaultMethod;\n    encType = getFormEncType(target.getAttribute(\"enctype\")) || defaultEncType;\n\n    formData = new FormData(target);\n  } else if (\n    isButtonElement(target) ||\n    (isInputElement(target) &&\n      (target.type === \"submit\" || target.type === \"image\"))\n  ) {\n    let form = target.form;\n\n    if (form == null) {\n      throw new Error(\n        `Cannot submit a <button> or <input type=\"submit\"> without a <form>`\n      );\n    }\n\n    // <button>/<input type=\"submit\"> may override attributes of <form>\n\n    // When grabbing the action from the element, it will have had the basename\n    // prefixed to ensure non-JS scenarios work, so strip it since we'll\n    // re-prefix in the router\n    let attr = target.getAttribute(\"formaction\") || form.getAttribute(\"action\");\n    action = attr ? stripBasename(attr, basename) : null;\n\n    method =\n      target.getAttribute(\"formmethod\") ||\n      form.getAttribute(\"method\") ||\n      defaultMethod;\n    encType =\n      getFormEncType(target.getAttribute(\"formenctype\")) ||\n      getFormEncType(form.getAttribute(\"enctype\")) ||\n      defaultEncType;\n\n    // Build a FormData object populated from a form and submitter\n    formData = new FormData(form, target);\n\n    // If this browser doesn't support the `FormData(el, submitter)` format,\n    // then tack on the submitter value at the end.  This is a lightweight\n    // solution that is not 100% spec compliant.  For complete support in older\n    // browsers, consider using the `formdata-submitter-polyfill` package\n    if (!isFormDataSubmitterSupported()) {\n      let { name, type, value } = target;\n      if (type === \"image\") {\n        let prefix = name ? `${name}.` : \"\";\n        formData.append(`${prefix}x`, \"0\");\n        formData.append(`${prefix}y`, \"0\");\n      } else if (name) {\n        formData.append(name, value);\n      }\n    }\n  } else if (isHtmlElement(target)) {\n    throw new Error(\n      `Cannot submit element that is not <form>, <button>, or ` +\n        `<input type=\"submit|image\">`\n    );\n  } else {\n    method = defaultMethod;\n    action = null;\n    encType = defaultEncType;\n    body = target;\n  }\n\n  // Send body for <Form encType=\"text/plain\" so we encode it into text\n  if (formData && encType === \"text/plain\") {\n    body = formData;\n    formData = undefined;\n  }\n\n  return { action, method: method.toLowerCase(), encType, formData, body };\n}\n","/**\n * NOTE: If you refactor this to split up the modules into separate files,\n * you'll need to update the rollup config for react-router-dom-v5-compat.\n */\nimport * as React from \"react\";\nimport * as ReactDOM from \"react-dom\";\nimport type {\n  DataRouteObject,\n  FutureConfig,\n  Location,\n  NavigateOptions,\n  NavigationType,\n  Navigator,\n  RelativeRoutingType,\n  RouteObject,\n  RouterProps,\n  RouterProviderProps,\n  To,\n  unstable_PatchRoutesOnMissFunction,\n} from \"react-router\";\nimport {\n  Router,\n  createPath,\n  useHref,\n  useLocation,\n  useMatches,\n  useNavigate,\n  useNavigation,\n  useResolvedPath,\n  useBlocker,\n  UNSAFE_DataRouterContext as DataRouterContext,\n  UNSAFE_DataRouterStateContext as DataRouterStateContext,\n  UNSAFE_NavigationContext as NavigationContext,\n  UNSAFE_RouteContext as RouteContext,\n  UNSAFE_mapRouteProperties as mapRouteProperties,\n  UNSAFE_useRouteId as useRouteId,\n  UNSAFE_useRoutesImpl as useRoutesImpl,\n} from \"react-router\";\nimport type {\n  BrowserHistory,\n  unstable_DataStrategyFunction,\n  unstable_DataStrategyFunctionArgs,\n  unstable_DataStrategyMatch,\n  Fetcher,\n  FormEncType,\n  FormMethod,\n  FutureConfig as RouterFutureConfig,\n  GetScrollRestorationKeyFunction,\n  HashHistory,\n  History,\n  HTMLFormMethod,\n  HydrationState,\n  Router as RemixRouter,\n  V7_FormMethod,\n  RouterState,\n  RouterSubscriber,\n  BlockerFunction,\n} from \"@remix-run/router\";\nimport {\n  createRouter,\n  createBrowserHistory,\n  createHashHistory,\n  joinPaths,\n  stripBasename,\n  UNSAFE_ErrorResponseImpl as ErrorResponseImpl,\n  UNSAFE_invariant as invariant,\n  UNSAFE_warning as warning,\n  matchPath,\n  IDLE_FETCHER,\n} from \"@remix-run/router\";\n\nimport type {\n  SubmitOptions,\n  ParamKeyValuePair,\n  URLSearchParamsInit,\n  SubmitTarget,\n  FetcherSubmitOptions,\n} from \"./dom\";\nimport {\n  createSearchParams,\n  defaultMethod,\n  getFormSubmissionInfo,\n  getSearchParamsForLocation,\n  shouldProcessLinkClick,\n} from \"./dom\";\n\n////////////////////////////////////////////////////////////////////////////////\n//#region Re-exports\n////////////////////////////////////////////////////////////////////////////////\n\nexport type {\n  unstable_DataStrategyFunction,\n  unstable_DataStrategyFunctionArgs,\n  unstable_DataStrategyMatch,\n  FormEncType,\n  FormMethod,\n  GetScrollRestorationKeyFunction,\n  ParamKeyValuePair,\n  SubmitOptions,\n  URLSearchParamsInit,\n  V7_FormMethod,\n};\nexport { createSearchParams, ErrorResponseImpl as UNSAFE_ErrorResponseImpl };\n\n// Note: Keep in sync with react-router exports!\nexport type {\n  ActionFunction,\n  ActionFunctionArgs,\n  AwaitProps,\n  Blocker,\n  BlockerFunction,\n  DataRouteMatch,\n  DataRouteObject,\n  ErrorResponse,\n  Fetcher,\n  FutureConfig,\n  Hash,\n  IndexRouteObject,\n  IndexRouteProps,\n  JsonFunction,\n  LazyRouteFunction,\n  LayoutRouteProps,\n  LoaderFunction,\n  LoaderFunctionArgs,\n  Location,\n  MemoryRouterProps,\n  NavigateFunction,\n  NavigateOptions,\n  NavigateProps,\n  Navigation,\n  Navigator,\n  NonIndexRouteObject,\n  OutletProps,\n  Params,\n  ParamParseKey,\n  Path,\n  PathMatch,\n  Pathname,\n  PathParam,\n  PathPattern,\n  PathRouteProps,\n  RedirectFunction,\n  RelativeRoutingType,\n  RouteMatch,\n  RouteObject,\n  RouteProps,\n  RouterProps,\n  RouterProviderProps,\n  RoutesProps,\n  Search,\n  ShouldRevalidateFunction,\n  ShouldRevalidateFunctionArgs,\n  To,\n  UIMatch,\n  unstable_HandlerResult,\n  unstable_PatchRoutesOnMissFunction,\n} from \"react-router\";\nexport {\n  AbortedDeferredError,\n  Await,\n  MemoryRouter,\n  Navigate,\n  NavigationType,\n  Outlet,\n  Route,\n  Router,\n  Routes,\n  createMemoryRouter,\n  createPath,\n  createRoutesFromChildren,\n  createRoutesFromElements,\n  defer,\n  isRouteErrorResponse,\n  generatePath,\n  json,\n  matchPath,\n  matchRoutes,\n  parsePath,\n  redirect,\n  redirectDocument,\n  replace,\n  renderMatches,\n  resolvePath,\n  useActionData,\n  useAsyncError,\n  useAsyncValue,\n  useBlocker,\n  useHref,\n  useInRouterContext,\n  useLoaderData,\n  useLocation,\n  useMatch,\n  useMatches,\n  useNavigate,\n  useNavigation,\n  useNavigationType,\n  useOutlet,\n  useOutletContext,\n  useParams,\n  useResolvedPath,\n  useRevalidator,\n  useRouteError,\n  useRouteLoaderData,\n  useRoutes,\n} from \"react-router\";\n\n///////////////////////////////////////////////////////////////////////////////\n// DANGER! PLEASE READ ME!\n// We provide these exports as an escape hatch in the event that you need any\n// routing data that we don't provide an explicit API for. With that said, we\n// want to cover your use case if we can, so if you feel the need to use these\n// we want to hear from you. Let us know what you're building and we'll do our\n// best to make sure we can support you!\n//\n// We consider these exports an implementation detail and do not guarantee\n// against any breaking changes, regardless of the semver release. Use with\n// extreme caution and only if you understand the consequences. Godspeed.\n///////////////////////////////////////////////////////////////////////////////\n\n/** @internal */\nexport {\n  UNSAFE_DataRouterContext,\n  UNSAFE_DataRouterStateContext,\n  UNSAFE_NavigationContext,\n  UNSAFE_LocationContext,\n  UNSAFE_RouteContext,\n  UNSAFE_useRouteId,\n} from \"react-router\";\n//#endregion\n\ndeclare global {\n  var __staticRouterHydrationData: HydrationState | undefined;\n  var __reactRouterVersion: string;\n  interface Document {\n    startViewTransition(cb: () => Promise<void> | void): ViewTransition;\n  }\n}\n\n// HEY YOU! DON'T TOUCH THIS VARIABLE!\n//\n// It is replaced with the proper version at build time via a babel plugin in\n// the rollup config.\n//\n// Export a global property onto the window for React Router detection by the\n// Core Web Vitals Technology Report.  This way they can configure the `wappalyzer`\n// to detect and properly classify live websites as being built with React Router:\n// https://github.com/HTTPArchive/wappalyzer/blob/main/src/technologies/r.json\nconst REACT_ROUTER_VERSION = \"0\";\ntry {\n  window.__reactRouterVersion = REACT_ROUTER_VERSION;\n} catch (e) {\n  // no-op\n}\n\n////////////////////////////////////////////////////////////////////////////////\n//#region Routers\n////////////////////////////////////////////////////////////////////////////////\n\ninterface DOMRouterOpts {\n  basename?: string;\n  future?: Partial<Omit<RouterFutureConfig, \"v7_prependBasename\">>;\n  hydrationData?: HydrationState;\n  unstable_dataStrategy?: unstable_DataStrategyFunction;\n  unstable_patchRoutesOnMiss?: unstable_PatchRoutesOnMissFunction;\n  window?: Window;\n}\n\nexport function createBrowserRouter(\n  routes: RouteObject[],\n  opts?: DOMRouterOpts\n): RemixRouter {\n  return createRouter({\n    basename: opts?.basename,\n    future: {\n      ...opts?.future,\n      v7_prependBasename: true,\n    },\n    history: createBrowserHistory({ window: opts?.window }),\n    hydrationData: opts?.hydrationData || parseHydrationData(),\n    routes,\n    mapRouteProperties,\n    unstable_dataStrategy: opts?.unstable_dataStrategy,\n    unstable_patchRoutesOnMiss: opts?.unstable_patchRoutesOnMiss,\n    window: opts?.window,\n  }).initialize();\n}\n\nexport function createHashRouter(\n  routes: RouteObject[],\n  opts?: DOMRouterOpts\n): RemixRouter {\n  return createRouter({\n    basename: opts?.basename,\n    future: {\n      ...opts?.future,\n      v7_prependBasename: true,\n    },\n    history: createHashHistory({ window: opts?.window }),\n    hydrationData: opts?.hydrationData || parseHydrationData(),\n    routes,\n    mapRouteProperties,\n    unstable_dataStrategy: opts?.unstable_dataStrategy,\n    unstable_patchRoutesOnMiss: opts?.unstable_patchRoutesOnMiss,\n    window: opts?.window,\n  }).initialize();\n}\n\nfunction parseHydrationData(): HydrationState | undefined {\n  let state = window?.__staticRouterHydrationData;\n  if (state && state.errors) {\n    state = {\n      ...state,\n      errors: deserializeErrors(state.errors),\n    };\n  }\n  return state;\n}\n\nfunction deserializeErrors(\n  errors: RemixRouter[\"state\"][\"errors\"]\n): RemixRouter[\"state\"][\"errors\"] {\n  if (!errors) return null;\n  let entries = Object.entries(errors);\n  let serialized: RemixRouter[\"state\"][\"errors\"] = {};\n  for (let [key, val] of entries) {\n    // Hey you!  If you change this, please change the corresponding logic in\n    // serializeErrors in react-router-dom/server.tsx :)\n    if (val && val.__type === \"RouteErrorResponse\") {\n      serialized[key] = new ErrorResponseImpl(\n        val.status,\n        val.statusText,\n        val.data,\n        val.internal === true\n      );\n    } else if (val && val.__type === \"Error\") {\n      // Attempt to reconstruct the right type of Error (i.e., ReferenceError)\n      if (val.__subType) {\n        let ErrorConstructor = window[val.__subType];\n        if (typeof ErrorConstructor === \"function\") {\n          try {\n            // @ts-expect-error\n            let error = new ErrorConstructor(val.message);\n            // Wipe away the client-side stack trace.  Nothing to fill it in with\n            // because we don't serialize SSR stack traces for security reasons\n            error.stack = \"\";\n            serialized[key] = error;\n          } catch (e) {\n            // no-op - fall through and create a normal Error\n          }\n        }\n      }\n\n      if (serialized[key] == null) {\n        let error = new Error(val.message);\n        // Wipe away the client-side stack trace.  Nothing to fill it in with\n        // because we don't serialize SSR stack traces for security reasons\n        error.stack = \"\";\n        serialized[key] = error;\n      }\n    } else {\n      serialized[key] = val;\n    }\n  }\n  return serialized;\n}\n\n//#endregion\n\n////////////////////////////////////////////////////////////////////////////////\n//#region Contexts\n////////////////////////////////////////////////////////////////////////////////\n\ntype ViewTransitionContextObject =\n  | {\n      isTransitioning: false;\n    }\n  | {\n      isTransitioning: true;\n      flushSync: boolean;\n      currentLocation: Location;\n      nextLocation: Location;\n    };\n\nconst ViewTransitionContext = React.createContext<ViewTransitionContextObject>({\n  isTransitioning: false,\n});\nif (__DEV__) {\n  ViewTransitionContext.displayName = \"ViewTransition\";\n}\n\nexport { ViewTransitionContext as UNSAFE_ViewTransitionContext };\n\n// TODO: (v7) Change the useFetcher data from `any` to `unknown`\ntype FetchersContextObject = Map<string, any>;\n\nconst FetchersContext = React.createContext<FetchersContextObject>(new Map());\nif (__DEV__) {\n  FetchersContext.displayName = \"Fetchers\";\n}\n\nexport { FetchersContext as UNSAFE_FetchersContext };\n\n//#endregion\n\n////////////////////////////////////////////////////////////////////////////////\n//#region Components\n////////////////////////////////////////////////////////////////////////////////\n\n/**\n  Webpack + React 17 fails to compile on any of the following because webpack\n  complains that `startTransition` doesn't exist in `React`:\n  * import { startTransition } from \"react\"\n  * import * as React from from \"react\";\n    \"startTransition\" in React ? React.startTransition(() => setState()) : setState()\n  * import * as React from from \"react\";\n    \"startTransition\" in React ? React[\"startTransition\"](() => setState()) : setState()\n\n  Moving it to a constant such as the following solves the Webpack/React 17 issue:\n  * import * as React from from \"react\";\n    const START_TRANSITION = \"startTransition\";\n    START_TRANSITION in React ? React[START_TRANSITION](() => setState()) : setState()\n\n  However, that introduces webpack/terser minification issues in production builds\n  in React 18 where minification/obfuscation ends up removing the call of\n  React.startTransition entirely from the first half of the ternary.  Grabbing\n  this exported reference once up front resolves that issue.\n\n  See https://github.com/remix-run/react-router/issues/10579\n*/\nconst START_TRANSITION = \"startTransition\";\nconst startTransitionImpl = React[START_TRANSITION];\nconst FLUSH_SYNC = \"flushSync\";\nconst flushSyncImpl = ReactDOM[FLUSH_SYNC];\nconst USE_ID = \"useId\";\nconst useIdImpl = React[USE_ID];\n\nfunction startTransitionSafe(cb: () => void) {\n  if (startTransitionImpl) {\n    startTransitionImpl(cb);\n  } else {\n    cb();\n  }\n}\n\nfunction flushSyncSafe(cb: () => void) {\n  if (flushSyncImpl) {\n    flushSyncImpl(cb);\n  } else {\n    cb();\n  }\n}\n\ninterface ViewTransition {\n  finished: Promise<void>;\n  ready: Promise<void>;\n  updateCallbackDone: Promise<void>;\n  skipTransition(): void;\n}\n\nclass Deferred<T> {\n  status: \"pending\" | \"resolved\" | \"rejected\" = \"pending\";\n  promise: Promise<T>;\n  // @ts-expect-error - no initializer\n  resolve: (value: T) => void;\n  // @ts-expect-error - no initializer\n  reject: (reason?: unknown) => void;\n  constructor() {\n    this.promise = new Promise((resolve, reject) => {\n      this.resolve = (value) => {\n        if (this.status === \"pending\") {\n          this.status = \"resolved\";\n          resolve(value);\n        }\n      };\n      this.reject = (reason) => {\n        if (this.status === \"pending\") {\n          this.status = \"rejected\";\n          reject(reason);\n        }\n      };\n    });\n  }\n}\n\n/**\n * Given a Remix Router instance, render the appropriate UI\n */\nexport function RouterProvider({\n  fallbackElement,\n  router,\n  future,\n}: RouterProviderProps): React.ReactElement {\n  let [state, setStateImpl] = React.useState(router.state);\n  let [pendingState, setPendingState] = React.useState<RouterState>();\n  let [vtContext, setVtContext] = React.useState<ViewTransitionContextObject>({\n    isTransitioning: false,\n  });\n  let [renderDfd, setRenderDfd] = React.useState<Deferred<void>>();\n  let [transition, setTransition] = React.useState<ViewTransition>();\n  let [interruption, setInterruption] = React.useState<{\n    state: RouterState;\n    currentLocation: Location;\n    nextLocation: Location;\n  }>();\n  let fetcherData = React.useRef<Map<string, any>>(new Map());\n  let { v7_startTransition } = future || {};\n\n  let optInStartTransition = React.useCallback(\n    (cb: () => void) => {\n      if (v7_startTransition) {\n        startTransitionSafe(cb);\n      } else {\n        cb();\n      }\n    },\n    [v7_startTransition]\n  );\n\n  let setState = React.useCallback<RouterSubscriber>(\n    (\n      newState: RouterState,\n      {\n        deletedFetchers,\n        unstable_flushSync: flushSync,\n        unstable_viewTransitionOpts: viewTransitionOpts,\n      }\n    ) => {\n      deletedFetchers.forEach((key) => fetcherData.current.delete(key));\n      newState.fetchers.forEach((fetcher, key) => {\n        if (fetcher.data !== undefined) {\n          fetcherData.current.set(key, fetcher.data);\n        }\n      });\n\n      let isViewTransitionUnavailable =\n        router.window == null ||\n        router.window.document == null ||\n        typeof router.window.document.startViewTransition !== \"function\";\n\n      // If this isn't a view transition or it's not available in this browser,\n      // just update and be done with it\n      if (!viewTransitionOpts || isViewTransitionUnavailable) {\n        if (flushSync) {\n          flushSyncSafe(() => setStateImpl(newState));\n        } else {\n          optInStartTransition(() => setStateImpl(newState));\n        }\n        return;\n      }\n\n      // flushSync + startViewTransition\n      if (flushSync) {\n        // Flush through the context to mark DOM elements as transition=ing\n        flushSyncSafe(() => {\n          // Cancel any pending transitions\n          if (transition) {\n            renderDfd && renderDfd.resolve();\n            transition.skipTransition();\n          }\n          setVtContext({\n            isTransitioning: true,\n            flushSync: true,\n            currentLocation: viewTransitionOpts.currentLocation,\n            nextLocation: viewTransitionOpts.nextLocation,\n          });\n        });\n\n        // Update the DOM\n        let t = router.window!.document.startViewTransition(() => {\n          flushSyncSafe(() => setStateImpl(newState));\n        });\n\n        // Clean up after the animation completes\n        t.finished.finally(() => {\n          flushSyncSafe(() => {\n            setRenderDfd(undefined);\n            setTransition(undefined);\n            setPendingState(undefined);\n            setVtContext({ isTransitioning: false });\n          });\n        });\n\n        flushSyncSafe(() => setTransition(t));\n        return;\n      }\n\n      // startTransition + startViewTransition\n      if (transition) {\n        // Interrupting an in-progress transition, cancel and let everything flush\n        // out, and then kick off a new transition from the interruption state\n        renderDfd && renderDfd.resolve();\n        transition.skipTransition();\n        setInterruption({\n          state: newState,\n          currentLocation: viewTransitionOpts.currentLocation,\n          nextLocation: viewTransitionOpts.nextLocation,\n        });\n      } else {\n        // Completed navigation update with opted-in view transitions, let 'er rip\n        setPendingState(newState);\n        setVtContext({\n          isTransitioning: true,\n          flushSync: false,\n          currentLocation: viewTransitionOpts.currentLocation,\n          nextLocation: viewTransitionOpts.nextLocation,\n        });\n      }\n    },\n    [router.window, transition, renderDfd, fetcherData, optInStartTransition]\n  );\n\n  // Need to use a layout effect here so we are subscribed early enough to\n  // pick up on any render-driven redirects/navigations (useEffect/<Navigate>)\n  React.useLayoutEffect(() => router.subscribe(setState), [router, setState]);\n\n  // When we start a view transition, create a Deferred we can use for the\n  // eventual \"completed\" render\n  React.useEffect(() => {\n    if (vtContext.isTransitioning && !vtContext.flushSync) {\n      setRenderDfd(new Deferred<void>());\n    }\n  }, [vtContext]);\n\n  // Once the deferred is created, kick off startViewTransition() to update the\n  // DOM and then wait on the Deferred to resolve (indicating the DOM update has\n  // happened)\n  React.useEffect(() => {\n    if (renderDfd && pendingState && router.window) {\n      let newState = pendingState;\n      let renderPromise = renderDfd.promise;\n      let transition = router.window.document.startViewTransition(async () => {\n        optInStartTransition(() => setStateImpl(newState));\n        await renderPromise;\n      });\n      transition.finished.finally(() => {\n        setRenderDfd(undefined);\n        setTransition(undefined);\n        setPendingState(undefined);\n        setVtContext({ isTransitioning: false });\n      });\n      setTransition(transition);\n    }\n  }, [optInStartTransition, pendingState, renderDfd, router.window]);\n\n  // When the new location finally renders and is committed to the DOM, this\n  // effect will run to resolve the transition\n  React.useEffect(() => {\n    if (\n      renderDfd &&\n      pendingState &&\n      state.location.key === pendingState.location.key\n    ) {\n      renderDfd.resolve();\n    }\n  }, [renderDfd, transition, state.location, pendingState]);\n\n  // If we get interrupted with a new navigation during a transition, we skip\n  // the active transition, let it cleanup, then kick it off again here\n  React.useEffect(() => {\n    if (!vtContext.isTransitioning && interruption) {\n      setPendingState(interruption.state);\n      setVtContext({\n        isTransitioning: true,\n        flushSync: false,\n        currentLocation: interruption.currentLocation,\n        nextLocation: interruption.nextLocation,\n      });\n      setInterruption(undefined);\n    }\n  }, [vtContext.isTransitioning, interruption]);\n\n  React.useEffect(() => {\n    warning(\n      fallbackElement == null || !router.future.v7_partialHydration,\n      \"`<RouterProvider fallbackElement>` is deprecated when using \" +\n        \"`v7_partialHydration`, use a `HydrateFallback` component instead\"\n    );\n    // Only log this once on initial mount\n    // eslint-disable-next-line react-hooks/exhaustive-deps\n  }, []);\n\n  let navigator = React.useMemo((): Navigator => {\n    return {\n      createHref: router.createHref,\n      encodeLocation: router.encodeLocation,\n      go: (n) => router.navigate(n),\n      push: (to, state, opts) =>\n        router.navigate(to, {\n          state,\n          preventScrollReset: opts?.preventScrollReset,\n        }),\n      replace: (to, state, opts) =>\n        router.navigate(to, {\n          replace: true,\n          state,\n          preventScrollReset: opts?.preventScrollReset,\n        }),\n    };\n  }, [router]);\n\n  let basename = router.basename || \"/\";\n\n  let dataRouterContext = React.useMemo(\n    () => ({\n      router,\n      navigator,\n      static: false,\n      basename,\n    }),\n    [router, navigator, basename]\n  );\n\n  let routerFuture = React.useMemo<RouterProps[\"future\"]>(\n    () => ({\n      v7_relativeSplatPath: router.future.v7_relativeSplatPath,\n    }),\n    [router.future.v7_relativeSplatPath]\n  );\n\n  // The fragment and {null} here are important!  We need them to keep React 18's\n  // useId happy when we are server-rendering since we may have a <script> here\n  // containing the hydrated server-side staticContext (from StaticRouterProvider).\n  // useId relies on the component tree structure to generate deterministic id's\n  // so we need to ensure it remains the same on the client even though\n  // we don't need the <script> tag\n  return (\n    <>\n      <DataRouterContext.Provider value={dataRouterContext}>\n        <DataRouterStateContext.Provider value={state}>\n          <FetchersContext.Provider value={fetcherData.current}>\n            <ViewTransitionContext.Provider value={vtContext}>\n              <Router\n                basename={basename}\n                location={state.location}\n                navigationType={state.historyAction}\n                navigator={navigator}\n                future={routerFuture}\n              >\n                {state.initialized || router.future.v7_partialHydration ? (\n                  <MemoizedDataRoutes\n                    routes={router.routes}\n                    future={router.future}\n                    state={state}\n                  />\n                ) : (\n                  fallbackElement\n                )}\n              </Router>\n            </ViewTransitionContext.Provider>\n          </FetchersContext.Provider>\n        </DataRouterStateContext.Provider>\n      </DataRouterContext.Provider>\n      {null}\n    </>\n  );\n}\n\n// Memoize to avoid re-renders when updating `ViewTransitionContext`\nconst MemoizedDataRoutes = React.memo(DataRoutes);\n\nfunction DataRoutes({\n  routes,\n  future,\n  state,\n}: {\n  routes: DataRouteObject[];\n  future: RemixRouter[\"future\"];\n  state: RouterState;\n}): React.ReactElement | null {\n  return useRoutesImpl(routes, undefined, state, future);\n}\n\nexport interface BrowserRouterProps {\n  basename?: string;\n  children?: React.ReactNode;\n  future?: Partial<FutureConfig>;\n  window?: Window;\n}\n\n/**\n * A `<Router>` for use in web browsers. Provides the cleanest URLs.\n */\nexport function BrowserRouter({\n  basename,\n  children,\n  future,\n  window,\n}: BrowserRouterProps) {\n  let historyRef = React.useRef<BrowserHistory>();\n  if (historyRef.current == null) {\n    historyRef.current = createBrowserHistory({ window, v5Compat: true });\n  }\n\n  let history = historyRef.current;\n  let [state, setStateImpl] = React.useState({\n    action: history.action,\n    location: history.location,\n  });\n  let { v7_startTransition } = future || {};\n  let setState = React.useCallback(\n    (newState: { action: NavigationType; location: Location }) => {\n      v7_startTransition && startTransitionImpl\n        ? startTransitionImpl(() => setStateImpl(newState))\n        : setStateImpl(newState);\n    },\n    [setStateImpl, v7_startTransition]\n  );\n\n  React.useLayoutEffect(() => history.listen(setState), [history, setState]);\n\n  return (\n    <Router\n      basename={basename}\n      children={children}\n      location={state.location}\n      navigationType={state.action}\n      navigator={history}\n      future={future}\n    />\n  );\n}\n\nexport interface HashRouterProps {\n  basename?: string;\n  children?: React.ReactNode;\n  future?: Partial<FutureConfig>;\n  window?: Window;\n}\n\n/**\n * A `<Router>` for use in web browsers. Stores the location in the hash\n * portion of the URL so it is not sent to the server.\n */\nexport function HashRouter({\n  basename,\n  children,\n  future,\n  window,\n}: HashRouterProps) {\n  let historyRef = React.useRef<HashHistory>();\n  if (historyRef.current == null) {\n    historyRef.current = createHashHistory({ window, v5Compat: true });\n  }\n\n  let history = historyRef.current;\n  let [state, setStateImpl] = React.useState({\n    action: history.action,\n    location: history.location,\n  });\n  let { v7_startTransition } = future || {};\n  let setState = React.useCallback(\n    (newState: { action: NavigationType; location: Location }) => {\n      v7_startTransition && startTransitionImpl\n        ? startTransitionImpl(() => setStateImpl(newState))\n        : setStateImpl(newState);\n    },\n    [setStateImpl, v7_startTransition]\n  );\n\n  React.useLayoutEffect(() => history.listen(setState), [history, setState]);\n\n  return (\n    <Router\n      basename={basename}\n      children={children}\n      location={state.location}\n      navigationType={state.action}\n      navigator={history}\n      future={future}\n    />\n  );\n}\n\nexport interface HistoryRouterProps {\n  basename?: string;\n  children?: React.ReactNode;\n  future?: FutureConfig;\n  history: History;\n}\n\n/**\n * A `<Router>` that accepts a pre-instantiated history object. It's important\n * to note that using your own history object is highly discouraged and may add\n * two versions of the history library to your bundles unless you use the same\n * version of the history library that React Router uses internally.\n */\nfunction HistoryRouter({\n  basename,\n  children,\n  future,\n  history,\n}: HistoryRouterProps) {\n  let [state, setStateImpl] = React.useState({\n    action: history.action,\n    location: history.location,\n  });\n  let { v7_startTransition } = future || {};\n  let setState = React.useCallback(\n    (newState: { action: NavigationType; location: Location }) => {\n      v7_startTransition && startTransitionImpl\n        ? startTransitionImpl(() => setStateImpl(newState))\n        : setStateImpl(newState);\n    },\n    [setStateImpl, v7_startTransition]\n  );\n\n  React.useLayoutEffect(() => history.listen(setState), [history, setState]);\n\n  return (\n    <Router\n      basename={basename}\n      children={children}\n      location={state.location}\n      navigationType={state.action}\n      navigator={history}\n      future={future}\n    />\n  );\n}\n\nif (__DEV__) {\n  HistoryRouter.displayName = \"unstable_HistoryRouter\";\n}\n\nexport { HistoryRouter as unstable_HistoryRouter };\n\nexport interface LinkProps\n  extends Omit<React.AnchorHTMLAttributes<HTMLAnchorElement>, \"href\"> {\n  reloadDocument?: boolean;\n  replace?: boolean;\n  state?: any;\n  preventScrollReset?: boolean;\n  relative?: RelativeRoutingType;\n  to: To;\n  unstable_viewTransition?: boolean;\n}\n\nconst isBrowser =\n  typeof window !== \"undefined\" &&\n  typeof window.document !== \"undefined\" &&\n  typeof window.document.createElement !== \"undefined\";\n\nconst ABSOLUTE_URL_REGEX = /^(?:[a-z][a-z0-9+.-]*:|\\/\\/)/i;\n\n/**\n * The public API for rendering a history-aware `<a>`.\n */\nexport const Link = React.forwardRef<HTMLAnchorElement, LinkProps>(\n  function LinkWithRef(\n    {\n      onClick,\n      relative,\n      reloadDocument,\n      replace,\n      state,\n      target,\n      to,\n      preventScrollReset,\n      unstable_viewTransition,\n      ...rest\n    },\n    ref\n  ) {\n    let { basename } = React.useContext(NavigationContext);\n\n    // Rendered into <a href> for absolute URLs\n    let absoluteHref;\n    let isExternal = false;\n\n    if (typeof to === \"string\" && ABSOLUTE_URL_REGEX.test(to)) {\n      // Render the absolute href server- and client-side\n      absoluteHref = to;\n\n      // Only check for external origins client-side\n      if (isBrowser) {\n        try {\n          let currentUrl = new URL(window.location.href);\n          let targetUrl = to.startsWith(\"//\")\n            ? new URL(currentUrl.protocol + to)\n            : new URL(to);\n          let path = stripBasename(targetUrl.pathname, basename);\n\n          if (targetUrl.origin === currentUrl.origin && path != null) {\n            // Strip the protocol/origin/basename for same-origin absolute URLs\n            to = path + targetUrl.search + targetUrl.hash;\n          } else {\n            isExternal = true;\n          }\n        } catch (e) {\n          // We can't do external URL detection without a valid URL\n          warning(\n            false,\n            `<Link to=\"${to}\"> contains an invalid URL which will probably break ` +\n              `when clicked - please update to a valid URL path.`\n          );\n        }\n      }\n    }\n\n    // Rendered into <a href> for relative URLs\n    let href = useHref(to, { relative });\n\n    let internalOnClick = useLinkClickHandler(to, {\n      replace,\n      state,\n      target,\n      preventScrollReset,\n      relative,\n      unstable_viewTransition,\n    });\n    function handleClick(\n      event: React.MouseEvent<HTMLAnchorElement, MouseEvent>\n    ) {\n      if (onClick) onClick(event);\n      if (!event.defaultPrevented) {\n        internalOnClick(event);\n      }\n    }\n\n    return (\n      // eslint-disable-next-line jsx-a11y/anchor-has-content\n      <a\n        {...rest}\n        href={absoluteHref || href}\n        onClick={isExternal || reloadDocument ? onClick : handleClick}\n        ref={ref}\n        target={target}\n      />\n    );\n  }\n);\n\nif (__DEV__) {\n  Link.displayName = \"Link\";\n}\n\nexport type NavLinkRenderProps = {\n  isActive: boolean;\n  isPending: boolean;\n  isTransitioning: boolean;\n};\n\nexport interface NavLinkProps\n  extends Omit<LinkProps, \"className\" | \"style\" | \"children\"> {\n  children?: React.ReactNode | ((props: NavLinkRenderProps) => React.ReactNode);\n  caseSensitive?: boolean;\n  className?: string | ((props: NavLinkRenderProps) => string | undefined);\n  end?: boolean;\n  style?:\n    | React.CSSProperties\n    | ((props: NavLinkRenderProps) => React.CSSProperties | undefined);\n}\n\n/**\n * A `<Link>` wrapper that knows if it's \"active\" or not.\n */\nexport const NavLink = React.forwardRef<HTMLAnchorElement, NavLinkProps>(\n  function NavLinkWithRef(\n    {\n      \"aria-current\": ariaCurrentProp = \"page\",\n      caseSensitive = false,\n      className: classNameProp = \"\",\n      end = false,\n      style: styleProp,\n      to,\n      unstable_viewTransition,\n      children,\n      ...rest\n    },\n    ref\n  ) {\n    let path = useResolvedPath(to, { relative: rest.relative });\n    let location = useLocation();\n    let routerState = React.useContext(DataRouterStateContext);\n    let { navigator, basename } = React.useContext(NavigationContext);\n    let isTransitioning =\n      routerState != null &&\n      // Conditional usage is OK here because the usage of a data router is static\n      // eslint-disable-next-line react-hooks/rules-of-hooks\n      useViewTransitionState(path) &&\n      unstable_viewTransition === true;\n\n    let toPathname = navigator.encodeLocation\n      ? navigator.encodeLocation(path).pathname\n      : path.pathname;\n    let locationPathname = location.pathname;\n    let nextLocationPathname =\n      routerState && routerState.navigation && routerState.navigation.location\n        ? routerState.navigation.location.pathname\n        : null;\n\n    if (!caseSensitive) {\n      locationPathname = locationPathname.toLowerCase();\n      nextLocationPathname = nextLocationPathname\n        ? nextLocationPathname.toLowerCase()\n        : null;\n      toPathname = toPathname.toLowerCase();\n    }\n\n    if (nextLocationPathname && basename) {\n      nextLocationPathname =\n        stripBasename(nextLocationPathname, basename) || nextLocationPathname;\n    }\n\n    // If the `to` has a trailing slash, look at that exact spot.  Otherwise,\n    // we're looking for a slash _after_ what's in `to`.  For example:\n    //\n    // <NavLink to=\"/users\"> and <NavLink to=\"/users/\">\n    // both want to look for a / at index 6 to match URL `/users/matt`\n    const endSlashPosition =\n      toPathname !== \"/\" && toPathname.endsWith(\"/\")\n        ? toPathname.length - 1\n        : toPathname.length;\n    let isActive =\n      locationPathname === toPathname ||\n      (!end &&\n        locationPathname.startsWith(toPathname) &&\n        locationPathname.charAt(endSlashPosition) === \"/\");\n\n    let isPending =\n      nextLocationPathname != null &&\n      (nextLocationPathname === toPathname ||\n        (!end &&\n          nextLocationPathname.startsWith(toPathname) &&\n          nextLocationPathname.charAt(toPathname.length) === \"/\"));\n\n    let renderProps = {\n      isActive,\n      isPending,\n      isTransitioning,\n    };\n\n    let ariaCurrent = isActive ? ariaCurrentProp : undefined;\n\n    let className: string | undefined;\n    if (typeof classNameProp === \"function\") {\n      className = classNameProp(renderProps);\n    } else {\n      // If the className prop is not a function, we use a default `active`\n      // class for <NavLink />s that are active. In v5 `active` was the default\n      // value for `activeClassName`, but we are removing that API and can still\n      // use the old default behavior for a cleaner upgrade path and keep the\n      // simple styling rules working as they currently do.\n      className = [\n        classNameProp,\n        isActive ? \"active\" : null,\n        isPending ? \"pending\" : null,\n        isTransitioning ? \"transitioning\" : null,\n      ]\n        .filter(Boolean)\n        .join(\" \");\n    }\n\n    let style =\n      typeof styleProp === \"function\" ? styleProp(renderProps) : styleProp;\n\n    return (\n      <Link\n        {...rest}\n        aria-current={ariaCurrent}\n        className={className}\n        ref={ref}\n        style={style}\n        to={to}\n        unstable_viewTransition={unstable_viewTransition}\n      >\n        {typeof children === \"function\" ? children(renderProps) : children}\n      </Link>\n    );\n  }\n);\n\nif (__DEV__) {\n  NavLink.displayName = \"NavLink\";\n}\n\n/**\n * Form props shared by navigations and fetchers\n */\ninterface SharedFormProps extends React.FormHTMLAttributes<HTMLFormElement> {\n  /**\n   * The HTTP verb to use when the form is submit. Supports \"get\", \"post\",\n   * \"put\", \"delete\", \"patch\".\n   */\n  method?: HTMLFormMethod;\n\n  /**\n   * `<form encType>` - enhancing beyond the normal string type and limiting\n   * to the built-in browser supported values\n   */\n  encType?:\n    | \"application/x-www-form-urlencoded\"\n    | \"multipart/form-data\"\n    | \"text/plain\";\n\n  /**\n   * Normal `<form action>` but supports React Router's relative paths.\n   */\n  action?: string;\n\n  /**\n   * Determines whether the form action is relative to the route hierarchy or\n   * the pathname.  Use this if you want to opt out of navigating the route\n   * hierarchy and want to instead route based on /-delimited URL segments\n   */\n  relative?: RelativeRoutingType;\n\n  /**\n   * Prevent the scroll position from resetting to the top of the viewport on\n   * completion of the navigation when using the <ScrollRestoration> component\n   */\n  preventScrollReset?: boolean;\n\n  /**\n   * A function to call when the form is submitted. If you call\n   * `event.preventDefault()` then this form will not do anything.\n   */\n  onSubmit?: React.FormEventHandler<HTMLFormElement>;\n}\n\n/**\n * Form props available to fetchers\n */\nexport interface FetcherFormProps extends SharedFormProps {}\n\n/**\n * Form props available to navigations\n */\nexport interface FormProps extends SharedFormProps {\n  /**\n   * Indicate a specific fetcherKey to use when using navigate=false\n   */\n  fetcherKey?: string;\n\n  /**\n   * navigate=false will use a fetcher instead of a navigation\n   */\n  navigate?: boolean;\n\n  /**\n   * Forces a full document navigation instead of a fetch.\n   */\n  reloadDocument?: boolean;\n\n  /**\n   * Replaces the current entry in the browser history stack when the form\n   * navigates. Use this if you don't want the user to be able to click \"back\"\n   * to the page with the form on it.\n   */\n  replace?: boolean;\n\n  /**\n   * State object to add to the history stack entry for this navigation\n   */\n  state?: any;\n\n  /**\n   * Enable view transitions on this Form navigation\n   */\n  unstable_viewTransition?: boolean;\n}\n\ntype HTMLSubmitEvent = React.BaseSyntheticEvent<\n  SubmitEvent,\n  Event,\n  HTMLFormElement\n>;\n\ntype HTMLFormSubmitter = HTMLButtonElement | HTMLInputElement;\n\n/**\n * A `@remix-run/router`-aware `<form>`. It behaves like a normal form except\n * that the interaction with the server is with `fetch` instead of new document\n * requests, allowing components to add nicer UX to the page as the form is\n * submitted and returns with data.\n */\nexport const Form = React.forwardRef<HTMLFormElement, FormProps>(\n  (\n    {\n      fetcherKey,\n      navigate,\n      reloadDocument,\n      replace,\n      state,\n      method = defaultMethod,\n      action,\n      onSubmit,\n      relative,\n      preventScrollReset,\n      unstable_viewTransition,\n      ...props\n    },\n    forwardedRef\n  ) => {\n    let submit = useSubmit();\n    let formAction = useFormAction(action, { relative });\n    let formMethod: HTMLFormMethod =\n      method.toLowerCase() === \"get\" ? \"get\" : \"post\";\n\n    let submitHandler: React.FormEventHandler<HTMLFormElement> = (event) => {\n      onSubmit && onSubmit(event);\n      if (event.defaultPrevented) return;\n      event.preventDefault();\n\n      let submitter = (event as unknown as HTMLSubmitEvent).nativeEvent\n        .submitter as HTMLFormSubmitter | null;\n\n      let submitMethod =\n        (submitter?.getAttribute(\"formmethod\") as HTMLFormMethod | undefined) ||\n        method;\n\n      submit(submitter || event.currentTarget, {\n        fetcherKey,\n        method: submitMethod,\n        navigate,\n        replace,\n        state,\n        relative,\n        preventScrollReset,\n        unstable_viewTransition,\n      });\n    };\n\n    return (\n      <form\n        ref={forwardedRef}\n        method={formMethod}\n        action={formAction}\n        onSubmit={reloadDocument ? onSubmit : submitHandler}\n        {...props}\n      />\n    );\n  }\n);\n\nif (__DEV__) {\n  Form.displayName = \"Form\";\n}\n\nexport interface ScrollRestorationProps {\n  getKey?: GetScrollRestorationKeyFunction;\n  storageKey?: string;\n}\n\n/**\n * This component will emulate the browser's scroll restoration on location\n * changes.\n */\nexport function ScrollRestoration({\n  getKey,\n  storageKey,\n}: ScrollRestorationProps) {\n  useScrollRestoration({ getKey, storageKey });\n  return null;\n}\n\nif (__DEV__) {\n  ScrollRestoration.displayName = \"ScrollRestoration\";\n}\n//#endregion\n\n////////////////////////////////////////////////////////////////////////////////\n//#region Hooks\n////////////////////////////////////////////////////////////////////////////////\n\nenum DataRouterHook {\n  UseScrollRestoration = \"useScrollRestoration\",\n  UseSubmit = \"useSubmit\",\n  UseSubmitFetcher = \"useSubmitFetcher\",\n  UseFetcher = \"useFetcher\",\n  useViewTransitionState = \"useViewTransitionState\",\n}\n\nenum DataRouterStateHook {\n  UseFetcher = \"useFetcher\",\n  UseFetchers = \"useFetchers\",\n  UseScrollRestoration = \"useScrollRestoration\",\n}\n\n// Internal hooks\n\nfunction getDataRouterConsoleError(\n  hookName: DataRouterHook | DataRouterStateHook\n) {\n  return `${hookName} must be used within a data router.  See https://reactrouter.com/routers/picking-a-router.`;\n}\n\nfunction useDataRouterContext(hookName: DataRouterHook) {\n  let ctx = React.useContext(DataRouterContext);\n  invariant(ctx, getDataRouterConsoleError(hookName));\n  return ctx;\n}\n\nfunction useDataRouterState(hookName: DataRouterStateHook) {\n  let state = React.useContext(DataRouterStateContext);\n  invariant(state, getDataRouterConsoleError(hookName));\n  return state;\n}\n\n// External hooks\n\n/**\n * Handles the click behavior for router `<Link>` components. This is useful if\n * you need to create custom `<Link>` components with the same click behavior we\n * use in our exported `<Link>`.\n */\nexport function useLinkClickHandler<E extends Element = HTMLAnchorElement>(\n  to: To,\n  {\n    target,\n    replace: replaceProp,\n    state,\n    preventScrollReset,\n    relative,\n    unstable_viewTransition,\n  }: {\n    target?: React.HTMLAttributeAnchorTarget;\n    replace?: boolean;\n    state?: any;\n    preventScrollReset?: boolean;\n    relative?: RelativeRoutingType;\n    unstable_viewTransition?: boolean;\n  } = {}\n): (event: React.MouseEvent<E, MouseEvent>) => void {\n  let navigate = useNavigate();\n  let location = useLocation();\n  let path = useResolvedPath(to, { relative });\n\n  return React.useCallback(\n    (event: React.MouseEvent<E, MouseEvent>) => {\n      if (shouldProcessLinkClick(event, target)) {\n        event.preventDefault();\n\n        // If the URL hasn't changed, a regular <a> will do a replace instead of\n        // a push, so do the same here unless the replace prop is explicitly set\n        let replace =\n          replaceProp !== undefined\n            ? replaceProp\n            : createPath(location) === createPath(path);\n\n        navigate(to, {\n          replace,\n          state,\n          preventScrollReset,\n          relative,\n          unstable_viewTransition,\n        });\n      }\n    },\n    [\n      location,\n      navigate,\n      path,\n      replaceProp,\n      state,\n      target,\n      to,\n      preventScrollReset,\n      relative,\n      unstable_viewTransition,\n    ]\n  );\n}\n\n/**\n * A convenient wrapper for reading and writing search parameters via the\n * URLSearchParams interface.\n */\nexport function useSearchParams(\n  defaultInit?: URLSearchParamsInit\n): [URLSearchParams, SetURLSearchParams] {\n  warning(\n    typeof URLSearchParams !== \"undefined\",\n    `You cannot use the \\`useSearchParams\\` hook in a browser that does not ` +\n      `support the URLSearchParams API. If you need to support Internet ` +\n      `Explorer 11, we recommend you load a polyfill such as ` +\n      `https://github.com/ungap/url-search-params.`\n  );\n\n  let defaultSearchParamsRef = React.useRef(createSearchParams(defaultInit));\n  let hasSetSearchParamsRef = React.useRef(false);\n\n  let location = useLocation();\n  let searchParams = React.useMemo(\n    () =>\n      // Only merge in the defaults if we haven't yet called setSearchParams.\n      // Once we call that we want those to take precedence, otherwise you can't\n      // remove a param with setSearchParams({}) if it has an initial value\n      getSearchParamsForLocation(\n        location.search,\n        hasSetSearchParamsRef.current ? null : defaultSearchParamsRef.current\n      ),\n    [location.search]\n  );\n\n  let navigate = useNavigate();\n  let setSearchParams = React.useCallback<SetURLSearchParams>(\n    (nextInit, navigateOptions) => {\n      const newSearchParams = createSearchParams(\n        typeof nextInit === \"function\" ? nextInit(searchParams) : nextInit\n      );\n      hasSetSearchParamsRef.current = true;\n      navigate(\"?\" + newSearchParams, navigateOptions);\n    },\n    [navigate, searchParams]\n  );\n\n  return [searchParams, setSearchParams];\n}\n\nexport type SetURLSearchParams = (\n  nextInit?:\n    | URLSearchParamsInit\n    | ((prev: URLSearchParams) => URLSearchParamsInit),\n  navigateOpts?: NavigateOptions\n) => void;\n\n/**\n * Submits a HTML `<form>` to the server without reloading the page.\n */\nexport interface SubmitFunction {\n  (\n    /**\n     * Specifies the `<form>` to be submitted to the server, a specific\n     * `<button>` or `<input type=\"submit\">` to use to submit the form, or some\n     * arbitrary data to submit.\n     *\n     * Note: When using a `<button>` its `name` and `value` will also be\n     * included in the form data that is submitted.\n     */\n    target: SubmitTarget,\n\n    /**\n     * Options that override the `<form>`'s own attributes. Required when\n     * submitting arbitrary data without a backing `<form>`.\n     */\n    options?: SubmitOptions\n  ): void;\n}\n\n/**\n * Submits a fetcher `<form>` to the server without reloading the page.\n */\nexport interface FetcherSubmitFunction {\n  (\n    target: SubmitTarget,\n    // Fetchers cannot replace or set state because they are not navigation events\n    options?: FetcherSubmitOptions\n  ): void;\n}\n\nfunction validateClientSideSubmission() {\n  if (typeof document === \"undefined\") {\n    throw new Error(\n      \"You are calling submit during the server render. \" +\n        \"Try calling submit within a `useEffect` or callback instead.\"\n    );\n  }\n}\n\nlet fetcherId = 0;\nlet getUniqueFetcherId = () => `__${String(++fetcherId)}__`;\n\n/**\n * Returns a function that may be used to programmatically submit a form (or\n * some arbitrary data) to the server.\n */\nexport function useSubmit(): SubmitFunction {\n  let { router } = useDataRouterContext(DataRouterHook.UseSubmit);\n  let { basename } = React.useContext(NavigationContext);\n  let currentRouteId = useRouteId();\n\n  return React.useCallback<SubmitFunction>(\n    (target, options = {}) => {\n      validateClientSideSubmission();\n\n      let { action, method, encType, formData, body } = getFormSubmissionInfo(\n        target,\n        basename\n      );\n\n      if (options.navigate === false) {\n        let key = options.fetcherKey || getUniqueFetcherId();\n        router.fetch(key, currentRouteId, options.action || action, {\n          preventScrollReset: options.preventScrollReset,\n          formData,\n          body,\n          formMethod: options.method || (method as HTMLFormMethod),\n          formEncType: options.encType || (encType as FormEncType),\n          unstable_flushSync: options.unstable_flushSync,\n        });\n      } else {\n        router.navigate(options.action || action, {\n          preventScrollReset: options.preventScrollReset,\n          formData,\n          body,\n          formMethod: options.method || (method as HTMLFormMethod),\n          formEncType: options.encType || (encType as FormEncType),\n          replace: options.replace,\n          state: options.state,\n          fromRouteId: currentRouteId,\n          unstable_flushSync: options.unstable_flushSync,\n          unstable_viewTransition: options.unstable_viewTransition,\n        });\n      }\n    },\n    [router, basename, currentRouteId]\n  );\n}\n\n// v7: Eventually we should deprecate this entirely in favor of using the\n// router method directly?\nexport function useFormAction(\n  action?: string,\n  { relative }: { relative?: RelativeRoutingType } = {}\n): string {\n  let { basename } = React.useContext(NavigationContext);\n  let routeContext = React.useContext(RouteContext);\n  invariant(routeContext, \"useFormAction must be used inside a RouteContext\");\n\n  let [match] = routeContext.matches.slice(-1);\n  // Shallow clone path so we can modify it below, otherwise we modify the\n  // object referenced by useMemo inside useResolvedPath\n  let path = { ...useResolvedPath(action ? action : \".\", { relative }) };\n\n  // If no action was specified, browsers will persist current search params\n  // when determining the path, so match that behavior\n  // https://github.com/remix-run/remix/issues/927\n  let location = useLocation();\n  if (action == null) {\n    // Safe to write to this directly here since if action was undefined, we\n    // would have called useResolvedPath(\".\") which will never include a search\n    path.search = location.search;\n\n    // When grabbing search params from the URL, remove any included ?index param\n    // since it might not apply to our contextual route.  We add it back based\n    // on match.route.index below\n    let params = new URLSearchParams(path.search);\n    if (params.has(\"index\") && params.get(\"index\") === \"\") {\n      params.delete(\"index\");\n      path.search = params.toString() ? `?${params.toString()}` : \"\";\n    }\n  }\n\n  if ((!action || action === \".\") && match.route.index) {\n    path.search = path.search\n      ? path.search.replace(/^\\?/, \"?index&\")\n      : \"?index\";\n  }\n\n  // If we're operating within a basename, prepend it to the pathname prior\n  // to creating the form action.  If this is a root navigation, then just use\n  // the raw basename which allows the basename to have full control over the\n  // presence of a trailing slash on root actions\n  if (basename !== \"/\") {\n    path.pathname =\n      path.pathname === \"/\" ? basename : joinPaths([basename, path.pathname]);\n  }\n\n  return createPath(path);\n}\n\nexport type FetcherWithComponents<TData> = Fetcher<TData> & {\n  Form: React.ForwardRefExoticComponent<\n    FetcherFormProps & React.RefAttributes<HTMLFormElement>\n  >;\n  submit: FetcherSubmitFunction;\n  load: (href: string, opts?: { unstable_flushSync?: boolean }) => void;\n};\n\n// TODO: (v7) Change the useFetcher generic default from `any` to `unknown`\n\n/**\n * Interacts with route loaders and actions without causing a navigation. Great\n * for any interaction that stays on the same page.\n */\nexport function useFetcher<TData = any>({\n  key,\n}: { key?: string } = {}): FetcherWithComponents<TData> {\n  let { router } = useDataRouterContext(DataRouterHook.UseFetcher);\n  let state = useDataRouterState(DataRouterStateHook.UseFetcher);\n  let fetcherData = React.useContext(FetchersContext);\n  let route = React.useContext(RouteContext);\n  let routeId = route.matches[route.matches.length - 1]?.route.id;\n\n  invariant(fetcherData, `useFetcher must be used inside a FetchersContext`);\n  invariant(route, `useFetcher must be used inside a RouteContext`);\n  invariant(\n    routeId != null,\n    `useFetcher can only be used on routes that contain a unique \"id\"`\n  );\n\n  // Fetcher key handling\n  // OK to call conditionally to feature detect `useId`\n  // eslint-disable-next-line react-hooks/rules-of-hooks\n  let defaultKey = useIdImpl ? useIdImpl() : \"\";\n  let [fetcherKey, setFetcherKey] = React.useState<string>(key || defaultKey);\n  if (key && key !== fetcherKey) {\n    setFetcherKey(key);\n  } else if (!fetcherKey) {\n    // We will only fall through here when `useId` is not available\n    setFetcherKey(getUniqueFetcherId());\n  }\n\n  // Registration/cleanup\n  React.useEffect(() => {\n    router.getFetcher(fetcherKey);\n    return () => {\n      // Tell the router we've unmounted - if v7_fetcherPersist is enabled this\n      // will not delete immediately but instead queue up a delete after the\n      // fetcher returns to an `idle` state\n      router.deleteFetcher(fetcherKey);\n    };\n  }, [router, fetcherKey]);\n\n  // Fetcher additions\n  let load = React.useCallback(\n    (href: string, opts?: { unstable_flushSync?: boolean }) => {\n      invariant(routeId, \"No routeId available for fetcher.load()\");\n      router.fetch(fetcherKey, routeId, href, opts);\n    },\n    [fetcherKey, routeId, router]\n  );\n\n  let submitImpl = useSubmit();\n  let submit = React.useCallback<FetcherSubmitFunction>(\n    (target, opts) => {\n      submitImpl(target, {\n        ...opts,\n        navigate: false,\n        fetcherKey,\n      });\n    },\n    [fetcherKey, submitImpl]\n  );\n\n  let FetcherForm = React.useMemo(() => {\n    let FetcherForm = React.forwardRef<HTMLFormElement, FetcherFormProps>(\n      (props, ref) => {\n        return (\n          <Form {...props} navigate={false} fetcherKey={fetcherKey} ref={ref} />\n        );\n      }\n    );\n    if (__DEV__) {\n      FetcherForm.displayName = \"fetcher.Form\";\n    }\n    return FetcherForm;\n  }, [fetcherKey]);\n\n  // Exposed FetcherWithComponents\n  let fetcher = state.fetchers.get(fetcherKey) || IDLE_FETCHER;\n  let data = fetcherData.get(fetcherKey);\n  let fetcherWithComponents = React.useMemo(\n    () => ({\n      Form: FetcherForm,\n      submit,\n      load,\n      ...fetcher,\n      data,\n    }),\n    [FetcherForm, submit, load, fetcher, data]\n  );\n\n  return fetcherWithComponents;\n}\n\n/**\n * Provides all fetchers currently on the page. Useful for layouts and parent\n * routes that need to provide pending/optimistic UI regarding the fetch.\n */\nexport function useFetchers(): (Fetcher & { key: string })[] {\n  let state = useDataRouterState(DataRouterStateHook.UseFetchers);\n  return Array.from(state.fetchers.entries()).map(([key, fetcher]) => ({\n    ...fetcher,\n    key,\n  }));\n}\n\nconst SCROLL_RESTORATION_STORAGE_KEY = \"react-router-scroll-positions\";\nlet savedScrollPositions: Record<string, number> = {};\n\n/**\n * When rendered inside a RouterProvider, will restore scroll positions on navigations\n */\nfunction useScrollRestoration({\n  getKey,\n  storageKey,\n}: {\n  getKey?: GetScrollRestorationKeyFunction;\n  storageKey?: string;\n} = {}) {\n  let { router } = useDataRouterContext(DataRouterHook.UseScrollRestoration);\n  let { restoreScrollPosition, preventScrollReset } = useDataRouterState(\n    DataRouterStateHook.UseScrollRestoration\n  );\n  let { basename } = React.useContext(NavigationContext);\n  let location = useLocation();\n  let matches = useMatches();\n  let navigation = useNavigation();\n\n  // Trigger manual scroll restoration while we're active\n  React.useEffect(() => {\n    window.history.scrollRestoration = \"manual\";\n    return () => {\n      window.history.scrollRestoration = \"auto\";\n    };\n  }, []);\n\n  // Save positions on pagehide\n  usePageHide(\n    React.useCallback(() => {\n      if (navigation.state === \"idle\") {\n        let key = (getKey ? getKey(location, matches) : null) || location.key;\n        savedScrollPositions[key] = window.scrollY;\n      }\n      try {\n        sessionStorage.setItem(\n          storageKey || SCROLL_RESTORATION_STORAGE_KEY,\n          JSON.stringify(savedScrollPositions)\n        );\n      } catch (error) {\n        warning(\n          false,\n          `Failed to save scroll positions in sessionStorage, <ScrollRestoration /> will not work properly (${error}).`\n        );\n      }\n      window.history.scrollRestoration = \"auto\";\n    }, [storageKey, getKey, navigation.state, location, matches])\n  );\n\n  // Read in any saved scroll locations\n  if (typeof document !== \"undefined\") {\n    // eslint-disable-next-line react-hooks/rules-of-hooks\n    React.useLayoutEffect(() => {\n      try {\n        let sessionPositions = sessionStorage.getItem(\n          storageKey || SCROLL_RESTORATION_STORAGE_KEY\n        );\n        if (sessionPositions) {\n          savedScrollPositions = JSON.parse(sessionPositions);\n        }\n      } catch (e) {\n        // no-op, use default empty object\n      }\n    }, [storageKey]);\n\n    // Enable scroll restoration in the router\n    // eslint-disable-next-line react-hooks/rules-of-hooks\n    React.useLayoutEffect(() => {\n      let getKeyWithoutBasename: GetScrollRestorationKeyFunction | undefined =\n        getKey && basename !== \"/\"\n          ? (location, matches) =>\n              getKey(\n                // Strip the basename to match useLocation()\n                {\n                  ...location,\n                  pathname:\n                    stripBasename(location.pathname, basename) ||\n                    location.pathname,\n                },\n                matches\n              )\n          : getKey;\n      let disableScrollRestoration = router?.enableScrollRestoration(\n        savedScrollPositions,\n        () => window.scrollY,\n        getKeyWithoutBasename\n      );\n      return () => disableScrollRestoration && disableScrollRestoration();\n    }, [router, basename, getKey]);\n\n    // Restore scrolling when state.restoreScrollPosition changes\n    // eslint-disable-next-line react-hooks/rules-of-hooks\n    React.useLayoutEffect(() => {\n      // Explicit false means don't do anything (used for submissions)\n      if (restoreScrollPosition === false) {\n        return;\n      }\n\n      // been here before, scroll to it\n      if (typeof restoreScrollPosition === \"number\") {\n        window.scrollTo(0, restoreScrollPosition);\n        return;\n      }\n\n      // try to scroll to the hash\n      if (location.hash) {\n        let el = document.getElementById(\n          decodeURIComponent(location.hash.slice(1))\n        );\n        if (el) {\n          el.scrollIntoView();\n          return;\n        }\n      }\n\n      // Don't reset if this navigation opted out\n      if (preventScrollReset === true) {\n        return;\n      }\n\n      // otherwise go to the top on new locations\n      window.scrollTo(0, 0);\n    }, [location, restoreScrollPosition, preventScrollReset]);\n  }\n}\n\nexport { useScrollRestoration as UNSAFE_useScrollRestoration };\n\n/**\n * Setup a callback to be fired on the window's `beforeunload` event. This is\n * useful for saving some data to `window.localStorage` just before the page\n * refreshes.\n *\n * Note: The `callback` argument should be a function created with\n * `React.useCallback()`.\n */\nexport function useBeforeUnload(\n  callback: (event: BeforeUnloadEvent) => any,\n  options?: { capture?: boolean }\n): void {\n  let { capture } = options || {};\n  React.useEffect(() => {\n    let opts = capture != null ? { capture } : undefined;\n    window.addEventListener(\"beforeunload\", callback, opts);\n    return () => {\n      window.removeEventListener(\"beforeunload\", callback, opts);\n    };\n  }, [callback, capture]);\n}\n\n/**\n * Setup a callback to be fired on the window's `pagehide` event. This is\n * useful for saving some data to `window.localStorage` just before the page\n * refreshes.  This event is better supported than beforeunload across browsers.\n *\n * Note: The `callback` argument should be a function created with\n * `React.useCallback()`.\n */\nfunction usePageHide(\n  callback: (event: PageTransitionEvent) => any,\n  options?: { capture?: boolean }\n): void {\n  let { capture } = options || {};\n  React.useEffect(() => {\n    let opts = capture != null ? { capture } : undefined;\n    window.addEventListener(\"pagehide\", callback, opts);\n    return () => {\n      window.removeEventListener(\"pagehide\", callback, opts);\n    };\n  }, [callback, capture]);\n}\n\n/**\n * Wrapper around useBlocker to show a window.confirm prompt to users instead\n * of building a custom UI with useBlocker.\n *\n * Warning: This has *a lot of rough edges* and behaves very differently (and\n * very incorrectly in some cases) across browsers if user click addition\n * back/forward navigations while the confirm is open.  Use at your own risk.\n */\nfunction usePrompt({\n  when,\n  message,\n}: {\n  when: boolean | BlockerFunction;\n  message: string;\n}) {\n  let blocker = useBlocker(when);\n\n  React.useEffect(() => {\n    if (blocker.state === \"blocked\") {\n      let proceed = window.confirm(message);\n      if (proceed) {\n        // This timeout is needed to avoid a weird \"race\" on POP navigations\n        // between the `window.history` revert navigation and the result of\n        // `window.confirm`\n        setTimeout(blocker.proceed, 0);\n      } else {\n        blocker.reset();\n      }\n    }\n  }, [blocker, message]);\n\n  React.useEffect(() => {\n    if (blocker.state === \"blocked\" && !when) {\n      blocker.reset();\n    }\n  }, [blocker, when]);\n}\n\nexport { usePrompt as unstable_usePrompt };\n\n/**\n * Return a boolean indicating if there is an active view transition to the\n * given href.  You can use this value to render CSS classes or viewTransitionName\n * styles onto your elements\n *\n * @param href The destination href\n * @param [opts.relative] Relative routing type (\"route\" | \"path\")\n */\nfunction useViewTransitionState(\n  to: To,\n  opts: { relative?: RelativeRoutingType } = {}\n) {\n  let vtContext = React.useContext(ViewTransitionContext);\n\n  invariant(\n    vtContext != null,\n    \"`unstable_useViewTransitionState` must be used within `react-router-dom`'s `RouterProvider`.  \" +\n      \"Did you accidentally import `RouterProvider` from `react-router`?\"\n  );\n\n  let { basename } = useDataRouterContext(\n    DataRouterHook.useViewTransitionState\n  );\n  let path = useResolvedPath(to, { relative: opts.relative });\n  if (!vtContext.isTransitioning) {\n    return false;\n  }\n\n  let currentPath =\n    stripBasename(vtContext.currentLocation.pathname, basename) ||\n    vtContext.currentLocation.pathname;\n  let nextPath =\n    stripBasename(vtContext.nextLocation.pathname, basename) ||\n    vtContext.nextLocation.pathname;\n\n  // Transition is active if we're going to or coming from the indicated\n  // destination.  This ensures that other PUSH navigations that reverse\n  // an indicated transition apply.  I.e., on the list view you have:\n  //\n  //   <NavLink to=\"/details/1\" unstable_viewTransition>\n  //\n  // If you click the breadcrumb back to the list view:\n  //\n  //   <NavLink to=\"/list\" unstable_viewTransition>\n  //\n  // We should apply the transition because it's indicated as active going\n  // from /list -> /details/1 and therefore should be active on the reverse\n  // (even though this isn't strictly a POP reverse)\n  return (\n    matchPath(path.pathname, nextPath) != null ||\n    matchPath(path.pathname, currentPath) != null\n  );\n}\n\nexport { useViewTransitionState as unstable_useViewTransitionState };\n\n//#endregion\n"],"names":["defaultMethod","defaultEncType","isHtmlElement","object","tagName","isButtonElement","toLowerCase","isFormElement","isInputElement","isModifiedEvent","event","metaKey","altKey","ctrlKey","shiftKey","shouldProcessLinkClick","target","button","createSearchParams","init","URLSearchParams","Array","isArray","Object","keys","reduce","memo","key","value","concat","map","v","getSearchParamsForLocation","locationSearch","defaultSearchParams","searchParams","forEach","_","has","getAll","append","_formDataSupportsSubmitter","isFormDataSubmitterSupported","FormData","document","createElement","e","supportedFormEncTypes","Set","getFormEncType","encType","process","env","NODE_ENV","warning","getFormSubmissionInfo","basename","method","action","formData","body","attr","getAttribute","stripBasename","type","form","Error","name","prefix","undefined","REACT_ROUTER_VERSION","window","__reactRouterVersion","createBrowserRouter","routes","opts","createRouter","future","_extends","v7_prependBasename","history","createBrowserHistory","hydrationData","parseHydrationData","mapRouteProperties","unstable_dataStrategy","unstable_patchRoutesOnMiss","initialize","createHashRouter","createHashHistory","_window","state","__staticRouterHydrationData","errors","deserializeErrors","entries","serialized","val","__type","ErrorResponseImpl","status","statusText","data","internal","__subType","ErrorConstructor","error","message","stack","ViewTransitionContext","React","createContext","isTransitioning","displayName","FetchersContext","Map","START_TRANSITION","startTransitionImpl","FLUSH_SYNC","flushSyncImpl","ReactDOM","USE_ID","useIdImpl","startTransitionSafe","cb","flushSyncSafe","Deferred","constructor","promise","Promise","resolve","reject","reason","RouterProvider","_ref","fallbackElement","router","setStateImpl","useState","pendingState","setPendingState","vtContext","setVtContext","renderDfd","setRenderDfd","transition","setTransition","interruption","setInterruption","fetcherData","useRef","v7_startTransition","optInStartTransition","useCallback","setState","newState","_ref2","deletedFetchers","unstable_flushSync","flushSync","unstable_viewTransitionOpts","viewTransitionOpts","current","delete","fetchers","fetcher","set","isViewTransitionUnavailable","startViewTransition","skipTransition","currentLocation","nextLocation","t","finished","finally","useLayoutEffect","subscribe","useEffect","renderPromise","location","v7_partialHydration","navigator","useMemo","createHref","encodeLocation","go","n","navigate","push","to","preventScrollReset","replace","dataRouterContext","static","routerFuture","v7_relativeSplatPath","Fragment","DataRouterContext","Provider","DataRouterStateContext","Router","navigationType","historyAction","initialized","MemoizedDataRoutes","DataRoutes","_ref3","useRoutesImpl","BrowserRouter","_ref4","children","historyRef","v5Compat","listen","HashRouter","_ref5","HistoryRouter","_ref6","isBrowser","ABSOLUTE_URL_REGEX","Link","forwardRef","LinkWithRef","_ref7","ref","onClick","relative","reloadDocument","unstable_viewTransition","rest","_objectWithoutPropertiesLoose","_excluded","useContext","NavigationContext","absoluteHref","isExternal","test","currentUrl","URL","href","targetUrl","startsWith","protocol","path","pathname","origin","search","hash","useHref","internalOnClick","useLinkClickHandler","handleClick","defaultPrevented","NavLink","NavLinkWithRef","_ref8","ariaCurrentProp","caseSensitive","className","classNameProp","end","style","styleProp","_excluded2","useResolvedPath","useLocation","routerState","useViewTransitionState","toPathname","locationPathname","nextLocationPathname","navigation","endSlashPosition","endsWith","length","isActive","charAt","isPending","renderProps","ariaCurrent","filter","Boolean","join","Form","_ref9","forwardedRef","fetcherKey","onSubmit","props","_excluded3","submit","useSubmit","formAction","useFormAction","formMethod","submitHandler","preventDefault","submitter","nativeEvent","submitMethod","currentTarget","ScrollRestoration","_ref10","getKey","storageKey","useScrollRestoration","DataRouterHook","DataRouterStateHook","getDataRouterConsoleError","hookName","useDataRouterContext","ctx","invariant","useDataRouterState","_temp","replaceProp","useNavigate","createPath","useSearchParams","defaultInit","defaultSearchParamsRef","hasSetSearchParamsRef","setSearchParams","nextInit","navigateOptions","newSearchParams","validateClientSideSubmission","fetcherId","getUniqueFetcherId","String","UseSubmit","currentRouteId","useRouteId","options","fetch","formEncType","fromRouteId","_temp2","routeContext","RouteContext","match","matches","slice","params","get","toString","route","index","joinPaths","useFetcher","_temp3","_route$matches","UseFetcher","routeId","id","defaultKey","setFetcherKey","getFetcher","deleteFetcher","load","submitImpl","FetcherForm","IDLE_FETCHER","fetcherWithComponents","useFetchers","UseFetchers","from","_ref11","SCROLL_RESTORATION_STORAGE_KEY","savedScrollPositions","_temp4","UseScrollRestoration","restoreScrollPosition","useMatches","useNavigation","scrollRestoration","usePageHide","scrollY","sessionStorage","setItem","JSON","stringify","sessionPositions","getItem","parse","getKeyWithoutBasename","disableScrollRestoration","enableScrollRestoration","scrollTo","el","getElementById","decodeURIComponent","scrollIntoView","useBeforeUnload","callback","capture","addEventListener","removeEventListener","usePrompt","_ref12","when","blocker","useBlocker","proceed","confirm","setTimeout","reset","currentPath","nextPath","matchPath"],"mappings":"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"}
     1{"version":3,"file":"index.js","sources":["../dom.ts","../index.tsx"],"sourcesContent":["import type {\n  FormEncType,\n  HTMLFormMethod,\n  RelativeRoutingType,\n} from \"@remix-run/router\";\nimport { stripBasename, UNSAFE_warning as warning } from \"@remix-run/router\";\n\nexport const defaultMethod: HTMLFormMethod = \"get\";\nconst defaultEncType: FormEncType = \"application/x-www-form-urlencoded\";\n\nexport function isHtmlElement(object: any): object is HTMLElement {\n  return object != null && typeof object.tagName === \"string\";\n}\n\nexport function isButtonElement(object: any): object is HTMLButtonElement {\n  return isHtmlElement(object) && object.tagName.toLowerCase() === \"button\";\n}\n\nexport function isFormElement(object: any): object is HTMLFormElement {\n  return isHtmlElement(object) && object.tagName.toLowerCase() === \"form\";\n}\n\nexport function isInputElement(object: any): object is HTMLInputElement {\n  return isHtmlElement(object) && object.tagName.toLowerCase() === \"input\";\n}\n\ntype LimitedMouseEvent = Pick<\n  MouseEvent,\n  \"button\" | \"metaKey\" | \"altKey\" | \"ctrlKey\" | \"shiftKey\"\n>;\n\nfunction isModifiedEvent(event: LimitedMouseEvent) {\n  return !!(event.metaKey || event.altKey || event.ctrlKey || event.shiftKey);\n}\n\nexport function shouldProcessLinkClick(\n  event: LimitedMouseEvent,\n  target?: string\n) {\n  return (\n    event.button === 0 && // Ignore everything but left clicks\n    (!target || target === \"_self\") && // Let browser handle \"target=_blank\" etc.\n    !isModifiedEvent(event) // Ignore clicks with modifier keys\n  );\n}\n\nexport type ParamKeyValuePair = [string, string];\n\nexport type URLSearchParamsInit =\n  | string\n  | ParamKeyValuePair[]\n  | Record<string, string | string[]>\n  | URLSearchParams;\n\n/**\n * Creates a URLSearchParams object using the given initializer.\n *\n * This is identical to `new URLSearchParams(init)` except it also\n * supports arrays as values in the object form of the initializer\n * instead of just strings. This is convenient when you need multiple\n * values for a given key, but don't want to use an array initializer.\n *\n * For example, instead of:\n *\n *   let searchParams = new URLSearchParams([\n *     ['sort', 'name'],\n *     ['sort', 'price']\n *   ]);\n *\n * you can do:\n *\n *   let searchParams = createSearchParams({\n *     sort: ['name', 'price']\n *   });\n */\nexport function createSearchParams(\n  init: URLSearchParamsInit = \"\"\n): URLSearchParams {\n  return new URLSearchParams(\n    typeof init === \"string\" ||\n    Array.isArray(init) ||\n    init instanceof URLSearchParams\n      ? init\n      : Object.keys(init).reduce((memo, key) => {\n          let value = init[key];\n          return memo.concat(\n            Array.isArray(value) ? value.map((v) => [key, v]) : [[key, value]]\n          );\n        }, [] as ParamKeyValuePair[])\n  );\n}\n\nexport function getSearchParamsForLocation(\n  locationSearch: string,\n  defaultSearchParams: URLSearchParams | null\n) {\n  let searchParams = createSearchParams(locationSearch);\n\n  if (defaultSearchParams) {\n    // Use `defaultSearchParams.forEach(...)` here instead of iterating of\n    // `defaultSearchParams.keys()` to work-around a bug in Firefox related to\n    // web extensions. Relevant Bugzilla tickets:\n    // https://bugzilla.mozilla.org/show_bug.cgi?id=1414602\n    // https://bugzilla.mozilla.org/show_bug.cgi?id=1023984\n    defaultSearchParams.forEach((_, key) => {\n      if (!searchParams.has(key)) {\n        defaultSearchParams.getAll(key).forEach((value) => {\n          searchParams.append(key, value);\n        });\n      }\n    });\n  }\n\n  return searchParams;\n}\n\n// Thanks https://github.com/sindresorhus/type-fest!\ntype JsonObject = { [Key in string]: JsonValue } & {\n  [Key in string]?: JsonValue | undefined;\n};\ntype JsonArray = JsonValue[] | readonly JsonValue[];\ntype JsonPrimitive = string | number | boolean | null;\ntype JsonValue = JsonPrimitive | JsonObject | JsonArray;\n\nexport type SubmitTarget =\n  | HTMLFormElement\n  | HTMLButtonElement\n  | HTMLInputElement\n  | FormData\n  | URLSearchParams\n  | JsonValue\n  | null;\n\n// One-time check for submitter support\nlet _formDataSupportsSubmitter: boolean | null = null;\n\nfunction isFormDataSubmitterSupported() {\n  if (_formDataSupportsSubmitter === null) {\n    try {\n      new FormData(\n        document.createElement(\"form\"),\n        // @ts-expect-error if FormData supports the submitter parameter, this will throw\n        0\n      );\n      _formDataSupportsSubmitter = false;\n    } catch (e) {\n      _formDataSupportsSubmitter = true;\n    }\n  }\n  return _formDataSupportsSubmitter;\n}\n\n/**\n * Submit options shared by both navigations and fetchers\n */\ninterface SharedSubmitOptions {\n  /**\n   * The HTTP method used to submit the form. Overrides `<form method>`.\n   * Defaults to \"GET\".\n   */\n  method?: HTMLFormMethod;\n\n  /**\n   * The action URL path used to submit the form. Overrides `<form action>`.\n   * Defaults to the path of the current route.\n   */\n  action?: string;\n\n  /**\n   * The encoding used to submit the form. Overrides `<form encType>`.\n   * Defaults to \"application/x-www-form-urlencoded\".\n   */\n  encType?: FormEncType;\n\n  /**\n   * Determines whether the form action is relative to the route hierarchy or\n   * the pathname.  Use this if you want to opt out of navigating the route\n   * hierarchy and want to instead route based on /-delimited URL segments\n   */\n  relative?: RelativeRoutingType;\n\n  /**\n   * In browser-based environments, prevent resetting scroll after this\n   * navigation when using the <ScrollRestoration> component\n   */\n  preventScrollReset?: boolean;\n\n  /**\n   * Enable flushSync for this submission's state updates\n   */\n  flushSync?: boolean;\n}\n\n/**\n * Submit options available to fetchers\n */\nexport interface FetcherSubmitOptions extends SharedSubmitOptions {}\n\n/**\n * Submit options available to navigations\n */\nexport interface SubmitOptions extends FetcherSubmitOptions {\n  /**\n   * Set `true` to replace the current entry in the browser's history stack\n   * instead of creating a new one (i.e. stay on \"the same page\"). Defaults\n   * to `false`.\n   */\n  replace?: boolean;\n\n  /**\n   * State object to add to the history stack entry for this navigation\n   */\n  state?: any;\n\n  /**\n   * Indicate a specific fetcherKey to use when using navigate=false\n   */\n  fetcherKey?: string;\n\n  /**\n   * navigate=false will use a fetcher instead of a navigation\n   */\n  navigate?: boolean;\n\n  /**\n   * Enable view transitions on this submission navigation\n   */\n  viewTransition?: boolean;\n}\n\nconst supportedFormEncTypes: Set<FormEncType> = new Set([\n  \"application/x-www-form-urlencoded\",\n  \"multipart/form-data\",\n  \"text/plain\",\n]);\n\nfunction getFormEncType(encType: string | null) {\n  if (encType != null && !supportedFormEncTypes.has(encType as FormEncType)) {\n    warning(\n      false,\n      `\"${encType}\" is not a valid \\`encType\\` for \\`<Form>\\`/\\`<fetcher.Form>\\` ` +\n        `and will default to \"${defaultEncType}\"`\n    );\n\n    return null;\n  }\n  return encType;\n}\n\nexport function getFormSubmissionInfo(\n  target: SubmitTarget,\n  basename: string\n): {\n  action: string | null;\n  method: string;\n  encType: string;\n  formData: FormData | undefined;\n  body: any;\n} {\n  let method: string;\n  let action: string | null;\n  let encType: string;\n  let formData: FormData | undefined;\n  let body: any;\n\n  if (isFormElement(target)) {\n    // When grabbing the action from the element, it will have had the basename\n    // prefixed to ensure non-JS scenarios work, so strip it since we'll\n    // re-prefix in the router\n    let attr = target.getAttribute(\"action\");\n    action = attr ? stripBasename(attr, basename) : null;\n    method = target.getAttribute(\"method\") || defaultMethod;\n    encType = getFormEncType(target.getAttribute(\"enctype\")) || defaultEncType;\n\n    formData = new FormData(target);\n  } else if (\n    isButtonElement(target) ||\n    (isInputElement(target) &&\n      (target.type === \"submit\" || target.type === \"image\"))\n  ) {\n    let form = target.form;\n\n    if (form == null) {\n      throw new Error(\n        `Cannot submit a <button> or <input type=\"submit\"> without a <form>`\n      );\n    }\n\n    // <button>/<input type=\"submit\"> may override attributes of <form>\n\n    // When grabbing the action from the element, it will have had the basename\n    // prefixed to ensure non-JS scenarios work, so strip it since we'll\n    // re-prefix in the router\n    let attr = target.getAttribute(\"formaction\") || form.getAttribute(\"action\");\n    action = attr ? stripBasename(attr, basename) : null;\n\n    method =\n      target.getAttribute(\"formmethod\") ||\n      form.getAttribute(\"method\") ||\n      defaultMethod;\n    encType =\n      getFormEncType(target.getAttribute(\"formenctype\")) ||\n      getFormEncType(form.getAttribute(\"enctype\")) ||\n      defaultEncType;\n\n    // Build a FormData object populated from a form and submitter\n    formData = new FormData(form, target);\n\n    // If this browser doesn't support the `FormData(el, submitter)` format,\n    // then tack on the submitter value at the end.  This is a lightweight\n    // solution that is not 100% spec compliant.  For complete support in older\n    // browsers, consider using the `formdata-submitter-polyfill` package\n    if (!isFormDataSubmitterSupported()) {\n      let { name, type, value } = target;\n      if (type === \"image\") {\n        let prefix = name ? `${name}.` : \"\";\n        formData.append(`${prefix}x`, \"0\");\n        formData.append(`${prefix}y`, \"0\");\n      } else if (name) {\n        formData.append(name, value);\n      }\n    }\n  } else if (isHtmlElement(target)) {\n    throw new Error(\n      `Cannot submit element that is not <form>, <button>, or ` +\n        `<input type=\"submit|image\">`\n    );\n  } else {\n    method = defaultMethod;\n    action = null;\n    encType = defaultEncType;\n    body = target;\n  }\n\n  // Send body for <Form encType=\"text/plain\" so we encode it into text\n  if (formData && encType === \"text/plain\") {\n    body = formData;\n    formData = undefined;\n  }\n\n  return { action, method: method.toLowerCase(), encType, formData, body };\n}\n","/**\n * NOTE: If you refactor this to split up the modules into separate files,\n * you'll need to update the rollup config for react-router-dom-v5-compat.\n */\nimport * as React from \"react\";\nimport * as ReactDOM from \"react-dom\";\nimport type {\n  DataRouteObject,\n  FutureConfig,\n  Location,\n  NavigateOptions,\n  NavigationType,\n  Navigator,\n  RelativeRoutingType,\n  RouteObject,\n  RouterProps,\n  RouterProviderProps,\n  To,\n  DataStrategyFunction,\n  PatchRoutesOnNavigationFunction,\n} from \"react-router\";\nimport {\n  Router,\n  createPath,\n  useHref,\n  useLocation,\n  useMatches,\n  useNavigate,\n  useNavigation,\n  useResolvedPath,\n  useBlocker,\n  UNSAFE_DataRouterContext as DataRouterContext,\n  UNSAFE_DataRouterStateContext as DataRouterStateContext,\n  UNSAFE_NavigationContext as NavigationContext,\n  UNSAFE_RouteContext as RouteContext,\n  UNSAFE_logV6DeprecationWarnings as logV6DeprecationWarnings,\n  UNSAFE_mapRouteProperties as mapRouteProperties,\n  UNSAFE_useRouteId as useRouteId,\n  UNSAFE_useRoutesImpl as useRoutesImpl,\n} from \"react-router\";\nimport type {\n  BrowserHistory,\n  Fetcher,\n  FormEncType,\n  FormMethod,\n  FutureConfig as RouterFutureConfig,\n  GetScrollRestorationKeyFunction,\n  HashHistory,\n  History,\n  HTMLFormMethod,\n  HydrationState,\n  Router as RemixRouter,\n  V7_FormMethod,\n  RouterState,\n  RouterSubscriber,\n  BlockerFunction,\n} from \"@remix-run/router\";\nimport {\n  createRouter,\n  createBrowserHistory,\n  createHashHistory,\n  joinPaths,\n  stripBasename,\n  UNSAFE_ErrorResponseImpl as ErrorResponseImpl,\n  UNSAFE_invariant as invariant,\n  UNSAFE_warning as warning,\n  matchPath,\n  IDLE_FETCHER,\n} from \"@remix-run/router\";\n\nimport type {\n  SubmitOptions,\n  ParamKeyValuePair,\n  URLSearchParamsInit,\n  SubmitTarget,\n  FetcherSubmitOptions,\n} from \"./dom\";\nimport {\n  createSearchParams,\n  defaultMethod,\n  getFormSubmissionInfo,\n  getSearchParamsForLocation,\n  shouldProcessLinkClick,\n} from \"./dom\";\n\n////////////////////////////////////////////////////////////////////////////////\n//#region Re-exports\n////////////////////////////////////////////////////////////////////////////////\n\nexport type {\n  FormEncType,\n  FormMethod,\n  GetScrollRestorationKeyFunction,\n  ParamKeyValuePair,\n  SubmitOptions,\n  URLSearchParamsInit,\n  V7_FormMethod,\n};\nexport { createSearchParams, ErrorResponseImpl as UNSAFE_ErrorResponseImpl };\n\n// Note: Keep in sync with react-router exports!\nexport type {\n  ActionFunction,\n  ActionFunctionArgs,\n  AwaitProps,\n  Blocker,\n  BlockerFunction,\n  DataRouteMatch,\n  DataRouteObject,\n  DataStrategyFunction,\n  DataStrategyFunctionArgs,\n  DataStrategyMatch,\n  DataStrategyResult,\n  ErrorResponse,\n  Fetcher,\n  FutureConfig,\n  Hash,\n  IndexRouteObject,\n  IndexRouteProps,\n  JsonFunction,\n  LazyRouteFunction,\n  LayoutRouteProps,\n  LoaderFunction,\n  LoaderFunctionArgs,\n  Location,\n  MemoryRouterProps,\n  NavigateFunction,\n  NavigateOptions,\n  NavigateProps,\n  Navigation,\n  Navigator,\n  NonIndexRouteObject,\n  OutletProps,\n  Params,\n  ParamParseKey,\n  PatchRoutesOnNavigationFunction,\n  PatchRoutesOnNavigationFunctionArgs,\n  Path,\n  PathMatch,\n  Pathname,\n  PathParam,\n  PathPattern,\n  PathRouteProps,\n  RedirectFunction,\n  RelativeRoutingType,\n  RouteMatch,\n  RouteObject,\n  RouteProps,\n  RouterProps,\n  RouterProviderProps,\n  RoutesProps,\n  Search,\n  ShouldRevalidateFunction,\n  ShouldRevalidateFunctionArgs,\n  To,\n  UIMatch,\n} from \"react-router\";\nexport {\n  AbortedDeferredError,\n  Await,\n  MemoryRouter,\n  Navigate,\n  NavigationType,\n  Outlet,\n  Route,\n  Router,\n  Routes,\n  createMemoryRouter,\n  createPath,\n  createRoutesFromChildren,\n  createRoutesFromElements,\n  defer,\n  isRouteErrorResponse,\n  generatePath,\n  json,\n  matchPath,\n  matchRoutes,\n  parsePath,\n  redirect,\n  redirectDocument,\n  replace,\n  renderMatches,\n  resolvePath,\n  useActionData,\n  useAsyncError,\n  useAsyncValue,\n  useBlocker,\n  useHref,\n  useInRouterContext,\n  useLoaderData,\n  useLocation,\n  useMatch,\n  useMatches,\n  useNavigate,\n  useNavigation,\n  useNavigationType,\n  useOutlet,\n  useOutletContext,\n  useParams,\n  useResolvedPath,\n  useRevalidator,\n  useRouteError,\n  useRouteLoaderData,\n  useRoutes,\n} from \"react-router\";\n\n///////////////////////////////////////////////////////////////////////////////\n// DANGER! PLEASE READ ME!\n// We provide these exports as an escape hatch in the event that you need any\n// routing data that we don't provide an explicit API for. With that said, we\n// want to cover your use case if we can, so if you feel the need to use these\n// we want to hear from you. Let us know what you're building and we'll do our\n// best to make sure we can support you!\n//\n// We consider these exports an implementation detail and do not guarantee\n// against any breaking changes, regardless of the semver release. Use with\n// extreme caution and only if you understand the consequences. Godspeed.\n///////////////////////////////////////////////////////////////////////////////\n\n/** @internal */\nexport {\n  UNSAFE_DataRouterContext,\n  UNSAFE_DataRouterStateContext,\n  UNSAFE_NavigationContext,\n  UNSAFE_LocationContext,\n  UNSAFE_RouteContext,\n  UNSAFE_useRouteId,\n} from \"react-router\";\n//#endregion\n\ndeclare global {\n  var __staticRouterHydrationData: HydrationState | undefined;\n  var __reactRouterVersion: string;\n  interface Document {\n    startViewTransition(cb: () => Promise<void> | void): ViewTransition;\n  }\n}\n\n// HEY YOU! DON'T TOUCH THIS VARIABLE!\n//\n// It is replaced with the proper version at build time via a babel plugin in\n// the rollup config.\n//\n// Export a global property onto the window for React Router detection by the\n// Core Web Vitals Technology Report.  This way they can configure the `wappalyzer`\n// to detect and properly classify live websites as being built with React Router:\n// https://github.com/HTTPArchive/wappalyzer/blob/main/src/technologies/r.json\nconst REACT_ROUTER_VERSION = \"0\";\ntry {\n  window.__reactRouterVersion = REACT_ROUTER_VERSION;\n} catch (e) {\n  // no-op\n}\n\n////////////////////////////////////////////////////////////////////////////////\n//#region Routers\n////////////////////////////////////////////////////////////////////////////////\n\ninterface DOMRouterOpts {\n  basename?: string;\n  future?: Partial<Omit<RouterFutureConfig, \"v7_prependBasename\">>;\n  hydrationData?: HydrationState;\n  dataStrategy?: DataStrategyFunction;\n  patchRoutesOnNavigation?: PatchRoutesOnNavigationFunction;\n  window?: Window;\n}\n\nexport function createBrowserRouter(\n  routes: RouteObject[],\n  opts?: DOMRouterOpts\n): RemixRouter {\n  return createRouter({\n    basename: opts?.basename,\n    future: {\n      ...opts?.future,\n      v7_prependBasename: true,\n    },\n    history: createBrowserHistory({ window: opts?.window }),\n    hydrationData: opts?.hydrationData || parseHydrationData(),\n    routes,\n    mapRouteProperties,\n    dataStrategy: opts?.dataStrategy,\n    patchRoutesOnNavigation: opts?.patchRoutesOnNavigation,\n    window: opts?.window,\n  }).initialize();\n}\n\nexport function createHashRouter(\n  routes: RouteObject[],\n  opts?: DOMRouterOpts\n): RemixRouter {\n  return createRouter({\n    basename: opts?.basename,\n    future: {\n      ...opts?.future,\n      v7_prependBasename: true,\n    },\n    history: createHashHistory({ window: opts?.window }),\n    hydrationData: opts?.hydrationData || parseHydrationData(),\n    routes,\n    mapRouteProperties,\n    dataStrategy: opts?.dataStrategy,\n    patchRoutesOnNavigation: opts?.patchRoutesOnNavigation,\n    window: opts?.window,\n  }).initialize();\n}\n\nfunction parseHydrationData(): HydrationState | undefined {\n  let state = window?.__staticRouterHydrationData;\n  if (state && state.errors) {\n    state = {\n      ...state,\n      errors: deserializeErrors(state.errors),\n    };\n  }\n  return state;\n}\n\nfunction deserializeErrors(\n  errors: RemixRouter[\"state\"][\"errors\"]\n): RemixRouter[\"state\"][\"errors\"] {\n  if (!errors) return null;\n  let entries = Object.entries(errors);\n  let serialized: RemixRouter[\"state\"][\"errors\"] = {};\n  for (let [key, val] of entries) {\n    // Hey you!  If you change this, please change the corresponding logic in\n    // serializeErrors in react-router-dom/server.tsx :)\n    if (val && val.__type === \"RouteErrorResponse\") {\n      serialized[key] = new ErrorResponseImpl(\n        val.status,\n        val.statusText,\n        val.data,\n        val.internal === true\n      );\n    } else if (val && val.__type === \"Error\") {\n      // Attempt to reconstruct the right type of Error (i.e., ReferenceError)\n      if (val.__subType) {\n        let ErrorConstructor = window[val.__subType];\n        if (typeof ErrorConstructor === \"function\") {\n          try {\n            // @ts-expect-error\n            let error = new ErrorConstructor(val.message);\n            // Wipe away the client-side stack trace.  Nothing to fill it in with\n            // because we don't serialize SSR stack traces for security reasons\n            error.stack = \"\";\n            serialized[key] = error;\n          } catch (e) {\n            // no-op - fall through and create a normal Error\n          }\n        }\n      }\n\n      if (serialized[key] == null) {\n        let error = new Error(val.message);\n        // Wipe away the client-side stack trace.  Nothing to fill it in with\n        // because we don't serialize SSR stack traces for security reasons\n        error.stack = \"\";\n        serialized[key] = error;\n      }\n    } else {\n      serialized[key] = val;\n    }\n  }\n  return serialized;\n}\n\n//#endregion\n\n////////////////////////////////////////////////////////////////////////////////\n//#region Contexts\n////////////////////////////////////////////////////////////////////////////////\n\ntype ViewTransitionContextObject =\n  | {\n      isTransitioning: false;\n    }\n  | {\n      isTransitioning: true;\n      flushSync: boolean;\n      currentLocation: Location;\n      nextLocation: Location;\n    };\n\nconst ViewTransitionContext = React.createContext<ViewTransitionContextObject>({\n  isTransitioning: false,\n});\nif (__DEV__) {\n  ViewTransitionContext.displayName = \"ViewTransition\";\n}\n\nexport { ViewTransitionContext as UNSAFE_ViewTransitionContext };\n\n// TODO: (v7) Change the useFetcher data from `any` to `unknown`\ntype FetchersContextObject = Map<string, any>;\n\nconst FetchersContext = React.createContext<FetchersContextObject>(new Map());\nif (__DEV__) {\n  FetchersContext.displayName = \"Fetchers\";\n}\n\nexport { FetchersContext as UNSAFE_FetchersContext };\n\n//#endregion\n\n////////////////////////////////////////////////////////////////////////////////\n//#region Components\n////////////////////////////////////////////////////////////////////////////////\n\n/**\n  Webpack + React 17 fails to compile on any of the following because webpack\n  complains that `startTransition` doesn't exist in `React`:\n  * import { startTransition } from \"react\"\n  * import * as React from from \"react\";\n    \"startTransition\" in React ? React.startTransition(() => setState()) : setState()\n  * import * as React from from \"react\";\n    \"startTransition\" in React ? React[\"startTransition\"](() => setState()) : setState()\n\n  Moving it to a constant such as the following solves the Webpack/React 17 issue:\n  * import * as React from from \"react\";\n    const START_TRANSITION = \"startTransition\";\n    START_TRANSITION in React ? React[START_TRANSITION](() => setState()) : setState()\n\n  However, that introduces webpack/terser minification issues in production builds\n  in React 18 where minification/obfuscation ends up removing the call of\n  React.startTransition entirely from the first half of the ternary.  Grabbing\n  this exported reference once up front resolves that issue.\n\n  See https://github.com/remix-run/react-router/issues/10579\n*/\nconst START_TRANSITION = \"startTransition\";\nconst startTransitionImpl = React[START_TRANSITION];\nconst FLUSH_SYNC = \"flushSync\";\nconst flushSyncImpl = ReactDOM[FLUSH_SYNC];\nconst USE_ID = \"useId\";\nconst useIdImpl = React[USE_ID];\n\nfunction startTransitionSafe(cb: () => void) {\n  if (startTransitionImpl) {\n    startTransitionImpl(cb);\n  } else {\n    cb();\n  }\n}\n\nfunction flushSyncSafe(cb: () => void) {\n  if (flushSyncImpl) {\n    flushSyncImpl(cb);\n  } else {\n    cb();\n  }\n}\n\ninterface ViewTransition {\n  finished: Promise<void>;\n  ready: Promise<void>;\n  updateCallbackDone: Promise<void>;\n  skipTransition(): void;\n}\n\nclass Deferred<T> {\n  status: \"pending\" | \"resolved\" | \"rejected\" = \"pending\";\n  promise: Promise<T>;\n  // @ts-expect-error - no initializer\n  resolve: (value: T) => void;\n  // @ts-expect-error - no initializer\n  reject: (reason?: unknown) => void;\n  constructor() {\n    this.promise = new Promise((resolve, reject) => {\n      this.resolve = (value) => {\n        if (this.status === \"pending\") {\n          this.status = \"resolved\";\n          resolve(value);\n        }\n      };\n      this.reject = (reason) => {\n        if (this.status === \"pending\") {\n          this.status = \"rejected\";\n          reject(reason);\n        }\n      };\n    });\n  }\n}\n\n/**\n * Given a Remix Router instance, render the appropriate UI\n */\nexport function RouterProvider({\n  fallbackElement,\n  router,\n  future,\n}: RouterProviderProps): React.ReactElement {\n  let [state, setStateImpl] = React.useState(router.state);\n  let [pendingState, setPendingState] = React.useState<RouterState>();\n  let [vtContext, setVtContext] = React.useState<ViewTransitionContextObject>({\n    isTransitioning: false,\n  });\n  let [renderDfd, setRenderDfd] = React.useState<Deferred<void>>();\n  let [transition, setTransition] = React.useState<ViewTransition>();\n  let [interruption, setInterruption] = React.useState<{\n    state: RouterState;\n    currentLocation: Location;\n    nextLocation: Location;\n  }>();\n  let fetcherData = React.useRef<Map<string, any>>(new Map());\n  let { v7_startTransition } = future || {};\n\n  let optInStartTransition = React.useCallback(\n    (cb: () => void) => {\n      if (v7_startTransition) {\n        startTransitionSafe(cb);\n      } else {\n        cb();\n      }\n    },\n    [v7_startTransition]\n  );\n\n  let setState = React.useCallback<RouterSubscriber>(\n    (\n      newState: RouterState,\n      {\n        deletedFetchers,\n        flushSync: flushSync,\n        viewTransitionOpts: viewTransitionOpts,\n      }\n    ) => {\n      deletedFetchers.forEach((key) => fetcherData.current.delete(key));\n      newState.fetchers.forEach((fetcher, key) => {\n        if (fetcher.data !== undefined) {\n          fetcherData.current.set(key, fetcher.data);\n        }\n      });\n\n      let isViewTransitionUnavailable =\n        router.window == null ||\n        router.window.document == null ||\n        typeof router.window.document.startViewTransition !== \"function\";\n\n      // If this isn't a view transition or it's not available in this browser,\n      // just update and be done with it\n      if (!viewTransitionOpts || isViewTransitionUnavailable) {\n        if (flushSync) {\n          flushSyncSafe(() => setStateImpl(newState));\n        } else {\n          optInStartTransition(() => setStateImpl(newState));\n        }\n        return;\n      }\n\n      // flushSync + startViewTransition\n      if (flushSync) {\n        // Flush through the context to mark DOM elements as transition=ing\n        flushSyncSafe(() => {\n          // Cancel any pending transitions\n          if (transition) {\n            renderDfd && renderDfd.resolve();\n            transition.skipTransition();\n          }\n          setVtContext({\n            isTransitioning: true,\n            flushSync: true,\n            currentLocation: viewTransitionOpts.currentLocation,\n            nextLocation: viewTransitionOpts.nextLocation,\n          });\n        });\n\n        // Update the DOM\n        let t = router.window!.document.startViewTransition(() => {\n          flushSyncSafe(() => setStateImpl(newState));\n        });\n\n        // Clean up after the animation completes\n        t.finished.finally(() => {\n          flushSyncSafe(() => {\n            setRenderDfd(undefined);\n            setTransition(undefined);\n            setPendingState(undefined);\n            setVtContext({ isTransitioning: false });\n          });\n        });\n\n        flushSyncSafe(() => setTransition(t));\n        return;\n      }\n\n      // startTransition + startViewTransition\n      if (transition) {\n        // Interrupting an in-progress transition, cancel and let everything flush\n        // out, and then kick off a new transition from the interruption state\n        renderDfd && renderDfd.resolve();\n        transition.skipTransition();\n        setInterruption({\n          state: newState,\n          currentLocation: viewTransitionOpts.currentLocation,\n          nextLocation: viewTransitionOpts.nextLocation,\n        });\n      } else {\n        // Completed navigation update with opted-in view transitions, let 'er rip\n        setPendingState(newState);\n        setVtContext({\n          isTransitioning: true,\n          flushSync: false,\n          currentLocation: viewTransitionOpts.currentLocation,\n          nextLocation: viewTransitionOpts.nextLocation,\n        });\n      }\n    },\n    [router.window, transition, renderDfd, fetcherData, optInStartTransition]\n  );\n\n  // Need to use a layout effect here so we are subscribed early enough to\n  // pick up on any render-driven redirects/navigations (useEffect/<Navigate>)\n  React.useLayoutEffect(() => router.subscribe(setState), [router, setState]);\n\n  // When we start a view transition, create a Deferred we can use for the\n  // eventual \"completed\" render\n  React.useEffect(() => {\n    if (vtContext.isTransitioning && !vtContext.flushSync) {\n      setRenderDfd(new Deferred<void>());\n    }\n  }, [vtContext]);\n\n  // Once the deferred is created, kick off startViewTransition() to update the\n  // DOM and then wait on the Deferred to resolve (indicating the DOM update has\n  // happened)\n  React.useEffect(() => {\n    if (renderDfd && pendingState && router.window) {\n      let newState = pendingState;\n      let renderPromise = renderDfd.promise;\n      let transition = router.window.document.startViewTransition(async () => {\n        optInStartTransition(() => setStateImpl(newState));\n        await renderPromise;\n      });\n      transition.finished.finally(() => {\n        setRenderDfd(undefined);\n        setTransition(undefined);\n        setPendingState(undefined);\n        setVtContext({ isTransitioning: false });\n      });\n      setTransition(transition);\n    }\n  }, [optInStartTransition, pendingState, renderDfd, router.window]);\n\n  // When the new location finally renders and is committed to the DOM, this\n  // effect will run to resolve the transition\n  React.useEffect(() => {\n    if (\n      renderDfd &&\n      pendingState &&\n      state.location.key === pendingState.location.key\n    ) {\n      renderDfd.resolve();\n    }\n  }, [renderDfd, transition, state.location, pendingState]);\n\n  // If we get interrupted with a new navigation during a transition, we skip\n  // the active transition, let it cleanup, then kick it off again here\n  React.useEffect(() => {\n    if (!vtContext.isTransitioning && interruption) {\n      setPendingState(interruption.state);\n      setVtContext({\n        isTransitioning: true,\n        flushSync: false,\n        currentLocation: interruption.currentLocation,\n        nextLocation: interruption.nextLocation,\n      });\n      setInterruption(undefined);\n    }\n  }, [vtContext.isTransitioning, interruption]);\n\n  React.useEffect(() => {\n    warning(\n      fallbackElement == null || !router.future.v7_partialHydration,\n      \"`<RouterProvider fallbackElement>` is deprecated when using \" +\n        \"`v7_partialHydration`, use a `HydrateFallback` component instead\"\n    );\n    // Only log this once on initial mount\n    // eslint-disable-next-line react-hooks/exhaustive-deps\n  }, []);\n\n  let navigator = React.useMemo((): Navigator => {\n    return {\n      createHref: router.createHref,\n      encodeLocation: router.encodeLocation,\n      go: (n) => router.navigate(n),\n      push: (to, state, opts) =>\n        router.navigate(to, {\n          state,\n          preventScrollReset: opts?.preventScrollReset,\n        }),\n      replace: (to, state, opts) =>\n        router.navigate(to, {\n          replace: true,\n          state,\n          preventScrollReset: opts?.preventScrollReset,\n        }),\n    };\n  }, [router]);\n\n  let basename = router.basename || \"/\";\n\n  let dataRouterContext = React.useMemo(\n    () => ({\n      router,\n      navigator,\n      static: false,\n      basename,\n    }),\n    [router, navigator, basename]\n  );\n\n  let routerFuture = React.useMemo<RouterProps[\"future\"]>(\n    () => ({\n      v7_relativeSplatPath: router.future.v7_relativeSplatPath,\n    }),\n    [router.future.v7_relativeSplatPath]\n  );\n\n  React.useEffect(\n    () => logV6DeprecationWarnings(future, router.future),\n    [future, router.future]\n  );\n\n  // The fragment and {null} here are important!  We need them to keep React 18's\n  // useId happy when we are server-rendering since we may have a <script> here\n  // containing the hydrated server-side staticContext (from StaticRouterProvider).\n  // useId relies on the component tree structure to generate deterministic id's\n  // so we need to ensure it remains the same on the client even though\n  // we don't need the <script> tag\n  return (\n    <>\n      <DataRouterContext.Provider value={dataRouterContext}>\n        <DataRouterStateContext.Provider value={state}>\n          <FetchersContext.Provider value={fetcherData.current}>\n            <ViewTransitionContext.Provider value={vtContext}>\n              <Router\n                basename={basename}\n                location={state.location}\n                navigationType={state.historyAction}\n                navigator={navigator}\n                future={routerFuture}\n              >\n                {state.initialized || router.future.v7_partialHydration ? (\n                  <MemoizedDataRoutes\n                    routes={router.routes}\n                    future={router.future}\n                    state={state}\n                  />\n                ) : (\n                  fallbackElement\n                )}\n              </Router>\n            </ViewTransitionContext.Provider>\n          </FetchersContext.Provider>\n        </DataRouterStateContext.Provider>\n      </DataRouterContext.Provider>\n      {null}\n    </>\n  );\n}\n\n// Memoize to avoid re-renders when updating `ViewTransitionContext`\nconst MemoizedDataRoutes = React.memo(DataRoutes);\n\nfunction DataRoutes({\n  routes,\n  future,\n  state,\n}: {\n  routes: DataRouteObject[];\n  future: RemixRouter[\"future\"];\n  state: RouterState;\n}): React.ReactElement | null {\n  return useRoutesImpl(routes, undefined, state, future);\n}\n\nexport interface BrowserRouterProps {\n  basename?: string;\n  children?: React.ReactNode;\n  future?: Partial<FutureConfig>;\n  window?: Window;\n}\n\n/**\n * A `<Router>` for use in web browsers. Provides the cleanest URLs.\n */\nexport function BrowserRouter({\n  basename,\n  children,\n  future,\n  window,\n}: BrowserRouterProps) {\n  let historyRef = React.useRef<BrowserHistory>();\n  if (historyRef.current == null) {\n    historyRef.current = createBrowserHistory({ window, v5Compat: true });\n  }\n\n  let history = historyRef.current;\n  let [state, setStateImpl] = React.useState({\n    action: history.action,\n    location: history.location,\n  });\n  let { v7_startTransition } = future || {};\n  let setState = React.useCallback(\n    (newState: { action: NavigationType; location: Location }) => {\n      v7_startTransition && startTransitionImpl\n        ? startTransitionImpl(() => setStateImpl(newState))\n        : setStateImpl(newState);\n    },\n    [setStateImpl, v7_startTransition]\n  );\n\n  React.useLayoutEffect(() => history.listen(setState), [history, setState]);\n\n  React.useEffect(() => logV6DeprecationWarnings(future), [future]);\n\n  return (\n    <Router\n      basename={basename}\n      children={children}\n      location={state.location}\n      navigationType={state.action}\n      navigator={history}\n      future={future}\n    />\n  );\n}\n\nexport interface HashRouterProps {\n  basename?: string;\n  children?: React.ReactNode;\n  future?: Partial<FutureConfig>;\n  window?: Window;\n}\n\n/**\n * A `<Router>` for use in web browsers. Stores the location in the hash\n * portion of the URL so it is not sent to the server.\n */\nexport function HashRouter({\n  basename,\n  children,\n  future,\n  window,\n}: HashRouterProps) {\n  let historyRef = React.useRef<HashHistory>();\n  if (historyRef.current == null) {\n    historyRef.current = createHashHistory({ window, v5Compat: true });\n  }\n\n  let history = historyRef.current;\n  let [state, setStateImpl] = React.useState({\n    action: history.action,\n    location: history.location,\n  });\n  let { v7_startTransition } = future || {};\n  let setState = React.useCallback(\n    (newState: { action: NavigationType; location: Location }) => {\n      v7_startTransition && startTransitionImpl\n        ? startTransitionImpl(() => setStateImpl(newState))\n        : setStateImpl(newState);\n    },\n    [setStateImpl, v7_startTransition]\n  );\n\n  React.useLayoutEffect(() => history.listen(setState), [history, setState]);\n\n  React.useEffect(() => logV6DeprecationWarnings(future), [future]);\n\n  return (\n    <Router\n      basename={basename}\n      children={children}\n      location={state.location}\n      navigationType={state.action}\n      navigator={history}\n      future={future}\n    />\n  );\n}\n\nexport interface HistoryRouterProps {\n  basename?: string;\n  children?: React.ReactNode;\n  future?: FutureConfig;\n  history: History;\n}\n\n/**\n * A `<Router>` that accepts a pre-instantiated history object. It's important\n * to note that using your own history object is highly discouraged and may add\n * two versions of the history library to your bundles unless you use the same\n * version of the history library that React Router uses internally.\n */\nfunction HistoryRouter({\n  basename,\n  children,\n  future,\n  history,\n}: HistoryRouterProps) {\n  let [state, setStateImpl] = React.useState({\n    action: history.action,\n    location: history.location,\n  });\n  let { v7_startTransition } = future || {};\n  let setState = React.useCallback(\n    (newState: { action: NavigationType; location: Location }) => {\n      v7_startTransition && startTransitionImpl\n        ? startTransitionImpl(() => setStateImpl(newState))\n        : setStateImpl(newState);\n    },\n    [setStateImpl, v7_startTransition]\n  );\n\n  React.useLayoutEffect(() => history.listen(setState), [history, setState]);\n\n  React.useEffect(() => logV6DeprecationWarnings(future), [future]);\n\n  return (\n    <Router\n      basename={basename}\n      children={children}\n      location={state.location}\n      navigationType={state.action}\n      navigator={history}\n      future={future}\n    />\n  );\n}\n\nif (__DEV__) {\n  HistoryRouter.displayName = \"unstable_HistoryRouter\";\n}\n\nexport { HistoryRouter as unstable_HistoryRouter };\n\nexport interface LinkProps\n  extends Omit<React.AnchorHTMLAttributes<HTMLAnchorElement>, \"href\"> {\n  reloadDocument?: boolean;\n  replace?: boolean;\n  state?: any;\n  preventScrollReset?: boolean;\n  relative?: RelativeRoutingType;\n  to: To;\n  viewTransition?: boolean;\n}\n\nconst isBrowser =\n  typeof window !== \"undefined\" &&\n  typeof window.document !== \"undefined\" &&\n  typeof window.document.createElement !== \"undefined\";\n\nconst ABSOLUTE_URL_REGEX = /^(?:[a-z][a-z0-9+.-]*:|\\/\\/)/i;\n\n/**\n * The public API for rendering a history-aware `<a>`.\n */\nexport const Link = React.forwardRef<HTMLAnchorElement, LinkProps>(\n  function LinkWithRef(\n    {\n      onClick,\n      relative,\n      reloadDocument,\n      replace,\n      state,\n      target,\n      to,\n      preventScrollReset,\n      viewTransition,\n      ...rest\n    },\n    ref\n  ) {\n    let { basename } = React.useContext(NavigationContext);\n\n    // Rendered into <a href> for absolute URLs\n    let absoluteHref;\n    let isExternal = false;\n\n    if (typeof to === \"string\" && ABSOLUTE_URL_REGEX.test(to)) {\n      // Render the absolute href server- and client-side\n      absoluteHref = to;\n\n      // Only check for external origins client-side\n      if (isBrowser) {\n        try {\n          let currentUrl = new URL(window.location.href);\n          let targetUrl = to.startsWith(\"//\")\n            ? new URL(currentUrl.protocol + to)\n            : new URL(to);\n          let path = stripBasename(targetUrl.pathname, basename);\n\n          if (targetUrl.origin === currentUrl.origin && path != null) {\n            // Strip the protocol/origin/basename for same-origin absolute URLs\n            to = path + targetUrl.search + targetUrl.hash;\n          } else {\n            isExternal = true;\n          }\n        } catch (e) {\n          // We can't do external URL detection without a valid URL\n          warning(\n            false,\n            `<Link to=\"${to}\"> contains an invalid URL which will probably break ` +\n              `when clicked - please update to a valid URL path.`\n          );\n        }\n      }\n    }\n\n    // Rendered into <a href> for relative URLs\n    let href = useHref(to, { relative });\n\n    let internalOnClick = useLinkClickHandler(to, {\n      replace,\n      state,\n      target,\n      preventScrollReset,\n      relative,\n      viewTransition,\n    });\n    function handleClick(\n      event: React.MouseEvent<HTMLAnchorElement, MouseEvent>\n    ) {\n      if (onClick) onClick(event);\n      if (!event.defaultPrevented) {\n        internalOnClick(event);\n      }\n    }\n\n    return (\n      // eslint-disable-next-line jsx-a11y/anchor-has-content\n      <a\n        {...rest}\n        href={absoluteHref || href}\n        onClick={isExternal || reloadDocument ? onClick : handleClick}\n        ref={ref}\n        target={target}\n      />\n    );\n  }\n);\n\nif (__DEV__) {\n  Link.displayName = \"Link\";\n}\n\nexport type NavLinkRenderProps = {\n  isActive: boolean;\n  isPending: boolean;\n  isTransitioning: boolean;\n};\n\nexport interface NavLinkProps\n  extends Omit<LinkProps, \"className\" | \"style\" | \"children\"> {\n  children?: React.ReactNode | ((props: NavLinkRenderProps) => React.ReactNode);\n  caseSensitive?: boolean;\n  className?: string | ((props: NavLinkRenderProps) => string | undefined);\n  end?: boolean;\n  style?:\n    | React.CSSProperties\n    | ((props: NavLinkRenderProps) => React.CSSProperties | undefined);\n}\n\n/**\n * A `<Link>` wrapper that knows if it's \"active\" or not.\n */\nexport const NavLink = React.forwardRef<HTMLAnchorElement, NavLinkProps>(\n  function NavLinkWithRef(\n    {\n      \"aria-current\": ariaCurrentProp = \"page\",\n      caseSensitive = false,\n      className: classNameProp = \"\",\n      end = false,\n      style: styleProp,\n      to,\n      viewTransition,\n      children,\n      ...rest\n    },\n    ref\n  ) {\n    let path = useResolvedPath(to, { relative: rest.relative });\n    let location = useLocation();\n    let routerState = React.useContext(DataRouterStateContext);\n    let { navigator, basename } = React.useContext(NavigationContext);\n    let isTransitioning =\n      routerState != null &&\n      // Conditional usage is OK here because the usage of a data router is static\n      // eslint-disable-next-line react-hooks/rules-of-hooks\n      useViewTransitionState(path) &&\n      viewTransition === true;\n\n    let toPathname = navigator.encodeLocation\n      ? navigator.encodeLocation(path).pathname\n      : path.pathname;\n    let locationPathname = location.pathname;\n    let nextLocationPathname =\n      routerState && routerState.navigation && routerState.navigation.location\n        ? routerState.navigation.location.pathname\n        : null;\n\n    if (!caseSensitive) {\n      locationPathname = locationPathname.toLowerCase();\n      nextLocationPathname = nextLocationPathname\n        ? nextLocationPathname.toLowerCase()\n        : null;\n      toPathname = toPathname.toLowerCase();\n    }\n\n    if (nextLocationPathname && basename) {\n      nextLocationPathname =\n        stripBasename(nextLocationPathname, basename) || nextLocationPathname;\n    }\n\n    // If the `to` has a trailing slash, look at that exact spot.  Otherwise,\n    // we're looking for a slash _after_ what's in `to`.  For example:\n    //\n    // <NavLink to=\"/users\"> and <NavLink to=\"/users/\">\n    // both want to look for a / at index 6 to match URL `/users/matt`\n    const endSlashPosition =\n      toPathname !== \"/\" && toPathname.endsWith(\"/\")\n        ? toPathname.length - 1\n        : toPathname.length;\n    let isActive =\n      locationPathname === toPathname ||\n      (!end &&\n        locationPathname.startsWith(toPathname) &&\n        locationPathname.charAt(endSlashPosition) === \"/\");\n\n    let isPending =\n      nextLocationPathname != null &&\n      (nextLocationPathname === toPathname ||\n        (!end &&\n          nextLocationPathname.startsWith(toPathname) &&\n          nextLocationPathname.charAt(toPathname.length) === \"/\"));\n\n    let renderProps = {\n      isActive,\n      isPending,\n      isTransitioning,\n    };\n\n    let ariaCurrent = isActive ? ariaCurrentProp : undefined;\n\n    let className: string | undefined;\n    if (typeof classNameProp === \"function\") {\n      className = classNameProp(renderProps);\n    } else {\n      // If the className prop is not a function, we use a default `active`\n      // class for <NavLink />s that are active. In v5 `active` was the default\n      // value for `activeClassName`, but we are removing that API and can still\n      // use the old default behavior for a cleaner upgrade path and keep the\n      // simple styling rules working as they currently do.\n      className = [\n        classNameProp,\n        isActive ? \"active\" : null,\n        isPending ? \"pending\" : null,\n        isTransitioning ? \"transitioning\" : null,\n      ]\n        .filter(Boolean)\n        .join(\" \");\n    }\n\n    let style =\n      typeof styleProp === \"function\" ? styleProp(renderProps) : styleProp;\n\n    return (\n      <Link\n        {...rest}\n        aria-current={ariaCurrent}\n        className={className}\n        ref={ref}\n        style={style}\n        to={to}\n        viewTransition={viewTransition}\n      >\n        {typeof children === \"function\" ? children(renderProps) : children}\n      </Link>\n    );\n  }\n);\n\nif (__DEV__) {\n  NavLink.displayName = \"NavLink\";\n}\n\n/**\n * Form props shared by navigations and fetchers\n */\ninterface SharedFormProps extends React.FormHTMLAttributes<HTMLFormElement> {\n  /**\n   * The HTTP verb to use when the form is submit. Supports \"get\", \"post\",\n   * \"put\", \"delete\", \"patch\".\n   */\n  method?: HTMLFormMethod;\n\n  /**\n   * `<form encType>` - enhancing beyond the normal string type and limiting\n   * to the built-in browser supported values\n   */\n  encType?:\n    | \"application/x-www-form-urlencoded\"\n    | \"multipart/form-data\"\n    | \"text/plain\";\n\n  /**\n   * Normal `<form action>` but supports React Router's relative paths.\n   */\n  action?: string;\n\n  /**\n   * Determines whether the form action is relative to the route hierarchy or\n   * the pathname.  Use this if you want to opt out of navigating the route\n   * hierarchy and want to instead route based on /-delimited URL segments\n   */\n  relative?: RelativeRoutingType;\n\n  /**\n   * Prevent the scroll position from resetting to the top of the viewport on\n   * completion of the navigation when using the <ScrollRestoration> component\n   */\n  preventScrollReset?: boolean;\n\n  /**\n   * A function to call when the form is submitted. If you call\n   * `event.preventDefault()` then this form will not do anything.\n   */\n  onSubmit?: React.FormEventHandler<HTMLFormElement>;\n}\n\n/**\n * Form props available to fetchers\n */\nexport interface FetcherFormProps extends SharedFormProps {}\n\n/**\n * Form props available to navigations\n */\nexport interface FormProps extends SharedFormProps {\n  /**\n   * Indicate a specific fetcherKey to use when using navigate=false\n   */\n  fetcherKey?: string;\n\n  /**\n   * navigate=false will use a fetcher instead of a navigation\n   */\n  navigate?: boolean;\n\n  /**\n   * Forces a full document navigation instead of a fetch.\n   */\n  reloadDocument?: boolean;\n\n  /**\n   * Replaces the current entry in the browser history stack when the form\n   * navigates. Use this if you don't want the user to be able to click \"back\"\n   * to the page with the form on it.\n   */\n  replace?: boolean;\n\n  /**\n   * State object to add to the history stack entry for this navigation\n   */\n  state?: any;\n\n  /**\n   * Enable view transitions on this Form navigation\n   */\n  viewTransition?: boolean;\n}\n\ntype HTMLSubmitEvent = React.BaseSyntheticEvent<\n  SubmitEvent,\n  Event,\n  HTMLFormElement\n>;\n\ntype HTMLFormSubmitter = HTMLButtonElement | HTMLInputElement;\n\n/**\n * A `@remix-run/router`-aware `<form>`. It behaves like a normal form except\n * that the interaction with the server is with `fetch` instead of new document\n * requests, allowing components to add nicer UX to the page as the form is\n * submitted and returns with data.\n */\nexport const Form = React.forwardRef<HTMLFormElement, FormProps>(\n  (\n    {\n      fetcherKey,\n      navigate,\n      reloadDocument,\n      replace,\n      state,\n      method = defaultMethod,\n      action,\n      onSubmit,\n      relative,\n      preventScrollReset,\n      viewTransition,\n      ...props\n    },\n    forwardedRef\n  ) => {\n    let submit = useSubmit();\n    let formAction = useFormAction(action, { relative });\n    let formMethod: HTMLFormMethod =\n      method.toLowerCase() === \"get\" ? \"get\" : \"post\";\n\n    let submitHandler: React.FormEventHandler<HTMLFormElement> = (event) => {\n      onSubmit && onSubmit(event);\n      if (event.defaultPrevented) return;\n      event.preventDefault();\n\n      let submitter = (event as unknown as HTMLSubmitEvent).nativeEvent\n        .submitter as HTMLFormSubmitter | null;\n\n      let submitMethod =\n        (submitter?.getAttribute(\"formmethod\") as HTMLFormMethod | undefined) ||\n        method;\n\n      submit(submitter || event.currentTarget, {\n        fetcherKey,\n        method: submitMethod,\n        navigate,\n        replace,\n        state,\n        relative,\n        preventScrollReset,\n        viewTransition,\n      });\n    };\n\n    return (\n      <form\n        ref={forwardedRef}\n        method={formMethod}\n        action={formAction}\n        onSubmit={reloadDocument ? onSubmit : submitHandler}\n        {...props}\n      />\n    );\n  }\n);\n\nif (__DEV__) {\n  Form.displayName = \"Form\";\n}\n\nexport interface ScrollRestorationProps {\n  getKey?: GetScrollRestorationKeyFunction;\n  storageKey?: string;\n}\n\n/**\n * This component will emulate the browser's scroll restoration on location\n * changes.\n */\nexport function ScrollRestoration({\n  getKey,\n  storageKey,\n}: ScrollRestorationProps) {\n  useScrollRestoration({ getKey, storageKey });\n  return null;\n}\n\nif (__DEV__) {\n  ScrollRestoration.displayName = \"ScrollRestoration\";\n}\n//#endregion\n\n////////////////////////////////////////////////////////////////////////////////\n//#region Hooks\n////////////////////////////////////////////////////////////////////////////////\n\nenum DataRouterHook {\n  UseScrollRestoration = \"useScrollRestoration\",\n  UseSubmit = \"useSubmit\",\n  UseSubmitFetcher = \"useSubmitFetcher\",\n  UseFetcher = \"useFetcher\",\n  useViewTransitionState = \"useViewTransitionState\",\n}\n\nenum DataRouterStateHook {\n  UseFetcher = \"useFetcher\",\n  UseFetchers = \"useFetchers\",\n  UseScrollRestoration = \"useScrollRestoration\",\n}\n\n// Internal hooks\n\nfunction getDataRouterConsoleError(\n  hookName: DataRouterHook | DataRouterStateHook\n) {\n  return `${hookName} must be used within a data router.  See https://reactrouter.com/v6/routers/picking-a-router.`;\n}\n\nfunction useDataRouterContext(hookName: DataRouterHook) {\n  let ctx = React.useContext(DataRouterContext);\n  invariant(ctx, getDataRouterConsoleError(hookName));\n  return ctx;\n}\n\nfunction useDataRouterState(hookName: DataRouterStateHook) {\n  let state = React.useContext(DataRouterStateContext);\n  invariant(state, getDataRouterConsoleError(hookName));\n  return state;\n}\n\n// External hooks\n\n/**\n * Handles the click behavior for router `<Link>` components. This is useful if\n * you need to create custom `<Link>` components with the same click behavior we\n * use in our exported `<Link>`.\n */\nexport function useLinkClickHandler<E extends Element = HTMLAnchorElement>(\n  to: To,\n  {\n    target,\n    replace: replaceProp,\n    state,\n    preventScrollReset,\n    relative,\n    viewTransition,\n  }: {\n    target?: React.HTMLAttributeAnchorTarget;\n    replace?: boolean;\n    state?: any;\n    preventScrollReset?: boolean;\n    relative?: RelativeRoutingType;\n    viewTransition?: boolean;\n  } = {}\n): (event: React.MouseEvent<E, MouseEvent>) => void {\n  let navigate = useNavigate();\n  let location = useLocation();\n  let path = useResolvedPath(to, { relative });\n\n  return React.useCallback(\n    (event: React.MouseEvent<E, MouseEvent>) => {\n      if (shouldProcessLinkClick(event, target)) {\n        event.preventDefault();\n\n        // If the URL hasn't changed, a regular <a> will do a replace instead of\n        // a push, so do the same here unless the replace prop is explicitly set\n        let replace =\n          replaceProp !== undefined\n            ? replaceProp\n            : createPath(location) === createPath(path);\n\n        navigate(to, {\n          replace,\n          state,\n          preventScrollReset,\n          relative,\n          viewTransition,\n        });\n      }\n    },\n    [\n      location,\n      navigate,\n      path,\n      replaceProp,\n      state,\n      target,\n      to,\n      preventScrollReset,\n      relative,\n      viewTransition,\n    ]\n  );\n}\n\n/**\n * A convenient wrapper for reading and writing search parameters via the\n * URLSearchParams interface.\n */\nexport function useSearchParams(\n  defaultInit?: URLSearchParamsInit\n): [URLSearchParams, SetURLSearchParams] {\n  warning(\n    typeof URLSearchParams !== \"undefined\",\n    `You cannot use the \\`useSearchParams\\` hook in a browser that does not ` +\n      `support the URLSearchParams API. If you need to support Internet ` +\n      `Explorer 11, we recommend you load a polyfill such as ` +\n      `https://github.com/ungap/url-search-params.`\n  );\n\n  let defaultSearchParamsRef = React.useRef(createSearchParams(defaultInit));\n  let hasSetSearchParamsRef = React.useRef(false);\n\n  let location = useLocation();\n  let searchParams = React.useMemo(\n    () =>\n      // Only merge in the defaults if we haven't yet called setSearchParams.\n      // Once we call that we want those to take precedence, otherwise you can't\n      // remove a param with setSearchParams({}) if it has an initial value\n      getSearchParamsForLocation(\n        location.search,\n        hasSetSearchParamsRef.current ? null : defaultSearchParamsRef.current\n      ),\n    [location.search]\n  );\n\n  let navigate = useNavigate();\n  let setSearchParams = React.useCallback<SetURLSearchParams>(\n    (nextInit, navigateOptions) => {\n      const newSearchParams = createSearchParams(\n        typeof nextInit === \"function\" ? nextInit(searchParams) : nextInit\n      );\n      hasSetSearchParamsRef.current = true;\n      navigate(\"?\" + newSearchParams, navigateOptions);\n    },\n    [navigate, searchParams]\n  );\n\n  return [searchParams, setSearchParams];\n}\n\nexport type SetURLSearchParams = (\n  nextInit?:\n    | URLSearchParamsInit\n    | ((prev: URLSearchParams) => URLSearchParamsInit),\n  navigateOpts?: NavigateOptions\n) => void;\n\n/**\n * Submits a HTML `<form>` to the server without reloading the page.\n */\nexport interface SubmitFunction {\n  (\n    /**\n     * Specifies the `<form>` to be submitted to the server, a specific\n     * `<button>` or `<input type=\"submit\">` to use to submit the form, or some\n     * arbitrary data to submit.\n     *\n     * Note: When using a `<button>` its `name` and `value` will also be\n     * included in the form data that is submitted.\n     */\n    target: SubmitTarget,\n\n    /**\n     * Options that override the `<form>`'s own attributes. Required when\n     * submitting arbitrary data without a backing `<form>`.\n     */\n    options?: SubmitOptions\n  ): void;\n}\n\n/**\n * Submits a fetcher `<form>` to the server without reloading the page.\n */\nexport interface FetcherSubmitFunction {\n  (\n    target: SubmitTarget,\n    // Fetchers cannot replace or set state because they are not navigation events\n    options?: FetcherSubmitOptions\n  ): void;\n}\n\nfunction validateClientSideSubmission() {\n  if (typeof document === \"undefined\") {\n    throw new Error(\n      \"You are calling submit during the server render. \" +\n        \"Try calling submit within a `useEffect` or callback instead.\"\n    );\n  }\n}\n\nlet fetcherId = 0;\nlet getUniqueFetcherId = () => `__${String(++fetcherId)}__`;\n\n/**\n * Returns a function that may be used to programmatically submit a form (or\n * some arbitrary data) to the server.\n */\nexport function useSubmit(): SubmitFunction {\n  let { router } = useDataRouterContext(DataRouterHook.UseSubmit);\n  let { basename } = React.useContext(NavigationContext);\n  let currentRouteId = useRouteId();\n\n  return React.useCallback<SubmitFunction>(\n    (target, options = {}) => {\n      validateClientSideSubmission();\n\n      let { action, method, encType, formData, body } = getFormSubmissionInfo(\n        target,\n        basename\n      );\n\n      if (options.navigate === false) {\n        let key = options.fetcherKey || getUniqueFetcherId();\n        router.fetch(key, currentRouteId, options.action || action, {\n          preventScrollReset: options.preventScrollReset,\n          formData,\n          body,\n          formMethod: options.method || (method as HTMLFormMethod),\n          formEncType: options.encType || (encType as FormEncType),\n          flushSync: options.flushSync,\n        });\n      } else {\n        router.navigate(options.action || action, {\n          preventScrollReset: options.preventScrollReset,\n          formData,\n          body,\n          formMethod: options.method || (method as HTMLFormMethod),\n          formEncType: options.encType || (encType as FormEncType),\n          replace: options.replace,\n          state: options.state,\n          fromRouteId: currentRouteId,\n          flushSync: options.flushSync,\n          viewTransition: options.viewTransition,\n        });\n      }\n    },\n    [router, basename, currentRouteId]\n  );\n}\n\n// v7: Eventually we should deprecate this entirely in favor of using the\n// router method directly?\nexport function useFormAction(\n  action?: string,\n  { relative }: { relative?: RelativeRoutingType } = {}\n): string {\n  let { basename } = React.useContext(NavigationContext);\n  let routeContext = React.useContext(RouteContext);\n  invariant(routeContext, \"useFormAction must be used inside a RouteContext\");\n\n  let [match] = routeContext.matches.slice(-1);\n  // Shallow clone path so we can modify it below, otherwise we modify the\n  // object referenced by useMemo inside useResolvedPath\n  let path = { ...useResolvedPath(action ? action : \".\", { relative }) };\n\n  // If no action was specified, browsers will persist current search params\n  // when determining the path, so match that behavior\n  // https://github.com/remix-run/remix/issues/927\n  let location = useLocation();\n  if (action == null) {\n    // Safe to write to this directly here since if action was undefined, we\n    // would have called useResolvedPath(\".\") which will never include a search\n    path.search = location.search;\n\n    // When grabbing search params from the URL, remove any included ?index param\n    // since it might not apply to our contextual route.  We add it back based\n    // on match.route.index below\n    let params = new URLSearchParams(path.search);\n    let indexValues = params.getAll(\"index\");\n    let hasNakedIndexParam = indexValues.some((v) => v === \"\");\n    if (hasNakedIndexParam) {\n      params.delete(\"index\");\n      indexValues.filter((v) => v).forEach((v) => params.append(\"index\", v));\n      let qs = params.toString();\n      path.search = qs ? `?${qs}` : \"\";\n    }\n  }\n\n  if ((!action || action === \".\") && match.route.index) {\n    path.search = path.search\n      ? path.search.replace(/^\\?/, \"?index&\")\n      : \"?index\";\n  }\n\n  // If we're operating within a basename, prepend it to the pathname prior\n  // to creating the form action.  If this is a root navigation, then just use\n  // the raw basename which allows the basename to have full control over the\n  // presence of a trailing slash on root actions\n  if (basename !== \"/\") {\n    path.pathname =\n      path.pathname === \"/\" ? basename : joinPaths([basename, path.pathname]);\n  }\n\n  return createPath(path);\n}\n\nexport type FetcherWithComponents<TData> = Fetcher<TData> & {\n  Form: React.ForwardRefExoticComponent<\n    FetcherFormProps & React.RefAttributes<HTMLFormElement>\n  >;\n  submit: FetcherSubmitFunction;\n  load: (href: string, opts?: { flushSync?: boolean }) => void;\n};\n\n// TODO: (v7) Change the useFetcher generic default from `any` to `unknown`\n\n/**\n * Interacts with route loaders and actions without causing a navigation. Great\n * for any interaction that stays on the same page.\n */\nexport function useFetcher<TData = any>({\n  key,\n}: { key?: string } = {}): FetcherWithComponents<TData> {\n  let { router } = useDataRouterContext(DataRouterHook.UseFetcher);\n  let state = useDataRouterState(DataRouterStateHook.UseFetcher);\n  let fetcherData = React.useContext(FetchersContext);\n  let route = React.useContext(RouteContext);\n  let routeId = route.matches[route.matches.length - 1]?.route.id;\n\n  invariant(fetcherData, `useFetcher must be used inside a FetchersContext`);\n  invariant(route, `useFetcher must be used inside a RouteContext`);\n  invariant(\n    routeId != null,\n    `useFetcher can only be used on routes that contain a unique \"id\"`\n  );\n\n  // Fetcher key handling\n  // OK to call conditionally to feature detect `useId`\n  // eslint-disable-next-line react-hooks/rules-of-hooks\n  let defaultKey = useIdImpl ? useIdImpl() : \"\";\n  let [fetcherKey, setFetcherKey] = React.useState<string>(key || defaultKey);\n  if (key && key !== fetcherKey) {\n    setFetcherKey(key);\n  } else if (!fetcherKey) {\n    // We will only fall through here when `useId` is not available\n    setFetcherKey(getUniqueFetcherId());\n  }\n\n  // Registration/cleanup\n  React.useEffect(() => {\n    router.getFetcher(fetcherKey);\n    return () => {\n      // Tell the router we've unmounted - if v7_fetcherPersist is enabled this\n      // will not delete immediately but instead queue up a delete after the\n      // fetcher returns to an `idle` state\n      router.deleteFetcher(fetcherKey);\n    };\n  }, [router, fetcherKey]);\n\n  // Fetcher additions\n  let load = React.useCallback(\n    (href: string, opts?: { flushSync?: boolean }) => {\n      invariant(routeId, \"No routeId available for fetcher.load()\");\n      router.fetch(fetcherKey, routeId, href, opts);\n    },\n    [fetcherKey, routeId, router]\n  );\n\n  let submitImpl = useSubmit();\n  let submit = React.useCallback<FetcherSubmitFunction>(\n    (target, opts) => {\n      submitImpl(target, {\n        ...opts,\n        navigate: false,\n        fetcherKey,\n      });\n    },\n    [fetcherKey, submitImpl]\n  );\n\n  let FetcherForm = React.useMemo(() => {\n    let FetcherForm = React.forwardRef<HTMLFormElement, FetcherFormProps>(\n      (props, ref) => {\n        return (\n          <Form {...props} navigate={false} fetcherKey={fetcherKey} ref={ref} />\n        );\n      }\n    );\n    if (__DEV__) {\n      FetcherForm.displayName = \"fetcher.Form\";\n    }\n    return FetcherForm;\n  }, [fetcherKey]);\n\n  // Exposed FetcherWithComponents\n  let fetcher = state.fetchers.get(fetcherKey) || IDLE_FETCHER;\n  let data = fetcherData.get(fetcherKey);\n  let fetcherWithComponents = React.useMemo(\n    () => ({\n      Form: FetcherForm,\n      submit,\n      load,\n      ...fetcher,\n      data,\n    }),\n    [FetcherForm, submit, load, fetcher, data]\n  );\n\n  return fetcherWithComponents;\n}\n\n/**\n * Provides all fetchers currently on the page. Useful for layouts and parent\n * routes that need to provide pending/optimistic UI regarding the fetch.\n */\nexport function useFetchers(): (Fetcher & { key: string })[] {\n  let state = useDataRouterState(DataRouterStateHook.UseFetchers);\n  return Array.from(state.fetchers.entries()).map(([key, fetcher]) => ({\n    ...fetcher,\n    key,\n  }));\n}\n\nconst SCROLL_RESTORATION_STORAGE_KEY = \"react-router-scroll-positions\";\nlet savedScrollPositions: Record<string, number> = {};\n\n/**\n * When rendered inside a RouterProvider, will restore scroll positions on navigations\n */\nfunction useScrollRestoration({\n  getKey,\n  storageKey,\n}: {\n  getKey?: GetScrollRestorationKeyFunction;\n  storageKey?: string;\n} = {}) {\n  let { router } = useDataRouterContext(DataRouterHook.UseScrollRestoration);\n  let { restoreScrollPosition, preventScrollReset } = useDataRouterState(\n    DataRouterStateHook.UseScrollRestoration\n  );\n  let { basename } = React.useContext(NavigationContext);\n  let location = useLocation();\n  let matches = useMatches();\n  let navigation = useNavigation();\n\n  // Trigger manual scroll restoration while we're active\n  React.useEffect(() => {\n    window.history.scrollRestoration = \"manual\";\n    return () => {\n      window.history.scrollRestoration = \"auto\";\n    };\n  }, []);\n\n  // Save positions on pagehide\n  usePageHide(\n    React.useCallback(() => {\n      if (navigation.state === \"idle\") {\n        let key = (getKey ? getKey(location, matches) : null) || location.key;\n        savedScrollPositions[key] = window.scrollY;\n      }\n      try {\n        sessionStorage.setItem(\n          storageKey || SCROLL_RESTORATION_STORAGE_KEY,\n          JSON.stringify(savedScrollPositions)\n        );\n      } catch (error) {\n        warning(\n          false,\n          `Failed to save scroll positions in sessionStorage, <ScrollRestoration /> will not work properly (${error}).`\n        );\n      }\n      window.history.scrollRestoration = \"auto\";\n    }, [storageKey, getKey, navigation.state, location, matches])\n  );\n\n  // Read in any saved scroll locations\n  if (typeof document !== \"undefined\") {\n    // eslint-disable-next-line react-hooks/rules-of-hooks\n    React.useLayoutEffect(() => {\n      try {\n        let sessionPositions = sessionStorage.getItem(\n          storageKey || SCROLL_RESTORATION_STORAGE_KEY\n        );\n        if (sessionPositions) {\n          savedScrollPositions = JSON.parse(sessionPositions);\n        }\n      } catch (e) {\n        // no-op, use default empty object\n      }\n    }, [storageKey]);\n\n    // Enable scroll restoration in the router\n    // eslint-disable-next-line react-hooks/rules-of-hooks\n    React.useLayoutEffect(() => {\n      let getKeyWithoutBasename: GetScrollRestorationKeyFunction | undefined =\n        getKey && basename !== \"/\"\n          ? (location, matches) =>\n              getKey(\n                // Strip the basename to match useLocation()\n                {\n                  ...location,\n                  pathname:\n                    stripBasename(location.pathname, basename) ||\n                    location.pathname,\n                },\n                matches\n              )\n          : getKey;\n      let disableScrollRestoration = router?.enableScrollRestoration(\n        savedScrollPositions,\n        () => window.scrollY,\n        getKeyWithoutBasename\n      );\n      return () => disableScrollRestoration && disableScrollRestoration();\n    }, [router, basename, getKey]);\n\n    // Restore scrolling when state.restoreScrollPosition changes\n    // eslint-disable-next-line react-hooks/rules-of-hooks\n    React.useLayoutEffect(() => {\n      // Explicit false means don't do anything (used for submissions)\n      if (restoreScrollPosition === false) {\n        return;\n      }\n\n      // been here before, scroll to it\n      if (typeof restoreScrollPosition === \"number\") {\n        window.scrollTo(0, restoreScrollPosition);\n        return;\n      }\n\n      // try to scroll to the hash\n      if (location.hash) {\n        let el = document.getElementById(\n          decodeURIComponent(location.hash.slice(1))\n        );\n        if (el) {\n          el.scrollIntoView();\n          return;\n        }\n      }\n\n      // Don't reset if this navigation opted out\n      if (preventScrollReset === true) {\n        return;\n      }\n\n      // otherwise go to the top on new locations\n      window.scrollTo(0, 0);\n    }, [location, restoreScrollPosition, preventScrollReset]);\n  }\n}\n\nexport { useScrollRestoration as UNSAFE_useScrollRestoration };\n\n/**\n * Setup a callback to be fired on the window's `beforeunload` event. This is\n * useful for saving some data to `window.localStorage` just before the page\n * refreshes.\n *\n * Note: The `callback` argument should be a function created with\n * `React.useCallback()`.\n */\nexport function useBeforeUnload(\n  callback: (event: BeforeUnloadEvent) => any,\n  options?: { capture?: boolean }\n): void {\n  let { capture } = options || {};\n  React.useEffect(() => {\n    let opts = capture != null ? { capture } : undefined;\n    window.addEventListener(\"beforeunload\", callback, opts);\n    return () => {\n      window.removeEventListener(\"beforeunload\", callback, opts);\n    };\n  }, [callback, capture]);\n}\n\n/**\n * Setup a callback to be fired on the window's `pagehide` event. This is\n * useful for saving some data to `window.localStorage` just before the page\n * refreshes.  This event is better supported than beforeunload across browsers.\n *\n * Note: The `callback` argument should be a function created with\n * `React.useCallback()`.\n */\nfunction usePageHide(\n  callback: (event: PageTransitionEvent) => any,\n  options?: { capture?: boolean }\n): void {\n  let { capture } = options || {};\n  React.useEffect(() => {\n    let opts = capture != null ? { capture } : undefined;\n    window.addEventListener(\"pagehide\", callback, opts);\n    return () => {\n      window.removeEventListener(\"pagehide\", callback, opts);\n    };\n  }, [callback, capture]);\n}\n\n/**\n * Wrapper around useBlocker to show a window.confirm prompt to users instead\n * of building a custom UI with useBlocker.\n *\n * Warning: This has *a lot of rough edges* and behaves very differently (and\n * very incorrectly in some cases) across browsers if user click addition\n * back/forward navigations while the confirm is open.  Use at your own risk.\n */\nfunction usePrompt({\n  when,\n  message,\n}: {\n  when: boolean | BlockerFunction;\n  message: string;\n}) {\n  let blocker = useBlocker(when);\n\n  React.useEffect(() => {\n    if (blocker.state === \"blocked\") {\n      let proceed = window.confirm(message);\n      if (proceed) {\n        // This timeout is needed to avoid a weird \"race\" on POP navigations\n        // between the `window.history` revert navigation and the result of\n        // `window.confirm`\n        setTimeout(blocker.proceed, 0);\n      } else {\n        blocker.reset();\n      }\n    }\n  }, [blocker, message]);\n\n  React.useEffect(() => {\n    if (blocker.state === \"blocked\" && !when) {\n      blocker.reset();\n    }\n  }, [blocker, when]);\n}\n\nexport { usePrompt as unstable_usePrompt };\n\n/**\n * Return a boolean indicating if there is an active view transition to the\n * given href.  You can use this value to render CSS classes or viewTransitionName\n * styles onto your elements\n *\n * @param href The destination href\n * @param [opts.relative] Relative routing type (\"route\" | \"path\")\n */\nfunction useViewTransitionState(\n  to: To,\n  opts: { relative?: RelativeRoutingType } = {}\n) {\n  let vtContext = React.useContext(ViewTransitionContext);\n\n  invariant(\n    vtContext != null,\n    \"`useViewTransitionState` must be used within `react-router-dom`'s `RouterProvider`.  \" +\n      \"Did you accidentally import `RouterProvider` from `react-router`?\"\n  );\n\n  let { basename } = useDataRouterContext(\n    DataRouterHook.useViewTransitionState\n  );\n  let path = useResolvedPath(to, { relative: opts.relative });\n  if (!vtContext.isTransitioning) {\n    return false;\n  }\n\n  let currentPath =\n    stripBasename(vtContext.currentLocation.pathname, basename) ||\n    vtContext.currentLocation.pathname;\n  let nextPath =\n    stripBasename(vtContext.nextLocation.pathname, basename) ||\n    vtContext.nextLocation.pathname;\n\n  // Transition is active if we're going to or coming from the indicated\n  // destination.  This ensures that other PUSH navigations that reverse\n  // an indicated transition apply.  I.e., on the list view you have:\n  //\n  //   <NavLink to=\"/details/1\" viewTransition>\n  //\n  // If you click the breadcrumb back to the list view:\n  //\n  //   <NavLink to=\"/list\" viewTransition>\n  //\n  // We should apply the transition because it's indicated as active going\n  // from /list -> /details/1 and therefore should be active on the reverse\n  // (even though this isn't strictly a POP reverse)\n  return (\n    matchPath(path.pathname, nextPath) != null ||\n    matchPath(path.pathname, currentPath) != null\n  );\n}\n\nexport { useViewTransitionState as useViewTransitionState };\n\n//#endregion\n"],"names":["defaultMethod","defaultEncType","isHtmlElement","object","tagName","isButtonElement","toLowerCase","isFormElement","isInputElement","isModifiedEvent","event","metaKey","altKey","ctrlKey","shiftKey","shouldProcessLinkClick","target","button","createSearchParams","init","URLSearchParams","Array","isArray","Object","keys","reduce","memo","key","value","concat","map","v","getSearchParamsForLocation","locationSearch","defaultSearchParams","searchParams","forEach","_","has","getAll","append","_formDataSupportsSubmitter","isFormDataSubmitterSupported","FormData","document","createElement","e","supportedFormEncTypes","Set","getFormEncType","encType","process","env","NODE_ENV","warning","getFormSubmissionInfo","basename","method","action","formData","body","attr","getAttribute","stripBasename","type","form","Error","name","prefix","undefined","REACT_ROUTER_VERSION","window","__reactRouterVersion","createBrowserRouter","routes","opts","createRouter","future","_extends","v7_prependBasename","history","createBrowserHistory","hydrationData","parseHydrationData","mapRouteProperties","dataStrategy","patchRoutesOnNavigation","initialize","createHashRouter","createHashHistory","_window","state","__staticRouterHydrationData","errors","deserializeErrors","entries","serialized","val","__type","ErrorResponseImpl","status","statusText","data","internal","__subType","ErrorConstructor","error","message","stack","ViewTransitionContext","React","createContext","isTransitioning","displayName","FetchersContext","Map","START_TRANSITION","startTransitionImpl","FLUSH_SYNC","flushSyncImpl","ReactDOM","USE_ID","useIdImpl","startTransitionSafe","cb","flushSyncSafe","Deferred","constructor","promise","Promise","resolve","reject","reason","RouterProvider","_ref","fallbackElement","router","setStateImpl","useState","pendingState","setPendingState","vtContext","setVtContext","renderDfd","setRenderDfd","transition","setTransition","interruption","setInterruption","fetcherData","useRef","v7_startTransition","optInStartTransition","useCallback","setState","newState","_ref2","deletedFetchers","flushSync","viewTransitionOpts","current","delete","fetchers","fetcher","set","isViewTransitionUnavailable","startViewTransition","skipTransition","currentLocation","nextLocation","t","finished","finally","useLayoutEffect","subscribe","useEffect","renderPromise","location","v7_partialHydration","navigator","useMemo","createHref","encodeLocation","go","n","navigate","push","to","preventScrollReset","replace","dataRouterContext","static","routerFuture","v7_relativeSplatPath","logV6DeprecationWarnings","Fragment","DataRouterContext","Provider","DataRouterStateContext","Router","navigationType","historyAction","initialized","MemoizedDataRoutes","DataRoutes","_ref3","useRoutesImpl","BrowserRouter","_ref4","children","historyRef","v5Compat","listen","HashRouter","_ref5","HistoryRouter","_ref6","isBrowser","ABSOLUTE_URL_REGEX","Link","forwardRef","LinkWithRef","_ref7","ref","onClick","relative","reloadDocument","viewTransition","rest","_objectWithoutPropertiesLoose","_excluded","useContext","NavigationContext","absoluteHref","isExternal","test","currentUrl","URL","href","targetUrl","startsWith","protocol","path","pathname","origin","search","hash","useHref","internalOnClick","useLinkClickHandler","handleClick","defaultPrevented","NavLink","NavLinkWithRef","_ref8","ariaCurrentProp","caseSensitive","className","classNameProp","end","style","styleProp","_excluded2","useResolvedPath","useLocation","routerState","useViewTransitionState","toPathname","locationPathname","nextLocationPathname","navigation","endSlashPosition","endsWith","length","isActive","charAt","isPending","renderProps","ariaCurrent","filter","Boolean","join","Form","_ref9","forwardedRef","fetcherKey","onSubmit","props","_excluded3","submit","useSubmit","formAction","useFormAction","formMethod","submitHandler","preventDefault","submitter","nativeEvent","submitMethod","currentTarget","ScrollRestoration","_ref10","getKey","storageKey","useScrollRestoration","DataRouterHook","DataRouterStateHook","getDataRouterConsoleError","hookName","useDataRouterContext","ctx","invariant","useDataRouterState","_temp","replaceProp","useNavigate","createPath","useSearchParams","defaultInit","defaultSearchParamsRef","hasSetSearchParamsRef","setSearchParams","nextInit","navigateOptions","newSearchParams","validateClientSideSubmission","fetcherId","getUniqueFetcherId","String","UseSubmit","currentRouteId","useRouteId","options","fetch","formEncType","fromRouteId","_temp2","routeContext","RouteContext","match","matches","slice","params","indexValues","hasNakedIndexParam","some","qs","toString","route","index","joinPaths","useFetcher","_temp3","_route$matches","UseFetcher","routeId","id","defaultKey","setFetcherKey","getFetcher","deleteFetcher","load","submitImpl","FetcherForm","get","IDLE_FETCHER","fetcherWithComponents","useFetchers","UseFetchers","from","_ref11","SCROLL_RESTORATION_STORAGE_KEY","savedScrollPositions","_temp4","UseScrollRestoration","restoreScrollPosition","useMatches","useNavigation","scrollRestoration","usePageHide","scrollY","sessionStorage","setItem","JSON","stringify","sessionPositions","getItem","parse","getKeyWithoutBasename","disableScrollRestoration","enableScrollRestoration","scrollTo","el","getElementById","decodeURIComponent","scrollIntoView","useBeforeUnload","callback","capture","addEventListener","removeEventListener","usePrompt","_ref12","when","blocker","useBlocker","proceed","confirm","setTimeout","reset","currentPath","nextPath","matchPath"],"mappings":"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"}
  • imaps-frontend/node_modules/react-router-dom/dist/main.js

    rd565449 r0c6b92a  
    11/**
    2  * React Router DOM v6.26.0
     2 * React Router DOM v6.28.0
    33 *
    44 * Copyright (c) Remix Software Inc.
  • imaps-frontend/node_modules/react-router-dom/dist/react-router-dom.development.js

    rd565449 r0c6b92a  
    11/**
    2  * React Router DOM v6.26.0
     2 * React Router DOM v6.28.0
    33 *
    44 * Copyright (c) Remix Software Inc.
     
    1111import * as React from 'react';
    1212import * as ReactDOM from 'react-dom';
    13 import { UNSAFE_mapRouteProperties, UNSAFE_DataRouterContext, UNSAFE_DataRouterStateContext, Router, UNSAFE_useRoutesImpl, UNSAFE_NavigationContext, useHref, useResolvedPath, useLocation, useNavigate, createPath, UNSAFE_useRouteId, UNSAFE_RouteContext, useMatches, useNavigation, useBlocker } from 'react-router';
     13import { UNSAFE_mapRouteProperties, UNSAFE_logV6DeprecationWarnings, UNSAFE_DataRouterContext, UNSAFE_DataRouterStateContext, Router, UNSAFE_useRoutesImpl, UNSAFE_NavigationContext, useHref, useResolvedPath, useLocation, useNavigate, createPath, UNSAFE_useRouteId, UNSAFE_RouteContext, useMatches, useNavigation, useBlocker } from 'react-router';
    1414export { AbortedDeferredError, Await, MemoryRouter, Navigate, NavigationType, Outlet, Route, Router, Routes, UNSAFE_DataRouterContext, UNSAFE_DataRouterStateContext, UNSAFE_LocationContext, UNSAFE_NavigationContext, UNSAFE_RouteContext, UNSAFE_useRouteId, createMemoryRouter, createPath, createRoutesFromChildren, createRoutesFromElements, defer, generatePath, isRouteErrorResponse, json, matchPath, matchRoutes, parsePath, redirect, redirectDocument, renderMatches, replace, resolvePath, useActionData, useAsyncError, useAsyncValue, useBlocker, useHref, useInRouterContext, useLoaderData, useLocation, useMatch, useMatches, useNavigate, useNavigation, useNavigationType, useOutlet, useOutletContext, useParams, useResolvedPath, useRevalidator, useRouteError, useRouteLoaderData, useRoutes } from 'react-router';
    1515import { stripBasename, UNSAFE_warning, createRouter, createBrowserHistory, createHashHistory, UNSAFE_ErrorResponseImpl, UNSAFE_invariant, joinPaths, IDLE_FETCHER, matchPath } from '@remix-run/router';
     
    238238    routes,
    239239    mapRouteProperties: UNSAFE_mapRouteProperties,
    240     unstable_dataStrategy: opts?.unstable_dataStrategy,
    241     unstable_patchRoutesOnMiss: opts?.unstable_patchRoutesOnMiss,
     240    dataStrategy: opts?.dataStrategy,
     241    patchRoutesOnNavigation: opts?.patchRoutesOnNavigation,
    242242    window: opts?.window
    243243  }).initialize();
     
    256256    routes,
    257257    mapRouteProperties: UNSAFE_mapRouteProperties,
    258     unstable_dataStrategy: opts?.unstable_dataStrategy,
    259     unstable_patchRoutesOnMiss: opts?.unstable_patchRoutesOnMiss,
     258    dataStrategy: opts?.dataStrategy,
     259    patchRoutesOnNavigation: opts?.patchRoutesOnNavigation,
    260260    window: opts?.window
    261261  }).initialize();
     
    431431  let setState = React.useCallback((newState, {
    432432    deletedFetchers,
    433     unstable_flushSync: flushSync,
    434     unstable_viewTransitionOpts: viewTransitionOpts
     433    flushSync: flushSync,
     434    viewTransitionOpts: viewTransitionOpts
    435435  }) => {
    436436    deletedFetchers.forEach(key => fetcherData.current.delete(key));
     
    601601    v7_relativeSplatPath: router.future.v7_relativeSplatPath
    602602  }), [router.future.v7_relativeSplatPath]);
     603  React.useEffect(() => UNSAFE_logV6DeprecationWarnings(future, router.future), [future, router.future]);
    603604
    604605  // The fragment and {null} here are important!  We need them to keep React 18's
     
    666667  }, [setStateImpl, v7_startTransition]);
    667668  React.useLayoutEffect(() => history.listen(setState), [history, setState]);
     669  React.useEffect(() => UNSAFE_logV6DeprecationWarnings(future), [future]);
    668670  return /*#__PURE__*/React.createElement(Router, {
    669671    basename: basename,
     
    704706  }, [setStateImpl, v7_startTransition]);
    705707  React.useLayoutEffect(() => history.listen(setState), [history, setState]);
     708  React.useEffect(() => UNSAFE_logV6DeprecationWarnings(future), [future]);
    706709  return /*#__PURE__*/React.createElement(Router, {
    707710    basename: basename,
     
    736739  }, [setStateImpl, v7_startTransition]);
    737740  React.useLayoutEffect(() => history.listen(setState), [history, setState]);
     741  React.useEffect(() => UNSAFE_logV6DeprecationWarnings(future), [future]);
    738742  return /*#__PURE__*/React.createElement(Router, {
    739743    basename: basename,
     
    763767  to,
    764768  preventScrollReset,
    765   unstable_viewTransition,
     769  viewTransition,
    766770  ...rest
    767771}, ref) {
     
    806810    preventScrollReset,
    807811    relative,
    808     unstable_viewTransition
     812    viewTransition
    809813  });
    810814  function handleClick(event) {
     
    838842  style: styleProp,
    839843  to,
    840   unstable_viewTransition,
     844  viewTransition,
    841845  children,
    842846  ...rest
     
    854858  // Conditional usage is OK here because the usage of a data router is static
    855859  // eslint-disable-next-line react-hooks/rules-of-hooks
    856   useViewTransitionState(path) && unstable_viewTransition === true;
     860  useViewTransitionState(path) && viewTransition === true;
    857861  let toPathname = navigator.encodeLocation ? navigator.encodeLocation(path).pathname : path.pathname;
    858862  let locationPathname = location.pathname;
     
    899903    style: style,
    900904    to: to,
    901     unstable_viewTransition: unstable_viewTransition
     905    viewTransition: viewTransition
    902906  }), typeof children === "function" ? children(renderProps) : children);
    903907});
     
    935939  relative,
    936940  preventScrollReset,
    937   unstable_viewTransition,
     941  viewTransition,
    938942  ...props
    939943}, forwardedRef) => {
     
    957961      relative,
    958962      preventScrollReset,
    959       unstable_viewTransition
     963      viewTransition
    960964    });
    961965  };
     
    10071011}(DataRouterStateHook || {}); // Internal hooks
    10081012function getDataRouterConsoleError(hookName) {
    1009   return `${hookName} must be used within a data router.  See https://reactrouter.com/routers/picking-a-router.`;
     1013  return `${hookName} must be used within a data router.  See https://reactrouter.com/v6/routers/picking-a-router.`;
    10101014}
    10111015function useDataRouterContext(hookName) {
     
    10331037  preventScrollReset,
    10341038  relative,
    1035   unstable_viewTransition
     1039  viewTransition
    10361040} = {}) {
    10371041  let navigate = useNavigate();
     
    10521056        preventScrollReset,
    10531057        relative,
    1054         unstable_viewTransition
     1058        viewTransition
    10551059      });
    10561060    }
    1057   }, [location, navigate, path, replaceProp, state, target, to, preventScrollReset, relative, unstable_viewTransition]);
     1061  }, [location, navigate, path, replaceProp, state, target, to, preventScrollReset, relative, viewTransition]);
    10581062}
    10591063
     
    11261130        formMethod: options.method || method,
    11271131        formEncType: options.encType || encType,
    1128         unstable_flushSync: options.unstable_flushSync
     1132        flushSync: options.flushSync
    11291133      });
    11301134    } else {
     
    11381142        state: options.state,
    11391143        fromRouteId: currentRouteId,
    1140         unstable_flushSync: options.unstable_flushSync,
    1141         unstable_viewTransition: options.unstable_viewTransition
     1144        flushSync: options.flushSync,
     1145        viewTransition: options.viewTransition
    11421146      });
    11431147    }
     
    11771181    // on match.route.index below
    11781182    let params = new URLSearchParams(path.search);
    1179     if (params.has("index") && params.get("index") === "") {
     1183    let indexValues = params.getAll("index");
     1184    let hasNakedIndexParam = indexValues.some(v => v === "");
     1185    if (hasNakedIndexParam) {
    11801186      params.delete("index");
    1181       path.search = params.toString() ? `?${params.toString()}` : "";
     1187      indexValues.filter(v => v).forEach(v => params.append("index", v));
     1188      let qs = params.toString();
     1189      path.search = qs ? `?${qs}` : "";
    11821190    }
    11831191  }
     
    14841492function useViewTransitionState(to, opts = {}) {
    14851493  let vtContext = React.useContext(ViewTransitionContext);
    1486   !(vtContext != null) ? UNSAFE_invariant(false, "`unstable_useViewTransitionState` must be used within `react-router-dom`'s `RouterProvider`.  " + "Did you accidentally import `RouterProvider` from `react-router`?")  : void 0;
     1494  !(vtContext != null) ? UNSAFE_invariant(false, "`useViewTransitionState` must be used within `react-router-dom`'s `RouterProvider`.  " + "Did you accidentally import `RouterProvider` from `react-router`?")  : void 0;
    14871495  let {
    14881496    basename
     
    15011509  // an indicated transition apply.  I.e., on the list view you have:
    15021510  //
    1503   //   <NavLink to="/details/1" unstable_viewTransition>
     1511  //   <NavLink to="/details/1" viewTransition>
    15041512  //
    15051513  // If you click the breadcrumb back to the list view:
    15061514  //
    1507   //   <NavLink to="/list" unstable_viewTransition>
     1515  //   <NavLink to="/list" viewTransition>
    15081516  //
    15091517  // We should apply the transition because it's indicated as active going
     
    15151523//#endregion
    15161524
    1517 export { BrowserRouter, Form, HashRouter, Link, NavLink, RouterProvider, ScrollRestoration, FetchersContext as UNSAFE_FetchersContext, ViewTransitionContext as UNSAFE_ViewTransitionContext, useScrollRestoration as UNSAFE_useScrollRestoration, createBrowserRouter, createHashRouter, createSearchParams, HistoryRouter as unstable_HistoryRouter, usePrompt as unstable_usePrompt, useViewTransitionState as unstable_useViewTransitionState, useBeforeUnload, useFetcher, useFetchers, useFormAction, useLinkClickHandler, useSearchParams, useSubmit };
     1525export { BrowserRouter, Form, HashRouter, Link, NavLink, RouterProvider, ScrollRestoration, FetchersContext as UNSAFE_FetchersContext, ViewTransitionContext as UNSAFE_ViewTransitionContext, useScrollRestoration as UNSAFE_useScrollRestoration, createBrowserRouter, createHashRouter, createSearchParams, HistoryRouter as unstable_HistoryRouter, usePrompt as unstable_usePrompt, useBeforeUnload, useFetcher, useFetchers, useFormAction, useLinkClickHandler, useSearchParams, useSubmit, useViewTransitionState };
    15181526//# sourceMappingURL=react-router-dom.development.js.map
  • imaps-frontend/node_modules/react-router-dom/dist/react-router-dom.development.js.map

    rd565449 r0c6b92a  
    1 {"version":3,"file":"react-router-dom.development.js","sources":["../dom.ts","../index.tsx"],"sourcesContent":["import type {\n  FormEncType,\n  HTMLFormMethod,\n  RelativeRoutingType,\n} from \"@remix-run/router\";\nimport { stripBasename, UNSAFE_warning as warning } from \"@remix-run/router\";\n\nexport const defaultMethod: HTMLFormMethod = \"get\";\nconst defaultEncType: FormEncType = \"application/x-www-form-urlencoded\";\n\nexport function isHtmlElement(object: any): object is HTMLElement {\n  return object != null && typeof object.tagName === \"string\";\n}\n\nexport function isButtonElement(object: any): object is HTMLButtonElement {\n  return isHtmlElement(object) && object.tagName.toLowerCase() === \"button\";\n}\n\nexport function isFormElement(object: any): object is HTMLFormElement {\n  return isHtmlElement(object) && object.tagName.toLowerCase() === \"form\";\n}\n\nexport function isInputElement(object: any): object is HTMLInputElement {\n  return isHtmlElement(object) && object.tagName.toLowerCase() === \"input\";\n}\n\ntype LimitedMouseEvent = Pick<\n  MouseEvent,\n  \"button\" | \"metaKey\" | \"altKey\" | \"ctrlKey\" | \"shiftKey\"\n>;\n\nfunction isModifiedEvent(event: LimitedMouseEvent) {\n  return !!(event.metaKey || event.altKey || event.ctrlKey || event.shiftKey);\n}\n\nexport function shouldProcessLinkClick(\n  event: LimitedMouseEvent,\n  target?: string\n) {\n  return (\n    event.button === 0 && // Ignore everything but left clicks\n    (!target || target === \"_self\") && // Let browser handle \"target=_blank\" etc.\n    !isModifiedEvent(event) // Ignore clicks with modifier keys\n  );\n}\n\nexport type ParamKeyValuePair = [string, string];\n\nexport type URLSearchParamsInit =\n  | string\n  | ParamKeyValuePair[]\n  | Record<string, string | string[]>\n  | URLSearchParams;\n\n/**\n * Creates a URLSearchParams object using the given initializer.\n *\n * This is identical to `new URLSearchParams(init)` except it also\n * supports arrays as values in the object form of the initializer\n * instead of just strings. This is convenient when you need multiple\n * values for a given key, but don't want to use an array initializer.\n *\n * For example, instead of:\n *\n *   let searchParams = new URLSearchParams([\n *     ['sort', 'name'],\n *     ['sort', 'price']\n *   ]);\n *\n * you can do:\n *\n *   let searchParams = createSearchParams({\n *     sort: ['name', 'price']\n *   });\n */\nexport function createSearchParams(\n  init: URLSearchParamsInit = \"\"\n): URLSearchParams {\n  return new URLSearchParams(\n    typeof init === \"string\" ||\n    Array.isArray(init) ||\n    init instanceof URLSearchParams\n      ? init\n      : Object.keys(init).reduce((memo, key) => {\n          let value = init[key];\n          return memo.concat(\n            Array.isArray(value) ? value.map((v) => [key, v]) : [[key, value]]\n          );\n        }, [] as ParamKeyValuePair[])\n  );\n}\n\nexport function getSearchParamsForLocation(\n  locationSearch: string,\n  defaultSearchParams: URLSearchParams | null\n) {\n  let searchParams = createSearchParams(locationSearch);\n\n  if (defaultSearchParams) {\n    // Use `defaultSearchParams.forEach(...)` here instead of iterating of\n    // `defaultSearchParams.keys()` to work-around a bug in Firefox related to\n    // web extensions. Relevant Bugzilla tickets:\n    // https://bugzilla.mozilla.org/show_bug.cgi?id=1414602\n    // https://bugzilla.mozilla.org/show_bug.cgi?id=1023984\n    defaultSearchParams.forEach((_, key) => {\n      if (!searchParams.has(key)) {\n        defaultSearchParams.getAll(key).forEach((value) => {\n          searchParams.append(key, value);\n        });\n      }\n    });\n  }\n\n  return searchParams;\n}\n\n// Thanks https://github.com/sindresorhus/type-fest!\ntype JsonObject = { [Key in string]: JsonValue } & {\n  [Key in string]?: JsonValue | undefined;\n};\ntype JsonArray = JsonValue[] | readonly JsonValue[];\ntype JsonPrimitive = string | number | boolean | null;\ntype JsonValue = JsonPrimitive | JsonObject | JsonArray;\n\nexport type SubmitTarget =\n  | HTMLFormElement\n  | HTMLButtonElement\n  | HTMLInputElement\n  | FormData\n  | URLSearchParams\n  | JsonValue\n  | null;\n\n// One-time check for submitter support\nlet _formDataSupportsSubmitter: boolean | null = null;\n\nfunction isFormDataSubmitterSupported() {\n  if (_formDataSupportsSubmitter === null) {\n    try {\n      new FormData(\n        document.createElement(\"form\"),\n        // @ts-expect-error if FormData supports the submitter parameter, this will throw\n        0\n      );\n      _formDataSupportsSubmitter = false;\n    } catch (e) {\n      _formDataSupportsSubmitter = true;\n    }\n  }\n  return _formDataSupportsSubmitter;\n}\n\n/**\n * Submit options shared by both navigations and fetchers\n */\ninterface SharedSubmitOptions {\n  /**\n   * The HTTP method used to submit the form. Overrides `<form method>`.\n   * Defaults to \"GET\".\n   */\n  method?: HTMLFormMethod;\n\n  /**\n   * The action URL path used to submit the form. Overrides `<form action>`.\n   * Defaults to the path of the current route.\n   */\n  action?: string;\n\n  /**\n   * The encoding used to submit the form. Overrides `<form encType>`.\n   * Defaults to \"application/x-www-form-urlencoded\".\n   */\n  encType?: FormEncType;\n\n  /**\n   * Determines whether the form action is relative to the route hierarchy or\n   * the pathname.  Use this if you want to opt out of navigating the route\n   * hierarchy and want to instead route based on /-delimited URL segments\n   */\n  relative?: RelativeRoutingType;\n\n  /**\n   * In browser-based environments, prevent resetting scroll after this\n   * navigation when using the <ScrollRestoration> component\n   */\n  preventScrollReset?: boolean;\n\n  /**\n   * Enable flushSync for this submission's state updates\n   */\n  unstable_flushSync?: boolean;\n}\n\n/**\n * Submit options available to fetchers\n */\nexport interface FetcherSubmitOptions extends SharedSubmitOptions {}\n\n/**\n * Submit options available to navigations\n */\nexport interface SubmitOptions extends FetcherSubmitOptions {\n  /**\n   * Set `true` to replace the current entry in the browser's history stack\n   * instead of creating a new one (i.e. stay on \"the same page\"). Defaults\n   * to `false`.\n   */\n  replace?: boolean;\n\n  /**\n   * State object to add to the history stack entry for this navigation\n   */\n  state?: any;\n\n  /**\n   * Indicate a specific fetcherKey to use when using navigate=false\n   */\n  fetcherKey?: string;\n\n  /**\n   * navigate=false will use a fetcher instead of a navigation\n   */\n  navigate?: boolean;\n\n  /**\n   * Enable view transitions on this submission navigation\n   */\n  unstable_viewTransition?: boolean;\n}\n\nconst supportedFormEncTypes: Set<FormEncType> = new Set([\n  \"application/x-www-form-urlencoded\",\n  \"multipart/form-data\",\n  \"text/plain\",\n]);\n\nfunction getFormEncType(encType: string | null) {\n  if (encType != null && !supportedFormEncTypes.has(encType as FormEncType)) {\n    warning(\n      false,\n      `\"${encType}\" is not a valid \\`encType\\` for \\`<Form>\\`/\\`<fetcher.Form>\\` ` +\n        `and will default to \"${defaultEncType}\"`\n    );\n\n    return null;\n  }\n  return encType;\n}\n\nexport function getFormSubmissionInfo(\n  target: SubmitTarget,\n  basename: string\n): {\n  action: string | null;\n  method: string;\n  encType: string;\n  formData: FormData | undefined;\n  body: any;\n} {\n  let method: string;\n  let action: string | null;\n  let encType: string;\n  let formData: FormData | undefined;\n  let body: any;\n\n  if (isFormElement(target)) {\n    // When grabbing the action from the element, it will have had the basename\n    // prefixed to ensure non-JS scenarios work, so strip it since we'll\n    // re-prefix in the router\n    let attr = target.getAttribute(\"action\");\n    action = attr ? stripBasename(attr, basename) : null;\n    method = target.getAttribute(\"method\") || defaultMethod;\n    encType = getFormEncType(target.getAttribute(\"enctype\")) || defaultEncType;\n\n    formData = new FormData(target);\n  } else if (\n    isButtonElement(target) ||\n    (isInputElement(target) &&\n      (target.type === \"submit\" || target.type === \"image\"))\n  ) {\n    let form = target.form;\n\n    if (form == null) {\n      throw new Error(\n        `Cannot submit a <button> or <input type=\"submit\"> without a <form>`\n      );\n    }\n\n    // <button>/<input type=\"submit\"> may override attributes of <form>\n\n    // When grabbing the action from the element, it will have had the basename\n    // prefixed to ensure non-JS scenarios work, so strip it since we'll\n    // re-prefix in the router\n    let attr = target.getAttribute(\"formaction\") || form.getAttribute(\"action\");\n    action = attr ? stripBasename(attr, basename) : null;\n\n    method =\n      target.getAttribute(\"formmethod\") ||\n      form.getAttribute(\"method\") ||\n      defaultMethod;\n    encType =\n      getFormEncType(target.getAttribute(\"formenctype\")) ||\n      getFormEncType(form.getAttribute(\"enctype\")) ||\n      defaultEncType;\n\n    // Build a FormData object populated from a form and submitter\n    formData = new FormData(form, target);\n\n    // If this browser doesn't support the `FormData(el, submitter)` format,\n    // then tack on the submitter value at the end.  This is a lightweight\n    // solution that is not 100% spec compliant.  For complete support in older\n    // browsers, consider using the `formdata-submitter-polyfill` package\n    if (!isFormDataSubmitterSupported()) {\n      let { name, type, value } = target;\n      if (type === \"image\") {\n        let prefix = name ? `${name}.` : \"\";\n        formData.append(`${prefix}x`, \"0\");\n        formData.append(`${prefix}y`, \"0\");\n      } else if (name) {\n        formData.append(name, value);\n      }\n    }\n  } else if (isHtmlElement(target)) {\n    throw new Error(\n      `Cannot submit element that is not <form>, <button>, or ` +\n        `<input type=\"submit|image\">`\n    );\n  } else {\n    method = defaultMethod;\n    action = null;\n    encType = defaultEncType;\n    body = target;\n  }\n\n  // Send body for <Form encType=\"text/plain\" so we encode it into text\n  if (formData && encType === \"text/plain\") {\n    body = formData;\n    formData = undefined;\n  }\n\n  return { action, method: method.toLowerCase(), encType, formData, body };\n}\n","/**\n * NOTE: If you refactor this to split up the modules into separate files,\n * you'll need to update the rollup config for react-router-dom-v5-compat.\n */\nimport * as React from \"react\";\nimport * as ReactDOM from \"react-dom\";\nimport type {\n  DataRouteObject,\n  FutureConfig,\n  Location,\n  NavigateOptions,\n  NavigationType,\n  Navigator,\n  RelativeRoutingType,\n  RouteObject,\n  RouterProps,\n  RouterProviderProps,\n  To,\n  unstable_PatchRoutesOnMissFunction,\n} from \"react-router\";\nimport {\n  Router,\n  createPath,\n  useHref,\n  useLocation,\n  useMatches,\n  useNavigate,\n  useNavigation,\n  useResolvedPath,\n  useBlocker,\n  UNSAFE_DataRouterContext as DataRouterContext,\n  UNSAFE_DataRouterStateContext as DataRouterStateContext,\n  UNSAFE_NavigationContext as NavigationContext,\n  UNSAFE_RouteContext as RouteContext,\n  UNSAFE_mapRouteProperties as mapRouteProperties,\n  UNSAFE_useRouteId as useRouteId,\n  UNSAFE_useRoutesImpl as useRoutesImpl,\n} from \"react-router\";\nimport type {\n  BrowserHistory,\n  unstable_DataStrategyFunction,\n  unstable_DataStrategyFunctionArgs,\n  unstable_DataStrategyMatch,\n  Fetcher,\n  FormEncType,\n  FormMethod,\n  FutureConfig as RouterFutureConfig,\n  GetScrollRestorationKeyFunction,\n  HashHistory,\n  History,\n  HTMLFormMethod,\n  HydrationState,\n  Router as RemixRouter,\n  V7_FormMethod,\n  RouterState,\n  RouterSubscriber,\n  BlockerFunction,\n} from \"@remix-run/router\";\nimport {\n  createRouter,\n  createBrowserHistory,\n  createHashHistory,\n  joinPaths,\n  stripBasename,\n  UNSAFE_ErrorResponseImpl as ErrorResponseImpl,\n  UNSAFE_invariant as invariant,\n  UNSAFE_warning as warning,\n  matchPath,\n  IDLE_FETCHER,\n} from \"@remix-run/router\";\n\nimport type {\n  SubmitOptions,\n  ParamKeyValuePair,\n  URLSearchParamsInit,\n  SubmitTarget,\n  FetcherSubmitOptions,\n} from \"./dom\";\nimport {\n  createSearchParams,\n  defaultMethod,\n  getFormSubmissionInfo,\n  getSearchParamsForLocation,\n  shouldProcessLinkClick,\n} from \"./dom\";\n\n////////////////////////////////////////////////////////////////////////////////\n//#region Re-exports\n////////////////////////////////////////////////////////////////////////////////\n\nexport type {\n  unstable_DataStrategyFunction,\n  unstable_DataStrategyFunctionArgs,\n  unstable_DataStrategyMatch,\n  FormEncType,\n  FormMethod,\n  GetScrollRestorationKeyFunction,\n  ParamKeyValuePair,\n  SubmitOptions,\n  URLSearchParamsInit,\n  V7_FormMethod,\n};\nexport { createSearchParams, ErrorResponseImpl as UNSAFE_ErrorResponseImpl };\n\n// Note: Keep in sync with react-router exports!\nexport type {\n  ActionFunction,\n  ActionFunctionArgs,\n  AwaitProps,\n  Blocker,\n  BlockerFunction,\n  DataRouteMatch,\n  DataRouteObject,\n  ErrorResponse,\n  Fetcher,\n  FutureConfig,\n  Hash,\n  IndexRouteObject,\n  IndexRouteProps,\n  JsonFunction,\n  LazyRouteFunction,\n  LayoutRouteProps,\n  LoaderFunction,\n  LoaderFunctionArgs,\n  Location,\n  MemoryRouterProps,\n  NavigateFunction,\n  NavigateOptions,\n  NavigateProps,\n  Navigation,\n  Navigator,\n  NonIndexRouteObject,\n  OutletProps,\n  Params,\n  ParamParseKey,\n  Path,\n  PathMatch,\n  Pathname,\n  PathParam,\n  PathPattern,\n  PathRouteProps,\n  RedirectFunction,\n  RelativeRoutingType,\n  RouteMatch,\n  RouteObject,\n  RouteProps,\n  RouterProps,\n  RouterProviderProps,\n  RoutesProps,\n  Search,\n  ShouldRevalidateFunction,\n  ShouldRevalidateFunctionArgs,\n  To,\n  UIMatch,\n  unstable_HandlerResult,\n  unstable_PatchRoutesOnMissFunction,\n} from \"react-router\";\nexport {\n  AbortedDeferredError,\n  Await,\n  MemoryRouter,\n  Navigate,\n  NavigationType,\n  Outlet,\n  Route,\n  Router,\n  Routes,\n  createMemoryRouter,\n  createPath,\n  createRoutesFromChildren,\n  createRoutesFromElements,\n  defer,\n  isRouteErrorResponse,\n  generatePath,\n  json,\n  matchPath,\n  matchRoutes,\n  parsePath,\n  redirect,\n  redirectDocument,\n  replace,\n  renderMatches,\n  resolvePath,\n  useActionData,\n  useAsyncError,\n  useAsyncValue,\n  useBlocker,\n  useHref,\n  useInRouterContext,\n  useLoaderData,\n  useLocation,\n  useMatch,\n  useMatches,\n  useNavigate,\n  useNavigation,\n  useNavigationType,\n  useOutlet,\n  useOutletContext,\n  useParams,\n  useResolvedPath,\n  useRevalidator,\n  useRouteError,\n  useRouteLoaderData,\n  useRoutes,\n} from \"react-router\";\n\n///////////////////////////////////////////////////////////////////////////////\n// DANGER! PLEASE READ ME!\n// We provide these exports as an escape hatch in the event that you need any\n// routing data that we don't provide an explicit API for. With that said, we\n// want to cover your use case if we can, so if you feel the need to use these\n// we want to hear from you. Let us know what you're building and we'll do our\n// best to make sure we can support you!\n//\n// We consider these exports an implementation detail and do not guarantee\n// against any breaking changes, regardless of the semver release. Use with\n// extreme caution and only if you understand the consequences. Godspeed.\n///////////////////////////////////////////////////////////////////////////////\n\n/** @internal */\nexport {\n  UNSAFE_DataRouterContext,\n  UNSAFE_DataRouterStateContext,\n  UNSAFE_NavigationContext,\n  UNSAFE_LocationContext,\n  UNSAFE_RouteContext,\n  UNSAFE_useRouteId,\n} from \"react-router\";\n//#endregion\n\ndeclare global {\n  var __staticRouterHydrationData: HydrationState | undefined;\n  var __reactRouterVersion: string;\n  interface Document {\n    startViewTransition(cb: () => Promise<void> | void): ViewTransition;\n  }\n}\n\n// HEY YOU! DON'T TOUCH THIS VARIABLE!\n//\n// It is replaced with the proper version at build time via a babel plugin in\n// the rollup config.\n//\n// Export a global property onto the window for React Router detection by the\n// Core Web Vitals Technology Report.  This way they can configure the `wappalyzer`\n// to detect and properly classify live websites as being built with React Router:\n// https://github.com/HTTPArchive/wappalyzer/blob/main/src/technologies/r.json\nconst REACT_ROUTER_VERSION = \"0\";\ntry {\n  window.__reactRouterVersion = REACT_ROUTER_VERSION;\n} catch (e) {\n  // no-op\n}\n\n////////////////////////////////////////////////////////////////////////////////\n//#region Routers\n////////////////////////////////////////////////////////////////////////////////\n\ninterface DOMRouterOpts {\n  basename?: string;\n  future?: Partial<Omit<RouterFutureConfig, \"v7_prependBasename\">>;\n  hydrationData?: HydrationState;\n  unstable_dataStrategy?: unstable_DataStrategyFunction;\n  unstable_patchRoutesOnMiss?: unstable_PatchRoutesOnMissFunction;\n  window?: Window;\n}\n\nexport function createBrowserRouter(\n  routes: RouteObject[],\n  opts?: DOMRouterOpts\n): RemixRouter {\n  return createRouter({\n    basename: opts?.basename,\n    future: {\n      ...opts?.future,\n      v7_prependBasename: true,\n    },\n    history: createBrowserHistory({ window: opts?.window }),\n    hydrationData: opts?.hydrationData || parseHydrationData(),\n    routes,\n    mapRouteProperties,\n    unstable_dataStrategy: opts?.unstable_dataStrategy,\n    unstable_patchRoutesOnMiss: opts?.unstable_patchRoutesOnMiss,\n    window: opts?.window,\n  }).initialize();\n}\n\nexport function createHashRouter(\n  routes: RouteObject[],\n  opts?: DOMRouterOpts\n): RemixRouter {\n  return createRouter({\n    basename: opts?.basename,\n    future: {\n      ...opts?.future,\n      v7_prependBasename: true,\n    },\n    history: createHashHistory({ window: opts?.window }),\n    hydrationData: opts?.hydrationData || parseHydrationData(),\n    routes,\n    mapRouteProperties,\n    unstable_dataStrategy: opts?.unstable_dataStrategy,\n    unstable_patchRoutesOnMiss: opts?.unstable_patchRoutesOnMiss,\n    window: opts?.window,\n  }).initialize();\n}\n\nfunction parseHydrationData(): HydrationState | undefined {\n  let state = window?.__staticRouterHydrationData;\n  if (state && state.errors) {\n    state = {\n      ...state,\n      errors: deserializeErrors(state.errors),\n    };\n  }\n  return state;\n}\n\nfunction deserializeErrors(\n  errors: RemixRouter[\"state\"][\"errors\"]\n): RemixRouter[\"state\"][\"errors\"] {\n  if (!errors) return null;\n  let entries = Object.entries(errors);\n  let serialized: RemixRouter[\"state\"][\"errors\"] = {};\n  for (let [key, val] of entries) {\n    // Hey you!  If you change this, please change the corresponding logic in\n    // serializeErrors in react-router-dom/server.tsx :)\n    if (val && val.__type === \"RouteErrorResponse\") {\n      serialized[key] = new ErrorResponseImpl(\n        val.status,\n        val.statusText,\n        val.data,\n        val.internal === true\n      );\n    } else if (val && val.__type === \"Error\") {\n      // Attempt to reconstruct the right type of Error (i.e., ReferenceError)\n      if (val.__subType) {\n        let ErrorConstructor = window[val.__subType];\n        if (typeof ErrorConstructor === \"function\") {\n          try {\n            // @ts-expect-error\n            let error = new ErrorConstructor(val.message);\n            // Wipe away the client-side stack trace.  Nothing to fill it in with\n            // because we don't serialize SSR stack traces for security reasons\n            error.stack = \"\";\n            serialized[key] = error;\n          } catch (e) {\n            // no-op - fall through and create a normal Error\n          }\n        }\n      }\n\n      if (serialized[key] == null) {\n        let error = new Error(val.message);\n        // Wipe away the client-side stack trace.  Nothing to fill it in with\n        // because we don't serialize SSR stack traces for security reasons\n        error.stack = \"\";\n        serialized[key] = error;\n      }\n    } else {\n      serialized[key] = val;\n    }\n  }\n  return serialized;\n}\n\n//#endregion\n\n////////////////////////////////////////////////////////////////////////////////\n//#region Contexts\n////////////////////////////////////////////////////////////////////////////////\n\ntype ViewTransitionContextObject =\n  | {\n      isTransitioning: false;\n    }\n  | {\n      isTransitioning: true;\n      flushSync: boolean;\n      currentLocation: Location;\n      nextLocation: Location;\n    };\n\nconst ViewTransitionContext = React.createContext<ViewTransitionContextObject>({\n  isTransitioning: false,\n});\nif (__DEV__) {\n  ViewTransitionContext.displayName = \"ViewTransition\";\n}\n\nexport { ViewTransitionContext as UNSAFE_ViewTransitionContext };\n\n// TODO: (v7) Change the useFetcher data from `any` to `unknown`\ntype FetchersContextObject = Map<string, any>;\n\nconst FetchersContext = React.createContext<FetchersContextObject>(new Map());\nif (__DEV__) {\n  FetchersContext.displayName = \"Fetchers\";\n}\n\nexport { FetchersContext as UNSAFE_FetchersContext };\n\n//#endregion\n\n////////////////////////////////////////////////////////////////////////////////\n//#region Components\n////////////////////////////////////////////////////////////////////////////////\n\n/**\n  Webpack + React 17 fails to compile on any of the following because webpack\n  complains that `startTransition` doesn't exist in `React`:\n  * import { startTransition } from \"react\"\n  * import * as React from from \"react\";\n    \"startTransition\" in React ? React.startTransition(() => setState()) : setState()\n  * import * as React from from \"react\";\n    \"startTransition\" in React ? React[\"startTransition\"](() => setState()) : setState()\n\n  Moving it to a constant such as the following solves the Webpack/React 17 issue:\n  * import * as React from from \"react\";\n    const START_TRANSITION = \"startTransition\";\n    START_TRANSITION in React ? React[START_TRANSITION](() => setState()) : setState()\n\n  However, that introduces webpack/terser minification issues in production builds\n  in React 18 where minification/obfuscation ends up removing the call of\n  React.startTransition entirely from the first half of the ternary.  Grabbing\n  this exported reference once up front resolves that issue.\n\n  See https://github.com/remix-run/react-router/issues/10579\n*/\nconst START_TRANSITION = \"startTransition\";\nconst startTransitionImpl = React[START_TRANSITION];\nconst FLUSH_SYNC = \"flushSync\";\nconst flushSyncImpl = ReactDOM[FLUSH_SYNC];\nconst USE_ID = \"useId\";\nconst useIdImpl = React[USE_ID];\n\nfunction startTransitionSafe(cb: () => void) {\n  if (startTransitionImpl) {\n    startTransitionImpl(cb);\n  } else {\n    cb();\n  }\n}\n\nfunction flushSyncSafe(cb: () => void) {\n  if (flushSyncImpl) {\n    flushSyncImpl(cb);\n  } else {\n    cb();\n  }\n}\n\ninterface ViewTransition {\n  finished: Promise<void>;\n  ready: Promise<void>;\n  updateCallbackDone: Promise<void>;\n  skipTransition(): void;\n}\n\nclass Deferred<T> {\n  status: \"pending\" | \"resolved\" | \"rejected\" = \"pending\";\n  promise: Promise<T>;\n  // @ts-expect-error - no initializer\n  resolve: (value: T) => void;\n  // @ts-expect-error - no initializer\n  reject: (reason?: unknown) => void;\n  constructor() {\n    this.promise = new Promise((resolve, reject) => {\n      this.resolve = (value) => {\n        if (this.status === \"pending\") {\n          this.status = \"resolved\";\n          resolve(value);\n        }\n      };\n      this.reject = (reason) => {\n        if (this.status === \"pending\") {\n          this.status = \"rejected\";\n          reject(reason);\n        }\n      };\n    });\n  }\n}\n\n/**\n * Given a Remix Router instance, render the appropriate UI\n */\nexport function RouterProvider({\n  fallbackElement,\n  router,\n  future,\n}: RouterProviderProps): React.ReactElement {\n  let [state, setStateImpl] = React.useState(router.state);\n  let [pendingState, setPendingState] = React.useState<RouterState>();\n  let [vtContext, setVtContext] = React.useState<ViewTransitionContextObject>({\n    isTransitioning: false,\n  });\n  let [renderDfd, setRenderDfd] = React.useState<Deferred<void>>();\n  let [transition, setTransition] = React.useState<ViewTransition>();\n  let [interruption, setInterruption] = React.useState<{\n    state: RouterState;\n    currentLocation: Location;\n    nextLocation: Location;\n  }>();\n  let fetcherData = React.useRef<Map<string, any>>(new Map());\n  let { v7_startTransition } = future || {};\n\n  let optInStartTransition = React.useCallback(\n    (cb: () => void) => {\n      if (v7_startTransition) {\n        startTransitionSafe(cb);\n      } else {\n        cb();\n      }\n    },\n    [v7_startTransition]\n  );\n\n  let setState = React.useCallback<RouterSubscriber>(\n    (\n      newState: RouterState,\n      {\n        deletedFetchers,\n        unstable_flushSync: flushSync,\n        unstable_viewTransitionOpts: viewTransitionOpts,\n      }\n    ) => {\n      deletedFetchers.forEach((key) => fetcherData.current.delete(key));\n      newState.fetchers.forEach((fetcher, key) => {\n        if (fetcher.data !== undefined) {\n          fetcherData.current.set(key, fetcher.data);\n        }\n      });\n\n      let isViewTransitionUnavailable =\n        router.window == null ||\n        router.window.document == null ||\n        typeof router.window.document.startViewTransition !== \"function\";\n\n      // If this isn't a view transition or it's not available in this browser,\n      // just update and be done with it\n      if (!viewTransitionOpts || isViewTransitionUnavailable) {\n        if (flushSync) {\n          flushSyncSafe(() => setStateImpl(newState));\n        } else {\n          optInStartTransition(() => setStateImpl(newState));\n        }\n        return;\n      }\n\n      // flushSync + startViewTransition\n      if (flushSync) {\n        // Flush through the context to mark DOM elements as transition=ing\n        flushSyncSafe(() => {\n          // Cancel any pending transitions\n          if (transition) {\n            renderDfd && renderDfd.resolve();\n            transition.skipTransition();\n          }\n          setVtContext({\n            isTransitioning: true,\n            flushSync: true,\n            currentLocation: viewTransitionOpts.currentLocation,\n            nextLocation: viewTransitionOpts.nextLocation,\n          });\n        });\n\n        // Update the DOM\n        let t = router.window!.document.startViewTransition(() => {\n          flushSyncSafe(() => setStateImpl(newState));\n        });\n\n        // Clean up after the animation completes\n        t.finished.finally(() => {\n          flushSyncSafe(() => {\n            setRenderDfd(undefined);\n            setTransition(undefined);\n            setPendingState(undefined);\n            setVtContext({ isTransitioning: false });\n          });\n        });\n\n        flushSyncSafe(() => setTransition(t));\n        return;\n      }\n\n      // startTransition + startViewTransition\n      if (transition) {\n        // Interrupting an in-progress transition, cancel and let everything flush\n        // out, and then kick off a new transition from the interruption state\n        renderDfd && renderDfd.resolve();\n        transition.skipTransition();\n        setInterruption({\n          state: newState,\n          currentLocation: viewTransitionOpts.currentLocation,\n          nextLocation: viewTransitionOpts.nextLocation,\n        });\n      } else {\n        // Completed navigation update with opted-in view transitions, let 'er rip\n        setPendingState(newState);\n        setVtContext({\n          isTransitioning: true,\n          flushSync: false,\n          currentLocation: viewTransitionOpts.currentLocation,\n          nextLocation: viewTransitionOpts.nextLocation,\n        });\n      }\n    },\n    [router.window, transition, renderDfd, fetcherData, optInStartTransition]\n  );\n\n  // Need to use a layout effect here so we are subscribed early enough to\n  // pick up on any render-driven redirects/navigations (useEffect/<Navigate>)\n  React.useLayoutEffect(() => router.subscribe(setState), [router, setState]);\n\n  // When we start a view transition, create a Deferred we can use for the\n  // eventual \"completed\" render\n  React.useEffect(() => {\n    if (vtContext.isTransitioning && !vtContext.flushSync) {\n      setRenderDfd(new Deferred<void>());\n    }\n  }, [vtContext]);\n\n  // Once the deferred is created, kick off startViewTransition() to update the\n  // DOM and then wait on the Deferred to resolve (indicating the DOM update has\n  // happened)\n  React.useEffect(() => {\n    if (renderDfd && pendingState && router.window) {\n      let newState = pendingState;\n      let renderPromise = renderDfd.promise;\n      let transition = router.window.document.startViewTransition(async () => {\n        optInStartTransition(() => setStateImpl(newState));\n        await renderPromise;\n      });\n      transition.finished.finally(() => {\n        setRenderDfd(undefined);\n        setTransition(undefined);\n        setPendingState(undefined);\n        setVtContext({ isTransitioning: false });\n      });\n      setTransition(transition);\n    }\n  }, [optInStartTransition, pendingState, renderDfd, router.window]);\n\n  // When the new location finally renders and is committed to the DOM, this\n  // effect will run to resolve the transition\n  React.useEffect(() => {\n    if (\n      renderDfd &&\n      pendingState &&\n      state.location.key === pendingState.location.key\n    ) {\n      renderDfd.resolve();\n    }\n  }, [renderDfd, transition, state.location, pendingState]);\n\n  // If we get interrupted with a new navigation during a transition, we skip\n  // the active transition, let it cleanup, then kick it off again here\n  React.useEffect(() => {\n    if (!vtContext.isTransitioning && interruption) {\n      setPendingState(interruption.state);\n      setVtContext({\n        isTransitioning: true,\n        flushSync: false,\n        currentLocation: interruption.currentLocation,\n        nextLocation: interruption.nextLocation,\n      });\n      setInterruption(undefined);\n    }\n  }, [vtContext.isTransitioning, interruption]);\n\n  React.useEffect(() => {\n    warning(\n      fallbackElement == null || !router.future.v7_partialHydration,\n      \"`<RouterProvider fallbackElement>` is deprecated when using \" +\n        \"`v7_partialHydration`, use a `HydrateFallback` component instead\"\n    );\n    // Only log this once on initial mount\n    // eslint-disable-next-line react-hooks/exhaustive-deps\n  }, []);\n\n  let navigator = React.useMemo((): Navigator => {\n    return {\n      createHref: router.createHref,\n      encodeLocation: router.encodeLocation,\n      go: (n) => router.navigate(n),\n      push: (to, state, opts) =>\n        router.navigate(to, {\n          state,\n          preventScrollReset: opts?.preventScrollReset,\n        }),\n      replace: (to, state, opts) =>\n        router.navigate(to, {\n          replace: true,\n          state,\n          preventScrollReset: opts?.preventScrollReset,\n        }),\n    };\n  }, [router]);\n\n  let basename = router.basename || \"/\";\n\n  let dataRouterContext = React.useMemo(\n    () => ({\n      router,\n      navigator,\n      static: false,\n      basename,\n    }),\n    [router, navigator, basename]\n  );\n\n  let routerFuture = React.useMemo<RouterProps[\"future\"]>(\n    () => ({\n      v7_relativeSplatPath: router.future.v7_relativeSplatPath,\n    }),\n    [router.future.v7_relativeSplatPath]\n  );\n\n  // The fragment and {null} here are important!  We need them to keep React 18's\n  // useId happy when we are server-rendering since we may have a <script> here\n  // containing the hydrated server-side staticContext (from StaticRouterProvider).\n  // useId relies on the component tree structure to generate deterministic id's\n  // so we need to ensure it remains the same on the client even though\n  // we don't need the <script> tag\n  return (\n    <>\n      <DataRouterContext.Provider value={dataRouterContext}>\n        <DataRouterStateContext.Provider value={state}>\n          <FetchersContext.Provider value={fetcherData.current}>\n            <ViewTransitionContext.Provider value={vtContext}>\n              <Router\n                basename={basename}\n                location={state.location}\n                navigationType={state.historyAction}\n                navigator={navigator}\n                future={routerFuture}\n              >\n                {state.initialized || router.future.v7_partialHydration ? (\n                  <MemoizedDataRoutes\n                    routes={router.routes}\n                    future={router.future}\n                    state={state}\n                  />\n                ) : (\n                  fallbackElement\n                )}\n              </Router>\n            </ViewTransitionContext.Provider>\n          </FetchersContext.Provider>\n        </DataRouterStateContext.Provider>\n      </DataRouterContext.Provider>\n      {null}\n    </>\n  );\n}\n\n// Memoize to avoid re-renders when updating `ViewTransitionContext`\nconst MemoizedDataRoutes = React.memo(DataRoutes);\n\nfunction DataRoutes({\n  routes,\n  future,\n  state,\n}: {\n  routes: DataRouteObject[];\n  future: RemixRouter[\"future\"];\n  state: RouterState;\n}): React.ReactElement | null {\n  return useRoutesImpl(routes, undefined, state, future);\n}\n\nexport interface BrowserRouterProps {\n  basename?: string;\n  children?: React.ReactNode;\n  future?: Partial<FutureConfig>;\n  window?: Window;\n}\n\n/**\n * A `<Router>` for use in web browsers. Provides the cleanest URLs.\n */\nexport function BrowserRouter({\n  basename,\n  children,\n  future,\n  window,\n}: BrowserRouterProps) {\n  let historyRef = React.useRef<BrowserHistory>();\n  if (historyRef.current == null) {\n    historyRef.current = createBrowserHistory({ window, v5Compat: true });\n  }\n\n  let history = historyRef.current;\n  let [state, setStateImpl] = React.useState({\n    action: history.action,\n    location: history.location,\n  });\n  let { v7_startTransition } = future || {};\n  let setState = React.useCallback(\n    (newState: { action: NavigationType; location: Location }) => {\n      v7_startTransition && startTransitionImpl\n        ? startTransitionImpl(() => setStateImpl(newState))\n        : setStateImpl(newState);\n    },\n    [setStateImpl, v7_startTransition]\n  );\n\n  React.useLayoutEffect(() => history.listen(setState), [history, setState]);\n\n  return (\n    <Router\n      basename={basename}\n      children={children}\n      location={state.location}\n      navigationType={state.action}\n      navigator={history}\n      future={future}\n    />\n  );\n}\n\nexport interface HashRouterProps {\n  basename?: string;\n  children?: React.ReactNode;\n  future?: Partial<FutureConfig>;\n  window?: Window;\n}\n\n/**\n * A `<Router>` for use in web browsers. Stores the location in the hash\n * portion of the URL so it is not sent to the server.\n */\nexport function HashRouter({\n  basename,\n  children,\n  future,\n  window,\n}: HashRouterProps) {\n  let historyRef = React.useRef<HashHistory>();\n  if (historyRef.current == null) {\n    historyRef.current = createHashHistory({ window, v5Compat: true });\n  }\n\n  let history = historyRef.current;\n  let [state, setStateImpl] = React.useState({\n    action: history.action,\n    location: history.location,\n  });\n  let { v7_startTransition } = future || {};\n  let setState = React.useCallback(\n    (newState: { action: NavigationType; location: Location }) => {\n      v7_startTransition && startTransitionImpl\n        ? startTransitionImpl(() => setStateImpl(newState))\n        : setStateImpl(newState);\n    },\n    [setStateImpl, v7_startTransition]\n  );\n\n  React.useLayoutEffect(() => history.listen(setState), [history, setState]);\n\n  return (\n    <Router\n      basename={basename}\n      children={children}\n      location={state.location}\n      navigationType={state.action}\n      navigator={history}\n      future={future}\n    />\n  );\n}\n\nexport interface HistoryRouterProps {\n  basename?: string;\n  children?: React.ReactNode;\n  future?: FutureConfig;\n  history: History;\n}\n\n/**\n * A `<Router>` that accepts a pre-instantiated history object. It's important\n * to note that using your own history object is highly discouraged and may add\n * two versions of the history library to your bundles unless you use the same\n * version of the history library that React Router uses internally.\n */\nfunction HistoryRouter({\n  basename,\n  children,\n  future,\n  history,\n}: HistoryRouterProps) {\n  let [state, setStateImpl] = React.useState({\n    action: history.action,\n    location: history.location,\n  });\n  let { v7_startTransition } = future || {};\n  let setState = React.useCallback(\n    (newState: { action: NavigationType; location: Location }) => {\n      v7_startTransition && startTransitionImpl\n        ? startTransitionImpl(() => setStateImpl(newState))\n        : setStateImpl(newState);\n    },\n    [setStateImpl, v7_startTransition]\n  );\n\n  React.useLayoutEffect(() => history.listen(setState), [history, setState]);\n\n  return (\n    <Router\n      basename={basename}\n      children={children}\n      location={state.location}\n      navigationType={state.action}\n      navigator={history}\n      future={future}\n    />\n  );\n}\n\nif (__DEV__) {\n  HistoryRouter.displayName = \"unstable_HistoryRouter\";\n}\n\nexport { HistoryRouter as unstable_HistoryRouter };\n\nexport interface LinkProps\n  extends Omit<React.AnchorHTMLAttributes<HTMLAnchorElement>, \"href\"> {\n  reloadDocument?: boolean;\n  replace?: boolean;\n  state?: any;\n  preventScrollReset?: boolean;\n  relative?: RelativeRoutingType;\n  to: To;\n  unstable_viewTransition?: boolean;\n}\n\nconst isBrowser =\n  typeof window !== \"undefined\" &&\n  typeof window.document !== \"undefined\" &&\n  typeof window.document.createElement !== \"undefined\";\n\nconst ABSOLUTE_URL_REGEX = /^(?:[a-z][a-z0-9+.-]*:|\\/\\/)/i;\n\n/**\n * The public API for rendering a history-aware `<a>`.\n */\nexport const Link = React.forwardRef<HTMLAnchorElement, LinkProps>(\n  function LinkWithRef(\n    {\n      onClick,\n      relative,\n      reloadDocument,\n      replace,\n      state,\n      target,\n      to,\n      preventScrollReset,\n      unstable_viewTransition,\n      ...rest\n    },\n    ref\n  ) {\n    let { basename } = React.useContext(NavigationContext);\n\n    // Rendered into <a href> for absolute URLs\n    let absoluteHref;\n    let isExternal = false;\n\n    if (typeof to === \"string\" && ABSOLUTE_URL_REGEX.test(to)) {\n      // Render the absolute href server- and client-side\n      absoluteHref = to;\n\n      // Only check for external origins client-side\n      if (isBrowser) {\n        try {\n          let currentUrl = new URL(window.location.href);\n          let targetUrl = to.startsWith(\"//\")\n            ? new URL(currentUrl.protocol + to)\n            : new URL(to);\n          let path = stripBasename(targetUrl.pathname, basename);\n\n          if (targetUrl.origin === currentUrl.origin && path != null) {\n            // Strip the protocol/origin/basename for same-origin absolute URLs\n            to = path + targetUrl.search + targetUrl.hash;\n          } else {\n            isExternal = true;\n          }\n        } catch (e) {\n          // We can't do external URL detection without a valid URL\n          warning(\n            false,\n            `<Link to=\"${to}\"> contains an invalid URL which will probably break ` +\n              `when clicked - please update to a valid URL path.`\n          );\n        }\n      }\n    }\n\n    // Rendered into <a href> for relative URLs\n    let href = useHref(to, { relative });\n\n    let internalOnClick = useLinkClickHandler(to, {\n      replace,\n      state,\n      target,\n      preventScrollReset,\n      relative,\n      unstable_viewTransition,\n    });\n    function handleClick(\n      event: React.MouseEvent<HTMLAnchorElement, MouseEvent>\n    ) {\n      if (onClick) onClick(event);\n      if (!event.defaultPrevented) {\n        internalOnClick(event);\n      }\n    }\n\n    return (\n      // eslint-disable-next-line jsx-a11y/anchor-has-content\n      <a\n        {...rest}\n        href={absoluteHref || href}\n        onClick={isExternal || reloadDocument ? onClick : handleClick}\n        ref={ref}\n        target={target}\n      />\n    );\n  }\n);\n\nif (__DEV__) {\n  Link.displayName = \"Link\";\n}\n\nexport type NavLinkRenderProps = {\n  isActive: boolean;\n  isPending: boolean;\n  isTransitioning: boolean;\n};\n\nexport interface NavLinkProps\n  extends Omit<LinkProps, \"className\" | \"style\" | \"children\"> {\n  children?: React.ReactNode | ((props: NavLinkRenderProps) => React.ReactNode);\n  caseSensitive?: boolean;\n  className?: string | ((props: NavLinkRenderProps) => string | undefined);\n  end?: boolean;\n  style?:\n    | React.CSSProperties\n    | ((props: NavLinkRenderProps) => React.CSSProperties | undefined);\n}\n\n/**\n * A `<Link>` wrapper that knows if it's \"active\" or not.\n */\nexport const NavLink = React.forwardRef<HTMLAnchorElement, NavLinkProps>(\n  function NavLinkWithRef(\n    {\n      \"aria-current\": ariaCurrentProp = \"page\",\n      caseSensitive = false,\n      className: classNameProp = \"\",\n      end = false,\n      style: styleProp,\n      to,\n      unstable_viewTransition,\n      children,\n      ...rest\n    },\n    ref\n  ) {\n    let path = useResolvedPath(to, { relative: rest.relative });\n    let location = useLocation();\n    let routerState = React.useContext(DataRouterStateContext);\n    let { navigator, basename } = React.useContext(NavigationContext);\n    let isTransitioning =\n      routerState != null &&\n      // Conditional usage is OK here because the usage of a data router is static\n      // eslint-disable-next-line react-hooks/rules-of-hooks\n      useViewTransitionState(path) &&\n      unstable_viewTransition === true;\n\n    let toPathname = navigator.encodeLocation\n      ? navigator.encodeLocation(path).pathname\n      : path.pathname;\n    let locationPathname = location.pathname;\n    let nextLocationPathname =\n      routerState && routerState.navigation && routerState.navigation.location\n        ? routerState.navigation.location.pathname\n        : null;\n\n    if (!caseSensitive) {\n      locationPathname = locationPathname.toLowerCase();\n      nextLocationPathname = nextLocationPathname\n        ? nextLocationPathname.toLowerCase()\n        : null;\n      toPathname = toPathname.toLowerCase();\n    }\n\n    if (nextLocationPathname && basename) {\n      nextLocationPathname =\n        stripBasename(nextLocationPathname, basename) || nextLocationPathname;\n    }\n\n    // If the `to` has a trailing slash, look at that exact spot.  Otherwise,\n    // we're looking for a slash _after_ what's in `to`.  For example:\n    //\n    // <NavLink to=\"/users\"> and <NavLink to=\"/users/\">\n    // both want to look for a / at index 6 to match URL `/users/matt`\n    const endSlashPosition =\n      toPathname !== \"/\" && toPathname.endsWith(\"/\")\n        ? toPathname.length - 1\n        : toPathname.length;\n    let isActive =\n      locationPathname === toPathname ||\n      (!end &&\n        locationPathname.startsWith(toPathname) &&\n        locationPathname.charAt(endSlashPosition) === \"/\");\n\n    let isPending =\n      nextLocationPathname != null &&\n      (nextLocationPathname === toPathname ||\n        (!end &&\n          nextLocationPathname.startsWith(toPathname) &&\n          nextLocationPathname.charAt(toPathname.length) === \"/\"));\n\n    let renderProps = {\n      isActive,\n      isPending,\n      isTransitioning,\n    };\n\n    let ariaCurrent = isActive ? ariaCurrentProp : undefined;\n\n    let className: string | undefined;\n    if (typeof classNameProp === \"function\") {\n      className = classNameProp(renderProps);\n    } else {\n      // If the className prop is not a function, we use a default `active`\n      // class for <NavLink />s that are active. In v5 `active` was the default\n      // value for `activeClassName`, but we are removing that API and can still\n      // use the old default behavior for a cleaner upgrade path and keep the\n      // simple styling rules working as they currently do.\n      className = [\n        classNameProp,\n        isActive ? \"active\" : null,\n        isPending ? \"pending\" : null,\n        isTransitioning ? \"transitioning\" : null,\n      ]\n        .filter(Boolean)\n        .join(\" \");\n    }\n\n    let style =\n      typeof styleProp === \"function\" ? styleProp(renderProps) : styleProp;\n\n    return (\n      <Link\n        {...rest}\n        aria-current={ariaCurrent}\n        className={className}\n        ref={ref}\n        style={style}\n        to={to}\n        unstable_viewTransition={unstable_viewTransition}\n      >\n        {typeof children === \"function\" ? children(renderProps) : children}\n      </Link>\n    );\n  }\n);\n\nif (__DEV__) {\n  NavLink.displayName = \"NavLink\";\n}\n\n/**\n * Form props shared by navigations and fetchers\n */\ninterface SharedFormProps extends React.FormHTMLAttributes<HTMLFormElement> {\n  /**\n   * The HTTP verb to use when the form is submit. Supports \"get\", \"post\",\n   * \"put\", \"delete\", \"patch\".\n   */\n  method?: HTMLFormMethod;\n\n  /**\n   * `<form encType>` - enhancing beyond the normal string type and limiting\n   * to the built-in browser supported values\n   */\n  encType?:\n    | \"application/x-www-form-urlencoded\"\n    | \"multipart/form-data\"\n    | \"text/plain\";\n\n  /**\n   * Normal `<form action>` but supports React Router's relative paths.\n   */\n  action?: string;\n\n  /**\n   * Determines whether the form action is relative to the route hierarchy or\n   * the pathname.  Use this if you want to opt out of navigating the route\n   * hierarchy and want to instead route based on /-delimited URL segments\n   */\n  relative?: RelativeRoutingType;\n\n  /**\n   * Prevent the scroll position from resetting to the top of the viewport on\n   * completion of the navigation when using the <ScrollRestoration> component\n   */\n  preventScrollReset?: boolean;\n\n  /**\n   * A function to call when the form is submitted. If you call\n   * `event.preventDefault()` then this form will not do anything.\n   */\n  onSubmit?: React.FormEventHandler<HTMLFormElement>;\n}\n\n/**\n * Form props available to fetchers\n */\nexport interface FetcherFormProps extends SharedFormProps {}\n\n/**\n * Form props available to navigations\n */\nexport interface FormProps extends SharedFormProps {\n  /**\n   * Indicate a specific fetcherKey to use when using navigate=false\n   */\n  fetcherKey?: string;\n\n  /**\n   * navigate=false will use a fetcher instead of a navigation\n   */\n  navigate?: boolean;\n\n  /**\n   * Forces a full document navigation instead of a fetch.\n   */\n  reloadDocument?: boolean;\n\n  /**\n   * Replaces the current entry in the browser history stack when the form\n   * navigates. Use this if you don't want the user to be able to click \"back\"\n   * to the page with the form on it.\n   */\n  replace?: boolean;\n\n  /**\n   * State object to add to the history stack entry for this navigation\n   */\n  state?: any;\n\n  /**\n   * Enable view transitions on this Form navigation\n   */\n  unstable_viewTransition?: boolean;\n}\n\ntype HTMLSubmitEvent = React.BaseSyntheticEvent<\n  SubmitEvent,\n  Event,\n  HTMLFormElement\n>;\n\ntype HTMLFormSubmitter = HTMLButtonElement | HTMLInputElement;\n\n/**\n * A `@remix-run/router`-aware `<form>`. It behaves like a normal form except\n * that the interaction with the server is with `fetch` instead of new document\n * requests, allowing components to add nicer UX to the page as the form is\n * submitted and returns with data.\n */\nexport const Form = React.forwardRef<HTMLFormElement, FormProps>(\n  (\n    {\n      fetcherKey,\n      navigate,\n      reloadDocument,\n      replace,\n      state,\n      method = defaultMethod,\n      action,\n      onSubmit,\n      relative,\n      preventScrollReset,\n      unstable_viewTransition,\n      ...props\n    },\n    forwardedRef\n  ) => {\n    let submit = useSubmit();\n    let formAction = useFormAction(action, { relative });\n    let formMethod: HTMLFormMethod =\n      method.toLowerCase() === \"get\" ? \"get\" : \"post\";\n\n    let submitHandler: React.FormEventHandler<HTMLFormElement> = (event) => {\n      onSubmit && onSubmit(event);\n      if (event.defaultPrevented) return;\n      event.preventDefault();\n\n      let submitter = (event as unknown as HTMLSubmitEvent).nativeEvent\n        .submitter as HTMLFormSubmitter | null;\n\n      let submitMethod =\n        (submitter?.getAttribute(\"formmethod\") as HTMLFormMethod | undefined) ||\n        method;\n\n      submit(submitter || event.currentTarget, {\n        fetcherKey,\n        method: submitMethod,\n        navigate,\n        replace,\n        state,\n        relative,\n        preventScrollReset,\n        unstable_viewTransition,\n      });\n    };\n\n    return (\n      <form\n        ref={forwardedRef}\n        method={formMethod}\n        action={formAction}\n        onSubmit={reloadDocument ? onSubmit : submitHandler}\n        {...props}\n      />\n    );\n  }\n);\n\nif (__DEV__) {\n  Form.displayName = \"Form\";\n}\n\nexport interface ScrollRestorationProps {\n  getKey?: GetScrollRestorationKeyFunction;\n  storageKey?: string;\n}\n\n/**\n * This component will emulate the browser's scroll restoration on location\n * changes.\n */\nexport function ScrollRestoration({\n  getKey,\n  storageKey,\n}: ScrollRestorationProps) {\n  useScrollRestoration({ getKey, storageKey });\n  return null;\n}\n\nif (__DEV__) {\n  ScrollRestoration.displayName = \"ScrollRestoration\";\n}\n//#endregion\n\n////////////////////////////////////////////////////////////////////////////////\n//#region Hooks\n////////////////////////////////////////////////////////////////////////////////\n\nenum DataRouterHook {\n  UseScrollRestoration = \"useScrollRestoration\",\n  UseSubmit = \"useSubmit\",\n  UseSubmitFetcher = \"useSubmitFetcher\",\n  UseFetcher = \"useFetcher\",\n  useViewTransitionState = \"useViewTransitionState\",\n}\n\nenum DataRouterStateHook {\n  UseFetcher = \"useFetcher\",\n  UseFetchers = \"useFetchers\",\n  UseScrollRestoration = \"useScrollRestoration\",\n}\n\n// Internal hooks\n\nfunction getDataRouterConsoleError(\n  hookName: DataRouterHook | DataRouterStateHook\n) {\n  return `${hookName} must be used within a data router.  See https://reactrouter.com/routers/picking-a-router.`;\n}\n\nfunction useDataRouterContext(hookName: DataRouterHook) {\n  let ctx = React.useContext(DataRouterContext);\n  invariant(ctx, getDataRouterConsoleError(hookName));\n  return ctx;\n}\n\nfunction useDataRouterState(hookName: DataRouterStateHook) {\n  let state = React.useContext(DataRouterStateContext);\n  invariant(state, getDataRouterConsoleError(hookName));\n  return state;\n}\n\n// External hooks\n\n/**\n * Handles the click behavior for router `<Link>` components. This is useful if\n * you need to create custom `<Link>` components with the same click behavior we\n * use in our exported `<Link>`.\n */\nexport function useLinkClickHandler<E extends Element = HTMLAnchorElement>(\n  to: To,\n  {\n    target,\n    replace: replaceProp,\n    state,\n    preventScrollReset,\n    relative,\n    unstable_viewTransition,\n  }: {\n    target?: React.HTMLAttributeAnchorTarget;\n    replace?: boolean;\n    state?: any;\n    preventScrollReset?: boolean;\n    relative?: RelativeRoutingType;\n    unstable_viewTransition?: boolean;\n  } = {}\n): (event: React.MouseEvent<E, MouseEvent>) => void {\n  let navigate = useNavigate();\n  let location = useLocation();\n  let path = useResolvedPath(to, { relative });\n\n  return React.useCallback(\n    (event: React.MouseEvent<E, MouseEvent>) => {\n      if (shouldProcessLinkClick(event, target)) {\n        event.preventDefault();\n\n        // If the URL hasn't changed, a regular <a> will do a replace instead of\n        // a push, so do the same here unless the replace prop is explicitly set\n        let replace =\n          replaceProp !== undefined\n            ? replaceProp\n            : createPath(location) === createPath(path);\n\n        navigate(to, {\n          replace,\n          state,\n          preventScrollReset,\n          relative,\n          unstable_viewTransition,\n        });\n      }\n    },\n    [\n      location,\n      navigate,\n      path,\n      replaceProp,\n      state,\n      target,\n      to,\n      preventScrollReset,\n      relative,\n      unstable_viewTransition,\n    ]\n  );\n}\n\n/**\n * A convenient wrapper for reading and writing search parameters via the\n * URLSearchParams interface.\n */\nexport function useSearchParams(\n  defaultInit?: URLSearchParamsInit\n): [URLSearchParams, SetURLSearchParams] {\n  warning(\n    typeof URLSearchParams !== \"undefined\",\n    `You cannot use the \\`useSearchParams\\` hook in a browser that does not ` +\n      `support the URLSearchParams API. If you need to support Internet ` +\n      `Explorer 11, we recommend you load a polyfill such as ` +\n      `https://github.com/ungap/url-search-params.`\n  );\n\n  let defaultSearchParamsRef = React.useRef(createSearchParams(defaultInit));\n  let hasSetSearchParamsRef = React.useRef(false);\n\n  let location = useLocation();\n  let searchParams = React.useMemo(\n    () =>\n      // Only merge in the defaults if we haven't yet called setSearchParams.\n      // Once we call that we want those to take precedence, otherwise you can't\n      // remove a param with setSearchParams({}) if it has an initial value\n      getSearchParamsForLocation(\n        location.search,\n        hasSetSearchParamsRef.current ? null : defaultSearchParamsRef.current\n      ),\n    [location.search]\n  );\n\n  let navigate = useNavigate();\n  let setSearchParams = React.useCallback<SetURLSearchParams>(\n    (nextInit, navigateOptions) => {\n      const newSearchParams = createSearchParams(\n        typeof nextInit === \"function\" ? nextInit(searchParams) : nextInit\n      );\n      hasSetSearchParamsRef.current = true;\n      navigate(\"?\" + newSearchParams, navigateOptions);\n    },\n    [navigate, searchParams]\n  );\n\n  return [searchParams, setSearchParams];\n}\n\nexport type SetURLSearchParams = (\n  nextInit?:\n    | URLSearchParamsInit\n    | ((prev: URLSearchParams) => URLSearchParamsInit),\n  navigateOpts?: NavigateOptions\n) => void;\n\n/**\n * Submits a HTML `<form>` to the server without reloading the page.\n */\nexport interface SubmitFunction {\n  (\n    /**\n     * Specifies the `<form>` to be submitted to the server, a specific\n     * `<button>` or `<input type=\"submit\">` to use to submit the form, or some\n     * arbitrary data to submit.\n     *\n     * Note: When using a `<button>` its `name` and `value` will also be\n     * included in the form data that is submitted.\n     */\n    target: SubmitTarget,\n\n    /**\n     * Options that override the `<form>`'s own attributes. Required when\n     * submitting arbitrary data without a backing `<form>`.\n     */\n    options?: SubmitOptions\n  ): void;\n}\n\n/**\n * Submits a fetcher `<form>` to the server without reloading the page.\n */\nexport interface FetcherSubmitFunction {\n  (\n    target: SubmitTarget,\n    // Fetchers cannot replace or set state because they are not navigation events\n    options?: FetcherSubmitOptions\n  ): void;\n}\n\nfunction validateClientSideSubmission() {\n  if (typeof document === \"undefined\") {\n    throw new Error(\n      \"You are calling submit during the server render. \" +\n        \"Try calling submit within a `useEffect` or callback instead.\"\n    );\n  }\n}\n\nlet fetcherId = 0;\nlet getUniqueFetcherId = () => `__${String(++fetcherId)}__`;\n\n/**\n * Returns a function that may be used to programmatically submit a form (or\n * some arbitrary data) to the server.\n */\nexport function useSubmit(): SubmitFunction {\n  let { router } = useDataRouterContext(DataRouterHook.UseSubmit);\n  let { basename } = React.useContext(NavigationContext);\n  let currentRouteId = useRouteId();\n\n  return React.useCallback<SubmitFunction>(\n    (target, options = {}) => {\n      validateClientSideSubmission();\n\n      let { action, method, encType, formData, body } = getFormSubmissionInfo(\n        target,\n        basename\n      );\n\n      if (options.navigate === false) {\n        let key = options.fetcherKey || getUniqueFetcherId();\n        router.fetch(key, currentRouteId, options.action || action, {\n          preventScrollReset: options.preventScrollReset,\n          formData,\n          body,\n          formMethod: options.method || (method as HTMLFormMethod),\n          formEncType: options.encType || (encType as FormEncType),\n          unstable_flushSync: options.unstable_flushSync,\n        });\n      } else {\n        router.navigate(options.action || action, {\n          preventScrollReset: options.preventScrollReset,\n          formData,\n          body,\n          formMethod: options.method || (method as HTMLFormMethod),\n          formEncType: options.encType || (encType as FormEncType),\n          replace: options.replace,\n          state: options.state,\n          fromRouteId: currentRouteId,\n          unstable_flushSync: options.unstable_flushSync,\n          unstable_viewTransition: options.unstable_viewTransition,\n        });\n      }\n    },\n    [router, basename, currentRouteId]\n  );\n}\n\n// v7: Eventually we should deprecate this entirely in favor of using the\n// router method directly?\nexport function useFormAction(\n  action?: string,\n  { relative }: { relative?: RelativeRoutingType } = {}\n): string {\n  let { basename } = React.useContext(NavigationContext);\n  let routeContext = React.useContext(RouteContext);\n  invariant(routeContext, \"useFormAction must be used inside a RouteContext\");\n\n  let [match] = routeContext.matches.slice(-1);\n  // Shallow clone path so we can modify it below, otherwise we modify the\n  // object referenced by useMemo inside useResolvedPath\n  let path = { ...useResolvedPath(action ? action : \".\", { relative }) };\n\n  // If no action was specified, browsers will persist current search params\n  // when determining the path, so match that behavior\n  // https://github.com/remix-run/remix/issues/927\n  let location = useLocation();\n  if (action == null) {\n    // Safe to write to this directly here since if action was undefined, we\n    // would have called useResolvedPath(\".\") which will never include a search\n    path.search = location.search;\n\n    // When grabbing search params from the URL, remove any included ?index param\n    // since it might not apply to our contextual route.  We add it back based\n    // on match.route.index below\n    let params = new URLSearchParams(path.search);\n    if (params.has(\"index\") && params.get(\"index\") === \"\") {\n      params.delete(\"index\");\n      path.search = params.toString() ? `?${params.toString()}` : \"\";\n    }\n  }\n\n  if ((!action || action === \".\") && match.route.index) {\n    path.search = path.search\n      ? path.search.replace(/^\\?/, \"?index&\")\n      : \"?index\";\n  }\n\n  // If we're operating within a basename, prepend it to the pathname prior\n  // to creating the form action.  If this is a root navigation, then just use\n  // the raw basename which allows the basename to have full control over the\n  // presence of a trailing slash on root actions\n  if (basename !== \"/\") {\n    path.pathname =\n      path.pathname === \"/\" ? basename : joinPaths([basename, path.pathname]);\n  }\n\n  return createPath(path);\n}\n\nexport type FetcherWithComponents<TData> = Fetcher<TData> & {\n  Form: React.ForwardRefExoticComponent<\n    FetcherFormProps & React.RefAttributes<HTMLFormElement>\n  >;\n  submit: FetcherSubmitFunction;\n  load: (href: string, opts?: { unstable_flushSync?: boolean }) => void;\n};\n\n// TODO: (v7) Change the useFetcher generic default from `any` to `unknown`\n\n/**\n * Interacts with route loaders and actions without causing a navigation. Great\n * for any interaction that stays on the same page.\n */\nexport function useFetcher<TData = any>({\n  key,\n}: { key?: string } = {}): FetcherWithComponents<TData> {\n  let { router } = useDataRouterContext(DataRouterHook.UseFetcher);\n  let state = useDataRouterState(DataRouterStateHook.UseFetcher);\n  let fetcherData = React.useContext(FetchersContext);\n  let route = React.useContext(RouteContext);\n  let routeId = route.matches[route.matches.length - 1]?.route.id;\n\n  invariant(fetcherData, `useFetcher must be used inside a FetchersContext`);\n  invariant(route, `useFetcher must be used inside a RouteContext`);\n  invariant(\n    routeId != null,\n    `useFetcher can only be used on routes that contain a unique \"id\"`\n  );\n\n  // Fetcher key handling\n  // OK to call conditionally to feature detect `useId`\n  // eslint-disable-next-line react-hooks/rules-of-hooks\n  let defaultKey = useIdImpl ? useIdImpl() : \"\";\n  let [fetcherKey, setFetcherKey] = React.useState<string>(key || defaultKey);\n  if (key && key !== fetcherKey) {\n    setFetcherKey(key);\n  } else if (!fetcherKey) {\n    // We will only fall through here when `useId` is not available\n    setFetcherKey(getUniqueFetcherId());\n  }\n\n  // Registration/cleanup\n  React.useEffect(() => {\n    router.getFetcher(fetcherKey);\n    return () => {\n      // Tell the router we've unmounted - if v7_fetcherPersist is enabled this\n      // will not delete immediately but instead queue up a delete after the\n      // fetcher returns to an `idle` state\n      router.deleteFetcher(fetcherKey);\n    };\n  }, [router, fetcherKey]);\n\n  // Fetcher additions\n  let load = React.useCallback(\n    (href: string, opts?: { unstable_flushSync?: boolean }) => {\n      invariant(routeId, \"No routeId available for fetcher.load()\");\n      router.fetch(fetcherKey, routeId, href, opts);\n    },\n    [fetcherKey, routeId, router]\n  );\n\n  let submitImpl = useSubmit();\n  let submit = React.useCallback<FetcherSubmitFunction>(\n    (target, opts) => {\n      submitImpl(target, {\n        ...opts,\n        navigate: false,\n        fetcherKey,\n      });\n    },\n    [fetcherKey, submitImpl]\n  );\n\n  let FetcherForm = React.useMemo(() => {\n    let FetcherForm = React.forwardRef<HTMLFormElement, FetcherFormProps>(\n      (props, ref) => {\n        return (\n          <Form {...props} navigate={false} fetcherKey={fetcherKey} ref={ref} />\n        );\n      }\n    );\n    if (__DEV__) {\n      FetcherForm.displayName = \"fetcher.Form\";\n    }\n    return FetcherForm;\n  }, [fetcherKey]);\n\n  // Exposed FetcherWithComponents\n  let fetcher = state.fetchers.get(fetcherKey) || IDLE_FETCHER;\n  let data = fetcherData.get(fetcherKey);\n  let fetcherWithComponents = React.useMemo(\n    () => ({\n      Form: FetcherForm,\n      submit,\n      load,\n      ...fetcher,\n      data,\n    }),\n    [FetcherForm, submit, load, fetcher, data]\n  );\n\n  return fetcherWithComponents;\n}\n\n/**\n * Provides all fetchers currently on the page. Useful for layouts and parent\n * routes that need to provide pending/optimistic UI regarding the fetch.\n */\nexport function useFetchers(): (Fetcher & { key: string })[] {\n  let state = useDataRouterState(DataRouterStateHook.UseFetchers);\n  return Array.from(state.fetchers.entries()).map(([key, fetcher]) => ({\n    ...fetcher,\n    key,\n  }));\n}\n\nconst SCROLL_RESTORATION_STORAGE_KEY = \"react-router-scroll-positions\";\nlet savedScrollPositions: Record<string, number> = {};\n\n/**\n * When rendered inside a RouterProvider, will restore scroll positions on navigations\n */\nfunction useScrollRestoration({\n  getKey,\n  storageKey,\n}: {\n  getKey?: GetScrollRestorationKeyFunction;\n  storageKey?: string;\n} = {}) {\n  let { router } = useDataRouterContext(DataRouterHook.UseScrollRestoration);\n  let { restoreScrollPosition, preventScrollReset } = useDataRouterState(\n    DataRouterStateHook.UseScrollRestoration\n  );\n  let { basename } = React.useContext(NavigationContext);\n  let location = useLocation();\n  let matches = useMatches();\n  let navigation = useNavigation();\n\n  // Trigger manual scroll restoration while we're active\n  React.useEffect(() => {\n    window.history.scrollRestoration = \"manual\";\n    return () => {\n      window.history.scrollRestoration = \"auto\";\n    };\n  }, []);\n\n  // Save positions on pagehide\n  usePageHide(\n    React.useCallback(() => {\n      if (navigation.state === \"idle\") {\n        let key = (getKey ? getKey(location, matches) : null) || location.key;\n        savedScrollPositions[key] = window.scrollY;\n      }\n      try {\n        sessionStorage.setItem(\n          storageKey || SCROLL_RESTORATION_STORAGE_KEY,\n          JSON.stringify(savedScrollPositions)\n        );\n      } catch (error) {\n        warning(\n          false,\n          `Failed to save scroll positions in sessionStorage, <ScrollRestoration /> will not work properly (${error}).`\n        );\n      }\n      window.history.scrollRestoration = \"auto\";\n    }, [storageKey, getKey, navigation.state, location, matches])\n  );\n\n  // Read in any saved scroll locations\n  if (typeof document !== \"undefined\") {\n    // eslint-disable-next-line react-hooks/rules-of-hooks\n    React.useLayoutEffect(() => {\n      try {\n        let sessionPositions = sessionStorage.getItem(\n          storageKey || SCROLL_RESTORATION_STORAGE_KEY\n        );\n        if (sessionPositions) {\n          savedScrollPositions = JSON.parse(sessionPositions);\n        }\n      } catch (e) {\n        // no-op, use default empty object\n      }\n    }, [storageKey]);\n\n    // Enable scroll restoration in the router\n    // eslint-disable-next-line react-hooks/rules-of-hooks\n    React.useLayoutEffect(() => {\n      let getKeyWithoutBasename: GetScrollRestorationKeyFunction | undefined =\n        getKey && basename !== \"/\"\n          ? (location, matches) =>\n              getKey(\n                // Strip the basename to match useLocation()\n                {\n                  ...location,\n                  pathname:\n                    stripBasename(location.pathname, basename) ||\n                    location.pathname,\n                },\n                matches\n              )\n          : getKey;\n      let disableScrollRestoration = router?.enableScrollRestoration(\n        savedScrollPositions,\n        () => window.scrollY,\n        getKeyWithoutBasename\n      );\n      return () => disableScrollRestoration && disableScrollRestoration();\n    }, [router, basename, getKey]);\n\n    // Restore scrolling when state.restoreScrollPosition changes\n    // eslint-disable-next-line react-hooks/rules-of-hooks\n    React.useLayoutEffect(() => {\n      // Explicit false means don't do anything (used for submissions)\n      if (restoreScrollPosition === false) {\n        return;\n      }\n\n      // been here before, scroll to it\n      if (typeof restoreScrollPosition === \"number\") {\n        window.scrollTo(0, restoreScrollPosition);\n        return;\n      }\n\n      // try to scroll to the hash\n      if (location.hash) {\n        let el = document.getElementById(\n          decodeURIComponent(location.hash.slice(1))\n        );\n        if (el) {\n          el.scrollIntoView();\n          return;\n        }\n      }\n\n      // Don't reset if this navigation opted out\n      if (preventScrollReset === true) {\n        return;\n      }\n\n      // otherwise go to the top on new locations\n      window.scrollTo(0, 0);\n    }, [location, restoreScrollPosition, preventScrollReset]);\n  }\n}\n\nexport { useScrollRestoration as UNSAFE_useScrollRestoration };\n\n/**\n * Setup a callback to be fired on the window's `beforeunload` event. This is\n * useful for saving some data to `window.localStorage` just before the page\n * refreshes.\n *\n * Note: The `callback` argument should be a function created with\n * `React.useCallback()`.\n */\nexport function useBeforeUnload(\n  callback: (event: BeforeUnloadEvent) => any,\n  options?: { capture?: boolean }\n): void {\n  let { capture } = options || {};\n  React.useEffect(() => {\n    let opts = capture != null ? { capture } : undefined;\n    window.addEventListener(\"beforeunload\", callback, opts);\n    return () => {\n      window.removeEventListener(\"beforeunload\", callback, opts);\n    };\n  }, [callback, capture]);\n}\n\n/**\n * Setup a callback to be fired on the window's `pagehide` event. This is\n * useful for saving some data to `window.localStorage` just before the page\n * refreshes.  This event is better supported than beforeunload across browsers.\n *\n * Note: The `callback` argument should be a function created with\n * `React.useCallback()`.\n */\nfunction usePageHide(\n  callback: (event: PageTransitionEvent) => any,\n  options?: { capture?: boolean }\n): void {\n  let { capture } = options || {};\n  React.useEffect(() => {\n    let opts = capture != null ? { capture } : undefined;\n    window.addEventListener(\"pagehide\", callback, opts);\n    return () => {\n      window.removeEventListener(\"pagehide\", callback, opts);\n    };\n  }, [callback, capture]);\n}\n\n/**\n * Wrapper around useBlocker to show a window.confirm prompt to users instead\n * of building a custom UI with useBlocker.\n *\n * Warning: This has *a lot of rough edges* and behaves very differently (and\n * very incorrectly in some cases) across browsers if user click addition\n * back/forward navigations while the confirm is open.  Use at your own risk.\n */\nfunction usePrompt({\n  when,\n  message,\n}: {\n  when: boolean | BlockerFunction;\n  message: string;\n}) {\n  let blocker = useBlocker(when);\n\n  React.useEffect(() => {\n    if (blocker.state === \"blocked\") {\n      let proceed = window.confirm(message);\n      if (proceed) {\n        // This timeout is needed to avoid a weird \"race\" on POP navigations\n        // between the `window.history` revert navigation and the result of\n        // `window.confirm`\n        setTimeout(blocker.proceed, 0);\n      } else {\n        blocker.reset();\n      }\n    }\n  }, [blocker, message]);\n\n  React.useEffect(() => {\n    if (blocker.state === \"blocked\" && !when) {\n      blocker.reset();\n    }\n  }, [blocker, when]);\n}\n\nexport { usePrompt as unstable_usePrompt };\n\n/**\n * Return a boolean indicating if there is an active view transition to the\n * given href.  You can use this value to render CSS classes or viewTransitionName\n * styles onto your elements\n *\n * @param href The destination href\n * @param [opts.relative] Relative routing type (\"route\" | \"path\")\n */\nfunction useViewTransitionState(\n  to: To,\n  opts: { relative?: RelativeRoutingType } = {}\n) {\n  let vtContext = React.useContext(ViewTransitionContext);\n\n  invariant(\n    vtContext != null,\n    \"`unstable_useViewTransitionState` must be used within `react-router-dom`'s `RouterProvider`.  \" +\n      \"Did you accidentally import `RouterProvider` from `react-router`?\"\n  );\n\n  let { basename } = useDataRouterContext(\n    DataRouterHook.useViewTransitionState\n  );\n  let path = useResolvedPath(to, { relative: opts.relative });\n  if (!vtContext.isTransitioning) {\n    return false;\n  }\n\n  let currentPath =\n    stripBasename(vtContext.currentLocation.pathname, basename) ||\n    vtContext.currentLocation.pathname;\n  let nextPath =\n    stripBasename(vtContext.nextLocation.pathname, basename) ||\n    vtContext.nextLocation.pathname;\n\n  // Transition is active if we're going to or coming from the indicated\n  // destination.  This ensures that other PUSH navigations that reverse\n  // an indicated transition apply.  I.e., on the list view you have:\n  //\n  //   <NavLink to=\"/details/1\" unstable_viewTransition>\n  //\n  // If you click the breadcrumb back to the list view:\n  //\n  //   <NavLink to=\"/list\" unstable_viewTransition>\n  //\n  // We should apply the transition because it's indicated as active going\n  // from /list -> /details/1 and therefore should be active on the reverse\n  // (even though this isn't strictly a POP reverse)\n  return (\n    matchPath(path.pathname, nextPath) != null ||\n    matchPath(path.pathname, currentPath) != null\n  );\n}\n\nexport { useViewTransitionState as unstable_useViewTransitionState };\n\n//#endregion\n"],"names":["defaultMethod","defaultEncType","isHtmlElement","object","tagName","isButtonElement","toLowerCase","isFormElement","isInputElement","isModifiedEvent","event","metaKey","altKey","ctrlKey","shiftKey","shouldProcessLinkClick","target","button","createSearchParams","init","URLSearchParams","Array","isArray","Object","keys","reduce","memo","key","value","concat","map","v","getSearchParamsForLocation","locationSearch","defaultSearchParams","searchParams","forEach","_","has","getAll","append","_formDataSupportsSubmitter","isFormDataSubmitterSupported","FormData","document","createElement","e","supportedFormEncTypes","Set","getFormEncType","encType","process","warning","getFormSubmissionInfo","basename","method","action","formData","body","attr","getAttribute","stripBasename","type","form","Error","name","prefix","undefined","REACT_ROUTER_VERSION","window","__reactRouterVersion","createBrowserRouter","routes","opts","createRouter","future","v7_prependBasename","history","createBrowserHistory","hydrationData","parseHydrationData","mapRouteProperties","unstable_dataStrategy","unstable_patchRoutesOnMiss","initialize","createHashRouter","createHashHistory","state","__staticRouterHydrationData","errors","deserializeErrors","entries","serialized","val","__type","ErrorResponseImpl","status","statusText","data","internal","__subType","ErrorConstructor","error","message","stack","ViewTransitionContext","React","createContext","isTransitioning","displayName","FetchersContext","Map","START_TRANSITION","startTransitionImpl","FLUSH_SYNC","flushSyncImpl","ReactDOM","USE_ID","useIdImpl","startTransitionSafe","cb","flushSyncSafe","Deferred","constructor","promise","Promise","resolve","reject","reason","RouterProvider","fallbackElement","router","setStateImpl","useState","pendingState","setPendingState","vtContext","setVtContext","renderDfd","setRenderDfd","transition","setTransition","interruption","setInterruption","fetcherData","useRef","v7_startTransition","optInStartTransition","useCallback","setState","newState","deletedFetchers","unstable_flushSync","flushSync","unstable_viewTransitionOpts","viewTransitionOpts","current","delete","fetchers","fetcher","set","isViewTransitionUnavailable","startViewTransition","skipTransition","currentLocation","nextLocation","t","finished","finally","useLayoutEffect","subscribe","useEffect","renderPromise","location","v7_partialHydration","navigator","useMemo","createHref","encodeLocation","go","n","navigate","push","to","preventScrollReset","replace","dataRouterContext","static","routerFuture","v7_relativeSplatPath","Fragment","DataRouterContext","Provider","DataRouterStateContext","Router","navigationType","historyAction","initialized","MemoizedDataRoutes","DataRoutes","useRoutesImpl","BrowserRouter","children","historyRef","v5Compat","listen","HashRouter","HistoryRouter","isBrowser","ABSOLUTE_URL_REGEX","Link","forwardRef","LinkWithRef","onClick","relative","reloadDocument","unstable_viewTransition","rest","ref","useContext","NavigationContext","absoluteHref","isExternal","test","currentUrl","URL","href","targetUrl","startsWith","protocol","path","pathname","origin","search","hash","useHref","internalOnClick","useLinkClickHandler","handleClick","defaultPrevented","assign","NavLink","NavLinkWithRef","ariaCurrentProp","caseSensitive","className","classNameProp","end","style","styleProp","useResolvedPath","useLocation","routerState","useViewTransitionState","toPathname","locationPathname","nextLocationPathname","navigation","endSlashPosition","endsWith","length","isActive","charAt","isPending","renderProps","ariaCurrent","filter","Boolean","join","Form","fetcherKey","onSubmit","props","forwardedRef","submit","useSubmit","formAction","useFormAction","formMethod","submitHandler","preventDefault","submitter","nativeEvent","submitMethod","currentTarget","ScrollRestoration","getKey","storageKey","useScrollRestoration","DataRouterHook","DataRouterStateHook","getDataRouterConsoleError","hookName","useDataRouterContext","ctx","invariant","useDataRouterState","replaceProp","useNavigate","createPath","useSearchParams","defaultInit","defaultSearchParamsRef","hasSetSearchParamsRef","setSearchParams","nextInit","navigateOptions","newSearchParams","validateClientSideSubmission","fetcherId","getUniqueFetcherId","String","UseSubmit","currentRouteId","useRouteId","options","fetch","formEncType","fromRouteId","routeContext","RouteContext","match","matches","slice","params","get","toString","route","index","joinPaths","useFetcher","UseFetcher","routeId","id","defaultKey","setFetcherKey","getFetcher","deleteFetcher","load","submitImpl","FetcherForm","IDLE_FETCHER","fetcherWithComponents","useFetchers","UseFetchers","from","SCROLL_RESTORATION_STORAGE_KEY","savedScrollPositions","UseScrollRestoration","restoreScrollPosition","useMatches","useNavigation","scrollRestoration","usePageHide","scrollY","sessionStorage","setItem","JSON","stringify","sessionPositions","getItem","parse","getKeyWithoutBasename","disableScrollRestoration","enableScrollRestoration","scrollTo","el","getElementById","decodeURIComponent","scrollIntoView","useBeforeUnload","callback","capture","addEventListener","removeEventListener","usePrompt","when","blocker","useBlocker","proceed","confirm","setTimeout","reset","currentPath","nextPath","matchPath"],"mappings":"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"}
     1{"version":3,"file":"react-router-dom.development.js","sources":["../dom.ts","../index.tsx"],"sourcesContent":["import type {\n  FormEncType,\n  HTMLFormMethod,\n  RelativeRoutingType,\n} from \"@remix-run/router\";\nimport { stripBasename, UNSAFE_warning as warning } from \"@remix-run/router\";\n\nexport const defaultMethod: HTMLFormMethod = \"get\";\nconst defaultEncType: FormEncType = \"application/x-www-form-urlencoded\";\n\nexport function isHtmlElement(object: any): object is HTMLElement {\n  return object != null && typeof object.tagName === \"string\";\n}\n\nexport function isButtonElement(object: any): object is HTMLButtonElement {\n  return isHtmlElement(object) && object.tagName.toLowerCase() === \"button\";\n}\n\nexport function isFormElement(object: any): object is HTMLFormElement {\n  return isHtmlElement(object) && object.tagName.toLowerCase() === \"form\";\n}\n\nexport function isInputElement(object: any): object is HTMLInputElement {\n  return isHtmlElement(object) && object.tagName.toLowerCase() === \"input\";\n}\n\ntype LimitedMouseEvent = Pick<\n  MouseEvent,\n  \"button\" | \"metaKey\" | \"altKey\" | \"ctrlKey\" | \"shiftKey\"\n>;\n\nfunction isModifiedEvent(event: LimitedMouseEvent) {\n  return !!(event.metaKey || event.altKey || event.ctrlKey || event.shiftKey);\n}\n\nexport function shouldProcessLinkClick(\n  event: LimitedMouseEvent,\n  target?: string\n) {\n  return (\n    event.button === 0 && // Ignore everything but left clicks\n    (!target || target === \"_self\") && // Let browser handle \"target=_blank\" etc.\n    !isModifiedEvent(event) // Ignore clicks with modifier keys\n  );\n}\n\nexport type ParamKeyValuePair = [string, string];\n\nexport type URLSearchParamsInit =\n  | string\n  | ParamKeyValuePair[]\n  | Record<string, string | string[]>\n  | URLSearchParams;\n\n/**\n * Creates a URLSearchParams object using the given initializer.\n *\n * This is identical to `new URLSearchParams(init)` except it also\n * supports arrays as values in the object form of the initializer\n * instead of just strings. This is convenient when you need multiple\n * values for a given key, but don't want to use an array initializer.\n *\n * For example, instead of:\n *\n *   let searchParams = new URLSearchParams([\n *     ['sort', 'name'],\n *     ['sort', 'price']\n *   ]);\n *\n * you can do:\n *\n *   let searchParams = createSearchParams({\n *     sort: ['name', 'price']\n *   });\n */\nexport function createSearchParams(\n  init: URLSearchParamsInit = \"\"\n): URLSearchParams {\n  return new URLSearchParams(\n    typeof init === \"string\" ||\n    Array.isArray(init) ||\n    init instanceof URLSearchParams\n      ? init\n      : Object.keys(init).reduce((memo, key) => {\n          let value = init[key];\n          return memo.concat(\n            Array.isArray(value) ? value.map((v) => [key, v]) : [[key, value]]\n          );\n        }, [] as ParamKeyValuePair[])\n  );\n}\n\nexport function getSearchParamsForLocation(\n  locationSearch: string,\n  defaultSearchParams: URLSearchParams | null\n) {\n  let searchParams = createSearchParams(locationSearch);\n\n  if (defaultSearchParams) {\n    // Use `defaultSearchParams.forEach(...)` here instead of iterating of\n    // `defaultSearchParams.keys()` to work-around a bug in Firefox related to\n    // web extensions. Relevant Bugzilla tickets:\n    // https://bugzilla.mozilla.org/show_bug.cgi?id=1414602\n    // https://bugzilla.mozilla.org/show_bug.cgi?id=1023984\n    defaultSearchParams.forEach((_, key) => {\n      if (!searchParams.has(key)) {\n        defaultSearchParams.getAll(key).forEach((value) => {\n          searchParams.append(key, value);\n        });\n      }\n    });\n  }\n\n  return searchParams;\n}\n\n// Thanks https://github.com/sindresorhus/type-fest!\ntype JsonObject = { [Key in string]: JsonValue } & {\n  [Key in string]?: JsonValue | undefined;\n};\ntype JsonArray = JsonValue[] | readonly JsonValue[];\ntype JsonPrimitive = string | number | boolean | null;\ntype JsonValue = JsonPrimitive | JsonObject | JsonArray;\n\nexport type SubmitTarget =\n  | HTMLFormElement\n  | HTMLButtonElement\n  | HTMLInputElement\n  | FormData\n  | URLSearchParams\n  | JsonValue\n  | null;\n\n// One-time check for submitter support\nlet _formDataSupportsSubmitter: boolean | null = null;\n\nfunction isFormDataSubmitterSupported() {\n  if (_formDataSupportsSubmitter === null) {\n    try {\n      new FormData(\n        document.createElement(\"form\"),\n        // @ts-expect-error if FormData supports the submitter parameter, this will throw\n        0\n      );\n      _formDataSupportsSubmitter = false;\n    } catch (e) {\n      _formDataSupportsSubmitter = true;\n    }\n  }\n  return _formDataSupportsSubmitter;\n}\n\n/**\n * Submit options shared by both navigations and fetchers\n */\ninterface SharedSubmitOptions {\n  /**\n   * The HTTP method used to submit the form. Overrides `<form method>`.\n   * Defaults to \"GET\".\n   */\n  method?: HTMLFormMethod;\n\n  /**\n   * The action URL path used to submit the form. Overrides `<form action>`.\n   * Defaults to the path of the current route.\n   */\n  action?: string;\n\n  /**\n   * The encoding used to submit the form. Overrides `<form encType>`.\n   * Defaults to \"application/x-www-form-urlencoded\".\n   */\n  encType?: FormEncType;\n\n  /**\n   * Determines whether the form action is relative to the route hierarchy or\n   * the pathname.  Use this if you want to opt out of navigating the route\n   * hierarchy and want to instead route based on /-delimited URL segments\n   */\n  relative?: RelativeRoutingType;\n\n  /**\n   * In browser-based environments, prevent resetting scroll after this\n   * navigation when using the <ScrollRestoration> component\n   */\n  preventScrollReset?: boolean;\n\n  /**\n   * Enable flushSync for this submission's state updates\n   */\n  flushSync?: boolean;\n}\n\n/**\n * Submit options available to fetchers\n */\nexport interface FetcherSubmitOptions extends SharedSubmitOptions {}\n\n/**\n * Submit options available to navigations\n */\nexport interface SubmitOptions extends FetcherSubmitOptions {\n  /**\n   * Set `true` to replace the current entry in the browser's history stack\n   * instead of creating a new one (i.e. stay on \"the same page\"). Defaults\n   * to `false`.\n   */\n  replace?: boolean;\n\n  /**\n   * State object to add to the history stack entry for this navigation\n   */\n  state?: any;\n\n  /**\n   * Indicate a specific fetcherKey to use when using navigate=false\n   */\n  fetcherKey?: string;\n\n  /**\n   * navigate=false will use a fetcher instead of a navigation\n   */\n  navigate?: boolean;\n\n  /**\n   * Enable view transitions on this submission navigation\n   */\n  viewTransition?: boolean;\n}\n\nconst supportedFormEncTypes: Set<FormEncType> = new Set([\n  \"application/x-www-form-urlencoded\",\n  \"multipart/form-data\",\n  \"text/plain\",\n]);\n\nfunction getFormEncType(encType: string | null) {\n  if (encType != null && !supportedFormEncTypes.has(encType as FormEncType)) {\n    warning(\n      false,\n      `\"${encType}\" is not a valid \\`encType\\` for \\`<Form>\\`/\\`<fetcher.Form>\\` ` +\n        `and will default to \"${defaultEncType}\"`\n    );\n\n    return null;\n  }\n  return encType;\n}\n\nexport function getFormSubmissionInfo(\n  target: SubmitTarget,\n  basename: string\n): {\n  action: string | null;\n  method: string;\n  encType: string;\n  formData: FormData | undefined;\n  body: any;\n} {\n  let method: string;\n  let action: string | null;\n  let encType: string;\n  let formData: FormData | undefined;\n  let body: any;\n\n  if (isFormElement(target)) {\n    // When grabbing the action from the element, it will have had the basename\n    // prefixed to ensure non-JS scenarios work, so strip it since we'll\n    // re-prefix in the router\n    let attr = target.getAttribute(\"action\");\n    action = attr ? stripBasename(attr, basename) : null;\n    method = target.getAttribute(\"method\") || defaultMethod;\n    encType = getFormEncType(target.getAttribute(\"enctype\")) || defaultEncType;\n\n    formData = new FormData(target);\n  } else if (\n    isButtonElement(target) ||\n    (isInputElement(target) &&\n      (target.type === \"submit\" || target.type === \"image\"))\n  ) {\n    let form = target.form;\n\n    if (form == null) {\n      throw new Error(\n        `Cannot submit a <button> or <input type=\"submit\"> without a <form>`\n      );\n    }\n\n    // <button>/<input type=\"submit\"> may override attributes of <form>\n\n    // When grabbing the action from the element, it will have had the basename\n    // prefixed to ensure non-JS scenarios work, so strip it since we'll\n    // re-prefix in the router\n    let attr = target.getAttribute(\"formaction\") || form.getAttribute(\"action\");\n    action = attr ? stripBasename(attr, basename) : null;\n\n    method =\n      target.getAttribute(\"formmethod\") ||\n      form.getAttribute(\"method\") ||\n      defaultMethod;\n    encType =\n      getFormEncType(target.getAttribute(\"formenctype\")) ||\n      getFormEncType(form.getAttribute(\"enctype\")) ||\n      defaultEncType;\n\n    // Build a FormData object populated from a form and submitter\n    formData = new FormData(form, target);\n\n    // If this browser doesn't support the `FormData(el, submitter)` format,\n    // then tack on the submitter value at the end.  This is a lightweight\n    // solution that is not 100% spec compliant.  For complete support in older\n    // browsers, consider using the `formdata-submitter-polyfill` package\n    if (!isFormDataSubmitterSupported()) {\n      let { name, type, value } = target;\n      if (type === \"image\") {\n        let prefix = name ? `${name}.` : \"\";\n        formData.append(`${prefix}x`, \"0\");\n        formData.append(`${prefix}y`, \"0\");\n      } else if (name) {\n        formData.append(name, value);\n      }\n    }\n  } else if (isHtmlElement(target)) {\n    throw new Error(\n      `Cannot submit element that is not <form>, <button>, or ` +\n        `<input type=\"submit|image\">`\n    );\n  } else {\n    method = defaultMethod;\n    action = null;\n    encType = defaultEncType;\n    body = target;\n  }\n\n  // Send body for <Form encType=\"text/plain\" so we encode it into text\n  if (formData && encType === \"text/plain\") {\n    body = formData;\n    formData = undefined;\n  }\n\n  return { action, method: method.toLowerCase(), encType, formData, body };\n}\n","/**\n * NOTE: If you refactor this to split up the modules into separate files,\n * you'll need to update the rollup config for react-router-dom-v5-compat.\n */\nimport * as React from \"react\";\nimport * as ReactDOM from \"react-dom\";\nimport type {\n  DataRouteObject,\n  FutureConfig,\n  Location,\n  NavigateOptions,\n  NavigationType,\n  Navigator,\n  RelativeRoutingType,\n  RouteObject,\n  RouterProps,\n  RouterProviderProps,\n  To,\n  DataStrategyFunction,\n  PatchRoutesOnNavigationFunction,\n} from \"react-router\";\nimport {\n  Router,\n  createPath,\n  useHref,\n  useLocation,\n  useMatches,\n  useNavigate,\n  useNavigation,\n  useResolvedPath,\n  useBlocker,\n  UNSAFE_DataRouterContext as DataRouterContext,\n  UNSAFE_DataRouterStateContext as DataRouterStateContext,\n  UNSAFE_NavigationContext as NavigationContext,\n  UNSAFE_RouteContext as RouteContext,\n  UNSAFE_logV6DeprecationWarnings as logV6DeprecationWarnings,\n  UNSAFE_mapRouteProperties as mapRouteProperties,\n  UNSAFE_useRouteId as useRouteId,\n  UNSAFE_useRoutesImpl as useRoutesImpl,\n} from \"react-router\";\nimport type {\n  BrowserHistory,\n  Fetcher,\n  FormEncType,\n  FormMethod,\n  FutureConfig as RouterFutureConfig,\n  GetScrollRestorationKeyFunction,\n  HashHistory,\n  History,\n  HTMLFormMethod,\n  HydrationState,\n  Router as RemixRouter,\n  V7_FormMethod,\n  RouterState,\n  RouterSubscriber,\n  BlockerFunction,\n} from \"@remix-run/router\";\nimport {\n  createRouter,\n  createBrowserHistory,\n  createHashHistory,\n  joinPaths,\n  stripBasename,\n  UNSAFE_ErrorResponseImpl as ErrorResponseImpl,\n  UNSAFE_invariant as invariant,\n  UNSAFE_warning as warning,\n  matchPath,\n  IDLE_FETCHER,\n} from \"@remix-run/router\";\n\nimport type {\n  SubmitOptions,\n  ParamKeyValuePair,\n  URLSearchParamsInit,\n  SubmitTarget,\n  FetcherSubmitOptions,\n} from \"./dom\";\nimport {\n  createSearchParams,\n  defaultMethod,\n  getFormSubmissionInfo,\n  getSearchParamsForLocation,\n  shouldProcessLinkClick,\n} from \"./dom\";\n\n////////////////////////////////////////////////////////////////////////////////\n//#region Re-exports\n////////////////////////////////////////////////////////////////////////////////\n\nexport type {\n  FormEncType,\n  FormMethod,\n  GetScrollRestorationKeyFunction,\n  ParamKeyValuePair,\n  SubmitOptions,\n  URLSearchParamsInit,\n  V7_FormMethod,\n};\nexport { createSearchParams, ErrorResponseImpl as UNSAFE_ErrorResponseImpl };\n\n// Note: Keep in sync with react-router exports!\nexport type {\n  ActionFunction,\n  ActionFunctionArgs,\n  AwaitProps,\n  Blocker,\n  BlockerFunction,\n  DataRouteMatch,\n  DataRouteObject,\n  DataStrategyFunction,\n  DataStrategyFunctionArgs,\n  DataStrategyMatch,\n  DataStrategyResult,\n  ErrorResponse,\n  Fetcher,\n  FutureConfig,\n  Hash,\n  IndexRouteObject,\n  IndexRouteProps,\n  JsonFunction,\n  LazyRouteFunction,\n  LayoutRouteProps,\n  LoaderFunction,\n  LoaderFunctionArgs,\n  Location,\n  MemoryRouterProps,\n  NavigateFunction,\n  NavigateOptions,\n  NavigateProps,\n  Navigation,\n  Navigator,\n  NonIndexRouteObject,\n  OutletProps,\n  Params,\n  ParamParseKey,\n  PatchRoutesOnNavigationFunction,\n  PatchRoutesOnNavigationFunctionArgs,\n  Path,\n  PathMatch,\n  Pathname,\n  PathParam,\n  PathPattern,\n  PathRouteProps,\n  RedirectFunction,\n  RelativeRoutingType,\n  RouteMatch,\n  RouteObject,\n  RouteProps,\n  RouterProps,\n  RouterProviderProps,\n  RoutesProps,\n  Search,\n  ShouldRevalidateFunction,\n  ShouldRevalidateFunctionArgs,\n  To,\n  UIMatch,\n} from \"react-router\";\nexport {\n  AbortedDeferredError,\n  Await,\n  MemoryRouter,\n  Navigate,\n  NavigationType,\n  Outlet,\n  Route,\n  Router,\n  Routes,\n  createMemoryRouter,\n  createPath,\n  createRoutesFromChildren,\n  createRoutesFromElements,\n  defer,\n  isRouteErrorResponse,\n  generatePath,\n  json,\n  matchPath,\n  matchRoutes,\n  parsePath,\n  redirect,\n  redirectDocument,\n  replace,\n  renderMatches,\n  resolvePath,\n  useActionData,\n  useAsyncError,\n  useAsyncValue,\n  useBlocker,\n  useHref,\n  useInRouterContext,\n  useLoaderData,\n  useLocation,\n  useMatch,\n  useMatches,\n  useNavigate,\n  useNavigation,\n  useNavigationType,\n  useOutlet,\n  useOutletContext,\n  useParams,\n  useResolvedPath,\n  useRevalidator,\n  useRouteError,\n  useRouteLoaderData,\n  useRoutes,\n} from \"react-router\";\n\n///////////////////////////////////////////////////////////////////////////////\n// DANGER! PLEASE READ ME!\n// We provide these exports as an escape hatch in the event that you need any\n// routing data that we don't provide an explicit API for. With that said, we\n// want to cover your use case if we can, so if you feel the need to use these\n// we want to hear from you. Let us know what you're building and we'll do our\n// best to make sure we can support you!\n//\n// We consider these exports an implementation detail and do not guarantee\n// against any breaking changes, regardless of the semver release. Use with\n// extreme caution and only if you understand the consequences. Godspeed.\n///////////////////////////////////////////////////////////////////////////////\n\n/** @internal */\nexport {\n  UNSAFE_DataRouterContext,\n  UNSAFE_DataRouterStateContext,\n  UNSAFE_NavigationContext,\n  UNSAFE_LocationContext,\n  UNSAFE_RouteContext,\n  UNSAFE_useRouteId,\n} from \"react-router\";\n//#endregion\n\ndeclare global {\n  var __staticRouterHydrationData: HydrationState | undefined;\n  var __reactRouterVersion: string;\n  interface Document {\n    startViewTransition(cb: () => Promise<void> | void): ViewTransition;\n  }\n}\n\n// HEY YOU! DON'T TOUCH THIS VARIABLE!\n//\n// It is replaced with the proper version at build time via a babel plugin in\n// the rollup config.\n//\n// Export a global property onto the window for React Router detection by the\n// Core Web Vitals Technology Report.  This way they can configure the `wappalyzer`\n// to detect and properly classify live websites as being built with React Router:\n// https://github.com/HTTPArchive/wappalyzer/blob/main/src/technologies/r.json\nconst REACT_ROUTER_VERSION = \"0\";\ntry {\n  window.__reactRouterVersion = REACT_ROUTER_VERSION;\n} catch (e) {\n  // no-op\n}\n\n////////////////////////////////////////////////////////////////////////////////\n//#region Routers\n////////////////////////////////////////////////////////////////////////////////\n\ninterface DOMRouterOpts {\n  basename?: string;\n  future?: Partial<Omit<RouterFutureConfig, \"v7_prependBasename\">>;\n  hydrationData?: HydrationState;\n  dataStrategy?: DataStrategyFunction;\n  patchRoutesOnNavigation?: PatchRoutesOnNavigationFunction;\n  window?: Window;\n}\n\nexport function createBrowserRouter(\n  routes: RouteObject[],\n  opts?: DOMRouterOpts\n): RemixRouter {\n  return createRouter({\n    basename: opts?.basename,\n    future: {\n      ...opts?.future,\n      v7_prependBasename: true,\n    },\n    history: createBrowserHistory({ window: opts?.window }),\n    hydrationData: opts?.hydrationData || parseHydrationData(),\n    routes,\n    mapRouteProperties,\n    dataStrategy: opts?.dataStrategy,\n    patchRoutesOnNavigation: opts?.patchRoutesOnNavigation,\n    window: opts?.window,\n  }).initialize();\n}\n\nexport function createHashRouter(\n  routes: RouteObject[],\n  opts?: DOMRouterOpts\n): RemixRouter {\n  return createRouter({\n    basename: opts?.basename,\n    future: {\n      ...opts?.future,\n      v7_prependBasename: true,\n    },\n    history: createHashHistory({ window: opts?.window }),\n    hydrationData: opts?.hydrationData || parseHydrationData(),\n    routes,\n    mapRouteProperties,\n    dataStrategy: opts?.dataStrategy,\n    patchRoutesOnNavigation: opts?.patchRoutesOnNavigation,\n    window: opts?.window,\n  }).initialize();\n}\n\nfunction parseHydrationData(): HydrationState | undefined {\n  let state = window?.__staticRouterHydrationData;\n  if (state && state.errors) {\n    state = {\n      ...state,\n      errors: deserializeErrors(state.errors),\n    };\n  }\n  return state;\n}\n\nfunction deserializeErrors(\n  errors: RemixRouter[\"state\"][\"errors\"]\n): RemixRouter[\"state\"][\"errors\"] {\n  if (!errors) return null;\n  let entries = Object.entries(errors);\n  let serialized: RemixRouter[\"state\"][\"errors\"] = {};\n  for (let [key, val] of entries) {\n    // Hey you!  If you change this, please change the corresponding logic in\n    // serializeErrors in react-router-dom/server.tsx :)\n    if (val && val.__type === \"RouteErrorResponse\") {\n      serialized[key] = new ErrorResponseImpl(\n        val.status,\n        val.statusText,\n        val.data,\n        val.internal === true\n      );\n    } else if (val && val.__type === \"Error\") {\n      // Attempt to reconstruct the right type of Error (i.e., ReferenceError)\n      if (val.__subType) {\n        let ErrorConstructor = window[val.__subType];\n        if (typeof ErrorConstructor === \"function\") {\n          try {\n            // @ts-expect-error\n            let error = new ErrorConstructor(val.message);\n            // Wipe away the client-side stack trace.  Nothing to fill it in with\n            // because we don't serialize SSR stack traces for security reasons\n            error.stack = \"\";\n            serialized[key] = error;\n          } catch (e) {\n            // no-op - fall through and create a normal Error\n          }\n        }\n      }\n\n      if (serialized[key] == null) {\n        let error = new Error(val.message);\n        // Wipe away the client-side stack trace.  Nothing to fill it in with\n        // because we don't serialize SSR stack traces for security reasons\n        error.stack = \"\";\n        serialized[key] = error;\n      }\n    } else {\n      serialized[key] = val;\n    }\n  }\n  return serialized;\n}\n\n//#endregion\n\n////////////////////////////////////////////////////////////////////////////////\n//#region Contexts\n////////////////////////////////////////////////////////////////////////////////\n\ntype ViewTransitionContextObject =\n  | {\n      isTransitioning: false;\n    }\n  | {\n      isTransitioning: true;\n      flushSync: boolean;\n      currentLocation: Location;\n      nextLocation: Location;\n    };\n\nconst ViewTransitionContext = React.createContext<ViewTransitionContextObject>({\n  isTransitioning: false,\n});\nif (__DEV__) {\n  ViewTransitionContext.displayName = \"ViewTransition\";\n}\n\nexport { ViewTransitionContext as UNSAFE_ViewTransitionContext };\n\n// TODO: (v7) Change the useFetcher data from `any` to `unknown`\ntype FetchersContextObject = Map<string, any>;\n\nconst FetchersContext = React.createContext<FetchersContextObject>(new Map());\nif (__DEV__) {\n  FetchersContext.displayName = \"Fetchers\";\n}\n\nexport { FetchersContext as UNSAFE_FetchersContext };\n\n//#endregion\n\n////////////////////////////////////////////////////////////////////////////////\n//#region Components\n////////////////////////////////////////////////////////////////////////////////\n\n/**\n  Webpack + React 17 fails to compile on any of the following because webpack\n  complains that `startTransition` doesn't exist in `React`:\n  * import { startTransition } from \"react\"\n  * import * as React from from \"react\";\n    \"startTransition\" in React ? React.startTransition(() => setState()) : setState()\n  * import * as React from from \"react\";\n    \"startTransition\" in React ? React[\"startTransition\"](() => setState()) : setState()\n\n  Moving it to a constant such as the following solves the Webpack/React 17 issue:\n  * import * as React from from \"react\";\n    const START_TRANSITION = \"startTransition\";\n    START_TRANSITION in React ? React[START_TRANSITION](() => setState()) : setState()\n\n  However, that introduces webpack/terser minification issues in production builds\n  in React 18 where minification/obfuscation ends up removing the call of\n  React.startTransition entirely from the first half of the ternary.  Grabbing\n  this exported reference once up front resolves that issue.\n\n  See https://github.com/remix-run/react-router/issues/10579\n*/\nconst START_TRANSITION = \"startTransition\";\nconst startTransitionImpl = React[START_TRANSITION];\nconst FLUSH_SYNC = \"flushSync\";\nconst flushSyncImpl = ReactDOM[FLUSH_SYNC];\nconst USE_ID = \"useId\";\nconst useIdImpl = React[USE_ID];\n\nfunction startTransitionSafe(cb: () => void) {\n  if (startTransitionImpl) {\n    startTransitionImpl(cb);\n  } else {\n    cb();\n  }\n}\n\nfunction flushSyncSafe(cb: () => void) {\n  if (flushSyncImpl) {\n    flushSyncImpl(cb);\n  } else {\n    cb();\n  }\n}\n\ninterface ViewTransition {\n  finished: Promise<void>;\n  ready: Promise<void>;\n  updateCallbackDone: Promise<void>;\n  skipTransition(): void;\n}\n\nclass Deferred<T> {\n  status: \"pending\" | \"resolved\" | \"rejected\" = \"pending\";\n  promise: Promise<T>;\n  // @ts-expect-error - no initializer\n  resolve: (value: T) => void;\n  // @ts-expect-error - no initializer\n  reject: (reason?: unknown) => void;\n  constructor() {\n    this.promise = new Promise((resolve, reject) => {\n      this.resolve = (value) => {\n        if (this.status === \"pending\") {\n          this.status = \"resolved\";\n          resolve(value);\n        }\n      };\n      this.reject = (reason) => {\n        if (this.status === \"pending\") {\n          this.status = \"rejected\";\n          reject(reason);\n        }\n      };\n    });\n  }\n}\n\n/**\n * Given a Remix Router instance, render the appropriate UI\n */\nexport function RouterProvider({\n  fallbackElement,\n  router,\n  future,\n}: RouterProviderProps): React.ReactElement {\n  let [state, setStateImpl] = React.useState(router.state);\n  let [pendingState, setPendingState] = React.useState<RouterState>();\n  let [vtContext, setVtContext] = React.useState<ViewTransitionContextObject>({\n    isTransitioning: false,\n  });\n  let [renderDfd, setRenderDfd] = React.useState<Deferred<void>>();\n  let [transition, setTransition] = React.useState<ViewTransition>();\n  let [interruption, setInterruption] = React.useState<{\n    state: RouterState;\n    currentLocation: Location;\n    nextLocation: Location;\n  }>();\n  let fetcherData = React.useRef<Map<string, any>>(new Map());\n  let { v7_startTransition } = future || {};\n\n  let optInStartTransition = React.useCallback(\n    (cb: () => void) => {\n      if (v7_startTransition) {\n        startTransitionSafe(cb);\n      } else {\n        cb();\n      }\n    },\n    [v7_startTransition]\n  );\n\n  let setState = React.useCallback<RouterSubscriber>(\n    (\n      newState: RouterState,\n      {\n        deletedFetchers,\n        flushSync: flushSync,\n        viewTransitionOpts: viewTransitionOpts,\n      }\n    ) => {\n      deletedFetchers.forEach((key) => fetcherData.current.delete(key));\n      newState.fetchers.forEach((fetcher, key) => {\n        if (fetcher.data !== undefined) {\n          fetcherData.current.set(key, fetcher.data);\n        }\n      });\n\n      let isViewTransitionUnavailable =\n        router.window == null ||\n        router.window.document == null ||\n        typeof router.window.document.startViewTransition !== \"function\";\n\n      // If this isn't a view transition or it's not available in this browser,\n      // just update and be done with it\n      if (!viewTransitionOpts || isViewTransitionUnavailable) {\n        if (flushSync) {\n          flushSyncSafe(() => setStateImpl(newState));\n        } else {\n          optInStartTransition(() => setStateImpl(newState));\n        }\n        return;\n      }\n\n      // flushSync + startViewTransition\n      if (flushSync) {\n        // Flush through the context to mark DOM elements as transition=ing\n        flushSyncSafe(() => {\n          // Cancel any pending transitions\n          if (transition) {\n            renderDfd && renderDfd.resolve();\n            transition.skipTransition();\n          }\n          setVtContext({\n            isTransitioning: true,\n            flushSync: true,\n            currentLocation: viewTransitionOpts.currentLocation,\n            nextLocation: viewTransitionOpts.nextLocation,\n          });\n        });\n\n        // Update the DOM\n        let t = router.window!.document.startViewTransition(() => {\n          flushSyncSafe(() => setStateImpl(newState));\n        });\n\n        // Clean up after the animation completes\n        t.finished.finally(() => {\n          flushSyncSafe(() => {\n            setRenderDfd(undefined);\n            setTransition(undefined);\n            setPendingState(undefined);\n            setVtContext({ isTransitioning: false });\n          });\n        });\n\n        flushSyncSafe(() => setTransition(t));\n        return;\n      }\n\n      // startTransition + startViewTransition\n      if (transition) {\n        // Interrupting an in-progress transition, cancel and let everything flush\n        // out, and then kick off a new transition from the interruption state\n        renderDfd && renderDfd.resolve();\n        transition.skipTransition();\n        setInterruption({\n          state: newState,\n          currentLocation: viewTransitionOpts.currentLocation,\n          nextLocation: viewTransitionOpts.nextLocation,\n        });\n      } else {\n        // Completed navigation update with opted-in view transitions, let 'er rip\n        setPendingState(newState);\n        setVtContext({\n          isTransitioning: true,\n          flushSync: false,\n          currentLocation: viewTransitionOpts.currentLocation,\n          nextLocation: viewTransitionOpts.nextLocation,\n        });\n      }\n    },\n    [router.window, transition, renderDfd, fetcherData, optInStartTransition]\n  );\n\n  // Need to use a layout effect here so we are subscribed early enough to\n  // pick up on any render-driven redirects/navigations (useEffect/<Navigate>)\n  React.useLayoutEffect(() => router.subscribe(setState), [router, setState]);\n\n  // When we start a view transition, create a Deferred we can use for the\n  // eventual \"completed\" render\n  React.useEffect(() => {\n    if (vtContext.isTransitioning && !vtContext.flushSync) {\n      setRenderDfd(new Deferred<void>());\n    }\n  }, [vtContext]);\n\n  // Once the deferred is created, kick off startViewTransition() to update the\n  // DOM and then wait on the Deferred to resolve (indicating the DOM update has\n  // happened)\n  React.useEffect(() => {\n    if (renderDfd && pendingState && router.window) {\n      let newState = pendingState;\n      let renderPromise = renderDfd.promise;\n      let transition = router.window.document.startViewTransition(async () => {\n        optInStartTransition(() => setStateImpl(newState));\n        await renderPromise;\n      });\n      transition.finished.finally(() => {\n        setRenderDfd(undefined);\n        setTransition(undefined);\n        setPendingState(undefined);\n        setVtContext({ isTransitioning: false });\n      });\n      setTransition(transition);\n    }\n  }, [optInStartTransition, pendingState, renderDfd, router.window]);\n\n  // When the new location finally renders and is committed to the DOM, this\n  // effect will run to resolve the transition\n  React.useEffect(() => {\n    if (\n      renderDfd &&\n      pendingState &&\n      state.location.key === pendingState.location.key\n    ) {\n      renderDfd.resolve();\n    }\n  }, [renderDfd, transition, state.location, pendingState]);\n\n  // If we get interrupted with a new navigation during a transition, we skip\n  // the active transition, let it cleanup, then kick it off again here\n  React.useEffect(() => {\n    if (!vtContext.isTransitioning && interruption) {\n      setPendingState(interruption.state);\n      setVtContext({\n        isTransitioning: true,\n        flushSync: false,\n        currentLocation: interruption.currentLocation,\n        nextLocation: interruption.nextLocation,\n      });\n      setInterruption(undefined);\n    }\n  }, [vtContext.isTransitioning, interruption]);\n\n  React.useEffect(() => {\n    warning(\n      fallbackElement == null || !router.future.v7_partialHydration,\n      \"`<RouterProvider fallbackElement>` is deprecated when using \" +\n        \"`v7_partialHydration`, use a `HydrateFallback` component instead\"\n    );\n    // Only log this once on initial mount\n    // eslint-disable-next-line react-hooks/exhaustive-deps\n  }, []);\n\n  let navigator = React.useMemo((): Navigator => {\n    return {\n      createHref: router.createHref,\n      encodeLocation: router.encodeLocation,\n      go: (n) => router.navigate(n),\n      push: (to, state, opts) =>\n        router.navigate(to, {\n          state,\n          preventScrollReset: opts?.preventScrollReset,\n        }),\n      replace: (to, state, opts) =>\n        router.navigate(to, {\n          replace: true,\n          state,\n          preventScrollReset: opts?.preventScrollReset,\n        }),\n    };\n  }, [router]);\n\n  let basename = router.basename || \"/\";\n\n  let dataRouterContext = React.useMemo(\n    () => ({\n      router,\n      navigator,\n      static: false,\n      basename,\n    }),\n    [router, navigator, basename]\n  );\n\n  let routerFuture = React.useMemo<RouterProps[\"future\"]>(\n    () => ({\n      v7_relativeSplatPath: router.future.v7_relativeSplatPath,\n    }),\n    [router.future.v7_relativeSplatPath]\n  );\n\n  React.useEffect(\n    () => logV6DeprecationWarnings(future, router.future),\n    [future, router.future]\n  );\n\n  // The fragment and {null} here are important!  We need them to keep React 18's\n  // useId happy when we are server-rendering since we may have a <script> here\n  // containing the hydrated server-side staticContext (from StaticRouterProvider).\n  // useId relies on the component tree structure to generate deterministic id's\n  // so we need to ensure it remains the same on the client even though\n  // we don't need the <script> tag\n  return (\n    <>\n      <DataRouterContext.Provider value={dataRouterContext}>\n        <DataRouterStateContext.Provider value={state}>\n          <FetchersContext.Provider value={fetcherData.current}>\n            <ViewTransitionContext.Provider value={vtContext}>\n              <Router\n                basename={basename}\n                location={state.location}\n                navigationType={state.historyAction}\n                navigator={navigator}\n                future={routerFuture}\n              >\n                {state.initialized || router.future.v7_partialHydration ? (\n                  <MemoizedDataRoutes\n                    routes={router.routes}\n                    future={router.future}\n                    state={state}\n                  />\n                ) : (\n                  fallbackElement\n                )}\n              </Router>\n            </ViewTransitionContext.Provider>\n          </FetchersContext.Provider>\n        </DataRouterStateContext.Provider>\n      </DataRouterContext.Provider>\n      {null}\n    </>\n  );\n}\n\n// Memoize to avoid re-renders when updating `ViewTransitionContext`\nconst MemoizedDataRoutes = React.memo(DataRoutes);\n\nfunction DataRoutes({\n  routes,\n  future,\n  state,\n}: {\n  routes: DataRouteObject[];\n  future: RemixRouter[\"future\"];\n  state: RouterState;\n}): React.ReactElement | null {\n  return useRoutesImpl(routes, undefined, state, future);\n}\n\nexport interface BrowserRouterProps {\n  basename?: string;\n  children?: React.ReactNode;\n  future?: Partial<FutureConfig>;\n  window?: Window;\n}\n\n/**\n * A `<Router>` for use in web browsers. Provides the cleanest URLs.\n */\nexport function BrowserRouter({\n  basename,\n  children,\n  future,\n  window,\n}: BrowserRouterProps) {\n  let historyRef = React.useRef<BrowserHistory>();\n  if (historyRef.current == null) {\n    historyRef.current = createBrowserHistory({ window, v5Compat: true });\n  }\n\n  let history = historyRef.current;\n  let [state, setStateImpl] = React.useState({\n    action: history.action,\n    location: history.location,\n  });\n  let { v7_startTransition } = future || {};\n  let setState = React.useCallback(\n    (newState: { action: NavigationType; location: Location }) => {\n      v7_startTransition && startTransitionImpl\n        ? startTransitionImpl(() => setStateImpl(newState))\n        : setStateImpl(newState);\n    },\n    [setStateImpl, v7_startTransition]\n  );\n\n  React.useLayoutEffect(() => history.listen(setState), [history, setState]);\n\n  React.useEffect(() => logV6DeprecationWarnings(future), [future]);\n\n  return (\n    <Router\n      basename={basename}\n      children={children}\n      location={state.location}\n      navigationType={state.action}\n      navigator={history}\n      future={future}\n    />\n  );\n}\n\nexport interface HashRouterProps {\n  basename?: string;\n  children?: React.ReactNode;\n  future?: Partial<FutureConfig>;\n  window?: Window;\n}\n\n/**\n * A `<Router>` for use in web browsers. Stores the location in the hash\n * portion of the URL so it is not sent to the server.\n */\nexport function HashRouter({\n  basename,\n  children,\n  future,\n  window,\n}: HashRouterProps) {\n  let historyRef = React.useRef<HashHistory>();\n  if (historyRef.current == null) {\n    historyRef.current = createHashHistory({ window, v5Compat: true });\n  }\n\n  let history = historyRef.current;\n  let [state, setStateImpl] = React.useState({\n    action: history.action,\n    location: history.location,\n  });\n  let { v7_startTransition } = future || {};\n  let setState = React.useCallback(\n    (newState: { action: NavigationType; location: Location }) => {\n      v7_startTransition && startTransitionImpl\n        ? startTransitionImpl(() => setStateImpl(newState))\n        : setStateImpl(newState);\n    },\n    [setStateImpl, v7_startTransition]\n  );\n\n  React.useLayoutEffect(() => history.listen(setState), [history, setState]);\n\n  React.useEffect(() => logV6DeprecationWarnings(future), [future]);\n\n  return (\n    <Router\n      basename={basename}\n      children={children}\n      location={state.location}\n      navigationType={state.action}\n      navigator={history}\n      future={future}\n    />\n  );\n}\n\nexport interface HistoryRouterProps {\n  basename?: string;\n  children?: React.ReactNode;\n  future?: FutureConfig;\n  history: History;\n}\n\n/**\n * A `<Router>` that accepts a pre-instantiated history object. It's important\n * to note that using your own history object is highly discouraged and may add\n * two versions of the history library to your bundles unless you use the same\n * version of the history library that React Router uses internally.\n */\nfunction HistoryRouter({\n  basename,\n  children,\n  future,\n  history,\n}: HistoryRouterProps) {\n  let [state, setStateImpl] = React.useState({\n    action: history.action,\n    location: history.location,\n  });\n  let { v7_startTransition } = future || {};\n  let setState = React.useCallback(\n    (newState: { action: NavigationType; location: Location }) => {\n      v7_startTransition && startTransitionImpl\n        ? startTransitionImpl(() => setStateImpl(newState))\n        : setStateImpl(newState);\n    },\n    [setStateImpl, v7_startTransition]\n  );\n\n  React.useLayoutEffect(() => history.listen(setState), [history, setState]);\n\n  React.useEffect(() => logV6DeprecationWarnings(future), [future]);\n\n  return (\n    <Router\n      basename={basename}\n      children={children}\n      location={state.location}\n      navigationType={state.action}\n      navigator={history}\n      future={future}\n    />\n  );\n}\n\nif (__DEV__) {\n  HistoryRouter.displayName = \"unstable_HistoryRouter\";\n}\n\nexport { HistoryRouter as unstable_HistoryRouter };\n\nexport interface LinkProps\n  extends Omit<React.AnchorHTMLAttributes<HTMLAnchorElement>, \"href\"> {\n  reloadDocument?: boolean;\n  replace?: boolean;\n  state?: any;\n  preventScrollReset?: boolean;\n  relative?: RelativeRoutingType;\n  to: To;\n  viewTransition?: boolean;\n}\n\nconst isBrowser =\n  typeof window !== \"undefined\" &&\n  typeof window.document !== \"undefined\" &&\n  typeof window.document.createElement !== \"undefined\";\n\nconst ABSOLUTE_URL_REGEX = /^(?:[a-z][a-z0-9+.-]*:|\\/\\/)/i;\n\n/**\n * The public API for rendering a history-aware `<a>`.\n */\nexport const Link = React.forwardRef<HTMLAnchorElement, LinkProps>(\n  function LinkWithRef(\n    {\n      onClick,\n      relative,\n      reloadDocument,\n      replace,\n      state,\n      target,\n      to,\n      preventScrollReset,\n      viewTransition,\n      ...rest\n    },\n    ref\n  ) {\n    let { basename } = React.useContext(NavigationContext);\n\n    // Rendered into <a href> for absolute URLs\n    let absoluteHref;\n    let isExternal = false;\n\n    if (typeof to === \"string\" && ABSOLUTE_URL_REGEX.test(to)) {\n      // Render the absolute href server- and client-side\n      absoluteHref = to;\n\n      // Only check for external origins client-side\n      if (isBrowser) {\n        try {\n          let currentUrl = new URL(window.location.href);\n          let targetUrl = to.startsWith(\"//\")\n            ? new URL(currentUrl.protocol + to)\n            : new URL(to);\n          let path = stripBasename(targetUrl.pathname, basename);\n\n          if (targetUrl.origin === currentUrl.origin && path != null) {\n            // Strip the protocol/origin/basename for same-origin absolute URLs\n            to = path + targetUrl.search + targetUrl.hash;\n          } else {\n            isExternal = true;\n          }\n        } catch (e) {\n          // We can't do external URL detection without a valid URL\n          warning(\n            false,\n            `<Link to=\"${to}\"> contains an invalid URL which will probably break ` +\n              `when clicked - please update to a valid URL path.`\n          );\n        }\n      }\n    }\n\n    // Rendered into <a href> for relative URLs\n    let href = useHref(to, { relative });\n\n    let internalOnClick = useLinkClickHandler(to, {\n      replace,\n      state,\n      target,\n      preventScrollReset,\n      relative,\n      viewTransition,\n    });\n    function handleClick(\n      event: React.MouseEvent<HTMLAnchorElement, MouseEvent>\n    ) {\n      if (onClick) onClick(event);\n      if (!event.defaultPrevented) {\n        internalOnClick(event);\n      }\n    }\n\n    return (\n      // eslint-disable-next-line jsx-a11y/anchor-has-content\n      <a\n        {...rest}\n        href={absoluteHref || href}\n        onClick={isExternal || reloadDocument ? onClick : handleClick}\n        ref={ref}\n        target={target}\n      />\n    );\n  }\n);\n\nif (__DEV__) {\n  Link.displayName = \"Link\";\n}\n\nexport type NavLinkRenderProps = {\n  isActive: boolean;\n  isPending: boolean;\n  isTransitioning: boolean;\n};\n\nexport interface NavLinkProps\n  extends Omit<LinkProps, \"className\" | \"style\" | \"children\"> {\n  children?: React.ReactNode | ((props: NavLinkRenderProps) => React.ReactNode);\n  caseSensitive?: boolean;\n  className?: string | ((props: NavLinkRenderProps) => string | undefined);\n  end?: boolean;\n  style?:\n    | React.CSSProperties\n    | ((props: NavLinkRenderProps) => React.CSSProperties | undefined);\n}\n\n/**\n * A `<Link>` wrapper that knows if it's \"active\" or not.\n */\nexport const NavLink = React.forwardRef<HTMLAnchorElement, NavLinkProps>(\n  function NavLinkWithRef(\n    {\n      \"aria-current\": ariaCurrentProp = \"page\",\n      caseSensitive = false,\n      className: classNameProp = \"\",\n      end = false,\n      style: styleProp,\n      to,\n      viewTransition,\n      children,\n      ...rest\n    },\n    ref\n  ) {\n    let path = useResolvedPath(to, { relative: rest.relative });\n    let location = useLocation();\n    let routerState = React.useContext(DataRouterStateContext);\n    let { navigator, basename } = React.useContext(NavigationContext);\n    let isTransitioning =\n      routerState != null &&\n      // Conditional usage is OK here because the usage of a data router is static\n      // eslint-disable-next-line react-hooks/rules-of-hooks\n      useViewTransitionState(path) &&\n      viewTransition === true;\n\n    let toPathname = navigator.encodeLocation\n      ? navigator.encodeLocation(path).pathname\n      : path.pathname;\n    let locationPathname = location.pathname;\n    let nextLocationPathname =\n      routerState && routerState.navigation && routerState.navigation.location\n        ? routerState.navigation.location.pathname\n        : null;\n\n    if (!caseSensitive) {\n      locationPathname = locationPathname.toLowerCase();\n      nextLocationPathname = nextLocationPathname\n        ? nextLocationPathname.toLowerCase()\n        : null;\n      toPathname = toPathname.toLowerCase();\n    }\n\n    if (nextLocationPathname && basename) {\n      nextLocationPathname =\n        stripBasename(nextLocationPathname, basename) || nextLocationPathname;\n    }\n\n    // If the `to` has a trailing slash, look at that exact spot.  Otherwise,\n    // we're looking for a slash _after_ what's in `to`.  For example:\n    //\n    // <NavLink to=\"/users\"> and <NavLink to=\"/users/\">\n    // both want to look for a / at index 6 to match URL `/users/matt`\n    const endSlashPosition =\n      toPathname !== \"/\" && toPathname.endsWith(\"/\")\n        ? toPathname.length - 1\n        : toPathname.length;\n    let isActive =\n      locationPathname === toPathname ||\n      (!end &&\n        locationPathname.startsWith(toPathname) &&\n        locationPathname.charAt(endSlashPosition) === \"/\");\n\n    let isPending =\n      nextLocationPathname != null &&\n      (nextLocationPathname === toPathname ||\n        (!end &&\n          nextLocationPathname.startsWith(toPathname) &&\n          nextLocationPathname.charAt(toPathname.length) === \"/\"));\n\n    let renderProps = {\n      isActive,\n      isPending,\n      isTransitioning,\n    };\n\n    let ariaCurrent = isActive ? ariaCurrentProp : undefined;\n\n    let className: string | undefined;\n    if (typeof classNameProp === \"function\") {\n      className = classNameProp(renderProps);\n    } else {\n      // If the className prop is not a function, we use a default `active`\n      // class for <NavLink />s that are active. In v5 `active` was the default\n      // value for `activeClassName`, but we are removing that API and can still\n      // use the old default behavior for a cleaner upgrade path and keep the\n      // simple styling rules working as they currently do.\n      className = [\n        classNameProp,\n        isActive ? \"active\" : null,\n        isPending ? \"pending\" : null,\n        isTransitioning ? \"transitioning\" : null,\n      ]\n        .filter(Boolean)\n        .join(\" \");\n    }\n\n    let style =\n      typeof styleProp === \"function\" ? styleProp(renderProps) : styleProp;\n\n    return (\n      <Link\n        {...rest}\n        aria-current={ariaCurrent}\n        className={className}\n        ref={ref}\n        style={style}\n        to={to}\n        viewTransition={viewTransition}\n      >\n        {typeof children === \"function\" ? children(renderProps) : children}\n      </Link>\n    );\n  }\n);\n\nif (__DEV__) {\n  NavLink.displayName = \"NavLink\";\n}\n\n/**\n * Form props shared by navigations and fetchers\n */\ninterface SharedFormProps extends React.FormHTMLAttributes<HTMLFormElement> {\n  /**\n   * The HTTP verb to use when the form is submit. Supports \"get\", \"post\",\n   * \"put\", \"delete\", \"patch\".\n   */\n  method?: HTMLFormMethod;\n\n  /**\n   * `<form encType>` - enhancing beyond the normal string type and limiting\n   * to the built-in browser supported values\n   */\n  encType?:\n    | \"application/x-www-form-urlencoded\"\n    | \"multipart/form-data\"\n    | \"text/plain\";\n\n  /**\n   * Normal `<form action>` but supports React Router's relative paths.\n   */\n  action?: string;\n\n  /**\n   * Determines whether the form action is relative to the route hierarchy or\n   * the pathname.  Use this if you want to opt out of navigating the route\n   * hierarchy and want to instead route based on /-delimited URL segments\n   */\n  relative?: RelativeRoutingType;\n\n  /**\n   * Prevent the scroll position from resetting to the top of the viewport on\n   * completion of the navigation when using the <ScrollRestoration> component\n   */\n  preventScrollReset?: boolean;\n\n  /**\n   * A function to call when the form is submitted. If you call\n   * `event.preventDefault()` then this form will not do anything.\n   */\n  onSubmit?: React.FormEventHandler<HTMLFormElement>;\n}\n\n/**\n * Form props available to fetchers\n */\nexport interface FetcherFormProps extends SharedFormProps {}\n\n/**\n * Form props available to navigations\n */\nexport interface FormProps extends SharedFormProps {\n  /**\n   * Indicate a specific fetcherKey to use when using navigate=false\n   */\n  fetcherKey?: string;\n\n  /**\n   * navigate=false will use a fetcher instead of a navigation\n   */\n  navigate?: boolean;\n\n  /**\n   * Forces a full document navigation instead of a fetch.\n   */\n  reloadDocument?: boolean;\n\n  /**\n   * Replaces the current entry in the browser history stack when the form\n   * navigates. Use this if you don't want the user to be able to click \"back\"\n   * to the page with the form on it.\n   */\n  replace?: boolean;\n\n  /**\n   * State object to add to the history stack entry for this navigation\n   */\n  state?: any;\n\n  /**\n   * Enable view transitions on this Form navigation\n   */\n  viewTransition?: boolean;\n}\n\ntype HTMLSubmitEvent = React.BaseSyntheticEvent<\n  SubmitEvent,\n  Event,\n  HTMLFormElement\n>;\n\ntype HTMLFormSubmitter = HTMLButtonElement | HTMLInputElement;\n\n/**\n * A `@remix-run/router`-aware `<form>`. It behaves like a normal form except\n * that the interaction with the server is with `fetch` instead of new document\n * requests, allowing components to add nicer UX to the page as the form is\n * submitted and returns with data.\n */\nexport const Form = React.forwardRef<HTMLFormElement, FormProps>(\n  (\n    {\n      fetcherKey,\n      navigate,\n      reloadDocument,\n      replace,\n      state,\n      method = defaultMethod,\n      action,\n      onSubmit,\n      relative,\n      preventScrollReset,\n      viewTransition,\n      ...props\n    },\n    forwardedRef\n  ) => {\n    let submit = useSubmit();\n    let formAction = useFormAction(action, { relative });\n    let formMethod: HTMLFormMethod =\n      method.toLowerCase() === \"get\" ? \"get\" : \"post\";\n\n    let submitHandler: React.FormEventHandler<HTMLFormElement> = (event) => {\n      onSubmit && onSubmit(event);\n      if (event.defaultPrevented) return;\n      event.preventDefault();\n\n      let submitter = (event as unknown as HTMLSubmitEvent).nativeEvent\n        .submitter as HTMLFormSubmitter | null;\n\n      let submitMethod =\n        (submitter?.getAttribute(\"formmethod\") as HTMLFormMethod | undefined) ||\n        method;\n\n      submit(submitter || event.currentTarget, {\n        fetcherKey,\n        method: submitMethod,\n        navigate,\n        replace,\n        state,\n        relative,\n        preventScrollReset,\n        viewTransition,\n      });\n    };\n\n    return (\n      <form\n        ref={forwardedRef}\n        method={formMethod}\n        action={formAction}\n        onSubmit={reloadDocument ? onSubmit : submitHandler}\n        {...props}\n      />\n    );\n  }\n);\n\nif (__DEV__) {\n  Form.displayName = \"Form\";\n}\n\nexport interface ScrollRestorationProps {\n  getKey?: GetScrollRestorationKeyFunction;\n  storageKey?: string;\n}\n\n/**\n * This component will emulate the browser's scroll restoration on location\n * changes.\n */\nexport function ScrollRestoration({\n  getKey,\n  storageKey,\n}: ScrollRestorationProps) {\n  useScrollRestoration({ getKey, storageKey });\n  return null;\n}\n\nif (__DEV__) {\n  ScrollRestoration.displayName = \"ScrollRestoration\";\n}\n//#endregion\n\n////////////////////////////////////////////////////////////////////////////////\n//#region Hooks\n////////////////////////////////////////////////////////////////////////////////\n\nenum DataRouterHook {\n  UseScrollRestoration = \"useScrollRestoration\",\n  UseSubmit = \"useSubmit\",\n  UseSubmitFetcher = \"useSubmitFetcher\",\n  UseFetcher = \"useFetcher\",\n  useViewTransitionState = \"useViewTransitionState\",\n}\n\nenum DataRouterStateHook {\n  UseFetcher = \"useFetcher\",\n  UseFetchers = \"useFetchers\",\n  UseScrollRestoration = \"useScrollRestoration\",\n}\n\n// Internal hooks\n\nfunction getDataRouterConsoleError(\n  hookName: DataRouterHook | DataRouterStateHook\n) {\n  return `${hookName} must be used within a data router.  See https://reactrouter.com/v6/routers/picking-a-router.`;\n}\n\nfunction useDataRouterContext(hookName: DataRouterHook) {\n  let ctx = React.useContext(DataRouterContext);\n  invariant(ctx, getDataRouterConsoleError(hookName));\n  return ctx;\n}\n\nfunction useDataRouterState(hookName: DataRouterStateHook) {\n  let state = React.useContext(DataRouterStateContext);\n  invariant(state, getDataRouterConsoleError(hookName));\n  return state;\n}\n\n// External hooks\n\n/**\n * Handles the click behavior for router `<Link>` components. This is useful if\n * you need to create custom `<Link>` components with the same click behavior we\n * use in our exported `<Link>`.\n */\nexport function useLinkClickHandler<E extends Element = HTMLAnchorElement>(\n  to: To,\n  {\n    target,\n    replace: replaceProp,\n    state,\n    preventScrollReset,\n    relative,\n    viewTransition,\n  }: {\n    target?: React.HTMLAttributeAnchorTarget;\n    replace?: boolean;\n    state?: any;\n    preventScrollReset?: boolean;\n    relative?: RelativeRoutingType;\n    viewTransition?: boolean;\n  } = {}\n): (event: React.MouseEvent<E, MouseEvent>) => void {\n  let navigate = useNavigate();\n  let location = useLocation();\n  let path = useResolvedPath(to, { relative });\n\n  return React.useCallback(\n    (event: React.MouseEvent<E, MouseEvent>) => {\n      if (shouldProcessLinkClick(event, target)) {\n        event.preventDefault();\n\n        // If the URL hasn't changed, a regular <a> will do a replace instead of\n        // a push, so do the same here unless the replace prop is explicitly set\n        let replace =\n          replaceProp !== undefined\n            ? replaceProp\n            : createPath(location) === createPath(path);\n\n        navigate(to, {\n          replace,\n          state,\n          preventScrollReset,\n          relative,\n          viewTransition,\n        });\n      }\n    },\n    [\n      location,\n      navigate,\n      path,\n      replaceProp,\n      state,\n      target,\n      to,\n      preventScrollReset,\n      relative,\n      viewTransition,\n    ]\n  );\n}\n\n/**\n * A convenient wrapper for reading and writing search parameters via the\n * URLSearchParams interface.\n */\nexport function useSearchParams(\n  defaultInit?: URLSearchParamsInit\n): [URLSearchParams, SetURLSearchParams] {\n  warning(\n    typeof URLSearchParams !== \"undefined\",\n    `You cannot use the \\`useSearchParams\\` hook in a browser that does not ` +\n      `support the URLSearchParams API. If you need to support Internet ` +\n      `Explorer 11, we recommend you load a polyfill such as ` +\n      `https://github.com/ungap/url-search-params.`\n  );\n\n  let defaultSearchParamsRef = React.useRef(createSearchParams(defaultInit));\n  let hasSetSearchParamsRef = React.useRef(false);\n\n  let location = useLocation();\n  let searchParams = React.useMemo(\n    () =>\n      // Only merge in the defaults if we haven't yet called setSearchParams.\n      // Once we call that we want those to take precedence, otherwise you can't\n      // remove a param with setSearchParams({}) if it has an initial value\n      getSearchParamsForLocation(\n        location.search,\n        hasSetSearchParamsRef.current ? null : defaultSearchParamsRef.current\n      ),\n    [location.search]\n  );\n\n  let navigate = useNavigate();\n  let setSearchParams = React.useCallback<SetURLSearchParams>(\n    (nextInit, navigateOptions) => {\n      const newSearchParams = createSearchParams(\n        typeof nextInit === \"function\" ? nextInit(searchParams) : nextInit\n      );\n      hasSetSearchParamsRef.current = true;\n      navigate(\"?\" + newSearchParams, navigateOptions);\n    },\n    [navigate, searchParams]\n  );\n\n  return [searchParams, setSearchParams];\n}\n\nexport type SetURLSearchParams = (\n  nextInit?:\n    | URLSearchParamsInit\n    | ((prev: URLSearchParams) => URLSearchParamsInit),\n  navigateOpts?: NavigateOptions\n) => void;\n\n/**\n * Submits a HTML `<form>` to the server without reloading the page.\n */\nexport interface SubmitFunction {\n  (\n    /**\n     * Specifies the `<form>` to be submitted to the server, a specific\n     * `<button>` or `<input type=\"submit\">` to use to submit the form, or some\n     * arbitrary data to submit.\n     *\n     * Note: When using a `<button>` its `name` and `value` will also be\n     * included in the form data that is submitted.\n     */\n    target: SubmitTarget,\n\n    /**\n     * Options that override the `<form>`'s own attributes. Required when\n     * submitting arbitrary data without a backing `<form>`.\n     */\n    options?: SubmitOptions\n  ): void;\n}\n\n/**\n * Submits a fetcher `<form>` to the server without reloading the page.\n */\nexport interface FetcherSubmitFunction {\n  (\n    target: SubmitTarget,\n    // Fetchers cannot replace or set state because they are not navigation events\n    options?: FetcherSubmitOptions\n  ): void;\n}\n\nfunction validateClientSideSubmission() {\n  if (typeof document === \"undefined\") {\n    throw new Error(\n      \"You are calling submit during the server render. \" +\n        \"Try calling submit within a `useEffect` or callback instead.\"\n    );\n  }\n}\n\nlet fetcherId = 0;\nlet getUniqueFetcherId = () => `__${String(++fetcherId)}__`;\n\n/**\n * Returns a function that may be used to programmatically submit a form (or\n * some arbitrary data) to the server.\n */\nexport function useSubmit(): SubmitFunction {\n  let { router } = useDataRouterContext(DataRouterHook.UseSubmit);\n  let { basename } = React.useContext(NavigationContext);\n  let currentRouteId = useRouteId();\n\n  return React.useCallback<SubmitFunction>(\n    (target, options = {}) => {\n      validateClientSideSubmission();\n\n      let { action, method, encType, formData, body } = getFormSubmissionInfo(\n        target,\n        basename\n      );\n\n      if (options.navigate === false) {\n        let key = options.fetcherKey || getUniqueFetcherId();\n        router.fetch(key, currentRouteId, options.action || action, {\n          preventScrollReset: options.preventScrollReset,\n          formData,\n          body,\n          formMethod: options.method || (method as HTMLFormMethod),\n          formEncType: options.encType || (encType as FormEncType),\n          flushSync: options.flushSync,\n        });\n      } else {\n        router.navigate(options.action || action, {\n          preventScrollReset: options.preventScrollReset,\n          formData,\n          body,\n          formMethod: options.method || (method as HTMLFormMethod),\n          formEncType: options.encType || (encType as FormEncType),\n          replace: options.replace,\n          state: options.state,\n          fromRouteId: currentRouteId,\n          flushSync: options.flushSync,\n          viewTransition: options.viewTransition,\n        });\n      }\n    },\n    [router, basename, currentRouteId]\n  );\n}\n\n// v7: Eventually we should deprecate this entirely in favor of using the\n// router method directly?\nexport function useFormAction(\n  action?: string,\n  { relative }: { relative?: RelativeRoutingType } = {}\n): string {\n  let { basename } = React.useContext(NavigationContext);\n  let routeContext = React.useContext(RouteContext);\n  invariant(routeContext, \"useFormAction must be used inside a RouteContext\");\n\n  let [match] = routeContext.matches.slice(-1);\n  // Shallow clone path so we can modify it below, otherwise we modify the\n  // object referenced by useMemo inside useResolvedPath\n  let path = { ...useResolvedPath(action ? action : \".\", { relative }) };\n\n  // If no action was specified, browsers will persist current search params\n  // when determining the path, so match that behavior\n  // https://github.com/remix-run/remix/issues/927\n  let location = useLocation();\n  if (action == null) {\n    // Safe to write to this directly here since if action was undefined, we\n    // would have called useResolvedPath(\".\") which will never include a search\n    path.search = location.search;\n\n    // When grabbing search params from the URL, remove any included ?index param\n    // since it might not apply to our contextual route.  We add it back based\n    // on match.route.index below\n    let params = new URLSearchParams(path.search);\n    let indexValues = params.getAll(\"index\");\n    let hasNakedIndexParam = indexValues.some((v) => v === \"\");\n    if (hasNakedIndexParam) {\n      params.delete(\"index\");\n      indexValues.filter((v) => v).forEach((v) => params.append(\"index\", v));\n      let qs = params.toString();\n      path.search = qs ? `?${qs}` : \"\";\n    }\n  }\n\n  if ((!action || action === \".\") && match.route.index) {\n    path.search = path.search\n      ? path.search.replace(/^\\?/, \"?index&\")\n      : \"?index\";\n  }\n\n  // If we're operating within a basename, prepend it to the pathname prior\n  // to creating the form action.  If this is a root navigation, then just use\n  // the raw basename which allows the basename to have full control over the\n  // presence of a trailing slash on root actions\n  if (basename !== \"/\") {\n    path.pathname =\n      path.pathname === \"/\" ? basename : joinPaths([basename, path.pathname]);\n  }\n\n  return createPath(path);\n}\n\nexport type FetcherWithComponents<TData> = Fetcher<TData> & {\n  Form: React.ForwardRefExoticComponent<\n    FetcherFormProps & React.RefAttributes<HTMLFormElement>\n  >;\n  submit: FetcherSubmitFunction;\n  load: (href: string, opts?: { flushSync?: boolean }) => void;\n};\n\n// TODO: (v7) Change the useFetcher generic default from `any` to `unknown`\n\n/**\n * Interacts with route loaders and actions without causing a navigation. Great\n * for any interaction that stays on the same page.\n */\nexport function useFetcher<TData = any>({\n  key,\n}: { key?: string } = {}): FetcherWithComponents<TData> {\n  let { router } = useDataRouterContext(DataRouterHook.UseFetcher);\n  let state = useDataRouterState(DataRouterStateHook.UseFetcher);\n  let fetcherData = React.useContext(FetchersContext);\n  let route = React.useContext(RouteContext);\n  let routeId = route.matches[route.matches.length - 1]?.route.id;\n\n  invariant(fetcherData, `useFetcher must be used inside a FetchersContext`);\n  invariant(route, `useFetcher must be used inside a RouteContext`);\n  invariant(\n    routeId != null,\n    `useFetcher can only be used on routes that contain a unique \"id\"`\n  );\n\n  // Fetcher key handling\n  // OK to call conditionally to feature detect `useId`\n  // eslint-disable-next-line react-hooks/rules-of-hooks\n  let defaultKey = useIdImpl ? useIdImpl() : \"\";\n  let [fetcherKey, setFetcherKey] = React.useState<string>(key || defaultKey);\n  if (key && key !== fetcherKey) {\n    setFetcherKey(key);\n  } else if (!fetcherKey) {\n    // We will only fall through here when `useId` is not available\n    setFetcherKey(getUniqueFetcherId());\n  }\n\n  // Registration/cleanup\n  React.useEffect(() => {\n    router.getFetcher(fetcherKey);\n    return () => {\n      // Tell the router we've unmounted - if v7_fetcherPersist is enabled this\n      // will not delete immediately but instead queue up a delete after the\n      // fetcher returns to an `idle` state\n      router.deleteFetcher(fetcherKey);\n    };\n  }, [router, fetcherKey]);\n\n  // Fetcher additions\n  let load = React.useCallback(\n    (href: string, opts?: { flushSync?: boolean }) => {\n      invariant(routeId, \"No routeId available for fetcher.load()\");\n      router.fetch(fetcherKey, routeId, href, opts);\n    },\n    [fetcherKey, routeId, router]\n  );\n\n  let submitImpl = useSubmit();\n  let submit = React.useCallback<FetcherSubmitFunction>(\n    (target, opts) => {\n      submitImpl(target, {\n        ...opts,\n        navigate: false,\n        fetcherKey,\n      });\n    },\n    [fetcherKey, submitImpl]\n  );\n\n  let FetcherForm = React.useMemo(() => {\n    let FetcherForm = React.forwardRef<HTMLFormElement, FetcherFormProps>(\n      (props, ref) => {\n        return (\n          <Form {...props} navigate={false} fetcherKey={fetcherKey} ref={ref} />\n        );\n      }\n    );\n    if (__DEV__) {\n      FetcherForm.displayName = \"fetcher.Form\";\n    }\n    return FetcherForm;\n  }, [fetcherKey]);\n\n  // Exposed FetcherWithComponents\n  let fetcher = state.fetchers.get(fetcherKey) || IDLE_FETCHER;\n  let data = fetcherData.get(fetcherKey);\n  let fetcherWithComponents = React.useMemo(\n    () => ({\n      Form: FetcherForm,\n      submit,\n      load,\n      ...fetcher,\n      data,\n    }),\n    [FetcherForm, submit, load, fetcher, data]\n  );\n\n  return fetcherWithComponents;\n}\n\n/**\n * Provides all fetchers currently on the page. Useful for layouts and parent\n * routes that need to provide pending/optimistic UI regarding the fetch.\n */\nexport function useFetchers(): (Fetcher & { key: string })[] {\n  let state = useDataRouterState(DataRouterStateHook.UseFetchers);\n  return Array.from(state.fetchers.entries()).map(([key, fetcher]) => ({\n    ...fetcher,\n    key,\n  }));\n}\n\nconst SCROLL_RESTORATION_STORAGE_KEY = \"react-router-scroll-positions\";\nlet savedScrollPositions: Record<string, number> = {};\n\n/**\n * When rendered inside a RouterProvider, will restore scroll positions on navigations\n */\nfunction useScrollRestoration({\n  getKey,\n  storageKey,\n}: {\n  getKey?: GetScrollRestorationKeyFunction;\n  storageKey?: string;\n} = {}) {\n  let { router } = useDataRouterContext(DataRouterHook.UseScrollRestoration);\n  let { restoreScrollPosition, preventScrollReset } = useDataRouterState(\n    DataRouterStateHook.UseScrollRestoration\n  );\n  let { basename } = React.useContext(NavigationContext);\n  let location = useLocation();\n  let matches = useMatches();\n  let navigation = useNavigation();\n\n  // Trigger manual scroll restoration while we're active\n  React.useEffect(() => {\n    window.history.scrollRestoration = \"manual\";\n    return () => {\n      window.history.scrollRestoration = \"auto\";\n    };\n  }, []);\n\n  // Save positions on pagehide\n  usePageHide(\n    React.useCallback(() => {\n      if (navigation.state === \"idle\") {\n        let key = (getKey ? getKey(location, matches) : null) || location.key;\n        savedScrollPositions[key] = window.scrollY;\n      }\n      try {\n        sessionStorage.setItem(\n          storageKey || SCROLL_RESTORATION_STORAGE_KEY,\n          JSON.stringify(savedScrollPositions)\n        );\n      } catch (error) {\n        warning(\n          false,\n          `Failed to save scroll positions in sessionStorage, <ScrollRestoration /> will not work properly (${error}).`\n        );\n      }\n      window.history.scrollRestoration = \"auto\";\n    }, [storageKey, getKey, navigation.state, location, matches])\n  );\n\n  // Read in any saved scroll locations\n  if (typeof document !== \"undefined\") {\n    // eslint-disable-next-line react-hooks/rules-of-hooks\n    React.useLayoutEffect(() => {\n      try {\n        let sessionPositions = sessionStorage.getItem(\n          storageKey || SCROLL_RESTORATION_STORAGE_KEY\n        );\n        if (sessionPositions) {\n          savedScrollPositions = JSON.parse(sessionPositions);\n        }\n      } catch (e) {\n        // no-op, use default empty object\n      }\n    }, [storageKey]);\n\n    // Enable scroll restoration in the router\n    // eslint-disable-next-line react-hooks/rules-of-hooks\n    React.useLayoutEffect(() => {\n      let getKeyWithoutBasename: GetScrollRestorationKeyFunction | undefined =\n        getKey && basename !== \"/\"\n          ? (location, matches) =>\n              getKey(\n                // Strip the basename to match useLocation()\n                {\n                  ...location,\n                  pathname:\n                    stripBasename(location.pathname, basename) ||\n                    location.pathname,\n                },\n                matches\n              )\n          : getKey;\n      let disableScrollRestoration = router?.enableScrollRestoration(\n        savedScrollPositions,\n        () => window.scrollY,\n        getKeyWithoutBasename\n      );\n      return () => disableScrollRestoration && disableScrollRestoration();\n    }, [router, basename, getKey]);\n\n    // Restore scrolling when state.restoreScrollPosition changes\n    // eslint-disable-next-line react-hooks/rules-of-hooks\n    React.useLayoutEffect(() => {\n      // Explicit false means don't do anything (used for submissions)\n      if (restoreScrollPosition === false) {\n        return;\n      }\n\n      // been here before, scroll to it\n      if (typeof restoreScrollPosition === \"number\") {\n        window.scrollTo(0, restoreScrollPosition);\n        return;\n      }\n\n      // try to scroll to the hash\n      if (location.hash) {\n        let el = document.getElementById(\n          decodeURIComponent(location.hash.slice(1))\n        );\n        if (el) {\n          el.scrollIntoView();\n          return;\n        }\n      }\n\n      // Don't reset if this navigation opted out\n      if (preventScrollReset === true) {\n        return;\n      }\n\n      // otherwise go to the top on new locations\n      window.scrollTo(0, 0);\n    }, [location, restoreScrollPosition, preventScrollReset]);\n  }\n}\n\nexport { useScrollRestoration as UNSAFE_useScrollRestoration };\n\n/**\n * Setup a callback to be fired on the window's `beforeunload` event. This is\n * useful for saving some data to `window.localStorage` just before the page\n * refreshes.\n *\n * Note: The `callback` argument should be a function created with\n * `React.useCallback()`.\n */\nexport function useBeforeUnload(\n  callback: (event: BeforeUnloadEvent) => any,\n  options?: { capture?: boolean }\n): void {\n  let { capture } = options || {};\n  React.useEffect(() => {\n    let opts = capture != null ? { capture } : undefined;\n    window.addEventListener(\"beforeunload\", callback, opts);\n    return () => {\n      window.removeEventListener(\"beforeunload\", callback, opts);\n    };\n  }, [callback, capture]);\n}\n\n/**\n * Setup a callback to be fired on the window's `pagehide` event. This is\n * useful for saving some data to `window.localStorage` just before the page\n * refreshes.  This event is better supported than beforeunload across browsers.\n *\n * Note: The `callback` argument should be a function created with\n * `React.useCallback()`.\n */\nfunction usePageHide(\n  callback: (event: PageTransitionEvent) => any,\n  options?: { capture?: boolean }\n): void {\n  let { capture } = options || {};\n  React.useEffect(() => {\n    let opts = capture != null ? { capture } : undefined;\n    window.addEventListener(\"pagehide\", callback, opts);\n    return () => {\n      window.removeEventListener(\"pagehide\", callback, opts);\n    };\n  }, [callback, capture]);\n}\n\n/**\n * Wrapper around useBlocker to show a window.confirm prompt to users instead\n * of building a custom UI with useBlocker.\n *\n * Warning: This has *a lot of rough edges* and behaves very differently (and\n * very incorrectly in some cases) across browsers if user click addition\n * back/forward navigations while the confirm is open.  Use at your own risk.\n */\nfunction usePrompt({\n  when,\n  message,\n}: {\n  when: boolean | BlockerFunction;\n  message: string;\n}) {\n  let blocker = useBlocker(when);\n\n  React.useEffect(() => {\n    if (blocker.state === \"blocked\") {\n      let proceed = window.confirm(message);\n      if (proceed) {\n        // This timeout is needed to avoid a weird \"race\" on POP navigations\n        // between the `window.history` revert navigation and the result of\n        // `window.confirm`\n        setTimeout(blocker.proceed, 0);\n      } else {\n        blocker.reset();\n      }\n    }\n  }, [blocker, message]);\n\n  React.useEffect(() => {\n    if (blocker.state === \"blocked\" && !when) {\n      blocker.reset();\n    }\n  }, [blocker, when]);\n}\n\nexport { usePrompt as unstable_usePrompt };\n\n/**\n * Return a boolean indicating if there is an active view transition to the\n * given href.  You can use this value to render CSS classes or viewTransitionName\n * styles onto your elements\n *\n * @param href The destination href\n * @param [opts.relative] Relative routing type (\"route\" | \"path\")\n */\nfunction useViewTransitionState(\n  to: To,\n  opts: { relative?: RelativeRoutingType } = {}\n) {\n  let vtContext = React.useContext(ViewTransitionContext);\n\n  invariant(\n    vtContext != null,\n    \"`useViewTransitionState` must be used within `react-router-dom`'s `RouterProvider`.  \" +\n      \"Did you accidentally import `RouterProvider` from `react-router`?\"\n  );\n\n  let { basename } = useDataRouterContext(\n    DataRouterHook.useViewTransitionState\n  );\n  let path = useResolvedPath(to, { relative: opts.relative });\n  if (!vtContext.isTransitioning) {\n    return false;\n  }\n\n  let currentPath =\n    stripBasename(vtContext.currentLocation.pathname, basename) ||\n    vtContext.currentLocation.pathname;\n  let nextPath =\n    stripBasename(vtContext.nextLocation.pathname, basename) ||\n    vtContext.nextLocation.pathname;\n\n  // Transition is active if we're going to or coming from the indicated\n  // destination.  This ensures that other PUSH navigations that reverse\n  // an indicated transition apply.  I.e., on the list view you have:\n  //\n  //   <NavLink to=\"/details/1\" viewTransition>\n  //\n  // If you click the breadcrumb back to the list view:\n  //\n  //   <NavLink to=\"/list\" viewTransition>\n  //\n  // We should apply the transition because it's indicated as active going\n  // from /list -> /details/1 and therefore should be active on the reverse\n  // (even though this isn't strictly a POP reverse)\n  return (\n    matchPath(path.pathname, nextPath) != null ||\n    matchPath(path.pathname, currentPath) != null\n  );\n}\n\nexport { useViewTransitionState as useViewTransitionState };\n\n//#endregion\n"],"names":["defaultMethod","defaultEncType","isHtmlElement","object","tagName","isButtonElement","toLowerCase","isFormElement","isInputElement","isModifiedEvent","event","metaKey","altKey","ctrlKey","shiftKey","shouldProcessLinkClick","target","button","createSearchParams","init","URLSearchParams","Array","isArray","Object","keys","reduce","memo","key","value","concat","map","v","getSearchParamsForLocation","locationSearch","defaultSearchParams","searchParams","forEach","_","has","getAll","append","_formDataSupportsSubmitter","isFormDataSubmitterSupported","FormData","document","createElement","e","supportedFormEncTypes","Set","getFormEncType","encType","process","warning","getFormSubmissionInfo","basename","method","action","formData","body","attr","getAttribute","stripBasename","type","form","Error","name","prefix","undefined","REACT_ROUTER_VERSION","window","__reactRouterVersion","createBrowserRouter","routes","opts","createRouter","future","v7_prependBasename","history","createBrowserHistory","hydrationData","parseHydrationData","mapRouteProperties","dataStrategy","patchRoutesOnNavigation","initialize","createHashRouter","createHashHistory","state","__staticRouterHydrationData","errors","deserializeErrors","entries","serialized","val","__type","ErrorResponseImpl","status","statusText","data","internal","__subType","ErrorConstructor","error","message","stack","ViewTransitionContext","React","createContext","isTransitioning","displayName","FetchersContext","Map","START_TRANSITION","startTransitionImpl","FLUSH_SYNC","flushSyncImpl","ReactDOM","USE_ID","useIdImpl","startTransitionSafe","cb","flushSyncSafe","Deferred","constructor","promise","Promise","resolve","reject","reason","RouterProvider","fallbackElement","router","setStateImpl","useState","pendingState","setPendingState","vtContext","setVtContext","renderDfd","setRenderDfd","transition","setTransition","interruption","setInterruption","fetcherData","useRef","v7_startTransition","optInStartTransition","useCallback","setState","newState","deletedFetchers","flushSync","viewTransitionOpts","current","delete","fetchers","fetcher","set","isViewTransitionUnavailable","startViewTransition","skipTransition","currentLocation","nextLocation","t","finished","finally","useLayoutEffect","subscribe","useEffect","renderPromise","location","v7_partialHydration","navigator","useMemo","createHref","encodeLocation","go","n","navigate","push","to","preventScrollReset","replace","dataRouterContext","static","routerFuture","v7_relativeSplatPath","logV6DeprecationWarnings","Fragment","DataRouterContext","Provider","DataRouterStateContext","Router","navigationType","historyAction","initialized","MemoizedDataRoutes","DataRoutes","useRoutesImpl","BrowserRouter","children","historyRef","v5Compat","listen","HashRouter","HistoryRouter","isBrowser","ABSOLUTE_URL_REGEX","Link","forwardRef","LinkWithRef","onClick","relative","reloadDocument","viewTransition","rest","ref","useContext","NavigationContext","absoluteHref","isExternal","test","currentUrl","URL","href","targetUrl","startsWith","protocol","path","pathname","origin","search","hash","useHref","internalOnClick","useLinkClickHandler","handleClick","defaultPrevented","assign","NavLink","NavLinkWithRef","ariaCurrentProp","caseSensitive","className","classNameProp","end","style","styleProp","useResolvedPath","useLocation","routerState","useViewTransitionState","toPathname","locationPathname","nextLocationPathname","navigation","endSlashPosition","endsWith","length","isActive","charAt","isPending","renderProps","ariaCurrent","filter","Boolean","join","Form","fetcherKey","onSubmit","props","forwardedRef","submit","useSubmit","formAction","useFormAction","formMethod","submitHandler","preventDefault","submitter","nativeEvent","submitMethod","currentTarget","ScrollRestoration","getKey","storageKey","useScrollRestoration","DataRouterHook","DataRouterStateHook","getDataRouterConsoleError","hookName","useDataRouterContext","ctx","invariant","useDataRouterState","replaceProp","useNavigate","createPath","useSearchParams","defaultInit","defaultSearchParamsRef","hasSetSearchParamsRef","setSearchParams","nextInit","navigateOptions","newSearchParams","validateClientSideSubmission","fetcherId","getUniqueFetcherId","String","UseSubmit","currentRouteId","useRouteId","options","fetch","formEncType","fromRouteId","routeContext","RouteContext","match","matches","slice","params","indexValues","hasNakedIndexParam","some","qs","toString","route","index","joinPaths","useFetcher","UseFetcher","routeId","id","defaultKey","setFetcherKey","getFetcher","deleteFetcher","load","submitImpl","FetcherForm","get","IDLE_FETCHER","fetcherWithComponents","useFetchers","UseFetchers","from","SCROLL_RESTORATION_STORAGE_KEY","savedScrollPositions","UseScrollRestoration","restoreScrollPosition","useMatches","useNavigation","scrollRestoration","usePageHide","scrollY","sessionStorage","setItem","JSON","stringify","sessionPositions","getItem","parse","getKeyWithoutBasename","disableScrollRestoration","enableScrollRestoration","scrollTo","el","getElementById","decodeURIComponent","scrollIntoView","useBeforeUnload","callback","capture","addEventListener","removeEventListener","usePrompt","when","blocker","useBlocker","proceed","confirm","setTimeout","reset","currentPath","nextPath","matchPath"],"mappings":"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"}
  • imaps-frontend/node_modules/react-router-dom/dist/react-router-dom.production.min.js

    rd565449 r0c6b92a  
    11/**
    2  * React Router DOM v6.26.0
     2 * React Router DOM v6.28.0
    33 *
    44 * Copyright (c) Remix Software Inc.
     
    99 * @license MIT
    1010 */
    11 import*as e from"react";import*as t from"react-dom";import{UNSAFE_mapRouteProperties as n,UNSAFE_DataRouterContext as r,UNSAFE_DataRouterStateContext as a,Router as o,UNSAFE_useRoutesImpl as i,UNSAFE_NavigationContext as s,useHref as u,useResolvedPath as l,useLocation as c,useNavigate as f,createPath as d,UNSAFE_useRouteId as m,UNSAFE_RouteContext as h,useMatches as p,useNavigation as w,useBlocker as v}from"react-router";export{AbortedDeferredError,Await,MemoryRouter,Navigate,NavigationType,Outlet,Route,Router,Routes,UNSAFE_DataRouterContext,UNSAFE_DataRouterStateContext,UNSAFE_LocationContext,UNSAFE_NavigationContext,UNSAFE_RouteContext,UNSAFE_useRouteId,createMemoryRouter,createPath,createRoutesFromChildren,createRoutesFromElements,defer,generatePath,isRouteErrorResponse,json,matchPath,matchRoutes,parsePath,redirect,redirectDocument,renderMatches,replace,resolvePath,useActionData,useAsyncError,useAsyncValue,useBlocker,useHref,useInRouterContext,useLoaderData,useLocation,useMatch,useMatches,useNavigate,useNavigation,useNavigationType,useOutlet,useOutletContext,useParams,useResolvedPath,useRevalidator,useRouteError,useRouteLoaderData,useRoutes}from"react-router";import{stripBasename as g,createRouter as y,createBrowserHistory as b,createHashHistory as S,UNSAFE_ErrorResponseImpl as R,UNSAFE_invariant as E,joinPaths as _,IDLE_FETCHER as T,matchPath as L}from"@remix-run/router";export{UNSAFE_ErrorResponseImpl}from"@remix-run/router";const x="application/x-www-form-urlencoded";function C(e){return null!=e&&"string"==typeof e.tagName}function A(e=""){return new URLSearchParams("string"==typeof e||Array.isArray(e)||e instanceof URLSearchParams?e:Object.keys(e).reduce(((t,n)=>{let r=e[n];return t.concat(Array.isArray(r)?r.map((e=>[n,e])):[[n,r]])}),[]))}let F=null;const U=new Set(["application/x-www-form-urlencoded","multipart/form-data","text/plain"]);function k(e){return null==e||U.has(e)?e:null}function P(e,t){let n,r,a,o,i;if(C(s=e)&&"form"===s.tagName.toLowerCase()){let i=e.getAttribute("action");r=i?g(i,t):null,n=e.getAttribute("method")||"get",a=k(e.getAttribute("enctype"))||x,o=new FormData(e)}else if(function(e){return C(e)&&"button"===e.tagName.toLowerCase()}(e)||function(e){return C(e)&&"input"===e.tagName.toLowerCase()}(e)&&("submit"===e.type||"image"===e.type)){let i=e.form;if(null==i)throw new Error('Cannot submit a <button> or <input type="submit"> without a <form>');let s=e.getAttribute("formaction")||i.getAttribute("action");if(r=s?g(s,t):null,n=e.getAttribute("formmethod")||i.getAttribute("method")||"get",a=k(e.getAttribute("formenctype"))||k(i.getAttribute("enctype"))||x,o=new FormData(i,e),!function(){if(null===F)try{new FormData(document.createElement("form"),0),F=!1}catch(e){F=!0}return F}()){let{name:t,type:n,value:r}=e;if("image"===n){let e=t?`${t}.`:"";o.append(`${e}x`,"0"),o.append(`${e}y`,"0")}else t&&o.append(t,r)}}else{if(C(e))throw new Error('Cannot submit element that is not <form>, <button>, or <input type="submit|image">');n="get",r=null,a=x,i=e}var s;return o&&"text/plain"===a&&(i=o,o=void 0),{action:r,method:n.toLowerCase(),encType:a,formData:o,body:i}}try{window.__reactRouterVersion="6"}catch(be){}function N(e,t){return y({basename:t?.basename,future:{...t?.future,v7_prependBasename:!0},history:b({window:t?.window}),hydrationData:t?.hydrationData||M(),routes:e,mapRouteProperties:n,unstable_dataStrategy:t?.unstable_dataStrategy,unstable_patchRoutesOnMiss:t?.unstable_patchRoutesOnMiss,window:t?.window}).initialize()}function D(e,t){return y({basename:t?.basename,future:{...t?.future,v7_prependBasename:!0},history:S({window:t?.window}),hydrationData:t?.hydrationData||M(),routes:e,mapRouteProperties:n,unstable_dataStrategy:t?.unstable_dataStrategy,unstable_patchRoutesOnMiss:t?.unstable_patchRoutesOnMiss,window:t?.window}).initialize()}function M(){let e=window?.__staticRouterHydrationData;return e&&e.errors&&(e={...e,errors:O(e.errors)}),e}function O(e){if(!e)return null;let t=Object.entries(e),n={};for(let[r,a]of t)if(a&&"RouteErrorResponse"===a.__type)n[r]=new R(a.status,a.statusText,a.data,!0===a.internal);else if(a&&"Error"===a.__type){if(a.__subType){let e=window[a.__subType];if("function"==typeof e)try{let t=new e(a.message);t.stack="",n[r]=t}catch(be){}}if(null==n[r]){let e=new Error(a.message);e.stack="",n[r]=e}}else n[r]=a;return n}const K=e.createContext({isTransitioning:!1}),V=e.createContext(new Map),j=e.startTransition,I=t.flushSync,H=e.useId;function z(e){I?I(e):e()}class B{status="pending";constructor(){this.promise=new Promise(((e,t)=>{this.resolve=t=>{"pending"===this.status&&(this.status="resolved",e(t))},this.reject=e=>{"pending"===this.status&&(this.status="rejected",t(e))}}))}}function $({fallbackElement:t,router:n,future:i}){let[s,u]=e.useState(n.state),[l,c]=e.useState(),[f,d]=e.useState({isTransitioning:!1}),[m,h]=e.useState(),[p,w]=e.useState(),[v,g]=e.useState(),y=e.useRef(new Map),{v7_startTransition:b}=i||{},S=e.useCallback((e=>{b?function(e){j?j(e):e()}(e):e()}),[b]),R=e.useCallback(((e,{deletedFetchers:t,unstable_flushSync:r,unstable_viewTransitionOpts:a})=>{t.forEach((e=>y.current.delete(e))),e.fetchers.forEach(((e,t)=>{void 0!==e.data&&y.current.set(t,e.data)}));let o=null==n.window||null==n.window.document||"function"!=typeof n.window.document.startViewTransition;if(a&&!o){if(r){z((()=>{p&&(m&&m.resolve(),p.skipTransition()),d({isTransitioning:!0,flushSync:!0,currentLocation:a.currentLocation,nextLocation:a.nextLocation})}));let t=n.window.document.startViewTransition((()=>{z((()=>u(e)))}));return t.finished.finally((()=>{z((()=>{h(void 0),w(void 0),c(void 0),d({isTransitioning:!1})}))})),void z((()=>w(t)))}p?(m&&m.resolve(),p.skipTransition(),g({state:e,currentLocation:a.currentLocation,nextLocation:a.nextLocation})):(c(e),d({isTransitioning:!0,flushSync:!1,currentLocation:a.currentLocation,nextLocation:a.nextLocation}))}else r?z((()=>u(e))):S((()=>u(e)))}),[n.window,p,m,y,S]);e.useLayoutEffect((()=>n.subscribe(R)),[n,R]),e.useEffect((()=>{f.isTransitioning&&!f.flushSync&&h(new B)}),[f]),e.useEffect((()=>{if(m&&l&&n.window){let e=l,t=m.promise,r=n.window.document.startViewTransition((async()=>{S((()=>u(e))),await t}));r.finished.finally((()=>{h(void 0),w(void 0),c(void 0),d({isTransitioning:!1})})),w(r)}}),[S,l,m,n.window]),e.useEffect((()=>{m&&l&&s.location.key===l.location.key&&m.resolve()}),[m,p,s.location,l]),e.useEffect((()=>{!f.isTransitioning&&v&&(c(v.state),d({isTransitioning:!0,flushSync:!1,currentLocation:v.currentLocation,nextLocation:v.nextLocation}),g(void 0))}),[f.isTransitioning,v]),e.useEffect((()=>{}),[]);let E=e.useMemo((()=>({createHref:n.createHref,encodeLocation:n.encodeLocation,go:e=>n.navigate(e),push:(e,t,r)=>n.navigate(e,{state:t,preventScrollReset:r?.preventScrollReset}),replace:(e,t,r)=>n.navigate(e,{replace:!0,state:t,preventScrollReset:r?.preventScrollReset})})),[n]),_=n.basename||"/",T=e.useMemo((()=>({router:n,navigator:E,static:!1,basename:_})),[n,E,_]),L=e.useMemo((()=>({v7_relativeSplatPath:n.future.v7_relativeSplatPath})),[n.future.v7_relativeSplatPath]);return e.createElement(e.Fragment,null,e.createElement(r.Provider,{value:T},e.createElement(a.Provider,{value:s},e.createElement(V.Provider,{value:y.current},e.createElement(K.Provider,{value:f},e.createElement(o,{basename:_,location:s.location,navigationType:s.historyAction,navigator:E,future:L},s.initialized||n.future.v7_partialHydration?e.createElement(W,{routes:n.routes,future:n.future,state:s}):t))))),null)}const W=e.memo(Y);function Y({routes:e,future:t,state:n}){return i(e,void 0,n,t)}function J({basename:t,children:n,future:r,window:a}){let i=e.useRef();null==i.current&&(i.current=b({window:a,v5Compat:!0}));let s=i.current,[u,l]=e.useState({action:s.action,location:s.location}),{v7_startTransition:c}=r||{},f=e.useCallback((e=>{c&&j?j((()=>l(e))):l(e)}),[l,c]);return e.useLayoutEffect((()=>s.listen(f)),[s,f]),e.createElement(o,{basename:t,children:n,location:u.location,navigationType:u.action,navigator:s,future:r})}function q({basename:t,children:n,future:r,window:a}){let i=e.useRef();null==i.current&&(i.current=S({window:a,v5Compat:!0}));let s=i.current,[u,l]=e.useState({action:s.action,location:s.location}),{v7_startTransition:c}=r||{},f=e.useCallback((e=>{c&&j?j((()=>l(e))):l(e)}),[l,c]);return e.useLayoutEffect((()=>s.listen(f)),[s,f]),e.createElement(o,{basename:t,children:n,location:u.location,navigationType:u.action,navigator:s,future:r})}function G({basename:t,children:n,future:r,history:a}){let[i,s]=e.useState({action:a.action,location:a.location}),{v7_startTransition:u}=r||{},l=e.useCallback((e=>{u&&j?j((()=>s(e))):s(e)}),[s,u]);return e.useLayoutEffect((()=>a.listen(l)),[a,l]),e.createElement(o,{basename:t,children:n,location:i.location,navigationType:i.action,navigator:a,future:r})}const Q="undefined"!=typeof window&&void 0!==window.document&&void 0!==window.document.createElement,X=/^(?:[a-z][a-z0-9+.-]*:|\/\/)/i,Z=e.forwardRef((function({onClick:t,relative:n,reloadDocument:r,replace:a,state:o,target:i,to:l,preventScrollReset:c,unstable_viewTransition:f,...d},m){let h,{basename:p}=e.useContext(s),w=!1;if("string"==typeof l&&X.test(l)&&(h=l,Q))try{let e=new URL(window.location.href),t=l.startsWith("//")?new URL(e.protocol+l):new URL(l),n=g(t.pathname,p);t.origin===e.origin&&null!=n?l=n+t.search+t.hash:w=!0}catch(be){}let v=u(l,{relative:n}),y=se(l,{replace:a,state:o,target:i,preventScrollReset:c,relative:n,unstable_viewTransition:f});return e.createElement("a",Object.assign({},d,{href:h||v,onClick:w||r?t:function(e){t&&t(e),e.defaultPrevented||y(e)},ref:m,target:i}))})),ee=e.forwardRef((function({"aria-current":t="page",caseSensitive:n=!1,className:r="",end:o=!1,style:i,to:u,unstable_viewTransition:f,children:d,...m},h){let p=l(u,{relative:m.relative}),w=c(),v=e.useContext(a),{navigator:y,basename:b}=e.useContext(s),S=null!=v&&ye(p)&&!0===f,R=y.encodeLocation?y.encodeLocation(p).pathname:p.pathname,E=w.pathname,_=v&&v.navigation&&v.navigation.location?v.navigation.location.pathname:null;n||(E=E.toLowerCase(),_=_?_.toLowerCase():null,R=R.toLowerCase()),_&&b&&(_=g(_,b)||_);const T="/"!==R&&R.endsWith("/")?R.length-1:R.length;let L,x=E===R||!o&&E.startsWith(R)&&"/"===E.charAt(T),C=null!=_&&(_===R||!o&&_.startsWith(R)&&"/"===_.charAt(R.length)),A={isActive:x,isPending:C,isTransitioning:S},F=x?t:void 0;L="function"==typeof r?r(A):[r,x?"active":null,C?"pending":null,S?"transitioning":null].filter(Boolean).join(" ");let U="function"==typeof i?i(A):i;return e.createElement(Z,Object.assign({},m,{"aria-current":F,className:L,ref:h,style:U,to:u,unstable_viewTransition:f}),"function"==typeof d?d(A):d)})),te=e.forwardRef((({fetcherKey:t,navigate:n,reloadDocument:r,replace:a,state:o,method:i="get",action:s,onSubmit:u,relative:l,preventScrollReset:c,unstable_viewTransition:f,...d},m)=>{let h=fe(),p=de(s,{relative:l}),w="get"===i.toLowerCase()?"get":"post";return e.createElement("form",Object.assign({ref:m,method:w,action:p,onSubmit:r?u:e=>{if(u&&u(e),e.defaultPrevented)return;e.preventDefault();let r=e.nativeEvent.submitter,s=r?.getAttribute("formmethod")||i;h(r||e.currentTarget,{fetcherKey:t,method:s,navigate:n,replace:a,state:o,relative:l,preventScrollReset:c,unstable_viewTransition:f})}},d))}));function ne({getKey:e,storageKey:t}){return we({getKey:e,storageKey:t}),null}var re=function(e){return e.UseScrollRestoration="useScrollRestoration",e.UseSubmit="useSubmit",e.UseSubmitFetcher="useSubmitFetcher",e.UseFetcher="useFetcher",e.useViewTransitionState="useViewTransitionState",e}(re||{}),ae=function(e){return e.UseFetcher="useFetcher",e.UseFetchers="useFetchers",e.UseScrollRestoration="useScrollRestoration",e}(ae||{});function oe(t){let n=e.useContext(r);return n||E(!1),n}function ie(t){let n=e.useContext(a);return n||E(!1),n}function se(t,{target:n,replace:r,state:a,preventScrollReset:o,relative:i,unstable_viewTransition:s}={}){let u=f(),m=c(),h=l(t,{relative:i});return e.useCallback((e=>{if(function(e,t){return!(0!==e.button||t&&"_self"!==t||function(e){return!!(e.metaKey||e.altKey||e.ctrlKey||e.shiftKey)}(e))}(e,n)){e.preventDefault();let n=void 0!==r?r:d(m)===d(h);u(t,{replace:n,state:a,preventScrollReset:o,relative:i,unstable_viewTransition:s})}}),[m,u,h,r,a,n,t,o,i,s])}function ue(t){let n=e.useRef(A(t)),r=e.useRef(!1),a=c(),o=e.useMemo((()=>function(e,t){let n=A(e);return t&&t.forEach(((e,r)=>{n.has(r)||t.getAll(r).forEach((e=>{n.append(r,e)}))})),n}(a.search,r.current?null:n.current)),[a.search]),i=f(),s=e.useCallback(((e,t)=>{const n=A("function"==typeof e?e(o):e);r.current=!0,i("?"+n,t)}),[i,o]);return[o,s]}let le=0,ce=()=>`__${String(++le)}__`;function fe(){let{router:t}=oe(re.UseSubmit),{basename:n}=e.useContext(s),r=m();return e.useCallback(((e,a={})=>{!function(){if("undefined"==typeof document)throw new Error("You are calling submit during the server render. Try calling submit within a `useEffect` or callback instead.")}();let{action:o,method:i,encType:s,formData:u,body:l}=P(e,n);if(!1===a.navigate){let e=a.fetcherKey||ce();t.fetch(e,r,a.action||o,{preventScrollReset:a.preventScrollReset,formData:u,body:l,formMethod:a.method||i,formEncType:a.encType||s,unstable_flushSync:a.unstable_flushSync})}else t.navigate(a.action||o,{preventScrollReset:a.preventScrollReset,formData:u,body:l,formMethod:a.method||i,formEncType:a.encType||s,replace:a.replace,state:a.state,fromRouteId:r,unstable_flushSync:a.unstable_flushSync,unstable_viewTransition:a.unstable_viewTransition})}),[t,n,r])}function de(t,{relative:n}={}){let{basename:r}=e.useContext(s),a=e.useContext(h);a||E(!1);let[o]=a.matches.slice(-1),i={...l(t||".",{relative:n})},u=c();if(null==t){i.search=u.search;let e=new URLSearchParams(i.search);e.has("index")&&""===e.get("index")&&(e.delete("index"),i.search=e.toString()?`?${e.toString()}`:"")}return t&&"."!==t||!o.route.index||(i.search=i.search?i.search.replace(/^\?/,"?index&"):"?index"),"/"!==r&&(i.pathname="/"===i.pathname?r:_([r,i.pathname])),d(i)}function me({key:t}={}){let{router:n}=oe(re.UseFetcher),r=ie(ae.UseFetcher),a=e.useContext(V),o=e.useContext(h),i=o.matches[o.matches.length-1]?.route.id;a||E(!1),o||E(!1),null==i&&E(!1);let s=H?H():"",[u,l]=e.useState(t||s);t&&t!==u?l(t):u||l(ce()),e.useEffect((()=>(n.getFetcher(u),()=>{n.deleteFetcher(u)})),[n,u]);let c=e.useCallback(((e,t)=>{i||E(!1),n.fetch(u,i,e,t)}),[u,i,n]),f=fe(),d=e.useCallback(((e,t)=>{f(e,{...t,navigate:!1,fetcherKey:u})}),[u,f]),m=e.useMemo((()=>e.forwardRef(((t,n)=>e.createElement(te,Object.assign({},t,{navigate:!1,fetcherKey:u,ref:n}))))),[u]),p=r.fetchers.get(u)||T,w=a.get(u);return e.useMemo((()=>({Form:m,submit:d,load:c,...p,data:w})),[m,d,c,p,w])}function he(){let e=ie(ae.UseFetchers);return Array.from(e.fetchers.entries()).map((([e,t])=>({...t,key:e})))}let pe={};function we({getKey:t,storageKey:n}={}){let{router:r}=oe(re.UseScrollRestoration),{restoreScrollPosition:a,preventScrollReset:o}=ie(ae.UseScrollRestoration),{basename:i}=e.useContext(s),u=c(),l=p(),f=w();e.useEffect((()=>(window.history.scrollRestoration="manual",()=>{window.history.scrollRestoration="auto"})),[]),function(t,n){let{capture:r}=n||{};e.useEffect((()=>{let e=null!=r?{capture:r}:void 0;return window.addEventListener("pagehide",t,e),()=>{window.removeEventListener("pagehide",t,e)}}),[t,r])}(e.useCallback((()=>{if("idle"===f.state){let e=(t?t(u,l):null)||u.key;pe[e]=window.scrollY}try{sessionStorage.setItem(n||"react-router-scroll-positions",JSON.stringify(pe))}catch(e){}window.history.scrollRestoration="auto"}),[n,t,f.state,u,l])),"undefined"!=typeof document&&(e.useLayoutEffect((()=>{try{let e=sessionStorage.getItem(n||"react-router-scroll-positions");e&&(pe=JSON.parse(e))}catch(be){}}),[n]),e.useLayoutEffect((()=>{let e=t&&"/"!==i?(e,n)=>t({...e,pathname:g(e.pathname,i)||e.pathname},n):t,n=r?.enableScrollRestoration(pe,(()=>window.scrollY),e);return()=>n&&n()}),[r,i,t]),e.useLayoutEffect((()=>{if(!1!==a)if("number"!=typeof a){if(u.hash){let e=document.getElementById(decodeURIComponent(u.hash.slice(1)));if(e)return void e.scrollIntoView()}!0!==o&&window.scrollTo(0,0)}else window.scrollTo(0,a)}),[u,a,o]))}function ve(t,n){let{capture:r}=n||{};e.useEffect((()=>{let e=null!=r?{capture:r}:void 0;return window.addEventListener("beforeunload",t,e),()=>{window.removeEventListener("beforeunload",t,e)}}),[t,r])}function ge({when:t,message:n}){let r=v(t);e.useEffect((()=>{if("blocked"===r.state){window.confirm(n)?setTimeout(r.proceed,0):r.reset()}}),[r,n]),e.useEffect((()=>{"blocked"!==r.state||t||r.reset()}),[r,t])}function ye(t,n={}){let r=e.useContext(K);null==r&&E(!1);let{basename:a}=oe(re.useViewTransitionState),o=l(t,{relative:n.relative});if(!r.isTransitioning)return!1;let i=g(r.currentLocation.pathname,a)||r.currentLocation.pathname,s=g(r.nextLocation.pathname,a)||r.nextLocation.pathname;return null!=L(o.pathname,s)||null!=L(o.pathname,i)}export{J as BrowserRouter,te as Form,q as HashRouter,Z as Link,ee as NavLink,$ as RouterProvider,ne as ScrollRestoration,V as UNSAFE_FetchersContext,K as UNSAFE_ViewTransitionContext,we as UNSAFE_useScrollRestoration,N as createBrowserRouter,D as createHashRouter,A as createSearchParams,G as unstable_HistoryRouter,ge as unstable_usePrompt,ye as unstable_useViewTransitionState,ve as useBeforeUnload,me as useFetcher,he as useFetchers,de as useFormAction,se as useLinkClickHandler,ue as useSearchParams,fe as useSubmit};
     11import*as e from"react";import*as t from"react-dom";import{UNSAFE_mapRouteProperties as n,UNSAFE_logV6DeprecationWarnings as r,UNSAFE_DataRouterContext as a,UNSAFE_DataRouterStateContext as o,Router as i,UNSAFE_useRoutesImpl as s,UNSAFE_NavigationContext as u,useHref as c,useResolvedPath as l,useLocation as f,useNavigate as d,createPath as m,UNSAFE_useRouteId as h,UNSAFE_RouteContext as p,useMatches as w,useNavigation as v,useBlocker as g}from"react-router";export{AbortedDeferredError,Await,MemoryRouter,Navigate,NavigationType,Outlet,Route,Router,Routes,UNSAFE_DataRouterContext,UNSAFE_DataRouterStateContext,UNSAFE_LocationContext,UNSAFE_NavigationContext,UNSAFE_RouteContext,UNSAFE_useRouteId,createMemoryRouter,createPath,createRoutesFromChildren,createRoutesFromElements,defer,generatePath,isRouteErrorResponse,json,matchPath,matchRoutes,parsePath,redirect,redirectDocument,renderMatches,replace,resolvePath,useActionData,useAsyncError,useAsyncValue,useBlocker,useHref,useInRouterContext,useLoaderData,useLocation,useMatch,useMatches,useNavigate,useNavigation,useNavigationType,useOutlet,useOutletContext,useParams,useResolvedPath,useRevalidator,useRouteError,useRouteLoaderData,useRoutes}from"react-router";import{stripBasename as y,createRouter as b,createBrowserHistory as S,createHashHistory as E,UNSAFE_ErrorResponseImpl as R,UNSAFE_invariant as T,joinPaths as L,IDLE_FETCHER as x,matchPath as C}from"@remix-run/router";export{UNSAFE_ErrorResponseImpl}from"@remix-run/router";const _="application/x-www-form-urlencoded";function A(e){return null!=e&&"string"==typeof e.tagName}function F(e=""){return new URLSearchParams("string"==typeof e||Array.isArray(e)||e instanceof URLSearchParams?e:Object.keys(e).reduce(((t,n)=>{let r=e[n];return t.concat(Array.isArray(r)?r.map((e=>[n,e])):[[n,r]])}),[]))}let U=null;const k=new Set(["application/x-www-form-urlencoded","multipart/form-data","text/plain"]);function N(e){return null==e||k.has(e)?e:null}function P(e,t){let n,r,a,o,i;if(A(s=e)&&"form"===s.tagName.toLowerCase()){let i=e.getAttribute("action");r=i?y(i,t):null,n=e.getAttribute("method")||"get",a=N(e.getAttribute("enctype"))||_,o=new FormData(e)}else if(function(e){return A(e)&&"button"===e.tagName.toLowerCase()}(e)||function(e){return A(e)&&"input"===e.tagName.toLowerCase()}(e)&&("submit"===e.type||"image"===e.type)){let i=e.form;if(null==i)throw new Error('Cannot submit a <button> or <input type="submit"> without a <form>');let s=e.getAttribute("formaction")||i.getAttribute("action");if(r=s?y(s,t):null,n=e.getAttribute("formmethod")||i.getAttribute("method")||"get",a=N(e.getAttribute("formenctype"))||N(i.getAttribute("enctype"))||_,o=new FormData(i,e),!function(){if(null===U)try{new FormData(document.createElement("form"),0),U=!1}catch(e){U=!0}return U}()){let{name:t,type:n,value:r}=e;if("image"===n){let e=t?`${t}.`:"";o.append(`${e}x`,"0"),o.append(`${e}y`,"0")}else t&&o.append(t,r)}}else{if(A(e))throw new Error('Cannot submit element that is not <form>, <button>, or <input type="submit|image">');n="get",r=null,a=_,i=e}var s;return o&&"text/plain"===a&&(i=o,o=void 0),{action:r,method:n.toLowerCase(),encType:a,formData:o,body:i}}try{window.__reactRouterVersion="6"}catch(Se){}function D(e,t){return b({basename:t?.basename,future:{...t?.future,v7_prependBasename:!0},history:S({window:t?.window}),hydrationData:t?.hydrationData||K(),routes:e,mapRouteProperties:n,dataStrategy:t?.dataStrategy,patchRoutesOnNavigation:t?.patchRoutesOnNavigation,window:t?.window}).initialize()}function O(e,t){return b({basename:t?.basename,future:{...t?.future,v7_prependBasename:!0},history:E({window:t?.window}),hydrationData:t?.hydrationData||K(),routes:e,mapRouteProperties:n,dataStrategy:t?.dataStrategy,patchRoutesOnNavigation:t?.patchRoutesOnNavigation,window:t?.window}).initialize()}function K(){let e=window?.__staticRouterHydrationData;return e&&e.errors&&(e={...e,errors:M(e.errors)}),e}function M(e){if(!e)return null;let t=Object.entries(e),n={};for(let[r,a]of t)if(a&&"RouteErrorResponse"===a.__type)n[r]=new R(a.status,a.statusText,a.data,!0===a.internal);else if(a&&"Error"===a.__type){if(a.__subType){let e=window[a.__subType];if("function"==typeof e)try{let t=new e(a.message);t.stack="",n[r]=t}catch(Se){}}if(null==n[r]){let e=new Error(a.message);e.stack="",n[r]=e}}else n[r]=a;return n}const j=e.createContext({isTransitioning:!1}),I=e.createContext(new Map),V=e.startTransition,H=t.flushSync,z=e.useId;function B(e){H?H(e):e()}class ${status="pending";constructor(){this.promise=new Promise(((e,t)=>{this.resolve=t=>{"pending"===this.status&&(this.status="resolved",e(t))},this.reject=e=>{"pending"===this.status&&(this.status="rejected",t(e))}}))}}function W({fallbackElement:t,router:n,future:s}){let[u,c]=e.useState(n.state),[l,f]=e.useState(),[d,m]=e.useState({isTransitioning:!1}),[h,p]=e.useState(),[w,v]=e.useState(),[g,y]=e.useState(),b=e.useRef(new Map),{v7_startTransition:S}=s||{},E=e.useCallback((e=>{S?function(e){V?V(e):e()}(e):e()}),[S]),R=e.useCallback(((e,{deletedFetchers:t,flushSync:r,viewTransitionOpts:a})=>{t.forEach((e=>b.current.delete(e))),e.fetchers.forEach(((e,t)=>{void 0!==e.data&&b.current.set(t,e.data)}));let o=null==n.window||null==n.window.document||"function"!=typeof n.window.document.startViewTransition;if(a&&!o){if(r){B((()=>{w&&(h&&h.resolve(),w.skipTransition()),m({isTransitioning:!0,flushSync:!0,currentLocation:a.currentLocation,nextLocation:a.nextLocation})}));let t=n.window.document.startViewTransition((()=>{B((()=>c(e)))}));return t.finished.finally((()=>{B((()=>{p(void 0),v(void 0),f(void 0),m({isTransitioning:!1})}))})),void B((()=>v(t)))}w?(h&&h.resolve(),w.skipTransition(),y({state:e,currentLocation:a.currentLocation,nextLocation:a.nextLocation})):(f(e),m({isTransitioning:!0,flushSync:!1,currentLocation:a.currentLocation,nextLocation:a.nextLocation}))}else r?B((()=>c(e))):E((()=>c(e)))}),[n.window,w,h,b,E]);e.useLayoutEffect((()=>n.subscribe(R)),[n,R]),e.useEffect((()=>{d.isTransitioning&&!d.flushSync&&p(new $)}),[d]),e.useEffect((()=>{if(h&&l&&n.window){let e=l,t=h.promise,r=n.window.document.startViewTransition((async()=>{E((()=>c(e))),await t}));r.finished.finally((()=>{p(void 0),v(void 0),f(void 0),m({isTransitioning:!1})})),v(r)}}),[E,l,h,n.window]),e.useEffect((()=>{h&&l&&u.location.key===l.location.key&&h.resolve()}),[h,w,u.location,l]),e.useEffect((()=>{!d.isTransitioning&&g&&(f(g.state),m({isTransitioning:!0,flushSync:!1,currentLocation:g.currentLocation,nextLocation:g.nextLocation}),y(void 0))}),[d.isTransitioning,g]),e.useEffect((()=>{}),[]);let T=e.useMemo((()=>({createHref:n.createHref,encodeLocation:n.encodeLocation,go:e=>n.navigate(e),push:(e,t,r)=>n.navigate(e,{state:t,preventScrollReset:r?.preventScrollReset}),replace:(e,t,r)=>n.navigate(e,{replace:!0,state:t,preventScrollReset:r?.preventScrollReset})})),[n]),L=n.basename||"/",x=e.useMemo((()=>({router:n,navigator:T,static:!1,basename:L})),[n,T,L]),C=e.useMemo((()=>({v7_relativeSplatPath:n.future.v7_relativeSplatPath})),[n.future.v7_relativeSplatPath]);return e.useEffect((()=>r(s,n.future)),[s,n.future]),e.createElement(e.Fragment,null,e.createElement(a.Provider,{value:x},e.createElement(o.Provider,{value:u},e.createElement(I.Provider,{value:b.current},e.createElement(j.Provider,{value:d},e.createElement(i,{basename:L,location:u.location,navigationType:u.historyAction,navigator:T,future:C},u.initialized||n.future.v7_partialHydration?e.createElement(Y,{routes:n.routes,future:n.future,state:u}):t))))),null)}const Y=e.memo(J);function J({routes:e,future:t,state:n}){return s(e,void 0,n,t)}function q({basename:t,children:n,future:a,window:o}){let s=e.useRef();null==s.current&&(s.current=S({window:o,v5Compat:!0}));let u=s.current,[c,l]=e.useState({action:u.action,location:u.location}),{v7_startTransition:f}=a||{},d=e.useCallback((e=>{f&&V?V((()=>l(e))):l(e)}),[l,f]);return e.useLayoutEffect((()=>u.listen(d)),[u,d]),e.useEffect((()=>r(a)),[a]),e.createElement(i,{basename:t,children:n,location:c.location,navigationType:c.action,navigator:u,future:a})}function G({basename:t,children:n,future:a,window:o}){let s=e.useRef();null==s.current&&(s.current=E({window:o,v5Compat:!0}));let u=s.current,[c,l]=e.useState({action:u.action,location:u.location}),{v7_startTransition:f}=a||{},d=e.useCallback((e=>{f&&V?V((()=>l(e))):l(e)}),[l,f]);return e.useLayoutEffect((()=>u.listen(d)),[u,d]),e.useEffect((()=>r(a)),[a]),e.createElement(i,{basename:t,children:n,location:c.location,navigationType:c.action,navigator:u,future:a})}function Q({basename:t,children:n,future:a,history:o}){let[s,u]=e.useState({action:o.action,location:o.location}),{v7_startTransition:c}=a||{},l=e.useCallback((e=>{c&&V?V((()=>u(e))):u(e)}),[u,c]);return e.useLayoutEffect((()=>o.listen(l)),[o,l]),e.useEffect((()=>r(a)),[a]),e.createElement(i,{basename:t,children:n,location:s.location,navigationType:s.action,navigator:o,future:a})}const X="undefined"!=typeof window&&void 0!==window.document&&void 0!==window.document.createElement,Z=/^(?:[a-z][a-z0-9+.-]*:|\/\/)/i,ee=e.forwardRef((function({onClick:t,relative:n,reloadDocument:r,replace:a,state:o,target:i,to:s,preventScrollReset:l,viewTransition:f,...d},m){let h,{basename:p}=e.useContext(u),w=!1;if("string"==typeof s&&Z.test(s)&&(h=s,X))try{let e=new URL(window.location.href),t=s.startsWith("//")?new URL(e.protocol+s):new URL(s),n=y(t.pathname,p);t.origin===e.origin&&null!=n?s=n+t.search+t.hash:w=!0}catch(Se){}let v=c(s,{relative:n}),g=ue(s,{replace:a,state:o,target:i,preventScrollReset:l,relative:n,viewTransition:f});return e.createElement("a",Object.assign({},d,{href:h||v,onClick:w||r?t:function(e){t&&t(e),e.defaultPrevented||g(e)},ref:m,target:i}))})),te=e.forwardRef((function({"aria-current":t="page",caseSensitive:n=!1,className:r="",end:a=!1,style:i,to:s,viewTransition:c,children:d,...m},h){let p=l(s,{relative:m.relative}),w=f(),v=e.useContext(o),{navigator:g,basename:b}=e.useContext(u),S=null!=v&&be(p)&&!0===c,E=g.encodeLocation?g.encodeLocation(p).pathname:p.pathname,R=w.pathname,T=v&&v.navigation&&v.navigation.location?v.navigation.location.pathname:null;n||(R=R.toLowerCase(),T=T?T.toLowerCase():null,E=E.toLowerCase()),T&&b&&(T=y(T,b)||T);const L="/"!==E&&E.endsWith("/")?E.length-1:E.length;let x,C=R===E||!a&&R.startsWith(E)&&"/"===R.charAt(L),_=null!=T&&(T===E||!a&&T.startsWith(E)&&"/"===T.charAt(E.length)),A={isActive:C,isPending:_,isTransitioning:S},F=C?t:void 0;x="function"==typeof r?r(A):[r,C?"active":null,_?"pending":null,S?"transitioning":null].filter(Boolean).join(" ");let U="function"==typeof i?i(A):i;return e.createElement(ee,Object.assign({},m,{"aria-current":F,className:x,ref:h,style:U,to:s,viewTransition:c}),"function"==typeof d?d(A):d)})),ne=e.forwardRef((({fetcherKey:t,navigate:n,reloadDocument:r,replace:a,state:o,method:i="get",action:s,onSubmit:u,relative:c,preventScrollReset:l,viewTransition:f,...d},m)=>{let h=de(),p=me(s,{relative:c}),w="get"===i.toLowerCase()?"get":"post";return e.createElement("form",Object.assign({ref:m,method:w,action:p,onSubmit:r?u:e=>{if(u&&u(e),e.defaultPrevented)return;e.preventDefault();let r=e.nativeEvent.submitter,s=r?.getAttribute("formmethod")||i;h(r||e.currentTarget,{fetcherKey:t,method:s,navigate:n,replace:a,state:o,relative:c,preventScrollReset:l,viewTransition:f})}},d))}));function re({getKey:e,storageKey:t}){return ve({getKey:e,storageKey:t}),null}var ae=function(e){return e.UseScrollRestoration="useScrollRestoration",e.UseSubmit="useSubmit",e.UseSubmitFetcher="useSubmitFetcher",e.UseFetcher="useFetcher",e.useViewTransitionState="useViewTransitionState",e}(ae||{}),oe=function(e){return e.UseFetcher="useFetcher",e.UseFetchers="useFetchers",e.UseScrollRestoration="useScrollRestoration",e}(oe||{});function ie(t){let n=e.useContext(a);return n||T(!1),n}function se(t){let n=e.useContext(o);return n||T(!1),n}function ue(t,{target:n,replace:r,state:a,preventScrollReset:o,relative:i,viewTransition:s}={}){let u=d(),c=f(),h=l(t,{relative:i});return e.useCallback((e=>{if(function(e,t){return!(0!==e.button||t&&"_self"!==t||function(e){return!!(e.metaKey||e.altKey||e.ctrlKey||e.shiftKey)}(e))}(e,n)){e.preventDefault();let n=void 0!==r?r:m(c)===m(h);u(t,{replace:n,state:a,preventScrollReset:o,relative:i,viewTransition:s})}}),[c,u,h,r,a,n,t,o,i,s])}function ce(t){let n=e.useRef(F(t)),r=e.useRef(!1),a=f(),o=e.useMemo((()=>function(e,t){let n=F(e);return t&&t.forEach(((e,r)=>{n.has(r)||t.getAll(r).forEach((e=>{n.append(r,e)}))})),n}(a.search,r.current?null:n.current)),[a.search]),i=d(),s=e.useCallback(((e,t)=>{const n=F("function"==typeof e?e(o):e);r.current=!0,i("?"+n,t)}),[i,o]);return[o,s]}let le=0,fe=()=>`__${String(++le)}__`;function de(){let{router:t}=ie(ae.UseSubmit),{basename:n}=e.useContext(u),r=h();return e.useCallback(((e,a={})=>{!function(){if("undefined"==typeof document)throw new Error("You are calling submit during the server render. Try calling submit within a `useEffect` or callback instead.")}();let{action:o,method:i,encType:s,formData:u,body:c}=P(e,n);if(!1===a.navigate){let e=a.fetcherKey||fe();t.fetch(e,r,a.action||o,{preventScrollReset:a.preventScrollReset,formData:u,body:c,formMethod:a.method||i,formEncType:a.encType||s,flushSync:a.flushSync})}else t.navigate(a.action||o,{preventScrollReset:a.preventScrollReset,formData:u,body:c,formMethod:a.method||i,formEncType:a.encType||s,replace:a.replace,state:a.state,fromRouteId:r,flushSync:a.flushSync,viewTransition:a.viewTransition})}),[t,n,r])}function me(t,{relative:n}={}){let{basename:r}=e.useContext(u),a=e.useContext(p);a||T(!1);let[o]=a.matches.slice(-1),i={...l(t||".",{relative:n})},s=f();if(null==t){i.search=s.search;let e=new URLSearchParams(i.search),t=e.getAll("index");if(t.some((e=>""===e))){e.delete("index"),t.filter((e=>e)).forEach((t=>e.append("index",t)));let n=e.toString();i.search=n?`?${n}`:""}}return t&&"."!==t||!o.route.index||(i.search=i.search?i.search.replace(/^\?/,"?index&"):"?index"),"/"!==r&&(i.pathname="/"===i.pathname?r:L([r,i.pathname])),m(i)}function he({key:t}={}){let{router:n}=ie(ae.UseFetcher),r=se(oe.UseFetcher),a=e.useContext(I),o=e.useContext(p),i=o.matches[o.matches.length-1]?.route.id;a||T(!1),o||T(!1),null==i&&T(!1);let s=z?z():"",[u,c]=e.useState(t||s);t&&t!==u?c(t):u||c(fe()),e.useEffect((()=>(n.getFetcher(u),()=>{n.deleteFetcher(u)})),[n,u]);let l=e.useCallback(((e,t)=>{i||T(!1),n.fetch(u,i,e,t)}),[u,i,n]),f=de(),d=e.useCallback(((e,t)=>{f(e,{...t,navigate:!1,fetcherKey:u})}),[u,f]),m=e.useMemo((()=>e.forwardRef(((t,n)=>e.createElement(ne,Object.assign({},t,{navigate:!1,fetcherKey:u,ref:n}))))),[u]),h=r.fetchers.get(u)||x,w=a.get(u);return e.useMemo((()=>({Form:m,submit:d,load:l,...h,data:w})),[m,d,l,h,w])}function pe(){let e=se(oe.UseFetchers);return Array.from(e.fetchers.entries()).map((([e,t])=>({...t,key:e})))}let we={};function ve({getKey:t,storageKey:n}={}){let{router:r}=ie(ae.UseScrollRestoration),{restoreScrollPosition:a,preventScrollReset:o}=se(oe.UseScrollRestoration),{basename:i}=e.useContext(u),s=f(),c=w(),l=v();e.useEffect((()=>(window.history.scrollRestoration="manual",()=>{window.history.scrollRestoration="auto"})),[]),function(t,n){let{capture:r}=n||{};e.useEffect((()=>{let e=null!=r?{capture:r}:void 0;return window.addEventListener("pagehide",t,e),()=>{window.removeEventListener("pagehide",t,e)}}),[t,r])}(e.useCallback((()=>{if("idle"===l.state){let e=(t?t(s,c):null)||s.key;we[e]=window.scrollY}try{sessionStorage.setItem(n||"react-router-scroll-positions",JSON.stringify(we))}catch(e){}window.history.scrollRestoration="auto"}),[n,t,l.state,s,c])),"undefined"!=typeof document&&(e.useLayoutEffect((()=>{try{let e=sessionStorage.getItem(n||"react-router-scroll-positions");e&&(we=JSON.parse(e))}catch(Se){}}),[n]),e.useLayoutEffect((()=>{let e=t&&"/"!==i?(e,n)=>t({...e,pathname:y(e.pathname,i)||e.pathname},n):t,n=r?.enableScrollRestoration(we,(()=>window.scrollY),e);return()=>n&&n()}),[r,i,t]),e.useLayoutEffect((()=>{if(!1!==a)if("number"!=typeof a){if(s.hash){let e=document.getElementById(decodeURIComponent(s.hash.slice(1)));if(e)return void e.scrollIntoView()}!0!==o&&window.scrollTo(0,0)}else window.scrollTo(0,a)}),[s,a,o]))}function ge(t,n){let{capture:r}=n||{};e.useEffect((()=>{let e=null!=r?{capture:r}:void 0;return window.addEventListener("beforeunload",t,e),()=>{window.removeEventListener("beforeunload",t,e)}}),[t,r])}function ye({when:t,message:n}){let r=g(t);e.useEffect((()=>{if("blocked"===r.state){window.confirm(n)?setTimeout(r.proceed,0):r.reset()}}),[r,n]),e.useEffect((()=>{"blocked"!==r.state||t||r.reset()}),[r,t])}function be(t,n={}){let r=e.useContext(j);null==r&&T(!1);let{basename:a}=ie(ae.useViewTransitionState),o=l(t,{relative:n.relative});if(!r.isTransitioning)return!1;let i=y(r.currentLocation.pathname,a)||r.currentLocation.pathname,s=y(r.nextLocation.pathname,a)||r.nextLocation.pathname;return null!=C(o.pathname,s)||null!=C(o.pathname,i)}export{q as BrowserRouter,ne as Form,G as HashRouter,ee as Link,te as NavLink,W as RouterProvider,re as ScrollRestoration,I as UNSAFE_FetchersContext,j as UNSAFE_ViewTransitionContext,ve as UNSAFE_useScrollRestoration,D as createBrowserRouter,O as createHashRouter,F as createSearchParams,Q as unstable_HistoryRouter,ye as unstable_usePrompt,ge as useBeforeUnload,he as useFetcher,pe as useFetchers,me as useFormAction,ue as useLinkClickHandler,ce as useSearchParams,de as useSubmit,be as useViewTransitionState};
    1212//# sourceMappingURL=react-router-dom.production.min.js.map
  • imaps-frontend/node_modules/react-router-dom/dist/react-router-dom.production.min.js.map

    rd565449 r0c6b92a  
    1 {"version":3,"file":"react-router-dom.production.min.js","sources":["../dom.ts","../index.tsx"],"sourcesContent":["import type {\n  FormEncType,\n  HTMLFormMethod,\n  RelativeRoutingType,\n} from \"@remix-run/router\";\nimport { stripBasename, UNSAFE_warning as warning } from \"@remix-run/router\";\n\nexport const defaultMethod: HTMLFormMethod = \"get\";\nconst defaultEncType: FormEncType = \"application/x-www-form-urlencoded\";\n\nexport function isHtmlElement(object: any): object is HTMLElement {\n  return object != null && typeof object.tagName === \"string\";\n}\n\nexport function isButtonElement(object: any): object is HTMLButtonElement {\n  return isHtmlElement(object) && object.tagName.toLowerCase() === \"button\";\n}\n\nexport function isFormElement(object: any): object is HTMLFormElement {\n  return isHtmlElement(object) && object.tagName.toLowerCase() === \"form\";\n}\n\nexport function isInputElement(object: any): object is HTMLInputElement {\n  return isHtmlElement(object) && object.tagName.toLowerCase() === \"input\";\n}\n\ntype LimitedMouseEvent = Pick<\n  MouseEvent,\n  \"button\" | \"metaKey\" | \"altKey\" | \"ctrlKey\" | \"shiftKey\"\n>;\n\nfunction isModifiedEvent(event: LimitedMouseEvent) {\n  return !!(event.metaKey || event.altKey || event.ctrlKey || event.shiftKey);\n}\n\nexport function shouldProcessLinkClick(\n  event: LimitedMouseEvent,\n  target?: string\n) {\n  return (\n    event.button === 0 && // Ignore everything but left clicks\n    (!target || target === \"_self\") && // Let browser handle \"target=_blank\" etc.\n    !isModifiedEvent(event) // Ignore clicks with modifier keys\n  );\n}\n\nexport type ParamKeyValuePair = [string, string];\n\nexport type URLSearchParamsInit =\n  | string\n  | ParamKeyValuePair[]\n  | Record<string, string | string[]>\n  | URLSearchParams;\n\n/**\n * Creates a URLSearchParams object using the given initializer.\n *\n * This is identical to `new URLSearchParams(init)` except it also\n * supports arrays as values in the object form of the initializer\n * instead of just strings. This is convenient when you need multiple\n * values for a given key, but don't want to use an array initializer.\n *\n * For example, instead of:\n *\n *   let searchParams = new URLSearchParams([\n *     ['sort', 'name'],\n *     ['sort', 'price']\n *   ]);\n *\n * you can do:\n *\n *   let searchParams = createSearchParams({\n *     sort: ['name', 'price']\n *   });\n */\nexport function createSearchParams(\n  init: URLSearchParamsInit = \"\"\n): URLSearchParams {\n  return new URLSearchParams(\n    typeof init === \"string\" ||\n    Array.isArray(init) ||\n    init instanceof URLSearchParams\n      ? init\n      : Object.keys(init).reduce((memo, key) => {\n          let value = init[key];\n          return memo.concat(\n            Array.isArray(value) ? value.map((v) => [key, v]) : [[key, value]]\n          );\n        }, [] as ParamKeyValuePair[])\n  );\n}\n\nexport function getSearchParamsForLocation(\n  locationSearch: string,\n  defaultSearchParams: URLSearchParams | null\n) {\n  let searchParams = createSearchParams(locationSearch);\n\n  if (defaultSearchParams) {\n    // Use `defaultSearchParams.forEach(...)` here instead of iterating of\n    // `defaultSearchParams.keys()` to work-around a bug in Firefox related to\n    // web extensions. Relevant Bugzilla tickets:\n    // https://bugzilla.mozilla.org/show_bug.cgi?id=1414602\n    // https://bugzilla.mozilla.org/show_bug.cgi?id=1023984\n    defaultSearchParams.forEach((_, key) => {\n      if (!searchParams.has(key)) {\n        defaultSearchParams.getAll(key).forEach((value) => {\n          searchParams.append(key, value);\n        });\n      }\n    });\n  }\n\n  return searchParams;\n}\n\n// Thanks https://github.com/sindresorhus/type-fest!\ntype JsonObject = { [Key in string]: JsonValue } & {\n  [Key in string]?: JsonValue | undefined;\n};\ntype JsonArray = JsonValue[] | readonly JsonValue[];\ntype JsonPrimitive = string | number | boolean | null;\ntype JsonValue = JsonPrimitive | JsonObject | JsonArray;\n\nexport type SubmitTarget =\n  | HTMLFormElement\n  | HTMLButtonElement\n  | HTMLInputElement\n  | FormData\n  | URLSearchParams\n  | JsonValue\n  | null;\n\n// One-time check for submitter support\nlet _formDataSupportsSubmitter: boolean | null = null;\n\nfunction isFormDataSubmitterSupported() {\n  if (_formDataSupportsSubmitter === null) {\n    try {\n      new FormData(\n        document.createElement(\"form\"),\n        // @ts-expect-error if FormData supports the submitter parameter, this will throw\n        0\n      );\n      _formDataSupportsSubmitter = false;\n    } catch (e) {\n      _formDataSupportsSubmitter = true;\n    }\n  }\n  return _formDataSupportsSubmitter;\n}\n\n/**\n * Submit options shared by both navigations and fetchers\n */\ninterface SharedSubmitOptions {\n  /**\n   * The HTTP method used to submit the form. Overrides `<form method>`.\n   * Defaults to \"GET\".\n   */\n  method?: HTMLFormMethod;\n\n  /**\n   * The action URL path used to submit the form. Overrides `<form action>`.\n   * Defaults to the path of the current route.\n   */\n  action?: string;\n\n  /**\n   * The encoding used to submit the form. Overrides `<form encType>`.\n   * Defaults to \"application/x-www-form-urlencoded\".\n   */\n  encType?: FormEncType;\n\n  /**\n   * Determines whether the form action is relative to the route hierarchy or\n   * the pathname.  Use this if you want to opt out of navigating the route\n   * hierarchy and want to instead route based on /-delimited URL segments\n   */\n  relative?: RelativeRoutingType;\n\n  /**\n   * In browser-based environments, prevent resetting scroll after this\n   * navigation when using the <ScrollRestoration> component\n   */\n  preventScrollReset?: boolean;\n\n  /**\n   * Enable flushSync for this submission's state updates\n   */\n  unstable_flushSync?: boolean;\n}\n\n/**\n * Submit options available to fetchers\n */\nexport interface FetcherSubmitOptions extends SharedSubmitOptions {}\n\n/**\n * Submit options available to navigations\n */\nexport interface SubmitOptions extends FetcherSubmitOptions {\n  /**\n   * Set `true` to replace the current entry in the browser's history stack\n   * instead of creating a new one (i.e. stay on \"the same page\"). Defaults\n   * to `false`.\n   */\n  replace?: boolean;\n\n  /**\n   * State object to add to the history stack entry for this navigation\n   */\n  state?: any;\n\n  /**\n   * Indicate a specific fetcherKey to use when using navigate=false\n   */\n  fetcherKey?: string;\n\n  /**\n   * navigate=false will use a fetcher instead of a navigation\n   */\n  navigate?: boolean;\n\n  /**\n   * Enable view transitions on this submission navigation\n   */\n  unstable_viewTransition?: boolean;\n}\n\nconst supportedFormEncTypes: Set<FormEncType> = new Set([\n  \"application/x-www-form-urlencoded\",\n  \"multipart/form-data\",\n  \"text/plain\",\n]);\n\nfunction getFormEncType(encType: string | null) {\n  if (encType != null && !supportedFormEncTypes.has(encType as FormEncType)) {\n    warning(\n      false,\n      `\"${encType}\" is not a valid \\`encType\\` for \\`<Form>\\`/\\`<fetcher.Form>\\` ` +\n        `and will default to \"${defaultEncType}\"`\n    );\n\n    return null;\n  }\n  return encType;\n}\n\nexport function getFormSubmissionInfo(\n  target: SubmitTarget,\n  basename: string\n): {\n  action: string | null;\n  method: string;\n  encType: string;\n  formData: FormData | undefined;\n  body: any;\n} {\n  let method: string;\n  let action: string | null;\n  let encType: string;\n  let formData: FormData | undefined;\n  let body: any;\n\n  if (isFormElement(target)) {\n    // When grabbing the action from the element, it will have had the basename\n    // prefixed to ensure non-JS scenarios work, so strip it since we'll\n    // re-prefix in the router\n    let attr = target.getAttribute(\"action\");\n    action = attr ? stripBasename(attr, basename) : null;\n    method = target.getAttribute(\"method\") || defaultMethod;\n    encType = getFormEncType(target.getAttribute(\"enctype\")) || defaultEncType;\n\n    formData = new FormData(target);\n  } else if (\n    isButtonElement(target) ||\n    (isInputElement(target) &&\n      (target.type === \"submit\" || target.type === \"image\"))\n  ) {\n    let form = target.form;\n\n    if (form == null) {\n      throw new Error(\n        `Cannot submit a <button> or <input type=\"submit\"> without a <form>`\n      );\n    }\n\n    // <button>/<input type=\"submit\"> may override attributes of <form>\n\n    // When grabbing the action from the element, it will have had the basename\n    // prefixed to ensure non-JS scenarios work, so strip it since we'll\n    // re-prefix in the router\n    let attr = target.getAttribute(\"formaction\") || form.getAttribute(\"action\");\n    action = attr ? stripBasename(attr, basename) : null;\n\n    method =\n      target.getAttribute(\"formmethod\") ||\n      form.getAttribute(\"method\") ||\n      defaultMethod;\n    encType =\n      getFormEncType(target.getAttribute(\"formenctype\")) ||\n      getFormEncType(form.getAttribute(\"enctype\")) ||\n      defaultEncType;\n\n    // Build a FormData object populated from a form and submitter\n    formData = new FormData(form, target);\n\n    // If this browser doesn't support the `FormData(el, submitter)` format,\n    // then tack on the submitter value at the end.  This is a lightweight\n    // solution that is not 100% spec compliant.  For complete support in older\n    // browsers, consider using the `formdata-submitter-polyfill` package\n    if (!isFormDataSubmitterSupported()) {\n      let { name, type, value } = target;\n      if (type === \"image\") {\n        let prefix = name ? `${name}.` : \"\";\n        formData.append(`${prefix}x`, \"0\");\n        formData.append(`${prefix}y`, \"0\");\n      } else if (name) {\n        formData.append(name, value);\n      }\n    }\n  } else if (isHtmlElement(target)) {\n    throw new Error(\n      `Cannot submit element that is not <form>, <button>, or ` +\n        `<input type=\"submit|image\">`\n    );\n  } else {\n    method = defaultMethod;\n    action = null;\n    encType = defaultEncType;\n    body = target;\n  }\n\n  // Send body for <Form encType=\"text/plain\" so we encode it into text\n  if (formData && encType === \"text/plain\") {\n    body = formData;\n    formData = undefined;\n  }\n\n  return { action, method: method.toLowerCase(), encType, formData, body };\n}\n","/**\n * NOTE: If you refactor this to split up the modules into separate files,\n * you'll need to update the rollup config for react-router-dom-v5-compat.\n */\nimport * as React from \"react\";\nimport * as ReactDOM from \"react-dom\";\nimport type {\n  DataRouteObject,\n  FutureConfig,\n  Location,\n  NavigateOptions,\n  NavigationType,\n  Navigator,\n  RelativeRoutingType,\n  RouteObject,\n  RouterProps,\n  RouterProviderProps,\n  To,\n  unstable_PatchRoutesOnMissFunction,\n} from \"react-router\";\nimport {\n  Router,\n  createPath,\n  useHref,\n  useLocation,\n  useMatches,\n  useNavigate,\n  useNavigation,\n  useResolvedPath,\n  useBlocker,\n  UNSAFE_DataRouterContext as DataRouterContext,\n  UNSAFE_DataRouterStateContext as DataRouterStateContext,\n  UNSAFE_NavigationContext as NavigationContext,\n  UNSAFE_RouteContext as RouteContext,\n  UNSAFE_mapRouteProperties as mapRouteProperties,\n  UNSAFE_useRouteId as useRouteId,\n  UNSAFE_useRoutesImpl as useRoutesImpl,\n} from \"react-router\";\nimport type {\n  BrowserHistory,\n  unstable_DataStrategyFunction,\n  unstable_DataStrategyFunctionArgs,\n  unstable_DataStrategyMatch,\n  Fetcher,\n  FormEncType,\n  FormMethod,\n  FutureConfig as RouterFutureConfig,\n  GetScrollRestorationKeyFunction,\n  HashHistory,\n  History,\n  HTMLFormMethod,\n  HydrationState,\n  Router as RemixRouter,\n  V7_FormMethod,\n  RouterState,\n  RouterSubscriber,\n  BlockerFunction,\n} from \"@remix-run/router\";\nimport {\n  createRouter,\n  createBrowserHistory,\n  createHashHistory,\n  joinPaths,\n  stripBasename,\n  UNSAFE_ErrorResponseImpl as ErrorResponseImpl,\n  UNSAFE_invariant as invariant,\n  UNSAFE_warning as warning,\n  matchPath,\n  IDLE_FETCHER,\n} from \"@remix-run/router\";\n\nimport type {\n  SubmitOptions,\n  ParamKeyValuePair,\n  URLSearchParamsInit,\n  SubmitTarget,\n  FetcherSubmitOptions,\n} from \"./dom\";\nimport {\n  createSearchParams,\n  defaultMethod,\n  getFormSubmissionInfo,\n  getSearchParamsForLocation,\n  shouldProcessLinkClick,\n} from \"./dom\";\n\n////////////////////////////////////////////////////////////////////////////////\n//#region Re-exports\n////////////////////////////////////////////////////////////////////////////////\n\nexport type {\n  unstable_DataStrategyFunction,\n  unstable_DataStrategyFunctionArgs,\n  unstable_DataStrategyMatch,\n  FormEncType,\n  FormMethod,\n  GetScrollRestorationKeyFunction,\n  ParamKeyValuePair,\n  SubmitOptions,\n  URLSearchParamsInit,\n  V7_FormMethod,\n};\nexport { createSearchParams, ErrorResponseImpl as UNSAFE_ErrorResponseImpl };\n\n// Note: Keep in sync with react-router exports!\nexport type {\n  ActionFunction,\n  ActionFunctionArgs,\n  AwaitProps,\n  Blocker,\n  BlockerFunction,\n  DataRouteMatch,\n  DataRouteObject,\n  ErrorResponse,\n  Fetcher,\n  FutureConfig,\n  Hash,\n  IndexRouteObject,\n  IndexRouteProps,\n  JsonFunction,\n  LazyRouteFunction,\n  LayoutRouteProps,\n  LoaderFunction,\n  LoaderFunctionArgs,\n  Location,\n  MemoryRouterProps,\n  NavigateFunction,\n  NavigateOptions,\n  NavigateProps,\n  Navigation,\n  Navigator,\n  NonIndexRouteObject,\n  OutletProps,\n  Params,\n  ParamParseKey,\n  Path,\n  PathMatch,\n  Pathname,\n  PathParam,\n  PathPattern,\n  PathRouteProps,\n  RedirectFunction,\n  RelativeRoutingType,\n  RouteMatch,\n  RouteObject,\n  RouteProps,\n  RouterProps,\n  RouterProviderProps,\n  RoutesProps,\n  Search,\n  ShouldRevalidateFunction,\n  ShouldRevalidateFunctionArgs,\n  To,\n  UIMatch,\n  unstable_HandlerResult,\n  unstable_PatchRoutesOnMissFunction,\n} from \"react-router\";\nexport {\n  AbortedDeferredError,\n  Await,\n  MemoryRouter,\n  Navigate,\n  NavigationType,\n  Outlet,\n  Route,\n  Router,\n  Routes,\n  createMemoryRouter,\n  createPath,\n  createRoutesFromChildren,\n  createRoutesFromElements,\n  defer,\n  isRouteErrorResponse,\n  generatePath,\n  json,\n  matchPath,\n  matchRoutes,\n  parsePath,\n  redirect,\n  redirectDocument,\n  replace,\n  renderMatches,\n  resolvePath,\n  useActionData,\n  useAsyncError,\n  useAsyncValue,\n  useBlocker,\n  useHref,\n  useInRouterContext,\n  useLoaderData,\n  useLocation,\n  useMatch,\n  useMatches,\n  useNavigate,\n  useNavigation,\n  useNavigationType,\n  useOutlet,\n  useOutletContext,\n  useParams,\n  useResolvedPath,\n  useRevalidator,\n  useRouteError,\n  useRouteLoaderData,\n  useRoutes,\n} from \"react-router\";\n\n///////////////////////////////////////////////////////////////////////////////\n// DANGER! PLEASE READ ME!\n// We provide these exports as an escape hatch in the event that you need any\n// routing data that we don't provide an explicit API for. With that said, we\n// want to cover your use case if we can, so if you feel the need to use these\n// we want to hear from you. Let us know what you're building and we'll do our\n// best to make sure we can support you!\n//\n// We consider these exports an implementation detail and do not guarantee\n// against any breaking changes, regardless of the semver release. Use with\n// extreme caution and only if you understand the consequences. Godspeed.\n///////////////////////////////////////////////////////////////////////////////\n\n/** @internal */\nexport {\n  UNSAFE_DataRouterContext,\n  UNSAFE_DataRouterStateContext,\n  UNSAFE_NavigationContext,\n  UNSAFE_LocationContext,\n  UNSAFE_RouteContext,\n  UNSAFE_useRouteId,\n} from \"react-router\";\n//#endregion\n\ndeclare global {\n  var __staticRouterHydrationData: HydrationState | undefined;\n  var __reactRouterVersion: string;\n  interface Document {\n    startViewTransition(cb: () => Promise<void> | void): ViewTransition;\n  }\n}\n\n// HEY YOU! DON'T TOUCH THIS VARIABLE!\n//\n// It is replaced with the proper version at build time via a babel plugin in\n// the rollup config.\n//\n// Export a global property onto the window for React Router detection by the\n// Core Web Vitals Technology Report.  This way they can configure the `wappalyzer`\n// to detect and properly classify live websites as being built with React Router:\n// https://github.com/HTTPArchive/wappalyzer/blob/main/src/technologies/r.json\nconst REACT_ROUTER_VERSION = \"0\";\ntry {\n  window.__reactRouterVersion = REACT_ROUTER_VERSION;\n} catch (e) {\n  // no-op\n}\n\n////////////////////////////////////////////////////////////////////////////////\n//#region Routers\n////////////////////////////////////////////////////////////////////////////////\n\ninterface DOMRouterOpts {\n  basename?: string;\n  future?: Partial<Omit<RouterFutureConfig, \"v7_prependBasename\">>;\n  hydrationData?: HydrationState;\n  unstable_dataStrategy?: unstable_DataStrategyFunction;\n  unstable_patchRoutesOnMiss?: unstable_PatchRoutesOnMissFunction;\n  window?: Window;\n}\n\nexport function createBrowserRouter(\n  routes: RouteObject[],\n  opts?: DOMRouterOpts\n): RemixRouter {\n  return createRouter({\n    basename: opts?.basename,\n    future: {\n      ...opts?.future,\n      v7_prependBasename: true,\n    },\n    history: createBrowserHistory({ window: opts?.window }),\n    hydrationData: opts?.hydrationData || parseHydrationData(),\n    routes,\n    mapRouteProperties,\n    unstable_dataStrategy: opts?.unstable_dataStrategy,\n    unstable_patchRoutesOnMiss: opts?.unstable_patchRoutesOnMiss,\n    window: opts?.window,\n  }).initialize();\n}\n\nexport function createHashRouter(\n  routes: RouteObject[],\n  opts?: DOMRouterOpts\n): RemixRouter {\n  return createRouter({\n    basename: opts?.basename,\n    future: {\n      ...opts?.future,\n      v7_prependBasename: true,\n    },\n    history: createHashHistory({ window: opts?.window }),\n    hydrationData: opts?.hydrationData || parseHydrationData(),\n    routes,\n    mapRouteProperties,\n    unstable_dataStrategy: opts?.unstable_dataStrategy,\n    unstable_patchRoutesOnMiss: opts?.unstable_patchRoutesOnMiss,\n    window: opts?.window,\n  }).initialize();\n}\n\nfunction parseHydrationData(): HydrationState | undefined {\n  let state = window?.__staticRouterHydrationData;\n  if (state && state.errors) {\n    state = {\n      ...state,\n      errors: deserializeErrors(state.errors),\n    };\n  }\n  return state;\n}\n\nfunction deserializeErrors(\n  errors: RemixRouter[\"state\"][\"errors\"]\n): RemixRouter[\"state\"][\"errors\"] {\n  if (!errors) return null;\n  let entries = Object.entries(errors);\n  let serialized: RemixRouter[\"state\"][\"errors\"] = {};\n  for (let [key, val] of entries) {\n    // Hey you!  If you change this, please change the corresponding logic in\n    // serializeErrors in react-router-dom/server.tsx :)\n    if (val && val.__type === \"RouteErrorResponse\") {\n      serialized[key] = new ErrorResponseImpl(\n        val.status,\n        val.statusText,\n        val.data,\n        val.internal === true\n      );\n    } else if (val && val.__type === \"Error\") {\n      // Attempt to reconstruct the right type of Error (i.e., ReferenceError)\n      if (val.__subType) {\n        let ErrorConstructor = window[val.__subType];\n        if (typeof ErrorConstructor === \"function\") {\n          try {\n            // @ts-expect-error\n            let error = new ErrorConstructor(val.message);\n            // Wipe away the client-side stack trace.  Nothing to fill it in with\n            // because we don't serialize SSR stack traces for security reasons\n            error.stack = \"\";\n            serialized[key] = error;\n          } catch (e) {\n            // no-op - fall through and create a normal Error\n          }\n        }\n      }\n\n      if (serialized[key] == null) {\n        let error = new Error(val.message);\n        // Wipe away the client-side stack trace.  Nothing to fill it in with\n        // because we don't serialize SSR stack traces for security reasons\n        error.stack = \"\";\n        serialized[key] = error;\n      }\n    } else {\n      serialized[key] = val;\n    }\n  }\n  return serialized;\n}\n\n//#endregion\n\n////////////////////////////////////////////////////////////////////////////////\n//#region Contexts\n////////////////////////////////////////////////////////////////////////////////\n\ntype ViewTransitionContextObject =\n  | {\n      isTransitioning: false;\n    }\n  | {\n      isTransitioning: true;\n      flushSync: boolean;\n      currentLocation: Location;\n      nextLocation: Location;\n    };\n\nconst ViewTransitionContext = React.createContext<ViewTransitionContextObject>({\n  isTransitioning: false,\n});\nif (__DEV__) {\n  ViewTransitionContext.displayName = \"ViewTransition\";\n}\n\nexport { ViewTransitionContext as UNSAFE_ViewTransitionContext };\n\n// TODO: (v7) Change the useFetcher data from `any` to `unknown`\ntype FetchersContextObject = Map<string, any>;\n\nconst FetchersContext = React.createContext<FetchersContextObject>(new Map());\nif (__DEV__) {\n  FetchersContext.displayName = \"Fetchers\";\n}\n\nexport { FetchersContext as UNSAFE_FetchersContext };\n\n//#endregion\n\n////////////////////////////////////////////////////////////////////////////////\n//#region Components\n////////////////////////////////////////////////////////////////////////////////\n\n/**\n  Webpack + React 17 fails to compile on any of the following because webpack\n  complains that `startTransition` doesn't exist in `React`:\n  * import { startTransition } from \"react\"\n  * import * as React from from \"react\";\n    \"startTransition\" in React ? React.startTransition(() => setState()) : setState()\n  * import * as React from from \"react\";\n    \"startTransition\" in React ? React[\"startTransition\"](() => setState()) : setState()\n\n  Moving it to a constant such as the following solves the Webpack/React 17 issue:\n  * import * as React from from \"react\";\n    const START_TRANSITION = \"startTransition\";\n    START_TRANSITION in React ? React[START_TRANSITION](() => setState()) : setState()\n\n  However, that introduces webpack/terser minification issues in production builds\n  in React 18 where minification/obfuscation ends up removing the call of\n  React.startTransition entirely from the first half of the ternary.  Grabbing\n  this exported reference once up front resolves that issue.\n\n  See https://github.com/remix-run/react-router/issues/10579\n*/\nconst START_TRANSITION = \"startTransition\";\nconst startTransitionImpl = React[START_TRANSITION];\nconst FLUSH_SYNC = \"flushSync\";\nconst flushSyncImpl = ReactDOM[FLUSH_SYNC];\nconst USE_ID = \"useId\";\nconst useIdImpl = React[USE_ID];\n\nfunction startTransitionSafe(cb: () => void) {\n  if (startTransitionImpl) {\n    startTransitionImpl(cb);\n  } else {\n    cb();\n  }\n}\n\nfunction flushSyncSafe(cb: () => void) {\n  if (flushSyncImpl) {\n    flushSyncImpl(cb);\n  } else {\n    cb();\n  }\n}\n\ninterface ViewTransition {\n  finished: Promise<void>;\n  ready: Promise<void>;\n  updateCallbackDone: Promise<void>;\n  skipTransition(): void;\n}\n\nclass Deferred<T> {\n  status: \"pending\" | \"resolved\" | \"rejected\" = \"pending\";\n  promise: Promise<T>;\n  // @ts-expect-error - no initializer\n  resolve: (value: T) => void;\n  // @ts-expect-error - no initializer\n  reject: (reason?: unknown) => void;\n  constructor() {\n    this.promise = new Promise((resolve, reject) => {\n      this.resolve = (value) => {\n        if (this.status === \"pending\") {\n          this.status = \"resolved\";\n          resolve(value);\n        }\n      };\n      this.reject = (reason) => {\n        if (this.status === \"pending\") {\n          this.status = \"rejected\";\n          reject(reason);\n        }\n      };\n    });\n  }\n}\n\n/**\n * Given a Remix Router instance, render the appropriate UI\n */\nexport function RouterProvider({\n  fallbackElement,\n  router,\n  future,\n}: RouterProviderProps): React.ReactElement {\n  let [state, setStateImpl] = React.useState(router.state);\n  let [pendingState, setPendingState] = React.useState<RouterState>();\n  let [vtContext, setVtContext] = React.useState<ViewTransitionContextObject>({\n    isTransitioning: false,\n  });\n  let [renderDfd, setRenderDfd] = React.useState<Deferred<void>>();\n  let [transition, setTransition] = React.useState<ViewTransition>();\n  let [interruption, setInterruption] = React.useState<{\n    state: RouterState;\n    currentLocation: Location;\n    nextLocation: Location;\n  }>();\n  let fetcherData = React.useRef<Map<string, any>>(new Map());\n  let { v7_startTransition } = future || {};\n\n  let optInStartTransition = React.useCallback(\n    (cb: () => void) => {\n      if (v7_startTransition) {\n        startTransitionSafe(cb);\n      } else {\n        cb();\n      }\n    },\n    [v7_startTransition]\n  );\n\n  let setState = React.useCallback<RouterSubscriber>(\n    (\n      newState: RouterState,\n      {\n        deletedFetchers,\n        unstable_flushSync: flushSync,\n        unstable_viewTransitionOpts: viewTransitionOpts,\n      }\n    ) => {\n      deletedFetchers.forEach((key) => fetcherData.current.delete(key));\n      newState.fetchers.forEach((fetcher, key) => {\n        if (fetcher.data !== undefined) {\n          fetcherData.current.set(key, fetcher.data);\n        }\n      });\n\n      let isViewTransitionUnavailable =\n        router.window == null ||\n        router.window.document == null ||\n        typeof router.window.document.startViewTransition !== \"function\";\n\n      // If this isn't a view transition or it's not available in this browser,\n      // just update and be done with it\n      if (!viewTransitionOpts || isViewTransitionUnavailable) {\n        if (flushSync) {\n          flushSyncSafe(() => setStateImpl(newState));\n        } else {\n          optInStartTransition(() => setStateImpl(newState));\n        }\n        return;\n      }\n\n      // flushSync + startViewTransition\n      if (flushSync) {\n        // Flush through the context to mark DOM elements as transition=ing\n        flushSyncSafe(() => {\n          // Cancel any pending transitions\n          if (transition) {\n            renderDfd && renderDfd.resolve();\n            transition.skipTransition();\n          }\n          setVtContext({\n            isTransitioning: true,\n            flushSync: true,\n            currentLocation: viewTransitionOpts.currentLocation,\n            nextLocation: viewTransitionOpts.nextLocation,\n          });\n        });\n\n        // Update the DOM\n        let t = router.window!.document.startViewTransition(() => {\n          flushSyncSafe(() => setStateImpl(newState));\n        });\n\n        // Clean up after the animation completes\n        t.finished.finally(() => {\n          flushSyncSafe(() => {\n            setRenderDfd(undefined);\n            setTransition(undefined);\n            setPendingState(undefined);\n            setVtContext({ isTransitioning: false });\n          });\n        });\n\n        flushSyncSafe(() => setTransition(t));\n        return;\n      }\n\n      // startTransition + startViewTransition\n      if (transition) {\n        // Interrupting an in-progress transition, cancel and let everything flush\n        // out, and then kick off a new transition from the interruption state\n        renderDfd && renderDfd.resolve();\n        transition.skipTransition();\n        setInterruption({\n          state: newState,\n          currentLocation: viewTransitionOpts.currentLocation,\n          nextLocation: viewTransitionOpts.nextLocation,\n        });\n      } else {\n        // Completed navigation update with opted-in view transitions, let 'er rip\n        setPendingState(newState);\n        setVtContext({\n          isTransitioning: true,\n          flushSync: false,\n          currentLocation: viewTransitionOpts.currentLocation,\n          nextLocation: viewTransitionOpts.nextLocation,\n        });\n      }\n    },\n    [router.window, transition, renderDfd, fetcherData, optInStartTransition]\n  );\n\n  // Need to use a layout effect here so we are subscribed early enough to\n  // pick up on any render-driven redirects/navigations (useEffect/<Navigate>)\n  React.useLayoutEffect(() => router.subscribe(setState), [router, setState]);\n\n  // When we start a view transition, create a Deferred we can use for the\n  // eventual \"completed\" render\n  React.useEffect(() => {\n    if (vtContext.isTransitioning && !vtContext.flushSync) {\n      setRenderDfd(new Deferred<void>());\n    }\n  }, [vtContext]);\n\n  // Once the deferred is created, kick off startViewTransition() to update the\n  // DOM and then wait on the Deferred to resolve (indicating the DOM update has\n  // happened)\n  React.useEffect(() => {\n    if (renderDfd && pendingState && router.window) {\n      let newState = pendingState;\n      let renderPromise = renderDfd.promise;\n      let transition = router.window.document.startViewTransition(async () => {\n        optInStartTransition(() => setStateImpl(newState));\n        await renderPromise;\n      });\n      transition.finished.finally(() => {\n        setRenderDfd(undefined);\n        setTransition(undefined);\n        setPendingState(undefined);\n        setVtContext({ isTransitioning: false });\n      });\n      setTransition(transition);\n    }\n  }, [optInStartTransition, pendingState, renderDfd, router.window]);\n\n  // When the new location finally renders and is committed to the DOM, this\n  // effect will run to resolve the transition\n  React.useEffect(() => {\n    if (\n      renderDfd &&\n      pendingState &&\n      state.location.key === pendingState.location.key\n    ) {\n      renderDfd.resolve();\n    }\n  }, [renderDfd, transition, state.location, pendingState]);\n\n  // If we get interrupted with a new navigation during a transition, we skip\n  // the active transition, let it cleanup, then kick it off again here\n  React.useEffect(() => {\n    if (!vtContext.isTransitioning && interruption) {\n      setPendingState(interruption.state);\n      setVtContext({\n        isTransitioning: true,\n        flushSync: false,\n        currentLocation: interruption.currentLocation,\n        nextLocation: interruption.nextLocation,\n      });\n      setInterruption(undefined);\n    }\n  }, [vtContext.isTransitioning, interruption]);\n\n  React.useEffect(() => {\n    warning(\n      fallbackElement == null || !router.future.v7_partialHydration,\n      \"`<RouterProvider fallbackElement>` is deprecated when using \" +\n        \"`v7_partialHydration`, use a `HydrateFallback` component instead\"\n    );\n    // Only log this once on initial mount\n    // eslint-disable-next-line react-hooks/exhaustive-deps\n  }, []);\n\n  let navigator = React.useMemo((): Navigator => {\n    return {\n      createHref: router.createHref,\n      encodeLocation: router.encodeLocation,\n      go: (n) => router.navigate(n),\n      push: (to, state, opts) =>\n        router.navigate(to, {\n          state,\n          preventScrollReset: opts?.preventScrollReset,\n        }),\n      replace: (to, state, opts) =>\n        router.navigate(to, {\n          replace: true,\n          state,\n          preventScrollReset: opts?.preventScrollReset,\n        }),\n    };\n  }, [router]);\n\n  let basename = router.basename || \"/\";\n\n  let dataRouterContext = React.useMemo(\n    () => ({\n      router,\n      navigator,\n      static: false,\n      basename,\n    }),\n    [router, navigator, basename]\n  );\n\n  let routerFuture = React.useMemo<RouterProps[\"future\"]>(\n    () => ({\n      v7_relativeSplatPath: router.future.v7_relativeSplatPath,\n    }),\n    [router.future.v7_relativeSplatPath]\n  );\n\n  // The fragment and {null} here are important!  We need them to keep React 18's\n  // useId happy when we are server-rendering since we may have a <script> here\n  // containing the hydrated server-side staticContext (from StaticRouterProvider).\n  // useId relies on the component tree structure to generate deterministic id's\n  // so we need to ensure it remains the same on the client even though\n  // we don't need the <script> tag\n  return (\n    <>\n      <DataRouterContext.Provider value={dataRouterContext}>\n        <DataRouterStateContext.Provider value={state}>\n          <FetchersContext.Provider value={fetcherData.current}>\n            <ViewTransitionContext.Provider value={vtContext}>\n              <Router\n                basename={basename}\n                location={state.location}\n                navigationType={state.historyAction}\n                navigator={navigator}\n                future={routerFuture}\n              >\n                {state.initialized || router.future.v7_partialHydration ? (\n                  <MemoizedDataRoutes\n                    routes={router.routes}\n                    future={router.future}\n                    state={state}\n                  />\n                ) : (\n                  fallbackElement\n                )}\n              </Router>\n            </ViewTransitionContext.Provider>\n          </FetchersContext.Provider>\n        </DataRouterStateContext.Provider>\n      </DataRouterContext.Provider>\n      {null}\n    </>\n  );\n}\n\n// Memoize to avoid re-renders when updating `ViewTransitionContext`\nconst MemoizedDataRoutes = React.memo(DataRoutes);\n\nfunction DataRoutes({\n  routes,\n  future,\n  state,\n}: {\n  routes: DataRouteObject[];\n  future: RemixRouter[\"future\"];\n  state: RouterState;\n}): React.ReactElement | null {\n  return useRoutesImpl(routes, undefined, state, future);\n}\n\nexport interface BrowserRouterProps {\n  basename?: string;\n  children?: React.ReactNode;\n  future?: Partial<FutureConfig>;\n  window?: Window;\n}\n\n/**\n * A `<Router>` for use in web browsers. Provides the cleanest URLs.\n */\nexport function BrowserRouter({\n  basename,\n  children,\n  future,\n  window,\n}: BrowserRouterProps) {\n  let historyRef = React.useRef<BrowserHistory>();\n  if (historyRef.current == null) {\n    historyRef.current = createBrowserHistory({ window, v5Compat: true });\n  }\n\n  let history = historyRef.current;\n  let [state, setStateImpl] = React.useState({\n    action: history.action,\n    location: history.location,\n  });\n  let { v7_startTransition } = future || {};\n  let setState = React.useCallback(\n    (newState: { action: NavigationType; location: Location }) => {\n      v7_startTransition && startTransitionImpl\n        ? startTransitionImpl(() => setStateImpl(newState))\n        : setStateImpl(newState);\n    },\n    [setStateImpl, v7_startTransition]\n  );\n\n  React.useLayoutEffect(() => history.listen(setState), [history, setState]);\n\n  return (\n    <Router\n      basename={basename}\n      children={children}\n      location={state.location}\n      navigationType={state.action}\n      navigator={history}\n      future={future}\n    />\n  );\n}\n\nexport interface HashRouterProps {\n  basename?: string;\n  children?: React.ReactNode;\n  future?: Partial<FutureConfig>;\n  window?: Window;\n}\n\n/**\n * A `<Router>` for use in web browsers. Stores the location in the hash\n * portion of the URL so it is not sent to the server.\n */\nexport function HashRouter({\n  basename,\n  children,\n  future,\n  window,\n}: HashRouterProps) {\n  let historyRef = React.useRef<HashHistory>();\n  if (historyRef.current == null) {\n    historyRef.current = createHashHistory({ window, v5Compat: true });\n  }\n\n  let history = historyRef.current;\n  let [state, setStateImpl] = React.useState({\n    action: history.action,\n    location: history.location,\n  });\n  let { v7_startTransition } = future || {};\n  let setState = React.useCallback(\n    (newState: { action: NavigationType; location: Location }) => {\n      v7_startTransition && startTransitionImpl\n        ? startTransitionImpl(() => setStateImpl(newState))\n        : setStateImpl(newState);\n    },\n    [setStateImpl, v7_startTransition]\n  );\n\n  React.useLayoutEffect(() => history.listen(setState), [history, setState]);\n\n  return (\n    <Router\n      basename={basename}\n      children={children}\n      location={state.location}\n      navigationType={state.action}\n      navigator={history}\n      future={future}\n    />\n  );\n}\n\nexport interface HistoryRouterProps {\n  basename?: string;\n  children?: React.ReactNode;\n  future?: FutureConfig;\n  history: History;\n}\n\n/**\n * A `<Router>` that accepts a pre-instantiated history object. It's important\n * to note that using your own history object is highly discouraged and may add\n * two versions of the history library to your bundles unless you use the same\n * version of the history library that React Router uses internally.\n */\nfunction HistoryRouter({\n  basename,\n  children,\n  future,\n  history,\n}: HistoryRouterProps) {\n  let [state, setStateImpl] = React.useState({\n    action: history.action,\n    location: history.location,\n  });\n  let { v7_startTransition } = future || {};\n  let setState = React.useCallback(\n    (newState: { action: NavigationType; location: Location }) => {\n      v7_startTransition && startTransitionImpl\n        ? startTransitionImpl(() => setStateImpl(newState))\n        : setStateImpl(newState);\n    },\n    [setStateImpl, v7_startTransition]\n  );\n\n  React.useLayoutEffect(() => history.listen(setState), [history, setState]);\n\n  return (\n    <Router\n      basename={basename}\n      children={children}\n      location={state.location}\n      navigationType={state.action}\n      navigator={history}\n      future={future}\n    />\n  );\n}\n\nif (__DEV__) {\n  HistoryRouter.displayName = \"unstable_HistoryRouter\";\n}\n\nexport { HistoryRouter as unstable_HistoryRouter };\n\nexport interface LinkProps\n  extends Omit<React.AnchorHTMLAttributes<HTMLAnchorElement>, \"href\"> {\n  reloadDocument?: boolean;\n  replace?: boolean;\n  state?: any;\n  preventScrollReset?: boolean;\n  relative?: RelativeRoutingType;\n  to: To;\n  unstable_viewTransition?: boolean;\n}\n\nconst isBrowser =\n  typeof window !== \"undefined\" &&\n  typeof window.document !== \"undefined\" &&\n  typeof window.document.createElement !== \"undefined\";\n\nconst ABSOLUTE_URL_REGEX = /^(?:[a-z][a-z0-9+.-]*:|\\/\\/)/i;\n\n/**\n * The public API for rendering a history-aware `<a>`.\n */\nexport const Link = React.forwardRef<HTMLAnchorElement, LinkProps>(\n  function LinkWithRef(\n    {\n      onClick,\n      relative,\n      reloadDocument,\n      replace,\n      state,\n      target,\n      to,\n      preventScrollReset,\n      unstable_viewTransition,\n      ...rest\n    },\n    ref\n  ) {\n    let { basename } = React.useContext(NavigationContext);\n\n    // Rendered into <a href> for absolute URLs\n    let absoluteHref;\n    let isExternal = false;\n\n    if (typeof to === \"string\" && ABSOLUTE_URL_REGEX.test(to)) {\n      // Render the absolute href server- and client-side\n      absoluteHref = to;\n\n      // Only check for external origins client-side\n      if (isBrowser) {\n        try {\n          let currentUrl = new URL(window.location.href);\n          let targetUrl = to.startsWith(\"//\")\n            ? new URL(currentUrl.protocol + to)\n            : new URL(to);\n          let path = stripBasename(targetUrl.pathname, basename);\n\n          if (targetUrl.origin === currentUrl.origin && path != null) {\n            // Strip the protocol/origin/basename for same-origin absolute URLs\n            to = path + targetUrl.search + targetUrl.hash;\n          } else {\n            isExternal = true;\n          }\n        } catch (e) {\n          // We can't do external URL detection without a valid URL\n          warning(\n            false,\n            `<Link to=\"${to}\"> contains an invalid URL which will probably break ` +\n              `when clicked - please update to a valid URL path.`\n          );\n        }\n      }\n    }\n\n    // Rendered into <a href> for relative URLs\n    let href = useHref(to, { relative });\n\n    let internalOnClick = useLinkClickHandler(to, {\n      replace,\n      state,\n      target,\n      preventScrollReset,\n      relative,\n      unstable_viewTransition,\n    });\n    function handleClick(\n      event: React.MouseEvent<HTMLAnchorElement, MouseEvent>\n    ) {\n      if (onClick) onClick(event);\n      if (!event.defaultPrevented) {\n        internalOnClick(event);\n      }\n    }\n\n    return (\n      // eslint-disable-next-line jsx-a11y/anchor-has-content\n      <a\n        {...rest}\n        href={absoluteHref || href}\n        onClick={isExternal || reloadDocument ? onClick : handleClick}\n        ref={ref}\n        target={target}\n      />\n    );\n  }\n);\n\nif (__DEV__) {\n  Link.displayName = \"Link\";\n}\n\nexport type NavLinkRenderProps = {\n  isActive: boolean;\n  isPending: boolean;\n  isTransitioning: boolean;\n};\n\nexport interface NavLinkProps\n  extends Omit<LinkProps, \"className\" | \"style\" | \"children\"> {\n  children?: React.ReactNode | ((props: NavLinkRenderProps) => React.ReactNode);\n  caseSensitive?: boolean;\n  className?: string | ((props: NavLinkRenderProps) => string | undefined);\n  end?: boolean;\n  style?:\n    | React.CSSProperties\n    | ((props: NavLinkRenderProps) => React.CSSProperties | undefined);\n}\n\n/**\n * A `<Link>` wrapper that knows if it's \"active\" or not.\n */\nexport const NavLink = React.forwardRef<HTMLAnchorElement, NavLinkProps>(\n  function NavLinkWithRef(\n    {\n      \"aria-current\": ariaCurrentProp = \"page\",\n      caseSensitive = false,\n      className: classNameProp = \"\",\n      end = false,\n      style: styleProp,\n      to,\n      unstable_viewTransition,\n      children,\n      ...rest\n    },\n    ref\n  ) {\n    let path = useResolvedPath(to, { relative: rest.relative });\n    let location = useLocation();\n    let routerState = React.useContext(DataRouterStateContext);\n    let { navigator, basename } = React.useContext(NavigationContext);\n    let isTransitioning =\n      routerState != null &&\n      // Conditional usage is OK here because the usage of a data router is static\n      // eslint-disable-next-line react-hooks/rules-of-hooks\n      useViewTransitionState(path) &&\n      unstable_viewTransition === true;\n\n    let toPathname = navigator.encodeLocation\n      ? navigator.encodeLocation(path).pathname\n      : path.pathname;\n    let locationPathname = location.pathname;\n    let nextLocationPathname =\n      routerState && routerState.navigation && routerState.navigation.location\n        ? routerState.navigation.location.pathname\n        : null;\n\n    if (!caseSensitive) {\n      locationPathname = locationPathname.toLowerCase();\n      nextLocationPathname = nextLocationPathname\n        ? nextLocationPathname.toLowerCase()\n        : null;\n      toPathname = toPathname.toLowerCase();\n    }\n\n    if (nextLocationPathname && basename) {\n      nextLocationPathname =\n        stripBasename(nextLocationPathname, basename) || nextLocationPathname;\n    }\n\n    // If the `to` has a trailing slash, look at that exact spot.  Otherwise,\n    // we're looking for a slash _after_ what's in `to`.  For example:\n    //\n    // <NavLink to=\"/users\"> and <NavLink to=\"/users/\">\n    // both want to look for a / at index 6 to match URL `/users/matt`\n    const endSlashPosition =\n      toPathname !== \"/\" && toPathname.endsWith(\"/\")\n        ? toPathname.length - 1\n        : toPathname.length;\n    let isActive =\n      locationPathname === toPathname ||\n      (!end &&\n        locationPathname.startsWith(toPathname) &&\n        locationPathname.charAt(endSlashPosition) === \"/\");\n\n    let isPending =\n      nextLocationPathname != null &&\n      (nextLocationPathname === toPathname ||\n        (!end &&\n          nextLocationPathname.startsWith(toPathname) &&\n          nextLocationPathname.charAt(toPathname.length) === \"/\"));\n\n    let renderProps = {\n      isActive,\n      isPending,\n      isTransitioning,\n    };\n\n    let ariaCurrent = isActive ? ariaCurrentProp : undefined;\n\n    let className: string | undefined;\n    if (typeof classNameProp === \"function\") {\n      className = classNameProp(renderProps);\n    } else {\n      // If the className prop is not a function, we use a default `active`\n      // class for <NavLink />s that are active. In v5 `active` was the default\n      // value for `activeClassName`, but we are removing that API and can still\n      // use the old default behavior for a cleaner upgrade path and keep the\n      // simple styling rules working as they currently do.\n      className = [\n        classNameProp,\n        isActive ? \"active\" : null,\n        isPending ? \"pending\" : null,\n        isTransitioning ? \"transitioning\" : null,\n      ]\n        .filter(Boolean)\n        .join(\" \");\n    }\n\n    let style =\n      typeof styleProp === \"function\" ? styleProp(renderProps) : styleProp;\n\n    return (\n      <Link\n        {...rest}\n        aria-current={ariaCurrent}\n        className={className}\n        ref={ref}\n        style={style}\n        to={to}\n        unstable_viewTransition={unstable_viewTransition}\n      >\n        {typeof children === \"function\" ? children(renderProps) : children}\n      </Link>\n    );\n  }\n);\n\nif (__DEV__) {\n  NavLink.displayName = \"NavLink\";\n}\n\n/**\n * Form props shared by navigations and fetchers\n */\ninterface SharedFormProps extends React.FormHTMLAttributes<HTMLFormElement> {\n  /**\n   * The HTTP verb to use when the form is submit. Supports \"get\", \"post\",\n   * \"put\", \"delete\", \"patch\".\n   */\n  method?: HTMLFormMethod;\n\n  /**\n   * `<form encType>` - enhancing beyond the normal string type and limiting\n   * to the built-in browser supported values\n   */\n  encType?:\n    | \"application/x-www-form-urlencoded\"\n    | \"multipart/form-data\"\n    | \"text/plain\";\n\n  /**\n   * Normal `<form action>` but supports React Router's relative paths.\n   */\n  action?: string;\n\n  /**\n   * Determines whether the form action is relative to the route hierarchy or\n   * the pathname.  Use this if you want to opt out of navigating the route\n   * hierarchy and want to instead route based on /-delimited URL segments\n   */\n  relative?: RelativeRoutingType;\n\n  /**\n   * Prevent the scroll position from resetting to the top of the viewport on\n   * completion of the navigation when using the <ScrollRestoration> component\n   */\n  preventScrollReset?: boolean;\n\n  /**\n   * A function to call when the form is submitted. If you call\n   * `event.preventDefault()` then this form will not do anything.\n   */\n  onSubmit?: React.FormEventHandler<HTMLFormElement>;\n}\n\n/**\n * Form props available to fetchers\n */\nexport interface FetcherFormProps extends SharedFormProps {}\n\n/**\n * Form props available to navigations\n */\nexport interface FormProps extends SharedFormProps {\n  /**\n   * Indicate a specific fetcherKey to use when using navigate=false\n   */\n  fetcherKey?: string;\n\n  /**\n   * navigate=false will use a fetcher instead of a navigation\n   */\n  navigate?: boolean;\n\n  /**\n   * Forces a full document navigation instead of a fetch.\n   */\n  reloadDocument?: boolean;\n\n  /**\n   * Replaces the current entry in the browser history stack when the form\n   * navigates. Use this if you don't want the user to be able to click \"back\"\n   * to the page with the form on it.\n   */\n  replace?: boolean;\n\n  /**\n   * State object to add to the history stack entry for this navigation\n   */\n  state?: any;\n\n  /**\n   * Enable view transitions on this Form navigation\n   */\n  unstable_viewTransition?: boolean;\n}\n\ntype HTMLSubmitEvent = React.BaseSyntheticEvent<\n  SubmitEvent,\n  Event,\n  HTMLFormElement\n>;\n\ntype HTMLFormSubmitter = HTMLButtonElement | HTMLInputElement;\n\n/**\n * A `@remix-run/router`-aware `<form>`. It behaves like a normal form except\n * that the interaction with the server is with `fetch` instead of new document\n * requests, allowing components to add nicer UX to the page as the form is\n * submitted and returns with data.\n */\nexport const Form = React.forwardRef<HTMLFormElement, FormProps>(\n  (\n    {\n      fetcherKey,\n      navigate,\n      reloadDocument,\n      replace,\n      state,\n      method = defaultMethod,\n      action,\n      onSubmit,\n      relative,\n      preventScrollReset,\n      unstable_viewTransition,\n      ...props\n    },\n    forwardedRef\n  ) => {\n    let submit = useSubmit();\n    let formAction = useFormAction(action, { relative });\n    let formMethod: HTMLFormMethod =\n      method.toLowerCase() === \"get\" ? \"get\" : \"post\";\n\n    let submitHandler: React.FormEventHandler<HTMLFormElement> = (event) => {\n      onSubmit && onSubmit(event);\n      if (event.defaultPrevented) return;\n      event.preventDefault();\n\n      let submitter = (event as unknown as HTMLSubmitEvent).nativeEvent\n        .submitter as HTMLFormSubmitter | null;\n\n      let submitMethod =\n        (submitter?.getAttribute(\"formmethod\") as HTMLFormMethod | undefined) ||\n        method;\n\n      submit(submitter || event.currentTarget, {\n        fetcherKey,\n        method: submitMethod,\n        navigate,\n        replace,\n        state,\n        relative,\n        preventScrollReset,\n        unstable_viewTransition,\n      });\n    };\n\n    return (\n      <form\n        ref={forwardedRef}\n        method={formMethod}\n        action={formAction}\n        onSubmit={reloadDocument ? onSubmit : submitHandler}\n        {...props}\n      />\n    );\n  }\n);\n\nif (__DEV__) {\n  Form.displayName = \"Form\";\n}\n\nexport interface ScrollRestorationProps {\n  getKey?: GetScrollRestorationKeyFunction;\n  storageKey?: string;\n}\n\n/**\n * This component will emulate the browser's scroll restoration on location\n * changes.\n */\nexport function ScrollRestoration({\n  getKey,\n  storageKey,\n}: ScrollRestorationProps) {\n  useScrollRestoration({ getKey, storageKey });\n  return null;\n}\n\nif (__DEV__) {\n  ScrollRestoration.displayName = \"ScrollRestoration\";\n}\n//#endregion\n\n////////////////////////////////////////////////////////////////////////////////\n//#region Hooks\n////////////////////////////////////////////////////////////////////////////////\n\nenum DataRouterHook {\n  UseScrollRestoration = \"useScrollRestoration\",\n  UseSubmit = \"useSubmit\",\n  UseSubmitFetcher = \"useSubmitFetcher\",\n  UseFetcher = \"useFetcher\",\n  useViewTransitionState = \"useViewTransitionState\",\n}\n\nenum DataRouterStateHook {\n  UseFetcher = \"useFetcher\",\n  UseFetchers = \"useFetchers\",\n  UseScrollRestoration = \"useScrollRestoration\",\n}\n\n// Internal hooks\n\nfunction getDataRouterConsoleError(\n  hookName: DataRouterHook | DataRouterStateHook\n) {\n  return `${hookName} must be used within a data router.  See https://reactrouter.com/routers/picking-a-router.`;\n}\n\nfunction useDataRouterContext(hookName: DataRouterHook) {\n  let ctx = React.useContext(DataRouterContext);\n  invariant(ctx, getDataRouterConsoleError(hookName));\n  return ctx;\n}\n\nfunction useDataRouterState(hookName: DataRouterStateHook) {\n  let state = React.useContext(DataRouterStateContext);\n  invariant(state, getDataRouterConsoleError(hookName));\n  return state;\n}\n\n// External hooks\n\n/**\n * Handles the click behavior for router `<Link>` components. This is useful if\n * you need to create custom `<Link>` components with the same click behavior we\n * use in our exported `<Link>`.\n */\nexport function useLinkClickHandler<E extends Element = HTMLAnchorElement>(\n  to: To,\n  {\n    target,\n    replace: replaceProp,\n    state,\n    preventScrollReset,\n    relative,\n    unstable_viewTransition,\n  }: {\n    target?: React.HTMLAttributeAnchorTarget;\n    replace?: boolean;\n    state?: any;\n    preventScrollReset?: boolean;\n    relative?: RelativeRoutingType;\n    unstable_viewTransition?: boolean;\n  } = {}\n): (event: React.MouseEvent<E, MouseEvent>) => void {\n  let navigate = useNavigate();\n  let location = useLocation();\n  let path = useResolvedPath(to, { relative });\n\n  return React.useCallback(\n    (event: React.MouseEvent<E, MouseEvent>) => {\n      if (shouldProcessLinkClick(event, target)) {\n        event.preventDefault();\n\n        // If the URL hasn't changed, a regular <a> will do a replace instead of\n        // a push, so do the same here unless the replace prop is explicitly set\n        let replace =\n          replaceProp !== undefined\n            ? replaceProp\n            : createPath(location) === createPath(path);\n\n        navigate(to, {\n          replace,\n          state,\n          preventScrollReset,\n          relative,\n          unstable_viewTransition,\n        });\n      }\n    },\n    [\n      location,\n      navigate,\n      path,\n      replaceProp,\n      state,\n      target,\n      to,\n      preventScrollReset,\n      relative,\n      unstable_viewTransition,\n    ]\n  );\n}\n\n/**\n * A convenient wrapper for reading and writing search parameters via the\n * URLSearchParams interface.\n */\nexport function useSearchParams(\n  defaultInit?: URLSearchParamsInit\n): [URLSearchParams, SetURLSearchParams] {\n  warning(\n    typeof URLSearchParams !== \"undefined\",\n    `You cannot use the \\`useSearchParams\\` hook in a browser that does not ` +\n      `support the URLSearchParams API. If you need to support Internet ` +\n      `Explorer 11, we recommend you load a polyfill such as ` +\n      `https://github.com/ungap/url-search-params.`\n  );\n\n  let defaultSearchParamsRef = React.useRef(createSearchParams(defaultInit));\n  let hasSetSearchParamsRef = React.useRef(false);\n\n  let location = useLocation();\n  let searchParams = React.useMemo(\n    () =>\n      // Only merge in the defaults if we haven't yet called setSearchParams.\n      // Once we call that we want those to take precedence, otherwise you can't\n      // remove a param with setSearchParams({}) if it has an initial value\n      getSearchParamsForLocation(\n        location.search,\n        hasSetSearchParamsRef.current ? null : defaultSearchParamsRef.current\n      ),\n    [location.search]\n  );\n\n  let navigate = useNavigate();\n  let setSearchParams = React.useCallback<SetURLSearchParams>(\n    (nextInit, navigateOptions) => {\n      const newSearchParams = createSearchParams(\n        typeof nextInit === \"function\" ? nextInit(searchParams) : nextInit\n      );\n      hasSetSearchParamsRef.current = true;\n      navigate(\"?\" + newSearchParams, navigateOptions);\n    },\n    [navigate, searchParams]\n  );\n\n  return [searchParams, setSearchParams];\n}\n\nexport type SetURLSearchParams = (\n  nextInit?:\n    | URLSearchParamsInit\n    | ((prev: URLSearchParams) => URLSearchParamsInit),\n  navigateOpts?: NavigateOptions\n) => void;\n\n/**\n * Submits a HTML `<form>` to the server without reloading the page.\n */\nexport interface SubmitFunction {\n  (\n    /**\n     * Specifies the `<form>` to be submitted to the server, a specific\n     * `<button>` or `<input type=\"submit\">` to use to submit the form, or some\n     * arbitrary data to submit.\n     *\n     * Note: When using a `<button>` its `name` and `value` will also be\n     * included in the form data that is submitted.\n     */\n    target: SubmitTarget,\n\n    /**\n     * Options that override the `<form>`'s own attributes. Required when\n     * submitting arbitrary data without a backing `<form>`.\n     */\n    options?: SubmitOptions\n  ): void;\n}\n\n/**\n * Submits a fetcher `<form>` to the server without reloading the page.\n */\nexport interface FetcherSubmitFunction {\n  (\n    target: SubmitTarget,\n    // Fetchers cannot replace or set state because they are not navigation events\n    options?: FetcherSubmitOptions\n  ): void;\n}\n\nfunction validateClientSideSubmission() {\n  if (typeof document === \"undefined\") {\n    throw new Error(\n      \"You are calling submit during the server render. \" +\n        \"Try calling submit within a `useEffect` or callback instead.\"\n    );\n  }\n}\n\nlet fetcherId = 0;\nlet getUniqueFetcherId = () => `__${String(++fetcherId)}__`;\n\n/**\n * Returns a function that may be used to programmatically submit a form (or\n * some arbitrary data) to the server.\n */\nexport function useSubmit(): SubmitFunction {\n  let { router } = useDataRouterContext(DataRouterHook.UseSubmit);\n  let { basename } = React.useContext(NavigationContext);\n  let currentRouteId = useRouteId();\n\n  return React.useCallback<SubmitFunction>(\n    (target, options = {}) => {\n      validateClientSideSubmission();\n\n      let { action, method, encType, formData, body } = getFormSubmissionInfo(\n        target,\n        basename\n      );\n\n      if (options.navigate === false) {\n        let key = options.fetcherKey || getUniqueFetcherId();\n        router.fetch(key, currentRouteId, options.action || action, {\n          preventScrollReset: options.preventScrollReset,\n          formData,\n          body,\n          formMethod: options.method || (method as HTMLFormMethod),\n          formEncType: options.encType || (encType as FormEncType),\n          unstable_flushSync: options.unstable_flushSync,\n        });\n      } else {\n        router.navigate(options.action || action, {\n          preventScrollReset: options.preventScrollReset,\n          formData,\n          body,\n          formMethod: options.method || (method as HTMLFormMethod),\n          formEncType: options.encType || (encType as FormEncType),\n          replace: options.replace,\n          state: options.state,\n          fromRouteId: currentRouteId,\n          unstable_flushSync: options.unstable_flushSync,\n          unstable_viewTransition: options.unstable_viewTransition,\n        });\n      }\n    },\n    [router, basename, currentRouteId]\n  );\n}\n\n// v7: Eventually we should deprecate this entirely in favor of using the\n// router method directly?\nexport function useFormAction(\n  action?: string,\n  { relative }: { relative?: RelativeRoutingType } = {}\n): string {\n  let { basename } = React.useContext(NavigationContext);\n  let routeContext = React.useContext(RouteContext);\n  invariant(routeContext, \"useFormAction must be used inside a RouteContext\");\n\n  let [match] = routeContext.matches.slice(-1);\n  // Shallow clone path so we can modify it below, otherwise we modify the\n  // object referenced by useMemo inside useResolvedPath\n  let path = { ...useResolvedPath(action ? action : \".\", { relative }) };\n\n  // If no action was specified, browsers will persist current search params\n  // when determining the path, so match that behavior\n  // https://github.com/remix-run/remix/issues/927\n  let location = useLocation();\n  if (action == null) {\n    // Safe to write to this directly here since if action was undefined, we\n    // would have called useResolvedPath(\".\") which will never include a search\n    path.search = location.search;\n\n    // When grabbing search params from the URL, remove any included ?index param\n    // since it might not apply to our contextual route.  We add it back based\n    // on match.route.index below\n    let params = new URLSearchParams(path.search);\n    if (params.has(\"index\") && params.get(\"index\") === \"\") {\n      params.delete(\"index\");\n      path.search = params.toString() ? `?${params.toString()}` : \"\";\n    }\n  }\n\n  if ((!action || action === \".\") && match.route.index) {\n    path.search = path.search\n      ? path.search.replace(/^\\?/, \"?index&\")\n      : \"?index\";\n  }\n\n  // If we're operating within a basename, prepend it to the pathname prior\n  // to creating the form action.  If this is a root navigation, then just use\n  // the raw basename which allows the basename to have full control over the\n  // presence of a trailing slash on root actions\n  if (basename !== \"/\") {\n    path.pathname =\n      path.pathname === \"/\" ? basename : joinPaths([basename, path.pathname]);\n  }\n\n  return createPath(path);\n}\n\nexport type FetcherWithComponents<TData> = Fetcher<TData> & {\n  Form: React.ForwardRefExoticComponent<\n    FetcherFormProps & React.RefAttributes<HTMLFormElement>\n  >;\n  submit: FetcherSubmitFunction;\n  load: (href: string, opts?: { unstable_flushSync?: boolean }) => void;\n};\n\n// TODO: (v7) Change the useFetcher generic default from `any` to `unknown`\n\n/**\n * Interacts with route loaders and actions without causing a navigation. Great\n * for any interaction that stays on the same page.\n */\nexport function useFetcher<TData = any>({\n  key,\n}: { key?: string } = {}): FetcherWithComponents<TData> {\n  let { router } = useDataRouterContext(DataRouterHook.UseFetcher);\n  let state = useDataRouterState(DataRouterStateHook.UseFetcher);\n  let fetcherData = React.useContext(FetchersContext);\n  let route = React.useContext(RouteContext);\n  let routeId = route.matches[route.matches.length - 1]?.route.id;\n\n  invariant(fetcherData, `useFetcher must be used inside a FetchersContext`);\n  invariant(route, `useFetcher must be used inside a RouteContext`);\n  invariant(\n    routeId != null,\n    `useFetcher can only be used on routes that contain a unique \"id\"`\n  );\n\n  // Fetcher key handling\n  // OK to call conditionally to feature detect `useId`\n  // eslint-disable-next-line react-hooks/rules-of-hooks\n  let defaultKey = useIdImpl ? useIdImpl() : \"\";\n  let [fetcherKey, setFetcherKey] = React.useState<string>(key || defaultKey);\n  if (key && key !== fetcherKey) {\n    setFetcherKey(key);\n  } else if (!fetcherKey) {\n    // We will only fall through here when `useId` is not available\n    setFetcherKey(getUniqueFetcherId());\n  }\n\n  // Registration/cleanup\n  React.useEffect(() => {\n    router.getFetcher(fetcherKey);\n    return () => {\n      // Tell the router we've unmounted - if v7_fetcherPersist is enabled this\n      // will not delete immediately but instead queue up a delete after the\n      // fetcher returns to an `idle` state\n      router.deleteFetcher(fetcherKey);\n    };\n  }, [router, fetcherKey]);\n\n  // Fetcher additions\n  let load = React.useCallback(\n    (href: string, opts?: { unstable_flushSync?: boolean }) => {\n      invariant(routeId, \"No routeId available for fetcher.load()\");\n      router.fetch(fetcherKey, routeId, href, opts);\n    },\n    [fetcherKey, routeId, router]\n  );\n\n  let submitImpl = useSubmit();\n  let submit = React.useCallback<FetcherSubmitFunction>(\n    (target, opts) => {\n      submitImpl(target, {\n        ...opts,\n        navigate: false,\n        fetcherKey,\n      });\n    },\n    [fetcherKey, submitImpl]\n  );\n\n  let FetcherForm = React.useMemo(() => {\n    let FetcherForm = React.forwardRef<HTMLFormElement, FetcherFormProps>(\n      (props, ref) => {\n        return (\n          <Form {...props} navigate={false} fetcherKey={fetcherKey} ref={ref} />\n        );\n      }\n    );\n    if (__DEV__) {\n      FetcherForm.displayName = \"fetcher.Form\";\n    }\n    return FetcherForm;\n  }, [fetcherKey]);\n\n  // Exposed FetcherWithComponents\n  let fetcher = state.fetchers.get(fetcherKey) || IDLE_FETCHER;\n  let data = fetcherData.get(fetcherKey);\n  let fetcherWithComponents = React.useMemo(\n    () => ({\n      Form: FetcherForm,\n      submit,\n      load,\n      ...fetcher,\n      data,\n    }),\n    [FetcherForm, submit, load, fetcher, data]\n  );\n\n  return fetcherWithComponents;\n}\n\n/**\n * Provides all fetchers currently on the page. Useful for layouts and parent\n * routes that need to provide pending/optimistic UI regarding the fetch.\n */\nexport function useFetchers(): (Fetcher & { key: string })[] {\n  let state = useDataRouterState(DataRouterStateHook.UseFetchers);\n  return Array.from(state.fetchers.entries()).map(([key, fetcher]) => ({\n    ...fetcher,\n    key,\n  }));\n}\n\nconst SCROLL_RESTORATION_STORAGE_KEY = \"react-router-scroll-positions\";\nlet savedScrollPositions: Record<string, number> = {};\n\n/**\n * When rendered inside a RouterProvider, will restore scroll positions on navigations\n */\nfunction useScrollRestoration({\n  getKey,\n  storageKey,\n}: {\n  getKey?: GetScrollRestorationKeyFunction;\n  storageKey?: string;\n} = {}) {\n  let { router } = useDataRouterContext(DataRouterHook.UseScrollRestoration);\n  let { restoreScrollPosition, preventScrollReset } = useDataRouterState(\n    DataRouterStateHook.UseScrollRestoration\n  );\n  let { basename } = React.useContext(NavigationContext);\n  let location = useLocation();\n  let matches = useMatches();\n  let navigation = useNavigation();\n\n  // Trigger manual scroll restoration while we're active\n  React.useEffect(() => {\n    window.history.scrollRestoration = \"manual\";\n    return () => {\n      window.history.scrollRestoration = \"auto\";\n    };\n  }, []);\n\n  // Save positions on pagehide\n  usePageHide(\n    React.useCallback(() => {\n      if (navigation.state === \"idle\") {\n        let key = (getKey ? getKey(location, matches) : null) || location.key;\n        savedScrollPositions[key] = window.scrollY;\n      }\n      try {\n        sessionStorage.setItem(\n          storageKey || SCROLL_RESTORATION_STORAGE_KEY,\n          JSON.stringify(savedScrollPositions)\n        );\n      } catch (error) {\n        warning(\n          false,\n          `Failed to save scroll positions in sessionStorage, <ScrollRestoration /> will not work properly (${error}).`\n        );\n      }\n      window.history.scrollRestoration = \"auto\";\n    }, [storageKey, getKey, navigation.state, location, matches])\n  );\n\n  // Read in any saved scroll locations\n  if (typeof document !== \"undefined\") {\n    // eslint-disable-next-line react-hooks/rules-of-hooks\n    React.useLayoutEffect(() => {\n      try {\n        let sessionPositions = sessionStorage.getItem(\n          storageKey || SCROLL_RESTORATION_STORAGE_KEY\n        );\n        if (sessionPositions) {\n          savedScrollPositions = JSON.parse(sessionPositions);\n        }\n      } catch (e) {\n        // no-op, use default empty object\n      }\n    }, [storageKey]);\n\n    // Enable scroll restoration in the router\n    // eslint-disable-next-line react-hooks/rules-of-hooks\n    React.useLayoutEffect(() => {\n      let getKeyWithoutBasename: GetScrollRestorationKeyFunction | undefined =\n        getKey && basename !== \"/\"\n          ? (location, matches) =>\n              getKey(\n                // Strip the basename to match useLocation()\n                {\n                  ...location,\n                  pathname:\n                    stripBasename(location.pathname, basename) ||\n                    location.pathname,\n                },\n                matches\n              )\n          : getKey;\n      let disableScrollRestoration = router?.enableScrollRestoration(\n        savedScrollPositions,\n        () => window.scrollY,\n        getKeyWithoutBasename\n      );\n      return () => disableScrollRestoration && disableScrollRestoration();\n    }, [router, basename, getKey]);\n\n    // Restore scrolling when state.restoreScrollPosition changes\n    // eslint-disable-next-line react-hooks/rules-of-hooks\n    React.useLayoutEffect(() => {\n      // Explicit false means don't do anything (used for submissions)\n      if (restoreScrollPosition === false) {\n        return;\n      }\n\n      // been here before, scroll to it\n      if (typeof restoreScrollPosition === \"number\") {\n        window.scrollTo(0, restoreScrollPosition);\n        return;\n      }\n\n      // try to scroll to the hash\n      if (location.hash) {\n        let el = document.getElementById(\n          decodeURIComponent(location.hash.slice(1))\n        );\n        if (el) {\n          el.scrollIntoView();\n          return;\n        }\n      }\n\n      // Don't reset if this navigation opted out\n      if (preventScrollReset === true) {\n        return;\n      }\n\n      // otherwise go to the top on new locations\n      window.scrollTo(0, 0);\n    }, [location, restoreScrollPosition, preventScrollReset]);\n  }\n}\n\nexport { useScrollRestoration as UNSAFE_useScrollRestoration };\n\n/**\n * Setup a callback to be fired on the window's `beforeunload` event. This is\n * useful for saving some data to `window.localStorage` just before the page\n * refreshes.\n *\n * Note: The `callback` argument should be a function created with\n * `React.useCallback()`.\n */\nexport function useBeforeUnload(\n  callback: (event: BeforeUnloadEvent) => any,\n  options?: { capture?: boolean }\n): void {\n  let { capture } = options || {};\n  React.useEffect(() => {\n    let opts = capture != null ? { capture } : undefined;\n    window.addEventListener(\"beforeunload\", callback, opts);\n    return () => {\n      window.removeEventListener(\"beforeunload\", callback, opts);\n    };\n  }, [callback, capture]);\n}\n\n/**\n * Setup a callback to be fired on the window's `pagehide` event. This is\n * useful for saving some data to `window.localStorage` just before the page\n * refreshes.  This event is better supported than beforeunload across browsers.\n *\n * Note: The `callback` argument should be a function created with\n * `React.useCallback()`.\n */\nfunction usePageHide(\n  callback: (event: PageTransitionEvent) => any,\n  options?: { capture?: boolean }\n): void {\n  let { capture } = options || {};\n  React.useEffect(() => {\n    let opts = capture != null ? { capture } : undefined;\n    window.addEventListener(\"pagehide\", callback, opts);\n    return () => {\n      window.removeEventListener(\"pagehide\", callback, opts);\n    };\n  }, [callback, capture]);\n}\n\n/**\n * Wrapper around useBlocker to show a window.confirm prompt to users instead\n * of building a custom UI with useBlocker.\n *\n * Warning: This has *a lot of rough edges* and behaves very differently (and\n * very incorrectly in some cases) across browsers if user click addition\n * back/forward navigations while the confirm is open.  Use at your own risk.\n */\nfunction usePrompt({\n  when,\n  message,\n}: {\n  when: boolean | BlockerFunction;\n  message: string;\n}) {\n  let blocker = useBlocker(when);\n\n  React.useEffect(() => {\n    if (blocker.state === \"blocked\") {\n      let proceed = window.confirm(message);\n      if (proceed) {\n        // This timeout is needed to avoid a weird \"race\" on POP navigations\n        // between the `window.history` revert navigation and the result of\n        // `window.confirm`\n        setTimeout(blocker.proceed, 0);\n      } else {\n        blocker.reset();\n      }\n    }\n  }, [blocker, message]);\n\n  React.useEffect(() => {\n    if (blocker.state === \"blocked\" && !when) {\n      blocker.reset();\n    }\n  }, [blocker, when]);\n}\n\nexport { usePrompt as unstable_usePrompt };\n\n/**\n * Return a boolean indicating if there is an active view transition to the\n * given href.  You can use this value to render CSS classes or viewTransitionName\n * styles onto your elements\n *\n * @param href The destination href\n * @param [opts.relative] Relative routing type (\"route\" | \"path\")\n */\nfunction useViewTransitionState(\n  to: To,\n  opts: { relative?: RelativeRoutingType } = {}\n) {\n  let vtContext = React.useContext(ViewTransitionContext);\n\n  invariant(\n    vtContext != null,\n    \"`unstable_useViewTransitionState` must be used within `react-router-dom`'s `RouterProvider`.  \" +\n      \"Did you accidentally import `RouterProvider` from `react-router`?\"\n  );\n\n  let { basename } = useDataRouterContext(\n    DataRouterHook.useViewTransitionState\n  );\n  let path = useResolvedPath(to, { relative: opts.relative });\n  if (!vtContext.isTransitioning) {\n    return false;\n  }\n\n  let currentPath =\n    stripBasename(vtContext.currentLocation.pathname, basename) ||\n    vtContext.currentLocation.pathname;\n  let nextPath =\n    stripBasename(vtContext.nextLocation.pathname, basename) ||\n    vtContext.nextLocation.pathname;\n\n  // Transition is active if we're going to or coming from the indicated\n  // destination.  This ensures that other PUSH navigations that reverse\n  // an indicated transition apply.  I.e., on the list view you have:\n  //\n  //   <NavLink to=\"/details/1\" unstable_viewTransition>\n  //\n  // If you click the breadcrumb back to the list view:\n  //\n  //   <NavLink to=\"/list\" unstable_viewTransition>\n  //\n  // We should apply the transition because it's indicated as active going\n  // from /list -> /details/1 and therefore should be active on the reverse\n  // (even though this isn't strictly a POP reverse)\n  return (\n    matchPath(path.pathname, nextPath) != null ||\n    matchPath(path.pathname, currentPath) != null\n  );\n}\n\nexport { useViewTransitionState as unstable_useViewTransitionState };\n\n//#endregion\n"],"names":["defaultEncType","isHtmlElement","object","tagName","createSearchParams","init","URLSearchParams","Array","isArray","Object","keys","reduce","memo","key","value","concat","map","v","_formDataSupportsSubmitter","supportedFormEncTypes","Set","getFormEncType","encType","has","getFormSubmissionInfo","target","basename","method","action","formData","body","toLowerCase","attr","getAttribute","stripBasename","FormData","isButtonElement","isInputElement","type","form","Error","document","createElement","e","isFormDataSubmitterSupported","name","prefix","append","undefined","window","__reactRouterVersion","createBrowserRouter","routes","opts","createRouter","future","v7_prependBasename","history","createBrowserHistory","hydrationData","parseHydrationData","mapRouteProperties","unstable_dataStrategy","unstable_patchRoutesOnMiss","initialize","createHashRouter","createHashHistory","state","__staticRouterHydrationData","errors","deserializeErrors","entries","serialized","val","__type","ErrorResponseImpl","status","statusText","data","internal","__subType","ErrorConstructor","error","message","stack","ViewTransitionContext","React","createContext","isTransitioning","FetchersContext","Map","startTransitionImpl","flushSyncImpl","ReactDOM","useIdImpl","flushSyncSafe","cb","Deferred","constructor","this","promise","Promise","resolve","reject","reason","RouterProvider","fallbackElement","router","setStateImpl","useState","pendingState","setPendingState","vtContext","setVtContext","renderDfd","setRenderDfd","transition","setTransition","interruption","setInterruption","fetcherData","useRef","v7_startTransition","optInStartTransition","useCallback","startTransitionSafe","setState","newState","deletedFetchers","unstable_flushSync","flushSync","unstable_viewTransitionOpts","viewTransitionOpts","forEach","current","delete","fetchers","fetcher","set","isViewTransitionUnavailable","startViewTransition","skipTransition","currentLocation","nextLocation","t","finished","finally","useLayoutEffect","subscribe","useEffect","renderPromise","async","location","navigator","useMemo","createHref","encodeLocation","go","n","navigate","push","to","preventScrollReset","replace","dataRouterContext","static","routerFuture","v7_relativeSplatPath","Fragment","DataRouterContext","Provider","DataRouterStateContext","Router","navigationType","historyAction","initialized","v7_partialHydration","MemoizedDataRoutes","DataRoutes","useRoutesImpl","BrowserRouter","children","historyRef","v5Compat","listen","HashRouter","HistoryRouter","isBrowser","ABSOLUTE_URL_REGEX","Link","forwardRef","onClick","relative","reloadDocument","unstable_viewTransition","rest","ref","absoluteHref","useContext","NavigationContext","isExternal","test","currentUrl","URL","href","targetUrl","startsWith","protocol","path","pathname","origin","search","hash","useHref","internalOnClick","useLinkClickHandler","assign","event","defaultPrevented","NavLink","ariaCurrentProp","caseSensitive","className","classNameProp","end","style","styleProp","useResolvedPath","useLocation","routerState","useViewTransitionState","toPathname","locationPathname","nextLocationPathname","navigation","endSlashPosition","endsWith","length","isActive","charAt","isPending","renderProps","ariaCurrent","filter","Boolean","join","Form","fetcherKey","onSubmit","props","forwardedRef","submit","useSubmit","formAction","useFormAction","formMethod","preventDefault","submitter","nativeEvent","submitMethod","currentTarget","ScrollRestoration","getKey","storageKey","useScrollRestoration","DataRouterHook","DataRouterStateHook","useDataRouterContext","hookName","ctx","invariant","useDataRouterState","replaceProp","useNavigate","button","metaKey","altKey","ctrlKey","shiftKey","isModifiedEvent","shouldProcessLinkClick","createPath","useSearchParams","defaultInit","defaultSearchParamsRef","hasSetSearchParamsRef","searchParams","locationSearch","defaultSearchParams","_","getAll","getSearchParamsForLocation","setSearchParams","nextInit","navigateOptions","newSearchParams","fetcherId","getUniqueFetcherId","String","UseSubmit","currentRouteId","useRouteId","options","validateClientSideSubmission","fetch","formEncType","fromRouteId","routeContext","RouteContext","match","matches","slice","params","get","toString","route","index","joinPaths","useFetcher","UseFetcher","routeId","id","defaultKey","setFetcherKey","getFetcher","deleteFetcher","load","submitImpl","FetcherForm","IDLE_FETCHER","useFetchers","UseFetchers","from","savedScrollPositions","UseScrollRestoration","restoreScrollPosition","useMatches","useNavigation","scrollRestoration","callback","capture","addEventListener","removeEventListener","usePageHide","scrollY","sessionStorage","setItem","JSON","stringify","sessionPositions","getItem","parse","getKeyWithoutBasename","disableScrollRestoration","enableScrollRestoration","el","getElementById","decodeURIComponent","scrollIntoView","scrollTo","useBeforeUnload","usePrompt","when","blocker","useBlocker","confirm","setTimeout","proceed","reset","currentPath","nextPath","matchPath"],"mappings":"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"}
     1{"version":3,"file":"react-router-dom.production.min.js","sources":["../dom.ts","../index.tsx"],"sourcesContent":["import type {\n  FormEncType,\n  HTMLFormMethod,\n  RelativeRoutingType,\n} from \"@remix-run/router\";\nimport { stripBasename, UNSAFE_warning as warning } from \"@remix-run/router\";\n\nexport const defaultMethod: HTMLFormMethod = \"get\";\nconst defaultEncType: FormEncType = \"application/x-www-form-urlencoded\";\n\nexport function isHtmlElement(object: any): object is HTMLElement {\n  return object != null && typeof object.tagName === \"string\";\n}\n\nexport function isButtonElement(object: any): object is HTMLButtonElement {\n  return isHtmlElement(object) && object.tagName.toLowerCase() === \"button\";\n}\n\nexport function isFormElement(object: any): object is HTMLFormElement {\n  return isHtmlElement(object) && object.tagName.toLowerCase() === \"form\";\n}\n\nexport function isInputElement(object: any): object is HTMLInputElement {\n  return isHtmlElement(object) && object.tagName.toLowerCase() === \"input\";\n}\n\ntype LimitedMouseEvent = Pick<\n  MouseEvent,\n  \"button\" | \"metaKey\" | \"altKey\" | \"ctrlKey\" | \"shiftKey\"\n>;\n\nfunction isModifiedEvent(event: LimitedMouseEvent) {\n  return !!(event.metaKey || event.altKey || event.ctrlKey || event.shiftKey);\n}\n\nexport function shouldProcessLinkClick(\n  event: LimitedMouseEvent,\n  target?: string\n) {\n  return (\n    event.button === 0 && // Ignore everything but left clicks\n    (!target || target === \"_self\") && // Let browser handle \"target=_blank\" etc.\n    !isModifiedEvent(event) // Ignore clicks with modifier keys\n  );\n}\n\nexport type ParamKeyValuePair = [string, string];\n\nexport type URLSearchParamsInit =\n  | string\n  | ParamKeyValuePair[]\n  | Record<string, string | string[]>\n  | URLSearchParams;\n\n/**\n * Creates a URLSearchParams object using the given initializer.\n *\n * This is identical to `new URLSearchParams(init)` except it also\n * supports arrays as values in the object form of the initializer\n * instead of just strings. This is convenient when you need multiple\n * values for a given key, but don't want to use an array initializer.\n *\n * For example, instead of:\n *\n *   let searchParams = new URLSearchParams([\n *     ['sort', 'name'],\n *     ['sort', 'price']\n *   ]);\n *\n * you can do:\n *\n *   let searchParams = createSearchParams({\n *     sort: ['name', 'price']\n *   });\n */\nexport function createSearchParams(\n  init: URLSearchParamsInit = \"\"\n): URLSearchParams {\n  return new URLSearchParams(\n    typeof init === \"string\" ||\n    Array.isArray(init) ||\n    init instanceof URLSearchParams\n      ? init\n      : Object.keys(init).reduce((memo, key) => {\n          let value = init[key];\n          return memo.concat(\n            Array.isArray(value) ? value.map((v) => [key, v]) : [[key, value]]\n          );\n        }, [] as ParamKeyValuePair[])\n  );\n}\n\nexport function getSearchParamsForLocation(\n  locationSearch: string,\n  defaultSearchParams: URLSearchParams | null\n) {\n  let searchParams = createSearchParams(locationSearch);\n\n  if (defaultSearchParams) {\n    // Use `defaultSearchParams.forEach(...)` here instead of iterating of\n    // `defaultSearchParams.keys()` to work-around a bug in Firefox related to\n    // web extensions. Relevant Bugzilla tickets:\n    // https://bugzilla.mozilla.org/show_bug.cgi?id=1414602\n    // https://bugzilla.mozilla.org/show_bug.cgi?id=1023984\n    defaultSearchParams.forEach((_, key) => {\n      if (!searchParams.has(key)) {\n        defaultSearchParams.getAll(key).forEach((value) => {\n          searchParams.append(key, value);\n        });\n      }\n    });\n  }\n\n  return searchParams;\n}\n\n// Thanks https://github.com/sindresorhus/type-fest!\ntype JsonObject = { [Key in string]: JsonValue } & {\n  [Key in string]?: JsonValue | undefined;\n};\ntype JsonArray = JsonValue[] | readonly JsonValue[];\ntype JsonPrimitive = string | number | boolean | null;\ntype JsonValue = JsonPrimitive | JsonObject | JsonArray;\n\nexport type SubmitTarget =\n  | HTMLFormElement\n  | HTMLButtonElement\n  | HTMLInputElement\n  | FormData\n  | URLSearchParams\n  | JsonValue\n  | null;\n\n// One-time check for submitter support\nlet _formDataSupportsSubmitter: boolean | null = null;\n\nfunction isFormDataSubmitterSupported() {\n  if (_formDataSupportsSubmitter === null) {\n    try {\n      new FormData(\n        document.createElement(\"form\"),\n        // @ts-expect-error if FormData supports the submitter parameter, this will throw\n        0\n      );\n      _formDataSupportsSubmitter = false;\n    } catch (e) {\n      _formDataSupportsSubmitter = true;\n    }\n  }\n  return _formDataSupportsSubmitter;\n}\n\n/**\n * Submit options shared by both navigations and fetchers\n */\ninterface SharedSubmitOptions {\n  /**\n   * The HTTP method used to submit the form. Overrides `<form method>`.\n   * Defaults to \"GET\".\n   */\n  method?: HTMLFormMethod;\n\n  /**\n   * The action URL path used to submit the form. Overrides `<form action>`.\n   * Defaults to the path of the current route.\n   */\n  action?: string;\n\n  /**\n   * The encoding used to submit the form. Overrides `<form encType>`.\n   * Defaults to \"application/x-www-form-urlencoded\".\n   */\n  encType?: FormEncType;\n\n  /**\n   * Determines whether the form action is relative to the route hierarchy or\n   * the pathname.  Use this if you want to opt out of navigating the route\n   * hierarchy and want to instead route based on /-delimited URL segments\n   */\n  relative?: RelativeRoutingType;\n\n  /**\n   * In browser-based environments, prevent resetting scroll after this\n   * navigation when using the <ScrollRestoration> component\n   */\n  preventScrollReset?: boolean;\n\n  /**\n   * Enable flushSync for this submission's state updates\n   */\n  flushSync?: boolean;\n}\n\n/**\n * Submit options available to fetchers\n */\nexport interface FetcherSubmitOptions extends SharedSubmitOptions {}\n\n/**\n * Submit options available to navigations\n */\nexport interface SubmitOptions extends FetcherSubmitOptions {\n  /**\n   * Set `true` to replace the current entry in the browser's history stack\n   * instead of creating a new one (i.e. stay on \"the same page\"). Defaults\n   * to `false`.\n   */\n  replace?: boolean;\n\n  /**\n   * State object to add to the history stack entry for this navigation\n   */\n  state?: any;\n\n  /**\n   * Indicate a specific fetcherKey to use when using navigate=false\n   */\n  fetcherKey?: string;\n\n  /**\n   * navigate=false will use a fetcher instead of a navigation\n   */\n  navigate?: boolean;\n\n  /**\n   * Enable view transitions on this submission navigation\n   */\n  viewTransition?: boolean;\n}\n\nconst supportedFormEncTypes: Set<FormEncType> = new Set([\n  \"application/x-www-form-urlencoded\",\n  \"multipart/form-data\",\n  \"text/plain\",\n]);\n\nfunction getFormEncType(encType: string | null) {\n  if (encType != null && !supportedFormEncTypes.has(encType as FormEncType)) {\n    warning(\n      false,\n      `\"${encType}\" is not a valid \\`encType\\` for \\`<Form>\\`/\\`<fetcher.Form>\\` ` +\n        `and will default to \"${defaultEncType}\"`\n    );\n\n    return null;\n  }\n  return encType;\n}\n\nexport function getFormSubmissionInfo(\n  target: SubmitTarget,\n  basename: string\n): {\n  action: string | null;\n  method: string;\n  encType: string;\n  formData: FormData | undefined;\n  body: any;\n} {\n  let method: string;\n  let action: string | null;\n  let encType: string;\n  let formData: FormData | undefined;\n  let body: any;\n\n  if (isFormElement(target)) {\n    // When grabbing the action from the element, it will have had the basename\n    // prefixed to ensure non-JS scenarios work, so strip it since we'll\n    // re-prefix in the router\n    let attr = target.getAttribute(\"action\");\n    action = attr ? stripBasename(attr, basename) : null;\n    method = target.getAttribute(\"method\") || defaultMethod;\n    encType = getFormEncType(target.getAttribute(\"enctype\")) || defaultEncType;\n\n    formData = new FormData(target);\n  } else if (\n    isButtonElement(target) ||\n    (isInputElement(target) &&\n      (target.type === \"submit\" || target.type === \"image\"))\n  ) {\n    let form = target.form;\n\n    if (form == null) {\n      throw new Error(\n        `Cannot submit a <button> or <input type=\"submit\"> without a <form>`\n      );\n    }\n\n    // <button>/<input type=\"submit\"> may override attributes of <form>\n\n    // When grabbing the action from the element, it will have had the basename\n    // prefixed to ensure non-JS scenarios work, so strip it since we'll\n    // re-prefix in the router\n    let attr = target.getAttribute(\"formaction\") || form.getAttribute(\"action\");\n    action = attr ? stripBasename(attr, basename) : null;\n\n    method =\n      target.getAttribute(\"formmethod\") ||\n      form.getAttribute(\"method\") ||\n      defaultMethod;\n    encType =\n      getFormEncType(target.getAttribute(\"formenctype\")) ||\n      getFormEncType(form.getAttribute(\"enctype\")) ||\n      defaultEncType;\n\n    // Build a FormData object populated from a form and submitter\n    formData = new FormData(form, target);\n\n    // If this browser doesn't support the `FormData(el, submitter)` format,\n    // then tack on the submitter value at the end.  This is a lightweight\n    // solution that is not 100% spec compliant.  For complete support in older\n    // browsers, consider using the `formdata-submitter-polyfill` package\n    if (!isFormDataSubmitterSupported()) {\n      let { name, type, value } = target;\n      if (type === \"image\") {\n        let prefix = name ? `${name}.` : \"\";\n        formData.append(`${prefix}x`, \"0\");\n        formData.append(`${prefix}y`, \"0\");\n      } else if (name) {\n        formData.append(name, value);\n      }\n    }\n  } else if (isHtmlElement(target)) {\n    throw new Error(\n      `Cannot submit element that is not <form>, <button>, or ` +\n        `<input type=\"submit|image\">`\n    );\n  } else {\n    method = defaultMethod;\n    action = null;\n    encType = defaultEncType;\n    body = target;\n  }\n\n  // Send body for <Form encType=\"text/plain\" so we encode it into text\n  if (formData && encType === \"text/plain\") {\n    body = formData;\n    formData = undefined;\n  }\n\n  return { action, method: method.toLowerCase(), encType, formData, body };\n}\n","/**\n * NOTE: If you refactor this to split up the modules into separate files,\n * you'll need to update the rollup config for react-router-dom-v5-compat.\n */\nimport * as React from \"react\";\nimport * as ReactDOM from \"react-dom\";\nimport type {\n  DataRouteObject,\n  FutureConfig,\n  Location,\n  NavigateOptions,\n  NavigationType,\n  Navigator,\n  RelativeRoutingType,\n  RouteObject,\n  RouterProps,\n  RouterProviderProps,\n  To,\n  DataStrategyFunction,\n  PatchRoutesOnNavigationFunction,\n} from \"react-router\";\nimport {\n  Router,\n  createPath,\n  useHref,\n  useLocation,\n  useMatches,\n  useNavigate,\n  useNavigation,\n  useResolvedPath,\n  useBlocker,\n  UNSAFE_DataRouterContext as DataRouterContext,\n  UNSAFE_DataRouterStateContext as DataRouterStateContext,\n  UNSAFE_NavigationContext as NavigationContext,\n  UNSAFE_RouteContext as RouteContext,\n  UNSAFE_logV6DeprecationWarnings as logV6DeprecationWarnings,\n  UNSAFE_mapRouteProperties as mapRouteProperties,\n  UNSAFE_useRouteId as useRouteId,\n  UNSAFE_useRoutesImpl as useRoutesImpl,\n} from \"react-router\";\nimport type {\n  BrowserHistory,\n  Fetcher,\n  FormEncType,\n  FormMethod,\n  FutureConfig as RouterFutureConfig,\n  GetScrollRestorationKeyFunction,\n  HashHistory,\n  History,\n  HTMLFormMethod,\n  HydrationState,\n  Router as RemixRouter,\n  V7_FormMethod,\n  RouterState,\n  RouterSubscriber,\n  BlockerFunction,\n} from \"@remix-run/router\";\nimport {\n  createRouter,\n  createBrowserHistory,\n  createHashHistory,\n  joinPaths,\n  stripBasename,\n  UNSAFE_ErrorResponseImpl as ErrorResponseImpl,\n  UNSAFE_invariant as invariant,\n  UNSAFE_warning as warning,\n  matchPath,\n  IDLE_FETCHER,\n} from \"@remix-run/router\";\n\nimport type {\n  SubmitOptions,\n  ParamKeyValuePair,\n  URLSearchParamsInit,\n  SubmitTarget,\n  FetcherSubmitOptions,\n} from \"./dom\";\nimport {\n  createSearchParams,\n  defaultMethod,\n  getFormSubmissionInfo,\n  getSearchParamsForLocation,\n  shouldProcessLinkClick,\n} from \"./dom\";\n\n////////////////////////////////////////////////////////////////////////////////\n//#region Re-exports\n////////////////////////////////////////////////////////////////////////////////\n\nexport type {\n  FormEncType,\n  FormMethod,\n  GetScrollRestorationKeyFunction,\n  ParamKeyValuePair,\n  SubmitOptions,\n  URLSearchParamsInit,\n  V7_FormMethod,\n};\nexport { createSearchParams, ErrorResponseImpl as UNSAFE_ErrorResponseImpl };\n\n// Note: Keep in sync with react-router exports!\nexport type {\n  ActionFunction,\n  ActionFunctionArgs,\n  AwaitProps,\n  Blocker,\n  BlockerFunction,\n  DataRouteMatch,\n  DataRouteObject,\n  DataStrategyFunction,\n  DataStrategyFunctionArgs,\n  DataStrategyMatch,\n  DataStrategyResult,\n  ErrorResponse,\n  Fetcher,\n  FutureConfig,\n  Hash,\n  IndexRouteObject,\n  IndexRouteProps,\n  JsonFunction,\n  LazyRouteFunction,\n  LayoutRouteProps,\n  LoaderFunction,\n  LoaderFunctionArgs,\n  Location,\n  MemoryRouterProps,\n  NavigateFunction,\n  NavigateOptions,\n  NavigateProps,\n  Navigation,\n  Navigator,\n  NonIndexRouteObject,\n  OutletProps,\n  Params,\n  ParamParseKey,\n  PatchRoutesOnNavigationFunction,\n  PatchRoutesOnNavigationFunctionArgs,\n  Path,\n  PathMatch,\n  Pathname,\n  PathParam,\n  PathPattern,\n  PathRouteProps,\n  RedirectFunction,\n  RelativeRoutingType,\n  RouteMatch,\n  RouteObject,\n  RouteProps,\n  RouterProps,\n  RouterProviderProps,\n  RoutesProps,\n  Search,\n  ShouldRevalidateFunction,\n  ShouldRevalidateFunctionArgs,\n  To,\n  UIMatch,\n} from \"react-router\";\nexport {\n  AbortedDeferredError,\n  Await,\n  MemoryRouter,\n  Navigate,\n  NavigationType,\n  Outlet,\n  Route,\n  Router,\n  Routes,\n  createMemoryRouter,\n  createPath,\n  createRoutesFromChildren,\n  createRoutesFromElements,\n  defer,\n  isRouteErrorResponse,\n  generatePath,\n  json,\n  matchPath,\n  matchRoutes,\n  parsePath,\n  redirect,\n  redirectDocument,\n  replace,\n  renderMatches,\n  resolvePath,\n  useActionData,\n  useAsyncError,\n  useAsyncValue,\n  useBlocker,\n  useHref,\n  useInRouterContext,\n  useLoaderData,\n  useLocation,\n  useMatch,\n  useMatches,\n  useNavigate,\n  useNavigation,\n  useNavigationType,\n  useOutlet,\n  useOutletContext,\n  useParams,\n  useResolvedPath,\n  useRevalidator,\n  useRouteError,\n  useRouteLoaderData,\n  useRoutes,\n} from \"react-router\";\n\n///////////////////////////////////////////////////////////////////////////////\n// DANGER! PLEASE READ ME!\n// We provide these exports as an escape hatch in the event that you need any\n// routing data that we don't provide an explicit API for. With that said, we\n// want to cover your use case if we can, so if you feel the need to use these\n// we want to hear from you. Let us know what you're building and we'll do our\n// best to make sure we can support you!\n//\n// We consider these exports an implementation detail and do not guarantee\n// against any breaking changes, regardless of the semver release. Use with\n// extreme caution and only if you understand the consequences. Godspeed.\n///////////////////////////////////////////////////////////////////////////////\n\n/** @internal */\nexport {\n  UNSAFE_DataRouterContext,\n  UNSAFE_DataRouterStateContext,\n  UNSAFE_NavigationContext,\n  UNSAFE_LocationContext,\n  UNSAFE_RouteContext,\n  UNSAFE_useRouteId,\n} from \"react-router\";\n//#endregion\n\ndeclare global {\n  var __staticRouterHydrationData: HydrationState | undefined;\n  var __reactRouterVersion: string;\n  interface Document {\n    startViewTransition(cb: () => Promise<void> | void): ViewTransition;\n  }\n}\n\n// HEY YOU! DON'T TOUCH THIS VARIABLE!\n//\n// It is replaced with the proper version at build time via a babel plugin in\n// the rollup config.\n//\n// Export a global property onto the window for React Router detection by the\n// Core Web Vitals Technology Report.  This way they can configure the `wappalyzer`\n// to detect and properly classify live websites as being built with React Router:\n// https://github.com/HTTPArchive/wappalyzer/blob/main/src/technologies/r.json\nconst REACT_ROUTER_VERSION = \"0\";\ntry {\n  window.__reactRouterVersion = REACT_ROUTER_VERSION;\n} catch (e) {\n  // no-op\n}\n\n////////////////////////////////////////////////////////////////////////////////\n//#region Routers\n////////////////////////////////////////////////////////////////////////////////\n\ninterface DOMRouterOpts {\n  basename?: string;\n  future?: Partial<Omit<RouterFutureConfig, \"v7_prependBasename\">>;\n  hydrationData?: HydrationState;\n  dataStrategy?: DataStrategyFunction;\n  patchRoutesOnNavigation?: PatchRoutesOnNavigationFunction;\n  window?: Window;\n}\n\nexport function createBrowserRouter(\n  routes: RouteObject[],\n  opts?: DOMRouterOpts\n): RemixRouter {\n  return createRouter({\n    basename: opts?.basename,\n    future: {\n      ...opts?.future,\n      v7_prependBasename: true,\n    },\n    history: createBrowserHistory({ window: opts?.window }),\n    hydrationData: opts?.hydrationData || parseHydrationData(),\n    routes,\n    mapRouteProperties,\n    dataStrategy: opts?.dataStrategy,\n    patchRoutesOnNavigation: opts?.patchRoutesOnNavigation,\n    window: opts?.window,\n  }).initialize();\n}\n\nexport function createHashRouter(\n  routes: RouteObject[],\n  opts?: DOMRouterOpts\n): RemixRouter {\n  return createRouter({\n    basename: opts?.basename,\n    future: {\n      ...opts?.future,\n      v7_prependBasename: true,\n    },\n    history: createHashHistory({ window: opts?.window }),\n    hydrationData: opts?.hydrationData || parseHydrationData(),\n    routes,\n    mapRouteProperties,\n    dataStrategy: opts?.dataStrategy,\n    patchRoutesOnNavigation: opts?.patchRoutesOnNavigation,\n    window: opts?.window,\n  }).initialize();\n}\n\nfunction parseHydrationData(): HydrationState | undefined {\n  let state = window?.__staticRouterHydrationData;\n  if (state && state.errors) {\n    state = {\n      ...state,\n      errors: deserializeErrors(state.errors),\n    };\n  }\n  return state;\n}\n\nfunction deserializeErrors(\n  errors: RemixRouter[\"state\"][\"errors\"]\n): RemixRouter[\"state\"][\"errors\"] {\n  if (!errors) return null;\n  let entries = Object.entries(errors);\n  let serialized: RemixRouter[\"state\"][\"errors\"] = {};\n  for (let [key, val] of entries) {\n    // Hey you!  If you change this, please change the corresponding logic in\n    // serializeErrors in react-router-dom/server.tsx :)\n    if (val && val.__type === \"RouteErrorResponse\") {\n      serialized[key] = new ErrorResponseImpl(\n        val.status,\n        val.statusText,\n        val.data,\n        val.internal === true\n      );\n    } else if (val && val.__type === \"Error\") {\n      // Attempt to reconstruct the right type of Error (i.e., ReferenceError)\n      if (val.__subType) {\n        let ErrorConstructor = window[val.__subType];\n        if (typeof ErrorConstructor === \"function\") {\n          try {\n            // @ts-expect-error\n            let error = new ErrorConstructor(val.message);\n            // Wipe away the client-side stack trace.  Nothing to fill it in with\n            // because we don't serialize SSR stack traces for security reasons\n            error.stack = \"\";\n            serialized[key] = error;\n          } catch (e) {\n            // no-op - fall through and create a normal Error\n          }\n        }\n      }\n\n      if (serialized[key] == null) {\n        let error = new Error(val.message);\n        // Wipe away the client-side stack trace.  Nothing to fill it in with\n        // because we don't serialize SSR stack traces for security reasons\n        error.stack = \"\";\n        serialized[key] = error;\n      }\n    } else {\n      serialized[key] = val;\n    }\n  }\n  return serialized;\n}\n\n//#endregion\n\n////////////////////////////////////////////////////////////////////////////////\n//#region Contexts\n////////////////////////////////////////////////////////////////////////////////\n\ntype ViewTransitionContextObject =\n  | {\n      isTransitioning: false;\n    }\n  | {\n      isTransitioning: true;\n      flushSync: boolean;\n      currentLocation: Location;\n      nextLocation: Location;\n    };\n\nconst ViewTransitionContext = React.createContext<ViewTransitionContextObject>({\n  isTransitioning: false,\n});\nif (__DEV__) {\n  ViewTransitionContext.displayName = \"ViewTransition\";\n}\n\nexport { ViewTransitionContext as UNSAFE_ViewTransitionContext };\n\n// TODO: (v7) Change the useFetcher data from `any` to `unknown`\ntype FetchersContextObject = Map<string, any>;\n\nconst FetchersContext = React.createContext<FetchersContextObject>(new Map());\nif (__DEV__) {\n  FetchersContext.displayName = \"Fetchers\";\n}\n\nexport { FetchersContext as UNSAFE_FetchersContext };\n\n//#endregion\n\n////////////////////////////////////////////////////////////////////////////////\n//#region Components\n////////////////////////////////////////////////////////////////////////////////\n\n/**\n  Webpack + React 17 fails to compile on any of the following because webpack\n  complains that `startTransition` doesn't exist in `React`:\n  * import { startTransition } from \"react\"\n  * import * as React from from \"react\";\n    \"startTransition\" in React ? React.startTransition(() => setState()) : setState()\n  * import * as React from from \"react\";\n    \"startTransition\" in React ? React[\"startTransition\"](() => setState()) : setState()\n\n  Moving it to a constant such as the following solves the Webpack/React 17 issue:\n  * import * as React from from \"react\";\n    const START_TRANSITION = \"startTransition\";\n    START_TRANSITION in React ? React[START_TRANSITION](() => setState()) : setState()\n\n  However, that introduces webpack/terser minification issues in production builds\n  in React 18 where minification/obfuscation ends up removing the call of\n  React.startTransition entirely from the first half of the ternary.  Grabbing\n  this exported reference once up front resolves that issue.\n\n  See https://github.com/remix-run/react-router/issues/10579\n*/\nconst START_TRANSITION = \"startTransition\";\nconst startTransitionImpl = React[START_TRANSITION];\nconst FLUSH_SYNC = \"flushSync\";\nconst flushSyncImpl = ReactDOM[FLUSH_SYNC];\nconst USE_ID = \"useId\";\nconst useIdImpl = React[USE_ID];\n\nfunction startTransitionSafe(cb: () => void) {\n  if (startTransitionImpl) {\n    startTransitionImpl(cb);\n  } else {\n    cb();\n  }\n}\n\nfunction flushSyncSafe(cb: () => void) {\n  if (flushSyncImpl) {\n    flushSyncImpl(cb);\n  } else {\n    cb();\n  }\n}\n\ninterface ViewTransition {\n  finished: Promise<void>;\n  ready: Promise<void>;\n  updateCallbackDone: Promise<void>;\n  skipTransition(): void;\n}\n\nclass Deferred<T> {\n  status: \"pending\" | \"resolved\" | \"rejected\" = \"pending\";\n  promise: Promise<T>;\n  // @ts-expect-error - no initializer\n  resolve: (value: T) => void;\n  // @ts-expect-error - no initializer\n  reject: (reason?: unknown) => void;\n  constructor() {\n    this.promise = new Promise((resolve, reject) => {\n      this.resolve = (value) => {\n        if (this.status === \"pending\") {\n          this.status = \"resolved\";\n          resolve(value);\n        }\n      };\n      this.reject = (reason) => {\n        if (this.status === \"pending\") {\n          this.status = \"rejected\";\n          reject(reason);\n        }\n      };\n    });\n  }\n}\n\n/**\n * Given a Remix Router instance, render the appropriate UI\n */\nexport function RouterProvider({\n  fallbackElement,\n  router,\n  future,\n}: RouterProviderProps): React.ReactElement {\n  let [state, setStateImpl] = React.useState(router.state);\n  let [pendingState, setPendingState] = React.useState<RouterState>();\n  let [vtContext, setVtContext] = React.useState<ViewTransitionContextObject>({\n    isTransitioning: false,\n  });\n  let [renderDfd, setRenderDfd] = React.useState<Deferred<void>>();\n  let [transition, setTransition] = React.useState<ViewTransition>();\n  let [interruption, setInterruption] = React.useState<{\n    state: RouterState;\n    currentLocation: Location;\n    nextLocation: Location;\n  }>();\n  let fetcherData = React.useRef<Map<string, any>>(new Map());\n  let { v7_startTransition } = future || {};\n\n  let optInStartTransition = React.useCallback(\n    (cb: () => void) => {\n      if (v7_startTransition) {\n        startTransitionSafe(cb);\n      } else {\n        cb();\n      }\n    },\n    [v7_startTransition]\n  );\n\n  let setState = React.useCallback<RouterSubscriber>(\n    (\n      newState: RouterState,\n      {\n        deletedFetchers,\n        flushSync: flushSync,\n        viewTransitionOpts: viewTransitionOpts,\n      }\n    ) => {\n      deletedFetchers.forEach((key) => fetcherData.current.delete(key));\n      newState.fetchers.forEach((fetcher, key) => {\n        if (fetcher.data !== undefined) {\n          fetcherData.current.set(key, fetcher.data);\n        }\n      });\n\n      let isViewTransitionUnavailable =\n        router.window == null ||\n        router.window.document == null ||\n        typeof router.window.document.startViewTransition !== \"function\";\n\n      // If this isn't a view transition or it's not available in this browser,\n      // just update and be done with it\n      if (!viewTransitionOpts || isViewTransitionUnavailable) {\n        if (flushSync) {\n          flushSyncSafe(() => setStateImpl(newState));\n        } else {\n          optInStartTransition(() => setStateImpl(newState));\n        }\n        return;\n      }\n\n      // flushSync + startViewTransition\n      if (flushSync) {\n        // Flush through the context to mark DOM elements as transition=ing\n        flushSyncSafe(() => {\n          // Cancel any pending transitions\n          if (transition) {\n            renderDfd && renderDfd.resolve();\n            transition.skipTransition();\n          }\n          setVtContext({\n            isTransitioning: true,\n            flushSync: true,\n            currentLocation: viewTransitionOpts.currentLocation,\n            nextLocation: viewTransitionOpts.nextLocation,\n          });\n        });\n\n        // Update the DOM\n        let t = router.window!.document.startViewTransition(() => {\n          flushSyncSafe(() => setStateImpl(newState));\n        });\n\n        // Clean up after the animation completes\n        t.finished.finally(() => {\n          flushSyncSafe(() => {\n            setRenderDfd(undefined);\n            setTransition(undefined);\n            setPendingState(undefined);\n            setVtContext({ isTransitioning: false });\n          });\n        });\n\n        flushSyncSafe(() => setTransition(t));\n        return;\n      }\n\n      // startTransition + startViewTransition\n      if (transition) {\n        // Interrupting an in-progress transition, cancel and let everything flush\n        // out, and then kick off a new transition from the interruption state\n        renderDfd && renderDfd.resolve();\n        transition.skipTransition();\n        setInterruption({\n          state: newState,\n          currentLocation: viewTransitionOpts.currentLocation,\n          nextLocation: viewTransitionOpts.nextLocation,\n        });\n      } else {\n        // Completed navigation update with opted-in view transitions, let 'er rip\n        setPendingState(newState);\n        setVtContext({\n          isTransitioning: true,\n          flushSync: false,\n          currentLocation: viewTransitionOpts.currentLocation,\n          nextLocation: viewTransitionOpts.nextLocation,\n        });\n      }\n    },\n    [router.window, transition, renderDfd, fetcherData, optInStartTransition]\n  );\n\n  // Need to use a layout effect here so we are subscribed early enough to\n  // pick up on any render-driven redirects/navigations (useEffect/<Navigate>)\n  React.useLayoutEffect(() => router.subscribe(setState), [router, setState]);\n\n  // When we start a view transition, create a Deferred we can use for the\n  // eventual \"completed\" render\n  React.useEffect(() => {\n    if (vtContext.isTransitioning && !vtContext.flushSync) {\n      setRenderDfd(new Deferred<void>());\n    }\n  }, [vtContext]);\n\n  // Once the deferred is created, kick off startViewTransition() to update the\n  // DOM and then wait on the Deferred to resolve (indicating the DOM update has\n  // happened)\n  React.useEffect(() => {\n    if (renderDfd && pendingState && router.window) {\n      let newState = pendingState;\n      let renderPromise = renderDfd.promise;\n      let transition = router.window.document.startViewTransition(async () => {\n        optInStartTransition(() => setStateImpl(newState));\n        await renderPromise;\n      });\n      transition.finished.finally(() => {\n        setRenderDfd(undefined);\n        setTransition(undefined);\n        setPendingState(undefined);\n        setVtContext({ isTransitioning: false });\n      });\n      setTransition(transition);\n    }\n  }, [optInStartTransition, pendingState, renderDfd, router.window]);\n\n  // When the new location finally renders and is committed to the DOM, this\n  // effect will run to resolve the transition\n  React.useEffect(() => {\n    if (\n      renderDfd &&\n      pendingState &&\n      state.location.key === pendingState.location.key\n    ) {\n      renderDfd.resolve();\n    }\n  }, [renderDfd, transition, state.location, pendingState]);\n\n  // If we get interrupted with a new navigation during a transition, we skip\n  // the active transition, let it cleanup, then kick it off again here\n  React.useEffect(() => {\n    if (!vtContext.isTransitioning && interruption) {\n      setPendingState(interruption.state);\n      setVtContext({\n        isTransitioning: true,\n        flushSync: false,\n        currentLocation: interruption.currentLocation,\n        nextLocation: interruption.nextLocation,\n      });\n      setInterruption(undefined);\n    }\n  }, [vtContext.isTransitioning, interruption]);\n\n  React.useEffect(() => {\n    warning(\n      fallbackElement == null || !router.future.v7_partialHydration,\n      \"`<RouterProvider fallbackElement>` is deprecated when using \" +\n        \"`v7_partialHydration`, use a `HydrateFallback` component instead\"\n    );\n    // Only log this once on initial mount\n    // eslint-disable-next-line react-hooks/exhaustive-deps\n  }, []);\n\n  let navigator = React.useMemo((): Navigator => {\n    return {\n      createHref: router.createHref,\n      encodeLocation: router.encodeLocation,\n      go: (n) => router.navigate(n),\n      push: (to, state, opts) =>\n        router.navigate(to, {\n          state,\n          preventScrollReset: opts?.preventScrollReset,\n        }),\n      replace: (to, state, opts) =>\n        router.navigate(to, {\n          replace: true,\n          state,\n          preventScrollReset: opts?.preventScrollReset,\n        }),\n    };\n  }, [router]);\n\n  let basename = router.basename || \"/\";\n\n  let dataRouterContext = React.useMemo(\n    () => ({\n      router,\n      navigator,\n      static: false,\n      basename,\n    }),\n    [router, navigator, basename]\n  );\n\n  let routerFuture = React.useMemo<RouterProps[\"future\"]>(\n    () => ({\n      v7_relativeSplatPath: router.future.v7_relativeSplatPath,\n    }),\n    [router.future.v7_relativeSplatPath]\n  );\n\n  React.useEffect(\n    () => logV6DeprecationWarnings(future, router.future),\n    [future, router.future]\n  );\n\n  // The fragment and {null} here are important!  We need them to keep React 18's\n  // useId happy when we are server-rendering since we may have a <script> here\n  // containing the hydrated server-side staticContext (from StaticRouterProvider).\n  // useId relies on the component tree structure to generate deterministic id's\n  // so we need to ensure it remains the same on the client even though\n  // we don't need the <script> tag\n  return (\n    <>\n      <DataRouterContext.Provider value={dataRouterContext}>\n        <DataRouterStateContext.Provider value={state}>\n          <FetchersContext.Provider value={fetcherData.current}>\n            <ViewTransitionContext.Provider value={vtContext}>\n              <Router\n                basename={basename}\n                location={state.location}\n                navigationType={state.historyAction}\n                navigator={navigator}\n                future={routerFuture}\n              >\n                {state.initialized || router.future.v7_partialHydration ? (\n                  <MemoizedDataRoutes\n                    routes={router.routes}\n                    future={router.future}\n                    state={state}\n                  />\n                ) : (\n                  fallbackElement\n                )}\n              </Router>\n            </ViewTransitionContext.Provider>\n          </FetchersContext.Provider>\n        </DataRouterStateContext.Provider>\n      </DataRouterContext.Provider>\n      {null}\n    </>\n  );\n}\n\n// Memoize to avoid re-renders when updating `ViewTransitionContext`\nconst MemoizedDataRoutes = React.memo(DataRoutes);\n\nfunction DataRoutes({\n  routes,\n  future,\n  state,\n}: {\n  routes: DataRouteObject[];\n  future: RemixRouter[\"future\"];\n  state: RouterState;\n}): React.ReactElement | null {\n  return useRoutesImpl(routes, undefined, state, future);\n}\n\nexport interface BrowserRouterProps {\n  basename?: string;\n  children?: React.ReactNode;\n  future?: Partial<FutureConfig>;\n  window?: Window;\n}\n\n/**\n * A `<Router>` for use in web browsers. Provides the cleanest URLs.\n */\nexport function BrowserRouter({\n  basename,\n  children,\n  future,\n  window,\n}: BrowserRouterProps) {\n  let historyRef = React.useRef<BrowserHistory>();\n  if (historyRef.current == null) {\n    historyRef.current = createBrowserHistory({ window, v5Compat: true });\n  }\n\n  let history = historyRef.current;\n  let [state, setStateImpl] = React.useState({\n    action: history.action,\n    location: history.location,\n  });\n  let { v7_startTransition } = future || {};\n  let setState = React.useCallback(\n    (newState: { action: NavigationType; location: Location }) => {\n      v7_startTransition && startTransitionImpl\n        ? startTransitionImpl(() => setStateImpl(newState))\n        : setStateImpl(newState);\n    },\n    [setStateImpl, v7_startTransition]\n  );\n\n  React.useLayoutEffect(() => history.listen(setState), [history, setState]);\n\n  React.useEffect(() => logV6DeprecationWarnings(future), [future]);\n\n  return (\n    <Router\n      basename={basename}\n      children={children}\n      location={state.location}\n      navigationType={state.action}\n      navigator={history}\n      future={future}\n    />\n  );\n}\n\nexport interface HashRouterProps {\n  basename?: string;\n  children?: React.ReactNode;\n  future?: Partial<FutureConfig>;\n  window?: Window;\n}\n\n/**\n * A `<Router>` for use in web browsers. Stores the location in the hash\n * portion of the URL so it is not sent to the server.\n */\nexport function HashRouter({\n  basename,\n  children,\n  future,\n  window,\n}: HashRouterProps) {\n  let historyRef = React.useRef<HashHistory>();\n  if (historyRef.current == null) {\n    historyRef.current = createHashHistory({ window, v5Compat: true });\n  }\n\n  let history = historyRef.current;\n  let [state, setStateImpl] = React.useState({\n    action: history.action,\n    location: history.location,\n  });\n  let { v7_startTransition } = future || {};\n  let setState = React.useCallback(\n    (newState: { action: NavigationType; location: Location }) => {\n      v7_startTransition && startTransitionImpl\n        ? startTransitionImpl(() => setStateImpl(newState))\n        : setStateImpl(newState);\n    },\n    [setStateImpl, v7_startTransition]\n  );\n\n  React.useLayoutEffect(() => history.listen(setState), [history, setState]);\n\n  React.useEffect(() => logV6DeprecationWarnings(future), [future]);\n\n  return (\n    <Router\n      basename={basename}\n      children={children}\n      location={state.location}\n      navigationType={state.action}\n      navigator={history}\n      future={future}\n    />\n  );\n}\n\nexport interface HistoryRouterProps {\n  basename?: string;\n  children?: React.ReactNode;\n  future?: FutureConfig;\n  history: History;\n}\n\n/**\n * A `<Router>` that accepts a pre-instantiated history object. It's important\n * to note that using your own history object is highly discouraged and may add\n * two versions of the history library to your bundles unless you use the same\n * version of the history library that React Router uses internally.\n */\nfunction HistoryRouter({\n  basename,\n  children,\n  future,\n  history,\n}: HistoryRouterProps) {\n  let [state, setStateImpl] = React.useState({\n    action: history.action,\n    location: history.location,\n  });\n  let { v7_startTransition } = future || {};\n  let setState = React.useCallback(\n    (newState: { action: NavigationType; location: Location }) => {\n      v7_startTransition && startTransitionImpl\n        ? startTransitionImpl(() => setStateImpl(newState))\n        : setStateImpl(newState);\n    },\n    [setStateImpl, v7_startTransition]\n  );\n\n  React.useLayoutEffect(() => history.listen(setState), [history, setState]);\n\n  React.useEffect(() => logV6DeprecationWarnings(future), [future]);\n\n  return (\n    <Router\n      basename={basename}\n      children={children}\n      location={state.location}\n      navigationType={state.action}\n      navigator={history}\n      future={future}\n    />\n  );\n}\n\nif (__DEV__) {\n  HistoryRouter.displayName = \"unstable_HistoryRouter\";\n}\n\nexport { HistoryRouter as unstable_HistoryRouter };\n\nexport interface LinkProps\n  extends Omit<React.AnchorHTMLAttributes<HTMLAnchorElement>, \"href\"> {\n  reloadDocument?: boolean;\n  replace?: boolean;\n  state?: any;\n  preventScrollReset?: boolean;\n  relative?: RelativeRoutingType;\n  to: To;\n  viewTransition?: boolean;\n}\n\nconst isBrowser =\n  typeof window !== \"undefined\" &&\n  typeof window.document !== \"undefined\" &&\n  typeof window.document.createElement !== \"undefined\";\n\nconst ABSOLUTE_URL_REGEX = /^(?:[a-z][a-z0-9+.-]*:|\\/\\/)/i;\n\n/**\n * The public API for rendering a history-aware `<a>`.\n */\nexport const Link = React.forwardRef<HTMLAnchorElement, LinkProps>(\n  function LinkWithRef(\n    {\n      onClick,\n      relative,\n      reloadDocument,\n      replace,\n      state,\n      target,\n      to,\n      preventScrollReset,\n      viewTransition,\n      ...rest\n    },\n    ref\n  ) {\n    let { basename } = React.useContext(NavigationContext);\n\n    // Rendered into <a href> for absolute URLs\n    let absoluteHref;\n    let isExternal = false;\n\n    if (typeof to === \"string\" && ABSOLUTE_URL_REGEX.test(to)) {\n      // Render the absolute href server- and client-side\n      absoluteHref = to;\n\n      // Only check for external origins client-side\n      if (isBrowser) {\n        try {\n          let currentUrl = new URL(window.location.href);\n          let targetUrl = to.startsWith(\"//\")\n            ? new URL(currentUrl.protocol + to)\n            : new URL(to);\n          let path = stripBasename(targetUrl.pathname, basename);\n\n          if (targetUrl.origin === currentUrl.origin && path != null) {\n            // Strip the protocol/origin/basename for same-origin absolute URLs\n            to = path + targetUrl.search + targetUrl.hash;\n          } else {\n            isExternal = true;\n          }\n        } catch (e) {\n          // We can't do external URL detection without a valid URL\n          warning(\n            false,\n            `<Link to=\"${to}\"> contains an invalid URL which will probably break ` +\n              `when clicked - please update to a valid URL path.`\n          );\n        }\n      }\n    }\n\n    // Rendered into <a href> for relative URLs\n    let href = useHref(to, { relative });\n\n    let internalOnClick = useLinkClickHandler(to, {\n      replace,\n      state,\n      target,\n      preventScrollReset,\n      relative,\n      viewTransition,\n    });\n    function handleClick(\n      event: React.MouseEvent<HTMLAnchorElement, MouseEvent>\n    ) {\n      if (onClick) onClick(event);\n      if (!event.defaultPrevented) {\n        internalOnClick(event);\n      }\n    }\n\n    return (\n      // eslint-disable-next-line jsx-a11y/anchor-has-content\n      <a\n        {...rest}\n        href={absoluteHref || href}\n        onClick={isExternal || reloadDocument ? onClick : handleClick}\n        ref={ref}\n        target={target}\n      />\n    );\n  }\n);\n\nif (__DEV__) {\n  Link.displayName = \"Link\";\n}\n\nexport type NavLinkRenderProps = {\n  isActive: boolean;\n  isPending: boolean;\n  isTransitioning: boolean;\n};\n\nexport interface NavLinkProps\n  extends Omit<LinkProps, \"className\" | \"style\" | \"children\"> {\n  children?: React.ReactNode | ((props: NavLinkRenderProps) => React.ReactNode);\n  caseSensitive?: boolean;\n  className?: string | ((props: NavLinkRenderProps) => string | undefined);\n  end?: boolean;\n  style?:\n    | React.CSSProperties\n    | ((props: NavLinkRenderProps) => React.CSSProperties | undefined);\n}\n\n/**\n * A `<Link>` wrapper that knows if it's \"active\" or not.\n */\nexport const NavLink = React.forwardRef<HTMLAnchorElement, NavLinkProps>(\n  function NavLinkWithRef(\n    {\n      \"aria-current\": ariaCurrentProp = \"page\",\n      caseSensitive = false,\n      className: classNameProp = \"\",\n      end = false,\n      style: styleProp,\n      to,\n      viewTransition,\n      children,\n      ...rest\n    },\n    ref\n  ) {\n    let path = useResolvedPath(to, { relative: rest.relative });\n    let location = useLocation();\n    let routerState = React.useContext(DataRouterStateContext);\n    let { navigator, basename } = React.useContext(NavigationContext);\n    let isTransitioning =\n      routerState != null &&\n      // Conditional usage is OK here because the usage of a data router is static\n      // eslint-disable-next-line react-hooks/rules-of-hooks\n      useViewTransitionState(path) &&\n      viewTransition === true;\n\n    let toPathname = navigator.encodeLocation\n      ? navigator.encodeLocation(path).pathname\n      : path.pathname;\n    let locationPathname = location.pathname;\n    let nextLocationPathname =\n      routerState && routerState.navigation && routerState.navigation.location\n        ? routerState.navigation.location.pathname\n        : null;\n\n    if (!caseSensitive) {\n      locationPathname = locationPathname.toLowerCase();\n      nextLocationPathname = nextLocationPathname\n        ? nextLocationPathname.toLowerCase()\n        : null;\n      toPathname = toPathname.toLowerCase();\n    }\n\n    if (nextLocationPathname && basename) {\n      nextLocationPathname =\n        stripBasename(nextLocationPathname, basename) || nextLocationPathname;\n    }\n\n    // If the `to` has a trailing slash, look at that exact spot.  Otherwise,\n    // we're looking for a slash _after_ what's in `to`.  For example:\n    //\n    // <NavLink to=\"/users\"> and <NavLink to=\"/users/\">\n    // both want to look for a / at index 6 to match URL `/users/matt`\n    const endSlashPosition =\n      toPathname !== \"/\" && toPathname.endsWith(\"/\")\n        ? toPathname.length - 1\n        : toPathname.length;\n    let isActive =\n      locationPathname === toPathname ||\n      (!end &&\n        locationPathname.startsWith(toPathname) &&\n        locationPathname.charAt(endSlashPosition) === \"/\");\n\n    let isPending =\n      nextLocationPathname != null &&\n      (nextLocationPathname === toPathname ||\n        (!end &&\n          nextLocationPathname.startsWith(toPathname) &&\n          nextLocationPathname.charAt(toPathname.length) === \"/\"));\n\n    let renderProps = {\n      isActive,\n      isPending,\n      isTransitioning,\n    };\n\n    let ariaCurrent = isActive ? ariaCurrentProp : undefined;\n\n    let className: string | undefined;\n    if (typeof classNameProp === \"function\") {\n      className = classNameProp(renderProps);\n    } else {\n      // If the className prop is not a function, we use a default `active`\n      // class for <NavLink />s that are active. In v5 `active` was the default\n      // value for `activeClassName`, but we are removing that API and can still\n      // use the old default behavior for a cleaner upgrade path and keep the\n      // simple styling rules working as they currently do.\n      className = [\n        classNameProp,\n        isActive ? \"active\" : null,\n        isPending ? \"pending\" : null,\n        isTransitioning ? \"transitioning\" : null,\n      ]\n        .filter(Boolean)\n        .join(\" \");\n    }\n\n    let style =\n      typeof styleProp === \"function\" ? styleProp(renderProps) : styleProp;\n\n    return (\n      <Link\n        {...rest}\n        aria-current={ariaCurrent}\n        className={className}\n        ref={ref}\n        style={style}\n        to={to}\n        viewTransition={viewTransition}\n      >\n        {typeof children === \"function\" ? children(renderProps) : children}\n      </Link>\n    );\n  }\n);\n\nif (__DEV__) {\n  NavLink.displayName = \"NavLink\";\n}\n\n/**\n * Form props shared by navigations and fetchers\n */\ninterface SharedFormProps extends React.FormHTMLAttributes<HTMLFormElement> {\n  /**\n   * The HTTP verb to use when the form is submit. Supports \"get\", \"post\",\n   * \"put\", \"delete\", \"patch\".\n   */\n  method?: HTMLFormMethod;\n\n  /**\n   * `<form encType>` - enhancing beyond the normal string type and limiting\n   * to the built-in browser supported values\n   */\n  encType?:\n    | \"application/x-www-form-urlencoded\"\n    | \"multipart/form-data\"\n    | \"text/plain\";\n\n  /**\n   * Normal `<form action>` but supports React Router's relative paths.\n   */\n  action?: string;\n\n  /**\n   * Determines whether the form action is relative to the route hierarchy or\n   * the pathname.  Use this if you want to opt out of navigating the route\n   * hierarchy and want to instead route based on /-delimited URL segments\n   */\n  relative?: RelativeRoutingType;\n\n  /**\n   * Prevent the scroll position from resetting to the top of the viewport on\n   * completion of the navigation when using the <ScrollRestoration> component\n   */\n  preventScrollReset?: boolean;\n\n  /**\n   * A function to call when the form is submitted. If you call\n   * `event.preventDefault()` then this form will not do anything.\n   */\n  onSubmit?: React.FormEventHandler<HTMLFormElement>;\n}\n\n/**\n * Form props available to fetchers\n */\nexport interface FetcherFormProps extends SharedFormProps {}\n\n/**\n * Form props available to navigations\n */\nexport interface FormProps extends SharedFormProps {\n  /**\n   * Indicate a specific fetcherKey to use when using navigate=false\n   */\n  fetcherKey?: string;\n\n  /**\n   * navigate=false will use a fetcher instead of a navigation\n   */\n  navigate?: boolean;\n\n  /**\n   * Forces a full document navigation instead of a fetch.\n   */\n  reloadDocument?: boolean;\n\n  /**\n   * Replaces the current entry in the browser history stack when the form\n   * navigates. Use this if you don't want the user to be able to click \"back\"\n   * to the page with the form on it.\n   */\n  replace?: boolean;\n\n  /**\n   * State object to add to the history stack entry for this navigation\n   */\n  state?: any;\n\n  /**\n   * Enable view transitions on this Form navigation\n   */\n  viewTransition?: boolean;\n}\n\ntype HTMLSubmitEvent = React.BaseSyntheticEvent<\n  SubmitEvent,\n  Event,\n  HTMLFormElement\n>;\n\ntype HTMLFormSubmitter = HTMLButtonElement | HTMLInputElement;\n\n/**\n * A `@remix-run/router`-aware `<form>`. It behaves like a normal form except\n * that the interaction with the server is with `fetch` instead of new document\n * requests, allowing components to add nicer UX to the page as the form is\n * submitted and returns with data.\n */\nexport const Form = React.forwardRef<HTMLFormElement, FormProps>(\n  (\n    {\n      fetcherKey,\n      navigate,\n      reloadDocument,\n      replace,\n      state,\n      method = defaultMethod,\n      action,\n      onSubmit,\n      relative,\n      preventScrollReset,\n      viewTransition,\n      ...props\n    },\n    forwardedRef\n  ) => {\n    let submit = useSubmit();\n    let formAction = useFormAction(action, { relative });\n    let formMethod: HTMLFormMethod =\n      method.toLowerCase() === \"get\" ? \"get\" : \"post\";\n\n    let submitHandler: React.FormEventHandler<HTMLFormElement> = (event) => {\n      onSubmit && onSubmit(event);\n      if (event.defaultPrevented) return;\n      event.preventDefault();\n\n      let submitter = (event as unknown as HTMLSubmitEvent).nativeEvent\n        .submitter as HTMLFormSubmitter | null;\n\n      let submitMethod =\n        (submitter?.getAttribute(\"formmethod\") as HTMLFormMethod | undefined) ||\n        method;\n\n      submit(submitter || event.currentTarget, {\n        fetcherKey,\n        method: submitMethod,\n        navigate,\n        replace,\n        state,\n        relative,\n        preventScrollReset,\n        viewTransition,\n      });\n    };\n\n    return (\n      <form\n        ref={forwardedRef}\n        method={formMethod}\n        action={formAction}\n        onSubmit={reloadDocument ? onSubmit : submitHandler}\n        {...props}\n      />\n    );\n  }\n);\n\nif (__DEV__) {\n  Form.displayName = \"Form\";\n}\n\nexport interface ScrollRestorationProps {\n  getKey?: GetScrollRestorationKeyFunction;\n  storageKey?: string;\n}\n\n/**\n * This component will emulate the browser's scroll restoration on location\n * changes.\n */\nexport function ScrollRestoration({\n  getKey,\n  storageKey,\n}: ScrollRestorationProps) {\n  useScrollRestoration({ getKey, storageKey });\n  return null;\n}\n\nif (__DEV__) {\n  ScrollRestoration.displayName = \"ScrollRestoration\";\n}\n//#endregion\n\n////////////////////////////////////////////////////////////////////////////////\n//#region Hooks\n////////////////////////////////////////////////////////////////////////////////\n\nenum DataRouterHook {\n  UseScrollRestoration = \"useScrollRestoration\",\n  UseSubmit = \"useSubmit\",\n  UseSubmitFetcher = \"useSubmitFetcher\",\n  UseFetcher = \"useFetcher\",\n  useViewTransitionState = \"useViewTransitionState\",\n}\n\nenum DataRouterStateHook {\n  UseFetcher = \"useFetcher\",\n  UseFetchers = \"useFetchers\",\n  UseScrollRestoration = \"useScrollRestoration\",\n}\n\n// Internal hooks\n\nfunction getDataRouterConsoleError(\n  hookName: DataRouterHook | DataRouterStateHook\n) {\n  return `${hookName} must be used within a data router.  See https://reactrouter.com/v6/routers/picking-a-router.`;\n}\n\nfunction useDataRouterContext(hookName: DataRouterHook) {\n  let ctx = React.useContext(DataRouterContext);\n  invariant(ctx, getDataRouterConsoleError(hookName));\n  return ctx;\n}\n\nfunction useDataRouterState(hookName: DataRouterStateHook) {\n  let state = React.useContext(DataRouterStateContext);\n  invariant(state, getDataRouterConsoleError(hookName));\n  return state;\n}\n\n// External hooks\n\n/**\n * Handles the click behavior for router `<Link>` components. This is useful if\n * you need to create custom `<Link>` components with the same click behavior we\n * use in our exported `<Link>`.\n */\nexport function useLinkClickHandler<E extends Element = HTMLAnchorElement>(\n  to: To,\n  {\n    target,\n    replace: replaceProp,\n    state,\n    preventScrollReset,\n    relative,\n    viewTransition,\n  }: {\n    target?: React.HTMLAttributeAnchorTarget;\n    replace?: boolean;\n    state?: any;\n    preventScrollReset?: boolean;\n    relative?: RelativeRoutingType;\n    viewTransition?: boolean;\n  } = {}\n): (event: React.MouseEvent<E, MouseEvent>) => void {\n  let navigate = useNavigate();\n  let location = useLocation();\n  let path = useResolvedPath(to, { relative });\n\n  return React.useCallback(\n    (event: React.MouseEvent<E, MouseEvent>) => {\n      if (shouldProcessLinkClick(event, target)) {\n        event.preventDefault();\n\n        // If the URL hasn't changed, a regular <a> will do a replace instead of\n        // a push, so do the same here unless the replace prop is explicitly set\n        let replace =\n          replaceProp !== undefined\n            ? replaceProp\n            : createPath(location) === createPath(path);\n\n        navigate(to, {\n          replace,\n          state,\n          preventScrollReset,\n          relative,\n          viewTransition,\n        });\n      }\n    },\n    [\n      location,\n      navigate,\n      path,\n      replaceProp,\n      state,\n      target,\n      to,\n      preventScrollReset,\n      relative,\n      viewTransition,\n    ]\n  );\n}\n\n/**\n * A convenient wrapper for reading and writing search parameters via the\n * URLSearchParams interface.\n */\nexport function useSearchParams(\n  defaultInit?: URLSearchParamsInit\n): [URLSearchParams, SetURLSearchParams] {\n  warning(\n    typeof URLSearchParams !== \"undefined\",\n    `You cannot use the \\`useSearchParams\\` hook in a browser that does not ` +\n      `support the URLSearchParams API. If you need to support Internet ` +\n      `Explorer 11, we recommend you load a polyfill such as ` +\n      `https://github.com/ungap/url-search-params.`\n  );\n\n  let defaultSearchParamsRef = React.useRef(createSearchParams(defaultInit));\n  let hasSetSearchParamsRef = React.useRef(false);\n\n  let location = useLocation();\n  let searchParams = React.useMemo(\n    () =>\n      // Only merge in the defaults if we haven't yet called setSearchParams.\n      // Once we call that we want those to take precedence, otherwise you can't\n      // remove a param with setSearchParams({}) if it has an initial value\n      getSearchParamsForLocation(\n        location.search,\n        hasSetSearchParamsRef.current ? null : defaultSearchParamsRef.current\n      ),\n    [location.search]\n  );\n\n  let navigate = useNavigate();\n  let setSearchParams = React.useCallback<SetURLSearchParams>(\n    (nextInit, navigateOptions) => {\n      const newSearchParams = createSearchParams(\n        typeof nextInit === \"function\" ? nextInit(searchParams) : nextInit\n      );\n      hasSetSearchParamsRef.current = true;\n      navigate(\"?\" + newSearchParams, navigateOptions);\n    },\n    [navigate, searchParams]\n  );\n\n  return [searchParams, setSearchParams];\n}\n\nexport type SetURLSearchParams = (\n  nextInit?:\n    | URLSearchParamsInit\n    | ((prev: URLSearchParams) => URLSearchParamsInit),\n  navigateOpts?: NavigateOptions\n) => void;\n\n/**\n * Submits a HTML `<form>` to the server without reloading the page.\n */\nexport interface SubmitFunction {\n  (\n    /**\n     * Specifies the `<form>` to be submitted to the server, a specific\n     * `<button>` or `<input type=\"submit\">` to use to submit the form, or some\n     * arbitrary data to submit.\n     *\n     * Note: When using a `<button>` its `name` and `value` will also be\n     * included in the form data that is submitted.\n     */\n    target: SubmitTarget,\n\n    /**\n     * Options that override the `<form>`'s own attributes. Required when\n     * submitting arbitrary data without a backing `<form>`.\n     */\n    options?: SubmitOptions\n  ): void;\n}\n\n/**\n * Submits a fetcher `<form>` to the server without reloading the page.\n */\nexport interface FetcherSubmitFunction {\n  (\n    target: SubmitTarget,\n    // Fetchers cannot replace or set state because they are not navigation events\n    options?: FetcherSubmitOptions\n  ): void;\n}\n\nfunction validateClientSideSubmission() {\n  if (typeof document === \"undefined\") {\n    throw new Error(\n      \"You are calling submit during the server render. \" +\n        \"Try calling submit within a `useEffect` or callback instead.\"\n    );\n  }\n}\n\nlet fetcherId = 0;\nlet getUniqueFetcherId = () => `__${String(++fetcherId)}__`;\n\n/**\n * Returns a function that may be used to programmatically submit a form (or\n * some arbitrary data) to the server.\n */\nexport function useSubmit(): SubmitFunction {\n  let { router } = useDataRouterContext(DataRouterHook.UseSubmit);\n  let { basename } = React.useContext(NavigationContext);\n  let currentRouteId = useRouteId();\n\n  return React.useCallback<SubmitFunction>(\n    (target, options = {}) => {\n      validateClientSideSubmission();\n\n      let { action, method, encType, formData, body } = getFormSubmissionInfo(\n        target,\n        basename\n      );\n\n      if (options.navigate === false) {\n        let key = options.fetcherKey || getUniqueFetcherId();\n        router.fetch(key, currentRouteId, options.action || action, {\n          preventScrollReset: options.preventScrollReset,\n          formData,\n          body,\n          formMethod: options.method || (method as HTMLFormMethod),\n          formEncType: options.encType || (encType as FormEncType),\n          flushSync: options.flushSync,\n        });\n      } else {\n        router.navigate(options.action || action, {\n          preventScrollReset: options.preventScrollReset,\n          formData,\n          body,\n          formMethod: options.method || (method as HTMLFormMethod),\n          formEncType: options.encType || (encType as FormEncType),\n          replace: options.replace,\n          state: options.state,\n          fromRouteId: currentRouteId,\n          flushSync: options.flushSync,\n          viewTransition: options.viewTransition,\n        });\n      }\n    },\n    [router, basename, currentRouteId]\n  );\n}\n\n// v7: Eventually we should deprecate this entirely in favor of using the\n// router method directly?\nexport function useFormAction(\n  action?: string,\n  { relative }: { relative?: RelativeRoutingType } = {}\n): string {\n  let { basename } = React.useContext(NavigationContext);\n  let routeContext = React.useContext(RouteContext);\n  invariant(routeContext, \"useFormAction must be used inside a RouteContext\");\n\n  let [match] = routeContext.matches.slice(-1);\n  // Shallow clone path so we can modify it below, otherwise we modify the\n  // object referenced by useMemo inside useResolvedPath\n  let path = { ...useResolvedPath(action ? action : \".\", { relative }) };\n\n  // If no action was specified, browsers will persist current search params\n  // when determining the path, so match that behavior\n  // https://github.com/remix-run/remix/issues/927\n  let location = useLocation();\n  if (action == null) {\n    // Safe to write to this directly here since if action was undefined, we\n    // would have called useResolvedPath(\".\") which will never include a search\n    path.search = location.search;\n\n    // When grabbing search params from the URL, remove any included ?index param\n    // since it might not apply to our contextual route.  We add it back based\n    // on match.route.index below\n    let params = new URLSearchParams(path.search);\n    let indexValues = params.getAll(\"index\");\n    let hasNakedIndexParam = indexValues.some((v) => v === \"\");\n    if (hasNakedIndexParam) {\n      params.delete(\"index\");\n      indexValues.filter((v) => v).forEach((v) => params.append(\"index\", v));\n      let qs = params.toString();\n      path.search = qs ? `?${qs}` : \"\";\n    }\n  }\n\n  if ((!action || action === \".\") && match.route.index) {\n    path.search = path.search\n      ? path.search.replace(/^\\?/, \"?index&\")\n      : \"?index\";\n  }\n\n  // If we're operating within a basename, prepend it to the pathname prior\n  // to creating the form action.  If this is a root navigation, then just use\n  // the raw basename which allows the basename to have full control over the\n  // presence of a trailing slash on root actions\n  if (basename !== \"/\") {\n    path.pathname =\n      path.pathname === \"/\" ? basename : joinPaths([basename, path.pathname]);\n  }\n\n  return createPath(path);\n}\n\nexport type FetcherWithComponents<TData> = Fetcher<TData> & {\n  Form: React.ForwardRefExoticComponent<\n    FetcherFormProps & React.RefAttributes<HTMLFormElement>\n  >;\n  submit: FetcherSubmitFunction;\n  load: (href: string, opts?: { flushSync?: boolean }) => void;\n};\n\n// TODO: (v7) Change the useFetcher generic default from `any` to `unknown`\n\n/**\n * Interacts with route loaders and actions without causing a navigation. Great\n * for any interaction that stays on the same page.\n */\nexport function useFetcher<TData = any>({\n  key,\n}: { key?: string } = {}): FetcherWithComponents<TData> {\n  let { router } = useDataRouterContext(DataRouterHook.UseFetcher);\n  let state = useDataRouterState(DataRouterStateHook.UseFetcher);\n  let fetcherData = React.useContext(FetchersContext);\n  let route = React.useContext(RouteContext);\n  let routeId = route.matches[route.matches.length - 1]?.route.id;\n\n  invariant(fetcherData, `useFetcher must be used inside a FetchersContext`);\n  invariant(route, `useFetcher must be used inside a RouteContext`);\n  invariant(\n    routeId != null,\n    `useFetcher can only be used on routes that contain a unique \"id\"`\n  );\n\n  // Fetcher key handling\n  // OK to call conditionally to feature detect `useId`\n  // eslint-disable-next-line react-hooks/rules-of-hooks\n  let defaultKey = useIdImpl ? useIdImpl() : \"\";\n  let [fetcherKey, setFetcherKey] = React.useState<string>(key || defaultKey);\n  if (key && key !== fetcherKey) {\n    setFetcherKey(key);\n  } else if (!fetcherKey) {\n    // We will only fall through here when `useId` is not available\n    setFetcherKey(getUniqueFetcherId());\n  }\n\n  // Registration/cleanup\n  React.useEffect(() => {\n    router.getFetcher(fetcherKey);\n    return () => {\n      // Tell the router we've unmounted - if v7_fetcherPersist is enabled this\n      // will not delete immediately but instead queue up a delete after the\n      // fetcher returns to an `idle` state\n      router.deleteFetcher(fetcherKey);\n    };\n  }, [router, fetcherKey]);\n\n  // Fetcher additions\n  let load = React.useCallback(\n    (href: string, opts?: { flushSync?: boolean }) => {\n      invariant(routeId, \"No routeId available for fetcher.load()\");\n      router.fetch(fetcherKey, routeId, href, opts);\n    },\n    [fetcherKey, routeId, router]\n  );\n\n  let submitImpl = useSubmit();\n  let submit = React.useCallback<FetcherSubmitFunction>(\n    (target, opts) => {\n      submitImpl(target, {\n        ...opts,\n        navigate: false,\n        fetcherKey,\n      });\n    },\n    [fetcherKey, submitImpl]\n  );\n\n  let FetcherForm = React.useMemo(() => {\n    let FetcherForm = React.forwardRef<HTMLFormElement, FetcherFormProps>(\n      (props, ref) => {\n        return (\n          <Form {...props} navigate={false} fetcherKey={fetcherKey} ref={ref} />\n        );\n      }\n    );\n    if (__DEV__) {\n      FetcherForm.displayName = \"fetcher.Form\";\n    }\n    return FetcherForm;\n  }, [fetcherKey]);\n\n  // Exposed FetcherWithComponents\n  let fetcher = state.fetchers.get(fetcherKey) || IDLE_FETCHER;\n  let data = fetcherData.get(fetcherKey);\n  let fetcherWithComponents = React.useMemo(\n    () => ({\n      Form: FetcherForm,\n      submit,\n      load,\n      ...fetcher,\n      data,\n    }),\n    [FetcherForm, submit, load, fetcher, data]\n  );\n\n  return fetcherWithComponents;\n}\n\n/**\n * Provides all fetchers currently on the page. Useful for layouts and parent\n * routes that need to provide pending/optimistic UI regarding the fetch.\n */\nexport function useFetchers(): (Fetcher & { key: string })[] {\n  let state = useDataRouterState(DataRouterStateHook.UseFetchers);\n  return Array.from(state.fetchers.entries()).map(([key, fetcher]) => ({\n    ...fetcher,\n    key,\n  }));\n}\n\nconst SCROLL_RESTORATION_STORAGE_KEY = \"react-router-scroll-positions\";\nlet savedScrollPositions: Record<string, number> = {};\n\n/**\n * When rendered inside a RouterProvider, will restore scroll positions on navigations\n */\nfunction useScrollRestoration({\n  getKey,\n  storageKey,\n}: {\n  getKey?: GetScrollRestorationKeyFunction;\n  storageKey?: string;\n} = {}) {\n  let { router } = useDataRouterContext(DataRouterHook.UseScrollRestoration);\n  let { restoreScrollPosition, preventScrollReset } = useDataRouterState(\n    DataRouterStateHook.UseScrollRestoration\n  );\n  let { basename } = React.useContext(NavigationContext);\n  let location = useLocation();\n  let matches = useMatches();\n  let navigation = useNavigation();\n\n  // Trigger manual scroll restoration while we're active\n  React.useEffect(() => {\n    window.history.scrollRestoration = \"manual\";\n    return () => {\n      window.history.scrollRestoration = \"auto\";\n    };\n  }, []);\n\n  // Save positions on pagehide\n  usePageHide(\n    React.useCallback(() => {\n      if (navigation.state === \"idle\") {\n        let key = (getKey ? getKey(location, matches) : null) || location.key;\n        savedScrollPositions[key] = window.scrollY;\n      }\n      try {\n        sessionStorage.setItem(\n          storageKey || SCROLL_RESTORATION_STORAGE_KEY,\n          JSON.stringify(savedScrollPositions)\n        );\n      } catch (error) {\n        warning(\n          false,\n          `Failed to save scroll positions in sessionStorage, <ScrollRestoration /> will not work properly (${error}).`\n        );\n      }\n      window.history.scrollRestoration = \"auto\";\n    }, [storageKey, getKey, navigation.state, location, matches])\n  );\n\n  // Read in any saved scroll locations\n  if (typeof document !== \"undefined\") {\n    // eslint-disable-next-line react-hooks/rules-of-hooks\n    React.useLayoutEffect(() => {\n      try {\n        let sessionPositions = sessionStorage.getItem(\n          storageKey || SCROLL_RESTORATION_STORAGE_KEY\n        );\n        if (sessionPositions) {\n          savedScrollPositions = JSON.parse(sessionPositions);\n        }\n      } catch (e) {\n        // no-op, use default empty object\n      }\n    }, [storageKey]);\n\n    // Enable scroll restoration in the router\n    // eslint-disable-next-line react-hooks/rules-of-hooks\n    React.useLayoutEffect(() => {\n      let getKeyWithoutBasename: GetScrollRestorationKeyFunction | undefined =\n        getKey && basename !== \"/\"\n          ? (location, matches) =>\n              getKey(\n                // Strip the basename to match useLocation()\n                {\n                  ...location,\n                  pathname:\n                    stripBasename(location.pathname, basename) ||\n                    location.pathname,\n                },\n                matches\n              )\n          : getKey;\n      let disableScrollRestoration = router?.enableScrollRestoration(\n        savedScrollPositions,\n        () => window.scrollY,\n        getKeyWithoutBasename\n      );\n      return () => disableScrollRestoration && disableScrollRestoration();\n    }, [router, basename, getKey]);\n\n    // Restore scrolling when state.restoreScrollPosition changes\n    // eslint-disable-next-line react-hooks/rules-of-hooks\n    React.useLayoutEffect(() => {\n      // Explicit false means don't do anything (used for submissions)\n      if (restoreScrollPosition === false) {\n        return;\n      }\n\n      // been here before, scroll to it\n      if (typeof restoreScrollPosition === \"number\") {\n        window.scrollTo(0, restoreScrollPosition);\n        return;\n      }\n\n      // try to scroll to the hash\n      if (location.hash) {\n        let el = document.getElementById(\n          decodeURIComponent(location.hash.slice(1))\n        );\n        if (el) {\n          el.scrollIntoView();\n          return;\n        }\n      }\n\n      // Don't reset if this navigation opted out\n      if (preventScrollReset === true) {\n        return;\n      }\n\n      // otherwise go to the top on new locations\n      window.scrollTo(0, 0);\n    }, [location, restoreScrollPosition, preventScrollReset]);\n  }\n}\n\nexport { useScrollRestoration as UNSAFE_useScrollRestoration };\n\n/**\n * Setup a callback to be fired on the window's `beforeunload` event. This is\n * useful for saving some data to `window.localStorage` just before the page\n * refreshes.\n *\n * Note: The `callback` argument should be a function created with\n * `React.useCallback()`.\n */\nexport function useBeforeUnload(\n  callback: (event: BeforeUnloadEvent) => any,\n  options?: { capture?: boolean }\n): void {\n  let { capture } = options || {};\n  React.useEffect(() => {\n    let opts = capture != null ? { capture } : undefined;\n    window.addEventListener(\"beforeunload\", callback, opts);\n    return () => {\n      window.removeEventListener(\"beforeunload\", callback, opts);\n    };\n  }, [callback, capture]);\n}\n\n/**\n * Setup a callback to be fired on the window's `pagehide` event. This is\n * useful for saving some data to `window.localStorage` just before the page\n * refreshes.  This event is better supported than beforeunload across browsers.\n *\n * Note: The `callback` argument should be a function created with\n * `React.useCallback()`.\n */\nfunction usePageHide(\n  callback: (event: PageTransitionEvent) => any,\n  options?: { capture?: boolean }\n): void {\n  let { capture } = options || {};\n  React.useEffect(() => {\n    let opts = capture != null ? { capture } : undefined;\n    window.addEventListener(\"pagehide\", callback, opts);\n    return () => {\n      window.removeEventListener(\"pagehide\", callback, opts);\n    };\n  }, [callback, capture]);\n}\n\n/**\n * Wrapper around useBlocker to show a window.confirm prompt to users instead\n * of building a custom UI with useBlocker.\n *\n * Warning: This has *a lot of rough edges* and behaves very differently (and\n * very incorrectly in some cases) across browsers if user click addition\n * back/forward navigations while the confirm is open.  Use at your own risk.\n */\nfunction usePrompt({\n  when,\n  message,\n}: {\n  when: boolean | BlockerFunction;\n  message: string;\n}) {\n  let blocker = useBlocker(when);\n\n  React.useEffect(() => {\n    if (blocker.state === \"blocked\") {\n      let proceed = window.confirm(message);\n      if (proceed) {\n        // This timeout is needed to avoid a weird \"race\" on POP navigations\n        // between the `window.history` revert navigation and the result of\n        // `window.confirm`\n        setTimeout(blocker.proceed, 0);\n      } else {\n        blocker.reset();\n      }\n    }\n  }, [blocker, message]);\n\n  React.useEffect(() => {\n    if (blocker.state === \"blocked\" && !when) {\n      blocker.reset();\n    }\n  }, [blocker, when]);\n}\n\nexport { usePrompt as unstable_usePrompt };\n\n/**\n * Return a boolean indicating if there is an active view transition to the\n * given href.  You can use this value to render CSS classes or viewTransitionName\n * styles onto your elements\n *\n * @param href The destination href\n * @param [opts.relative] Relative routing type (\"route\" | \"path\")\n */\nfunction useViewTransitionState(\n  to: To,\n  opts: { relative?: RelativeRoutingType } = {}\n) {\n  let vtContext = React.useContext(ViewTransitionContext);\n\n  invariant(\n    vtContext != null,\n    \"`useViewTransitionState` must be used within `react-router-dom`'s `RouterProvider`.  \" +\n      \"Did you accidentally import `RouterProvider` from `react-router`?\"\n  );\n\n  let { basename } = useDataRouterContext(\n    DataRouterHook.useViewTransitionState\n  );\n  let path = useResolvedPath(to, { relative: opts.relative });\n  if (!vtContext.isTransitioning) {\n    return false;\n  }\n\n  let currentPath =\n    stripBasename(vtContext.currentLocation.pathname, basename) ||\n    vtContext.currentLocation.pathname;\n  let nextPath =\n    stripBasename(vtContext.nextLocation.pathname, basename) ||\n    vtContext.nextLocation.pathname;\n\n  // Transition is active if we're going to or coming from the indicated\n  // destination.  This ensures that other PUSH navigations that reverse\n  // an indicated transition apply.  I.e., on the list view you have:\n  //\n  //   <NavLink to=\"/details/1\" viewTransition>\n  //\n  // If you click the breadcrumb back to the list view:\n  //\n  //   <NavLink to=\"/list\" viewTransition>\n  //\n  // We should apply the transition because it's indicated as active going\n  // from /list -> /details/1 and therefore should be active on the reverse\n  // (even though this isn't strictly a POP reverse)\n  return (\n    matchPath(path.pathname, nextPath) != null ||\n    matchPath(path.pathname, currentPath) != null\n  );\n}\n\nexport { useViewTransitionState as useViewTransitionState };\n\n//#endregion\n"],"names":["defaultEncType","isHtmlElement","object","tagName","createSearchParams","init","URLSearchParams","Array","isArray","Object","keys","reduce","memo","key","value","concat","map","v","_formDataSupportsSubmitter","supportedFormEncTypes","Set","getFormEncType","encType","has","getFormSubmissionInfo","target","basename","method","action","formData","body","toLowerCase","attr","getAttribute","stripBasename","FormData","isButtonElement","isInputElement","type","form","Error","document","createElement","e","isFormDataSubmitterSupported","name","prefix","append","undefined","window","__reactRouterVersion","createBrowserRouter","routes","opts","createRouter","future","v7_prependBasename","history","createBrowserHistory","hydrationData","parseHydrationData","mapRouteProperties","dataStrategy","patchRoutesOnNavigation","initialize","createHashRouter","createHashHistory","state","__staticRouterHydrationData","errors","deserializeErrors","entries","serialized","val","__type","ErrorResponseImpl","status","statusText","data","internal","__subType","ErrorConstructor","error","message","stack","ViewTransitionContext","React","createContext","isTransitioning","FetchersContext","Map","startTransitionImpl","flushSyncImpl","ReactDOM","useIdImpl","flushSyncSafe","cb","Deferred","constructor","this","promise","Promise","resolve","reject","reason","RouterProvider","fallbackElement","router","setStateImpl","useState","pendingState","setPendingState","vtContext","setVtContext","renderDfd","setRenderDfd","transition","setTransition","interruption","setInterruption","fetcherData","useRef","v7_startTransition","optInStartTransition","useCallback","startTransitionSafe","setState","newState","deletedFetchers","flushSync","viewTransitionOpts","forEach","current","delete","fetchers","fetcher","set","isViewTransitionUnavailable","startViewTransition","skipTransition","currentLocation","nextLocation","t","finished","finally","useLayoutEffect","subscribe","useEffect","renderPromise","async","location","navigator","useMemo","createHref","encodeLocation","go","n","navigate","push","to","preventScrollReset","replace","dataRouterContext","static","routerFuture","v7_relativeSplatPath","logV6DeprecationWarnings","Fragment","DataRouterContext","Provider","DataRouterStateContext","Router","navigationType","historyAction","initialized","v7_partialHydration","MemoizedDataRoutes","DataRoutes","useRoutesImpl","BrowserRouter","children","historyRef","v5Compat","listen","HashRouter","HistoryRouter","isBrowser","ABSOLUTE_URL_REGEX","Link","forwardRef","onClick","relative","reloadDocument","viewTransition","rest","ref","absoluteHref","useContext","NavigationContext","isExternal","test","currentUrl","URL","href","targetUrl","startsWith","protocol","path","pathname","origin","search","hash","useHref","internalOnClick","useLinkClickHandler","assign","event","defaultPrevented","NavLink","ariaCurrentProp","caseSensitive","className","classNameProp","end","style","styleProp","useResolvedPath","useLocation","routerState","useViewTransitionState","toPathname","locationPathname","nextLocationPathname","navigation","endSlashPosition","endsWith","length","isActive","charAt","isPending","renderProps","ariaCurrent","filter","Boolean","join","Form","fetcherKey","onSubmit","props","forwardedRef","submit","useSubmit","formAction","useFormAction","formMethod","preventDefault","submitter","nativeEvent","submitMethod","currentTarget","ScrollRestoration","getKey","storageKey","useScrollRestoration","DataRouterHook","DataRouterStateHook","useDataRouterContext","hookName","ctx","invariant","useDataRouterState","replaceProp","useNavigate","button","metaKey","altKey","ctrlKey","shiftKey","isModifiedEvent","shouldProcessLinkClick","createPath","useSearchParams","defaultInit","defaultSearchParamsRef","hasSetSearchParamsRef","searchParams","locationSearch","defaultSearchParams","_","getAll","getSearchParamsForLocation","setSearchParams","nextInit","navigateOptions","newSearchParams","fetcherId","getUniqueFetcherId","String","UseSubmit","currentRouteId","useRouteId","options","validateClientSideSubmission","fetch","formEncType","fromRouteId","routeContext","RouteContext","match","matches","slice","params","indexValues","some","qs","toString","route","index","joinPaths","useFetcher","UseFetcher","routeId","id","defaultKey","setFetcherKey","getFetcher","deleteFetcher","load","submitImpl","FetcherForm","get","IDLE_FETCHER","useFetchers","UseFetchers","from","savedScrollPositions","UseScrollRestoration","restoreScrollPosition","useMatches","useNavigation","scrollRestoration","callback","capture","addEventListener","removeEventListener","usePageHide","scrollY","sessionStorage","setItem","JSON","stringify","sessionPositions","getItem","parse","getKeyWithoutBasename","disableScrollRestoration","enableScrollRestoration","el","getElementById","decodeURIComponent","scrollIntoView","scrollTo","useBeforeUnload","usePrompt","when","blocker","useBlocker","confirm","setTimeout","proceed","reset","currentPath","nextPath","matchPath"],"mappings":";;;;;;;;;;m9CAOO,MACDA,EAA8B,oCAE7B,SAASC,EAAcC,GAC5B,OAAiB,MAAVA,GAA4C,iBAAnBA,EAAOC,OACzC,CA+DO,SAASC,EACdC,EAA4B,IAE5B,OAAO,IAAIC,gBACO,iBAATD,GACPE,MAAMC,QAAQH,IACdA,aAAgBC,gBACZD,EACAI,OAAOC,KAAKL,GAAMM,QAAO,CAACC,EAAMC,KAC9B,IAAIC,EAAQT,EAAKQ,GACjB,OAAOD,EAAKG,OACVR,MAAMC,QAAQM,GAASA,EAAME,KAAKC,GAAM,CAACJ,EAAKI,KAAM,CAAC,CAACJ,EAAKC,IAC5D,GACA,IAEX,CA4CA,IAAII,EAA6C,KAgGjD,MAAMC,EAA0C,IAAIC,IAAI,CACtD,oCACA,sBACA,eAGF,SAASC,EAAeC,GACtB,OAAe,MAAXA,GAAoBH,EAAsBI,IAAID,GAS3CA,EAFE,IAGX,CAEO,SAASE,EACdC,EACAC,GAQA,IAAIC,EACAC,EACAN,EACAO,EACAC,EAEJ,GAtPO7B,EADqBC,EAuPVuB,IAtP+C,SAAjCvB,EAAOC,QAAQ4B,cAsPpB,CAIzB,IAAIC,EAAOP,EAAOQ,aAAa,UAC/BL,EAASI,EAAOE,EAAcF,EAAMN,GAAY,KAChDC,EAASF,EAAOQ,aAAa,WAxQY,MAyQzCX,EAAUD,EAAeI,EAAOQ,aAAa,aAAejC,EAE5D6B,EAAW,IAAIM,SAASV,EACzB,MAAM,GArQF,SAAyBvB,GAC9B,OAAOD,EAAcC,IAA4C,WAAjCA,EAAOC,QAAQ4B,aACjD,CAoQIK,CAAgBX,IA9Pb,SAAwBvB,GAC7B,OAAOD,EAAcC,IAA4C,UAAjCA,EAAOC,QAAQ4B,aACjD,CA6PKM,CAAeZ,KACG,WAAhBA,EAAOa,MAAqC,UAAhBb,EAAOa,MACtC,CACA,IAAIC,EAAOd,EAAOc,KAElB,GAAY,MAARA,EACF,MAAM,IAAIC,MACP,sEASL,IAAIR,EAAOP,EAAOQ,aAAa,eAAiBM,EAAKN,aAAa,UAmBlE,GAlBAL,EAASI,EAAOE,EAAcF,EAAMN,GAAY,KAEhDC,EACEF,EAAOQ,aAAa,eACpBM,EAAKN,aAAa,WAnSqB,MAqSzCX,EACED,EAAeI,EAAOQ,aAAa,iBACnCZ,EAAekB,EAAKN,aAAa,aACjCjC,EAGF6B,EAAW,IAAIM,SAASI,EAAMd,IA1KlC,WACE,GAAmC,OAA/BP,EACF,IACE,IAAIiB,SACFM,SAASC,cAAc,QAEvB,GAEFxB,GAA6B,CAG/B,CAFE,MAAOyB,GACPzB,GAA6B,CAC/B,CAEF,OAAOA,CACT,CAkKS0B,GAAgC,CACnC,IAAIC,KAAEA,EAAIP,KAAEA,EAAIxB,MAAEA,GAAUW,EAC5B,GAAa,UAATa,EAAkB,CACpB,IAAIQ,EAASD,EAAQ,GAAEA,KAAU,GACjChB,EAASkB,OAAQ,GAAED,KAAW,KAC9BjB,EAASkB,OAAQ,GAAED,KAAW,IAC/B,MAAUD,GACThB,EAASkB,OAAOF,EAAM/B,EAE1B,CACF,KAAO,IAAIb,EAAcwB,GACvB,MAAM,IAAIe,MACP,sFAIHb,EAjUyC,MAkUzCC,EAAS,KACTN,EAAUtB,EACV8B,EAAOL,CACT,CA1TK,IAAuBvB,EAkU5B,OALI2B,GAAwB,eAAZP,IACdQ,EAAOD,EACPA,OAAWmB,GAGN,CAAEpB,SAAQD,OAAQA,EAAOI,cAAeT,UAASO,WAAUC,OACpE,CC7FA,IACEmB,OAAOC,qBAHT,GAKE,CADA,MAAOP,IACP,CAgBK,SAASQ,EACdC,EACAC,GAEA,OAAOC,EAAa,CAClB5B,SAAU2B,GAAM3B,SAChB6B,OAAQ,IACHF,GAAME,OACTC,oBAAoB,GAEtBC,QAASC,EAAqB,CAAET,OAAQI,GAAMJ,SAC9CU,cAAeN,GAAMM,eAAiBC,IACtCR,4BACAS,EACAC,aAAcT,GAAMS,aACpBC,wBAAyBV,GAAMU,wBAC/Bd,OAAQI,GAAMJ,SACbe,YACL,CAEO,SAASC,EACdb,EACAC,GAEA,OAAOC,EAAa,CAClB5B,SAAU2B,GAAM3B,SAChB6B,OAAQ,IACHF,GAAME,OACTC,oBAAoB,GAEtBC,QAASS,EAAkB,CAAEjB,OAAQI,GAAMJ,SAC3CU,cAAeN,GAAMM,eAAiBC,IACtCR,4BACAS,EACAC,aAAcT,GAAMS,aACpBC,wBAAyBV,GAAMU,wBAC/Bd,OAAQI,GAAMJ,SACbe,YACL,CAEA,SAASJ,IACP,IAAIO,EAAQlB,QAAQmB,4BAOpB,OANID,GAASA,EAAME,SACjBF,EAAQ,IACHA,EACHE,OAAQC,EAAkBH,EAAME,UAG7BF,CACT,CAEA,SAASG,EACPD,GAEA,IAAKA,EAAQ,OAAO,KACpB,IAAIE,EAAU9D,OAAO8D,QAAQF,GACzBG,EAA6C,CAAA,EACjD,IAAK,IAAK3D,EAAK4D,KAAQF,EAGrB,GAAIE,GAAsB,uBAAfA,EAAIC,OACbF,EAAW3D,GAAO,IAAI8D,EACpBF,EAAIG,OACJH,EAAII,WACJJ,EAAIK,MACa,IAAjBL,EAAIM,eAED,GAAIN,GAAsB,UAAfA,EAAIC,OAAoB,CAExC,GAAID,EAAIO,UAAW,CACjB,IAAIC,EAAmBhC,OAAOwB,EAAIO,WAClC,GAAgC,mBAArBC,EACT,IAEE,IAAIC,EAAQ,IAAID,EAAiBR,EAAIU,SAGrCD,EAAME,MAAQ,GACdZ,EAAW3D,GAAOqE,CAElB,CADA,MAAOvC,IACP,CAGN,CAEA,GAAuB,MAAnB6B,EAAW3D,GAAc,CAC3B,IAAIqE,EAAQ,IAAI1C,MAAMiC,EAAIU,SAG1BD,EAAME,MAAQ,GACdZ,EAAW3D,GAAOqE,CACpB,CACF,MACEV,EAAW3D,GAAO4D,EAGtB,OAAOD,CACT,CAmBA,MAAMa,EAAwBC,EAAMC,cAA2C,CAC7EC,iBAAiB,IAWbC,EAAkBH,EAAMC,cAAqC,IAAIG,KAmCjEC,EAAsBL,EAAsB,gBAE5CM,EAAgBC,EAAmB,UAEnCC,EAAYR,EAAY,MAU9B,SAASS,EAAcC,GACjBJ,EACFA,EAAcI,GAEdA,GAEJ,CASA,MAAMC,EACJrB,OAA8C,UAM9CsB,cACEC,KAAKC,QAAU,IAAIC,SAAQ,CAACC,EAASC,KACnCJ,KAAKG,QAAWxF,IACM,YAAhBqF,KAAKvB,SACPuB,KAAKvB,OAAS,WACd0B,EAAQxF,GACV,EAEFqF,KAAKI,OAAUC,IACO,YAAhBL,KAAKvB,SACPuB,KAAKvB,OAAS,WACd2B,EAAOC,GACT,CACD,GAEL,EAMK,SAASC,GAAeC,gBAC7BA,EAAeC,OACfA,EAAMpD,OACNA,IAEA,IAAKY,EAAOyC,GAAgBtB,EAAMuB,SAASF,EAAOxC,QAC7C2C,EAAcC,GAAmBzB,EAAMuB,YACvCG,EAAWC,GAAgB3B,EAAMuB,SAAsC,CAC1ErB,iBAAiB,KAEd0B,EAAWC,GAAgB7B,EAAMuB,YACjCO,EAAYC,GAAiB/B,EAAMuB,YACnCS,EAAcC,GAAmBjC,EAAMuB,WAKxCW,EAAclC,EAAMmC,OAAyB,IAAI/B,MACjDgC,mBAAEA,GAAuBnE,GAAU,CAAA,EAEnCoE,EAAuBrC,EAAMsC,aAC9B5B,IACK0B,EAzEV,SAA6B1B,GACvBL,EACFA,EAAoBK,GAEpBA,GAEJ,CAoEQ6B,CAAoB7B,GAEpBA,GACF,GAEF,CAAC0B,IAGCI,EAAWxC,EAAMsC,aACnB,CACEG,GAEEC,kBACAC,UAAWA,EACXC,mBAAoBA,MAGtBF,EAAgBG,SAAStH,GAAQ2G,EAAYY,QAAQC,OAAOxH,KAC5DkH,EAASO,SAASH,SAAQ,CAACI,EAAS1H,UACbmC,IAAjBuF,EAAQzD,MACV0C,EAAYY,QAAQI,IAAI3H,EAAK0H,EAAQzD,KACvC,IAGF,IAAI2D,EACe,MAAjB9B,EAAO1D,QACmB,MAA1B0D,EAAO1D,OAAOR,UACwC,mBAA/CkE,EAAO1D,OAAOR,SAASiG,oBAIhC,GAAKR,IAAsBO,EAA3B,CAUA,GAAIR,EAAW,CAEblC,GAAc,KAERqB,IACFF,GAAaA,EAAUZ,UACvBc,EAAWuB,kBAEb1B,EAAa,CACXzB,iBAAiB,EACjByC,WAAW,EACXW,gBAAiBV,EAAmBU,gBACpCC,aAAcX,EAAmBW,cACjC,IAIJ,IAAIC,EAAInC,EAAO1D,OAAQR,SAASiG,qBAAoB,KAClD3C,GAAc,IAAMa,EAAamB,IAAU,IAc7C,OAVAe,EAAEC,SAASC,SAAQ,KACjBjD,GAAc,KACZoB,OAAanE,GACbqE,OAAcrE,GACd+D,OAAgB/D,GAChBiE,EAAa,CAAEzB,iBAAiB,GAAQ,GACxC,SAGJO,GAAc,IAAMsB,EAAcyB,IAEpC,CAGI1B,GAGFF,GAAaA,EAAUZ,UACvBc,EAAWuB,iBACXpB,EAAgB,CACdpD,MAAO4D,EACPa,gBAAiBV,EAAmBU,gBACpCC,aAAcX,EAAmBW,iBAInC9B,EAAgBgB,GAChBd,EAAa,CACXzB,iBAAiB,EACjByC,WAAW,EACXW,gBAAiBV,EAAmBU,gBACpCC,aAAcX,EAAmBW,eAxDrC,MANMZ,EACFlC,GAAc,IAAMa,EAAamB,KAEjCJ,GAAqB,IAAMf,EAAamB,IA6D5C,GAEF,CAACpB,EAAO1D,OAAQmE,EAAYF,EAAWM,EAAaG,IAKtDrC,EAAM2D,iBAAgB,IAAMtC,EAAOuC,UAAUpB,IAAW,CAACnB,EAAQmB,IAIjExC,EAAM6D,WAAU,KACVnC,EAAUxB,kBAAoBwB,EAAUiB,WAC1Cd,EAAa,IAAIlB,EACnB,GACC,CAACe,IAKJ1B,EAAM6D,WAAU,KACd,GAAIjC,GAAaJ,GAAgBH,EAAO1D,OAAQ,CAC9C,IAAI8E,EAAWjB,EACXsC,EAAgBlC,EAAUd,QAC1BgB,EAAaT,EAAO1D,OAAOR,SAASiG,qBAAoBW,UAC1D1B,GAAqB,IAAMf,EAAamB,WAClCqB,CAAa,IAErBhC,EAAW2B,SAASC,SAAQ,KAC1B7B,OAAanE,GACbqE,OAAcrE,GACd+D,OAAgB/D,GAChBiE,EAAa,CAAEzB,iBAAiB,GAAQ,IAE1C6B,EAAcD,EAChB,IACC,CAACO,EAAsBb,EAAcI,EAAWP,EAAO1D,SAI1DqC,EAAM6D,WAAU,KAEZjC,GACAJ,GACA3C,EAAMmF,SAASzI,MAAQiG,EAAawC,SAASzI,KAE7CqG,EAAUZ,SACZ,GACC,CAACY,EAAWE,EAAYjD,EAAMmF,SAAUxC,IAI3CxB,EAAM6D,WAAU,MACTnC,EAAUxB,iBAAmB8B,IAChCP,EAAgBO,EAAanD,OAC7B8C,EAAa,CACXzB,iBAAiB,EACjByC,WAAW,EACXW,gBAAiBtB,EAAasB,gBAC9BC,aAAcvB,EAAauB,eAE7BtB,OAAgBvE,GAClB,GACC,CAACgE,EAAUxB,gBAAiB8B,IAE/BhC,EAAM6D,WAAU,QAQb,IAEH,IAAII,EAAYjE,EAAMkE,SAAQ,KACrB,CACLC,WAAY9C,EAAO8C,WACnBC,eAAgB/C,EAAO+C,eACvBC,GAAKC,GAAMjD,EAAOkD,SAASD,GAC3BE,KAAMA,CAACC,EAAI5F,EAAOd,IAChBsD,EAAOkD,SAASE,EAAI,CAClB5F,QACA6F,mBAAoB3G,GAAM2G,qBAE9BC,QAASA,CAACF,EAAI5F,EAAOd,IACnBsD,EAAOkD,SAASE,EAAI,CAClBE,SAAS,EACT9F,QACA6F,mBAAoB3G,GAAM2G,wBAG/B,CAACrD,IAEAjF,EAAWiF,EAAOjF,UAAY,IAE9BwI,EAAoB5E,EAAMkE,SAC5B,KAAO,CACL7C,SACA4C,YACAY,QAAQ,EACRzI,cAEF,CAACiF,EAAQ4C,EAAW7H,IAGlB0I,EAAe9E,EAAMkE,SACvB,KAAO,CACLa,qBAAsB1D,EAAOpD,OAAO8G,wBAEtC,CAAC1D,EAAOpD,OAAO8G,uBAcjB,OAXA/E,EAAM6D,WACJ,IAAMmB,EAAyB/G,EAAQoD,EAAOpD,SAC9C,CAACA,EAAQoD,EAAOpD,SAUhB+B,EAAA5C,cAAA4C,EAAAiF,SACEjF,KAAAA,EAAA5C,cAAC8H,EAAkBC,SAAQ,CAAC3J,MAAOoJ,GACjC5E,EAAA5C,cAACgI,EAAuBD,SAAQ,CAAC3J,MAAOqD,GACtCmB,EAAA5C,cAAC+C,EAAgBgF,SAAQ,CAAC3J,MAAO0G,EAAYY,SAC3C9C,EAAA5C,cAAC2C,EAAsBoF,SAAQ,CAAC3J,MAAOkG,GACrC1B,EAAA5C,cAACiI,EAAM,CACLjJ,SAAUA,EACV4H,SAAUnF,EAAMmF,SAChBsB,eAAgBzG,EAAM0G,cACtBtB,UAAWA,EACXhG,OAAQ6G,GAEPjG,EAAM2G,aAAenE,EAAOpD,OAAOwH,oBAClCzF,EAAA5C,cAACsI,EAAkB,CACjB5H,OAAQuD,EAAOvD,OACfG,OAAQoD,EAAOpD,OACfY,MAAOA,IAGTuC,OAOX,KAGP,CAGA,MAAMsE,EAAqB1F,EAAM1E,KAAKqK,GAEtC,SAASA,GAAW7H,OAClBA,EAAMG,OACNA,EAAMY,MACNA,IAMA,OAAO+G,EAAc9H,OAAQJ,EAAWmB,EAAOZ,EACjD,CAYO,SAAS4H,GAAczJ,SAC5BA,EAAQ0J,SACRA,EAAQ7H,OACRA,EAAMN,OACNA,IAEA,IAAIoI,EAAa/F,EAAMmC,SACG,MAAtB4D,EAAWjD,UACbiD,EAAWjD,QAAU1E,EAAqB,CAAET,SAAQqI,UAAU,KAGhE,IAAI7H,EAAU4H,EAAWjD,SACpBjE,EAAOyC,GAAgBtB,EAAMuB,SAAS,CACzCjF,OAAQ6B,EAAQ7B,OAChB0H,SAAU7F,EAAQ6F,YAEhB5B,mBAAEA,GAAuBnE,GAAU,CAAA,EACnCuE,EAAWxC,EAAMsC,aAClBG,IACCL,GAAsB/B,EAClBA,GAAoB,IAAMiB,EAAamB,KACvCnB,EAAamB,EAAS,GAE5B,CAACnB,EAAcc,IAOjB,OAJApC,EAAM2D,iBAAgB,IAAMxF,EAAQ8H,OAAOzD,IAAW,CAACrE,EAASqE,IAEhExC,EAAM6D,WAAU,IAAMmB,EAAyB/G,IAAS,CAACA,IAGvD+B,EAAA5C,cAACiI,EAAM,CACLjJ,SAAUA,EACV0J,SAAUA,EACV9B,SAAUnF,EAAMmF,SAChBsB,eAAgBzG,EAAMvC,OACtB2H,UAAW9F,EACXF,OAAQA,GAGd,CAaO,SAASiI,GAAW9J,SACzBA,EAAQ0J,SACRA,EAAQ7H,OACRA,EAAMN,OACNA,IAEA,IAAIoI,EAAa/F,EAAMmC,SACG,MAAtB4D,EAAWjD,UACbiD,EAAWjD,QAAUlE,EAAkB,CAAEjB,SAAQqI,UAAU,KAG7D,IAAI7H,EAAU4H,EAAWjD,SACpBjE,EAAOyC,GAAgBtB,EAAMuB,SAAS,CACzCjF,OAAQ6B,EAAQ7B,OAChB0H,SAAU7F,EAAQ6F,YAEhB5B,mBAAEA,GAAuBnE,GAAU,CAAA,EACnCuE,EAAWxC,EAAMsC,aAClBG,IACCL,GAAsB/B,EAClBA,GAAoB,IAAMiB,EAAamB,KACvCnB,EAAamB,EAAS,GAE5B,CAACnB,EAAcc,IAOjB,OAJApC,EAAM2D,iBAAgB,IAAMxF,EAAQ8H,OAAOzD,IAAW,CAACrE,EAASqE,IAEhExC,EAAM6D,WAAU,IAAMmB,EAAyB/G,IAAS,CAACA,IAGvD+B,EAAA5C,cAACiI,EAAM,CACLjJ,SAAUA,EACV0J,SAAUA,EACV9B,SAAUnF,EAAMmF,SAChBsB,eAAgBzG,EAAMvC,OACtB2H,UAAW9F,EACXF,OAAQA,GAGd,CAeA,SAASkI,GAAc/J,SACrBA,EAAQ0J,SACRA,EAAQ7H,OACRA,EAAME,QACNA,IAEA,IAAKU,EAAOyC,GAAgBtB,EAAMuB,SAAS,CACzCjF,OAAQ6B,EAAQ7B,OAChB0H,SAAU7F,EAAQ6F,YAEhB5B,mBAAEA,GAAuBnE,GAAU,CAAA,EACnCuE,EAAWxC,EAAMsC,aAClBG,IACCL,GAAsB/B,EAClBA,GAAoB,IAAMiB,EAAamB,KACvCnB,EAAamB,EAAS,GAE5B,CAACnB,EAAcc,IAOjB,OAJApC,EAAM2D,iBAAgB,IAAMxF,EAAQ8H,OAAOzD,IAAW,CAACrE,EAASqE,IAEhExC,EAAM6D,WAAU,IAAMmB,EAAyB/G,IAAS,CAACA,IAGvD+B,EAAA5C,cAACiI,EAAM,CACLjJ,SAAUA,EACV0J,SAAUA,EACV9B,SAAUnF,EAAMmF,SAChBsB,eAAgBzG,EAAMvC,OACtB2H,UAAW9F,EACXF,OAAQA,GAGd,CAmBA,MAAMmI,EACc,oBAAXzI,aACoB,IAApBA,OAAOR,eAC2B,IAAlCQ,OAAOR,SAASC,cAEnBiJ,EAAqB,gCAKdC,GAAOtG,EAAMuG,YACxB,UACEC,QACEA,EAAOC,SACPA,EAAQC,eACRA,EAAc/B,QACdA,EAAO9F,MACPA,EAAK1C,OACLA,EAAMsI,GACNA,EAAEC,mBACFA,EAAkBiC,eAClBA,KACGC,GAELC,GAEA,IAGIC,GAHA1K,SAAEA,GAAa4D,EAAM+G,WAAWC,GAIhCC,GAAa,EAEjB,GAAkB,iBAAPxC,GAAmB4B,EAAmBa,KAAKzC,KAEpDqC,EAAerC,EAGX2B,GACF,IACE,IAAIe,EAAa,IAAIC,IAAIzJ,OAAOqG,SAASqD,MACrCC,EAAY7C,EAAG8C,WAAW,MAC1B,IAAIH,IAAID,EAAWK,SAAW/C,GAC9B,IAAI2C,IAAI3C,GACRgD,EAAO7K,EAAc0K,EAAUI,SAAUtL,GAEzCkL,EAAUK,SAAWR,EAAWQ,QAAkB,MAARF,EAE5ChD,EAAKgD,EAAOH,EAAUM,OAASN,EAAUO,KAEzCZ,GAAa,CASjB,CAPE,MAAO5J,IAOT,CAKJ,IAAIgK,EAAOS,EAAQrD,EAAI,CAAEgC,aAErBsB,EAAkBC,GAAoBvD,EAAI,CAC5CE,UACA9F,QACA1C,SACAuI,qBACA+B,WACAE,mBAWF,OAEE3G,EAAA5C,cAAA,IAAAjC,OAAA8M,UACMrB,EAAI,CAAAS,KACFP,GAAgBO,EAAIb,QACjBS,GAAcP,EAAiBF,EAd5C,SACE0B,GAEI1B,GAASA,EAAQ0B,GAChBA,EAAMC,kBACTJ,EAAgBG,EAEpB,EAOiErB,IACxDA,EAAG1K,OACAA,IAGd,IA2BWiM,GAAUpI,EAAMuG,YAC3B,UAEI,eAAgB8B,EAAkB,OAAMC,cACxCA,GAAgB,EAChBC,UAAWC,EAAgB,GAAEC,IAC7BA,GAAM,EACNC,MAAOC,EAASlE,GAChBA,EAAEkC,eACFA,EAAcb,SACdA,KACGc,GAELC,GAEA,IAAIY,EAAOmB,EAAgBnE,EAAI,CAAEgC,SAAUG,EAAKH,WAC5CzC,EAAW6E,IACXC,EAAc9I,EAAM+G,WAAW3B,IAC/BnB,UAAEA,EAAS7H,SAAEA,GAAa4D,EAAM+G,WAAWC,GAC3C9G,EACa,MAAf4I,GAGAC,GAAuBtB,KACJ,IAAnBd,EAEEqC,EAAa/E,EAAUG,eACvBH,EAAUG,eAAeqD,GAAMC,SAC/BD,EAAKC,SACLuB,EAAmBjF,EAAS0D,SAC5BwB,EACFJ,GAAeA,EAAYK,YAAcL,EAAYK,WAAWnF,SAC5D8E,EAAYK,WAAWnF,SAAS0D,SAChC,KAEDY,IACHW,EAAmBA,EAAiBxM,cACpCyM,EAAuBA,EACnBA,EAAqBzM,cACrB,KACJuM,EAAaA,EAAWvM,eAGtByM,GAAwB9M,IAC1B8M,EACEtM,EAAcsM,EAAsB9M,IAAa8M,GAQrD,MAAME,EACW,MAAfJ,GAAsBA,EAAWK,SAAS,KACtCL,EAAWM,OAAS,EACpBN,EAAWM,OACjB,IAqBIf,EArBAgB,EACFN,IAAqBD,IACnBP,GACAQ,EAAiB1B,WAAWyB,IACkB,MAA9CC,EAAiBO,OAAOJ,GAExBK,EACsB,MAAxBP,IACCA,IAAyBF,IACtBP,GACAS,EAAqB3B,WAAWyB,IACmB,MAAnDE,EAAqBM,OAAOR,EAAWM,SAEzCI,EAAc,CAChBH,WACAE,YACAvJ,mBAGEyJ,EAAcJ,EAAWlB,OAAkB3K,EAI7C6K,EAD2B,mBAAlBC,EACGA,EAAckB,GAOd,CACVlB,EACAe,EAAW,SAAW,KACtBE,EAAY,UAAY,KACxBvJ,EAAkB,gBAAkB,MAEnC0J,OAAOC,SACPC,KAAK,KAGV,IAAIpB,EACmB,mBAAdC,EAA2BA,EAAUe,GAAef,EAE7D,OACE3I,EAAA5C,cAACkJ,GAAInL,OAAA8M,OAAA,CAAA,EACCrB,EAAI,CAAA,eACM+C,EAAWpB,UACdA,EAAS1B,IACfA,EAAG6B,MACDA,EAAKjE,GACRA,EAAEkC,eACUA,IAEK,mBAAbb,EAA0BA,EAAS4D,GAAe5D,EAGhE,IA2GWiE,GAAO/J,EAAMuG,YACxB,EAEIyD,aACAzF,WACAmC,iBACA/B,UACA9F,QACAxC,OAAAA,EDxwCuC,MCywCvCC,SACA2N,WACAxD,WACA/B,qBACAiC,oBACGuD,GAELC,KAEA,IAAIC,EAASC,KACTC,EAAaC,GAAcjO,EAAQ,CAAEmK,aACrC+D,EACuB,QAAzBnO,EAAOI,cAA0B,MAAQ,OA0B3C,OACEuD,EAAA5C,cAAAjC,OAAAA,OAAA8M,OAAA,CAAApB,IACOsD,EAAY9N,OACTmO,EAAUlO,OACVgO,EAAUL,SACRvD,EAAiBuD,EA7B+B/B,IAE5D,GADA+B,GAAYA,EAAS/B,GACjBA,EAAMC,iBAAkB,OAC5BD,EAAMuC,iBAEN,IAAIC,EAAaxC,EAAqCyC,YACnDD,UAECE,EACDF,GAAW/N,aAAa,eACzBN,EAEF+N,EAAOM,GAAaxC,EAAM2C,cAAe,CACvCb,aACA3N,OAAQuO,EACRrG,WACAI,UACA9F,QACA4H,WACA/B,qBACAiC,kBACA,GASIuD,GACJ,IAkBD,SAASY,IAAkBC,OAChCA,EAAMC,WACNA,IAGA,OADAC,GAAqB,CAAEF,SAAQC,eACxB,IACT,CASA,IAEKE,YAAAA,GAAc,OAAdA,EAAc,qBAAA,uBAAdA,EAAc,UAAA,YAAdA,EAAc,iBAAA,mBAAdA,EAAc,WAAA,aAAdA,EAAc,uBAAA,yBAAdA,CAAc,EAAdA,IAAc,CAAA,GAQdC,YAAAA,GAAmB,OAAnBA,EAAmB,WAAA,aAAnBA,EAAmB,YAAA,cAAnBA,EAAmB,qBAAA,uBAAnBA,CAAmB,EAAnBA,IAML,CAAA,GAQA,SAASC,GAAqBC,GAC5B,IAAIC,EAAMtL,EAAM+G,WAAW7B,GAE3B,OADUoG,GAAVC,GAAS,GACFD,CACT,CAEA,SAASE,GAAmBH,GAC1B,IAAIxM,EAAQmB,EAAM+G,WAAW3B,GAE7B,OADUvG,GAAV0M,GAAS,GACF1M,CACT,CASO,SAASmJ,GACdvD,GACAtI,OACEA,EACAwI,QAAS8G,EAAW5M,MACpBA,EAAK6F,mBACLA,EAAkB+B,SAClBA,EAAQE,eACRA,GAQE,IAEJ,IAAIpC,EAAWmH,IACX1H,EAAW6E,IACXpB,EAAOmB,EAAgBnE,EAAI,CAAEgC,aAEjC,OAAOzG,EAAMsC,aACV4F,IACC,GD93CC,SACLA,EACA/L,GAEA,QACmB,IAAjB+L,EAAMyD,QACJxP,GAAqB,UAAXA,GAVhB,SAAyB+L,GACvB,SAAUA,EAAM0D,SAAW1D,EAAM2D,QAAU3D,EAAM4D,SAAW5D,EAAM6D,SACpE,CASKC,CAAgB9D,GAErB,CCq3CU+D,CAAuB/D,EAAO/L,GAAS,CACzC+L,EAAMuC,iBAIN,IAAI9F,OACcjH,IAAhB+N,EACIA,EACAS,EAAWlI,KAAckI,EAAWzE,GAE1ClD,EAASE,EAAI,CACXE,UACA9F,QACA6F,qBACA+B,WACAE,kBAEJ,IAEF,CACE3C,EACAO,EACAkD,EACAgE,EACA5M,EACA1C,EACAsI,EACAC,EACA+B,EACAE,GAGN,CAMO,SAASwF,GACdC,GAUA,IAAIC,EAAyBrM,EAAMmC,OAAOrH,EAAmBsR,IACzDE,EAAwBtM,EAAMmC,QAAO,GAErC6B,EAAW6E,IACX0D,EAAevM,EAAMkE,SACvB,ID33CG,SACLsI,EACAC,GAEA,IAAIF,EAAezR,EAAmB0R,GAiBtC,OAfIC,GAMFA,EAAoB5J,SAAQ,CAAC6J,EAAGnR,KACzBgR,EAAatQ,IAAIV,IACpBkR,EAAoBE,OAAOpR,GAAKsH,SAASrH,IACvC+Q,EAAa9O,OAAOlC,EAAKC,EAAM,GAEnC,IAIG+Q,CACT,CCy2CMK,CACE5I,EAAS4D,OACT0E,EAAsBxJ,QAAU,KAAOuJ,EAAuBvJ,UAElE,CAACkB,EAAS4D,SAGRrD,EAAWmH,IACXmB,EAAkB7M,EAAMsC,aAC1B,CAACwK,EAAUC,KACT,MAAMC,EAAkBlS,EACF,mBAAbgS,EAA0BA,EAASP,GAAgBO,GAE5DR,EAAsBxJ,SAAU,EAChCyB,EAAS,IAAMyI,EAAiBD,EAAgB,GAElD,CAACxI,EAAUgI,IAGb,MAAO,CAACA,EAAcM,EACxB,CAoDA,IAAII,GAAY,EACZC,GAAqBA,IAAO,KAAIC,SAASF,QAMtC,SAAS5C,KACd,IAAIhJ,OAAEA,GAAW+J,GAAqBF,GAAekC,YACjDhR,SAAEA,GAAa4D,EAAM+G,WAAWC,GAChCqG,EAAiBC,IAErB,OAAOtN,EAAMsC,aACX,CAACnG,EAAQoR,EAAU,CAAA,MAtBvB,WACE,GAAwB,oBAAbpQ,SACT,MAAM,IAAID,MACR,gHAIN,CAgBMsQ,GAEA,IAAIlR,OAAEA,EAAMD,OAAEA,EAAML,QAAEA,EAAOO,SAAEA,EAAQC,KAAEA,GAASN,EAChDC,EACAC,GAGF,IAAyB,IAArBmR,EAAQhJ,SAAoB,CAC9B,IAAIhJ,EAAMgS,EAAQvD,YAAckD,KAChC7L,EAAOoM,MAAMlS,EAAK8R,EAAgBE,EAAQjR,QAAUA,EAAQ,CAC1DoI,mBAAoB6I,EAAQ7I,mBAC5BnI,WACAC,OACAgO,WAAY+C,EAAQlR,QAAWA,EAC/BqR,YAAaH,EAAQvR,SAAYA,EACjC2G,UAAW4K,EAAQ5K,WAEvB,MACEtB,EAAOkD,SAASgJ,EAAQjR,QAAUA,EAAQ,CACxCoI,mBAAoB6I,EAAQ7I,mBAC5BnI,WACAC,OACAgO,WAAY+C,EAAQlR,QAAWA,EAC/BqR,YAAaH,EAAQvR,SAAYA,EACjC2I,QAAS4I,EAAQ5I,QACjB9F,MAAO0O,EAAQ1O,MACf8O,YAAaN,EACb1K,UAAW4K,EAAQ5K,UACnBgE,eAAgB4G,EAAQ5G,gBAE5B,GAEF,CAACtF,EAAQjF,EAAUiR,GAEvB,CAIO,SAAS9C,GACdjO,GACAmK,SAAEA,GAAiD,IAEnD,IAAIrK,SAAEA,GAAa4D,EAAM+G,WAAWC,GAChC4G,EAAe5N,EAAM+G,WAAW8G,GAC1BD,GAAVrC,GAAS,GAET,IAAKuC,GAASF,EAAaG,QAAQC,OAAO,GAGtCvG,EAAO,IAAKmB,EAAgBtM,GAAkB,IAAK,CAAEmK,cAKrDzC,EAAW6E,IACf,GAAc,MAAVvM,EAAgB,CAGlBmL,EAAKG,OAAS5D,EAAS4D,OAKvB,IAAIqG,EAAS,IAAIjT,gBAAgByM,EAAKG,QAClCsG,EAAcD,EAAOtB,OAAO,SAEhC,GADyBuB,EAAYC,MAAMxS,GAAY,KAANA,IACzB,CACtBsS,EAAOlL,OAAO,SACdmL,EAAYtE,QAAQjO,GAAMA,IAAGkH,SAASlH,GAAMsS,EAAOxQ,OAAO,QAAS9B,KACnE,IAAIyS,EAAKH,EAAOI,WAChB5G,EAAKG,OAASwG,EAAM,IAAGA,IAAO,EAChC,CACF,CAiBA,OAfM9R,GAAqB,MAAXA,IAAmBwR,EAAMQ,MAAMC,QAC7C9G,EAAKG,OAASH,EAAKG,OACfH,EAAKG,OAAOjD,QAAQ,MAAO,WAC3B,UAOW,MAAbvI,IACFqL,EAAKC,SACe,MAAlBD,EAAKC,SAAmBtL,EAAWoS,EAAU,CAACpS,EAAUqL,EAAKC,YAG1DwE,EAAWzE,EACpB,CAgBO,SAASgH,IAAwBlT,IACtCA,GACoB,IACpB,IAAI8F,OAAEA,GAAW+J,GAAqBF,GAAewD,YACjD7P,EAAQ2M,GAAmBL,GAAoBuD,YAC/CxM,EAAclC,EAAM+G,WAAW5G,GAC/BmO,EAAQtO,EAAM+G,WAAW8G,GACzBc,EAAUL,EAAMP,QAAQO,EAAMP,QAAQzE,OAAS,IAAIgF,MAAMM,GAEnD1M,GAAVqJ,GAAS,GACC+C,GAAV/C,GAAS,GAEI,MAAXoD,GADFpD,GAAS,GAQT,IAAIsD,EAAarO,EAAYA,IAAc,IACtCwJ,EAAY8E,GAAiB9O,EAAMuB,SAAiBhG,GAAOsT,GAC5DtT,GAAOA,IAAQyO,EACjB8E,EAAcvT,GACJyO,GAEV8E,EAAc5B,MAIhBlN,EAAM6D,WAAU,KACdxC,EAAO0N,WAAW/E,GACX,KAIL3I,EAAO2N,cAAchF,EAAW,IAEjC,CAAC3I,EAAQ2I,IAGZ,IAAIiF,EAAOjP,EAAMsC,aACf,CAAC+E,EAActJ,KACH4Q,GAAVpD,GAAS,GACTlK,EAAOoM,MAAMzD,EAAY2E,EAAStH,EAAMtJ,EAAK,GAE/C,CAACiM,EAAY2E,EAAStN,IAGpB6N,EAAa7E,KACbD,EAASpK,EAAMsC,aACjB,CAACnG,EAAQ4B,KACPmR,EAAW/S,EAAQ,IACd4B,EACHwG,UAAU,EACVyF,cACA,GAEJ,CAACA,EAAYkF,IAGXC,EAAcnP,EAAMkE,SAAQ,IACZlE,EAAMuG,YACtB,CAAC2D,EAAOrD,IAEJ7G,EAAA5C,cAAC2M,GAAI5O,OAAA8M,OAAA,CAAA,EAAKiC,EAAK,CAAA3F,UAAY,EAAKyF,WAAcA,EAAUnD,IAAOA,QAQpE,CAACmD,IAGA/G,EAAUpE,EAAMmE,SAASoM,IAAIpF,IAAeqF,EAC5C7P,EAAO0C,EAAYkN,IAAIpF,GAY3B,OAX4BhK,EAAMkE,SAChC,KAAO,CACL6F,KAAMoF,EACN/E,SACA6E,UACGhM,EACHzD,UAEF,CAAC2P,EAAa/E,EAAQ6E,EAAMhM,EAASzD,GAIzC,CAMO,SAAS8P,KACd,IAAIzQ,EAAQ2M,GAAmBL,GAAoBoE,aACnD,OAAOtU,MAAMuU,KAAK3Q,EAAMmE,SAAS/D,WAAWvD,KAAI,EAAEH,EAAK0H,MAAc,IAChEA,EACH1H,SAEJ,CAGA,IAAIkU,GAA+C,CAAA,EAKnD,SAASxE,IAAqBF,OAC5BA,EAAMC,WACNA,GAIE,IACF,IAAI3J,OAAEA,GAAW+J,GAAqBF,GAAewE,uBACjDC,sBAAEA,EAAqBjL,mBAAEA,GAAuB8G,GAClDL,GAAoBuE,uBAElBtT,SAAEA,GAAa4D,EAAM+G,WAAWC,GAChChD,EAAW6E,IACXkF,EAAU6B,IACVzG,EAAa0G,IAGjB7P,EAAM6D,WAAU,KACdlG,OAAOQ,QAAQ2R,kBAAoB,SAC5B,KACLnS,OAAOQ,QAAQ2R,kBAAoB,MAAM,IAE1C,IAqIL,SACEC,EACAxC,GAEA,IAAIyC,QAAEA,GAAYzC,GAAW,CAAA,EAC7BvN,EAAM6D,WAAU,KACd,IAAI9F,EAAkB,MAAXiS,EAAkB,CAAEA,gBAAYtS,EAE3C,OADAC,OAAOsS,iBAAiB,WAAYF,EAAUhS,GACvC,KACLJ,OAAOuS,oBAAoB,WAAYH,EAAUhS,EAAK,CACvD,GACA,CAACgS,EAAUC,GAChB,CA9IEG,CACEnQ,EAAMsC,aAAY,KAChB,GAAyB,SAArB6G,EAAWtK,MAAkB,CAC/B,IAAItD,GAAOwP,EAASA,EAAO/G,EAAU+J,GAAW,OAAS/J,EAASzI,IAClEkU,GAAqBlU,GAAOoC,OAAOyS,OACrC,CACA,IACEC,eAAeC,QACbtF,GAvC6B,gCAwC7BuF,KAAKC,UAAUf,IAOnB,CALE,MAAO7P,GAKT,CACAjC,OAAOQ,QAAQ2R,kBAAoB,MAAM,GACxC,CAAC9E,EAAYD,EAAQ5B,EAAWtK,MAAOmF,EAAU+J,KAI9B,oBAAb5Q,WAET6C,EAAM2D,iBAAgB,KACpB,IACE,IAAI8M,EAAmBJ,eAAeK,QACpC1F,GA1D6B,iCA4D3ByF,IACFhB,GAAuBc,KAAKI,MAAMF,GAGpC,CADA,MAAOpT,IACP,IAED,CAAC2N,IAIJhL,EAAM2D,iBAAgB,KACpB,IAAIiN,EACF7F,GAAuB,MAAb3O,EACN,CAAC4H,EAAU+J,IACThD,EAEE,IACK/G,EACH0D,SACE9K,EAAcoH,EAAS0D,SAAUtL,IACjC4H,EAAS0D,UAEbqG,GAEJhD,EACF8F,EAA2BxP,GAAQyP,wBACrCrB,IACA,IAAM9R,OAAOyS,SACbQ,GAEF,MAAO,IAAMC,GAA4BA,GAA0B,GAClE,CAACxP,EAAQjF,EAAU2O,IAItB/K,EAAM2D,iBAAgB,KAEpB,IAA8B,IAA1BgM,EAKJ,GAAqC,iBAA1BA,EAAX,CAMA,GAAI3L,EAAS6D,KAAM,CACjB,IAAIkJ,EAAK5T,SAAS6T,eAChBC,mBAAmBjN,EAAS6D,KAAKmG,MAAM,KAEzC,GAAI+C,EAEF,YADAA,EAAGG,gBAGP,EAG2B,IAAvBxM,GAKJ/G,OAAOwT,SAAS,EAAG,EAnBnB,MAFExT,OAAOwT,SAAS,EAAGxB,EAqBA,GACpB,CAAC3L,EAAU2L,EAAuBjL,IAEzC,CAYO,SAAS0M,GACdrB,EACAxC,GAEA,IAAIyC,QAAEA,GAAYzC,GAAW,CAAA,EAC7BvN,EAAM6D,WAAU,KACd,IAAI9F,EAAkB,MAAXiS,EAAkB,CAAEA,gBAAYtS,EAE3C,OADAC,OAAOsS,iBAAiB,eAAgBF,EAAUhS,GAC3C,KACLJ,OAAOuS,oBAAoB,eAAgBH,EAAUhS,EAAK,CAC3D,GACA,CAACgS,EAAUC,GAChB,CAgCA,SAASqB,IAAUC,KACjBA,EAAIzR,QACJA,IAKA,IAAI0R,EAAUC,EAAWF,GAEzBtR,EAAM6D,WAAU,KACd,GAAsB,YAAlB0N,EAAQ1S,MAAqB,CACjBlB,OAAO8T,QAAQ5R,GAK3B6R,WAAWH,EAAQI,QAAS,GAE5BJ,EAAQK,OAEZ,IACC,CAACL,EAAS1R,IAEbG,EAAM6D,WAAU,KACQ,YAAlB0N,EAAQ1S,OAAwByS,GAClCC,EAAQK,OACV,GACC,CAACL,EAASD,GACf,CAYA,SAASvI,GACPtE,EACA1G,EAA2C,IAE3C,IAAI2D,EAAY1B,EAAM+G,WAAWhH,GAGlB,MAAb2B,GADF6J,GAAS,GAMT,IAAInP,SAAEA,GAAagP,GACjBF,GAAenC,wBAEbtB,EAAOmB,EAAgBnE,EAAI,CAAEgC,SAAU1I,EAAK0I,WAChD,IAAK/E,EAAUxB,gBACb,OAAO,EAGT,IAAI2R,EACFjV,EAAc8E,EAAU4B,gBAAgBoE,SAAUtL,IAClDsF,EAAU4B,gBAAgBoE,SACxBoK,EACFlV,EAAc8E,EAAU6B,aAAamE,SAAUtL,IAC/CsF,EAAU6B,aAAamE,SAezB,OACwC,MAAtCqK,EAAUtK,EAAKC,SAAUoK,IACgB,MAAzCC,EAAUtK,EAAKC,SAAUmK,EAE7B"}
  • imaps-frontend/node_modules/react-router-dom/dist/umd/react-router-dom.development.js

    rd565449 r0c6b92a  
    11/**
    2  * React Router DOM v6.26.0
     2 * React Router DOM v6.28.0
    33 *
    44 * Copyright (c) Remix Software Inc.
     
    251251  }
    252252
    253   const _excluded = ["onClick", "relative", "reloadDocument", "replace", "state", "target", "to", "preventScrollReset", "unstable_viewTransition"],
    254     _excluded2 = ["aria-current", "caseSensitive", "className", "end", "style", "to", "unstable_viewTransition", "children"],
    255     _excluded3 = ["fetcherKey", "navigate", "reloadDocument", "replace", "state", "method", "action", "onSubmit", "relative", "preventScrollReset", "unstable_viewTransition"];
     253  const _excluded = ["onClick", "relative", "reloadDocument", "replace", "state", "target", "to", "preventScrollReset", "viewTransition"],
     254    _excluded2 = ["aria-current", "caseSensitive", "className", "end", "style", "to", "viewTransition", "children"],
     255    _excluded3 = ["fetcherKey", "navigate", "reloadDocument", "replace", "state", "method", "action", "onSubmit", "relative", "preventScrollReset", "viewTransition"];
    256256  //#endregion
    257257  // HEY YOU! DON'T TOUCH THIS VARIABLE!
     
    286286      routes,
    287287      mapRouteProperties: reactRouter.UNSAFE_mapRouteProperties,
    288       unstable_dataStrategy: opts == null ? void 0 : opts.unstable_dataStrategy,
    289       unstable_patchRoutesOnMiss: opts == null ? void 0 : opts.unstable_patchRoutesOnMiss,
     288      dataStrategy: opts == null ? void 0 : opts.dataStrategy,
     289      patchRoutesOnNavigation: opts == null ? void 0 : opts.patchRoutesOnNavigation,
    290290      window: opts == null ? void 0 : opts.window
    291291    }).initialize();
     
    303303      routes,
    304304      mapRouteProperties: reactRouter.UNSAFE_mapRouteProperties,
    305       unstable_dataStrategy: opts == null ? void 0 : opts.unstable_dataStrategy,
    306       unstable_patchRoutesOnMiss: opts == null ? void 0 : opts.unstable_patchRoutesOnMiss,
     305      dataStrategy: opts == null ? void 0 : opts.dataStrategy,
     306      patchRoutesOnNavigation: opts == null ? void 0 : opts.patchRoutesOnNavigation,
    307307      window: opts == null ? void 0 : opts.window
    308308    }).initialize();
     
    479479      let {
    480480        deletedFetchers,
    481         unstable_flushSync: flushSync,
    482         unstable_viewTransitionOpts: viewTransitionOpts
     481        flushSync: flushSync,
     482        viewTransitionOpts: viewTransitionOpts
    483483      } = _ref2;
    484484      deletedFetchers.forEach(key => fetcherData.current.delete(key));
     
    649649      v7_relativeSplatPath: router$1.future.v7_relativeSplatPath
    650650    }), [router$1.future.v7_relativeSplatPath]);
     651    React__namespace.useEffect(() => reactRouter.UNSAFE_logV6DeprecationWarnings(future, router$1.future), [future, router$1.future]);
    651652
    652653    // The fragment and {null} here are important!  We need them to keep React 18's
     
    716717    }, [setStateImpl, v7_startTransition]);
    717718    React__namespace.useLayoutEffect(() => history.listen(setState), [history, setState]);
     719    React__namespace.useEffect(() => reactRouter.UNSAFE_logV6DeprecationWarnings(future), [future]);
    718720    return /*#__PURE__*/React__namespace.createElement(reactRouter.Router, {
    719721      basename: basename,
     
    755757    }, [setStateImpl, v7_startTransition]);
    756758    React__namespace.useLayoutEffect(() => history.listen(setState), [history, setState]);
     759    React__namespace.useEffect(() => reactRouter.UNSAFE_logV6DeprecationWarnings(future), [future]);
    757760    return /*#__PURE__*/React__namespace.createElement(reactRouter.Router, {
    758761      basename: basename,
     
    788791    }, [setStateImpl, v7_startTransition]);
    789792    React__namespace.useLayoutEffect(() => history.listen(setState), [history, setState]);
     793    React__namespace.useEffect(() => reactRouter.UNSAFE_logV6DeprecationWarnings(future), [future]);
    790794    return /*#__PURE__*/React__namespace.createElement(reactRouter.Router, {
    791795      basename: basename,
     
    816820        to,
    817821        preventScrollReset,
    818         unstable_viewTransition
     822        viewTransition
    819823      } = _ref7,
    820824      rest = _objectWithoutPropertiesLoose(_ref7, _excluded);
     
    859863      preventScrollReset,
    860864      relative,
    861       unstable_viewTransition
     865      viewTransition
    862866    });
    863867    function handleClick(event) {
     
    892896        style: styleProp,
    893897        to,
    894         unstable_viewTransition,
     898        viewTransition,
    895899        children
    896900      } = _ref8,
     
    908912    // Conditional usage is OK here because the usage of a data router is static
    909913    // eslint-disable-next-line react-hooks/rules-of-hooks
    910     useViewTransitionState(path) && unstable_viewTransition === true;
     914    useViewTransitionState(path) && viewTransition === true;
    911915    let toPathname = navigator.encodeLocation ? navigator.encodeLocation(path).pathname : path.pathname;
    912916    let locationPathname = location.pathname;
     
    953957      style: style,
    954958      to: to,
    955       unstable_viewTransition: unstable_viewTransition
     959      viewTransition: viewTransition
    956960    }), typeof children === "function" ? children(renderProps) : children);
    957961  });
     
    990994        relative,
    991995        preventScrollReset,
    992         unstable_viewTransition
     996        viewTransition
    993997      } = _ref9,
    994998      props = _objectWithoutPropertiesLoose(_ref9, _excluded3);
     
    10121016        relative,
    10131017        preventScrollReset,
    1014         unstable_viewTransition
     1018        viewTransition
    10151019      });
    10161020    };
     
    10631067  }(DataRouterStateHook || {}); // Internal hooks
    10641068  function getDataRouterConsoleError(hookName) {
    1065     return hookName + " must be used within a data router.  See https://reactrouter.com/routers/picking-a-router.";
     1069    return hookName + " must be used within a data router.  See https://reactrouter.com/v6/routers/picking-a-router.";
    10661070  }
    10671071  function useDataRouterContext(hookName) {
     
    10901094      preventScrollReset,
    10911095      relative,
    1092       unstable_viewTransition
     1096      viewTransition
    10931097    } = _temp === void 0 ? {} : _temp;
    10941098    let navigate = reactRouter.useNavigate();
     
    11091113          preventScrollReset,
    11101114          relative,
    1111           unstable_viewTransition
     1115          viewTransition
    11121116        });
    11131117      }
    1114     }, [location, navigate, path, replaceProp, state, target, to, preventScrollReset, relative, unstable_viewTransition]);
     1118    }, [location, navigate, path, replaceProp, state, target, to, preventScrollReset, relative, viewTransition]);
    11151119  }
    11161120
     
    11861190          formMethod: options.method || method,
    11871191          formEncType: options.encType || encType,
    1188           unstable_flushSync: options.unstable_flushSync
     1192          flushSync: options.flushSync
    11891193        });
    11901194      } else {
     
    11981202          state: options.state,
    11991203          fromRouteId: currentRouteId,
    1200           unstable_flushSync: options.unstable_flushSync,
    1201           unstable_viewTransition: options.unstable_viewTransition
     1204          flushSync: options.flushSync,
     1205          viewTransition: options.viewTransition
    12021206        });
    12031207      }
     
    12361240      // on match.route.index below
    12371241      let params = new URLSearchParams(path.search);
    1238       if (params.has("index") && params.get("index") === "") {
     1242      let indexValues = params.getAll("index");
     1243      let hasNakedIndexParam = indexValues.some(v => v === "");
     1244      if (hasNakedIndexParam) {
    12391245        params.delete("index");
    1240         path.search = params.toString() ? "?" + params.toString() : "";
     1246        indexValues.filter(v => v).forEach(v => params.append("index", v));
     1247        let qs = params.toString();
     1248        path.search = qs ? "?" + qs : "";
    12411249      }
    12421250    }
     
    15491557    }
    15501558    let vtContext = React__namespace.useContext(ViewTransitionContext);
    1551     !(vtContext != null) ? router.UNSAFE_invariant(false, "`unstable_useViewTransitionState` must be used within `react-router-dom`'s `RouterProvider`.  " + "Did you accidentally import `RouterProvider` from `react-router`?")  : void 0;
     1559    !(vtContext != null) ? router.UNSAFE_invariant(false, "`useViewTransitionState` must be used within `react-router-dom`'s `RouterProvider`.  " + "Did you accidentally import `RouterProvider` from `react-router`?")  : void 0;
    15521560    let {
    15531561      basename
     
    15661574    // an indicated transition apply.  I.e., on the list view you have:
    15671575    //
    1568     //   <NavLink to="/details/1" unstable_viewTransition>
     1576    //   <NavLink to="/details/1" viewTransition>
    15691577    //
    15701578    // If you click the breadcrumb back to the list view:
    15711579    //
    1572     //   <NavLink to="/list" unstable_viewTransition>
     1580    //   <NavLink to="/list" viewTransition>
    15731581    //
    15741582    // We should apply the transition because it's indicated as active going
     
    18071815  exports.unstable_HistoryRouter = HistoryRouter;
    18081816  exports.unstable_usePrompt = usePrompt;
    1809   exports.unstable_useViewTransitionState = useViewTransitionState;
    18101817  exports.useBeforeUnload = useBeforeUnload;
    18111818  exports.useFetcher = useFetcher;
     
    18151822  exports.useSearchParams = useSearchParams;
    18161823  exports.useSubmit = useSubmit;
     1824  exports.useViewTransitionState = useViewTransitionState;
    18171825
    18181826  Object.defineProperty(exports, '__esModule', { value: true });
  • imaps-frontend/node_modules/react-router-dom/dist/umd/react-router-dom.development.js.map

    rd565449 r0c6b92a  
    1 {"version":3,"file":"react-router-dom.development.js","sources":["../../dom.ts","../../index.tsx"],"sourcesContent":["import type {\n  FormEncType,\n  HTMLFormMethod,\n  RelativeRoutingType,\n} from \"@remix-run/router\";\nimport { stripBasename, UNSAFE_warning as warning } from \"@remix-run/router\";\n\nexport const defaultMethod: HTMLFormMethod = \"get\";\nconst defaultEncType: FormEncType = \"application/x-www-form-urlencoded\";\n\nexport function isHtmlElement(object: any): object is HTMLElement {\n  return object != null && typeof object.tagName === \"string\";\n}\n\nexport function isButtonElement(object: any): object is HTMLButtonElement {\n  return isHtmlElement(object) && object.tagName.toLowerCase() === \"button\";\n}\n\nexport function isFormElement(object: any): object is HTMLFormElement {\n  return isHtmlElement(object) && object.tagName.toLowerCase() === \"form\";\n}\n\nexport function isInputElement(object: any): object is HTMLInputElement {\n  return isHtmlElement(object) && object.tagName.toLowerCase() === \"input\";\n}\n\ntype LimitedMouseEvent = Pick<\n  MouseEvent,\n  \"button\" | \"metaKey\" | \"altKey\" | \"ctrlKey\" | \"shiftKey\"\n>;\n\nfunction isModifiedEvent(event: LimitedMouseEvent) {\n  return !!(event.metaKey || event.altKey || event.ctrlKey || event.shiftKey);\n}\n\nexport function shouldProcessLinkClick(\n  event: LimitedMouseEvent,\n  target?: string\n) {\n  return (\n    event.button === 0 && // Ignore everything but left clicks\n    (!target || target === \"_self\") && // Let browser handle \"target=_blank\" etc.\n    !isModifiedEvent(event) // Ignore clicks with modifier keys\n  );\n}\n\nexport type ParamKeyValuePair = [string, string];\n\nexport type URLSearchParamsInit =\n  | string\n  | ParamKeyValuePair[]\n  | Record<string, string | string[]>\n  | URLSearchParams;\n\n/**\n * Creates a URLSearchParams object using the given initializer.\n *\n * This is identical to `new URLSearchParams(init)` except it also\n * supports arrays as values in the object form of the initializer\n * instead of just strings. This is convenient when you need multiple\n * values for a given key, but don't want to use an array initializer.\n *\n * For example, instead of:\n *\n *   let searchParams = new URLSearchParams([\n *     ['sort', 'name'],\n *     ['sort', 'price']\n *   ]);\n *\n * you can do:\n *\n *   let searchParams = createSearchParams({\n *     sort: ['name', 'price']\n *   });\n */\nexport function createSearchParams(\n  init: URLSearchParamsInit = \"\"\n): URLSearchParams {\n  return new URLSearchParams(\n    typeof init === \"string\" ||\n    Array.isArray(init) ||\n    init instanceof URLSearchParams\n      ? init\n      : Object.keys(init).reduce((memo, key) => {\n          let value = init[key];\n          return memo.concat(\n            Array.isArray(value) ? value.map((v) => [key, v]) : [[key, value]]\n          );\n        }, [] as ParamKeyValuePair[])\n  );\n}\n\nexport function getSearchParamsForLocation(\n  locationSearch: string,\n  defaultSearchParams: URLSearchParams | null\n) {\n  let searchParams = createSearchParams(locationSearch);\n\n  if (defaultSearchParams) {\n    // Use `defaultSearchParams.forEach(...)` here instead of iterating of\n    // `defaultSearchParams.keys()` to work-around a bug in Firefox related to\n    // web extensions. Relevant Bugzilla tickets:\n    // https://bugzilla.mozilla.org/show_bug.cgi?id=1414602\n    // https://bugzilla.mozilla.org/show_bug.cgi?id=1023984\n    defaultSearchParams.forEach((_, key) => {\n      if (!searchParams.has(key)) {\n        defaultSearchParams.getAll(key).forEach((value) => {\n          searchParams.append(key, value);\n        });\n      }\n    });\n  }\n\n  return searchParams;\n}\n\n// Thanks https://github.com/sindresorhus/type-fest!\ntype JsonObject = { [Key in string]: JsonValue } & {\n  [Key in string]?: JsonValue | undefined;\n};\ntype JsonArray = JsonValue[] | readonly JsonValue[];\ntype JsonPrimitive = string | number | boolean | null;\ntype JsonValue = JsonPrimitive | JsonObject | JsonArray;\n\nexport type SubmitTarget =\n  | HTMLFormElement\n  | HTMLButtonElement\n  | HTMLInputElement\n  | FormData\n  | URLSearchParams\n  | JsonValue\n  | null;\n\n// One-time check for submitter support\nlet _formDataSupportsSubmitter: boolean | null = null;\n\nfunction isFormDataSubmitterSupported() {\n  if (_formDataSupportsSubmitter === null) {\n    try {\n      new FormData(\n        document.createElement(\"form\"),\n        // @ts-expect-error if FormData supports the submitter parameter, this will throw\n        0\n      );\n      _formDataSupportsSubmitter = false;\n    } catch (e) {\n      _formDataSupportsSubmitter = true;\n    }\n  }\n  return _formDataSupportsSubmitter;\n}\n\n/**\n * Submit options shared by both navigations and fetchers\n */\ninterface SharedSubmitOptions {\n  /**\n   * The HTTP method used to submit the form. Overrides `<form method>`.\n   * Defaults to \"GET\".\n   */\n  method?: HTMLFormMethod;\n\n  /**\n   * The action URL path used to submit the form. Overrides `<form action>`.\n   * Defaults to the path of the current route.\n   */\n  action?: string;\n\n  /**\n   * The encoding used to submit the form. Overrides `<form encType>`.\n   * Defaults to \"application/x-www-form-urlencoded\".\n   */\n  encType?: FormEncType;\n\n  /**\n   * Determines whether the form action is relative to the route hierarchy or\n   * the pathname.  Use this if you want to opt out of navigating the route\n   * hierarchy and want to instead route based on /-delimited URL segments\n   */\n  relative?: RelativeRoutingType;\n\n  /**\n   * In browser-based environments, prevent resetting scroll after this\n   * navigation when using the <ScrollRestoration> component\n   */\n  preventScrollReset?: boolean;\n\n  /**\n   * Enable flushSync for this submission's state updates\n   */\n  unstable_flushSync?: boolean;\n}\n\n/**\n * Submit options available to fetchers\n */\nexport interface FetcherSubmitOptions extends SharedSubmitOptions {}\n\n/**\n * Submit options available to navigations\n */\nexport interface SubmitOptions extends FetcherSubmitOptions {\n  /**\n   * Set `true` to replace the current entry in the browser's history stack\n   * instead of creating a new one (i.e. stay on \"the same page\"). Defaults\n   * to `false`.\n   */\n  replace?: boolean;\n\n  /**\n   * State object to add to the history stack entry for this navigation\n   */\n  state?: any;\n\n  /**\n   * Indicate a specific fetcherKey to use when using navigate=false\n   */\n  fetcherKey?: string;\n\n  /**\n   * navigate=false will use a fetcher instead of a navigation\n   */\n  navigate?: boolean;\n\n  /**\n   * Enable view transitions on this submission navigation\n   */\n  unstable_viewTransition?: boolean;\n}\n\nconst supportedFormEncTypes: Set<FormEncType> = new Set([\n  \"application/x-www-form-urlencoded\",\n  \"multipart/form-data\",\n  \"text/plain\",\n]);\n\nfunction getFormEncType(encType: string | null) {\n  if (encType != null && !supportedFormEncTypes.has(encType as FormEncType)) {\n    warning(\n      false,\n      `\"${encType}\" is not a valid \\`encType\\` for \\`<Form>\\`/\\`<fetcher.Form>\\` ` +\n        `and will default to \"${defaultEncType}\"`\n    );\n\n    return null;\n  }\n  return encType;\n}\n\nexport function getFormSubmissionInfo(\n  target: SubmitTarget,\n  basename: string\n): {\n  action: string | null;\n  method: string;\n  encType: string;\n  formData: FormData | undefined;\n  body: any;\n} {\n  let method: string;\n  let action: string | null;\n  let encType: string;\n  let formData: FormData | undefined;\n  let body: any;\n\n  if (isFormElement(target)) {\n    // When grabbing the action from the element, it will have had the basename\n    // prefixed to ensure non-JS scenarios work, so strip it since we'll\n    // re-prefix in the router\n    let attr = target.getAttribute(\"action\");\n    action = attr ? stripBasename(attr, basename) : null;\n    method = target.getAttribute(\"method\") || defaultMethod;\n    encType = getFormEncType(target.getAttribute(\"enctype\")) || defaultEncType;\n\n    formData = new FormData(target);\n  } else if (\n    isButtonElement(target) ||\n    (isInputElement(target) &&\n      (target.type === \"submit\" || target.type === \"image\"))\n  ) {\n    let form = target.form;\n\n    if (form == null) {\n      throw new Error(\n        `Cannot submit a <button> or <input type=\"submit\"> without a <form>`\n      );\n    }\n\n    // <button>/<input type=\"submit\"> may override attributes of <form>\n\n    // When grabbing the action from the element, it will have had the basename\n    // prefixed to ensure non-JS scenarios work, so strip it since we'll\n    // re-prefix in the router\n    let attr = target.getAttribute(\"formaction\") || form.getAttribute(\"action\");\n    action = attr ? stripBasename(attr, basename) : null;\n\n    method =\n      target.getAttribute(\"formmethod\") ||\n      form.getAttribute(\"method\") ||\n      defaultMethod;\n    encType =\n      getFormEncType(target.getAttribute(\"formenctype\")) ||\n      getFormEncType(form.getAttribute(\"enctype\")) ||\n      defaultEncType;\n\n    // Build a FormData object populated from a form and submitter\n    formData = new FormData(form, target);\n\n    // If this browser doesn't support the `FormData(el, submitter)` format,\n    // then tack on the submitter value at the end.  This is a lightweight\n    // solution that is not 100% spec compliant.  For complete support in older\n    // browsers, consider using the `formdata-submitter-polyfill` package\n    if (!isFormDataSubmitterSupported()) {\n      let { name, type, value } = target;\n      if (type === \"image\") {\n        let prefix = name ? `${name}.` : \"\";\n        formData.append(`${prefix}x`, \"0\");\n        formData.append(`${prefix}y`, \"0\");\n      } else if (name) {\n        formData.append(name, value);\n      }\n    }\n  } else if (isHtmlElement(target)) {\n    throw new Error(\n      `Cannot submit element that is not <form>, <button>, or ` +\n        `<input type=\"submit|image\">`\n    );\n  } else {\n    method = defaultMethod;\n    action = null;\n    encType = defaultEncType;\n    body = target;\n  }\n\n  // Send body for <Form encType=\"text/plain\" so we encode it into text\n  if (formData && encType === \"text/plain\") {\n    body = formData;\n    formData = undefined;\n  }\n\n  return { action, method: method.toLowerCase(), encType, formData, body };\n}\n","/**\n * NOTE: If you refactor this to split up the modules into separate files,\n * you'll need to update the rollup config for react-router-dom-v5-compat.\n */\nimport * as React from \"react\";\nimport * as ReactDOM from \"react-dom\";\nimport type {\n  DataRouteObject,\n  FutureConfig,\n  Location,\n  NavigateOptions,\n  NavigationType,\n  Navigator,\n  RelativeRoutingType,\n  RouteObject,\n  RouterProps,\n  RouterProviderProps,\n  To,\n  unstable_PatchRoutesOnMissFunction,\n} from \"react-router\";\nimport {\n  Router,\n  createPath,\n  useHref,\n  useLocation,\n  useMatches,\n  useNavigate,\n  useNavigation,\n  useResolvedPath,\n  useBlocker,\n  UNSAFE_DataRouterContext as DataRouterContext,\n  UNSAFE_DataRouterStateContext as DataRouterStateContext,\n  UNSAFE_NavigationContext as NavigationContext,\n  UNSAFE_RouteContext as RouteContext,\n  UNSAFE_mapRouteProperties as mapRouteProperties,\n  UNSAFE_useRouteId as useRouteId,\n  UNSAFE_useRoutesImpl as useRoutesImpl,\n} from \"react-router\";\nimport type {\n  BrowserHistory,\n  unstable_DataStrategyFunction,\n  unstable_DataStrategyFunctionArgs,\n  unstable_DataStrategyMatch,\n  Fetcher,\n  FormEncType,\n  FormMethod,\n  FutureConfig as RouterFutureConfig,\n  GetScrollRestorationKeyFunction,\n  HashHistory,\n  History,\n  HTMLFormMethod,\n  HydrationState,\n  Router as RemixRouter,\n  V7_FormMethod,\n  RouterState,\n  RouterSubscriber,\n  BlockerFunction,\n} from \"@remix-run/router\";\nimport {\n  createRouter,\n  createBrowserHistory,\n  createHashHistory,\n  joinPaths,\n  stripBasename,\n  UNSAFE_ErrorResponseImpl as ErrorResponseImpl,\n  UNSAFE_invariant as invariant,\n  UNSAFE_warning as warning,\n  matchPath,\n  IDLE_FETCHER,\n} from \"@remix-run/router\";\n\nimport type {\n  SubmitOptions,\n  ParamKeyValuePair,\n  URLSearchParamsInit,\n  SubmitTarget,\n  FetcherSubmitOptions,\n} from \"./dom\";\nimport {\n  createSearchParams,\n  defaultMethod,\n  getFormSubmissionInfo,\n  getSearchParamsForLocation,\n  shouldProcessLinkClick,\n} from \"./dom\";\n\n////////////////////////////////////////////////////////////////////////////////\n//#region Re-exports\n////////////////////////////////////////////////////////////////////////////////\n\nexport type {\n  unstable_DataStrategyFunction,\n  unstable_DataStrategyFunctionArgs,\n  unstable_DataStrategyMatch,\n  FormEncType,\n  FormMethod,\n  GetScrollRestorationKeyFunction,\n  ParamKeyValuePair,\n  SubmitOptions,\n  URLSearchParamsInit,\n  V7_FormMethod,\n};\nexport { createSearchParams, ErrorResponseImpl as UNSAFE_ErrorResponseImpl };\n\n// Note: Keep in sync with react-router exports!\nexport type {\n  ActionFunction,\n  ActionFunctionArgs,\n  AwaitProps,\n  Blocker,\n  BlockerFunction,\n  DataRouteMatch,\n  DataRouteObject,\n  ErrorResponse,\n  Fetcher,\n  FutureConfig,\n  Hash,\n  IndexRouteObject,\n  IndexRouteProps,\n  JsonFunction,\n  LazyRouteFunction,\n  LayoutRouteProps,\n  LoaderFunction,\n  LoaderFunctionArgs,\n  Location,\n  MemoryRouterProps,\n  NavigateFunction,\n  NavigateOptions,\n  NavigateProps,\n  Navigation,\n  Navigator,\n  NonIndexRouteObject,\n  OutletProps,\n  Params,\n  ParamParseKey,\n  Path,\n  PathMatch,\n  Pathname,\n  PathParam,\n  PathPattern,\n  PathRouteProps,\n  RedirectFunction,\n  RelativeRoutingType,\n  RouteMatch,\n  RouteObject,\n  RouteProps,\n  RouterProps,\n  RouterProviderProps,\n  RoutesProps,\n  Search,\n  ShouldRevalidateFunction,\n  ShouldRevalidateFunctionArgs,\n  To,\n  UIMatch,\n  unstable_HandlerResult,\n  unstable_PatchRoutesOnMissFunction,\n} from \"react-router\";\nexport {\n  AbortedDeferredError,\n  Await,\n  MemoryRouter,\n  Navigate,\n  NavigationType,\n  Outlet,\n  Route,\n  Router,\n  Routes,\n  createMemoryRouter,\n  createPath,\n  createRoutesFromChildren,\n  createRoutesFromElements,\n  defer,\n  isRouteErrorResponse,\n  generatePath,\n  json,\n  matchPath,\n  matchRoutes,\n  parsePath,\n  redirect,\n  redirectDocument,\n  replace,\n  renderMatches,\n  resolvePath,\n  useActionData,\n  useAsyncError,\n  useAsyncValue,\n  useBlocker,\n  useHref,\n  useInRouterContext,\n  useLoaderData,\n  useLocation,\n  useMatch,\n  useMatches,\n  useNavigate,\n  useNavigation,\n  useNavigationType,\n  useOutlet,\n  useOutletContext,\n  useParams,\n  useResolvedPath,\n  useRevalidator,\n  useRouteError,\n  useRouteLoaderData,\n  useRoutes,\n} from \"react-router\";\n\n///////////////////////////////////////////////////////////////////////////////\n// DANGER! PLEASE READ ME!\n// We provide these exports as an escape hatch in the event that you need any\n// routing data that we don't provide an explicit API for. With that said, we\n// want to cover your use case if we can, so if you feel the need to use these\n// we want to hear from you. Let us know what you're building and we'll do our\n// best to make sure we can support you!\n//\n// We consider these exports an implementation detail and do not guarantee\n// against any breaking changes, regardless of the semver release. Use with\n// extreme caution and only if you understand the consequences. Godspeed.\n///////////////////////////////////////////////////////////////////////////////\n\n/** @internal */\nexport {\n  UNSAFE_DataRouterContext,\n  UNSAFE_DataRouterStateContext,\n  UNSAFE_NavigationContext,\n  UNSAFE_LocationContext,\n  UNSAFE_RouteContext,\n  UNSAFE_useRouteId,\n} from \"react-router\";\n//#endregion\n\ndeclare global {\n  var __staticRouterHydrationData: HydrationState | undefined;\n  var __reactRouterVersion: string;\n  interface Document {\n    startViewTransition(cb: () => Promise<void> | void): ViewTransition;\n  }\n}\n\n// HEY YOU! DON'T TOUCH THIS VARIABLE!\n//\n// It is replaced with the proper version at build time via a babel plugin in\n// the rollup config.\n//\n// Export a global property onto the window for React Router detection by the\n// Core Web Vitals Technology Report.  This way they can configure the `wappalyzer`\n// to detect and properly classify live websites as being built with React Router:\n// https://github.com/HTTPArchive/wappalyzer/blob/main/src/technologies/r.json\nconst REACT_ROUTER_VERSION = \"0\";\ntry {\n  window.__reactRouterVersion = REACT_ROUTER_VERSION;\n} catch (e) {\n  // no-op\n}\n\n////////////////////////////////////////////////////////////////////////////////\n//#region Routers\n////////////////////////////////////////////////////////////////////////////////\n\ninterface DOMRouterOpts {\n  basename?: string;\n  future?: Partial<Omit<RouterFutureConfig, \"v7_prependBasename\">>;\n  hydrationData?: HydrationState;\n  unstable_dataStrategy?: unstable_DataStrategyFunction;\n  unstable_patchRoutesOnMiss?: unstable_PatchRoutesOnMissFunction;\n  window?: Window;\n}\n\nexport function createBrowserRouter(\n  routes: RouteObject[],\n  opts?: DOMRouterOpts\n): RemixRouter {\n  return createRouter({\n    basename: opts?.basename,\n    future: {\n      ...opts?.future,\n      v7_prependBasename: true,\n    },\n    history: createBrowserHistory({ window: opts?.window }),\n    hydrationData: opts?.hydrationData || parseHydrationData(),\n    routes,\n    mapRouteProperties,\n    unstable_dataStrategy: opts?.unstable_dataStrategy,\n    unstable_patchRoutesOnMiss: opts?.unstable_patchRoutesOnMiss,\n    window: opts?.window,\n  }).initialize();\n}\n\nexport function createHashRouter(\n  routes: RouteObject[],\n  opts?: DOMRouterOpts\n): RemixRouter {\n  return createRouter({\n    basename: opts?.basename,\n    future: {\n      ...opts?.future,\n      v7_prependBasename: true,\n    },\n    history: createHashHistory({ window: opts?.window }),\n    hydrationData: opts?.hydrationData || parseHydrationData(),\n    routes,\n    mapRouteProperties,\n    unstable_dataStrategy: opts?.unstable_dataStrategy,\n    unstable_patchRoutesOnMiss: opts?.unstable_patchRoutesOnMiss,\n    window: opts?.window,\n  }).initialize();\n}\n\nfunction parseHydrationData(): HydrationState | undefined {\n  let state = window?.__staticRouterHydrationData;\n  if (state && state.errors) {\n    state = {\n      ...state,\n      errors: deserializeErrors(state.errors),\n    };\n  }\n  return state;\n}\n\nfunction deserializeErrors(\n  errors: RemixRouter[\"state\"][\"errors\"]\n): RemixRouter[\"state\"][\"errors\"] {\n  if (!errors) return null;\n  let entries = Object.entries(errors);\n  let serialized: RemixRouter[\"state\"][\"errors\"] = {};\n  for (let [key, val] of entries) {\n    // Hey you!  If you change this, please change the corresponding logic in\n    // serializeErrors in react-router-dom/server.tsx :)\n    if (val && val.__type === \"RouteErrorResponse\") {\n      serialized[key] = new ErrorResponseImpl(\n        val.status,\n        val.statusText,\n        val.data,\n        val.internal === true\n      );\n    } else if (val && val.__type === \"Error\") {\n      // Attempt to reconstruct the right type of Error (i.e., ReferenceError)\n      if (val.__subType) {\n        let ErrorConstructor = window[val.__subType];\n        if (typeof ErrorConstructor === \"function\") {\n          try {\n            // @ts-expect-error\n            let error = new ErrorConstructor(val.message);\n            // Wipe away the client-side stack trace.  Nothing to fill it in with\n            // because we don't serialize SSR stack traces for security reasons\n            error.stack = \"\";\n            serialized[key] = error;\n          } catch (e) {\n            // no-op - fall through and create a normal Error\n          }\n        }\n      }\n\n      if (serialized[key] == null) {\n        let error = new Error(val.message);\n        // Wipe away the client-side stack trace.  Nothing to fill it in with\n        // because we don't serialize SSR stack traces for security reasons\n        error.stack = \"\";\n        serialized[key] = error;\n      }\n    } else {\n      serialized[key] = val;\n    }\n  }\n  return serialized;\n}\n\n//#endregion\n\n////////////////////////////////////////////////////////////////////////////////\n//#region Contexts\n////////////////////////////////////////////////////////////////////////////////\n\ntype ViewTransitionContextObject =\n  | {\n      isTransitioning: false;\n    }\n  | {\n      isTransitioning: true;\n      flushSync: boolean;\n      currentLocation: Location;\n      nextLocation: Location;\n    };\n\nconst ViewTransitionContext = React.createContext<ViewTransitionContextObject>({\n  isTransitioning: false,\n});\nif (__DEV__) {\n  ViewTransitionContext.displayName = \"ViewTransition\";\n}\n\nexport { ViewTransitionContext as UNSAFE_ViewTransitionContext };\n\n// TODO: (v7) Change the useFetcher data from `any` to `unknown`\ntype FetchersContextObject = Map<string, any>;\n\nconst FetchersContext = React.createContext<FetchersContextObject>(new Map());\nif (__DEV__) {\n  FetchersContext.displayName = \"Fetchers\";\n}\n\nexport { FetchersContext as UNSAFE_FetchersContext };\n\n//#endregion\n\n////////////////////////////////////////////////////////////////////////////////\n//#region Components\n////////////////////////////////////////////////////////////////////////////////\n\n/**\n  Webpack + React 17 fails to compile on any of the following because webpack\n  complains that `startTransition` doesn't exist in `React`:\n  * import { startTransition } from \"react\"\n  * import * as React from from \"react\";\n    \"startTransition\" in React ? React.startTransition(() => setState()) : setState()\n  * import * as React from from \"react\";\n    \"startTransition\" in React ? React[\"startTransition\"](() => setState()) : setState()\n\n  Moving it to a constant such as the following solves the Webpack/React 17 issue:\n  * import * as React from from \"react\";\n    const START_TRANSITION = \"startTransition\";\n    START_TRANSITION in React ? React[START_TRANSITION](() => setState()) : setState()\n\n  However, that introduces webpack/terser minification issues in production builds\n  in React 18 where minification/obfuscation ends up removing the call of\n  React.startTransition entirely from the first half of the ternary.  Grabbing\n  this exported reference once up front resolves that issue.\n\n  See https://github.com/remix-run/react-router/issues/10579\n*/\nconst START_TRANSITION = \"startTransition\";\nconst startTransitionImpl = React[START_TRANSITION];\nconst FLUSH_SYNC = \"flushSync\";\nconst flushSyncImpl = ReactDOM[FLUSH_SYNC];\nconst USE_ID = \"useId\";\nconst useIdImpl = React[USE_ID];\n\nfunction startTransitionSafe(cb: () => void) {\n  if (startTransitionImpl) {\n    startTransitionImpl(cb);\n  } else {\n    cb();\n  }\n}\n\nfunction flushSyncSafe(cb: () => void) {\n  if (flushSyncImpl) {\n    flushSyncImpl(cb);\n  } else {\n    cb();\n  }\n}\n\ninterface ViewTransition {\n  finished: Promise<void>;\n  ready: Promise<void>;\n  updateCallbackDone: Promise<void>;\n  skipTransition(): void;\n}\n\nclass Deferred<T> {\n  status: \"pending\" | \"resolved\" | \"rejected\" = \"pending\";\n  promise: Promise<T>;\n  // @ts-expect-error - no initializer\n  resolve: (value: T) => void;\n  // @ts-expect-error - no initializer\n  reject: (reason?: unknown) => void;\n  constructor() {\n    this.promise = new Promise((resolve, reject) => {\n      this.resolve = (value) => {\n        if (this.status === \"pending\") {\n          this.status = \"resolved\";\n          resolve(value);\n        }\n      };\n      this.reject = (reason) => {\n        if (this.status === \"pending\") {\n          this.status = \"rejected\";\n          reject(reason);\n        }\n      };\n    });\n  }\n}\n\n/**\n * Given a Remix Router instance, render the appropriate UI\n */\nexport function RouterProvider({\n  fallbackElement,\n  router,\n  future,\n}: RouterProviderProps): React.ReactElement {\n  let [state, setStateImpl] = React.useState(router.state);\n  let [pendingState, setPendingState] = React.useState<RouterState>();\n  let [vtContext, setVtContext] = React.useState<ViewTransitionContextObject>({\n    isTransitioning: false,\n  });\n  let [renderDfd, setRenderDfd] = React.useState<Deferred<void>>();\n  let [transition, setTransition] = React.useState<ViewTransition>();\n  let [interruption, setInterruption] = React.useState<{\n    state: RouterState;\n    currentLocation: Location;\n    nextLocation: Location;\n  }>();\n  let fetcherData = React.useRef<Map<string, any>>(new Map());\n  let { v7_startTransition } = future || {};\n\n  let optInStartTransition = React.useCallback(\n    (cb: () => void) => {\n      if (v7_startTransition) {\n        startTransitionSafe(cb);\n      } else {\n        cb();\n      }\n    },\n    [v7_startTransition]\n  );\n\n  let setState = React.useCallback<RouterSubscriber>(\n    (\n      newState: RouterState,\n      {\n        deletedFetchers,\n        unstable_flushSync: flushSync,\n        unstable_viewTransitionOpts: viewTransitionOpts,\n      }\n    ) => {\n      deletedFetchers.forEach((key) => fetcherData.current.delete(key));\n      newState.fetchers.forEach((fetcher, key) => {\n        if (fetcher.data !== undefined) {\n          fetcherData.current.set(key, fetcher.data);\n        }\n      });\n\n      let isViewTransitionUnavailable =\n        router.window == null ||\n        router.window.document == null ||\n        typeof router.window.document.startViewTransition !== \"function\";\n\n      // If this isn't a view transition or it's not available in this browser,\n      // just update and be done with it\n      if (!viewTransitionOpts || isViewTransitionUnavailable) {\n        if (flushSync) {\n          flushSyncSafe(() => setStateImpl(newState));\n        } else {\n          optInStartTransition(() => setStateImpl(newState));\n        }\n        return;\n      }\n\n      // flushSync + startViewTransition\n      if (flushSync) {\n        // Flush through the context to mark DOM elements as transition=ing\n        flushSyncSafe(() => {\n          // Cancel any pending transitions\n          if (transition) {\n            renderDfd && renderDfd.resolve();\n            transition.skipTransition();\n          }\n          setVtContext({\n            isTransitioning: true,\n            flushSync: true,\n            currentLocation: viewTransitionOpts.currentLocation,\n            nextLocation: viewTransitionOpts.nextLocation,\n          });\n        });\n\n        // Update the DOM\n        let t = router.window!.document.startViewTransition(() => {\n          flushSyncSafe(() => setStateImpl(newState));\n        });\n\n        // Clean up after the animation completes\n        t.finished.finally(() => {\n          flushSyncSafe(() => {\n            setRenderDfd(undefined);\n            setTransition(undefined);\n            setPendingState(undefined);\n            setVtContext({ isTransitioning: false });\n          });\n        });\n\n        flushSyncSafe(() => setTransition(t));\n        return;\n      }\n\n      // startTransition + startViewTransition\n      if (transition) {\n        // Interrupting an in-progress transition, cancel and let everything flush\n        // out, and then kick off a new transition from the interruption state\n        renderDfd && renderDfd.resolve();\n        transition.skipTransition();\n        setInterruption({\n          state: newState,\n          currentLocation: viewTransitionOpts.currentLocation,\n          nextLocation: viewTransitionOpts.nextLocation,\n        });\n      } else {\n        // Completed navigation update with opted-in view transitions, let 'er rip\n        setPendingState(newState);\n        setVtContext({\n          isTransitioning: true,\n          flushSync: false,\n          currentLocation: viewTransitionOpts.currentLocation,\n          nextLocation: viewTransitionOpts.nextLocation,\n        });\n      }\n    },\n    [router.window, transition, renderDfd, fetcherData, optInStartTransition]\n  );\n\n  // Need to use a layout effect here so we are subscribed early enough to\n  // pick up on any render-driven redirects/navigations (useEffect/<Navigate>)\n  React.useLayoutEffect(() => router.subscribe(setState), [router, setState]);\n\n  // When we start a view transition, create a Deferred we can use for the\n  // eventual \"completed\" render\n  React.useEffect(() => {\n    if (vtContext.isTransitioning && !vtContext.flushSync) {\n      setRenderDfd(new Deferred<void>());\n    }\n  }, [vtContext]);\n\n  // Once the deferred is created, kick off startViewTransition() to update the\n  // DOM and then wait on the Deferred to resolve (indicating the DOM update has\n  // happened)\n  React.useEffect(() => {\n    if (renderDfd && pendingState && router.window) {\n      let newState = pendingState;\n      let renderPromise = renderDfd.promise;\n      let transition = router.window.document.startViewTransition(async () => {\n        optInStartTransition(() => setStateImpl(newState));\n        await renderPromise;\n      });\n      transition.finished.finally(() => {\n        setRenderDfd(undefined);\n        setTransition(undefined);\n        setPendingState(undefined);\n        setVtContext({ isTransitioning: false });\n      });\n      setTransition(transition);\n    }\n  }, [optInStartTransition, pendingState, renderDfd, router.window]);\n\n  // When the new location finally renders and is committed to the DOM, this\n  // effect will run to resolve the transition\n  React.useEffect(() => {\n    if (\n      renderDfd &&\n      pendingState &&\n      state.location.key === pendingState.location.key\n    ) {\n      renderDfd.resolve();\n    }\n  }, [renderDfd, transition, state.location, pendingState]);\n\n  // If we get interrupted with a new navigation during a transition, we skip\n  // the active transition, let it cleanup, then kick it off again here\n  React.useEffect(() => {\n    if (!vtContext.isTransitioning && interruption) {\n      setPendingState(interruption.state);\n      setVtContext({\n        isTransitioning: true,\n        flushSync: false,\n        currentLocation: interruption.currentLocation,\n        nextLocation: interruption.nextLocation,\n      });\n      setInterruption(undefined);\n    }\n  }, [vtContext.isTransitioning, interruption]);\n\n  React.useEffect(() => {\n    warning(\n      fallbackElement == null || !router.future.v7_partialHydration,\n      \"`<RouterProvider fallbackElement>` is deprecated when using \" +\n        \"`v7_partialHydration`, use a `HydrateFallback` component instead\"\n    );\n    // Only log this once on initial mount\n    // eslint-disable-next-line react-hooks/exhaustive-deps\n  }, []);\n\n  let navigator = React.useMemo((): Navigator => {\n    return {\n      createHref: router.createHref,\n      encodeLocation: router.encodeLocation,\n      go: (n) => router.navigate(n),\n      push: (to, state, opts) =>\n        router.navigate(to, {\n          state,\n          preventScrollReset: opts?.preventScrollReset,\n        }),\n      replace: (to, state, opts) =>\n        router.navigate(to, {\n          replace: true,\n          state,\n          preventScrollReset: opts?.preventScrollReset,\n        }),\n    };\n  }, [router]);\n\n  let basename = router.basename || \"/\";\n\n  let dataRouterContext = React.useMemo(\n    () => ({\n      router,\n      navigator,\n      static: false,\n      basename,\n    }),\n    [router, navigator, basename]\n  );\n\n  let routerFuture = React.useMemo<RouterProps[\"future\"]>(\n    () => ({\n      v7_relativeSplatPath: router.future.v7_relativeSplatPath,\n    }),\n    [router.future.v7_relativeSplatPath]\n  );\n\n  // The fragment and {null} here are important!  We need them to keep React 18's\n  // useId happy when we are server-rendering since we may have a <script> here\n  // containing the hydrated server-side staticContext (from StaticRouterProvider).\n  // useId relies on the component tree structure to generate deterministic id's\n  // so we need to ensure it remains the same on the client even though\n  // we don't need the <script> tag\n  return (\n    <>\n      <DataRouterContext.Provider value={dataRouterContext}>\n        <DataRouterStateContext.Provider value={state}>\n          <FetchersContext.Provider value={fetcherData.current}>\n            <ViewTransitionContext.Provider value={vtContext}>\n              <Router\n                basename={basename}\n                location={state.location}\n                navigationType={state.historyAction}\n                navigator={navigator}\n                future={routerFuture}\n              >\n                {state.initialized || router.future.v7_partialHydration ? (\n                  <MemoizedDataRoutes\n                    routes={router.routes}\n                    future={router.future}\n                    state={state}\n                  />\n                ) : (\n                  fallbackElement\n                )}\n              </Router>\n            </ViewTransitionContext.Provider>\n          </FetchersContext.Provider>\n        </DataRouterStateContext.Provider>\n      </DataRouterContext.Provider>\n      {null}\n    </>\n  );\n}\n\n// Memoize to avoid re-renders when updating `ViewTransitionContext`\nconst MemoizedDataRoutes = React.memo(DataRoutes);\n\nfunction DataRoutes({\n  routes,\n  future,\n  state,\n}: {\n  routes: DataRouteObject[];\n  future: RemixRouter[\"future\"];\n  state: RouterState;\n}): React.ReactElement | null {\n  return useRoutesImpl(routes, undefined, state, future);\n}\n\nexport interface BrowserRouterProps {\n  basename?: string;\n  children?: React.ReactNode;\n  future?: Partial<FutureConfig>;\n  window?: Window;\n}\n\n/**\n * A `<Router>` for use in web browsers. Provides the cleanest URLs.\n */\nexport function BrowserRouter({\n  basename,\n  children,\n  future,\n  window,\n}: BrowserRouterProps) {\n  let historyRef = React.useRef<BrowserHistory>();\n  if (historyRef.current == null) {\n    historyRef.current = createBrowserHistory({ window, v5Compat: true });\n  }\n\n  let history = historyRef.current;\n  let [state, setStateImpl] = React.useState({\n    action: history.action,\n    location: history.location,\n  });\n  let { v7_startTransition } = future || {};\n  let setState = React.useCallback(\n    (newState: { action: NavigationType; location: Location }) => {\n      v7_startTransition && startTransitionImpl\n        ? startTransitionImpl(() => setStateImpl(newState))\n        : setStateImpl(newState);\n    },\n    [setStateImpl, v7_startTransition]\n  );\n\n  React.useLayoutEffect(() => history.listen(setState), [history, setState]);\n\n  return (\n    <Router\n      basename={basename}\n      children={children}\n      location={state.location}\n      navigationType={state.action}\n      navigator={history}\n      future={future}\n    />\n  );\n}\n\nexport interface HashRouterProps {\n  basename?: string;\n  children?: React.ReactNode;\n  future?: Partial<FutureConfig>;\n  window?: Window;\n}\n\n/**\n * A `<Router>` for use in web browsers. Stores the location in the hash\n * portion of the URL so it is not sent to the server.\n */\nexport function HashRouter({\n  basename,\n  children,\n  future,\n  window,\n}: HashRouterProps) {\n  let historyRef = React.useRef<HashHistory>();\n  if (historyRef.current == null) {\n    historyRef.current = createHashHistory({ window, v5Compat: true });\n  }\n\n  let history = historyRef.current;\n  let [state, setStateImpl] = React.useState({\n    action: history.action,\n    location: history.location,\n  });\n  let { v7_startTransition } = future || {};\n  let setState = React.useCallback(\n    (newState: { action: NavigationType; location: Location }) => {\n      v7_startTransition && startTransitionImpl\n        ? startTransitionImpl(() => setStateImpl(newState))\n        : setStateImpl(newState);\n    },\n    [setStateImpl, v7_startTransition]\n  );\n\n  React.useLayoutEffect(() => history.listen(setState), [history, setState]);\n\n  return (\n    <Router\n      basename={basename}\n      children={children}\n      location={state.location}\n      navigationType={state.action}\n      navigator={history}\n      future={future}\n    />\n  );\n}\n\nexport interface HistoryRouterProps {\n  basename?: string;\n  children?: React.ReactNode;\n  future?: FutureConfig;\n  history: History;\n}\n\n/**\n * A `<Router>` that accepts a pre-instantiated history object. It's important\n * to note that using your own history object is highly discouraged and may add\n * two versions of the history library to your bundles unless you use the same\n * version of the history library that React Router uses internally.\n */\nfunction HistoryRouter({\n  basename,\n  children,\n  future,\n  history,\n}: HistoryRouterProps) {\n  let [state, setStateImpl] = React.useState({\n    action: history.action,\n    location: history.location,\n  });\n  let { v7_startTransition } = future || {};\n  let setState = React.useCallback(\n    (newState: { action: NavigationType; location: Location }) => {\n      v7_startTransition && startTransitionImpl\n        ? startTransitionImpl(() => setStateImpl(newState))\n        : setStateImpl(newState);\n    },\n    [setStateImpl, v7_startTransition]\n  );\n\n  React.useLayoutEffect(() => history.listen(setState), [history, setState]);\n\n  return (\n    <Router\n      basename={basename}\n      children={children}\n      location={state.location}\n      navigationType={state.action}\n      navigator={history}\n      future={future}\n    />\n  );\n}\n\nif (__DEV__) {\n  HistoryRouter.displayName = \"unstable_HistoryRouter\";\n}\n\nexport { HistoryRouter as unstable_HistoryRouter };\n\nexport interface LinkProps\n  extends Omit<React.AnchorHTMLAttributes<HTMLAnchorElement>, \"href\"> {\n  reloadDocument?: boolean;\n  replace?: boolean;\n  state?: any;\n  preventScrollReset?: boolean;\n  relative?: RelativeRoutingType;\n  to: To;\n  unstable_viewTransition?: boolean;\n}\n\nconst isBrowser =\n  typeof window !== \"undefined\" &&\n  typeof window.document !== \"undefined\" &&\n  typeof window.document.createElement !== \"undefined\";\n\nconst ABSOLUTE_URL_REGEX = /^(?:[a-z][a-z0-9+.-]*:|\\/\\/)/i;\n\n/**\n * The public API for rendering a history-aware `<a>`.\n */\nexport const Link = React.forwardRef<HTMLAnchorElement, LinkProps>(\n  function LinkWithRef(\n    {\n      onClick,\n      relative,\n      reloadDocument,\n      replace,\n      state,\n      target,\n      to,\n      preventScrollReset,\n      unstable_viewTransition,\n      ...rest\n    },\n    ref\n  ) {\n    let { basename } = React.useContext(NavigationContext);\n\n    // Rendered into <a href> for absolute URLs\n    let absoluteHref;\n    let isExternal = false;\n\n    if (typeof to === \"string\" && ABSOLUTE_URL_REGEX.test(to)) {\n      // Render the absolute href server- and client-side\n      absoluteHref = to;\n\n      // Only check for external origins client-side\n      if (isBrowser) {\n        try {\n          let currentUrl = new URL(window.location.href);\n          let targetUrl = to.startsWith(\"//\")\n            ? new URL(currentUrl.protocol + to)\n            : new URL(to);\n          let path = stripBasename(targetUrl.pathname, basename);\n\n          if (targetUrl.origin === currentUrl.origin && path != null) {\n            // Strip the protocol/origin/basename for same-origin absolute URLs\n            to = path + targetUrl.search + targetUrl.hash;\n          } else {\n            isExternal = true;\n          }\n        } catch (e) {\n          // We can't do external URL detection without a valid URL\n          warning(\n            false,\n            `<Link to=\"${to}\"> contains an invalid URL which will probably break ` +\n              `when clicked - please update to a valid URL path.`\n          );\n        }\n      }\n    }\n\n    // Rendered into <a href> for relative URLs\n    let href = useHref(to, { relative });\n\n    let internalOnClick = useLinkClickHandler(to, {\n      replace,\n      state,\n      target,\n      preventScrollReset,\n      relative,\n      unstable_viewTransition,\n    });\n    function handleClick(\n      event: React.MouseEvent<HTMLAnchorElement, MouseEvent>\n    ) {\n      if (onClick) onClick(event);\n      if (!event.defaultPrevented) {\n        internalOnClick(event);\n      }\n    }\n\n    return (\n      // eslint-disable-next-line jsx-a11y/anchor-has-content\n      <a\n        {...rest}\n        href={absoluteHref || href}\n        onClick={isExternal || reloadDocument ? onClick : handleClick}\n        ref={ref}\n        target={target}\n      />\n    );\n  }\n);\n\nif (__DEV__) {\n  Link.displayName = \"Link\";\n}\n\nexport type NavLinkRenderProps = {\n  isActive: boolean;\n  isPending: boolean;\n  isTransitioning: boolean;\n};\n\nexport interface NavLinkProps\n  extends Omit<LinkProps, \"className\" | \"style\" | \"children\"> {\n  children?: React.ReactNode | ((props: NavLinkRenderProps) => React.ReactNode);\n  caseSensitive?: boolean;\n  className?: string | ((props: NavLinkRenderProps) => string | undefined);\n  end?: boolean;\n  style?:\n    | React.CSSProperties\n    | ((props: NavLinkRenderProps) => React.CSSProperties | undefined);\n}\n\n/**\n * A `<Link>` wrapper that knows if it's \"active\" or not.\n */\nexport const NavLink = React.forwardRef<HTMLAnchorElement, NavLinkProps>(\n  function NavLinkWithRef(\n    {\n      \"aria-current\": ariaCurrentProp = \"page\",\n      caseSensitive = false,\n      className: classNameProp = \"\",\n      end = false,\n      style: styleProp,\n      to,\n      unstable_viewTransition,\n      children,\n      ...rest\n    },\n    ref\n  ) {\n    let path = useResolvedPath(to, { relative: rest.relative });\n    let location = useLocation();\n    let routerState = React.useContext(DataRouterStateContext);\n    let { navigator, basename } = React.useContext(NavigationContext);\n    let isTransitioning =\n      routerState != null &&\n      // Conditional usage is OK here because the usage of a data router is static\n      // eslint-disable-next-line react-hooks/rules-of-hooks\n      useViewTransitionState(path) &&\n      unstable_viewTransition === true;\n\n    let toPathname = navigator.encodeLocation\n      ? navigator.encodeLocation(path).pathname\n      : path.pathname;\n    let locationPathname = location.pathname;\n    let nextLocationPathname =\n      routerState && routerState.navigation && routerState.navigation.location\n        ? routerState.navigation.location.pathname\n        : null;\n\n    if (!caseSensitive) {\n      locationPathname = locationPathname.toLowerCase();\n      nextLocationPathname = nextLocationPathname\n        ? nextLocationPathname.toLowerCase()\n        : null;\n      toPathname = toPathname.toLowerCase();\n    }\n\n    if (nextLocationPathname && basename) {\n      nextLocationPathname =\n        stripBasename(nextLocationPathname, basename) || nextLocationPathname;\n    }\n\n    // If the `to` has a trailing slash, look at that exact spot.  Otherwise,\n    // we're looking for a slash _after_ what's in `to`.  For example:\n    //\n    // <NavLink to=\"/users\"> and <NavLink to=\"/users/\">\n    // both want to look for a / at index 6 to match URL `/users/matt`\n    const endSlashPosition =\n      toPathname !== \"/\" && toPathname.endsWith(\"/\")\n        ? toPathname.length - 1\n        : toPathname.length;\n    let isActive =\n      locationPathname === toPathname ||\n      (!end &&\n        locationPathname.startsWith(toPathname) &&\n        locationPathname.charAt(endSlashPosition) === \"/\");\n\n    let isPending =\n      nextLocationPathname != null &&\n      (nextLocationPathname === toPathname ||\n        (!end &&\n          nextLocationPathname.startsWith(toPathname) &&\n          nextLocationPathname.charAt(toPathname.length) === \"/\"));\n\n    let renderProps = {\n      isActive,\n      isPending,\n      isTransitioning,\n    };\n\n    let ariaCurrent = isActive ? ariaCurrentProp : undefined;\n\n    let className: string | undefined;\n    if (typeof classNameProp === \"function\") {\n      className = classNameProp(renderProps);\n    } else {\n      // If the className prop is not a function, we use a default `active`\n      // class for <NavLink />s that are active. In v5 `active` was the default\n      // value for `activeClassName`, but we are removing that API and can still\n      // use the old default behavior for a cleaner upgrade path and keep the\n      // simple styling rules working as they currently do.\n      className = [\n        classNameProp,\n        isActive ? \"active\" : null,\n        isPending ? \"pending\" : null,\n        isTransitioning ? \"transitioning\" : null,\n      ]\n        .filter(Boolean)\n        .join(\" \");\n    }\n\n    let style =\n      typeof styleProp === \"function\" ? styleProp(renderProps) : styleProp;\n\n    return (\n      <Link\n        {...rest}\n        aria-current={ariaCurrent}\n        className={className}\n        ref={ref}\n        style={style}\n        to={to}\n        unstable_viewTransition={unstable_viewTransition}\n      >\n        {typeof children === \"function\" ? children(renderProps) : children}\n      </Link>\n    );\n  }\n);\n\nif (__DEV__) {\n  NavLink.displayName = \"NavLink\";\n}\n\n/**\n * Form props shared by navigations and fetchers\n */\ninterface SharedFormProps extends React.FormHTMLAttributes<HTMLFormElement> {\n  /**\n   * The HTTP verb to use when the form is submit. Supports \"get\", \"post\",\n   * \"put\", \"delete\", \"patch\".\n   */\n  method?: HTMLFormMethod;\n\n  /**\n   * `<form encType>` - enhancing beyond the normal string type and limiting\n   * to the built-in browser supported values\n   */\n  encType?:\n    | \"application/x-www-form-urlencoded\"\n    | \"multipart/form-data\"\n    | \"text/plain\";\n\n  /**\n   * Normal `<form action>` but supports React Router's relative paths.\n   */\n  action?: string;\n\n  /**\n   * Determines whether the form action is relative to the route hierarchy or\n   * the pathname.  Use this if you want to opt out of navigating the route\n   * hierarchy and want to instead route based on /-delimited URL segments\n   */\n  relative?: RelativeRoutingType;\n\n  /**\n   * Prevent the scroll position from resetting to the top of the viewport on\n   * completion of the navigation when using the <ScrollRestoration> component\n   */\n  preventScrollReset?: boolean;\n\n  /**\n   * A function to call when the form is submitted. If you call\n   * `event.preventDefault()` then this form will not do anything.\n   */\n  onSubmit?: React.FormEventHandler<HTMLFormElement>;\n}\n\n/**\n * Form props available to fetchers\n */\nexport interface FetcherFormProps extends SharedFormProps {}\n\n/**\n * Form props available to navigations\n */\nexport interface FormProps extends SharedFormProps {\n  /**\n   * Indicate a specific fetcherKey to use when using navigate=false\n   */\n  fetcherKey?: string;\n\n  /**\n   * navigate=false will use a fetcher instead of a navigation\n   */\n  navigate?: boolean;\n\n  /**\n   * Forces a full document navigation instead of a fetch.\n   */\n  reloadDocument?: boolean;\n\n  /**\n   * Replaces the current entry in the browser history stack when the form\n   * navigates. Use this if you don't want the user to be able to click \"back\"\n   * to the page with the form on it.\n   */\n  replace?: boolean;\n\n  /**\n   * State object to add to the history stack entry for this navigation\n   */\n  state?: any;\n\n  /**\n   * Enable view transitions on this Form navigation\n   */\n  unstable_viewTransition?: boolean;\n}\n\ntype HTMLSubmitEvent = React.BaseSyntheticEvent<\n  SubmitEvent,\n  Event,\n  HTMLFormElement\n>;\n\ntype HTMLFormSubmitter = HTMLButtonElement | HTMLInputElement;\n\n/**\n * A `@remix-run/router`-aware `<form>`. It behaves like a normal form except\n * that the interaction with the server is with `fetch` instead of new document\n * requests, allowing components to add nicer UX to the page as the form is\n * submitted and returns with data.\n */\nexport const Form = React.forwardRef<HTMLFormElement, FormProps>(\n  (\n    {\n      fetcherKey,\n      navigate,\n      reloadDocument,\n      replace,\n      state,\n      method = defaultMethod,\n      action,\n      onSubmit,\n      relative,\n      preventScrollReset,\n      unstable_viewTransition,\n      ...props\n    },\n    forwardedRef\n  ) => {\n    let submit = useSubmit();\n    let formAction = useFormAction(action, { relative });\n    let formMethod: HTMLFormMethod =\n      method.toLowerCase() === \"get\" ? \"get\" : \"post\";\n\n    let submitHandler: React.FormEventHandler<HTMLFormElement> = (event) => {\n      onSubmit && onSubmit(event);\n      if (event.defaultPrevented) return;\n      event.preventDefault();\n\n      let submitter = (event as unknown as HTMLSubmitEvent).nativeEvent\n        .submitter as HTMLFormSubmitter | null;\n\n      let submitMethod =\n        (submitter?.getAttribute(\"formmethod\") as HTMLFormMethod | undefined) ||\n        method;\n\n      submit(submitter || event.currentTarget, {\n        fetcherKey,\n        method: submitMethod,\n        navigate,\n        replace,\n        state,\n        relative,\n        preventScrollReset,\n        unstable_viewTransition,\n      });\n    };\n\n    return (\n      <form\n        ref={forwardedRef}\n        method={formMethod}\n        action={formAction}\n        onSubmit={reloadDocument ? onSubmit : submitHandler}\n        {...props}\n      />\n    );\n  }\n);\n\nif (__DEV__) {\n  Form.displayName = \"Form\";\n}\n\nexport interface ScrollRestorationProps {\n  getKey?: GetScrollRestorationKeyFunction;\n  storageKey?: string;\n}\n\n/**\n * This component will emulate the browser's scroll restoration on location\n * changes.\n */\nexport function ScrollRestoration({\n  getKey,\n  storageKey,\n}: ScrollRestorationProps) {\n  useScrollRestoration({ getKey, storageKey });\n  return null;\n}\n\nif (__DEV__) {\n  ScrollRestoration.displayName = \"ScrollRestoration\";\n}\n//#endregion\n\n////////////////////////////////////////////////////////////////////////////////\n//#region Hooks\n////////////////////////////////////////////////////////////////////////////////\n\nenum DataRouterHook {\n  UseScrollRestoration = \"useScrollRestoration\",\n  UseSubmit = \"useSubmit\",\n  UseSubmitFetcher = \"useSubmitFetcher\",\n  UseFetcher = \"useFetcher\",\n  useViewTransitionState = \"useViewTransitionState\",\n}\n\nenum DataRouterStateHook {\n  UseFetcher = \"useFetcher\",\n  UseFetchers = \"useFetchers\",\n  UseScrollRestoration = \"useScrollRestoration\",\n}\n\n// Internal hooks\n\nfunction getDataRouterConsoleError(\n  hookName: DataRouterHook | DataRouterStateHook\n) {\n  return `${hookName} must be used within a data router.  See https://reactrouter.com/routers/picking-a-router.`;\n}\n\nfunction useDataRouterContext(hookName: DataRouterHook) {\n  let ctx = React.useContext(DataRouterContext);\n  invariant(ctx, getDataRouterConsoleError(hookName));\n  return ctx;\n}\n\nfunction useDataRouterState(hookName: DataRouterStateHook) {\n  let state = React.useContext(DataRouterStateContext);\n  invariant(state, getDataRouterConsoleError(hookName));\n  return state;\n}\n\n// External hooks\n\n/**\n * Handles the click behavior for router `<Link>` components. This is useful if\n * you need to create custom `<Link>` components with the same click behavior we\n * use in our exported `<Link>`.\n */\nexport function useLinkClickHandler<E extends Element = HTMLAnchorElement>(\n  to: To,\n  {\n    target,\n    replace: replaceProp,\n    state,\n    preventScrollReset,\n    relative,\n    unstable_viewTransition,\n  }: {\n    target?: React.HTMLAttributeAnchorTarget;\n    replace?: boolean;\n    state?: any;\n    preventScrollReset?: boolean;\n    relative?: RelativeRoutingType;\n    unstable_viewTransition?: boolean;\n  } = {}\n): (event: React.MouseEvent<E, MouseEvent>) => void {\n  let navigate = useNavigate();\n  let location = useLocation();\n  let path = useResolvedPath(to, { relative });\n\n  return React.useCallback(\n    (event: React.MouseEvent<E, MouseEvent>) => {\n      if (shouldProcessLinkClick(event, target)) {\n        event.preventDefault();\n\n        // If the URL hasn't changed, a regular <a> will do a replace instead of\n        // a push, so do the same here unless the replace prop is explicitly set\n        let replace =\n          replaceProp !== undefined\n            ? replaceProp\n            : createPath(location) === createPath(path);\n\n        navigate(to, {\n          replace,\n          state,\n          preventScrollReset,\n          relative,\n          unstable_viewTransition,\n        });\n      }\n    },\n    [\n      location,\n      navigate,\n      path,\n      replaceProp,\n      state,\n      target,\n      to,\n      preventScrollReset,\n      relative,\n      unstable_viewTransition,\n    ]\n  );\n}\n\n/**\n * A convenient wrapper for reading and writing search parameters via the\n * URLSearchParams interface.\n */\nexport function useSearchParams(\n  defaultInit?: URLSearchParamsInit\n): [URLSearchParams, SetURLSearchParams] {\n  warning(\n    typeof URLSearchParams !== \"undefined\",\n    `You cannot use the \\`useSearchParams\\` hook in a browser that does not ` +\n      `support the URLSearchParams API. If you need to support Internet ` +\n      `Explorer 11, we recommend you load a polyfill such as ` +\n      `https://github.com/ungap/url-search-params.`\n  );\n\n  let defaultSearchParamsRef = React.useRef(createSearchParams(defaultInit));\n  let hasSetSearchParamsRef = React.useRef(false);\n\n  let location = useLocation();\n  let searchParams = React.useMemo(\n    () =>\n      // Only merge in the defaults if we haven't yet called setSearchParams.\n      // Once we call that we want those to take precedence, otherwise you can't\n      // remove a param with setSearchParams({}) if it has an initial value\n      getSearchParamsForLocation(\n        location.search,\n        hasSetSearchParamsRef.current ? null : defaultSearchParamsRef.current\n      ),\n    [location.search]\n  );\n\n  let navigate = useNavigate();\n  let setSearchParams = React.useCallback<SetURLSearchParams>(\n    (nextInit, navigateOptions) => {\n      const newSearchParams = createSearchParams(\n        typeof nextInit === \"function\" ? nextInit(searchParams) : nextInit\n      );\n      hasSetSearchParamsRef.current = true;\n      navigate(\"?\" + newSearchParams, navigateOptions);\n    },\n    [navigate, searchParams]\n  );\n\n  return [searchParams, setSearchParams];\n}\n\nexport type SetURLSearchParams = (\n  nextInit?:\n    | URLSearchParamsInit\n    | ((prev: URLSearchParams) => URLSearchParamsInit),\n  navigateOpts?: NavigateOptions\n) => void;\n\n/**\n * Submits a HTML `<form>` to the server without reloading the page.\n */\nexport interface SubmitFunction {\n  (\n    /**\n     * Specifies the `<form>` to be submitted to the server, a specific\n     * `<button>` or `<input type=\"submit\">` to use to submit the form, or some\n     * arbitrary data to submit.\n     *\n     * Note: When using a `<button>` its `name` and `value` will also be\n     * included in the form data that is submitted.\n     */\n    target: SubmitTarget,\n\n    /**\n     * Options that override the `<form>`'s own attributes. Required when\n     * submitting arbitrary data without a backing `<form>`.\n     */\n    options?: SubmitOptions\n  ): void;\n}\n\n/**\n * Submits a fetcher `<form>` to the server without reloading the page.\n */\nexport interface FetcherSubmitFunction {\n  (\n    target: SubmitTarget,\n    // Fetchers cannot replace or set state because they are not navigation events\n    options?: FetcherSubmitOptions\n  ): void;\n}\n\nfunction validateClientSideSubmission() {\n  if (typeof document === \"undefined\") {\n    throw new Error(\n      \"You are calling submit during the server render. \" +\n        \"Try calling submit within a `useEffect` or callback instead.\"\n    );\n  }\n}\n\nlet fetcherId = 0;\nlet getUniqueFetcherId = () => `__${String(++fetcherId)}__`;\n\n/**\n * Returns a function that may be used to programmatically submit a form (or\n * some arbitrary data) to the server.\n */\nexport function useSubmit(): SubmitFunction {\n  let { router } = useDataRouterContext(DataRouterHook.UseSubmit);\n  let { basename } = React.useContext(NavigationContext);\n  let currentRouteId = useRouteId();\n\n  return React.useCallback<SubmitFunction>(\n    (target, options = {}) => {\n      validateClientSideSubmission();\n\n      let { action, method, encType, formData, body } = getFormSubmissionInfo(\n        target,\n        basename\n      );\n\n      if (options.navigate === false) {\n        let key = options.fetcherKey || getUniqueFetcherId();\n        router.fetch(key, currentRouteId, options.action || action, {\n          preventScrollReset: options.preventScrollReset,\n          formData,\n          body,\n          formMethod: options.method || (method as HTMLFormMethod),\n          formEncType: options.encType || (encType as FormEncType),\n          unstable_flushSync: options.unstable_flushSync,\n        });\n      } else {\n        router.navigate(options.action || action, {\n          preventScrollReset: options.preventScrollReset,\n          formData,\n          body,\n          formMethod: options.method || (method as HTMLFormMethod),\n          formEncType: options.encType || (encType as FormEncType),\n          replace: options.replace,\n          state: options.state,\n          fromRouteId: currentRouteId,\n          unstable_flushSync: options.unstable_flushSync,\n          unstable_viewTransition: options.unstable_viewTransition,\n        });\n      }\n    },\n    [router, basename, currentRouteId]\n  );\n}\n\n// v7: Eventually we should deprecate this entirely in favor of using the\n// router method directly?\nexport function useFormAction(\n  action?: string,\n  { relative }: { relative?: RelativeRoutingType } = {}\n): string {\n  let { basename } = React.useContext(NavigationContext);\n  let routeContext = React.useContext(RouteContext);\n  invariant(routeContext, \"useFormAction must be used inside a RouteContext\");\n\n  let [match] = routeContext.matches.slice(-1);\n  // Shallow clone path so we can modify it below, otherwise we modify the\n  // object referenced by useMemo inside useResolvedPath\n  let path = { ...useResolvedPath(action ? action : \".\", { relative }) };\n\n  // If no action was specified, browsers will persist current search params\n  // when determining the path, so match that behavior\n  // https://github.com/remix-run/remix/issues/927\n  let location = useLocation();\n  if (action == null) {\n    // Safe to write to this directly here since if action was undefined, we\n    // would have called useResolvedPath(\".\") which will never include a search\n    path.search = location.search;\n\n    // When grabbing search params from the URL, remove any included ?index param\n    // since it might not apply to our contextual route.  We add it back based\n    // on match.route.index below\n    let params = new URLSearchParams(path.search);\n    if (params.has(\"index\") && params.get(\"index\") === \"\") {\n      params.delete(\"index\");\n      path.search = params.toString() ? `?${params.toString()}` : \"\";\n    }\n  }\n\n  if ((!action || action === \".\") && match.route.index) {\n    path.search = path.search\n      ? path.search.replace(/^\\?/, \"?index&\")\n      : \"?index\";\n  }\n\n  // If we're operating within a basename, prepend it to the pathname prior\n  // to creating the form action.  If this is a root navigation, then just use\n  // the raw basename which allows the basename to have full control over the\n  // presence of a trailing slash on root actions\n  if (basename !== \"/\") {\n    path.pathname =\n      path.pathname === \"/\" ? basename : joinPaths([basename, path.pathname]);\n  }\n\n  return createPath(path);\n}\n\nexport type FetcherWithComponents<TData> = Fetcher<TData> & {\n  Form: React.ForwardRefExoticComponent<\n    FetcherFormProps & React.RefAttributes<HTMLFormElement>\n  >;\n  submit: FetcherSubmitFunction;\n  load: (href: string, opts?: { unstable_flushSync?: boolean }) => void;\n};\n\n// TODO: (v7) Change the useFetcher generic default from `any` to `unknown`\n\n/**\n * Interacts with route loaders and actions without causing a navigation. Great\n * for any interaction that stays on the same page.\n */\nexport function useFetcher<TData = any>({\n  key,\n}: { key?: string } = {}): FetcherWithComponents<TData> {\n  let { router } = useDataRouterContext(DataRouterHook.UseFetcher);\n  let state = useDataRouterState(DataRouterStateHook.UseFetcher);\n  let fetcherData = React.useContext(FetchersContext);\n  let route = React.useContext(RouteContext);\n  let routeId = route.matches[route.matches.length - 1]?.route.id;\n\n  invariant(fetcherData, `useFetcher must be used inside a FetchersContext`);\n  invariant(route, `useFetcher must be used inside a RouteContext`);\n  invariant(\n    routeId != null,\n    `useFetcher can only be used on routes that contain a unique \"id\"`\n  );\n\n  // Fetcher key handling\n  // OK to call conditionally to feature detect `useId`\n  // eslint-disable-next-line react-hooks/rules-of-hooks\n  let defaultKey = useIdImpl ? useIdImpl() : \"\";\n  let [fetcherKey, setFetcherKey] = React.useState<string>(key || defaultKey);\n  if (key && key !== fetcherKey) {\n    setFetcherKey(key);\n  } else if (!fetcherKey) {\n    // We will only fall through here when `useId` is not available\n    setFetcherKey(getUniqueFetcherId());\n  }\n\n  // Registration/cleanup\n  React.useEffect(() => {\n    router.getFetcher(fetcherKey);\n    return () => {\n      // Tell the router we've unmounted - if v7_fetcherPersist is enabled this\n      // will not delete immediately but instead queue up a delete after the\n      // fetcher returns to an `idle` state\n      router.deleteFetcher(fetcherKey);\n    };\n  }, [router, fetcherKey]);\n\n  // Fetcher additions\n  let load = React.useCallback(\n    (href: string, opts?: { unstable_flushSync?: boolean }) => {\n      invariant(routeId, \"No routeId available for fetcher.load()\");\n      router.fetch(fetcherKey, routeId, href, opts);\n    },\n    [fetcherKey, routeId, router]\n  );\n\n  let submitImpl = useSubmit();\n  let submit = React.useCallback<FetcherSubmitFunction>(\n    (target, opts) => {\n      submitImpl(target, {\n        ...opts,\n        navigate: false,\n        fetcherKey,\n      });\n    },\n    [fetcherKey, submitImpl]\n  );\n\n  let FetcherForm = React.useMemo(() => {\n    let FetcherForm = React.forwardRef<HTMLFormElement, FetcherFormProps>(\n      (props, ref) => {\n        return (\n          <Form {...props} navigate={false} fetcherKey={fetcherKey} ref={ref} />\n        );\n      }\n    );\n    if (__DEV__) {\n      FetcherForm.displayName = \"fetcher.Form\";\n    }\n    return FetcherForm;\n  }, [fetcherKey]);\n\n  // Exposed FetcherWithComponents\n  let fetcher = state.fetchers.get(fetcherKey) || IDLE_FETCHER;\n  let data = fetcherData.get(fetcherKey);\n  let fetcherWithComponents = React.useMemo(\n    () => ({\n      Form: FetcherForm,\n      submit,\n      load,\n      ...fetcher,\n      data,\n    }),\n    [FetcherForm, submit, load, fetcher, data]\n  );\n\n  return fetcherWithComponents;\n}\n\n/**\n * Provides all fetchers currently on the page. Useful for layouts and parent\n * routes that need to provide pending/optimistic UI regarding the fetch.\n */\nexport function useFetchers(): (Fetcher & { key: string })[] {\n  let state = useDataRouterState(DataRouterStateHook.UseFetchers);\n  return Array.from(state.fetchers.entries()).map(([key, fetcher]) => ({\n    ...fetcher,\n    key,\n  }));\n}\n\nconst SCROLL_RESTORATION_STORAGE_KEY = \"react-router-scroll-positions\";\nlet savedScrollPositions: Record<string, number> = {};\n\n/**\n * When rendered inside a RouterProvider, will restore scroll positions on navigations\n */\nfunction useScrollRestoration({\n  getKey,\n  storageKey,\n}: {\n  getKey?: GetScrollRestorationKeyFunction;\n  storageKey?: string;\n} = {}) {\n  let { router } = useDataRouterContext(DataRouterHook.UseScrollRestoration);\n  let { restoreScrollPosition, preventScrollReset } = useDataRouterState(\n    DataRouterStateHook.UseScrollRestoration\n  );\n  let { basename } = React.useContext(NavigationContext);\n  let location = useLocation();\n  let matches = useMatches();\n  let navigation = useNavigation();\n\n  // Trigger manual scroll restoration while we're active\n  React.useEffect(() => {\n    window.history.scrollRestoration = \"manual\";\n    return () => {\n      window.history.scrollRestoration = \"auto\";\n    };\n  }, []);\n\n  // Save positions on pagehide\n  usePageHide(\n    React.useCallback(() => {\n      if (navigation.state === \"idle\") {\n        let key = (getKey ? getKey(location, matches) : null) || location.key;\n        savedScrollPositions[key] = window.scrollY;\n      }\n      try {\n        sessionStorage.setItem(\n          storageKey || SCROLL_RESTORATION_STORAGE_KEY,\n          JSON.stringify(savedScrollPositions)\n        );\n      } catch (error) {\n        warning(\n          false,\n          `Failed to save scroll positions in sessionStorage, <ScrollRestoration /> will not work properly (${error}).`\n        );\n      }\n      window.history.scrollRestoration = \"auto\";\n    }, [storageKey, getKey, navigation.state, location, matches])\n  );\n\n  // Read in any saved scroll locations\n  if (typeof document !== \"undefined\") {\n    // eslint-disable-next-line react-hooks/rules-of-hooks\n    React.useLayoutEffect(() => {\n      try {\n        let sessionPositions = sessionStorage.getItem(\n          storageKey || SCROLL_RESTORATION_STORAGE_KEY\n        );\n        if (sessionPositions) {\n          savedScrollPositions = JSON.parse(sessionPositions);\n        }\n      } catch (e) {\n        // no-op, use default empty object\n      }\n    }, [storageKey]);\n\n    // Enable scroll restoration in the router\n    // eslint-disable-next-line react-hooks/rules-of-hooks\n    React.useLayoutEffect(() => {\n      let getKeyWithoutBasename: GetScrollRestorationKeyFunction | undefined =\n        getKey && basename !== \"/\"\n          ? (location, matches) =>\n              getKey(\n                // Strip the basename to match useLocation()\n                {\n                  ...location,\n                  pathname:\n                    stripBasename(location.pathname, basename) ||\n                    location.pathname,\n                },\n                matches\n              )\n          : getKey;\n      let disableScrollRestoration = router?.enableScrollRestoration(\n        savedScrollPositions,\n        () => window.scrollY,\n        getKeyWithoutBasename\n      );\n      return () => disableScrollRestoration && disableScrollRestoration();\n    }, [router, basename, getKey]);\n\n    // Restore scrolling when state.restoreScrollPosition changes\n    // eslint-disable-next-line react-hooks/rules-of-hooks\n    React.useLayoutEffect(() => {\n      // Explicit false means don't do anything (used for submissions)\n      if (restoreScrollPosition === false) {\n        return;\n      }\n\n      // been here before, scroll to it\n      if (typeof restoreScrollPosition === \"number\") {\n        window.scrollTo(0, restoreScrollPosition);\n        return;\n      }\n\n      // try to scroll to the hash\n      if (location.hash) {\n        let el = document.getElementById(\n          decodeURIComponent(location.hash.slice(1))\n        );\n        if (el) {\n          el.scrollIntoView();\n          return;\n        }\n      }\n\n      // Don't reset if this navigation opted out\n      if (preventScrollReset === true) {\n        return;\n      }\n\n      // otherwise go to the top on new locations\n      window.scrollTo(0, 0);\n    }, [location, restoreScrollPosition, preventScrollReset]);\n  }\n}\n\nexport { useScrollRestoration as UNSAFE_useScrollRestoration };\n\n/**\n * Setup a callback to be fired on the window's `beforeunload` event. This is\n * useful for saving some data to `window.localStorage` just before the page\n * refreshes.\n *\n * Note: The `callback` argument should be a function created with\n * `React.useCallback()`.\n */\nexport function useBeforeUnload(\n  callback: (event: BeforeUnloadEvent) => any,\n  options?: { capture?: boolean }\n): void {\n  let { capture } = options || {};\n  React.useEffect(() => {\n    let opts = capture != null ? { capture } : undefined;\n    window.addEventListener(\"beforeunload\", callback, opts);\n    return () => {\n      window.removeEventListener(\"beforeunload\", callback, opts);\n    };\n  }, [callback, capture]);\n}\n\n/**\n * Setup a callback to be fired on the window's `pagehide` event. This is\n * useful for saving some data to `window.localStorage` just before the page\n * refreshes.  This event is better supported than beforeunload across browsers.\n *\n * Note: The `callback` argument should be a function created with\n * `React.useCallback()`.\n */\nfunction usePageHide(\n  callback: (event: PageTransitionEvent) => any,\n  options?: { capture?: boolean }\n): void {\n  let { capture } = options || {};\n  React.useEffect(() => {\n    let opts = capture != null ? { capture } : undefined;\n    window.addEventListener(\"pagehide\", callback, opts);\n    return () => {\n      window.removeEventListener(\"pagehide\", callback, opts);\n    };\n  }, [callback, capture]);\n}\n\n/**\n * Wrapper around useBlocker to show a window.confirm prompt to users instead\n * of building a custom UI with useBlocker.\n *\n * Warning: This has *a lot of rough edges* and behaves very differently (and\n * very incorrectly in some cases) across browsers if user click addition\n * back/forward navigations while the confirm is open.  Use at your own risk.\n */\nfunction usePrompt({\n  when,\n  message,\n}: {\n  when: boolean | BlockerFunction;\n  message: string;\n}) {\n  let blocker = useBlocker(when);\n\n  React.useEffect(() => {\n    if (blocker.state === \"blocked\") {\n      let proceed = window.confirm(message);\n      if (proceed) {\n        // This timeout is needed to avoid a weird \"race\" on POP navigations\n        // between the `window.history` revert navigation and the result of\n        // `window.confirm`\n        setTimeout(blocker.proceed, 0);\n      } else {\n        blocker.reset();\n      }\n    }\n  }, [blocker, message]);\n\n  React.useEffect(() => {\n    if (blocker.state === \"blocked\" && !when) {\n      blocker.reset();\n    }\n  }, [blocker, when]);\n}\n\nexport { usePrompt as unstable_usePrompt };\n\n/**\n * Return a boolean indicating if there is an active view transition to the\n * given href.  You can use this value to render CSS classes or viewTransitionName\n * styles onto your elements\n *\n * @param href The destination href\n * @param [opts.relative] Relative routing type (\"route\" | \"path\")\n */\nfunction useViewTransitionState(\n  to: To,\n  opts: { relative?: RelativeRoutingType } = {}\n) {\n  let vtContext = React.useContext(ViewTransitionContext);\n\n  invariant(\n    vtContext != null,\n    \"`unstable_useViewTransitionState` must be used within `react-router-dom`'s `RouterProvider`.  \" +\n      \"Did you accidentally import `RouterProvider` from `react-router`?\"\n  );\n\n  let { basename } = useDataRouterContext(\n    DataRouterHook.useViewTransitionState\n  );\n  let path = useResolvedPath(to, { relative: opts.relative });\n  if (!vtContext.isTransitioning) {\n    return false;\n  }\n\n  let currentPath =\n    stripBasename(vtContext.currentLocation.pathname, basename) ||\n    vtContext.currentLocation.pathname;\n  let nextPath =\n    stripBasename(vtContext.nextLocation.pathname, basename) ||\n    vtContext.nextLocation.pathname;\n\n  // Transition is active if we're going to or coming from the indicated\n  // destination.  This ensures that other PUSH navigations that reverse\n  // an indicated transition apply.  I.e., on the list view you have:\n  //\n  //   <NavLink to=\"/details/1\" unstable_viewTransition>\n  //\n  // If you click the breadcrumb back to the list view:\n  //\n  //   <NavLink to=\"/list\" unstable_viewTransition>\n  //\n  // We should apply the transition because it's indicated as active going\n  // from /list -> /details/1 and therefore should be active on the reverse\n  // (even though this isn't strictly a POP reverse)\n  return (\n    matchPath(path.pathname, nextPath) != null ||\n    matchPath(path.pathname, currentPath) != null\n  );\n}\n\nexport { useViewTransitionState as unstable_useViewTransitionState };\n\n//#endregion\n"],"names":["defaultMethod","defaultEncType","isHtmlElement","object","tagName","isButtonElement","toLowerCase","isFormElement","isInputElement","isModifiedEvent","event","metaKey","altKey","ctrlKey","shiftKey","shouldProcessLinkClick","target","button","createSearchParams","init","URLSearchParams","Array","isArray","Object","keys","reduce","memo","key","value","concat","map","v","getSearchParamsForLocation","locationSearch","defaultSearchParams","searchParams","forEach","_","has","getAll","append","_formDataSupportsSubmitter","isFormDataSubmitterSupported","FormData","document","createElement","e","supportedFormEncTypes","Set","getFormEncType","encType","process","warning","getFormSubmissionInfo","basename","method","action","formData","body","attr","getAttribute","stripBasename","type","form","Error","name","prefix","undefined","REACT_ROUTER_VERSION","window","__reactRouterVersion","createBrowserRouter","routes","opts","createRouter","future","_extends","v7_prependBasename","history","createBrowserHistory","hydrationData","parseHydrationData","mapRouteProperties","unstable_dataStrategy","unstable_patchRoutesOnMiss","initialize","createHashRouter","createHashHistory","_window","state","__staticRouterHydrationData","errors","deserializeErrors","entries","serialized","val","__type","ErrorResponseImpl","status","statusText","data","internal","__subType","ErrorConstructor","error","message","stack","ViewTransitionContext","React","createContext","isTransitioning","displayName","FetchersContext","Map","START_TRANSITION","startTransitionImpl","FLUSH_SYNC","flushSyncImpl","ReactDOM","USE_ID","useIdImpl","startTransitionSafe","cb","flushSyncSafe","Deferred","constructor","promise","Promise","resolve","reject","reason","RouterProvider","_ref","fallbackElement","router","setStateImpl","useState","pendingState","setPendingState","vtContext","setVtContext","renderDfd","setRenderDfd","transition","setTransition","interruption","setInterruption","fetcherData","useRef","v7_startTransition","optInStartTransition","useCallback","setState","newState","_ref2","deletedFetchers","unstable_flushSync","flushSync","unstable_viewTransitionOpts","viewTransitionOpts","current","delete","fetchers","fetcher","set","isViewTransitionUnavailable","startViewTransition","skipTransition","currentLocation","nextLocation","t","finished","finally","useLayoutEffect","subscribe","useEffect","renderPromise","location","v7_partialHydration","navigator","useMemo","createHref","encodeLocation","go","n","navigate","push","to","preventScrollReset","replace","dataRouterContext","static","routerFuture","v7_relativeSplatPath","Fragment","DataRouterContext","Provider","DataRouterStateContext","Router","navigationType","historyAction","initialized","MemoizedDataRoutes","DataRoutes","_ref3","useRoutesImpl","BrowserRouter","_ref4","children","historyRef","v5Compat","listen","HashRouter","_ref5","HistoryRouter","_ref6","isBrowser","ABSOLUTE_URL_REGEX","Link","forwardRef","LinkWithRef","_ref7","ref","onClick","relative","reloadDocument","unstable_viewTransition","rest","_objectWithoutPropertiesLoose","_excluded","useContext","NavigationContext","absoluteHref","isExternal","test","currentUrl","URL","href","targetUrl","startsWith","protocol","path","pathname","origin","search","hash","useHref","internalOnClick","useLinkClickHandler","handleClick","defaultPrevented","NavLink","NavLinkWithRef","_ref8","ariaCurrentProp","caseSensitive","className","classNameProp","end","style","styleProp","_excluded2","useResolvedPath","useLocation","routerState","useViewTransitionState","toPathname","locationPathname","nextLocationPathname","navigation","endSlashPosition","endsWith","length","isActive","charAt","isPending","renderProps","ariaCurrent","filter","Boolean","join","Form","_ref9","forwardedRef","fetcherKey","onSubmit","props","_excluded3","submit","useSubmit","formAction","useFormAction","formMethod","submitHandler","preventDefault","submitter","nativeEvent","submitMethod","currentTarget","ScrollRestoration","_ref10","getKey","storageKey","useScrollRestoration","DataRouterHook","DataRouterStateHook","getDataRouterConsoleError","hookName","useDataRouterContext","ctx","invariant","useDataRouterState","_temp","replaceProp","useNavigate","createPath","useSearchParams","defaultInit","defaultSearchParamsRef","hasSetSearchParamsRef","setSearchParams","nextInit","navigateOptions","newSearchParams","validateClientSideSubmission","fetcherId","getUniqueFetcherId","String","UseSubmit","currentRouteId","useRouteId","options","fetch","formEncType","fromRouteId","_temp2","routeContext","RouteContext","match","matches","slice","params","get","toString","route","index","joinPaths","useFetcher","_temp3","_route$matches","UseFetcher","routeId","id","defaultKey","setFetcherKey","getFetcher","deleteFetcher","load","submitImpl","FetcherForm","IDLE_FETCHER","fetcherWithComponents","useFetchers","UseFetchers","from","_ref11","SCROLL_RESTORATION_STORAGE_KEY","savedScrollPositions","_temp4","UseScrollRestoration","restoreScrollPosition","useMatches","useNavigation","scrollRestoration","usePageHide","scrollY","sessionStorage","setItem","JSON","stringify","sessionPositions","getItem","parse","getKeyWithoutBasename","disableScrollRestoration","enableScrollRestoration","scrollTo","el","getElementById","decodeURIComponent","scrollIntoView","useBeforeUnload","callback","capture","addEventListener","removeEventListener","usePrompt","_ref12","when","blocker","useBlocker","proceed","confirm","setTimeout","reset","currentPath","nextPath","matchPath"],"mappings":"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"}
     1{"version":3,"file":"react-router-dom.development.js","sources":["../../dom.ts","../../index.tsx"],"sourcesContent":["import type {\n  FormEncType,\n  HTMLFormMethod,\n  RelativeRoutingType,\n} from \"@remix-run/router\";\nimport { stripBasename, UNSAFE_warning as warning } from \"@remix-run/router\";\n\nexport const defaultMethod: HTMLFormMethod = \"get\";\nconst defaultEncType: FormEncType = \"application/x-www-form-urlencoded\";\n\nexport function isHtmlElement(object: any): object is HTMLElement {\n  return object != null && typeof object.tagName === \"string\";\n}\n\nexport function isButtonElement(object: any): object is HTMLButtonElement {\n  return isHtmlElement(object) && object.tagName.toLowerCase() === \"button\";\n}\n\nexport function isFormElement(object: any): object is HTMLFormElement {\n  return isHtmlElement(object) && object.tagName.toLowerCase() === \"form\";\n}\n\nexport function isInputElement(object: any): object is HTMLInputElement {\n  return isHtmlElement(object) && object.tagName.toLowerCase() === \"input\";\n}\n\ntype LimitedMouseEvent = Pick<\n  MouseEvent,\n  \"button\" | \"metaKey\" | \"altKey\" | \"ctrlKey\" | \"shiftKey\"\n>;\n\nfunction isModifiedEvent(event: LimitedMouseEvent) {\n  return !!(event.metaKey || event.altKey || event.ctrlKey || event.shiftKey);\n}\n\nexport function shouldProcessLinkClick(\n  event: LimitedMouseEvent,\n  target?: string\n) {\n  return (\n    event.button === 0 && // Ignore everything but left clicks\n    (!target || target === \"_self\") && // Let browser handle \"target=_blank\" etc.\n    !isModifiedEvent(event) // Ignore clicks with modifier keys\n  );\n}\n\nexport type ParamKeyValuePair = [string, string];\n\nexport type URLSearchParamsInit =\n  | string\n  | ParamKeyValuePair[]\n  | Record<string, string | string[]>\n  | URLSearchParams;\n\n/**\n * Creates a URLSearchParams object using the given initializer.\n *\n * This is identical to `new URLSearchParams(init)` except it also\n * supports arrays as values in the object form of the initializer\n * instead of just strings. This is convenient when you need multiple\n * values for a given key, but don't want to use an array initializer.\n *\n * For example, instead of:\n *\n *   let searchParams = new URLSearchParams([\n *     ['sort', 'name'],\n *     ['sort', 'price']\n *   ]);\n *\n * you can do:\n *\n *   let searchParams = createSearchParams({\n *     sort: ['name', 'price']\n *   });\n */\nexport function createSearchParams(\n  init: URLSearchParamsInit = \"\"\n): URLSearchParams {\n  return new URLSearchParams(\n    typeof init === \"string\" ||\n    Array.isArray(init) ||\n    init instanceof URLSearchParams\n      ? init\n      : Object.keys(init).reduce((memo, key) => {\n          let value = init[key];\n          return memo.concat(\n            Array.isArray(value) ? value.map((v) => [key, v]) : [[key, value]]\n          );\n        }, [] as ParamKeyValuePair[])\n  );\n}\n\nexport function getSearchParamsForLocation(\n  locationSearch: string,\n  defaultSearchParams: URLSearchParams | null\n) {\n  let searchParams = createSearchParams(locationSearch);\n\n  if (defaultSearchParams) {\n    // Use `defaultSearchParams.forEach(...)` here instead of iterating of\n    // `defaultSearchParams.keys()` to work-around a bug in Firefox related to\n    // web extensions. Relevant Bugzilla tickets:\n    // https://bugzilla.mozilla.org/show_bug.cgi?id=1414602\n    // https://bugzilla.mozilla.org/show_bug.cgi?id=1023984\n    defaultSearchParams.forEach((_, key) => {\n      if (!searchParams.has(key)) {\n        defaultSearchParams.getAll(key).forEach((value) => {\n          searchParams.append(key, value);\n        });\n      }\n    });\n  }\n\n  return searchParams;\n}\n\n// Thanks https://github.com/sindresorhus/type-fest!\ntype JsonObject = { [Key in string]: JsonValue } & {\n  [Key in string]?: JsonValue | undefined;\n};\ntype JsonArray = JsonValue[] | readonly JsonValue[];\ntype JsonPrimitive = string | number | boolean | null;\ntype JsonValue = JsonPrimitive | JsonObject | JsonArray;\n\nexport type SubmitTarget =\n  | HTMLFormElement\n  | HTMLButtonElement\n  | HTMLInputElement\n  | FormData\n  | URLSearchParams\n  | JsonValue\n  | null;\n\n// One-time check for submitter support\nlet _formDataSupportsSubmitter: boolean | null = null;\n\nfunction isFormDataSubmitterSupported() {\n  if (_formDataSupportsSubmitter === null) {\n    try {\n      new FormData(\n        document.createElement(\"form\"),\n        // @ts-expect-error if FormData supports the submitter parameter, this will throw\n        0\n      );\n      _formDataSupportsSubmitter = false;\n    } catch (e) {\n      _formDataSupportsSubmitter = true;\n    }\n  }\n  return _formDataSupportsSubmitter;\n}\n\n/**\n * Submit options shared by both navigations and fetchers\n */\ninterface SharedSubmitOptions {\n  /**\n   * The HTTP method used to submit the form. Overrides `<form method>`.\n   * Defaults to \"GET\".\n   */\n  method?: HTMLFormMethod;\n\n  /**\n   * The action URL path used to submit the form. Overrides `<form action>`.\n   * Defaults to the path of the current route.\n   */\n  action?: string;\n\n  /**\n   * The encoding used to submit the form. Overrides `<form encType>`.\n   * Defaults to \"application/x-www-form-urlencoded\".\n   */\n  encType?: FormEncType;\n\n  /**\n   * Determines whether the form action is relative to the route hierarchy or\n   * the pathname.  Use this if you want to opt out of navigating the route\n   * hierarchy and want to instead route based on /-delimited URL segments\n   */\n  relative?: RelativeRoutingType;\n\n  /**\n   * In browser-based environments, prevent resetting scroll after this\n   * navigation when using the <ScrollRestoration> component\n   */\n  preventScrollReset?: boolean;\n\n  /**\n   * Enable flushSync for this submission's state updates\n   */\n  flushSync?: boolean;\n}\n\n/**\n * Submit options available to fetchers\n */\nexport interface FetcherSubmitOptions extends SharedSubmitOptions {}\n\n/**\n * Submit options available to navigations\n */\nexport interface SubmitOptions extends FetcherSubmitOptions {\n  /**\n   * Set `true` to replace the current entry in the browser's history stack\n   * instead of creating a new one (i.e. stay on \"the same page\"). Defaults\n   * to `false`.\n   */\n  replace?: boolean;\n\n  /**\n   * State object to add to the history stack entry for this navigation\n   */\n  state?: any;\n\n  /**\n   * Indicate a specific fetcherKey to use when using navigate=false\n   */\n  fetcherKey?: string;\n\n  /**\n   * navigate=false will use a fetcher instead of a navigation\n   */\n  navigate?: boolean;\n\n  /**\n   * Enable view transitions on this submission navigation\n   */\n  viewTransition?: boolean;\n}\n\nconst supportedFormEncTypes: Set<FormEncType> = new Set([\n  \"application/x-www-form-urlencoded\",\n  \"multipart/form-data\",\n  \"text/plain\",\n]);\n\nfunction getFormEncType(encType: string | null) {\n  if (encType != null && !supportedFormEncTypes.has(encType as FormEncType)) {\n    warning(\n      false,\n      `\"${encType}\" is not a valid \\`encType\\` for \\`<Form>\\`/\\`<fetcher.Form>\\` ` +\n        `and will default to \"${defaultEncType}\"`\n    );\n\n    return null;\n  }\n  return encType;\n}\n\nexport function getFormSubmissionInfo(\n  target: SubmitTarget,\n  basename: string\n): {\n  action: string | null;\n  method: string;\n  encType: string;\n  formData: FormData | undefined;\n  body: any;\n} {\n  let method: string;\n  let action: string | null;\n  let encType: string;\n  let formData: FormData | undefined;\n  let body: any;\n\n  if (isFormElement(target)) {\n    // When grabbing the action from the element, it will have had the basename\n    // prefixed to ensure non-JS scenarios work, so strip it since we'll\n    // re-prefix in the router\n    let attr = target.getAttribute(\"action\");\n    action = attr ? stripBasename(attr, basename) : null;\n    method = target.getAttribute(\"method\") || defaultMethod;\n    encType = getFormEncType(target.getAttribute(\"enctype\")) || defaultEncType;\n\n    formData = new FormData(target);\n  } else if (\n    isButtonElement(target) ||\n    (isInputElement(target) &&\n      (target.type === \"submit\" || target.type === \"image\"))\n  ) {\n    let form = target.form;\n\n    if (form == null) {\n      throw new Error(\n        `Cannot submit a <button> or <input type=\"submit\"> without a <form>`\n      );\n    }\n\n    // <button>/<input type=\"submit\"> may override attributes of <form>\n\n    // When grabbing the action from the element, it will have had the basename\n    // prefixed to ensure non-JS scenarios work, so strip it since we'll\n    // re-prefix in the router\n    let attr = target.getAttribute(\"formaction\") || form.getAttribute(\"action\");\n    action = attr ? stripBasename(attr, basename) : null;\n\n    method =\n      target.getAttribute(\"formmethod\") ||\n      form.getAttribute(\"method\") ||\n      defaultMethod;\n    encType =\n      getFormEncType(target.getAttribute(\"formenctype\")) ||\n      getFormEncType(form.getAttribute(\"enctype\")) ||\n      defaultEncType;\n\n    // Build a FormData object populated from a form and submitter\n    formData = new FormData(form, target);\n\n    // If this browser doesn't support the `FormData(el, submitter)` format,\n    // then tack on the submitter value at the end.  This is a lightweight\n    // solution that is not 100% spec compliant.  For complete support in older\n    // browsers, consider using the `formdata-submitter-polyfill` package\n    if (!isFormDataSubmitterSupported()) {\n      let { name, type, value } = target;\n      if (type === \"image\") {\n        let prefix = name ? `${name}.` : \"\";\n        formData.append(`${prefix}x`, \"0\");\n        formData.append(`${prefix}y`, \"0\");\n      } else if (name) {\n        formData.append(name, value);\n      }\n    }\n  } else if (isHtmlElement(target)) {\n    throw new Error(\n      `Cannot submit element that is not <form>, <button>, or ` +\n        `<input type=\"submit|image\">`\n    );\n  } else {\n    method = defaultMethod;\n    action = null;\n    encType = defaultEncType;\n    body = target;\n  }\n\n  // Send body for <Form encType=\"text/plain\" so we encode it into text\n  if (formData && encType === \"text/plain\") {\n    body = formData;\n    formData = undefined;\n  }\n\n  return { action, method: method.toLowerCase(), encType, formData, body };\n}\n","/**\n * NOTE: If you refactor this to split up the modules into separate files,\n * you'll need to update the rollup config for react-router-dom-v5-compat.\n */\nimport * as React from \"react\";\nimport * as ReactDOM from \"react-dom\";\nimport type {\n  DataRouteObject,\n  FutureConfig,\n  Location,\n  NavigateOptions,\n  NavigationType,\n  Navigator,\n  RelativeRoutingType,\n  RouteObject,\n  RouterProps,\n  RouterProviderProps,\n  To,\n  DataStrategyFunction,\n  PatchRoutesOnNavigationFunction,\n} from \"react-router\";\nimport {\n  Router,\n  createPath,\n  useHref,\n  useLocation,\n  useMatches,\n  useNavigate,\n  useNavigation,\n  useResolvedPath,\n  useBlocker,\n  UNSAFE_DataRouterContext as DataRouterContext,\n  UNSAFE_DataRouterStateContext as DataRouterStateContext,\n  UNSAFE_NavigationContext as NavigationContext,\n  UNSAFE_RouteContext as RouteContext,\n  UNSAFE_logV6DeprecationWarnings as logV6DeprecationWarnings,\n  UNSAFE_mapRouteProperties as mapRouteProperties,\n  UNSAFE_useRouteId as useRouteId,\n  UNSAFE_useRoutesImpl as useRoutesImpl,\n} from \"react-router\";\nimport type {\n  BrowserHistory,\n  Fetcher,\n  FormEncType,\n  FormMethod,\n  FutureConfig as RouterFutureConfig,\n  GetScrollRestorationKeyFunction,\n  HashHistory,\n  History,\n  HTMLFormMethod,\n  HydrationState,\n  Router as RemixRouter,\n  V7_FormMethod,\n  RouterState,\n  RouterSubscriber,\n  BlockerFunction,\n} from \"@remix-run/router\";\nimport {\n  createRouter,\n  createBrowserHistory,\n  createHashHistory,\n  joinPaths,\n  stripBasename,\n  UNSAFE_ErrorResponseImpl as ErrorResponseImpl,\n  UNSAFE_invariant as invariant,\n  UNSAFE_warning as warning,\n  matchPath,\n  IDLE_FETCHER,\n} from \"@remix-run/router\";\n\nimport type {\n  SubmitOptions,\n  ParamKeyValuePair,\n  URLSearchParamsInit,\n  SubmitTarget,\n  FetcherSubmitOptions,\n} from \"./dom\";\nimport {\n  createSearchParams,\n  defaultMethod,\n  getFormSubmissionInfo,\n  getSearchParamsForLocation,\n  shouldProcessLinkClick,\n} from \"./dom\";\n\n////////////////////////////////////////////////////////////////////////////////\n//#region Re-exports\n////////////////////////////////////////////////////////////////////////////////\n\nexport type {\n  FormEncType,\n  FormMethod,\n  GetScrollRestorationKeyFunction,\n  ParamKeyValuePair,\n  SubmitOptions,\n  URLSearchParamsInit,\n  V7_FormMethod,\n};\nexport { createSearchParams, ErrorResponseImpl as UNSAFE_ErrorResponseImpl };\n\n// Note: Keep in sync with react-router exports!\nexport type {\n  ActionFunction,\n  ActionFunctionArgs,\n  AwaitProps,\n  Blocker,\n  BlockerFunction,\n  DataRouteMatch,\n  DataRouteObject,\n  DataStrategyFunction,\n  DataStrategyFunctionArgs,\n  DataStrategyMatch,\n  DataStrategyResult,\n  ErrorResponse,\n  Fetcher,\n  FutureConfig,\n  Hash,\n  IndexRouteObject,\n  IndexRouteProps,\n  JsonFunction,\n  LazyRouteFunction,\n  LayoutRouteProps,\n  LoaderFunction,\n  LoaderFunctionArgs,\n  Location,\n  MemoryRouterProps,\n  NavigateFunction,\n  NavigateOptions,\n  NavigateProps,\n  Navigation,\n  Navigator,\n  NonIndexRouteObject,\n  OutletProps,\n  Params,\n  ParamParseKey,\n  PatchRoutesOnNavigationFunction,\n  PatchRoutesOnNavigationFunctionArgs,\n  Path,\n  PathMatch,\n  Pathname,\n  PathParam,\n  PathPattern,\n  PathRouteProps,\n  RedirectFunction,\n  RelativeRoutingType,\n  RouteMatch,\n  RouteObject,\n  RouteProps,\n  RouterProps,\n  RouterProviderProps,\n  RoutesProps,\n  Search,\n  ShouldRevalidateFunction,\n  ShouldRevalidateFunctionArgs,\n  To,\n  UIMatch,\n} from \"react-router\";\nexport {\n  AbortedDeferredError,\n  Await,\n  MemoryRouter,\n  Navigate,\n  NavigationType,\n  Outlet,\n  Route,\n  Router,\n  Routes,\n  createMemoryRouter,\n  createPath,\n  createRoutesFromChildren,\n  createRoutesFromElements,\n  defer,\n  isRouteErrorResponse,\n  generatePath,\n  json,\n  matchPath,\n  matchRoutes,\n  parsePath,\n  redirect,\n  redirectDocument,\n  replace,\n  renderMatches,\n  resolvePath,\n  useActionData,\n  useAsyncError,\n  useAsyncValue,\n  useBlocker,\n  useHref,\n  useInRouterContext,\n  useLoaderData,\n  useLocation,\n  useMatch,\n  useMatches,\n  useNavigate,\n  useNavigation,\n  useNavigationType,\n  useOutlet,\n  useOutletContext,\n  useParams,\n  useResolvedPath,\n  useRevalidator,\n  useRouteError,\n  useRouteLoaderData,\n  useRoutes,\n} from \"react-router\";\n\n///////////////////////////////////////////////////////////////////////////////\n// DANGER! PLEASE READ ME!\n// We provide these exports as an escape hatch in the event that you need any\n// routing data that we don't provide an explicit API for. With that said, we\n// want to cover your use case if we can, so if you feel the need to use these\n// we want to hear from you. Let us know what you're building and we'll do our\n// best to make sure we can support you!\n//\n// We consider these exports an implementation detail and do not guarantee\n// against any breaking changes, regardless of the semver release. Use with\n// extreme caution and only if you understand the consequences. Godspeed.\n///////////////////////////////////////////////////////////////////////////////\n\n/** @internal */\nexport {\n  UNSAFE_DataRouterContext,\n  UNSAFE_DataRouterStateContext,\n  UNSAFE_NavigationContext,\n  UNSAFE_LocationContext,\n  UNSAFE_RouteContext,\n  UNSAFE_useRouteId,\n} from \"react-router\";\n//#endregion\n\ndeclare global {\n  var __staticRouterHydrationData: HydrationState | undefined;\n  var __reactRouterVersion: string;\n  interface Document {\n    startViewTransition(cb: () => Promise<void> | void): ViewTransition;\n  }\n}\n\n// HEY YOU! DON'T TOUCH THIS VARIABLE!\n//\n// It is replaced with the proper version at build time via a babel plugin in\n// the rollup config.\n//\n// Export a global property onto the window for React Router detection by the\n// Core Web Vitals Technology Report.  This way they can configure the `wappalyzer`\n// to detect and properly classify live websites as being built with React Router:\n// https://github.com/HTTPArchive/wappalyzer/blob/main/src/technologies/r.json\nconst REACT_ROUTER_VERSION = \"0\";\ntry {\n  window.__reactRouterVersion = REACT_ROUTER_VERSION;\n} catch (e) {\n  // no-op\n}\n\n////////////////////////////////////////////////////////////////////////////////\n//#region Routers\n////////////////////////////////////////////////////////////////////////////////\n\ninterface DOMRouterOpts {\n  basename?: string;\n  future?: Partial<Omit<RouterFutureConfig, \"v7_prependBasename\">>;\n  hydrationData?: HydrationState;\n  dataStrategy?: DataStrategyFunction;\n  patchRoutesOnNavigation?: PatchRoutesOnNavigationFunction;\n  window?: Window;\n}\n\nexport function createBrowserRouter(\n  routes: RouteObject[],\n  opts?: DOMRouterOpts\n): RemixRouter {\n  return createRouter({\n    basename: opts?.basename,\n    future: {\n      ...opts?.future,\n      v7_prependBasename: true,\n    },\n    history: createBrowserHistory({ window: opts?.window }),\n    hydrationData: opts?.hydrationData || parseHydrationData(),\n    routes,\n    mapRouteProperties,\n    dataStrategy: opts?.dataStrategy,\n    patchRoutesOnNavigation: opts?.patchRoutesOnNavigation,\n    window: opts?.window,\n  }).initialize();\n}\n\nexport function createHashRouter(\n  routes: RouteObject[],\n  opts?: DOMRouterOpts\n): RemixRouter {\n  return createRouter({\n    basename: opts?.basename,\n    future: {\n      ...opts?.future,\n      v7_prependBasename: true,\n    },\n    history: createHashHistory({ window: opts?.window }),\n    hydrationData: opts?.hydrationData || parseHydrationData(),\n    routes,\n    mapRouteProperties,\n    dataStrategy: opts?.dataStrategy,\n    patchRoutesOnNavigation: opts?.patchRoutesOnNavigation,\n    window: opts?.window,\n  }).initialize();\n}\n\nfunction parseHydrationData(): HydrationState | undefined {\n  let state = window?.__staticRouterHydrationData;\n  if (state && state.errors) {\n    state = {\n      ...state,\n      errors: deserializeErrors(state.errors),\n    };\n  }\n  return state;\n}\n\nfunction deserializeErrors(\n  errors: RemixRouter[\"state\"][\"errors\"]\n): RemixRouter[\"state\"][\"errors\"] {\n  if (!errors) return null;\n  let entries = Object.entries(errors);\n  let serialized: RemixRouter[\"state\"][\"errors\"] = {};\n  for (let [key, val] of entries) {\n    // Hey you!  If you change this, please change the corresponding logic in\n    // serializeErrors in react-router-dom/server.tsx :)\n    if (val && val.__type === \"RouteErrorResponse\") {\n      serialized[key] = new ErrorResponseImpl(\n        val.status,\n        val.statusText,\n        val.data,\n        val.internal === true\n      );\n    } else if (val && val.__type === \"Error\") {\n      // Attempt to reconstruct the right type of Error (i.e., ReferenceError)\n      if (val.__subType) {\n        let ErrorConstructor = window[val.__subType];\n        if (typeof ErrorConstructor === \"function\") {\n          try {\n            // @ts-expect-error\n            let error = new ErrorConstructor(val.message);\n            // Wipe away the client-side stack trace.  Nothing to fill it in with\n            // because we don't serialize SSR stack traces for security reasons\n            error.stack = \"\";\n            serialized[key] = error;\n          } catch (e) {\n            // no-op - fall through and create a normal Error\n          }\n        }\n      }\n\n      if (serialized[key] == null) {\n        let error = new Error(val.message);\n        // Wipe away the client-side stack trace.  Nothing to fill it in with\n        // because we don't serialize SSR stack traces for security reasons\n        error.stack = \"\";\n        serialized[key] = error;\n      }\n    } else {\n      serialized[key] = val;\n    }\n  }\n  return serialized;\n}\n\n//#endregion\n\n////////////////////////////////////////////////////////////////////////////////\n//#region Contexts\n////////////////////////////////////////////////////////////////////////////////\n\ntype ViewTransitionContextObject =\n  | {\n      isTransitioning: false;\n    }\n  | {\n      isTransitioning: true;\n      flushSync: boolean;\n      currentLocation: Location;\n      nextLocation: Location;\n    };\n\nconst ViewTransitionContext = React.createContext<ViewTransitionContextObject>({\n  isTransitioning: false,\n});\nif (__DEV__) {\n  ViewTransitionContext.displayName = \"ViewTransition\";\n}\n\nexport { ViewTransitionContext as UNSAFE_ViewTransitionContext };\n\n// TODO: (v7) Change the useFetcher data from `any` to `unknown`\ntype FetchersContextObject = Map<string, any>;\n\nconst FetchersContext = React.createContext<FetchersContextObject>(new Map());\nif (__DEV__) {\n  FetchersContext.displayName = \"Fetchers\";\n}\n\nexport { FetchersContext as UNSAFE_FetchersContext };\n\n//#endregion\n\n////////////////////////////////////////////////////////////////////////////////\n//#region Components\n////////////////////////////////////////////////////////////////////////////////\n\n/**\n  Webpack + React 17 fails to compile on any of the following because webpack\n  complains that `startTransition` doesn't exist in `React`:\n  * import { startTransition } from \"react\"\n  * import * as React from from \"react\";\n    \"startTransition\" in React ? React.startTransition(() => setState()) : setState()\n  * import * as React from from \"react\";\n    \"startTransition\" in React ? React[\"startTransition\"](() => setState()) : setState()\n\n  Moving it to a constant such as the following solves the Webpack/React 17 issue:\n  * import * as React from from \"react\";\n    const START_TRANSITION = \"startTransition\";\n    START_TRANSITION in React ? React[START_TRANSITION](() => setState()) : setState()\n\n  However, that introduces webpack/terser minification issues in production builds\n  in React 18 where minification/obfuscation ends up removing the call of\n  React.startTransition entirely from the first half of the ternary.  Grabbing\n  this exported reference once up front resolves that issue.\n\n  See https://github.com/remix-run/react-router/issues/10579\n*/\nconst START_TRANSITION = \"startTransition\";\nconst startTransitionImpl = React[START_TRANSITION];\nconst FLUSH_SYNC = \"flushSync\";\nconst flushSyncImpl = ReactDOM[FLUSH_SYNC];\nconst USE_ID = \"useId\";\nconst useIdImpl = React[USE_ID];\n\nfunction startTransitionSafe(cb: () => void) {\n  if (startTransitionImpl) {\n    startTransitionImpl(cb);\n  } else {\n    cb();\n  }\n}\n\nfunction flushSyncSafe(cb: () => void) {\n  if (flushSyncImpl) {\n    flushSyncImpl(cb);\n  } else {\n    cb();\n  }\n}\n\ninterface ViewTransition {\n  finished: Promise<void>;\n  ready: Promise<void>;\n  updateCallbackDone: Promise<void>;\n  skipTransition(): void;\n}\n\nclass Deferred<T> {\n  status: \"pending\" | \"resolved\" | \"rejected\" = \"pending\";\n  promise: Promise<T>;\n  // @ts-expect-error - no initializer\n  resolve: (value: T) => void;\n  // @ts-expect-error - no initializer\n  reject: (reason?: unknown) => void;\n  constructor() {\n    this.promise = new Promise((resolve, reject) => {\n      this.resolve = (value) => {\n        if (this.status === \"pending\") {\n          this.status = \"resolved\";\n          resolve(value);\n        }\n      };\n      this.reject = (reason) => {\n        if (this.status === \"pending\") {\n          this.status = \"rejected\";\n          reject(reason);\n        }\n      };\n    });\n  }\n}\n\n/**\n * Given a Remix Router instance, render the appropriate UI\n */\nexport function RouterProvider({\n  fallbackElement,\n  router,\n  future,\n}: RouterProviderProps): React.ReactElement {\n  let [state, setStateImpl] = React.useState(router.state);\n  let [pendingState, setPendingState] = React.useState<RouterState>();\n  let [vtContext, setVtContext] = React.useState<ViewTransitionContextObject>({\n    isTransitioning: false,\n  });\n  let [renderDfd, setRenderDfd] = React.useState<Deferred<void>>();\n  let [transition, setTransition] = React.useState<ViewTransition>();\n  let [interruption, setInterruption] = React.useState<{\n    state: RouterState;\n    currentLocation: Location;\n    nextLocation: Location;\n  }>();\n  let fetcherData = React.useRef<Map<string, any>>(new Map());\n  let { v7_startTransition } = future || {};\n\n  let optInStartTransition = React.useCallback(\n    (cb: () => void) => {\n      if (v7_startTransition) {\n        startTransitionSafe(cb);\n      } else {\n        cb();\n      }\n    },\n    [v7_startTransition]\n  );\n\n  let setState = React.useCallback<RouterSubscriber>(\n    (\n      newState: RouterState,\n      {\n        deletedFetchers,\n        flushSync: flushSync,\n        viewTransitionOpts: viewTransitionOpts,\n      }\n    ) => {\n      deletedFetchers.forEach((key) => fetcherData.current.delete(key));\n      newState.fetchers.forEach((fetcher, key) => {\n        if (fetcher.data !== undefined) {\n          fetcherData.current.set(key, fetcher.data);\n        }\n      });\n\n      let isViewTransitionUnavailable =\n        router.window == null ||\n        router.window.document == null ||\n        typeof router.window.document.startViewTransition !== \"function\";\n\n      // If this isn't a view transition or it's not available in this browser,\n      // just update and be done with it\n      if (!viewTransitionOpts || isViewTransitionUnavailable) {\n        if (flushSync) {\n          flushSyncSafe(() => setStateImpl(newState));\n        } else {\n          optInStartTransition(() => setStateImpl(newState));\n        }\n        return;\n      }\n\n      // flushSync + startViewTransition\n      if (flushSync) {\n        // Flush through the context to mark DOM elements as transition=ing\n        flushSyncSafe(() => {\n          // Cancel any pending transitions\n          if (transition) {\n            renderDfd && renderDfd.resolve();\n            transition.skipTransition();\n          }\n          setVtContext({\n            isTransitioning: true,\n            flushSync: true,\n            currentLocation: viewTransitionOpts.currentLocation,\n            nextLocation: viewTransitionOpts.nextLocation,\n          });\n        });\n\n        // Update the DOM\n        let t = router.window!.document.startViewTransition(() => {\n          flushSyncSafe(() => setStateImpl(newState));\n        });\n\n        // Clean up after the animation completes\n        t.finished.finally(() => {\n          flushSyncSafe(() => {\n            setRenderDfd(undefined);\n            setTransition(undefined);\n            setPendingState(undefined);\n            setVtContext({ isTransitioning: false });\n          });\n        });\n\n        flushSyncSafe(() => setTransition(t));\n        return;\n      }\n\n      // startTransition + startViewTransition\n      if (transition) {\n        // Interrupting an in-progress transition, cancel and let everything flush\n        // out, and then kick off a new transition from the interruption state\n        renderDfd && renderDfd.resolve();\n        transition.skipTransition();\n        setInterruption({\n          state: newState,\n          currentLocation: viewTransitionOpts.currentLocation,\n          nextLocation: viewTransitionOpts.nextLocation,\n        });\n      } else {\n        // Completed navigation update with opted-in view transitions, let 'er rip\n        setPendingState(newState);\n        setVtContext({\n          isTransitioning: true,\n          flushSync: false,\n          currentLocation: viewTransitionOpts.currentLocation,\n          nextLocation: viewTransitionOpts.nextLocation,\n        });\n      }\n    },\n    [router.window, transition, renderDfd, fetcherData, optInStartTransition]\n  );\n\n  // Need to use a layout effect here so we are subscribed early enough to\n  // pick up on any render-driven redirects/navigations (useEffect/<Navigate>)\n  React.useLayoutEffect(() => router.subscribe(setState), [router, setState]);\n\n  // When we start a view transition, create a Deferred we can use for the\n  // eventual \"completed\" render\n  React.useEffect(() => {\n    if (vtContext.isTransitioning && !vtContext.flushSync) {\n      setRenderDfd(new Deferred<void>());\n    }\n  }, [vtContext]);\n\n  // Once the deferred is created, kick off startViewTransition() to update the\n  // DOM and then wait on the Deferred to resolve (indicating the DOM update has\n  // happened)\n  React.useEffect(() => {\n    if (renderDfd && pendingState && router.window) {\n      let newState = pendingState;\n      let renderPromise = renderDfd.promise;\n      let transition = router.window.document.startViewTransition(async () => {\n        optInStartTransition(() => setStateImpl(newState));\n        await renderPromise;\n      });\n      transition.finished.finally(() => {\n        setRenderDfd(undefined);\n        setTransition(undefined);\n        setPendingState(undefined);\n        setVtContext({ isTransitioning: false });\n      });\n      setTransition(transition);\n    }\n  }, [optInStartTransition, pendingState, renderDfd, router.window]);\n\n  // When the new location finally renders and is committed to the DOM, this\n  // effect will run to resolve the transition\n  React.useEffect(() => {\n    if (\n      renderDfd &&\n      pendingState &&\n      state.location.key === pendingState.location.key\n    ) {\n      renderDfd.resolve();\n    }\n  }, [renderDfd, transition, state.location, pendingState]);\n\n  // If we get interrupted with a new navigation during a transition, we skip\n  // the active transition, let it cleanup, then kick it off again here\n  React.useEffect(() => {\n    if (!vtContext.isTransitioning && interruption) {\n      setPendingState(interruption.state);\n      setVtContext({\n        isTransitioning: true,\n        flushSync: false,\n        currentLocation: interruption.currentLocation,\n        nextLocation: interruption.nextLocation,\n      });\n      setInterruption(undefined);\n    }\n  }, [vtContext.isTransitioning, interruption]);\n\n  React.useEffect(() => {\n    warning(\n      fallbackElement == null || !router.future.v7_partialHydration,\n      \"`<RouterProvider fallbackElement>` is deprecated when using \" +\n        \"`v7_partialHydration`, use a `HydrateFallback` component instead\"\n    );\n    // Only log this once on initial mount\n    // eslint-disable-next-line react-hooks/exhaustive-deps\n  }, []);\n\n  let navigator = React.useMemo((): Navigator => {\n    return {\n      createHref: router.createHref,\n      encodeLocation: router.encodeLocation,\n      go: (n) => router.navigate(n),\n      push: (to, state, opts) =>\n        router.navigate(to, {\n          state,\n          preventScrollReset: opts?.preventScrollReset,\n        }),\n      replace: (to, state, opts) =>\n        router.navigate(to, {\n          replace: true,\n          state,\n          preventScrollReset: opts?.preventScrollReset,\n        }),\n    };\n  }, [router]);\n\n  let basename = router.basename || \"/\";\n\n  let dataRouterContext = React.useMemo(\n    () => ({\n      router,\n      navigator,\n      static: false,\n      basename,\n    }),\n    [router, navigator, basename]\n  );\n\n  let routerFuture = React.useMemo<RouterProps[\"future\"]>(\n    () => ({\n      v7_relativeSplatPath: router.future.v7_relativeSplatPath,\n    }),\n    [router.future.v7_relativeSplatPath]\n  );\n\n  React.useEffect(\n    () => logV6DeprecationWarnings(future, router.future),\n    [future, router.future]\n  );\n\n  // The fragment and {null} here are important!  We need them to keep React 18's\n  // useId happy when we are server-rendering since we may have a <script> here\n  // containing the hydrated server-side staticContext (from StaticRouterProvider).\n  // useId relies on the component tree structure to generate deterministic id's\n  // so we need to ensure it remains the same on the client even though\n  // we don't need the <script> tag\n  return (\n    <>\n      <DataRouterContext.Provider value={dataRouterContext}>\n        <DataRouterStateContext.Provider value={state}>\n          <FetchersContext.Provider value={fetcherData.current}>\n            <ViewTransitionContext.Provider value={vtContext}>\n              <Router\n                basename={basename}\n                location={state.location}\n                navigationType={state.historyAction}\n                navigator={navigator}\n                future={routerFuture}\n              >\n                {state.initialized || router.future.v7_partialHydration ? (\n                  <MemoizedDataRoutes\n                    routes={router.routes}\n                    future={router.future}\n                    state={state}\n                  />\n                ) : (\n                  fallbackElement\n                )}\n              </Router>\n            </ViewTransitionContext.Provider>\n          </FetchersContext.Provider>\n        </DataRouterStateContext.Provider>\n      </DataRouterContext.Provider>\n      {null}\n    </>\n  );\n}\n\n// Memoize to avoid re-renders when updating `ViewTransitionContext`\nconst MemoizedDataRoutes = React.memo(DataRoutes);\n\nfunction DataRoutes({\n  routes,\n  future,\n  state,\n}: {\n  routes: DataRouteObject[];\n  future: RemixRouter[\"future\"];\n  state: RouterState;\n}): React.ReactElement | null {\n  return useRoutesImpl(routes, undefined, state, future);\n}\n\nexport interface BrowserRouterProps {\n  basename?: string;\n  children?: React.ReactNode;\n  future?: Partial<FutureConfig>;\n  window?: Window;\n}\n\n/**\n * A `<Router>` for use in web browsers. Provides the cleanest URLs.\n */\nexport function BrowserRouter({\n  basename,\n  children,\n  future,\n  window,\n}: BrowserRouterProps) {\n  let historyRef = React.useRef<BrowserHistory>();\n  if (historyRef.current == null) {\n    historyRef.current = createBrowserHistory({ window, v5Compat: true });\n  }\n\n  let history = historyRef.current;\n  let [state, setStateImpl] = React.useState({\n    action: history.action,\n    location: history.location,\n  });\n  let { v7_startTransition } = future || {};\n  let setState = React.useCallback(\n    (newState: { action: NavigationType; location: Location }) => {\n      v7_startTransition && startTransitionImpl\n        ? startTransitionImpl(() => setStateImpl(newState))\n        : setStateImpl(newState);\n    },\n    [setStateImpl, v7_startTransition]\n  );\n\n  React.useLayoutEffect(() => history.listen(setState), [history, setState]);\n\n  React.useEffect(() => logV6DeprecationWarnings(future), [future]);\n\n  return (\n    <Router\n      basename={basename}\n      children={children}\n      location={state.location}\n      navigationType={state.action}\n      navigator={history}\n      future={future}\n    />\n  );\n}\n\nexport interface HashRouterProps {\n  basename?: string;\n  children?: React.ReactNode;\n  future?: Partial<FutureConfig>;\n  window?: Window;\n}\n\n/**\n * A `<Router>` for use in web browsers. Stores the location in the hash\n * portion of the URL so it is not sent to the server.\n */\nexport function HashRouter({\n  basename,\n  children,\n  future,\n  window,\n}: HashRouterProps) {\n  let historyRef = React.useRef<HashHistory>();\n  if (historyRef.current == null) {\n    historyRef.current = createHashHistory({ window, v5Compat: true });\n  }\n\n  let history = historyRef.current;\n  let [state, setStateImpl] = React.useState({\n    action: history.action,\n    location: history.location,\n  });\n  let { v7_startTransition } = future || {};\n  let setState = React.useCallback(\n    (newState: { action: NavigationType; location: Location }) => {\n      v7_startTransition && startTransitionImpl\n        ? startTransitionImpl(() => setStateImpl(newState))\n        : setStateImpl(newState);\n    },\n    [setStateImpl, v7_startTransition]\n  );\n\n  React.useLayoutEffect(() => history.listen(setState), [history, setState]);\n\n  React.useEffect(() => logV6DeprecationWarnings(future), [future]);\n\n  return (\n    <Router\n      basename={basename}\n      children={children}\n      location={state.location}\n      navigationType={state.action}\n      navigator={history}\n      future={future}\n    />\n  );\n}\n\nexport interface HistoryRouterProps {\n  basename?: string;\n  children?: React.ReactNode;\n  future?: FutureConfig;\n  history: History;\n}\n\n/**\n * A `<Router>` that accepts a pre-instantiated history object. It's important\n * to note that using your own history object is highly discouraged and may add\n * two versions of the history library to your bundles unless you use the same\n * version of the history library that React Router uses internally.\n */\nfunction HistoryRouter({\n  basename,\n  children,\n  future,\n  history,\n}: HistoryRouterProps) {\n  let [state, setStateImpl] = React.useState({\n    action: history.action,\n    location: history.location,\n  });\n  let { v7_startTransition } = future || {};\n  let setState = React.useCallback(\n    (newState: { action: NavigationType; location: Location }) => {\n      v7_startTransition && startTransitionImpl\n        ? startTransitionImpl(() => setStateImpl(newState))\n        : setStateImpl(newState);\n    },\n    [setStateImpl, v7_startTransition]\n  );\n\n  React.useLayoutEffect(() => history.listen(setState), [history, setState]);\n\n  React.useEffect(() => logV6DeprecationWarnings(future), [future]);\n\n  return (\n    <Router\n      basename={basename}\n      children={children}\n      location={state.location}\n      navigationType={state.action}\n      navigator={history}\n      future={future}\n    />\n  );\n}\n\nif (__DEV__) {\n  HistoryRouter.displayName = \"unstable_HistoryRouter\";\n}\n\nexport { HistoryRouter as unstable_HistoryRouter };\n\nexport interface LinkProps\n  extends Omit<React.AnchorHTMLAttributes<HTMLAnchorElement>, \"href\"> {\n  reloadDocument?: boolean;\n  replace?: boolean;\n  state?: any;\n  preventScrollReset?: boolean;\n  relative?: RelativeRoutingType;\n  to: To;\n  viewTransition?: boolean;\n}\n\nconst isBrowser =\n  typeof window !== \"undefined\" &&\n  typeof window.document !== \"undefined\" &&\n  typeof window.document.createElement !== \"undefined\";\n\nconst ABSOLUTE_URL_REGEX = /^(?:[a-z][a-z0-9+.-]*:|\\/\\/)/i;\n\n/**\n * The public API for rendering a history-aware `<a>`.\n */\nexport const Link = React.forwardRef<HTMLAnchorElement, LinkProps>(\n  function LinkWithRef(\n    {\n      onClick,\n      relative,\n      reloadDocument,\n      replace,\n      state,\n      target,\n      to,\n      preventScrollReset,\n      viewTransition,\n      ...rest\n    },\n    ref\n  ) {\n    let { basename } = React.useContext(NavigationContext);\n\n    // Rendered into <a href> for absolute URLs\n    let absoluteHref;\n    let isExternal = false;\n\n    if (typeof to === \"string\" && ABSOLUTE_URL_REGEX.test(to)) {\n      // Render the absolute href server- and client-side\n      absoluteHref = to;\n\n      // Only check for external origins client-side\n      if (isBrowser) {\n        try {\n          let currentUrl = new URL(window.location.href);\n          let targetUrl = to.startsWith(\"//\")\n            ? new URL(currentUrl.protocol + to)\n            : new URL(to);\n          let path = stripBasename(targetUrl.pathname, basename);\n\n          if (targetUrl.origin === currentUrl.origin && path != null) {\n            // Strip the protocol/origin/basename for same-origin absolute URLs\n            to = path + targetUrl.search + targetUrl.hash;\n          } else {\n            isExternal = true;\n          }\n        } catch (e) {\n          // We can't do external URL detection without a valid URL\n          warning(\n            false,\n            `<Link to=\"${to}\"> contains an invalid URL which will probably break ` +\n              `when clicked - please update to a valid URL path.`\n          );\n        }\n      }\n    }\n\n    // Rendered into <a href> for relative URLs\n    let href = useHref(to, { relative });\n\n    let internalOnClick = useLinkClickHandler(to, {\n      replace,\n      state,\n      target,\n      preventScrollReset,\n      relative,\n      viewTransition,\n    });\n    function handleClick(\n      event: React.MouseEvent<HTMLAnchorElement, MouseEvent>\n    ) {\n      if (onClick) onClick(event);\n      if (!event.defaultPrevented) {\n        internalOnClick(event);\n      }\n    }\n\n    return (\n      // eslint-disable-next-line jsx-a11y/anchor-has-content\n      <a\n        {...rest}\n        href={absoluteHref || href}\n        onClick={isExternal || reloadDocument ? onClick : handleClick}\n        ref={ref}\n        target={target}\n      />\n    );\n  }\n);\n\nif (__DEV__) {\n  Link.displayName = \"Link\";\n}\n\nexport type NavLinkRenderProps = {\n  isActive: boolean;\n  isPending: boolean;\n  isTransitioning: boolean;\n};\n\nexport interface NavLinkProps\n  extends Omit<LinkProps, \"className\" | \"style\" | \"children\"> {\n  children?: React.ReactNode | ((props: NavLinkRenderProps) => React.ReactNode);\n  caseSensitive?: boolean;\n  className?: string | ((props: NavLinkRenderProps) => string | undefined);\n  end?: boolean;\n  style?:\n    | React.CSSProperties\n    | ((props: NavLinkRenderProps) => React.CSSProperties | undefined);\n}\n\n/**\n * A `<Link>` wrapper that knows if it's \"active\" or not.\n */\nexport const NavLink = React.forwardRef<HTMLAnchorElement, NavLinkProps>(\n  function NavLinkWithRef(\n    {\n      \"aria-current\": ariaCurrentProp = \"page\",\n      caseSensitive = false,\n      className: classNameProp = \"\",\n      end = false,\n      style: styleProp,\n      to,\n      viewTransition,\n      children,\n      ...rest\n    },\n    ref\n  ) {\n    let path = useResolvedPath(to, { relative: rest.relative });\n    let location = useLocation();\n    let routerState = React.useContext(DataRouterStateContext);\n    let { navigator, basename } = React.useContext(NavigationContext);\n    let isTransitioning =\n      routerState != null &&\n      // Conditional usage is OK here because the usage of a data router is static\n      // eslint-disable-next-line react-hooks/rules-of-hooks\n      useViewTransitionState(path) &&\n      viewTransition === true;\n\n    let toPathname = navigator.encodeLocation\n      ? navigator.encodeLocation(path).pathname\n      : path.pathname;\n    let locationPathname = location.pathname;\n    let nextLocationPathname =\n      routerState && routerState.navigation && routerState.navigation.location\n        ? routerState.navigation.location.pathname\n        : null;\n\n    if (!caseSensitive) {\n      locationPathname = locationPathname.toLowerCase();\n      nextLocationPathname = nextLocationPathname\n        ? nextLocationPathname.toLowerCase()\n        : null;\n      toPathname = toPathname.toLowerCase();\n    }\n\n    if (nextLocationPathname && basename) {\n      nextLocationPathname =\n        stripBasename(nextLocationPathname, basename) || nextLocationPathname;\n    }\n\n    // If the `to` has a trailing slash, look at that exact spot.  Otherwise,\n    // we're looking for a slash _after_ what's in `to`.  For example:\n    //\n    // <NavLink to=\"/users\"> and <NavLink to=\"/users/\">\n    // both want to look for a / at index 6 to match URL `/users/matt`\n    const endSlashPosition =\n      toPathname !== \"/\" && toPathname.endsWith(\"/\")\n        ? toPathname.length - 1\n        : toPathname.length;\n    let isActive =\n      locationPathname === toPathname ||\n      (!end &&\n        locationPathname.startsWith(toPathname) &&\n        locationPathname.charAt(endSlashPosition) === \"/\");\n\n    let isPending =\n      nextLocationPathname != null &&\n      (nextLocationPathname === toPathname ||\n        (!end &&\n          nextLocationPathname.startsWith(toPathname) &&\n          nextLocationPathname.charAt(toPathname.length) === \"/\"));\n\n    let renderProps = {\n      isActive,\n      isPending,\n      isTransitioning,\n    };\n\n    let ariaCurrent = isActive ? ariaCurrentProp : undefined;\n\n    let className: string | undefined;\n    if (typeof classNameProp === \"function\") {\n      className = classNameProp(renderProps);\n    } else {\n      // If the className prop is not a function, we use a default `active`\n      // class for <NavLink />s that are active. In v5 `active` was the default\n      // value for `activeClassName`, but we are removing that API and can still\n      // use the old default behavior for a cleaner upgrade path and keep the\n      // simple styling rules working as they currently do.\n      className = [\n        classNameProp,\n        isActive ? \"active\" : null,\n        isPending ? \"pending\" : null,\n        isTransitioning ? \"transitioning\" : null,\n      ]\n        .filter(Boolean)\n        .join(\" \");\n    }\n\n    let style =\n      typeof styleProp === \"function\" ? styleProp(renderProps) : styleProp;\n\n    return (\n      <Link\n        {...rest}\n        aria-current={ariaCurrent}\n        className={className}\n        ref={ref}\n        style={style}\n        to={to}\n        viewTransition={viewTransition}\n      >\n        {typeof children === \"function\" ? children(renderProps) : children}\n      </Link>\n    );\n  }\n);\n\nif (__DEV__) {\n  NavLink.displayName = \"NavLink\";\n}\n\n/**\n * Form props shared by navigations and fetchers\n */\ninterface SharedFormProps extends React.FormHTMLAttributes<HTMLFormElement> {\n  /**\n   * The HTTP verb to use when the form is submit. Supports \"get\", \"post\",\n   * \"put\", \"delete\", \"patch\".\n   */\n  method?: HTMLFormMethod;\n\n  /**\n   * `<form encType>` - enhancing beyond the normal string type and limiting\n   * to the built-in browser supported values\n   */\n  encType?:\n    | \"application/x-www-form-urlencoded\"\n    | \"multipart/form-data\"\n    | \"text/plain\";\n\n  /**\n   * Normal `<form action>` but supports React Router's relative paths.\n   */\n  action?: string;\n\n  /**\n   * Determines whether the form action is relative to the route hierarchy or\n   * the pathname.  Use this if you want to opt out of navigating the route\n   * hierarchy and want to instead route based on /-delimited URL segments\n   */\n  relative?: RelativeRoutingType;\n\n  /**\n   * Prevent the scroll position from resetting to the top of the viewport on\n   * completion of the navigation when using the <ScrollRestoration> component\n   */\n  preventScrollReset?: boolean;\n\n  /**\n   * A function to call when the form is submitted. If you call\n   * `event.preventDefault()` then this form will not do anything.\n   */\n  onSubmit?: React.FormEventHandler<HTMLFormElement>;\n}\n\n/**\n * Form props available to fetchers\n */\nexport interface FetcherFormProps extends SharedFormProps {}\n\n/**\n * Form props available to navigations\n */\nexport interface FormProps extends SharedFormProps {\n  /**\n   * Indicate a specific fetcherKey to use when using navigate=false\n   */\n  fetcherKey?: string;\n\n  /**\n   * navigate=false will use a fetcher instead of a navigation\n   */\n  navigate?: boolean;\n\n  /**\n   * Forces a full document navigation instead of a fetch.\n   */\n  reloadDocument?: boolean;\n\n  /**\n   * Replaces the current entry in the browser history stack when the form\n   * navigates. Use this if you don't want the user to be able to click \"back\"\n   * to the page with the form on it.\n   */\n  replace?: boolean;\n\n  /**\n   * State object to add to the history stack entry for this navigation\n   */\n  state?: any;\n\n  /**\n   * Enable view transitions on this Form navigation\n   */\n  viewTransition?: boolean;\n}\n\ntype HTMLSubmitEvent = React.BaseSyntheticEvent<\n  SubmitEvent,\n  Event,\n  HTMLFormElement\n>;\n\ntype HTMLFormSubmitter = HTMLButtonElement | HTMLInputElement;\n\n/**\n * A `@remix-run/router`-aware `<form>`. It behaves like a normal form except\n * that the interaction with the server is with `fetch` instead of new document\n * requests, allowing components to add nicer UX to the page as the form is\n * submitted and returns with data.\n */\nexport const Form = React.forwardRef<HTMLFormElement, FormProps>(\n  (\n    {\n      fetcherKey,\n      navigate,\n      reloadDocument,\n      replace,\n      state,\n      method = defaultMethod,\n      action,\n      onSubmit,\n      relative,\n      preventScrollReset,\n      viewTransition,\n      ...props\n    },\n    forwardedRef\n  ) => {\n    let submit = useSubmit();\n    let formAction = useFormAction(action, { relative });\n    let formMethod: HTMLFormMethod =\n      method.toLowerCase() === \"get\" ? \"get\" : \"post\";\n\n    let submitHandler: React.FormEventHandler<HTMLFormElement> = (event) => {\n      onSubmit && onSubmit(event);\n      if (event.defaultPrevented) return;\n      event.preventDefault();\n\n      let submitter = (event as unknown as HTMLSubmitEvent).nativeEvent\n        .submitter as HTMLFormSubmitter | null;\n\n      let submitMethod =\n        (submitter?.getAttribute(\"formmethod\") as HTMLFormMethod | undefined) ||\n        method;\n\n      submit(submitter || event.currentTarget, {\n        fetcherKey,\n        method: submitMethod,\n        navigate,\n        replace,\n        state,\n        relative,\n        preventScrollReset,\n        viewTransition,\n      });\n    };\n\n    return (\n      <form\n        ref={forwardedRef}\n        method={formMethod}\n        action={formAction}\n        onSubmit={reloadDocument ? onSubmit : submitHandler}\n        {...props}\n      />\n    );\n  }\n);\n\nif (__DEV__) {\n  Form.displayName = \"Form\";\n}\n\nexport interface ScrollRestorationProps {\n  getKey?: GetScrollRestorationKeyFunction;\n  storageKey?: string;\n}\n\n/**\n * This component will emulate the browser's scroll restoration on location\n * changes.\n */\nexport function ScrollRestoration({\n  getKey,\n  storageKey,\n}: ScrollRestorationProps) {\n  useScrollRestoration({ getKey, storageKey });\n  return null;\n}\n\nif (__DEV__) {\n  ScrollRestoration.displayName = \"ScrollRestoration\";\n}\n//#endregion\n\n////////////////////////////////////////////////////////////////////////////////\n//#region Hooks\n////////////////////////////////////////////////////////////////////////////////\n\nenum DataRouterHook {\n  UseScrollRestoration = \"useScrollRestoration\",\n  UseSubmit = \"useSubmit\",\n  UseSubmitFetcher = \"useSubmitFetcher\",\n  UseFetcher = \"useFetcher\",\n  useViewTransitionState = \"useViewTransitionState\",\n}\n\nenum DataRouterStateHook {\n  UseFetcher = \"useFetcher\",\n  UseFetchers = \"useFetchers\",\n  UseScrollRestoration = \"useScrollRestoration\",\n}\n\n// Internal hooks\n\nfunction getDataRouterConsoleError(\n  hookName: DataRouterHook | DataRouterStateHook\n) {\n  return `${hookName} must be used within a data router.  See https://reactrouter.com/v6/routers/picking-a-router.`;\n}\n\nfunction useDataRouterContext(hookName: DataRouterHook) {\n  let ctx = React.useContext(DataRouterContext);\n  invariant(ctx, getDataRouterConsoleError(hookName));\n  return ctx;\n}\n\nfunction useDataRouterState(hookName: DataRouterStateHook) {\n  let state = React.useContext(DataRouterStateContext);\n  invariant(state, getDataRouterConsoleError(hookName));\n  return state;\n}\n\n// External hooks\n\n/**\n * Handles the click behavior for router `<Link>` components. This is useful if\n * you need to create custom `<Link>` components with the same click behavior we\n * use in our exported `<Link>`.\n */\nexport function useLinkClickHandler<E extends Element = HTMLAnchorElement>(\n  to: To,\n  {\n    target,\n    replace: replaceProp,\n    state,\n    preventScrollReset,\n    relative,\n    viewTransition,\n  }: {\n    target?: React.HTMLAttributeAnchorTarget;\n    replace?: boolean;\n    state?: any;\n    preventScrollReset?: boolean;\n    relative?: RelativeRoutingType;\n    viewTransition?: boolean;\n  } = {}\n): (event: React.MouseEvent<E, MouseEvent>) => void {\n  let navigate = useNavigate();\n  let location = useLocation();\n  let path = useResolvedPath(to, { relative });\n\n  return React.useCallback(\n    (event: React.MouseEvent<E, MouseEvent>) => {\n      if (shouldProcessLinkClick(event, target)) {\n        event.preventDefault();\n\n        // If the URL hasn't changed, a regular <a> will do a replace instead of\n        // a push, so do the same here unless the replace prop is explicitly set\n        let replace =\n          replaceProp !== undefined\n            ? replaceProp\n            : createPath(location) === createPath(path);\n\n        navigate(to, {\n          replace,\n          state,\n          preventScrollReset,\n          relative,\n          viewTransition,\n        });\n      }\n    },\n    [\n      location,\n      navigate,\n      path,\n      replaceProp,\n      state,\n      target,\n      to,\n      preventScrollReset,\n      relative,\n      viewTransition,\n    ]\n  );\n}\n\n/**\n * A convenient wrapper for reading and writing search parameters via the\n * URLSearchParams interface.\n */\nexport function useSearchParams(\n  defaultInit?: URLSearchParamsInit\n): [URLSearchParams, SetURLSearchParams] {\n  warning(\n    typeof URLSearchParams !== \"undefined\",\n    `You cannot use the \\`useSearchParams\\` hook in a browser that does not ` +\n      `support the URLSearchParams API. If you need to support Internet ` +\n      `Explorer 11, we recommend you load a polyfill such as ` +\n      `https://github.com/ungap/url-search-params.`\n  );\n\n  let defaultSearchParamsRef = React.useRef(createSearchParams(defaultInit));\n  let hasSetSearchParamsRef = React.useRef(false);\n\n  let location = useLocation();\n  let searchParams = React.useMemo(\n    () =>\n      // Only merge in the defaults if we haven't yet called setSearchParams.\n      // Once we call that we want those to take precedence, otherwise you can't\n      // remove a param with setSearchParams({}) if it has an initial value\n      getSearchParamsForLocation(\n        location.search,\n        hasSetSearchParamsRef.current ? null : defaultSearchParamsRef.current\n      ),\n    [location.search]\n  );\n\n  let navigate = useNavigate();\n  let setSearchParams = React.useCallback<SetURLSearchParams>(\n    (nextInit, navigateOptions) => {\n      const newSearchParams = createSearchParams(\n        typeof nextInit === \"function\" ? nextInit(searchParams) : nextInit\n      );\n      hasSetSearchParamsRef.current = true;\n      navigate(\"?\" + newSearchParams, navigateOptions);\n    },\n    [navigate, searchParams]\n  );\n\n  return [searchParams, setSearchParams];\n}\n\nexport type SetURLSearchParams = (\n  nextInit?:\n    | URLSearchParamsInit\n    | ((prev: URLSearchParams) => URLSearchParamsInit),\n  navigateOpts?: NavigateOptions\n) => void;\n\n/**\n * Submits a HTML `<form>` to the server without reloading the page.\n */\nexport interface SubmitFunction {\n  (\n    /**\n     * Specifies the `<form>` to be submitted to the server, a specific\n     * `<button>` or `<input type=\"submit\">` to use to submit the form, or some\n     * arbitrary data to submit.\n     *\n     * Note: When using a `<button>` its `name` and `value` will also be\n     * included in the form data that is submitted.\n     */\n    target: SubmitTarget,\n\n    /**\n     * Options that override the `<form>`'s own attributes. Required when\n     * submitting arbitrary data without a backing `<form>`.\n     */\n    options?: SubmitOptions\n  ): void;\n}\n\n/**\n * Submits a fetcher `<form>` to the server without reloading the page.\n */\nexport interface FetcherSubmitFunction {\n  (\n    target: SubmitTarget,\n    // Fetchers cannot replace or set state because they are not navigation events\n    options?: FetcherSubmitOptions\n  ): void;\n}\n\nfunction validateClientSideSubmission() {\n  if (typeof document === \"undefined\") {\n    throw new Error(\n      \"You are calling submit during the server render. \" +\n        \"Try calling submit within a `useEffect` or callback instead.\"\n    );\n  }\n}\n\nlet fetcherId = 0;\nlet getUniqueFetcherId = () => `__${String(++fetcherId)}__`;\n\n/**\n * Returns a function that may be used to programmatically submit a form (or\n * some arbitrary data) to the server.\n */\nexport function useSubmit(): SubmitFunction {\n  let { router } = useDataRouterContext(DataRouterHook.UseSubmit);\n  let { basename } = React.useContext(NavigationContext);\n  let currentRouteId = useRouteId();\n\n  return React.useCallback<SubmitFunction>(\n    (target, options = {}) => {\n      validateClientSideSubmission();\n\n      let { action, method, encType, formData, body } = getFormSubmissionInfo(\n        target,\n        basename\n      );\n\n      if (options.navigate === false) {\n        let key = options.fetcherKey || getUniqueFetcherId();\n        router.fetch(key, currentRouteId, options.action || action, {\n          preventScrollReset: options.preventScrollReset,\n          formData,\n          body,\n          formMethod: options.method || (method as HTMLFormMethod),\n          formEncType: options.encType || (encType as FormEncType),\n          flushSync: options.flushSync,\n        });\n      } else {\n        router.navigate(options.action || action, {\n          preventScrollReset: options.preventScrollReset,\n          formData,\n          body,\n          formMethod: options.method || (method as HTMLFormMethod),\n          formEncType: options.encType || (encType as FormEncType),\n          replace: options.replace,\n          state: options.state,\n          fromRouteId: currentRouteId,\n          flushSync: options.flushSync,\n          viewTransition: options.viewTransition,\n        });\n      }\n    },\n    [router, basename, currentRouteId]\n  );\n}\n\n// v7: Eventually we should deprecate this entirely in favor of using the\n// router method directly?\nexport function useFormAction(\n  action?: string,\n  { relative }: { relative?: RelativeRoutingType } = {}\n): string {\n  let { basename } = React.useContext(NavigationContext);\n  let routeContext = React.useContext(RouteContext);\n  invariant(routeContext, \"useFormAction must be used inside a RouteContext\");\n\n  let [match] = routeContext.matches.slice(-1);\n  // Shallow clone path so we can modify it below, otherwise we modify the\n  // object referenced by useMemo inside useResolvedPath\n  let path = { ...useResolvedPath(action ? action : \".\", { relative }) };\n\n  // If no action was specified, browsers will persist current search params\n  // when determining the path, so match that behavior\n  // https://github.com/remix-run/remix/issues/927\n  let location = useLocation();\n  if (action == null) {\n    // Safe to write to this directly here since if action was undefined, we\n    // would have called useResolvedPath(\".\") which will never include a search\n    path.search = location.search;\n\n    // When grabbing search params from the URL, remove any included ?index param\n    // since it might not apply to our contextual route.  We add it back based\n    // on match.route.index below\n    let params = new URLSearchParams(path.search);\n    let indexValues = params.getAll(\"index\");\n    let hasNakedIndexParam = indexValues.some((v) => v === \"\");\n    if (hasNakedIndexParam) {\n      params.delete(\"index\");\n      indexValues.filter((v) => v).forEach((v) => params.append(\"index\", v));\n      let qs = params.toString();\n      path.search = qs ? `?${qs}` : \"\";\n    }\n  }\n\n  if ((!action || action === \".\") && match.route.index) {\n    path.search = path.search\n      ? path.search.replace(/^\\?/, \"?index&\")\n      : \"?index\";\n  }\n\n  // If we're operating within a basename, prepend it to the pathname prior\n  // to creating the form action.  If this is a root navigation, then just use\n  // the raw basename which allows the basename to have full control over the\n  // presence of a trailing slash on root actions\n  if (basename !== \"/\") {\n    path.pathname =\n      path.pathname === \"/\" ? basename : joinPaths([basename, path.pathname]);\n  }\n\n  return createPath(path);\n}\n\nexport type FetcherWithComponents<TData> = Fetcher<TData> & {\n  Form: React.ForwardRefExoticComponent<\n    FetcherFormProps & React.RefAttributes<HTMLFormElement>\n  >;\n  submit: FetcherSubmitFunction;\n  load: (href: string, opts?: { flushSync?: boolean }) => void;\n};\n\n// TODO: (v7) Change the useFetcher generic default from `any` to `unknown`\n\n/**\n * Interacts with route loaders and actions without causing a navigation. Great\n * for any interaction that stays on the same page.\n */\nexport function useFetcher<TData = any>({\n  key,\n}: { key?: string } = {}): FetcherWithComponents<TData> {\n  let { router } = useDataRouterContext(DataRouterHook.UseFetcher);\n  let state = useDataRouterState(DataRouterStateHook.UseFetcher);\n  let fetcherData = React.useContext(FetchersContext);\n  let route = React.useContext(RouteContext);\n  let routeId = route.matches[route.matches.length - 1]?.route.id;\n\n  invariant(fetcherData, `useFetcher must be used inside a FetchersContext`);\n  invariant(route, `useFetcher must be used inside a RouteContext`);\n  invariant(\n    routeId != null,\n    `useFetcher can only be used on routes that contain a unique \"id\"`\n  );\n\n  // Fetcher key handling\n  // OK to call conditionally to feature detect `useId`\n  // eslint-disable-next-line react-hooks/rules-of-hooks\n  let defaultKey = useIdImpl ? useIdImpl() : \"\";\n  let [fetcherKey, setFetcherKey] = React.useState<string>(key || defaultKey);\n  if (key && key !== fetcherKey) {\n    setFetcherKey(key);\n  } else if (!fetcherKey) {\n    // We will only fall through here when `useId` is not available\n    setFetcherKey(getUniqueFetcherId());\n  }\n\n  // Registration/cleanup\n  React.useEffect(() => {\n    router.getFetcher(fetcherKey);\n    return () => {\n      // Tell the router we've unmounted - if v7_fetcherPersist is enabled this\n      // will not delete immediately but instead queue up a delete after the\n      // fetcher returns to an `idle` state\n      router.deleteFetcher(fetcherKey);\n    };\n  }, [router, fetcherKey]);\n\n  // Fetcher additions\n  let load = React.useCallback(\n    (href: string, opts?: { flushSync?: boolean }) => {\n      invariant(routeId, \"No routeId available for fetcher.load()\");\n      router.fetch(fetcherKey, routeId, href, opts);\n    },\n    [fetcherKey, routeId, router]\n  );\n\n  let submitImpl = useSubmit();\n  let submit = React.useCallback<FetcherSubmitFunction>(\n    (target, opts) => {\n      submitImpl(target, {\n        ...opts,\n        navigate: false,\n        fetcherKey,\n      });\n    },\n    [fetcherKey, submitImpl]\n  );\n\n  let FetcherForm = React.useMemo(() => {\n    let FetcherForm = React.forwardRef<HTMLFormElement, FetcherFormProps>(\n      (props, ref) => {\n        return (\n          <Form {...props} navigate={false} fetcherKey={fetcherKey} ref={ref} />\n        );\n      }\n    );\n    if (__DEV__) {\n      FetcherForm.displayName = \"fetcher.Form\";\n    }\n    return FetcherForm;\n  }, [fetcherKey]);\n\n  // Exposed FetcherWithComponents\n  let fetcher = state.fetchers.get(fetcherKey) || IDLE_FETCHER;\n  let data = fetcherData.get(fetcherKey);\n  let fetcherWithComponents = React.useMemo(\n    () => ({\n      Form: FetcherForm,\n      submit,\n      load,\n      ...fetcher,\n      data,\n    }),\n    [FetcherForm, submit, load, fetcher, data]\n  );\n\n  return fetcherWithComponents;\n}\n\n/**\n * Provides all fetchers currently on the page. Useful for layouts and parent\n * routes that need to provide pending/optimistic UI regarding the fetch.\n */\nexport function useFetchers(): (Fetcher & { key: string })[] {\n  let state = useDataRouterState(DataRouterStateHook.UseFetchers);\n  return Array.from(state.fetchers.entries()).map(([key, fetcher]) => ({\n    ...fetcher,\n    key,\n  }));\n}\n\nconst SCROLL_RESTORATION_STORAGE_KEY = \"react-router-scroll-positions\";\nlet savedScrollPositions: Record<string, number> = {};\n\n/**\n * When rendered inside a RouterProvider, will restore scroll positions on navigations\n */\nfunction useScrollRestoration({\n  getKey,\n  storageKey,\n}: {\n  getKey?: GetScrollRestorationKeyFunction;\n  storageKey?: string;\n} = {}) {\n  let { router } = useDataRouterContext(DataRouterHook.UseScrollRestoration);\n  let { restoreScrollPosition, preventScrollReset } = useDataRouterState(\n    DataRouterStateHook.UseScrollRestoration\n  );\n  let { basename } = React.useContext(NavigationContext);\n  let location = useLocation();\n  let matches = useMatches();\n  let navigation = useNavigation();\n\n  // Trigger manual scroll restoration while we're active\n  React.useEffect(() => {\n    window.history.scrollRestoration = \"manual\";\n    return () => {\n      window.history.scrollRestoration = \"auto\";\n    };\n  }, []);\n\n  // Save positions on pagehide\n  usePageHide(\n    React.useCallback(() => {\n      if (navigation.state === \"idle\") {\n        let key = (getKey ? getKey(location, matches) : null) || location.key;\n        savedScrollPositions[key] = window.scrollY;\n      }\n      try {\n        sessionStorage.setItem(\n          storageKey || SCROLL_RESTORATION_STORAGE_KEY,\n          JSON.stringify(savedScrollPositions)\n        );\n      } catch (error) {\n        warning(\n          false,\n          `Failed to save scroll positions in sessionStorage, <ScrollRestoration /> will not work properly (${error}).`\n        );\n      }\n      window.history.scrollRestoration = \"auto\";\n    }, [storageKey, getKey, navigation.state, location, matches])\n  );\n\n  // Read in any saved scroll locations\n  if (typeof document !== \"undefined\") {\n    // eslint-disable-next-line react-hooks/rules-of-hooks\n    React.useLayoutEffect(() => {\n      try {\n        let sessionPositions = sessionStorage.getItem(\n          storageKey || SCROLL_RESTORATION_STORAGE_KEY\n        );\n        if (sessionPositions) {\n          savedScrollPositions = JSON.parse(sessionPositions);\n        }\n      } catch (e) {\n        // no-op, use default empty object\n      }\n    }, [storageKey]);\n\n    // Enable scroll restoration in the router\n    // eslint-disable-next-line react-hooks/rules-of-hooks\n    React.useLayoutEffect(() => {\n      let getKeyWithoutBasename: GetScrollRestorationKeyFunction | undefined =\n        getKey && basename !== \"/\"\n          ? (location, matches) =>\n              getKey(\n                // Strip the basename to match useLocation()\n                {\n                  ...location,\n                  pathname:\n                    stripBasename(location.pathname, basename) ||\n                    location.pathname,\n                },\n                matches\n              )\n          : getKey;\n      let disableScrollRestoration = router?.enableScrollRestoration(\n        savedScrollPositions,\n        () => window.scrollY,\n        getKeyWithoutBasename\n      );\n      return () => disableScrollRestoration && disableScrollRestoration();\n    }, [router, basename, getKey]);\n\n    // Restore scrolling when state.restoreScrollPosition changes\n    // eslint-disable-next-line react-hooks/rules-of-hooks\n    React.useLayoutEffect(() => {\n      // Explicit false means don't do anything (used for submissions)\n      if (restoreScrollPosition === false) {\n        return;\n      }\n\n      // been here before, scroll to it\n      if (typeof restoreScrollPosition === \"number\") {\n        window.scrollTo(0, restoreScrollPosition);\n        return;\n      }\n\n      // try to scroll to the hash\n      if (location.hash) {\n        let el = document.getElementById(\n          decodeURIComponent(location.hash.slice(1))\n        );\n        if (el) {\n          el.scrollIntoView();\n          return;\n        }\n      }\n\n      // Don't reset if this navigation opted out\n      if (preventScrollReset === true) {\n        return;\n      }\n\n      // otherwise go to the top on new locations\n      window.scrollTo(0, 0);\n    }, [location, restoreScrollPosition, preventScrollReset]);\n  }\n}\n\nexport { useScrollRestoration as UNSAFE_useScrollRestoration };\n\n/**\n * Setup a callback to be fired on the window's `beforeunload` event. This is\n * useful for saving some data to `window.localStorage` just before the page\n * refreshes.\n *\n * Note: The `callback` argument should be a function created with\n * `React.useCallback()`.\n */\nexport function useBeforeUnload(\n  callback: (event: BeforeUnloadEvent) => any,\n  options?: { capture?: boolean }\n): void {\n  let { capture } = options || {};\n  React.useEffect(() => {\n    let opts = capture != null ? { capture } : undefined;\n    window.addEventListener(\"beforeunload\", callback, opts);\n    return () => {\n      window.removeEventListener(\"beforeunload\", callback, opts);\n    };\n  }, [callback, capture]);\n}\n\n/**\n * Setup a callback to be fired on the window's `pagehide` event. This is\n * useful for saving some data to `window.localStorage` just before the page\n * refreshes.  This event is better supported than beforeunload across browsers.\n *\n * Note: The `callback` argument should be a function created with\n * `React.useCallback()`.\n */\nfunction usePageHide(\n  callback: (event: PageTransitionEvent) => any,\n  options?: { capture?: boolean }\n): void {\n  let { capture } = options || {};\n  React.useEffect(() => {\n    let opts = capture != null ? { capture } : undefined;\n    window.addEventListener(\"pagehide\", callback, opts);\n    return () => {\n      window.removeEventListener(\"pagehide\", callback, opts);\n    };\n  }, [callback, capture]);\n}\n\n/**\n * Wrapper around useBlocker to show a window.confirm prompt to users instead\n * of building a custom UI with useBlocker.\n *\n * Warning: This has *a lot of rough edges* and behaves very differently (and\n * very incorrectly in some cases) across browsers if user click addition\n * back/forward navigations while the confirm is open.  Use at your own risk.\n */\nfunction usePrompt({\n  when,\n  message,\n}: {\n  when: boolean | BlockerFunction;\n  message: string;\n}) {\n  let blocker = useBlocker(when);\n\n  React.useEffect(() => {\n    if (blocker.state === \"blocked\") {\n      let proceed = window.confirm(message);\n      if (proceed) {\n        // This timeout is needed to avoid a weird \"race\" on POP navigations\n        // between the `window.history` revert navigation and the result of\n        // `window.confirm`\n        setTimeout(blocker.proceed, 0);\n      } else {\n        blocker.reset();\n      }\n    }\n  }, [blocker, message]);\n\n  React.useEffect(() => {\n    if (blocker.state === \"blocked\" && !when) {\n      blocker.reset();\n    }\n  }, [blocker, when]);\n}\n\nexport { usePrompt as unstable_usePrompt };\n\n/**\n * Return a boolean indicating if there is an active view transition to the\n * given href.  You can use this value to render CSS classes or viewTransitionName\n * styles onto your elements\n *\n * @param href The destination href\n * @param [opts.relative] Relative routing type (\"route\" | \"path\")\n */\nfunction useViewTransitionState(\n  to: To,\n  opts: { relative?: RelativeRoutingType } = {}\n) {\n  let vtContext = React.useContext(ViewTransitionContext);\n\n  invariant(\n    vtContext != null,\n    \"`useViewTransitionState` must be used within `react-router-dom`'s `RouterProvider`.  \" +\n      \"Did you accidentally import `RouterProvider` from `react-router`?\"\n  );\n\n  let { basename } = useDataRouterContext(\n    DataRouterHook.useViewTransitionState\n  );\n  let path = useResolvedPath(to, { relative: opts.relative });\n  if (!vtContext.isTransitioning) {\n    return false;\n  }\n\n  let currentPath =\n    stripBasename(vtContext.currentLocation.pathname, basename) ||\n    vtContext.currentLocation.pathname;\n  let nextPath =\n    stripBasename(vtContext.nextLocation.pathname, basename) ||\n    vtContext.nextLocation.pathname;\n\n  // Transition is active if we're going to or coming from the indicated\n  // destination.  This ensures that other PUSH navigations that reverse\n  // an indicated transition apply.  I.e., on the list view you have:\n  //\n  //   <NavLink to=\"/details/1\" viewTransition>\n  //\n  // If you click the breadcrumb back to the list view:\n  //\n  //   <NavLink to=\"/list\" viewTransition>\n  //\n  // We should apply the transition because it's indicated as active going\n  // from /list -> /details/1 and therefore should be active on the reverse\n  // (even though this isn't strictly a POP reverse)\n  return (\n    matchPath(path.pathname, nextPath) != null ||\n    matchPath(path.pathname, currentPath) != null\n  );\n}\n\nexport { useViewTransitionState as useViewTransitionState };\n\n//#endregion\n"],"names":["defaultMethod","defaultEncType","isHtmlElement","object","tagName","isButtonElement","toLowerCase","isFormElement","isInputElement","isModifiedEvent","event","metaKey","altKey","ctrlKey","shiftKey","shouldProcessLinkClick","target","button","createSearchParams","init","URLSearchParams","Array","isArray","Object","keys","reduce","memo","key","value","concat","map","v","getSearchParamsForLocation","locationSearch","defaultSearchParams","searchParams","forEach","_","has","getAll","append","_formDataSupportsSubmitter","isFormDataSubmitterSupported","FormData","document","createElement","e","supportedFormEncTypes","Set","getFormEncType","encType","process","warning","getFormSubmissionInfo","basename","method","action","formData","body","attr","getAttribute","stripBasename","type","form","Error","name","prefix","undefined","REACT_ROUTER_VERSION","window","__reactRouterVersion","createBrowserRouter","routes","opts","createRouter","future","_extends","v7_prependBasename","history","createBrowserHistory","hydrationData","parseHydrationData","mapRouteProperties","dataStrategy","patchRoutesOnNavigation","initialize","createHashRouter","createHashHistory","_window","state","__staticRouterHydrationData","errors","deserializeErrors","entries","serialized","val","__type","ErrorResponseImpl","status","statusText","data","internal","__subType","ErrorConstructor","error","message","stack","ViewTransitionContext","React","createContext","isTransitioning","displayName","FetchersContext","Map","START_TRANSITION","startTransitionImpl","FLUSH_SYNC","flushSyncImpl","ReactDOM","USE_ID","useIdImpl","startTransitionSafe","cb","flushSyncSafe","Deferred","constructor","promise","Promise","resolve","reject","reason","RouterProvider","_ref","fallbackElement","router","setStateImpl","useState","pendingState","setPendingState","vtContext","setVtContext","renderDfd","setRenderDfd","transition","setTransition","interruption","setInterruption","fetcherData","useRef","v7_startTransition","optInStartTransition","useCallback","setState","newState","_ref2","deletedFetchers","flushSync","viewTransitionOpts","current","delete","fetchers","fetcher","set","isViewTransitionUnavailable","startViewTransition","skipTransition","currentLocation","nextLocation","t","finished","finally","useLayoutEffect","subscribe","useEffect","renderPromise","location","v7_partialHydration","navigator","useMemo","createHref","encodeLocation","go","n","navigate","push","to","preventScrollReset","replace","dataRouterContext","static","routerFuture","v7_relativeSplatPath","logV6DeprecationWarnings","Fragment","DataRouterContext","Provider","DataRouterStateContext","Router","navigationType","historyAction","initialized","MemoizedDataRoutes","DataRoutes","_ref3","useRoutesImpl","BrowserRouter","_ref4","children","historyRef","v5Compat","listen","HashRouter","_ref5","HistoryRouter","_ref6","isBrowser","ABSOLUTE_URL_REGEX","Link","forwardRef","LinkWithRef","_ref7","ref","onClick","relative","reloadDocument","viewTransition","rest","_objectWithoutPropertiesLoose","_excluded","useContext","NavigationContext","absoluteHref","isExternal","test","currentUrl","URL","href","targetUrl","startsWith","protocol","path","pathname","origin","search","hash","useHref","internalOnClick","useLinkClickHandler","handleClick","defaultPrevented","NavLink","NavLinkWithRef","_ref8","ariaCurrentProp","caseSensitive","className","classNameProp","end","style","styleProp","_excluded2","useResolvedPath","useLocation","routerState","useViewTransitionState","toPathname","locationPathname","nextLocationPathname","navigation","endSlashPosition","endsWith","length","isActive","charAt","isPending","renderProps","ariaCurrent","filter","Boolean","join","Form","_ref9","forwardedRef","fetcherKey","onSubmit","props","_excluded3","submit","useSubmit","formAction","useFormAction","formMethod","submitHandler","preventDefault","submitter","nativeEvent","submitMethod","currentTarget","ScrollRestoration","_ref10","getKey","storageKey","useScrollRestoration","DataRouterHook","DataRouterStateHook","getDataRouterConsoleError","hookName","useDataRouterContext","ctx","invariant","useDataRouterState","_temp","replaceProp","useNavigate","createPath","useSearchParams","defaultInit","defaultSearchParamsRef","hasSetSearchParamsRef","setSearchParams","nextInit","navigateOptions","newSearchParams","validateClientSideSubmission","fetcherId","getUniqueFetcherId","String","UseSubmit","currentRouteId","useRouteId","options","fetch","formEncType","fromRouteId","_temp2","routeContext","RouteContext","match","matches","slice","params","indexValues","hasNakedIndexParam","some","qs","toString","route","index","joinPaths","useFetcher","_temp3","_route$matches","UseFetcher","routeId","id","defaultKey","setFetcherKey","getFetcher","deleteFetcher","load","submitImpl","FetcherForm","get","IDLE_FETCHER","fetcherWithComponents","useFetchers","UseFetchers","from","_ref11","SCROLL_RESTORATION_STORAGE_KEY","savedScrollPositions","_temp4","UseScrollRestoration","restoreScrollPosition","useMatches","useNavigation","scrollRestoration","usePageHide","scrollY","sessionStorage","setItem","JSON","stringify","sessionPositions","getItem","parse","getKeyWithoutBasename","disableScrollRestoration","enableScrollRestoration","scrollTo","el","getElementById","decodeURIComponent","scrollIntoView","useBeforeUnload","callback","capture","addEventListener","removeEventListener","usePrompt","_ref12","when","blocker","useBlocker","proceed","confirm","setTimeout","reset","currentPath","nextPath","matchPath"],"mappings":"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"}
  • imaps-frontend/node_modules/react-router-dom/dist/umd/react-router-dom.production.min.js

    rd565449 r0c6b92a  
    11/**
    2  * React Router DOM v6.26.0
     2 * React Router DOM v6.28.0
    33 *
    44 * Copyright (c) Remix Software Inc.
     
    99 * @license MIT
    1010 */
    11 !function(e,t){"object"==typeof exports&&"undefined"!=typeof module?t(exports,require("react"),require("react-dom"),require("react-router"),require("@remix-run/router")):"function"==typeof define&&define.amd?define(["exports","react","react-dom","react-router","@remix-run/router"],t):t((e="undefined"!=typeof globalThis?globalThis:e||self).ReactRouterDOM={},e.React,e.ReactDOM,e.ReactRouter,e.RemixRouter)}(this,(function(e,t,n,r,o){"use strict";function a(e){if(e&&e.__esModule)return e;var t=Object.create(null);return e&&Object.keys(e).forEach((function(n){if("default"!==n){var r=Object.getOwnPropertyDescriptor(e,n);Object.defineProperty(t,n,r.get?r:{enumerable:!0,get:function(){return e[n]}})}})),t.default=e,Object.freeze(t)}var i=a(t),u=a(n);function s(){return s=Object.assign?Object.assign.bind():function(e){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var r in n)Object.prototype.hasOwnProperty.call(n,r)&&(e[r]=n[r])}return e},s.apply(this,arguments)}function c(e,t){if(null==e)return{};var n,r,o={},a=Object.keys(e);for(r=0;r<a.length;r++)n=a[r],t.indexOf(n)>=0||(o[n]=e[n]);return o}const l="get",f="application/x-www-form-urlencoded";function d(e){return null!=e&&"string"==typeof e.tagName}function m(e){return void 0===e&&(e=""),new URLSearchParams("string"==typeof e||Array.isArray(e)||e instanceof URLSearchParams?e:Object.keys(e).reduce(((t,n)=>{let r=e[n];return t.concat(Array.isArray(r)?r.map((e=>[n,e])):[[n,r]])}),[]))}let p=null;const b=new Set(["application/x-www-form-urlencoded","multipart/form-data","text/plain"]);function h(e){return null==e||b.has(e)?e:null}function v(e,t){let n,r,a,i,u;if(d(s=e)&&"form"===s.tagName.toLowerCase()){let u=e.getAttribute("action");r=u?o.stripBasename(u,t):null,n=e.getAttribute("method")||l,a=h(e.getAttribute("enctype"))||f,i=new FormData(e)}else if(function(e){return d(e)&&"button"===e.tagName.toLowerCase()}(e)||function(e){return d(e)&&"input"===e.tagName.toLowerCase()}(e)&&("submit"===e.type||"image"===e.type)){let u=e.form;if(null==u)throw new Error('Cannot submit a <button> or <input type="submit"> without a <form>');let s=e.getAttribute("formaction")||u.getAttribute("action");if(r=s?o.stripBasename(s,t):null,n=e.getAttribute("formmethod")||u.getAttribute("method")||l,a=h(e.getAttribute("formenctype"))||h(u.getAttribute("enctype"))||f,i=new FormData(u,e),!function(){if(null===p)try{new FormData(document.createElement("form"),0),p=!1}catch(e){p=!0}return p}()){let{name:t,type:n,value:r}=e;if("image"===n){let e=t?t+".":"";i.append(e+"x","0"),i.append(e+"y","0")}else t&&i.append(t,r)}}else{if(d(e))throw new Error('Cannot submit element that is not <form>, <button>, or <input type="submit|image">');n=l,r=null,a=f,u=e}var s;return i&&"text/plain"===a&&(u=i,i=void 0),{action:r,method:n.toLowerCase(),encType:a,formData:i,body:u}}const y=["onClick","relative","reloadDocument","replace","state","target","to","preventScrollReset","unstable_viewTransition"],g=["aria-current","caseSensitive","className","end","style","to","unstable_viewTransition","children"],w=["fetcherKey","navigate","reloadDocument","replace","state","method","action","onSubmit","relative","preventScrollReset","unstable_viewTransition"];try{window.__reactRouterVersion="6"}catch(e){}function R(){var e;let t=null==(e=window)?void 0:e.__staticRouterHydrationData;return t&&t.errors&&(t=s({},t,{errors:S(t.errors)})),t}function S(e){if(!e)return null;let t=Object.entries(e),n={};for(let[e,r]of t)if(r&&"RouteErrorResponse"===r.__type)n[e]=new o.UNSAFE_ErrorResponseImpl(r.status,r.statusText,r.data,!0===r.internal);else if(r&&"Error"===r.__type){if(r.__subType){let t=window[r.__subType];if("function"==typeof t)try{let o=new t(r.message);o.stack="",n[e]=o}catch(e){}}if(null==n[e]){let t=new Error(r.message);t.stack="",n[e]=t}}else n[e]=r;return n}const E=i.createContext({isTransitioning:!1}),P=i.createContext(new Map),_=i.startTransition,O=u.flushSync,A=i.useId;function C(e){O?O(e):e()}class j{constructor(){this.status="pending",this.promise=new Promise(((e,t)=>{this.resolve=t=>{"pending"===this.status&&(this.status="resolved",e(t))},this.reject=e=>{"pending"===this.status&&(this.status="rejected",t(e))}}))}}const N=i.memo(x);function x(e){let{routes:t,future:n,state:o}=e;return r.UNSAFE_useRoutesImpl(t,void 0,o,n)}const F="undefined"!=typeof window&&void 0!==window.document&&void 0!==window.document.createElement,L=/^(?:[a-z][a-z0-9+.-]*:|\/\/)/i,T=i.forwardRef((function(e,t){let n,{onClick:a,relative:u,reloadDocument:l,replace:f,state:d,target:m,to:p,preventScrollReset:b,unstable_viewTransition:h}=e,v=c(e,y),{basename:g}=i.useContext(r.UNSAFE_NavigationContext),w=!1;if("string"==typeof p&&L.test(p)&&(n=p,F))try{let e=new URL(window.location.href),t=p.startsWith("//")?new URL(e.protocol+p):new URL(p),n=o.stripBasename(t.pathname,g);t.origin===e.origin&&null!=n?p=n+t.search+t.hash:w=!0}catch(e){}let R=r.useHref(p,{relative:u}),S=I(p,{replace:f,state:d,target:m,preventScrollReset:b,relative:u,unstable_viewTransition:h});return i.createElement("a",s({},v,{href:n||R,onClick:w||l?a:function(e){a&&a(e),e.defaultPrevented||S(e)},ref:t,target:m}))})),U=i.forwardRef((function(e,t){let{"aria-current":n="page",caseSensitive:a=!1,className:u="",end:l=!1,style:f,to:d,unstable_viewTransition:m,children:p}=e,b=c(e,g),h=r.useResolvedPath(d,{relative:b.relative}),v=r.useLocation(),y=i.useContext(r.UNSAFE_DataRouterStateContext),{navigator:w,basename:R}=i.useContext(r.UNSAFE_NavigationContext),S=null!=y&&G(h)&&!0===m,E=w.encodeLocation?w.encodeLocation(h).pathname:h.pathname,P=v.pathname,_=y&&y.navigation&&y.navigation.location?y.navigation.location.pathname:null;a||(P=P.toLowerCase(),_=_?_.toLowerCase():null,E=E.toLowerCase()),_&&R&&(_=o.stripBasename(_,R)||_);const O="/"!==E&&E.endsWith("/")?E.length-1:E.length;let A,C=P===E||!l&&P.startsWith(E)&&"/"===P.charAt(O),j=null!=_&&(_===E||!l&&_.startsWith(E)&&"/"===_.charAt(E.length)),N={isActive:C,isPending:j,isTransitioning:S},x=C?n:void 0;A="function"==typeof u?u(N):[u,C?"active":null,j?"pending":null,S?"transitioning":null].filter(Boolean).join(" ");let F="function"==typeof f?f(N):f;return i.createElement(T,s({},b,{"aria-current":x,className:A,ref:t,style:F,to:d,unstable_viewTransition:m}),"function"==typeof p?p(N):p)})),D=i.forwardRef(((e,t)=>{let{fetcherKey:n,navigate:r,reloadDocument:o,replace:a,state:u,method:f=l,action:d,onSubmit:m,relative:p,preventScrollReset:b,unstable_viewTransition:h}=e,v=c(e,w),y=z(),g=q(d,{relative:p}),R="get"===f.toLowerCase()?"get":"post";return i.createElement("form",s({ref:t,method:R,action:g,onSubmit:o?m:e=>{if(m&&m(e),e.defaultPrevented)return;e.preventDefault();let t=e.nativeEvent.submitter,o=(null==t?void 0:t.getAttribute("formmethod"))||f;y(t||e.currentTarget,{fetcherKey:n,method:o,navigate:r,replace:a,state:u,relative:p,preventScrollReset:b,unstable_viewTransition:h})}},v))}));var k=function(e){return e.UseScrollRestoration="useScrollRestoration",e.UseSubmit="useSubmit",e.UseSubmitFetcher="useSubmitFetcher",e.UseFetcher="useFetcher",e.useViewTransitionState="useViewTransitionState",e}(k||{}),M=function(e){return e.UseFetcher="useFetcher",e.UseFetchers="useFetchers",e.UseScrollRestoration="useScrollRestoration",e}(M||{});function B(e){let t=i.useContext(r.UNSAFE_DataRouterContext);return t||o.UNSAFE_invariant(!1),t}function H(e){let t=i.useContext(r.UNSAFE_DataRouterStateContext);return t||o.UNSAFE_invariant(!1),t}function I(e,t){let{target:n,replace:o,state:a,preventScrollReset:u,relative:s,unstable_viewTransition:c}=void 0===t?{}:t,l=r.useNavigate(),f=r.useLocation(),d=r.useResolvedPath(e,{relative:s});return i.useCallback((t=>{if(function(e,t){return!(0!==e.button||t&&"_self"!==t||function(e){return!!(e.metaKey||e.altKey||e.ctrlKey||e.shiftKey)}(e))}(t,n)){t.preventDefault();let n=void 0!==o?o:r.createPath(f)===r.createPath(d);l(e,{replace:n,state:a,preventScrollReset:u,relative:s,unstable_viewTransition:c})}}),[f,l,d,o,a,n,e,u,s,c])}let K=0,V=()=>"__"+String(++K)+"__";function z(){let{router:e}=B(k.UseSubmit),{basename:t}=i.useContext(r.UNSAFE_NavigationContext),n=r.UNSAFE_useRouteId();return i.useCallback((function(r,o){void 0===o&&(o={}),function(){if("undefined"==typeof document)throw new Error("You are calling submit during the server render. Try calling submit within a `useEffect` or callback instead.")}();let{action:a,method:i,encType:u,formData:s,body:c}=v(r,t);if(!1===o.navigate){let t=o.fetcherKey||V();e.fetch(t,n,o.action||a,{preventScrollReset:o.preventScrollReset,formData:s,body:c,formMethod:o.method||i,formEncType:o.encType||u,unstable_flushSync:o.unstable_flushSync})}else e.navigate(o.action||a,{preventScrollReset:o.preventScrollReset,formData:s,body:c,formMethod:o.method||i,formEncType:o.encType||u,replace:o.replace,state:o.state,fromRouteId:n,unstable_flushSync:o.unstable_flushSync,unstable_viewTransition:o.unstable_viewTransition})}),[e,t,n])}function q(e,t){let{relative:n}=void 0===t?{}:t,{basename:a}=i.useContext(r.UNSAFE_NavigationContext),u=i.useContext(r.UNSAFE_RouteContext);u||o.UNSAFE_invariant(!1);let[c]=u.matches.slice(-1),l=s({},r.useResolvedPath(e||".",{relative:n})),f=r.useLocation();if(null==e){l.search=f.search;let e=new URLSearchParams(l.search);e.has("index")&&""===e.get("index")&&(e.delete("index"),l.search=e.toString()?"?"+e.toString():"")}return e&&"."!==e||!c.route.index||(l.search=l.search?l.search.replace(/^\?/,"?index&"):"?index"),"/"!==a&&(l.pathname="/"===l.pathname?a:o.joinPaths([a,l.pathname])),r.createPath(l)}const W="react-router-scroll-positions";let Y={};function J(e){let{getKey:t,storageKey:n}=void 0===e?{}:e,{router:a}=B(k.UseScrollRestoration),{restoreScrollPosition:u,preventScrollReset:c}=H(M.UseScrollRestoration),{basename:l}=i.useContext(r.UNSAFE_NavigationContext),f=r.useLocation(),d=r.useMatches(),m=r.useNavigation();i.useEffect((()=>(window.history.scrollRestoration="manual",()=>{window.history.scrollRestoration="auto"})),[]),function(e,t){let{capture:n}=t||{};i.useEffect((()=>{let t=null!=n?{capture:n}:void 0;return window.addEventListener("pagehide",e,t),()=>{window.removeEventListener("pagehide",e,t)}}),[e,n])}(i.useCallback((()=>{if("idle"===m.state){let e=(t?t(f,d):null)||f.key;Y[e]=window.scrollY}try{sessionStorage.setItem(n||W,JSON.stringify(Y))}catch(e){}window.history.scrollRestoration="auto"}),[n,t,m.state,f,d])),"undefined"!=typeof document&&(i.useLayoutEffect((()=>{try{let e=sessionStorage.getItem(n||W);e&&(Y=JSON.parse(e))}catch(e){}}),[n]),i.useLayoutEffect((()=>{let e=t&&"/"!==l?(e,n)=>t(s({},e,{pathname:o.stripBasename(e.pathname,l)||e.pathname}),n):t,n=null==a?void 0:a.enableScrollRestoration(Y,(()=>window.scrollY),e);return()=>n&&n()}),[a,l,t]),i.useLayoutEffect((()=>{if(!1!==u)if("number"!=typeof u){if(f.hash){let e=document.getElementById(decodeURIComponent(f.hash.slice(1)));if(e)return void e.scrollIntoView()}!0!==c&&window.scrollTo(0,0)}else window.scrollTo(0,u)}),[f,u,c]))}function G(e,t){void 0===t&&(t={});let n=i.useContext(E);null==n&&o.UNSAFE_invariant(!1);let{basename:a}=B(k.useViewTransitionState),u=r.useResolvedPath(e,{relative:t.relative});if(!n.isTransitioning)return!1;let s=o.stripBasename(n.currentLocation.pathname,a)||n.currentLocation.pathname,c=o.stripBasename(n.nextLocation.pathname,a)||n.nextLocation.pathname;return null!=o.matchPath(u.pathname,c)||null!=o.matchPath(u.pathname,s)}Object.defineProperty(e,"AbortedDeferredError",{enumerable:!0,get:function(){return r.AbortedDeferredError}}),Object.defineProperty(e,"Await",{enumerable:!0,get:function(){return r.Await}}),Object.defineProperty(e,"MemoryRouter",{enumerable:!0,get:function(){return r.MemoryRouter}}),Object.defineProperty(e,"Navigate",{enumerable:!0,get:function(){return r.Navigate}}),Object.defineProperty(e,"NavigationType",{enumerable:!0,get:function(){return r.NavigationType}}),Object.defineProperty(e,"Outlet",{enumerable:!0,get:function(){return r.Outlet}}),Object.defineProperty(e,"Route",{enumerable:!0,get:function(){return r.Route}}),Object.defineProperty(e,"Router",{enumerable:!0,get:function(){return r.Router}}),Object.defineProperty(e,"Routes",{enumerable:!0,get:function(){return r.Routes}}),Object.defineProperty(e,"UNSAFE_DataRouterContext",{enumerable:!0,get:function(){return r.UNSAFE_DataRouterContext}}),Object.defineProperty(e,"UNSAFE_DataRouterStateContext",{enumerable:!0,get:function(){return r.UNSAFE_DataRouterStateContext}}),Object.defineProperty(e,"UNSAFE_LocationContext",{enumerable:!0,get:function(){return r.UNSAFE_LocationContext}}),Object.defineProperty(e,"UNSAFE_NavigationContext",{enumerable:!0,get:function(){return r.UNSAFE_NavigationContext}}),Object.defineProperty(e,"UNSAFE_RouteContext",{enumerable:!0,get:function(){return r.UNSAFE_RouteContext}}),Object.defineProperty(e,"UNSAFE_useRouteId",{enumerable:!0,get:function(){return r.UNSAFE_useRouteId}}),Object.defineProperty(e,"createMemoryRouter",{enumerable:!0,get:function(){return r.createMemoryRouter}}),Object.defineProperty(e,"createPath",{enumerable:!0,get:function(){return r.createPath}}),Object.defineProperty(e,"createRoutesFromChildren",{enumerable:!0,get:function(){return r.createRoutesFromChildren}}),Object.defineProperty(e,"createRoutesFromElements",{enumerable:!0,get:function(){return r.createRoutesFromElements}}),Object.defineProperty(e,"defer",{enumerable:!0,get:function(){return r.defer}}),Object.defineProperty(e,"generatePath",{enumerable:!0,get:function(){return r.generatePath}}),Object.defineProperty(e,"isRouteErrorResponse",{enumerable:!0,get:function(){return r.isRouteErrorResponse}}),Object.defineProperty(e,"json",{enumerable:!0,get:function(){return r.json}}),Object.defineProperty(e,"matchPath",{enumerable:!0,get:function(){return r.matchPath}}),Object.defineProperty(e,"matchRoutes",{enumerable:!0,get:function(){return r.matchRoutes}}),Object.defineProperty(e,"parsePath",{enumerable:!0,get:function(){return r.parsePath}}),Object.defineProperty(e,"redirect",{enumerable:!0,get:function(){return r.redirect}}),Object.defineProperty(e,"redirectDocument",{enumerable:!0,get:function(){return r.redirectDocument}}),Object.defineProperty(e,"renderMatches",{enumerable:!0,get:function(){return r.renderMatches}}),Object.defineProperty(e,"replace",{enumerable:!0,get:function(){return r.replace}}),Object.defineProperty(e,"resolvePath",{enumerable:!0,get:function(){return r.resolvePath}}),Object.defineProperty(e,"useActionData",{enumerable:!0,get:function(){return r.useActionData}}),Object.defineProperty(e,"useAsyncError",{enumerable:!0,get:function(){return r.useAsyncError}}),Object.defineProperty(e,"useAsyncValue",{enumerable:!0,get:function(){return r.useAsyncValue}}),Object.defineProperty(e,"useBlocker",{enumerable:!0,get:function(){return r.useBlocker}}),Object.defineProperty(e,"useHref",{enumerable:!0,get:function(){return r.useHref}}),Object.defineProperty(e,"useInRouterContext",{enumerable:!0,get:function(){return r.useInRouterContext}}),Object.defineProperty(e,"useLoaderData",{enumerable:!0,get:function(){return r.useLoaderData}}),Object.defineProperty(e,"useLocation",{enumerable:!0,get:function(){return r.useLocation}}),Object.defineProperty(e,"useMatch",{enumerable:!0,get:function(){return r.useMatch}}),Object.defineProperty(e,"useMatches",{enumerable:!0,get:function(){return r.useMatches}}),Object.defineProperty(e,"useNavigate",{enumerable:!0,get:function(){return r.useNavigate}}),Object.defineProperty(e,"useNavigation",{enumerable:!0,get:function(){return r.useNavigation}}),Object.defineProperty(e,"useNavigationType",{enumerable:!0,get:function(){return r.useNavigationType}}),Object.defineProperty(e,"useOutlet",{enumerable:!0,get:function(){return r.useOutlet}}),Object.defineProperty(e,"useOutletContext",{enumerable:!0,get:function(){return r.useOutletContext}}),Object.defineProperty(e,"useParams",{enumerable:!0,get:function(){return r.useParams}}),Object.defineProperty(e,"useResolvedPath",{enumerable:!0,get:function(){return r.useResolvedPath}}),Object.defineProperty(e,"useRevalidator",{enumerable:!0,get:function(){return r.useRevalidator}}),Object.defineProperty(e,"useRouteError",{enumerable:!0,get:function(){return r.useRouteError}}),Object.defineProperty(e,"useRouteLoaderData",{enumerable:!0,get:function(){return r.useRouteLoaderData}}),Object.defineProperty(e,"useRoutes",{enumerable:!0,get:function(){return r.useRoutes}}),Object.defineProperty(e,"UNSAFE_ErrorResponseImpl",{enumerable:!0,get:function(){return o.UNSAFE_ErrorResponseImpl}}),e.BrowserRouter=function(e){let{basename:t,children:n,future:a,window:u}=e,s=i.useRef();null==s.current&&(s.current=o.createBrowserHistory({window:u,v5Compat:!0}));let c=s.current,[l,f]=i.useState({action:c.action,location:c.location}),{v7_startTransition:d}=a||{},m=i.useCallback((e=>{d&&_?_((()=>f(e))):f(e)}),[f,d]);return i.useLayoutEffect((()=>c.listen(m)),[c,m]),i.createElement(r.Router,{basename:t,children:n,location:l.location,navigationType:l.action,navigator:c,future:a})},e.Form=D,e.HashRouter=function(e){let{basename:t,children:n,future:a,window:u}=e,s=i.useRef();null==s.current&&(s.current=o.createHashHistory({window:u,v5Compat:!0}));let c=s.current,[l,f]=i.useState({action:c.action,location:c.location}),{v7_startTransition:d}=a||{},m=i.useCallback((e=>{d&&_?_((()=>f(e))):f(e)}),[f,d]);return i.useLayoutEffect((()=>c.listen(m)),[c,m]),i.createElement(r.Router,{basename:t,children:n,location:l.location,navigationType:l.action,navigator:c,future:a})},e.Link=T,e.NavLink=U,e.RouterProvider=function(e){let{fallbackElement:t,router:n,future:o}=e,[a,u]=i.useState(n.state),[s,c]=i.useState(),[l,f]=i.useState({isTransitioning:!1}),[d,m]=i.useState(),[p,b]=i.useState(),[h,v]=i.useState(),y=i.useRef(new Map),{v7_startTransition:g}=o||{},w=i.useCallback((e=>{g?function(e){_?_(e):e()}(e):e()}),[g]),R=i.useCallback(((e,t)=>{let{deletedFetchers:r,unstable_flushSync:o,unstable_viewTransitionOpts:a}=t;r.forEach((e=>y.current.delete(e))),e.fetchers.forEach(((e,t)=>{void 0!==e.data&&y.current.set(t,e.data)}));let i=null==n.window||null==n.window.document||"function"!=typeof n.window.document.startViewTransition;if(a&&!i){if(o){C((()=>{p&&(d&&d.resolve(),p.skipTransition()),f({isTransitioning:!0,flushSync:!0,currentLocation:a.currentLocation,nextLocation:a.nextLocation})}));let t=n.window.document.startViewTransition((()=>{C((()=>u(e)))}));return t.finished.finally((()=>{C((()=>{m(void 0),b(void 0),c(void 0),f({isTransitioning:!1})}))})),void C((()=>b(t)))}p?(d&&d.resolve(),p.skipTransition(),v({state:e,currentLocation:a.currentLocation,nextLocation:a.nextLocation})):(c(e),f({isTransitioning:!0,flushSync:!1,currentLocation:a.currentLocation,nextLocation:a.nextLocation}))}else o?C((()=>u(e))):w((()=>u(e)))}),[n.window,p,d,y,w]);i.useLayoutEffect((()=>n.subscribe(R)),[n,R]),i.useEffect((()=>{l.isTransitioning&&!l.flushSync&&m(new j)}),[l]),i.useEffect((()=>{if(d&&s&&n.window){let e=s,t=d.promise,r=n.window.document.startViewTransition((async()=>{w((()=>u(e))),await t}));r.finished.finally((()=>{m(void 0),b(void 0),c(void 0),f({isTransitioning:!1})})),b(r)}}),[w,s,d,n.window]),i.useEffect((()=>{d&&s&&a.location.key===s.location.key&&d.resolve()}),[d,p,a.location,s]),i.useEffect((()=>{!l.isTransitioning&&h&&(c(h.state),f({isTransitioning:!0,flushSync:!1,currentLocation:h.currentLocation,nextLocation:h.nextLocation}),v(void 0))}),[l.isTransitioning,h]),i.useEffect((()=>{}),[]);let S=i.useMemo((()=>({createHref:n.createHref,encodeLocation:n.encodeLocation,go:e=>n.navigate(e),push:(e,t,r)=>n.navigate(e,{state:t,preventScrollReset:null==r?void 0:r.preventScrollReset}),replace:(e,t,r)=>n.navigate(e,{replace:!0,state:t,preventScrollReset:null==r?void 0:r.preventScrollReset})})),[n]),O=n.basename||"/",A=i.useMemo((()=>({router:n,navigator:S,static:!1,basename:O})),[n,S,O]),x=i.useMemo((()=>({v7_relativeSplatPath:n.future.v7_relativeSplatPath})),[n.future.v7_relativeSplatPath]);return i.createElement(i.Fragment,null,i.createElement(r.UNSAFE_DataRouterContext.Provider,{value:A},i.createElement(r.UNSAFE_DataRouterStateContext.Provider,{value:a},i.createElement(P.Provider,{value:y.current},i.createElement(E.Provider,{value:l},i.createElement(r.Router,{basename:O,location:a.location,navigationType:a.historyAction,navigator:S,future:x},a.initialized||n.future.v7_partialHydration?i.createElement(N,{routes:n.routes,future:n.future,state:a}):t))))),null)},e.ScrollRestoration=function(e){let{getKey:t,storageKey:n}=e;return J({getKey:t,storageKey:n}),null},e.UNSAFE_FetchersContext=P,e.UNSAFE_ViewTransitionContext=E,e.UNSAFE_useScrollRestoration=J,e.createBrowserRouter=function(e,t){return o.createRouter({basename:null==t?void 0:t.basename,future:s({},null==t?void 0:t.future,{v7_prependBasename:!0}),history:o.createBrowserHistory({window:null==t?void 0:t.window}),hydrationData:(null==t?void 0:t.hydrationData)||R(),routes:e,mapRouteProperties:r.UNSAFE_mapRouteProperties,unstable_dataStrategy:null==t?void 0:t.unstable_dataStrategy,unstable_patchRoutesOnMiss:null==t?void 0:t.unstable_patchRoutesOnMiss,window:null==t?void 0:t.window}).initialize()},e.createHashRouter=function(e,t){return o.createRouter({basename:null==t?void 0:t.basename,future:s({},null==t?void 0:t.future,{v7_prependBasename:!0}),history:o.createHashHistory({window:null==t?void 0:t.window}),hydrationData:(null==t?void 0:t.hydrationData)||R(),routes:e,mapRouteProperties:r.UNSAFE_mapRouteProperties,unstable_dataStrategy:null==t?void 0:t.unstable_dataStrategy,unstable_patchRoutesOnMiss:null==t?void 0:t.unstable_patchRoutesOnMiss,window:null==t?void 0:t.window}).initialize()},e.createSearchParams=m,e.unstable_HistoryRouter=function(e){let{basename:t,children:n,future:o,history:a}=e,[u,s]=i.useState({action:a.action,location:a.location}),{v7_startTransition:c}=o||{},l=i.useCallback((e=>{c&&_?_((()=>s(e))):s(e)}),[s,c]);return i.useLayoutEffect((()=>a.listen(l)),[a,l]),i.createElement(r.Router,{basename:t,children:n,location:u.location,navigationType:u.action,navigator:a,future:o})},e.unstable_usePrompt=function(e){let{when:t,message:n}=e,o=r.useBlocker(t);i.useEffect((()=>{if("blocked"===o.state){window.confirm(n)?setTimeout(o.proceed,0):o.reset()}}),[o,n]),i.useEffect((()=>{"blocked"!==o.state||t||o.reset()}),[o,t])},e.unstable_useViewTransitionState=G,e.useBeforeUnload=function(e,t){let{capture:n}=t||{};i.useEffect((()=>{let t=null!=n?{capture:n}:void 0;return window.addEventListener("beforeunload",e,t),()=>{window.removeEventListener("beforeunload",e,t)}}),[e,n])},e.useFetcher=function(e){var t;let{key:n}=void 0===e?{}:e,{router:a}=B(k.UseFetcher),u=H(M.UseFetcher),c=i.useContext(P),l=i.useContext(r.UNSAFE_RouteContext),f=null==(t=l.matches[l.matches.length-1])?void 0:t.route.id;c||o.UNSAFE_invariant(!1),l||o.UNSAFE_invariant(!1),null==f&&o.UNSAFE_invariant(!1);let d=A?A():"",[m,p]=i.useState(n||d);n&&n!==m?p(n):m||p(V()),i.useEffect((()=>(a.getFetcher(m),()=>{a.deleteFetcher(m)})),[a,m]);let b=i.useCallback(((e,t)=>{f||o.UNSAFE_invariant(!1),a.fetch(m,f,e,t)}),[m,f,a]),h=z(),v=i.useCallback(((e,t)=>{h(e,s({},t,{navigate:!1,fetcherKey:m}))}),[m,h]),y=i.useMemo((()=>i.forwardRef(((e,t)=>i.createElement(D,s({},e,{navigate:!1,fetcherKey:m,ref:t}))))),[m]),g=u.fetchers.get(m)||o.IDLE_FETCHER,w=c.get(m);return i.useMemo((()=>s({Form:y,submit:v,load:b},g,{data:w})),[y,v,b,g,w])},e.useFetchers=function(){let e=H(M.UseFetchers);return Array.from(e.fetchers.entries()).map((e=>{let[t,n]=e;return s({},n,{key:t})}))},e.useFormAction=q,e.useLinkClickHandler=I,e.useSearchParams=function(e){let t=i.useRef(m(e)),n=i.useRef(!1),o=r.useLocation(),a=i.useMemo((()=>function(e,t){let n=m(e);return t&&t.forEach(((e,r)=>{n.has(r)||t.getAll(r).forEach((e=>{n.append(r,e)}))})),n}(o.search,n.current?null:t.current)),[o.search]),u=r.useNavigate(),s=i.useCallback(((e,t)=>{const r=m("function"==typeof e?e(a):e);n.current=!0,u("?"+r,t)}),[u,a]);return[a,s]},e.useSubmit=z,Object.defineProperty(e,"__esModule",{value:!0})}));
     11!function(e,t){"object"==typeof exports&&"undefined"!=typeof module?t(exports,require("react"),require("react-dom"),require("react-router"),require("@remix-run/router")):"function"==typeof define&&define.amd?define(["exports","react","react-dom","react-router","@remix-run/router"],t):t((e="undefined"!=typeof globalThis?globalThis:e||self).ReactRouterDOM={},e.React,e.ReactDOM,e.ReactRouter,e.RemixRouter)}(this,(function(e,t,n,r,o){"use strict";function a(e){if(e&&e.__esModule)return e;var t=Object.create(null);return e&&Object.keys(e).forEach((function(n){if("default"!==n){var r=Object.getOwnPropertyDescriptor(e,n);Object.defineProperty(t,n,r.get?r:{enumerable:!0,get:function(){return e[n]}})}})),t.default=e,Object.freeze(t)}var i=a(t),u=a(n);function s(){return s=Object.assign?Object.assign.bind():function(e){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var r in n)Object.prototype.hasOwnProperty.call(n,r)&&(e[r]=n[r])}return e},s.apply(this,arguments)}function c(e,t){if(null==e)return{};var n,r,o={},a=Object.keys(e);for(r=0;r<a.length;r++)n=a[r],t.indexOf(n)>=0||(o[n]=e[n]);return o}const l="get",f="application/x-www-form-urlencoded";function d(e){return null!=e&&"string"==typeof e.tagName}function m(e){return void 0===e&&(e=""),new URLSearchParams("string"==typeof e||Array.isArray(e)||e instanceof URLSearchParams?e:Object.keys(e).reduce(((t,n)=>{let r=e[n];return t.concat(Array.isArray(r)?r.map((e=>[n,e])):[[n,r]])}),[]))}let p=null;const v=new Set(["application/x-www-form-urlencoded","multipart/form-data","text/plain"]);function h(e){return null==e||v.has(e)?e:null}function b(e,t){let n,r,a,i,u;if(d(s=e)&&"form"===s.tagName.toLowerCase()){let u=e.getAttribute("action");r=u?o.stripBasename(u,t):null,n=e.getAttribute("method")||l,a=h(e.getAttribute("enctype"))||f,i=new FormData(e)}else if(function(e){return d(e)&&"button"===e.tagName.toLowerCase()}(e)||function(e){return d(e)&&"input"===e.tagName.toLowerCase()}(e)&&("submit"===e.type||"image"===e.type)){let u=e.form;if(null==u)throw new Error('Cannot submit a <button> or <input type="submit"> without a <form>');let s=e.getAttribute("formaction")||u.getAttribute("action");if(r=s?o.stripBasename(s,t):null,n=e.getAttribute("formmethod")||u.getAttribute("method")||l,a=h(e.getAttribute("formenctype"))||h(u.getAttribute("enctype"))||f,i=new FormData(u,e),!function(){if(null===p)try{new FormData(document.createElement("form"),0),p=!1}catch(e){p=!0}return p}()){let{name:t,type:n,value:r}=e;if("image"===n){let e=t?t+".":"";i.append(e+"x","0"),i.append(e+"y","0")}else t&&i.append(t,r)}}else{if(d(e))throw new Error('Cannot submit element that is not <form>, <button>, or <input type="submit|image">');n=l,r=null,a=f,u=e}var s;return i&&"text/plain"===a&&(u=i,i=void 0),{action:r,method:n.toLowerCase(),encType:a,formData:i,body:u}}const g=["onClick","relative","reloadDocument","replace","state","target","to","preventScrollReset","viewTransition"],y=["aria-current","caseSensitive","className","end","style","to","viewTransition","children"],w=["fetcherKey","navigate","reloadDocument","replace","state","method","action","onSubmit","relative","preventScrollReset","viewTransition"];try{window.__reactRouterVersion="6"}catch(e){}function R(){var e;let t=null==(e=window)?void 0:e.__staticRouterHydrationData;return t&&t.errors&&(t=s({},t,{errors:S(t.errors)})),t}function S(e){if(!e)return null;let t=Object.entries(e),n={};for(let[e,r]of t)if(r&&"RouteErrorResponse"===r.__type)n[e]=new o.UNSAFE_ErrorResponseImpl(r.status,r.statusText,r.data,!0===r.internal);else if(r&&"Error"===r.__type){if(r.__subType){let t=window[r.__subType];if("function"==typeof t)try{let o=new t(r.message);o.stack="",n[e]=o}catch(e){}}if(null==n[e]){let t=new Error(r.message);t.stack="",n[e]=t}}else n[e]=r;return n}const E=i.createContext({isTransitioning:!1}),P=i.createContext(new Map),O=i.startTransition,N=u.flushSync,_=i.useId;function A(e){N?N(e):e()}class F{constructor(){this.status="pending",this.promise=new Promise(((e,t)=>{this.resolve=t=>{"pending"===this.status&&(this.status="resolved",e(t))},this.reject=e=>{"pending"===this.status&&(this.status="rejected",t(e))}}))}}const C=i.memo(j);function j(e){let{routes:t,future:n,state:o}=e;return r.UNSAFE_useRoutesImpl(t,void 0,o,n)}const x="undefined"!=typeof window&&void 0!==window.document&&void 0!==window.document.createElement,U=/^(?:[a-z][a-z0-9+.-]*:|\/\/)/i,L=i.forwardRef((function(e,t){let n,{onClick:a,relative:u,reloadDocument:l,replace:f,state:d,target:m,to:p,preventScrollReset:v,viewTransition:h}=e,b=c(e,g),{basename:y}=i.useContext(r.UNSAFE_NavigationContext),w=!1;if("string"==typeof p&&U.test(p)&&(n=p,x))try{let e=new URL(window.location.href),t=p.startsWith("//")?new URL(e.protocol+p):new URL(p),n=o.stripBasename(t.pathname,y);t.origin===e.origin&&null!=n?p=n+t.search+t.hash:w=!0}catch(e){}let R=r.useHref(p,{relative:u}),S=I(p,{replace:f,state:d,target:m,preventScrollReset:v,relative:u,viewTransition:h});return i.createElement("a",s({},b,{href:n||R,onClick:w||l?a:function(e){a&&a(e),e.defaultPrevented||S(e)},ref:t,target:m}))})),T=i.forwardRef((function(e,t){let{"aria-current":n="page",caseSensitive:a=!1,className:u="",end:l=!1,style:f,to:d,viewTransition:m,children:p}=e,v=c(e,y),h=r.useResolvedPath(d,{relative:v.relative}),b=r.useLocation(),g=i.useContext(r.UNSAFE_DataRouterStateContext),{navigator:w,basename:R}=i.useContext(r.UNSAFE_NavigationContext),S=null!=g&&G(h)&&!0===m,E=w.encodeLocation?w.encodeLocation(h).pathname:h.pathname,P=b.pathname,O=g&&g.navigation&&g.navigation.location?g.navigation.location.pathname:null;a||(P=P.toLowerCase(),O=O?O.toLowerCase():null,E=E.toLowerCase()),O&&R&&(O=o.stripBasename(O,R)||O);const N="/"!==E&&E.endsWith("/")?E.length-1:E.length;let _,A=P===E||!l&&P.startsWith(E)&&"/"===P.charAt(N),F=null!=O&&(O===E||!l&&O.startsWith(E)&&"/"===O.charAt(E.length)),C={isActive:A,isPending:F,isTransitioning:S},j=A?n:void 0;_="function"==typeof u?u(C):[u,A?"active":null,F?"pending":null,S?"transitioning":null].filter(Boolean).join(" ");let x="function"==typeof f?f(C):f;return i.createElement(L,s({},v,{"aria-current":j,className:_,ref:t,style:x,to:d,viewTransition:m}),"function"==typeof p?p(C):p)})),D=i.forwardRef(((e,t)=>{let{fetcherKey:n,navigate:r,reloadDocument:o,replace:a,state:u,method:f=l,action:d,onSubmit:m,relative:p,preventScrollReset:v,viewTransition:h}=e,b=c(e,w),g=W(),y=z(d,{relative:p}),R="get"===f.toLowerCase()?"get":"post";return i.createElement("form",s({ref:t,method:R,action:y,onSubmit:o?m:e=>{if(m&&m(e),e.defaultPrevented)return;e.preventDefault();let t=e.nativeEvent.submitter,o=(null==t?void 0:t.getAttribute("formmethod"))||f;g(t||e.currentTarget,{fetcherKey:n,method:o,navigate:r,replace:a,state:u,relative:p,preventScrollReset:v,viewTransition:h})}},b))}));var k=function(e){return e.UseScrollRestoration="useScrollRestoration",e.UseSubmit="useSubmit",e.UseSubmitFetcher="useSubmitFetcher",e.UseFetcher="useFetcher",e.useViewTransitionState="useViewTransitionState",e}(k||{}),M=function(e){return e.UseFetcher="useFetcher",e.UseFetchers="useFetchers",e.UseScrollRestoration="useScrollRestoration",e}(M||{});function B(e){let t=i.useContext(r.UNSAFE_DataRouterContext);return t||o.UNSAFE_invariant(!1),t}function H(e){let t=i.useContext(r.UNSAFE_DataRouterStateContext);return t||o.UNSAFE_invariant(!1),t}function I(e,t){let{target:n,replace:o,state:a,preventScrollReset:u,relative:s,viewTransition:c}=void 0===t?{}:t,l=r.useNavigate(),f=r.useLocation(),d=r.useResolvedPath(e,{relative:s});return i.useCallback((t=>{if(function(e,t){return!(0!==e.button||t&&"_self"!==t||function(e){return!!(e.metaKey||e.altKey||e.ctrlKey||e.shiftKey)}(e))}(t,n)){t.preventDefault();let n=void 0!==o?o:r.createPath(f)===r.createPath(d);l(e,{replace:n,state:a,preventScrollReset:u,relative:s,viewTransition:c})}}),[f,l,d,o,a,n,e,u,s,c])}let K=0,V=()=>"__"+String(++K)+"__";function W(){let{router:e}=B(k.UseSubmit),{basename:t}=i.useContext(r.UNSAFE_NavigationContext),n=r.UNSAFE_useRouteId();return i.useCallback((function(r,o){void 0===o&&(o={}),function(){if("undefined"==typeof document)throw new Error("You are calling submit during the server render. Try calling submit within a `useEffect` or callback instead.")}();let{action:a,method:i,encType:u,formData:s,body:c}=b(r,t);if(!1===o.navigate){let t=o.fetcherKey||V();e.fetch(t,n,o.action||a,{preventScrollReset:o.preventScrollReset,formData:s,body:c,formMethod:o.method||i,formEncType:o.encType||u,flushSync:o.flushSync})}else e.navigate(o.action||a,{preventScrollReset:o.preventScrollReset,formData:s,body:c,formMethod:o.method||i,formEncType:o.encType||u,replace:o.replace,state:o.state,fromRouteId:n,flushSync:o.flushSync,viewTransition:o.viewTransition})}),[e,t,n])}function z(e,t){let{relative:n}=void 0===t?{}:t,{basename:a}=i.useContext(r.UNSAFE_NavigationContext),u=i.useContext(r.UNSAFE_RouteContext);u||o.UNSAFE_invariant(!1);let[c]=u.matches.slice(-1),l=s({},r.useResolvedPath(e||".",{relative:n})),f=r.useLocation();if(null==e){l.search=f.search;let e=new URLSearchParams(l.search),t=e.getAll("index");if(t.some((e=>""===e))){e.delete("index"),t.filter((e=>e)).forEach((t=>e.append("index",t)));let n=e.toString();l.search=n?"?"+n:""}}return e&&"."!==e||!c.route.index||(l.search=l.search?l.search.replace(/^\?/,"?index&"):"?index"),"/"!==a&&(l.pathname="/"===l.pathname?a:o.joinPaths([a,l.pathname])),r.createPath(l)}const q="react-router-scroll-positions";let Y={};function J(e){let{getKey:t,storageKey:n}=void 0===e?{}:e,{router:a}=B(k.UseScrollRestoration),{restoreScrollPosition:u,preventScrollReset:c}=H(M.UseScrollRestoration),{basename:l}=i.useContext(r.UNSAFE_NavigationContext),f=r.useLocation(),d=r.useMatches(),m=r.useNavigation();i.useEffect((()=>(window.history.scrollRestoration="manual",()=>{window.history.scrollRestoration="auto"})),[]),function(e,t){let{capture:n}=t||{};i.useEffect((()=>{let t=null!=n?{capture:n}:void 0;return window.addEventListener("pagehide",e,t),()=>{window.removeEventListener("pagehide",e,t)}}),[e,n])}(i.useCallback((()=>{if("idle"===m.state){let e=(t?t(f,d):null)||f.key;Y[e]=window.scrollY}try{sessionStorage.setItem(n||q,JSON.stringify(Y))}catch(e){}window.history.scrollRestoration="auto"}),[n,t,m.state,f,d])),"undefined"!=typeof document&&(i.useLayoutEffect((()=>{try{let e=sessionStorage.getItem(n||q);e&&(Y=JSON.parse(e))}catch(e){}}),[n]),i.useLayoutEffect((()=>{let e=t&&"/"!==l?(e,n)=>t(s({},e,{pathname:o.stripBasename(e.pathname,l)||e.pathname}),n):t,n=null==a?void 0:a.enableScrollRestoration(Y,(()=>window.scrollY),e);return()=>n&&n()}),[a,l,t]),i.useLayoutEffect((()=>{if(!1!==u)if("number"!=typeof u){if(f.hash){let e=document.getElementById(decodeURIComponent(f.hash.slice(1)));if(e)return void e.scrollIntoView()}!0!==c&&window.scrollTo(0,0)}else window.scrollTo(0,u)}),[f,u,c]))}function G(e,t){void 0===t&&(t={});let n=i.useContext(E);null==n&&o.UNSAFE_invariant(!1);let{basename:a}=B(k.useViewTransitionState),u=r.useResolvedPath(e,{relative:t.relative});if(!n.isTransitioning)return!1;let s=o.stripBasename(n.currentLocation.pathname,a)||n.currentLocation.pathname,c=o.stripBasename(n.nextLocation.pathname,a)||n.nextLocation.pathname;return null!=o.matchPath(u.pathname,c)||null!=o.matchPath(u.pathname,s)}Object.defineProperty(e,"AbortedDeferredError",{enumerable:!0,get:function(){return r.AbortedDeferredError}}),Object.defineProperty(e,"Await",{enumerable:!0,get:function(){return r.Await}}),Object.defineProperty(e,"MemoryRouter",{enumerable:!0,get:function(){return r.MemoryRouter}}),Object.defineProperty(e,"Navigate",{enumerable:!0,get:function(){return r.Navigate}}),Object.defineProperty(e,"NavigationType",{enumerable:!0,get:function(){return r.NavigationType}}),Object.defineProperty(e,"Outlet",{enumerable:!0,get:function(){return r.Outlet}}),Object.defineProperty(e,"Route",{enumerable:!0,get:function(){return r.Route}}),Object.defineProperty(e,"Router",{enumerable:!0,get:function(){return r.Router}}),Object.defineProperty(e,"Routes",{enumerable:!0,get:function(){return r.Routes}}),Object.defineProperty(e,"UNSAFE_DataRouterContext",{enumerable:!0,get:function(){return r.UNSAFE_DataRouterContext}}),Object.defineProperty(e,"UNSAFE_DataRouterStateContext",{enumerable:!0,get:function(){return r.UNSAFE_DataRouterStateContext}}),Object.defineProperty(e,"UNSAFE_LocationContext",{enumerable:!0,get:function(){return r.UNSAFE_LocationContext}}),Object.defineProperty(e,"UNSAFE_NavigationContext",{enumerable:!0,get:function(){return r.UNSAFE_NavigationContext}}),Object.defineProperty(e,"UNSAFE_RouteContext",{enumerable:!0,get:function(){return r.UNSAFE_RouteContext}}),Object.defineProperty(e,"UNSAFE_useRouteId",{enumerable:!0,get:function(){return r.UNSAFE_useRouteId}}),Object.defineProperty(e,"createMemoryRouter",{enumerable:!0,get:function(){return r.createMemoryRouter}}),Object.defineProperty(e,"createPath",{enumerable:!0,get:function(){return r.createPath}}),Object.defineProperty(e,"createRoutesFromChildren",{enumerable:!0,get:function(){return r.createRoutesFromChildren}}),Object.defineProperty(e,"createRoutesFromElements",{enumerable:!0,get:function(){return r.createRoutesFromElements}}),Object.defineProperty(e,"defer",{enumerable:!0,get:function(){return r.defer}}),Object.defineProperty(e,"generatePath",{enumerable:!0,get:function(){return r.generatePath}}),Object.defineProperty(e,"isRouteErrorResponse",{enumerable:!0,get:function(){return r.isRouteErrorResponse}}),Object.defineProperty(e,"json",{enumerable:!0,get:function(){return r.json}}),Object.defineProperty(e,"matchPath",{enumerable:!0,get:function(){return r.matchPath}}),Object.defineProperty(e,"matchRoutes",{enumerable:!0,get:function(){return r.matchRoutes}}),Object.defineProperty(e,"parsePath",{enumerable:!0,get:function(){return r.parsePath}}),Object.defineProperty(e,"redirect",{enumerable:!0,get:function(){return r.redirect}}),Object.defineProperty(e,"redirectDocument",{enumerable:!0,get:function(){return r.redirectDocument}}),Object.defineProperty(e,"renderMatches",{enumerable:!0,get:function(){return r.renderMatches}}),Object.defineProperty(e,"replace",{enumerable:!0,get:function(){return r.replace}}),Object.defineProperty(e,"resolvePath",{enumerable:!0,get:function(){return r.resolvePath}}),Object.defineProperty(e,"useActionData",{enumerable:!0,get:function(){return r.useActionData}}),Object.defineProperty(e,"useAsyncError",{enumerable:!0,get:function(){return r.useAsyncError}}),Object.defineProperty(e,"useAsyncValue",{enumerable:!0,get:function(){return r.useAsyncValue}}),Object.defineProperty(e,"useBlocker",{enumerable:!0,get:function(){return r.useBlocker}}),Object.defineProperty(e,"useHref",{enumerable:!0,get:function(){return r.useHref}}),Object.defineProperty(e,"useInRouterContext",{enumerable:!0,get:function(){return r.useInRouterContext}}),Object.defineProperty(e,"useLoaderData",{enumerable:!0,get:function(){return r.useLoaderData}}),Object.defineProperty(e,"useLocation",{enumerable:!0,get:function(){return r.useLocation}}),Object.defineProperty(e,"useMatch",{enumerable:!0,get:function(){return r.useMatch}}),Object.defineProperty(e,"useMatches",{enumerable:!0,get:function(){return r.useMatches}}),Object.defineProperty(e,"useNavigate",{enumerable:!0,get:function(){return r.useNavigate}}),Object.defineProperty(e,"useNavigation",{enumerable:!0,get:function(){return r.useNavigation}}),Object.defineProperty(e,"useNavigationType",{enumerable:!0,get:function(){return r.useNavigationType}}),Object.defineProperty(e,"useOutlet",{enumerable:!0,get:function(){return r.useOutlet}}),Object.defineProperty(e,"useOutletContext",{enumerable:!0,get:function(){return r.useOutletContext}}),Object.defineProperty(e,"useParams",{enumerable:!0,get:function(){return r.useParams}}),Object.defineProperty(e,"useResolvedPath",{enumerable:!0,get:function(){return r.useResolvedPath}}),Object.defineProperty(e,"useRevalidator",{enumerable:!0,get:function(){return r.useRevalidator}}),Object.defineProperty(e,"useRouteError",{enumerable:!0,get:function(){return r.useRouteError}}),Object.defineProperty(e,"useRouteLoaderData",{enumerable:!0,get:function(){return r.useRouteLoaderData}}),Object.defineProperty(e,"useRoutes",{enumerable:!0,get:function(){return r.useRoutes}}),Object.defineProperty(e,"UNSAFE_ErrorResponseImpl",{enumerable:!0,get:function(){return o.UNSAFE_ErrorResponseImpl}}),e.BrowserRouter=function(e){let{basename:t,children:n,future:a,window:u}=e,s=i.useRef();null==s.current&&(s.current=o.createBrowserHistory({window:u,v5Compat:!0}));let c=s.current,[l,f]=i.useState({action:c.action,location:c.location}),{v7_startTransition:d}=a||{},m=i.useCallback((e=>{d&&O?O((()=>f(e))):f(e)}),[f,d]);return i.useLayoutEffect((()=>c.listen(m)),[c,m]),i.useEffect((()=>r.UNSAFE_logV6DeprecationWarnings(a)),[a]),i.createElement(r.Router,{basename:t,children:n,location:l.location,navigationType:l.action,navigator:c,future:a})},e.Form=D,e.HashRouter=function(e){let{basename:t,children:n,future:a,window:u}=e,s=i.useRef();null==s.current&&(s.current=o.createHashHistory({window:u,v5Compat:!0}));let c=s.current,[l,f]=i.useState({action:c.action,location:c.location}),{v7_startTransition:d}=a||{},m=i.useCallback((e=>{d&&O?O((()=>f(e))):f(e)}),[f,d]);return i.useLayoutEffect((()=>c.listen(m)),[c,m]),i.useEffect((()=>r.UNSAFE_logV6DeprecationWarnings(a)),[a]),i.createElement(r.Router,{basename:t,children:n,location:l.location,navigationType:l.action,navigator:c,future:a})},e.Link=L,e.NavLink=T,e.RouterProvider=function(e){let{fallbackElement:t,router:n,future:o}=e,[a,u]=i.useState(n.state),[s,c]=i.useState(),[l,f]=i.useState({isTransitioning:!1}),[d,m]=i.useState(),[p,v]=i.useState(),[h,b]=i.useState(),g=i.useRef(new Map),{v7_startTransition:y}=o||{},w=i.useCallback((e=>{y?function(e){O?O(e):e()}(e):e()}),[y]),R=i.useCallback(((e,t)=>{let{deletedFetchers:r,flushSync:o,viewTransitionOpts:a}=t;r.forEach((e=>g.current.delete(e))),e.fetchers.forEach(((e,t)=>{void 0!==e.data&&g.current.set(t,e.data)}));let i=null==n.window||null==n.window.document||"function"!=typeof n.window.document.startViewTransition;if(a&&!i){if(o){A((()=>{p&&(d&&d.resolve(),p.skipTransition()),f({isTransitioning:!0,flushSync:!0,currentLocation:a.currentLocation,nextLocation:a.nextLocation})}));let t=n.window.document.startViewTransition((()=>{A((()=>u(e)))}));return t.finished.finally((()=>{A((()=>{m(void 0),v(void 0),c(void 0),f({isTransitioning:!1})}))})),void A((()=>v(t)))}p?(d&&d.resolve(),p.skipTransition(),b({state:e,currentLocation:a.currentLocation,nextLocation:a.nextLocation})):(c(e),f({isTransitioning:!0,flushSync:!1,currentLocation:a.currentLocation,nextLocation:a.nextLocation}))}else o?A((()=>u(e))):w((()=>u(e)))}),[n.window,p,d,g,w]);i.useLayoutEffect((()=>n.subscribe(R)),[n,R]),i.useEffect((()=>{l.isTransitioning&&!l.flushSync&&m(new F)}),[l]),i.useEffect((()=>{if(d&&s&&n.window){let e=s,t=d.promise,r=n.window.document.startViewTransition((async()=>{w((()=>u(e))),await t}));r.finished.finally((()=>{m(void 0),v(void 0),c(void 0),f({isTransitioning:!1})})),v(r)}}),[w,s,d,n.window]),i.useEffect((()=>{d&&s&&a.location.key===s.location.key&&d.resolve()}),[d,p,a.location,s]),i.useEffect((()=>{!l.isTransitioning&&h&&(c(h.state),f({isTransitioning:!0,flushSync:!1,currentLocation:h.currentLocation,nextLocation:h.nextLocation}),b(void 0))}),[l.isTransitioning,h]),i.useEffect((()=>{}),[]);let S=i.useMemo((()=>({createHref:n.createHref,encodeLocation:n.encodeLocation,go:e=>n.navigate(e),push:(e,t,r)=>n.navigate(e,{state:t,preventScrollReset:null==r?void 0:r.preventScrollReset}),replace:(e,t,r)=>n.navigate(e,{replace:!0,state:t,preventScrollReset:null==r?void 0:r.preventScrollReset})})),[n]),N=n.basename||"/",_=i.useMemo((()=>({router:n,navigator:S,static:!1,basename:N})),[n,S,N]),j=i.useMemo((()=>({v7_relativeSplatPath:n.future.v7_relativeSplatPath})),[n.future.v7_relativeSplatPath]);return i.useEffect((()=>r.UNSAFE_logV6DeprecationWarnings(o,n.future)),[o,n.future]),i.createElement(i.Fragment,null,i.createElement(r.UNSAFE_DataRouterContext.Provider,{value:_},i.createElement(r.UNSAFE_DataRouterStateContext.Provider,{value:a},i.createElement(P.Provider,{value:g.current},i.createElement(E.Provider,{value:l},i.createElement(r.Router,{basename:N,location:a.location,navigationType:a.historyAction,navigator:S,future:j},a.initialized||n.future.v7_partialHydration?i.createElement(C,{routes:n.routes,future:n.future,state:a}):t))))),null)},e.ScrollRestoration=function(e){let{getKey:t,storageKey:n}=e;return J({getKey:t,storageKey:n}),null},e.UNSAFE_FetchersContext=P,e.UNSAFE_ViewTransitionContext=E,e.UNSAFE_useScrollRestoration=J,e.createBrowserRouter=function(e,t){return o.createRouter({basename:null==t?void 0:t.basename,future:s({},null==t?void 0:t.future,{v7_prependBasename:!0}),history:o.createBrowserHistory({window:null==t?void 0:t.window}),hydrationData:(null==t?void 0:t.hydrationData)||R(),routes:e,mapRouteProperties:r.UNSAFE_mapRouteProperties,dataStrategy:null==t?void 0:t.dataStrategy,patchRoutesOnNavigation:null==t?void 0:t.patchRoutesOnNavigation,window:null==t?void 0:t.window}).initialize()},e.createHashRouter=function(e,t){return o.createRouter({basename:null==t?void 0:t.basename,future:s({},null==t?void 0:t.future,{v7_prependBasename:!0}),history:o.createHashHistory({window:null==t?void 0:t.window}),hydrationData:(null==t?void 0:t.hydrationData)||R(),routes:e,mapRouteProperties:r.UNSAFE_mapRouteProperties,dataStrategy:null==t?void 0:t.dataStrategy,patchRoutesOnNavigation:null==t?void 0:t.patchRoutesOnNavigation,window:null==t?void 0:t.window}).initialize()},e.createSearchParams=m,e.unstable_HistoryRouter=function(e){let{basename:t,children:n,future:o,history:a}=e,[u,s]=i.useState({action:a.action,location:a.location}),{v7_startTransition:c}=o||{},l=i.useCallback((e=>{c&&O?O((()=>s(e))):s(e)}),[s,c]);return i.useLayoutEffect((()=>a.listen(l)),[a,l]),i.useEffect((()=>r.UNSAFE_logV6DeprecationWarnings(o)),[o]),i.createElement(r.Router,{basename:t,children:n,location:u.location,navigationType:u.action,navigator:a,future:o})},e.unstable_usePrompt=function(e){let{when:t,message:n}=e,o=r.useBlocker(t);i.useEffect((()=>{if("blocked"===o.state){window.confirm(n)?setTimeout(o.proceed,0):o.reset()}}),[o,n]),i.useEffect((()=>{"blocked"!==o.state||t||o.reset()}),[o,t])},e.useBeforeUnload=function(e,t){let{capture:n}=t||{};i.useEffect((()=>{let t=null!=n?{capture:n}:void 0;return window.addEventListener("beforeunload",e,t),()=>{window.removeEventListener("beforeunload",e,t)}}),[e,n])},e.useFetcher=function(e){var t;let{key:n}=void 0===e?{}:e,{router:a}=B(k.UseFetcher),u=H(M.UseFetcher),c=i.useContext(P),l=i.useContext(r.UNSAFE_RouteContext),f=null==(t=l.matches[l.matches.length-1])?void 0:t.route.id;c||o.UNSAFE_invariant(!1),l||o.UNSAFE_invariant(!1),null==f&&o.UNSAFE_invariant(!1);let d=_?_():"",[m,p]=i.useState(n||d);n&&n!==m?p(n):m||p(V()),i.useEffect((()=>(a.getFetcher(m),()=>{a.deleteFetcher(m)})),[a,m]);let v=i.useCallback(((e,t)=>{f||o.UNSAFE_invariant(!1),a.fetch(m,f,e,t)}),[m,f,a]),h=W(),b=i.useCallback(((e,t)=>{h(e,s({},t,{navigate:!1,fetcherKey:m}))}),[m,h]),g=i.useMemo((()=>i.forwardRef(((e,t)=>i.createElement(D,s({},e,{navigate:!1,fetcherKey:m,ref:t}))))),[m]),y=u.fetchers.get(m)||o.IDLE_FETCHER,w=c.get(m);return i.useMemo((()=>s({Form:g,submit:b,load:v},y,{data:w})),[g,b,v,y,w])},e.useFetchers=function(){let e=H(M.UseFetchers);return Array.from(e.fetchers.entries()).map((e=>{let[t,n]=e;return s({},n,{key:t})}))},e.useFormAction=z,e.useLinkClickHandler=I,e.useSearchParams=function(e){let t=i.useRef(m(e)),n=i.useRef(!1),o=r.useLocation(),a=i.useMemo((()=>function(e,t){let n=m(e);return t&&t.forEach(((e,r)=>{n.has(r)||t.getAll(r).forEach((e=>{n.append(r,e)}))})),n}(o.search,n.current?null:t.current)),[o.search]),u=r.useNavigate(),s=i.useCallback(((e,t)=>{const r=m("function"==typeof e?e(a):e);n.current=!0,u("?"+r,t)}),[u,a]);return[a,s]},e.useSubmit=W,e.useViewTransitionState=G,Object.defineProperty(e,"__esModule",{value:!0})}));
    1212//# sourceMappingURL=react-router-dom.production.min.js.map
  • imaps-frontend/node_modules/react-router-dom/dist/umd/react-router-dom.production.min.js.map

    rd565449 r0c6b92a  
    1 {"version":3,"file":"react-router-dom.production.min.js","sources":["../../dom.ts","../../index.tsx"],"sourcesContent":["import type {\n  FormEncType,\n  HTMLFormMethod,\n  RelativeRoutingType,\n} from \"@remix-run/router\";\nimport { stripBasename, UNSAFE_warning as warning } from \"@remix-run/router\";\n\nexport const defaultMethod: HTMLFormMethod = \"get\";\nconst defaultEncType: FormEncType = \"application/x-www-form-urlencoded\";\n\nexport function isHtmlElement(object: any): object is HTMLElement {\n  return object != null && typeof object.tagName === \"string\";\n}\n\nexport function isButtonElement(object: any): object is HTMLButtonElement {\n  return isHtmlElement(object) && object.tagName.toLowerCase() === \"button\";\n}\n\nexport function isFormElement(object: any): object is HTMLFormElement {\n  return isHtmlElement(object) && object.tagName.toLowerCase() === \"form\";\n}\n\nexport function isInputElement(object: any): object is HTMLInputElement {\n  return isHtmlElement(object) && object.tagName.toLowerCase() === \"input\";\n}\n\ntype LimitedMouseEvent = Pick<\n  MouseEvent,\n  \"button\" | \"metaKey\" | \"altKey\" | \"ctrlKey\" | \"shiftKey\"\n>;\n\nfunction isModifiedEvent(event: LimitedMouseEvent) {\n  return !!(event.metaKey || event.altKey || event.ctrlKey || event.shiftKey);\n}\n\nexport function shouldProcessLinkClick(\n  event: LimitedMouseEvent,\n  target?: string\n) {\n  return (\n    event.button === 0 && // Ignore everything but left clicks\n    (!target || target === \"_self\") && // Let browser handle \"target=_blank\" etc.\n    !isModifiedEvent(event) // Ignore clicks with modifier keys\n  );\n}\n\nexport type ParamKeyValuePair = [string, string];\n\nexport type URLSearchParamsInit =\n  | string\n  | ParamKeyValuePair[]\n  | Record<string, string | string[]>\n  | URLSearchParams;\n\n/**\n * Creates a URLSearchParams object using the given initializer.\n *\n * This is identical to `new URLSearchParams(init)` except it also\n * supports arrays as values in the object form of the initializer\n * instead of just strings. This is convenient when you need multiple\n * values for a given key, but don't want to use an array initializer.\n *\n * For example, instead of:\n *\n *   let searchParams = new URLSearchParams([\n *     ['sort', 'name'],\n *     ['sort', 'price']\n *   ]);\n *\n * you can do:\n *\n *   let searchParams = createSearchParams({\n *     sort: ['name', 'price']\n *   });\n */\nexport function createSearchParams(\n  init: URLSearchParamsInit = \"\"\n): URLSearchParams {\n  return new URLSearchParams(\n    typeof init === \"string\" ||\n    Array.isArray(init) ||\n    init instanceof URLSearchParams\n      ? init\n      : Object.keys(init).reduce((memo, key) => {\n          let value = init[key];\n          return memo.concat(\n            Array.isArray(value) ? value.map((v) => [key, v]) : [[key, value]]\n          );\n        }, [] as ParamKeyValuePair[])\n  );\n}\n\nexport function getSearchParamsForLocation(\n  locationSearch: string,\n  defaultSearchParams: URLSearchParams | null\n) {\n  let searchParams = createSearchParams(locationSearch);\n\n  if (defaultSearchParams) {\n    // Use `defaultSearchParams.forEach(...)` here instead of iterating of\n    // `defaultSearchParams.keys()` to work-around a bug in Firefox related to\n    // web extensions. Relevant Bugzilla tickets:\n    // https://bugzilla.mozilla.org/show_bug.cgi?id=1414602\n    // https://bugzilla.mozilla.org/show_bug.cgi?id=1023984\n    defaultSearchParams.forEach((_, key) => {\n      if (!searchParams.has(key)) {\n        defaultSearchParams.getAll(key).forEach((value) => {\n          searchParams.append(key, value);\n        });\n      }\n    });\n  }\n\n  return searchParams;\n}\n\n// Thanks https://github.com/sindresorhus/type-fest!\ntype JsonObject = { [Key in string]: JsonValue } & {\n  [Key in string]?: JsonValue | undefined;\n};\ntype JsonArray = JsonValue[] | readonly JsonValue[];\ntype JsonPrimitive = string | number | boolean | null;\ntype JsonValue = JsonPrimitive | JsonObject | JsonArray;\n\nexport type SubmitTarget =\n  | HTMLFormElement\n  | HTMLButtonElement\n  | HTMLInputElement\n  | FormData\n  | URLSearchParams\n  | JsonValue\n  | null;\n\n// One-time check for submitter support\nlet _formDataSupportsSubmitter: boolean | null = null;\n\nfunction isFormDataSubmitterSupported() {\n  if (_formDataSupportsSubmitter === null) {\n    try {\n      new FormData(\n        document.createElement(\"form\"),\n        // @ts-expect-error if FormData supports the submitter parameter, this will throw\n        0\n      );\n      _formDataSupportsSubmitter = false;\n    } catch (e) {\n      _formDataSupportsSubmitter = true;\n    }\n  }\n  return _formDataSupportsSubmitter;\n}\n\n/**\n * Submit options shared by both navigations and fetchers\n */\ninterface SharedSubmitOptions {\n  /**\n   * The HTTP method used to submit the form. Overrides `<form method>`.\n   * Defaults to \"GET\".\n   */\n  method?: HTMLFormMethod;\n\n  /**\n   * The action URL path used to submit the form. Overrides `<form action>`.\n   * Defaults to the path of the current route.\n   */\n  action?: string;\n\n  /**\n   * The encoding used to submit the form. Overrides `<form encType>`.\n   * Defaults to \"application/x-www-form-urlencoded\".\n   */\n  encType?: FormEncType;\n\n  /**\n   * Determines whether the form action is relative to the route hierarchy or\n   * the pathname.  Use this if you want to opt out of navigating the route\n   * hierarchy and want to instead route based on /-delimited URL segments\n   */\n  relative?: RelativeRoutingType;\n\n  /**\n   * In browser-based environments, prevent resetting scroll after this\n   * navigation when using the <ScrollRestoration> component\n   */\n  preventScrollReset?: boolean;\n\n  /**\n   * Enable flushSync for this submission's state updates\n   */\n  unstable_flushSync?: boolean;\n}\n\n/**\n * Submit options available to fetchers\n */\nexport interface FetcherSubmitOptions extends SharedSubmitOptions {}\n\n/**\n * Submit options available to navigations\n */\nexport interface SubmitOptions extends FetcherSubmitOptions {\n  /**\n   * Set `true` to replace the current entry in the browser's history stack\n   * instead of creating a new one (i.e. stay on \"the same page\"). Defaults\n   * to `false`.\n   */\n  replace?: boolean;\n\n  /**\n   * State object to add to the history stack entry for this navigation\n   */\n  state?: any;\n\n  /**\n   * Indicate a specific fetcherKey to use when using navigate=false\n   */\n  fetcherKey?: string;\n\n  /**\n   * navigate=false will use a fetcher instead of a navigation\n   */\n  navigate?: boolean;\n\n  /**\n   * Enable view transitions on this submission navigation\n   */\n  unstable_viewTransition?: boolean;\n}\n\nconst supportedFormEncTypes: Set<FormEncType> = new Set([\n  \"application/x-www-form-urlencoded\",\n  \"multipart/form-data\",\n  \"text/plain\",\n]);\n\nfunction getFormEncType(encType: string | null) {\n  if (encType != null && !supportedFormEncTypes.has(encType as FormEncType)) {\n    warning(\n      false,\n      `\"${encType}\" is not a valid \\`encType\\` for \\`<Form>\\`/\\`<fetcher.Form>\\` ` +\n        `and will default to \"${defaultEncType}\"`\n    );\n\n    return null;\n  }\n  return encType;\n}\n\nexport function getFormSubmissionInfo(\n  target: SubmitTarget,\n  basename: string\n): {\n  action: string | null;\n  method: string;\n  encType: string;\n  formData: FormData | undefined;\n  body: any;\n} {\n  let method: string;\n  let action: string | null;\n  let encType: string;\n  let formData: FormData | undefined;\n  let body: any;\n\n  if (isFormElement(target)) {\n    // When grabbing the action from the element, it will have had the basename\n    // prefixed to ensure non-JS scenarios work, so strip it since we'll\n    // re-prefix in the router\n    let attr = target.getAttribute(\"action\");\n    action = attr ? stripBasename(attr, basename) : null;\n    method = target.getAttribute(\"method\") || defaultMethod;\n    encType = getFormEncType(target.getAttribute(\"enctype\")) || defaultEncType;\n\n    formData = new FormData(target);\n  } else if (\n    isButtonElement(target) ||\n    (isInputElement(target) &&\n      (target.type === \"submit\" || target.type === \"image\"))\n  ) {\n    let form = target.form;\n\n    if (form == null) {\n      throw new Error(\n        `Cannot submit a <button> or <input type=\"submit\"> without a <form>`\n      );\n    }\n\n    // <button>/<input type=\"submit\"> may override attributes of <form>\n\n    // When grabbing the action from the element, it will have had the basename\n    // prefixed to ensure non-JS scenarios work, so strip it since we'll\n    // re-prefix in the router\n    let attr = target.getAttribute(\"formaction\") || form.getAttribute(\"action\");\n    action = attr ? stripBasename(attr, basename) : null;\n\n    method =\n      target.getAttribute(\"formmethod\") ||\n      form.getAttribute(\"method\") ||\n      defaultMethod;\n    encType =\n      getFormEncType(target.getAttribute(\"formenctype\")) ||\n      getFormEncType(form.getAttribute(\"enctype\")) ||\n      defaultEncType;\n\n    // Build a FormData object populated from a form and submitter\n    formData = new FormData(form, target);\n\n    // If this browser doesn't support the `FormData(el, submitter)` format,\n    // then tack on the submitter value at the end.  This is a lightweight\n    // solution that is not 100% spec compliant.  For complete support in older\n    // browsers, consider using the `formdata-submitter-polyfill` package\n    if (!isFormDataSubmitterSupported()) {\n      let { name, type, value } = target;\n      if (type === \"image\") {\n        let prefix = name ? `${name}.` : \"\";\n        formData.append(`${prefix}x`, \"0\");\n        formData.append(`${prefix}y`, \"0\");\n      } else if (name) {\n        formData.append(name, value);\n      }\n    }\n  } else if (isHtmlElement(target)) {\n    throw new Error(\n      `Cannot submit element that is not <form>, <button>, or ` +\n        `<input type=\"submit|image\">`\n    );\n  } else {\n    method = defaultMethod;\n    action = null;\n    encType = defaultEncType;\n    body = target;\n  }\n\n  // Send body for <Form encType=\"text/plain\" so we encode it into text\n  if (formData && encType === \"text/plain\") {\n    body = formData;\n    formData = undefined;\n  }\n\n  return { action, method: method.toLowerCase(), encType, formData, body };\n}\n","/**\n * NOTE: If you refactor this to split up the modules into separate files,\n * you'll need to update the rollup config for react-router-dom-v5-compat.\n */\nimport * as React from \"react\";\nimport * as ReactDOM from \"react-dom\";\nimport type {\n  DataRouteObject,\n  FutureConfig,\n  Location,\n  NavigateOptions,\n  NavigationType,\n  Navigator,\n  RelativeRoutingType,\n  RouteObject,\n  RouterProps,\n  RouterProviderProps,\n  To,\n  unstable_PatchRoutesOnMissFunction,\n} from \"react-router\";\nimport {\n  Router,\n  createPath,\n  useHref,\n  useLocation,\n  useMatches,\n  useNavigate,\n  useNavigation,\n  useResolvedPath,\n  useBlocker,\n  UNSAFE_DataRouterContext as DataRouterContext,\n  UNSAFE_DataRouterStateContext as DataRouterStateContext,\n  UNSAFE_NavigationContext as NavigationContext,\n  UNSAFE_RouteContext as RouteContext,\n  UNSAFE_mapRouteProperties as mapRouteProperties,\n  UNSAFE_useRouteId as useRouteId,\n  UNSAFE_useRoutesImpl as useRoutesImpl,\n} from \"react-router\";\nimport type {\n  BrowserHistory,\n  unstable_DataStrategyFunction,\n  unstable_DataStrategyFunctionArgs,\n  unstable_DataStrategyMatch,\n  Fetcher,\n  FormEncType,\n  FormMethod,\n  FutureConfig as RouterFutureConfig,\n  GetScrollRestorationKeyFunction,\n  HashHistory,\n  History,\n  HTMLFormMethod,\n  HydrationState,\n  Router as RemixRouter,\n  V7_FormMethod,\n  RouterState,\n  RouterSubscriber,\n  BlockerFunction,\n} from \"@remix-run/router\";\nimport {\n  createRouter,\n  createBrowserHistory,\n  createHashHistory,\n  joinPaths,\n  stripBasename,\n  UNSAFE_ErrorResponseImpl as ErrorResponseImpl,\n  UNSAFE_invariant as invariant,\n  UNSAFE_warning as warning,\n  matchPath,\n  IDLE_FETCHER,\n} from \"@remix-run/router\";\n\nimport type {\n  SubmitOptions,\n  ParamKeyValuePair,\n  URLSearchParamsInit,\n  SubmitTarget,\n  FetcherSubmitOptions,\n} from \"./dom\";\nimport {\n  createSearchParams,\n  defaultMethod,\n  getFormSubmissionInfo,\n  getSearchParamsForLocation,\n  shouldProcessLinkClick,\n} from \"./dom\";\n\n////////////////////////////////////////////////////////////////////////////////\n//#region Re-exports\n////////////////////////////////////////////////////////////////////////////////\n\nexport type {\n  unstable_DataStrategyFunction,\n  unstable_DataStrategyFunctionArgs,\n  unstable_DataStrategyMatch,\n  FormEncType,\n  FormMethod,\n  GetScrollRestorationKeyFunction,\n  ParamKeyValuePair,\n  SubmitOptions,\n  URLSearchParamsInit,\n  V7_FormMethod,\n};\nexport { createSearchParams, ErrorResponseImpl as UNSAFE_ErrorResponseImpl };\n\n// Note: Keep in sync with react-router exports!\nexport type {\n  ActionFunction,\n  ActionFunctionArgs,\n  AwaitProps,\n  Blocker,\n  BlockerFunction,\n  DataRouteMatch,\n  DataRouteObject,\n  ErrorResponse,\n  Fetcher,\n  FutureConfig,\n  Hash,\n  IndexRouteObject,\n  IndexRouteProps,\n  JsonFunction,\n  LazyRouteFunction,\n  LayoutRouteProps,\n  LoaderFunction,\n  LoaderFunctionArgs,\n  Location,\n  MemoryRouterProps,\n  NavigateFunction,\n  NavigateOptions,\n  NavigateProps,\n  Navigation,\n  Navigator,\n  NonIndexRouteObject,\n  OutletProps,\n  Params,\n  ParamParseKey,\n  Path,\n  PathMatch,\n  Pathname,\n  PathParam,\n  PathPattern,\n  PathRouteProps,\n  RedirectFunction,\n  RelativeRoutingType,\n  RouteMatch,\n  RouteObject,\n  RouteProps,\n  RouterProps,\n  RouterProviderProps,\n  RoutesProps,\n  Search,\n  ShouldRevalidateFunction,\n  ShouldRevalidateFunctionArgs,\n  To,\n  UIMatch,\n  unstable_HandlerResult,\n  unstable_PatchRoutesOnMissFunction,\n} from \"react-router\";\nexport {\n  AbortedDeferredError,\n  Await,\n  MemoryRouter,\n  Navigate,\n  NavigationType,\n  Outlet,\n  Route,\n  Router,\n  Routes,\n  createMemoryRouter,\n  createPath,\n  createRoutesFromChildren,\n  createRoutesFromElements,\n  defer,\n  isRouteErrorResponse,\n  generatePath,\n  json,\n  matchPath,\n  matchRoutes,\n  parsePath,\n  redirect,\n  redirectDocument,\n  replace,\n  renderMatches,\n  resolvePath,\n  useActionData,\n  useAsyncError,\n  useAsyncValue,\n  useBlocker,\n  useHref,\n  useInRouterContext,\n  useLoaderData,\n  useLocation,\n  useMatch,\n  useMatches,\n  useNavigate,\n  useNavigation,\n  useNavigationType,\n  useOutlet,\n  useOutletContext,\n  useParams,\n  useResolvedPath,\n  useRevalidator,\n  useRouteError,\n  useRouteLoaderData,\n  useRoutes,\n} from \"react-router\";\n\n///////////////////////////////////////////////////////////////////////////////\n// DANGER! PLEASE READ ME!\n// We provide these exports as an escape hatch in the event that you need any\n// routing data that we don't provide an explicit API for. With that said, we\n// want to cover your use case if we can, so if you feel the need to use these\n// we want to hear from you. Let us know what you're building and we'll do our\n// best to make sure we can support you!\n//\n// We consider these exports an implementation detail and do not guarantee\n// against any breaking changes, regardless of the semver release. Use with\n// extreme caution and only if you understand the consequences. Godspeed.\n///////////////////////////////////////////////////////////////////////////////\n\n/** @internal */\nexport {\n  UNSAFE_DataRouterContext,\n  UNSAFE_DataRouterStateContext,\n  UNSAFE_NavigationContext,\n  UNSAFE_LocationContext,\n  UNSAFE_RouteContext,\n  UNSAFE_useRouteId,\n} from \"react-router\";\n//#endregion\n\ndeclare global {\n  var __staticRouterHydrationData: HydrationState | undefined;\n  var __reactRouterVersion: string;\n  interface Document {\n    startViewTransition(cb: () => Promise<void> | void): ViewTransition;\n  }\n}\n\n// HEY YOU! DON'T TOUCH THIS VARIABLE!\n//\n// It is replaced with the proper version at build time via a babel plugin in\n// the rollup config.\n//\n// Export a global property onto the window for React Router detection by the\n// Core Web Vitals Technology Report.  This way they can configure the `wappalyzer`\n// to detect and properly classify live websites as being built with React Router:\n// https://github.com/HTTPArchive/wappalyzer/blob/main/src/technologies/r.json\nconst REACT_ROUTER_VERSION = \"0\";\ntry {\n  window.__reactRouterVersion = REACT_ROUTER_VERSION;\n} catch (e) {\n  // no-op\n}\n\n////////////////////////////////////////////////////////////////////////////////\n//#region Routers\n////////////////////////////////////////////////////////////////////////////////\n\ninterface DOMRouterOpts {\n  basename?: string;\n  future?: Partial<Omit<RouterFutureConfig, \"v7_prependBasename\">>;\n  hydrationData?: HydrationState;\n  unstable_dataStrategy?: unstable_DataStrategyFunction;\n  unstable_patchRoutesOnMiss?: unstable_PatchRoutesOnMissFunction;\n  window?: Window;\n}\n\nexport function createBrowserRouter(\n  routes: RouteObject[],\n  opts?: DOMRouterOpts\n): RemixRouter {\n  return createRouter({\n    basename: opts?.basename,\n    future: {\n      ...opts?.future,\n      v7_prependBasename: true,\n    },\n    history: createBrowserHistory({ window: opts?.window }),\n    hydrationData: opts?.hydrationData || parseHydrationData(),\n    routes,\n    mapRouteProperties,\n    unstable_dataStrategy: opts?.unstable_dataStrategy,\n    unstable_patchRoutesOnMiss: opts?.unstable_patchRoutesOnMiss,\n    window: opts?.window,\n  }).initialize();\n}\n\nexport function createHashRouter(\n  routes: RouteObject[],\n  opts?: DOMRouterOpts\n): RemixRouter {\n  return createRouter({\n    basename: opts?.basename,\n    future: {\n      ...opts?.future,\n      v7_prependBasename: true,\n    },\n    history: createHashHistory({ window: opts?.window }),\n    hydrationData: opts?.hydrationData || parseHydrationData(),\n    routes,\n    mapRouteProperties,\n    unstable_dataStrategy: opts?.unstable_dataStrategy,\n    unstable_patchRoutesOnMiss: opts?.unstable_patchRoutesOnMiss,\n    window: opts?.window,\n  }).initialize();\n}\n\nfunction parseHydrationData(): HydrationState | undefined {\n  let state = window?.__staticRouterHydrationData;\n  if (state && state.errors) {\n    state = {\n      ...state,\n      errors: deserializeErrors(state.errors),\n    };\n  }\n  return state;\n}\n\nfunction deserializeErrors(\n  errors: RemixRouter[\"state\"][\"errors\"]\n): RemixRouter[\"state\"][\"errors\"] {\n  if (!errors) return null;\n  let entries = Object.entries(errors);\n  let serialized: RemixRouter[\"state\"][\"errors\"] = {};\n  for (let [key, val] of entries) {\n    // Hey you!  If you change this, please change the corresponding logic in\n    // serializeErrors in react-router-dom/server.tsx :)\n    if (val && val.__type === \"RouteErrorResponse\") {\n      serialized[key] = new ErrorResponseImpl(\n        val.status,\n        val.statusText,\n        val.data,\n        val.internal === true\n      );\n    } else if (val && val.__type === \"Error\") {\n      // Attempt to reconstruct the right type of Error (i.e., ReferenceError)\n      if (val.__subType) {\n        let ErrorConstructor = window[val.__subType];\n        if (typeof ErrorConstructor === \"function\") {\n          try {\n            // @ts-expect-error\n            let error = new ErrorConstructor(val.message);\n            // Wipe away the client-side stack trace.  Nothing to fill it in with\n            // because we don't serialize SSR stack traces for security reasons\n            error.stack = \"\";\n            serialized[key] = error;\n          } catch (e) {\n            // no-op - fall through and create a normal Error\n          }\n        }\n      }\n\n      if (serialized[key] == null) {\n        let error = new Error(val.message);\n        // Wipe away the client-side stack trace.  Nothing to fill it in with\n        // because we don't serialize SSR stack traces for security reasons\n        error.stack = \"\";\n        serialized[key] = error;\n      }\n    } else {\n      serialized[key] = val;\n    }\n  }\n  return serialized;\n}\n\n//#endregion\n\n////////////////////////////////////////////////////////////////////////////////\n//#region Contexts\n////////////////////////////////////////////////////////////////////////////////\n\ntype ViewTransitionContextObject =\n  | {\n      isTransitioning: false;\n    }\n  | {\n      isTransitioning: true;\n      flushSync: boolean;\n      currentLocation: Location;\n      nextLocation: Location;\n    };\n\nconst ViewTransitionContext = React.createContext<ViewTransitionContextObject>({\n  isTransitioning: false,\n});\nif (__DEV__) {\n  ViewTransitionContext.displayName = \"ViewTransition\";\n}\n\nexport { ViewTransitionContext as UNSAFE_ViewTransitionContext };\n\n// TODO: (v7) Change the useFetcher data from `any` to `unknown`\ntype FetchersContextObject = Map<string, any>;\n\nconst FetchersContext = React.createContext<FetchersContextObject>(new Map());\nif (__DEV__) {\n  FetchersContext.displayName = \"Fetchers\";\n}\n\nexport { FetchersContext as UNSAFE_FetchersContext };\n\n//#endregion\n\n////////////////////////////////////////////////////////////////////////////////\n//#region Components\n////////////////////////////////////////////////////////////////////////////////\n\n/**\n  Webpack + React 17 fails to compile on any of the following because webpack\n  complains that `startTransition` doesn't exist in `React`:\n  * import { startTransition } from \"react\"\n  * import * as React from from \"react\";\n    \"startTransition\" in React ? React.startTransition(() => setState()) : setState()\n  * import * as React from from \"react\";\n    \"startTransition\" in React ? React[\"startTransition\"](() => setState()) : setState()\n\n  Moving it to a constant such as the following solves the Webpack/React 17 issue:\n  * import * as React from from \"react\";\n    const START_TRANSITION = \"startTransition\";\n    START_TRANSITION in React ? React[START_TRANSITION](() => setState()) : setState()\n\n  However, that introduces webpack/terser minification issues in production builds\n  in React 18 where minification/obfuscation ends up removing the call of\n  React.startTransition entirely from the first half of the ternary.  Grabbing\n  this exported reference once up front resolves that issue.\n\n  See https://github.com/remix-run/react-router/issues/10579\n*/\nconst START_TRANSITION = \"startTransition\";\nconst startTransitionImpl = React[START_TRANSITION];\nconst FLUSH_SYNC = \"flushSync\";\nconst flushSyncImpl = ReactDOM[FLUSH_SYNC];\nconst USE_ID = \"useId\";\nconst useIdImpl = React[USE_ID];\n\nfunction startTransitionSafe(cb: () => void) {\n  if (startTransitionImpl) {\n    startTransitionImpl(cb);\n  } else {\n    cb();\n  }\n}\n\nfunction flushSyncSafe(cb: () => void) {\n  if (flushSyncImpl) {\n    flushSyncImpl(cb);\n  } else {\n    cb();\n  }\n}\n\ninterface ViewTransition {\n  finished: Promise<void>;\n  ready: Promise<void>;\n  updateCallbackDone: Promise<void>;\n  skipTransition(): void;\n}\n\nclass Deferred<T> {\n  status: \"pending\" | \"resolved\" | \"rejected\" = \"pending\";\n  promise: Promise<T>;\n  // @ts-expect-error - no initializer\n  resolve: (value: T) => void;\n  // @ts-expect-error - no initializer\n  reject: (reason?: unknown) => void;\n  constructor() {\n    this.promise = new Promise((resolve, reject) => {\n      this.resolve = (value) => {\n        if (this.status === \"pending\") {\n          this.status = \"resolved\";\n          resolve(value);\n        }\n      };\n      this.reject = (reason) => {\n        if (this.status === \"pending\") {\n          this.status = \"rejected\";\n          reject(reason);\n        }\n      };\n    });\n  }\n}\n\n/**\n * Given a Remix Router instance, render the appropriate UI\n */\nexport function RouterProvider({\n  fallbackElement,\n  router,\n  future,\n}: RouterProviderProps): React.ReactElement {\n  let [state, setStateImpl] = React.useState(router.state);\n  let [pendingState, setPendingState] = React.useState<RouterState>();\n  let [vtContext, setVtContext] = React.useState<ViewTransitionContextObject>({\n    isTransitioning: false,\n  });\n  let [renderDfd, setRenderDfd] = React.useState<Deferred<void>>();\n  let [transition, setTransition] = React.useState<ViewTransition>();\n  let [interruption, setInterruption] = React.useState<{\n    state: RouterState;\n    currentLocation: Location;\n    nextLocation: Location;\n  }>();\n  let fetcherData = React.useRef<Map<string, any>>(new Map());\n  let { v7_startTransition } = future || {};\n\n  let optInStartTransition = React.useCallback(\n    (cb: () => void) => {\n      if (v7_startTransition) {\n        startTransitionSafe(cb);\n      } else {\n        cb();\n      }\n    },\n    [v7_startTransition]\n  );\n\n  let setState = React.useCallback<RouterSubscriber>(\n    (\n      newState: RouterState,\n      {\n        deletedFetchers,\n        unstable_flushSync: flushSync,\n        unstable_viewTransitionOpts: viewTransitionOpts,\n      }\n    ) => {\n      deletedFetchers.forEach((key) => fetcherData.current.delete(key));\n      newState.fetchers.forEach((fetcher, key) => {\n        if (fetcher.data !== undefined) {\n          fetcherData.current.set(key, fetcher.data);\n        }\n      });\n\n      let isViewTransitionUnavailable =\n        router.window == null ||\n        router.window.document == null ||\n        typeof router.window.document.startViewTransition !== \"function\";\n\n      // If this isn't a view transition or it's not available in this browser,\n      // just update and be done with it\n      if (!viewTransitionOpts || isViewTransitionUnavailable) {\n        if (flushSync) {\n          flushSyncSafe(() => setStateImpl(newState));\n        } else {\n          optInStartTransition(() => setStateImpl(newState));\n        }\n        return;\n      }\n\n      // flushSync + startViewTransition\n      if (flushSync) {\n        // Flush through the context to mark DOM elements as transition=ing\n        flushSyncSafe(() => {\n          // Cancel any pending transitions\n          if (transition) {\n            renderDfd && renderDfd.resolve();\n            transition.skipTransition();\n          }\n          setVtContext({\n            isTransitioning: true,\n            flushSync: true,\n            currentLocation: viewTransitionOpts.currentLocation,\n            nextLocation: viewTransitionOpts.nextLocation,\n          });\n        });\n\n        // Update the DOM\n        let t = router.window!.document.startViewTransition(() => {\n          flushSyncSafe(() => setStateImpl(newState));\n        });\n\n        // Clean up after the animation completes\n        t.finished.finally(() => {\n          flushSyncSafe(() => {\n            setRenderDfd(undefined);\n            setTransition(undefined);\n            setPendingState(undefined);\n            setVtContext({ isTransitioning: false });\n          });\n        });\n\n        flushSyncSafe(() => setTransition(t));\n        return;\n      }\n\n      // startTransition + startViewTransition\n      if (transition) {\n        // Interrupting an in-progress transition, cancel and let everything flush\n        // out, and then kick off a new transition from the interruption state\n        renderDfd && renderDfd.resolve();\n        transition.skipTransition();\n        setInterruption({\n          state: newState,\n          currentLocation: viewTransitionOpts.currentLocation,\n          nextLocation: viewTransitionOpts.nextLocation,\n        });\n      } else {\n        // Completed navigation update with opted-in view transitions, let 'er rip\n        setPendingState(newState);\n        setVtContext({\n          isTransitioning: true,\n          flushSync: false,\n          currentLocation: viewTransitionOpts.currentLocation,\n          nextLocation: viewTransitionOpts.nextLocation,\n        });\n      }\n    },\n    [router.window, transition, renderDfd, fetcherData, optInStartTransition]\n  );\n\n  // Need to use a layout effect here so we are subscribed early enough to\n  // pick up on any render-driven redirects/navigations (useEffect/<Navigate>)\n  React.useLayoutEffect(() => router.subscribe(setState), [router, setState]);\n\n  // When we start a view transition, create a Deferred we can use for the\n  // eventual \"completed\" render\n  React.useEffect(() => {\n    if (vtContext.isTransitioning && !vtContext.flushSync) {\n      setRenderDfd(new Deferred<void>());\n    }\n  }, [vtContext]);\n\n  // Once the deferred is created, kick off startViewTransition() to update the\n  // DOM and then wait on the Deferred to resolve (indicating the DOM update has\n  // happened)\n  React.useEffect(() => {\n    if (renderDfd && pendingState && router.window) {\n      let newState = pendingState;\n      let renderPromise = renderDfd.promise;\n      let transition = router.window.document.startViewTransition(async () => {\n        optInStartTransition(() => setStateImpl(newState));\n        await renderPromise;\n      });\n      transition.finished.finally(() => {\n        setRenderDfd(undefined);\n        setTransition(undefined);\n        setPendingState(undefined);\n        setVtContext({ isTransitioning: false });\n      });\n      setTransition(transition);\n    }\n  }, [optInStartTransition, pendingState, renderDfd, router.window]);\n\n  // When the new location finally renders and is committed to the DOM, this\n  // effect will run to resolve the transition\n  React.useEffect(() => {\n    if (\n      renderDfd &&\n      pendingState &&\n      state.location.key === pendingState.location.key\n    ) {\n      renderDfd.resolve();\n    }\n  }, [renderDfd, transition, state.location, pendingState]);\n\n  // If we get interrupted with a new navigation during a transition, we skip\n  // the active transition, let it cleanup, then kick it off again here\n  React.useEffect(() => {\n    if (!vtContext.isTransitioning && interruption) {\n      setPendingState(interruption.state);\n      setVtContext({\n        isTransitioning: true,\n        flushSync: false,\n        currentLocation: interruption.currentLocation,\n        nextLocation: interruption.nextLocation,\n      });\n      setInterruption(undefined);\n    }\n  }, [vtContext.isTransitioning, interruption]);\n\n  React.useEffect(() => {\n    warning(\n      fallbackElement == null || !router.future.v7_partialHydration,\n      \"`<RouterProvider fallbackElement>` is deprecated when using \" +\n        \"`v7_partialHydration`, use a `HydrateFallback` component instead\"\n    );\n    // Only log this once on initial mount\n    // eslint-disable-next-line react-hooks/exhaustive-deps\n  }, []);\n\n  let navigator = React.useMemo((): Navigator => {\n    return {\n      createHref: router.createHref,\n      encodeLocation: router.encodeLocation,\n      go: (n) => router.navigate(n),\n      push: (to, state, opts) =>\n        router.navigate(to, {\n          state,\n          preventScrollReset: opts?.preventScrollReset,\n        }),\n      replace: (to, state, opts) =>\n        router.navigate(to, {\n          replace: true,\n          state,\n          preventScrollReset: opts?.preventScrollReset,\n        }),\n    };\n  }, [router]);\n\n  let basename = router.basename || \"/\";\n\n  let dataRouterContext = React.useMemo(\n    () => ({\n      router,\n      navigator,\n      static: false,\n      basename,\n    }),\n    [router, navigator, basename]\n  );\n\n  let routerFuture = React.useMemo<RouterProps[\"future\"]>(\n    () => ({\n      v7_relativeSplatPath: router.future.v7_relativeSplatPath,\n    }),\n    [router.future.v7_relativeSplatPath]\n  );\n\n  // The fragment and {null} here are important!  We need them to keep React 18's\n  // useId happy when we are server-rendering since we may have a <script> here\n  // containing the hydrated server-side staticContext (from StaticRouterProvider).\n  // useId relies on the component tree structure to generate deterministic id's\n  // so we need to ensure it remains the same on the client even though\n  // we don't need the <script> tag\n  return (\n    <>\n      <DataRouterContext.Provider value={dataRouterContext}>\n        <DataRouterStateContext.Provider value={state}>\n          <FetchersContext.Provider value={fetcherData.current}>\n            <ViewTransitionContext.Provider value={vtContext}>\n              <Router\n                basename={basename}\n                location={state.location}\n                navigationType={state.historyAction}\n                navigator={navigator}\n                future={routerFuture}\n              >\n                {state.initialized || router.future.v7_partialHydration ? (\n                  <MemoizedDataRoutes\n                    routes={router.routes}\n                    future={router.future}\n                    state={state}\n                  />\n                ) : (\n                  fallbackElement\n                )}\n              </Router>\n            </ViewTransitionContext.Provider>\n          </FetchersContext.Provider>\n        </DataRouterStateContext.Provider>\n      </DataRouterContext.Provider>\n      {null}\n    </>\n  );\n}\n\n// Memoize to avoid re-renders when updating `ViewTransitionContext`\nconst MemoizedDataRoutes = React.memo(DataRoutes);\n\nfunction DataRoutes({\n  routes,\n  future,\n  state,\n}: {\n  routes: DataRouteObject[];\n  future: RemixRouter[\"future\"];\n  state: RouterState;\n}): React.ReactElement | null {\n  return useRoutesImpl(routes, undefined, state, future);\n}\n\nexport interface BrowserRouterProps {\n  basename?: string;\n  children?: React.ReactNode;\n  future?: Partial<FutureConfig>;\n  window?: Window;\n}\n\n/**\n * A `<Router>` for use in web browsers. Provides the cleanest URLs.\n */\nexport function BrowserRouter({\n  basename,\n  children,\n  future,\n  window,\n}: BrowserRouterProps) {\n  let historyRef = React.useRef<BrowserHistory>();\n  if (historyRef.current == null) {\n    historyRef.current = createBrowserHistory({ window, v5Compat: true });\n  }\n\n  let history = historyRef.current;\n  let [state, setStateImpl] = React.useState({\n    action: history.action,\n    location: history.location,\n  });\n  let { v7_startTransition } = future || {};\n  let setState = React.useCallback(\n    (newState: { action: NavigationType; location: Location }) => {\n      v7_startTransition && startTransitionImpl\n        ? startTransitionImpl(() => setStateImpl(newState))\n        : setStateImpl(newState);\n    },\n    [setStateImpl, v7_startTransition]\n  );\n\n  React.useLayoutEffect(() => history.listen(setState), [history, setState]);\n\n  return (\n    <Router\n      basename={basename}\n      children={children}\n      location={state.location}\n      navigationType={state.action}\n      navigator={history}\n      future={future}\n    />\n  );\n}\n\nexport interface HashRouterProps {\n  basename?: string;\n  children?: React.ReactNode;\n  future?: Partial<FutureConfig>;\n  window?: Window;\n}\n\n/**\n * A `<Router>` for use in web browsers. Stores the location in the hash\n * portion of the URL so it is not sent to the server.\n */\nexport function HashRouter({\n  basename,\n  children,\n  future,\n  window,\n}: HashRouterProps) {\n  let historyRef = React.useRef<HashHistory>();\n  if (historyRef.current == null) {\n    historyRef.current = createHashHistory({ window, v5Compat: true });\n  }\n\n  let history = historyRef.current;\n  let [state, setStateImpl] = React.useState({\n    action: history.action,\n    location: history.location,\n  });\n  let { v7_startTransition } = future || {};\n  let setState = React.useCallback(\n    (newState: { action: NavigationType; location: Location }) => {\n      v7_startTransition && startTransitionImpl\n        ? startTransitionImpl(() => setStateImpl(newState))\n        : setStateImpl(newState);\n    },\n    [setStateImpl, v7_startTransition]\n  );\n\n  React.useLayoutEffect(() => history.listen(setState), [history, setState]);\n\n  return (\n    <Router\n      basename={basename}\n      children={children}\n      location={state.location}\n      navigationType={state.action}\n      navigator={history}\n      future={future}\n    />\n  );\n}\n\nexport interface HistoryRouterProps {\n  basename?: string;\n  children?: React.ReactNode;\n  future?: FutureConfig;\n  history: History;\n}\n\n/**\n * A `<Router>` that accepts a pre-instantiated history object. It's important\n * to note that using your own history object is highly discouraged and may add\n * two versions of the history library to your bundles unless you use the same\n * version of the history library that React Router uses internally.\n */\nfunction HistoryRouter({\n  basename,\n  children,\n  future,\n  history,\n}: HistoryRouterProps) {\n  let [state, setStateImpl] = React.useState({\n    action: history.action,\n    location: history.location,\n  });\n  let { v7_startTransition } = future || {};\n  let setState = React.useCallback(\n    (newState: { action: NavigationType; location: Location }) => {\n      v7_startTransition && startTransitionImpl\n        ? startTransitionImpl(() => setStateImpl(newState))\n        : setStateImpl(newState);\n    },\n    [setStateImpl, v7_startTransition]\n  );\n\n  React.useLayoutEffect(() => history.listen(setState), [history, setState]);\n\n  return (\n    <Router\n      basename={basename}\n      children={children}\n      location={state.location}\n      navigationType={state.action}\n      navigator={history}\n      future={future}\n    />\n  );\n}\n\nif (__DEV__) {\n  HistoryRouter.displayName = \"unstable_HistoryRouter\";\n}\n\nexport { HistoryRouter as unstable_HistoryRouter };\n\nexport interface LinkProps\n  extends Omit<React.AnchorHTMLAttributes<HTMLAnchorElement>, \"href\"> {\n  reloadDocument?: boolean;\n  replace?: boolean;\n  state?: any;\n  preventScrollReset?: boolean;\n  relative?: RelativeRoutingType;\n  to: To;\n  unstable_viewTransition?: boolean;\n}\n\nconst isBrowser =\n  typeof window !== \"undefined\" &&\n  typeof window.document !== \"undefined\" &&\n  typeof window.document.createElement !== \"undefined\";\n\nconst ABSOLUTE_URL_REGEX = /^(?:[a-z][a-z0-9+.-]*:|\\/\\/)/i;\n\n/**\n * The public API for rendering a history-aware `<a>`.\n */\nexport const Link = React.forwardRef<HTMLAnchorElement, LinkProps>(\n  function LinkWithRef(\n    {\n      onClick,\n      relative,\n      reloadDocument,\n      replace,\n      state,\n      target,\n      to,\n      preventScrollReset,\n      unstable_viewTransition,\n      ...rest\n    },\n    ref\n  ) {\n    let { basename } = React.useContext(NavigationContext);\n\n    // Rendered into <a href> for absolute URLs\n    let absoluteHref;\n    let isExternal = false;\n\n    if (typeof to === \"string\" && ABSOLUTE_URL_REGEX.test(to)) {\n      // Render the absolute href server- and client-side\n      absoluteHref = to;\n\n      // Only check for external origins client-side\n      if (isBrowser) {\n        try {\n          let currentUrl = new URL(window.location.href);\n          let targetUrl = to.startsWith(\"//\")\n            ? new URL(currentUrl.protocol + to)\n            : new URL(to);\n          let path = stripBasename(targetUrl.pathname, basename);\n\n          if (targetUrl.origin === currentUrl.origin && path != null) {\n            // Strip the protocol/origin/basename for same-origin absolute URLs\n            to = path + targetUrl.search + targetUrl.hash;\n          } else {\n            isExternal = true;\n          }\n        } catch (e) {\n          // We can't do external URL detection without a valid URL\n          warning(\n            false,\n            `<Link to=\"${to}\"> contains an invalid URL which will probably break ` +\n              `when clicked - please update to a valid URL path.`\n          );\n        }\n      }\n    }\n\n    // Rendered into <a href> for relative URLs\n    let href = useHref(to, { relative });\n\n    let internalOnClick = useLinkClickHandler(to, {\n      replace,\n      state,\n      target,\n      preventScrollReset,\n      relative,\n      unstable_viewTransition,\n    });\n    function handleClick(\n      event: React.MouseEvent<HTMLAnchorElement, MouseEvent>\n    ) {\n      if (onClick) onClick(event);\n      if (!event.defaultPrevented) {\n        internalOnClick(event);\n      }\n    }\n\n    return (\n      // eslint-disable-next-line jsx-a11y/anchor-has-content\n      <a\n        {...rest}\n        href={absoluteHref || href}\n        onClick={isExternal || reloadDocument ? onClick : handleClick}\n        ref={ref}\n        target={target}\n      />\n    );\n  }\n);\n\nif (__DEV__) {\n  Link.displayName = \"Link\";\n}\n\nexport type NavLinkRenderProps = {\n  isActive: boolean;\n  isPending: boolean;\n  isTransitioning: boolean;\n};\n\nexport interface NavLinkProps\n  extends Omit<LinkProps, \"className\" | \"style\" | \"children\"> {\n  children?: React.ReactNode | ((props: NavLinkRenderProps) => React.ReactNode);\n  caseSensitive?: boolean;\n  className?: string | ((props: NavLinkRenderProps) => string | undefined);\n  end?: boolean;\n  style?:\n    | React.CSSProperties\n    | ((props: NavLinkRenderProps) => React.CSSProperties | undefined);\n}\n\n/**\n * A `<Link>` wrapper that knows if it's \"active\" or not.\n */\nexport const NavLink = React.forwardRef<HTMLAnchorElement, NavLinkProps>(\n  function NavLinkWithRef(\n    {\n      \"aria-current\": ariaCurrentProp = \"page\",\n      caseSensitive = false,\n      className: classNameProp = \"\",\n      end = false,\n      style: styleProp,\n      to,\n      unstable_viewTransition,\n      children,\n      ...rest\n    },\n    ref\n  ) {\n    let path = useResolvedPath(to, { relative: rest.relative });\n    let location = useLocation();\n    let routerState = React.useContext(DataRouterStateContext);\n    let { navigator, basename } = React.useContext(NavigationContext);\n    let isTransitioning =\n      routerState != null &&\n      // Conditional usage is OK here because the usage of a data router is static\n      // eslint-disable-next-line react-hooks/rules-of-hooks\n      useViewTransitionState(path) &&\n      unstable_viewTransition === true;\n\n    let toPathname = navigator.encodeLocation\n      ? navigator.encodeLocation(path).pathname\n      : path.pathname;\n    let locationPathname = location.pathname;\n    let nextLocationPathname =\n      routerState && routerState.navigation && routerState.navigation.location\n        ? routerState.navigation.location.pathname\n        : null;\n\n    if (!caseSensitive) {\n      locationPathname = locationPathname.toLowerCase();\n      nextLocationPathname = nextLocationPathname\n        ? nextLocationPathname.toLowerCase()\n        : null;\n      toPathname = toPathname.toLowerCase();\n    }\n\n    if (nextLocationPathname && basename) {\n      nextLocationPathname =\n        stripBasename(nextLocationPathname, basename) || nextLocationPathname;\n    }\n\n    // If the `to` has a trailing slash, look at that exact spot.  Otherwise,\n    // we're looking for a slash _after_ what's in `to`.  For example:\n    //\n    // <NavLink to=\"/users\"> and <NavLink to=\"/users/\">\n    // both want to look for a / at index 6 to match URL `/users/matt`\n    const endSlashPosition =\n      toPathname !== \"/\" && toPathname.endsWith(\"/\")\n        ? toPathname.length - 1\n        : toPathname.length;\n    let isActive =\n      locationPathname === toPathname ||\n      (!end &&\n        locationPathname.startsWith(toPathname) &&\n        locationPathname.charAt(endSlashPosition) === \"/\");\n\n    let isPending =\n      nextLocationPathname != null &&\n      (nextLocationPathname === toPathname ||\n        (!end &&\n          nextLocationPathname.startsWith(toPathname) &&\n          nextLocationPathname.charAt(toPathname.length) === \"/\"));\n\n    let renderProps = {\n      isActive,\n      isPending,\n      isTransitioning,\n    };\n\n    let ariaCurrent = isActive ? ariaCurrentProp : undefined;\n\n    let className: string | undefined;\n    if (typeof classNameProp === \"function\") {\n      className = classNameProp(renderProps);\n    } else {\n      // If the className prop is not a function, we use a default `active`\n      // class for <NavLink />s that are active. In v5 `active` was the default\n      // value for `activeClassName`, but we are removing that API and can still\n      // use the old default behavior for a cleaner upgrade path and keep the\n      // simple styling rules working as they currently do.\n      className = [\n        classNameProp,\n        isActive ? \"active\" : null,\n        isPending ? \"pending\" : null,\n        isTransitioning ? \"transitioning\" : null,\n      ]\n        .filter(Boolean)\n        .join(\" \");\n    }\n\n    let style =\n      typeof styleProp === \"function\" ? styleProp(renderProps) : styleProp;\n\n    return (\n      <Link\n        {...rest}\n        aria-current={ariaCurrent}\n        className={className}\n        ref={ref}\n        style={style}\n        to={to}\n        unstable_viewTransition={unstable_viewTransition}\n      >\n        {typeof children === \"function\" ? children(renderProps) : children}\n      </Link>\n    );\n  }\n);\n\nif (__DEV__) {\n  NavLink.displayName = \"NavLink\";\n}\n\n/**\n * Form props shared by navigations and fetchers\n */\ninterface SharedFormProps extends React.FormHTMLAttributes<HTMLFormElement> {\n  /**\n   * The HTTP verb to use when the form is submit. Supports \"get\", \"post\",\n   * \"put\", \"delete\", \"patch\".\n   */\n  method?: HTMLFormMethod;\n\n  /**\n   * `<form encType>` - enhancing beyond the normal string type and limiting\n   * to the built-in browser supported values\n   */\n  encType?:\n    | \"application/x-www-form-urlencoded\"\n    | \"multipart/form-data\"\n    | \"text/plain\";\n\n  /**\n   * Normal `<form action>` but supports React Router's relative paths.\n   */\n  action?: string;\n\n  /**\n   * Determines whether the form action is relative to the route hierarchy or\n   * the pathname.  Use this if you want to opt out of navigating the route\n   * hierarchy and want to instead route based on /-delimited URL segments\n   */\n  relative?: RelativeRoutingType;\n\n  /**\n   * Prevent the scroll position from resetting to the top of the viewport on\n   * completion of the navigation when using the <ScrollRestoration> component\n   */\n  preventScrollReset?: boolean;\n\n  /**\n   * A function to call when the form is submitted. If you call\n   * `event.preventDefault()` then this form will not do anything.\n   */\n  onSubmit?: React.FormEventHandler<HTMLFormElement>;\n}\n\n/**\n * Form props available to fetchers\n */\nexport interface FetcherFormProps extends SharedFormProps {}\n\n/**\n * Form props available to navigations\n */\nexport interface FormProps extends SharedFormProps {\n  /**\n   * Indicate a specific fetcherKey to use when using navigate=false\n   */\n  fetcherKey?: string;\n\n  /**\n   * navigate=false will use a fetcher instead of a navigation\n   */\n  navigate?: boolean;\n\n  /**\n   * Forces a full document navigation instead of a fetch.\n   */\n  reloadDocument?: boolean;\n\n  /**\n   * Replaces the current entry in the browser history stack when the form\n   * navigates. Use this if you don't want the user to be able to click \"back\"\n   * to the page with the form on it.\n   */\n  replace?: boolean;\n\n  /**\n   * State object to add to the history stack entry for this navigation\n   */\n  state?: any;\n\n  /**\n   * Enable view transitions on this Form navigation\n   */\n  unstable_viewTransition?: boolean;\n}\n\ntype HTMLSubmitEvent = React.BaseSyntheticEvent<\n  SubmitEvent,\n  Event,\n  HTMLFormElement\n>;\n\ntype HTMLFormSubmitter = HTMLButtonElement | HTMLInputElement;\n\n/**\n * A `@remix-run/router`-aware `<form>`. It behaves like a normal form except\n * that the interaction with the server is with `fetch` instead of new document\n * requests, allowing components to add nicer UX to the page as the form is\n * submitted and returns with data.\n */\nexport const Form = React.forwardRef<HTMLFormElement, FormProps>(\n  (\n    {\n      fetcherKey,\n      navigate,\n      reloadDocument,\n      replace,\n      state,\n      method = defaultMethod,\n      action,\n      onSubmit,\n      relative,\n      preventScrollReset,\n      unstable_viewTransition,\n      ...props\n    },\n    forwardedRef\n  ) => {\n    let submit = useSubmit();\n    let formAction = useFormAction(action, { relative });\n    let formMethod: HTMLFormMethod =\n      method.toLowerCase() === \"get\" ? \"get\" : \"post\";\n\n    let submitHandler: React.FormEventHandler<HTMLFormElement> = (event) => {\n      onSubmit && onSubmit(event);\n      if (event.defaultPrevented) return;\n      event.preventDefault();\n\n      let submitter = (event as unknown as HTMLSubmitEvent).nativeEvent\n        .submitter as HTMLFormSubmitter | null;\n\n      let submitMethod =\n        (submitter?.getAttribute(\"formmethod\") as HTMLFormMethod | undefined) ||\n        method;\n\n      submit(submitter || event.currentTarget, {\n        fetcherKey,\n        method: submitMethod,\n        navigate,\n        replace,\n        state,\n        relative,\n        preventScrollReset,\n        unstable_viewTransition,\n      });\n    };\n\n    return (\n      <form\n        ref={forwardedRef}\n        method={formMethod}\n        action={formAction}\n        onSubmit={reloadDocument ? onSubmit : submitHandler}\n        {...props}\n      />\n    );\n  }\n);\n\nif (__DEV__) {\n  Form.displayName = \"Form\";\n}\n\nexport interface ScrollRestorationProps {\n  getKey?: GetScrollRestorationKeyFunction;\n  storageKey?: string;\n}\n\n/**\n * This component will emulate the browser's scroll restoration on location\n * changes.\n */\nexport function ScrollRestoration({\n  getKey,\n  storageKey,\n}: ScrollRestorationProps) {\n  useScrollRestoration({ getKey, storageKey });\n  return null;\n}\n\nif (__DEV__) {\n  ScrollRestoration.displayName = \"ScrollRestoration\";\n}\n//#endregion\n\n////////////////////////////////////////////////////////////////////////////////\n//#region Hooks\n////////////////////////////////////////////////////////////////////////////////\n\nenum DataRouterHook {\n  UseScrollRestoration = \"useScrollRestoration\",\n  UseSubmit = \"useSubmit\",\n  UseSubmitFetcher = \"useSubmitFetcher\",\n  UseFetcher = \"useFetcher\",\n  useViewTransitionState = \"useViewTransitionState\",\n}\n\nenum DataRouterStateHook {\n  UseFetcher = \"useFetcher\",\n  UseFetchers = \"useFetchers\",\n  UseScrollRestoration = \"useScrollRestoration\",\n}\n\n// Internal hooks\n\nfunction getDataRouterConsoleError(\n  hookName: DataRouterHook | DataRouterStateHook\n) {\n  return `${hookName} must be used within a data router.  See https://reactrouter.com/routers/picking-a-router.`;\n}\n\nfunction useDataRouterContext(hookName: DataRouterHook) {\n  let ctx = React.useContext(DataRouterContext);\n  invariant(ctx, getDataRouterConsoleError(hookName));\n  return ctx;\n}\n\nfunction useDataRouterState(hookName: DataRouterStateHook) {\n  let state = React.useContext(DataRouterStateContext);\n  invariant(state, getDataRouterConsoleError(hookName));\n  return state;\n}\n\n// External hooks\n\n/**\n * Handles the click behavior for router `<Link>` components. This is useful if\n * you need to create custom `<Link>` components with the same click behavior we\n * use in our exported `<Link>`.\n */\nexport function useLinkClickHandler<E extends Element = HTMLAnchorElement>(\n  to: To,\n  {\n    target,\n    replace: replaceProp,\n    state,\n    preventScrollReset,\n    relative,\n    unstable_viewTransition,\n  }: {\n    target?: React.HTMLAttributeAnchorTarget;\n    replace?: boolean;\n    state?: any;\n    preventScrollReset?: boolean;\n    relative?: RelativeRoutingType;\n    unstable_viewTransition?: boolean;\n  } = {}\n): (event: React.MouseEvent<E, MouseEvent>) => void {\n  let navigate = useNavigate();\n  let location = useLocation();\n  let path = useResolvedPath(to, { relative });\n\n  return React.useCallback(\n    (event: React.MouseEvent<E, MouseEvent>) => {\n      if (shouldProcessLinkClick(event, target)) {\n        event.preventDefault();\n\n        // If the URL hasn't changed, a regular <a> will do a replace instead of\n        // a push, so do the same here unless the replace prop is explicitly set\n        let replace =\n          replaceProp !== undefined\n            ? replaceProp\n            : createPath(location) === createPath(path);\n\n        navigate(to, {\n          replace,\n          state,\n          preventScrollReset,\n          relative,\n          unstable_viewTransition,\n        });\n      }\n    },\n    [\n      location,\n      navigate,\n      path,\n      replaceProp,\n      state,\n      target,\n      to,\n      preventScrollReset,\n      relative,\n      unstable_viewTransition,\n    ]\n  );\n}\n\n/**\n * A convenient wrapper for reading and writing search parameters via the\n * URLSearchParams interface.\n */\nexport function useSearchParams(\n  defaultInit?: URLSearchParamsInit\n): [URLSearchParams, SetURLSearchParams] {\n  warning(\n    typeof URLSearchParams !== \"undefined\",\n    `You cannot use the \\`useSearchParams\\` hook in a browser that does not ` +\n      `support the URLSearchParams API. If you need to support Internet ` +\n      `Explorer 11, we recommend you load a polyfill such as ` +\n      `https://github.com/ungap/url-search-params.`\n  );\n\n  let defaultSearchParamsRef = React.useRef(createSearchParams(defaultInit));\n  let hasSetSearchParamsRef = React.useRef(false);\n\n  let location = useLocation();\n  let searchParams = React.useMemo(\n    () =>\n      // Only merge in the defaults if we haven't yet called setSearchParams.\n      // Once we call that we want those to take precedence, otherwise you can't\n      // remove a param with setSearchParams({}) if it has an initial value\n      getSearchParamsForLocation(\n        location.search,\n        hasSetSearchParamsRef.current ? null : defaultSearchParamsRef.current\n      ),\n    [location.search]\n  );\n\n  let navigate = useNavigate();\n  let setSearchParams = React.useCallback<SetURLSearchParams>(\n    (nextInit, navigateOptions) => {\n      const newSearchParams = createSearchParams(\n        typeof nextInit === \"function\" ? nextInit(searchParams) : nextInit\n      );\n      hasSetSearchParamsRef.current = true;\n      navigate(\"?\" + newSearchParams, navigateOptions);\n    },\n    [navigate, searchParams]\n  );\n\n  return [searchParams, setSearchParams];\n}\n\nexport type SetURLSearchParams = (\n  nextInit?:\n    | URLSearchParamsInit\n    | ((prev: URLSearchParams) => URLSearchParamsInit),\n  navigateOpts?: NavigateOptions\n) => void;\n\n/**\n * Submits a HTML `<form>` to the server without reloading the page.\n */\nexport interface SubmitFunction {\n  (\n    /**\n     * Specifies the `<form>` to be submitted to the server, a specific\n     * `<button>` or `<input type=\"submit\">` to use to submit the form, or some\n     * arbitrary data to submit.\n     *\n     * Note: When using a `<button>` its `name` and `value` will also be\n     * included in the form data that is submitted.\n     */\n    target: SubmitTarget,\n\n    /**\n     * Options that override the `<form>`'s own attributes. Required when\n     * submitting arbitrary data without a backing `<form>`.\n     */\n    options?: SubmitOptions\n  ): void;\n}\n\n/**\n * Submits a fetcher `<form>` to the server without reloading the page.\n */\nexport interface FetcherSubmitFunction {\n  (\n    target: SubmitTarget,\n    // Fetchers cannot replace or set state because they are not navigation events\n    options?: FetcherSubmitOptions\n  ): void;\n}\n\nfunction validateClientSideSubmission() {\n  if (typeof document === \"undefined\") {\n    throw new Error(\n      \"You are calling submit during the server render. \" +\n        \"Try calling submit within a `useEffect` or callback instead.\"\n    );\n  }\n}\n\nlet fetcherId = 0;\nlet getUniqueFetcherId = () => `__${String(++fetcherId)}__`;\n\n/**\n * Returns a function that may be used to programmatically submit a form (or\n * some arbitrary data) to the server.\n */\nexport function useSubmit(): SubmitFunction {\n  let { router } = useDataRouterContext(DataRouterHook.UseSubmit);\n  let { basename } = React.useContext(NavigationContext);\n  let currentRouteId = useRouteId();\n\n  return React.useCallback<SubmitFunction>(\n    (target, options = {}) => {\n      validateClientSideSubmission();\n\n      let { action, method, encType, formData, body } = getFormSubmissionInfo(\n        target,\n        basename\n      );\n\n      if (options.navigate === false) {\n        let key = options.fetcherKey || getUniqueFetcherId();\n        router.fetch(key, currentRouteId, options.action || action, {\n          preventScrollReset: options.preventScrollReset,\n          formData,\n          body,\n          formMethod: options.method || (method as HTMLFormMethod),\n          formEncType: options.encType || (encType as FormEncType),\n          unstable_flushSync: options.unstable_flushSync,\n        });\n      } else {\n        router.navigate(options.action || action, {\n          preventScrollReset: options.preventScrollReset,\n          formData,\n          body,\n          formMethod: options.method || (method as HTMLFormMethod),\n          formEncType: options.encType || (encType as FormEncType),\n          replace: options.replace,\n          state: options.state,\n          fromRouteId: currentRouteId,\n          unstable_flushSync: options.unstable_flushSync,\n          unstable_viewTransition: options.unstable_viewTransition,\n        });\n      }\n    },\n    [router, basename, currentRouteId]\n  );\n}\n\n// v7: Eventually we should deprecate this entirely in favor of using the\n// router method directly?\nexport function useFormAction(\n  action?: string,\n  { relative }: { relative?: RelativeRoutingType } = {}\n): string {\n  let { basename } = React.useContext(NavigationContext);\n  let routeContext = React.useContext(RouteContext);\n  invariant(routeContext, \"useFormAction must be used inside a RouteContext\");\n\n  let [match] = routeContext.matches.slice(-1);\n  // Shallow clone path so we can modify it below, otherwise we modify the\n  // object referenced by useMemo inside useResolvedPath\n  let path = { ...useResolvedPath(action ? action : \".\", { relative }) };\n\n  // If no action was specified, browsers will persist current search params\n  // when determining the path, so match that behavior\n  // https://github.com/remix-run/remix/issues/927\n  let location = useLocation();\n  if (action == null) {\n    // Safe to write to this directly here since if action was undefined, we\n    // would have called useResolvedPath(\".\") which will never include a search\n    path.search = location.search;\n\n    // When grabbing search params from the URL, remove any included ?index param\n    // since it might not apply to our contextual route.  We add it back based\n    // on match.route.index below\n    let params = new URLSearchParams(path.search);\n    if (params.has(\"index\") && params.get(\"index\") === \"\") {\n      params.delete(\"index\");\n      path.search = params.toString() ? `?${params.toString()}` : \"\";\n    }\n  }\n\n  if ((!action || action === \".\") && match.route.index) {\n    path.search = path.search\n      ? path.search.replace(/^\\?/, \"?index&\")\n      : \"?index\";\n  }\n\n  // If we're operating within a basename, prepend it to the pathname prior\n  // to creating the form action.  If this is a root navigation, then just use\n  // the raw basename which allows the basename to have full control over the\n  // presence of a trailing slash on root actions\n  if (basename !== \"/\") {\n    path.pathname =\n      path.pathname === \"/\" ? basename : joinPaths([basename, path.pathname]);\n  }\n\n  return createPath(path);\n}\n\nexport type FetcherWithComponents<TData> = Fetcher<TData> & {\n  Form: React.ForwardRefExoticComponent<\n    FetcherFormProps & React.RefAttributes<HTMLFormElement>\n  >;\n  submit: FetcherSubmitFunction;\n  load: (href: string, opts?: { unstable_flushSync?: boolean }) => void;\n};\n\n// TODO: (v7) Change the useFetcher generic default from `any` to `unknown`\n\n/**\n * Interacts with route loaders and actions without causing a navigation. Great\n * for any interaction that stays on the same page.\n */\nexport function useFetcher<TData = any>({\n  key,\n}: { key?: string } = {}): FetcherWithComponents<TData> {\n  let { router } = useDataRouterContext(DataRouterHook.UseFetcher);\n  let state = useDataRouterState(DataRouterStateHook.UseFetcher);\n  let fetcherData = React.useContext(FetchersContext);\n  let route = React.useContext(RouteContext);\n  let routeId = route.matches[route.matches.length - 1]?.route.id;\n\n  invariant(fetcherData, `useFetcher must be used inside a FetchersContext`);\n  invariant(route, `useFetcher must be used inside a RouteContext`);\n  invariant(\n    routeId != null,\n    `useFetcher can only be used on routes that contain a unique \"id\"`\n  );\n\n  // Fetcher key handling\n  // OK to call conditionally to feature detect `useId`\n  // eslint-disable-next-line react-hooks/rules-of-hooks\n  let defaultKey = useIdImpl ? useIdImpl() : \"\";\n  let [fetcherKey, setFetcherKey] = React.useState<string>(key || defaultKey);\n  if (key && key !== fetcherKey) {\n    setFetcherKey(key);\n  } else if (!fetcherKey) {\n    // We will only fall through here when `useId` is not available\n    setFetcherKey(getUniqueFetcherId());\n  }\n\n  // Registration/cleanup\n  React.useEffect(() => {\n    router.getFetcher(fetcherKey);\n    return () => {\n      // Tell the router we've unmounted - if v7_fetcherPersist is enabled this\n      // will not delete immediately but instead queue up a delete after the\n      // fetcher returns to an `idle` state\n      router.deleteFetcher(fetcherKey);\n    };\n  }, [router, fetcherKey]);\n\n  // Fetcher additions\n  let load = React.useCallback(\n    (href: string, opts?: { unstable_flushSync?: boolean }) => {\n      invariant(routeId, \"No routeId available for fetcher.load()\");\n      router.fetch(fetcherKey, routeId, href, opts);\n    },\n    [fetcherKey, routeId, router]\n  );\n\n  let submitImpl = useSubmit();\n  let submit = React.useCallback<FetcherSubmitFunction>(\n    (target, opts) => {\n      submitImpl(target, {\n        ...opts,\n        navigate: false,\n        fetcherKey,\n      });\n    },\n    [fetcherKey, submitImpl]\n  );\n\n  let FetcherForm = React.useMemo(() => {\n    let FetcherForm = React.forwardRef<HTMLFormElement, FetcherFormProps>(\n      (props, ref) => {\n        return (\n          <Form {...props} navigate={false} fetcherKey={fetcherKey} ref={ref} />\n        );\n      }\n    );\n    if (__DEV__) {\n      FetcherForm.displayName = \"fetcher.Form\";\n    }\n    return FetcherForm;\n  }, [fetcherKey]);\n\n  // Exposed FetcherWithComponents\n  let fetcher = state.fetchers.get(fetcherKey) || IDLE_FETCHER;\n  let data = fetcherData.get(fetcherKey);\n  let fetcherWithComponents = React.useMemo(\n    () => ({\n      Form: FetcherForm,\n      submit,\n      load,\n      ...fetcher,\n      data,\n    }),\n    [FetcherForm, submit, load, fetcher, data]\n  );\n\n  return fetcherWithComponents;\n}\n\n/**\n * Provides all fetchers currently on the page. Useful for layouts and parent\n * routes that need to provide pending/optimistic UI regarding the fetch.\n */\nexport function useFetchers(): (Fetcher & { key: string })[] {\n  let state = useDataRouterState(DataRouterStateHook.UseFetchers);\n  return Array.from(state.fetchers.entries()).map(([key, fetcher]) => ({\n    ...fetcher,\n    key,\n  }));\n}\n\nconst SCROLL_RESTORATION_STORAGE_KEY = \"react-router-scroll-positions\";\nlet savedScrollPositions: Record<string, number> = {};\n\n/**\n * When rendered inside a RouterProvider, will restore scroll positions on navigations\n */\nfunction useScrollRestoration({\n  getKey,\n  storageKey,\n}: {\n  getKey?: GetScrollRestorationKeyFunction;\n  storageKey?: string;\n} = {}) {\n  let { router } = useDataRouterContext(DataRouterHook.UseScrollRestoration);\n  let { restoreScrollPosition, preventScrollReset } = useDataRouterState(\n    DataRouterStateHook.UseScrollRestoration\n  );\n  let { basename } = React.useContext(NavigationContext);\n  let location = useLocation();\n  let matches = useMatches();\n  let navigation = useNavigation();\n\n  // Trigger manual scroll restoration while we're active\n  React.useEffect(() => {\n    window.history.scrollRestoration = \"manual\";\n    return () => {\n      window.history.scrollRestoration = \"auto\";\n    };\n  }, []);\n\n  // Save positions on pagehide\n  usePageHide(\n    React.useCallback(() => {\n      if (navigation.state === \"idle\") {\n        let key = (getKey ? getKey(location, matches) : null) || location.key;\n        savedScrollPositions[key] = window.scrollY;\n      }\n      try {\n        sessionStorage.setItem(\n          storageKey || SCROLL_RESTORATION_STORAGE_KEY,\n          JSON.stringify(savedScrollPositions)\n        );\n      } catch (error) {\n        warning(\n          false,\n          `Failed to save scroll positions in sessionStorage, <ScrollRestoration /> will not work properly (${error}).`\n        );\n      }\n      window.history.scrollRestoration = \"auto\";\n    }, [storageKey, getKey, navigation.state, location, matches])\n  );\n\n  // Read in any saved scroll locations\n  if (typeof document !== \"undefined\") {\n    // eslint-disable-next-line react-hooks/rules-of-hooks\n    React.useLayoutEffect(() => {\n      try {\n        let sessionPositions = sessionStorage.getItem(\n          storageKey || SCROLL_RESTORATION_STORAGE_KEY\n        );\n        if (sessionPositions) {\n          savedScrollPositions = JSON.parse(sessionPositions);\n        }\n      } catch (e) {\n        // no-op, use default empty object\n      }\n    }, [storageKey]);\n\n    // Enable scroll restoration in the router\n    // eslint-disable-next-line react-hooks/rules-of-hooks\n    React.useLayoutEffect(() => {\n      let getKeyWithoutBasename: GetScrollRestorationKeyFunction | undefined =\n        getKey && basename !== \"/\"\n          ? (location, matches) =>\n              getKey(\n                // Strip the basename to match useLocation()\n                {\n                  ...location,\n                  pathname:\n                    stripBasename(location.pathname, basename) ||\n                    location.pathname,\n                },\n                matches\n              )\n          : getKey;\n      let disableScrollRestoration = router?.enableScrollRestoration(\n        savedScrollPositions,\n        () => window.scrollY,\n        getKeyWithoutBasename\n      );\n      return () => disableScrollRestoration && disableScrollRestoration();\n    }, [router, basename, getKey]);\n\n    // Restore scrolling when state.restoreScrollPosition changes\n    // eslint-disable-next-line react-hooks/rules-of-hooks\n    React.useLayoutEffect(() => {\n      // Explicit false means don't do anything (used for submissions)\n      if (restoreScrollPosition === false) {\n        return;\n      }\n\n      // been here before, scroll to it\n      if (typeof restoreScrollPosition === \"number\") {\n        window.scrollTo(0, restoreScrollPosition);\n        return;\n      }\n\n      // try to scroll to the hash\n      if (location.hash) {\n        let el = document.getElementById(\n          decodeURIComponent(location.hash.slice(1))\n        );\n        if (el) {\n          el.scrollIntoView();\n          return;\n        }\n      }\n\n      // Don't reset if this navigation opted out\n      if (preventScrollReset === true) {\n        return;\n      }\n\n      // otherwise go to the top on new locations\n      window.scrollTo(0, 0);\n    }, [location, restoreScrollPosition, preventScrollReset]);\n  }\n}\n\nexport { useScrollRestoration as UNSAFE_useScrollRestoration };\n\n/**\n * Setup a callback to be fired on the window's `beforeunload` event. This is\n * useful for saving some data to `window.localStorage` just before the page\n * refreshes.\n *\n * Note: The `callback` argument should be a function created with\n * `React.useCallback()`.\n */\nexport function useBeforeUnload(\n  callback: (event: BeforeUnloadEvent) => any,\n  options?: { capture?: boolean }\n): void {\n  let { capture } = options || {};\n  React.useEffect(() => {\n    let opts = capture != null ? { capture } : undefined;\n    window.addEventListener(\"beforeunload\", callback, opts);\n    return () => {\n      window.removeEventListener(\"beforeunload\", callback, opts);\n    };\n  }, [callback, capture]);\n}\n\n/**\n * Setup a callback to be fired on the window's `pagehide` event. This is\n * useful for saving some data to `window.localStorage` just before the page\n * refreshes.  This event is better supported than beforeunload across browsers.\n *\n * Note: The `callback` argument should be a function created with\n * `React.useCallback()`.\n */\nfunction usePageHide(\n  callback: (event: PageTransitionEvent) => any,\n  options?: { capture?: boolean }\n): void {\n  let { capture } = options || {};\n  React.useEffect(() => {\n    let opts = capture != null ? { capture } : undefined;\n    window.addEventListener(\"pagehide\", callback, opts);\n    return () => {\n      window.removeEventListener(\"pagehide\", callback, opts);\n    };\n  }, [callback, capture]);\n}\n\n/**\n * Wrapper around useBlocker to show a window.confirm prompt to users instead\n * of building a custom UI with useBlocker.\n *\n * Warning: This has *a lot of rough edges* and behaves very differently (and\n * very incorrectly in some cases) across browsers if user click addition\n * back/forward navigations while the confirm is open.  Use at your own risk.\n */\nfunction usePrompt({\n  when,\n  message,\n}: {\n  when: boolean | BlockerFunction;\n  message: string;\n}) {\n  let blocker = useBlocker(when);\n\n  React.useEffect(() => {\n    if (blocker.state === \"blocked\") {\n      let proceed = window.confirm(message);\n      if (proceed) {\n        // This timeout is needed to avoid a weird \"race\" on POP navigations\n        // between the `window.history` revert navigation and the result of\n        // `window.confirm`\n        setTimeout(blocker.proceed, 0);\n      } else {\n        blocker.reset();\n      }\n    }\n  }, [blocker, message]);\n\n  React.useEffect(() => {\n    if (blocker.state === \"blocked\" && !when) {\n      blocker.reset();\n    }\n  }, [blocker, when]);\n}\n\nexport { usePrompt as unstable_usePrompt };\n\n/**\n * Return a boolean indicating if there is an active view transition to the\n * given href.  You can use this value to render CSS classes or viewTransitionName\n * styles onto your elements\n *\n * @param href The destination href\n * @param [opts.relative] Relative routing type (\"route\" | \"path\")\n */\nfunction useViewTransitionState(\n  to: To,\n  opts: { relative?: RelativeRoutingType } = {}\n) {\n  let vtContext = React.useContext(ViewTransitionContext);\n\n  invariant(\n    vtContext != null,\n    \"`unstable_useViewTransitionState` must be used within `react-router-dom`'s `RouterProvider`.  \" +\n      \"Did you accidentally import `RouterProvider` from `react-router`?\"\n  );\n\n  let { basename } = useDataRouterContext(\n    DataRouterHook.useViewTransitionState\n  );\n  let path = useResolvedPath(to, { relative: opts.relative });\n  if (!vtContext.isTransitioning) {\n    return false;\n  }\n\n  let currentPath =\n    stripBasename(vtContext.currentLocation.pathname, basename) ||\n    vtContext.currentLocation.pathname;\n  let nextPath =\n    stripBasename(vtContext.nextLocation.pathname, basename) ||\n    vtContext.nextLocation.pathname;\n\n  // Transition is active if we're going to or coming from the indicated\n  // destination.  This ensures that other PUSH navigations that reverse\n  // an indicated transition apply.  I.e., on the list view you have:\n  //\n  //   <NavLink to=\"/details/1\" unstable_viewTransition>\n  //\n  // If you click the breadcrumb back to the list view:\n  //\n  //   <NavLink to=\"/list\" unstable_viewTransition>\n  //\n  // We should apply the transition because it's indicated as active going\n  // from /list -> /details/1 and therefore should be active on the reverse\n  // (even though this isn't strictly a POP reverse)\n  return (\n    matchPath(path.pathname, nextPath) != null ||\n    matchPath(path.pathname, currentPath) != null\n  );\n}\n\nexport { useViewTransitionState as unstable_useViewTransitionState };\n\n//#endregion\n"],"names":["defaultMethod","defaultEncType","isHtmlElement","object","tagName","createSearchParams","init","URLSearchParams","Array","isArray","Object","keys","reduce","memo","key","value","concat","map","v","_formDataSupportsSubmitter","supportedFormEncTypes","Set","getFormEncType","encType","has","getFormSubmissionInfo","target","basename","method","action","formData","body","toLowerCase","attr","getAttribute","stripBasename","FormData","isButtonElement","isInputElement","type","form","Error","document","createElement","e","isFormDataSubmitterSupported","name","prefix","append","undefined","window","__reactRouterVersion","parseHydrationData","_window","state","__staticRouterHydrationData","errors","_extends","deserializeErrors","entries","serialized","val","__type","ErrorResponseImpl","status","statusText","data","internal","__subType","ErrorConstructor","error","message","stack","ViewTransitionContext","React","createContext","isTransitioning","FetchersContext","Map","startTransitionImpl","flushSyncImpl","ReactDOM","useIdImpl","flushSyncSafe","cb","Deferred","constructor","this","promise","Promise","resolve","reject","reason","MemoizedDataRoutes","DataRoutes","_ref3","routes","future","useRoutesImpl","UNSAFE_useRoutesImpl","isBrowser","ABSOLUTE_URL_REGEX","Link","forwardRef","_ref7","ref","absoluteHref","onClick","relative","reloadDocument","replace","to","preventScrollReset","unstable_viewTransition","rest","_objectWithoutPropertiesLoose","_excluded","useContext","NavigationContext","isExternal","test","currentUrl","URL","location","href","targetUrl","startsWith","protocol","path","pathname","origin","search","hash","useHref","internalOnClick","useLinkClickHandler","event","defaultPrevented","NavLink","_ref8","ariaCurrentProp","caseSensitive","className","classNameProp","end","style","styleProp","children","_excluded2","useResolvedPath","useLocation","routerState","DataRouterStateContext","UNSAFE_DataRouterStateContext","navigator","useViewTransitionState","toPathname","encodeLocation","locationPathname","nextLocationPathname","navigation","endSlashPosition","endsWith","length","isActive","charAt","isPending","renderProps","ariaCurrent","filter","Boolean","join","Form","_ref9","forwardedRef","fetcherKey","navigate","onSubmit","props","_excluded3","submit","useSubmit","formAction","useFormAction","formMethod","preventDefault","submitter","nativeEvent","submitMethod","currentTarget","DataRouterHook","DataRouterStateHook","useDataRouterContext","hookName","ctx","DataRouterContext","UNSAFE_DataRouterContext","invariant","UNSAFE_invariant","useDataRouterState","_temp","replaceProp","useNavigate","useCallback","button","metaKey","altKey","ctrlKey","shiftKey","isModifiedEvent","shouldProcessLinkClick","createPath","fetcherId","getUniqueFetcherId","String","router","UseSubmit","currentRouteId","useRouteId","options","validateClientSideSubmission","fetch","formEncType","unstable_flushSync","fromRouteId","_temp2","routeContext","RouteContext","UNSAFE_RouteContext","match","matches","slice","params","get","delete","toString","route","index","joinPaths","SCROLL_RESTORATION_STORAGE_KEY","savedScrollPositions","useScrollRestoration","_temp4","getKey","storageKey","UseScrollRestoration","restoreScrollPosition","useMatches","useNavigation","useEffect","history","scrollRestoration","callback","capture","opts","addEventListener","removeEventListener","usePageHide","scrollY","sessionStorage","setItem","JSON","stringify","useLayoutEffect","sessionPositions","getItem","parse","getKeyWithoutBasename","disableScrollRestoration","enableScrollRestoration","el","getElementById","decodeURIComponent","scrollIntoView","scrollTo","vtContext","currentPath","currentLocation","nextPath","nextLocation","matchPath","_ref4","historyRef","useRef","current","createBrowserHistory","v5Compat","setStateImpl","useState","v7_startTransition","setState","newState","listen","Router","navigationType","_ref5","createHashHistory","_ref","fallbackElement","pendingState","setPendingState","setVtContext","renderDfd","setRenderDfd","transition","setTransition","interruption","setInterruption","fetcherData","optInStartTransition","startTransitionSafe","_ref2","deletedFetchers","flushSync","unstable_viewTransitionOpts","viewTransitionOpts","forEach","fetchers","fetcher","set","isViewTransitionUnavailable","startViewTransition","skipTransition","t","finished","finally","subscribe","renderPromise","async","useMemo","createHref","go","n","push","dataRouterContext","static","routerFuture","v7_relativeSplatPath","Fragment","Provider","historyAction","initialized","v7_partialHydration","_ref10","createRouter","v7_prependBasename","hydrationData","mapRouteProperties","UNSAFE_mapRouteProperties","unstable_dataStrategy","unstable_patchRoutesOnMiss","initialize","_ref6","_ref12","when","blocker","useBlocker","confirm","setTimeout","proceed","reset","_temp3","_route$matches","UseFetcher","routeId","id","defaultKey","setFetcherKey","getFetcher","deleteFetcher","load","submitImpl","FetcherForm","IDLE_FETCHER","UseFetchers","from","_ref11","defaultInit","defaultSearchParamsRef","hasSetSearchParamsRef","searchParams","locationSearch","defaultSearchParams","_","getAll","getSearchParamsForLocation","setSearchParams","nextInit","navigateOptions","newSearchParams"],"mappings":"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"}
     1{"version":3,"file":"react-router-dom.production.min.js","sources":["../../dom.ts","../../index.tsx"],"sourcesContent":["import type {\n  FormEncType,\n  HTMLFormMethod,\n  RelativeRoutingType,\n} from \"@remix-run/router\";\nimport { stripBasename, UNSAFE_warning as warning } from \"@remix-run/router\";\n\nexport const defaultMethod: HTMLFormMethod = \"get\";\nconst defaultEncType: FormEncType = \"application/x-www-form-urlencoded\";\n\nexport function isHtmlElement(object: any): object is HTMLElement {\n  return object != null && typeof object.tagName === \"string\";\n}\n\nexport function isButtonElement(object: any): object is HTMLButtonElement {\n  return isHtmlElement(object) && object.tagName.toLowerCase() === \"button\";\n}\n\nexport function isFormElement(object: any): object is HTMLFormElement {\n  return isHtmlElement(object) && object.tagName.toLowerCase() === \"form\";\n}\n\nexport function isInputElement(object: any): object is HTMLInputElement {\n  return isHtmlElement(object) && object.tagName.toLowerCase() === \"input\";\n}\n\ntype LimitedMouseEvent = Pick<\n  MouseEvent,\n  \"button\" | \"metaKey\" | \"altKey\" | \"ctrlKey\" | \"shiftKey\"\n>;\n\nfunction isModifiedEvent(event: LimitedMouseEvent) {\n  return !!(event.metaKey || event.altKey || event.ctrlKey || event.shiftKey);\n}\n\nexport function shouldProcessLinkClick(\n  event: LimitedMouseEvent,\n  target?: string\n) {\n  return (\n    event.button === 0 && // Ignore everything but left clicks\n    (!target || target === \"_self\") && // Let browser handle \"target=_blank\" etc.\n    !isModifiedEvent(event) // Ignore clicks with modifier keys\n  );\n}\n\nexport type ParamKeyValuePair = [string, string];\n\nexport type URLSearchParamsInit =\n  | string\n  | ParamKeyValuePair[]\n  | Record<string, string | string[]>\n  | URLSearchParams;\n\n/**\n * Creates a URLSearchParams object using the given initializer.\n *\n * This is identical to `new URLSearchParams(init)` except it also\n * supports arrays as values in the object form of the initializer\n * instead of just strings. This is convenient when you need multiple\n * values for a given key, but don't want to use an array initializer.\n *\n * For example, instead of:\n *\n *   let searchParams = new URLSearchParams([\n *     ['sort', 'name'],\n *     ['sort', 'price']\n *   ]);\n *\n * you can do:\n *\n *   let searchParams = createSearchParams({\n *     sort: ['name', 'price']\n *   });\n */\nexport function createSearchParams(\n  init: URLSearchParamsInit = \"\"\n): URLSearchParams {\n  return new URLSearchParams(\n    typeof init === \"string\" ||\n    Array.isArray(init) ||\n    init instanceof URLSearchParams\n      ? init\n      : Object.keys(init).reduce((memo, key) => {\n          let value = init[key];\n          return memo.concat(\n            Array.isArray(value) ? value.map((v) => [key, v]) : [[key, value]]\n          );\n        }, [] as ParamKeyValuePair[])\n  );\n}\n\nexport function getSearchParamsForLocation(\n  locationSearch: string,\n  defaultSearchParams: URLSearchParams | null\n) {\n  let searchParams = createSearchParams(locationSearch);\n\n  if (defaultSearchParams) {\n    // Use `defaultSearchParams.forEach(...)` here instead of iterating of\n    // `defaultSearchParams.keys()` to work-around a bug in Firefox related to\n    // web extensions. Relevant Bugzilla tickets:\n    // https://bugzilla.mozilla.org/show_bug.cgi?id=1414602\n    // https://bugzilla.mozilla.org/show_bug.cgi?id=1023984\n    defaultSearchParams.forEach((_, key) => {\n      if (!searchParams.has(key)) {\n        defaultSearchParams.getAll(key).forEach((value) => {\n          searchParams.append(key, value);\n        });\n      }\n    });\n  }\n\n  return searchParams;\n}\n\n// Thanks https://github.com/sindresorhus/type-fest!\ntype JsonObject = { [Key in string]: JsonValue } & {\n  [Key in string]?: JsonValue | undefined;\n};\ntype JsonArray = JsonValue[] | readonly JsonValue[];\ntype JsonPrimitive = string | number | boolean | null;\ntype JsonValue = JsonPrimitive | JsonObject | JsonArray;\n\nexport type SubmitTarget =\n  | HTMLFormElement\n  | HTMLButtonElement\n  | HTMLInputElement\n  | FormData\n  | URLSearchParams\n  | JsonValue\n  | null;\n\n// One-time check for submitter support\nlet _formDataSupportsSubmitter: boolean | null = null;\n\nfunction isFormDataSubmitterSupported() {\n  if (_formDataSupportsSubmitter === null) {\n    try {\n      new FormData(\n        document.createElement(\"form\"),\n        // @ts-expect-error if FormData supports the submitter parameter, this will throw\n        0\n      );\n      _formDataSupportsSubmitter = false;\n    } catch (e) {\n      _formDataSupportsSubmitter = true;\n    }\n  }\n  return _formDataSupportsSubmitter;\n}\n\n/**\n * Submit options shared by both navigations and fetchers\n */\ninterface SharedSubmitOptions {\n  /**\n   * The HTTP method used to submit the form. Overrides `<form method>`.\n   * Defaults to \"GET\".\n   */\n  method?: HTMLFormMethod;\n\n  /**\n   * The action URL path used to submit the form. Overrides `<form action>`.\n   * Defaults to the path of the current route.\n   */\n  action?: string;\n\n  /**\n   * The encoding used to submit the form. Overrides `<form encType>`.\n   * Defaults to \"application/x-www-form-urlencoded\".\n   */\n  encType?: FormEncType;\n\n  /**\n   * Determines whether the form action is relative to the route hierarchy or\n   * the pathname.  Use this if you want to opt out of navigating the route\n   * hierarchy and want to instead route based on /-delimited URL segments\n   */\n  relative?: RelativeRoutingType;\n\n  /**\n   * In browser-based environments, prevent resetting scroll after this\n   * navigation when using the <ScrollRestoration> component\n   */\n  preventScrollReset?: boolean;\n\n  /**\n   * Enable flushSync for this submission's state updates\n   */\n  flushSync?: boolean;\n}\n\n/**\n * Submit options available to fetchers\n */\nexport interface FetcherSubmitOptions extends SharedSubmitOptions {}\n\n/**\n * Submit options available to navigations\n */\nexport interface SubmitOptions extends FetcherSubmitOptions {\n  /**\n   * Set `true` to replace the current entry in the browser's history stack\n   * instead of creating a new one (i.e. stay on \"the same page\"). Defaults\n   * to `false`.\n   */\n  replace?: boolean;\n\n  /**\n   * State object to add to the history stack entry for this navigation\n   */\n  state?: any;\n\n  /**\n   * Indicate a specific fetcherKey to use when using navigate=false\n   */\n  fetcherKey?: string;\n\n  /**\n   * navigate=false will use a fetcher instead of a navigation\n   */\n  navigate?: boolean;\n\n  /**\n   * Enable view transitions on this submission navigation\n   */\n  viewTransition?: boolean;\n}\n\nconst supportedFormEncTypes: Set<FormEncType> = new Set([\n  \"application/x-www-form-urlencoded\",\n  \"multipart/form-data\",\n  \"text/plain\",\n]);\n\nfunction getFormEncType(encType: string | null) {\n  if (encType != null && !supportedFormEncTypes.has(encType as FormEncType)) {\n    warning(\n      false,\n      `\"${encType}\" is not a valid \\`encType\\` for \\`<Form>\\`/\\`<fetcher.Form>\\` ` +\n        `and will default to \"${defaultEncType}\"`\n    );\n\n    return null;\n  }\n  return encType;\n}\n\nexport function getFormSubmissionInfo(\n  target: SubmitTarget,\n  basename: string\n): {\n  action: string | null;\n  method: string;\n  encType: string;\n  formData: FormData | undefined;\n  body: any;\n} {\n  let method: string;\n  let action: string | null;\n  let encType: string;\n  let formData: FormData | undefined;\n  let body: any;\n\n  if (isFormElement(target)) {\n    // When grabbing the action from the element, it will have had the basename\n    // prefixed to ensure non-JS scenarios work, so strip it since we'll\n    // re-prefix in the router\n    let attr = target.getAttribute(\"action\");\n    action = attr ? stripBasename(attr, basename) : null;\n    method = target.getAttribute(\"method\") || defaultMethod;\n    encType = getFormEncType(target.getAttribute(\"enctype\")) || defaultEncType;\n\n    formData = new FormData(target);\n  } else if (\n    isButtonElement(target) ||\n    (isInputElement(target) &&\n      (target.type === \"submit\" || target.type === \"image\"))\n  ) {\n    let form = target.form;\n\n    if (form == null) {\n      throw new Error(\n        `Cannot submit a <button> or <input type=\"submit\"> without a <form>`\n      );\n    }\n\n    // <button>/<input type=\"submit\"> may override attributes of <form>\n\n    // When grabbing the action from the element, it will have had the basename\n    // prefixed to ensure non-JS scenarios work, so strip it since we'll\n    // re-prefix in the router\n    let attr = target.getAttribute(\"formaction\") || form.getAttribute(\"action\");\n    action = attr ? stripBasename(attr, basename) : null;\n\n    method =\n      target.getAttribute(\"formmethod\") ||\n      form.getAttribute(\"method\") ||\n      defaultMethod;\n    encType =\n      getFormEncType(target.getAttribute(\"formenctype\")) ||\n      getFormEncType(form.getAttribute(\"enctype\")) ||\n      defaultEncType;\n\n    // Build a FormData object populated from a form and submitter\n    formData = new FormData(form, target);\n\n    // If this browser doesn't support the `FormData(el, submitter)` format,\n    // then tack on the submitter value at the end.  This is a lightweight\n    // solution that is not 100% spec compliant.  For complete support in older\n    // browsers, consider using the `formdata-submitter-polyfill` package\n    if (!isFormDataSubmitterSupported()) {\n      let { name, type, value } = target;\n      if (type === \"image\") {\n        let prefix = name ? `${name}.` : \"\";\n        formData.append(`${prefix}x`, \"0\");\n        formData.append(`${prefix}y`, \"0\");\n      } else if (name) {\n        formData.append(name, value);\n      }\n    }\n  } else if (isHtmlElement(target)) {\n    throw new Error(\n      `Cannot submit element that is not <form>, <button>, or ` +\n        `<input type=\"submit|image\">`\n    );\n  } else {\n    method = defaultMethod;\n    action = null;\n    encType = defaultEncType;\n    body = target;\n  }\n\n  // Send body for <Form encType=\"text/plain\" so we encode it into text\n  if (formData && encType === \"text/plain\") {\n    body = formData;\n    formData = undefined;\n  }\n\n  return { action, method: method.toLowerCase(), encType, formData, body };\n}\n","/**\n * NOTE: If you refactor this to split up the modules into separate files,\n * you'll need to update the rollup config for react-router-dom-v5-compat.\n */\nimport * as React from \"react\";\nimport * as ReactDOM from \"react-dom\";\nimport type {\n  DataRouteObject,\n  FutureConfig,\n  Location,\n  NavigateOptions,\n  NavigationType,\n  Navigator,\n  RelativeRoutingType,\n  RouteObject,\n  RouterProps,\n  RouterProviderProps,\n  To,\n  DataStrategyFunction,\n  PatchRoutesOnNavigationFunction,\n} from \"react-router\";\nimport {\n  Router,\n  createPath,\n  useHref,\n  useLocation,\n  useMatches,\n  useNavigate,\n  useNavigation,\n  useResolvedPath,\n  useBlocker,\n  UNSAFE_DataRouterContext as DataRouterContext,\n  UNSAFE_DataRouterStateContext as DataRouterStateContext,\n  UNSAFE_NavigationContext as NavigationContext,\n  UNSAFE_RouteContext as RouteContext,\n  UNSAFE_logV6DeprecationWarnings as logV6DeprecationWarnings,\n  UNSAFE_mapRouteProperties as mapRouteProperties,\n  UNSAFE_useRouteId as useRouteId,\n  UNSAFE_useRoutesImpl as useRoutesImpl,\n} from \"react-router\";\nimport type {\n  BrowserHistory,\n  Fetcher,\n  FormEncType,\n  FormMethod,\n  FutureConfig as RouterFutureConfig,\n  GetScrollRestorationKeyFunction,\n  HashHistory,\n  History,\n  HTMLFormMethod,\n  HydrationState,\n  Router as RemixRouter,\n  V7_FormMethod,\n  RouterState,\n  RouterSubscriber,\n  BlockerFunction,\n} from \"@remix-run/router\";\nimport {\n  createRouter,\n  createBrowserHistory,\n  createHashHistory,\n  joinPaths,\n  stripBasename,\n  UNSAFE_ErrorResponseImpl as ErrorResponseImpl,\n  UNSAFE_invariant as invariant,\n  UNSAFE_warning as warning,\n  matchPath,\n  IDLE_FETCHER,\n} from \"@remix-run/router\";\n\nimport type {\n  SubmitOptions,\n  ParamKeyValuePair,\n  URLSearchParamsInit,\n  SubmitTarget,\n  FetcherSubmitOptions,\n} from \"./dom\";\nimport {\n  createSearchParams,\n  defaultMethod,\n  getFormSubmissionInfo,\n  getSearchParamsForLocation,\n  shouldProcessLinkClick,\n} from \"./dom\";\n\n////////////////////////////////////////////////////////////////////////////////\n//#region Re-exports\n////////////////////////////////////////////////////////////////////////////////\n\nexport type {\n  FormEncType,\n  FormMethod,\n  GetScrollRestorationKeyFunction,\n  ParamKeyValuePair,\n  SubmitOptions,\n  URLSearchParamsInit,\n  V7_FormMethod,\n};\nexport { createSearchParams, ErrorResponseImpl as UNSAFE_ErrorResponseImpl };\n\n// Note: Keep in sync with react-router exports!\nexport type {\n  ActionFunction,\n  ActionFunctionArgs,\n  AwaitProps,\n  Blocker,\n  BlockerFunction,\n  DataRouteMatch,\n  DataRouteObject,\n  DataStrategyFunction,\n  DataStrategyFunctionArgs,\n  DataStrategyMatch,\n  DataStrategyResult,\n  ErrorResponse,\n  Fetcher,\n  FutureConfig,\n  Hash,\n  IndexRouteObject,\n  IndexRouteProps,\n  JsonFunction,\n  LazyRouteFunction,\n  LayoutRouteProps,\n  LoaderFunction,\n  LoaderFunctionArgs,\n  Location,\n  MemoryRouterProps,\n  NavigateFunction,\n  NavigateOptions,\n  NavigateProps,\n  Navigation,\n  Navigator,\n  NonIndexRouteObject,\n  OutletProps,\n  Params,\n  ParamParseKey,\n  PatchRoutesOnNavigationFunction,\n  PatchRoutesOnNavigationFunctionArgs,\n  Path,\n  PathMatch,\n  Pathname,\n  PathParam,\n  PathPattern,\n  PathRouteProps,\n  RedirectFunction,\n  RelativeRoutingType,\n  RouteMatch,\n  RouteObject,\n  RouteProps,\n  RouterProps,\n  RouterProviderProps,\n  RoutesProps,\n  Search,\n  ShouldRevalidateFunction,\n  ShouldRevalidateFunctionArgs,\n  To,\n  UIMatch,\n} from \"react-router\";\nexport {\n  AbortedDeferredError,\n  Await,\n  MemoryRouter,\n  Navigate,\n  NavigationType,\n  Outlet,\n  Route,\n  Router,\n  Routes,\n  createMemoryRouter,\n  createPath,\n  createRoutesFromChildren,\n  createRoutesFromElements,\n  defer,\n  isRouteErrorResponse,\n  generatePath,\n  json,\n  matchPath,\n  matchRoutes,\n  parsePath,\n  redirect,\n  redirectDocument,\n  replace,\n  renderMatches,\n  resolvePath,\n  useActionData,\n  useAsyncError,\n  useAsyncValue,\n  useBlocker,\n  useHref,\n  useInRouterContext,\n  useLoaderData,\n  useLocation,\n  useMatch,\n  useMatches,\n  useNavigate,\n  useNavigation,\n  useNavigationType,\n  useOutlet,\n  useOutletContext,\n  useParams,\n  useResolvedPath,\n  useRevalidator,\n  useRouteError,\n  useRouteLoaderData,\n  useRoutes,\n} from \"react-router\";\n\n///////////////////////////////////////////////////////////////////////////////\n// DANGER! PLEASE READ ME!\n// We provide these exports as an escape hatch in the event that you need any\n// routing data that we don't provide an explicit API for. With that said, we\n// want to cover your use case if we can, so if you feel the need to use these\n// we want to hear from you. Let us know what you're building and we'll do our\n// best to make sure we can support you!\n//\n// We consider these exports an implementation detail and do not guarantee\n// against any breaking changes, regardless of the semver release. Use with\n// extreme caution and only if you understand the consequences. Godspeed.\n///////////////////////////////////////////////////////////////////////////////\n\n/** @internal */\nexport {\n  UNSAFE_DataRouterContext,\n  UNSAFE_DataRouterStateContext,\n  UNSAFE_NavigationContext,\n  UNSAFE_LocationContext,\n  UNSAFE_RouteContext,\n  UNSAFE_useRouteId,\n} from \"react-router\";\n//#endregion\n\ndeclare global {\n  var __staticRouterHydrationData: HydrationState | undefined;\n  var __reactRouterVersion: string;\n  interface Document {\n    startViewTransition(cb: () => Promise<void> | void): ViewTransition;\n  }\n}\n\n// HEY YOU! DON'T TOUCH THIS VARIABLE!\n//\n// It is replaced with the proper version at build time via a babel plugin in\n// the rollup config.\n//\n// Export a global property onto the window for React Router detection by the\n// Core Web Vitals Technology Report.  This way they can configure the `wappalyzer`\n// to detect and properly classify live websites as being built with React Router:\n// https://github.com/HTTPArchive/wappalyzer/blob/main/src/technologies/r.json\nconst REACT_ROUTER_VERSION = \"0\";\ntry {\n  window.__reactRouterVersion = REACT_ROUTER_VERSION;\n} catch (e) {\n  // no-op\n}\n\n////////////////////////////////////////////////////////////////////////////////\n//#region Routers\n////////////////////////////////////////////////////////////////////////////////\n\ninterface DOMRouterOpts {\n  basename?: string;\n  future?: Partial<Omit<RouterFutureConfig, \"v7_prependBasename\">>;\n  hydrationData?: HydrationState;\n  dataStrategy?: DataStrategyFunction;\n  patchRoutesOnNavigation?: PatchRoutesOnNavigationFunction;\n  window?: Window;\n}\n\nexport function createBrowserRouter(\n  routes: RouteObject[],\n  opts?: DOMRouterOpts\n): RemixRouter {\n  return createRouter({\n    basename: opts?.basename,\n    future: {\n      ...opts?.future,\n      v7_prependBasename: true,\n    },\n    history: createBrowserHistory({ window: opts?.window }),\n    hydrationData: opts?.hydrationData || parseHydrationData(),\n    routes,\n    mapRouteProperties,\n    dataStrategy: opts?.dataStrategy,\n    patchRoutesOnNavigation: opts?.patchRoutesOnNavigation,\n    window: opts?.window,\n  }).initialize();\n}\n\nexport function createHashRouter(\n  routes: RouteObject[],\n  opts?: DOMRouterOpts\n): RemixRouter {\n  return createRouter({\n    basename: opts?.basename,\n    future: {\n      ...opts?.future,\n      v7_prependBasename: true,\n    },\n    history: createHashHistory({ window: opts?.window }),\n    hydrationData: opts?.hydrationData || parseHydrationData(),\n    routes,\n    mapRouteProperties,\n    dataStrategy: opts?.dataStrategy,\n    patchRoutesOnNavigation: opts?.patchRoutesOnNavigation,\n    window: opts?.window,\n  }).initialize();\n}\n\nfunction parseHydrationData(): HydrationState | undefined {\n  let state = window?.__staticRouterHydrationData;\n  if (state && state.errors) {\n    state = {\n      ...state,\n      errors: deserializeErrors(state.errors),\n    };\n  }\n  return state;\n}\n\nfunction deserializeErrors(\n  errors: RemixRouter[\"state\"][\"errors\"]\n): RemixRouter[\"state\"][\"errors\"] {\n  if (!errors) return null;\n  let entries = Object.entries(errors);\n  let serialized: RemixRouter[\"state\"][\"errors\"] = {};\n  for (let [key, val] of entries) {\n    // Hey you!  If you change this, please change the corresponding logic in\n    // serializeErrors in react-router-dom/server.tsx :)\n    if (val && val.__type === \"RouteErrorResponse\") {\n      serialized[key] = new ErrorResponseImpl(\n        val.status,\n        val.statusText,\n        val.data,\n        val.internal === true\n      );\n    } else if (val && val.__type === \"Error\") {\n      // Attempt to reconstruct the right type of Error (i.e., ReferenceError)\n      if (val.__subType) {\n        let ErrorConstructor = window[val.__subType];\n        if (typeof ErrorConstructor === \"function\") {\n          try {\n            // @ts-expect-error\n            let error = new ErrorConstructor(val.message);\n            // Wipe away the client-side stack trace.  Nothing to fill it in with\n            // because we don't serialize SSR stack traces for security reasons\n            error.stack = \"\";\n            serialized[key] = error;\n          } catch (e) {\n            // no-op - fall through and create a normal Error\n          }\n        }\n      }\n\n      if (serialized[key] == null) {\n        let error = new Error(val.message);\n        // Wipe away the client-side stack trace.  Nothing to fill it in with\n        // because we don't serialize SSR stack traces for security reasons\n        error.stack = \"\";\n        serialized[key] = error;\n      }\n    } else {\n      serialized[key] = val;\n    }\n  }\n  return serialized;\n}\n\n//#endregion\n\n////////////////////////////////////////////////////////////////////////////////\n//#region Contexts\n////////////////////////////////////////////////////////////////////////////////\n\ntype ViewTransitionContextObject =\n  | {\n      isTransitioning: false;\n    }\n  | {\n      isTransitioning: true;\n      flushSync: boolean;\n      currentLocation: Location;\n      nextLocation: Location;\n    };\n\nconst ViewTransitionContext = React.createContext<ViewTransitionContextObject>({\n  isTransitioning: false,\n});\nif (__DEV__) {\n  ViewTransitionContext.displayName = \"ViewTransition\";\n}\n\nexport { ViewTransitionContext as UNSAFE_ViewTransitionContext };\n\n// TODO: (v7) Change the useFetcher data from `any` to `unknown`\ntype FetchersContextObject = Map<string, any>;\n\nconst FetchersContext = React.createContext<FetchersContextObject>(new Map());\nif (__DEV__) {\n  FetchersContext.displayName = \"Fetchers\";\n}\n\nexport { FetchersContext as UNSAFE_FetchersContext };\n\n//#endregion\n\n////////////////////////////////////////////////////////////////////////////////\n//#region Components\n////////////////////////////////////////////////////////////////////////////////\n\n/**\n  Webpack + React 17 fails to compile on any of the following because webpack\n  complains that `startTransition` doesn't exist in `React`:\n  * import { startTransition } from \"react\"\n  * import * as React from from \"react\";\n    \"startTransition\" in React ? React.startTransition(() => setState()) : setState()\n  * import * as React from from \"react\";\n    \"startTransition\" in React ? React[\"startTransition\"](() => setState()) : setState()\n\n  Moving it to a constant such as the following solves the Webpack/React 17 issue:\n  * import * as React from from \"react\";\n    const START_TRANSITION = \"startTransition\";\n    START_TRANSITION in React ? React[START_TRANSITION](() => setState()) : setState()\n\n  However, that introduces webpack/terser minification issues in production builds\n  in React 18 where minification/obfuscation ends up removing the call of\n  React.startTransition entirely from the first half of the ternary.  Grabbing\n  this exported reference once up front resolves that issue.\n\n  See https://github.com/remix-run/react-router/issues/10579\n*/\nconst START_TRANSITION = \"startTransition\";\nconst startTransitionImpl = React[START_TRANSITION];\nconst FLUSH_SYNC = \"flushSync\";\nconst flushSyncImpl = ReactDOM[FLUSH_SYNC];\nconst USE_ID = \"useId\";\nconst useIdImpl = React[USE_ID];\n\nfunction startTransitionSafe(cb: () => void) {\n  if (startTransitionImpl) {\n    startTransitionImpl(cb);\n  } else {\n    cb();\n  }\n}\n\nfunction flushSyncSafe(cb: () => void) {\n  if (flushSyncImpl) {\n    flushSyncImpl(cb);\n  } else {\n    cb();\n  }\n}\n\ninterface ViewTransition {\n  finished: Promise<void>;\n  ready: Promise<void>;\n  updateCallbackDone: Promise<void>;\n  skipTransition(): void;\n}\n\nclass Deferred<T> {\n  status: \"pending\" | \"resolved\" | \"rejected\" = \"pending\";\n  promise: Promise<T>;\n  // @ts-expect-error - no initializer\n  resolve: (value: T) => void;\n  // @ts-expect-error - no initializer\n  reject: (reason?: unknown) => void;\n  constructor() {\n    this.promise = new Promise((resolve, reject) => {\n      this.resolve = (value) => {\n        if (this.status === \"pending\") {\n          this.status = \"resolved\";\n          resolve(value);\n        }\n      };\n      this.reject = (reason) => {\n        if (this.status === \"pending\") {\n          this.status = \"rejected\";\n          reject(reason);\n        }\n      };\n    });\n  }\n}\n\n/**\n * Given a Remix Router instance, render the appropriate UI\n */\nexport function RouterProvider({\n  fallbackElement,\n  router,\n  future,\n}: RouterProviderProps): React.ReactElement {\n  let [state, setStateImpl] = React.useState(router.state);\n  let [pendingState, setPendingState] = React.useState<RouterState>();\n  let [vtContext, setVtContext] = React.useState<ViewTransitionContextObject>({\n    isTransitioning: false,\n  });\n  let [renderDfd, setRenderDfd] = React.useState<Deferred<void>>();\n  let [transition, setTransition] = React.useState<ViewTransition>();\n  let [interruption, setInterruption] = React.useState<{\n    state: RouterState;\n    currentLocation: Location;\n    nextLocation: Location;\n  }>();\n  let fetcherData = React.useRef<Map<string, any>>(new Map());\n  let { v7_startTransition } = future || {};\n\n  let optInStartTransition = React.useCallback(\n    (cb: () => void) => {\n      if (v7_startTransition) {\n        startTransitionSafe(cb);\n      } else {\n        cb();\n      }\n    },\n    [v7_startTransition]\n  );\n\n  let setState = React.useCallback<RouterSubscriber>(\n    (\n      newState: RouterState,\n      {\n        deletedFetchers,\n        flushSync: flushSync,\n        viewTransitionOpts: viewTransitionOpts,\n      }\n    ) => {\n      deletedFetchers.forEach((key) => fetcherData.current.delete(key));\n      newState.fetchers.forEach((fetcher, key) => {\n        if (fetcher.data !== undefined) {\n          fetcherData.current.set(key, fetcher.data);\n        }\n      });\n\n      let isViewTransitionUnavailable =\n        router.window == null ||\n        router.window.document == null ||\n        typeof router.window.document.startViewTransition !== \"function\";\n\n      // If this isn't a view transition or it's not available in this browser,\n      // just update and be done with it\n      if (!viewTransitionOpts || isViewTransitionUnavailable) {\n        if (flushSync) {\n          flushSyncSafe(() => setStateImpl(newState));\n        } else {\n          optInStartTransition(() => setStateImpl(newState));\n        }\n        return;\n      }\n\n      // flushSync + startViewTransition\n      if (flushSync) {\n        // Flush through the context to mark DOM elements as transition=ing\n        flushSyncSafe(() => {\n          // Cancel any pending transitions\n          if (transition) {\n            renderDfd && renderDfd.resolve();\n            transition.skipTransition();\n          }\n          setVtContext({\n            isTransitioning: true,\n            flushSync: true,\n            currentLocation: viewTransitionOpts.currentLocation,\n            nextLocation: viewTransitionOpts.nextLocation,\n          });\n        });\n\n        // Update the DOM\n        let t = router.window!.document.startViewTransition(() => {\n          flushSyncSafe(() => setStateImpl(newState));\n        });\n\n        // Clean up after the animation completes\n        t.finished.finally(() => {\n          flushSyncSafe(() => {\n            setRenderDfd(undefined);\n            setTransition(undefined);\n            setPendingState(undefined);\n            setVtContext({ isTransitioning: false });\n          });\n        });\n\n        flushSyncSafe(() => setTransition(t));\n        return;\n      }\n\n      // startTransition + startViewTransition\n      if (transition) {\n        // Interrupting an in-progress transition, cancel and let everything flush\n        // out, and then kick off a new transition from the interruption state\n        renderDfd && renderDfd.resolve();\n        transition.skipTransition();\n        setInterruption({\n          state: newState,\n          currentLocation: viewTransitionOpts.currentLocation,\n          nextLocation: viewTransitionOpts.nextLocation,\n        });\n      } else {\n        // Completed navigation update with opted-in view transitions, let 'er rip\n        setPendingState(newState);\n        setVtContext({\n          isTransitioning: true,\n          flushSync: false,\n          currentLocation: viewTransitionOpts.currentLocation,\n          nextLocation: viewTransitionOpts.nextLocation,\n        });\n      }\n    },\n    [router.window, transition, renderDfd, fetcherData, optInStartTransition]\n  );\n\n  // Need to use a layout effect here so we are subscribed early enough to\n  // pick up on any render-driven redirects/navigations (useEffect/<Navigate>)\n  React.useLayoutEffect(() => router.subscribe(setState), [router, setState]);\n\n  // When we start a view transition, create a Deferred we can use for the\n  // eventual \"completed\" render\n  React.useEffect(() => {\n    if (vtContext.isTransitioning && !vtContext.flushSync) {\n      setRenderDfd(new Deferred<void>());\n    }\n  }, [vtContext]);\n\n  // Once the deferred is created, kick off startViewTransition() to update the\n  // DOM and then wait on the Deferred to resolve (indicating the DOM update has\n  // happened)\n  React.useEffect(() => {\n    if (renderDfd && pendingState && router.window) {\n      let newState = pendingState;\n      let renderPromise = renderDfd.promise;\n      let transition = router.window.document.startViewTransition(async () => {\n        optInStartTransition(() => setStateImpl(newState));\n        await renderPromise;\n      });\n      transition.finished.finally(() => {\n        setRenderDfd(undefined);\n        setTransition(undefined);\n        setPendingState(undefined);\n        setVtContext({ isTransitioning: false });\n      });\n      setTransition(transition);\n    }\n  }, [optInStartTransition, pendingState, renderDfd, router.window]);\n\n  // When the new location finally renders and is committed to the DOM, this\n  // effect will run to resolve the transition\n  React.useEffect(() => {\n    if (\n      renderDfd &&\n      pendingState &&\n      state.location.key === pendingState.location.key\n    ) {\n      renderDfd.resolve();\n    }\n  }, [renderDfd, transition, state.location, pendingState]);\n\n  // If we get interrupted with a new navigation during a transition, we skip\n  // the active transition, let it cleanup, then kick it off again here\n  React.useEffect(() => {\n    if (!vtContext.isTransitioning && interruption) {\n      setPendingState(interruption.state);\n      setVtContext({\n        isTransitioning: true,\n        flushSync: false,\n        currentLocation: interruption.currentLocation,\n        nextLocation: interruption.nextLocation,\n      });\n      setInterruption(undefined);\n    }\n  }, [vtContext.isTransitioning, interruption]);\n\n  React.useEffect(() => {\n    warning(\n      fallbackElement == null || !router.future.v7_partialHydration,\n      \"`<RouterProvider fallbackElement>` is deprecated when using \" +\n        \"`v7_partialHydration`, use a `HydrateFallback` component instead\"\n    );\n    // Only log this once on initial mount\n    // eslint-disable-next-line react-hooks/exhaustive-deps\n  }, []);\n\n  let navigator = React.useMemo((): Navigator => {\n    return {\n      createHref: router.createHref,\n      encodeLocation: router.encodeLocation,\n      go: (n) => router.navigate(n),\n      push: (to, state, opts) =>\n        router.navigate(to, {\n          state,\n          preventScrollReset: opts?.preventScrollReset,\n        }),\n      replace: (to, state, opts) =>\n        router.navigate(to, {\n          replace: true,\n          state,\n          preventScrollReset: opts?.preventScrollReset,\n        }),\n    };\n  }, [router]);\n\n  let basename = router.basename || \"/\";\n\n  let dataRouterContext = React.useMemo(\n    () => ({\n      router,\n      navigator,\n      static: false,\n      basename,\n    }),\n    [router, navigator, basename]\n  );\n\n  let routerFuture = React.useMemo<RouterProps[\"future\"]>(\n    () => ({\n      v7_relativeSplatPath: router.future.v7_relativeSplatPath,\n    }),\n    [router.future.v7_relativeSplatPath]\n  );\n\n  React.useEffect(\n    () => logV6DeprecationWarnings(future, router.future),\n    [future, router.future]\n  );\n\n  // The fragment and {null} here are important!  We need them to keep React 18's\n  // useId happy when we are server-rendering since we may have a <script> here\n  // containing the hydrated server-side staticContext (from StaticRouterProvider).\n  // useId relies on the component tree structure to generate deterministic id's\n  // so we need to ensure it remains the same on the client even though\n  // we don't need the <script> tag\n  return (\n    <>\n      <DataRouterContext.Provider value={dataRouterContext}>\n        <DataRouterStateContext.Provider value={state}>\n          <FetchersContext.Provider value={fetcherData.current}>\n            <ViewTransitionContext.Provider value={vtContext}>\n              <Router\n                basename={basename}\n                location={state.location}\n                navigationType={state.historyAction}\n                navigator={navigator}\n                future={routerFuture}\n              >\n                {state.initialized || router.future.v7_partialHydration ? (\n                  <MemoizedDataRoutes\n                    routes={router.routes}\n                    future={router.future}\n                    state={state}\n                  />\n                ) : (\n                  fallbackElement\n                )}\n              </Router>\n            </ViewTransitionContext.Provider>\n          </FetchersContext.Provider>\n        </DataRouterStateContext.Provider>\n      </DataRouterContext.Provider>\n      {null}\n    </>\n  );\n}\n\n// Memoize to avoid re-renders when updating `ViewTransitionContext`\nconst MemoizedDataRoutes = React.memo(DataRoutes);\n\nfunction DataRoutes({\n  routes,\n  future,\n  state,\n}: {\n  routes: DataRouteObject[];\n  future: RemixRouter[\"future\"];\n  state: RouterState;\n}): React.ReactElement | null {\n  return useRoutesImpl(routes, undefined, state, future);\n}\n\nexport interface BrowserRouterProps {\n  basename?: string;\n  children?: React.ReactNode;\n  future?: Partial<FutureConfig>;\n  window?: Window;\n}\n\n/**\n * A `<Router>` for use in web browsers. Provides the cleanest URLs.\n */\nexport function BrowserRouter({\n  basename,\n  children,\n  future,\n  window,\n}: BrowserRouterProps) {\n  let historyRef = React.useRef<BrowserHistory>();\n  if (historyRef.current == null) {\n    historyRef.current = createBrowserHistory({ window, v5Compat: true });\n  }\n\n  let history = historyRef.current;\n  let [state, setStateImpl] = React.useState({\n    action: history.action,\n    location: history.location,\n  });\n  let { v7_startTransition } = future || {};\n  let setState = React.useCallback(\n    (newState: { action: NavigationType; location: Location }) => {\n      v7_startTransition && startTransitionImpl\n        ? startTransitionImpl(() => setStateImpl(newState))\n        : setStateImpl(newState);\n    },\n    [setStateImpl, v7_startTransition]\n  );\n\n  React.useLayoutEffect(() => history.listen(setState), [history, setState]);\n\n  React.useEffect(() => logV6DeprecationWarnings(future), [future]);\n\n  return (\n    <Router\n      basename={basename}\n      children={children}\n      location={state.location}\n      navigationType={state.action}\n      navigator={history}\n      future={future}\n    />\n  );\n}\n\nexport interface HashRouterProps {\n  basename?: string;\n  children?: React.ReactNode;\n  future?: Partial<FutureConfig>;\n  window?: Window;\n}\n\n/**\n * A `<Router>` for use in web browsers. Stores the location in the hash\n * portion of the URL so it is not sent to the server.\n */\nexport function HashRouter({\n  basename,\n  children,\n  future,\n  window,\n}: HashRouterProps) {\n  let historyRef = React.useRef<HashHistory>();\n  if (historyRef.current == null) {\n    historyRef.current = createHashHistory({ window, v5Compat: true });\n  }\n\n  let history = historyRef.current;\n  let [state, setStateImpl] = React.useState({\n    action: history.action,\n    location: history.location,\n  });\n  let { v7_startTransition } = future || {};\n  let setState = React.useCallback(\n    (newState: { action: NavigationType; location: Location }) => {\n      v7_startTransition && startTransitionImpl\n        ? startTransitionImpl(() => setStateImpl(newState))\n        : setStateImpl(newState);\n    },\n    [setStateImpl, v7_startTransition]\n  );\n\n  React.useLayoutEffect(() => history.listen(setState), [history, setState]);\n\n  React.useEffect(() => logV6DeprecationWarnings(future), [future]);\n\n  return (\n    <Router\n      basename={basename}\n      children={children}\n      location={state.location}\n      navigationType={state.action}\n      navigator={history}\n      future={future}\n    />\n  );\n}\n\nexport interface HistoryRouterProps {\n  basename?: string;\n  children?: React.ReactNode;\n  future?: FutureConfig;\n  history: History;\n}\n\n/**\n * A `<Router>` that accepts a pre-instantiated history object. It's important\n * to note that using your own history object is highly discouraged and may add\n * two versions of the history library to your bundles unless you use the same\n * version of the history library that React Router uses internally.\n */\nfunction HistoryRouter({\n  basename,\n  children,\n  future,\n  history,\n}: HistoryRouterProps) {\n  let [state, setStateImpl] = React.useState({\n    action: history.action,\n    location: history.location,\n  });\n  let { v7_startTransition } = future || {};\n  let setState = React.useCallback(\n    (newState: { action: NavigationType; location: Location }) => {\n      v7_startTransition && startTransitionImpl\n        ? startTransitionImpl(() => setStateImpl(newState))\n        : setStateImpl(newState);\n    },\n    [setStateImpl, v7_startTransition]\n  );\n\n  React.useLayoutEffect(() => history.listen(setState), [history, setState]);\n\n  React.useEffect(() => logV6DeprecationWarnings(future), [future]);\n\n  return (\n    <Router\n      basename={basename}\n      children={children}\n      location={state.location}\n      navigationType={state.action}\n      navigator={history}\n      future={future}\n    />\n  );\n}\n\nif (__DEV__) {\n  HistoryRouter.displayName = \"unstable_HistoryRouter\";\n}\n\nexport { HistoryRouter as unstable_HistoryRouter };\n\nexport interface LinkProps\n  extends Omit<React.AnchorHTMLAttributes<HTMLAnchorElement>, \"href\"> {\n  reloadDocument?: boolean;\n  replace?: boolean;\n  state?: any;\n  preventScrollReset?: boolean;\n  relative?: RelativeRoutingType;\n  to: To;\n  viewTransition?: boolean;\n}\n\nconst isBrowser =\n  typeof window !== \"undefined\" &&\n  typeof window.document !== \"undefined\" &&\n  typeof window.document.createElement !== \"undefined\";\n\nconst ABSOLUTE_URL_REGEX = /^(?:[a-z][a-z0-9+.-]*:|\\/\\/)/i;\n\n/**\n * The public API for rendering a history-aware `<a>`.\n */\nexport const Link = React.forwardRef<HTMLAnchorElement, LinkProps>(\n  function LinkWithRef(\n    {\n      onClick,\n      relative,\n      reloadDocument,\n      replace,\n      state,\n      target,\n      to,\n      preventScrollReset,\n      viewTransition,\n      ...rest\n    },\n    ref\n  ) {\n    let { basename } = React.useContext(NavigationContext);\n\n    // Rendered into <a href> for absolute URLs\n    let absoluteHref;\n    let isExternal = false;\n\n    if (typeof to === \"string\" && ABSOLUTE_URL_REGEX.test(to)) {\n      // Render the absolute href server- and client-side\n      absoluteHref = to;\n\n      // Only check for external origins client-side\n      if (isBrowser) {\n        try {\n          let currentUrl = new URL(window.location.href);\n          let targetUrl = to.startsWith(\"//\")\n            ? new URL(currentUrl.protocol + to)\n            : new URL(to);\n          let path = stripBasename(targetUrl.pathname, basename);\n\n          if (targetUrl.origin === currentUrl.origin && path != null) {\n            // Strip the protocol/origin/basename for same-origin absolute URLs\n            to = path + targetUrl.search + targetUrl.hash;\n          } else {\n            isExternal = true;\n          }\n        } catch (e) {\n          // We can't do external URL detection without a valid URL\n          warning(\n            false,\n            `<Link to=\"${to}\"> contains an invalid URL which will probably break ` +\n              `when clicked - please update to a valid URL path.`\n          );\n        }\n      }\n    }\n\n    // Rendered into <a href> for relative URLs\n    let href = useHref(to, { relative });\n\n    let internalOnClick = useLinkClickHandler(to, {\n      replace,\n      state,\n      target,\n      preventScrollReset,\n      relative,\n      viewTransition,\n    });\n    function handleClick(\n      event: React.MouseEvent<HTMLAnchorElement, MouseEvent>\n    ) {\n      if (onClick) onClick(event);\n      if (!event.defaultPrevented) {\n        internalOnClick(event);\n      }\n    }\n\n    return (\n      // eslint-disable-next-line jsx-a11y/anchor-has-content\n      <a\n        {...rest}\n        href={absoluteHref || href}\n        onClick={isExternal || reloadDocument ? onClick : handleClick}\n        ref={ref}\n        target={target}\n      />\n    );\n  }\n);\n\nif (__DEV__) {\n  Link.displayName = \"Link\";\n}\n\nexport type NavLinkRenderProps = {\n  isActive: boolean;\n  isPending: boolean;\n  isTransitioning: boolean;\n};\n\nexport interface NavLinkProps\n  extends Omit<LinkProps, \"className\" | \"style\" | \"children\"> {\n  children?: React.ReactNode | ((props: NavLinkRenderProps) => React.ReactNode);\n  caseSensitive?: boolean;\n  className?: string | ((props: NavLinkRenderProps) => string | undefined);\n  end?: boolean;\n  style?:\n    | React.CSSProperties\n    | ((props: NavLinkRenderProps) => React.CSSProperties | undefined);\n}\n\n/**\n * A `<Link>` wrapper that knows if it's \"active\" or not.\n */\nexport const NavLink = React.forwardRef<HTMLAnchorElement, NavLinkProps>(\n  function NavLinkWithRef(\n    {\n      \"aria-current\": ariaCurrentProp = \"page\",\n      caseSensitive = false,\n      className: classNameProp = \"\",\n      end = false,\n      style: styleProp,\n      to,\n      viewTransition,\n      children,\n      ...rest\n    },\n    ref\n  ) {\n    let path = useResolvedPath(to, { relative: rest.relative });\n    let location = useLocation();\n    let routerState = React.useContext(DataRouterStateContext);\n    let { navigator, basename } = React.useContext(NavigationContext);\n    let isTransitioning =\n      routerState != null &&\n      // Conditional usage is OK here because the usage of a data router is static\n      // eslint-disable-next-line react-hooks/rules-of-hooks\n      useViewTransitionState(path) &&\n      viewTransition === true;\n\n    let toPathname = navigator.encodeLocation\n      ? navigator.encodeLocation(path).pathname\n      : path.pathname;\n    let locationPathname = location.pathname;\n    let nextLocationPathname =\n      routerState && routerState.navigation && routerState.navigation.location\n        ? routerState.navigation.location.pathname\n        : null;\n\n    if (!caseSensitive) {\n      locationPathname = locationPathname.toLowerCase();\n      nextLocationPathname = nextLocationPathname\n        ? nextLocationPathname.toLowerCase()\n        : null;\n      toPathname = toPathname.toLowerCase();\n    }\n\n    if (nextLocationPathname && basename) {\n      nextLocationPathname =\n        stripBasename(nextLocationPathname, basename) || nextLocationPathname;\n    }\n\n    // If the `to` has a trailing slash, look at that exact spot.  Otherwise,\n    // we're looking for a slash _after_ what's in `to`.  For example:\n    //\n    // <NavLink to=\"/users\"> and <NavLink to=\"/users/\">\n    // both want to look for a / at index 6 to match URL `/users/matt`\n    const endSlashPosition =\n      toPathname !== \"/\" && toPathname.endsWith(\"/\")\n        ? toPathname.length - 1\n        : toPathname.length;\n    let isActive =\n      locationPathname === toPathname ||\n      (!end &&\n        locationPathname.startsWith(toPathname) &&\n        locationPathname.charAt(endSlashPosition) === \"/\");\n\n    let isPending =\n      nextLocationPathname != null &&\n      (nextLocationPathname === toPathname ||\n        (!end &&\n          nextLocationPathname.startsWith(toPathname) &&\n          nextLocationPathname.charAt(toPathname.length) === \"/\"));\n\n    let renderProps = {\n      isActive,\n      isPending,\n      isTransitioning,\n    };\n\n    let ariaCurrent = isActive ? ariaCurrentProp : undefined;\n\n    let className: string | undefined;\n    if (typeof classNameProp === \"function\") {\n      className = classNameProp(renderProps);\n    } else {\n      // If the className prop is not a function, we use a default `active`\n      // class for <NavLink />s that are active. In v5 `active` was the default\n      // value for `activeClassName`, but we are removing that API and can still\n      // use the old default behavior for a cleaner upgrade path and keep the\n      // simple styling rules working as they currently do.\n      className = [\n        classNameProp,\n        isActive ? \"active\" : null,\n        isPending ? \"pending\" : null,\n        isTransitioning ? \"transitioning\" : null,\n      ]\n        .filter(Boolean)\n        .join(\" \");\n    }\n\n    let style =\n      typeof styleProp === \"function\" ? styleProp(renderProps) : styleProp;\n\n    return (\n      <Link\n        {...rest}\n        aria-current={ariaCurrent}\n        className={className}\n        ref={ref}\n        style={style}\n        to={to}\n        viewTransition={viewTransition}\n      >\n        {typeof children === \"function\" ? children(renderProps) : children}\n      </Link>\n    );\n  }\n);\n\nif (__DEV__) {\n  NavLink.displayName = \"NavLink\";\n}\n\n/**\n * Form props shared by navigations and fetchers\n */\ninterface SharedFormProps extends React.FormHTMLAttributes<HTMLFormElement> {\n  /**\n   * The HTTP verb to use when the form is submit. Supports \"get\", \"post\",\n   * \"put\", \"delete\", \"patch\".\n   */\n  method?: HTMLFormMethod;\n\n  /**\n   * `<form encType>` - enhancing beyond the normal string type and limiting\n   * to the built-in browser supported values\n   */\n  encType?:\n    | \"application/x-www-form-urlencoded\"\n    | \"multipart/form-data\"\n    | \"text/plain\";\n\n  /**\n   * Normal `<form action>` but supports React Router's relative paths.\n   */\n  action?: string;\n\n  /**\n   * Determines whether the form action is relative to the route hierarchy or\n   * the pathname.  Use this if you want to opt out of navigating the route\n   * hierarchy and want to instead route based on /-delimited URL segments\n   */\n  relative?: RelativeRoutingType;\n\n  /**\n   * Prevent the scroll position from resetting to the top of the viewport on\n   * completion of the navigation when using the <ScrollRestoration> component\n   */\n  preventScrollReset?: boolean;\n\n  /**\n   * A function to call when the form is submitted. If you call\n   * `event.preventDefault()` then this form will not do anything.\n   */\n  onSubmit?: React.FormEventHandler<HTMLFormElement>;\n}\n\n/**\n * Form props available to fetchers\n */\nexport interface FetcherFormProps extends SharedFormProps {}\n\n/**\n * Form props available to navigations\n */\nexport interface FormProps extends SharedFormProps {\n  /**\n   * Indicate a specific fetcherKey to use when using navigate=false\n   */\n  fetcherKey?: string;\n\n  /**\n   * navigate=false will use a fetcher instead of a navigation\n   */\n  navigate?: boolean;\n\n  /**\n   * Forces a full document navigation instead of a fetch.\n   */\n  reloadDocument?: boolean;\n\n  /**\n   * Replaces the current entry in the browser history stack when the form\n   * navigates. Use this if you don't want the user to be able to click \"back\"\n   * to the page with the form on it.\n   */\n  replace?: boolean;\n\n  /**\n   * State object to add to the history stack entry for this navigation\n   */\n  state?: any;\n\n  /**\n   * Enable view transitions on this Form navigation\n   */\n  viewTransition?: boolean;\n}\n\ntype HTMLSubmitEvent = React.BaseSyntheticEvent<\n  SubmitEvent,\n  Event,\n  HTMLFormElement\n>;\n\ntype HTMLFormSubmitter = HTMLButtonElement | HTMLInputElement;\n\n/**\n * A `@remix-run/router`-aware `<form>`. It behaves like a normal form except\n * that the interaction with the server is with `fetch` instead of new document\n * requests, allowing components to add nicer UX to the page as the form is\n * submitted and returns with data.\n */\nexport const Form = React.forwardRef<HTMLFormElement, FormProps>(\n  (\n    {\n      fetcherKey,\n      navigate,\n      reloadDocument,\n      replace,\n      state,\n      method = defaultMethod,\n      action,\n      onSubmit,\n      relative,\n      preventScrollReset,\n      viewTransition,\n      ...props\n    },\n    forwardedRef\n  ) => {\n    let submit = useSubmit();\n    let formAction = useFormAction(action, { relative });\n    let formMethod: HTMLFormMethod =\n      method.toLowerCase() === \"get\" ? \"get\" : \"post\";\n\n    let submitHandler: React.FormEventHandler<HTMLFormElement> = (event) => {\n      onSubmit && onSubmit(event);\n      if (event.defaultPrevented) return;\n      event.preventDefault();\n\n      let submitter = (event as unknown as HTMLSubmitEvent).nativeEvent\n        .submitter as HTMLFormSubmitter | null;\n\n      let submitMethod =\n        (submitter?.getAttribute(\"formmethod\") as HTMLFormMethod | undefined) ||\n        method;\n\n      submit(submitter || event.currentTarget, {\n        fetcherKey,\n        method: submitMethod,\n        navigate,\n        replace,\n        state,\n        relative,\n        preventScrollReset,\n        viewTransition,\n      });\n    };\n\n    return (\n      <form\n        ref={forwardedRef}\n        method={formMethod}\n        action={formAction}\n        onSubmit={reloadDocument ? onSubmit : submitHandler}\n        {...props}\n      />\n    );\n  }\n);\n\nif (__DEV__) {\n  Form.displayName = \"Form\";\n}\n\nexport interface ScrollRestorationProps {\n  getKey?: GetScrollRestorationKeyFunction;\n  storageKey?: string;\n}\n\n/**\n * This component will emulate the browser's scroll restoration on location\n * changes.\n */\nexport function ScrollRestoration({\n  getKey,\n  storageKey,\n}: ScrollRestorationProps) {\n  useScrollRestoration({ getKey, storageKey });\n  return null;\n}\n\nif (__DEV__) {\n  ScrollRestoration.displayName = \"ScrollRestoration\";\n}\n//#endregion\n\n////////////////////////////////////////////////////////////////////////////////\n//#region Hooks\n////////////////////////////////////////////////////////////////////////////////\n\nenum DataRouterHook {\n  UseScrollRestoration = \"useScrollRestoration\",\n  UseSubmit = \"useSubmit\",\n  UseSubmitFetcher = \"useSubmitFetcher\",\n  UseFetcher = \"useFetcher\",\n  useViewTransitionState = \"useViewTransitionState\",\n}\n\nenum DataRouterStateHook {\n  UseFetcher = \"useFetcher\",\n  UseFetchers = \"useFetchers\",\n  UseScrollRestoration = \"useScrollRestoration\",\n}\n\n// Internal hooks\n\nfunction getDataRouterConsoleError(\n  hookName: DataRouterHook | DataRouterStateHook\n) {\n  return `${hookName} must be used within a data router.  See https://reactrouter.com/v6/routers/picking-a-router.`;\n}\n\nfunction useDataRouterContext(hookName: DataRouterHook) {\n  let ctx = React.useContext(DataRouterContext);\n  invariant(ctx, getDataRouterConsoleError(hookName));\n  return ctx;\n}\n\nfunction useDataRouterState(hookName: DataRouterStateHook) {\n  let state = React.useContext(DataRouterStateContext);\n  invariant(state, getDataRouterConsoleError(hookName));\n  return state;\n}\n\n// External hooks\n\n/**\n * Handles the click behavior for router `<Link>` components. This is useful if\n * you need to create custom `<Link>` components with the same click behavior we\n * use in our exported `<Link>`.\n */\nexport function useLinkClickHandler<E extends Element = HTMLAnchorElement>(\n  to: To,\n  {\n    target,\n    replace: replaceProp,\n    state,\n    preventScrollReset,\n    relative,\n    viewTransition,\n  }: {\n    target?: React.HTMLAttributeAnchorTarget;\n    replace?: boolean;\n    state?: any;\n    preventScrollReset?: boolean;\n    relative?: RelativeRoutingType;\n    viewTransition?: boolean;\n  } = {}\n): (event: React.MouseEvent<E, MouseEvent>) => void {\n  let navigate = useNavigate();\n  let location = useLocation();\n  let path = useResolvedPath(to, { relative });\n\n  return React.useCallback(\n    (event: React.MouseEvent<E, MouseEvent>) => {\n      if (shouldProcessLinkClick(event, target)) {\n        event.preventDefault();\n\n        // If the URL hasn't changed, a regular <a> will do a replace instead of\n        // a push, so do the same here unless the replace prop is explicitly set\n        let replace =\n          replaceProp !== undefined\n            ? replaceProp\n            : createPath(location) === createPath(path);\n\n        navigate(to, {\n          replace,\n          state,\n          preventScrollReset,\n          relative,\n          viewTransition,\n        });\n      }\n    },\n    [\n      location,\n      navigate,\n      path,\n      replaceProp,\n      state,\n      target,\n      to,\n      preventScrollReset,\n      relative,\n      viewTransition,\n    ]\n  );\n}\n\n/**\n * A convenient wrapper for reading and writing search parameters via the\n * URLSearchParams interface.\n */\nexport function useSearchParams(\n  defaultInit?: URLSearchParamsInit\n): [URLSearchParams, SetURLSearchParams] {\n  warning(\n    typeof URLSearchParams !== \"undefined\",\n    `You cannot use the \\`useSearchParams\\` hook in a browser that does not ` +\n      `support the URLSearchParams API. If you need to support Internet ` +\n      `Explorer 11, we recommend you load a polyfill such as ` +\n      `https://github.com/ungap/url-search-params.`\n  );\n\n  let defaultSearchParamsRef = React.useRef(createSearchParams(defaultInit));\n  let hasSetSearchParamsRef = React.useRef(false);\n\n  let location = useLocation();\n  let searchParams = React.useMemo(\n    () =>\n      // Only merge in the defaults if we haven't yet called setSearchParams.\n      // Once we call that we want those to take precedence, otherwise you can't\n      // remove a param with setSearchParams({}) if it has an initial value\n      getSearchParamsForLocation(\n        location.search,\n        hasSetSearchParamsRef.current ? null : defaultSearchParamsRef.current\n      ),\n    [location.search]\n  );\n\n  let navigate = useNavigate();\n  let setSearchParams = React.useCallback<SetURLSearchParams>(\n    (nextInit, navigateOptions) => {\n      const newSearchParams = createSearchParams(\n        typeof nextInit === \"function\" ? nextInit(searchParams) : nextInit\n      );\n      hasSetSearchParamsRef.current = true;\n      navigate(\"?\" + newSearchParams, navigateOptions);\n    },\n    [navigate, searchParams]\n  );\n\n  return [searchParams, setSearchParams];\n}\n\nexport type SetURLSearchParams = (\n  nextInit?:\n    | URLSearchParamsInit\n    | ((prev: URLSearchParams) => URLSearchParamsInit),\n  navigateOpts?: NavigateOptions\n) => void;\n\n/**\n * Submits a HTML `<form>` to the server without reloading the page.\n */\nexport interface SubmitFunction {\n  (\n    /**\n     * Specifies the `<form>` to be submitted to the server, a specific\n     * `<button>` or `<input type=\"submit\">` to use to submit the form, or some\n     * arbitrary data to submit.\n     *\n     * Note: When using a `<button>` its `name` and `value` will also be\n     * included in the form data that is submitted.\n     */\n    target: SubmitTarget,\n\n    /**\n     * Options that override the `<form>`'s own attributes. Required when\n     * submitting arbitrary data without a backing `<form>`.\n     */\n    options?: SubmitOptions\n  ): void;\n}\n\n/**\n * Submits a fetcher `<form>` to the server without reloading the page.\n */\nexport interface FetcherSubmitFunction {\n  (\n    target: SubmitTarget,\n    // Fetchers cannot replace or set state because they are not navigation events\n    options?: FetcherSubmitOptions\n  ): void;\n}\n\nfunction validateClientSideSubmission() {\n  if (typeof document === \"undefined\") {\n    throw new Error(\n      \"You are calling submit during the server render. \" +\n        \"Try calling submit within a `useEffect` or callback instead.\"\n    );\n  }\n}\n\nlet fetcherId = 0;\nlet getUniqueFetcherId = () => `__${String(++fetcherId)}__`;\n\n/**\n * Returns a function that may be used to programmatically submit a form (or\n * some arbitrary data) to the server.\n */\nexport function useSubmit(): SubmitFunction {\n  let { router } = useDataRouterContext(DataRouterHook.UseSubmit);\n  let { basename } = React.useContext(NavigationContext);\n  let currentRouteId = useRouteId();\n\n  return React.useCallback<SubmitFunction>(\n    (target, options = {}) => {\n      validateClientSideSubmission();\n\n      let { action, method, encType, formData, body } = getFormSubmissionInfo(\n        target,\n        basename\n      );\n\n      if (options.navigate === false) {\n        let key = options.fetcherKey || getUniqueFetcherId();\n        router.fetch(key, currentRouteId, options.action || action, {\n          preventScrollReset: options.preventScrollReset,\n          formData,\n          body,\n          formMethod: options.method || (method as HTMLFormMethod),\n          formEncType: options.encType || (encType as FormEncType),\n          flushSync: options.flushSync,\n        });\n      } else {\n        router.navigate(options.action || action, {\n          preventScrollReset: options.preventScrollReset,\n          formData,\n          body,\n          formMethod: options.method || (method as HTMLFormMethod),\n          formEncType: options.encType || (encType as FormEncType),\n          replace: options.replace,\n          state: options.state,\n          fromRouteId: currentRouteId,\n          flushSync: options.flushSync,\n          viewTransition: options.viewTransition,\n        });\n      }\n    },\n    [router, basename, currentRouteId]\n  );\n}\n\n// v7: Eventually we should deprecate this entirely in favor of using the\n// router method directly?\nexport function useFormAction(\n  action?: string,\n  { relative }: { relative?: RelativeRoutingType } = {}\n): string {\n  let { basename } = React.useContext(NavigationContext);\n  let routeContext = React.useContext(RouteContext);\n  invariant(routeContext, \"useFormAction must be used inside a RouteContext\");\n\n  let [match] = routeContext.matches.slice(-1);\n  // Shallow clone path so we can modify it below, otherwise we modify the\n  // object referenced by useMemo inside useResolvedPath\n  let path = { ...useResolvedPath(action ? action : \".\", { relative }) };\n\n  // If no action was specified, browsers will persist current search params\n  // when determining the path, so match that behavior\n  // https://github.com/remix-run/remix/issues/927\n  let location = useLocation();\n  if (action == null) {\n    // Safe to write to this directly here since if action was undefined, we\n    // would have called useResolvedPath(\".\") which will never include a search\n    path.search = location.search;\n\n    // When grabbing search params from the URL, remove any included ?index param\n    // since it might not apply to our contextual route.  We add it back based\n    // on match.route.index below\n    let params = new URLSearchParams(path.search);\n    let indexValues = params.getAll(\"index\");\n    let hasNakedIndexParam = indexValues.some((v) => v === \"\");\n    if (hasNakedIndexParam) {\n      params.delete(\"index\");\n      indexValues.filter((v) => v).forEach((v) => params.append(\"index\", v));\n      let qs = params.toString();\n      path.search = qs ? `?${qs}` : \"\";\n    }\n  }\n\n  if ((!action || action === \".\") && match.route.index) {\n    path.search = path.search\n      ? path.search.replace(/^\\?/, \"?index&\")\n      : \"?index\";\n  }\n\n  // If we're operating within a basename, prepend it to the pathname prior\n  // to creating the form action.  If this is a root navigation, then just use\n  // the raw basename which allows the basename to have full control over the\n  // presence of a trailing slash on root actions\n  if (basename !== \"/\") {\n    path.pathname =\n      path.pathname === \"/\" ? basename : joinPaths([basename, path.pathname]);\n  }\n\n  return createPath(path);\n}\n\nexport type FetcherWithComponents<TData> = Fetcher<TData> & {\n  Form: React.ForwardRefExoticComponent<\n    FetcherFormProps & React.RefAttributes<HTMLFormElement>\n  >;\n  submit: FetcherSubmitFunction;\n  load: (href: string, opts?: { flushSync?: boolean }) => void;\n};\n\n// TODO: (v7) Change the useFetcher generic default from `any` to `unknown`\n\n/**\n * Interacts with route loaders and actions without causing a navigation. Great\n * for any interaction that stays on the same page.\n */\nexport function useFetcher<TData = any>({\n  key,\n}: { key?: string } = {}): FetcherWithComponents<TData> {\n  let { router } = useDataRouterContext(DataRouterHook.UseFetcher);\n  let state = useDataRouterState(DataRouterStateHook.UseFetcher);\n  let fetcherData = React.useContext(FetchersContext);\n  let route = React.useContext(RouteContext);\n  let routeId = route.matches[route.matches.length - 1]?.route.id;\n\n  invariant(fetcherData, `useFetcher must be used inside a FetchersContext`);\n  invariant(route, `useFetcher must be used inside a RouteContext`);\n  invariant(\n    routeId != null,\n    `useFetcher can only be used on routes that contain a unique \"id\"`\n  );\n\n  // Fetcher key handling\n  // OK to call conditionally to feature detect `useId`\n  // eslint-disable-next-line react-hooks/rules-of-hooks\n  let defaultKey = useIdImpl ? useIdImpl() : \"\";\n  let [fetcherKey, setFetcherKey] = React.useState<string>(key || defaultKey);\n  if (key && key !== fetcherKey) {\n    setFetcherKey(key);\n  } else if (!fetcherKey) {\n    // We will only fall through here when `useId` is not available\n    setFetcherKey(getUniqueFetcherId());\n  }\n\n  // Registration/cleanup\n  React.useEffect(() => {\n    router.getFetcher(fetcherKey);\n    return () => {\n      // Tell the router we've unmounted - if v7_fetcherPersist is enabled this\n      // will not delete immediately but instead queue up a delete after the\n      // fetcher returns to an `idle` state\n      router.deleteFetcher(fetcherKey);\n    };\n  }, [router, fetcherKey]);\n\n  // Fetcher additions\n  let load = React.useCallback(\n    (href: string, opts?: { flushSync?: boolean }) => {\n      invariant(routeId, \"No routeId available for fetcher.load()\");\n      router.fetch(fetcherKey, routeId, href, opts);\n    },\n    [fetcherKey, routeId, router]\n  );\n\n  let submitImpl = useSubmit();\n  let submit = React.useCallback<FetcherSubmitFunction>(\n    (target, opts) => {\n      submitImpl(target, {\n        ...opts,\n        navigate: false,\n        fetcherKey,\n      });\n    },\n    [fetcherKey, submitImpl]\n  );\n\n  let FetcherForm = React.useMemo(() => {\n    let FetcherForm = React.forwardRef<HTMLFormElement, FetcherFormProps>(\n      (props, ref) => {\n        return (\n          <Form {...props} navigate={false} fetcherKey={fetcherKey} ref={ref} />\n        );\n      }\n    );\n    if (__DEV__) {\n      FetcherForm.displayName = \"fetcher.Form\";\n    }\n    return FetcherForm;\n  }, [fetcherKey]);\n\n  // Exposed FetcherWithComponents\n  let fetcher = state.fetchers.get(fetcherKey) || IDLE_FETCHER;\n  let data = fetcherData.get(fetcherKey);\n  let fetcherWithComponents = React.useMemo(\n    () => ({\n      Form: FetcherForm,\n      submit,\n      load,\n      ...fetcher,\n      data,\n    }),\n    [FetcherForm, submit, load, fetcher, data]\n  );\n\n  return fetcherWithComponents;\n}\n\n/**\n * Provides all fetchers currently on the page. Useful for layouts and parent\n * routes that need to provide pending/optimistic UI regarding the fetch.\n */\nexport function useFetchers(): (Fetcher & { key: string })[] {\n  let state = useDataRouterState(DataRouterStateHook.UseFetchers);\n  return Array.from(state.fetchers.entries()).map(([key, fetcher]) => ({\n    ...fetcher,\n    key,\n  }));\n}\n\nconst SCROLL_RESTORATION_STORAGE_KEY = \"react-router-scroll-positions\";\nlet savedScrollPositions: Record<string, number> = {};\n\n/**\n * When rendered inside a RouterProvider, will restore scroll positions on navigations\n */\nfunction useScrollRestoration({\n  getKey,\n  storageKey,\n}: {\n  getKey?: GetScrollRestorationKeyFunction;\n  storageKey?: string;\n} = {}) {\n  let { router } = useDataRouterContext(DataRouterHook.UseScrollRestoration);\n  let { restoreScrollPosition, preventScrollReset } = useDataRouterState(\n    DataRouterStateHook.UseScrollRestoration\n  );\n  let { basename } = React.useContext(NavigationContext);\n  let location = useLocation();\n  let matches = useMatches();\n  let navigation = useNavigation();\n\n  // Trigger manual scroll restoration while we're active\n  React.useEffect(() => {\n    window.history.scrollRestoration = \"manual\";\n    return () => {\n      window.history.scrollRestoration = \"auto\";\n    };\n  }, []);\n\n  // Save positions on pagehide\n  usePageHide(\n    React.useCallback(() => {\n      if (navigation.state === \"idle\") {\n        let key = (getKey ? getKey(location, matches) : null) || location.key;\n        savedScrollPositions[key] = window.scrollY;\n      }\n      try {\n        sessionStorage.setItem(\n          storageKey || SCROLL_RESTORATION_STORAGE_KEY,\n          JSON.stringify(savedScrollPositions)\n        );\n      } catch (error) {\n        warning(\n          false,\n          `Failed to save scroll positions in sessionStorage, <ScrollRestoration /> will not work properly (${error}).`\n        );\n      }\n      window.history.scrollRestoration = \"auto\";\n    }, [storageKey, getKey, navigation.state, location, matches])\n  );\n\n  // Read in any saved scroll locations\n  if (typeof document !== \"undefined\") {\n    // eslint-disable-next-line react-hooks/rules-of-hooks\n    React.useLayoutEffect(() => {\n      try {\n        let sessionPositions = sessionStorage.getItem(\n          storageKey || SCROLL_RESTORATION_STORAGE_KEY\n        );\n        if (sessionPositions) {\n          savedScrollPositions = JSON.parse(sessionPositions);\n        }\n      } catch (e) {\n        // no-op, use default empty object\n      }\n    }, [storageKey]);\n\n    // Enable scroll restoration in the router\n    // eslint-disable-next-line react-hooks/rules-of-hooks\n    React.useLayoutEffect(() => {\n      let getKeyWithoutBasename: GetScrollRestorationKeyFunction | undefined =\n        getKey && basename !== \"/\"\n          ? (location, matches) =>\n              getKey(\n                // Strip the basename to match useLocation()\n                {\n                  ...location,\n                  pathname:\n                    stripBasename(location.pathname, basename) ||\n                    location.pathname,\n                },\n                matches\n              )\n          : getKey;\n      let disableScrollRestoration = router?.enableScrollRestoration(\n        savedScrollPositions,\n        () => window.scrollY,\n        getKeyWithoutBasename\n      );\n      return () => disableScrollRestoration && disableScrollRestoration();\n    }, [router, basename, getKey]);\n\n    // Restore scrolling when state.restoreScrollPosition changes\n    // eslint-disable-next-line react-hooks/rules-of-hooks\n    React.useLayoutEffect(() => {\n      // Explicit false means don't do anything (used for submissions)\n      if (restoreScrollPosition === false) {\n        return;\n      }\n\n      // been here before, scroll to it\n      if (typeof restoreScrollPosition === \"number\") {\n        window.scrollTo(0, restoreScrollPosition);\n        return;\n      }\n\n      // try to scroll to the hash\n      if (location.hash) {\n        let el = document.getElementById(\n          decodeURIComponent(location.hash.slice(1))\n        );\n        if (el) {\n          el.scrollIntoView();\n          return;\n        }\n      }\n\n      // Don't reset if this navigation opted out\n      if (preventScrollReset === true) {\n        return;\n      }\n\n      // otherwise go to the top on new locations\n      window.scrollTo(0, 0);\n    }, [location, restoreScrollPosition, preventScrollReset]);\n  }\n}\n\nexport { useScrollRestoration as UNSAFE_useScrollRestoration };\n\n/**\n * Setup a callback to be fired on the window's `beforeunload` event. This is\n * useful for saving some data to `window.localStorage` just before the page\n * refreshes.\n *\n * Note: The `callback` argument should be a function created with\n * `React.useCallback()`.\n */\nexport function useBeforeUnload(\n  callback: (event: BeforeUnloadEvent) => any,\n  options?: { capture?: boolean }\n): void {\n  let { capture } = options || {};\n  React.useEffect(() => {\n    let opts = capture != null ? { capture } : undefined;\n    window.addEventListener(\"beforeunload\", callback, opts);\n    return () => {\n      window.removeEventListener(\"beforeunload\", callback, opts);\n    };\n  }, [callback, capture]);\n}\n\n/**\n * Setup a callback to be fired on the window's `pagehide` event. This is\n * useful for saving some data to `window.localStorage` just before the page\n * refreshes.  This event is better supported than beforeunload across browsers.\n *\n * Note: The `callback` argument should be a function created with\n * `React.useCallback()`.\n */\nfunction usePageHide(\n  callback: (event: PageTransitionEvent) => any,\n  options?: { capture?: boolean }\n): void {\n  let { capture } = options || {};\n  React.useEffect(() => {\n    let opts = capture != null ? { capture } : undefined;\n    window.addEventListener(\"pagehide\", callback, opts);\n    return () => {\n      window.removeEventListener(\"pagehide\", callback, opts);\n    };\n  }, [callback, capture]);\n}\n\n/**\n * Wrapper around useBlocker to show a window.confirm prompt to users instead\n * of building a custom UI with useBlocker.\n *\n * Warning: This has *a lot of rough edges* and behaves very differently (and\n * very incorrectly in some cases) across browsers if user click addition\n * back/forward navigations while the confirm is open.  Use at your own risk.\n */\nfunction usePrompt({\n  when,\n  message,\n}: {\n  when: boolean | BlockerFunction;\n  message: string;\n}) {\n  let blocker = useBlocker(when);\n\n  React.useEffect(() => {\n    if (blocker.state === \"blocked\") {\n      let proceed = window.confirm(message);\n      if (proceed) {\n        // This timeout is needed to avoid a weird \"race\" on POP navigations\n        // between the `window.history` revert navigation and the result of\n        // `window.confirm`\n        setTimeout(blocker.proceed, 0);\n      } else {\n        blocker.reset();\n      }\n    }\n  }, [blocker, message]);\n\n  React.useEffect(() => {\n    if (blocker.state === \"blocked\" && !when) {\n      blocker.reset();\n    }\n  }, [blocker, when]);\n}\n\nexport { usePrompt as unstable_usePrompt };\n\n/**\n * Return a boolean indicating if there is an active view transition to the\n * given href.  You can use this value to render CSS classes or viewTransitionName\n * styles onto your elements\n *\n * @param href The destination href\n * @param [opts.relative] Relative routing type (\"route\" | \"path\")\n */\nfunction useViewTransitionState(\n  to: To,\n  opts: { relative?: RelativeRoutingType } = {}\n) {\n  let vtContext = React.useContext(ViewTransitionContext);\n\n  invariant(\n    vtContext != null,\n    \"`useViewTransitionState` must be used within `react-router-dom`'s `RouterProvider`.  \" +\n      \"Did you accidentally import `RouterProvider` from `react-router`?\"\n  );\n\n  let { basename } = useDataRouterContext(\n    DataRouterHook.useViewTransitionState\n  );\n  let path = useResolvedPath(to, { relative: opts.relative });\n  if (!vtContext.isTransitioning) {\n    return false;\n  }\n\n  let currentPath =\n    stripBasename(vtContext.currentLocation.pathname, basename) ||\n    vtContext.currentLocation.pathname;\n  let nextPath =\n    stripBasename(vtContext.nextLocation.pathname, basename) ||\n    vtContext.nextLocation.pathname;\n\n  // Transition is active if we're going to or coming from the indicated\n  // destination.  This ensures that other PUSH navigations that reverse\n  // an indicated transition apply.  I.e., on the list view you have:\n  //\n  //   <NavLink to=\"/details/1\" viewTransition>\n  //\n  // If you click the breadcrumb back to the list view:\n  //\n  //   <NavLink to=\"/list\" viewTransition>\n  //\n  // We should apply the transition because it's indicated as active going\n  // from /list -> /details/1 and therefore should be active on the reverse\n  // (even though this isn't strictly a POP reverse)\n  return (\n    matchPath(path.pathname, nextPath) != null ||\n    matchPath(path.pathname, currentPath) != null\n  );\n}\n\nexport { useViewTransitionState as useViewTransitionState };\n\n//#endregion\n"],"names":["defaultMethod","defaultEncType","isHtmlElement","object","tagName","createSearchParams","init","URLSearchParams","Array","isArray","Object","keys","reduce","memo","key","value","concat","map","v","_formDataSupportsSubmitter","supportedFormEncTypes","Set","getFormEncType","encType","has","getFormSubmissionInfo","target","basename","method","action","formData","body","toLowerCase","attr","getAttribute","stripBasename","FormData","isButtonElement","isInputElement","type","form","Error","document","createElement","e","isFormDataSubmitterSupported","name","prefix","append","undefined","window","__reactRouterVersion","parseHydrationData","_window","state","__staticRouterHydrationData","errors","_extends","deserializeErrors","entries","serialized","val","__type","ErrorResponseImpl","status","statusText","data","internal","__subType","ErrorConstructor","error","message","stack","ViewTransitionContext","React","createContext","isTransitioning","FetchersContext","Map","startTransitionImpl","flushSyncImpl","ReactDOM","useIdImpl","flushSyncSafe","cb","Deferred","constructor","this","promise","Promise","resolve","reject","reason","MemoizedDataRoutes","DataRoutes","_ref3","routes","future","useRoutesImpl","UNSAFE_useRoutesImpl","isBrowser","ABSOLUTE_URL_REGEX","Link","forwardRef","_ref7","ref","absoluteHref","onClick","relative","reloadDocument","replace","to","preventScrollReset","viewTransition","rest","_objectWithoutPropertiesLoose","_excluded","useContext","NavigationContext","isExternal","test","currentUrl","URL","location","href","targetUrl","startsWith","protocol","path","pathname","origin","search","hash","useHref","internalOnClick","useLinkClickHandler","event","defaultPrevented","NavLink","_ref8","ariaCurrentProp","caseSensitive","className","classNameProp","end","style","styleProp","children","_excluded2","useResolvedPath","useLocation","routerState","DataRouterStateContext","UNSAFE_DataRouterStateContext","navigator","useViewTransitionState","toPathname","encodeLocation","locationPathname","nextLocationPathname","navigation","endSlashPosition","endsWith","length","isActive","charAt","isPending","renderProps","ariaCurrent","filter","Boolean","join","Form","_ref9","forwardedRef","fetcherKey","navigate","onSubmit","props","_excluded3","submit","useSubmit","formAction","useFormAction","formMethod","preventDefault","submitter","nativeEvent","submitMethod","currentTarget","DataRouterHook","DataRouterStateHook","useDataRouterContext","hookName","ctx","DataRouterContext","UNSAFE_DataRouterContext","invariant","UNSAFE_invariant","useDataRouterState","_temp","replaceProp","useNavigate","useCallback","button","metaKey","altKey","ctrlKey","shiftKey","isModifiedEvent","shouldProcessLinkClick","createPath","fetcherId","getUniqueFetcherId","String","router","UseSubmit","currentRouteId","useRouteId","options","validateClientSideSubmission","fetch","formEncType","flushSync","fromRouteId","_temp2","routeContext","RouteContext","UNSAFE_RouteContext","match","matches","slice","params","indexValues","getAll","some","delete","forEach","qs","toString","route","index","joinPaths","SCROLL_RESTORATION_STORAGE_KEY","savedScrollPositions","useScrollRestoration","_temp4","getKey","storageKey","UseScrollRestoration","restoreScrollPosition","useMatches","useNavigation","useEffect","history","scrollRestoration","callback","capture","opts","addEventListener","removeEventListener","usePageHide","scrollY","sessionStorage","setItem","JSON","stringify","useLayoutEffect","sessionPositions","getItem","parse","getKeyWithoutBasename","disableScrollRestoration","enableScrollRestoration","el","getElementById","decodeURIComponent","scrollIntoView","scrollTo","vtContext","currentPath","currentLocation","nextPath","nextLocation","matchPath","_ref4","historyRef","useRef","current","createBrowserHistory","v5Compat","setStateImpl","useState","v7_startTransition","setState","newState","listen","logV6DeprecationWarnings","UNSAFE_logV6DeprecationWarnings","Router","navigationType","_ref5","createHashHistory","_ref","fallbackElement","pendingState","setPendingState","setVtContext","renderDfd","setRenderDfd","transition","setTransition","interruption","setInterruption","fetcherData","optInStartTransition","startTransitionSafe","_ref2","deletedFetchers","viewTransitionOpts","fetchers","fetcher","set","isViewTransitionUnavailable","startViewTransition","skipTransition","t","finished","finally","subscribe","renderPromise","async","useMemo","createHref","go","n","push","dataRouterContext","static","routerFuture","v7_relativeSplatPath","Fragment","Provider","historyAction","initialized","v7_partialHydration","_ref10","createRouter","v7_prependBasename","hydrationData","mapRouteProperties","UNSAFE_mapRouteProperties","dataStrategy","patchRoutesOnNavigation","initialize","_ref6","_ref12","when","blocker","useBlocker","confirm","setTimeout","proceed","reset","_temp3","_route$matches","UseFetcher","routeId","id","defaultKey","setFetcherKey","getFetcher","deleteFetcher","load","submitImpl","FetcherForm","get","IDLE_FETCHER","UseFetchers","from","_ref11","defaultInit","defaultSearchParamsRef","hasSetSearchParamsRef","searchParams","locationSearch","defaultSearchParams","_","getSearchParamsForLocation","setSearchParams","nextInit","navigateOptions","newSearchParams"],"mappings":"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"}
  • imaps-frontend/node_modules/react-router-dom/package.json

    rd565449 r0c6b92a  
    11{
    22  "name": "react-router-dom",
    3   "version": "6.26.0",
     3  "version": "6.28.0",
    44  "description": "Declarative routing for React web applications",
    55  "keywords": [
     
    2424  "types": "./dist/index.d.ts",
    2525  "dependencies": {
    26     "@remix-run/router": "1.19.0",
    27     "react-router": "6.26.0"
     26    "@remix-run/router": "1.21.0",
     27    "react-router": "6.28.0"
    2828  },
    2929  "devDependencies": {
Note: See TracChangeset for help on using the changeset viewer.