@tanstack/react-router 0.0.1-beta.26 → 0.0.1-beta.261

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