@tanstack/react-router 0.0.1-beta.22 → 0.0.1-beta.221

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