build(deps): bump the tanstack-router group across 1 directory with 2 updates (#5901)

This commit is contained in:
Quentin Gliech
2026-08-07 09:55:13 +02:00
committed by GitHub
3 changed files with 312 additions and 266 deletions
+2 -2
View File
@@ -23,7 +23,7 @@
"@radix-ui/react-collapsible": "^1.1.15",
"@radix-ui/react-dialog": "^1.1.18",
"@tanstack/react-query": "^5.101.2",
"@tanstack/react-router": "^1.170.17",
"@tanstack/react-router": "^1.170.18",
"@vector-im/compound-design-tokens": "10.2.2",
"@vector-im/compound-web": "^9.7.1",
"@zxcvbn-ts/core": "^4.1.2",
@@ -52,7 +52,7 @@
"@tailwindcss/vite": "^4.3.2",
"@tanstack/react-query-devtools": "^5.101.2",
"@tanstack/react-router-devtools": "^1.167.0",
"@tanstack/router-plugin": "^1.168.19",
"@tanstack/router-plugin": "^1.168.23",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
+136 -136
View File
@@ -9,31 +9,46 @@
// 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 ResetCrossSigningRouteImport } from './routes/reset-cross-signing'
import { Route as AccountRouteImport } from './routes/_account'
import { Route as ResetCrossSigningIndexRouteImport } from './routes/reset-cross-signing.index'
import { Route as ResetCrossSigningRouteImport } from './routes/reset-cross-signing'
import { Route as AccountIndexRouteImport } from './routes/_account.index'
import { Route as SessionsIdRouteImport } from './routes/sessions.$id'
import { Route as ResetCrossSigningSuccessRouteImport } from './routes/reset-cross-signing.success'
import { Route as ResetCrossSigningCancelledRouteImport } from './routes/reset-cross-signing.cancelled'
import { Route as DevicesSplatRouteImport } from './routes/devices.$'
import { Route as ClientsIdRouteImport } from './routes/clients.$id'
import { Route as PasswordRecoveryIndexRouteImport } from './routes/password.recovery.index'
import { Route as PasswordChangeIndexRouteImport } from './routes/password.change.index'
import { Route as AccountSessionsIndexRouteImport } from './routes/_account.sessions.index'
import { Route as DevicesSplatRouteImport } from './routes/devices.$'
import { Route as ResetCrossSigningIndexRouteImport } from './routes/reset-cross-signing.index'
import { Route as ResetCrossSigningCancelledRouteImport } from './routes/reset-cross-signing.cancelled'
import { Route as ResetCrossSigningSuccessRouteImport } from './routes/reset-cross-signing.success'
import { Route as SessionsIdRouteImport } from './routes/sessions.$id'
import { Route as AccountPlanIndexRouteImport } from './routes/_account.plan.index'
import { Route as PasswordChangeSuccessRouteImport } from './routes/password.change.success'
import { Route as EmailsIdVerifyRouteImport } from './routes/emails.$id.verify'
import { Route as EmailsIdInUseRouteImport } from './routes/emails.$id.in-use'
import { Route as AccountSessionsIndexRouteImport } from './routes/_account.sessions.index'
import { Route as AccountSessionsBrowsersRouteImport } from './routes/_account.sessions.browsers'
import { Route as EmailsIdInUseRouteImport } from './routes/emails.$id.in-use'
import { Route as EmailsIdVerifyRouteImport } from './routes/emails.$id.verify'
import { Route as PasswordChangeIndexRouteImport } from './routes/password.change.index'
import { Route as PasswordChangeSuccessRouteImport } from './routes/password.change.success'
import { Route as PasswordRecoveryIndexRouteImport } from './routes/password.recovery.index'
const AccountRoute = AccountRouteImport.update({
id: '/_account',
getParentRoute: () => rootRouteImport,
} as any)
const ResetCrossSigningRoute = ResetCrossSigningRouteImport.update({
id: '/reset-cross-signing',
path: '/reset-cross-signing',
getParentRoute: () => rootRouteImport,
} as any)
const AccountRoute = AccountRouteImport.update({
id: '/_account',
const AccountIndexRoute = AccountIndexRouteImport.update({
id: '/',
path: '/',
getParentRoute: () => AccountRoute,
} as any)
const ClientsIdRoute = ClientsIdRouteImport.update({
id: '/clients/$id',
path: '/clients/$id',
getParentRoute: () => rootRouteImport,
} as any)
const DevicesSplatRoute = DevicesSplatRouteImport.update({
id: '/devices/$',
path: '/devices/$',
getParentRoute: () => rootRouteImport,
} as any)
const ResetCrossSigningIndexRoute = ResetCrossSigningIndexRouteImport.update({
@@ -41,61 +56,41 @@ const ResetCrossSigningIndexRoute = ResetCrossSigningIndexRouteImport.update({
path: '/',
getParentRoute: () => ResetCrossSigningRoute,
} as any)
const AccountIndexRoute = AccountIndexRouteImport.update({
id: '/',
path: '/',
getParentRoute: () => AccountRoute,
} as any)
const SessionsIdRoute = SessionsIdRouteImport.update({
id: '/sessions/$id',
path: '/sessions/$id',
getParentRoute: () => rootRouteImport,
} as any)
const ResetCrossSigningSuccessRoute =
ResetCrossSigningSuccessRouteImport.update({
id: '/success',
path: '/success',
getParentRoute: () => ResetCrossSigningRoute,
} as any)
const ResetCrossSigningCancelledRoute =
ResetCrossSigningCancelledRouteImport.update({
id: '/cancelled',
path: '/cancelled',
getParentRoute: () => ResetCrossSigningRoute,
} as any)
const DevicesSplatRoute = DevicesSplatRouteImport.update({
id: '/devices/$',
path: '/devices/$',
const ResetCrossSigningSuccessRoute =
ResetCrossSigningSuccessRouteImport.update({
id: '/success',
path: '/success',
getParentRoute: () => ResetCrossSigningRoute,
} as any)
const SessionsIdRoute = SessionsIdRouteImport.update({
id: '/sessions/$id',
path: '/sessions/$id',
getParentRoute: () => rootRouteImport,
} as any)
const ClientsIdRoute = ClientsIdRouteImport.update({
id: '/clients/$id',
path: '/clients/$id',
getParentRoute: () => rootRouteImport,
} as any)
const PasswordRecoveryIndexRoute = PasswordRecoveryIndexRouteImport.update({
id: '/password/recovery/',
path: '/password/recovery/',
getParentRoute: () => rootRouteImport,
} as any)
const PasswordChangeIndexRoute = PasswordChangeIndexRouteImport.update({
id: '/password/change/',
path: '/password/change/',
getParentRoute: () => rootRouteImport,
} as any)
const AccountSessionsIndexRoute = AccountSessionsIndexRouteImport.update({
id: '/sessions/',
path: '/sessions/',
getParentRoute: () => AccountRoute,
} as any)
const AccountPlanIndexRoute = AccountPlanIndexRouteImport.update({
id: '/plan/',
path: '/plan/',
getParentRoute: () => AccountRoute,
} as any)
const PasswordChangeSuccessRoute = PasswordChangeSuccessRouteImport.update({
id: '/password/change/success',
path: '/password/change/success',
const AccountSessionsIndexRoute = AccountSessionsIndexRouteImport.update({
id: '/sessions/',
path: '/sessions/',
getParentRoute: () => AccountRoute,
} as any)
const AccountSessionsBrowsersRoute = AccountSessionsBrowsersRouteImport.update({
id: '/sessions/browsers',
path: '/sessions/browsers',
getParentRoute: () => AccountRoute,
} as any)
const EmailsIdInUseRoute = EmailsIdInUseRouteImport.update({
id: '/emails/$id/in-use',
path: '/emails/$id/in-use',
getParentRoute: () => rootRouteImport,
} as any)
const EmailsIdVerifyRoute = EmailsIdVerifyRouteImport.update({
@@ -103,15 +98,20 @@ const EmailsIdVerifyRoute = EmailsIdVerifyRouteImport.update({
path: '/emails/$id/verify',
getParentRoute: () => rootRouteImport,
} as any)
const EmailsIdInUseRoute = EmailsIdInUseRouteImport.update({
id: '/emails/$id/in-use',
path: '/emails/$id/in-use',
const PasswordChangeIndexRoute = PasswordChangeIndexRouteImport.update({
id: '/password/change/',
path: '/password/change/',
getParentRoute: () => rootRouteImport,
} as any)
const AccountSessionsBrowsersRoute = AccountSessionsBrowsersRouteImport.update({
id: '/sessions/browsers',
path: '/sessions/browsers',
getParentRoute: () => AccountRoute,
const PasswordChangeSuccessRoute = PasswordChangeSuccessRouteImport.update({
id: '/password/change/success',
path: '/password/change/success',
getParentRoute: () => rootRouteImport,
} as any)
const PasswordRecoveryIndexRoute = PasswordRecoveryIndexRouteImport.update({
id: '/password/recovery/',
path: '/password/recovery/',
getParentRoute: () => rootRouteImport,
} as any)
export interface FileRoutesByFullPath {
@@ -241,6 +241,13 @@ export interface RootRouteChildren {
declare module '@tanstack/react-router' {
interface FileRoutesByPath {
'/_account': {
id: '/_account'
path: ''
fullPath: '/'
preLoaderRoute: typeof AccountRouteImport
parentRoute: typeof rootRouteImport
}
'/reset-cross-signing': {
id: '/reset-cross-signing'
path: '/reset-cross-signing'
@@ -248,11 +255,25 @@ declare module '@tanstack/react-router' {
preLoaderRoute: typeof ResetCrossSigningRouteImport
parentRoute: typeof rootRouteImport
}
'/_account': {
id: '/_account'
path: ''
'/_account/': {
id: '/_account/'
path: '/'
fullPath: '/'
preLoaderRoute: typeof AccountRouteImport
preLoaderRoute: typeof AccountIndexRouteImport
parentRoute: typeof AccountRoute
}
'/clients/$id': {
id: '/clients/$id'
path: '/clients/$id'
fullPath: '/clients/$id'
preLoaderRoute: typeof ClientsIdRouteImport
parentRoute: typeof rootRouteImport
}
'/devices/$': {
id: '/devices/$'
path: '/devices/$'
fullPath: '/devices/$'
preLoaderRoute: typeof DevicesSplatRouteImport
parentRoute: typeof rootRouteImport
}
'/reset-cross-signing/': {
@@ -262,19 +283,12 @@ declare module '@tanstack/react-router' {
preLoaderRoute: typeof ResetCrossSigningIndexRouteImport
parentRoute: typeof ResetCrossSigningRoute
}
'/_account/': {
id: '/_account/'
path: '/'
fullPath: '/'
preLoaderRoute: typeof AccountIndexRouteImport
parentRoute: typeof AccountRoute
}
'/sessions/$id': {
id: '/sessions/$id'
path: '/sessions/$id'
fullPath: '/sessions/$id'
preLoaderRoute: typeof SessionsIdRouteImport
parentRoute: typeof rootRouteImport
'/reset-cross-signing/cancelled': {
id: '/reset-cross-signing/cancelled'
path: '/cancelled'
fullPath: '/reset-cross-signing/cancelled'
preLoaderRoute: typeof ResetCrossSigningCancelledRouteImport
parentRoute: typeof ResetCrossSigningRoute
}
'/reset-cross-signing/success': {
id: '/reset-cross-signing/success'
@@ -283,48 +297,13 @@ declare module '@tanstack/react-router' {
preLoaderRoute: typeof ResetCrossSigningSuccessRouteImport
parentRoute: typeof ResetCrossSigningRoute
}
'/reset-cross-signing/cancelled': {
id: '/reset-cross-signing/cancelled'
path: '/cancelled'
fullPath: '/reset-cross-signing/cancelled'
preLoaderRoute: typeof ResetCrossSigningCancelledRouteImport
parentRoute: typeof ResetCrossSigningRoute
}
'/devices/$': {
id: '/devices/$'
path: '/devices/$'
fullPath: '/devices/$'
preLoaderRoute: typeof DevicesSplatRouteImport
'/sessions/$id': {
id: '/sessions/$id'
path: '/sessions/$id'
fullPath: '/sessions/$id'
preLoaderRoute: typeof SessionsIdRouteImport
parentRoute: typeof rootRouteImport
}
'/clients/$id': {
id: '/clients/$id'
path: '/clients/$id'
fullPath: '/clients/$id'
preLoaderRoute: typeof ClientsIdRouteImport
parentRoute: typeof rootRouteImport
}
'/password/recovery/': {
id: '/password/recovery/'
path: '/password/recovery'
fullPath: '/password/recovery/'
preLoaderRoute: typeof PasswordRecoveryIndexRouteImport
parentRoute: typeof rootRouteImport
}
'/password/change/': {
id: '/password/change/'
path: '/password/change'
fullPath: '/password/change/'
preLoaderRoute: typeof PasswordChangeIndexRouteImport
parentRoute: typeof rootRouteImport
}
'/_account/sessions/': {
id: '/_account/sessions/'
path: '/sessions'
fullPath: '/sessions/'
preLoaderRoute: typeof AccountSessionsIndexRouteImport
parentRoute: typeof AccountRoute
}
'/_account/plan/': {
id: '/_account/plan/'
path: '/plan'
@@ -332,11 +311,25 @@ declare module '@tanstack/react-router' {
preLoaderRoute: typeof AccountPlanIndexRouteImport
parentRoute: typeof AccountRoute
}
'/password/change/success': {
id: '/password/change/success'
path: '/password/change/success'
fullPath: '/password/change/success'
preLoaderRoute: typeof PasswordChangeSuccessRouteImport
'/_account/sessions/': {
id: '/_account/sessions/'
path: '/sessions'
fullPath: '/sessions/'
preLoaderRoute: typeof AccountSessionsIndexRouteImport
parentRoute: typeof AccountRoute
}
'/_account/sessions/browsers': {
id: '/_account/sessions/browsers'
path: '/sessions/browsers'
fullPath: '/sessions/browsers'
preLoaderRoute: typeof AccountSessionsBrowsersRouteImport
parentRoute: typeof AccountRoute
}
'/emails/$id/in-use': {
id: '/emails/$id/in-use'
path: '/emails/$id/in-use'
fullPath: '/emails/$id/in-use'
preLoaderRoute: typeof EmailsIdInUseRouteImport
parentRoute: typeof rootRouteImport
}
'/emails/$id/verify': {
@@ -346,19 +339,26 @@ declare module '@tanstack/react-router' {
preLoaderRoute: typeof EmailsIdVerifyRouteImport
parentRoute: typeof rootRouteImport
}
'/emails/$id/in-use': {
id: '/emails/$id/in-use'
path: '/emails/$id/in-use'
fullPath: '/emails/$id/in-use'
preLoaderRoute: typeof EmailsIdInUseRouteImport
'/password/change/': {
id: '/password/change/'
path: '/password/change'
fullPath: '/password/change/'
preLoaderRoute: typeof PasswordChangeIndexRouteImport
parentRoute: typeof rootRouteImport
}
'/_account/sessions/browsers': {
id: '/_account/sessions/browsers'
path: '/sessions/browsers'
fullPath: '/sessions/browsers'
preLoaderRoute: typeof AccountSessionsBrowsersRouteImport
parentRoute: typeof AccountRoute
'/password/change/success': {
id: '/password/change/success'
path: '/password/change/success'
fullPath: '/password/change/success'
preLoaderRoute: typeof PasswordChangeSuccessRouteImport
parentRoute: typeof rootRouteImport
}
'/password/recovery/': {
id: '/password/recovery/'
path: '/password/recovery'
fullPath: '/password/recovery/'
preLoaderRoute: typeof PasswordRecoveryIndexRouteImport
parentRoute: typeof rootRouteImport
}
}
}
+174 -128
View File
@@ -45,8 +45,8 @@ importers:
specifier: ^5.101.2
version: 5.101.2(react@19.2.7)
'@tanstack/react-router':
specifier: ^1.170.17
version: 1.170.17(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
specifier: ^1.170.18
version: 1.170.18(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
'@vector-im/compound-design-tokens':
specifier: 10.2.2
version: 10.2.2(@types/react@19.2.17)(react@19.2.7)
@@ -113,10 +113,10 @@ importers:
version: 3.2.0(graphql@16.14.0)
'@storybook/addon-docs':
specifier: ^10.4.6
version: 10.4.6(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(esbuild@0.28.1)(storybook@10.4.6(@testing-library/dom@10.4.1)(@types/react@19.2.17)(prettier@3.9.4)(react@19.2.7))(vite@8.1.5(@types/node@26.1.0)(esbuild@0.28.1)(jiti@2.7.0)(yaml@2.9.0))
version: 10.4.6(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(esbuild@0.28.1)(storybook@10.4.6(@testing-library/dom@10.4.1)(@types/react@19.2.17)(prettier@3.9.6)(react@19.2.7))(vite@8.1.5(@types/node@26.1.0)(esbuild@0.28.1)(jiti@2.7.0)(yaml@2.9.0))
'@storybook/react-vite':
specifier: ^10.4.6
version: 10.4.6(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(esbuild@0.28.1)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)(storybook@10.4.6(@testing-library/dom@10.4.1)(@types/react@19.2.17)(prettier@3.9.4)(react@19.2.7))(typescript@6.0.3)(vite@8.1.5(@types/node@26.1.0)(esbuild@0.28.1)(jiti@2.7.0)(yaml@2.9.0))
version: 10.4.6(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(esbuild@0.28.1)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)(storybook@10.4.6(@testing-library/dom@10.4.1)(@types/react@19.2.17)(prettier@3.9.6)(react@19.2.7))(typescript@6.0.3)(vite@8.1.5(@types/node@26.1.0)(esbuild@0.28.1)(jiti@2.7.0)(yaml@2.9.0))
'@tailwindcss/vite':
specifier: ^4.3.2
version: 4.3.2(vite@8.1.5(@types/node@26.1.0)(esbuild@0.28.1)(jiti@2.7.0)(yaml@2.9.0))
@@ -125,10 +125,10 @@ importers:
version: 5.101.2(@tanstack/react-query@5.101.2(react@19.2.7))(react@19.2.7)
'@tanstack/react-router-devtools':
specifier: ^1.167.0
version: 1.167.0(@tanstack/react-router@1.170.17(react-dom@19.2.7(react@19.2.7))(react@19.2.7))(@tanstack/router-core@1.171.14)(csstype@3.2.3)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
version: 1.167.0(@tanstack/react-router@1.170.18(react-dom@19.2.7(react@19.2.7))(react@19.2.7))(@tanstack/router-core@1.171.15)(csstype@3.2.3)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
'@tanstack/router-plugin':
specifier: ^1.168.19
version: 1.168.19(@tanstack/react-router@1.170.17(react-dom@19.2.7(react@19.2.7))(react@19.2.7))(esbuild@0.28.1)(rolldown@1.1.5)(vite@8.1.5(@types/node@26.1.0)(esbuild@0.28.1)(jiti@2.7.0)(yaml@2.9.0))
specifier: ^1.168.23
version: 1.168.23(@tanstack/react-router@1.170.18(react-dom@19.2.7(react@19.2.7))(react@19.2.7))(esbuild@0.28.1)(rolldown@1.1.5)(vite@8.1.5(@types/node@26.1.0)(esbuild@0.28.1)(jiti@2.7.0)(yaml@2.9.0))
'@testing-library/jest-dom':
specifier: ^6.9.1
version: 6.9.1
@@ -158,7 +158,7 @@ importers:
version: 4.1.9(vitest@4.1.9)
browserslist-to-esbuild:
specifier: ^2.1.1
version: 2.1.1(browserslist@4.28.4)
version: 2.1.1(browserslist@4.28.7)
graphql:
specifier: ^16.14.0
version: 16.14.0
@@ -182,7 +182,7 @@ importers:
version: 6.1.3
storybook:
specifier: ^10.4.6
version: 10.4.6(@testing-library/dom@10.4.1)(@types/react@19.2.17)(prettier@3.9.4)(react@19.2.7)
version: 10.4.6(@testing-library/dom@10.4.1)(@types/react@19.2.17)(prettier@3.9.6)(react@19.2.7)
tailwindcss:
specifier: ^4.3.2
version: 4.3.2
@@ -254,6 +254,10 @@ packages:
resolution: {integrity: sha512-DkXD5OJQaAQIdZ1bt3UZdEnHAn9Imd3IVBdX03UFe+ony9Ojw5pzr9YVKGDY1jt+Gcn/FnGkNf8r+Vj5NOJWtQ==}
engines: {node: '>=6.9.0'}
'@babel/generator@7.29.8':
resolution: {integrity: sha512-gZbepsdh3WDtgZKWL+vTPh71LSBrm/Y4/QDZBVCcYfmeTEEuoOYwlSy+G1StfJg+/Zy550u/3TATbm7qDbbMtg==}
engines: {node: '>=6.9.0'}
'@babel/helper-compilation-targets@7.29.7':
resolution: {integrity: sha512-wem6WaBj4NaVYVdNhLPPVacES6ZJ+KBBfSkTMD3YZxbP3rm3Di85tJU5ljaUNhaOynt+Aj0xruhYuzQBt8n71g==}
engines: {node: '>=6.9.0'}
@@ -297,6 +301,11 @@ packages:
engines: {node: '>=6.0.0'}
hasBin: true
'@babel/parser@7.29.8':
resolution: {integrity: sha512-E8lTAYNB1KW+FH+VGJuZM1ioAx2E6oVlvQFRrf5P8ZZmsiJXYAD9vTFV7yyEURNzgh1dFqMZuO6tUwcARbqFCA==}
engines: {node: '>=6.0.0'}
hasBin: true
'@babel/plugin-syntax-import-assertions@7.29.7':
resolution: {integrity: sha512-/An1OCBN93thpBAGyfsK2pcf0jvju1SAtKkL2Ny++B5Sy6sqgzXDQH1cZxWbF96Wuk+bn41MDA9bLd4VVAw6rw==}
engines: {node: '>=6.9.0'}
@@ -315,10 +324,18 @@ packages:
resolution: {integrity: sha512-EhlfNQtZ+NK22w5BM61ciuiq1m58ed33Wr1Xan//ZRTy6hgjnwyCffRYwzsGXdASJSUJ1guZILsErh1eQcl+zw==}
engines: {node: '>=6.9.0'}
'@babel/traverse@7.29.8':
resolution: {integrity: sha512-I5z7H3bf/41ktsNVLtpN0wAa336HkqIHQ5BuPLEhTkt1jVSyZpeNKIzTgEWmlxjdg81R0IgUCcaE+Ok3NvrfZg==}
engines: {node: '>=6.9.0'}
'@babel/types@7.29.7':
resolution: {integrity: sha512-4zBIxpPzowiZpusoFkyGVwakdRJUyuH5PxQ/PrqghfdFWWasvnCdPfQXHrenDai+gyLARulZjZowCOj6fjT4pA==}
engines: {node: '>=6.9.0'}
'@babel/types@7.29.8':
resolution: {integrity: sha512-Vj1jF3cPfxg7OAfoI7QnVKLoILlm2JF9pnVHrX8qx7AHMiYWT+NDAA7jChlNgRS4WTLc/fD1lXLmPixluj+3Gg==}
engines: {node: '>=6.9.0'}
'@bcoe/v8-coverage@1.0.2':
resolution: {integrity: sha512-6zABk/ECA/QYSCQ1NGiVwwbQerUCZ+TQbp64Q3AgmfNvurHH0j8TtXa1qbShXA6qqkpAj4V5W8pP6mLe1mcMqA==}
engines: {node: '>=18'}
@@ -2572,8 +2589,8 @@ packages:
'@tanstack/router-core':
optional: true
'@tanstack/react-router@1.170.17':
resolution: {integrity: sha512-ppLkjCfSMaeug9rmFRYzOd4TIqWV+yTE7tzIny7alJsSnM7w4lzEZm6eqCehG0SPetpZ0R3K+UnanSmBgOAVcQ==}
'@tanstack/react-router@1.170.18':
resolution: {integrity: sha512-wpbGYZEp/fmz1q4bn7BD8VZ+/VZ7GBqSJv5V969pU+chP8y7dquWDmKTFMohvUegb9lg12m1uPVvD6kB2wORvQ==}
engines: {node: '>=20.19'}
peerDependencies:
react: '>=18.0.0 || >=19.0.0'
@@ -2585,8 +2602,8 @@ packages:
react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0
react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0
'@tanstack/router-core@1.171.14':
resolution: {integrity: sha512-Mo3hwx0qB0cJsVYGDjG0+Ouf7VV74h/vsoDMGztdlyzDanp4gBA2s7IVvm6hFrmQM6GpD9F0Z7SqD7OldfLE7g==}
'@tanstack/router-core@1.171.15':
resolution: {integrity: sha512-IILCDcLaItMZQ2jEmCABHY1Nhjjn5XUvwpQp3e4Nmu+vfg0BgYFuu/QASz2SwE2ZNbVMrvt8X/wxa+Gg5aErxA==}
engines: {node: '>=20.19'}
'@tanstack/router-devtools-core@1.168.0':
@@ -2599,16 +2616,16 @@ packages:
csstype:
optional: true
'@tanstack/router-generator@1.167.18':
resolution: {integrity: sha512-kFvM4caRds9Q3EXg64bZubJ6rbDxyV0YDSBSGvOGzmKspQPdz5Xrh0uj5T1Ov8avUUg+c761u04VQAaEzSBXRw==}
'@tanstack/router-generator@1.167.21':
resolution: {integrity: sha512-m3oXZyienj8owialdyoZ0txHQrnEx/Ra+D9kWtar5fC2cWZr5Pvxl86VY2mX5RRLC5QLKLeRGT1x4HV95wHVDQ==}
engines: {node: '>=20.19'}
'@tanstack/router-plugin@1.168.19':
resolution: {integrity: sha512-aFglwLc+bbPTgZlkXn3PvOwpjJAfgUyPGSuql4MP3XrqTTh6WkBiy2RYb6oaG5h0s7EKwivEuq85K3Y4V0Mt1g==}
'@tanstack/router-plugin@1.168.23':
resolution: {integrity: sha512-0+PIcvnaAimFwjoEIeV3h7LKjzC8zNnp7pH2UamdKwQ9QlY99WU9V0Xl0zbM0i9hrUa/mKgWPDAzELmPUu5fMA==}
engines: {node: '>=20.19'}
peerDependencies:
'@rsbuild/core': '>=1.0.2 || ^2.0.0'
'@tanstack/react-router': ^1.170.17
'@tanstack/react-router': ^1.170.18
vite: '>=5.0.0 || >=6.0.0 || >=7.0.0 || >=8.0.0'
vite-plugin-solid: ^2.11.10 || ^3.0.0-0
webpack: '>=5.92.0'
@@ -2923,8 +2940,8 @@ packages:
resolution: {integrity: sha512-BLrgEcRTwX2o6gGxGOCNyMvGSp35YofuYzw9h1IMTRmKqttAZZVU67bdb9Pr2vUHA8+j3i2tJfjO6C6+4myGTA==}
engines: {node: 18 || 20 || >=22}
baseline-browser-mapping@2.10.40:
resolution: {integrity: sha512-BSSLZ9/Cjjv7Gtj5B68ZzXcXUg8iOf3fme+FCuh8rC/Go+Kmh8cox7M3A8dolou16s64QjLPOSdngh7GxXvkSw==}
baseline-browser-mapping@2.11.12:
resolution: {integrity: sha512-r7WnVImvVCeFpf2DOXfy41aPWzeNg3H/A2X4dKmy1QL0MSyyk/e7z8ihJ3N6Nn2PsdhkVlqnEfnUE4a05P2aTA==}
engines: {node: '>=6.0.0'}
hasBin: true
@@ -2952,8 +2969,8 @@ packages:
peerDependencies:
browserslist: '*'
browserslist@4.28.4:
resolution: {integrity: sha512-MTc8i/x9jBQd1iMw2CFGS+rwMa07eYjLR0CCTLDACl9xhxy+nIs3KeML/biicXtk9JrZ6dnnTatmc7ErPXIxqw==}
browserslist@4.28.7:
resolution: {integrity: sha512-JxV13hNrFxqjOc8alRbq9dK1MM79NEXYpma2B2J4wAtpWS5zIEIKqWPGCl7N4o7Uc7B7itylh7SuDujATRyyTw==}
engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7}
hasBin: true
@@ -2972,8 +2989,8 @@ packages:
camel-case@4.1.2:
resolution: {integrity: sha512-gxGWBrTT1JuMx6R+o5PTXMmUnhnVzLQ9SNutD4YqKtI6ap897t3tKECYla6gCWEkplXnlNybEkZg9GEGxKFCgw==}
caniuse-lite@1.0.30001800:
resolution: {integrity: sha512-MMHtuAz9Ys840zAY5F4k6fV5GaivZ9sPk+nz0mY+GYVzRBnYkN0mpqkSR92oWRQ19yQWo4HvBV/FnC16AJX8MA==}
caniuse-lite@1.0.30001806:
resolution: {integrity: sha512-72Cuvd95zbSYPKq6Fhg8eDJRlzgWDf7/mtoZv6Qe/DYNCEBdNxoA3+rZAU2ZhGCpZlns3EssFavaZomckT5Uuw==}
capital-case@1.0.4:
resolution: {integrity: sha512-ds37W8CytHgwnhGGTi88pcPyR15qoNkOpYwmMMfnWqqWgESapLqvDx6huFjQ5vqWSn2Z06173XNA7LtMOeUh1A==}
@@ -3190,8 +3207,8 @@ packages:
dot-case@3.0.4:
resolution: {integrity: sha512-Kv5nKlh6yRrdrGvxeJ2e5y2eRUpkUosIW4A2AS38zwSz27zu7ufDwQPi5Jhs3XAlGNetl3bmnGhQsMtkKJnj3w==}
electron-to-chromium@1.5.383:
resolution: {integrity: sha512-I2484/KkAvl8lm9VyjH2JnbOIV0d/UCqT7gbzs6l+o6Vmn9wgB66uVcKX+Vk6HrXtY6fbWTOEXuv8waDTuFNCw==}
electron-to-chromium@1.5.401:
resolution: {integrity: sha512-H6ViHN68nGYlChEvlIU67fn8O2/tpbWQPwck98yaJmh+08LSvHiydzDQ6oXNccLU3kNRVIRS9A4mA7CG+i6fLQ==}
emoji-regex@10.6.0:
resolution: {integrity: sha512-toUI84YS5YmxW219erniWD0CIVOo46xGKColeNQRgOzDorgBi1v4D71/OFzgD9GO2UGKIv1C3Sp8DAn0+j5w7A==}
@@ -3569,8 +3586,8 @@ packages:
resolution: {integrity: sha512-e6rvdUCiQCAuumZslxRJWR/Doq4VpPR82kqclvcS0efgt430SlGIk05vdCN58+VrzgtIcfNODjozVielycD4Sw==}
engines: {node: '>=16'}
isbot@5.1.44:
resolution: {integrity: sha512-PGEHtwMnKbZpeSEXW2Utx+/JWed7dp6DiH0WWg33vGSDA7RUvpUeJSVlLrVkQ1RCpvDOUc/eH9ql7VsdbBZ8pA==}
isbot@5.2.1:
resolution: {integrity: sha512-dJ+LpKyClQZ7NG+j3OensC/mAZkGpukE9YUrgPYvAZj2doVL0edfDgywTUh5CXa0o+nW9a1V9e5+CJTX8+SxRw==}
engines: {node: '>=18'}
isexe@2.0.0:
@@ -3926,8 +3943,8 @@ packages:
resolution: {integrity: sha512-dRB78srN/l6gqWulah9SrxeYnxeddIG30+GOqK/9OlLVyLg3HPnr6SqOWTWOXKRwC2eGYCkZ59NNuSgvSrpgOA==}
engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
node-releases@2.0.50:
resolution: {integrity: sha512-J6l92tKHX6w8Jy5nO1Vuc01NoIiRGi/d6qBKVxh+IQ8Cr3b6HbVNfKiF8ZpFKufTwpwxMmce2W3iQZ861ZRyTg==}
node-releases@2.0.52:
resolution: {integrity: sha512-MRlTqhAfoMx/4mhEbPo3Hi02g9LJZaJkka69V6h67Cb1gjrAG0jsTE4CZX1eptNx+VCAwJmfpnDIF4P0Nh1A7A==}
engines: {node: '>=18'}
normalize-path@2.1.1:
@@ -4058,8 +4075,8 @@ packages:
resolution: {integrity: sha512-DTPx3RWSSnWyzLxQnlH0rJP+EW5ekl16ZU4/psbIhA0e53kJfdgaN5vKM+xP7yJtXVu+nfdVFmlgFDEKAe4Pyw==}
engines: {node: ^10 || ^12 || >=14}
prettier@3.9.4:
resolution: {integrity: sha512-yWG/o/4oJfo036EKAfK6ACAoDOfHeRHx4tuxkfBZiauURiaSmYwlpOr5LQqKtIkRD2z1PLteme2WoxEnj4tHTg==}
prettier@3.9.6:
resolution: {integrity: sha512-OpN0zzVdiaiAhxpuuj5efpIS4sY9j7bY6uR5mnj5yPzGkdkjNKSJeUThPb60Jw29QuAZgA4o+/iB49kFiaBX6g==}
engines: {node: '>=14'}
hasBin: true
@@ -4235,14 +4252,14 @@ packages:
sentence-case@3.0.4:
resolution: {integrity: sha512-8LS0JInaQMCRoQ7YUytAo/xUu5W2XnQxV2HI/6uM6U7CITS1RqPElr30V6uIqyMKM9lJGRVFy5/4CuzcixNYSg==}
seroval-plugins@1.5.4:
resolution: {integrity: sha512-S0xQPhUTefAhNvNWFg0c1J8qJArHt5KdtJ/cFAofo06KD1MVSeFWyl4iiu+ApDIuw0WhjpOfCdgConOfAnLgkw==}
seroval-plugins@1.6.2:
resolution: {integrity: sha512-TfxuUjlbBESzUOWdTkTKqvSmav0ABym+itetDXLK6mDz8SmrpdI30aF8RTXE8Bvq+tH/1yIDkvy3W0lfQb1ipQ==}
engines: {node: '>=10'}
peerDependencies:
seroval: ^1.0
seroval@1.5.4:
resolution: {integrity: sha512-46uFvgrXTVxZcUorgSSRZ4y+ieqLLQRMlG4bnCZKW3qI6BZm7Rg4ntMW4p1mILEEBZWrFlcpp0AyIIlM6jD9iw==}
seroval@1.6.2:
resolution: {integrity: sha512-mPT+SD2TrlB6wvte1KkYOYUkubaTbd6pZ/6Kk3C9nxzrHmCZyhxOO7XGAeL7f+yLKZglzGtM9odUVvg/EhO+vQ==}
engines: {node: '>=10'}
set-cookie-parser@3.1.0:
@@ -4886,14 +4903,14 @@ snapshots:
'@babel/core@7.29.7':
dependencies:
'@babel/code-frame': 7.29.7
'@babel/generator': 7.29.7
'@babel/generator': 7.29.8
'@babel/helper-compilation-targets': 7.29.7
'@babel/helper-module-transforms': 7.29.7(@babel/core@7.29.7)
'@babel/helpers': 7.29.7
'@babel/parser': 7.29.7
'@babel/parser': 7.29.8
'@babel/template': 7.29.7
'@babel/traverse': 7.29.7
'@babel/types': 7.29.7
'@babel/traverse': 7.29.8
'@babel/types': 7.29.8
'@jridgewell/remapping': 2.3.5
convert-source-map: 2.0.0
debug: 4.4.3
@@ -4911,11 +4928,19 @@ snapshots:
'@jridgewell/trace-mapping': 0.3.31
jsesc: 3.1.0
'@babel/generator@7.29.8':
dependencies:
'@babel/parser': 7.29.8
'@babel/types': 7.29.8
'@jridgewell/gen-mapping': 0.3.13
'@jridgewell/trace-mapping': 0.3.31
jsesc: 3.1.0
'@babel/helper-compilation-targets@7.29.7':
dependencies:
'@babel/compat-data': 7.29.7
'@babel/helper-validator-option': 7.29.7
browserslist: 4.28.4
browserslist: 4.28.7
lru-cache: 5.1.1
semver: 6.3.1
@@ -4923,8 +4948,8 @@ snapshots:
'@babel/helper-module-imports@7.29.7':
dependencies:
'@babel/traverse': 7.29.7
'@babel/types': 7.29.7
'@babel/traverse': 7.29.8
'@babel/types': 7.29.8
transitivePeerDependencies:
- supports-color
@@ -4933,7 +4958,7 @@ snapshots:
'@babel/core': 7.29.7
'@babel/helper-module-imports': 7.29.7
'@babel/helper-validator-identifier': 7.29.7
'@babel/traverse': 7.29.7
'@babel/traverse': 7.29.8
transitivePeerDependencies:
- supports-color
@@ -4948,11 +4973,15 @@ snapshots:
'@babel/helpers@7.29.7':
dependencies:
'@babel/template': 7.29.7
'@babel/types': 7.29.7
'@babel/types': 7.29.8
'@babel/parser@7.29.7':
dependencies:
'@babel/types': 7.29.7
'@babel/types': 7.29.8
'@babel/parser@7.29.8':
dependencies:
'@babel/types': 7.29.8
'@babel/plugin-syntax-import-assertions@7.29.7(@babel/core@7.29.7)':
dependencies:
@@ -4964,17 +4993,29 @@ snapshots:
'@babel/template@7.29.7':
dependencies:
'@babel/code-frame': 7.29.7
'@babel/parser': 7.29.7
'@babel/types': 7.29.7
'@babel/parser': 7.29.8
'@babel/types': 7.29.8
'@babel/traverse@7.29.7':
dependencies:
'@babel/code-frame': 7.29.7
'@babel/generator': 7.29.7
'@babel/generator': 7.29.8
'@babel/helper-globals': 7.29.7
'@babel/parser': 7.29.7
'@babel/parser': 7.29.8
'@babel/template': 7.29.7
'@babel/types': 7.29.7
'@babel/types': 7.29.8
debug: 4.4.3
transitivePeerDependencies:
- supports-color
'@babel/traverse@7.29.8':
dependencies:
'@babel/code-frame': 7.29.7
'@babel/generator': 7.29.8
'@babel/helper-globals': 7.29.7
'@babel/parser': 7.29.8
'@babel/template': 7.29.7
'@babel/types': 7.29.8
debug: 4.4.3
transitivePeerDependencies:
- supports-color
@@ -4984,6 +5025,11 @@ snapshots:
'@babel/helper-string-parser': 7.29.7
'@babel/helper-validator-identifier': 7.29.7
'@babel/types@7.29.8':
dependencies:
'@babel/helper-string-parser': 7.29.7
'@babel/helper-validator-identifier': 7.29.7
'@bcoe/v8-coverage@1.0.2': {}
'@biomejs/biome@2.5.2':
@@ -5527,10 +5573,10 @@ snapshots:
'@graphql-tools/graphql-tag-pluck@8.3.32(graphql@16.14.0)':
dependencies:
'@babel/core': 7.29.7
'@babel/parser': 7.29.7
'@babel/parser': 7.29.8
'@babel/plugin-syntax-import-assertions': 7.29.7(@babel/core@7.29.7)
'@babel/traverse': 7.29.7
'@babel/types': 7.29.7
'@babel/traverse': 7.29.8
'@babel/types': 7.29.8
'@graphql-tools/utils': 11.1.1(graphql@16.14.0)
graphql: 16.14.0
tslib: 2.8.1
@@ -6706,15 +6752,15 @@ snapshots:
'@standard-schema/spec@1.1.0': {}
'@storybook/addon-docs@10.4.6(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(esbuild@0.28.1)(storybook@10.4.6(@testing-library/dom@10.4.1)(@types/react@19.2.17)(prettier@3.9.4)(react@19.2.7))(vite@8.1.5(@types/node@26.1.0)(esbuild@0.28.1)(jiti@2.7.0)(yaml@2.9.0))':
'@storybook/addon-docs@10.4.6(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(esbuild@0.28.1)(storybook@10.4.6(@testing-library/dom@10.4.1)(@types/react@19.2.17)(prettier@3.9.6)(react@19.2.7))(vite@8.1.5(@types/node@26.1.0)(esbuild@0.28.1)(jiti@2.7.0)(yaml@2.9.0))':
dependencies:
'@mdx-js/react': 3.1.1(@types/react@19.2.17)(react@19.2.7)
'@storybook/csf-plugin': 10.4.6(esbuild@0.28.1)(storybook@10.4.6(@testing-library/dom@10.4.1)(@types/react@19.2.17)(prettier@3.9.4)(react@19.2.7))(vite@8.1.5(@types/node@26.1.0)(esbuild@0.28.1)(jiti@2.7.0)(yaml@2.9.0))
'@storybook/csf-plugin': 10.4.6(esbuild@0.28.1)(storybook@10.4.6(@testing-library/dom@10.4.1)(@types/react@19.2.17)(prettier@3.9.6)(react@19.2.7))(vite@8.1.5(@types/node@26.1.0)(esbuild@0.28.1)(jiti@2.7.0)(yaml@2.9.0))
'@storybook/icons': 2.1.0(react@19.2.7)
'@storybook/react-dom-shim': 10.4.6(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)(storybook@10.4.6(@testing-library/dom@10.4.1)(@types/react@19.2.17)(prettier@3.9.4)(react@19.2.7))
'@storybook/react-dom-shim': 10.4.6(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)(storybook@10.4.6(@testing-library/dom@10.4.1)(@types/react@19.2.17)(prettier@3.9.6)(react@19.2.7))
react: 19.2.7
react-dom: 19.2.7(react@19.2.7)
storybook: 10.4.6(@testing-library/dom@10.4.1)(@types/react@19.2.17)(prettier@3.9.4)(react@19.2.7)
storybook: 10.4.6(@testing-library/dom@10.4.1)(@types/react@19.2.17)(prettier@3.9.6)(react@19.2.7)
ts-dedent: 2.3.0
optionalDependencies:
'@types/react': 19.2.17
@@ -6725,10 +6771,10 @@ snapshots:
- vite
- webpack
'@storybook/builder-vite@10.4.6(esbuild@0.28.1)(storybook@10.4.6(@testing-library/dom@10.4.1)(@types/react@19.2.17)(prettier@3.9.4)(react@19.2.7))(vite@8.1.5(@types/node@26.1.0)(esbuild@0.28.1)(jiti@2.7.0)(yaml@2.9.0))':
'@storybook/builder-vite@10.4.6(esbuild@0.28.1)(storybook@10.4.6(@testing-library/dom@10.4.1)(@types/react@19.2.17)(prettier@3.9.6)(react@19.2.7))(vite@8.1.5(@types/node@26.1.0)(esbuild@0.28.1)(jiti@2.7.0)(yaml@2.9.0))':
dependencies:
'@storybook/csf-plugin': 10.4.6(esbuild@0.28.1)(storybook@10.4.6(@testing-library/dom@10.4.1)(@types/react@19.2.17)(prettier@3.9.4)(react@19.2.7))(vite@8.1.5(@types/node@26.1.0)(esbuild@0.28.1)(jiti@2.7.0)(yaml@2.9.0))
storybook: 10.4.6(@testing-library/dom@10.4.1)(@types/react@19.2.17)(prettier@3.9.4)(react@19.2.7)
'@storybook/csf-plugin': 10.4.6(esbuild@0.28.1)(storybook@10.4.6(@testing-library/dom@10.4.1)(@types/react@19.2.17)(prettier@3.9.6)(react@19.2.7))(vite@8.1.5(@types/node@26.1.0)(esbuild@0.28.1)(jiti@2.7.0)(yaml@2.9.0))
storybook: 10.4.6(@testing-library/dom@10.4.1)(@types/react@19.2.17)(prettier@3.9.6)(react@19.2.7)
ts-dedent: 2.3.0
vite: 8.1.5(@types/node@26.1.0)(esbuild@0.28.1)(jiti@2.7.0)(yaml@2.9.0)
transitivePeerDependencies:
@@ -6736,9 +6782,9 @@ snapshots:
- rollup
- webpack
'@storybook/csf-plugin@10.4.6(esbuild@0.28.1)(storybook@10.4.6(@testing-library/dom@10.4.1)(@types/react@19.2.17)(prettier@3.9.4)(react@19.2.7))(vite@8.1.5(@types/node@26.1.0)(esbuild@0.28.1)(jiti@2.7.0)(yaml@2.9.0))':
'@storybook/csf-plugin@10.4.6(esbuild@0.28.1)(storybook@10.4.6(@testing-library/dom@10.4.1)(@types/react@19.2.17)(prettier@3.9.6)(react@19.2.7))(vite@8.1.5(@types/node@26.1.0)(esbuild@0.28.1)(jiti@2.7.0)(yaml@2.9.0))':
dependencies:
storybook: 10.4.6(@testing-library/dom@10.4.1)(@types/react@19.2.17)(prettier@3.9.4)(react@19.2.7)
storybook: 10.4.6(@testing-library/dom@10.4.1)(@types/react@19.2.17)(prettier@3.9.6)(react@19.2.7)
unplugin: 2.3.11
optionalDependencies:
esbuild: 0.28.1
@@ -6750,28 +6796,28 @@ snapshots:
dependencies:
react: 19.2.7
'@storybook/react-dom-shim@10.4.6(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)(storybook@10.4.6(@testing-library/dom@10.4.1)(@types/react@19.2.17)(prettier@3.9.4)(react@19.2.7))':
'@storybook/react-dom-shim@10.4.6(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)(storybook@10.4.6(@testing-library/dom@10.4.1)(@types/react@19.2.17)(prettier@3.9.6)(react@19.2.7))':
dependencies:
react: 19.2.7
react-dom: 19.2.7(react@19.2.7)
storybook: 10.4.6(@testing-library/dom@10.4.1)(@types/react@19.2.17)(prettier@3.9.4)(react@19.2.7)
storybook: 10.4.6(@testing-library/dom@10.4.1)(@types/react@19.2.17)(prettier@3.9.6)(react@19.2.7)
optionalDependencies:
'@types/react': 19.2.17
'@types/react-dom': 19.2.3(@types/react@19.2.17)
'@storybook/react-vite@10.4.6(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(esbuild@0.28.1)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)(storybook@10.4.6(@testing-library/dom@10.4.1)(@types/react@19.2.17)(prettier@3.9.4)(react@19.2.7))(typescript@6.0.3)(vite@8.1.5(@types/node@26.1.0)(esbuild@0.28.1)(jiti@2.7.0)(yaml@2.9.0))':
'@storybook/react-vite@10.4.6(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(esbuild@0.28.1)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)(storybook@10.4.6(@testing-library/dom@10.4.1)(@types/react@19.2.17)(prettier@3.9.6)(react@19.2.7))(typescript@6.0.3)(vite@8.1.5(@types/node@26.1.0)(esbuild@0.28.1)(jiti@2.7.0)(yaml@2.9.0))':
dependencies:
'@joshwooding/vite-plugin-react-docgen-typescript': 0.7.0(typescript@6.0.3)(vite@8.1.5(@types/node@26.1.0)(esbuild@0.28.1)(jiti@2.7.0)(yaml@2.9.0))
'@rollup/pluginutils': 5.4.0
'@storybook/builder-vite': 10.4.6(esbuild@0.28.1)(storybook@10.4.6(@testing-library/dom@10.4.1)(@types/react@19.2.17)(prettier@3.9.4)(react@19.2.7))(vite@8.1.5(@types/node@26.1.0)(esbuild@0.28.1)(jiti@2.7.0)(yaml@2.9.0))
'@storybook/react': 10.4.6(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)(storybook@10.4.6(@testing-library/dom@10.4.1)(@types/react@19.2.17)(prettier@3.9.4)(react@19.2.7))(typescript@6.0.3)
'@storybook/builder-vite': 10.4.6(esbuild@0.28.1)(storybook@10.4.6(@testing-library/dom@10.4.1)(@types/react@19.2.17)(prettier@3.9.6)(react@19.2.7))(vite@8.1.5(@types/node@26.1.0)(esbuild@0.28.1)(jiti@2.7.0)(yaml@2.9.0))
'@storybook/react': 10.4.6(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)(storybook@10.4.6(@testing-library/dom@10.4.1)(@types/react@19.2.17)(prettier@3.9.6)(react@19.2.7))(typescript@6.0.3)
empathic: 2.0.1
magic-string: 0.30.21
react: 19.2.7
react-docgen: 8.0.3
react-dom: 19.2.7(react@19.2.7)
resolve: 1.22.12
storybook: 10.4.6(@testing-library/dom@10.4.1)(@types/react@19.2.17)(prettier@3.9.4)(react@19.2.7)
storybook: 10.4.6(@testing-library/dom@10.4.1)(@types/react@19.2.17)(prettier@3.9.6)(react@19.2.7)
tsconfig-paths: 4.2.0
vite: 8.1.5(@types/node@26.1.0)(esbuild@0.28.1)(jiti@2.7.0)(yaml@2.9.0)
transitivePeerDependencies:
@@ -6783,15 +6829,15 @@ snapshots:
- typescript
- webpack
'@storybook/react@10.4.6(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)(storybook@10.4.6(@testing-library/dom@10.4.1)(@types/react@19.2.17)(prettier@3.9.4)(react@19.2.7))(typescript@6.0.3)':
'@storybook/react@10.4.6(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)(storybook@10.4.6(@testing-library/dom@10.4.1)(@types/react@19.2.17)(prettier@3.9.6)(react@19.2.7))(typescript@6.0.3)':
dependencies:
'@storybook/global': 5.0.0
'@storybook/react-dom-shim': 10.4.6(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)(storybook@10.4.6(@testing-library/dom@10.4.1)(@types/react@19.2.17)(prettier@3.9.4)(react@19.2.7))
'@storybook/react-dom-shim': 10.4.6(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)(storybook@10.4.6(@testing-library/dom@10.4.1)(@types/react@19.2.17)(prettier@3.9.6)(react@19.2.7))
react: 19.2.7
react-docgen: 8.0.3
react-docgen-typescript: 2.4.0(typescript@6.0.3)
react-dom: 19.2.7(react@19.2.7)
storybook: 10.4.6(@testing-library/dom@10.4.1)(@types/react@19.2.17)(prettier@3.9.4)(react@19.2.7)
storybook: 10.4.6(@testing-library/dom@10.4.1)(@types/react@19.2.17)(prettier@3.9.6)(react@19.2.7)
optionalDependencies:
'@types/react': 19.2.17
'@types/react-dom': 19.2.3(@types/react@19.2.17)
@@ -6944,23 +6990,23 @@ snapshots:
'@tanstack/query-core': 5.101.2
react: 19.2.7
'@tanstack/react-router-devtools@1.167.0(@tanstack/react-router@1.170.17(react-dom@19.2.7(react@19.2.7))(react@19.2.7))(@tanstack/router-core@1.171.14)(csstype@3.2.3)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)':
'@tanstack/react-router-devtools@1.167.0(@tanstack/react-router@1.170.18(react-dom@19.2.7(react@19.2.7))(react@19.2.7))(@tanstack/router-core@1.171.15)(csstype@3.2.3)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)':
dependencies:
'@tanstack/react-router': 1.170.17(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
'@tanstack/router-devtools-core': 1.168.0(@tanstack/router-core@1.171.14)(csstype@3.2.3)
'@tanstack/react-router': 1.170.18(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
'@tanstack/router-devtools-core': 1.168.0(@tanstack/router-core@1.171.15)(csstype@3.2.3)
react: 19.2.7
react-dom: 19.2.7(react@19.2.7)
optionalDependencies:
'@tanstack/router-core': 1.171.14
'@tanstack/router-core': 1.171.15
transitivePeerDependencies:
- csstype
'@tanstack/react-router@1.170.17(react-dom@19.2.7(react@19.2.7))(react@19.2.7)':
'@tanstack/react-router@1.170.18(react-dom@19.2.7(react@19.2.7))(react@19.2.7)':
dependencies:
'@tanstack/history': 1.162.0
'@tanstack/react-store': 0.9.3(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
'@tanstack/router-core': 1.171.14
isbot: 5.1.44
'@tanstack/router-core': 1.171.15
isbot: 5.2.1
react: 19.2.7
react-dom: 19.2.7(react@19.2.7)
@@ -6971,47 +7017,47 @@ snapshots:
react-dom: 19.2.7(react@19.2.7)
use-sync-external-store: 1.6.0(react@19.2.7)
'@tanstack/router-core@1.171.14':
'@tanstack/router-core@1.171.15':
dependencies:
'@tanstack/history': 1.162.0
cookie-es: 3.1.1
seroval: 1.5.4
seroval-plugins: 1.5.4(seroval@1.5.4)
seroval: 1.6.2
seroval-plugins: 1.6.2(seroval@1.6.2)
'@tanstack/router-devtools-core@1.168.0(@tanstack/router-core@1.171.14)(csstype@3.2.3)':
'@tanstack/router-devtools-core@1.168.0(@tanstack/router-core@1.171.15)(csstype@3.2.3)':
dependencies:
'@tanstack/router-core': 1.171.14
'@tanstack/router-core': 1.171.15
clsx: 2.1.1
goober: 2.1.19(csstype@3.2.3)
optionalDependencies:
csstype: 3.2.3
'@tanstack/router-generator@1.167.18':
'@tanstack/router-generator@1.167.21':
dependencies:
'@babel/types': 7.29.7
'@tanstack/router-core': 1.171.14
'@babel/types': 7.29.8
'@tanstack/router-core': 1.171.15
'@tanstack/router-utils': 1.162.2
'@tanstack/virtual-file-routes': 1.162.0
jiti: 2.7.0
magic-string: 0.30.21
prettier: 3.9.4
prettier: 3.9.6
zod: 4.4.3
transitivePeerDependencies:
- supports-color
'@tanstack/router-plugin@1.168.19(@tanstack/react-router@1.170.17(react-dom@19.2.7(react@19.2.7))(react@19.2.7))(esbuild@0.28.1)(rolldown@1.1.5)(vite@8.1.5(@types/node@26.1.0)(esbuild@0.28.1)(jiti@2.7.0)(yaml@2.9.0))':
'@tanstack/router-plugin@1.168.23(@tanstack/react-router@1.170.18(react-dom@19.2.7(react@19.2.7))(react@19.2.7))(esbuild@0.28.1)(rolldown@1.1.5)(vite@8.1.5(@types/node@26.1.0)(esbuild@0.28.1)(jiti@2.7.0)(yaml@2.9.0))':
dependencies:
'@babel/core': 7.29.7
'@babel/template': 7.29.7
'@babel/types': 7.29.7
'@tanstack/router-core': 1.171.14
'@tanstack/router-generator': 1.167.18
'@babel/types': 7.29.8
'@tanstack/router-core': 1.171.15
'@tanstack/router-generator': 1.167.21
'@tanstack/router-utils': 1.162.2
chokidar: 5.0.0
unplugin: 3.3.0(esbuild@0.28.1)(rolldown@1.1.5)(vite@8.1.5(@types/node@26.1.0)(esbuild@0.28.1)(jiti@2.7.0)(yaml@2.9.0))
zod: 4.4.3
optionalDependencies:
'@tanstack/react-router': 1.170.17(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
'@tanstack/react-router': 1.170.18(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
vite: 8.1.5(@types/node@26.1.0)(esbuild@0.28.1)(jiti@2.7.0)(yaml@2.9.0)
transitivePeerDependencies:
- '@farmfe/core'
@@ -7025,9 +7071,9 @@ snapshots:
'@tanstack/router-utils@1.162.2':
dependencies:
'@babel/generator': 7.29.7
'@babel/parser': 7.29.7
'@babel/types': 7.29.7
'@babel/generator': 7.29.8
'@babel/parser': 7.29.8
'@babel/types': 7.29.8
ansis: 4.3.1
babel-dead-code-elimination: 1.0.12
diff: 8.0.4
@@ -7083,24 +7129,24 @@ snapshots:
'@types/babel__core@7.20.5':
dependencies:
'@babel/parser': 7.29.7
'@babel/types': 7.29.7
'@babel/parser': 7.29.8
'@babel/types': 7.29.8
'@types/babel__generator': 7.27.0
'@types/babel__template': 7.4.4
'@types/babel__traverse': 7.28.0
'@types/babel__generator@7.27.0':
dependencies:
'@babel/types': 7.29.7
'@babel/types': 7.29.8
'@types/babel__template@7.4.4':
dependencies:
'@babel/parser': 7.29.7
'@babel/types': 7.29.7
'@babel/parser': 7.29.8
'@babel/types': 7.29.8
'@types/babel__traverse@7.28.0':
dependencies:
'@babel/types': 7.29.7
'@babel/types': 7.29.8
'@types/chai@5.2.3':
dependencies:
@@ -7342,9 +7388,9 @@ snapshots:
babel-dead-code-elimination@1.0.12:
dependencies:
'@babel/core': 7.29.7
'@babel/parser': 7.29.7
'@babel/traverse': 7.29.7
'@babel/types': 7.29.7
'@babel/parser': 7.29.8
'@babel/traverse': 7.29.8
'@babel/types': 7.29.8
transitivePeerDependencies:
- supports-color
@@ -7352,7 +7398,7 @@ snapshots:
balanced-match@4.0.4: {}
baseline-browser-mapping@2.10.40: {}
baseline-browser-mapping@2.11.12: {}
before-after-hook@4.0.0: {}
@@ -7371,18 +7417,18 @@ snapshots:
dependencies:
fill-range: 7.1.1
browserslist-to-esbuild@2.1.1(browserslist@4.28.4):
browserslist-to-esbuild@2.1.1(browserslist@4.28.7):
dependencies:
browserslist: 4.28.4
browserslist: 4.28.7
meow: 13.2.0
browserslist@4.28.4:
browserslist@4.28.7:
dependencies:
baseline-browser-mapping: 2.10.40
caniuse-lite: 1.0.30001800
electron-to-chromium: 1.5.383
node-releases: 2.0.50
update-browserslist-db: 1.2.3(browserslist@4.28.4)
baseline-browser-mapping: 2.11.12
caniuse-lite: 1.0.30001806
electron-to-chromium: 1.5.401
node-releases: 2.0.52
update-browserslist-db: 1.2.3(browserslist@4.28.7)
buffer-image-size@0.6.4:
dependencies:
@@ -7399,7 +7445,7 @@ snapshots:
pascal-case: 3.1.2
tslib: 2.8.1
caniuse-lite@1.0.30001800: {}
caniuse-lite@1.0.30001806: {}
capital-case@1.0.4:
dependencies:
@@ -7603,7 +7649,7 @@ snapshots:
no-case: 3.0.4
tslib: 2.8.1
electron-to-chromium@1.5.383: {}
electron-to-chromium@1.5.401: {}
emoji-regex@10.6.0: {}
@@ -7998,7 +8044,7 @@ snapshots:
dependencies:
is-inside-container: 1.0.0
isbot@5.1.44: {}
isbot@5.2.1: {}
isexe@2.0.0: {}
@@ -8216,7 +8262,7 @@ snapshots:
magicast@0.5.3:
dependencies:
'@babel/parser': 7.29.7
'@babel/types': 7.29.7
'@babel/types': 7.29.8
source-map-js: 1.2.1
make-dir@4.0.0:
@@ -8303,7 +8349,7 @@ snapshots:
fetch-blob: 3.2.0
formdata-polyfill: 4.0.10
node-releases@2.0.50: {}
node-releases@2.0.52: {}
normalize-path@2.1.1:
dependencies:
@@ -8513,7 +8559,7 @@ snapshots:
picocolors: 1.1.1
source-map-js: 1.2.1
prettier@3.9.4: {}
prettier@3.9.6: {}
pretty-format@27.5.1:
dependencies:
@@ -8535,7 +8581,7 @@ snapshots:
dependencies:
'@babel/core': 7.29.7
'@babel/traverse': 7.29.7
'@babel/types': 7.29.7
'@babel/types': 7.29.8
'@types/babel__core': 7.20.5
'@types/babel__traverse': 7.28.0
'@types/doctrine': 0.0.9
@@ -8688,11 +8734,11 @@ snapshots:
tslib: 2.8.1
upper-case-first: 2.0.2
seroval-plugins@1.5.4(seroval@1.5.4):
seroval-plugins@1.6.2(seroval@1.6.2):
dependencies:
seroval: 1.5.4
seroval: 1.6.2
seroval@1.5.4: {}
seroval@1.6.2: {}
set-cookie-parser@3.1.0: {}
@@ -8745,7 +8791,7 @@ snapshots:
stdin-discarder@0.3.2: {}
storybook@10.4.6(@testing-library/dom@10.4.1)(@types/react@19.2.17)(prettier@3.9.4)(react@19.2.7):
storybook@10.4.6(@testing-library/dom@10.4.1)(@types/react@19.2.17)(prettier@3.9.6)(react@19.2.7):
dependencies:
'@storybook/global': 5.0.0
'@storybook/icons': 2.1.0(react@19.2.7)
@@ -8764,7 +8810,7 @@ snapshots:
ws: 8.21.0
optionalDependencies:
'@types/react': 19.2.17
prettier: 3.9.4
prettier: 3.9.6
transitivePeerDependencies:
- '@testing-library/dom'
- bufferutil
@@ -8940,9 +8986,9 @@ snapshots:
until-async@3.0.2: {}
update-browserslist-db@1.2.3(browserslist@4.28.4):
update-browserslist-db@1.2.3(browserslist@4.28.7):
dependencies:
browserslist: 4.28.4
browserslist: 4.28.7
escalade: 3.2.0
picocolors: 1.1.1