@tanstack/react-router 0.0.1-beta.25 → 0.0.1-beta.250

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 (108) hide show
  1. package/LICENSE +21 -0
  2. package/build/cjs/CatchBoundary.js +128 -0
  3. package/build/cjs/CatchBoundary.js.map +1 -0
  4. package/build/cjs/Matches.js +244 -0
  5. package/build/cjs/Matches.js.map +1 -0
  6. package/build/cjs/RouterProvider.js +159 -0
  7. package/build/cjs/RouterProvider.js.map +1 -0
  8. package/build/cjs/_virtual/_rollupPluginBabelHelpers.js +2 -22
  9. package/build/cjs/_virtual/_rollupPluginBabelHelpers.js.map +1 -1
  10. package/build/cjs/awaited.js +43 -0
  11. package/build/cjs/awaited.js.map +1 -0
  12. package/build/cjs/defer.js +37 -0
  13. package/build/cjs/defer.js.map +1 -0
  14. package/build/cjs/fileRoute.js +27 -0
  15. package/build/cjs/fileRoute.js.map +1 -0
  16. package/build/cjs/index.js +125 -0
  17. package/build/cjs/index.js.map +1 -0
  18. package/build/cjs/lazyRouteComponent.js +54 -0
  19. package/build/cjs/lazyRouteComponent.js.map +1 -0
  20. package/build/cjs/link.js +149 -0
  21. package/build/cjs/link.js.map +1 -0
  22. package/build/cjs/path.js +214 -0
  23. package/build/cjs/path.js.map +1 -0
  24. package/build/cjs/qss.js +63 -0
  25. package/build/cjs/qss.js.map +1 -0
  26. package/build/cjs/redirects.js +25 -0
  27. package/build/cjs/redirects.js.map +1 -0
  28. package/build/cjs/route.js +139 -0
  29. package/build/cjs/route.js.map +1 -0
  30. package/build/cjs/router.js +1134 -0
  31. package/build/cjs/router.js.map +1 -0
  32. package/build/cjs/scroll-restoration.js +202 -0
  33. package/build/cjs/scroll-restoration.js.map +1 -0
  34. package/build/cjs/searchParams.js +81 -0
  35. package/build/cjs/searchParams.js.map +1 -0
  36. package/build/cjs/useBlocker.js +55 -0
  37. package/build/cjs/useBlocker.js.map +1 -0
  38. package/build/cjs/useNavigate.js +76 -0
  39. package/build/cjs/useNavigate.js.map +1 -0
  40. package/build/cjs/useParams.js +26 -0
  41. package/build/cjs/useParams.js.map +1 -0
  42. package/build/cjs/useSearch.js +25 -0
  43. package/build/cjs/useSearch.js.map +1 -0
  44. package/build/cjs/utils.js +239 -0
  45. package/build/cjs/utils.js.map +1 -0
  46. package/build/esm/index.js +2202 -2536
  47. package/build/esm/index.js.map +1 -1
  48. package/build/stats-html.html +3498 -2694
  49. package/build/stats-react.json +1216 -44
  50. package/build/types/CatchBoundary.d.ts +36 -0
  51. package/build/types/Matches.d.ts +57 -0
  52. package/build/types/RouterProvider.d.ts +36 -0
  53. package/build/types/awaited.d.ts +9 -0
  54. package/build/types/defer.d.ts +19 -0
  55. package/build/types/fileRoute.d.ts +34 -0
  56. package/build/types/history.d.ts +7 -0
  57. package/build/types/index.d.ts +27 -114
  58. package/build/types/injectHtml.d.ts +0 -0
  59. package/build/types/lazyRouteComponent.d.ts +2 -0
  60. package/build/types/link.d.ts +105 -0
  61. package/build/types/location.d.ts +14 -0
  62. package/build/types/path.d.ts +17 -0
  63. package/build/types/qss.d.ts +2 -0
  64. package/build/types/redirects.d.ts +10 -0
  65. package/build/types/route.d.ts +279 -0
  66. package/build/types/routeInfo.d.ts +22 -0
  67. package/build/types/router.d.ts +183 -0
  68. package/build/types/scroll-restoration.d.ts +18 -0
  69. package/build/types/searchParams.d.ts +7 -0
  70. package/build/types/useBlocker.d.ts +8 -0
  71. package/build/types/useNavigate.d.ts +20 -0
  72. package/build/types/useParams.d.ts +7 -0
  73. package/build/types/useSearch.d.ts +7 -0
  74. package/build/types/utils.d.ts +66 -0
  75. package/build/umd/index.development.js +2774 -2484
  76. package/build/umd/index.development.js.map +1 -1
  77. package/build/umd/index.production.js +4 -4
  78. package/build/umd/index.production.js.map +1 -1
  79. package/package.json +11 -10
  80. package/src/CatchBoundary.tsx +101 -0
  81. package/src/Matches.tsx +428 -0
  82. package/src/RouterProvider.tsx +241 -0
  83. package/src/awaited.tsx +40 -0
  84. package/src/defer.ts +55 -0
  85. package/src/fileRoute.ts +154 -0
  86. package/src/history.ts +8 -0
  87. package/src/index.tsx +28 -714
  88. package/src/injectHtml.ts +28 -0
  89. package/src/lazyRouteComponent.tsx +33 -0
  90. package/src/link.tsx +509 -0
  91. package/src/location.ts +15 -0
  92. package/src/path.ts +261 -0
  93. package/src/qss.ts +53 -0
  94. package/src/redirects.ts +31 -0
  95. package/src/route.ts +911 -0
  96. package/src/routeInfo.ts +68 -0
  97. package/src/router.ts +1734 -0
  98. package/src/scroll-restoration.tsx +230 -0
  99. package/src/searchParams.ts +79 -0
  100. package/src/useBlocker.tsx +26 -0
  101. package/src/useNavigate.tsx +110 -0
  102. package/src/useParams.tsx +25 -0
  103. package/src/useSearch.tsx +25 -0
  104. package/src/utils.ts +350 -0
  105. package/build/cjs/react-router/src/index.js +0 -473
  106. package/build/cjs/react-router/src/index.js.map +0 -1
  107. package/build/cjs/router-core/build/esm/index.js +0 -2528
  108. package/build/cjs/router-core/build/esm/index.js.map +0 -1
@@ -7,21 +7,153 @@
7
7
  "name": "index.production.js",
8
8
  "children": [
9
9
  {
10
- "uid": "ce39-67",
11
- "name": "\u0000rollupPluginBabelHelpers.js"
10
+ "name": "packages",
11
+ "children": [
12
+ {
13
+ "name": "history/build/esm/index.js",
14
+ "uid": "5ac9-77"
15
+ },
16
+ {
17
+ "name": "react-router/src",
18
+ "children": [
19
+ {
20
+ "uid": "5ac9-95",
21
+ "name": "CatchBoundary.tsx"
22
+ },
23
+ {
24
+ "uid": "5ac9-97",
25
+ "name": "utils.ts"
26
+ },
27
+ {
28
+ "uid": "5ac9-99",
29
+ "name": "path.ts"
30
+ },
31
+ {
32
+ "uid": "5ac9-101",
33
+ "name": "useParams.tsx"
34
+ },
35
+ {
36
+ "uid": "5ac9-103",
37
+ "name": "useSearch.tsx"
38
+ },
39
+ {
40
+ "uid": "5ac9-105",
41
+ "name": "route.ts"
42
+ },
43
+ {
44
+ "uid": "5ac9-107",
45
+ "name": "Matches.tsx"
46
+ },
47
+ {
48
+ "uid": "5ac9-109",
49
+ "name": "RouterProvider.tsx"
50
+ },
51
+ {
52
+ "uid": "5ac9-111",
53
+ "name": "defer.ts"
54
+ },
55
+ {
56
+ "uid": "5ac9-113",
57
+ "name": "awaited.tsx"
58
+ },
59
+ {
60
+ "uid": "5ac9-115",
61
+ "name": "fileRoute.ts"
62
+ },
63
+ {
64
+ "uid": "5ac9-117",
65
+ "name": "lazyRouteComponent.tsx"
66
+ },
67
+ {
68
+ "uid": "5ac9-121",
69
+ "name": "link.tsx"
70
+ },
71
+ {
72
+ "uid": "5ac9-123",
73
+ "name": "qss.ts"
74
+ },
75
+ {
76
+ "uid": "5ac9-125",
77
+ "name": "redirects.ts"
78
+ },
79
+ {
80
+ "uid": "5ac9-127",
81
+ "name": "searchParams.ts"
82
+ },
83
+ {
84
+ "uid": "5ac9-129",
85
+ "name": "router.ts"
86
+ },
87
+ {
88
+ "uid": "5ac9-131",
89
+ "name": "scroll-restoration.tsx"
90
+ },
91
+ {
92
+ "uid": "5ac9-133",
93
+ "name": "useBlocker.tsx"
94
+ },
95
+ {
96
+ "uid": "5ac9-135",
97
+ "name": "useNavigate.tsx"
98
+ },
99
+ {
100
+ "uid": "5ac9-137",
101
+ "name": "index.tsx"
102
+ }
103
+ ]
104
+ }
105
+ ]
12
106
  },
13
107
  {
14
- "name": "packages",
108
+ "name": "node_modules/.pnpm",
109
+ "children": [
110
+ {
111
+ "name": "tiny-invariant@1.3.1/node_modules/tiny-invariant/dist/esm/tiny-invariant.js",
112
+ "uid": "5ac9-79"
113
+ },
114
+ {
115
+ "name": "tiny-warning@1.0.3/node_modules/tiny-warning/dist/tiny-warning.esm.js",
116
+ "uid": "5ac9-81"
117
+ },
118
+ {
119
+ "name": "use-sync-external-store@1.2.0/node_modules/use-sync-external-store",
120
+ "children": [
121
+ {
122
+ "name": "cjs/use-sync-external-store-shim/with-selector.production.min.js",
123
+ "uid": "5ac9-87"
124
+ },
125
+ {
126
+ "name": "shim/with-selector.js",
127
+ "uid": "5ac9-89"
128
+ }
129
+ ]
130
+ },
131
+ {
132
+ "name": "@tanstack+store@0.1.3/node_modules/@tanstack/store/build/modern/index.js",
133
+ "uid": "5ac9-91"
134
+ },
135
+ {
136
+ "name": "@tanstack+react-store@0.2.1/node_modules/@tanstack/react-store/build/modern/index.js",
137
+ "uid": "5ac9-93"
138
+ }
139
+ ]
140
+ },
141
+ {
142
+ "name": "\u0000/node_modules/.pnpm/use-sync-external-store@1.2.0/node_modules/use-sync-external-store",
15
143
  "children": [
16
144
  {
17
- "name": "router-core/build/esm/index.js",
18
- "uid": "ce39-69"
145
+ "name": "shim/with-selector.js?commonjs-module",
146
+ "uid": "5ac9-83"
19
147
  },
20
148
  {
21
- "name": "react-router/src/index.tsx",
22
- "uid": "ce39-71"
149
+ "name": "cjs/use-sync-external-store-shim/with-selector.production.min.js?commonjs-exports",
150
+ "uid": "5ac9-85"
23
151
  }
24
152
  ]
153
+ },
154
+ {
155
+ "uid": "5ac9-119",
156
+ "name": "\u0000rollupPluginBabelHelpers.js"
25
157
  }
26
158
  ]
27
159
  }
@@ -29,97 +161,1137 @@
29
161
  "isRoot": true
30
162
  },
31
163
  "nodeParts": {
32
- "ce39-67": {
33
- "renderedLength": 798,
34
- "gzipLength": 366,
164
+ "5ac9-77": {
165
+ "renderedLength": 9850,
166
+ "gzipLength": 2895,
167
+ "brotliLength": 0,
168
+ "metaUid": "5ac9-76"
169
+ },
170
+ "5ac9-79": {
171
+ "renderedLength": 181,
172
+ "gzipLength": 129,
173
+ "brotliLength": 0,
174
+ "metaUid": "5ac9-78"
175
+ },
176
+ "5ac9-81": {
177
+ "renderedLength": 44,
178
+ "gzipLength": 62,
179
+ "brotliLength": 0,
180
+ "metaUid": "5ac9-80"
181
+ },
182
+ "5ac9-83": {
183
+ "renderedLength": 35,
184
+ "gzipLength": 55,
185
+ "brotliLength": 0,
186
+ "metaUid": "5ac9-82"
187
+ },
188
+ "5ac9-85": {
189
+ "renderedLength": 39,
190
+ "gzipLength": 59,
191
+ "brotliLength": 0,
192
+ "metaUid": "5ac9-84"
193
+ },
194
+ "5ac9-87": {
195
+ "renderedLength": 1374,
196
+ "gzipLength": 659,
197
+ "brotliLength": 0,
198
+ "metaUid": "5ac9-86"
199
+ },
200
+ "5ac9-89": {
201
+ "renderedLength": 123,
202
+ "gzipLength": 95,
203
+ "brotliLength": 0,
204
+ "metaUid": "5ac9-88"
205
+ },
206
+ "5ac9-91": {
207
+ "renderedLength": 1731,
208
+ "gzipLength": 521,
209
+ "brotliLength": 0,
210
+ "metaUid": "5ac9-90"
211
+ },
212
+ "5ac9-93": {
213
+ "renderedLength": 821,
214
+ "gzipLength": 370,
215
+ "brotliLength": 0,
216
+ "metaUid": "5ac9-92"
217
+ },
218
+ "5ac9-95": {
219
+ "renderedLength": 2606,
220
+ "gzipLength": 800,
221
+ "brotliLength": 0,
222
+ "metaUid": "5ac9-94"
223
+ },
224
+ "5ac9-97": {
225
+ "renderedLength": 5237,
226
+ "gzipLength": 1761,
227
+ "brotliLength": 0,
228
+ "metaUid": "5ac9-96"
229
+ },
230
+ "5ac9-99": {
231
+ "renderedLength": 5890,
232
+ "gzipLength": 1454,
233
+ "brotliLength": 0,
234
+ "metaUid": "5ac9-98"
235
+ },
236
+ "5ac9-101": {
237
+ "renderedLength": 213,
238
+ "gzipLength": 147,
239
+ "brotliLength": 0,
240
+ "metaUid": "5ac9-100"
241
+ },
242
+ "5ac9-103": {
243
+ "renderedLength": 182,
244
+ "gzipLength": 128,
245
+ "brotliLength": 0,
246
+ "metaUid": "5ac9-102"
247
+ },
248
+ "5ac9-105": {
249
+ "renderedLength": 2737,
250
+ "gzipLength": 862,
251
+ "brotliLength": 0,
252
+ "metaUid": "5ac9-104"
253
+ },
254
+ "5ac9-107": {
255
+ "renderedLength": 7054,
256
+ "gzipLength": 1457,
257
+ "brotliLength": 0,
258
+ "metaUid": "5ac9-106"
259
+ },
260
+ "5ac9-109": {
261
+ "renderedLength": 3719,
262
+ "gzipLength": 1086,
263
+ "brotliLength": 0,
264
+ "metaUid": "5ac9-108"
265
+ },
266
+ "5ac9-111": {
267
+ "renderedLength": 640,
268
+ "gzipLength": 309,
269
+ "brotliLength": 0,
270
+ "metaUid": "5ac9-110"
271
+ },
272
+ "5ac9-113": {
273
+ "renderedLength": 688,
274
+ "gzipLength": 334,
275
+ "brotliLength": 0,
276
+ "metaUid": "5ac9-112"
277
+ },
278
+ "5ac9-115": {
279
+ "renderedLength": 203,
280
+ "gzipLength": 140,
35
281
  "brotliLength": 0,
36
- "mainUid": "ce39-66"
282
+ "metaUid": "5ac9-114"
37
283
  },
38
- "ce39-69": {
39
- "renderedLength": 75397,
40
- "gzipLength": 15789,
284
+ "5ac9-117": {
285
+ "renderedLength": 479,
286
+ "gzipLength": 256,
41
287
  "brotliLength": 0,
42
- "mainUid": "ce39-68"
288
+ "metaUid": "5ac9-116"
43
289
  },
44
- "ce39-71": {
45
- "renderedLength": 13128,
46
- "gzipLength": 3268,
290
+ "5ac9-119": {
291
+ "renderedLength": 429,
292
+ "gzipLength": 238,
47
293
  "brotliLength": 0,
48
- "mainUid": "ce39-70"
294
+ "metaUid": "5ac9-118"
295
+ },
296
+ "5ac9-121": {
297
+ "renderedLength": 2904,
298
+ "gzipLength": 984,
299
+ "brotliLength": 0,
300
+ "metaUid": "5ac9-120"
301
+ },
302
+ "5ac9-123": {
303
+ "renderedLength": 1281,
304
+ "gzipLength": 547,
305
+ "brotliLength": 0,
306
+ "metaUid": "5ac9-122"
307
+ },
308
+ "5ac9-125": {
309
+ "renderedLength": 172,
310
+ "gzipLength": 132,
311
+ "brotliLength": 0,
312
+ "metaUid": "5ac9-124"
313
+ },
314
+ "5ac9-127": {
315
+ "renderedLength": 1706,
316
+ "gzipLength": 575,
317
+ "brotliLength": 0,
318
+ "metaUid": "5ac9-126"
319
+ },
320
+ "5ac9-129": {
321
+ "renderedLength": 38697,
322
+ "gzipLength": 9256,
323
+ "brotliLength": 0,
324
+ "metaUid": "5ac9-128"
325
+ },
326
+ "5ac9-131": {
327
+ "renderedLength": 5597,
328
+ "gzipLength": 1450,
329
+ "brotliLength": 0,
330
+ "metaUid": "5ac9-130"
331
+ },
332
+ "5ac9-133": {
333
+ "renderedLength": 351,
334
+ "gzipLength": 198,
335
+ "brotliLength": 0,
336
+ "metaUid": "5ac9-132"
337
+ },
338
+ "5ac9-135": {
339
+ "renderedLength": 733,
340
+ "gzipLength": 303,
341
+ "brotliLength": 0,
342
+ "metaUid": "5ac9-134"
343
+ },
344
+ "5ac9-137": {
345
+ "renderedLength": 0,
346
+ "gzipLength": 0,
347
+ "brotliLength": 0,
348
+ "metaUid": "5ac9-136"
49
349
  }
50
350
  },
51
351
  "nodeMetas": {
52
- "ce39-66": {
53
- "id": "\u0000rollupPluginBabelHelpers.js",
352
+ "5ac9-76": {
353
+ "id": "/packages/history/build/esm/index.js",
54
354
  "moduleParts": {
55
- "index.production.js": "ce39-67"
355
+ "index.production.js": "5ac9-77"
56
356
  },
57
357
  "imported": [],
58
358
  "importedBy": [
59
359
  {
60
- "uid": "ce39-70"
360
+ "uid": "5ac9-136"
361
+ },
362
+ {
363
+ "uid": "5ac9-128"
61
364
  }
62
365
  ]
63
366
  },
64
- "ce39-68": {
65
- "id": "/packages/router-core/build/esm/index.js",
367
+ "5ac9-78": {
368
+ "id": "/node_modules/.pnpm/tiny-invariant@1.3.1/node_modules/tiny-invariant/dist/esm/tiny-invariant.js",
66
369
  "moduleParts": {
67
- "index.production.js": "ce39-69"
370
+ "index.production.js": "5ac9-79"
68
371
  },
69
372
  "imported": [],
70
373
  "importedBy": [
71
374
  {
72
- "uid": "ce39-70"
375
+ "uid": "5ac9-136"
376
+ },
377
+ {
378
+ "uid": "5ac9-106"
379
+ },
380
+ {
381
+ "uid": "5ac9-104"
382
+ },
383
+ {
384
+ "uid": "5ac9-128"
73
385
  }
74
386
  ]
75
387
  },
76
- "ce39-70": {
77
- "id": "/packages/react-router/src/index.tsx",
388
+ "5ac9-80": {
389
+ "id": "/node_modules/.pnpm/tiny-warning@1.0.3/node_modules/tiny-warning/dist/tiny-warning.esm.js",
390
+ "moduleParts": {
391
+ "index.production.js": "5ac9-81"
392
+ },
393
+ "imported": [],
394
+ "importedBy": [
395
+ {
396
+ "uid": "5ac9-136"
397
+ },
398
+ {
399
+ "uid": "5ac9-106"
400
+ },
401
+ {
402
+ "uid": "5ac9-108"
403
+ }
404
+ ]
405
+ },
406
+ "5ac9-82": {
407
+ "id": "\u0000/node_modules/.pnpm/use-sync-external-store@1.2.0/node_modules/use-sync-external-store/shim/with-selector.js?commonjs-module",
408
+ "moduleParts": {
409
+ "index.production.js": "5ac9-83"
410
+ },
411
+ "imported": [],
412
+ "importedBy": [
413
+ {
414
+ "uid": "5ac9-88"
415
+ }
416
+ ]
417
+ },
418
+ "5ac9-84": {
419
+ "id": "\u0000/node_modules/.pnpm/use-sync-external-store@1.2.0/node_modules/use-sync-external-store/cjs/use-sync-external-store-shim/with-selector.production.min.js?commonjs-exports",
78
420
  "moduleParts": {
79
- "index.production.js": "ce39-71"
421
+ "index.production.js": "5ac9-85"
422
+ },
423
+ "imported": [],
424
+ "importedBy": [
425
+ {
426
+ "uid": "5ac9-86"
427
+ }
428
+ ]
429
+ },
430
+ "5ac9-86": {
431
+ "id": "/node_modules/.pnpm/use-sync-external-store@1.2.0/node_modules/use-sync-external-store/cjs/use-sync-external-store-shim/with-selector.production.min.js",
432
+ "moduleParts": {
433
+ "index.production.js": "5ac9-87"
80
434
  },
81
435
  "imported": [
82
436
  {
83
- "uid": "ce39-66"
437
+ "uid": "5ac9-142"
84
438
  },
85
439
  {
86
- "uid": "ce39-72"
440
+ "uid": "5ac9-84"
87
441
  },
88
442
  {
89
- "uid": "ce39-73"
443
+ "uid": "5ac9-145"
90
444
  },
91
445
  {
92
- "uid": "ce39-68"
446
+ "uid": "5ac9-146"
93
447
  }
94
448
  ],
95
- "importedBy": [],
96
- "isEntry": true
449
+ "importedBy": [
450
+ {
451
+ "uid": "5ac9-88"
452
+ }
453
+ ]
97
454
  },
98
- "ce39-72": {
99
- "id": "react",
100
- "moduleParts": {},
455
+ "5ac9-88": {
456
+ "id": "/node_modules/.pnpm/use-sync-external-store@1.2.0/node_modules/use-sync-external-store/shim/with-selector.js",
457
+ "moduleParts": {
458
+ "index.production.js": "5ac9-89"
459
+ },
460
+ "imported": [
461
+ {
462
+ "uid": "5ac9-142"
463
+ },
464
+ {
465
+ "uid": "5ac9-82"
466
+ },
467
+ {
468
+ "uid": "5ac9-143"
469
+ },
470
+ {
471
+ "uid": "5ac9-86"
472
+ }
473
+ ],
474
+ "importedBy": [
475
+ {
476
+ "uid": "5ac9-92"
477
+ }
478
+ ]
479
+ },
480
+ "5ac9-90": {
481
+ "id": "/node_modules/.pnpm/@tanstack+store@0.1.3/node_modules/@tanstack/store/build/modern/index.js",
482
+ "moduleParts": {
483
+ "index.production.js": "5ac9-91"
484
+ },
101
485
  "imported": [],
102
486
  "importedBy": [
103
487
  {
104
- "uid": "ce39-70"
488
+ "uid": "5ac9-128"
489
+ },
490
+ {
491
+ "uid": "5ac9-92"
492
+ }
493
+ ]
494
+ },
495
+ "5ac9-92": {
496
+ "id": "/node_modules/.pnpm/@tanstack+react-store@0.2.1/node_modules/@tanstack/react-store/build/modern/index.js",
497
+ "moduleParts": {
498
+ "index.production.js": "5ac9-93"
499
+ },
500
+ "imported": [
501
+ {
502
+ "uid": "5ac9-88"
503
+ },
504
+ {
505
+ "uid": "5ac9-90"
105
506
  }
106
507
  ],
107
- "isExternal": true
508
+ "importedBy": [
509
+ {
510
+ "uid": "5ac9-108"
511
+ }
512
+ ]
513
+ },
514
+ "5ac9-94": {
515
+ "id": "/packages/react-router/src/CatchBoundary.tsx",
516
+ "moduleParts": {
517
+ "index.production.js": "5ac9-95"
518
+ },
519
+ "imported": [
520
+ {
521
+ "uid": "5ac9-141"
522
+ }
523
+ ],
524
+ "importedBy": [
525
+ {
526
+ "uid": "5ac9-136"
527
+ },
528
+ {
529
+ "uid": "5ac9-106"
530
+ }
531
+ ]
532
+ },
533
+ "5ac9-96": {
534
+ "id": "/packages/react-router/src/utils.ts",
535
+ "moduleParts": {
536
+ "index.production.js": "5ac9-97"
537
+ },
538
+ "imported": [
539
+ {
540
+ "uid": "5ac9-141"
541
+ },
542
+ {
543
+ "uid": "5ac9-106"
544
+ }
545
+ ],
546
+ "importedBy": [
547
+ {
548
+ "uid": "5ac9-136"
549
+ },
550
+ {
551
+ "uid": "5ac9-120"
552
+ },
553
+ {
554
+ "uid": "5ac9-106"
555
+ },
556
+ {
557
+ "uid": "5ac9-98"
558
+ },
559
+ {
560
+ "uid": "5ac9-128"
561
+ },
562
+ {
563
+ "uid": "5ac9-108"
564
+ },
565
+ {
566
+ "uid": "5ac9-130"
567
+ },
568
+ {
569
+ "uid": "5ac9-134"
570
+ },
571
+ {
572
+ "uid": "5ac9-100"
573
+ }
574
+ ]
575
+ },
576
+ "5ac9-98": {
577
+ "id": "/packages/react-router/src/path.ts",
578
+ "moduleParts": {
579
+ "index.production.js": "5ac9-99"
580
+ },
581
+ "imported": [
582
+ {
583
+ "uid": "5ac9-96"
584
+ }
585
+ ],
586
+ "importedBy": [
587
+ {
588
+ "uid": "5ac9-136"
589
+ },
590
+ {
591
+ "uid": "5ac9-104"
592
+ },
593
+ {
594
+ "uid": "5ac9-128"
595
+ }
596
+ ]
597
+ },
598
+ "5ac9-100": {
599
+ "id": "/packages/react-router/src/useParams.tsx",
600
+ "moduleParts": {
601
+ "index.production.js": "5ac9-101"
602
+ },
603
+ "imported": [
604
+ {
605
+ "uid": "5ac9-96"
606
+ },
607
+ {
608
+ "uid": "5ac9-108"
609
+ }
610
+ ],
611
+ "importedBy": [
612
+ {
613
+ "uid": "5ac9-136"
614
+ },
615
+ {
616
+ "uid": "5ac9-104"
617
+ }
618
+ ]
619
+ },
620
+ "5ac9-102": {
621
+ "id": "/packages/react-router/src/useSearch.tsx",
622
+ "moduleParts": {
623
+ "index.production.js": "5ac9-103"
624
+ },
625
+ "imported": [
626
+ {
627
+ "uid": "5ac9-106"
628
+ }
629
+ ],
630
+ "importedBy": [
631
+ {
632
+ "uid": "5ac9-136"
633
+ },
634
+ {
635
+ "uid": "5ac9-104"
636
+ }
637
+ ]
638
+ },
639
+ "5ac9-104": {
640
+ "id": "/packages/react-router/src/route.ts",
641
+ "moduleParts": {
642
+ "index.production.js": "5ac9-105"
643
+ },
644
+ "imported": [
645
+ {
646
+ "uid": "5ac9-78"
647
+ },
648
+ {
649
+ "uid": "5ac9-106"
650
+ },
651
+ {
652
+ "uid": "5ac9-98"
653
+ },
654
+ {
655
+ "uid": "5ac9-100"
656
+ },
657
+ {
658
+ "uid": "5ac9-102"
659
+ }
660
+ ],
661
+ "importedBy": [
662
+ {
663
+ "uid": "5ac9-136"
664
+ },
665
+ {
666
+ "uid": "5ac9-114"
667
+ },
668
+ {
669
+ "uid": "5ac9-106"
670
+ }
671
+ ]
672
+ },
673
+ "5ac9-106": {
674
+ "id": "/packages/react-router/src/Matches.tsx",
675
+ "moduleParts": {
676
+ "index.production.js": "5ac9-107"
677
+ },
678
+ "imported": [
679
+ {
680
+ "uid": "5ac9-141"
681
+ },
682
+ {
683
+ "uid": "5ac9-78"
684
+ },
685
+ {
686
+ "uid": "5ac9-80"
687
+ },
688
+ {
689
+ "uid": "5ac9-94"
690
+ },
691
+ {
692
+ "uid": "5ac9-108"
693
+ },
694
+ {
695
+ "uid": "5ac9-104"
696
+ },
697
+ {
698
+ "uid": "5ac9-96"
699
+ }
700
+ ],
701
+ "importedBy": [
702
+ {
703
+ "uid": "5ac9-136"
704
+ },
705
+ {
706
+ "uid": "5ac9-120"
707
+ },
708
+ {
709
+ "uid": "5ac9-104"
710
+ },
711
+ {
712
+ "uid": "5ac9-108"
713
+ },
714
+ {
715
+ "uid": "5ac9-134"
716
+ },
717
+ {
718
+ "uid": "5ac9-102"
719
+ },
720
+ {
721
+ "uid": "5ac9-96"
722
+ }
723
+ ]
724
+ },
725
+ "5ac9-108": {
726
+ "id": "/packages/react-router/src/RouterProvider.tsx",
727
+ "moduleParts": {
728
+ "index.production.js": "5ac9-109"
729
+ },
730
+ "imported": [
731
+ {
732
+ "uid": "5ac9-141"
733
+ },
734
+ {
735
+ "uid": "5ac9-80"
736
+ },
737
+ {
738
+ "uid": "5ac9-92"
739
+ },
740
+ {
741
+ "uid": "5ac9-106"
742
+ },
743
+ {
744
+ "uid": "5ac9-96"
745
+ }
746
+ ],
747
+ "importedBy": [
748
+ {
749
+ "uid": "5ac9-136"
750
+ },
751
+ {
752
+ "uid": "5ac9-112"
753
+ },
754
+ {
755
+ "uid": "5ac9-120"
756
+ },
757
+ {
758
+ "uid": "5ac9-106"
759
+ },
760
+ {
761
+ "uid": "5ac9-128"
762
+ },
763
+ {
764
+ "uid": "5ac9-130"
765
+ },
766
+ {
767
+ "uid": "5ac9-132"
768
+ },
769
+ {
770
+ "uid": "5ac9-134"
771
+ },
772
+ {
773
+ "uid": "5ac9-100"
774
+ }
775
+ ]
776
+ },
777
+ "5ac9-110": {
778
+ "id": "/packages/react-router/src/defer.ts",
779
+ "moduleParts": {
780
+ "index.production.js": "5ac9-111"
781
+ },
782
+ "imported": [],
783
+ "importedBy": [
784
+ {
785
+ "uid": "5ac9-136"
786
+ },
787
+ {
788
+ "uid": "5ac9-112"
789
+ }
790
+ ]
791
+ },
792
+ "5ac9-112": {
793
+ "id": "/packages/react-router/src/awaited.tsx",
794
+ "moduleParts": {
795
+ "index.production.js": "5ac9-113"
796
+ },
797
+ "imported": [
798
+ {
799
+ "uid": "5ac9-108"
800
+ },
801
+ {
802
+ "uid": "5ac9-110"
803
+ }
804
+ ],
805
+ "importedBy": [
806
+ {
807
+ "uid": "5ac9-136"
808
+ }
809
+ ]
810
+ },
811
+ "5ac9-114": {
812
+ "id": "/packages/react-router/src/fileRoute.ts",
813
+ "moduleParts": {
814
+ "index.production.js": "5ac9-115"
815
+ },
816
+ "imported": [
817
+ {
818
+ "uid": "5ac9-104"
819
+ }
820
+ ],
821
+ "importedBy": [
822
+ {
823
+ "uid": "5ac9-136"
824
+ }
825
+ ]
826
+ },
827
+ "5ac9-116": {
828
+ "id": "/packages/react-router/src/lazyRouteComponent.tsx",
829
+ "moduleParts": {
830
+ "index.production.js": "5ac9-117"
831
+ },
832
+ "imported": [
833
+ {
834
+ "uid": "5ac9-141"
835
+ }
836
+ ],
837
+ "importedBy": [
838
+ {
839
+ "uid": "5ac9-136"
840
+ }
841
+ ]
842
+ },
843
+ "5ac9-118": {
844
+ "id": "\u0000rollupPluginBabelHelpers.js",
845
+ "moduleParts": {
846
+ "index.production.js": "5ac9-119"
847
+ },
848
+ "imported": [],
849
+ "importedBy": [
850
+ {
851
+ "uid": "5ac9-120"
852
+ }
853
+ ]
854
+ },
855
+ "5ac9-120": {
856
+ "id": "/packages/react-router/src/link.tsx",
857
+ "moduleParts": {
858
+ "index.production.js": "5ac9-121"
859
+ },
860
+ "imported": [
861
+ {
862
+ "uid": "5ac9-118"
863
+ },
864
+ {
865
+ "uid": "5ac9-141"
866
+ },
867
+ {
868
+ "uid": "5ac9-106"
869
+ },
870
+ {
871
+ "uid": "5ac9-108"
872
+ },
873
+ {
874
+ "uid": "5ac9-96"
875
+ }
876
+ ],
877
+ "importedBy": [
878
+ {
879
+ "uid": "5ac9-136"
880
+ }
881
+ ]
882
+ },
883
+ "5ac9-122": {
884
+ "id": "/packages/react-router/src/qss.ts",
885
+ "moduleParts": {
886
+ "index.production.js": "5ac9-123"
887
+ },
888
+ "imported": [],
889
+ "importedBy": [
890
+ {
891
+ "uid": "5ac9-136"
892
+ },
893
+ {
894
+ "uid": "5ac9-126"
895
+ }
896
+ ]
897
+ },
898
+ "5ac9-124": {
899
+ "id": "/packages/react-router/src/redirects.ts",
900
+ "moduleParts": {
901
+ "index.production.js": "5ac9-125"
902
+ },
903
+ "imported": [],
904
+ "importedBy": [
905
+ {
906
+ "uid": "5ac9-136"
907
+ },
908
+ {
909
+ "uid": "5ac9-128"
910
+ }
911
+ ]
912
+ },
913
+ "5ac9-126": {
914
+ "id": "/packages/react-router/src/searchParams.ts",
915
+ "moduleParts": {
916
+ "index.production.js": "5ac9-127"
917
+ },
918
+ "imported": [
919
+ {
920
+ "uid": "5ac9-122"
921
+ }
922
+ ],
923
+ "importedBy": [
924
+ {
925
+ "uid": "5ac9-136"
926
+ },
927
+ {
928
+ "uid": "5ac9-128"
929
+ }
930
+ ]
931
+ },
932
+ "5ac9-128": {
933
+ "id": "/packages/react-router/src/router.ts",
934
+ "moduleParts": {
935
+ "index.production.js": "5ac9-129"
936
+ },
937
+ "imported": [
938
+ {
939
+ "uid": "5ac9-76"
940
+ },
941
+ {
942
+ "uid": "5ac9-90"
943
+ },
944
+ {
945
+ "uid": "5ac9-126"
946
+ },
947
+ {
948
+ "uid": "5ac9-96"
949
+ },
950
+ {
951
+ "uid": "5ac9-108"
952
+ },
953
+ {
954
+ "uid": "5ac9-98"
955
+ },
956
+ {
957
+ "uid": "5ac9-78"
958
+ },
959
+ {
960
+ "uid": "5ac9-124"
961
+ }
962
+ ],
963
+ "importedBy": [
964
+ {
965
+ "uid": "5ac9-136"
966
+ }
967
+ ]
968
+ },
969
+ "5ac9-130": {
970
+ "id": "/packages/react-router/src/scroll-restoration.tsx",
971
+ "moduleParts": {
972
+ "index.production.js": "5ac9-131"
973
+ },
974
+ "imported": [
975
+ {
976
+ "uid": "5ac9-141"
977
+ },
978
+ {
979
+ "uid": "5ac9-108"
980
+ },
981
+ {
982
+ "uid": "5ac9-96"
983
+ }
984
+ ],
985
+ "importedBy": [
986
+ {
987
+ "uid": "5ac9-136"
988
+ }
989
+ ]
990
+ },
991
+ "5ac9-132": {
992
+ "id": "/packages/react-router/src/useBlocker.tsx",
993
+ "moduleParts": {
994
+ "index.production.js": "5ac9-133"
995
+ },
996
+ "imported": [
997
+ {
998
+ "uid": "5ac9-141"
999
+ },
1000
+ {
1001
+ "uid": "5ac9-108"
1002
+ }
1003
+ ],
1004
+ "importedBy": [
1005
+ {
1006
+ "uid": "5ac9-136"
1007
+ }
1008
+ ]
1009
+ },
1010
+ "5ac9-134": {
1011
+ "id": "/packages/react-router/src/useNavigate.tsx",
1012
+ "moduleParts": {
1013
+ "index.production.js": "5ac9-135"
1014
+ },
1015
+ "imported": [
1016
+ {
1017
+ "uid": "5ac9-141"
1018
+ },
1019
+ {
1020
+ "uid": "5ac9-106"
1021
+ },
1022
+ {
1023
+ "uid": "5ac9-108"
1024
+ },
1025
+ {
1026
+ "uid": "5ac9-96"
1027
+ }
1028
+ ],
1029
+ "importedBy": [
1030
+ {
1031
+ "uid": "5ac9-136"
1032
+ }
1033
+ ]
1034
+ },
1035
+ "5ac9-136": {
1036
+ "id": "/packages/react-router/src/index.tsx",
1037
+ "moduleParts": {
1038
+ "index.production.js": "5ac9-137"
1039
+ },
1040
+ "imported": [
1041
+ {
1042
+ "uid": "5ac9-76"
1043
+ },
1044
+ {
1045
+ "uid": "5ac9-78"
1046
+ },
1047
+ {
1048
+ "uid": "5ac9-80"
1049
+ },
1050
+ {
1051
+ "uid": "5ac9-112"
1052
+ },
1053
+ {
1054
+ "uid": "5ac9-110"
1055
+ },
1056
+ {
1057
+ "uid": "5ac9-94"
1058
+ },
1059
+ {
1060
+ "uid": "5ac9-114"
1061
+ },
1062
+ {
1063
+ "uid": "5ac9-138"
1064
+ },
1065
+ {
1066
+ "uid": "5ac9-136"
1067
+ },
1068
+ {
1069
+ "uid": "5ac9-116"
1070
+ },
1071
+ {
1072
+ "uid": "5ac9-120"
1073
+ },
1074
+ {
1075
+ "uid": "5ac9-139"
1076
+ },
1077
+ {
1078
+ "uid": "5ac9-106"
1079
+ },
1080
+ {
1081
+ "uid": "5ac9-98"
1082
+ },
1083
+ {
1084
+ "uid": "5ac9-122"
1085
+ },
1086
+ {
1087
+ "uid": "5ac9-124"
1088
+ },
1089
+ {
1090
+ "uid": "5ac9-104"
1091
+ },
1092
+ {
1093
+ "uid": "5ac9-140"
1094
+ },
1095
+ {
1096
+ "uid": "5ac9-128"
1097
+ },
1098
+ {
1099
+ "uid": "5ac9-108"
1100
+ },
1101
+ {
1102
+ "uid": "5ac9-130"
1103
+ },
1104
+ {
1105
+ "uid": "5ac9-126"
1106
+ },
1107
+ {
1108
+ "uid": "5ac9-132"
1109
+ },
1110
+ {
1111
+ "uid": "5ac9-134"
1112
+ },
1113
+ {
1114
+ "uid": "5ac9-100"
1115
+ },
1116
+ {
1117
+ "uid": "5ac9-102"
1118
+ },
1119
+ {
1120
+ "uid": "5ac9-96"
1121
+ }
1122
+ ],
1123
+ "importedBy": [
1124
+ {
1125
+ "uid": "5ac9-136"
1126
+ }
1127
+ ],
1128
+ "isEntry": true
1129
+ },
1130
+ "5ac9-138": {
1131
+ "id": "/packages/react-router/src/history.ts",
1132
+ "moduleParts": {},
1133
+ "imported": [],
1134
+ "importedBy": [
1135
+ {
1136
+ "uid": "5ac9-136"
1137
+ }
1138
+ ]
1139
+ },
1140
+ "5ac9-139": {
1141
+ "id": "/packages/react-router/src/location.ts",
1142
+ "moduleParts": {},
1143
+ "imported": [],
1144
+ "importedBy": [
1145
+ {
1146
+ "uid": "5ac9-136"
1147
+ }
1148
+ ]
1149
+ },
1150
+ "5ac9-140": {
1151
+ "id": "/packages/react-router/src/routeInfo.ts",
1152
+ "moduleParts": {},
1153
+ "imported": [],
1154
+ "importedBy": [
1155
+ {
1156
+ "uid": "5ac9-136"
1157
+ }
1158
+ ]
1159
+ },
1160
+ "5ac9-141": {
1161
+ "id": "react",
1162
+ "moduleParts": {},
1163
+ "imported": [],
1164
+ "importedBy": [
1165
+ {
1166
+ "uid": "5ac9-94"
1167
+ },
1168
+ {
1169
+ "uid": "5ac9-116"
1170
+ },
1171
+ {
1172
+ "uid": "5ac9-120"
1173
+ },
1174
+ {
1175
+ "uid": "5ac9-106"
1176
+ },
1177
+ {
1178
+ "uid": "5ac9-108"
1179
+ },
1180
+ {
1181
+ "uid": "5ac9-130"
1182
+ },
1183
+ {
1184
+ "uid": "5ac9-132"
1185
+ },
1186
+ {
1187
+ "uid": "5ac9-134"
1188
+ },
1189
+ {
1190
+ "uid": "5ac9-96"
1191
+ },
1192
+ {
1193
+ "uid": "5ac9-145"
1194
+ }
1195
+ ],
1196
+ "isExternal": true
1197
+ },
1198
+ "5ac9-142": {
1199
+ "id": "\u0000commonjsHelpers.js",
1200
+ "moduleParts": {},
1201
+ "imported": [],
1202
+ "importedBy": [
1203
+ {
1204
+ "uid": "5ac9-88"
1205
+ },
1206
+ {
1207
+ "uid": "5ac9-143"
1208
+ },
1209
+ {
1210
+ "uid": "5ac9-86"
1211
+ }
1212
+ ]
1213
+ },
1214
+ "5ac9-143": {
1215
+ "id": "/node_modules/.pnpm/use-sync-external-store@1.2.0/node_modules/use-sync-external-store/cjs/use-sync-external-store-shim/with-selector.development.js",
1216
+ "moduleParts": {},
1217
+ "imported": [
1218
+ {
1219
+ "uid": "5ac9-142"
1220
+ },
1221
+ {
1222
+ "uid": "5ac9-144"
1223
+ },
1224
+ {
1225
+ "uid": "5ac9-145"
1226
+ },
1227
+ {
1228
+ "uid": "5ac9-146"
1229
+ }
1230
+ ],
1231
+ "importedBy": [
1232
+ {
1233
+ "uid": "5ac9-88"
1234
+ }
1235
+ ]
1236
+ },
1237
+ "5ac9-144": {
1238
+ "id": "\u0000/node_modules/.pnpm/use-sync-external-store@1.2.0/node_modules/use-sync-external-store/cjs/use-sync-external-store-shim/with-selector.development.js?commonjs-exports",
1239
+ "moduleParts": {},
1240
+ "imported": [],
1241
+ "importedBy": [
1242
+ {
1243
+ "uid": "5ac9-143"
1244
+ }
1245
+ ]
1246
+ },
1247
+ "5ac9-145": {
1248
+ "id": "\u0000react?commonjs-external",
1249
+ "moduleParts": {},
1250
+ "imported": [
1251
+ {
1252
+ "uid": "5ac9-141"
1253
+ }
1254
+ ],
1255
+ "importedBy": [
1256
+ {
1257
+ "uid": "5ac9-143"
1258
+ },
1259
+ {
1260
+ "uid": "5ac9-86"
1261
+ }
1262
+ ]
1263
+ },
1264
+ "5ac9-146": {
1265
+ "id": "\u0000use-sync-external-store/shim?commonjs-external",
1266
+ "moduleParts": {},
1267
+ "imported": [
1268
+ {
1269
+ "uid": "5ac9-147"
1270
+ }
1271
+ ],
1272
+ "importedBy": [
1273
+ {
1274
+ "uid": "5ac9-143"
1275
+ },
1276
+ {
1277
+ "uid": "5ac9-86"
1278
+ }
1279
+ ]
108
1280
  },
109
- "ce39-73": {
1281
+ "5ac9-147": {
110
1282
  "id": "use-sync-external-store/shim",
111
1283
  "moduleParts": {},
112
1284
  "imported": [],
113
1285
  "importedBy": [
114
1286
  {
115
- "uid": "ce39-70"
1287
+ "uid": "5ac9-146"
116
1288
  }
117
1289
  ],
118
1290
  "isExternal": true
119
1291
  }
120
1292
  },
121
1293
  "env": {
122
- "rollup": "2.77.2"
1294
+ "rollup": "4.6.1"
123
1295
  },
124
1296
  "options": {
125
1297
  "gzip": true,