@tanstack/react-router 0.0.1-beta.23 → 0.0.1-beta.231

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 +123 -0
  3. package/build/cjs/CatchBoundary.js.map +1 -0
  4. package/build/cjs/Matches.js +235 -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 +123 -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 +148 -0
  21. package/build/cjs/link.js.map +1 -0
  22. package/build/cjs/path.js +209 -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 +134 -0
  29. package/build/cjs/route.js.map +1 -0
  30. package/build/cjs/router.js +1101 -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 +61 -0
  37. package/build/cjs/useBlocker.js.map +1 -0
  38. package/build/cjs/useNavigate.js +75 -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 +2174 -2557
  47. package/build/esm/index.js.map +1 -1
  48. package/build/stats-html.html +3498 -2694
  49. package/build/stats-react.json +927 -42
  50. package/build/types/CatchBoundary.d.ts +33 -0
  51. package/build/types/Matches.d.ts +57 -0
  52. package/build/types/RouterProvider.d.ts +41 -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 +35 -0
  56. package/build/types/history.d.ts +7 -0
  57. package/build/types/index.d.ts +27 -108
  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 +16 -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 +278 -0
  66. package/build/types/routeInfo.d.ts +22 -0
  67. package/build/types/router.d.ts +167 -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 +2470 -2513
  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 +9 -10
  80. package/src/CatchBoundary.tsx +98 -0
  81. package/src/Matches.tsx +389 -0
  82. package/src/RouterProvider.tsx +226 -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 -709
  88. package/src/injectHtml.ts +28 -0
  89. package/src/lazyRouteComponent.tsx +33 -0
  90. package/src/link.tsx +508 -0
  91. package/src/location.ts +15 -0
  92. package/src/path.ts +256 -0
  93. package/src/qss.ts +53 -0
  94. package/src/redirects.ts +31 -0
  95. package/src/route.ts +861 -0
  96. package/src/routeInfo.ts +68 -0
  97. package/src/router.ts +1664 -0
  98. package/src/scroll-restoration.tsx +230 -0
  99. package/src/searchParams.ts +79 -0
  100. package/src/useBlocker.tsx +34 -0
  101. package/src/useNavigate.tsx +109 -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 -2527
  108. package/build/cjs/router-core/build/esm/index.js.map +0 -1
@@ -7,21 +7,119 @@
7
7
  "name": "index.production.js",
8
8
  "children": [
9
9
  {
10
- "uid": "db96-67",
11
- "name": "\u0000rollupPluginBabelHelpers.js"
10
+ "name": "packages",
11
+ "children": [
12
+ {
13
+ "name": "history/build/esm/index.js",
14
+ "uid": "0f74-59"
15
+ },
16
+ {
17
+ "name": "react-router/src",
18
+ "children": [
19
+ {
20
+ "uid": "0f74-65",
21
+ "name": "CatchBoundary.tsx"
22
+ },
23
+ {
24
+ "uid": "0f74-67",
25
+ "name": "utils.ts"
26
+ },
27
+ {
28
+ "uid": "0f74-69",
29
+ "name": "path.ts"
30
+ },
31
+ {
32
+ "uid": "0f74-71",
33
+ "name": "useParams.tsx"
34
+ },
35
+ {
36
+ "uid": "0f74-73",
37
+ "name": "useSearch.tsx"
38
+ },
39
+ {
40
+ "uid": "0f74-75",
41
+ "name": "route.ts"
42
+ },
43
+ {
44
+ "uid": "0f74-77",
45
+ "name": "Matches.tsx"
46
+ },
47
+ {
48
+ "uid": "0f74-79",
49
+ "name": "RouterProvider.tsx"
50
+ },
51
+ {
52
+ "uid": "0f74-81",
53
+ "name": "defer.ts"
54
+ },
55
+ {
56
+ "uid": "0f74-83",
57
+ "name": "awaited.tsx"
58
+ },
59
+ {
60
+ "uid": "0f74-85",
61
+ "name": "fileRoute.ts"
62
+ },
63
+ {
64
+ "uid": "0f74-87",
65
+ "name": "lazyRouteComponent.tsx"
66
+ },
67
+ {
68
+ "uid": "0f74-91",
69
+ "name": "link.tsx"
70
+ },
71
+ {
72
+ "uid": "0f74-93",
73
+ "name": "qss.ts"
74
+ },
75
+ {
76
+ "uid": "0f74-95",
77
+ "name": "redirects.ts"
78
+ },
79
+ {
80
+ "uid": "0f74-97",
81
+ "name": "searchParams.ts"
82
+ },
83
+ {
84
+ "uid": "0f74-99",
85
+ "name": "router.ts"
86
+ },
87
+ {
88
+ "uid": "0f74-101",
89
+ "name": "scroll-restoration.tsx"
90
+ },
91
+ {
92
+ "uid": "0f74-103",
93
+ "name": "useBlocker.tsx"
94
+ },
95
+ {
96
+ "uid": "0f74-105",
97
+ "name": "useNavigate.tsx"
98
+ },
99
+ {
100
+ "uid": "0f74-107",
101
+ "name": "index.tsx"
102
+ }
103
+ ]
104
+ }
105
+ ]
12
106
  },
13
107
  {
14
- "name": "packages",
108
+ "name": "node_modules/.pnpm",
15
109
  "children": [
16
110
  {
17
- "name": "router-core/build/esm/index.js",
18
- "uid": "db96-69"
111
+ "name": "tiny-invariant@1.3.1/node_modules/tiny-invariant/dist/esm/tiny-invariant.js",
112
+ "uid": "0f74-61"
19
113
  },
20
114
  {
21
- "name": "react-router/src/index.tsx",
22
- "uid": "db96-71"
115
+ "name": "tiny-warning@1.0.3/node_modules/tiny-warning/dist/tiny-warning.esm.js",
116
+ "uid": "0f74-63"
23
117
  }
24
118
  ]
119
+ },
120
+ {
121
+ "uid": "0f74-89",
122
+ "name": "\u0000rollupPluginBabelHelpers.js"
25
123
  }
26
124
  ]
27
125
  }
@@ -29,97 +127,884 @@
29
127
  "isRoot": true
30
128
  },
31
129
  "nodeParts": {
32
- "db96-67": {
33
- "renderedLength": 798,
34
- "gzipLength": 366,
130
+ "0f74-59": {
131
+ "renderedLength": 9142,
132
+ "gzipLength": 2723,
133
+ "brotliLength": 0,
134
+ "metaUid": "0f74-58"
135
+ },
136
+ "0f74-61": {
137
+ "renderedLength": 181,
138
+ "gzipLength": 129,
139
+ "brotliLength": 0,
140
+ "metaUid": "0f74-60"
141
+ },
142
+ "0f74-63": {
143
+ "renderedLength": 44,
144
+ "gzipLength": 62,
145
+ "brotliLength": 0,
146
+ "metaUid": "0f74-62"
147
+ },
148
+ "0f74-65": {
149
+ "renderedLength": 2487,
150
+ "gzipLength": 780,
151
+ "brotliLength": 0,
152
+ "metaUid": "0f74-64"
153
+ },
154
+ "0f74-67": {
155
+ "renderedLength": 5237,
156
+ "gzipLength": 1761,
157
+ "brotliLength": 0,
158
+ "metaUid": "0f74-66"
159
+ },
160
+ "0f74-69": {
161
+ "renderedLength": 5666,
162
+ "gzipLength": 1414,
163
+ "brotliLength": 0,
164
+ "metaUid": "0f74-68"
165
+ },
166
+ "0f74-71": {
167
+ "renderedLength": 213,
168
+ "gzipLength": 147,
169
+ "brotliLength": 0,
170
+ "metaUid": "0f74-70"
171
+ },
172
+ "0f74-73": {
173
+ "renderedLength": 182,
174
+ "gzipLength": 128,
175
+ "brotliLength": 0,
176
+ "metaUid": "0f74-72"
177
+ },
178
+ "0f74-75": {
179
+ "renderedLength": 2792,
180
+ "gzipLength": 934,
181
+ "brotliLength": 0,
182
+ "metaUid": "0f74-74"
183
+ },
184
+ "0f74-77": {
185
+ "renderedLength": 6403,
186
+ "gzipLength": 1377,
187
+ "brotliLength": 0,
188
+ "metaUid": "0f74-76"
189
+ },
190
+ "0f74-79": {
191
+ "renderedLength": 3595,
192
+ "gzipLength": 1111,
35
193
  "brotliLength": 0,
36
- "mainUid": "db96-66"
194
+ "metaUid": "0f74-78"
37
195
  },
38
- "db96-69": {
39
- "renderedLength": 75369,
40
- "gzipLength": 15785,
196
+ "0f74-81": {
197
+ "renderedLength": 640,
198
+ "gzipLength": 309,
41
199
  "brotliLength": 0,
42
- "mainUid": "db96-68"
200
+ "metaUid": "0f74-80"
43
201
  },
44
- "db96-71": {
45
- "renderedLength": 13128,
46
- "gzipLength": 3268,
202
+ "0f74-83": {
203
+ "renderedLength": 688,
204
+ "gzipLength": 334,
47
205
  "brotliLength": 0,
48
- "mainUid": "db96-70"
206
+ "metaUid": "0f74-82"
207
+ },
208
+ "0f74-85": {
209
+ "renderedLength": 203,
210
+ "gzipLength": 140,
211
+ "brotliLength": 0,
212
+ "metaUid": "0f74-84"
213
+ },
214
+ "0f74-87": {
215
+ "renderedLength": 479,
216
+ "gzipLength": 256,
217
+ "brotliLength": 0,
218
+ "metaUid": "0f74-86"
219
+ },
220
+ "0f74-89": {
221
+ "renderedLength": 429,
222
+ "gzipLength": 238,
223
+ "brotliLength": 0,
224
+ "metaUid": "0f74-88"
225
+ },
226
+ "0f74-91": {
227
+ "renderedLength": 2866,
228
+ "gzipLength": 974,
229
+ "brotliLength": 0,
230
+ "metaUid": "0f74-90"
231
+ },
232
+ "0f74-93": {
233
+ "renderedLength": 1281,
234
+ "gzipLength": 547,
235
+ "brotliLength": 0,
236
+ "metaUid": "0f74-92"
237
+ },
238
+ "0f74-95": {
239
+ "renderedLength": 172,
240
+ "gzipLength": 132,
241
+ "brotliLength": 0,
242
+ "metaUid": "0f74-94"
243
+ },
244
+ "0f74-97": {
245
+ "renderedLength": 1706,
246
+ "gzipLength": 575,
247
+ "brotliLength": 0,
248
+ "metaUid": "0f74-96"
249
+ },
250
+ "0f74-99": {
251
+ "renderedLength": 37203,
252
+ "gzipLength": 8875,
253
+ "brotliLength": 0,
254
+ "metaUid": "0f74-98"
255
+ },
256
+ "0f74-101": {
257
+ "renderedLength": 5597,
258
+ "gzipLength": 1450,
259
+ "brotliLength": 0,
260
+ "metaUid": "0f74-100"
261
+ },
262
+ "0f74-103": {
263
+ "renderedLength": 490,
264
+ "gzipLength": 250,
265
+ "brotliLength": 0,
266
+ "metaUid": "0f74-102"
267
+ },
268
+ "0f74-105": {
269
+ "renderedLength": 695,
270
+ "gzipLength": 280,
271
+ "brotliLength": 0,
272
+ "metaUid": "0f74-104"
273
+ },
274
+ "0f74-107": {
275
+ "renderedLength": 0,
276
+ "gzipLength": 0,
277
+ "brotliLength": 0,
278
+ "metaUid": "0f74-106"
49
279
  }
50
280
  },
51
281
  "nodeMetas": {
52
- "db96-66": {
282
+ "0f74-58": {
283
+ "id": "/packages/history/build/esm/index.js",
284
+ "moduleParts": {
285
+ "index.production.js": "0f74-59"
286
+ },
287
+ "imported": [],
288
+ "importedBy": [
289
+ {
290
+ "uid": "0f74-106"
291
+ },
292
+ {
293
+ "uid": "0f74-98"
294
+ }
295
+ ]
296
+ },
297
+ "0f74-60": {
298
+ "id": "/node_modules/.pnpm/tiny-invariant@1.3.1/node_modules/tiny-invariant/dist/esm/tiny-invariant.js",
299
+ "moduleParts": {
300
+ "index.production.js": "0f74-61"
301
+ },
302
+ "imported": [],
303
+ "importedBy": [
304
+ {
305
+ "uid": "0f74-106"
306
+ },
307
+ {
308
+ "uid": "0f74-76"
309
+ },
310
+ {
311
+ "uid": "0f74-74"
312
+ },
313
+ {
314
+ "uid": "0f74-98"
315
+ }
316
+ ]
317
+ },
318
+ "0f74-62": {
319
+ "id": "/node_modules/.pnpm/tiny-warning@1.0.3/node_modules/tiny-warning/dist/tiny-warning.esm.js",
320
+ "moduleParts": {
321
+ "index.production.js": "0f74-63"
322
+ },
323
+ "imported": [],
324
+ "importedBy": [
325
+ {
326
+ "uid": "0f74-106"
327
+ },
328
+ {
329
+ "uid": "0f74-76"
330
+ },
331
+ {
332
+ "uid": "0f74-98"
333
+ },
334
+ {
335
+ "uid": "0f74-78"
336
+ }
337
+ ]
338
+ },
339
+ "0f74-64": {
340
+ "id": "/packages/react-router/src/CatchBoundary.tsx",
341
+ "moduleParts": {
342
+ "index.production.js": "0f74-65"
343
+ },
344
+ "imported": [
345
+ {
346
+ "uid": "0f74-111"
347
+ }
348
+ ],
349
+ "importedBy": [
350
+ {
351
+ "uid": "0f74-106"
352
+ },
353
+ {
354
+ "uid": "0f74-76"
355
+ }
356
+ ]
357
+ },
358
+ "0f74-66": {
359
+ "id": "/packages/react-router/src/utils.ts",
360
+ "moduleParts": {
361
+ "index.production.js": "0f74-67"
362
+ },
363
+ "imported": [
364
+ {
365
+ "uid": "0f74-111"
366
+ },
367
+ {
368
+ "uid": "0f74-76"
369
+ }
370
+ ],
371
+ "importedBy": [
372
+ {
373
+ "uid": "0f74-106"
374
+ },
375
+ {
376
+ "uid": "0f74-90"
377
+ },
378
+ {
379
+ "uid": "0f74-68"
380
+ },
381
+ {
382
+ "uid": "0f74-98"
383
+ },
384
+ {
385
+ "uid": "0f74-100"
386
+ },
387
+ {
388
+ "uid": "0f74-104"
389
+ },
390
+ {
391
+ "uid": "0f74-70"
392
+ }
393
+ ]
394
+ },
395
+ "0f74-68": {
396
+ "id": "/packages/react-router/src/path.ts",
397
+ "moduleParts": {
398
+ "index.production.js": "0f74-69"
399
+ },
400
+ "imported": [
401
+ {
402
+ "uid": "0f74-66"
403
+ }
404
+ ],
405
+ "importedBy": [
406
+ {
407
+ "uid": "0f74-106"
408
+ },
409
+ {
410
+ "uid": "0f74-74"
411
+ },
412
+ {
413
+ "uid": "0f74-98"
414
+ }
415
+ ]
416
+ },
417
+ "0f74-70": {
418
+ "id": "/packages/react-router/src/useParams.tsx",
419
+ "moduleParts": {
420
+ "index.production.js": "0f74-71"
421
+ },
422
+ "imported": [
423
+ {
424
+ "uid": "0f74-66"
425
+ },
426
+ {
427
+ "uid": "0f74-78"
428
+ }
429
+ ],
430
+ "importedBy": [
431
+ {
432
+ "uid": "0f74-106"
433
+ },
434
+ {
435
+ "uid": "0f74-74"
436
+ }
437
+ ]
438
+ },
439
+ "0f74-72": {
440
+ "id": "/packages/react-router/src/useSearch.tsx",
441
+ "moduleParts": {
442
+ "index.production.js": "0f74-73"
443
+ },
444
+ "imported": [
445
+ {
446
+ "uid": "0f74-76"
447
+ }
448
+ ],
449
+ "importedBy": [
450
+ {
451
+ "uid": "0f74-106"
452
+ },
453
+ {
454
+ "uid": "0f74-74"
455
+ }
456
+ ]
457
+ },
458
+ "0f74-74": {
459
+ "id": "/packages/react-router/src/route.ts",
460
+ "moduleParts": {
461
+ "index.production.js": "0f74-75"
462
+ },
463
+ "imported": [
464
+ {
465
+ "uid": "0f74-60"
466
+ },
467
+ {
468
+ "uid": "0f74-76"
469
+ },
470
+ {
471
+ "uid": "0f74-68"
472
+ },
473
+ {
474
+ "uid": "0f74-70"
475
+ },
476
+ {
477
+ "uid": "0f74-72"
478
+ }
479
+ ],
480
+ "importedBy": [
481
+ {
482
+ "uid": "0f74-106"
483
+ },
484
+ {
485
+ "uid": "0f74-84"
486
+ },
487
+ {
488
+ "uid": "0f74-76"
489
+ }
490
+ ]
491
+ },
492
+ "0f74-76": {
493
+ "id": "/packages/react-router/src/Matches.tsx",
494
+ "moduleParts": {
495
+ "index.production.js": "0f74-77"
496
+ },
497
+ "imported": [
498
+ {
499
+ "uid": "0f74-111"
500
+ },
501
+ {
502
+ "uid": "0f74-60"
503
+ },
504
+ {
505
+ "uid": "0f74-62"
506
+ },
507
+ {
508
+ "uid": "0f74-64"
509
+ },
510
+ {
511
+ "uid": "0f74-78"
512
+ },
513
+ {
514
+ "uid": "0f74-74"
515
+ }
516
+ ],
517
+ "importedBy": [
518
+ {
519
+ "uid": "0f74-106"
520
+ },
521
+ {
522
+ "uid": "0f74-90"
523
+ },
524
+ {
525
+ "uid": "0f74-74"
526
+ },
527
+ {
528
+ "uid": "0f74-78"
529
+ },
530
+ {
531
+ "uid": "0f74-104"
532
+ },
533
+ {
534
+ "uid": "0f74-72"
535
+ },
536
+ {
537
+ "uid": "0f74-66"
538
+ }
539
+ ]
540
+ },
541
+ "0f74-78": {
542
+ "id": "/packages/react-router/src/RouterProvider.tsx",
543
+ "moduleParts": {
544
+ "index.production.js": "0f74-79"
545
+ },
546
+ "imported": [
547
+ {
548
+ "uid": "0f74-111"
549
+ },
550
+ {
551
+ "uid": "0f74-62"
552
+ },
553
+ {
554
+ "uid": "0f74-76"
555
+ }
556
+ ],
557
+ "importedBy": [
558
+ {
559
+ "uid": "0f74-106"
560
+ },
561
+ {
562
+ "uid": "0f74-82"
563
+ },
564
+ {
565
+ "uid": "0f74-90"
566
+ },
567
+ {
568
+ "uid": "0f74-76"
569
+ },
570
+ {
571
+ "uid": "0f74-98"
572
+ },
573
+ {
574
+ "uid": "0f74-100"
575
+ },
576
+ {
577
+ "uid": "0f74-102"
578
+ },
579
+ {
580
+ "uid": "0f74-104"
581
+ },
582
+ {
583
+ "uid": "0f74-70"
584
+ }
585
+ ]
586
+ },
587
+ "0f74-80": {
588
+ "id": "/packages/react-router/src/defer.ts",
589
+ "moduleParts": {
590
+ "index.production.js": "0f74-81"
591
+ },
592
+ "imported": [],
593
+ "importedBy": [
594
+ {
595
+ "uid": "0f74-106"
596
+ },
597
+ {
598
+ "uid": "0f74-82"
599
+ }
600
+ ]
601
+ },
602
+ "0f74-82": {
603
+ "id": "/packages/react-router/src/awaited.tsx",
604
+ "moduleParts": {
605
+ "index.production.js": "0f74-83"
606
+ },
607
+ "imported": [
608
+ {
609
+ "uid": "0f74-78"
610
+ },
611
+ {
612
+ "uid": "0f74-80"
613
+ }
614
+ ],
615
+ "importedBy": [
616
+ {
617
+ "uid": "0f74-106"
618
+ }
619
+ ]
620
+ },
621
+ "0f74-84": {
622
+ "id": "/packages/react-router/src/fileRoute.ts",
623
+ "moduleParts": {
624
+ "index.production.js": "0f74-85"
625
+ },
626
+ "imported": [
627
+ {
628
+ "uid": "0f74-74"
629
+ }
630
+ ],
631
+ "importedBy": [
632
+ {
633
+ "uid": "0f74-106"
634
+ }
635
+ ]
636
+ },
637
+ "0f74-86": {
638
+ "id": "/packages/react-router/src/lazyRouteComponent.tsx",
639
+ "moduleParts": {
640
+ "index.production.js": "0f74-87"
641
+ },
642
+ "imported": [
643
+ {
644
+ "uid": "0f74-111"
645
+ }
646
+ ],
647
+ "importedBy": [
648
+ {
649
+ "uid": "0f74-106"
650
+ }
651
+ ]
652
+ },
653
+ "0f74-88": {
53
654
  "id": "\u0000rollupPluginBabelHelpers.js",
54
655
  "moduleParts": {
55
- "index.production.js": "db96-67"
656
+ "index.production.js": "0f74-89"
56
657
  },
57
658
  "imported": [],
58
659
  "importedBy": [
59
660
  {
60
- "uid": "db96-70"
661
+ "uid": "0f74-90"
61
662
  }
62
663
  ]
63
664
  },
64
- "db96-68": {
65
- "id": "/packages/router-core/build/esm/index.js",
665
+ "0f74-90": {
666
+ "id": "/packages/react-router/src/link.tsx",
66
667
  "moduleParts": {
67
- "index.production.js": "db96-69"
668
+ "index.production.js": "0f74-91"
669
+ },
670
+ "imported": [
671
+ {
672
+ "uid": "0f74-88"
673
+ },
674
+ {
675
+ "uid": "0f74-111"
676
+ },
677
+ {
678
+ "uid": "0f74-76"
679
+ },
680
+ {
681
+ "uid": "0f74-78"
682
+ },
683
+ {
684
+ "uid": "0f74-66"
685
+ }
686
+ ],
687
+ "importedBy": [
688
+ {
689
+ "uid": "0f74-106"
690
+ }
691
+ ]
692
+ },
693
+ "0f74-92": {
694
+ "id": "/packages/react-router/src/qss.ts",
695
+ "moduleParts": {
696
+ "index.production.js": "0f74-93"
697
+ },
698
+ "imported": [],
699
+ "importedBy": [
700
+ {
701
+ "uid": "0f74-106"
702
+ },
703
+ {
704
+ "uid": "0f74-96"
705
+ }
706
+ ]
707
+ },
708
+ "0f74-94": {
709
+ "id": "/packages/react-router/src/redirects.ts",
710
+ "moduleParts": {
711
+ "index.production.js": "0f74-95"
68
712
  },
69
713
  "imported": [],
70
714
  "importedBy": [
71
715
  {
72
- "uid": "db96-70"
716
+ "uid": "0f74-106"
717
+ },
718
+ {
719
+ "uid": "0f74-98"
73
720
  }
74
721
  ]
75
722
  },
76
- "db96-70": {
723
+ "0f74-96": {
724
+ "id": "/packages/react-router/src/searchParams.ts",
725
+ "moduleParts": {
726
+ "index.production.js": "0f74-97"
727
+ },
728
+ "imported": [
729
+ {
730
+ "uid": "0f74-92"
731
+ }
732
+ ],
733
+ "importedBy": [
734
+ {
735
+ "uid": "0f74-106"
736
+ },
737
+ {
738
+ "uid": "0f74-98"
739
+ }
740
+ ]
741
+ },
742
+ "0f74-98": {
743
+ "id": "/packages/react-router/src/router.ts",
744
+ "moduleParts": {
745
+ "index.production.js": "0f74-99"
746
+ },
747
+ "imported": [
748
+ {
749
+ "uid": "0f74-58"
750
+ },
751
+ {
752
+ "uid": "0f74-96"
753
+ },
754
+ {
755
+ "uid": "0f74-66"
756
+ },
757
+ {
758
+ "uid": "0f74-78"
759
+ },
760
+ {
761
+ "uid": "0f74-68"
762
+ },
763
+ {
764
+ "uid": "0f74-60"
765
+ },
766
+ {
767
+ "uid": "0f74-94"
768
+ },
769
+ {
770
+ "uid": "0f74-62"
771
+ }
772
+ ],
773
+ "importedBy": [
774
+ {
775
+ "uid": "0f74-106"
776
+ }
777
+ ]
778
+ },
779
+ "0f74-100": {
780
+ "id": "/packages/react-router/src/scroll-restoration.tsx",
781
+ "moduleParts": {
782
+ "index.production.js": "0f74-101"
783
+ },
784
+ "imported": [
785
+ {
786
+ "uid": "0f74-111"
787
+ },
788
+ {
789
+ "uid": "0f74-78"
790
+ },
791
+ {
792
+ "uid": "0f74-66"
793
+ }
794
+ ],
795
+ "importedBy": [
796
+ {
797
+ "uid": "0f74-106"
798
+ }
799
+ ]
800
+ },
801
+ "0f74-102": {
802
+ "id": "/packages/react-router/src/useBlocker.tsx",
803
+ "moduleParts": {
804
+ "index.production.js": "0f74-103"
805
+ },
806
+ "imported": [
807
+ {
808
+ "uid": "0f74-111"
809
+ },
810
+ {
811
+ "uid": "0f74-78"
812
+ }
813
+ ],
814
+ "importedBy": [
815
+ {
816
+ "uid": "0f74-106"
817
+ }
818
+ ]
819
+ },
820
+ "0f74-104": {
821
+ "id": "/packages/react-router/src/useNavigate.tsx",
822
+ "moduleParts": {
823
+ "index.production.js": "0f74-105"
824
+ },
825
+ "imported": [
826
+ {
827
+ "uid": "0f74-111"
828
+ },
829
+ {
830
+ "uid": "0f74-76"
831
+ },
832
+ {
833
+ "uid": "0f74-78"
834
+ },
835
+ {
836
+ "uid": "0f74-66"
837
+ }
838
+ ],
839
+ "importedBy": [
840
+ {
841
+ "uid": "0f74-106"
842
+ }
843
+ ]
844
+ },
845
+ "0f74-106": {
77
846
  "id": "/packages/react-router/src/index.tsx",
78
847
  "moduleParts": {
79
- "index.production.js": "db96-71"
848
+ "index.production.js": "0f74-107"
80
849
  },
81
850
  "imported": [
82
851
  {
83
- "uid": "db96-66"
852
+ "uid": "0f74-58"
853
+ },
854
+ {
855
+ "uid": "0f74-60"
856
+ },
857
+ {
858
+ "uid": "0f74-62"
859
+ },
860
+ {
861
+ "uid": "0f74-82"
862
+ },
863
+ {
864
+ "uid": "0f74-80"
865
+ },
866
+ {
867
+ "uid": "0f74-64"
868
+ },
869
+ {
870
+ "uid": "0f74-84"
871
+ },
872
+ {
873
+ "uid": "0f74-108"
874
+ },
875
+ {
876
+ "uid": "0f74-106"
877
+ },
878
+ {
879
+ "uid": "0f74-86"
880
+ },
881
+ {
882
+ "uid": "0f74-90"
883
+ },
884
+ {
885
+ "uid": "0f74-109"
84
886
  },
85
887
  {
86
- "uid": "db96-72"
888
+ "uid": "0f74-76"
87
889
  },
88
890
  {
89
- "uid": "db96-73"
891
+ "uid": "0f74-68"
90
892
  },
91
893
  {
92
- "uid": "db96-68"
894
+ "uid": "0f74-92"
895
+ },
896
+ {
897
+ "uid": "0f74-94"
898
+ },
899
+ {
900
+ "uid": "0f74-74"
901
+ },
902
+ {
903
+ "uid": "0f74-110"
904
+ },
905
+ {
906
+ "uid": "0f74-98"
907
+ },
908
+ {
909
+ "uid": "0f74-78"
910
+ },
911
+ {
912
+ "uid": "0f74-100"
913
+ },
914
+ {
915
+ "uid": "0f74-96"
916
+ },
917
+ {
918
+ "uid": "0f74-102"
919
+ },
920
+ {
921
+ "uid": "0f74-104"
922
+ },
923
+ {
924
+ "uid": "0f74-70"
925
+ },
926
+ {
927
+ "uid": "0f74-72"
928
+ },
929
+ {
930
+ "uid": "0f74-66"
931
+ }
932
+ ],
933
+ "importedBy": [
934
+ {
935
+ "uid": "0f74-106"
93
936
  }
94
937
  ],
95
- "importedBy": [],
96
938
  "isEntry": true
97
939
  },
98
- "db96-72": {
99
- "id": "react",
940
+ "0f74-108": {
941
+ "id": "/packages/react-router/src/history.ts",
100
942
  "moduleParts": {},
101
943
  "imported": [],
102
944
  "importedBy": [
103
945
  {
104
- "uid": "db96-70"
946
+ "uid": "0f74-106"
105
947
  }
106
- ],
107
- "isExternal": true
948
+ ]
108
949
  },
109
- "db96-73": {
110
- "id": "use-sync-external-store/shim",
950
+ "0f74-109": {
951
+ "id": "/packages/react-router/src/location.ts",
111
952
  "moduleParts": {},
112
953
  "imported": [],
113
954
  "importedBy": [
114
955
  {
115
- "uid": "db96-70"
956
+ "uid": "0f74-106"
957
+ }
958
+ ]
959
+ },
960
+ "0f74-110": {
961
+ "id": "/packages/react-router/src/routeInfo.ts",
962
+ "moduleParts": {},
963
+ "imported": [],
964
+ "importedBy": [
965
+ {
966
+ "uid": "0f74-106"
967
+ }
968
+ ]
969
+ },
970
+ "0f74-111": {
971
+ "id": "react",
972
+ "moduleParts": {},
973
+ "imported": [],
974
+ "importedBy": [
975
+ {
976
+ "uid": "0f74-64"
977
+ },
978
+ {
979
+ "uid": "0f74-86"
980
+ },
981
+ {
982
+ "uid": "0f74-90"
983
+ },
984
+ {
985
+ "uid": "0f74-76"
986
+ },
987
+ {
988
+ "uid": "0f74-78"
989
+ },
990
+ {
991
+ "uid": "0f74-100"
992
+ },
993
+ {
994
+ "uid": "0f74-102"
995
+ },
996
+ {
997
+ "uid": "0f74-104"
998
+ },
999
+ {
1000
+ "uid": "0f74-66"
116
1001
  }
117
1002
  ],
118
1003
  "isExternal": true
119
1004
  }
120
1005
  },
121
1006
  "env": {
122
- "rollup": "2.77.2"
1007
+ "rollup": "4.6.1"
123
1008
  },
124
1009
  "options": {
125
1010
  "gzip": true,