mirror of
https://github.com/elisiariocouto/leggen.git
synced 2025-12-13 16:02:16 +00:00
Added comprehensive settings page with account settings component, integrated with existing layout and routing structure. Updated project documentation with frontend architecture details. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>")
143 lines
4.2 KiB
TypeScript
143 lines
4.2 KiB
TypeScript
/* 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 { Route as rootRouteImport } from './routes/__root'
|
|
import { Route as TransactionsRouteImport } from './routes/transactions'
|
|
import { Route as SettingsRouteImport } from './routes/settings'
|
|
import { Route as NotificationsRouteImport } from './routes/notifications'
|
|
import { Route as AnalyticsRouteImport } from './routes/analytics'
|
|
import { Route as IndexRouteImport } from './routes/index'
|
|
|
|
const TransactionsRoute = TransactionsRouteImport.update({
|
|
id: '/transactions',
|
|
path: '/transactions',
|
|
getParentRoute: () => rootRouteImport,
|
|
} as any)
|
|
const SettingsRoute = SettingsRouteImport.update({
|
|
id: '/settings',
|
|
path: '/settings',
|
|
getParentRoute: () => rootRouteImport,
|
|
} as any)
|
|
const NotificationsRoute = NotificationsRouteImport.update({
|
|
id: '/notifications',
|
|
path: '/notifications',
|
|
getParentRoute: () => rootRouteImport,
|
|
} as any)
|
|
const AnalyticsRoute = AnalyticsRouteImport.update({
|
|
id: '/analytics',
|
|
path: '/analytics',
|
|
getParentRoute: () => rootRouteImport,
|
|
} as any)
|
|
const IndexRoute = IndexRouteImport.update({
|
|
id: '/',
|
|
path: '/',
|
|
getParentRoute: () => rootRouteImport,
|
|
} as any)
|
|
|
|
export interface FileRoutesByFullPath {
|
|
'/': typeof IndexRoute
|
|
'/analytics': typeof AnalyticsRoute
|
|
'/notifications': typeof NotificationsRoute
|
|
'/settings': typeof SettingsRoute
|
|
'/transactions': typeof TransactionsRoute
|
|
}
|
|
export interface FileRoutesByTo {
|
|
'/': typeof IndexRoute
|
|
'/analytics': typeof AnalyticsRoute
|
|
'/notifications': typeof NotificationsRoute
|
|
'/settings': typeof SettingsRoute
|
|
'/transactions': typeof TransactionsRoute
|
|
}
|
|
export interface FileRoutesById {
|
|
__root__: typeof rootRouteImport
|
|
'/': typeof IndexRoute
|
|
'/analytics': typeof AnalyticsRoute
|
|
'/notifications': typeof NotificationsRoute
|
|
'/settings': typeof SettingsRoute
|
|
'/transactions': typeof TransactionsRoute
|
|
}
|
|
export interface FileRouteTypes {
|
|
fileRoutesByFullPath: FileRoutesByFullPath
|
|
fullPaths:
|
|
| '/'
|
|
| '/analytics'
|
|
| '/notifications'
|
|
| '/settings'
|
|
| '/transactions'
|
|
fileRoutesByTo: FileRoutesByTo
|
|
to: '/' | '/analytics' | '/notifications' | '/settings' | '/transactions'
|
|
id:
|
|
| '__root__'
|
|
| '/'
|
|
| '/analytics'
|
|
| '/notifications'
|
|
| '/settings'
|
|
| '/transactions'
|
|
fileRoutesById: FileRoutesById
|
|
}
|
|
export interface RootRouteChildren {
|
|
IndexRoute: typeof IndexRoute
|
|
AnalyticsRoute: typeof AnalyticsRoute
|
|
NotificationsRoute: typeof NotificationsRoute
|
|
SettingsRoute: typeof SettingsRoute
|
|
TransactionsRoute: typeof TransactionsRoute
|
|
}
|
|
|
|
declare module '@tanstack/react-router' {
|
|
interface FileRoutesByPath {
|
|
'/transactions': {
|
|
id: '/transactions'
|
|
path: '/transactions'
|
|
fullPath: '/transactions'
|
|
preLoaderRoute: typeof TransactionsRouteImport
|
|
parentRoute: typeof rootRouteImport
|
|
}
|
|
'/settings': {
|
|
id: '/settings'
|
|
path: '/settings'
|
|
fullPath: '/settings'
|
|
preLoaderRoute: typeof SettingsRouteImport
|
|
parentRoute: typeof rootRouteImport
|
|
}
|
|
'/notifications': {
|
|
id: '/notifications'
|
|
path: '/notifications'
|
|
fullPath: '/notifications'
|
|
preLoaderRoute: typeof NotificationsRouteImport
|
|
parentRoute: typeof rootRouteImport
|
|
}
|
|
'/analytics': {
|
|
id: '/analytics'
|
|
path: '/analytics'
|
|
fullPath: '/analytics'
|
|
preLoaderRoute: typeof AnalyticsRouteImport
|
|
parentRoute: typeof rootRouteImport
|
|
}
|
|
'/': {
|
|
id: '/'
|
|
path: '/'
|
|
fullPath: '/'
|
|
preLoaderRoute: typeof IndexRouteImport
|
|
parentRoute: typeof rootRouteImport
|
|
}
|
|
}
|
|
}
|
|
|
|
const rootRouteChildren: RootRouteChildren = {
|
|
IndexRoute: IndexRoute,
|
|
AnalyticsRoute: AnalyticsRoute,
|
|
NotificationsRoute: NotificationsRoute,
|
|
SettingsRoute: SettingsRoute,
|
|
TransactionsRoute: TransactionsRoute,
|
|
}
|
|
export const routeTree = rootRouteImport
|
|
._addFileChildren(rootRouteChildren)
|
|
._addFileTypes<FileRouteTypes>()
|