@@ -43,6 +43,8 @@ import { Route as LibrariesFormVersionIndexImport } from './routes/_libraries/fo
4343import { Route as LibrariesConfigVersionIndexImport } from './routes/_libraries/config.$version.index'
4444import { Route as LibraryIdVersionDocsIndexImport } from './routes/$libraryId/$version.docs.index'
4545import { Route as LibraryIdVersionDocsSplatImport } from './routes/$libraryId/$version.docs.$'
46+ import { Route as LibraryIdVersionDocsFrameworkIndexImport } from './routes/$libraryId/$version.docs.framework.index'
47+ import { Route as LibraryIdVersionDocsFrameworkFrameworkIndexImport } from './routes/$libraryId/$version.docs.framework.$framework.index'
4648import { Route as LibraryIdVersionDocsFrameworkFrameworkSplatImport } from './routes/$libraryId/$version.docs.framework.$framework.$'
4749import { Route as LibraryIdVersionDocsFrameworkFrameworkExamplesSplatImport } from './routes/$libraryId/$version.docs.framework.$framework.examples.$'
4850
@@ -253,6 +255,20 @@ const LibraryIdVersionDocsSplatRoute = LibraryIdVersionDocsSplatImport.update({
253255 getParentRoute : ( ) => LibraryIdVersionDocsRoute ,
254256} as any )
255257
258+ const LibraryIdVersionDocsFrameworkIndexRoute =
259+ LibraryIdVersionDocsFrameworkIndexImport . update ( {
260+ id : '/framework/' ,
261+ path : '/framework/' ,
262+ getParentRoute : ( ) => LibraryIdVersionDocsRoute ,
263+ } as any )
264+
265+ const LibraryIdVersionDocsFrameworkFrameworkIndexRoute =
266+ LibraryIdVersionDocsFrameworkFrameworkIndexImport . update ( {
267+ id : '/framework/$framework/' ,
268+ path : '/framework/$framework/' ,
269+ getParentRoute : ( ) => LibraryIdVersionDocsRoute ,
270+ } as any )
271+
256272const LibraryIdVersionDocsFrameworkFrameworkSplatRoute =
257273 LibraryIdVersionDocsFrameworkFrameworkSplatImport . update ( {
258274 id : '/framework/$framework/$' ,
@@ -495,13 +511,27 @@ declare module '@tanstack/react-router' {
495511 preLoaderRoute : typeof LibrariesVirtualVersionIndexImport
496512 parentRoute : typeof LibrariesRouteImport
497513 }
514+ '/$libraryId/$version/docs/framework/' : {
515+ id : '/$libraryId/$version/docs/framework/'
516+ path : '/framework'
517+ fullPath : '/$libraryId/$version/docs/framework'
518+ preLoaderRoute : typeof LibraryIdVersionDocsFrameworkIndexImport
519+ parentRoute : typeof LibraryIdVersionDocsImport
520+ }
498521 '/$libraryId/$version/docs/framework/$framework/$' : {
499522 id : '/$libraryId/$version/docs/framework/$framework/$'
500523 path : '/framework/$framework/$'
501524 fullPath : '/$libraryId/$version/docs/framework/$framework/$'
502525 preLoaderRoute : typeof LibraryIdVersionDocsFrameworkFrameworkSplatImport
503526 parentRoute : typeof LibraryIdVersionDocsImport
504527 }
528+ '/$libraryId/$version/docs/framework/$framework/' : {
529+ id : '/$libraryId/$version/docs/framework/$framework/'
530+ path : '/framework/$framework'
531+ fullPath : '/$libraryId/$version/docs/framework/$framework'
532+ preLoaderRoute : typeof LibraryIdVersionDocsFrameworkFrameworkIndexImport
533+ parentRoute : typeof LibraryIdVersionDocsImport
534+ }
505535 '/$libraryId/$version/docs/framework/$framework/examples/$' : {
506536 id : '/$libraryId/$version/docs/framework/$framework/examples/$'
507537 path : '/framework/$framework/examples/$'
@@ -517,15 +547,21 @@ declare module '@tanstack/react-router' {
517547interface LibraryIdVersionDocsRouteChildren {
518548 LibraryIdVersionDocsSplatRoute : typeof LibraryIdVersionDocsSplatRoute
519549 LibraryIdVersionDocsIndexRoute : typeof LibraryIdVersionDocsIndexRoute
550+ LibraryIdVersionDocsFrameworkIndexRoute : typeof LibraryIdVersionDocsFrameworkIndexRoute
520551 LibraryIdVersionDocsFrameworkFrameworkSplatRoute : typeof LibraryIdVersionDocsFrameworkFrameworkSplatRoute
552+ LibraryIdVersionDocsFrameworkFrameworkIndexRoute : typeof LibraryIdVersionDocsFrameworkFrameworkIndexRoute
521553 LibraryIdVersionDocsFrameworkFrameworkExamplesSplatRoute : typeof LibraryIdVersionDocsFrameworkFrameworkExamplesSplatRoute
522554}
523555
524556const LibraryIdVersionDocsRouteChildren : LibraryIdVersionDocsRouteChildren = {
525557 LibraryIdVersionDocsSplatRoute : LibraryIdVersionDocsSplatRoute ,
526558 LibraryIdVersionDocsIndexRoute : LibraryIdVersionDocsIndexRoute ,
559+ LibraryIdVersionDocsFrameworkIndexRoute :
560+ LibraryIdVersionDocsFrameworkIndexRoute ,
527561 LibraryIdVersionDocsFrameworkFrameworkSplatRoute :
528562 LibraryIdVersionDocsFrameworkFrameworkSplatRoute ,
563+ LibraryIdVersionDocsFrameworkFrameworkIndexRoute :
564+ LibraryIdVersionDocsFrameworkFrameworkIndexRoute ,
529565 LibraryIdVersionDocsFrameworkFrameworkExamplesSplatRoute :
530566 LibraryIdVersionDocsFrameworkFrameworkExamplesSplatRoute ,
531567}
@@ -651,7 +687,9 @@ export interface FileRoutesByFullPath {
651687 '/store/$version' : typeof LibrariesStoreVersionIndexRoute
652688 '/table/$version' : typeof LibrariesTableVersionIndexRoute
653689 '/virtual/$version' : typeof LibrariesVirtualVersionIndexRoute
690+ '/$libraryId/$version/docs/framework' : typeof LibraryIdVersionDocsFrameworkIndexRoute
654691 '/$libraryId/$version/docs/framework/$framework/$' : typeof LibraryIdVersionDocsFrameworkFrameworkSplatRoute
692+ '/$libraryId/$version/docs/framework/$framework' : typeof LibraryIdVersionDocsFrameworkFrameworkIndexRoute
655693 '/$libraryId/$version/docs/framework/$framework/examples/$' : typeof LibraryIdVersionDocsFrameworkFrameworkExamplesSplatRoute
656694}
657695
@@ -684,7 +722,9 @@ export interface FileRoutesByTo {
684722 '/store/$version' : typeof LibrariesStoreVersionIndexRoute
685723 '/table/$version' : typeof LibrariesTableVersionIndexRoute
686724 '/virtual/$version' : typeof LibrariesVirtualVersionIndexRoute
725+ '/$libraryId/$version/docs/framework' : typeof LibraryIdVersionDocsFrameworkIndexRoute
687726 '/$libraryId/$version/docs/framework/$framework/$' : typeof LibraryIdVersionDocsFrameworkFrameworkSplatRoute
727+ '/$libraryId/$version/docs/framework/$framework' : typeof LibraryIdVersionDocsFrameworkFrameworkIndexRoute
688728 '/$libraryId/$version/docs/framework/$framework/examples/$' : typeof LibraryIdVersionDocsFrameworkFrameworkExamplesSplatRoute
689729}
690730
@@ -722,7 +762,9 @@ export interface FileRoutesById {
722762 '/_libraries/store/$version/' : typeof LibrariesStoreVersionIndexRoute
723763 '/_libraries/table/$version/' : typeof LibrariesTableVersionIndexRoute
724764 '/_libraries/virtual/$version/' : typeof LibrariesVirtualVersionIndexRoute
765+ '/$libraryId/$version/docs/framework/' : typeof LibraryIdVersionDocsFrameworkIndexRoute
725766 '/$libraryId/$version/docs/framework/$framework/$' : typeof LibraryIdVersionDocsFrameworkFrameworkSplatRoute
767+ '/$libraryId/$version/docs/framework/$framework/' : typeof LibraryIdVersionDocsFrameworkFrameworkIndexRoute
726768 '/$libraryId/$version/docs/framework/$framework/examples/$' : typeof LibraryIdVersionDocsFrameworkFrameworkExamplesSplatRoute
727769}
728770
@@ -761,7 +803,9 @@ export interface FileRouteTypes {
761803 | '/store/$version'
762804 | '/table/$version'
763805 | '/virtual/$version'
806+ | '/$libraryId/$version/docs/framework'
764807 | '/$libraryId/$version/docs/framework/$framework/$'
808+ | '/$libraryId/$version/docs/framework/$framework'
765809 | '/$libraryId/$version/docs/framework/$framework/examples/$'
766810 fileRoutesByTo : FileRoutesByTo
767811 to :
@@ -793,7 +837,9 @@ export interface FileRouteTypes {
793837 | '/store/$version'
794838 | '/table/$version'
795839 | '/virtual/$version'
840+ | '/$libraryId/$version/docs/framework'
796841 | '/$libraryId/$version/docs/framework/$framework/$'
842+ | '/$libraryId/$version/docs/framework/$framework'
797843 | '/$libraryId/$version/docs/framework/$framework/examples/$'
798844 id :
799845 | '__root__'
@@ -829,7 +875,9 @@ export interface FileRouteTypes {
829875 | '/_libraries/store/$version/'
830876 | '/_libraries/table/$version/'
831877 | '/_libraries/virtual/$version/'
878+ | '/$libraryId/$version/docs/framework/'
832879 | '/$libraryId/$version/docs/framework/$framework/$'
880+ | '/$libraryId/$version/docs/framework/$framework/'
833881 | '/$libraryId/$version/docs/framework/$framework/examples/$'
834882 fileRoutesById : FileRoutesById
835883}
@@ -968,7 +1016,9 @@ export const routeTree = rootRoute
9681016 "children": [
9691017 "/$libraryId/$version/docs/$",
9701018 "/$libraryId/$version/docs/",
1019+ "/$libraryId/$version/docs/framework/",
9711020 "/$libraryId/$version/docs/framework/$framework/$",
1021+ "/$libraryId/$version/docs/framework/$framework/",
9721022 "/$libraryId/$version/docs/framework/$framework/examples/$"
9731023 ]
9741024 },
@@ -1031,10 +1081,18 @@ export const routeTree = rootRoute
10311081 "filePath": "_libraries/virtual.$version.index.tsx",
10321082 "parent": "/_libraries"
10331083 },
1084+ "/$libraryId/$version/docs/framework/": {
1085+ "filePath": "$libraryId/$version.docs.framework.index.tsx",
1086+ "parent": "/$libraryId/$version/docs"
1087+ },
10341088 "/$libraryId/$version/docs/framework/$framework/$": {
10351089 "filePath": "$libraryId/$version.docs.framework.$framework.$.tsx",
10361090 "parent": "/$libraryId/$version/docs"
10371091 },
1092+ "/$libraryId/$version/docs/framework/$framework/": {
1093+ "filePath": "$libraryId/$version.docs.framework.$framework.index.tsx",
1094+ "parent": "/$libraryId/$version/docs"
1095+ },
10381096 "/$libraryId/$version/docs/framework/$framework/examples/$": {
10391097 "filePath": "$libraryId/$version.docs.framework.$framework.examples.$.tsx",
10401098 "parent": "/$libraryId/$version/docs"
0 commit comments