react-router 6.26.2 → 6.27.0-pre.1

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.
@@ -59,8 +59,8 @@ export interface NavigateOptions {
59
59
  state?: any;
60
60
  preventScrollReset?: boolean;
61
61
  relative?: RelativeRoutingType;
62
- unstable_flushSync?: boolean;
63
- unstable_viewTransition?: boolean;
62
+ flushSync?: boolean;
63
+ viewTransition?: boolean;
64
64
  }
65
65
  /**
66
66
  * A Navigator is a "location changer"; it's how you get to different locations.
package/dist/main.js CHANGED
@@ -1,5 +1,5 @@
1
1
  /**
2
- * React Router v6.26.2
2
+ * React Router v6.27.0-pre.1
3
3
  *
4
4
  * Copyright (c) Remix Software Inc.
5
5
  *
@@ -1,5 +1,5 @@
1
1
  /**
2
- * React Router v6.26.2
2
+ * React Router v6.27.0-pre.1
3
3
  *
4
4
  * Copyright (c) Remix Software Inc.
5
5
  *
@@ -1354,8 +1354,8 @@ function createMemoryRouter(routes, opts) {
1354
1354
  hydrationData: opts?.hydrationData,
1355
1355
  routes,
1356
1356
  mapRouteProperties,
1357
- unstable_dataStrategy: opts?.unstable_dataStrategy,
1358
- unstable_patchRoutesOnNavigation: opts?.unstable_patchRoutesOnNavigation
1357
+ dataStrategy: opts?.dataStrategy,
1358
+ patchRoutesOnNavigation: opts?.patchRoutesOnNavigation
1359
1359
  }).initialize();
1360
1360
  }
1361
1361