react-router 0.0.0-experimental-759a11a62 → 0.0.0-experimental-beaa4f52a

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 (44) hide show
  1. package/CHANGELOG.md +23 -0
  2. package/dist/development/{chunk-5WLC4F5Z.mjs → chunk-3SBCR7VW.mjs} +749 -378
  3. package/dist/development/dom-export.d.mts +14 -4
  4. package/dist/development/dom-export.d.ts +14 -4
  5. package/dist/development/dom-export.js +263 -84
  6. package/dist/development/dom-export.mjs +9 -6
  7. package/dist/development/{fog-of-war-DFo9BKir.d.ts → fog-of-war-CYAe8qUt.d.mts} +159 -80
  8. package/dist/{production/fog-of-war-BCniP0AZ.d.mts → development/fog-of-war-CrM4EOZM.d.ts} +159 -80
  9. package/dist/development/index.d.mts +11 -50
  10. package/dist/development/index.d.ts +11 -50
  11. package/dist/development/index.js +749 -379
  12. package/dist/development/index.mjs +2 -4
  13. package/dist/development/lib/types/route-module.d.mts +116 -1
  14. package/dist/development/lib/types/route-module.d.ts +116 -1
  15. package/dist/development/lib/types/route-module.js +1 -1
  16. package/dist/development/lib/types/route-module.mjs +1 -1
  17. package/dist/development/{router-BYH9f2xg.d.mts → route-data-C9zMg-qq.d.mts} +861 -1093
  18. package/dist/{production/router-BYH9f2xg.d.mts → development/route-data-C9zMg-qq.d.ts} +861 -1093
  19. package/dist/production/{chunk-QJ3CF3ZA.mjs → chunk-DRRQRV77.mjs} +749 -378
  20. package/dist/production/dom-export.d.mts +14 -4
  21. package/dist/production/dom-export.d.ts +14 -4
  22. package/dist/production/dom-export.js +263 -84
  23. package/dist/production/dom-export.mjs +9 -6
  24. package/dist/production/{fog-of-war-DFo9BKir.d.ts → fog-of-war-CYAe8qUt.d.mts} +159 -80
  25. package/dist/{development/fog-of-war-BCniP0AZ.d.mts → production/fog-of-war-CrM4EOZM.d.ts} +159 -80
  26. package/dist/production/index.d.mts +11 -50
  27. package/dist/production/index.d.ts +11 -50
  28. package/dist/production/index.js +749 -379
  29. package/dist/production/index.mjs +2 -4
  30. package/dist/production/lib/types/route-module.d.mts +116 -1
  31. package/dist/production/lib/types/route-module.d.ts +116 -1
  32. package/dist/production/lib/types/route-module.js +1 -1
  33. package/dist/production/lib/types/route-module.mjs +1 -1
  34. package/dist/production/{router-BYH9f2xg.d.ts → route-data-C9zMg-qq.d.mts} +861 -1093
  35. package/dist/{development/router-BYH9f2xg.d.ts → production/route-data-C9zMg-qq.d.ts} +861 -1093
  36. package/package.json +1 -9
  37. package/dist/development/lib/types/index.d.mts +0 -2
  38. package/dist/development/lib/types/index.d.ts +0 -2
  39. package/dist/development/lib/types/index.js +0 -28
  40. package/dist/development/lib/types/index.mjs +0 -10
  41. package/dist/production/lib/types/index.d.mts +0 -2
  42. package/dist/production/lib/types/index.d.ts +0 -2
  43. package/dist/production/lib/types/index.js +0 -28
  44. package/dist/production/lib/types/index.mjs +0 -10
package/CHANGELOG.md CHANGED
@@ -1,7 +1,28 @@
1
1
  # `react-router`
2
2
 
3
+ ## 7.1.3
4
+
5
+ _No changes_
6
+
7
+ ## 7.1.2
8
+
9
+ ### Patch Changes
10
+
11
+ - Fix issue with fetcher data cleanup in the data layer on fetcher unmount ([#12681](https://github.com/remix-run/react-router/pull/12681))
12
+ - Do not rely on `symbol` for filtering out `redirect` responses from loader data ([#12694](https://github.com/remix-run/react-router/pull/12694))
13
+
14
+ Previously, some projects were getting type checking errors like:
15
+
16
+ ```ts
17
+ error TS4058: Return type of exported function has or is using name 'redirectSymbol' from external module "node_modules/..." but cannot be named.
18
+ ```
19
+
20
+ Now that `symbol`s are not used for the `redirect` response type, these errors should no longer be present.
21
+
3
22
  ## 7.1.1
4
23
 
24
+ _No changes_
25
+
5
26
  ## 7.1.0
6
27
 
7
28
  ### Patch Changes
@@ -23,6 +44,8 @@
23
44
 
24
45
  ## 7.0.1
25
46
 
47
+ _No changes_
48
+
26
49
  ## 7.0.0
27
50
 
28
51
  ### Major Changes