diff --git a/packages/next/src/build/define-env.ts b/packages/next/src/build/define-env.ts index bf2e24c75d27..443ea6aa349c 100644 --- a/packages/next/src/build/define-env.ts +++ b/packages/next/src/build/define-env.ts @@ -224,6 +224,8 @@ export function getDefineEnv({ }), 'process.env.__NEXT_MANUAL_CLIENT_BASE_PATH': config.experimental.manualClientBasePath ?? false, + 'process.env.__NEXT_RUNTIME_BASE_PATH_ENABLED': + config.experimental.runtimeBasePath ?? false, 'process.env.__NEXT_CLIENT_ROUTER_DYNAMIC_STALETIME': JSON.stringify( isNaN(Number(config.experimental.staleTimes?.dynamic)) ? 0 diff --git a/packages/next/src/client/add-base-path.ts b/packages/next/src/client/add-base-path.ts index 015fb2e5c664..d6ff59a49c03 100644 --- a/packages/next/src/client/add-base-path.ts +++ b/packages/next/src/client/add-base-path.ts @@ -1,9 +1,14 @@ import { addPathPrefix } from '../shared/lib/router/utils/add-path-prefix' +import { getRuntimeBasePath } from '../shared/lib/router/utils/runtime-base-path' import { normalizePathTrailingSlash } from './normalize-trailing-slash' -const basePath = (process.env.__NEXT_ROUTER_BASEPATH as string) || '' +const compileTimeBasePath = + (process.env.__NEXT_ROUTER_BASEPATH as string) || '' export function addBasePath(path: string, required?: boolean): string { + const basePath = process.env.__NEXT_RUNTIME_BASE_PATH_ENABLED + ? getRuntimeBasePath() + : compileTimeBasePath return normalizePathTrailingSlash( process.env.__NEXT_MANUAL_CLIENT_BASE_PATH && !required ? path diff --git a/packages/next/src/client/has-base-path.ts b/packages/next/src/client/has-base-path.ts index e41ba39cfdcc..5ac24f11f36f 100644 --- a/packages/next/src/client/has-base-path.ts +++ b/packages/next/src/client/has-base-path.ts @@ -1,7 +1,12 @@ import { pathHasPrefix } from '../shared/lib/router/utils/path-has-prefix' +import { getRuntimeBasePath } from '../shared/lib/router/utils/runtime-base-path' -const basePath = (process.env.__NEXT_ROUTER_BASEPATH as string) || '' +const compileTimeBasePath = + (process.env.__NEXT_ROUTER_BASEPATH as string) || '' export function hasBasePath(path: string): boolean { + const basePath = process.env.__NEXT_RUNTIME_BASE_PATH_ENABLED + ? getRuntimeBasePath() + : compileTimeBasePath return pathHasPrefix(path, basePath) } diff --git a/packages/next/src/client/index.tsx b/packages/next/src/client/index.tsx index e1bad70a3445..a72afdd3feb9 100644 --- a/packages/next/src/client/index.tsx +++ b/packages/next/src/client/index.tsx @@ -33,6 +33,7 @@ import { ImageConfigContext } from '../shared/lib/image-config-context.shared-ru import type { ImageConfigComplete } from '../shared/lib/image-config' import { removeBasePath } from './remove-base-path' import { hasBasePath } from './has-base-path' +import { setClientRuntimeBasePath } from '../shared/lib/router/utils/runtime-base-path' import { AppRouterContext } from '../shared/lib/app-router-context.shared-runtime' import { adaptForAppRouterInstance, @@ -205,6 +206,10 @@ export async function initialize(opts: { devClient?: any } = {}): Promise<{ ) window.__NEXT_DATA__ = initialData + if (process.env.__NEXT_RUNTIME_BASE_PATH_ENABLED) { + setClientRuntimeBasePath(initialData.basePath || '') + } + defaultLocale = initialData.defaultLocale const prefix: string = initialData.assetPrefix || '' // With dynamic assetPrefix it's no longer possible to set assetPrefix at the build time diff --git a/packages/next/src/client/remove-base-path.ts b/packages/next/src/client/remove-base-path.ts index 8aea7ad38385..82a3ce02d943 100644 --- a/packages/next/src/client/remove-base-path.ts +++ b/packages/next/src/client/remove-base-path.ts @@ -1,6 +1,8 @@ +import { getRuntimeBasePath } from '../shared/lib/router/utils/runtime-base-path' import { hasBasePath } from './has-base-path' -const basePath = (process.env.__NEXT_ROUTER_BASEPATH as string) || '' +const compileTimeBasePath = + (process.env.__NEXT_ROUTER_BASEPATH as string) || '' export function removeBasePath(path: string): string { if (process.env.__NEXT_MANUAL_CLIENT_BASE_PATH) { @@ -9,6 +11,10 @@ export function removeBasePath(path: string): string { } } + const basePath = process.env.__NEXT_RUNTIME_BASE_PATH_ENABLED + ? getRuntimeBasePath() + : compileTimeBasePath + // Can't trim the basePath if it has zero length! if (basePath.length === 0) return path diff --git a/packages/next/src/server/config-schema.ts b/packages/next/src/server/config-schema.ts index 8736c7f29de0..f26912733a03 100644 --- a/packages/next/src/server/config-schema.ts +++ b/packages/next/src/server/config-schema.ts @@ -268,6 +268,7 @@ export const experimentalSchema = { largePageDataBytes: z.number().optional(), linkNoTouchStart: z.boolean().optional(), manualClientBasePath: z.boolean().optional(), + runtimeBasePath: z.boolean().optional(), middlewarePrefetch: z.enum(['strict', 'flexible']).optional(), proxyPrefetch: z.enum(['strict', 'flexible']).optional(), middlewareClientMaxBodySize: zSizeLimit.optional(), diff --git a/packages/next/src/server/config-shared.ts b/packages/next/src/server/config-shared.ts index d861844a1285..3fae68ba52b0 100644 --- a/packages/next/src/server/config-shared.ts +++ b/packages/next/src/server/config-shared.ts @@ -512,6 +512,23 @@ export interface ExperimentalConfig { middlewarePrefetch?: 'strict' | 'flexible' proxyPrefetch?: 'strict' | 'flexible' manualClientBasePath?: boolean + /** + * Read the basePath from the `x-base-path` request header at runtime instead + * of taking it from `next.config.js` at build time. + * + * When enabled: + * - The server reads `x-base-path` from the incoming request, uses it for + * the duration of the render, and writes it into `__NEXT_DATA__.basePath`. + * - The client picks the value up from `__NEXT_DATA__.basePath` and uses + * it for every `addBasePath` / `removeBasePath` call (Link, router.push, + * `_next/data` URLs, page chunk URLs). + * + * Intended for multi-tenant apps where a single Next.js deployment serves + * several sites that live behind different URL prefixes on the same host + * (e.g. `/site-a/*`, `/site-b/*`), with an edge function rewriting the URI + * and injecting `x-base-path` per request. + */ + runtimeBasePath?: boolean /** * CSS Chunking strategy. Defaults to `true` ("loose" mode), which guesses dependencies * between CSS files to keep ordering of them. @@ -1933,6 +1950,7 @@ export const defaultConfig = Object.freeze({ proxyPrefetch: 'flexible', optimisticClientCache: true, manualClientBasePath: false, + runtimeBasePath: false, cpus: Math.max( 1, (Number(process.env.CIRCLE_NODE_TOTAL) || diff --git a/packages/next/src/server/render.tsx b/packages/next/src/server/render.tsx index af6f36d91564..65c2fb79a7b4 100644 --- a/packages/next/src/server/render.tsx +++ b/packages/next/src/server/render.tsx @@ -107,6 +107,24 @@ import { extractNextErrorCode } from '../lib/error-telemetry-utils' import type { DeepReadonly } from '../shared/lib/deep-readonly' import type { PagesDevOverlayBridgeType } from '../next-devtools/userspace/pages/pages-dev-overlay-setup' import { getScriptNonceFromHeader } from './app-render/get-script-nonce-from-header' +import { + getRuntimeBasePath, + runWithRuntimeBasePath, +} from '../shared/lib/router/utils/runtime-base-path' + +const RUNTIME_BASE_PATH_HEADER = 'x-base-path' + +function readRuntimeBasePathHeader(req: IncomingMessage): string { + const raw = req.headers[RUNTIME_BASE_PATH_HEADER] + const value = Array.isArray(raw) ? raw[0] : raw + if (!value) return '' + const trimmed = value.trim() + if (!trimmed || trimmed === '/') return '' + const withLeadingSlash = trimmed.startsWith('/') ? trimmed : `/${trimmed}` + return withLeadingSlash.endsWith('/') + ? withLeadingSlash.slice(0, -1) + : withLeadingSlash +} let tryGetPreviewData: typeof import('./api-utils/node/try-get-preview-data').tryGetPreviewData let warn: typeof import('../build/output/log').warn @@ -1520,6 +1538,9 @@ export async function renderToHTMLImpl( notFoundSrcPage && process.env.__NEXT_DEV_SERVER ? notFoundSrcPage : undefined, + basePath: process.env.__NEXT_RUNTIME_BASE_PATH_ENABLED + ? getRuntimeBasePath() || undefined + : undefined, }, nonce, buildManifest: filteredBuildManifest, @@ -1630,14 +1651,20 @@ export const renderToHTML: PagesRender = ( sharedContext, renderContext ) => { - return renderToHTMLImpl( - req, - res, - pathname, - query, - renderOpts, - renderOpts, - sharedContext, - renderContext - ) + const invoke = () => + renderToHTMLImpl( + req, + res, + pathname, + query, + renderOpts, + renderOpts, + sharedContext, + renderContext + ) + + if (process.env.__NEXT_RUNTIME_BASE_PATH_ENABLED) { + return runWithRuntimeBasePath(readRuntimeBasePathHeader(req), invoke) + } + return invoke() } diff --git a/packages/next/src/shared/lib/router/router.ts b/packages/next/src/shared/lib/router/router.ts index 088c34aa1d7a..392b2970c039 100644 --- a/packages/next/src/shared/lib/router/router.ts +++ b/packages/next/src/shared/lib/router/router.ts @@ -807,7 +807,11 @@ export default class Router implements BaseRouter { const autoExportDynamic = isDynamicRoute(pathname) && self.__NEXT_DATA__.autoExport - this.basePath = process.env.__NEXT_ROUTER_BASEPATH || '' + this.basePath = process.env.__NEXT_RUNTIME_BASE_PATH_ENABLED + ? self.__NEXT_DATA__.basePath || + process.env.__NEXT_ROUTER_BASEPATH || + '' + : process.env.__NEXT_ROUTER_BASEPATH || '' this.sub = subscription this.clc = null this._wrapApp = wrapApp diff --git a/packages/next/src/shared/lib/router/utils/runtime-base-path.ts b/packages/next/src/shared/lib/router/utils/runtime-base-path.ts new file mode 100644 index 000000000000..08995d1d4e2d --- /dev/null +++ b/packages/next/src/shared/lib/router/utils/runtime-base-path.ts @@ -0,0 +1,47 @@ +import { createAsyncLocalStorage } from '../../../../server/app-render/async-local-storage' + +// Client-side: a single module-scoped value, hydrated from +// `__NEXT_DATA__.basePath` during client bootstrap. The browser only ever +// renders one document at a time, so a single mutable value is enough. +let clientBasePath = '' + +// Server-side: a per-request value held in AsyncLocalStorage so concurrent +// renders don't see each other's basePath. `createAsyncLocalStorage()` +// returns a no-op implementation in environments without `AsyncLocalStorage` +// (e.g. browsers), and `getStore()` returns `undefined` there — the client +// falls through to `clientBasePath`. +const runtimeBasePathStorage = createAsyncLocalStorage<{ basePath: string }>() + +/** + * Returns the basePath that should be applied to URLs at this moment. + * + * On the server, this is the value the current request was rendered with + * (set via `runWithRuntimeBasePath`). On the client, this is the value + * hydrated from `__NEXT_DATA__.basePath`. + * + * Only meaningful when `experimental.runtimeBasePath` is enabled. + */ +export function getRuntimeBasePath(): string { + const store = runtimeBasePathStorage.getStore() + if (store) return store.basePath + return clientBasePath +} + +/** + * Sets the client-side runtime basePath. Should be called exactly once + * during client bootstrap, before the router is created. + */ +export function setClientRuntimeBasePath(basePath: string): void { + clientBasePath = basePath +} + +/** + * Runs `fn` with the given basePath as the active runtime basePath. + * Used on the server to scope a render to a per-request basePath. + */ +export function runWithRuntimeBasePath( + basePath: string, + fn: () => R +): R { + return runtimeBasePathStorage.run({ basePath }, fn) +} diff --git a/packages/next/src/shared/lib/utils.ts b/packages/next/src/shared/lib/utils.ts index 109e5c90d047..a50069f1d728 100644 --- a/packages/next/src/shared/lib/utils.ts +++ b/packages/next/src/shared/lib/utils.ts @@ -113,6 +113,12 @@ export type NEXT_DATA = { scriptLoader?: any[] isPreview?: boolean notFoundSrcPage?: string + /** + * Per-request basePath when `experimental.runtimeBasePath` is enabled. + * The client reads this on hydration and uses it for all subsequent + * URL building (Link, router navigation, `_next/data` fetches). + */ + basePath?: string } /** diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 188650ad0bb6..f48e1c076355 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -22,41 +22,41 @@ overrides: react-is: npm:react-is@19.3.0-canary-dd453071-20260506 scheduler: npm:scheduler@0.28.0-canary-dd453071-20260506 -packageExtensionsChecksum: sha256-ylDR55omOZlT4Sfpfh6n7mO2r/cLCmlirAikJ/E/LAw= +packageExtensionsChecksum: 2c0398c5f3e8ad5816061c5823d227e9 patchedDependencies: '@modelcontextprotocol/sdk': - hash: 680fe4edb7abd1de29d08cdf217a22506e815a8cc1c2282201d5d47aa3e5da12 + hash: 2fip6jynpzvju4dccxvduglole path: patches/@modelcontextprotocol__sdk.patch '@rspack/core@1.6.7': - hash: 4cf28ea116b0e27c7c80b09035905f9d16a7b18d1f2b7d312fc80d42cd57068d + hash: jdm5v6k2jahxcby2dvmlprnxie path: patches/@rspack__core@1.6.7.patch '@types/node@20.17.6': - hash: 9c31d25336aea4076b3cb942c35e59fd160c540947f01ea455a060367153f9fd + hash: rvl3vkomen3tospgr67bzubfyu path: patches/@types__node@20.17.6.patch '@vercel/blob': - hash: cb53bfa5effb15b3a361e176003df667cadf757b27b7c9b458c2f0fce86ea893 + hash: wgz7wsmk55gemyvvjomcxgvlu4 path: patches/@vercel__blob.patch http-proxy@1.18.1: - hash: 3aac1c597fabd03f9fb4e3fd6e689b87012758d4fed06f296541f9dc3b8d7b39 + hash: eyqcxg3pntyhqyqr5zytxa7pbi path: patches/http-proxy@1.18.1.patch minizlib@3.1.0: - hash: 587688821244aaee46680929cd869947377a284ac1b30c9ae8660a5ea7d2be67 + hash: o4nv5mg6kfnuzlknbdln3azhvu path: patches/minizlib@3.1.0.patch postcss-scss: - hash: 88893e632b3e099730dc0ffcc93cf3654b31c277da9e2796e822f6b5aeedc093 + hash: gvnkumx3bgxdg2bw7ttpz6v4ma path: patches/postcss-scss.patch stacktrace-parser@0.1.10: - hash: 5e07adcb70fa52f969ea76c939668fd09762774a60ec849622e44e5362354dd5 + hash: x5tdcojc7b5m2b5ojepbcdl36a path: patches/stacktrace-parser@0.1.10.patch taskr@1.1.0: - hash: 1d0f571943b5d4761d4f2f39723796e402dd317f14a7c714e2021d3f12cc481c + hash: utitb3olraq7egc3hk7waltisu path: patches/taskr@1.1.0.patch web-vitals@4.2.1: - hash: f4d0a6719cc28520df7c47a0e2c2641759c2a0ad06ad57868c4c9d0567d4276d + hash: efp2yd5xczijcd5bxgfzqgk3te path: patches/web-vitals@4.2.1.patch webpack-sources@3.2.3: - hash: 26afc15966a3fc37a3d1d366312a95ce66723513f6a3a720e4166a37147da8bd + hash: jbynf5dc46ambamq3wuyho6hkq path: patches/webpack-sources@3.2.3.patch importers: @@ -161,7 +161,7 @@ importers: version: 1.5.10 '@rspack/core': specifier: 1.6.7 - version: 1.6.7(patch_hash=4cf28ea116b0e27c7c80b09035905f9d16a7b18d1f2b7d312fc80d42cd57068d)(@swc/helpers@0.5.15) + version: 1.6.7(patch_hash=jdm5v6k2jahxcby2dvmlprnxie)(@swc/helpers@0.5.15) '@slack/web-api': specifier: 7.9.1 version: 7.9.1 @@ -182,7 +182,7 @@ importers: version: 1.1.0 '@testing-library/jest-dom': specifier: 6.1.2 - version: 6.1.2(@jest/globals@29.7.0)(@types/jest@29.5.5)(jest@29.7.0(@types/node@20.17.6(patch_hash=9c31d25336aea4076b3cb942c35e59fd160c540947f01ea455a060367153f9fd))(babel-plugin-macros@3.1.0)) + version: 6.1.2(@jest/globals@29.7.0)(@types/jest@29.5.5)(jest@29.7.0(@types/node@20.17.6(patch_hash=rvl3vkomen3tospgr67bzubfyu))(babel-plugin-macros@3.1.0)) '@testing-library/react': specifier: ^15.0.5 version: 15.0.7(@types/react@19.2.10)(react-dom@19.3.0-canary-dd453071-20260506(react@19.3.0-canary-dd453071-20260506))(react@19.3.0-canary-dd453071-20260506) @@ -215,7 +215,7 @@ importers: version: 29.5.5 '@types/node': specifier: 20.17.6 - version: 20.17.6(patch_hash=9c31d25336aea4076b3cb942c35e59fd160c540947f01ea455a060367153f9fd) + version: 20.17.6(patch_hash=rvl3vkomen3tospgr67bzubfyu) '@types/node-fetch': specifier: 2.6.1 version: 2.6.1 @@ -245,7 +245,7 @@ importers: version: 0.9.5 '@vercel/blob': specifier: 2.3.2 - version: 2.3.2(patch_hash=cb53bfa5effb15b3a361e176003df667cadf757b27b7c9b458c2f0fce86ea893) + version: 2.3.2(patch_hash=wgz7wsmk55gemyvvjomcxgvlu4) '@vercel/devlow-bench': specifier: workspace:* version: link:turbopack/packages/devlow-bench @@ -323,7 +323,7 @@ importers: version: 2.31.0(eslint@9.37.0(jiti@2.6.1)) eslint-plugin-jest: specifier: 27.6.3 - version: 27.6.3(eslint@9.37.0(jiti@2.6.1))(jest@29.7.0(@types/node@20.17.6(patch_hash=9c31d25336aea4076b3cb942c35e59fd160c540947f01ea455a060367153f9fd))(babel-plugin-macros@3.1.0))(typescript@6.0.2) + version: 27.6.3(eslint@9.37.0(jiti@2.6.1))(jest@29.7.0(@types/node@20.17.6(patch_hash=rvl3vkomen3tospgr67bzubfyu))(babel-plugin-macros@3.1.0))(typescript@6.0.2) eslint-plugin-jsdoc: specifier: 48.0.4 version: 48.0.4(eslint@9.37.0(jiti@2.6.1)) @@ -389,7 +389,7 @@ importers: version: 5.1.18 http-proxy: specifier: 1.18.1 - version: 1.18.1(patch_hash=3aac1c597fabd03f9fb4e3fd6e689b87012758d4fed06f296541f9dc3b8d7b39) + version: 1.18.1(patch_hash=eyqcxg3pntyhqyqr5zytxa7pbi) husky: specifier: 9.0.11 version: 9.0.11 @@ -404,7 +404,7 @@ importers: version: 3.0.0(encoding@0.1.13) jest: specifier: 29.7.0 - version: 29.7.0(@types/node@20.17.6(patch_hash=9c31d25336aea4076b3cb942c35e59fd160c540947f01ea455a060367153f9fd))(babel-plugin-macros@3.1.0) + version: 29.7.0(@types/node@20.17.6(patch_hash=rvl3vkomen3tospgr67bzubfyu))(babel-plugin-macros@3.1.0) jest-diff: specifier: 29.7.0 version: 29.7.0 @@ -413,7 +413,7 @@ importers: version: 29.7.0 jest-extended: specifier: 4.0.2 - version: 4.0.2(jest@29.7.0(@types/node@20.17.6(patch_hash=9c31d25336aea4076b3cb942c35e59fd160c540947f01ea455a060367153f9fd))(babel-plugin-macros@3.1.0)) + version: 4.0.2(jest@29.7.0(@types/node@20.17.6(patch_hash=rvl3vkomen3tospgr67bzubfyu))(babel-plugin-macros@3.1.0)) jest-junit: specifier: 16.0.0 version: 16.0.0 @@ -434,7 +434,7 @@ importers: version: 0.6.0(encoding@0.1.13)(ky@0.19.1) lerna: specifier: 9.0.3 - version: 9.0.3(@swc/core@1.11.24(@swc/helpers@0.5.15))(@types/node@20.17.6(patch_hash=9c31d25336aea4076b3cb942c35e59fd160c540947f01ea455a060367153f9fd))(babel-plugin-macros@3.1.0) + version: 9.0.3(@swc/core@1.11.24(@swc/helpers@0.5.15))(@types/node@20.17.6(patch_hash=rvl3vkomen3tospgr67bzubfyu))(babel-plugin-macros@3.1.0) lint-staged: specifier: 15.2.2 version: 15.2.2 @@ -605,7 +605,7 @@ importers: version: 3.2.7(postcss@8.5.10) taskr: specifier: 1.1.0 - version: 1.1.0(patch_hash=1d0f571943b5d4761d4f2f39723796e402dd317f14a7c714e2021d3f12cc481c) + version: 1.1.0(patch_hash=utitb3olraq7egc3hk7waltisu) tree-kill: specifier: 1.2.2 version: 1.2.2 @@ -714,7 +714,7 @@ importers: version: 4.1.13 '@types/node': specifier: 20.17.6 - version: 20.17.6(patch_hash=9c31d25336aea4076b3cb942c35e59fd160c540947f01ea455a060367153f9fd) + version: 20.17.6(patch_hash=rvl3vkomen3tospgr67bzubfyu) '@types/react': specifier: 19.2.10 version: 19.2.10 @@ -933,7 +933,7 @@ importers: version: 6.0.0 '@types/node': specifier: 20.17.6 - version: 20.17.6(patch_hash=9c31d25336aea4076b3cb942c35e59fd160c540947f01ea455a060367153f9fd) + version: 20.17.6(patch_hash=rvl3vkomen3tospgr67bzubfyu) '@types/prompts': specifier: 2.4.2 version: 2.4.2 @@ -1086,6 +1086,10 @@ importers: styled-jsx: specifier: 5.1.6 version: 5.1.6(@babel/core@7.26.10)(babel-plugin-macros@3.1.0)(react@19.3.0-canary-dd453071-20260506) + optionalDependencies: + sharp: + specifier: ^0.34.5 + version: 0.34.5 devDependencies: '@babel/core': specifier: 7.26.10 @@ -1173,7 +1177,7 @@ importers: version: 29.5.0 '@modelcontextprotocol/sdk': specifier: 1.18.1 - version: 1.18.1(patch_hash=680fe4edb7abd1de29d08cdf217a22506e815a8cc1c2282201d5d47aa3e5da12) + version: 1.18.1(patch_hash=2fip6jynpzvju4dccxvduglole) '@mswjs/interceptors': specifier: 0.23.0 version: 0.23.0 @@ -1203,7 +1207,7 @@ importers: version: 1.58.2 '@rspack/core': specifier: 1.6.7 - version: 1.6.7(patch_hash=4cf28ea116b0e27c7c80b09035905f9d16a7b18d1f2b7d312fc80d42cd57068d)(@swc/helpers@0.5.15) + version: 1.6.7(patch_hash=jdm5v6k2jahxcby2dvmlprnxie)(@swc/helpers@0.5.15) '@storybook/addon-a11y': specifier: 8.6.0 version: 8.6.0(storybook@8.6.0(prettier@3.6.2)) @@ -1224,13 +1228,13 @@ importers: version: 8.6.0(@storybook/test@8.6.0(storybook@8.6.0(prettier@3.6.2)))(react-dom@19.3.0-canary-dd453071-20260506(react@19.3.0-canary-dd453071-20260506))(react@19.3.0-canary-dd453071-20260506)(storybook@8.6.0(prettier@3.6.2))(typescript@6.0.2) '@storybook/react-webpack5': specifier: 8.6.0 - version: 8.6.0(@rspack/core@1.6.7(patch_hash=4cf28ea116b0e27c7c80b09035905f9d16a7b18d1f2b7d312fc80d42cd57068d)(@swc/helpers@0.5.15))(@storybook/test@8.6.0(storybook@8.6.0(prettier@3.6.2)))(@swc/core@1.11.24(@swc/helpers@0.5.15))(esbuild@0.25.9)(react-dom@19.3.0-canary-dd453071-20260506(react@19.3.0-canary-dd453071-20260506))(react@19.3.0-canary-dd453071-20260506)(storybook@8.6.0(prettier@3.6.2))(typescript@6.0.2) + version: 8.6.0(@rspack/core@1.6.7(patch_hash=jdm5v6k2jahxcby2dvmlprnxie)(@swc/helpers@0.5.15))(@storybook/test@8.6.0(storybook@8.6.0(prettier@3.6.2)))(@swc/core@1.11.24(@swc/helpers@0.5.15))(esbuild@0.25.9)(react-dom@19.3.0-canary-dd453071-20260506(react@19.3.0-canary-dd453071-20260506))(react@19.3.0-canary-dd453071-20260506)(storybook@8.6.0(prettier@3.6.2))(typescript@6.0.2) '@storybook/test': specifier: 8.6.0 version: 8.6.0(storybook@8.6.0(prettier@3.6.2)) '@storybook/test-runner': specifier: 0.21.0 - version: 0.21.0(@swc/helpers@0.5.15)(@types/node@20.17.6(patch_hash=9c31d25336aea4076b3cb942c35e59fd160c540947f01ea455a060367153f9fd))(babel-plugin-macros@3.1.0)(debug@4.1.1)(storybook@8.6.0(prettier@3.6.2)) + version: 0.21.0(@swc/helpers@0.5.15)(@types/node@20.17.6(patch_hash=rvl3vkomen3tospgr67bzubfyu))(babel-plugin-macros@3.1.0)(debug@4.1.1)(storybook@8.6.0(prettier@3.6.2)) '@swc/core': specifier: 1.11.24 version: 1.11.24(@swc/helpers@0.5.15) @@ -1344,7 +1348,7 @@ importers: version: 8.2.0 '@vercel/blob': specifier: 2.3.2 - version: 2.3.2(patch_hash=cb53bfa5effb15b3a361e176003df667cadf757b27b7c9b458c2f0fce86ea893) + version: 2.3.2(patch_hash=wgz7wsmk55gemyvvjomcxgvlu4) '@vercel/ncc': specifier: 0.38.4 version: 0.38.4 @@ -1449,7 +1453,7 @@ importers: version: 3.12.0 css-loader: specifier: 7.1.2 - version: 7.1.2(@rspack/core@1.6.7(patch_hash=4cf28ea116b0e27c7c80b09035905f9d16a7b18d1f2b7d312fc80d42cd57068d)(@swc/helpers@0.5.15))(webpack@5.98.0(@swc/core@1.11.24(@swc/helpers@0.5.15))(esbuild@0.25.9)) + version: 7.1.2(@rspack/core@1.6.7(patch_hash=jdm5v6k2jahxcby2dvmlprnxie)(@swc/helpers@0.5.15))(webpack@5.98.0(@swc/core@1.11.24(@swc/helpers@0.5.15))(esbuild@0.25.9)) css.escape: specifier: 1.5.1 version: 1.5.1 @@ -1488,7 +1492,7 @@ importers: version: 5.1.1 http-proxy: specifier: 1.18.1 - version: 1.18.1(patch_hash=3aac1c597fabd03f9fb4e3fd6e689b87012758d4fed06f296541f9dc3b8d7b39) + version: 1.18.1(patch_hash=eyqcxg3pntyhqyqr5zytxa7pbi) http-proxy-agent: specifier: 5.0.0 version: 5.0.0 @@ -1599,7 +1603,7 @@ importers: version: 6.0.0(postcss@8.5.10) postcss-scss: specifier: 4.0.3 - version: 4.0.3(patch_hash=88893e632b3e099730dc0ffcc93cf3654b31c277da9e2796e822f6b5aeedc093)(postcss@8.5.10) + version: 4.0.3(patch_hash=gvnkumx3bgxdg2bw7ttpz6v4ma)(postcss@8.5.10) postcss-value-parser: specifier: 4.2.0 version: 4.2.0 @@ -1629,7 +1633,7 @@ importers: version: 2.5.0 sass-loader: specifier: 16.0.5 - version: 16.0.5(@rspack/core@1.6.7(patch_hash=4cf28ea116b0e27c7c80b09035905f9d16a7b18d1f2b7d312fc80d42cd57068d)(@swc/helpers@0.5.15))(sass@1.77.8)(webpack@5.98.0(@swc/core@1.11.24(@swc/helpers@0.5.15))(esbuild@0.25.9)) + version: 16.0.5(@rspack/core@1.6.7(patch_hash=jdm5v6k2jahxcby2dvmlprnxie)(@swc/helpers@0.5.15))(sass@1.77.8)(webpack@5.98.0(@swc/core@1.11.24(@swc/helpers@0.5.15))(esbuild@0.25.9)) schema-utils2: specifier: npm:schema-utils@2.7.1 version: schema-utils@2.7.1 @@ -1665,7 +1669,7 @@ importers: version: source-map@0.8.0-beta.0 stacktrace-parser: specifier: 0.1.10 - version: 0.1.10(patch_hash=5e07adcb70fa52f969ea76c939668fd09762774a60ec849622e44e5362354dd5) + version: 0.1.10(patch_hash=x5tdcojc7b5m2b5ojepbcdl36a) storybook: specifier: 8.6.0 version: 8.6.0(prettier@3.6.2) @@ -1698,7 +1702,7 @@ importers: version: 7.5.11 taskr: specifier: 1.1.0 - version: 1.1.0(patch_hash=1d0f571943b5d4761d4f2f39723796e402dd317f14a7c714e2021d3f12cc481c) + version: 1.1.0(patch_hash=utitb3olraq7egc3hk7waltisu) terser: specifier: 5.27.0 version: 5.27.0 @@ -1734,7 +1738,7 @@ importers: version: 2.4.0 web-vitals: specifier: 4.2.1 - version: 4.2.1(patch_hash=f4d0a6719cc28520df7c47a0e2c2641759c2a0ad06ad57868c4c9d0567d4276d) + version: 4.2.1(patch_hash=efp2yd5xczijcd5bxgfzqgk3te) webpack: specifier: 5.98.0 version: 5.98.0(@swc/core@1.11.24(@swc/helpers@0.5.15))(esbuild@0.25.9) @@ -1743,7 +1747,7 @@ importers: version: webpack-sources@1.4.3 webpack-sources3: specifier: npm:webpack-sources@3.2.3 - version: webpack-sources@3.2.3(patch_hash=26afc15966a3fc37a3d1d366312a95ce66723513f6a3a720e4166a37147da8bd) + version: webpack-sources@3.2.3(patch_hash=jbynf5dc46ambamq3wuyho6hkq) write-file-atomic: specifier: 7.0.1 version: 7.0.1 @@ -1756,10 +1760,6 @@ importers: zod-validation-error: specifier: 3.4.0 version: 3.4.0(zod@3.25.76) - optionalDependencies: - sharp: - specifier: ^0.34.5 - version: 0.34.5 packages/next-bundle-analyzer: dependencies: @@ -1885,10 +1885,10 @@ importers: version: 0.38.4 jest: specifier: ^29.5.0 - version: 29.7.0(@types/node@20.17.6(patch_hash=9c31d25336aea4076b3cb942c35e59fd160c540947f01ea455a060367153f9fd))(babel-plugin-macros@3.1.0) + version: 29.7.0(@types/node@20.17.6(patch_hash=rvl3vkomen3tospgr67bzubfyu))(babel-plugin-macros@3.1.0) ts-jest: specifier: ^29.1.0 - version: 29.4.5(@babel/core@7.26.10)(@jest/transform@29.7.0)(@jest/types@29.6.3)(babel-jest@29.7.0(@babel/core@7.26.10))(jest-util@29.7.0)(jest@29.7.0(@types/node@20.17.6(patch_hash=9c31d25336aea4076b3cb942c35e59fd160c540947f01ea455a060367153f9fd))(babel-plugin-macros@3.1.0))(typescript@6.0.2) + version: 29.4.5(@babel/core@7.26.10)(@jest/transform@29.7.0)(@jest/types@29.6.3)(babel-jest@29.7.0(@babel/core@7.26.10))(jest-util@29.7.0)(jest@29.7.0(@types/node@20.17.6(patch_hash=rvl3vkomen3tospgr67bzubfyu))(babel-plugin-macros@3.1.0))(typescript@6.0.2) packages/next-rspack: dependencies: @@ -1947,13 +1947,13 @@ importers: devDependencies: '@types/node': specifier: 20.17.6 - version: 20.17.6(patch_hash=9c31d25336aea4076b3cb942c35e59fd160c540947f01ea455a060367153f9fd) + version: 20.17.6(patch_hash=rvl3vkomen3tospgr67bzubfyu) turbopack/crates/turbopack-ecmascript-runtime/js: dependencies: '@types/node': specifier: 20.17.6 - version: 20.17.6(patch_hash=9c31d25336aea4076b3cb942c35e59fd160c540947f01ea455a060367153f9fd) + version: 20.17.6(patch_hash=rvl3vkomen3tospgr67bzubfyu) devDependencies: '@next/react-refresh-utils': specifier: workspace:* @@ -1973,7 +1973,7 @@ importers: version: 2.2.8 '@types/node': specifier: 20.17.6 - version: 20.17.6(patch_hash=9c31d25336aea4076b3cb942c35e59fd160c540947f01ea455a060367153f9fd) + version: 20.17.6(patch_hash=rvl3vkomen3tospgr67bzubfyu) turbopack/crates/turbopack-tests/tests/execution: dependencies: @@ -2028,7 +2028,7 @@ importers: version: 1.2.5 '@types/node': specifier: 20.17.6 - version: 20.17.6(patch_hash=9c31d25336aea4076b3cb942c35e59fd160c540947f01ea455a060367153f9fd) + version: 20.17.6(patch_hash=rvl3vkomen3tospgr67bzubfyu) '@types/split2': specifier: ^4.2.0 version: 4.2.3 @@ -2129,14 +2129,12 @@ packages: engines: {node: '>= 10'} cpu: [arm64] os: [linux] - libc: [glibc] '@ast-grep/cli-linux-x64-gnu@0.31.0': resolution: {integrity: sha512-LqJpwTrEfOrV1+zMkBvYNmDTcMVAt4xZI5aIOVw4bau78jYTnu7gbwZnofx67ZdLKInnxlE2+oKKLVO/seNbgw==} engines: {node: '>= 10'} cpu: [x64] os: [linux] - libc: [glibc] '@ast-grep/cli-win32-arm64-msvc@0.31.0': resolution: {integrity: sha512-rQWWEvpOMp11VoCyJIJgyB8xc/QbOXnJ+8bqHmOKdpK2gfwHevgQbwlPEMGDCah1rYyzt/2X8MSw0DtcRIrzvw==} @@ -2917,8 +2915,8 @@ packages: deprecated: Package was renamed to @base-ui/react peerDependencies: '@types/react': 19.2.10 - react: ^17 || ^18 || ^19 - react-dom: ^17 || ^18 || ^19 + react: npm:react@19.3.0-canary-dd453071-20260506 + react-dom: npm:react-dom@19.3.0-canary-dd453071-20260506 peerDependenciesMeta: '@types/react': optional: true @@ -2928,8 +2926,8 @@ packages: deprecated: Package was renamed to @base-ui/utils peerDependencies: '@types/react': 19.2.10 - react: ^17 || ^18 || ^19 - react-dom: ^17 || ^18 || ^19 + react: npm:react@19.3.0-canary-dd453071-20260506 + react-dom: npm:react-dom@19.3.0-canary-dd453071-20260506 peerDependenciesMeta: '@types/react': optional: true @@ -3084,7 +3082,7 @@ packages: resolution: {integrity: sha512-5mlW1DquU5HaxjLkfkGN1GA/fvVGdyHURRiX/0FHl2cfIfRxSOfmxEH5YS43edp0OldZrZ+dkBKbngxcNCdZvA==} peerDependencies: '@types/react': '*' - react: '>=16.8.0' + react: npm:react@19.3.0-canary-dd453071-20260506 peerDependenciesMeta: '@types/react': optional: true @@ -3101,7 +3099,7 @@ packages: '@emotion/use-insertion-effect-with-fallbacks@1.0.1': resolution: {integrity: sha512-jT/qyKZ9rzLErtrjGgdkMBn2OP8wl0G3sQlBb3YPryvKHsjvINUhVaPFfP+fpBcOkmrVOVEEHQFJ7nbj2TH2gw==} peerDependencies: - react: '>=16.8.0' + react: npm:react@19.3.0-canary-dd453071-20260506 '@emotion/utils@1.2.1': resolution: {integrity: sha512-Y2tGf3I+XVnajdItskUCn6LX+VUDmP6lTL4fcqsXAv43dnlbZiuW4MWQW38rW/BVWSE7Q/7+XQocmpnRYILUmg==} @@ -3606,20 +3604,20 @@ packages: '@floating-ui/react-dom@2.1.0': resolution: {integrity: sha512-lNzj5EQmEKn5FFKc04+zasr09h/uX8RtJRNj5gUXsSQIXHVWTVh+hVAg1vOMCexkX8EgvemMvIFpQfkosnVNyA==} peerDependencies: - react: '>=16.8.0' - react-dom: '>=16.8.0' + react: npm:react@19.3.0-canary-dd453071-20260506 + react-dom: npm:react-dom@19.3.0-canary-dd453071-20260506 '@floating-ui/react-dom@2.1.5': resolution: {integrity: sha512-HDO/1/1oH9fjj4eLgegrlH3dklZpHtUYYFiVwMUwfGvk9jWDRWqkklA2/NFScknrcNSspbV868WjXORvreDX+Q==} peerDependencies: - react: '>=16.8.0' - react-dom: '>=16.8.0' + react: npm:react@19.3.0-canary-dd453071-20260506 + react-dom: npm:react-dom@19.3.0-canary-dd453071-20260506 '@floating-ui/react@0.26.16': resolution: {integrity: sha512-HEf43zxZNAI/E781QIVpYSF3K2VH4TTYZpqecjdsFkjsaU1EbaWcM++kw0HXFffj7gDUcBFevX8s0rQGQpxkow==} peerDependencies: - react: '>=16.8.0' - react-dom: '>=16.8.0' + react: npm:react@19.3.0-canary-dd453071-20260506 + react-dom: npm:react-dom@19.3.0-canary-dd453071-20260506 '@floating-ui/utils@0.2.10': resolution: {integrity: sha512-aGTxbpbg8/b5JfU1HXSrbH3wXZuLPJcNEcZQFMxLs3oSzgtVu6nFPkbbGGUvBcUjKV2YyB9Wxxabo+HEH9tcRQ==} @@ -3726,105 +3724,89 @@ packages: resolution: {integrity: sha512-excjX8DfsIcJ10x1Kzr4RcWe1edC9PquDRRPx3YVCvQv+U5p7Yin2s32ftzikXojb1PIFc/9Mt28/y+iRklkrw==} cpu: [arm64] os: [linux] - libc: [glibc] '@img/sharp-libvips-linux-arm@1.2.4': resolution: {integrity: sha512-bFI7xcKFELdiNCVov8e44Ia4u2byA+l3XtsAj+Q8tfCwO6BQ8iDojYdvoPMqsKDkuoOo+X6HZA0s0q11ANMQ8A==} cpu: [arm] os: [linux] - libc: [glibc] '@img/sharp-libvips-linux-ppc64@1.2.4': resolution: {integrity: sha512-FMuvGijLDYG6lW+b/UvyilUWu5Ayu+3r2d1S8notiGCIyYU/76eig1UfMmkZ7vwgOrzKzlQbFSuQfgm7GYUPpA==} cpu: [ppc64] os: [linux] - libc: [glibc] '@img/sharp-libvips-linux-riscv64@1.2.4': resolution: {integrity: sha512-oVDbcR4zUC0ce82teubSm+x6ETixtKZBh/qbREIOcI3cULzDyb18Sr/Wcyx7NRQeQzOiHTNbZFF1UwPS2scyGA==} cpu: [riscv64] os: [linux] - libc: [glibc] '@img/sharp-libvips-linux-s390x@1.2.4': resolution: {integrity: sha512-qmp9VrzgPgMoGZyPvrQHqk02uyjA0/QrTO26Tqk6l4ZV0MPWIW6LTkqOIov+J1yEu7MbFQaDpwdwJKhbJvuRxQ==} cpu: [s390x] os: [linux] - libc: [glibc] '@img/sharp-libvips-linux-x64@1.2.4': resolution: {integrity: sha512-tJxiiLsmHc9Ax1bz3oaOYBURTXGIRDODBqhveVHonrHJ9/+k89qbLl0bcJns+e4t4rvaNBxaEZsFtSfAdquPrw==} cpu: [x64] os: [linux] - libc: [glibc] '@img/sharp-libvips-linuxmusl-arm64@1.2.4': resolution: {integrity: sha512-FVQHuwx1IIuNow9QAbYUzJ+En8KcVm9Lk5+uGUQJHaZmMECZmOlix9HnH7n1TRkXMS0pGxIJokIVB9SuqZGGXw==} cpu: [arm64] os: [linux] - libc: [musl] '@img/sharp-libvips-linuxmusl-x64@1.2.4': resolution: {integrity: sha512-+LpyBk7L44ZIXwz/VYfglaX/okxezESc6UxDSoyo2Ks6Jxc4Y7sGjpgU9s4PMgqgjj1gZCylTieNamqA1MF7Dg==} cpu: [x64] os: [linux] - libc: [musl] '@img/sharp-linux-arm64@0.34.5': resolution: {integrity: sha512-bKQzaJRY/bkPOXyKx5EVup7qkaojECG6NLYswgktOZjaXecSAeCWiZwwiFf3/Y+O1HrauiE3FVsGxFg8c24rZg==} engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} cpu: [arm64] os: [linux] - libc: [glibc] '@img/sharp-linux-arm@0.34.5': resolution: {integrity: sha512-9dLqsvwtg1uuXBGZKsxem9595+ujv0sJ6Vi8wcTANSFpwV/GONat5eCkzQo/1O6zRIkh0m/8+5BjrRr7jDUSZw==} engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} cpu: [arm] os: [linux] - libc: [glibc] '@img/sharp-linux-ppc64@0.34.5': resolution: {integrity: sha512-7zznwNaqW6YtsfrGGDA6BRkISKAAE1Jo0QdpNYXNMHu2+0dTrPflTLNkpc8l7MUP5M16ZJcUvysVWWrMefZquA==} engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} cpu: [ppc64] os: [linux] - libc: [glibc] '@img/sharp-linux-riscv64@0.34.5': resolution: {integrity: sha512-51gJuLPTKa7piYPaVs8GmByo7/U7/7TZOq+cnXJIHZKavIRHAP77e3N2HEl3dgiqdD/w0yUfiJnII77PuDDFdw==} engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} cpu: [riscv64] os: [linux] - libc: [glibc] '@img/sharp-linux-s390x@0.34.5': resolution: {integrity: sha512-nQtCk0PdKfho3eC5MrbQoigJ2gd1CgddUMkabUj+rBevs8tZ2cULOx46E7oyX+04WGfABgIwmMC0VqieTiR4jg==} engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} cpu: [s390x] os: [linux] - libc: [glibc] '@img/sharp-linux-x64@0.34.5': resolution: {integrity: sha512-MEzd8HPKxVxVenwAa+JRPwEC7QFjoPWuS5NZnBt6B3pu7EG2Ge0id1oLHZpPJdn3OQK+BQDiw9zStiHBTJQQQQ==} engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} cpu: [x64] os: [linux] - libc: [glibc] '@img/sharp-linuxmusl-arm64@0.34.5': resolution: {integrity: sha512-fprJR6GtRsMt6Kyfq44IsChVZeGN97gTD331weR1ex1c1rypDEABN6Tm2xa1wE6lYb5DdEnk03NZPqA7Id21yg==} engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} cpu: [arm64] os: [linux] - libc: [musl] '@img/sharp-linuxmusl-x64@0.34.5': resolution: {integrity: sha512-Jg8wNT1MUzIvhBFxViqrEhWDGzqymo3sV7z7ZsaWbZNDLXRJZoRGrjulp60YYtV4wfY8VIKcWidjojlLcWrd8Q==} engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} cpu: [x64] os: [linux] - libc: [musl] '@img/sharp-wasm32@0.34.5': resolution: {integrity: sha512-OdWTEiVkY2PHwqkbBI8frFxQQFekHaSSkUIJkwzclWZe64O1X4UlUjqqqLaPbUpMOQk6FBu/HtlGXNblIs0huw==} @@ -4236,13 +4218,13 @@ packages: resolution: {integrity: sha512-l9ypojKN3PjwO1CSLIsqxi7mA25+7w+xc71Q+JuCCREI0tuGwkZsKbIOpuTATIJOjPh8ycLiW7QxX1LYsRTq6w==} peerDependencies: '@mantine/hooks': 7.10.1 - react: ^18.2.0 - react-dom: ^18.2.0 + react: npm:react@19.3.0-canary-dd453071-20260506 + react-dom: npm:react-dom@19.3.0-canary-dd453071-20260506 '@mantine/hooks@7.10.1': resolution: {integrity: sha512-0EH9WBWUdtQLGU3Ak+csQ77EtUxI6pPNfwZdRJQWcaA3f8SFOLo9h9CGxiikFExerhvuCeUlaTf3s+TB9Op/rw==} peerDependencies: - react: ^18.2.0 + react: npm:react@19.3.0-canary-dd453071-20260506 '@mapbox/node-pre-gyp@1.0.5': resolution: {integrity: sha512-4srsKPXWlIxp5Vbqz5uLfBN+du2fJChBoYn/f2h991WLdk7jUvcSk/McVLSv/X+xQIPI8eGD5GjrnygdyHnhPA==} @@ -4259,13 +4241,13 @@ packages: '@mdx-js/react@2.2.1': resolution: {integrity: sha512-YdXcMcEnqZhzql98RNrqYo9cEhTTesBiCclEtoiQUbJwx87q9453GTapYU6kJ8ZZ2ek1Vp25SiAXEFy5O/eAPw==} peerDependencies: - react: '>=16' + react: npm:react@19.3.0-canary-dd453071-20260506 '@mdx-js/react@3.1.0': resolution: {integrity: sha512-QjHtSaoameoalGnKDT3FoIl4+9RwyTmo9ZJGBdLOks/YOiWHoRDI3PUwEzOE7kEmGcV3AFcp9K6dYu9rEuKLAQ==} peerDependencies: '@types/react': 19.2.10 - react: '>=16' + react: npm:react@19.3.0-canary-dd453071-20260506 '@modelcontextprotocol/sdk@1.18.1': resolution: {integrity: sha512-d//GE8/Yh7aC3e7p+kZG8JqqEAwwDUmAfvH1quogtbk+ksS6E0RR6toKKESPYYZVre0meqkJb27zb+dhqE9Sgw==} @@ -4350,25 +4332,21 @@ packages: resolution: {integrity: sha512-af43QsBhRZ7kX/KjA9b5mrSLFMpRSuF7E2i9eBxrFkFpI2H4UCR0lSLcFmpkCnA/u2Q8a8KHhye88zDwUP8saQ==} cpu: [arm64] os: [linux] - libc: [glibc] '@next/rspack-binding-linux-arm64-musl@1.0.2': resolution: {integrity: sha512-ZuORUowizCrzoESLyUBGTzJjXyCixtdsTKp7EOLr2oLh2umzksm/e9Cm+iuy8qjkO+TFR1ny5L4YYCUOsYa+Kg==} cpu: [arm64] os: [linux] - libc: [musl] '@next/rspack-binding-linux-x64-gnu@1.0.2': resolution: {integrity: sha512-Bv0DS+jUwL5fQxcC3DiE6MbfssDF//kJ5rOnNey8EcLReqpz+WPuJKTqRvyUtvx77Sg3o7yADS3UsSTrHKn6iQ==} cpu: [x64] os: [linux] - libc: [glibc] '@next/rspack-binding-linux-x64-musl@1.0.2': resolution: {integrity: sha512-wjLXX7XaCvd+ISRZHVOEa9FvXDX8KV0HPyNJuapUO150ho7kXt0ZfY9vGm/0UCO7X4hCgnGzsnBZOzYdgT/RqQ==} cpu: [x64] os: [linux] - libc: [musl] '@next/rspack-binding-win32-arm64-msvc@1.0.2': resolution: {integrity: sha512-OQ0Uv9ZbMB8BZFJP2n7dLIc4kjfr76J1JPCtPNB3/BvE2xpAIEcYmkwSP0GrVL/H+1xLMqLwblqt7xyc65hfuw==} @@ -4408,28 +4386,24 @@ packages: engines: {node: '>= 10'} cpu: [arm64] os: [linux] - libc: [glibc] '@next/swc-linux-arm64-musl@16.2.3': resolution: {integrity: sha512-/YV0LgjHUmfhQpn9bVoGc4x4nan64pkhWR5wyEV8yCOfwwrH630KpvRg86olQHTwHIn1z59uh6JwKvHq1h4QEw==} engines: {node: '>= 10'} cpu: [arm64] os: [linux] - libc: [musl] '@next/swc-linux-x64-gnu@16.2.3': resolution: {integrity: sha512-/HiWEcp+WMZ7VajuiMEFGZ6cg0+aYZPqCJD3YJEfpVWQsKYSjXQG06vJP6F1rdA03COD9Fef4aODs3YxKx+RDQ==} engines: {node: '>= 10'} cpu: [x64] os: [linux] - libc: [glibc] '@next/swc-linux-x64-musl@16.2.3': resolution: {integrity: sha512-Kt44hGJfZSefebhk/7nIdivoDr3Ugp5+oNz9VvF3GUtfxutucUIHfIO0ZYO8QlOPDQloUVQn4NVC/9JvHRk9hw==} engines: {node: '>= 10'} cpu: [x64] os: [linux] - libc: [musl] '@next/swc-win32-arm64-msvc@16.2.3': resolution: {integrity: sha512-O2NZ9ie3Tq6xj5Z5CSwBT3+aWAMW2PIZ4egUi9MaWLkwaehgtB7YZjPm+UpcNpKOme0IQuqDcor7BsW6QBiQBw==} @@ -4602,25 +4576,21 @@ packages: resolution: {integrity: sha512-RjkjNDxEUVKXkSeSVTvVM97g7r+hZI90lrNHj0LByJPNCGjPydS6VnWxhFmO+I6fgCJIxdqkc0tAesmE4O7wZQ==} cpu: [arm64] os: [linux] - libc: [glibc] '@nx/nx-linux-arm64-musl@22.2.3': resolution: {integrity: sha512-4P5Nrg2AQD0AqRdNnUGNwQ3/DjazE0+VSCOF7bONEP5o2ANHrJ52GE283sggTZ2UGtGQICMeQmuOIA1DlGrR+g==} cpu: [arm64] os: [linux] - libc: [musl] '@nx/nx-linux-x64-gnu@22.2.3': resolution: {integrity: sha512-3rIAec4NsjRpWrVlLgknvqbZWuJuYwGiezhXero2tJGE3tQFEnd0MDTIFfUpFVzVUCbKCXsAvSSDpPJgFRlohA==} cpu: [x64] os: [linux] - libc: [glibc] '@nx/nx-linux-x64-musl@22.2.3': resolution: {integrity: sha512-nopBYWHib35F41QT86Yvbm2tof3wYHCK5TD0KUuHVId+9rci6Z+/h8JBaxwIwsucp26W7n47PnUsVA3a4Dlmag==} cpu: [x64] os: [linux] - libc: [musl] '@nx/nx-win32-arm64-msvc@22.2.3': resolution: {integrity: sha512-O6Hxf6s5cOjT1XwSdSrKaXJv0yLptYTET26BUQsT3aGF5Kw+WSs19IVTP8BWeHZIrwC5jwvYvdj6sT0ebwN06Q==} @@ -4897,8 +4867,8 @@ packages: peerDependencies: '@types/react': 19.2.10 '@types/react-dom': 19.2.3 - react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc - react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc + react: npm:react@19.3.0-canary-dd453071-20260506 + react-dom: npm:react-dom@19.3.0-canary-dd453071-20260506 peerDependenciesMeta: '@types/react': optional: true @@ -4910,8 +4880,8 @@ packages: peerDependencies: '@types/react': 19.2.10 '@types/react-dom': 19.2.3 - react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc - react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc + react: npm:react@19.3.0-canary-dd453071-20260506 + react-dom: npm:react-dom@19.3.0-canary-dd453071-20260506 peerDependenciesMeta: '@types/react': optional: true @@ -4923,8 +4893,8 @@ packages: peerDependencies: '@types/react': 19.2.10 '@types/react-dom': 19.2.3 - react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc - react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc + react: npm:react@19.3.0-canary-dd453071-20260506 + react-dom: npm:react-dom@19.3.0-canary-dd453071-20260506 peerDependenciesMeta: '@types/react': optional: true @@ -4936,8 +4906,8 @@ packages: peerDependencies: '@types/react': 19.2.10 '@types/react-dom': 19.2.3 - react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc - react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc + react: npm:react@19.3.0-canary-dd453071-20260506 + react-dom: npm:react-dom@19.3.0-canary-dd453071-20260506 peerDependenciesMeta: '@types/react': optional: true @@ -4949,8 +4919,8 @@ packages: peerDependencies: '@types/react': 19.2.10 '@types/react-dom': 19.2.3 - react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc - react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc + react: npm:react@19.3.0-canary-dd453071-20260506 + react-dom: npm:react-dom@19.3.0-canary-dd453071-20260506 peerDependenciesMeta: '@types/react': optional: true @@ -4961,7 +4931,7 @@ packages: resolution: {integrity: sha512-b4inOtiaOnYf9KWyO3jAeeCG6FeyfY6ldiEPanbUjWd+xIk5wZeHa8yVwmrJ2vderhu/BQvzCrJI0lHd+wIiqw==} peerDependencies: '@types/react': 19.2.10 - react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc + react: npm:react@19.3.0-canary-dd453071-20260506 peerDependenciesMeta: '@types/react': optional: true @@ -4970,7 +4940,7 @@ packages: resolution: {integrity: sha512-Y9VzoRDSJtgFMUCoiZBDVo084VQ5hfpXxVE+NgkdNsjiDBByiImMZKKhxMwCbdHvhlENG6a833CbFkOQvTricw==} peerDependencies: '@types/react': 19.2.10 - react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc + react: npm:react@19.3.0-canary-dd453071-20260506 peerDependenciesMeta: '@types/react': optional: true @@ -4979,7 +4949,7 @@ packages: resolution: {integrity: sha512-z4eqJvfiNnFMHIIvXP3CY57y2WJs5g2v3X0zm9mEJkrkNv4rDxu+sg9Jh8EkXyeqBkB7SOcboo9dMVqhyrACIg==} peerDependencies: '@types/react': 19.2.10 - react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc + react: npm:react@19.3.0-canary-dd453071-20260506 peerDependenciesMeta: '@types/react': optional: true @@ -4988,7 +4958,7 @@ packages: resolution: {integrity: sha512-OKrckBy+sMEgYM/sMmqmErVn0kZqrHPJze+Ql3DzYsDDp0hl0L62nx/2122/Bvps1qz645jlcu2tD9lrRSdf8A==} peerDependencies: '@types/react': 19.2.10 - react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc + react: npm:react@19.3.0-canary-dd453071-20260506 peerDependenciesMeta: '@types/react': optional: true @@ -4997,7 +4967,7 @@ packages: resolution: {integrity: sha512-UASk9zi+crv9WteK/NU4PLvOoL3OuE6BWVKNF6hPRBtYBDXQ2u5iu3O59zUlJiTVvkyuycnqrztsHVJwcK9K+Q==} peerDependencies: '@types/react': 19.2.10 - react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc + react: npm:react@19.3.0-canary-dd453071-20260506 peerDependenciesMeta: '@types/react': optional: true @@ -5006,7 +4976,7 @@ packages: resolution: {integrity: sha512-jCi/QKUM2r1Ju5a3J64TH2A5SpKAgh0LpknyqdQ4m6DCV0xJ2HG1xARRwNGPQfi1SLdLWZ1OJz6F4OMBBNiGJA==} peerDependencies: '@types/react': 19.2.10 - react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc + react: npm:react@19.3.0-canary-dd453071-20260506 peerDependenciesMeta: '@types/react': optional: true @@ -5016,8 +4986,8 @@ packages: peerDependencies: '@types/react': 19.2.10 '@types/react-dom': 19.2.3 - react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc - react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc + react: npm:react@19.3.0-canary-dd453071-20260506 + react-dom: npm:react-dom@19.3.0-canary-dd453071-20260506 peerDependenciesMeta: '@types/react': optional: true @@ -5028,7 +4998,7 @@ packages: resolution: {integrity: sha512-BUuBvgThEiAXh2DWu93XsT+a3aWrGqolGlqqw5VU1kG7p/ZH2cuDlM1sRLNnY3QcBS69UIz2mcKhMxDsdewhjg==} peerDependencies: '@types/react': 19.2.10 - react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc + react: npm:react@19.3.0-canary-dd453071-20260506 peerDependenciesMeta: '@types/react': optional: true @@ -5037,7 +5007,7 @@ packages: resolution: {integrity: sha512-1UEWRX6jnOA2y4H5WczZ44gOOjTEmlqv1uNW4GAJEO5+bauCBhv8snY65Iw5/VOS/ghKN9gr2KjnLKxrsvoMVw==} peerDependencies: '@types/react': 19.2.10 - react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc + react: npm:react@19.3.0-canary-dd453071-20260506 peerDependenciesMeta: '@types/react': optional: true @@ -5047,8 +5017,8 @@ packages: peerDependencies: '@types/react': 19.2.10 '@types/react-dom': 19.2.3 - react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc - react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc + react: npm:react@19.3.0-canary-dd453071-20260506 + react-dom: npm:react-dom@19.3.0-canary-dd453071-20260506 peerDependenciesMeta: '@types/react': optional: true @@ -5060,8 +5030,8 @@ packages: peerDependencies: '@types/react': 19.2.10 '@types/react-dom': 19.2.3 - react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc - react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc + react: npm:react@19.3.0-canary-dd453071-20260506 + react-dom: npm:react-dom@19.3.0-canary-dd453071-20260506 peerDependenciesMeta: '@types/react': optional: true @@ -5073,8 +5043,8 @@ packages: peerDependencies: '@types/react': 19.2.10 '@types/react-dom': 19.2.3 - react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc - react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc + react: npm:react@19.3.0-canary-dd453071-20260506 + react-dom: npm:react-dom@19.3.0-canary-dd453071-20260506 peerDependenciesMeta: '@types/react': optional: true @@ -5085,7 +5055,7 @@ packages: resolution: {integrity: sha512-pSIwfrT1a6sIoDASCSpFwOasEwKTZWDw/iBdtnqKO7v6FeOzYJ7U53cPzYFVR3geGGXgVHaH+CdngrrAzqUGxg==} peerDependencies: '@types/react': 19.2.10 - react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc + react: npm:react@19.3.0-canary-dd453071-20260506 peerDependenciesMeta: '@types/react': optional: true @@ -5094,7 +5064,7 @@ packages: resolution: {integrity: sha512-0rFg/Rj2Q62NCm62jZw0QX7a3sz6QCQU0LpZdNrJX8byRGaGVTqbrW9jAoIAHyMQqsNpeZ81YgSizOt5WXq0Pw==} peerDependencies: '@types/react': 19.2.10 - react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc + react: npm:react@19.3.0-canary-dd453071-20260506 peerDependenciesMeta: '@types/react': optional: true @@ -5104,8 +5074,8 @@ packages: peerDependencies: '@types/react': 19.2.10 '@types/react-dom': 19.2.3 - react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc - react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc + react: npm:react@19.3.0-canary-dd453071-20260506 + react-dom: npm:react-dom@19.3.0-canary-dd453071-20260506 peerDependenciesMeta: '@types/react': optional: true @@ -5117,8 +5087,8 @@ packages: peerDependencies: '@types/react': 19.2.10 '@types/react-dom': 19.2.3 - react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc - react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc + react: npm:react@19.3.0-canary-dd453071-20260506 + react-dom: npm:react-dom@19.3.0-canary-dd453071-20260506 peerDependenciesMeta: '@types/react': optional: true @@ -5129,7 +5099,7 @@ packages: resolution: {integrity: sha512-EJUrI8yYh7WOjNOqpoJaf1jlFIH2LvtgAl+YcFqNCa+4hj64ZXmPkAKOFs/ukjz3byN6bdb/AVUqHkI8/uWWMA==} peerDependencies: '@types/react': 19.2.10 - react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc + react: npm:react@19.3.0-canary-dd453071-20260506 peerDependenciesMeta: '@types/react': optional: true @@ -5138,7 +5108,7 @@ packages: resolution: {integrity: sha512-kGkGegYIdQsOb4XjsfM97rXsiHaBwco+hFI66oO4s9LU+PLAC5oJ7khdOVFxkhsmlbpUqDAvXw11CluXP+jkHg==} peerDependencies: '@types/react': 19.2.10 - react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc + react: npm:react@19.3.0-canary-dd453071-20260506 peerDependenciesMeta: '@types/react': optional: true @@ -5148,8 +5118,8 @@ packages: peerDependencies: '@types/react': 19.2.10 '@types/react-dom': 19.2.3 - react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc - react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc + react: npm:react@19.3.0-canary-dd453071-20260506 + react-dom: npm:react-dom@19.3.0-canary-dd453071-20260506 peerDependenciesMeta: '@types/react': optional: true @@ -5161,8 +5131,8 @@ packages: peerDependencies: '@types/react': 19.2.10 '@types/react-dom': 19.2.3 - react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc - react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc + react: npm:react@19.3.0-canary-dd453071-20260506 + react-dom: npm:react-dom@19.3.0-canary-dd453071-20260506 peerDependenciesMeta: '@types/react': optional: true @@ -5174,8 +5144,8 @@ packages: peerDependencies: '@types/react': 19.2.10 '@types/react-dom': 19.2.3 - react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc - react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc + react: npm:react@19.3.0-canary-dd453071-20260506 + react-dom: npm:react-dom@19.3.0-canary-dd453071-20260506 peerDependenciesMeta: '@types/react': optional: true @@ -5187,8 +5157,8 @@ packages: peerDependencies: '@types/react': 19.2.10 '@types/react-dom': 19.2.3 - react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc - react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc + react: npm:react@19.3.0-canary-dd453071-20260506 + react-dom: npm:react-dom@19.3.0-canary-dd453071-20260506 peerDependenciesMeta: '@types/react': optional: true @@ -5200,8 +5170,8 @@ packages: peerDependencies: '@types/react': 19.2.10 '@types/react-dom': 19.2.3 - react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc - react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc + react: npm:react@19.3.0-canary-dd453071-20260506 + react-dom: npm:react-dom@19.3.0-canary-dd453071-20260506 peerDependenciesMeta: '@types/react': optional: true @@ -5213,8 +5183,8 @@ packages: peerDependencies: '@types/react': 19.2.10 '@types/react-dom': 19.2.3 - react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc - react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc + react: npm:react@19.3.0-canary-dd453071-20260506 + react-dom: npm:react-dom@19.3.0-canary-dd453071-20260506 peerDependenciesMeta: '@types/react': optional: true @@ -5226,8 +5196,8 @@ packages: peerDependencies: '@types/react': 19.2.10 '@types/react-dom': 19.2.3 - react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc - react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc + react: npm:react@19.3.0-canary-dd453071-20260506 + react-dom: npm:react-dom@19.3.0-canary-dd453071-20260506 peerDependenciesMeta: '@types/react': optional: true @@ -5239,8 +5209,8 @@ packages: peerDependencies: '@types/react': 19.2.10 '@types/react-dom': 19.2.3 - react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc - react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc + react: npm:react@19.3.0-canary-dd453071-20260506 + react-dom: npm:react-dom@19.3.0-canary-dd453071-20260506 peerDependenciesMeta: '@types/react': optional: true @@ -5252,8 +5222,8 @@ packages: peerDependencies: '@types/react': 19.2.10 '@types/react-dom': 19.2.3 - react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc - react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc + react: npm:react@19.3.0-canary-dd453071-20260506 + react-dom: npm:react-dom@19.3.0-canary-dd453071-20260506 peerDependenciesMeta: '@types/react': optional: true @@ -5265,8 +5235,8 @@ packages: peerDependencies: '@types/react': 19.2.10 '@types/react-dom': 19.2.3 - react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc - react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc + react: npm:react@19.3.0-canary-dd453071-20260506 + react-dom: npm:react-dom@19.3.0-canary-dd453071-20260506 peerDependenciesMeta: '@types/react': optional: true @@ -5278,8 +5248,8 @@ packages: peerDependencies: '@types/react': 19.2.10 '@types/react-dom': 19.2.3 - react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc - react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc + react: npm:react@19.3.0-canary-dd453071-20260506 + react-dom: npm:react-dom@19.3.0-canary-dd453071-20260506 peerDependenciesMeta: '@types/react': optional: true @@ -5291,8 +5261,8 @@ packages: peerDependencies: '@types/react': 19.2.10 '@types/react-dom': 19.2.3 - react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc - react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc + react: npm:react@19.3.0-canary-dd453071-20260506 + react-dom: npm:react-dom@19.3.0-canary-dd453071-20260506 peerDependenciesMeta: '@types/react': optional: true @@ -5304,8 +5274,8 @@ packages: peerDependencies: '@types/react': 19.2.10 '@types/react-dom': 19.2.3 - react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc - react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc + react: npm:react@19.3.0-canary-dd453071-20260506 + react-dom: npm:react-dom@19.3.0-canary-dd453071-20260506 peerDependenciesMeta: '@types/react': optional: true @@ -5317,8 +5287,8 @@ packages: peerDependencies: '@types/react': 19.2.10 '@types/react-dom': 19.2.3 - react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc - react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc + react: npm:react@19.3.0-canary-dd453071-20260506 + react-dom: npm:react-dom@19.3.0-canary-dd453071-20260506 peerDependenciesMeta: '@types/react': optional: true @@ -5329,7 +5299,7 @@ packages: resolution: {integrity: sha512-FUCf5XMfmW4dtYl69pdS4DbxKy8nj4M7SafBgPllysxmdachynNflAdp/gCsnYWNDnge6tI9onzMp5ARYc1KNw==} peerDependencies: '@types/react': 19.2.10 - react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc + react: npm:react@19.3.0-canary-dd453071-20260506 peerDependenciesMeta: '@types/react': optional: true @@ -5338,7 +5308,7 @@ packages: resolution: {integrity: sha512-RApLLOcINYJA+dMVbOju7MYv1Mb2EBp2nH4HdDzXTSyaR5optlm6Otrz1euW3HbdOR8UmmFK06TD+A9frYWv+g==} peerDependencies: '@types/react': 19.2.10 - react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc + react: npm:react@19.3.0-canary-dd453071-20260506 peerDependenciesMeta: '@types/react': optional: true @@ -5347,7 +5317,7 @@ packages: resolution: {integrity: sha512-aeNmHnBxbi2St0au6VBVC7JXFlhLlOnvIIlePNniyUNAClzmtAUEY8/pBiK3iHjufOlwA+c20/8jngo7xcrg8A==} peerDependencies: '@types/react': 19.2.10 - react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc + react: npm:react@19.3.0-canary-dd453071-20260506 peerDependenciesMeta: '@types/react': optional: true @@ -5357,8 +5327,8 @@ packages: peerDependencies: '@types/react': 19.2.10 '@types/react-dom': 19.2.3 - react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc - react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc + react: npm:react@19.3.0-canary-dd453071-20260506 + react-dom: npm:react-dom@19.3.0-canary-dd453071-20260506 peerDependenciesMeta: '@types/react': optional: true @@ -5370,8 +5340,8 @@ packages: peerDependencies: '@types/react': 19.2.10 '@types/react-dom': 19.2.3 - react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc - react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc + react: npm:react@19.3.0-canary-dd453071-20260506 + react-dom: npm:react-dom@19.3.0-canary-dd453071-20260506 peerDependenciesMeta: '@types/react': optional: true @@ -5383,8 +5353,8 @@ packages: peerDependencies: '@types/react': 19.2.10 '@types/react-dom': 19.2.3 - react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc - react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc + react: npm:react@19.3.0-canary-dd453071-20260506 + react-dom: npm:react-dom@19.3.0-canary-dd453071-20260506 peerDependenciesMeta: '@types/react': optional: true @@ -5395,7 +5365,7 @@ packages: resolution: {integrity: sha512-CasTfvsy+frcFkbXtSJ2Zu9JHpN8TYKxkgJGWbjiZhFivxaeW7rMeZt7QELGVLaYVfFMsKHjb7Ak0nMEe+2Vfw==} peerDependencies: '@types/react': 19.2.10 - react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc + react: npm:react@19.3.0-canary-dd453071-20260506 peerDependenciesMeta: '@types/react': optional: true @@ -5404,7 +5374,7 @@ packages: resolution: {integrity: sha512-FkBMwD+qbGQeMu1cOHnuGB6x4yzPjho8ap5WtbEJ26umhgqVXbhekKUQO+hZEL1vU92a3wHwdp0HAcqAUF5iDg==} peerDependencies: '@types/react': 19.2.10 - react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc + react: npm:react@19.3.0-canary-dd453071-20260506 peerDependenciesMeta: '@types/react': optional: true @@ -5413,7 +5383,7 @@ packages: resolution: {integrity: sha512-MtfMVJiSr2NjzS0Aa90NPTnvTSg6C/JLCV7ma0W6+OMV78vd8OyRpID+Ng9LxzsPbLeuBnWBA1Nq30AtBIDChw==} peerDependencies: '@types/react': 19.2.10 - react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc + react: npm:react@19.3.0-canary-dd453071-20260506 peerDependenciesMeta: '@types/react': optional: true @@ -5422,7 +5392,7 @@ packages: resolution: {integrity: sha512-BjasUjixPFdS+NKkypcyyN5Pmg83Olst0+c6vGov0diwTEo6mgdqVR6hxcEgFuh4QrAs7Rc+9KuGJ9TVCj0Zzg==} peerDependencies: '@types/react': 19.2.10 - react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc + react: npm:react@19.3.0-canary-dd453071-20260506 peerDependenciesMeta: '@types/react': optional: true @@ -5431,7 +5401,7 @@ packages: resolution: {integrity: sha512-Qp8WbZOBe+blgpuUT+lw2xheLP8q0oatc9UpmiemEICxGvFLYmHm9QowVZGHtJlGbS6A6yJ3iViad/2cVjnOiA==} peerDependencies: '@types/react': 19.2.10 - react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc + react: npm:react@19.3.0-canary-dd453071-20260506 peerDependenciesMeta: '@types/react': optional: true @@ -5440,7 +5410,7 @@ packages: resolution: {integrity: sha512-L7vwWlR1kTTQ3oh7g1O0CBF3YCyyTj8NmhLR+phShpyA50HCfBFKVJTpshm9PzLiKmehsrQzTYTpX9HvmC9rhw==} peerDependencies: '@types/react': 19.2.10 - react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc + react: npm:react@19.3.0-canary-dd453071-20260506 peerDependenciesMeta: '@types/react': optional: true @@ -5449,7 +5419,7 @@ packages: resolution: {integrity: sha512-Il0+boE7w/XebUHyBjroE+DbByORGR9KKmITzbR7MyQ4akpORYP/ZmbhAr0DG7RmmBqoOnZdy2QlvajJ2QA59g==} peerDependencies: '@types/react': 19.2.10 - react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc + react: npm:react@19.3.0-canary-dd453071-20260506 peerDependenciesMeta: '@types/react': optional: true @@ -5458,7 +5428,7 @@ packages: resolution: {integrity: sha512-+FPE0rOdziWSrH9athwI1R0HDVbWlEhd+FR+aSDk4uWGmSJ9Z54sdZVDQPZAinJhJXwfT+qnj969mCsT2gfm5w==} peerDependencies: '@types/react': 19.2.10 - react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc + react: npm:react@19.3.0-canary-dd453071-20260506 peerDependenciesMeta: '@types/react': optional: true @@ -5467,7 +5437,7 @@ packages: resolution: {integrity: sha512-RbJRS4UWQFkzHTTwVymMTUv8EqYhOp8dOOviLj2ugtTiXRaRQS7GLGxZTLL1jWhMeoSCf5zmcZkqTl9IiYfXcQ==} peerDependencies: '@types/react': 19.2.10 - react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc + react: npm:react@19.3.0-canary-dd453071-20260506 peerDependenciesMeta: '@types/react': optional: true @@ -5476,7 +5446,7 @@ packages: resolution: {integrity: sha512-2dHfToCj/pzca2Ck724OZ5L0EVrr3eHRNsG/b3xQJLA2hZpVCS99bLAX+hm1IHXDEnzU6by5z/5MIY794/a8NQ==} peerDependencies: '@types/react': 19.2.10 - react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc + react: npm:react@19.3.0-canary-dd453071-20260506 peerDependenciesMeta: '@types/react': optional: true @@ -5485,7 +5455,7 @@ packages: resolution: {integrity: sha512-0Fmkebhr6PiseyZlYAOtLS+nb7jLmpqTrJyv61Pe68MKYW6OWdRE2kI70TaYY27u7H0lajqM3hSMMLFq18Z7nQ==} peerDependencies: '@types/react': 19.2.10 - react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc + react: npm:react@19.3.0-canary-dd453071-20260506 peerDependenciesMeta: '@types/react': optional: true @@ -5494,7 +5464,7 @@ packages: resolution: {integrity: sha512-QTYuDesS0VtuHNNvMh+CjlKJ4LJickCMUAqjlE3+j8w+RlRpwyX3apEQKGFzbZGdo7XNG1tXa+bQqIE7HIXT2w==} peerDependencies: '@types/react': 19.2.10 - react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc + react: npm:react@19.3.0-canary-dd453071-20260506 peerDependenciesMeta: '@types/react': optional: true @@ -5503,7 +5473,7 @@ packages: resolution: {integrity: sha512-XW3/vWuIXHa+2Uwcc2ABSfcCledmXhhQPlGbfcRXbiUQI5Icjcg19BGCZVKKInYbvUCut/ufbbLLPFC5cbb1hw==} peerDependencies: '@types/react': 19.2.10 - react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc + react: npm:react@19.3.0-canary-dd453071-20260506 peerDependenciesMeta: '@types/react': optional: true @@ -5512,7 +5482,7 @@ packages: resolution: {integrity: sha512-ewrXRDTAqAXlkl6t/fkXWNAhFX9I+CkKlw6zjEwk86RSPKwZr3xpBRso655aqYafwtnbpHLj6toFzmd6xdVptQ==} peerDependencies: '@types/react': 19.2.10 - react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc + react: npm:react@19.3.0-canary-dd453071-20260506 peerDependenciesMeta: '@types/react': optional: true @@ -5522,8 +5492,8 @@ packages: peerDependencies: '@types/react': 19.2.10 '@types/react-dom': 19.2.3 - react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc - react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc + react: npm:react@19.3.0-canary-dd453071-20260506 + react-dom: npm:react-dom@19.3.0-canary-dd453071-20260506 peerDependenciesMeta: '@types/react': optional: true @@ -5535,8 +5505,8 @@ packages: peerDependencies: '@types/react': 19.2.10 '@types/react-dom': 19.2.3 - react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc - react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc + react: npm:react@19.3.0-canary-dd453071-20260506 + react-dom: npm:react-dom@19.3.0-canary-dd453071-20260506 peerDependenciesMeta: '@types/react': optional: true @@ -5611,25 +5581,21 @@ packages: resolution: {integrity: sha512-211/XoBiooGGgUo/NxNpsrzGUXtH1d7g/4+UTtjYtfc8QHwu7ZMHcsqg0wss53fXzn/yyxd0DZ56vBHq52BiFw==} cpu: [arm64] os: [linux] - libc: [glibc] '@rspack/binding-linux-arm64-musl@1.6.7': resolution: {integrity: sha512-0WnqAWz3WPDsXGvOOA++or7cHpoidVsH3FlqNaAfRu6ni6n7ig/s0/jKUB+C5FtXOgmGjAGkZHfFgNHsvZ0FWw==} cpu: [arm64] os: [linux] - libc: [musl] '@rspack/binding-linux-x64-gnu@1.6.7': resolution: {integrity: sha512-iMrE0Q4IuYpkE0MjpaOVaUDYbQFiCRI9D3EPoXzlXJj4kJSdNheODpHTBVRlWt8Xp7UAoWuIFXCvKFKcSMm3aQ==} cpu: [x64] os: [linux] - libc: [glibc] '@rspack/binding-linux-x64-musl@1.6.7': resolution: {integrity: sha512-e7gKFxpdEQwYGk7lTC/hukTgNtaoAstBXehnZNk4k3kuU6+86WDrkn18Cd949iNqfIPtIG/wIsFNGbkHsH69hQ==} cpu: [x64] os: [linux] - libc: [musl] '@rspack/binding-wasm32-wasi@1.6.7': resolution: {integrity: sha512-yx88EFdE9RP3hh7VhjjW6uc6wGU0KcpOcZp8T8E/a+X8L98fX0aVrtM1IDbndhmdluIMqGbfJNap2+QqOCY9Mw==} @@ -5817,8 +5783,8 @@ packages: '@storybook/blocks@8.6.0': resolution: {integrity: sha512-3PNxlB5Ooj8CIhttbDxeV6kW7ui+2GEdTngtqhnsUHVjzeTKpilsk2lviOeUzqlyq5FDK+rhpZ3L3DJ9pDvioA==} peerDependencies: - 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 + react: npm:react@19.3.0-canary-dd453071-20260506 + react-dom: npm:react-dom@19.3.0-canary-dd453071-20260506 storybook: ^8.6.0 peerDependenciesMeta: react: @@ -5868,8 +5834,8 @@ packages: resolution: {integrity: sha512-Nz/UzeYQdUZUhacrPyfkiiysSjydyjgg/p0P9HxB4p/WaJUUjMAcaoaLgy3EXx61zZJ3iD36WPuDkZs5QYrA0A==} engines: {node: '>=14.0.0'} peerDependencies: - react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0-beta - react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0-beta + react: npm:react@19.3.0-canary-dd453071-20260506 + react-dom: npm:react-dom@19.3.0-canary-dd453071-20260506 '@storybook/instrumenter@8.6.0': resolution: {integrity: sha512-eEY/Hfa3Vj5Nv4vHRHlSqjoyW6oAKNK3rKIXfL/eawQwb7rKhzijDLG5YBH44Hh7dEPIqUp0LEdgpyIY7GXezg==} @@ -5885,8 +5851,8 @@ packages: resolution: {integrity: sha512-04T86VG0UJtiozgZkTR5sY1qM3E0Rgwqwllvyy7kFFdkV+Sv/VsPjW9sC38s9C8FtCYRL8pJZz81ey3oylpIMA==} engines: {node: '>=18.0.0'} peerDependencies: - react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0-beta - react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0-beta + react: npm:react@19.3.0-canary-dd453071-20260506 + react-dom: npm:react-dom@19.3.0-canary-dd453071-20260506 storybook: ^8.6.0 typescript: '*' peerDependenciesMeta: @@ -5907,16 +5873,16 @@ packages: '@storybook/react-dom-shim@8.6.0': resolution: {integrity: sha512-5Y+vMHhcx0xnaNsLQMbkmjc3zkDn/fGBNsiLH2e4POvW3ZQvOxjoyxAsEQaKwLtFgsdCFSd2tR89F6ItYrA2JQ==} peerDependencies: - react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0-beta - react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0-beta + react: npm:react@19.3.0-canary-dd453071-20260506 + react-dom: npm:react-dom@19.3.0-canary-dd453071-20260506 storybook: ^8.6.0 '@storybook/react-webpack5@8.6.0': resolution: {integrity: sha512-2L9CYDPn1OL0B8K5EU/Wpo9Slg8f0vkYPaPioQnmcK3Q4SJR4JAuDVWHUtNdxhaPOkHIy887Tfrf6BEC/blMaQ==} engines: {node: '>=18.0.0'} peerDependencies: - react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0-beta - react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0-beta + react: npm:react@19.3.0-canary-dd453071-20260506 + react-dom: npm:react-dom@19.3.0-canary-dd453071-20260506 storybook: ^8.6.0 typescript: '>= 4.2.x' peerDependenciesMeta: @@ -5928,8 +5894,8 @@ packages: engines: {node: '>=18.0.0'} peerDependencies: '@storybook/test': 8.6.0 - react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0-beta - react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0-beta + react: npm:react@19.3.0-canary-dd453071-20260506 + react-dom: npm:react-dom@19.3.0-canary-dd453071-20260506 storybook: ^8.6.0 typescript: '>= 4.2.x' peerDependenciesMeta: @@ -5992,28 +5958,24 @@ packages: engines: {node: '>=10'} cpu: [arm64] os: [linux] - libc: [glibc] '@swc/core-linux-arm64-musl@1.11.24': resolution: {integrity: sha512-ypXLIdszRo0re7PNNaXN0+2lD454G8l9LPK/rbfRXnhLWDBPURxzKlLlU/YGd2zP98wPcVooMmegRSNOKfvErw==} engines: {node: '>=10'} cpu: [arm64] os: [linux] - libc: [musl] '@swc/core-linux-x64-gnu@1.11.24': resolution: {integrity: sha512-IM7d+STVZD48zxcgo69L0yYptfhaaE9cMZ+9OoMxirNafhKKXwoZuufol1+alEFKc+Wbwp+aUPe/DeWC/Lh3dg==} engines: {node: '>=10'} cpu: [x64] os: [linux] - libc: [glibc] '@swc/core-linux-x64-musl@1.11.24': resolution: {integrity: sha512-DZByJaMVzSfjQKKQn3cqSeqwy6lpMaQDQQ4HPlch9FWtDx/dLcpdIhxssqZXcR2rhaQVIaRQsCqwV6orSDGAGw==} engines: {node: '>=10'} cpu: [x64] os: [linux] - libc: [musl] '@swc/core-win32-arm64-msvc@1.11.24': resolution: {integrity: sha512-Q64Ytn23y9aVDKN5iryFi8mRgyHw3/kyjTjT4qFCa8AEb5sGUuSj//AUZ6c0J7hQKMHlg9do5Etvoe61V98/JQ==} @@ -6109,28 +6071,24 @@ packages: engines: {node: '>= 10'} cpu: [arm64] os: [linux] - libc: [glibc] '@tailwindcss/oxide-linux-arm64-musl@4.1.13': resolution: {integrity: sha512-hZQrmtLdhyqzXHB7mkXfq0IYbxegaqTmfa1p9MBj72WPoDD3oNOh1Lnxf6xZLY9C3OV6qiCYkO1i/LrzEdW2mg==} engines: {node: '>= 10'} cpu: [arm64] os: [linux] - libc: [musl] '@tailwindcss/oxide-linux-x64-gnu@4.1.13': resolution: {integrity: sha512-uaZTYWxSXyMWDJZNY1Ul7XkJTCBRFZ5Fo6wtjrgBKzZLoJNrG+WderJwAjPzuNZOnmdrVg260DKwXCFtJ/hWRQ==} engines: {node: '>= 10'} cpu: [x64] os: [linux] - libc: [glibc] '@tailwindcss/oxide-linux-x64-musl@4.1.13': resolution: {integrity: sha512-oXiPj5mi4Hdn50v5RdnuuIms0PVPI/EG4fxAfFiIKQh5TgQgX7oSuDWntHW7WNIi/yVLAiS+CRGW4RkoGSSgVQ==} engines: {node: '>= 10'} cpu: [x64] os: [linux] - libc: [musl] '@tailwindcss/oxide-wasm32-wasi@4.1.13': resolution: {integrity: sha512-+LC2nNtPovtrDwBc/nqnIKYh/W2+R69FA0hgoeOn64BdCX522u19ryLh3Vf3F8W49XBcMIxSe665kwy21FkhvA==} @@ -6205,8 +6163,8 @@ packages: engines: {node: '>=18'} peerDependencies: '@types/react': 19.2.10 - react: ^18.0.0 - react-dom: ^18.0.0 + react: npm:react@19.3.0-canary-dd453071-20260506 + react-dom: npm:react-dom@19.3.0-canary-dd453071-20260506 peerDependenciesMeta: '@types/react': optional: true @@ -6812,49 +6770,41 @@ packages: resolution: {integrity: sha512-34gw7PjDGB9JgePJEmhEqBhWvCiiWCuXsL9hYphDF7crW7UgI05gyBAi6MF58uGcMOiOqSJ2ybEeCvHcq0BCmQ==} cpu: [arm64] os: [linux] - libc: [glibc] '@unrs/resolver-binding-linux-arm64-musl@1.11.1': resolution: {integrity: sha512-RyMIx6Uf53hhOtJDIamSbTskA99sPHS96wxVE/bJtePJJtpdKGXO1wY90oRdXuYOGOTuqjT8ACccMc4K6QmT3w==} cpu: [arm64] os: [linux] - libc: [musl] '@unrs/resolver-binding-linux-ppc64-gnu@1.11.1': resolution: {integrity: sha512-D8Vae74A4/a+mZH0FbOkFJL9DSK2R6TFPC9M+jCWYia/q2einCubX10pecpDiTmkJVUH+y8K3BZClycD8nCShA==} cpu: [ppc64] os: [linux] - libc: [glibc] '@unrs/resolver-binding-linux-riscv64-gnu@1.11.1': resolution: {integrity: sha512-frxL4OrzOWVVsOc96+V3aqTIQl1O2TjgExV4EKgRY09AJ9leZpEg8Ak9phadbuX0BA4k8U5qtvMSQQGGmaJqcQ==} cpu: [riscv64] os: [linux] - libc: [glibc] '@unrs/resolver-binding-linux-riscv64-musl@1.11.1': resolution: {integrity: sha512-mJ5vuDaIZ+l/acv01sHoXfpnyrNKOk/3aDoEdLO/Xtn9HuZlDD6jKxHlkN8ZhWyLJsRBxfv9GYM2utQ1SChKew==} cpu: [riscv64] os: [linux] - libc: [musl] '@unrs/resolver-binding-linux-s390x-gnu@1.11.1': resolution: {integrity: sha512-kELo8ebBVtb9sA7rMe1Cph4QHreByhaZ2QEADd9NzIQsYNQpt9UkM9iqr2lhGr5afh885d/cB5QeTXSbZHTYPg==} cpu: [s390x] os: [linux] - libc: [glibc] '@unrs/resolver-binding-linux-x64-gnu@1.11.1': resolution: {integrity: sha512-C3ZAHugKgovV5YvAMsxhq0gtXuwESUKc5MhEtjBpLoHPLYM+iuwSj3lflFwK3DPm68660rZ7G8BMcwSro7hD5w==} cpu: [x64] os: [linux] - libc: [glibc] '@unrs/resolver-binding-linux-x64-musl@1.11.1': resolution: {integrity: sha512-rV0YSoyhK2nZ4vEswT/QwqzqQXw5I6CjoaYMOX0TqBlWhojUf8P94mvI7nuJTeaCkkds3QE4+zS8Ko+GdXuZtA==} cpu: [x64] os: [linux] - libc: [musl] '@unrs/resolver-binding-wasm32-wasi@1.11.1': resolution: {integrity: sha512-5u4RkfxJm+Ng7IWgkzi3qrFOvLvQYnPBmjmZQ8+szTK/b31fQCnleNl1GgEt7nIsZRIf5PLhPwT0WM+q45x/UQ==} @@ -8267,8 +8217,8 @@ packages: cmdk@1.0.4: resolution: {integrity: sha512-AnsjfHyHpQ/EFeAnG216WY7A5LiYCoZzCSygiLvfXC3H3LFGCprErteUcszaVluGOhuOTbJS3jWHrSDYPBBygg==} peerDependencies: - react: ^18 || ^19 || ^19.0.0-rc - react-dom: ^18 || ^19 || ^19.0.0-rc + react: npm:react@19.3.0-canary-dd453071-20260506 + react-dom: npm:react-dom@19.3.0-canary-dd453071-20260506 co@4.6.0: resolution: {integrity: sha512-QVb0dM5HvG+uaxitm8wONl7jltx8dqhfU33DcqtOZcLSVIKSDDLDi7+0LbAKiyI8hD9u42m2YxXSkMGWThaecQ==} @@ -12519,28 +12469,24 @@ packages: engines: {node: '>= 12.0.0'} cpu: [arm64] os: [linux] - libc: [glibc] lightningcss-linux-arm64-musl@1.30.1: resolution: {integrity: sha512-jmUQVx4331m6LIX+0wUhBbmMX7TCfjF5FoOH6SD1CttzuYlGNVpA7QnrmLxrsub43ClTINfGSYyHe2HWeLl5CQ==} engines: {node: '>= 12.0.0'} cpu: [arm64] os: [linux] - libc: [musl] lightningcss-linux-x64-gnu@1.30.1: resolution: {integrity: sha512-piWx3z4wN8J8z3+O5kO74+yr6ze/dKmPnI7vLqfSqI8bccaTGY5xiSGVIJBDd5K5BHlvVLpUB3S2YCfelyJ1bw==} engines: {node: '>= 12.0.0'} cpu: [x64] os: [linux] - libc: [glibc] lightningcss-linux-x64-musl@1.30.1: resolution: {integrity: sha512-rRomAK7eIkL+tHY0YPxbc5Dra2gXlI63HL+v1Pdi1a3sC+tJTcFrHX+E86sulgAXeI7rSzDYhPSeHHjqFhqfeQ==} engines: {node: '>= 12.0.0'} cpu: [x64] os: [linux] - libc: [musl] lightningcss-win32-arm64-msvc@1.30.1: resolution: {integrity: sha512-mSL4rqPi4iXq5YVqzSsJgMVFENoa4nGTT/GjO2c0Yl9OuQfPsIfncvLrEW6RbbB24WtZ3xP/2CCmI3tNkNV4oA==} @@ -12879,12 +12825,12 @@ packages: lucide-react@0.383.0: resolution: {integrity: sha512-13xlG0CQCJtzjSQYwwJ3WRqMHtRj3EXmLlorrARt7y+IHnxUCp3XyFNL1DfaGySWxHObDvnu1u1dV+0VMKHUSg==} peerDependencies: - react: ^16.5.1 || ^17.0.0 || ^18.0.0 + react: npm:react@19.3.0-canary-dd453071-20260506 lucide-react@0.554.0: resolution: {integrity: sha512-St+z29uthEJVx0Is7ellNkgTEhaeSoA42I7JjOCBCrc5X6LYMGSv0P/2uS5HDLTExP5tpiqRD2PyUEOS6s9UXA==} peerDependencies: - react: ^16.5.1 || ^17.0.0 || ^18.0.0 || ^19.0.0 + react: npm:react@19.3.0-canary-dd453071-20260506 lz-string@1.5.0: resolution: {integrity: sha512-h5bgJWpxJNswbU7qCrV0tIKQCaS3blPDrqKWx+QxzuzL1zGUzij9XCWLrSLsJPu5t+eWA/ycetzYAO5IOMcWAQ==} @@ -13620,8 +13566,8 @@ packages: next-themes@0.4.6: resolution: {integrity: sha512-pZvgD5L0IEvX5/9GWyHMf3m8BKiVQwsCMHfoFosXtXBMnaS0ZnIJ9ST4b4NqLVKDEm8QBxoNNGNaBv2JNF6XNA==} peerDependencies: - react: ^16.8 || ^17 || ^18 || ^19 || ^19.0.0-rc - react-dom: ^16.8 || ^17 || ^18 || ^19 || ^19.0.0-rc + react: npm:react@19.3.0-canary-dd453071-20260506 + react-dom: npm:react-dom@19.3.0-canary-dd453071-20260506 next-tick@1.0.0: resolution: {integrity: sha512-mc/caHeUcdjnC/boPWJefDr4KUIWQNv+tlnFnJd38QMou86QtxQzBJfxgGRzvx8jazYRqrVlaHarfO72uNxPOg==} @@ -13634,8 +13580,8 @@ packages: '@opentelemetry/api': ^1.1.0 '@playwright/test': ^1.51.1 babel-plugin-react-compiler: '*' - react: ^18.2.0 || 19.0.0-rc-de68d2f4-20241204 || ^19.0.0 - react-dom: ^18.2.0 || 19.0.0-rc-de68d2f4-20241204 || ^19.0.0 + react: npm:react@19.3.0-canary-dd453071-20260506 + react-dom: npm:react-dom@19.3.0-canary-dd453071-20260506 sass: ^1.3.0 peerDependenciesMeta: '@opentelemetry/api': @@ -15529,12 +15475,12 @@ packages: react-dom@0.0.0-experimental-dd453071-20260506: resolution: {integrity: sha512-Wyeu8Wl7p730v+YQWrw2boA7Lri0jFz+z4f/Mz0IV16dyK2AZWdLRTSa9W/tJ6QTrIo0Itq27nRj5aTEeRBnrw==} peerDependencies: - react: 0.0.0-experimental-dd453071-20260506 + react: npm:react@19.3.0-canary-dd453071-20260506 react-dom@19.3.0-canary-dd453071-20260506: resolution: {integrity: sha512-I7e3jgAlWH9X4R450dOtEVkH0SsgKEaXXKmGhBsCQewR6iyWkKQpJEHCdmaqWEe4YRyViVHIVKD1NABYJmCyyA==} peerDependencies: - react: 19.3.0-canary-dd453071-20260506 + react: npm:react@19.3.0-canary-dd453071-20260506 react-is@19.3.0-canary-dd453071-20260506: resolution: {integrity: sha512-zz1j60EHEhLrYDKg8l/NLfibtz5mhd6v2AyG3l9S4iDIXRsFgH+yUPxuTuwlamoCG7N6/iYGKCcHai/SsXczEg==} @@ -15545,8 +15491,8 @@ packages: react-number-format@5.4.0: resolution: {integrity: sha512-NWdICrqLhI7rAS8yUeLVd6Wr4cN7UjJ9IBTS0f/a9i7UB4x4Ti70kGnksBtZ7o4Z7YRbvCMMR/jQmkoOBa/4fg==} peerDependencies: - react: ^0.14 || ^15.0.0 || ^16.0.0 || ^17.0.0 || ^18.0.0 - react-dom: ^0.14 || ^15.0.0 || ^16.0.0 || ^17.0.0 || ^18.0.0 + react: npm:react@19.3.0-canary-dd453071-20260506 + react-dom: npm:react-dom@19.3.0-canary-dd453071-20260506 react-refresh@0.12.0: resolution: {integrity: sha512-suLIhrU2IHKL5JEKR/fAwJv7bbeq4kJ+pJopf77jHwuR+HmJS/HbrPIGsTBUVfw7tXPOmYv7UJ7PCaN49e8x4A==} @@ -15557,7 +15503,7 @@ packages: engines: {node: '>=10'} peerDependencies: '@types/react': 19.2.10 - react: ^16.8.0 || ^17.0.0 || ^18.0.0 + react: npm:react@19.3.0-canary-dd453071-20260506 peerDependenciesMeta: '@types/react': optional: true @@ -15567,7 +15513,7 @@ packages: engines: {node: '>=10'} peerDependencies: '@types/react': 19.2.10 - react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 + react: npm:react@19.3.0-canary-dd453071-20260506 peerDependenciesMeta: '@types/react': optional: true @@ -15577,7 +15523,7 @@ packages: engines: {node: '>=10'} peerDependencies: '@types/react': 19.2.10 - react: ^16.8.0 || ^17.0.0 || ^18.0.0 + react: npm:react@19.3.0-canary-dd453071-20260506 peerDependenciesMeta: '@types/react': optional: true @@ -15587,7 +15533,7 @@ packages: engines: {node: '>=10'} peerDependencies: '@types/react': 19.2.10 - react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^19.0.0-rc + react: npm:react@19.3.0-canary-dd453071-20260506 peerDependenciesMeta: '@types/react': optional: true @@ -15596,49 +15542,49 @@ packages: resolution: {integrity: sha512-o+13LCrfUNrWle4oSsDgaL4UuWJF11yvU8OXQR8qBzEbdQRIGZWMbgV/t8IibDkWO8IklSnCA/CFcpMS8cnb0A==} engines: {node: '>=0.10.0'} peerDependencies: - react: 0.0.0-experimental-dd453071-20260506 - react-dom: 0.0.0-experimental-dd453071-20260506 + react: npm:react@19.3.0-canary-dd453071-20260506 + react-dom: npm:react-dom@19.3.0-canary-dd453071-20260506 react-server-dom-turbopack@19.3.0-canary-dd453071-20260506: resolution: {integrity: sha512-dpFczhyQQEx8dCPJIaeEARQluHXPZ4F9NNxeESvGIKmpV+Io9SDmHfWya7N9SW5DX6QQ9mdcgk0JCOp/2SFSKA==} engines: {node: '>=0.10.0'} peerDependencies: - react: 19.3.0-canary-dd453071-20260506 - react-dom: 19.3.0-canary-dd453071-20260506 + react: npm:react@19.3.0-canary-dd453071-20260506 + react-dom: npm:react-dom@19.3.0-canary-dd453071-20260506 react-server-dom-webpack@0.0.0-experimental-dd453071-20260506: resolution: {integrity: sha512-iKJ2UFbJ2Iv0Af9j1HwjfwIBEN3a+MgyTCsx5XMgrOcyr98+dVq+d461FdVDPGjdoFfIPoGgJsxFoM4V7S4LpQ==} engines: {node: '>=0.10.0'} peerDependencies: - react: 0.0.0-experimental-dd453071-20260506 - react-dom: 0.0.0-experimental-dd453071-20260506 + react: npm:react@19.3.0-canary-dd453071-20260506 + react-dom: npm:react-dom@19.3.0-canary-dd453071-20260506 webpack: 5.98.0 react-server-dom-webpack@19.3.0-canary-dd453071-20260506: resolution: {integrity: sha512-Iu8I8pYxLyYG27JypvmT1RsBClFu9oWpvwXlKndOiyfQQ9kIa7lhJN1+3GqZABh9w8MaLvIkXZwGNfrYkw8XGQ==} engines: {node: '>=0.10.0'} peerDependencies: - react: 19.3.0-canary-dd453071-20260506 - react-dom: 19.3.0-canary-dd453071-20260506 + react: npm:react@19.3.0-canary-dd453071-20260506 + react-dom: npm:react-dom@19.3.0-canary-dd453071-20260506 webpack: 5.98.0 react-shallow-renderer@16.15.0: resolution: {integrity: sha512-oScf2FqQ9LFVQgA73vr86xl2NaOIX73rh+YFqcOp68CWj56tSfgtGKrEbyhCj0rSijyG9M1CYprTh39fBi5hzA==} peerDependencies: - react: ^16.0.0 || ^17.0.0 || ^18.0.0 + react: npm:react@19.3.0-canary-dd453071-20260506 react-ssr-prepass@1.0.8: resolution: {integrity: sha512-O0gfRA1SaK+9ITKxqfnXsej2jF+OHGP/+GxD4unROQaM/0/UczGF9fuF+wTboxaQoKdIf4FvS3h/OigWh704VA==} peerDependencies: - react: ^16.8.0 - react-is: ^16.8.0 + react: npm:react@19.3.0-canary-dd453071-20260506 + react-is: npm:react-is@19.3.0-canary-dd453071-20260506 react-style-singleton@2.2.1: resolution: {integrity: sha512-ZWj0fHEMyWkHzKYUr2Bs/4zU6XLmq9HsgBURm7g5pAVfyn49DgUiNgY2d4lXRlYSiCif9YBGpQleewkcqddc7g==} engines: {node: '>=10'} peerDependencies: '@types/react': 19.2.10 - react: ^16.8.0 || ^17.0.0 || ^18.0.0 + react: npm:react@19.3.0-canary-dd453071-20260506 peerDependenciesMeta: '@types/react': optional: true @@ -15648,7 +15594,7 @@ packages: engines: {node: '>=10'} peerDependencies: '@types/react': 19.2.10 - react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^19.0.0-rc + react: npm:react@19.3.0-canary-dd453071-20260506 peerDependenciesMeta: '@types/react': optional: true @@ -15656,19 +15602,19 @@ packages: react-test-renderer@18.2.0: resolution: {integrity: sha512-JWD+aQ0lh2gvh4NM3bBM42Kx+XybOxCpgYK7F8ugAlpaTSnWsX+39Z4XkOykGZAHrjwwTZT3x3KxswVWxHPUqA==} peerDependencies: - react: ^18.2.0 + react: npm:react@19.3.0-canary-dd453071-20260506 react-textarea-autosize@8.5.3: resolution: {integrity: sha512-XT1024o2pqCuZSuBt9FwHlaDeNtVrtCXu0Rnz88t1jUGheCLa3PhjE1GH8Ctm2axEtvdCl5SUHYschyQ0L5QHQ==} engines: {node: '>=10'} peerDependencies: - react: ^16.8.0 || ^17.0.0 || ^18.0.0 + react: npm:react@19.3.0-canary-dd453071-20260506 react-virtualized@9.22.3: resolution: {integrity: sha512-MKovKMxWTcwPSxE1kK1HcheQTWfuCxAuBoSTf2gwyMM21NdX/PXUhnoP8Uc5dRKd+nKm8v41R36OellhdCpkrw==} peerDependencies: - react: ^15.3.0 || ^16.0.0-alpha - react-dom: ^15.3.0 || ^16.0.0-alpha + react: npm:react@19.3.0-canary-dd453071-20260506 + react-dom: npm:react-dom@19.3.0-canary-dd453071-20260506 react@0.0.0-experimental-dd453071-20260506: resolution: {integrity: sha512-S4uyYsBNq9l6JDVWIQ3y1cTlnCSOk2KCllaVQBFhB30I7aj5W4LO2Hc5sv/GqqtrB9Xm6k+ao8RGqB+kDxlc/Q==} @@ -16924,7 +16870,7 @@ packages: peerDependencies: '@babel/core': '*' babel-plugin-macros: '*' - react: '>= 16.8.0 || 17.x.x || ^18.0.0-0 || ^19.0.0-0' + react: npm:react@19.3.0-canary-dd453071-20260506 peerDependenciesMeta: '@babel/core': optional: true @@ -17011,7 +16957,7 @@ packages: swr@2.2.4: resolution: {integrity: sha512-njiZ/4RiIhoOlAaLYDqwz5qH/KZXVilRLvomrx83HjzCWTfa+InyfAjv05PSFxnmLzZkNO9ZfvgoqzAaEI4sGQ==} peerDependencies: - react: ^16.11.0 || ^17.0.0 || ^18.0.0 + react: npm:react@19.3.0-canary-dd453071-20260506 symbol-observable@1.0.1: resolution: {integrity: sha512-Kb3PrPYz4HanVF1LVGuAdW6LoVgIwjUYJGzFe7NDrBLCN4lsV/5J0MFurV+ygS4bRVwrCEt2c7MQ1R2a72oJDw==} @@ -17868,7 +17814,7 @@ packages: engines: {node: '>=10'} peerDependencies: '@types/react': 19.2.10 - react: ^16.8.0 || ^17.0.0 || ^18.0.0 + react: npm:react@19.3.0-canary-dd453071-20260506 peerDependenciesMeta: '@types/react': optional: true @@ -17878,7 +17824,7 @@ packages: engines: {node: '>=10'} peerDependencies: '@types/react': 19.2.10 - react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^19.0.0-rc + react: npm:react@19.3.0-canary-dd453071-20260506 peerDependenciesMeta: '@types/react': optional: true @@ -17886,13 +17832,13 @@ packages: use-composed-ref@1.3.0: resolution: {integrity: sha512-GLMG0Jc/jiKov/3Ulid1wbv3r54K9HlMW29IWcDFPEqFkSO2nS0MuefWgMJpeHQ9YJeXDL3ZUF+P3jdXlZX/cQ==} peerDependencies: - react: ^16.8.0 || ^17.0.0 || ^18.0.0 + react: npm:react@19.3.0-canary-dd453071-20260506 use-isomorphic-layout-effect@1.1.2: resolution: {integrity: sha512-49L8yCO3iGT/ZF9QttjwLF/ZD9Iwto5LnH5LmEdk/6cFmXddqi2ulF0edxTwjj+7mqvpVVGQWvbXZdn32wRSHA==} peerDependencies: '@types/react': '*' - react: ^16.8.0 || ^17.0.0 || ^18.0.0 + react: npm:react@19.3.0-canary-dd453071-20260506 peerDependenciesMeta: '@types/react': optional: true @@ -17901,7 +17847,7 @@ packages: resolution: {integrity: sha512-xA+AVm/Wlg3e2P/JiItTziwS7FK92LWrDB0p+hgXloIMuVCeJJ8v6f0eeHyPZaJrM+usM1FkFfbNCrJGs8A/zw==} peerDependencies: '@types/react': '*' - react: ^16.8.0 || ^17.0.0 || ^18.0.0 + react: npm:react@19.3.0-canary-dd453071-20260506 peerDependenciesMeta: '@types/react': optional: true @@ -17911,7 +17857,7 @@ packages: engines: {node: '>=10'} peerDependencies: '@types/react': 19.2.10 - react: ^16.8.0 || ^17.0.0 || ^18.0.0 + react: npm:react@19.3.0-canary-dd453071-20260506 peerDependenciesMeta: '@types/react': optional: true @@ -17921,7 +17867,7 @@ packages: engines: {node: '>=10'} peerDependencies: '@types/react': 19.2.10 - react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^19.0.0-rc + react: npm:react@19.3.0-canary-dd453071-20260506 peerDependenciesMeta: '@types/react': optional: true @@ -17929,7 +17875,7 @@ packages: use-sync-external-store@1.5.0: resolution: {integrity: sha512-Rb46I4cGGVBmjamjphe8L/UnvJD+uPPtTkNvX5mZgqdbavhI4EbgIWJiIHXJ8bc/i9EQGPRh4DwEURJ552Do0A==} peerDependencies: - react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 + react: npm:react@19.3.0-canary-dd453071-20260506 util-deprecate@1.0.2: resolution: {integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==} @@ -19689,7 +19635,7 @@ snapshots: '@datadog/datadog-api-client@1.25.0(encoding@0.1.13)': dependencies: '@types/buffer-from': 1.1.3 - '@types/node': 20.17.6(patch_hash=9c31d25336aea4076b3cb942c35e59fd160c540947f01ea455a060367153f9fd) + '@types/node': 20.17.6(patch_hash=rvl3vkomen3tospgr67bzubfyu) '@types/pako': 1.0.7 buffer-from: 1.1.2 cross-fetch: 3.1.8(encoding@0.1.13) @@ -20439,47 +20385,47 @@ snapshots: '@inquirer/ansi@1.0.2': {} - '@inquirer/checkbox@4.3.2(@types/node@20.17.6(patch_hash=9c31d25336aea4076b3cb942c35e59fd160c540947f01ea455a060367153f9fd))': + '@inquirer/checkbox@4.3.2(@types/node@20.17.6(patch_hash=rvl3vkomen3tospgr67bzubfyu))': dependencies: '@inquirer/ansi': 1.0.2 - '@inquirer/core': 10.3.2(@types/node@20.17.6(patch_hash=9c31d25336aea4076b3cb942c35e59fd160c540947f01ea455a060367153f9fd)) + '@inquirer/core': 10.3.2(@types/node@20.17.6(patch_hash=rvl3vkomen3tospgr67bzubfyu)) '@inquirer/figures': 1.0.15 - '@inquirer/type': 3.0.10(@types/node@20.17.6(patch_hash=9c31d25336aea4076b3cb942c35e59fd160c540947f01ea455a060367153f9fd)) + '@inquirer/type': 3.0.10(@types/node@20.17.6(patch_hash=rvl3vkomen3tospgr67bzubfyu)) yoctocolors-cjs: 2.1.3 optionalDependencies: - '@types/node': 20.17.6(patch_hash=9c31d25336aea4076b3cb942c35e59fd160c540947f01ea455a060367153f9fd) + '@types/node': 20.17.6(patch_hash=rvl3vkomen3tospgr67bzubfyu) '@inquirer/confirm@3.1.8': dependencies: '@inquirer/core': 8.2.1 '@inquirer/type': 1.3.2 - '@inquirer/confirm@5.1.21(@types/node@20.17.6(patch_hash=9c31d25336aea4076b3cb942c35e59fd160c540947f01ea455a060367153f9fd))': + '@inquirer/confirm@5.1.21(@types/node@20.17.6(patch_hash=rvl3vkomen3tospgr67bzubfyu))': dependencies: - '@inquirer/core': 10.3.2(@types/node@20.17.6(patch_hash=9c31d25336aea4076b3cb942c35e59fd160c540947f01ea455a060367153f9fd)) - '@inquirer/type': 3.0.10(@types/node@20.17.6(patch_hash=9c31d25336aea4076b3cb942c35e59fd160c540947f01ea455a060367153f9fd)) + '@inquirer/core': 10.3.2(@types/node@20.17.6(patch_hash=rvl3vkomen3tospgr67bzubfyu)) + '@inquirer/type': 3.0.10(@types/node@20.17.6(patch_hash=rvl3vkomen3tospgr67bzubfyu)) optionalDependencies: - '@types/node': 20.17.6(patch_hash=9c31d25336aea4076b3cb942c35e59fd160c540947f01ea455a060367153f9fd) + '@types/node': 20.17.6(patch_hash=rvl3vkomen3tospgr67bzubfyu) - '@inquirer/core@10.3.2(@types/node@20.17.6(patch_hash=9c31d25336aea4076b3cb942c35e59fd160c540947f01ea455a060367153f9fd))': + '@inquirer/core@10.3.2(@types/node@20.17.6(patch_hash=rvl3vkomen3tospgr67bzubfyu))': dependencies: '@inquirer/ansi': 1.0.2 '@inquirer/figures': 1.0.15 - '@inquirer/type': 3.0.10(@types/node@20.17.6(patch_hash=9c31d25336aea4076b3cb942c35e59fd160c540947f01ea455a060367153f9fd)) + '@inquirer/type': 3.0.10(@types/node@20.17.6(patch_hash=rvl3vkomen3tospgr67bzubfyu)) cli-width: 4.1.0 mute-stream: 2.0.0 signal-exit: 4.1.0 wrap-ansi: 6.2.0 yoctocolors-cjs: 2.1.3 optionalDependencies: - '@types/node': 20.17.6(patch_hash=9c31d25336aea4076b3cb942c35e59fd160c540947f01ea455a060367153f9fd) + '@types/node': 20.17.6(patch_hash=rvl3vkomen3tospgr67bzubfyu) '@inquirer/core@8.2.1': dependencies: '@inquirer/figures': 1.0.2 '@inquirer/type': 1.3.2 '@types/mute-stream': 0.0.4 - '@types/node': 20.17.6(patch_hash=9c31d25336aea4076b3cb942c35e59fd160c540947f01ea455a060367153f9fd) + '@types/node': 20.17.6(patch_hash=rvl3vkomen3tospgr67bzubfyu) '@types/wrap-ansi': 3.0.0 ansi-escapes: 4.3.2 chalk: 4.1.2 @@ -20490,28 +20436,28 @@ snapshots: strip-ansi: 6.0.1 wrap-ansi: 6.2.0 - '@inquirer/editor@4.2.23(@types/node@20.17.6(patch_hash=9c31d25336aea4076b3cb942c35e59fd160c540947f01ea455a060367153f9fd))': + '@inquirer/editor@4.2.23(@types/node@20.17.6(patch_hash=rvl3vkomen3tospgr67bzubfyu))': dependencies: - '@inquirer/core': 10.3.2(@types/node@20.17.6(patch_hash=9c31d25336aea4076b3cb942c35e59fd160c540947f01ea455a060367153f9fd)) - '@inquirer/external-editor': 1.0.3(@types/node@20.17.6(patch_hash=9c31d25336aea4076b3cb942c35e59fd160c540947f01ea455a060367153f9fd)) - '@inquirer/type': 3.0.10(@types/node@20.17.6(patch_hash=9c31d25336aea4076b3cb942c35e59fd160c540947f01ea455a060367153f9fd)) + '@inquirer/core': 10.3.2(@types/node@20.17.6(patch_hash=rvl3vkomen3tospgr67bzubfyu)) + '@inquirer/external-editor': 1.0.3(@types/node@20.17.6(patch_hash=rvl3vkomen3tospgr67bzubfyu)) + '@inquirer/type': 3.0.10(@types/node@20.17.6(patch_hash=rvl3vkomen3tospgr67bzubfyu)) optionalDependencies: - '@types/node': 20.17.6(patch_hash=9c31d25336aea4076b3cb942c35e59fd160c540947f01ea455a060367153f9fd) + '@types/node': 20.17.6(patch_hash=rvl3vkomen3tospgr67bzubfyu) - '@inquirer/expand@4.0.23(@types/node@20.17.6(patch_hash=9c31d25336aea4076b3cb942c35e59fd160c540947f01ea455a060367153f9fd))': + '@inquirer/expand@4.0.23(@types/node@20.17.6(patch_hash=rvl3vkomen3tospgr67bzubfyu))': dependencies: - '@inquirer/core': 10.3.2(@types/node@20.17.6(patch_hash=9c31d25336aea4076b3cb942c35e59fd160c540947f01ea455a060367153f9fd)) - '@inquirer/type': 3.0.10(@types/node@20.17.6(patch_hash=9c31d25336aea4076b3cb942c35e59fd160c540947f01ea455a060367153f9fd)) + '@inquirer/core': 10.3.2(@types/node@20.17.6(patch_hash=rvl3vkomen3tospgr67bzubfyu)) + '@inquirer/type': 3.0.10(@types/node@20.17.6(patch_hash=rvl3vkomen3tospgr67bzubfyu)) yoctocolors-cjs: 2.1.3 optionalDependencies: - '@types/node': 20.17.6(patch_hash=9c31d25336aea4076b3cb942c35e59fd160c540947f01ea455a060367153f9fd) + '@types/node': 20.17.6(patch_hash=rvl3vkomen3tospgr67bzubfyu) - '@inquirer/external-editor@1.0.3(@types/node@20.17.6(patch_hash=9c31d25336aea4076b3cb942c35e59fd160c540947f01ea455a060367153f9fd))': + '@inquirer/external-editor@1.0.3(@types/node@20.17.6(patch_hash=rvl3vkomen3tospgr67bzubfyu))': dependencies: chardet: 2.1.1 iconv-lite: 0.7.0 optionalDependencies: - '@types/node': 20.17.6(patch_hash=9c31d25336aea4076b3cb942c35e59fd160c540947f01ea455a060367153f9fd) + '@types/node': 20.17.6(patch_hash=rvl3vkomen3tospgr67bzubfyu) '@inquirer/figures@1.0.15': {} @@ -20519,75 +20465,75 @@ snapshots: '@inquirer/figures@1.0.3': {} - '@inquirer/input@4.3.1(@types/node@20.17.6(patch_hash=9c31d25336aea4076b3cb942c35e59fd160c540947f01ea455a060367153f9fd))': + '@inquirer/input@4.3.1(@types/node@20.17.6(patch_hash=rvl3vkomen3tospgr67bzubfyu))': dependencies: - '@inquirer/core': 10.3.2(@types/node@20.17.6(patch_hash=9c31d25336aea4076b3cb942c35e59fd160c540947f01ea455a060367153f9fd)) - '@inquirer/type': 3.0.10(@types/node@20.17.6(patch_hash=9c31d25336aea4076b3cb942c35e59fd160c540947f01ea455a060367153f9fd)) + '@inquirer/core': 10.3.2(@types/node@20.17.6(patch_hash=rvl3vkomen3tospgr67bzubfyu)) + '@inquirer/type': 3.0.10(@types/node@20.17.6(patch_hash=rvl3vkomen3tospgr67bzubfyu)) optionalDependencies: - '@types/node': 20.17.6(patch_hash=9c31d25336aea4076b3cb942c35e59fd160c540947f01ea455a060367153f9fd) + '@types/node': 20.17.6(patch_hash=rvl3vkomen3tospgr67bzubfyu) - '@inquirer/number@3.0.23(@types/node@20.17.6(patch_hash=9c31d25336aea4076b3cb942c35e59fd160c540947f01ea455a060367153f9fd))': + '@inquirer/number@3.0.23(@types/node@20.17.6(patch_hash=rvl3vkomen3tospgr67bzubfyu))': dependencies: - '@inquirer/core': 10.3.2(@types/node@20.17.6(patch_hash=9c31d25336aea4076b3cb942c35e59fd160c540947f01ea455a060367153f9fd)) - '@inquirer/type': 3.0.10(@types/node@20.17.6(patch_hash=9c31d25336aea4076b3cb942c35e59fd160c540947f01ea455a060367153f9fd)) + '@inquirer/core': 10.3.2(@types/node@20.17.6(patch_hash=rvl3vkomen3tospgr67bzubfyu)) + '@inquirer/type': 3.0.10(@types/node@20.17.6(patch_hash=rvl3vkomen3tospgr67bzubfyu)) optionalDependencies: - '@types/node': 20.17.6(patch_hash=9c31d25336aea4076b3cb942c35e59fd160c540947f01ea455a060367153f9fd) + '@types/node': 20.17.6(patch_hash=rvl3vkomen3tospgr67bzubfyu) - '@inquirer/password@4.0.23(@types/node@20.17.6(patch_hash=9c31d25336aea4076b3cb942c35e59fd160c540947f01ea455a060367153f9fd))': + '@inquirer/password@4.0.23(@types/node@20.17.6(patch_hash=rvl3vkomen3tospgr67bzubfyu))': dependencies: '@inquirer/ansi': 1.0.2 - '@inquirer/core': 10.3.2(@types/node@20.17.6(patch_hash=9c31d25336aea4076b3cb942c35e59fd160c540947f01ea455a060367153f9fd)) - '@inquirer/type': 3.0.10(@types/node@20.17.6(patch_hash=9c31d25336aea4076b3cb942c35e59fd160c540947f01ea455a060367153f9fd)) + '@inquirer/core': 10.3.2(@types/node@20.17.6(patch_hash=rvl3vkomen3tospgr67bzubfyu)) + '@inquirer/type': 3.0.10(@types/node@20.17.6(patch_hash=rvl3vkomen3tospgr67bzubfyu)) optionalDependencies: - '@types/node': 20.17.6(patch_hash=9c31d25336aea4076b3cb942c35e59fd160c540947f01ea455a060367153f9fd) - - '@inquirer/prompts@7.10.1(@types/node@20.17.6(patch_hash=9c31d25336aea4076b3cb942c35e59fd160c540947f01ea455a060367153f9fd))': - dependencies: - '@inquirer/checkbox': 4.3.2(@types/node@20.17.6(patch_hash=9c31d25336aea4076b3cb942c35e59fd160c540947f01ea455a060367153f9fd)) - '@inquirer/confirm': 5.1.21(@types/node@20.17.6(patch_hash=9c31d25336aea4076b3cb942c35e59fd160c540947f01ea455a060367153f9fd)) - '@inquirer/editor': 4.2.23(@types/node@20.17.6(patch_hash=9c31d25336aea4076b3cb942c35e59fd160c540947f01ea455a060367153f9fd)) - '@inquirer/expand': 4.0.23(@types/node@20.17.6(patch_hash=9c31d25336aea4076b3cb942c35e59fd160c540947f01ea455a060367153f9fd)) - '@inquirer/input': 4.3.1(@types/node@20.17.6(patch_hash=9c31d25336aea4076b3cb942c35e59fd160c540947f01ea455a060367153f9fd)) - '@inquirer/number': 3.0.23(@types/node@20.17.6(patch_hash=9c31d25336aea4076b3cb942c35e59fd160c540947f01ea455a060367153f9fd)) - '@inquirer/password': 4.0.23(@types/node@20.17.6(patch_hash=9c31d25336aea4076b3cb942c35e59fd160c540947f01ea455a060367153f9fd)) - '@inquirer/rawlist': 4.1.11(@types/node@20.17.6(patch_hash=9c31d25336aea4076b3cb942c35e59fd160c540947f01ea455a060367153f9fd)) - '@inquirer/search': 3.2.2(@types/node@20.17.6(patch_hash=9c31d25336aea4076b3cb942c35e59fd160c540947f01ea455a060367153f9fd)) - '@inquirer/select': 4.4.2(@types/node@20.17.6(patch_hash=9c31d25336aea4076b3cb942c35e59fd160c540947f01ea455a060367153f9fd)) + '@types/node': 20.17.6(patch_hash=rvl3vkomen3tospgr67bzubfyu) + + '@inquirer/prompts@7.10.1(@types/node@20.17.6(patch_hash=rvl3vkomen3tospgr67bzubfyu))': + dependencies: + '@inquirer/checkbox': 4.3.2(@types/node@20.17.6(patch_hash=rvl3vkomen3tospgr67bzubfyu)) + '@inquirer/confirm': 5.1.21(@types/node@20.17.6(patch_hash=rvl3vkomen3tospgr67bzubfyu)) + '@inquirer/editor': 4.2.23(@types/node@20.17.6(patch_hash=rvl3vkomen3tospgr67bzubfyu)) + '@inquirer/expand': 4.0.23(@types/node@20.17.6(patch_hash=rvl3vkomen3tospgr67bzubfyu)) + '@inquirer/input': 4.3.1(@types/node@20.17.6(patch_hash=rvl3vkomen3tospgr67bzubfyu)) + '@inquirer/number': 3.0.23(@types/node@20.17.6(patch_hash=rvl3vkomen3tospgr67bzubfyu)) + '@inquirer/password': 4.0.23(@types/node@20.17.6(patch_hash=rvl3vkomen3tospgr67bzubfyu)) + '@inquirer/rawlist': 4.1.11(@types/node@20.17.6(patch_hash=rvl3vkomen3tospgr67bzubfyu)) + '@inquirer/search': 3.2.2(@types/node@20.17.6(patch_hash=rvl3vkomen3tospgr67bzubfyu)) + '@inquirer/select': 4.4.2(@types/node@20.17.6(patch_hash=rvl3vkomen3tospgr67bzubfyu)) optionalDependencies: - '@types/node': 20.17.6(patch_hash=9c31d25336aea4076b3cb942c35e59fd160c540947f01ea455a060367153f9fd) + '@types/node': 20.17.6(patch_hash=rvl3vkomen3tospgr67bzubfyu) - '@inquirer/rawlist@4.1.11(@types/node@20.17.6(patch_hash=9c31d25336aea4076b3cb942c35e59fd160c540947f01ea455a060367153f9fd))': + '@inquirer/rawlist@4.1.11(@types/node@20.17.6(patch_hash=rvl3vkomen3tospgr67bzubfyu))': dependencies: - '@inquirer/core': 10.3.2(@types/node@20.17.6(patch_hash=9c31d25336aea4076b3cb942c35e59fd160c540947f01ea455a060367153f9fd)) - '@inquirer/type': 3.0.10(@types/node@20.17.6(patch_hash=9c31d25336aea4076b3cb942c35e59fd160c540947f01ea455a060367153f9fd)) + '@inquirer/core': 10.3.2(@types/node@20.17.6(patch_hash=rvl3vkomen3tospgr67bzubfyu)) + '@inquirer/type': 3.0.10(@types/node@20.17.6(patch_hash=rvl3vkomen3tospgr67bzubfyu)) yoctocolors-cjs: 2.1.3 optionalDependencies: - '@types/node': 20.17.6(patch_hash=9c31d25336aea4076b3cb942c35e59fd160c540947f01ea455a060367153f9fd) + '@types/node': 20.17.6(patch_hash=rvl3vkomen3tospgr67bzubfyu) - '@inquirer/search@3.2.2(@types/node@20.17.6(patch_hash=9c31d25336aea4076b3cb942c35e59fd160c540947f01ea455a060367153f9fd))': + '@inquirer/search@3.2.2(@types/node@20.17.6(patch_hash=rvl3vkomen3tospgr67bzubfyu))': dependencies: - '@inquirer/core': 10.3.2(@types/node@20.17.6(patch_hash=9c31d25336aea4076b3cb942c35e59fd160c540947f01ea455a060367153f9fd)) + '@inquirer/core': 10.3.2(@types/node@20.17.6(patch_hash=rvl3vkomen3tospgr67bzubfyu)) '@inquirer/figures': 1.0.15 - '@inquirer/type': 3.0.10(@types/node@20.17.6(patch_hash=9c31d25336aea4076b3cb942c35e59fd160c540947f01ea455a060367153f9fd)) + '@inquirer/type': 3.0.10(@types/node@20.17.6(patch_hash=rvl3vkomen3tospgr67bzubfyu)) yoctocolors-cjs: 2.1.3 optionalDependencies: - '@types/node': 20.17.6(patch_hash=9c31d25336aea4076b3cb942c35e59fd160c540947f01ea455a060367153f9fd) + '@types/node': 20.17.6(patch_hash=rvl3vkomen3tospgr67bzubfyu) - '@inquirer/select@4.4.2(@types/node@20.17.6(patch_hash=9c31d25336aea4076b3cb942c35e59fd160c540947f01ea455a060367153f9fd))': + '@inquirer/select@4.4.2(@types/node@20.17.6(patch_hash=rvl3vkomen3tospgr67bzubfyu))': dependencies: '@inquirer/ansi': 1.0.2 - '@inquirer/core': 10.3.2(@types/node@20.17.6(patch_hash=9c31d25336aea4076b3cb942c35e59fd160c540947f01ea455a060367153f9fd)) + '@inquirer/core': 10.3.2(@types/node@20.17.6(patch_hash=rvl3vkomen3tospgr67bzubfyu)) '@inquirer/figures': 1.0.15 - '@inquirer/type': 3.0.10(@types/node@20.17.6(patch_hash=9c31d25336aea4076b3cb942c35e59fd160c540947f01ea455a060367153f9fd)) + '@inquirer/type': 3.0.10(@types/node@20.17.6(patch_hash=rvl3vkomen3tospgr67bzubfyu)) yoctocolors-cjs: 2.1.3 optionalDependencies: - '@types/node': 20.17.6(patch_hash=9c31d25336aea4076b3cb942c35e59fd160c540947f01ea455a060367153f9fd) + '@types/node': 20.17.6(patch_hash=rvl3vkomen3tospgr67bzubfyu) '@inquirer/type@1.3.2': {} - '@inquirer/type@3.0.10(@types/node@20.17.6(patch_hash=9c31d25336aea4076b3cb942c35e59fd160c540947f01ea455a060367153f9fd))': + '@inquirer/type@3.0.10(@types/node@20.17.6(patch_hash=rvl3vkomen3tospgr67bzubfyu))': optionalDependencies: - '@types/node': 20.17.6(patch_hash=9c31d25336aea4076b3cb942c35e59fd160c540947f01ea455a060367153f9fd) + '@types/node': 20.17.6(patch_hash=rvl3vkomen3tospgr67bzubfyu) '@isaacs/cliui@8.0.2': dependencies: @@ -20618,7 +20564,7 @@ snapshots: '@jest/console@29.7.0': dependencies: '@jest/types': 29.6.3 - '@types/node': 20.17.6(patch_hash=9c31d25336aea4076b3cb942c35e59fd160c540947f01ea455a060367153f9fd) + '@types/node': 20.17.6(patch_hash=rvl3vkomen3tospgr67bzubfyu) chalk: 4.1.2 jest-message-util: 29.7.0 jest-util: 29.7.0 @@ -20631,14 +20577,14 @@ snapshots: '@jest/test-result': 29.7.0 '@jest/transform': 29.7.0 '@jest/types': 29.6.3 - '@types/node': 20.17.6(patch_hash=9c31d25336aea4076b3cb942c35e59fd160c540947f01ea455a060367153f9fd) + '@types/node': 20.17.6(patch_hash=rvl3vkomen3tospgr67bzubfyu) ansi-escapes: 4.3.2 chalk: 4.1.2 ci-info: 3.8.0 exit: 0.1.2 graceful-fs: 4.2.11 jest-changed-files: 29.7.0 - jest-config: 29.7.0(@types/node@20.17.6(patch_hash=9c31d25336aea4076b3cb942c35e59fd160c540947f01ea455a060367153f9fd))(babel-plugin-macros@3.1.0) + jest-config: 29.7.0(@types/node@20.17.6(patch_hash=rvl3vkomen3tospgr67bzubfyu))(babel-plugin-macros@3.1.0) jest-haste-map: 29.7.0 jest-message-util: 29.7.0 jest-regex-util: 29.6.3 @@ -20669,14 +20615,14 @@ snapshots: dependencies: '@jest/fake-timers': 29.7.0 '@jest/types': 29.5.0 - '@types/node': 20.17.6(patch_hash=9c31d25336aea4076b3cb942c35e59fd160c540947f01ea455a060367153f9fd) + '@types/node': 20.17.6(patch_hash=rvl3vkomen3tospgr67bzubfyu) jest-mock: 29.7.0 '@jest/environment@29.7.0': dependencies: '@jest/fake-timers': 29.7.0 '@jest/types': 29.6.3 - '@types/node': 20.17.6(patch_hash=9c31d25336aea4076b3cb942c35e59fd160c540947f01ea455a060367153f9fd) + '@types/node': 20.17.6(patch_hash=rvl3vkomen3tospgr67bzubfyu) jest-mock: 29.7.0 '@jest/expect-utils@29.7.0': @@ -20698,7 +20644,7 @@ snapshots: dependencies: '@jest/types': 29.5.0 '@sinonjs/fake-timers': 10.2.0 - '@types/node': 20.17.6(patch_hash=9c31d25336aea4076b3cb942c35e59fd160c540947f01ea455a060367153f9fd) + '@types/node': 20.17.6(patch_hash=rvl3vkomen3tospgr67bzubfyu) jest-message-util: 29.7.0 jest-mock: 29.7.0 jest-util: 29.7.0 @@ -20707,7 +20653,7 @@ snapshots: dependencies: '@jest/types': 29.6.3 '@sinonjs/fake-timers': 10.2.0 - '@types/node': 20.17.6(patch_hash=9c31d25336aea4076b3cb942c35e59fd160c540947f01ea455a060367153f9fd) + '@types/node': 20.17.6(patch_hash=rvl3vkomen3tospgr67bzubfyu) jest-message-util: 29.7.0 jest-mock: 29.7.0 jest-util: 29.7.0 @@ -20725,7 +20671,7 @@ snapshots: '@jest/pattern@30.0.0-alpha.6': dependencies: - '@types/node': 20.17.6(patch_hash=9c31d25336aea4076b3cb942c35e59fd160c540947f01ea455a060367153f9fd) + '@types/node': 20.17.6(patch_hash=rvl3vkomen3tospgr67bzubfyu) jest-regex-util: 30.0.0-alpha.6 '@jest/reporters@29.7.0': @@ -20736,7 +20682,7 @@ snapshots: '@jest/transform': 29.7.0 '@jest/types': 29.6.3 '@jridgewell/trace-mapping': 0.3.25 - '@types/node': 20.17.6(patch_hash=9c31d25336aea4076b3cb942c35e59fd160c540947f01ea455a060367153f9fd) + '@types/node': 20.17.6(patch_hash=rvl3vkomen3tospgr67bzubfyu) chalk: 4.1.2 collect-v8-coverage: 1.0.1 exit: 0.1.2 @@ -20865,7 +20811,7 @@ snapshots: '@jest/schemas': 29.4.3 '@types/istanbul-lib-coverage': 2.0.3 '@types/istanbul-reports': 3.0.0 - '@types/node': 20.17.6(patch_hash=9c31d25336aea4076b3cb942c35e59fd160c540947f01ea455a060367153f9fd) + '@types/node': 20.17.6(patch_hash=rvl3vkomen3tospgr67bzubfyu) '@types/yargs': 17.0.10 chalk: 4.1.2 @@ -20874,7 +20820,7 @@ snapshots: '@jest/schemas': 29.6.3 '@types/istanbul-lib-coverage': 2.0.4 '@types/istanbul-reports': 3.0.1 - '@types/node': 20.17.6(patch_hash=9c31d25336aea4076b3cb942c35e59fd160c540947f01ea455a060367153f9fd) + '@types/node': 20.17.6(patch_hash=rvl3vkomen3tospgr67bzubfyu) '@types/yargs': 17.0.10 chalk: 4.1.2 @@ -20884,7 +20830,7 @@ snapshots: '@jest/schemas': 30.0.0-alpha.6 '@types/istanbul-lib-coverage': 2.0.4 '@types/istanbul-reports': 3.0.1 - '@types/node': 20.17.6(patch_hash=9c31d25336aea4076b3cb942c35e59fd160c540947f01ea455a060367153f9fd) + '@types/node': 20.17.6(patch_hash=rvl3vkomen3tospgr67bzubfyu) '@types/yargs': 17.0.10 chalk: 4.1.2 @@ -20963,7 +20909,7 @@ snapshots: '@leichtgewicht/ip-codec@2.0.5': {} - '@lerna/create@9.0.3(@swc/core@1.11.24(@swc/helpers@0.5.15))(@types/node@20.17.6(patch_hash=9c31d25336aea4076b3cb942c35e59fd160c540947f01ea455a060367153f9fd))(babel-plugin-macros@3.1.0)(typescript@5.9.2)': + '@lerna/create@9.0.3(@swc/core@1.11.24(@swc/helpers@0.5.15))(@types/node@20.17.6(patch_hash=rvl3vkomen3tospgr67bzubfyu))(babel-plugin-macros@3.1.0)(typescript@5.9.2)': dependencies: '@npmcli/arborist': 9.1.6 '@npmcli/package-json': 7.0.2 @@ -20990,7 +20936,7 @@ snapshots: has-unicode: 2.0.1 ini: 1.3.8 init-package-json: 8.2.2 - inquirer: 12.9.6(@types/node@20.17.6(patch_hash=9c31d25336aea4076b3cb942c35e59fd160c540947f01ea455a060367153f9fd)) + inquirer: 12.9.6(@types/node@20.17.6(patch_hash=rvl3vkomen3tospgr67bzubfyu)) is-ci: 3.0.1 is-stream: 2.0.0 js-yaml: 4.1.1 @@ -21120,7 +21066,7 @@ snapshots: '@types/react': 19.2.10 react: 19.3.0-canary-dd453071-20260506 - '@modelcontextprotocol/sdk@1.18.1(patch_hash=680fe4edb7abd1de29d08cdf217a22506e815a8cc1c2282201d5d47aa3e5da12)': + '@modelcontextprotocol/sdk@1.18.1(patch_hash=2fip6jynpzvju4dccxvduglole)': dependencies: ajv: 6.12.6 content-type: 1.0.5 @@ -21262,7 +21208,7 @@ snapshots: '@next/rspack-core@1.0.2(@swc/helpers@0.5.15)': dependencies: '@next/rspack-binding': 1.0.2 - '@rspack/core': 1.6.7(patch_hash=4cf28ea116b0e27c7c80b09035905f9d16a7b18d1f2b7d312fc80d42cd57068d)(@swc/helpers@0.5.15) + '@rspack/core': 1.6.7(patch_hash=jdm5v6k2jahxcby2dvmlprnxie)(@swc/helpers@0.5.15) transitivePeerDependencies: - '@swc/helpers' @@ -22554,7 +22500,7 @@ snapshots: '@rspack/binding-win32-ia32-msvc': 1.6.7 '@rspack/binding-win32-x64-msvc': 1.6.7 - '@rspack/core@1.6.7(patch_hash=4cf28ea116b0e27c7c80b09035905f9d16a7b18d1f2b7d312fc80d42cd57068d)(@swc/helpers@0.5.15)': + '@rspack/core@1.6.7(patch_hash=jdm5v6k2jahxcby2dvmlprnxie)(@swc/helpers@0.5.15)': dependencies: '@module-federation/runtime-tools': 0.21.6 '@rspack/binding': 1.6.7 @@ -22640,7 +22586,7 @@ snapshots: '@slack/logger@4.0.0': dependencies: - '@types/node': 20.17.6(patch_hash=9c31d25336aea4076b3cb942c35e59fd160c540947f01ea455a060367153f9fd) + '@types/node': 20.17.6(patch_hash=rvl3vkomen3tospgr67bzubfyu) '@slack/types@2.14.0': {} @@ -22648,7 +22594,7 @@ snapshots: dependencies: '@slack/logger': 4.0.0 '@slack/types': 2.14.0 - '@types/node': 20.17.6(patch_hash=9c31d25336aea4076b3cb942c35e59fd160c540947f01ea455a060367153f9fd) + '@types/node': 20.17.6(patch_hash=rvl3vkomen3tospgr67bzubfyu) '@types/retry': 0.12.0 axios: 1.9.0 eventemitter3: 5.0.1 @@ -22774,7 +22720,7 @@ snapshots: react: 19.3.0-canary-dd453071-20260506 react-dom: 19.3.0-canary-dd453071-20260506(react@19.3.0-canary-dd453071-20260506) - '@storybook/builder-webpack5@8.6.0(@rspack/core@1.6.7(patch_hash=4cf28ea116b0e27c7c80b09035905f9d16a7b18d1f2b7d312fc80d42cd57068d)(@swc/helpers@0.5.15))(@swc/core@1.11.24(@swc/helpers@0.5.15))(esbuild@0.25.9)(storybook@8.6.0(prettier@3.6.2))(typescript@6.0.2)': + '@storybook/builder-webpack5@8.6.0(@rspack/core@1.6.7(patch_hash=jdm5v6k2jahxcby2dvmlprnxie)(@swc/helpers@0.5.15))(@swc/core@1.11.24(@swc/helpers@0.5.15))(esbuild@0.25.9)(storybook@8.6.0(prettier@3.6.2))(typescript@6.0.2)': dependencies: '@storybook/core-webpack': 8.6.0(storybook@8.6.0(prettier@3.6.2)) '@types/semver': 7.5.6 @@ -22782,10 +22728,10 @@ snapshots: case-sensitive-paths-webpack-plugin: 2.4.0 cjs-module-lexer: 1.4.1 constants-browserify: 1.0.0 - css-loader: 6.11.0(@rspack/core@1.6.7(patch_hash=4cf28ea116b0e27c7c80b09035905f9d16a7b18d1f2b7d312fc80d42cd57068d)(@swc/helpers@0.5.15))(webpack@5.98.0(@swc/core@1.11.24(@swc/helpers@0.5.15))(esbuild@0.25.9)) + css-loader: 6.11.0(@rspack/core@1.6.7(patch_hash=jdm5v6k2jahxcby2dvmlprnxie)(@swc/helpers@0.5.15))(webpack@5.98.0(@swc/core@1.11.24(@swc/helpers@0.5.15))(esbuild@0.25.9)) es-module-lexer: 1.6.0 fork-ts-checker-webpack-plugin: 8.0.0(typescript@6.0.2)(webpack@5.98.0(@swc/core@1.11.24(@swc/helpers@0.5.15))(esbuild@0.25.9)) - html-webpack-plugin: 5.6.3(@rspack/core@1.6.7(patch_hash=4cf28ea116b0e27c7c80b09035905f9d16a7b18d1f2b7d312fc80d42cd57068d)(@swc/helpers@0.5.15))(webpack@5.98.0(@swc/core@1.11.24(@swc/helpers@0.5.15))(esbuild@0.25.9)) + html-webpack-plugin: 5.6.3(@rspack/core@1.6.7(patch_hash=jdm5v6k2jahxcby2dvmlprnxie)(@swc/helpers@0.5.15))(webpack@5.98.0(@swc/core@1.11.24(@swc/helpers@0.5.15))(esbuild@0.25.9)) magic-string: 0.30.19 path-browserify: 1.0.1 process: 0.11.10 @@ -22916,9 +22862,9 @@ snapshots: react-dom: 19.3.0-canary-dd453071-20260506(react@19.3.0-canary-dd453071-20260506) storybook: 8.6.0(prettier@3.6.2) - '@storybook/react-webpack5@8.6.0(@rspack/core@1.6.7(patch_hash=4cf28ea116b0e27c7c80b09035905f9d16a7b18d1f2b7d312fc80d42cd57068d)(@swc/helpers@0.5.15))(@storybook/test@8.6.0(storybook@8.6.0(prettier@3.6.2)))(@swc/core@1.11.24(@swc/helpers@0.5.15))(esbuild@0.25.9)(react-dom@19.3.0-canary-dd453071-20260506(react@19.3.0-canary-dd453071-20260506))(react@19.3.0-canary-dd453071-20260506)(storybook@8.6.0(prettier@3.6.2))(typescript@6.0.2)': + '@storybook/react-webpack5@8.6.0(@rspack/core@1.6.7(patch_hash=jdm5v6k2jahxcby2dvmlprnxie)(@swc/helpers@0.5.15))(@storybook/test@8.6.0(storybook@8.6.0(prettier@3.6.2)))(@swc/core@1.11.24(@swc/helpers@0.5.15))(esbuild@0.25.9)(react-dom@19.3.0-canary-dd453071-20260506(react@19.3.0-canary-dd453071-20260506))(react@19.3.0-canary-dd453071-20260506)(storybook@8.6.0(prettier@3.6.2))(typescript@6.0.2)': dependencies: - '@storybook/builder-webpack5': 8.6.0(@rspack/core@1.6.7(patch_hash=4cf28ea116b0e27c7c80b09035905f9d16a7b18d1f2b7d312fc80d42cd57068d)(@swc/helpers@0.5.15))(@swc/core@1.11.24(@swc/helpers@0.5.15))(esbuild@0.25.9)(storybook@8.6.0(prettier@3.6.2))(typescript@6.0.2) + '@storybook/builder-webpack5': 8.6.0(@rspack/core@1.6.7(patch_hash=jdm5v6k2jahxcby2dvmlprnxie)(@swc/helpers@0.5.15))(@swc/core@1.11.24(@swc/helpers@0.5.15))(esbuild@0.25.9)(storybook@8.6.0(prettier@3.6.2))(typescript@6.0.2) '@storybook/preset-react-webpack': 8.6.0(@storybook/test@8.6.0(storybook@8.6.0(prettier@3.6.2)))(@swc/core@1.11.24(@swc/helpers@0.5.15))(esbuild@0.25.9)(react-dom@19.3.0-canary-dd453071-20260506(react@19.3.0-canary-dd453071-20260506))(react@19.3.0-canary-dd453071-20260506)(storybook@8.6.0(prettier@3.6.2))(typescript@6.0.2) '@storybook/react': 8.6.0(@storybook/test@8.6.0(storybook@8.6.0(prettier@3.6.2)))(react-dom@19.3.0-canary-dd453071-20260506(react@19.3.0-canary-dd453071-20260506))(react@19.3.0-canary-dd453071-20260506)(storybook@8.6.0(prettier@3.6.2))(typescript@6.0.2) react: 19.3.0-canary-dd453071-20260506 @@ -22950,7 +22896,7 @@ snapshots: '@storybook/test': 8.6.0(storybook@8.6.0(prettier@3.6.2)) typescript: 6.0.2 - '@storybook/test-runner@0.21.0(@swc/helpers@0.5.15)(@types/node@20.17.6(patch_hash=9c31d25336aea4076b3cb942c35e59fd160c540947f01ea455a060367153f9fd))(babel-plugin-macros@3.1.0)(debug@4.1.1)(storybook@8.6.0(prettier@3.6.2))': + '@storybook/test-runner@0.21.0(@swc/helpers@0.5.15)(@types/node@20.17.6(patch_hash=rvl3vkomen3tospgr67bzubfyu))(babel-plugin-macros@3.1.0)(debug@4.1.1)(storybook@8.6.0(prettier@3.6.2))': dependencies: '@babel/core': 7.26.10 '@babel/generator': 7.27.0 @@ -22961,14 +22907,14 @@ snapshots: '@swc/core': 1.11.24(@swc/helpers@0.5.15) '@swc/jest': 0.2.37(@swc/core@1.11.24(@swc/helpers@0.5.15)) expect-playwright: 0.8.0 - jest: 29.7.0(@types/node@20.17.6(patch_hash=9c31d25336aea4076b3cb942c35e59fd160c540947f01ea455a060367153f9fd))(babel-plugin-macros@3.1.0) + jest: 29.7.0(@types/node@20.17.6(patch_hash=rvl3vkomen3tospgr67bzubfyu))(babel-plugin-macros@3.1.0) jest-circus: 29.7.0(babel-plugin-macros@3.1.0) jest-environment-node: 29.7.0 jest-junit: 16.0.0 - jest-playwright-preset: 4.0.0(debug@4.1.1)(jest-circus@29.7.0(babel-plugin-macros@3.1.0))(jest-environment-node@29.7.0)(jest-runner@29.7.0)(jest@29.7.0(@types/node@20.17.6(patch_hash=9c31d25336aea4076b3cb942c35e59fd160c540947f01ea455a060367153f9fd))(babel-plugin-macros@3.1.0)) + jest-playwright-preset: 4.0.0(debug@4.1.1)(jest-circus@29.7.0(babel-plugin-macros@3.1.0))(jest-environment-node@29.7.0)(jest-runner@29.7.0)(jest@29.7.0(@types/node@20.17.6(patch_hash=rvl3vkomen3tospgr67bzubfyu))(babel-plugin-macros@3.1.0)) jest-runner: 29.7.0 jest-serializer-html: 7.1.0 - jest-watch-typeahead: 2.2.2(jest@29.7.0(@types/node@20.17.6(patch_hash=9c31d25336aea4076b3cb942c35e59fd160c540947f01ea455a060367153f9fd))(babel-plugin-macros@3.1.0)) + jest-watch-typeahead: 2.2.2(jest@29.7.0(@types/node@20.17.6(patch_hash=rvl3vkomen3tospgr67bzubfyu))(babel-plugin-macros@3.1.0)) nyc: 15.1.0 playwright: 1.58.2 storybook: 8.6.0(prettier@3.6.2) @@ -23197,7 +23143,7 @@ snapshots: lz-string: 1.5.0 pretty-format: 27.5.1 - '@testing-library/jest-dom@6.1.2(@jest/globals@29.7.0)(@types/jest@29.5.5)(jest@29.7.0(@types/node@20.17.6(patch_hash=9c31d25336aea4076b3cb942c35e59fd160c540947f01ea455a060367153f9fd))(babel-plugin-macros@3.1.0))': + '@testing-library/jest-dom@6.1.2(@jest/globals@29.7.0)(@types/jest@29.5.5)(jest@29.7.0(@types/node@20.17.6(patch_hash=rvl3vkomen3tospgr67bzubfyu))(babel-plugin-macros@3.1.0))': dependencies: '@adobe/css-tools': 4.4.1 '@babel/runtime': 7.27.0 @@ -23210,7 +23156,7 @@ snapshots: optionalDependencies: '@jest/globals': 29.7.0 '@types/jest': 29.5.5 - jest: 29.7.0(@types/node@20.17.6(patch_hash=9c31d25336aea4076b3cb942c35e59fd160c540947f01ea455a060367153f9fd))(babel-plugin-macros@3.1.0) + jest: 29.7.0(@types/node@20.17.6(patch_hash=rvl3vkomen3tospgr67bzubfyu))(babel-plugin-macros@3.1.0) '@testing-library/jest-dom@6.5.0': dependencies: @@ -23312,27 +23258,27 @@ snapshots: '@types/body-parser@1.17.1': dependencies: '@types/connect': 3.4.33 - '@types/node': 20.17.6(patch_hash=9c31d25336aea4076b3cb942c35e59fd160c540947f01ea455a060367153f9fd) + '@types/node': 20.17.6(patch_hash=rvl3vkomen3tospgr67bzubfyu) '@types/bonjour@3.5.13': dependencies: - '@types/node': 20.17.6(patch_hash=9c31d25336aea4076b3cb942c35e59fd160c540947f01ea455a060367153f9fd) + '@types/node': 20.17.6(patch_hash=rvl3vkomen3tospgr67bzubfyu) '@types/btoa-lite@1.0.0': {} '@types/buffer-from@1.1.3': dependencies: - '@types/node': 20.17.6(patch_hash=9c31d25336aea4076b3cb942c35e59fd160c540947f01ea455a060367153f9fd) + '@types/node': 20.17.6(patch_hash=rvl3vkomen3tospgr67bzubfyu) '@types/busboy@1.5.3': dependencies: - '@types/node': 20.17.6(patch_hash=9c31d25336aea4076b3cb942c35e59fd160c540947f01ea455a060367153f9fd) + '@types/node': 20.17.6(patch_hash=rvl3vkomen3tospgr67bzubfyu) '@types/bytes@3.1.1': {} '@types/cheerio@0.22.16': dependencies: - '@types/node': 20.17.6(patch_hash=9c31d25336aea4076b3cb942c35e59fd160c540947f01ea455a060367153f9fd) + '@types/node': 20.17.6(patch_hash=rvl3vkomen3tospgr67bzubfyu) '@types/ci-info@2.0.0': {} @@ -23342,16 +23288,16 @@ snapshots: '@types/concat-stream@2.0.3': dependencies: - '@types/node': 20.17.6(patch_hash=9c31d25336aea4076b3cb942c35e59fd160c540947f01ea455a060367153f9fd) + '@types/node': 20.17.6(patch_hash=rvl3vkomen3tospgr67bzubfyu) '@types/connect-history-api-fallback@1.5.4': dependencies: '@types/express-serve-static-core': 4.17.33 - '@types/node': 20.17.6(patch_hash=9c31d25336aea4076b3cb942c35e59fd160c540947f01ea455a060367153f9fd) + '@types/node': 20.17.6(patch_hash=rvl3vkomen3tospgr67bzubfyu) '@types/connect@3.4.33': dependencies: - '@types/node': 20.17.6(patch_hash=9c31d25336aea4076b3cb942c35e59fd160c540947f01ea455a060367153f9fd) + '@types/node': 20.17.6(patch_hash=rvl3vkomen3tospgr67bzubfyu) '@types/content-disposition@0.5.4': {} @@ -23363,7 +23309,7 @@ snapshots: '@types/cross-spawn@6.0.0': dependencies: - '@types/node': 20.17.6(patch_hash=9c31d25336aea4076b3cb942c35e59fd160c540947f01ea455a060367153f9fd) + '@types/node': 20.17.6(patch_hash=rvl3vkomen3tospgr67bzubfyu) '@types/d3-scale-chromatic@3.0.3': {} @@ -23408,7 +23354,7 @@ snapshots: '@types/express-serve-static-core@4.17.33': dependencies: - '@types/node': 20.17.6(patch_hash=9c31d25336aea4076b3cb942c35e59fd160c540947f01ea455a060367153f9fd) + '@types/node': 20.17.6(patch_hash=rvl3vkomen3tospgr67bzubfyu) '@types/qs': 6.9.7 '@types/range-parser': 1.2.3 @@ -23431,23 +23377,23 @@ snapshots: '@types/fontkit@2.0.0': dependencies: - '@types/node': 20.17.6(patch_hash=9c31d25336aea4076b3cb942c35e59fd160c540947f01ea455a060367153f9fd) + '@types/node': 20.17.6(patch_hash=rvl3vkomen3tospgr67bzubfyu) '@types/fresh@0.5.0': {} '@types/fs-extra@8.1.0': dependencies: - '@types/node': 20.17.6(patch_hash=9c31d25336aea4076b3cb942c35e59fd160c540947f01ea455a060367153f9fd) + '@types/node': 20.17.6(patch_hash=rvl3vkomen3tospgr67bzubfyu) '@types/glob@7.1.1': dependencies: '@types/events': 3.0.0 '@types/minimatch': 3.0.3 - '@types/node': 20.17.6(patch_hash=9c31d25336aea4076b3cb942c35e59fd160c540947f01ea455a060367153f9fd) + '@types/node': 20.17.6(patch_hash=rvl3vkomen3tospgr67bzubfyu) '@types/graceful-fs@4.1.9': dependencies: - '@types/node': 20.17.6(patch_hash=9c31d25336aea4076b3cb942c35e59fd160c540947f01ea455a060367153f9fd) + '@types/node': 20.17.6(patch_hash=rvl3vkomen3tospgr67bzubfyu) '@types/hast@2.3.1': dependencies: @@ -23461,13 +23407,13 @@ snapshots: '@types/html-validator@5.0.3': dependencies: - '@types/node': 20.17.6(patch_hash=9c31d25336aea4076b3cb942c35e59fd160c540947f01ea455a060367153f9fd) + '@types/node': 20.17.6(patch_hash=rvl3vkomen3tospgr67bzubfyu) '@types/http-errors@2.0.4': {} '@types/http-proxy@1.17.17': dependencies: - '@types/node': 20.17.6(patch_hash=9c31d25336aea4076b3cb942c35e59fd160c540947f01ea455a060367153f9fd) + '@types/node': 20.17.6(patch_hash=rvl3vkomen3tospgr67bzubfyu) '@types/inquirer@8.2.9': dependencies: @@ -23509,7 +23455,7 @@ snapshots: '@types/jsdom@20.0.1': dependencies: - '@types/node': 20.17.6(patch_hash=9c31d25336aea4076b3cb942c35e59fd160c540947f01ea455a060367153f9fd) + '@types/node': 20.17.6(patch_hash=rvl3vkomen3tospgr67bzubfyu) '@types/tough-cookie': 4.0.3 parse5: 7.1.2 @@ -23521,17 +23467,17 @@ snapshots: '@types/jsonwebtoken@9.0.0': dependencies: - '@types/node': 20.17.6(patch_hash=9c31d25336aea4076b3cb942c35e59fd160c540947f01ea455a060367153f9fd) + '@types/node': 20.17.6(patch_hash=rvl3vkomen3tospgr67bzubfyu) '@types/junit-report-builder@3.0.2': {} '@types/keyv@3.1.1': dependencies: - '@types/node': 20.17.6(patch_hash=9c31d25336aea4076b3cb942c35e59fd160c540947f01ea455a060367153f9fd) + '@types/node': 20.17.6(patch_hash=rvl3vkomen3tospgr67bzubfyu) '@types/loader-runner@2.2.8': dependencies: - '@types/node': 20.17.6(patch_hash=9c31d25336aea4076b3cb942c35e59fd160c540947f01ea455a060367153f9fd) + '@types/node': 20.17.6(patch_hash=rvl3vkomen3tospgr67bzubfyu) '@types/lodash.curry@4.1.6': dependencies: @@ -23559,18 +23505,18 @@ snapshots: '@types/mute-stream@0.0.4': dependencies: - '@types/node': 20.17.6(patch_hash=9c31d25336aea4076b3cb942c35e59fd160c540947f01ea455a060367153f9fd) + '@types/node': 20.17.6(patch_hash=rvl3vkomen3tospgr67bzubfyu) '@types/node-fetch@2.6.1': dependencies: - '@types/node': 20.17.6(patch_hash=9c31d25336aea4076b3cb942c35e59fd160c540947f01ea455a060367153f9fd) + '@types/node': 20.17.6(patch_hash=rvl3vkomen3tospgr67bzubfyu) form-data: 3.0.1 '@types/node-forge@1.3.11': dependencies: - '@types/node': 20.17.6(patch_hash=9c31d25336aea4076b3cb942c35e59fd160c540947f01ea455a060367153f9fd) + '@types/node': 20.17.6(patch_hash=rvl3vkomen3tospgr67bzubfyu) - '@types/node@20.17.6(patch_hash=9c31d25336aea4076b3cb942c35e59fd160c540947f01ea455a060367153f9fd)': + '@types/node@20.17.6(patch_hash=rvl3vkomen3tospgr67bzubfyu)': dependencies: undici-types: 6.19.8 @@ -23592,7 +23538,7 @@ snapshots: '@types/prompts@2.4.2': dependencies: - '@types/node': 20.17.6(patch_hash=9c31d25336aea4076b3cb942c35e59fd160c540947f01ea455a060367153f9fd) + '@types/node': 20.17.6(patch_hash=rvl3vkomen3tospgr67bzubfyu) kleur: 3.0.3 '@types/q@1.5.2': {} @@ -23617,30 +23563,30 @@ snapshots: '@types/resolve@1.17.1': dependencies: - '@types/node': 20.17.6(patch_hash=9c31d25336aea4076b3cb942c35e59fd160c540947f01ea455a060367153f9fd) + '@types/node': 20.17.6(patch_hash=rvl3vkomen3tospgr67bzubfyu) '@types/resolve@1.20.6': {} '@types/responselike@1.0.0': dependencies: - '@types/node': 20.17.6(patch_hash=9c31d25336aea4076b3cb942c35e59fd160c540947f01ea455a060367153f9fd) + '@types/node': 20.17.6(patch_hash=rvl3vkomen3tospgr67bzubfyu) '@types/retry@0.12.0': {} '@types/semver@7.3.1': dependencies: - '@types/node': 20.17.6(patch_hash=9c31d25336aea4076b3cb942c35e59fd160c540947f01ea455a060367153f9fd) + '@types/node': 20.17.6(patch_hash=rvl3vkomen3tospgr67bzubfyu) '@types/semver@7.5.6': {} '@types/send@0.14.4': dependencies: '@types/mime': 2.0.1 - '@types/node': 20.17.6(patch_hash=9c31d25336aea4076b3cb942c35e59fd160c540947f01ea455a060367153f9fd) + '@types/node': 20.17.6(patch_hash=rvl3vkomen3tospgr67bzubfyu) '@types/serve-handler@6.1.4': dependencies: - '@types/node': 20.17.6(patch_hash=9c31d25336aea4076b3cb942c35e59fd160c540947f01ea455a060367153f9fd) + '@types/node': 20.17.6(patch_hash=rvl3vkomen3tospgr67bzubfyu) '@types/serve-index@1.9.4': dependencies: @@ -23654,20 +23600,20 @@ snapshots: '@types/serve-static@1.15.7': dependencies: '@types/http-errors': 2.0.4 - '@types/node': 20.17.6(patch_hash=9c31d25336aea4076b3cb942c35e59fd160c540947f01ea455a060367153f9fd) + '@types/node': 20.17.6(patch_hash=rvl3vkomen3tospgr67bzubfyu) '@types/send': 0.14.4 '@types/shell-quote@1.7.1': {} '@types/sockjs@0.3.36': dependencies: - '@types/node': 20.17.6(patch_hash=9c31d25336aea4076b3cb942c35e59fd160c540947f01ea455a060367153f9fd) + '@types/node': 20.17.6(patch_hash=rvl3vkomen3tospgr67bzubfyu) '@types/source-list-map@0.1.2': {} '@types/split2@4.2.3': dependencies: - '@types/node': 20.17.6(patch_hash=9c31d25336aea4076b3cb942c35e59fd160c540947f01ea455a060367153f9fd) + '@types/node': 20.17.6(patch_hash=rvl3vkomen3tospgr67bzubfyu) '@types/stack-utils@2.0.1': {} @@ -23681,7 +23627,7 @@ snapshots: '@types/through@0.0.30': dependencies: - '@types/node': 20.17.6(patch_hash=9c31d25336aea4076b3cb942c35e59fd160c540947f01ea455a060367153f9fd) + '@types/node': 20.17.6(patch_hash=rvl3vkomen3tospgr67bzubfyu) '@types/tough-cookie@4.0.3': {} @@ -23699,17 +23645,17 @@ snapshots: '@types/wait-on@5.3.4': dependencies: - '@types/node': 20.17.6(patch_hash=9c31d25336aea4076b3cb942c35e59fd160c540947f01ea455a060367153f9fd) + '@types/node': 20.17.6(patch_hash=rvl3vkomen3tospgr67bzubfyu) '@types/webpack-sources@0.1.5': dependencies: - '@types/node': 20.17.6(patch_hash=9c31d25336aea4076b3cb942c35e59fd160c540947f01ea455a060367153f9fd) + '@types/node': 20.17.6(patch_hash=rvl3vkomen3tospgr67bzubfyu) '@types/source-list-map': 0.1.2 source-map: 0.6.1 '@types/webpack@5.28.5(@swc/core@1.11.24(@swc/helpers@0.5.15))': dependencies: - '@types/node': 20.17.6(patch_hash=9c31d25336aea4076b3cb942c35e59fd160c540947f01ea455a060367153f9fd) + '@types/node': 20.17.6(patch_hash=rvl3vkomen3tospgr67bzubfyu) tapable: 2.2.0 webpack: 5.98.0(@swc/core@1.11.24(@swc/helpers@0.5.15)) transitivePeerDependencies: @@ -23722,11 +23668,11 @@ snapshots: '@types/ws@8.2.0': dependencies: - '@types/node': 20.17.6(patch_hash=9c31d25336aea4076b3cb942c35e59fd160c540947f01ea455a060367153f9fd) + '@types/node': 20.17.6(patch_hash=rvl3vkomen3tospgr67bzubfyu) '@types/ws@8.5.14': dependencies: - '@types/node': 20.17.6(patch_hash=9c31d25336aea4076b3cb942c35e59fd160c540947f01ea455a060367153f9fd) + '@types/node': 20.17.6(patch_hash=rvl3vkomen3tospgr67bzubfyu) '@types/yargs-parser@21.0.0': {} @@ -23959,7 +23905,7 @@ snapshots: - react-native-b4a - supports-color - '@vercel/blob@2.3.2(patch_hash=cb53bfa5effb15b3a361e176003df667cadf757b27b7c9b458c2f0fce86ea893)': + '@vercel/blob@2.3.2(patch_hash=wgz7wsmk55gemyvvjomcxgvlu4)': dependencies: async-retry: 1.3.3 is-buffer: 2.0.5 @@ -25973,13 +25919,13 @@ snapshots: safe-buffer: 5.2.1 sha.js: 2.4.11 - create-jest@29.7.0(@types/node@20.17.6(patch_hash=9c31d25336aea4076b3cb942c35e59fd160c540947f01ea455a060367153f9fd))(babel-plugin-macros@3.1.0): + create-jest@29.7.0(@types/node@20.17.6(patch_hash=rvl3vkomen3tospgr67bzubfyu))(babel-plugin-macros@3.1.0): dependencies: '@jest/types': 29.6.3 chalk: 4.1.2 exit: 0.1.2 graceful-fs: 4.2.11 - jest-config: 29.7.0(@types/node@20.17.6(patch_hash=9c31d25336aea4076b3cb942c35e59fd160c540947f01ea455a060367153f9fd))(babel-plugin-macros@3.1.0) + jest-config: 29.7.0(@types/node@20.17.6(patch_hash=rvl3vkomen3tospgr67bzubfyu))(babel-plugin-macros@3.1.0) jest-util: 29.7.0 prompts: 2.4.2 transitivePeerDependencies: @@ -26098,7 +26044,7 @@ snapshots: postcss: 8.5.10 postcss-selector-parser: 6.1.2 - css-loader@6.11.0(@rspack/core@1.6.7(patch_hash=4cf28ea116b0e27c7c80b09035905f9d16a7b18d1f2b7d312fc80d42cd57068d)(@swc/helpers@0.5.15))(webpack@5.98.0(@swc/core@1.11.24(@swc/helpers@0.5.15))(esbuild@0.25.9)): + css-loader@6.11.0(@rspack/core@1.6.7(patch_hash=jdm5v6k2jahxcby2dvmlprnxie)(@swc/helpers@0.5.15))(webpack@5.98.0(@swc/core@1.11.24(@swc/helpers@0.5.15))(esbuild@0.25.9)): dependencies: icss-utils: 5.1.0(postcss@8.5.10) postcss: 8.5.10 @@ -26109,10 +26055,10 @@ snapshots: postcss-value-parser: 4.2.0 semver: 7.6.3 optionalDependencies: - '@rspack/core': 1.6.7(patch_hash=4cf28ea116b0e27c7c80b09035905f9d16a7b18d1f2b7d312fc80d42cd57068d)(@swc/helpers@0.5.15) + '@rspack/core': 1.6.7(patch_hash=jdm5v6k2jahxcby2dvmlprnxie)(@swc/helpers@0.5.15) webpack: 5.98.0(@swc/core@1.11.24(@swc/helpers@0.5.15))(esbuild@0.25.9) - css-loader@7.1.2(@rspack/core@1.6.7(patch_hash=4cf28ea116b0e27c7c80b09035905f9d16a7b18d1f2b7d312fc80d42cd57068d)(@swc/helpers@0.5.15))(webpack@5.98.0(@swc/core@1.11.24(@swc/helpers@0.5.15))(esbuild@0.25.9)): + css-loader@7.1.2(@rspack/core@1.6.7(patch_hash=jdm5v6k2jahxcby2dvmlprnxie)(@swc/helpers@0.5.15))(webpack@5.98.0(@swc/core@1.11.24(@swc/helpers@0.5.15))(esbuild@0.25.9)): dependencies: icss-utils: 5.1.0(postcss@8.5.10) postcss: 8.5.10 @@ -26123,7 +26069,7 @@ snapshots: postcss-value-parser: 4.2.0 semver: 7.6.3 optionalDependencies: - '@rspack/core': 1.6.7(patch_hash=4cf28ea116b0e27c7c80b09035905f9d16a7b18d1f2b7d312fc80d42cd57068d)(@swc/helpers@0.5.15) + '@rspack/core': 1.6.7(patch_hash=jdm5v6k2jahxcby2dvmlprnxie)(@swc/helpers@0.5.15) webpack: 5.98.0(@swc/core@1.11.24(@swc/helpers@0.5.15))(esbuild@0.25.9) css-prefers-color-scheme@6.0.3(postcss@8.5.10): @@ -27570,12 +27516,12 @@ snapshots: - eslint-import-resolver-webpack - supports-color - eslint-plugin-jest@27.6.3(eslint@9.37.0(jiti@2.6.1))(jest@29.7.0(@types/node@20.17.6(patch_hash=9c31d25336aea4076b3cb942c35e59fd160c540947f01ea455a060367153f9fd))(babel-plugin-macros@3.1.0))(typescript@6.0.2): + eslint-plugin-jest@27.6.3(eslint@9.37.0(jiti@2.6.1))(jest@29.7.0(@types/node@20.17.6(patch_hash=rvl3vkomen3tospgr67bzubfyu))(babel-plugin-macros@3.1.0))(typescript@6.0.2): dependencies: '@typescript-eslint/utils': 5.62.0(eslint@9.37.0(jiti@2.6.1))(typescript@6.0.2) eslint: 9.37.0(jiti@2.6.1) optionalDependencies: - jest: 29.7.0(@types/node@20.17.6(patch_hash=9c31d25336aea4076b3cb942c35e59fd160c540947f01ea455a060367153f9fd))(babel-plugin-macros@3.1.0) + jest: 29.7.0(@types/node@20.17.6(patch_hash=rvl3vkomen3tospgr67bzubfyu))(babel-plugin-macros@3.1.0) transitivePeerDependencies: - supports-color - typescript @@ -29255,7 +29201,7 @@ snapshots: transitivePeerDependencies: - supports-color - html-webpack-plugin@5.6.3(@rspack/core@1.6.7(patch_hash=4cf28ea116b0e27c7c80b09035905f9d16a7b18d1f2b7d312fc80d42cd57068d)(@swc/helpers@0.5.15))(webpack@5.98.0(@swc/core@1.11.24(@swc/helpers@0.5.15))(esbuild@0.25.9)): + html-webpack-plugin@5.6.3(@rspack/core@1.6.7(patch_hash=jdm5v6k2jahxcby2dvmlprnxie)(@swc/helpers@0.5.15))(webpack@5.98.0(@swc/core@1.11.24(@swc/helpers@0.5.15))(esbuild@0.25.9)): dependencies: '@types/html-minifier-terser': 6.1.0 html-minifier-terser: 6.1.0 @@ -29263,7 +29209,7 @@ snapshots: pretty-error: 4.0.0 tapable: 2.2.1 optionalDependencies: - '@rspack/core': 1.6.7(patch_hash=4cf28ea116b0e27c7c80b09035905f9d16a7b18d1f2b7d312fc80d42cd57068d)(@swc/helpers@0.5.15) + '@rspack/core': 1.6.7(patch_hash=jdm5v6k2jahxcby2dvmlprnxie)(@swc/helpers@0.5.15) webpack: 5.98.0(@swc/core@1.11.24(@swc/helpers@0.5.15))(esbuild@0.25.9) htmlparser2@3.10.1: @@ -29354,7 +29300,7 @@ snapshots: http-proxy-middleware@2.0.7(@types/express@4.17.21): dependencies: '@types/http-proxy': 1.17.17 - http-proxy: 1.18.1(patch_hash=3aac1c597fabd03f9fb4e3fd6e689b87012758d4fed06f296541f9dc3b8d7b39) + http-proxy: 1.18.1(patch_hash=eyqcxg3pntyhqyqr5zytxa7pbi) is-glob: 4.0.3 is-plain-obj: 3.0.0 micromatch: 4.0.8 @@ -29363,7 +29309,7 @@ snapshots: transitivePeerDependencies: - supports-color - http-proxy@1.18.1(patch_hash=3aac1c597fabd03f9fb4e3fd6e689b87012758d4fed06f296541f9dc3b8d7b39): + http-proxy@1.18.1(patch_hash=eyqcxg3pntyhqyqr5zytxa7pbi): dependencies: eventemitter3: 4.0.7 follow-redirects: 1.9.0 @@ -29560,17 +29506,17 @@ snapshots: transitivePeerDependencies: - supports-color - inquirer@12.9.6(@types/node@20.17.6(patch_hash=9c31d25336aea4076b3cb942c35e59fd160c540947f01ea455a060367153f9fd)): + inquirer@12.9.6(@types/node@20.17.6(patch_hash=rvl3vkomen3tospgr67bzubfyu)): dependencies: '@inquirer/ansi': 1.0.2 - '@inquirer/core': 10.3.2(@types/node@20.17.6(patch_hash=9c31d25336aea4076b3cb942c35e59fd160c540947f01ea455a060367153f9fd)) - '@inquirer/prompts': 7.10.1(@types/node@20.17.6(patch_hash=9c31d25336aea4076b3cb942c35e59fd160c540947f01ea455a060367153f9fd)) - '@inquirer/type': 3.0.10(@types/node@20.17.6(patch_hash=9c31d25336aea4076b3cb942c35e59fd160c540947f01ea455a060367153f9fd)) + '@inquirer/core': 10.3.2(@types/node@20.17.6(patch_hash=rvl3vkomen3tospgr67bzubfyu)) + '@inquirer/prompts': 7.10.1(@types/node@20.17.6(patch_hash=rvl3vkomen3tospgr67bzubfyu)) + '@inquirer/type': 3.0.10(@types/node@20.17.6(patch_hash=rvl3vkomen3tospgr67bzubfyu)) mute-stream: 2.0.0 run-async: 4.0.6 rxjs: 7.8.2 optionalDependencies: - '@types/node': 20.17.6(patch_hash=9c31d25336aea4076b3cb942c35e59fd160c540947f01ea455a060367153f9fd) + '@types/node': 20.17.6(patch_hash=rvl3vkomen3tospgr67bzubfyu) inquirer@5.2.0: dependencies: @@ -30159,7 +30105,7 @@ snapshots: '@jest/expect': 29.7.0 '@jest/test-result': 29.7.0 '@jest/types': 29.5.0 - '@types/node': 20.17.6(patch_hash=9c31d25336aea4076b3cb942c35e59fd160c540947f01ea455a060367153f9fd) + '@types/node': 20.17.6(patch_hash=rvl3vkomen3tospgr67bzubfyu) chalk: 4.1.2 co: 4.6.0 dedent: 0.7.0 @@ -30184,7 +30130,7 @@ snapshots: '@jest/expect': 29.7.0 '@jest/test-result': 29.7.0 '@jest/types': 29.6.3 - '@types/node': 20.17.6(patch_hash=9c31d25336aea4076b3cb942c35e59fd160c540947f01ea455a060367153f9fd) + '@types/node': 20.17.6(patch_hash=rvl3vkomen3tospgr67bzubfyu) chalk: 4.1.2 co: 4.6.0 dedent: 1.5.1(babel-plugin-macros@3.1.0) @@ -30204,16 +30150,16 @@ snapshots: - babel-plugin-macros - supports-color - jest-cli@29.7.0(@types/node@20.17.6(patch_hash=9c31d25336aea4076b3cb942c35e59fd160c540947f01ea455a060367153f9fd))(babel-plugin-macros@3.1.0): + jest-cli@29.7.0(@types/node@20.17.6(patch_hash=rvl3vkomen3tospgr67bzubfyu))(babel-plugin-macros@3.1.0): dependencies: '@jest/core': 29.7.0(babel-plugin-macros@3.1.0) '@jest/test-result': 29.7.0 '@jest/types': 29.6.3 chalk: 4.1.2 - create-jest: 29.7.0(@types/node@20.17.6(patch_hash=9c31d25336aea4076b3cb942c35e59fd160c540947f01ea455a060367153f9fd))(babel-plugin-macros@3.1.0) + create-jest: 29.7.0(@types/node@20.17.6(patch_hash=rvl3vkomen3tospgr67bzubfyu))(babel-plugin-macros@3.1.0) exit: 0.1.2 import-local: 3.0.2 - jest-config: 29.7.0(@types/node@20.17.6(patch_hash=9c31d25336aea4076b3cb942c35e59fd160c540947f01ea455a060367153f9fd))(babel-plugin-macros@3.1.0) + jest-config: 29.7.0(@types/node@20.17.6(patch_hash=rvl3vkomen3tospgr67bzubfyu))(babel-plugin-macros@3.1.0) jest-util: 29.7.0 jest-validate: 29.7.0 yargs: 17.7.2 @@ -30223,7 +30169,7 @@ snapshots: - supports-color - ts-node - jest-config@29.7.0(@types/node@20.17.6(patch_hash=9c31d25336aea4076b3cb942c35e59fd160c540947f01ea455a060367153f9fd))(babel-plugin-macros@3.1.0): + jest-config@29.7.0(@types/node@20.17.6(patch_hash=rvl3vkomen3tospgr67bzubfyu))(babel-plugin-macros@3.1.0): dependencies: '@babel/core': 7.26.10 '@jest/test-sequencer': 29.7.0 @@ -30248,7 +30194,7 @@ snapshots: slash: 3.0.0 strip-json-comments: 3.1.1 optionalDependencies: - '@types/node': 20.17.6(patch_hash=9c31d25336aea4076b3cb942c35e59fd160c540947f01ea455a060367153f9fd) + '@types/node': 20.17.6(patch_hash=rvl3vkomen3tospgr67bzubfyu) transitivePeerDependencies: - babel-plugin-macros - supports-color @@ -30292,7 +30238,7 @@ snapshots: '@jest/fake-timers': 29.7.0 '@jest/types': 29.6.3 '@types/jsdom': 20.0.1 - '@types/node': 20.17.6(patch_hash=9c31d25336aea4076b3cb942c35e59fd160c540947f01ea455a060367153f9fd) + '@types/node': 20.17.6(patch_hash=rvl3vkomen3tospgr67bzubfyu) jest-mock: 29.7.0 jest-util: 29.7.0 jsdom: 20.0.3 @@ -30306,16 +30252,16 @@ snapshots: '@jest/environment': 29.7.0 '@jest/fake-timers': 29.7.0 '@jest/types': 29.6.3 - '@types/node': 20.17.6(patch_hash=9c31d25336aea4076b3cb942c35e59fd160c540947f01ea455a060367153f9fd) + '@types/node': 20.17.6(patch_hash=rvl3vkomen3tospgr67bzubfyu) jest-mock: 29.7.0 jest-util: 29.7.0 - jest-extended@4.0.2(jest@29.7.0(@types/node@20.17.6(patch_hash=9c31d25336aea4076b3cb942c35e59fd160c540947f01ea455a060367153f9fd))(babel-plugin-macros@3.1.0)): + jest-extended@4.0.2(jest@29.7.0(@types/node@20.17.6(patch_hash=rvl3vkomen3tospgr67bzubfyu))(babel-plugin-macros@3.1.0)): dependencies: jest-diff: 29.7.0 jest-get-type: 29.6.3 optionalDependencies: - jest: 29.7.0(@types/node@20.17.6(patch_hash=9c31d25336aea4076b3cb942c35e59fd160c540947f01ea455a060367153f9fd))(babel-plugin-macros@3.1.0) + jest: 29.7.0(@types/node@20.17.6(patch_hash=rvl3vkomen3tospgr67bzubfyu))(babel-plugin-macros@3.1.0) jest-get-type@29.6.3: {} @@ -30325,7 +30271,7 @@ snapshots: dependencies: '@jest/types': 29.5.0 '@types/graceful-fs': 4.1.9 - '@types/node': 20.17.6(patch_hash=9c31d25336aea4076b3cb942c35e59fd160c540947f01ea455a060367153f9fd) + '@types/node': 20.17.6(patch_hash=rvl3vkomen3tospgr67bzubfyu) anymatch: 3.1.3 fb-watchman: 2.0.1 graceful-fs: 4.2.11 @@ -30341,7 +30287,7 @@ snapshots: dependencies: '@jest/types': 29.6.3 '@types/graceful-fs': 4.1.9 - '@types/node': 20.17.6(patch_hash=9c31d25336aea4076b3cb942c35e59fd160c540947f01ea455a060367153f9fd) + '@types/node': 20.17.6(patch_hash=rvl3vkomen3tospgr67bzubfyu) anymatch: 3.1.3 fb-watchman: 2.0.1 graceful-fs: 4.2.11 @@ -30356,7 +30302,7 @@ snapshots: jest-haste-map@30.0.0-alpha.6: dependencies: '@jest/types': 30.0.0-alpha.6 - '@types/node': 20.17.6(patch_hash=9c31d25336aea4076b3cb942c35e59fd160c540947f01ea455a060367153f9fd) + '@types/node': 20.17.6(patch_hash=rvl3vkomen3tospgr67bzubfyu) anymatch: 3.1.3 fb-watchman: 2.0.1 graceful-fs: 4.2.11 @@ -30421,25 +30367,25 @@ snapshots: jest-mock@29.5.0: dependencies: '@jest/types': 29.5.0 - '@types/node': 20.17.6(patch_hash=9c31d25336aea4076b3cb942c35e59fd160c540947f01ea455a060367153f9fd) + '@types/node': 20.17.6(patch_hash=rvl3vkomen3tospgr67bzubfyu) jest-util: 29.7.0 jest-mock@29.7.0: dependencies: '@jest/types': 29.6.3 - '@types/node': 20.17.6(patch_hash=9c31d25336aea4076b3cb942c35e59fd160c540947f01ea455a060367153f9fd) + '@types/node': 20.17.6(patch_hash=rvl3vkomen3tospgr67bzubfyu) jest-util: 29.7.0 jest-mock@30.0.0-alpha.6: dependencies: '@jest/types': 30.0.0-alpha.6 - '@types/node': 20.17.6(patch_hash=9c31d25336aea4076b3cb942c35e59fd160c540947f01ea455a060367153f9fd) + '@types/node': 20.17.6(patch_hash=rvl3vkomen3tospgr67bzubfyu) jest-util: 30.0.0-alpha.6 - jest-playwright-preset@4.0.0(debug@4.1.1)(jest-circus@29.7.0(babel-plugin-macros@3.1.0))(jest-environment-node@29.7.0)(jest-runner@29.7.0)(jest@29.7.0(@types/node@20.17.6(patch_hash=9c31d25336aea4076b3cb942c35e59fd160c540947f01ea455a060367153f9fd))(babel-plugin-macros@3.1.0)): + jest-playwright-preset@4.0.0(debug@4.1.1)(jest-circus@29.7.0(babel-plugin-macros@3.1.0))(jest-environment-node@29.7.0)(jest-runner@29.7.0)(jest@29.7.0(@types/node@20.17.6(patch_hash=rvl3vkomen3tospgr67bzubfyu))(babel-plugin-macros@3.1.0)): dependencies: expect-playwright: 0.8.0 - jest: 29.7.0(@types/node@20.17.6(patch_hash=9c31d25336aea4076b3cb942c35e59fd160c540947f01ea455a060367153f9fd))(babel-plugin-macros@3.1.0) + jest: 29.7.0(@types/node@20.17.6(patch_hash=rvl3vkomen3tospgr67bzubfyu))(babel-plugin-macros@3.1.0) jest-circus: 29.7.0(babel-plugin-macros@3.1.0) jest-environment-node: 29.7.0 jest-process-manager: 0.4.0(debug@4.1.1) @@ -30504,7 +30450,7 @@ snapshots: '@jest/test-result': 29.7.0 '@jest/transform': 29.7.0 '@jest/types': 29.6.3 - '@types/node': 20.17.6(patch_hash=9c31d25336aea4076b3cb942c35e59fd160c540947f01ea455a060367153f9fd) + '@types/node': 20.17.6(patch_hash=rvl3vkomen3tospgr67bzubfyu) chalk: 4.1.2 emittery: 0.13.1 graceful-fs: 4.2.11 @@ -30532,7 +30478,7 @@ snapshots: '@jest/test-result': 29.7.0 '@jest/transform': 29.7.0 '@jest/types': 29.6.3 - '@types/node': 20.17.6(patch_hash=9c31d25336aea4076b3cb942c35e59fd160c540947f01ea455a060367153f9fd) + '@types/node': 20.17.6(patch_hash=rvl3vkomen3tospgr67bzubfyu) chalk: 4.1.2 cjs-module-lexer: 1.2.2 collect-v8-coverage: 1.0.1 @@ -30583,7 +30529,7 @@ snapshots: jest-util@29.5.0: dependencies: '@jest/types': 29.5.0 - '@types/node': 20.17.6(patch_hash=9c31d25336aea4076b3cb942c35e59fd160c540947f01ea455a060367153f9fd) + '@types/node': 20.17.6(patch_hash=rvl3vkomen3tospgr67bzubfyu) chalk: 4.1.2 ci-info: 3.8.0 graceful-fs: 4.2.11 @@ -30592,7 +30538,7 @@ snapshots: jest-util@29.7.0: dependencies: '@jest/types': 29.6.3 - '@types/node': 20.17.6(patch_hash=9c31d25336aea4076b3cb942c35e59fd160c540947f01ea455a060367153f9fd) + '@types/node': 20.17.6(patch_hash=rvl3vkomen3tospgr67bzubfyu) chalk: 4.1.2 ci-info: 3.8.0 graceful-fs: 4.2.11 @@ -30601,7 +30547,7 @@ snapshots: jest-util@30.0.0-alpha.6: dependencies: '@jest/types': 30.0.0-alpha.6 - '@types/node': 20.17.6(patch_hash=9c31d25336aea4076b3cb942c35e59fd160c540947f01ea455a060367153f9fd) + '@types/node': 20.17.6(patch_hash=rvl3vkomen3tospgr67bzubfyu) chalk: 4.1.2 ci-info: 4.0.0 graceful-fs: 4.2.11 @@ -30616,11 +30562,11 @@ snapshots: leven: 3.1.0 pretty-format: 29.7.0 - jest-watch-typeahead@2.2.2(jest@29.7.0(@types/node@20.17.6(patch_hash=9c31d25336aea4076b3cb942c35e59fd160c540947f01ea455a060367153f9fd))(babel-plugin-macros@3.1.0)): + jest-watch-typeahead@2.2.2(jest@29.7.0(@types/node@20.17.6(patch_hash=rvl3vkomen3tospgr67bzubfyu))(babel-plugin-macros@3.1.0)): dependencies: ansi-escapes: 6.2.1 chalk: 5.3.0 - jest: 29.7.0(@types/node@20.17.6(patch_hash=9c31d25336aea4076b3cb942c35e59fd160c540947f01ea455a060367153f9fd))(babel-plugin-macros@3.1.0) + jest: 29.7.0(@types/node@20.17.6(patch_hash=rvl3vkomen3tospgr67bzubfyu))(babel-plugin-macros@3.1.0) jest-regex-util: 29.6.3 jest-watcher: 29.7.0 slash: 5.1.0 @@ -30631,7 +30577,7 @@ snapshots: dependencies: '@jest/test-result': 29.7.0 '@jest/types': 29.6.3 - '@types/node': 20.17.6(patch_hash=9c31d25336aea4076b3cb942c35e59fd160c540947f01ea455a060367153f9fd) + '@types/node': 20.17.6(patch_hash=rvl3vkomen3tospgr67bzubfyu) ansi-escapes: 4.3.2 chalk: 4.1.2 emittery: 0.13.1 @@ -30640,37 +30586,37 @@ snapshots: jest-worker@26.6.2: dependencies: - '@types/node': 20.17.6(patch_hash=9c31d25336aea4076b3cb942c35e59fd160c540947f01ea455a060367153f9fd) + '@types/node': 20.17.6(patch_hash=rvl3vkomen3tospgr67bzubfyu) merge-stream: 2.0.0 supports-color: 7.2.0 jest-worker@27.5.1: dependencies: - '@types/node': 20.17.6(patch_hash=9c31d25336aea4076b3cb942c35e59fd160c540947f01ea455a060367153f9fd) + '@types/node': 20.17.6(patch_hash=rvl3vkomen3tospgr67bzubfyu) merge-stream: 2.0.0 supports-color: 8.1.1 jest-worker@29.7.0: dependencies: - '@types/node': 20.17.6(patch_hash=9c31d25336aea4076b3cb942c35e59fd160c540947f01ea455a060367153f9fd) + '@types/node': 20.17.6(patch_hash=rvl3vkomen3tospgr67bzubfyu) jest-util: 29.7.0 merge-stream: 2.0.0 supports-color: 8.1.1 jest-worker@30.0.0-alpha.6: dependencies: - '@types/node': 20.17.6(patch_hash=9c31d25336aea4076b3cb942c35e59fd160c540947f01ea455a060367153f9fd) + '@types/node': 20.17.6(patch_hash=rvl3vkomen3tospgr67bzubfyu) '@ungap/structured-clone': 1.2.0 jest-util: 30.0.0-alpha.6 merge-stream: 2.0.0 supports-color: 8.1.1 - jest@29.7.0(@types/node@20.17.6(patch_hash=9c31d25336aea4076b3cb942c35e59fd160c540947f01ea455a060367153f9fd))(babel-plugin-macros@3.1.0): + jest@29.7.0(@types/node@20.17.6(patch_hash=rvl3vkomen3tospgr67bzubfyu))(babel-plugin-macros@3.1.0): dependencies: '@jest/core': 29.7.0(babel-plugin-macros@3.1.0) '@jest/types': 29.6.3 import-local: 3.0.2 - jest-cli: 29.7.0(@types/node@20.17.6(patch_hash=9c31d25336aea4076b3cb942c35e59fd160c540947f01ea455a060367153f9fd))(babel-plugin-macros@3.1.0) + jest-cli: 29.7.0(@types/node@20.17.6(patch_hash=rvl3vkomen3tospgr67bzubfyu))(babel-plugin-macros@3.1.0) transitivePeerDependencies: - '@types/node' - babel-plugin-macros @@ -30951,9 +30897,9 @@ snapshots: lcov-parse@0.0.10: {} - lerna@9.0.3(@swc/core@1.11.24(@swc/helpers@0.5.15))(@types/node@20.17.6(patch_hash=9c31d25336aea4076b3cb942c35e59fd160c540947f01ea455a060367153f9fd))(babel-plugin-macros@3.1.0): + lerna@9.0.3(@swc/core@1.11.24(@swc/helpers@0.5.15))(@types/node@20.17.6(patch_hash=rvl3vkomen3tospgr67bzubfyu))(babel-plugin-macros@3.1.0): dependencies: - '@lerna/create': 9.0.3(@swc/core@1.11.24(@swc/helpers@0.5.15))(@types/node@20.17.6(patch_hash=9c31d25336aea4076b3cb942c35e59fd160c540947f01ea455a060367153f9fd))(babel-plugin-macros@3.1.0)(typescript@5.9.2) + '@lerna/create': 9.0.3(@swc/core@1.11.24(@swc/helpers@0.5.15))(@types/node@20.17.6(patch_hash=rvl3vkomen3tospgr67bzubfyu))(babel-plugin-macros@3.1.0)(typescript@5.9.2) '@npmcli/arborist': 9.1.6 '@npmcli/package-json': 7.0.2 '@npmcli/run-script': 10.0.2 @@ -30983,7 +30929,7 @@ snapshots: import-local: 3.1.0 ini: 1.3.8 init-package-json: 8.2.2 - inquirer: 12.9.6(@types/node@20.17.6(patch_hash=9c31d25336aea4076b3cb942c35e59fd160c540947f01ea455a060367153f9fd)) + inquirer: 12.9.6(@types/node@20.17.6(patch_hash=rvl3vkomen3tospgr67bzubfyu)) is-ci: 3.0.1 is-stream: 2.0.0 jest-diff: 30.2.0 @@ -32509,7 +32455,7 @@ snapshots: dependencies: minipass: 7.1.2 minipass-sized: 1.0.3 - minizlib: 3.1.0(patch_hash=587688821244aaee46680929cd869947377a284ac1b30c9ae8660a5ea7d2be67) + minizlib: 3.1.0(patch_hash=o4nv5mg6kfnuzlknbdln3azhvu) optionalDependencies: encoding: 0.1.13 @@ -32540,7 +32486,7 @@ snapshots: minipass: 3.1.3 yallist: 4.0.0 - minizlib@3.1.0(patch_hash=587688821244aaee46680929cd869947377a284ac1b30c9ae8660a5ea7d2be67): + minizlib@3.1.0(patch_hash=o4nv5mg6kfnuzlknbdln3azhvu): dependencies: minipass: 7.1.2 @@ -32930,7 +32876,7 @@ snapshots: make-fetch-happen: 15.0.2 minipass: 7.1.2 minipass-fetch: 4.0.1 - minizlib: 3.1.0(patch_hash=587688821244aaee46680929cd869947377a284ac1b30c9ae8660a5ea7d2be67) + minizlib: 3.1.0(patch_hash=o4nv5mg6kfnuzlknbdln3azhvu) npm-package-arg: 13.0.1 proc-log: 5.0.0 transitivePeerDependencies: @@ -34306,7 +34252,7 @@ snapshots: dependencies: postcss: 8.5.10 - postcss-scss@4.0.3(patch_hash=88893e632b3e099730dc0ffcc93cf3654b31c277da9e2796e822f6b5aeedc093)(postcss@8.5.10): + postcss-scss@4.0.3(patch_hash=gvnkumx3bgxdg2bw7ttpz6v4ma)(postcss@8.5.10): dependencies: postcss: 8.5.10 @@ -34578,7 +34524,7 @@ snapshots: '@protobufjs/pool': 1.1.0 '@protobufjs/utf8': 1.1.0 '@types/long': 4.0.1 - '@types/node': 20.17.6(patch_hash=9c31d25336aea4076b3cb942c35e59fd160c540947f01ea455a060367153f9fd) + '@types/node': 20.17.6(patch_hash=rvl3vkomen3tospgr67bzubfyu) long: 4.0.0 protobufjs@7.2.4: @@ -34593,7 +34539,7 @@ snapshots: '@protobufjs/path': 1.1.2 '@protobufjs/pool': 1.1.0 '@protobufjs/utf8': 1.1.0 - '@types/node': 20.17.6(patch_hash=9c31d25336aea4076b3cb942c35e59fd160c540947f01ea455a060367153f9fd) + '@types/node': 20.17.6(patch_hash=rvl3vkomen3tospgr67bzubfyu) long: 5.2.3 protobufjs@7.5.4: @@ -34608,7 +34554,7 @@ snapshots: '@protobufjs/path': 1.1.2 '@protobufjs/pool': 1.1.0 '@protobufjs/utf8': 1.1.0 - '@types/node': 20.17.6(patch_hash=9c31d25336aea4076b3cb942c35e59fd160c540947f01ea455a060367153f9fd) + '@types/node': 20.17.6(patch_hash=rvl3vkomen3tospgr67bzubfyu) long: 5.2.3 protocols@2.0.2: {} @@ -34863,7 +34809,7 @@ snapshots: react: 19.3.0-canary-dd453071-20260506 react-dom: 19.3.0-canary-dd453071-20260506(react@19.3.0-canary-dd453071-20260506) webpack: 5.98.0(@swc/core@1.11.24(@swc/helpers@0.5.15)) - webpack-sources: 3.2.3(patch_hash=26afc15966a3fc37a3d1d366312a95ce66723513f6a3a720e4166a37147da8bd) + webpack-sources: 3.2.3(patch_hash=jbynf5dc46ambamq3wuyho6hkq) react-server-dom-webpack@19.3.0-canary-dd453071-20260506(react-dom@19.3.0-canary-dd453071-20260506(react@19.3.0-canary-dd453071-20260506))(react@19.3.0-canary-dd453071-20260506)(webpack@5.98.0(@swc/core@1.11.24(@swc/helpers@0.5.15))): dependencies: @@ -34872,7 +34818,7 @@ snapshots: react: 19.3.0-canary-dd453071-20260506 react-dom: 19.3.0-canary-dd453071-20260506(react@19.3.0-canary-dd453071-20260506) webpack: 5.98.0(@swc/core@1.11.24(@swc/helpers@0.5.15)) - webpack-sources: 3.2.3(patch_hash=26afc15966a3fc37a3d1d366312a95ce66723513f6a3a720e4166a37147da8bd) + webpack-sources: 3.2.3(patch_hash=jbynf5dc46ambamq3wuyho6hkq) react-shallow-renderer@16.15.0(react@19.3.0-canary-dd453071-20260506): dependencies: @@ -35642,11 +35588,11 @@ snapshots: safer-buffer@2.1.2: {} - sass-loader@16.0.5(@rspack/core@1.6.7(patch_hash=4cf28ea116b0e27c7c80b09035905f9d16a7b18d1f2b7d312fc80d42cd57068d)(@swc/helpers@0.5.15))(sass@1.77.8)(webpack@5.98.0(@swc/core@1.11.24(@swc/helpers@0.5.15))(esbuild@0.25.9)): + sass-loader@16.0.5(@rspack/core@1.6.7(patch_hash=jdm5v6k2jahxcby2dvmlprnxie)(@swc/helpers@0.5.15))(sass@1.77.8)(webpack@5.98.0(@swc/core@1.11.24(@swc/helpers@0.5.15))(esbuild@0.25.9)): dependencies: neo-async: 2.6.2 optionalDependencies: - '@rspack/core': 1.6.7(patch_hash=4cf28ea116b0e27c7c80b09035905f9d16a7b18d1f2b7d312fc80d42cd57068d)(@swc/helpers@0.5.15) + '@rspack/core': 1.6.7(patch_hash=jdm5v6k2jahxcby2dvmlprnxie)(@swc/helpers@0.5.15) sass: 1.77.8 webpack: 5.98.0(@swc/core@1.11.24(@swc/helpers@0.5.15))(esbuild@0.25.9) @@ -36278,7 +36224,7 @@ snapshots: dependencies: escape-string-regexp: 2.0.0 - stacktrace-parser@0.1.10(patch_hash=5e07adcb70fa52f969ea76c939668fd09762774a60ec849622e44e5362354dd5): + stacktrace-parser@0.1.10(patch_hash=x5tdcojc7b5m2b5ojepbcdl36a): dependencies: type-fest: 0.7.1 @@ -36771,7 +36717,7 @@ snapshots: '@isaacs/fs-minipass': 4.0.1 chownr: 3.0.0 minipass: 7.1.2 - minizlib: 3.1.0(patch_hash=587688821244aaee46680929cd869947377a284ac1b30c9ae8660a5ea7d2be67) + minizlib: 3.1.0(patch_hash=o4nv5mg6kfnuzlknbdln3azhvu) yallist: 5.0.0 tar@7.5.7: @@ -36779,10 +36725,10 @@ snapshots: '@isaacs/fs-minipass': 4.0.1 chownr: 3.0.0 minipass: 7.1.2 - minizlib: 3.1.0(patch_hash=587688821244aaee46680929cd869947377a284ac1b30c9ae8660a5ea7d2be67) + minizlib: 3.1.0(patch_hash=o4nv5mg6kfnuzlknbdln3azhvu) yallist: 5.0.0 - taskr@1.1.0(patch_hash=1d0f571943b5d4761d4f2f39723796e402dd317f14a7c714e2021d3f12cc481c): + taskr@1.1.0(patch_hash=utitb3olraq7egc3hk7waltisu): dependencies: bluebird: 3.7.2 clor: 5.2.0 @@ -37025,12 +36971,12 @@ snapshots: ts-dedent@2.2.0: {} - ts-jest@29.4.5(@babel/core@7.26.10)(@jest/transform@29.7.0)(@jest/types@29.6.3)(babel-jest@29.7.0(@babel/core@7.26.10))(jest-util@29.7.0)(jest@29.7.0(@types/node@20.17.6(patch_hash=9c31d25336aea4076b3cb942c35e59fd160c540947f01ea455a060367153f9fd))(babel-plugin-macros@3.1.0))(typescript@6.0.2): + ts-jest@29.4.5(@babel/core@7.26.10)(@jest/transform@29.7.0)(@jest/types@29.6.3)(babel-jest@29.7.0(@babel/core@7.26.10))(jest-util@29.7.0)(jest@29.7.0(@types/node@20.17.6(patch_hash=rvl3vkomen3tospgr67bzubfyu))(babel-plugin-macros@3.1.0))(typescript@6.0.2): dependencies: bs-logger: 0.2.6 fast-json-stable-stringify: 2.1.0 handlebars: 4.7.8 - jest: 29.7.0(@types/node@20.17.6(patch_hash=9c31d25336aea4076b3cb942c35e59fd160c540947f01ea455a060367153f9fd))(babel-plugin-macros@3.1.0) + jest: 29.7.0(@types/node@20.17.6(patch_hash=rvl3vkomen3tospgr67bzubfyu))(babel-plugin-macros@3.1.0) json5: 2.2.3 lodash.memoize: 4.1.2 make-error: 1.3.6 @@ -37301,7 +37247,7 @@ snapshots: '@types/concat-stream': 2.0.3 '@types/debug': 4.1.5 '@types/is-empty': 1.2.3 - '@types/node': 20.17.6(patch_hash=9c31d25336aea4076b3cb942c35e59fd160c540947f01ea455a060367153f9fd) + '@types/node': 20.17.6(patch_hash=rvl3vkomen3tospgr67bzubfyu) '@types/unist': 3.0.3 concat-stream: 2.0.0 debug: 4.1.1 @@ -37906,7 +37852,7 @@ snapshots: web-namespaces@1.1.4: {} - web-vitals@4.2.1(patch_hash=f4d0a6719cc28520df7c47a0e2c2641759c2a0ad06ad57868c4c9d0567d4276d): {} + web-vitals@4.2.1(patch_hash=efp2yd5xczijcd5bxgfzqgk3te): {} web-worker@1.3.0: {} @@ -38033,7 +37979,7 @@ snapshots: source-list-map: 2.0.1 source-map: 0.6.1 - webpack-sources@3.2.3(patch_hash=26afc15966a3fc37a3d1d366312a95ce66723513f6a3a720e4166a37147da8bd): {} + webpack-sources@3.2.3(patch_hash=jbynf5dc46ambamq3wuyho6hkq): {} webpack-stats-plugin@1.1.0: {} @@ -38063,7 +38009,7 @@ snapshots: tapable: 2.2.1 terser-webpack-plugin: 5.3.11(@swc/core@1.11.24(@swc/helpers@0.5.15))(webpack@5.98.0(@swc/core@1.11.24(@swc/helpers@0.5.15))) watchpack: 2.4.2 - webpack-sources: 3.2.3(patch_hash=26afc15966a3fc37a3d1d366312a95ce66723513f6a3a720e4166a37147da8bd) + webpack-sources: 3.2.3(patch_hash=jbynf5dc46ambamq3wuyho6hkq) transitivePeerDependencies: - '@swc/core' - esbuild @@ -38093,7 +38039,7 @@ snapshots: tapable: 2.2.1 terser-webpack-plugin: 5.3.11(@swc/core@1.11.24(@swc/helpers@0.5.15))(esbuild@0.25.9)(webpack@5.98.0(@swc/core@1.11.24(@swc/helpers@0.5.15))(esbuild@0.25.9)) watchpack: 2.4.2 - webpack-sources: 3.2.3(patch_hash=26afc15966a3fc37a3d1d366312a95ce66723513f6a3a720e4166a37147da8bd) + webpack-sources: 3.2.3(patch_hash=jbynf5dc46ambamq3wuyho6hkq) transitivePeerDependencies: - '@swc/core' - esbuild