react-router 0.0.0-experimental-ab0e85b04 → 0.0.0-experimental-e56aa53bc

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 (48) hide show
  1. package/CHANGELOG.md +0 -19
  2. package/dist/development/{chunk-EBUZVJTZ.mjs → chunk-RMWJZNG5.mjs} +1102 -420
  3. package/dist/development/data-CQbyyGzl.d.mts +11 -0
  4. package/dist/development/data-CQbyyGzl.d.ts +11 -0
  5. package/dist/development/dom-export.d.mts +2 -2
  6. package/dist/development/dom-export.d.ts +2 -2
  7. package/dist/development/dom-export.js +179 -181
  8. package/dist/development/dom-export.mjs +3 -6
  9. package/dist/development/{fog-of-war-k8KWkMZc.d.ts → fog-of-war-C5L_Yd5M.d.mts} +170 -138
  10. package/dist/{production/fog-of-war-B1MWugqW.d.mts → development/fog-of-war-DrUCUQQ-.d.ts} +170 -138
  11. package/dist/development/index.d.mts +68 -10
  12. package/dist/development/index.d.ts +68 -10
  13. package/dist/development/index.js +1109 -418
  14. package/dist/development/index.mjs +19 -2
  15. package/dist/development/lib/types/route-module.d.mts +2 -1
  16. package/dist/development/lib/types/route-module.d.ts +2 -1
  17. package/dist/development/lib/types/route-module.js +1 -1
  18. package/dist/development/lib/types/route-module.mjs +1 -1
  19. package/dist/development/{route-data-BvrN3Sw4.d.ts → route-data-BIYebJr3.d.mts} +12 -12
  20. package/dist/{production/route-data-BvrN3Sw4.d.mts → development/route-data-BIYebJr3.d.ts} +12 -12
  21. package/dist/development/rsc-export.d.mts +1788 -0
  22. package/dist/development/rsc-export.d.ts +1788 -0
  23. package/dist/development/rsc-export.js +2778 -0
  24. package/dist/development/rsc-export.mjs +2743 -0
  25. package/dist/production/{chunk-3F6ADOVA.mjs → chunk-BXBFRMFA.mjs} +1102 -420
  26. package/dist/production/data-CQbyyGzl.d.mts +11 -0
  27. package/dist/production/data-CQbyyGzl.d.ts +11 -0
  28. package/dist/production/dom-export.d.mts +2 -2
  29. package/dist/production/dom-export.d.ts +2 -2
  30. package/dist/production/dom-export.js +179 -181
  31. package/dist/production/dom-export.mjs +3 -6
  32. package/dist/production/{fog-of-war-k8KWkMZc.d.ts → fog-of-war-C5L_Yd5M.d.mts} +170 -138
  33. package/dist/{development/fog-of-war-B1MWugqW.d.mts → production/fog-of-war-DrUCUQQ-.d.ts} +170 -138
  34. package/dist/production/index.d.mts +68 -10
  35. package/dist/production/index.d.ts +68 -10
  36. package/dist/production/index.js +1109 -418
  37. package/dist/production/index.mjs +19 -2
  38. package/dist/production/lib/types/route-module.d.mts +2 -1
  39. package/dist/production/lib/types/route-module.d.ts +2 -1
  40. package/dist/production/lib/types/route-module.js +1 -1
  41. package/dist/production/lib/types/route-module.mjs +1 -1
  42. package/dist/production/{route-data-BvrN3Sw4.d.ts → route-data-BIYebJr3.d.mts} +12 -12
  43. package/dist/{development/route-data-BvrN3Sw4.d.mts → production/route-data-BIYebJr3.d.ts} +12 -12
  44. package/dist/production/rsc-export.d.mts +1788 -0
  45. package/dist/production/rsc-export.d.ts +1788 -0
  46. package/dist/production/rsc-export.js +2778 -0
  47. package/dist/production/rsc-export.mjs +2743 -0
  48. package/package.json +33 -5
package/CHANGELOG.md CHANGED
@@ -1,24 +1,5 @@
1
1
  # `react-router`
2
2
 
3
- ## 7.5.3
4
-
5
- ### Patch Changes
6
-
7
- - Fix bug where bubbled action errors would result in `loaderData` being cleared at the handling `ErrorBoundary` route ([#13476](https://github.com/remix-run/react-router/pull/13476))
8
- - Handle redirects from `clientLoader.hydrate` initial load executions ([#13477](https://github.com/remix-run/react-router/pull/13477))
9
-
10
- ## 7.5.2
11
-
12
- ### Patch Changes
13
-
14
- - Update Single Fetch to also handle the 204 redirects used in `?_data` requests in Remix v2 ([#13364](https://github.com/remix-run/react-router/pull/13364))
15
-
16
- - This allows applications to return a redirect on `.data` requests from outside the scope of React Router (i.e., an `express`/`hono` middleware)
17
- - ⚠️ Please note that doing so relies on implementation details that are subject to change without a SemVer major release
18
- - This is primarily done to ease upgrading to Single Fetch for existing Remix v2 applications, but the recommended way to handle this is redirecting from a route middleware
19
-
20
- - Adjust approach for Prerendering/SPA Mode via headers ([#13453](https://github.com/remix-run/react-router/pull/13453))
21
-
22
3
  ## 7.5.1
23
4
 
24
5
  ### Patch Changes