react-router 0.0.0-experimental-818f8e08d → 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-4O47XL4L.mjs → chunk-RMWJZNG5.mjs} +1045 -354
  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 -1
  7. package/dist/development/dom-export.js +6130 -35
  8. package/dist/development/dom-export.mjs +3 -6
  9. package/dist/development/fog-of-war-C5L_Yd5M.d.mts +1778 -0
  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 +207 -1889
  13. package/dist/development/index.js +1052 -352
  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/{production/route-data-BvrN3Sw4.d.mts → development/route-data-BIYebJr3.d.mts} +12 -12
  20. package/dist/{production/route-data-fNWkI-4T.d.ts → 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-P2C2EGLF.mjs → chunk-BXBFRMFA.mjs} +1045 -354
  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 -1
  30. package/dist/production/dom-export.js +6130 -35
  31. package/dist/production/dom-export.mjs +3 -6
  32. package/dist/production/fog-of-war-C5L_Yd5M.d.mts +1778 -0
  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 +207 -1889
  36. package/dist/production/index.js +1052 -352
  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/{development/route-data-BvrN3Sw4.d.mts → production/route-data-BIYebJr3.d.mts} +12 -12
  43. package/dist/{development/route-data-fNWkI-4T.d.ts → 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 -2
@@ -0,0 +1,11 @@
1
+ /**
2
+ * An object of unknown type for route loaders and actions provided by the
3
+ * server's `getLoadContext()` function. This is defined as an empty interface
4
+ * specifically so apps can leverage declaration merging to augment this type
5
+ * globally: https://www.typescriptlang.org/docs/handbook/declaration-merging.html
6
+ */
7
+ interface AppLoadContext {
8
+ [key: string]: unknown;
9
+ }
10
+
11
+ export type { AppLoadContext as A };
@@ -0,0 +1,11 @@
1
+ /**
2
+ * An object of unknown type for route loaders and actions provided by the
3
+ * server's `getLoadContext()` function. This is defined as an empty interface
4
+ * specifically so apps can leverage declaration merging to augment this type
5
+ * globally: https://www.typescriptlang.org/docs/handbook/declaration-merging.html
6
+ */
7
+ interface AppLoadContext {
8
+ [key: string]: unknown;
9
+ }
10
+
11
+ export type { AppLoadContext as A };
@@ -1,6 +1,6 @@
1
1
  import * as React from 'react';
2
- import { R as RouterProviderProps$1 } from './fog-of-war-B1MWugqW.mjs';
3
- import { R as RouterInit } from './route-data-BvrN3Sw4.mjs';
2
+ import { R as RouterProviderProps$1 } from './fog-of-war-C5L_Yd5M.mjs';
3
+ import { R as RouterInit } from './route-data-BIYebJr3.mjs';
4
4
 
5
5
  type RouterProviderProps = Omit<RouterProviderProps$1, "flushSync">;
6
6
  declare function RouterProvider(props: Omit<RouterProviderProps, "flushSync">): React.JSX.Element;
@@ -1,5 +1,6 @@
1
1
  import * as React from 'react';
2
- import { RouterProviderProps as RouterProviderProps$1, RouterInit } from 'react-router';
2
+ import { R as RouterProviderProps$1 } from './fog-of-war-DrUCUQQ-.js';
3
+ import { R as RouterInit } from './route-data-BIYebJr3.js';
3
4
 
4
5
  type RouterProviderProps = Omit<RouterProviderProps$1, "flushSync">;
5
6
  declare function RouterProvider(props: Omit<RouterProviderProps, "flushSync">): React.JSX.Element;