react-router 7.6.1 → 7.6.3-pre.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (32) hide show
  1. package/CHANGELOG.md +28 -0
  2. package/dist/development/{chunk-DQRVZFIR.mjs → chunk-CCB6XHGW.mjs} +48 -39
  3. package/dist/development/dom-export.d.mts +2 -2
  4. package/dist/development/dom-export.js +1 -1
  5. package/dist/development/dom-export.mjs +2 -2
  6. package/dist/development/index.d.mts +8 -389
  7. package/dist/development/index.d.ts +819 -799
  8. package/dist/development/index.js +51 -39
  9. package/dist/development/index.mjs +9 -3
  10. package/dist/development/lib/types/internal.d.mts +7 -71
  11. package/dist/development/lib/types/internal.d.ts +7 -71
  12. package/dist/development/lib/types/internal.js +1 -1
  13. package/dist/development/lib/types/internal.mjs +1 -1
  14. package/dist/{production/lib-B8x_tOvL.d.mts → development/lib-B33EY9A0.d.mts} +537 -136
  15. package/dist/{production/register-BkDIKxVz.d.ts → development/register-COAKzST_.d.ts} +68 -2
  16. package/dist/{production/route-data-WyrduLgj.d.mts → development/route-data-D7Xbr_Ww.d.mts} +68 -2
  17. package/dist/production/{chunk-UG2XJOVM.mjs → chunk-2T4DELW3.mjs} +48 -39
  18. package/dist/production/dom-export.d.mts +2 -2
  19. package/dist/production/dom-export.js +1 -1
  20. package/dist/production/dom-export.mjs +2 -2
  21. package/dist/production/index.d.mts +8 -389
  22. package/dist/production/index.d.ts +819 -799
  23. package/dist/production/index.js +51 -39
  24. package/dist/production/index.mjs +9 -3
  25. package/dist/production/lib/types/internal.d.mts +7 -71
  26. package/dist/production/lib/types/internal.d.ts +7 -71
  27. package/dist/production/lib/types/internal.js +1 -1
  28. package/dist/production/lib/types/internal.mjs +1 -1
  29. package/dist/{development/lib-B8x_tOvL.d.mts → production/lib-B33EY9A0.d.mts} +537 -136
  30. package/dist/{development/register-BkDIKxVz.d.ts → production/register-COAKzST_.d.ts} +68 -2
  31. package/dist/{development/route-data-WyrduLgj.d.mts → production/route-data-D7Xbr_Ww.d.mts} +68 -2
  32. package/package.json +1 -1
@@ -1767,7 +1767,73 @@ type ClientData<T> = T extends Response ? never : T extends DataWithResponseInit
1767
1767
  type ServerData<T> = T extends Response ? never : T extends DataWithResponseInit<infer U> ? Serialize<U> : Serialize<T>;
1768
1768
  type ServerDataFrom<T> = ServerData<DataFrom<T>>;
1769
1769
  type ClientDataFrom<T> = ClientData<DataFrom<T>>;
1770
- type SerializeFrom<T> = T extends (...args: infer Args) => unknown ? Args extends [ClientLoaderFunctionArgs | ClientActionFunctionArgs] ? ClientDataFrom<T> : ServerDataFrom<T> : T;
1770
+ type ClientDataFunctionArgs<Params> = {
1771
+ /**
1772
+ * A {@link https://developer.mozilla.org/en-US/docs/Web/API/Request Fetch Request instance} which you can use to read the URL, the method, the "content-type" header, and the request body from the request.
1773
+ *
1774
+ * @note Because client data functions are called before a network request is made, the Request object does not include the headers which the browser automatically adds. React Router infers the "content-type" header from the enc-type of the form that performed the submission.
1775
+ **/
1776
+ request: Request;
1777
+ /**
1778
+ * {@link https://reactrouter.com/start/framework/routing#dynamic-segments Dynamic route params} for the current route.
1779
+ * @example
1780
+ * // app/routes.ts
1781
+ * route("teams/:teamId", "./team.tsx"),
1782
+ *
1783
+ * // app/team.tsx
1784
+ * export function clientLoader({
1785
+ * params,
1786
+ * }: Route.ClientLoaderArgs) {
1787
+ * params.teamId;
1788
+ * // ^ string
1789
+ * }
1790
+ **/
1791
+ params: Params;
1792
+ /**
1793
+ * When `future.unstable_middleware` is not enabled, this is undefined.
1794
+ *
1795
+ * When `future.unstable_middleware` is enabled, this is an instance of
1796
+ * `unstable_RouterContextProvider` and can be used to access context values
1797
+ * from your route middlewares. You may pass in initial context values in your
1798
+ * `<HydratedRouter unstable_getContext>` prop
1799
+ */
1800
+ context: unstable_RouterContextProvider;
1801
+ };
1802
+ type ServerDataFunctionArgs<Params> = {
1803
+ /** A {@link https://developer.mozilla.org/en-US/docs/Web/API/Request Fetch Request instance} which you can use to read the url, method, headers (such as cookies), and request body from the request. */
1804
+ request: Request;
1805
+ /**
1806
+ * {@link https://reactrouter.com/start/framework/routing#dynamic-segments Dynamic route params} for the current route.
1807
+ * @example
1808
+ * // app/routes.ts
1809
+ * route("teams/:teamId", "./team.tsx"),
1810
+ *
1811
+ * // app/team.tsx
1812
+ * export function loader({
1813
+ * params,
1814
+ * }: Route.LoaderArgs) {
1815
+ * params.teamId;
1816
+ * // ^ string
1817
+ * }
1818
+ **/
1819
+ params: Params;
1820
+ /**
1821
+ * Without `future.unstable_middleware` enabled, this is the context passed in
1822
+ * to your server adapter's `getLoadContext` function. It's a way to bridge the
1823
+ * gap between the adapter's request/response API with your React Router app.
1824
+ * It is only applicable if you are using a custom server adapter.
1825
+ *
1826
+ * With `future.unstable_middleware` enabled, this is an instance of
1827
+ * `unstable_RouterContextProvider` and can be used for type-safe access to
1828
+ * context value set in your route middlewares. If you are using a custom
1829
+ * server adapter, you may provide an initial set of context values from your
1830
+ * `getLoadContext` function.
1831
+ */
1832
+ context: MiddlewareEnabled extends true ? unstable_RouterContextProvider : AppLoadContext;
1833
+ };
1834
+ type SerializeFrom<T> = T extends (...args: infer Args) => unknown ? Args extends [
1835
+ ClientLoaderFunctionArgs | ClientActionFunctionArgs | ClientDataFunctionArgs<unknown>
1836
+ ] ? ClientDataFrom<T> : ServerDataFrom<T> : T;
1771
1837
  type IsDefined<T> = Equal<T, undefined> extends true ? false : true;
1772
1838
  type IsHydrate<ClientLoader> = ClientLoader extends {
1773
1839
  hydrate: true;
@@ -1813,4 +1879,4 @@ type RouteFiles = Register extends {
1813
1879
  routeFiles: infer Registered extends AnyRouteFiles;
1814
1880
  } ? Registered : AnyRouteFiles;
1815
1881
 
1816
- export { type Equal as $, Action as A, type BlockerFunction as B, type ClientLoaderFunction as C, type DataStrategyFunction as D, type PageLinkDescriptor as E, type FutureConfig as F, type History as G, type HydrationState as H, type InitialEntry as I, type GetScrollRestorationKeyFunction as J, type Fetcher as K, type LazyRouteFunction as L, type MiddlewareEnabled as M, type NonIndexRouteObject as N, type StaticHandler as O, type PatchRoutesOnNavigationFunction as P, type CreateStaticHandlerOptions as Q, type RouteObject as R, type ServerRouteModule as S, type To as T, type UIMatch as U, type unstable_InitialContext as V, type LoaderFunction as W, type ActionFunction as X, type MetaFunction as Y, type LinksFunction as Z, type Pages as _, type RouterInit as a, type GetLoaderData as a$, type RouterState as a0, type GetScrollPositionFunction as a1, type NavigationStates as a2, type RouterSubscriber as a3, type RouterNavigateOptions as a4, type RouterFetchOptions as a5, type RevalidationState as a6, type DataStrategyFunctionArgs as a7, type DataStrategyMatch as a8, type DataStrategyResult as a9, type ClientActionFunction as aA, type ClientActionFunctionArgs as aB, type ClientLoaderFunctionArgs as aC, type HeadersArgs as aD, type HeadersFunction as aE, type MetaArgs as aF, type MetaDescriptor as aG, type HtmlLinkDescriptor as aH, type LinkDescriptor as aI, type Future as aJ, type unstable_SerializesTo as aK, type Register as aL, createBrowserHistory as aM, invariant as aN, createRouter as aO, ErrorResponseImpl as aP, DataRouterContext as aQ, DataRouterStateContext as aR, FetchersContext as aS, LocationContext as aT, NavigationContext as aU, RouteContext as aV, ViewTransitionContext as aW, type RouteModule as aX, type unstable_MiddlewareNextFunction as aY, type ServerDataFrom as aZ, type Pretty as a_, DataWithResponseInit as aa, type ErrorResponse as ab, type FormMethod as ac, type unstable_MiddlewareFunction as ad, type PathParam as ae, type RedirectFunction as af, type unstable_RouterContext as ag, type ShouldRevalidateFunction as ah, type ShouldRevalidateFunctionArgs as ai, unstable_createContext as aj, createPath as ak, parsePath as al, IDLE_NAVIGATION as am, IDLE_FETCHER as an, IDLE_BLOCKER as ao, data as ap, generatePath as aq, isRouteErrorResponse as ar, matchPath as as, matchRoutes as at, redirect as au, redirectDocument as av, replace as aw, resolvePath as ax, type DataRouteMatch as ay, type PatchRoutesOnNavigationFunctionArgs as az, type Router as b, type RouteFiles as b0, type Normalize as b1, type GetActionData as b2, type RelativeRoutingType as c, type IndexRouteObject as d, type Location as e, type Navigator as f, type RouteMatch as g, type RouteManifest as h, type AppLoadContext as i, type LoaderFunctionArgs as j, type ActionFunctionArgs as k, type StaticHandlerContext as l, type RouteModules as m, type DataRouteObject as n, type ParamParseKey as o, type Path as p, type PathPattern as q, type PathMatch as r, type NavigateOptions as s, type Params as t, unstable_RouterContextProvider as u, type Navigation as v, type SerializeFrom as w, type Blocker as x, type HTMLFormMethod as y, type FormEncType as z };
1882
+ export { type Equal as $, type AppLoadContext as A, type BlockerFunction as B, type ClientLoaderFunction as C, type DataRouteObject as D, type PageLinkDescriptor as E, type FutureConfig as F, type History as G, type HydrationState as H, type IndexRouteObject as I, type GetScrollRestorationKeyFunction as J, type Fetcher as K, type LoaderFunctionArgs as L, type MiddlewareEnabled as M, type NavigateOptions as N, type CreateStaticHandlerOptions as O, type ParamParseKey as P, type StaticHandler as Q, type RouteManifest as R, type ServerRouteModule as S, type To as T, type UIMatch as U, type LoaderFunction as V, type ActionFunction as W, type MetaFunction as X, type LinksFunction as Y, type unstable_InitialContext as Z, type Pages as _, type ActionFunctionArgs as a, type unstable_MiddlewareNextFunction as a$, type RouterState as a0, type GetScrollPositionFunction as a1, type NavigationStates as a2, type RouterSubscriber as a3, type RouterNavigateOptions as a4, type RouterFetchOptions as a5, type RevalidationState as a6, type DataStrategyFunctionArgs as a7, type DataStrategyMatch as a8, type DataStrategyResult as a9, type ClientActionFunction as aA, type ClientActionFunctionArgs as aB, type ClientLoaderFunctionArgs as aC, type HeadersArgs as aD, type HeadersFunction as aE, type MetaArgs as aF, type MetaDescriptor as aG, type HtmlLinkDescriptor as aH, type LinkDescriptor as aI, type Future as aJ, type unstable_SerializesTo as aK, type Register as aL, createBrowserHistory as aM, invariant as aN, createRouter as aO, ErrorResponseImpl as aP, DataRouterContext as aQ, DataRouterStateContext as aR, FetchersContext as aS, LocationContext as aT, NavigationContext as aU, RouteContext as aV, ViewTransitionContext as aW, type RouteModule as aX, type Pretty as aY, type GetLoaderData as aZ, type ServerDataFunctionArgs as a_, DataWithResponseInit as aa, type ErrorResponse as ab, type FormMethod as ac, type unstable_MiddlewareFunction as ad, type PathParam as ae, type RedirectFunction as af, type unstable_RouterContext as ag, type ShouldRevalidateFunction as ah, type ShouldRevalidateFunctionArgs as ai, unstable_createContext as aj, createPath as ak, parsePath as al, IDLE_NAVIGATION as am, IDLE_FETCHER as an, IDLE_BLOCKER as ao, data as ap, generatePath as aq, isRouteErrorResponse as ar, matchPath as as, matchRoutes as at, redirect as au, redirectDocument as av, replace as aw, resolvePath as ax, type DataRouteMatch as ay, type PatchRoutesOnNavigationFunctionArgs as az, type RouteModules as b, type ClientDataFunctionArgs as b0, type ServerDataFrom as b1, type RouteFiles as b2, type Normalize as b3, type GetActionData as b4, type StaticHandlerContext as c, type Router as d, type DataStrategyFunction as e, type Blocker as f, type SerializeFrom as g, type RelativeRoutingType as h, type Location as i, type Path as j, type PathPattern as k, type PathMatch as l, type Navigation as m, Action as n, type Params as o, type RouteObject as p, type LazyRouteFunction as q, type NonIndexRouteObject as r, type RouterInit as s, type InitialEntry as t, unstable_RouterContextProvider as u, type PatchRoutesOnNavigationFunction as v, type Navigator as w, type RouteMatch as x, type HTMLFormMethod as y, type FormEncType as z };
@@ -1767,7 +1767,73 @@ type ClientData<T> = T extends Response ? never : T extends DataWithResponseInit
1767
1767
  type ServerData<T> = T extends Response ? never : T extends DataWithResponseInit<infer U> ? Serialize<U> : Serialize<T>;
1768
1768
  type ServerDataFrom<T> = ServerData<DataFrom<T>>;
1769
1769
  type ClientDataFrom<T> = ClientData<DataFrom<T>>;
1770
- type SerializeFrom<T> = T extends (...args: infer Args) => unknown ? Args extends [ClientLoaderFunctionArgs | ClientActionFunctionArgs] ? ClientDataFrom<T> : ServerDataFrom<T> : T;
1770
+ type ClientDataFunctionArgs<Params> = {
1771
+ /**
1772
+ * A {@link https://developer.mozilla.org/en-US/docs/Web/API/Request Fetch Request instance} which you can use to read the URL, the method, the "content-type" header, and the request body from the request.
1773
+ *
1774
+ * @note Because client data functions are called before a network request is made, the Request object does not include the headers which the browser automatically adds. React Router infers the "content-type" header from the enc-type of the form that performed the submission.
1775
+ **/
1776
+ request: Request;
1777
+ /**
1778
+ * {@link https://reactrouter.com/start/framework/routing#dynamic-segments Dynamic route params} for the current route.
1779
+ * @example
1780
+ * // app/routes.ts
1781
+ * route("teams/:teamId", "./team.tsx"),
1782
+ *
1783
+ * // app/team.tsx
1784
+ * export function clientLoader({
1785
+ * params,
1786
+ * }: Route.ClientLoaderArgs) {
1787
+ * params.teamId;
1788
+ * // ^ string
1789
+ * }
1790
+ **/
1791
+ params: Params;
1792
+ /**
1793
+ * When `future.unstable_middleware` is not enabled, this is undefined.
1794
+ *
1795
+ * When `future.unstable_middleware` is enabled, this is an instance of
1796
+ * `unstable_RouterContextProvider` and can be used to access context values
1797
+ * from your route middlewares. You may pass in initial context values in your
1798
+ * `<HydratedRouter unstable_getContext>` prop
1799
+ */
1800
+ context: unstable_RouterContextProvider;
1801
+ };
1802
+ type ServerDataFunctionArgs<Params> = {
1803
+ /** A {@link https://developer.mozilla.org/en-US/docs/Web/API/Request Fetch Request instance} which you can use to read the url, method, headers (such as cookies), and request body from the request. */
1804
+ request: Request;
1805
+ /**
1806
+ * {@link https://reactrouter.com/start/framework/routing#dynamic-segments Dynamic route params} for the current route.
1807
+ * @example
1808
+ * // app/routes.ts
1809
+ * route("teams/:teamId", "./team.tsx"),
1810
+ *
1811
+ * // app/team.tsx
1812
+ * export function loader({
1813
+ * params,
1814
+ * }: Route.LoaderArgs) {
1815
+ * params.teamId;
1816
+ * // ^ string
1817
+ * }
1818
+ **/
1819
+ params: Params;
1820
+ /**
1821
+ * Without `future.unstable_middleware` enabled, this is the context passed in
1822
+ * to your server adapter's `getLoadContext` function. It's a way to bridge the
1823
+ * gap between the adapter's request/response API with your React Router app.
1824
+ * It is only applicable if you are using a custom server adapter.
1825
+ *
1826
+ * With `future.unstable_middleware` enabled, this is an instance of
1827
+ * `unstable_RouterContextProvider` and can be used for type-safe access to
1828
+ * context value set in your route middlewares. If you are using a custom
1829
+ * server adapter, you may provide an initial set of context values from your
1830
+ * `getLoadContext` function.
1831
+ */
1832
+ context: MiddlewareEnabled extends true ? unstable_RouterContextProvider : AppLoadContext;
1833
+ };
1834
+ type SerializeFrom<T> = T extends (...args: infer Args) => unknown ? Args extends [
1835
+ ClientLoaderFunctionArgs | ClientActionFunctionArgs | ClientDataFunctionArgs<unknown>
1836
+ ] ? ClientDataFrom<T> : ServerDataFrom<T> : T;
1771
1837
  type IsDefined<T> = Equal<T, undefined> extends true ? false : true;
1772
1838
  type IsHydrate<ClientLoader> = ClientLoader extends {
1773
1839
  hydrate: true;
@@ -1790,4 +1856,4 @@ type _DataActionData<ServerActionData, ClientActionData> = Awaited<[
1790
1856
  IsDefined<ClientActionData>
1791
1857
  ] extends [true, true] ? ServerActionData | ClientActionData : IsDefined<ClientActionData> extends true ? ClientActionData : IsDefined<ServerActionData> extends true ? ServerActionData : undefined>;
1792
1858
 
1793
- export { type ErrorResponse as $, Action as A, type BlockerFunction as B, type CreateStaticHandlerOptions as C, type DataStrategyFunction as D, type Equal as E, type FutureConfig as F, type GetScrollPositionFunction as G, type HydrationState as H, type InitialEntry as I, type NavigationStates as J, type RouterSubscriber as K, type Location as L, type MetaFunction as M, type NavigateOptions as N, type RouterNavigateOptions as O, type ParamParseKey as P, type RouterFetchOptions as Q, type RouterInit as R, type SerializeFrom as S, type To as T, type UIMatch as U, type RevalidationState as V, type ActionFunctionArgs as W, type DataStrategyFunctionArgs as X, type DataStrategyMatch as Y, type DataStrategyResult as Z, DataWithResponseInit as _, type Router as a, type GetActionData as a$, type FormEncType as a0, type FormMethod as a1, type HTMLFormMethod as a2, type LazyRouteFunction as a3, type LoaderFunctionArgs as a4, type unstable_MiddlewareFunction as a5, type PathParam as a6, type RedirectFunction as a7, type unstable_RouterContext as a8, type ShouldRevalidateFunction as a9, type MetaArgs as aA, type MetaDescriptor as aB, type PageLinkDescriptor as aC, type HtmlLinkDescriptor as aD, type LinkDescriptor as aE, type Future as aF, type unstable_SerializesTo as aG, createBrowserHistory as aH, invariant as aI, createRouter as aJ, ErrorResponseImpl as aK, DataRouterContext as aL, DataRouterStateContext as aM, FetchersContext as aN, LocationContext as aO, NavigationContext as aP, RouteContext as aQ, ViewTransitionContext as aR, type RouteManifest as aS, type ServerRouteModule as aT, type History as aU, type RouteModule as aV, type unstable_MiddlewareNextFunction as aW, type ServerDataFrom as aX, type Pretty as aY, type GetLoaderData as aZ, type Normalize as a_, type ShouldRevalidateFunctionArgs as aa, unstable_createContext as ab, unstable_RouterContextProvider as ac, createPath as ad, parsePath as ae, IDLE_NAVIGATION as af, IDLE_FETCHER as ag, IDLE_BLOCKER as ah, data as ai, generatePath as aj, isRouteErrorResponse as ak, matchPath as al, matchRoutes as am, redirect as an, redirectDocument as ao, replace as ap, resolvePath as aq, type DataRouteMatch as ar, type Navigator as as, type PatchRoutesOnNavigationFunctionArgs as at, type RouteMatch as au, type ClientActionFunction as av, type ClientActionFunctionArgs as aw, type ClientLoaderFunctionArgs as ax, type HeadersArgs as ay, type HeadersFunction as az, type RouteModules as b, type RelativeRoutingType as c, type Path as d, type PathPattern as e, type PathMatch as f, type Params as g, type RouteObject as h, type Navigation as i, type Blocker as j, type StaticHandlerContext as k, type StaticHandler as l, type IndexRouteObject as m, type NonIndexRouteObject as n, type LoaderFunction as o, type ActionFunction as p, type LinksFunction as q, type MiddlewareEnabled as r, type AppLoadContext as s, type RouterState as t, type unstable_InitialContext as u, type PatchRoutesOnNavigationFunction as v, type DataRouteObject as w, type ClientLoaderFunction as x, type GetScrollRestorationKeyFunction as y, type Fetcher as z };
1859
+ export { type Params as $, type ActionFunction as A, type Blocker as B, type CreateStaticHandlerOptions as C, type DataStrategyFunction as D, type Equal as E, type FutureConfig as F, type GetScrollPositionFunction as G, type HydrationState as H, type InitialEntry as I, type DataStrategyMatch as J, type DataStrategyResult as K, type Location as L, type MetaFunction as M, type NonIndexRouteObject as N, DataWithResponseInit as O, type PatchRoutesOnNavigationFunction as P, type ErrorResponse as Q, type RouterInit as R, type StaticHandlerContext as S, type To as T, type FormEncType as U, type FormMethod as V, type HTMLFormMethod as W, type LazyRouteFunction as X, type LoaderFunctionArgs as Y, type unstable_MiddlewareFunction as Z, type ParamParseKey as _, type Router as a, type ServerDataFrom as a$, type PathMatch as a0, type PathParam as a1, type PathPattern as a2, type RedirectFunction as a3, type unstable_RouterContext as a4, type ShouldRevalidateFunction as a5, type ShouldRevalidateFunctionArgs as a6, type UIMatch as a7, unstable_createContext as a8, unstable_RouterContextProvider as a9, type MetaDescriptor as aA, type PageLinkDescriptor as aB, type HtmlLinkDescriptor as aC, type LinkDescriptor as aD, type Future as aE, type unstable_SerializesTo as aF, createBrowserHistory as aG, invariant as aH, createRouter as aI, ErrorResponseImpl as aJ, DataRouterContext as aK, DataRouterStateContext as aL, FetchersContext as aM, LocationContext as aN, NavigationContext as aO, RouteContext as aP, ViewTransitionContext as aQ, type RouteManifest as aR, type ServerRouteModule as aS, type SerializeFrom as aT, type History as aU, type RouteModule as aV, type Pretty as aW, type GetLoaderData as aX, type ServerDataFunctionArgs as aY, type unstable_MiddlewareNextFunction as aZ, type ClientDataFunctionArgs as a_, Action as aa, createPath as ab, parsePath as ac, IDLE_NAVIGATION as ad, IDLE_FETCHER as ae, IDLE_BLOCKER as af, data as ag, generatePath as ah, isRouteErrorResponse as ai, matchPath as aj, matchRoutes as ak, redirect as al, redirectDocument as am, replace as an, resolvePath as ao, type DataRouteMatch as ap, type NavigateOptions as aq, type Navigator as ar, type PatchRoutesOnNavigationFunctionArgs as as, type RouteMatch as at, type ClientActionFunction as au, type ClientActionFunctionArgs as av, type ClientLoaderFunctionArgs as aw, type HeadersArgs as ax, type HeadersFunction as ay, type MetaArgs as az, type RouteModules as b, type Normalize as b0, type GetActionData as b1, type RouteObject as c, type StaticHandler as d, type IndexRouteObject as e, type LoaderFunction as f, type LinksFunction as g, type MiddlewareEnabled as h, type AppLoadContext as i, type RouterState as j, type DataRouteObject as k, type ClientLoaderFunction as l, type Path as m, type GetScrollRestorationKeyFunction as n, type Fetcher as o, type Navigation as p, type NavigationStates as q, type RelativeRoutingType as r, type BlockerFunction as s, type RouterSubscriber as t, type unstable_InitialContext as u, type RouterNavigateOptions as v, type RouterFetchOptions as w, type RevalidationState as x, type ActionFunctionArgs as y, type DataStrategyFunctionArgs as z };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "react-router",
3
- "version": "7.6.1",
3
+ "version": "7.6.3-pre.0",
4
4
  "description": "Declarative routing for React",
5
5
  "keywords": [
6
6
  "react",