forked from adazzle/react-data-grid
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathrouteTree.gen.ts
612 lines (574 loc) · 17.8 KB
/
routeTree.gen.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
/* eslint-disable */
// @ts-nocheck
// noinspection JSUnusedGlobalSymbols
// This file was automatically generated by TanStack Router.
// You should NOT make any changes in this file as it will be overwritten.
// Additionally, you should also exclude this file from your linter and/or formatter to prevent it from being checked or modified.
// Import Routes
import { Route as rootRoute } from './routes/__root'
import { Route as VariableRowHeightImport } from './routes/VariableRowHeight'
import { Route as TreeViewImport } from './routes/TreeView'
import { Route as ScrollToCellImport } from './routes/ScrollToCell'
import { Route as RowsReorderingImport } from './routes/RowsReordering'
import { Route as RowGroupingImport } from './routes/RowGrouping'
import { Route as ResizableGridImport } from './routes/ResizableGrid'
import { Route as NoRowsImport } from './routes/NoRows'
import { Route as MillionCellsImport } from './routes/MillionCells'
import { Route as MasterDetailImport } from './routes/MasterDetail'
import { Route as InfiniteScrollingImport } from './routes/InfiniteScrolling'
import { Route as HeaderFiltersImport } from './routes/HeaderFilters'
import { Route as CustomizableRenderersImport } from './routes/CustomizableRenderers'
import { Route as ContextMenuImport } from './routes/ContextMenu'
import { Route as CommonFeaturesImport } from './routes/CommonFeatures'
import { Route as ColumnsReorderingImport } from './routes/ColumnsReordering'
import { Route as ColumnSpanningImport } from './routes/ColumnSpanning'
import { Route as ColumnGroupingImport } from './routes/ColumnGrouping'
import { Route as CellNavigationImport } from './routes/CellNavigation'
import { Route as AnimationImport } from './routes/Animation'
import { Route as AllFeaturesImport } from './routes/AllFeatures'
import { Route as IndexImport } from './routes/index'
// Create/Update Routes
const VariableRowHeightRoute = VariableRowHeightImport.update({
id: '/VariableRowHeight',
path: '/VariableRowHeight',
getParentRoute: () => rootRoute,
} as any)
const TreeViewRoute = TreeViewImport.update({
id: '/TreeView',
path: '/TreeView',
getParentRoute: () => rootRoute,
} as any)
const ScrollToCellRoute = ScrollToCellImport.update({
id: '/ScrollToCell',
path: '/ScrollToCell',
getParentRoute: () => rootRoute,
} as any)
const RowsReorderingRoute = RowsReorderingImport.update({
id: '/RowsReordering',
path: '/RowsReordering',
getParentRoute: () => rootRoute,
} as any)
const RowGroupingRoute = RowGroupingImport.update({
id: '/RowGrouping',
path: '/RowGrouping',
getParentRoute: () => rootRoute,
} as any)
const ResizableGridRoute = ResizableGridImport.update({
id: '/ResizableGrid',
path: '/ResizableGrid',
getParentRoute: () => rootRoute,
} as any)
const NoRowsRoute = NoRowsImport.update({
id: '/NoRows',
path: '/NoRows',
getParentRoute: () => rootRoute,
} as any)
const MillionCellsRoute = MillionCellsImport.update({
id: '/MillionCells',
path: '/MillionCells',
getParentRoute: () => rootRoute,
} as any)
const MasterDetailRoute = MasterDetailImport.update({
id: '/MasterDetail',
path: '/MasterDetail',
getParentRoute: () => rootRoute,
} as any)
const InfiniteScrollingRoute = InfiniteScrollingImport.update({
id: '/InfiniteScrolling',
path: '/InfiniteScrolling',
getParentRoute: () => rootRoute,
} as any)
const HeaderFiltersRoute = HeaderFiltersImport.update({
id: '/HeaderFilters',
path: '/HeaderFilters',
getParentRoute: () => rootRoute,
} as any)
const CustomizableRenderersRoute = CustomizableRenderersImport.update({
id: '/CustomizableRenderers',
path: '/CustomizableRenderers',
getParentRoute: () => rootRoute,
} as any)
const ContextMenuRoute = ContextMenuImport.update({
id: '/ContextMenu',
path: '/ContextMenu',
getParentRoute: () => rootRoute,
} as any)
const CommonFeaturesRoute = CommonFeaturesImport.update({
id: '/CommonFeatures',
path: '/CommonFeatures',
getParentRoute: () => rootRoute,
} as any)
const ColumnsReorderingRoute = ColumnsReorderingImport.update({
id: '/ColumnsReordering',
path: '/ColumnsReordering',
getParentRoute: () => rootRoute,
} as any)
const ColumnSpanningRoute = ColumnSpanningImport.update({
id: '/ColumnSpanning',
path: '/ColumnSpanning',
getParentRoute: () => rootRoute,
} as any)
const ColumnGroupingRoute = ColumnGroupingImport.update({
id: '/ColumnGrouping',
path: '/ColumnGrouping',
getParentRoute: () => rootRoute,
} as any)
const CellNavigationRoute = CellNavigationImport.update({
id: '/CellNavigation',
path: '/CellNavigation',
getParentRoute: () => rootRoute,
} as any)
const AnimationRoute = AnimationImport.update({
id: '/Animation',
path: '/Animation',
getParentRoute: () => rootRoute,
} as any)
const AllFeaturesRoute = AllFeaturesImport.update({
id: '/AllFeatures',
path: '/AllFeatures',
getParentRoute: () => rootRoute,
} as any)
const IndexRoute = IndexImport.update({
id: '/',
path: '/',
getParentRoute: () => rootRoute,
} as any)
// Populate the FileRoutesByPath interface
declare module '@tanstack/react-router' {
interface FileRoutesByPath {
'/': {
id: '/'
path: '/'
fullPath: '/'
preLoaderRoute: typeof IndexImport
parentRoute: typeof rootRoute
}
'/AllFeatures': {
id: '/AllFeatures'
path: '/AllFeatures'
fullPath: '/AllFeatures'
preLoaderRoute: typeof AllFeaturesImport
parentRoute: typeof rootRoute
}
'/Animation': {
id: '/Animation'
path: '/Animation'
fullPath: '/Animation'
preLoaderRoute: typeof AnimationImport
parentRoute: typeof rootRoute
}
'/CellNavigation': {
id: '/CellNavigation'
path: '/CellNavigation'
fullPath: '/CellNavigation'
preLoaderRoute: typeof CellNavigationImport
parentRoute: typeof rootRoute
}
'/ColumnGrouping': {
id: '/ColumnGrouping'
path: '/ColumnGrouping'
fullPath: '/ColumnGrouping'
preLoaderRoute: typeof ColumnGroupingImport
parentRoute: typeof rootRoute
}
'/ColumnSpanning': {
id: '/ColumnSpanning'
path: '/ColumnSpanning'
fullPath: '/ColumnSpanning'
preLoaderRoute: typeof ColumnSpanningImport
parentRoute: typeof rootRoute
}
'/ColumnsReordering': {
id: '/ColumnsReordering'
path: '/ColumnsReordering'
fullPath: '/ColumnsReordering'
preLoaderRoute: typeof ColumnsReorderingImport
parentRoute: typeof rootRoute
}
'/CommonFeatures': {
id: '/CommonFeatures'
path: '/CommonFeatures'
fullPath: '/CommonFeatures'
preLoaderRoute: typeof CommonFeaturesImport
parentRoute: typeof rootRoute
}
'/ContextMenu': {
id: '/ContextMenu'
path: '/ContextMenu'
fullPath: '/ContextMenu'
preLoaderRoute: typeof ContextMenuImport
parentRoute: typeof rootRoute
}
'/CustomizableRenderers': {
id: '/CustomizableRenderers'
path: '/CustomizableRenderers'
fullPath: '/CustomizableRenderers'
preLoaderRoute: typeof CustomizableRenderersImport
parentRoute: typeof rootRoute
}
'/HeaderFilters': {
id: '/HeaderFilters'
path: '/HeaderFilters'
fullPath: '/HeaderFilters'
preLoaderRoute: typeof HeaderFiltersImport
parentRoute: typeof rootRoute
}
'/InfiniteScrolling': {
id: '/InfiniteScrolling'
path: '/InfiniteScrolling'
fullPath: '/InfiniteScrolling'
preLoaderRoute: typeof InfiniteScrollingImport
parentRoute: typeof rootRoute
}
'/MasterDetail': {
id: '/MasterDetail'
path: '/MasterDetail'
fullPath: '/MasterDetail'
preLoaderRoute: typeof MasterDetailImport
parentRoute: typeof rootRoute
}
'/MillionCells': {
id: '/MillionCells'
path: '/MillionCells'
fullPath: '/MillionCells'
preLoaderRoute: typeof MillionCellsImport
parentRoute: typeof rootRoute
}
'/NoRows': {
id: '/NoRows'
path: '/NoRows'
fullPath: '/NoRows'
preLoaderRoute: typeof NoRowsImport
parentRoute: typeof rootRoute
}
'/ResizableGrid': {
id: '/ResizableGrid'
path: '/ResizableGrid'
fullPath: '/ResizableGrid'
preLoaderRoute: typeof ResizableGridImport
parentRoute: typeof rootRoute
}
'/RowGrouping': {
id: '/RowGrouping'
path: '/RowGrouping'
fullPath: '/RowGrouping'
preLoaderRoute: typeof RowGroupingImport
parentRoute: typeof rootRoute
}
'/RowsReordering': {
id: '/RowsReordering'
path: '/RowsReordering'
fullPath: '/RowsReordering'
preLoaderRoute: typeof RowsReorderingImport
parentRoute: typeof rootRoute
}
'/ScrollToCell': {
id: '/ScrollToCell'
path: '/ScrollToCell'
fullPath: '/ScrollToCell'
preLoaderRoute: typeof ScrollToCellImport
parentRoute: typeof rootRoute
}
'/TreeView': {
id: '/TreeView'
path: '/TreeView'
fullPath: '/TreeView'
preLoaderRoute: typeof TreeViewImport
parentRoute: typeof rootRoute
}
'/VariableRowHeight': {
id: '/VariableRowHeight'
path: '/VariableRowHeight'
fullPath: '/VariableRowHeight'
preLoaderRoute: typeof VariableRowHeightImport
parentRoute: typeof rootRoute
}
}
}
// Create and export the route tree
export interface FileRoutesByFullPath {
'/': typeof IndexRoute
'/AllFeatures': typeof AllFeaturesRoute
'/Animation': typeof AnimationRoute
'/CellNavigation': typeof CellNavigationRoute
'/ColumnGrouping': typeof ColumnGroupingRoute
'/ColumnSpanning': typeof ColumnSpanningRoute
'/ColumnsReordering': typeof ColumnsReorderingRoute
'/CommonFeatures': typeof CommonFeaturesRoute
'/ContextMenu': typeof ContextMenuRoute
'/CustomizableRenderers': typeof CustomizableRenderersRoute
'/HeaderFilters': typeof HeaderFiltersRoute
'/InfiniteScrolling': typeof InfiniteScrollingRoute
'/MasterDetail': typeof MasterDetailRoute
'/MillionCells': typeof MillionCellsRoute
'/NoRows': typeof NoRowsRoute
'/ResizableGrid': typeof ResizableGridRoute
'/RowGrouping': typeof RowGroupingRoute
'/RowsReordering': typeof RowsReorderingRoute
'/ScrollToCell': typeof ScrollToCellRoute
'/TreeView': typeof TreeViewRoute
'/VariableRowHeight': typeof VariableRowHeightRoute
}
export interface FileRoutesByTo {
'/': typeof IndexRoute
'/AllFeatures': typeof AllFeaturesRoute
'/Animation': typeof AnimationRoute
'/CellNavigation': typeof CellNavigationRoute
'/ColumnGrouping': typeof ColumnGroupingRoute
'/ColumnSpanning': typeof ColumnSpanningRoute
'/ColumnsReordering': typeof ColumnsReorderingRoute
'/CommonFeatures': typeof CommonFeaturesRoute
'/ContextMenu': typeof ContextMenuRoute
'/CustomizableRenderers': typeof CustomizableRenderersRoute
'/HeaderFilters': typeof HeaderFiltersRoute
'/InfiniteScrolling': typeof InfiniteScrollingRoute
'/MasterDetail': typeof MasterDetailRoute
'/MillionCells': typeof MillionCellsRoute
'/NoRows': typeof NoRowsRoute
'/ResizableGrid': typeof ResizableGridRoute
'/RowGrouping': typeof RowGroupingRoute
'/RowsReordering': typeof RowsReorderingRoute
'/ScrollToCell': typeof ScrollToCellRoute
'/TreeView': typeof TreeViewRoute
'/VariableRowHeight': typeof VariableRowHeightRoute
}
export interface FileRoutesById {
__root__: typeof rootRoute
'/': typeof IndexRoute
'/AllFeatures': typeof AllFeaturesRoute
'/Animation': typeof AnimationRoute
'/CellNavigation': typeof CellNavigationRoute
'/ColumnGrouping': typeof ColumnGroupingRoute
'/ColumnSpanning': typeof ColumnSpanningRoute
'/ColumnsReordering': typeof ColumnsReorderingRoute
'/CommonFeatures': typeof CommonFeaturesRoute
'/ContextMenu': typeof ContextMenuRoute
'/CustomizableRenderers': typeof CustomizableRenderersRoute
'/HeaderFilters': typeof HeaderFiltersRoute
'/InfiniteScrolling': typeof InfiniteScrollingRoute
'/MasterDetail': typeof MasterDetailRoute
'/MillionCells': typeof MillionCellsRoute
'/NoRows': typeof NoRowsRoute
'/ResizableGrid': typeof ResizableGridRoute
'/RowGrouping': typeof RowGroupingRoute
'/RowsReordering': typeof RowsReorderingRoute
'/ScrollToCell': typeof ScrollToCellRoute
'/TreeView': typeof TreeViewRoute
'/VariableRowHeight': typeof VariableRowHeightRoute
}
export interface FileRouteTypes {
fileRoutesByFullPath: FileRoutesByFullPath
fullPaths:
| '/'
| '/AllFeatures'
| '/Animation'
| '/CellNavigation'
| '/ColumnGrouping'
| '/ColumnSpanning'
| '/ColumnsReordering'
| '/CommonFeatures'
| '/ContextMenu'
| '/CustomizableRenderers'
| '/HeaderFilters'
| '/InfiniteScrolling'
| '/MasterDetail'
| '/MillionCells'
| '/NoRows'
| '/ResizableGrid'
| '/RowGrouping'
| '/RowsReordering'
| '/ScrollToCell'
| '/TreeView'
| '/VariableRowHeight'
fileRoutesByTo: FileRoutesByTo
to:
| '/'
| '/AllFeatures'
| '/Animation'
| '/CellNavigation'
| '/ColumnGrouping'
| '/ColumnSpanning'
| '/ColumnsReordering'
| '/CommonFeatures'
| '/ContextMenu'
| '/CustomizableRenderers'
| '/HeaderFilters'
| '/InfiniteScrolling'
| '/MasterDetail'
| '/MillionCells'
| '/NoRows'
| '/ResizableGrid'
| '/RowGrouping'
| '/RowsReordering'
| '/ScrollToCell'
| '/TreeView'
| '/VariableRowHeight'
id:
| '__root__'
| '/'
| '/AllFeatures'
| '/Animation'
| '/CellNavigation'
| '/ColumnGrouping'
| '/ColumnSpanning'
| '/ColumnsReordering'
| '/CommonFeatures'
| '/ContextMenu'
| '/CustomizableRenderers'
| '/HeaderFilters'
| '/InfiniteScrolling'
| '/MasterDetail'
| '/MillionCells'
| '/NoRows'
| '/ResizableGrid'
| '/RowGrouping'
| '/RowsReordering'
| '/ScrollToCell'
| '/TreeView'
| '/VariableRowHeight'
fileRoutesById: FileRoutesById
}
export interface RootRouteChildren {
IndexRoute: typeof IndexRoute
AllFeaturesRoute: typeof AllFeaturesRoute
AnimationRoute: typeof AnimationRoute
CellNavigationRoute: typeof CellNavigationRoute
ColumnGroupingRoute: typeof ColumnGroupingRoute
ColumnSpanningRoute: typeof ColumnSpanningRoute
ColumnsReorderingRoute: typeof ColumnsReorderingRoute
CommonFeaturesRoute: typeof CommonFeaturesRoute
ContextMenuRoute: typeof ContextMenuRoute
CustomizableRenderersRoute: typeof CustomizableRenderersRoute
HeaderFiltersRoute: typeof HeaderFiltersRoute
InfiniteScrollingRoute: typeof InfiniteScrollingRoute
MasterDetailRoute: typeof MasterDetailRoute
MillionCellsRoute: typeof MillionCellsRoute
NoRowsRoute: typeof NoRowsRoute
ResizableGridRoute: typeof ResizableGridRoute
RowGroupingRoute: typeof RowGroupingRoute
RowsReorderingRoute: typeof RowsReorderingRoute
ScrollToCellRoute: typeof ScrollToCellRoute
TreeViewRoute: typeof TreeViewRoute
VariableRowHeightRoute: typeof VariableRowHeightRoute
}
const rootRouteChildren: RootRouteChildren = {
IndexRoute: IndexRoute,
AllFeaturesRoute: AllFeaturesRoute,
AnimationRoute: AnimationRoute,
CellNavigationRoute: CellNavigationRoute,
ColumnGroupingRoute: ColumnGroupingRoute,
ColumnSpanningRoute: ColumnSpanningRoute,
ColumnsReorderingRoute: ColumnsReorderingRoute,
CommonFeaturesRoute: CommonFeaturesRoute,
ContextMenuRoute: ContextMenuRoute,
CustomizableRenderersRoute: CustomizableRenderersRoute,
HeaderFiltersRoute: HeaderFiltersRoute,
InfiniteScrollingRoute: InfiniteScrollingRoute,
MasterDetailRoute: MasterDetailRoute,
MillionCellsRoute: MillionCellsRoute,
NoRowsRoute: NoRowsRoute,
ResizableGridRoute: ResizableGridRoute,
RowGroupingRoute: RowGroupingRoute,
RowsReorderingRoute: RowsReorderingRoute,
ScrollToCellRoute: ScrollToCellRoute,
TreeViewRoute: TreeViewRoute,
VariableRowHeightRoute: VariableRowHeightRoute,
}
export const routeTree = rootRoute
._addFileChildren(rootRouteChildren)
._addFileTypes<FileRouteTypes>()
/* ROUTE_MANIFEST_START
{
"routes": {
"__root__": {
"filePath": "__root.tsx",
"children": [
"/",
"/AllFeatures",
"/Animation",
"/CellNavigation",
"/ColumnGrouping",
"/ColumnSpanning",
"/ColumnsReordering",
"/CommonFeatures",
"/ContextMenu",
"/CustomizableRenderers",
"/HeaderFilters",
"/InfiniteScrolling",
"/MasterDetail",
"/MillionCells",
"/NoRows",
"/ResizableGrid",
"/RowGrouping",
"/RowsReordering",
"/ScrollToCell",
"/TreeView",
"/VariableRowHeight"
]
},
"/": {
"filePath": "index.tsx"
},
"/AllFeatures": {
"filePath": "AllFeatures.tsx"
},
"/Animation": {
"filePath": "Animation.tsx"
},
"/CellNavigation": {
"filePath": "CellNavigation.tsx"
},
"/ColumnGrouping": {
"filePath": "ColumnGrouping.tsx"
},
"/ColumnSpanning": {
"filePath": "ColumnSpanning.tsx"
},
"/ColumnsReordering": {
"filePath": "ColumnsReordering.tsx"
},
"/CommonFeatures": {
"filePath": "CommonFeatures.tsx"
},
"/ContextMenu": {
"filePath": "ContextMenu.tsx"
},
"/CustomizableRenderers": {
"filePath": "CustomizableRenderers.tsx"
},
"/HeaderFilters": {
"filePath": "HeaderFilters.tsx"
},
"/InfiniteScrolling": {
"filePath": "InfiniteScrolling.tsx"
},
"/MasterDetail": {
"filePath": "MasterDetail.tsx"
},
"/MillionCells": {
"filePath": "MillionCells.tsx"
},
"/NoRows": {
"filePath": "NoRows.tsx"
},
"/ResizableGrid": {
"filePath": "ResizableGrid.tsx"
},
"/RowGrouping": {
"filePath": "RowGrouping.tsx"
},
"/RowsReordering": {
"filePath": "RowsReordering.tsx"
},
"/ScrollToCell": {
"filePath": "ScrollToCell.tsx"
},
"/TreeView": {
"filePath": "TreeView.tsx"
},
"/VariableRowHeight": {
"filePath": "VariableRowHeight.tsx"
}
}
}
ROUTE_MANIFEST_END */