diff --git a/apps/blog/package.json b/apps/blog/package.json index 036fd1d2..d19054b5 100644 --- a/apps/blog/package.json +++ b/apps/blog/package.json @@ -22,42 +22,42 @@ "@marshallku/toast": "workspace:^", "@marshallku/ui": "workspace:^", "@marshallku/utils": "workspace:^", - "@next/eslint-plugin-next": "^15.1.0", - "@next/third-parties": "^15.1.0", - "@tanstack/react-query": "^5.62.7", + "@next/eslint-plugin-next": "^15.0.3", + "@next/third-parties": "^15.0.3", + "@tanstack/react-query": "^5.59.20", "copy2clip": "^1.1.1", "gray-matter": "^4.0.3", "image-size": "^1.1.1", - "marked": "^15.0.4", - "monocart-coverage-reports": "^2.11.4", - "next": "^15.1.0", + "marked": "^15.0.0", + "monocart-coverage-reports": "^2.11.2", + "next": "^15.0.3", "next-mdx-remote": "^5.0.0", - "react": "^19.0.0", - "react-dom": "^19.0.0", + "react": "^18.3.1", + "react-dom": "^18.3.1", "rehype-autolink-headings": "^7.1.0", "rehype-pretty-code": "^0.14.0", "rehype-slug": "^6.0.0", "rehype-unwrap-images": "^1.0.0", "remark-gfm": "^4.0.0", "remark-toc": "^9.0.0", - "smooth-zoom": "^1.5.0", - "zod": "^3.24.1" + "smooth-zoom": "^1.4.1", + "zod": "^3.23.8" }, "devDependencies": { "@marshallku/eslint-config": "^0.0.4", "@marshallku/typescript-config": "^0.0.4", - "@next/bundle-analyzer": "^15.1.0", - "@playwright/test": "^1.49.1", - "@testing-library/react": "^16.1.0", + "@next/bundle-analyzer": "^15.0.3", + "@playwright/test": "^1.48.2", + "@testing-library/react": "^16.0.1", "@types/node": "^20.16.15", - "@types/react": "^19.0.1", - "@types/react-dom": "^19.0.2", - "@vitejs/plugin-react": "^4.3.4", + "@types/react": "^18.3.12", + "@types/react-dom": "^18.3.1", + "@vitejs/plugin-react": "^4.3.3", "eslint": "^8.57.1", "jsdom": "^25.0.1", - "sass": "^1.83.0", - "typescript": "^5.7.2", - "vitest": "^2.1.8", + "sass": "^1.80.6", + "typescript": "^5.6.3", + "vitest": "^2.1.4", "vitest-monocart-coverage": "^2.1.2" } } diff --git a/apps/blog/src/app/[category]/[...slug]/page.tsx b/apps/blog/src/app/[category]/[...slug]/page.tsx index 5de7d94f..6975a5e7 100644 --- a/apps/blog/src/app/[category]/[...slug]/page.tsx +++ b/apps/blog/src/app/[category]/[...slug]/page.tsx @@ -176,8 +176,6 @@ export default async function Post({ params }: PostProps) { ], }, }} - // FIXME: Update after next-mdx-remote supports react 19 - // @ts-ignore components={MDXComponents} /> diff --git a/apps/blog/src/components/MDXComponents/index.tsx b/apps/blog/src/components/MDXComponents/index.tsx index 9c613ca3..f63572b9 100644 --- a/apps/blog/src/components/MDXComponents/index.tsx +++ b/apps/blog/src/components/MDXComponents/index.tsx @@ -1,13 +1,9 @@ -import type { AnchorHTMLAttributes, DetailedHTMLProps, ImgHTMLAttributes, TableHTMLAttributes } from "react"; +import { HTMLProps } from "react"; import NextLink from "next/link"; import { Icon } from "@marshallku/icon"; import PostImage from "#components/PostImage"; -function Link({ - href, - children, - ...rest -}: DetailedHTMLProps, HTMLAnchorElement>) { +function Link({ href, children, ...rest }: Omit, "ref">) { if (!href) { return null; } @@ -37,11 +33,9 @@ function Link({ } const MDXComponents = { - img: (props: DetailedHTMLProps, HTMLImageElement>) => ( - - ), + img: PostImage, a: Link, - table: (props: DetailedHTMLProps, HTMLTableElement>) => ( + table: (props: HTMLProps) => (
diff --git a/packages/icon/package.json b/packages/icon/package.json index 556d0e3b..86148259 100644 --- a/packages/icon/package.json +++ b/packages/icon/package.json @@ -21,9 +21,9 @@ "@types/react-dom": "^18.2.18", "clean-css-cli": "^5.6.2", "fantasticon": "^3.0.0", - "react": "^19.0.0", + "react": "^18.3.1", "tsup": "^8.3.5", - "typescript": "^5.7.2" + "typescript": "^5.6.3" }, "publishConfig": { "access": "public" diff --git a/packages/react-error-boundary/package.json b/packages/react-error-boundary/package.json index ddc86dc1..14e178a8 100644 --- a/packages/react-error-boundary/package.json +++ b/packages/react-error-boundary/package.json @@ -18,7 +18,7 @@ "@marshallku/typescript-config": "^0.0.4", "@types/react": "^18.2.37", "@types/react-dom": "^18.2.15", - "react-dom": "^19.0.0", + "react-dom": "^18.3.1", "tsup": "^8.3.5" }, "peerDependencies": { diff --git a/packages/toast/package.json b/packages/toast/package.json index 54ae57d3..dc71c01a 100644 --- a/packages/toast/package.json +++ b/packages/toast/package.json @@ -19,8 +19,9 @@ "@marshallku/eslint-config": "^0.0.4", "@marshallku/typescript-config": "^0.0.4", "eslint": "^8.56.0", + "react": "^18.3.1", "tsup": "^8.3.5", - "typescript": "^5.7.2" + "typescript": "^5.6.3" }, "publishConfig": { "access": "public" diff --git a/packages/ui/package.json b/packages/ui/package.json index 75292003..a55f532f 100644 --- a/packages/ui/package.json +++ b/packages/ui/package.json @@ -29,28 +29,28 @@ "@marshallku/typescript-config": "^0.0.4", "@marshallku/utils": "workspace:^", "@testing-library/jest-dom": "^6.6.3", - "@testing-library/react": "^16.1.0", - "@types/node": "^22.10.2", - "@types/react": "^19.0.1", - "@types/react-dom": "^19.0.2", - "@vitejs/plugin-react": "^4.3.4", + "@testing-library/react": "^16.0.1", + "@types/node": "^22.9.0", + "@types/react": "^18.3.12", + "@types/react-dom": "^18.3.1", + "@vitejs/plugin-react": "^4.3.3", "eslint": "^8.56.0", "glob": "^11.0.0", "jsdom": "^25.0.1", - "sass": "^1.83.0", - "typescript": "^5.7.2", + "sass": "^1.80.6", + "typescript": "^5.6.3", "vite": "^5.4.11", "vite-plugin-dts": "^4.3.0", "vite-plugin-lib-inject-css": "^2.1.1", - "vite-plugin-static-copy": "^2.2.0", - "vitest": "^2.1.8", + "vite-plugin-static-copy": "^2.1.0", + "vitest": "^2.1.4", "vitest-monocart-coverage": "^2.1.2" }, "peerDependencies": { - "react": "^19.0.0", - "react-dom": "^19.0.0" + "react": "^18.3.1", + "react-dom": "^18.3.1" }, "publishConfig": { "access": "public" } -} \ No newline at end of file +} diff --git a/packages/ui/src/components/Typography/index.tsx b/packages/ui/src/components/Typography/index.tsx index 08aa89fb..51f5b49e 100644 --- a/packages/ui/src/components/Typography/index.tsx +++ b/packages/ui/src/components/Typography/index.tsx @@ -1,4 +1,4 @@ -import { type ReactNode, createElement, type JSX } from "react"; +import { type ReactNode, createElement } from "react"; import { classNames } from "@marshallku/utils"; import type { Range } from "../../types"; import styles from "./index.module.scss"; diff --git a/packages/utils/package.json b/packages/utils/package.json index 73e0e24d..927c8934 100644 --- a/packages/utils/package.json +++ b/packages/utils/package.json @@ -21,10 +21,10 @@ "@marshallku/eslint-config": "^0.0.4", "@marshallku/typescript-config": "^0.0.4", "eslint": "^8.56.0", - "react": "^19.0.0", + "react": "^18.3.1", "tsup": "^8.3.5", - "typescript": "^5.7.2", - "vitest": "^2.1.8", + "typescript": "^5.6.3", + "vitest": "^2.1.5", "vitest-monocart-coverage": "^2.1.2" }, "publishConfig": { diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 9f3c74d9..3facc0aa 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -39,14 +39,14 @@ importers: specifier: workspace:^ version: link:../../packages/utils '@next/eslint-plugin-next': - specifier: ^15.1.0 - version: 15.1.0 + specifier: ^15.0.3 + version: 15.0.3 '@next/third-parties': - specifier: ^15.1.0 - version: 15.1.0(next@15.1.0(@babel/core@7.26.0)(@playwright/test@1.49.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(sass@1.83.0))(react@19.0.0) + specifier: ^15.0.3 + version: 15.0.3(next@15.0.3(@playwright/test@1.48.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.80.6))(react@18.3.1) '@tanstack/react-query': - specifier: ^5.62.7 - version: 5.62.7(react@19.0.0) + specifier: ^5.59.20 + version: 5.59.20(react@18.3.1) copy2clip: specifier: ^1.1.1 version: 1.1.1 @@ -57,23 +57,23 @@ importers: specifier: ^1.1.1 version: 1.1.1 marked: - specifier: ^15.0.4 - version: 15.0.4 + specifier: ^15.0.0 + version: 15.0.0 monocart-coverage-reports: - specifier: ^2.11.4 - version: 2.11.4 + specifier: ^2.11.2 + version: 2.11.2 next: - specifier: ^15.1.0 - version: 15.1.0(@babel/core@7.26.0)(@playwright/test@1.49.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(sass@1.83.0) + specifier: ^15.0.3 + version: 15.0.3(@playwright/test@1.48.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.80.6) next-mdx-remote: specifier: ^5.0.0 - version: 5.0.0(@types/react@19.0.1)(acorn@8.14.0)(react@19.0.0) + version: 5.0.0(@types/react@18.3.12)(acorn@8.14.0)(react@18.3.1) react: - specifier: ^19.0.0 - version: 19.0.0 + specifier: ^18.3.1 + version: 18.3.1 react-dom: - specifier: ^19.0.0 - version: 19.0.0(react@19.0.0) + specifier: ^18.3.1 + version: 18.3.1(react@18.3.1) rehype-autolink-headings: specifier: ^7.1.0 version: 7.1.0 @@ -93,39 +93,39 @@ importers: specifier: ^9.0.0 version: 9.0.0 smooth-zoom: - specifier: ^1.5.0 - version: 1.5.0 + specifier: ^1.4.1 + version: 1.4.1 zod: - specifier: ^3.24.1 - version: 3.24.1 + specifier: ^3.23.8 + version: 3.23.8 devDependencies: '@marshallku/eslint-config': specifier: ^0.0.4 - version: 0.0.4(eslint@8.57.1)(prettier@3.3.3)(typescript@5.7.2)(vitest@2.1.8(@types/node@20.16.15)(jsdom@25.0.1)(sass@1.83.0)(terser@5.31.0)) + version: 0.0.4(eslint@8.57.1)(prettier@3.3.3)(typescript@5.6.3)(vitest@2.1.4(@types/node@20.16.15)(jsdom@25.0.1)(sass@1.80.6)(terser@5.31.0)) '@marshallku/typescript-config': specifier: ^0.0.4 version: 0.0.4 '@next/bundle-analyzer': - specifier: ^15.1.0 - version: 15.1.0 + specifier: ^15.0.3 + version: 15.0.3 '@playwright/test': - specifier: ^1.49.1 - version: 1.49.1 + specifier: ^1.48.2 + version: 1.48.2 '@testing-library/react': - specifier: ^16.1.0 - version: 16.1.0(@testing-library/dom@10.4.0)(@types/react-dom@19.0.2(@types/react@19.0.1))(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + specifier: ^16.0.1 + version: 16.0.1(@testing-library/dom@10.4.0)(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@types/node': specifier: ^20.16.15 version: 20.16.15 '@types/react': - specifier: ^19.0.1 - version: 19.0.1 + specifier: ^18.3.12 + version: 18.3.12 '@types/react-dom': - specifier: ^19.0.2 - version: 19.0.2(@types/react@19.0.1) + specifier: ^18.3.1 + version: 18.3.1 '@vitejs/plugin-react': - specifier: ^4.3.4 - version: 4.3.4(vite@5.4.11(@types/node@20.16.15)(sass@1.83.0)(terser@5.31.0)) + specifier: ^4.3.3 + version: 4.3.3(vite@5.4.11(@types/node@20.16.15)(sass@1.80.6)(terser@5.31.0)) eslint: specifier: ^8.57.1 version: 8.57.1 @@ -133,17 +133,17 @@ importers: specifier: ^25.0.1 version: 25.0.1 sass: - specifier: ^1.83.0 - version: 1.83.0 + specifier: ^1.80.6 + version: 1.80.6 typescript: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.6.3 + version: 5.6.3 vitest: - specifier: ^2.1.8 - version: 2.1.8(@types/node@20.16.15)(jsdom@25.0.1)(sass@1.83.0)(terser@5.31.0) + specifier: ^2.1.4 + version: 2.1.4(@types/node@20.16.15)(jsdom@25.0.1)(sass@1.80.6)(terser@5.31.0) vitest-monocart-coverage: specifier: ^2.1.2 - version: 2.1.2(vitest@2.1.8(@types/node@20.16.15)(jsdom@25.0.1)(sass@1.83.0)(terser@5.31.0)) + version: 2.1.2(vitest@2.1.4(@types/node@20.16.15)(jsdom@25.0.1)(sass@1.80.6)(terser@5.31.0)) apps/docs: dependencies: @@ -177,16 +177,16 @@ importers: version: 8.3.6(react@18.3.1)(storybook@8.3.6) '@storybook/nextjs': specifier: ^8.3.6 - version: 8.3.6(@swc/core@1.7.39(@swc/helpers@0.5.15))(esbuild@0.23.1)(next@15.1.0(@babel/core@7.25.9)(@playwright/test@1.49.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.80.3))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.80.3)(storybook@8.3.6)(type-fest@3.13.1)(typescript@5.6.3)(webpack-hot-middleware@2.26.1)(webpack@5.91.0(@swc/core@1.7.39(@swc/helpers@0.5.15))(esbuild@0.23.1)) + version: 8.3.6(@swc/core@1.7.39(@swc/helpers@0.5.13))(esbuild@0.23.1)(next@15.0.3(@babel/core@7.25.9)(@playwright/test@1.48.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.80.3))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.80.3)(storybook@8.3.6)(type-fest@3.13.1)(typescript@5.6.3)(webpack-hot-middleware@2.26.1)(webpack@5.91.0(@swc/core@1.7.39(@swc/helpers@0.5.13))(esbuild@0.23.1)) '@storybook/react': specifier: ^8.3.6 version: 8.3.6(@storybook/test@8.3.6(storybook@8.3.6))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(storybook@8.3.6)(typescript@5.6.3) '@swc/core': specifier: ^1.7.39 - version: 1.7.39(@swc/helpers@0.5.15) + version: 1.7.39(@swc/helpers@0.5.13) '@vitejs/plugin-react': specifier: ^4.3.3 - version: 4.3.3(vite@5.4.10(@types/node@22.10.2)(sass@1.80.3)(terser@5.31.0)) + version: 4.3.3(vite@5.4.10(@types/node@22.9.0)(sass@1.80.3)(terser@5.31.0)) eslint: specifier: ^8.57.0 version: 8.57.0 @@ -204,13 +204,13 @@ importers: version: 8.3.6 storybook-addon-swc: specifier: ^1.2.0 - version: 1.2.0(@swc/core@1.7.39(@swc/helpers@0.5.15))(terser-webpack-plugin@5.3.10(@swc/core@1.7.39(@swc/helpers@0.5.15))(esbuild@0.23.1)(webpack@5.91.0(@swc/core@1.7.39(@swc/helpers@0.5.15))(esbuild@0.23.1)))(webpack@5.91.0(@swc/core@1.7.39(@swc/helpers@0.5.15))(esbuild@0.23.1)) + version: 1.2.0(@swc/core@1.7.39(@swc/helpers@0.5.13))(terser-webpack-plugin@5.3.10(@swc/core@1.7.39(@swc/helpers@0.5.13))(esbuild@0.23.1)(webpack@5.91.0(@swc/core@1.7.39(@swc/helpers@0.5.13))(esbuild@0.23.1)))(webpack@5.91.0(@swc/core@1.7.39(@swc/helpers@0.5.13))(esbuild@0.23.1)) typescript: specifier: ^5.6.3 version: 5.6.3 vite: specifier: ^5.4.10 - version: 5.4.10(@types/node@22.10.2)(sass@1.80.3)(terser@5.31.0) + version: 5.4.10(@types/node@22.9.0)(sass@1.80.3)(terser@5.31.0) apps/visual-regression: devDependencies: @@ -219,7 +219,7 @@ importers: version: 6.1.3 backstopjs: specifier: ^6.3.25 - version: 6.3.25(encoding@0.1.13)(typescript@5.7.2) + version: 6.3.25(encoding@0.1.13)(typescript@5.6.3) express: specifier: ^4.21.1 version: 4.21.1 @@ -242,14 +242,14 @@ importers: specifier: ^3.0.0 version: 3.0.0 react: - specifier: ^19.0.0 - version: 19.0.0 + specifier: ^18.3.1 + version: 18.3.1 tsup: specifier: ^8.3.5 - version: 8.3.5(@microsoft/api-extractor@7.47.11(@types/node@22.10.2))(@swc/core@1.7.39(@swc/helpers@0.5.15))(jiti@1.21.0)(postcss@8.4.49)(typescript@5.7.2)(yaml@2.6.0) + version: 8.3.5(@microsoft/api-extractor@7.47.11(@types/node@22.9.0))(@swc/core@1.7.39(@swc/helpers@0.5.13))(jiti@1.21.0)(postcss@8.4.47)(typescript@5.6.3)(yaml@2.6.0) typescript: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.6.3 + version: 5.6.3 packages/react-error-boundary: dependencies: @@ -259,7 +259,7 @@ importers: devDependencies: '@marshallku/eslint-config': specifier: ^0.0.4 - version: 0.0.4(eslint@8.57.1)(prettier@3.3.3)(typescript@5.7.2) + version: 0.0.4(eslint@8.57.1)(prettier@3.3.3)(typescript@5.6.3) '@marshallku/typescript-config': specifier: ^0.0.4 version: 0.0.4 @@ -270,45 +270,48 @@ importers: specifier: ^18.2.15 version: 18.2.18 react-dom: - specifier: ^19.0.0 - version: 19.0.0(react@18.3.1) + specifier: ^18.3.1 + version: 18.3.1(react@18.3.1) tsup: specifier: ^8.3.5 - version: 8.3.5(@microsoft/api-extractor@7.47.11(@types/node@22.10.2))(@swc/core@1.7.39(@swc/helpers@0.5.15))(jiti@1.21.0)(postcss@8.4.49)(typescript@5.7.2)(yaml@2.6.0) + version: 8.3.5(@microsoft/api-extractor@7.47.11(@types/node@22.9.0))(@swc/core@1.7.39(@swc/helpers@0.5.13))(jiti@1.21.0)(postcss@8.4.47)(typescript@5.6.3)(yaml@2.6.0) packages/toast: devDependencies: '@marshallku/eslint-config': specifier: ^0.0.4 - version: 0.0.4(eslint@8.56.0)(prettier@3.3.3)(typescript@5.7.2) + version: 0.0.4(eslint@8.56.0)(prettier@3.3.3)(typescript@5.6.3) '@marshallku/typescript-config': specifier: ^0.0.4 version: 0.0.4 eslint: specifier: ^8.56.0 version: 8.56.0 + react: + specifier: ^18.3.1 + version: 18.3.1 tsup: specifier: ^8.3.5 - version: 8.3.5(@microsoft/api-extractor@7.47.11(@types/node@22.10.2))(@swc/core@1.7.39(@swc/helpers@0.5.15))(jiti@1.21.0)(postcss@8.4.49)(typescript@5.7.2)(yaml@2.6.0) + version: 8.3.5(@microsoft/api-extractor@7.47.11(@types/node@22.9.0))(@swc/core@1.7.39(@swc/helpers@0.5.13))(jiti@1.21.0)(postcss@8.4.47)(typescript@5.6.3)(yaml@2.6.0) typescript: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.6.3 + version: 5.6.3 packages/ui: dependencies: react: - specifier: ^19.0.0 - version: 19.0.0 + specifier: ^18.3.1 + version: 18.3.1 react-dom: - specifier: ^19.0.0 - version: 19.0.0(react@19.0.0) + specifier: ^18.3.1 + version: 18.3.1(react@18.3.1) devDependencies: '@codecov/vite-plugin': specifier: 0.0.1-beta.8 - version: 0.0.1-beta.8(vite@5.4.11(@types/node@22.10.2)(sass@1.83.0)(terser@5.31.0)) + version: 0.0.1-beta.8(vite@5.4.11(@types/node@22.9.0)(sass@1.80.6)(terser@5.31.0)) '@marshallku/eslint-config': specifier: ^0.0.4 - version: 0.0.4(eslint@8.56.0)(prettier@3.3.3)(typescript@5.7.2)(vitest@2.1.8(@types/node@22.10.2)(jsdom@25.0.1)(sass@1.83.0)(terser@5.31.0)) + version: 0.0.4(eslint@8.56.0)(prettier@3.3.3)(typescript@5.6.3)(vitest@2.1.4(@types/node@22.9.0)(jsdom@25.0.1)(sass@1.80.6)(terser@5.31.0)) '@marshallku/typescript-config': specifier: ^0.0.4 version: 0.0.4 @@ -319,20 +322,20 @@ importers: specifier: ^6.6.3 version: 6.6.3 '@testing-library/react': - specifier: ^16.1.0 - version: 16.1.0(@testing-library/dom@10.4.0)(@types/react-dom@19.0.2(@types/react@19.0.1))(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + specifier: ^16.0.1 + version: 16.0.1(@testing-library/dom@10.4.0)(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@types/node': - specifier: ^22.10.2 - version: 22.10.2 + specifier: ^22.9.0 + version: 22.9.0 '@types/react': - specifier: ^19.0.1 - version: 19.0.1 + specifier: ^18.3.12 + version: 18.3.12 '@types/react-dom': - specifier: ^19.0.2 - version: 19.0.2(@types/react@19.0.1) + specifier: ^18.3.1 + version: 18.3.1 '@vitejs/plugin-react': - specifier: ^4.3.4 - version: 4.3.4(vite@5.4.11(@types/node@22.10.2)(sass@1.83.0)(terser@5.31.0)) + specifier: ^4.3.3 + version: 4.3.3(vite@5.4.11(@types/node@22.9.0)(sass@1.80.6)(terser@5.31.0)) eslint: specifier: ^8.56.0 version: 8.56.0 @@ -343,35 +346,35 @@ importers: specifier: ^25.0.1 version: 25.0.1 sass: - specifier: ^1.83.0 - version: 1.83.0 + specifier: ^1.80.6 + version: 1.80.6 typescript: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.6.3 + version: 5.6.3 vite: specifier: ^5.4.11 - version: 5.4.11(@types/node@22.10.2)(sass@1.83.0)(terser@5.31.0) + version: 5.4.11(@types/node@22.9.0)(sass@1.80.6)(terser@5.31.0) vite-plugin-dts: specifier: ^4.3.0 - version: 4.3.0(@types/node@22.10.2)(rollup@4.24.0)(typescript@5.7.2)(vite@5.4.11(@types/node@22.10.2)(sass@1.83.0)(terser@5.31.0)) + version: 4.3.0(@types/node@22.9.0)(rollup@4.24.0)(typescript@5.6.3)(vite@5.4.11(@types/node@22.9.0)(sass@1.80.6)(terser@5.31.0)) vite-plugin-lib-inject-css: specifier: ^2.1.1 - version: 2.1.1(vite@5.4.11(@types/node@22.10.2)(sass@1.83.0)(terser@5.31.0)) + version: 2.1.1(vite@5.4.11(@types/node@22.9.0)(sass@1.80.6)(terser@5.31.0)) vite-plugin-static-copy: - specifier: ^2.2.0 - version: 2.2.0(vite@5.4.11(@types/node@22.10.2)(sass@1.83.0)(terser@5.31.0)) + specifier: ^2.1.0 + version: 2.1.0(vite@5.4.11(@types/node@22.9.0)(sass@1.80.6)(terser@5.31.0)) vitest: - specifier: ^2.1.8 - version: 2.1.8(@types/node@22.10.2)(jsdom@25.0.1)(sass@1.83.0)(terser@5.31.0) + specifier: ^2.1.4 + version: 2.1.4(@types/node@22.9.0)(jsdom@25.0.1)(sass@1.80.6)(terser@5.31.0) vitest-monocart-coverage: specifier: ^2.1.2 - version: 2.1.2(vitest@2.1.8(@types/node@22.10.2)(jsdom@25.0.1)(sass@1.83.0)(terser@5.31.0)) + version: 2.1.2(vitest@2.1.4(@types/node@22.9.0)(jsdom@25.0.1)(sass@1.80.6)(terser@5.31.0)) packages/utils: devDependencies: '@marshallku/eslint-config': specifier: ^0.0.4 - version: 0.0.4(eslint@8.56.0)(prettier@3.3.3)(typescript@5.7.2)(vitest@2.1.8(@types/node@22.10.2)(jsdom@25.0.1)(sass@1.83.0)(terser@5.31.0)) + version: 0.0.4(eslint@8.56.0)(prettier@3.3.3)(typescript@5.6.3)(vitest@2.1.5(@types/node@22.9.0)(jsdom@25.0.1)(sass@1.80.6)(terser@5.31.0)) '@marshallku/typescript-config': specifier: ^0.0.4 version: 0.0.4 @@ -379,20 +382,20 @@ importers: specifier: ^8.56.0 version: 8.56.0 react: - specifier: ^19.0.0 - version: 19.0.0 + specifier: ^18.3.1 + version: 18.3.1 tsup: specifier: ^8.3.5 - version: 8.3.5(@microsoft/api-extractor@7.47.11(@types/node@22.10.2))(@swc/core@1.7.39(@swc/helpers@0.5.15))(jiti@1.21.0)(postcss@8.4.49)(typescript@5.7.2)(yaml@2.6.0) + version: 8.3.5(@microsoft/api-extractor@7.47.11(@types/node@22.9.0))(@swc/core@1.7.39(@swc/helpers@0.5.13))(jiti@1.21.0)(postcss@8.4.47)(typescript@5.6.3)(yaml@2.6.0) typescript: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.6.3 + version: 5.6.3 vitest: - specifier: ^2.1.8 - version: 2.1.8(@types/node@22.10.2)(jsdom@25.0.1)(sass@1.83.0)(terser@5.31.0) + specifier: ^2.1.5 + version: 2.1.5(@types/node@22.9.0)(jsdom@25.0.1)(sass@1.80.6)(terser@5.31.0) vitest-monocart-coverage: specifier: ^2.1.2 - version: 2.1.2(vitest@2.1.8(@types/node@22.10.2)(jsdom@25.0.1)(sass@1.83.0)(terser@5.31.0)) + version: 2.1.2(vitest@2.1.5(@types/node@22.9.0)(jsdom@25.0.1)(sass@1.80.6)(terser@5.31.0)) packages: @@ -463,10 +466,6 @@ packages: resolution: {integrity: sha512-z88xeGxnzehn2sqZ8UdGQEvYErF1odv2CftxInpSYJt6uHuPe9YjahKZITGs3l5LeI9d2ROG+obuDAoSlqbNfQ==} engines: {node: '>=6.9.0'} - '@babel/code-frame@7.26.2': - resolution: {integrity: sha512-RJlIHRueQgwWitWgF8OdFYGZX328Ax5BCemNGlqHfplnRT9ESi8JkFlvaVYbS+UubVY6dpv87Fs2u5M29iNFVQ==} - engines: {node: '>=6.9.0'} - '@babel/compat-data@7.25.9': resolution: {integrity: sha512-yD+hEuJ/+wAJ4Ox2/rpNv5HIuPG82x3ZlQvYVn8iYCprdxzE7P1udpGF1jyjQVBU4dgznN+k2h103vxZ7NdPyw==} engines: {node: '>=6.9.0'} @@ -475,10 +474,6 @@ packages: resolution: {integrity: sha512-WYvQviPw+Qyib0v92AwNIrdLISTp7RfDkM7bPqBvpbnhY4wq8HvHBZREVdYDXk98C8BkOIVnHAY3yvj7AVISxQ==} engines: {node: '>=6.9.0'} - '@babel/core@7.26.0': - resolution: {integrity: sha512-i1SLeK+DzNnQ3LL/CswPCa/E5u4lh1k6IAEphON8F+cXt0t9euTshDru0q7/IqMa1PMPz5RnHuHscF8/ZJsStg==} - engines: {node: '>=6.9.0'} - '@babel/eslint-parser@7.25.9': resolution: {integrity: sha512-5UXfgpK0j0Xr/xIdgdLEhOFxaDZ0bRPWJJchRpqOSur/3rZoPbqqki5mm0p4NE2cs28krBEiSM2MB7//afRSQQ==} engines: {node: ^10.13.0 || ^12.13.0 || >=14.0.0} @@ -490,10 +485,6 @@ packages: resolution: {integrity: sha512-omlUGkr5EaoIJrhLf9CJ0TvjBRpd9+AXRG//0GEQ9THSo8wPiTlbpy1/Ow8ZTrbXpjd9FHXfbFQx32I04ht0FA==} engines: {node: '>=6.9.0'} - '@babel/generator@7.26.3': - resolution: {integrity: sha512-6FF/urZvD0sTeO7k6/B15pMLC4CHUv1426lzr3N01aHJTl046uCAh9LXW/fzeXXjPNCJ6iABW5XaWOsIZB93aQ==} - engines: {node: '>=6.9.0'} - '@babel/helper-annotate-as-pure@7.22.5': resolution: {integrity: sha512-LvBTxu8bQSQkcyKOU+a1btnNFQ1dMAd0R6PyW3arXes06F6QLWLIrd681bxRPIXlrMGR3XYnW9JyML7dP3qgxg==} engines: {node: '>=6.9.0'} @@ -549,12 +540,6 @@ packages: peerDependencies: '@babel/core': ^7.0.0 - '@babel/helper-module-transforms@7.26.0': - resolution: {integrity: sha512-xO+xu6B5K2czEnQye6BHA7DolFFmS3LB7stHZFaOLb1pAwO1HWLS8fXA+eh0A2yIvltPVmx3eNNDBJA2SLHXFw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0 - '@babel/helper-optimise-call-expression@7.22.5': resolution: {integrity: sha512-HBwaojN0xFRx4yIvpwGqxiV2tUfl7401jlok564NgB9EHS1y6QT17FmKWm4ztqjeVdXLuC4fSvHc5ePpQjoTbw==} engines: {node: '>=6.9.0'} @@ -607,10 +592,6 @@ packages: resolution: {integrity: sha512-oKWp3+usOJSzDZOucZUAMayhPz/xVjzymyDzUN8dk0Wd3RWMlGLXi07UCQ/CgQVb8LvXx3XBajJH4XGgkt7H7g==} engines: {node: '>=6.9.0'} - '@babel/helpers@7.26.0': - resolution: {integrity: sha512-tbhNuIxNcVb21pInl3ZSjksLCvgdZy9KwJ8brv993QtIVKJBBkYXz4q4ZbAv31GdnC+R90np23L5FbEBlthAEw==} - engines: {node: '>=6.9.0'} - '@babel/highlight@7.25.9': resolution: {integrity: sha512-llL88JShoCsth8fF8R4SJnIn+WLvR6ccFxu1H3FlMhDontdcmZWf2HgIZ7AIqV3Xcck1idlohrN4EUBQz6klbw==} engines: {node: '>=6.9.0'} @@ -620,11 +601,6 @@ packages: engines: {node: '>=6.0.0'} hasBin: true - '@babel/parser@7.26.3': - resolution: {integrity: sha512-WJ/CvmY8Mea8iDXo6a7RK2wbmJITT5fN3BEkRuFlxVyNx8jOKIIhmC4fSkTcPcf8JyavbBwIe6OpiCOBXt/IcA==} - engines: {node: '>=6.0.0'} - hasBin: true - '@babel/plugin-bugfix-firefox-class-in-computed-class-key@7.24.5': resolution: {integrity: sha512-LdXRi1wEMTrHVR4Zc9F8OewC3vdm5h4QB6L71zy6StmYeqGi1b3ttIO8UC+BfZKcH9jdr4aI249rBkm+3+YvHw==} engines: {node: '>=6.9.0'} @@ -1150,10 +1126,6 @@ packages: resolution: {integrity: sha512-OwS2CM5KocvQ/k7dFJa8i5bNGJP0hXWfVCfDkqRFP1IreH1JDC7wG6eCYCi0+McbfT8OR/kNqsI0UU0xP9H6PQ==} engines: {node: '>=6.9.0'} - '@babel/types@7.26.3': - resolution: {integrity: sha512-vN5p+1kl59GVKMvTHt55NzzmYVxprfJD+ql7U9NFIfKCBkYE55LYtS+WtPlaYOyzydrKI8Nezd+aZextrd+FMA==} - engines: {node: '>=6.9.0'} - '@base2/pretty-print-object@1.0.1': resolution: {integrity: sha512-4iri8i1AqYHJE2DstZYkyEprg6Pq6sKx3xn5FpySk9sNhH7qN2LLlHJCfDTZRILNwQNPD7mATWM0TBui7uC1pA==} @@ -1906,71 +1878,71 @@ packages: '@mirzazeyrek/node-resemble-js@1.2.1': resolution: {integrity: sha512-+z1c7HpC5ysdSVVyUVz67hctVLl337VlRJP/MBwpvXHkKJdlnSUVrBhlRzxgal7xpm1uDE2JeUhWbQh6wPRC4w==} - '@next/bundle-analyzer@15.1.0': - resolution: {integrity: sha512-uEyuNZZgAbSWgiUbtihTA8y6QgEzc4b8Fpslmc4SXAjj67Ax5mlcv1HLlez+5dIGwO+vJ9PgCoI8ngWtBh/g1Q==} + '@next/bundle-analyzer@15.0.3': + resolution: {integrity: sha512-x7ZNvpoQPO0C5ZG//qVp21Qs3v6+C8LBJmdu9DKj4/NmjlnwoQ7dqRZ/nKZcwVhkFT7BHf+Qd5FaeHq9IDJvDQ==} - '@next/env@15.1.0': - resolution: {integrity: sha512-UcCO481cROsqJuszPPXJnb7GGuLq617ve4xuAyyNG4VSSocJNtMU5Fsx+Lp6mlN8c7W58aZLc5y6D/2xNmaK+w==} + '@next/env@15.0.3': + resolution: {integrity: sha512-t9Xy32pjNOvVn2AS+Utt6VmyrshbpfUMhIjFO60gI58deSo/KgLOp31XZ4O+kY/Is8WAGYwA5gR7kOb1eORDBA==} '@next/eslint-plugin-next@14.2.16': resolution: {integrity: sha512-noORwKUMkKc96MWjTOwrsUCjky0oFegHbeJ1yEnQBGbMHAaTEIgLZIIfsYF0x3a06PiS+2TXppfifR+O6VWslg==} - '@next/eslint-plugin-next@15.1.0': - resolution: {integrity: sha512-+jPT0h+nelBT6HC9ZCHGc7DgGVy04cv4shYdAe6tKlEbjQUtwU3LzQhzbDHQyY2m6g39m6B0kOFVuLGBrxxbGg==} + '@next/eslint-plugin-next@15.0.3': + resolution: {integrity: sha512-3Ln/nHq2V+v8uIaxCR6YfYo7ceRgZNXfTd3yW1ukTaFbO+/I8jNakrjYWODvG9BuR2v5kgVtH/C8r0i11quOgw==} - '@next/swc-darwin-arm64@15.1.0': - resolution: {integrity: sha512-ZU8d7xxpX14uIaFC3nsr4L++5ZS/AkWDm1PzPO6gD9xWhFkOj2hzSbSIxoncsnlJXB1CbLOfGVN4Zk9tg83PUw==} + '@next/swc-darwin-arm64@15.0.3': + resolution: {integrity: sha512-s3Q/NOorCsLYdCKvQlWU+a+GeAd3C8Rb3L1YnetsgwXzhc3UTWrtQpB/3eCjFOdGUj5QmXfRak12uocd1ZiiQw==} engines: {node: '>= 10'} cpu: [arm64] os: [darwin] - '@next/swc-darwin-x64@15.1.0': - resolution: {integrity: sha512-DQ3RiUoW2XC9FcSM4ffpfndq1EsLV0fj0/UY33i7eklW5akPUCo6OX2qkcLXZ3jyPdo4sf2flwAED3AAq3Om2Q==} + '@next/swc-darwin-x64@15.0.3': + resolution: {integrity: sha512-Zxl/TwyXVZPCFSf0u2BNj5sE0F2uR6iSKxWpq4Wlk/Sv9Ob6YCKByQTkV2y6BCic+fkabp9190hyrDdPA/dNrw==} engines: {node: '>= 10'} cpu: [x64] os: [darwin] - '@next/swc-linux-arm64-gnu@15.1.0': - resolution: {integrity: sha512-M+vhTovRS2F//LMx9KtxbkWk627l5Q7AqXWWWrfIzNIaUFiz2/NkOFkxCFyNyGACi5YbA8aekzCLtbDyfF/v5Q==} + '@next/swc-linux-arm64-gnu@15.0.3': + resolution: {integrity: sha512-T5+gg2EwpsY3OoaLxUIofmMb7ohAUlcNZW0fPQ6YAutaWJaxt1Z1h+8zdl4FRIOr5ABAAhXtBcpkZNwUcKI2fw==} engines: {node: '>= 10'} cpu: [arm64] os: [linux] - '@next/swc-linux-arm64-musl@15.1.0': - resolution: {integrity: sha512-Qn6vOuwaTCx3pNwygpSGtdIu0TfS1KiaYLYXLH5zq1scoTXdwYfdZtwvJTpB1WrLgiQE2Ne2kt8MZok3HlFqmg==} + '@next/swc-linux-arm64-musl@15.0.3': + resolution: {integrity: sha512-WkAk6R60mwDjH4lG/JBpb2xHl2/0Vj0ZRu1TIzWuOYfQ9tt9NFsIinI1Epma77JVgy81F32X/AeD+B2cBu/YQA==} engines: {node: '>= 10'} cpu: [arm64] os: [linux] - '@next/swc-linux-x64-gnu@15.1.0': - resolution: {integrity: sha512-yeNh9ofMqzOZ5yTOk+2rwncBzucc6a1lyqtg8xZv0rH5znyjxHOWsoUtSq4cUTeeBIiXXX51QOOe+VoCjdXJRw==} + '@next/swc-linux-x64-gnu@15.0.3': + resolution: {integrity: sha512-gWL/Cta1aPVqIGgDb6nxkqy06DkwJ9gAnKORdHWX1QBbSZZB+biFYPFti8aKIQL7otCE1pjyPaXpFzGeG2OS2w==} engines: {node: '>= 10'} cpu: [x64] os: [linux] - '@next/swc-linux-x64-musl@15.1.0': - resolution: {integrity: sha512-t9IfNkHQs/uKgPoyEtU912MG6a1j7Had37cSUyLTKx9MnUpjj+ZDKw9OyqTI9OwIIv0wmkr1pkZy+3T5pxhJPg==} + '@next/swc-linux-x64-musl@15.0.3': + resolution: {integrity: sha512-QQEMwFd8r7C0GxQS62Zcdy6GKx999I/rTO2ubdXEe+MlZk9ZiinsrjwoiBL5/57tfyjikgh6GOU2WRQVUej3UA==} engines: {node: '>= 10'} cpu: [x64] os: [linux] - '@next/swc-win32-arm64-msvc@15.1.0': - resolution: {integrity: sha512-WEAoHyG14t5sTavZa1c6BnOIEukll9iqFRTavqRVPfYmfegOAd5MaZfXgOGG6kGo1RduyGdTHD4+YZQSdsNZXg==} + '@next/swc-win32-arm64-msvc@15.0.3': + resolution: {integrity: sha512-9TEp47AAd/ms9fPNgtgnT7F3M1Hf7koIYYWCMQ9neOwjbVWJsHZxrFbI3iEDJ8rf1TDGpmHbKxXf2IFpAvheIQ==} engines: {node: '>= 10'} cpu: [arm64] os: [win32] - '@next/swc-win32-x64-msvc@15.1.0': - resolution: {integrity: sha512-J1YdKuJv9xcixzXR24Dv+4SaDKc2jj31IVUEMdO5xJivMTXuE6MAdIi4qPjSymHuFG8O5wbfWKnhJUcHHpj5CA==} + '@next/swc-win32-x64-msvc@15.0.3': + resolution: {integrity: sha512-VNAz+HN4OGgvZs6MOoVfnn41kBzT+M+tB+OK4cww6DNyWS6wKaDpaAm/qLeOUbnMh0oVx1+mg0uoYARF69dJyA==} engines: {node: '>= 10'} cpu: [x64] os: [win32] - '@next/third-parties@15.1.0': - resolution: {integrity: sha512-eiv8vTo5HJOE/LabnIjRNVpN0hvjXfqPrE7D/XecmWvHBs9KrIISxlb1NZizDMcvjGtnHkdupWsquM9ur25rYw==} + '@next/third-parties@15.0.3': + resolution: {integrity: sha512-T2NkBXLcgRY0cmE7jb/dSMXNK9D+yv1k+n0uBxwMBS9SEtOhuMvxiUPQRj5x4cFnsei6JECloJg88koMprKw0A==} peerDependencies: next: ^13.0.0 || ^14.0.0 || ^15.0.0 - react: ^18.2.0 || 19.0.0-rc-de68d2f4-20241204 || ^19.0.0 + react: ^18.2.0 || 19.0.0-rc-66855b96-20241106 '@nicolo-ribaudo/eslint-scope-5-internals@5.1.1-v1': resolution: {integrity: sha512-54/JRvkLIzzDWshCWfuhadfrfZVPiElY8Fcgmg1HroEly/EDSszzhBAsarCux+D/kOslTRquNzuyGSmUSTTHGg==} @@ -2108,8 +2080,8 @@ packages: resolution: {integrity: sha512-cq8o4cWH0ibXh9VGi5P20Tu9XF/0fFXl9EUinr9QfTM7a7p0oTA4iJRCQWppXR1Pg8dSM0UCItCkPwsk9qWWYA==} engines: {node: ^12.20.0 || ^14.18.0 || >=16.0.0} - '@playwright/test@1.49.1': - resolution: {integrity: sha512-Ky+BVzPz8pL6PQxHqNRW1k3mIyv933LML7HktS8uik0bUXNCdPhoS/kLihiO1tMf/egaJb4IutXd7UywvXEW+g==} + '@playwright/test@1.48.2': + resolution: {integrity: sha512-54w1xCWfXuax7dz4W2M9uw0gDyh+ti/0K/MxcCUxChFh37kkdxPdfZDw5QBbuPUJHr1CiHJ1hXgSs+GgeQc5Zw==} engines: {node: '>=18'} hasBin: true @@ -2558,8 +2530,8 @@ packages: '@swc/counter@0.1.3': resolution: {integrity: sha512-e2BR4lsJkkRlKZ/qCHPw9ZaSxc0MVUd7gtbtaB7aMvHeJVYe8sOB8DBZkP2DtISHGSku9sCK6T6cnY0CtXrOCQ==} - '@swc/helpers@0.5.15': - resolution: {integrity: sha512-JQ5TuMi45Owi4/BIMAJBoSQoOJu12oOk/gADqlcUL9JEdHB8vyjUSsxqeNXnmXHjYKMi2WcYtezGEEhqUI/E2g==} + '@swc/helpers@0.5.13': + resolution: {integrity: sha512-UoKGxQ3r5kYI9dALKJapMmuK+1zWM/H17Z1+iwnNmzcJRnfFuevZs375TA5rW31pu4BS4NoSy1fRsexDXfWn5w==} '@swc/types@0.1.13': resolution: {integrity: sha512-JL7eeCk6zWCbiYQg2xQSdLXQJl8Qoc9rXmG2cEKvHe3CKwMHwHGpfOb8frzNLmbycOo6I51qxnLnn9ESf4I20Q==} @@ -2569,11 +2541,11 @@ packages: peerDependencies: eslint: ^8.57.0 || ^9.0.0 - '@tanstack/query-core@5.62.7': - resolution: {integrity: sha512-fgpfmwatsrUal6V+8EC2cxZIQVl9xvL7qYa03gsdsCy985UTUlS4N+/3hCzwR0PclYDqisca2AqR1BVgJGpUDA==} + '@tanstack/query-core@5.59.20': + resolution: {integrity: sha512-e8vw0lf7KwfGe1if4uPFhvZRWULqHjFcz3K8AebtieXvnMOz5FSzlZe3mTLlPuUBcydCnBRqYs2YJ5ys68wwLg==} - '@tanstack/react-query@5.62.7': - resolution: {integrity: sha512-+xCtP4UAFDTlRTYyEjLx0sRtWyr5GIk7TZjZwBu4YaNahi3Rt2oMyRqfpfVrtwsqY2sayP4iXVCwmC+ZqqFmuw==} + '@tanstack/react-query@5.59.20': + resolution: {integrity: sha512-Zly0egsK0tFdfSbh5/mapSa+Zfc3Et0Zkar7Wo5sQkFzWyB3p3uZWOHR2wrlAEEV2L953eLuDBtbgFvMYiLvUw==} peerDependencies: react: ^18 || ^19 @@ -2589,15 +2561,15 @@ packages: resolution: {integrity: sha512-IteBhl4XqYNkM54f4ejhLRJiZNqcSCoXUOG2CPK7qbD322KjQozM4kHQOfkG2oln9b9HTYqs+Sae8vBATubxxA==} engines: {node: '>=14', npm: '>=6', yarn: '>=1'} - '@testing-library/react@16.1.0': - resolution: {integrity: sha512-Q2ToPvg0KsVL0ohND9A3zLJWcOXXcO8IDu3fj11KhNt0UlCWyFyvnCIBkd12tidB2lkiVRG8VFqdhcqhqnAQtg==} + '@testing-library/react@16.0.1': + resolution: {integrity: sha512-dSmwJVtJXmku+iocRhWOUFbrERC76TX2Mnf0ATODz8brzAZrMBbzLwQixlBSanZxR6LddK3eiwpSFZgDET1URg==} engines: {node: '>=18'} peerDependencies: '@testing-library/dom': ^10.0.0 - '@types/react': ^18.0.0 || ^19.0.0 - '@types/react-dom': ^18.0.0 || ^19.0.0 - react: ^18.0.0 || ^19.0.0 - react-dom: ^18.0.0 || ^19.0.0 + '@types/react': ^18.0.0 + '@types/react-dom': ^18.0.0 + react: ^18.0.0 + react-dom: ^18.0.0 peerDependenciesMeta: '@types/react': optional: true @@ -2725,8 +2697,8 @@ packages: '@types/node@20.16.15': resolution: {integrity: sha512-DV58qQz9dBMqVVn+qnKwGa51QzCD4YM/tQM16qLKxdf5tqz5W4QwtrMzjSTbabN1cFTSuyxVYBy+QWHjWW8X/g==} - '@types/node@22.10.2': - resolution: {integrity: sha512-Xxr6BBRCAOQixvonOye19wnzyDiUtTeqldOOmj3CkeblonbccA12PFwlufvRdrpjXxqnmUaeiU5EOA+7s5diUQ==} + '@types/node@22.7.9': + resolution: {integrity: sha512-jrTfRC7FM6nChvU7X2KqcrgquofrWLFDeYC1hKfwNWomVvrn7JIksqf344WN2X/y8xrgqBd2dJATZV4GbatBfg==} '@types/node@22.9.0': resolution: {integrity: sha512-vuyHg81vvWA1Z1ELfvLko2c8f34gyA0zaic0+Rllc5lbCnbSyuvb2Oxpm6TAUAC/2xZN3QGqxBNggD1nNR2AfQ==} @@ -2752,10 +2724,8 @@ packages: '@types/react-dom@18.2.18': resolution: {integrity: sha512-TJxDm6OfAX2KJWJdMEVTwWke5Sc/E/RlnPGvGfS0W7+6ocy2xhDVQVh/KvC2Uf7kACs+gDytdusDSdWfWkaNzw==} - '@types/react-dom@19.0.2': - resolution: {integrity: sha512-c1s+7TKFaDRRxr1TxccIX2u7sfCnc3RxkVyBIUA2lCpyqCF+QoAwQ/CBg7bsMdVwP120HEH143VQezKtef5nCg==} - peerDependencies: - '@types/react': ^19.0.0 + '@types/react-dom@18.3.1': + resolution: {integrity: sha512-qW1Mfv8taImTthu4KoXgDfLuk4bydU6Q/TkADnDWWHwi4NX4BR+LWfTp2sVmTqRrsHvyDDTelgelxJ+SsejKKQ==} '@types/react@18.2.48': resolution: {integrity: sha512-qboRCl6Ie70DQQG9hhNREz81jqC1cs9EVNcjQ1AU+jH6NFfSAhVVbrrY/+nSF+Bsk4AOwm9Qa61InvMCyV+H3w==} @@ -2763,9 +2733,6 @@ packages: '@types/react@18.3.12': resolution: {integrity: sha512-D2wOSq/d6Agt28q7rSI3jhU7G6aiuzljDGZ2hTZHIkrTLUI+AF3WMeKkEZ9nN2fkBAlcktT6vcZjDFiIhMYEQw==} - '@types/react@19.0.1': - resolution: {integrity: sha512-YW6614BDhqbpR5KtUYzTA+zlA7nayzJRA9ljz9CQoxthR0sDisYZLuvSMsil36t4EH/uAt8T52Xb4sVw17G+SQ==} - '@types/resolve@1.20.6': resolution: {integrity: sha512-A4STmOXPhMUtHH+S6ymgE2GiBSMqf4oTvcQZMcHzokuTLVYzXTB8ttjcgxOVaAp2lGwEdzZ0J+cRbbeevQj1UQ==} @@ -2996,12 +2963,6 @@ packages: peerDependencies: vite: ^4.2.0 || ^5.0.0 - '@vitejs/plugin-react@4.3.4': - resolution: {integrity: sha512-SCCPBJtYLdE8PX/7ZQAs1QAZ8Jqwih+0VBLum1EGqmCCQal+MIUqLCzj3ZUy8ufbC0cAM4LRlSTm7IQJwWT4ug==} - engines: {node: ^14.18.0 || >=16.0.0} - peerDependencies: - vite: ^4.2.0 || ^5.0.0 || ^6.0.0 - '@vitest/coverage-istanbul@2.1.5': resolution: {integrity: sha512-jJsS5jeHncmSvzMNE03F1pk8F9etmjzGmGyQnGMkdHdVek/bxK/3vo8Qr3e9XmVuDM3UZKOy1ObeQHgC2OxvHg==} peerDependencies: @@ -3019,11 +2980,25 @@ packages: '@vitest/expect@2.0.5': resolution: {integrity: sha512-yHZtwuP7JZivj65Gxoi8upUN2OzHTi3zVfjwdpu2WrvCZPLwsJ2Ey5ILIPccoW23dd/zQBlJ4/dhi7DWNyXCpA==} - '@vitest/expect@2.1.8': - resolution: {integrity: sha512-8ytZ/fFHq2g4PJVAtDX57mayemKgDR6X3Oa2Foro+EygiOJHUXhCqBAAKQYYajZpFoIfvBCF1j6R6IYRSIUFuw==} + '@vitest/expect@2.1.4': + resolution: {integrity: sha512-DOETT0Oh1avie/D/o2sgMHGrzYUFFo3zqESB2Hn70z6QB1HrS2IQ9z5DfyTqU8sg4Bpu13zZe9V4+UTNQlUeQA==} + + '@vitest/expect@2.1.5': + resolution: {integrity: sha512-nZSBTW1XIdpZvEJyoP/Sy8fUg0b8od7ZpGDkTUcfJ7wz/VoZAFzFfLyxVxGFhUjJzhYqSbIpfMtl/+k/dpWa3Q==} + + '@vitest/mocker@2.1.4': + resolution: {integrity: sha512-Ky/O1Lc0QBbutJdW0rqLeFNbuLEyS+mIPiNdlVlp2/yhJ0SbyYqObS5IHdhferJud8MbbwMnexg4jordE5cCoQ==} + peerDependencies: + msw: ^2.4.9 + vite: ^5.0.0 + peerDependenciesMeta: + msw: + optional: true + vite: + optional: true - '@vitest/mocker@2.1.8': - resolution: {integrity: sha512-7guJ/47I6uqfttp33mgo6ga5Gr1VnL58rcqYKyShoRK9ebu8T5Rs6HN3s1NABiBeVTdWNrwUMcHH54uXZBN4zA==} + '@vitest/mocker@2.1.5': + resolution: {integrity: sha512-XYW6l3UuBmitWqSUXTNXcVBUCRytDogBsWuNXQijc00dtnU/9OqpXWp4OJroVrad/gLIomAq9aW8yWDBtMthhQ==} peerDependencies: msw: ^2.4.9 vite: ^5.0.0 @@ -3036,26 +3011,41 @@ packages: '@vitest/pretty-format@2.0.5': resolution: {integrity: sha512-h8k+1oWHfwTkyTkb9egzwNMfJAEx4veaPSnMeKbVSjp4euqGSbQlm5+6VHwTr7u4FJslVVsUG5nopCaAYdOmSQ==} - '@vitest/pretty-format@2.1.8': - resolution: {integrity: sha512-9HiSZ9zpqNLKlbIDRWOnAWqgcA7xu+8YxXSekhr0Ykab7PAYFkhkwoqVArPOtJhPmYeE2YHgKZlj3CP36z2AJQ==} + '@vitest/pretty-format@2.1.4': + resolution: {integrity: sha512-L95zIAkEuTDbUX1IsjRl+vyBSLh3PwLLgKpghl37aCK9Jvw0iP+wKwIFhfjdUtA2myLgjrG6VU6JCFLv8q/3Ww==} + + '@vitest/pretty-format@2.1.5': + resolution: {integrity: sha512-4ZOwtk2bqG5Y6xRGHcveZVr+6txkH7M2e+nPFd6guSoN638v/1XQ0K06eOpi0ptVU/2tW/pIU4IoPotY/GZ9fw==} + + '@vitest/runner@2.1.4': + resolution: {integrity: sha512-sKRautINI9XICAMl2bjxQM8VfCMTB0EbsBc/EDFA57V6UQevEKY/TOPOF5nzcvCALltiLfXWbq4MaAwWx/YxIA==} + + '@vitest/runner@2.1.5': + resolution: {integrity: sha512-pKHKy3uaUdh7X6p1pxOkgkVAFW7r2I818vHDthYLvUyjRfkKOU6P45PztOch4DZarWQne+VOaIMwA/erSSpB9g==} - '@vitest/runner@2.1.8': - resolution: {integrity: sha512-17ub8vQstRnRlIU5k50bG+QOMLHRhYPAna5tw8tYbj+jzjcspnwnwtPtiOlkuKC4+ixDPTuLZiqiWWQ2PSXHVg==} + '@vitest/snapshot@2.1.4': + resolution: {integrity: sha512-3Kab14fn/5QZRog5BPj6Rs8dc4B+mim27XaKWFWHWA87R56AKjHTGcBFKpvZKDzC4u5Wd0w/qKsUIio3KzWW4Q==} - '@vitest/snapshot@2.1.8': - resolution: {integrity: sha512-20T7xRFbmnkfcmgVEz+z3AU/3b0cEzZOt/zmnvZEctg64/QZbSDJEVm9fLnnlSi74KibmRsO9/Qabi+t0vCRPg==} + '@vitest/snapshot@2.1.5': + resolution: {integrity: sha512-zmYw47mhfdfnYbuhkQvkkzYroXUumrwWDGlMjpdUr4jBd3HZiV2w7CQHj+z7AAS4VOtWxI4Zt4bWt4/sKcoIjg==} '@vitest/spy@2.0.5': resolution: {integrity: sha512-c/jdthAhvJdpfVuaexSrnawxZz6pywlTPe84LUB2m/4t3rl2fTo9NFGBG4oWgaD+FTgDDV8hJ/nibT7IfH3JfA==} - '@vitest/spy@2.1.8': - resolution: {integrity: sha512-5swjf2q95gXeYPevtW0BLk6H8+bPlMb4Vw/9Em4hFxDcaOxS+e0LOX4yqNxoHzMR2akEB2xfpnWUzkZokmgWDg==} + '@vitest/spy@2.1.4': + resolution: {integrity: sha512-4JOxa+UAizJgpZfaCPKK2smq9d8mmjZVPMt2kOsg/R8QkoRzydHH1qHxIYNvr1zlEaFj4SXiaaJWxq/LPLKaLg==} + + '@vitest/spy@2.1.5': + resolution: {integrity: sha512-aWZF3P0r3w6DiYTVskOYuhBc7EMc3jvn1TkBg8ttylFFRqNN2XGD7V5a4aQdk6QiUzZQ4klNBSpCLJgWNdIiNw==} '@vitest/utils@2.0.5': resolution: {integrity: sha512-d8HKbqIcya+GR67mkZbrzhS5kKhtp8dQLcmRZLGTscGVg7yImT82cIrhtn2L8+VujWcy6KZweApgNmPsTAO/UQ==} - '@vitest/utils@2.1.8': - resolution: {integrity: sha512-dwSoui6djdwbfFmIgbIjX2ZhIoG7Ex/+xpxyiEgIGzjliY8xGkcpITKTlp6B4MgtGkF2ilvm97cPM96XZaAgcA==} + '@vitest/utils@2.1.4': + resolution: {integrity: sha512-MXDnZn0Awl2S86PSNIim5PWXgIAx8CIkzu35mBdSApUip6RFOGXBCf3YFyeEu8n1IHk4bWD46DeYFu9mQlFIRg==} + + '@vitest/utils@2.1.5': + resolution: {integrity: sha512-yfj6Yrp0Vesw2cwJbP+cl04OC+IHFsuQsrsJBL9pyGeQXE56v1UAOQco+SR55Vf1nQzfV0QJg1Qum7AaWUwwYg==} '@volar/language-core@2.4.5': resolution: {integrity: sha512-F4tA0DCO5Q1F5mScHmca0umsi2ufKULAnMOVBfMsZdT4myhVl4WdKRwCaKcfOkIEuyrAVvtq1ESBdZ+rSyLVww==} @@ -3187,6 +3177,11 @@ packages: engines: {node: '>=0.4.0'} hasBin: true + acorn@8.13.0: + resolution: {integrity: sha512-8zSiw54Oxrdym50NlZ9sUusyO1Z1ZchgRLWRaK6c86XJFClyCgFKetdowBg5bKxyp/u+CDBJG4Mpp0m3HLZl9w==} + engines: {node: '>=0.4.0'} + hasBin: true + acorn@8.14.0: resolution: {integrity: sha512-cl669nCJTZBsL97OF4kUQm5g5hC2uihk0NxY3WENAC0TYdILVkAyHymAntgxGkl7K+t0cXIrH5siy5S4XkFycA==} engines: {node: '>=0.4.0'} @@ -5207,9 +5202,6 @@ packages: immutable@4.3.7: resolution: {integrity: sha512-1hqclzwYwjRDFLjcFxOM5AYkkG0rpFPpr1RLPMEuGczoS7YA8gLhy8SWXYRAA/XwfEHpfo3cw5JGioS32fnMRw==} - immutable@5.0.3: - resolution: {integrity: sha512-P8IdPQHq3lA1xVeBRi5VPqUm5HDgKnx0Ru51wZz5mjxHr5n3RWhjIpOFU7ybkUxfB+5IToy+OLaHYDBIWsv+uw==} - import-fresh@3.3.0: resolution: {integrity: sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==} engines: {node: '>=6'} @@ -5792,8 +5784,8 @@ packages: peerDependencies: react: '>= 0.14.0' - marked@15.0.4: - resolution: {integrity: sha512-TCHvDqmb3ZJ4PWG7VEGVgtefA5/euFmsIhxtD0XsBxI39gUSKL81mIRFdt0AiNQozUahd4ke98ZdirExd/vSEw==} + marked@15.0.0: + resolution: {integrity: sha512-0mouKmBROJv/WSHJBPZZyYofUgawMChnD5je/g+aOBXsHDjb/IsnTQj7mnhQZu+qPJmRQ0ecX3mLGEUm3BgwYA==} engines: {node: '>= 18'} hasBin: true @@ -6115,8 +6107,8 @@ packages: mlly@1.7.1: resolution: {integrity: sha512-rrVRZRELyQzrIUAVMHxP97kv+G786pHmOKzuFII8zDYahFBS7qnHh2AlYSl1GAHhaMPCz6/oHjVMcfFYgFYHgA==} - monocart-coverage-reports@2.11.4: - resolution: {integrity: sha512-hFhfhIzD7Yv1fNJgnUVvrEpnwqB44KwSGbghOM9C8AMIVon5ZLRlspbWz+uwW04Yhgvo5WmtPEmX+mnET2VcGA==} + monocart-coverage-reports@2.11.2: + resolution: {integrity: sha512-CQN6ivZAC/tONctenrzGXfhrCuLTUr74Kb/V93Xyo8TMYXFJ2hKTQUNkmZDtvou/s11dBpW+28BHqtRYrP4ccg==} hasBin: true monocart-locator@1.0.2: @@ -6176,16 +6168,16 @@ packages: next-tick@1.1.0: resolution: {integrity: sha512-CXdUiJembsNjuToQvxayPZF9Vqht7hewsvy2sOWafLvi2awflj9mOC6bHIg50orX8IJvWKY9wYQ/zB2kogPslQ==} - next@15.1.0: - resolution: {integrity: sha512-QKhzt6Y8rgLNlj30izdMbxAwjHMFANnLwDwZ+WQh5sMhyt4lEBqDK9QpvWHtIM4rINKPoJ8aiRZKg5ULSybVHw==} + next@15.0.3: + resolution: {integrity: sha512-ontCbCRKJUIoivAdGB34yCaOcPgYXr9AAkV/IwqFfWWTXEPUgLYkSkqBhIk9KK7gGmgjc64B+RdoeIDM13Irnw==} engines: {node: ^18.18.0 || ^19.8.0 || >= 20.0.0} hasBin: true peerDependencies: '@opentelemetry/api': ^1.1.0 '@playwright/test': ^1.41.2 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: ^18.2.0 || 19.0.0-rc-66855b96-20241106 + react-dom: ^18.2.0 || 19.0.0-rc-66855b96-20241106 sass: ^1.3.0 peerDependenciesMeta: '@opentelemetry/api': @@ -6577,8 +6569,8 @@ packages: engines: {node: '>=18'} hasBin: true - playwright-core@1.49.1: - resolution: {integrity: sha512-BzmpVcs4kE2CH15rWfzpjzVGhWERJfmnXmniSyKeRZUs9Ws65m+RGIi7mjJK/euCegfn3i7jvqWeWyHe9y3Vgg==} + playwright-core@1.48.2: + resolution: {integrity: sha512-sjjw+qrLFlriJo64du+EK0kJgZzoQPsabGF4lBvsid+3CNIZIYLgnMj9V6JY5VhM2Peh20DJWIVpVljLLnlawA==} engines: {node: '>=18'} hasBin: true @@ -6587,8 +6579,8 @@ packages: engines: {node: '>=18'} hasBin: true - playwright@1.49.1: - resolution: {integrity: sha512-VYL8zLoNTBxVOrJBbDuRgDWa3i+mfQgDTrL8Ah9QXZ7ax4Dsj0MSq5bYgytRnDVVe+njoKnfsYkH3HzqVj5UZA==} + playwright@1.48.2: + resolution: {integrity: sha512-NjYvYgp4BPmiwfe31j4gHLa3J7bD2WiBz8Lk2RoSsmX38SVIARZ18VYjxLjAcDsAhA+F4iSEXTSGgjua0rrlgQ==} engines: {node: '>=18'} hasBin: true @@ -6690,10 +6682,6 @@ packages: resolution: {integrity: sha512-56rxCq7G/XfB4EkXq9Egn5GCqugWvDFjafDOThIdMBsI15iqPqR5r15TfSr1YPYeEI19YeaXMCbY6u88Y76GLQ==} engines: {node: ^10 || ^12 || >=14} - postcss@8.4.49: - resolution: {integrity: sha512-OCVPnIObs4N29kxTjzLfUryOkvZEq+pf8jTF0lg8E7uETuWHA+v7j3c/xJmiqpX450191LlmZfUKkXxkTry7nA==} - engines: {node: ^10 || ^12 || >=14} - prelude-ls@1.2.1: resolution: {integrity: sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==} engines: {node: '>= 0.8.0'} @@ -6852,11 +6840,6 @@ packages: peerDependencies: react: ^18.3.1 - react-dom@19.0.0: - resolution: {integrity: sha512-4GV5sHFG0e/0AD4X+ySy6UJd3jVl1iNsNHdpad0qhABJ11twS3TTBnseqsKurKcsNqCEFeGL3uLpVChpIO3QfQ==} - peerDependencies: - react: ^19.0.0 - react-element-to-jsx-string@15.0.0: resolution: {integrity: sha512-UDg4lXB6BzlobN60P8fHWVPX3Kyw8ORrTeBtClmIlGdkOOE+GYQSFvmEU5iLLpwp/6v42DINwNcwOhOLfQ//FQ==} peerDependencies: @@ -6880,10 +6863,6 @@ packages: resolution: {integrity: sha512-wS+hAgJShR0KhEvPJArfuPVN1+Hz1t0Y6n5jLrGQbkb4urgPE/0Rve+1kMB1v/oWgHgm4WIcV+i7F2pTVj+2iQ==} engines: {node: '>=0.10.0'} - react@19.0.0: - resolution: {integrity: sha512-V8AVnmPIICiWpGfm6GLzCR/W5FXLchHop40W4nXBmdlEceh16rCN8O8LNWm5bh5XUX91fh7KpA+W0TgMKmgTpQ==} - engines: {node: '>=0.10.0'} - read-package-json-fast@3.0.2: resolution: {integrity: sha512-0J+Msgym3vrLOUB3hzQCuZHII0xkNGCtz/HJH9xZshwv9DbDwkw1KaE3gx/e2J5rpEY5rtOy6cyhKOPrkP7FZw==} engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} @@ -7150,8 +7129,8 @@ packages: engines: {node: '>=14.0.0'} hasBin: true - sass@1.83.0: - resolution: {integrity: sha512-qsSxlayzoOjdvXMVLkzF84DJFc2HZEL/rFyGIKbbilYtAvlCxyuzUeff9LawTn4btVnLKg75Z8MMr1lxU1lfGw==} + sass@1.80.6: + resolution: {integrity: sha512-ccZgdHNiBF1NHBsWvacvT5rju3y1d/Eu+8Ex6c21nHp2lZGLBEtuwc415QfiI1PJa1TpCo3iXwwSRjRpn2Ckjg==} engines: {node: '>=14.0.0'} hasBin: true @@ -7165,9 +7144,6 @@ packages: scheduler@0.23.2: resolution: {integrity: sha512-UOShsPwz7NrMUqhR6t0hWjFduvOzbtv7toDH1/hIrfRNIDBnnBWd0CwJTGvTpngVlmwGCdP9/Zl/tVrDqcuYzQ==} - scheduler@0.25.0: - resolution: {integrity: sha512-xFVuu11jh+xcO7JOAGJNOXld8/TcEHK/4CituBUeUb5hqxJLj9YuemAEuvm9gQ/+pgXYfbQuqAkiYu+u7YEsNA==} - schema-utils@3.3.0: resolution: {integrity: sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg==} engines: {node: '>= 10.13.0'} @@ -7303,8 +7279,8 @@ packages: resolution: {integrity: sha512-94hK0Hh8rPqQl2xXc3HsaBoOXKV20MToPkcXvwbISWLEs+64sBq5kFgn2kJDHb1Pry9yrP0dxrCI9RRci7RXKg==} engines: {node: '>= 6.0.0', npm: '>= 3.0.0'} - smooth-zoom@1.5.0: - resolution: {integrity: sha512-rwV6r1voupnF1AeluydKggzrlqtfv8fD5NcbBOybHlIZz8GqzqR0/vMQkxwKeZ9iL60u7aCpNzZb/mQaVvF4dQ==} + smooth-zoom@1.4.1: + resolution: {integrity: sha512-a7nlEE1Tuk6C4+sDHTGrDYcL1x9GJC5M8A9M3BWmxhaJNePPdNycrpAdB6GMIL/zWwmBAhr5XIYknGiS4GHXhA==} socks-proxy-agent@7.0.0: resolution: {integrity: sha512-Fgl0YPZ902wEsAyiQ+idGd1A7rSFx/ayC1CQVMw5P+EQx2V0SgpGtf6OKFhVjPflPUl9YMmEOnmfjCdMUsygww==} @@ -7379,6 +7355,9 @@ packages: resolution: {integrity: sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==} engines: {node: '>= 0.8'} + std-env@3.7.0: + resolution: {integrity: sha512-JPbdCEQLj1w5GilpiHAx3qJvFndqybBysA3qUOnznweH4QbNYUsW/ea8QzSrnh0vNsezMMw5bcVool8lM0gwzg==} + std-env@3.8.0: resolution: {integrity: sha512-Bc3YwwCB+OzldMxOXJIIvC6cPRWr/LxOp48CdQTOkPyk/t4JWWJbrilwBd7RJzKV8QW7tJkcgAmeuLLJugl5/w==} @@ -7898,11 +7877,6 @@ packages: engines: {node: '>=14.17'} hasBin: true - typescript@5.7.2: - resolution: {integrity: sha512-i5t66RHxDvVN40HfDd1PsEThGNnlMCMT3jMUuoh9/0TaqWevNontacunWyN02LA9/fIbEWlcHZcgTKb9QoaLfg==} - engines: {node: '>=14.17'} - hasBin: true - ufo@1.5.4: resolution: {integrity: sha512-UsUk3byDzKd04EyoZ7U4DOlxQaD14JUKQl6/P7wiX4FNvUfm3XL246n9W5AmqwW5RSFJ27NAuM0iLscAOYUiGQ==} @@ -7920,9 +7894,6 @@ packages: undici-types@6.19.8: resolution: {integrity: sha512-ve2KP6f/JnbPBFyobGHuerC9g1FYGn/F8n1LWTwNxCEzd6IfqTwUQcNXgEtmmQ6DlRrC1hrSrBnCZPokRrDHjw==} - undici-types@6.20.0: - resolution: {integrity: sha512-Ny6QZ2Nju20vw1SRHe3d9jVu6gJ+4e3+MMpqu7pqE5HT6WsTSlce++GQmK5UXS8mzV8DSYHrQH+Xrf2jVcuKNg==} - unicode-canonical-property-names-ecmascript@2.0.0: resolution: {integrity: sha512-yY5PpDlfVIU5+y/BSCxAJRBIS1Zc2dDG3Ujq+sR0U+JjUevW2JhocOF+soROYDSaAezOzOKuyyixhD6mBknSmQ==} engines: {node: '>=4'} @@ -8077,8 +8048,13 @@ packages: vfile@6.0.3: resolution: {integrity: sha512-KzIbH/9tXat2u30jf+smMwFCsno4wHVdNmzFyL+T/L3UGqqk6JKfVqOFOZEpZSHADH1k40ab6NUIXZq422ov3Q==} - vite-node@2.1.8: - resolution: {integrity: sha512-uPAwSr57kYjAUux+8E2j0q0Fxpn8M9VoyfGiRI8Kfktz9NcYMCenwY5RnZxnF1WTu3TGiYipirIzacLL3VVGFg==} + vite-node@2.1.4: + resolution: {integrity: sha512-kqa9v+oi4HwkG6g8ufRnb5AeplcRw8jUF6/7/Qz1qRQOXHImG8YnLbB+LLszENwFnoBl9xIf9nVdCFzNd7GQEg==} + engines: {node: ^18.0.0 || >=20.0.0} + hasBin: true + + vite-node@2.1.5: + resolution: {integrity: sha512-rd0QIgx74q4S1Rd56XIiL2cYEdyWn13cunYBIuqh9mpmQr7gGS0IxXoP8R6OaZtNQQLyXSWbd4rXKYUbhFpK5w==} engines: {node: ^18.0.0 || >=20.0.0} hasBin: true @@ -8097,11 +8073,11 @@ packages: peerDependencies: vite: '*' - vite-plugin-static-copy@2.2.0: - resolution: {integrity: sha512-ytMrKdR9iWEYHbUxs6x53m+MRl4SJsOSoMu1U1+Pfg0DjPeMlsRVx3RR5jvoonineDquIue83Oq69JvNsFSU5w==} + vite-plugin-static-copy@2.1.0: + resolution: {integrity: sha512-n8lEOIVM00Y/zronm0RG8RdPyFd0SAAFR0sii3NWmgG3PSCyYMsvUNRQTlb3onp1XeMrKIDwCrPGxthKvqX9OQ==} engines: {node: ^18.0.0 || >=20.0.0} peerDependencies: - vite: ^5.0.0 || ^6.0.0 + vite: ^5.0.0 vite@5.4.10: resolution: {integrity: sha512-1hvaPshuPUtxeQ0hsVH3Mud0ZanOLwVTneA1EgbAM5LhaZEqyPWGRQ7BtaMvUrTDeEaC8pxtj6a6jku3x4z6SQ==} @@ -8168,15 +8144,40 @@ packages: vitest-monocart-coverage@2.1.2: resolution: {integrity: sha512-bBH00f6Z+8RHQBHmsmFWjha5+IMQXSFrbt3ackjVdzN/Jz55o96h2tuVoNTtXfoCdbfb6bi9PPB6Mtcx91HvwA==} - vitest@2.1.8: - resolution: {integrity: sha512-1vBKTZskHw/aosXqQUlVWWlGUxSJR8YtiyZDJAFeW2kPAeX6S3Sool0mjspO+kXLuxVWlEDDowBAeqeAQefqLQ==} + vitest@2.1.4: + resolution: {integrity: sha512-eDjxbVAJw1UJJCHr5xr/xM86Zx+YxIEXGAR+bmnEID7z9qWfoxpHw0zdobz+TQAFOLT+nEXz3+gx6nUJ7RgmlQ==} + engines: {node: ^18.0.0 || >=20.0.0} + hasBin: true + peerDependencies: + '@edge-runtime/vm': '*' + '@types/node': ^18.0.0 || >=20.0.0 + '@vitest/browser': 2.1.4 + '@vitest/ui': 2.1.4 + happy-dom: '*' + jsdom: '*' + peerDependenciesMeta: + '@edge-runtime/vm': + optional: true + '@types/node': + optional: true + '@vitest/browser': + optional: true + '@vitest/ui': + optional: true + happy-dom: + optional: true + jsdom: + optional: true + + vitest@2.1.5: + resolution: {integrity: sha512-P4ljsdpuzRTPI/kbND2sDZ4VmieerR2c9szEZpjc+98Z9ebvnXmM5+0tHEKqYZumXqlvnmfWsjeFOjXVriDG7A==} engines: {node: ^18.0.0 || >=20.0.0} hasBin: true peerDependencies: '@edge-runtime/vm': '*' '@types/node': ^18.0.0 || >=20.0.0 - '@vitest/browser': 2.1.8 - '@vitest/ui': 2.1.8 + '@vitest/browser': 2.1.5 + '@vitest/ui': 2.1.5 happy-dom: '*' jsdom: '*' peerDependenciesMeta: @@ -8429,9 +8430,6 @@ packages: zod@3.23.8: resolution: {integrity: sha512-XBx9AXhXktjUqnepgTiE5flcKIYWi/rme0Eaj+5Y0lftuGBq+jyRu/md4WnuxqgP1ubdpNCsYEYPxrzVHD8d6g==} - zod@3.24.1: - resolution: {integrity: sha512-muH7gBL9sI1nciMZV67X5fTKKBLtwpZ5VBp1vsOQzj1MhrBZ4wlVCm3gedKZWLp0Oyel8sIGfeiz54Su+OVT+A==} - zwitch@2.0.4: resolution: {integrity: sha512-bXE4cR/kVZhKZX/RjPEflHaKVhUVl85noU3v6b8apfQEc1x4A+zBxjZ4lN8LqGd6WZ3dl98pY4o717VFmoPp+A==} @@ -8486,12 +8484,6 @@ snapshots: '@babel/highlight': 7.25.9 picocolors: 1.1.1 - '@babel/code-frame@7.26.2': - dependencies: - '@babel/helper-validator-identifier': 7.25.9 - js-tokens: 4.0.0 - picocolors: 1.1.1 - '@babel/compat-data@7.25.9': {} '@babel/core@7.25.9': @@ -8514,45 +8506,25 @@ snapshots: transitivePeerDependencies: - supports-color - '@babel/core@7.26.0': - dependencies: - '@ampproject/remapping': 2.3.0 - '@babel/code-frame': 7.26.2 - '@babel/generator': 7.26.3 - '@babel/helper-compilation-targets': 7.25.9 - '@babel/helper-module-transforms': 7.26.0(@babel/core@7.26.0) - '@babel/helpers': 7.26.0 - '@babel/parser': 7.26.3 - '@babel/template': 7.25.9 - '@babel/traverse': 7.25.9 - '@babel/types': 7.26.3 - convert-source-map: 2.0.0 - debug: 4.3.7 - gensync: 1.0.0-beta.2 - json5: 2.2.3 - semver: 6.3.1 - transitivePeerDependencies: - - supports-color - - '@babel/eslint-parser@7.25.9(@babel/core@7.26.0)(eslint@8.56.0)': + '@babel/eslint-parser@7.25.9(@babel/core@7.25.9)(eslint@8.56.0)': dependencies: - '@babel/core': 7.26.0 + '@babel/core': 7.25.9 '@nicolo-ribaudo/eslint-scope-5-internals': 5.1.1-v1 eslint: 8.56.0 eslint-visitor-keys: 2.1.0 semver: 6.3.1 - '@babel/eslint-parser@7.25.9(@babel/core@7.26.0)(eslint@8.57.0)': + '@babel/eslint-parser@7.25.9(@babel/core@7.25.9)(eslint@8.57.0)': dependencies: - '@babel/core': 7.26.0 + '@babel/core': 7.25.9 '@nicolo-ribaudo/eslint-scope-5-internals': 5.1.1-v1 eslint: 8.57.0 eslint-visitor-keys: 2.1.0 semver: 6.3.1 - '@babel/eslint-parser@7.25.9(@babel/core@7.26.0)(eslint@8.57.1)': + '@babel/eslint-parser@7.25.9(@babel/core@7.25.9)(eslint@8.57.1)': dependencies: - '@babel/core': 7.26.0 + '@babel/core': 7.25.9 '@nicolo-ribaudo/eslint-scope-5-internals': 5.1.1-v1 eslint: 8.57.1 eslint-visitor-keys: 2.1.0 @@ -8560,26 +8532,18 @@ snapshots: '@babel/generator@7.25.9': dependencies: - '@babel/types': 7.26.3 - '@jridgewell/gen-mapping': 0.3.5 - '@jridgewell/trace-mapping': 0.3.25 - jsesc: 3.0.2 - - '@babel/generator@7.26.3': - dependencies: - '@babel/parser': 7.26.3 - '@babel/types': 7.26.3 + '@babel/types': 7.25.9 '@jridgewell/gen-mapping': 0.3.5 '@jridgewell/trace-mapping': 0.3.25 jsesc: 3.0.2 '@babel/helper-annotate-as-pure@7.22.5': dependencies: - '@babel/types': 7.26.3 + '@babel/types': 7.25.9 '@babel/helper-builder-binary-assignment-operator-visitor@7.22.15': dependencies: - '@babel/types': 7.26.3 + '@babel/types': 7.25.9 '@babel/helper-compilation-targets@7.25.9': dependencies: @@ -8625,20 +8589,20 @@ snapshots: '@babel/helper-function-name@7.24.6': dependencies: '@babel/template': 7.25.9 - '@babel/types': 7.26.3 + '@babel/types': 7.25.9 '@babel/helper-hoist-variables@7.24.6': dependencies: - '@babel/types': 7.26.3 + '@babel/types': 7.25.9 '@babel/helper-member-expression-to-functions@7.24.5': dependencies: - '@babel/types': 7.26.3 + '@babel/types': 7.25.9 '@babel/helper-module-imports@7.25.9': dependencies: '@babel/traverse': 7.25.9 - '@babel/types': 7.26.3 + '@babel/types': 7.25.9 transitivePeerDependencies: - supports-color @@ -8652,27 +8616,9 @@ snapshots: transitivePeerDependencies: - supports-color - '@babel/helper-module-transforms@7.26.0(@babel/core@7.25.9)': - dependencies: - '@babel/core': 7.25.9 - '@babel/helper-module-imports': 7.25.9 - '@babel/helper-validator-identifier': 7.25.9 - '@babel/traverse': 7.25.9 - transitivePeerDependencies: - - supports-color - - '@babel/helper-module-transforms@7.26.0(@babel/core@7.26.0)': - dependencies: - '@babel/core': 7.26.0 - '@babel/helper-module-imports': 7.25.9 - '@babel/helper-validator-identifier': 7.25.9 - '@babel/traverse': 7.25.9 - transitivePeerDependencies: - - supports-color - '@babel/helper-optimise-call-expression@7.22.5': dependencies: - '@babel/types': 7.26.3 + '@babel/types': 7.25.9 '@babel/helper-plugin-utils@7.25.9': {} @@ -8693,17 +8639,17 @@ snapshots: '@babel/helper-simple-access@7.25.9': dependencies: '@babel/traverse': 7.25.9 - '@babel/types': 7.26.3 + '@babel/types': 7.25.9 transitivePeerDependencies: - supports-color '@babel/helper-skip-transparent-expression-wrappers@7.22.5': dependencies: - '@babel/types': 7.26.3 + '@babel/types': 7.25.9 '@babel/helper-split-export-declaration@7.24.6': dependencies: - '@babel/types': 7.26.3 + '@babel/types': 7.25.9 '@babel/helper-string-parser@7.25.9': {} @@ -8715,17 +8661,12 @@ snapshots: dependencies: '@babel/helper-function-name': 7.24.6 '@babel/template': 7.25.9 - '@babel/types': 7.26.3 + '@babel/types': 7.25.9 '@babel/helpers@7.25.9': dependencies: '@babel/template': 7.25.9 - '@babel/types': 7.26.3 - - '@babel/helpers@7.26.0': - dependencies: - '@babel/template': 7.25.9 - '@babel/types': 7.26.3 + '@babel/types': 7.25.9 '@babel/highlight@7.25.9': dependencies: @@ -8736,11 +8677,7 @@ snapshots: '@babel/parser@7.25.9': dependencies: - '@babel/types': 7.26.3 - - '@babel/parser@7.26.3': - dependencies: - '@babel/types': 7.26.3 + '@babel/types': 7.25.9 '@babel/plugin-bugfix-firefox-class-in-computed-class-key@7.24.5(@babel/core@7.25.9)': dependencies: @@ -9011,7 +8948,7 @@ snapshots: '@babel/plugin-transform-modules-amd@7.24.1(@babel/core@7.25.9)': dependencies: '@babel/core': 7.25.9 - '@babel/helper-module-transforms': 7.26.0(@babel/core@7.25.9) + '@babel/helper-module-transforms': 7.25.9(@babel/core@7.25.9) '@babel/helper-plugin-utils': 7.25.9 transitivePeerDependencies: - supports-color @@ -9019,7 +8956,7 @@ snapshots: '@babel/plugin-transform-modules-commonjs@7.24.1(@babel/core@7.25.9)': dependencies: '@babel/core': 7.25.9 - '@babel/helper-module-transforms': 7.26.0(@babel/core@7.25.9) + '@babel/helper-module-transforms': 7.25.9(@babel/core@7.25.9) '@babel/helper-plugin-utils': 7.25.9 '@babel/helper-simple-access': 7.25.9 transitivePeerDependencies: @@ -9029,7 +8966,7 @@ snapshots: dependencies: '@babel/core': 7.25.9 '@babel/helper-hoist-variables': 7.24.6 - '@babel/helper-module-transforms': 7.26.0(@babel/core@7.25.9) + '@babel/helper-module-transforms': 7.25.9(@babel/core@7.25.9) '@babel/helper-plugin-utils': 7.25.9 '@babel/helper-validator-identifier': 7.25.9 transitivePeerDependencies: @@ -9038,7 +8975,7 @@ snapshots: '@babel/plugin-transform-modules-umd@7.24.1(@babel/core@7.25.9)': dependencies: '@babel/core': 7.25.9 - '@babel/helper-module-transforms': 7.26.0(@babel/core@7.25.9) + '@babel/helper-module-transforms': 7.25.9(@babel/core@7.25.9) '@babel/helper-plugin-utils': 7.25.9 transitivePeerDependencies: - supports-color @@ -9134,21 +9071,11 @@ snapshots: '@babel/core': 7.25.9 '@babel/helper-plugin-utils': 7.25.9 - '@babel/plugin-transform-react-jsx-self@7.25.9(@babel/core@7.26.0)': - dependencies: - '@babel/core': 7.26.0 - '@babel/helper-plugin-utils': 7.25.9 - '@babel/plugin-transform-react-jsx-source@7.25.9(@babel/core@7.25.9)': dependencies: '@babel/core': 7.25.9 '@babel/helper-plugin-utils': 7.25.9 - '@babel/plugin-transform-react-jsx-source@7.25.9(@babel/core@7.26.0)': - dependencies: - '@babel/core': 7.26.0 - '@babel/helper-plugin-utils': 7.25.9 - '@babel/plugin-transform-react-jsx@7.23.4(@babel/core@7.25.9)': dependencies: '@babel/core': 7.25.9 @@ -9156,7 +9083,7 @@ snapshots: '@babel/helper-module-imports': 7.25.9 '@babel/helper-plugin-utils': 7.25.9 '@babel/plugin-syntax-jsx': 7.24.1(@babel/core@7.25.9) - '@babel/types': 7.26.3 + '@babel/types': 7.25.9 transitivePeerDependencies: - supports-color @@ -9337,7 +9264,7 @@ snapshots: dependencies: '@babel/core': 7.25.9 '@babel/helper-plugin-utils': 7.25.9 - '@babel/types': 7.26.3 + '@babel/types': 7.25.9 esutils: 2.0.3 '@babel/preset-react@7.24.1(@babel/core@7.25.9)': @@ -9375,17 +9302,17 @@ snapshots: '@babel/template@7.25.9': dependencies: - '@babel/code-frame': 7.26.2 - '@babel/parser': 7.26.3 - '@babel/types': 7.26.3 + '@babel/code-frame': 7.25.9 + '@babel/parser': 7.25.9 + '@babel/types': 7.25.9 '@babel/traverse@7.25.9': dependencies: - '@babel/code-frame': 7.26.2 - '@babel/generator': 7.26.3 - '@babel/parser': 7.26.3 + '@babel/code-frame': 7.25.9 + '@babel/generator': 7.25.9 + '@babel/parser': 7.25.9 '@babel/template': 7.25.9 - '@babel/types': 7.26.3 + '@babel/types': 7.25.9 debug: 4.3.7 globals: 11.12.0 transitivePeerDependencies: @@ -9396,11 +9323,6 @@ snapshots: '@babel/helper-string-parser': 7.25.9 '@babel/helper-validator-identifier': 7.25.9 - '@babel/types@7.26.3': - dependencies: - '@babel/helper-string-parser': 7.25.9 - '@babel/helper-validator-identifier': 7.25.9 - '@base2/pretty-print-object@1.0.1': {} '@bcoe/v8-coverage@0.2.3': {} @@ -9554,11 +9476,11 @@ snapshots: unplugin: 1.10.1 zod: 3.23.8 - '@codecov/vite-plugin@0.0.1-beta.8(vite@5.4.11(@types/node@22.10.2)(sass@1.83.0)(terser@5.31.0))': + '@codecov/vite-plugin@0.0.1-beta.8(vite@5.4.11(@types/node@22.9.0)(sass@1.80.6)(terser@5.31.0))': dependencies: '@codecov/bundler-plugin-core': 0.0.1-beta.8 unplugin: 1.10.1 - vite: 5.4.11(@types/node@22.10.2)(sass@1.83.0)(terser@5.31.0) + vite: 5.4.11(@types/node@22.9.0)(sass@1.80.6)(terser@5.31.0) '@discoveryjs/json-ext@0.5.7': {} @@ -9977,13 +9899,41 @@ snapshots: globby: 11.1.0 read-yaml-file: 1.1.0 - '@marshallku/eslint-config@0.0.4(eslint@8.56.0)(prettier@3.3.3)(typescript@5.7.2)': + '@marshallku/eslint-config@0.0.4(eslint@8.56.0)(prettier@3.3.3)(typescript@5.6.3)': + dependencies: + '@next/eslint-plugin-next': 14.2.16 + '@rushstack/eslint-config': 3.7.1(eslint@8.56.0)(typescript@5.6.3) + '@rushstack/eslint-patch': 1.10.4 + '@tanstack/eslint-plugin-query': 5.59.7(eslint@8.56.0)(typescript@5.6.3) + '@vercel/style-guide': 6.0.0(@next/eslint-plugin-next@14.2.16)(eslint@8.56.0)(prettier@3.3.3)(typescript@5.6.3) + eslint: 8.56.0 + eslint-config-turbo: 1.13.4(eslint@8.56.0) + eslint-plugin-cypress: 3.6.0(eslint@8.56.0) + eslint-plugin-jsx-a11y: 6.10.1(eslint@8.56.0) + eslint-plugin-mdx: 3.1.5(eslint@8.56.0) + eslint-plugin-no-relative-import-paths: 1.5.5 + eslint-plugin-only-warn: 1.1.0 + eslint-plugin-react-refresh: 0.4.13(eslint@8.56.0) + eslint-plugin-storybook: 0.8.0(eslint@8.56.0)(typescript@5.6.3) + eslint-plugin-testing-library: 6.4.0(eslint@8.56.0)(typescript@5.6.3) + typescript: 5.6.3 + transitivePeerDependencies: + - bluebird + - eslint-import-resolver-node + - eslint-import-resolver-webpack + - eslint-plugin-import-x + - jest + - prettier + - supports-color + - vitest + + '@marshallku/eslint-config@0.0.4(eslint@8.56.0)(prettier@3.3.3)(typescript@5.6.3)(vitest@2.1.4(@types/node@22.9.0)(jsdom@25.0.1)(sass@1.80.6)(terser@5.31.0))': dependencies: '@next/eslint-plugin-next': 14.2.16 - '@rushstack/eslint-config': 3.7.1(eslint@8.56.0)(typescript@5.7.2) + '@rushstack/eslint-config': 3.7.1(eslint@8.56.0)(typescript@5.6.3) '@rushstack/eslint-patch': 1.10.4 - '@tanstack/eslint-plugin-query': 5.59.7(eslint@8.56.0)(typescript@5.7.2) - '@vercel/style-guide': 6.0.0(@next/eslint-plugin-next@14.2.16)(eslint@8.56.0)(prettier@3.3.3)(typescript@5.7.2) + '@tanstack/eslint-plugin-query': 5.59.7(eslint@8.56.0)(typescript@5.6.3) + '@vercel/style-guide': 6.0.0(@next/eslint-plugin-next@14.2.16)(eslint@8.56.0)(prettier@3.3.3)(typescript@5.6.3)(vitest@2.1.4(@types/node@22.9.0)(jsdom@25.0.1)(sass@1.80.6)(terser@5.31.0)) eslint: 8.56.0 eslint-config-turbo: 1.13.4(eslint@8.56.0) eslint-plugin-cypress: 3.6.0(eslint@8.56.0) @@ -9992,9 +9942,9 @@ snapshots: eslint-plugin-no-relative-import-paths: 1.5.5 eslint-plugin-only-warn: 1.1.0 eslint-plugin-react-refresh: 0.4.13(eslint@8.56.0) - eslint-plugin-storybook: 0.8.0(eslint@8.56.0)(typescript@5.7.2) - eslint-plugin-testing-library: 6.4.0(eslint@8.56.0)(typescript@5.7.2) - typescript: 5.7.2 + eslint-plugin-storybook: 0.8.0(eslint@8.56.0)(typescript@5.6.3) + eslint-plugin-testing-library: 6.4.0(eslint@8.56.0)(typescript@5.6.3) + typescript: 5.6.3 transitivePeerDependencies: - bluebird - eslint-import-resolver-node @@ -10005,13 +9955,13 @@ snapshots: - supports-color - vitest - '@marshallku/eslint-config@0.0.4(eslint@8.56.0)(prettier@3.3.3)(typescript@5.7.2)(vitest@2.1.8(@types/node@22.10.2)(jsdom@25.0.1)(sass@1.83.0)(terser@5.31.0))': + '@marshallku/eslint-config@0.0.4(eslint@8.56.0)(prettier@3.3.3)(typescript@5.6.3)(vitest@2.1.5(@types/node@22.9.0)(jsdom@25.0.1)(sass@1.80.6)(terser@5.31.0))': dependencies: '@next/eslint-plugin-next': 14.2.16 - '@rushstack/eslint-config': 3.7.1(eslint@8.56.0)(typescript@5.7.2) + '@rushstack/eslint-config': 3.7.1(eslint@8.56.0)(typescript@5.6.3) '@rushstack/eslint-patch': 1.10.4 - '@tanstack/eslint-plugin-query': 5.59.7(eslint@8.56.0)(typescript@5.7.2) - '@vercel/style-guide': 6.0.0(@next/eslint-plugin-next@14.2.16)(eslint@8.56.0)(prettier@3.3.3)(typescript@5.7.2)(vitest@2.1.8(@types/node@22.10.2)(jsdom@25.0.1)(sass@1.83.0)(terser@5.31.0)) + '@tanstack/eslint-plugin-query': 5.59.7(eslint@8.56.0)(typescript@5.6.3) + '@vercel/style-guide': 6.0.0(@next/eslint-plugin-next@14.2.16)(eslint@8.56.0)(prettier@3.3.3)(typescript@5.6.3)(vitest@2.1.5(@types/node@22.9.0)(jsdom@25.0.1)(sass@1.80.6)(terser@5.31.0)) eslint: 8.56.0 eslint-config-turbo: 1.13.4(eslint@8.56.0) eslint-plugin-cypress: 3.6.0(eslint@8.56.0) @@ -10020,9 +9970,9 @@ snapshots: eslint-plugin-no-relative-import-paths: 1.5.5 eslint-plugin-only-warn: 1.1.0 eslint-plugin-react-refresh: 0.4.13(eslint@8.56.0) - eslint-plugin-storybook: 0.8.0(eslint@8.56.0)(typescript@5.7.2) - eslint-plugin-testing-library: 6.4.0(eslint@8.56.0)(typescript@5.7.2) - typescript: 5.7.2 + eslint-plugin-storybook: 0.8.0(eslint@8.56.0)(typescript@5.6.3) + eslint-plugin-testing-library: 6.4.0(eslint@8.56.0)(typescript@5.6.3) + typescript: 5.6.3 transitivePeerDependencies: - bluebird - eslint-import-resolver-node @@ -10061,13 +10011,13 @@ snapshots: - supports-color - vitest - '@marshallku/eslint-config@0.0.4(eslint@8.57.1)(prettier@3.3.3)(typescript@5.7.2)': + '@marshallku/eslint-config@0.0.4(eslint@8.57.1)(prettier@3.3.3)(typescript@5.6.3)': dependencies: '@next/eslint-plugin-next': 14.2.16 - '@rushstack/eslint-config': 3.7.1(eslint@8.57.1)(typescript@5.7.2) + '@rushstack/eslint-config': 3.7.1(eslint@8.57.1)(typescript@5.6.3) '@rushstack/eslint-patch': 1.10.4 - '@tanstack/eslint-plugin-query': 5.59.7(eslint@8.57.1)(typescript@5.7.2) - '@vercel/style-guide': 6.0.0(@next/eslint-plugin-next@14.2.16)(eslint@8.57.1)(prettier@3.3.3)(typescript@5.7.2) + '@tanstack/eslint-plugin-query': 5.59.7(eslint@8.57.1)(typescript@5.6.3) + '@vercel/style-guide': 6.0.0(@next/eslint-plugin-next@14.2.16)(eslint@8.57.1)(prettier@3.3.3)(typescript@5.6.3) eslint: 8.57.1 eslint-config-turbo: 1.13.4(eslint@8.57.1) eslint-plugin-cypress: 3.6.0(eslint@8.57.1) @@ -10076,9 +10026,9 @@ snapshots: eslint-plugin-no-relative-import-paths: 1.5.5 eslint-plugin-only-warn: 1.1.0 eslint-plugin-react-refresh: 0.4.13(eslint@8.57.1) - eslint-plugin-storybook: 0.8.0(eslint@8.57.1)(typescript@5.7.2) - eslint-plugin-testing-library: 6.4.0(eslint@8.57.1)(typescript@5.7.2) - typescript: 5.7.2 + eslint-plugin-storybook: 0.8.0(eslint@8.57.1)(typescript@5.6.3) + eslint-plugin-testing-library: 6.4.0(eslint@8.57.1)(typescript@5.6.3) + typescript: 5.6.3 transitivePeerDependencies: - bluebird - eslint-import-resolver-node @@ -10089,13 +10039,13 @@ snapshots: - supports-color - vitest - '@marshallku/eslint-config@0.0.4(eslint@8.57.1)(prettier@3.3.3)(typescript@5.7.2)(vitest@2.1.8(@types/node@20.16.15)(jsdom@25.0.1)(sass@1.83.0)(terser@5.31.0))': + '@marshallku/eslint-config@0.0.4(eslint@8.57.1)(prettier@3.3.3)(typescript@5.6.3)(vitest@2.1.4(@types/node@20.16.15)(jsdom@25.0.1)(sass@1.80.6)(terser@5.31.0))': dependencies: '@next/eslint-plugin-next': 14.2.16 - '@rushstack/eslint-config': 3.7.1(eslint@8.57.1)(typescript@5.7.2) + '@rushstack/eslint-config': 3.7.1(eslint@8.57.1)(typescript@5.6.3) '@rushstack/eslint-patch': 1.10.4 - '@tanstack/eslint-plugin-query': 5.59.7(eslint@8.57.1)(typescript@5.7.2) - '@vercel/style-guide': 6.0.0(@next/eslint-plugin-next@14.2.16)(eslint@8.57.1)(prettier@3.3.3)(typescript@5.7.2)(vitest@2.1.8(@types/node@20.16.15)(jsdom@25.0.1)(sass@1.83.0)(terser@5.31.0)) + '@tanstack/eslint-plugin-query': 5.59.7(eslint@8.57.1)(typescript@5.6.3) + '@vercel/style-guide': 6.0.0(@next/eslint-plugin-next@14.2.16)(eslint@8.57.1)(prettier@3.3.3)(typescript@5.6.3)(vitest@2.1.4(@types/node@20.16.15)(jsdom@25.0.1)(sass@1.80.6)(terser@5.31.0)) eslint: 8.57.1 eslint-config-turbo: 1.13.4(eslint@8.57.1) eslint-plugin-cypress: 3.6.0(eslint@8.57.1) @@ -10104,9 +10054,9 @@ snapshots: eslint-plugin-no-relative-import-paths: 1.5.5 eslint-plugin-only-warn: 1.1.0 eslint-plugin-react-refresh: 0.4.13(eslint@8.57.1) - eslint-plugin-storybook: 0.8.0(eslint@8.57.1)(typescript@5.7.2) - eslint-plugin-testing-library: 6.4.0(eslint@8.57.1)(typescript@5.7.2) - typescript: 5.7.2 + eslint-plugin-storybook: 0.8.0(eslint@8.57.1)(typescript@5.6.3) + eslint-plugin-testing-library: 6.4.0(eslint@8.57.1)(typescript@5.6.3) + typescript: 5.6.3 transitivePeerDependencies: - bluebird - eslint-import-resolver-node @@ -10159,29 +10109,23 @@ snapshots: '@types/react': 18.3.12 react: 18.3.1 - '@mdx-js/react@3.1.0(@types/react@19.0.1)(react@19.0.0)': - dependencies: - '@types/mdx': 2.0.13 - '@types/react': 19.0.1 - react: 19.0.0 - - '@microsoft/api-extractor-model@7.29.8(@types/node@22.10.2)': + '@microsoft/api-extractor-model@7.29.8(@types/node@22.9.0)': dependencies: '@microsoft/tsdoc': 0.15.0 '@microsoft/tsdoc-config': 0.17.0 - '@rushstack/node-core-library': 5.9.0(@types/node@22.10.2) + '@rushstack/node-core-library': 5.9.0(@types/node@22.9.0) transitivePeerDependencies: - '@types/node' - '@microsoft/api-extractor@7.47.11(@types/node@22.10.2)': + '@microsoft/api-extractor@7.47.11(@types/node@22.9.0)': dependencies: - '@microsoft/api-extractor-model': 7.29.8(@types/node@22.10.2) + '@microsoft/api-extractor-model': 7.29.8(@types/node@22.9.0) '@microsoft/tsdoc': 0.15.0 '@microsoft/tsdoc-config': 0.17.0 - '@rushstack/node-core-library': 5.9.0(@types/node@22.10.2) + '@rushstack/node-core-library': 5.9.0(@types/node@22.9.0) '@rushstack/rig-package': 0.5.3 - '@rushstack/terminal': 0.14.2(@types/node@22.10.2) - '@rushstack/ts-command-line': 4.23.0(@types/node@22.10.2) + '@rushstack/terminal': 0.14.2(@types/node@22.9.0) + '@rushstack/ts-command-line': 4.23.0(@types/node@22.9.0) lodash: 4.17.21 minimatch: 3.0.8 resolve: 1.22.8 @@ -10214,51 +10158,51 @@ snapshots: jpeg-js: 0.4.4 pngjs: 6.0.0 - '@next/bundle-analyzer@15.1.0': + '@next/bundle-analyzer@15.0.3': dependencies: webpack-bundle-analyzer: 4.10.1 transitivePeerDependencies: - bufferutil - utf-8-validate - '@next/env@15.1.0': {} + '@next/env@15.0.3': {} '@next/eslint-plugin-next@14.2.16': dependencies: glob: 10.3.10 - '@next/eslint-plugin-next@15.1.0': + '@next/eslint-plugin-next@15.0.3': dependencies: fast-glob: 3.3.1 - '@next/swc-darwin-arm64@15.1.0': + '@next/swc-darwin-arm64@15.0.3': optional: true - '@next/swc-darwin-x64@15.1.0': + '@next/swc-darwin-x64@15.0.3': optional: true - '@next/swc-linux-arm64-gnu@15.1.0': + '@next/swc-linux-arm64-gnu@15.0.3': optional: true - '@next/swc-linux-arm64-musl@15.1.0': + '@next/swc-linux-arm64-musl@15.0.3': optional: true - '@next/swc-linux-x64-gnu@15.1.0': + '@next/swc-linux-x64-gnu@15.0.3': optional: true - '@next/swc-linux-x64-musl@15.1.0': + '@next/swc-linux-x64-musl@15.0.3': optional: true - '@next/swc-win32-arm64-msvc@15.1.0': + '@next/swc-win32-arm64-msvc@15.0.3': optional: true - '@next/swc-win32-x64-msvc@15.1.0': + '@next/swc-win32-x64-msvc@15.0.3': optional: true - '@next/third-parties@15.1.0(next@15.1.0(@babel/core@7.26.0)(@playwright/test@1.49.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(sass@1.83.0))(react@19.0.0)': + '@next/third-parties@15.0.3(next@15.0.3(@playwright/test@1.48.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.80.6))(react@18.3.1)': dependencies: - next: 15.1.0(@babel/core@7.26.0)(@playwright/test@1.49.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(sass@1.83.0) - react: 19.0.0 + next: 15.0.3(@playwright/test@1.48.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.80.6) + react: 18.3.1 third-party-capital: 1.0.20 '@nicolo-ribaudo/eslint-scope-5-internals@5.1.1-v1': @@ -10402,11 +10346,11 @@ snapshots: '@pkgr/core@0.1.1': {} - '@playwright/test@1.49.1': + '@playwright/test@1.48.2': dependencies: - playwright: 1.49.1 + playwright: 1.48.2 - '@pmmmwh/react-refresh-webpack-plugin@0.5.13(react-refresh@0.14.2)(type-fest@3.13.1)(webpack-hot-middleware@2.26.1)(webpack@5.91.0(@swc/core@1.7.39(@swc/helpers@0.5.15))(esbuild@0.23.1))': + '@pmmmwh/react-refresh-webpack-plugin@0.5.13(react-refresh@0.14.2)(type-fest@3.13.1)(webpack-hot-middleware@2.26.1)(webpack@5.91.0(@swc/core@1.7.39(@swc/helpers@0.5.13))(esbuild@0.23.1))': dependencies: ansi-html-community: 0.0.8 core-js-pure: 3.37.1 @@ -10416,7 +10360,7 @@ snapshots: react-refresh: 0.14.2 schema-utils: 3.3.0 source-map: 0.7.4 - webpack: 5.91.0(@swc/core@1.7.39(@swc/helpers@0.5.15))(esbuild@0.23.1) + webpack: 5.91.0(@swc/core@1.7.39(@swc/helpers@0.5.13))(esbuild@0.23.1) optionalDependencies: type-fest: 3.13.1 webpack-hot-middleware: 2.26.1 @@ -10494,21 +10438,21 @@ snapshots: '@rtsao/scc@1.1.0': {} - '@rushstack/eslint-config@3.7.1(eslint@8.56.0)(typescript@5.7.2)': + '@rushstack/eslint-config@3.7.1(eslint@8.56.0)(typescript@5.6.3)': dependencies: '@rushstack/eslint-patch': 1.10.4 - '@rushstack/eslint-plugin': 0.15.2(eslint@8.56.0)(typescript@5.7.2) - '@rushstack/eslint-plugin-packlets': 0.9.2(eslint@8.56.0)(typescript@5.7.2) - '@rushstack/eslint-plugin-security': 0.8.2(eslint@8.56.0)(typescript@5.7.2) - '@typescript-eslint/eslint-plugin': 6.19.1(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.7.2))(eslint@8.56.0)(typescript@5.7.2) - '@typescript-eslint/parser': 6.19.1(eslint@8.56.0)(typescript@5.7.2) - '@typescript-eslint/typescript-estree': 6.19.1(typescript@5.7.2) - '@typescript-eslint/utils': 6.19.1(eslint@8.56.0)(typescript@5.7.2) + '@rushstack/eslint-plugin': 0.15.2(eslint@8.56.0)(typescript@5.6.3) + '@rushstack/eslint-plugin-packlets': 0.9.2(eslint@8.56.0)(typescript@5.6.3) + '@rushstack/eslint-plugin-security': 0.8.2(eslint@8.56.0)(typescript@5.6.3) + '@typescript-eslint/eslint-plugin': 6.19.1(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.6.3))(eslint@8.56.0)(typescript@5.6.3) + '@typescript-eslint/parser': 6.19.1(eslint@8.56.0)(typescript@5.6.3) + '@typescript-eslint/typescript-estree': 6.19.1(typescript@5.6.3) + '@typescript-eslint/utils': 6.19.1(eslint@8.56.0)(typescript@5.6.3) eslint: 8.56.0 eslint-plugin-promise: 6.1.1(eslint@8.56.0) eslint-plugin-react: 7.33.2(eslint@8.56.0) eslint-plugin-tsdoc: 0.3.0 - typescript: 5.7.2 + typescript: 5.6.3 transitivePeerDependencies: - supports-color @@ -10530,30 +10474,30 @@ snapshots: transitivePeerDependencies: - supports-color - '@rushstack/eslint-config@3.7.1(eslint@8.57.1)(typescript@5.7.2)': + '@rushstack/eslint-config@3.7.1(eslint@8.57.1)(typescript@5.6.3)': dependencies: '@rushstack/eslint-patch': 1.10.4 - '@rushstack/eslint-plugin': 0.15.2(eslint@8.57.1)(typescript@5.7.2) - '@rushstack/eslint-plugin-packlets': 0.9.2(eslint@8.57.1)(typescript@5.7.2) - '@rushstack/eslint-plugin-security': 0.8.2(eslint@8.57.1)(typescript@5.7.2) - '@typescript-eslint/eslint-plugin': 6.19.1(@typescript-eslint/parser@6.19.1(eslint@8.57.1)(typescript@5.7.2))(eslint@8.57.1)(typescript@5.7.2) - '@typescript-eslint/parser': 6.19.1(eslint@8.57.1)(typescript@5.7.2) - '@typescript-eslint/typescript-estree': 6.19.1(typescript@5.7.2) - '@typescript-eslint/utils': 6.19.1(eslint@8.57.1)(typescript@5.7.2) + '@rushstack/eslint-plugin': 0.15.2(eslint@8.57.1)(typescript@5.6.3) + '@rushstack/eslint-plugin-packlets': 0.9.2(eslint@8.57.1)(typescript@5.6.3) + '@rushstack/eslint-plugin-security': 0.8.2(eslint@8.57.1)(typescript@5.6.3) + '@typescript-eslint/eslint-plugin': 6.19.1(@typescript-eslint/parser@6.19.1(eslint@8.57.1)(typescript@5.6.3))(eslint@8.57.1)(typescript@5.6.3) + '@typescript-eslint/parser': 6.19.1(eslint@8.57.1)(typescript@5.6.3) + '@typescript-eslint/typescript-estree': 6.19.1(typescript@5.6.3) + '@typescript-eslint/utils': 6.19.1(eslint@8.57.1)(typescript@5.6.3) eslint: 8.57.1 eslint-plugin-promise: 6.1.1(eslint@8.57.1) eslint-plugin-react: 7.33.2(eslint@8.57.1) eslint-plugin-tsdoc: 0.3.0 - typescript: 5.7.2 + typescript: 5.6.3 transitivePeerDependencies: - supports-color '@rushstack/eslint-patch@1.10.4': {} - '@rushstack/eslint-plugin-packlets@0.9.2(eslint@8.56.0)(typescript@5.7.2)': + '@rushstack/eslint-plugin-packlets@0.9.2(eslint@8.56.0)(typescript@5.6.3)': dependencies: '@rushstack/tree-pattern': 0.3.4 - '@typescript-eslint/utils': 6.19.1(eslint@8.56.0)(typescript@5.7.2) + '@typescript-eslint/utils': 6.19.1(eslint@8.56.0)(typescript@5.6.3) eslint: 8.56.0 transitivePeerDependencies: - supports-color @@ -10568,19 +10512,19 @@ snapshots: - supports-color - typescript - '@rushstack/eslint-plugin-packlets@0.9.2(eslint@8.57.1)(typescript@5.7.2)': + '@rushstack/eslint-plugin-packlets@0.9.2(eslint@8.57.1)(typescript@5.6.3)': dependencies: '@rushstack/tree-pattern': 0.3.4 - '@typescript-eslint/utils': 6.19.1(eslint@8.57.1)(typescript@5.7.2) + '@typescript-eslint/utils': 6.19.1(eslint@8.57.1)(typescript@5.6.3) eslint: 8.57.1 transitivePeerDependencies: - supports-color - typescript - '@rushstack/eslint-plugin-security@0.8.2(eslint@8.56.0)(typescript@5.7.2)': + '@rushstack/eslint-plugin-security@0.8.2(eslint@8.56.0)(typescript@5.6.3)': dependencies: '@rushstack/tree-pattern': 0.3.4 - '@typescript-eslint/utils': 6.19.1(eslint@8.56.0)(typescript@5.7.2) + '@typescript-eslint/utils': 6.19.1(eslint@8.56.0)(typescript@5.6.3) eslint: 8.56.0 transitivePeerDependencies: - supports-color @@ -10595,19 +10539,19 @@ snapshots: - supports-color - typescript - '@rushstack/eslint-plugin-security@0.8.2(eslint@8.57.1)(typescript@5.7.2)': + '@rushstack/eslint-plugin-security@0.8.2(eslint@8.57.1)(typescript@5.6.3)': dependencies: '@rushstack/tree-pattern': 0.3.4 - '@typescript-eslint/utils': 6.19.1(eslint@8.57.1)(typescript@5.7.2) + '@typescript-eslint/utils': 6.19.1(eslint@8.57.1)(typescript@5.6.3) eslint: 8.57.1 transitivePeerDependencies: - supports-color - typescript - '@rushstack/eslint-plugin@0.15.2(eslint@8.56.0)(typescript@5.7.2)': + '@rushstack/eslint-plugin@0.15.2(eslint@8.56.0)(typescript@5.6.3)': dependencies: '@rushstack/tree-pattern': 0.3.4 - '@typescript-eslint/utils': 6.19.1(eslint@8.56.0)(typescript@5.7.2) + '@typescript-eslint/utils': 6.19.1(eslint@8.56.0)(typescript@5.6.3) eslint: 8.56.0 transitivePeerDependencies: - supports-color @@ -10622,16 +10566,16 @@ snapshots: - supports-color - typescript - '@rushstack/eslint-plugin@0.15.2(eslint@8.57.1)(typescript@5.7.2)': + '@rushstack/eslint-plugin@0.15.2(eslint@8.57.1)(typescript@5.6.3)': dependencies: '@rushstack/tree-pattern': 0.3.4 - '@typescript-eslint/utils': 6.19.1(eslint@8.57.1)(typescript@5.7.2) + '@typescript-eslint/utils': 6.19.1(eslint@8.57.1)(typescript@5.6.3) eslint: 8.57.1 transitivePeerDependencies: - supports-color - typescript - '@rushstack/node-core-library@5.9.0(@types/node@22.10.2)': + '@rushstack/node-core-library@5.9.0(@types/node@22.9.0)': dependencies: ajv: 8.13.0 ajv-draft-04: 1.0.0(ajv@8.13.0) @@ -10642,25 +10586,25 @@ snapshots: resolve: 1.22.8 semver: 7.5.4 optionalDependencies: - '@types/node': 22.10.2 + '@types/node': 22.9.0 '@rushstack/rig-package@0.5.3': dependencies: resolve: 1.22.8 strip-json-comments: 3.1.1 - '@rushstack/terminal@0.14.2(@types/node@22.10.2)': + '@rushstack/terminal@0.14.2(@types/node@22.9.0)': dependencies: - '@rushstack/node-core-library': 5.9.0(@types/node@22.10.2) + '@rushstack/node-core-library': 5.9.0(@types/node@22.9.0) supports-color: 8.1.1 optionalDependencies: - '@types/node': 22.10.2 + '@types/node': 22.9.0 '@rushstack/tree-pattern@0.3.4': {} - '@rushstack/ts-command-line@4.23.0(@types/node@22.10.2)': + '@rushstack/ts-command-line@4.23.0(@types/node@22.9.0)': dependencies: - '@rushstack/terminal': 0.14.2(@types/node@22.10.2) + '@rushstack/terminal': 0.14.2(@types/node@22.9.0) '@types/argparse': 1.0.38 argparse: 1.0.10 string-argv: 0.3.2 @@ -10779,34 +10723,34 @@ snapshots: react: 18.3.1 react-dom: 18.3.1(react@18.3.1) - '@storybook/builder-webpack5@8.3.6(@swc/core@1.7.39(@swc/helpers@0.5.15))(esbuild@0.23.1)(storybook@8.3.6)(typescript@5.6.3)': + '@storybook/builder-webpack5@8.3.6(@swc/core@1.7.39(@swc/helpers@0.5.13))(esbuild@0.23.1)(storybook@8.3.6)(typescript@5.6.3)': dependencies: '@storybook/core-webpack': 8.3.6(storybook@8.3.6) - '@types/node': 22.9.0 + '@types/node': 22.7.9 '@types/semver': 7.5.8 browser-assert: 1.2.1 case-sensitive-paths-webpack-plugin: 2.4.0 cjs-module-lexer: 1.3.1 constants-browserify: 1.0.0 - css-loader: 6.11.0(webpack@5.91.0(@swc/core@1.7.39(@swc/helpers@0.5.15))(esbuild@0.23.1)) + css-loader: 6.11.0(webpack@5.91.0(@swc/core@1.7.39(@swc/helpers@0.5.13))(esbuild@0.23.1)) es-module-lexer: 1.5.2 express: 4.21.1 - fork-ts-checker-webpack-plugin: 8.0.0(typescript@5.6.3)(webpack@5.91.0(@swc/core@1.7.39(@swc/helpers@0.5.15))(esbuild@0.23.1)) + fork-ts-checker-webpack-plugin: 8.0.0(typescript@5.6.3)(webpack@5.91.0(@swc/core@1.7.39(@swc/helpers@0.5.13))(esbuild@0.23.1)) fs-extra: 11.2.0 - html-webpack-plugin: 5.6.0(webpack@5.91.0(@swc/core@1.7.39(@swc/helpers@0.5.15))(esbuild@0.23.1)) + html-webpack-plugin: 5.6.0(webpack@5.91.0(@swc/core@1.7.39(@swc/helpers@0.5.13))(esbuild@0.23.1)) magic-string: 0.30.12 path-browserify: 1.0.1 process: 0.11.10 semver: 7.6.3 storybook: 8.3.6 - style-loader: 3.3.4(webpack@5.91.0(@swc/core@1.7.39(@swc/helpers@0.5.15))(esbuild@0.23.1)) - terser-webpack-plugin: 5.3.10(@swc/core@1.7.39(@swc/helpers@0.5.15))(esbuild@0.23.1)(webpack@5.91.0(@swc/core@1.7.39(@swc/helpers@0.5.15))(esbuild@0.23.1)) + style-loader: 3.3.4(webpack@5.91.0(@swc/core@1.7.39(@swc/helpers@0.5.13))(esbuild@0.23.1)) + terser-webpack-plugin: 5.3.10(@swc/core@1.7.39(@swc/helpers@0.5.13))(esbuild@0.23.1)(webpack@5.91.0(@swc/core@1.7.39(@swc/helpers@0.5.13))(esbuild@0.23.1)) ts-dedent: 2.2.0 url: 0.11.3 util: 0.12.5 util-deprecate: 1.0.2 - webpack: 5.91.0(@swc/core@1.7.39(@swc/helpers@0.5.15))(esbuild@0.23.1) - webpack-dev-middleware: 6.1.3(webpack@5.91.0(@swc/core@1.7.39(@swc/helpers@0.5.15))(esbuild@0.23.1)) + webpack: 5.91.0(@swc/core@1.7.39(@swc/helpers@0.5.13))(esbuild@0.23.1) + webpack-dev-middleware: 6.1.3(webpack@5.91.0(@swc/core@1.7.39(@swc/helpers@0.5.13))(esbuild@0.23.1)) webpack-hot-middleware: 2.26.1 webpack-virtual-modules: 0.6.1 optionalDependencies: @@ -10825,7 +10769,7 @@ snapshots: '@storybook/core-webpack@8.3.6(storybook@8.3.6)': dependencies: - '@types/node': 22.9.0 + '@types/node': 22.7.9 storybook: 8.3.6 ts-dedent: 2.2.0 @@ -10872,7 +10816,7 @@ snapshots: '@storybook/instrumenter@8.3.6(storybook@8.3.6)': dependencies: '@storybook/global': 5.0.0 - '@vitest/utils': 2.1.8 + '@vitest/utils': 2.1.4 storybook: 8.3.6 util: 0.12.5 @@ -10880,7 +10824,7 @@ snapshots: dependencies: storybook: 8.3.6 - '@storybook/nextjs@8.3.6(@swc/core@1.7.39(@swc/helpers@0.5.15))(esbuild@0.23.1)(next@15.1.0(@babel/core@7.25.9)(@playwright/test@1.49.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.80.3))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.80.3)(storybook@8.3.6)(type-fest@3.13.1)(typescript@5.6.3)(webpack-hot-middleware@2.26.1)(webpack@5.91.0(@swc/core@1.7.39(@swc/helpers@0.5.15))(esbuild@0.23.1))': + '@storybook/nextjs@8.3.6(@swc/core@1.7.39(@swc/helpers@0.5.13))(esbuild@0.23.1)(next@15.0.3(@babel/core@7.25.9)(@playwright/test@1.48.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.80.3))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.80.3)(storybook@8.3.6)(type-fest@3.13.1)(typescript@5.6.3)(webpack-hot-middleware@2.26.1)(webpack@5.91.0(@swc/core@1.7.39(@swc/helpers@0.5.13))(esbuild@0.23.1))': dependencies: '@babel/core': 7.25.9 '@babel/plugin-syntax-bigint': 7.8.3(@babel/core@7.25.9) @@ -10895,32 +10839,32 @@ snapshots: '@babel/preset-react': 7.24.1(@babel/core@7.25.9) '@babel/preset-typescript': 7.24.1(@babel/core@7.25.9) '@babel/runtime': 7.25.9 - '@pmmmwh/react-refresh-webpack-plugin': 0.5.13(react-refresh@0.14.2)(type-fest@3.13.1)(webpack-hot-middleware@2.26.1)(webpack@5.91.0(@swc/core@1.7.39(@swc/helpers@0.5.15))(esbuild@0.23.1)) - '@storybook/builder-webpack5': 8.3.6(@swc/core@1.7.39(@swc/helpers@0.5.15))(esbuild@0.23.1)(storybook@8.3.6)(typescript@5.6.3) - '@storybook/preset-react-webpack': 8.3.6(@storybook/test@8.3.6(storybook@8.3.6))(@swc/core@1.7.39(@swc/helpers@0.5.15))(esbuild@0.23.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(storybook@8.3.6)(typescript@5.6.3) + '@pmmmwh/react-refresh-webpack-plugin': 0.5.13(react-refresh@0.14.2)(type-fest@3.13.1)(webpack-hot-middleware@2.26.1)(webpack@5.91.0(@swc/core@1.7.39(@swc/helpers@0.5.13))(esbuild@0.23.1)) + '@storybook/builder-webpack5': 8.3.6(@swc/core@1.7.39(@swc/helpers@0.5.13))(esbuild@0.23.1)(storybook@8.3.6)(typescript@5.6.3) + '@storybook/preset-react-webpack': 8.3.6(@storybook/test@8.3.6(storybook@8.3.6))(@swc/core@1.7.39(@swc/helpers@0.5.13))(esbuild@0.23.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(storybook@8.3.6)(typescript@5.6.3) '@storybook/react': 8.3.6(@storybook/test@8.3.6(storybook@8.3.6))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(storybook@8.3.6)(typescript@5.6.3) '@storybook/test': 8.3.6(storybook@8.3.6) - '@types/node': 22.9.0 + '@types/node': 22.7.9 '@types/semver': 7.5.8 - babel-loader: 9.1.3(@babel/core@7.25.9)(webpack@5.91.0(@swc/core@1.7.39(@swc/helpers@0.5.15))(esbuild@0.23.1)) - css-loader: 6.11.0(webpack@5.91.0(@swc/core@1.7.39(@swc/helpers@0.5.15))(esbuild@0.23.1)) + babel-loader: 9.1.3(@babel/core@7.25.9)(webpack@5.91.0(@swc/core@1.7.39(@swc/helpers@0.5.13))(esbuild@0.23.1)) + css-loader: 6.11.0(webpack@5.91.0(@swc/core@1.7.39(@swc/helpers@0.5.13))(esbuild@0.23.1)) find-up: 5.0.0 fs-extra: 11.2.0 image-size: 1.1.1 loader-utils: 3.2.1 - next: 15.1.0(@babel/core@7.25.9)(@playwright/test@1.49.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.80.3) - node-polyfill-webpack-plugin: 2.0.1(webpack@5.91.0(@swc/core@1.7.39(@swc/helpers@0.5.15))(esbuild@0.23.1)) + next: 15.0.3(@babel/core@7.25.9)(@playwright/test@1.48.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.80.3) + node-polyfill-webpack-plugin: 2.0.1(webpack@5.91.0(@swc/core@1.7.39(@swc/helpers@0.5.13))(esbuild@0.23.1)) pnp-webpack-plugin: 1.7.0(typescript@5.6.3) postcss: 8.4.47 - postcss-loader: 8.1.1(postcss@8.4.47)(typescript@5.6.3)(webpack@5.91.0(@swc/core@1.7.39(@swc/helpers@0.5.15))(esbuild@0.23.1)) + postcss-loader: 8.1.1(postcss@8.4.47)(typescript@5.6.3)(webpack@5.91.0(@swc/core@1.7.39(@swc/helpers@0.5.13))(esbuild@0.23.1)) react: 18.3.1 react-dom: 18.3.1(react@18.3.1) react-refresh: 0.14.2 resolve-url-loader: 5.0.0 - sass-loader: 13.3.3(sass@1.80.3)(webpack@5.91.0(@swc/core@1.7.39(@swc/helpers@0.5.15))(esbuild@0.23.1)) + sass-loader: 13.3.3(sass@1.80.3)(webpack@5.91.0(@swc/core@1.7.39(@swc/helpers@0.5.13))(esbuild@0.23.1)) semver: 7.6.3 storybook: 8.3.6 - style-loader: 3.3.4(webpack@5.91.0(@swc/core@1.7.39(@swc/helpers@0.5.15))(esbuild@0.23.1)) + style-loader: 3.3.4(webpack@5.91.0(@swc/core@1.7.39(@swc/helpers@0.5.13))(esbuild@0.23.1)) styled-jsx: 5.1.6(@babel/core@7.25.9)(react@18.3.1) ts-dedent: 2.2.0 tsconfig-paths: 4.2.0 @@ -10928,7 +10872,7 @@ snapshots: optionalDependencies: sharp: 0.33.5 typescript: 5.6.3 - webpack: 5.91.0(@swc/core@1.7.39(@swc/helpers@0.5.15))(esbuild@0.23.1) + webpack: 5.91.0(@swc/core@1.7.39(@swc/helpers@0.5.13))(esbuild@0.23.1) transitivePeerDependencies: - '@rspack/core' - '@swc/core' @@ -10948,12 +10892,12 @@ snapshots: - webpack-hot-middleware - webpack-plugin-serve - '@storybook/preset-react-webpack@8.3.6(@storybook/test@8.3.6(storybook@8.3.6))(@swc/core@1.7.39(@swc/helpers@0.5.15))(esbuild@0.23.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(storybook@8.3.6)(typescript@5.6.3)': + '@storybook/preset-react-webpack@8.3.6(@storybook/test@8.3.6(storybook@8.3.6))(@swc/core@1.7.39(@swc/helpers@0.5.13))(esbuild@0.23.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(storybook@8.3.6)(typescript@5.6.3)': dependencies: '@storybook/core-webpack': 8.3.6(storybook@8.3.6) '@storybook/react': 8.3.6(@storybook/test@8.3.6(storybook@8.3.6))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(storybook@8.3.6)(typescript@5.6.3) - '@storybook/react-docgen-typescript-plugin': 1.0.6--canary.9.0c3f3b7.0(typescript@5.6.3)(webpack@5.91.0(@swc/core@1.7.39(@swc/helpers@0.5.15))(esbuild@0.23.1)) - '@types/node': 22.9.0 + '@storybook/react-docgen-typescript-plugin': 1.0.6--canary.9.0c3f3b7.0(typescript@5.6.3)(webpack@5.91.0(@swc/core@1.7.39(@swc/helpers@0.5.13))(esbuild@0.23.1)) + '@types/node': 22.7.9 '@types/semver': 7.5.8 find-up: 5.0.0 fs-extra: 11.2.0 @@ -10965,7 +10909,7 @@ snapshots: semver: 7.6.3 storybook: 8.3.6 tsconfig-paths: 4.2.0 - webpack: 5.91.0(@swc/core@1.7.39(@swc/helpers@0.5.15))(esbuild@0.23.1) + webpack: 5.91.0(@swc/core@1.7.39(@swc/helpers@0.5.13))(esbuild@0.23.1) optionalDependencies: typescript: 5.6.3 transitivePeerDependencies: @@ -10980,7 +10924,7 @@ snapshots: dependencies: storybook: 8.3.6 - '@storybook/react-docgen-typescript-plugin@1.0.6--canary.9.0c3f3b7.0(typescript@5.6.3)(webpack@5.91.0(@swc/core@1.7.39(@swc/helpers@0.5.15))(esbuild@0.23.1))': + '@storybook/react-docgen-typescript-plugin@1.0.6--canary.9.0c3f3b7.0(typescript@5.6.3)(webpack@5.91.0(@swc/core@1.7.39(@swc/helpers@0.5.13))(esbuild@0.23.1))': dependencies: debug: 4.3.7 endent: 2.1.0 @@ -10990,7 +10934,7 @@ snapshots: react-docgen-typescript: 2.2.2(typescript@5.6.3) tslib: 2.8.0 typescript: 5.6.3 - webpack: 5.91.0(@swc/core@1.7.39(@swc/helpers@0.5.15))(esbuild@0.23.1) + webpack: 5.91.0(@swc/core@1.7.39(@swc/helpers@0.5.13))(esbuild@0.23.1) transitivePeerDependencies: - supports-color @@ -11010,7 +10954,7 @@ snapshots: '@storybook/theming': 8.3.6(storybook@8.3.6) '@types/escodegen': 0.0.6 '@types/estree': 0.0.51 - '@types/node': 22.9.0 + '@types/node': 22.7.9 acorn: 7.4.1 acorn-jsx: 5.3.2(acorn@7.4.1) acorn-walk: 7.2.0 @@ -11076,7 +11020,7 @@ snapshots: '@swc/core-win32-x64-msvc@1.7.39': optional: true - '@swc/core@1.7.39(@swc/helpers@0.5.15)': + '@swc/core@1.7.39(@swc/helpers@0.5.13)': dependencies: '@swc/counter': 0.1.3 '@swc/types': 0.1.13 @@ -11091,11 +11035,11 @@ snapshots: '@swc/core-win32-arm64-msvc': 1.7.39 '@swc/core-win32-ia32-msvc': 1.7.39 '@swc/core-win32-x64-msvc': 1.7.39 - '@swc/helpers': 0.5.15 + '@swc/helpers': 0.5.13 '@swc/counter@0.1.3': {} - '@swc/helpers@0.5.15': + '@swc/helpers@0.5.13': dependencies: tslib: 2.8.0 @@ -11103,9 +11047,9 @@ snapshots: dependencies: '@swc/counter': 0.1.3 - '@tanstack/eslint-plugin-query@5.59.7(eslint@8.56.0)(typescript@5.7.2)': + '@tanstack/eslint-plugin-query@5.59.7(eslint@8.56.0)(typescript@5.6.3)': dependencies: - '@typescript-eslint/utils': 8.11.0(eslint@8.56.0)(typescript@5.7.2) + '@typescript-eslint/utils': 8.11.0(eslint@8.56.0)(typescript@5.6.3) eslint: 8.56.0 transitivePeerDependencies: - supports-color @@ -11119,24 +11063,24 @@ snapshots: - supports-color - typescript - '@tanstack/eslint-plugin-query@5.59.7(eslint@8.57.1)(typescript@5.7.2)': + '@tanstack/eslint-plugin-query@5.59.7(eslint@8.57.1)(typescript@5.6.3)': dependencies: - '@typescript-eslint/utils': 8.11.0(eslint@8.57.1)(typescript@5.7.2) + '@typescript-eslint/utils': 8.11.0(eslint@8.57.1)(typescript@5.6.3) eslint: 8.57.1 transitivePeerDependencies: - supports-color - typescript - '@tanstack/query-core@5.62.7': {} + '@tanstack/query-core@5.59.20': {} - '@tanstack/react-query@5.62.7(react@19.0.0)': + '@tanstack/react-query@5.59.20(react@18.3.1)': dependencies: - '@tanstack/query-core': 5.62.7 - react: 19.0.0 + '@tanstack/query-core': 5.59.20 + react: 18.3.1 '@testing-library/dom@10.4.0': dependencies: - '@babel/code-frame': 7.26.2 + '@babel/code-frame': 7.25.9 '@babel/runtime': 7.25.9 '@types/aria-query': 5.0.4 aria-query: 5.3.0 @@ -11165,15 +11109,15 @@ snapshots: lodash: 4.17.21 redent: 3.0.0 - '@testing-library/react@16.1.0(@testing-library/dom@10.4.0)(@types/react-dom@19.0.2(@types/react@19.0.1))(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': + '@testing-library/react@16.0.1(@testing-library/dom@10.4.0)(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: '@babel/runtime': 7.25.9 '@testing-library/dom': 10.4.0 - react: 19.0.0 - react-dom: 19.0.0(react@19.0.0) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) optionalDependencies: - '@types/react': 19.0.1 - '@types/react-dom': 19.0.2(@types/react@19.0.1) + '@types/react': 18.3.12 + '@types/react-dom': 18.3.1 '@testing-library/user-event@14.5.2(@testing-library/dom@10.4.0)': dependencies: @@ -11193,39 +11137,39 @@ snapshots: '@types/babel__core@7.20.5': dependencies: - '@babel/parser': 7.26.3 - '@babel/types': 7.26.3 + '@babel/parser': 7.25.9 + '@babel/types': 7.25.9 '@types/babel__generator': 7.6.8 '@types/babel__template': 7.4.4 '@types/babel__traverse': 7.20.6 '@types/babel__generator@7.6.8': dependencies: - '@babel/types': 7.26.3 + '@babel/types': 7.25.9 '@types/babel__template@7.4.4': dependencies: - '@babel/parser': 7.26.3 - '@babel/types': 7.26.3 + '@babel/parser': 7.25.9 + '@babel/types': 7.25.9 '@types/babel__traverse@7.20.6': dependencies: - '@babel/types': 7.26.3 + '@babel/types': 7.25.9 '@types/backstopjs@6.1.3': {} '@types/body-parser@1.19.2': dependencies: '@types/connect': 3.4.36 - '@types/node': 22.9.0 + '@types/node': 22.7.9 '@types/concat-stream@2.0.3': dependencies: - '@types/node': 22.10.2 + '@types/node': 22.9.0 '@types/connect@3.4.36': dependencies: - '@types/node': 22.9.0 + '@types/node': 22.7.9 '@types/debug@4.1.12': dependencies: @@ -11255,7 +11199,7 @@ snapshots: '@types/express-serve-static-core@4.17.36': dependencies: - '@types/node': 22.9.0 + '@types/node': 22.7.9 '@types/qs': 6.9.7 '@types/range-parser': 1.2.4 '@types/send': 0.17.1 @@ -11305,9 +11249,9 @@ snapshots: dependencies: undici-types: 6.19.8 - '@types/node@22.10.2': + '@types/node@22.7.9': dependencies: - undici-types: 6.20.0 + undici-types: 6.19.8 '@types/node@22.9.0': dependencies: @@ -11329,9 +11273,9 @@ snapshots: dependencies: '@types/react': 18.3.12 - '@types/react-dom@19.0.2(@types/react@19.0.1)': + '@types/react-dom@18.3.1': dependencies: - '@types/react': 19.0.1 + '@types/react': 18.3.12 '@types/react@18.2.48': dependencies: @@ -11344,10 +11288,6 @@ snapshots: '@types/prop-types': 15.7.13 csstype: 3.1.3 - '@types/react@19.0.1': - dependencies: - csstype: 3.1.3 - '@types/resolve@1.20.6': {} '@types/scheduler@0.16.2': {} @@ -11357,13 +11297,13 @@ snapshots: '@types/send@0.17.1': dependencies: '@types/mime': 1.3.2 - '@types/node': 22.9.0 + '@types/node': 22.7.9 '@types/serve-static@1.15.2': dependencies: '@types/http-errors': 2.0.1 '@types/mime': 3.0.1 - '@types/node': 22.9.0 + '@types/node': 22.7.9 '@types/supports-color@8.1.3': {} @@ -11377,16 +11317,16 @@ snapshots: '@types/yauzl@2.10.3': dependencies: - '@types/node': 22.9.0 + '@types/node': 22.7.9 optional: true - '@typescript-eslint/eslint-plugin@6.19.1(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.7.2))(eslint@8.56.0)(typescript@5.7.2)': + '@typescript-eslint/eslint-plugin@6.19.1(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.6.3))(eslint@8.56.0)(typescript@5.6.3)': dependencies: '@eslint-community/regexpp': 4.11.1 - '@typescript-eslint/parser': 6.19.1(eslint@8.56.0)(typescript@5.7.2) + '@typescript-eslint/parser': 6.19.1(eslint@8.56.0)(typescript@5.6.3) '@typescript-eslint/scope-manager': 6.19.1 - '@typescript-eslint/type-utils': 6.19.1(eslint@8.56.0)(typescript@5.7.2) - '@typescript-eslint/utils': 6.19.1(eslint@8.56.0)(typescript@5.7.2) + '@typescript-eslint/type-utils': 6.19.1(eslint@8.56.0)(typescript@5.6.3) + '@typescript-eslint/utils': 6.19.1(eslint@8.56.0)(typescript@5.6.3) '@typescript-eslint/visitor-keys': 6.19.1 debug: 4.3.7 eslint: 8.56.0 @@ -11394,9 +11334,9 @@ snapshots: ignore: 5.3.2 natural-compare: 1.4.0 semver: 7.6.3 - ts-api-utils: 1.3.0(typescript@5.7.2) + ts-api-utils: 1.3.0(typescript@5.6.3) optionalDependencies: - typescript: 5.7.2 + typescript: 5.6.3 transitivePeerDependencies: - supports-color @@ -11420,13 +11360,13 @@ snapshots: transitivePeerDependencies: - supports-color - '@typescript-eslint/eslint-plugin@6.19.1(@typescript-eslint/parser@6.19.1(eslint@8.57.1)(typescript@5.7.2))(eslint@8.57.1)(typescript@5.7.2)': + '@typescript-eslint/eslint-plugin@6.19.1(@typescript-eslint/parser@6.19.1(eslint@8.57.1)(typescript@5.6.3))(eslint@8.57.1)(typescript@5.6.3)': dependencies: '@eslint-community/regexpp': 4.11.1 - '@typescript-eslint/parser': 6.19.1(eslint@8.57.1)(typescript@5.7.2) + '@typescript-eslint/parser': 6.19.1(eslint@8.57.1)(typescript@5.6.3) '@typescript-eslint/scope-manager': 6.19.1 - '@typescript-eslint/type-utils': 6.19.1(eslint@8.57.1)(typescript@5.7.2) - '@typescript-eslint/utils': 6.19.1(eslint@8.57.1)(typescript@5.7.2) + '@typescript-eslint/type-utils': 6.19.1(eslint@8.57.1)(typescript@5.6.3) + '@typescript-eslint/utils': 6.19.1(eslint@8.57.1)(typescript@5.6.3) '@typescript-eslint/visitor-keys': 6.19.1 debug: 4.3.7 eslint: 8.57.1 @@ -11434,27 +11374,45 @@ snapshots: ignore: 5.3.2 natural-compare: 1.4.0 semver: 7.6.3 - ts-api-utils: 1.3.0(typescript@5.7.2) + ts-api-utils: 1.3.0(typescript@5.6.3) optionalDependencies: - typescript: 5.7.2 + typescript: 5.6.3 transitivePeerDependencies: - supports-color - '@typescript-eslint/eslint-plugin@7.18.0(@typescript-eslint/parser@7.18.0(eslint@8.56.0)(typescript@5.7.2))(eslint@8.56.0)(typescript@5.7.2)': + '@typescript-eslint/eslint-plugin@7.18.0(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.6.3))(eslint@8.56.0)(typescript@5.6.3)': dependencies: '@eslint-community/regexpp': 4.11.1 - '@typescript-eslint/parser': 7.18.0(eslint@8.56.0)(typescript@5.7.2) + '@typescript-eslint/parser': 6.19.1(eslint@8.56.0)(typescript@5.6.3) '@typescript-eslint/scope-manager': 7.18.0 - '@typescript-eslint/type-utils': 7.18.0(eslint@8.56.0)(typescript@5.7.2) - '@typescript-eslint/utils': 7.18.0(eslint@8.56.0)(typescript@5.7.2) + '@typescript-eslint/type-utils': 7.18.0(eslint@8.56.0)(typescript@5.6.3) + '@typescript-eslint/utils': 7.18.0(eslint@8.56.0)(typescript@5.6.3) '@typescript-eslint/visitor-keys': 7.18.0 eslint: 8.56.0 graphemer: 1.4.0 ignore: 5.3.2 natural-compare: 1.4.0 - ts-api-utils: 1.3.0(typescript@5.7.2) + ts-api-utils: 1.3.0(typescript@5.6.3) optionalDependencies: - typescript: 5.7.2 + typescript: 5.6.3 + transitivePeerDependencies: + - supports-color + + '@typescript-eslint/eslint-plugin@7.18.0(@typescript-eslint/parser@7.18.0(eslint@8.56.0)(typescript@5.6.3))(eslint@8.56.0)(typescript@5.6.3)': + dependencies: + '@eslint-community/regexpp': 4.11.1 + '@typescript-eslint/parser': 7.18.0(eslint@8.56.0)(typescript@5.6.3) + '@typescript-eslint/scope-manager': 7.18.0 + '@typescript-eslint/type-utils': 7.18.0(eslint@8.56.0)(typescript@5.6.3) + '@typescript-eslint/utils': 7.18.0(eslint@8.56.0)(typescript@5.6.3) + '@typescript-eslint/visitor-keys': 7.18.0 + eslint: 8.56.0 + graphemer: 1.4.0 + ignore: 5.3.2 + natural-compare: 1.4.0 + ts-api-utils: 1.3.0(typescript@5.6.3) + optionalDependencies: + typescript: 5.6.3 transitivePeerDependencies: - supports-color @@ -11476,34 +11434,34 @@ snapshots: transitivePeerDependencies: - supports-color - '@typescript-eslint/eslint-plugin@7.18.0(@typescript-eslint/parser@7.18.0(eslint@8.57.1)(typescript@5.7.2))(eslint@8.57.1)(typescript@5.7.2)': + '@typescript-eslint/eslint-plugin@7.18.0(@typescript-eslint/parser@7.18.0(eslint@8.57.1)(typescript@5.6.3))(eslint@8.57.1)(typescript@5.6.3)': dependencies: '@eslint-community/regexpp': 4.11.1 - '@typescript-eslint/parser': 7.18.0(eslint@8.57.1)(typescript@5.7.2) + '@typescript-eslint/parser': 7.18.0(eslint@8.57.1)(typescript@5.6.3) '@typescript-eslint/scope-manager': 7.18.0 - '@typescript-eslint/type-utils': 7.18.0(eslint@8.57.1)(typescript@5.7.2) - '@typescript-eslint/utils': 7.18.0(eslint@8.57.1)(typescript@5.7.2) + '@typescript-eslint/type-utils': 7.18.0(eslint@8.57.1)(typescript@5.6.3) + '@typescript-eslint/utils': 7.18.0(eslint@8.57.1)(typescript@5.6.3) '@typescript-eslint/visitor-keys': 7.18.0 eslint: 8.57.1 graphemer: 1.4.0 ignore: 5.3.2 natural-compare: 1.4.0 - ts-api-utils: 1.3.0(typescript@5.7.2) + ts-api-utils: 1.3.0(typescript@5.6.3) optionalDependencies: - typescript: 5.7.2 + typescript: 5.6.3 transitivePeerDependencies: - supports-color - '@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.7.2)': + '@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.6.3)': dependencies: '@typescript-eslint/scope-manager': 6.19.1 '@typescript-eslint/types': 6.19.1 - '@typescript-eslint/typescript-estree': 6.19.1(typescript@5.7.2) + '@typescript-eslint/typescript-estree': 6.19.1(typescript@5.6.3) '@typescript-eslint/visitor-keys': 6.19.1 debug: 4.3.7 eslint: 8.56.0 optionalDependencies: - typescript: 5.7.2 + typescript: 5.6.3 transitivePeerDependencies: - supports-color @@ -11520,29 +11478,29 @@ snapshots: transitivePeerDependencies: - supports-color - '@typescript-eslint/parser@6.19.1(eslint@8.57.1)(typescript@5.7.2)': + '@typescript-eslint/parser@6.19.1(eslint@8.57.1)(typescript@5.6.3)': dependencies: '@typescript-eslint/scope-manager': 6.19.1 '@typescript-eslint/types': 6.19.1 - '@typescript-eslint/typescript-estree': 6.19.1(typescript@5.7.2) + '@typescript-eslint/typescript-estree': 6.19.1(typescript@5.6.3) '@typescript-eslint/visitor-keys': 6.19.1 debug: 4.3.7 eslint: 8.57.1 optionalDependencies: - typescript: 5.7.2 + typescript: 5.6.3 transitivePeerDependencies: - supports-color - '@typescript-eslint/parser@7.18.0(eslint@8.56.0)(typescript@5.7.2)': + '@typescript-eslint/parser@7.18.0(eslint@8.56.0)(typescript@5.6.3)': dependencies: '@typescript-eslint/scope-manager': 7.18.0 '@typescript-eslint/types': 7.18.0 - '@typescript-eslint/typescript-estree': 7.18.0(typescript@5.7.2) + '@typescript-eslint/typescript-estree': 7.18.0(typescript@5.6.3) '@typescript-eslint/visitor-keys': 7.18.0 debug: 4.3.7 eslint: 8.56.0 optionalDependencies: - typescript: 5.7.2 + typescript: 5.6.3 transitivePeerDependencies: - supports-color @@ -11559,16 +11517,16 @@ snapshots: transitivePeerDependencies: - supports-color - '@typescript-eslint/parser@7.18.0(eslint@8.57.1)(typescript@5.7.2)': + '@typescript-eslint/parser@7.18.0(eslint@8.57.1)(typescript@5.6.3)': dependencies: '@typescript-eslint/scope-manager': 7.18.0 '@typescript-eslint/types': 7.18.0 - '@typescript-eslint/typescript-estree': 7.18.0(typescript@5.7.2) + '@typescript-eslint/typescript-estree': 7.18.0(typescript@5.6.3) '@typescript-eslint/visitor-keys': 7.18.0 debug: 4.3.7 eslint: 8.57.1 optionalDependencies: - typescript: 5.7.2 + typescript: 5.6.3 transitivePeerDependencies: - supports-color @@ -11592,15 +11550,15 @@ snapshots: '@typescript-eslint/types': 8.11.0 '@typescript-eslint/visitor-keys': 8.11.0 - '@typescript-eslint/type-utils@6.19.1(eslint@8.56.0)(typescript@5.7.2)': + '@typescript-eslint/type-utils@6.19.1(eslint@8.56.0)(typescript@5.6.3)': dependencies: - '@typescript-eslint/typescript-estree': 6.19.1(typescript@5.7.2) - '@typescript-eslint/utils': 6.19.1(eslint@8.56.0)(typescript@5.7.2) + '@typescript-eslint/typescript-estree': 6.19.1(typescript@5.6.3) + '@typescript-eslint/utils': 6.19.1(eslint@8.56.0)(typescript@5.6.3) debug: 4.3.7 eslint: 8.56.0 - ts-api-utils: 1.3.0(typescript@5.7.2) + ts-api-utils: 1.3.0(typescript@5.6.3) optionalDependencies: - typescript: 5.7.2 + typescript: 5.6.3 transitivePeerDependencies: - supports-color @@ -11616,27 +11574,27 @@ snapshots: transitivePeerDependencies: - supports-color - '@typescript-eslint/type-utils@6.19.1(eslint@8.57.1)(typescript@5.7.2)': + '@typescript-eslint/type-utils@6.19.1(eslint@8.57.1)(typescript@5.6.3)': dependencies: - '@typescript-eslint/typescript-estree': 6.19.1(typescript@5.7.2) - '@typescript-eslint/utils': 6.19.1(eslint@8.57.1)(typescript@5.7.2) + '@typescript-eslint/typescript-estree': 6.19.1(typescript@5.6.3) + '@typescript-eslint/utils': 6.19.1(eslint@8.57.1)(typescript@5.6.3) debug: 4.3.7 eslint: 8.57.1 - ts-api-utils: 1.3.0(typescript@5.7.2) + ts-api-utils: 1.3.0(typescript@5.6.3) optionalDependencies: - typescript: 5.7.2 + typescript: 5.6.3 transitivePeerDependencies: - supports-color - '@typescript-eslint/type-utils@7.18.0(eslint@8.56.0)(typescript@5.7.2)': + '@typescript-eslint/type-utils@7.18.0(eslint@8.56.0)(typescript@5.6.3)': dependencies: - '@typescript-eslint/typescript-estree': 7.18.0(typescript@5.7.2) - '@typescript-eslint/utils': 7.18.0(eslint@8.56.0)(typescript@5.7.2) + '@typescript-eslint/typescript-estree': 7.18.0(typescript@5.6.3) + '@typescript-eslint/utils': 7.18.0(eslint@8.56.0)(typescript@5.6.3) debug: 4.3.7 eslint: 8.56.0 - ts-api-utils: 1.3.0(typescript@5.7.2) + ts-api-utils: 1.3.0(typescript@5.6.3) optionalDependencies: - typescript: 5.7.2 + typescript: 5.6.3 transitivePeerDependencies: - supports-color @@ -11652,15 +11610,15 @@ snapshots: transitivePeerDependencies: - supports-color - '@typescript-eslint/type-utils@7.18.0(eslint@8.57.1)(typescript@5.7.2)': + '@typescript-eslint/type-utils@7.18.0(eslint@8.57.1)(typescript@5.6.3)': dependencies: - '@typescript-eslint/typescript-estree': 7.18.0(typescript@5.7.2) - '@typescript-eslint/utils': 7.18.0(eslint@8.57.1)(typescript@5.7.2) + '@typescript-eslint/typescript-estree': 7.18.0(typescript@5.6.3) + '@typescript-eslint/utils': 7.18.0(eslint@8.57.1)(typescript@5.6.3) debug: 4.3.7 eslint: 8.57.1 - ts-api-utils: 1.3.0(typescript@5.7.2) + ts-api-utils: 1.3.0(typescript@5.6.3) optionalDependencies: - typescript: 5.7.2 + typescript: 5.6.3 transitivePeerDependencies: - supports-color @@ -11686,20 +11644,6 @@ snapshots: transitivePeerDependencies: - supports-color - '@typescript-eslint/typescript-estree@5.62.0(typescript@5.7.2)': - dependencies: - '@typescript-eslint/types': 5.62.0 - '@typescript-eslint/visitor-keys': 5.62.0 - debug: 4.3.7 - globby: 11.1.0 - is-glob: 4.0.3 - semver: 7.6.3 - tsutils: 3.21.0(typescript@5.7.2) - optionalDependencies: - typescript: 5.7.2 - transitivePeerDependencies: - - supports-color - '@typescript-eslint/typescript-estree@6.19.1(typescript@5.6.3)': dependencies: '@typescript-eslint/types': 6.19.1 @@ -11715,21 +11659,6 @@ snapshots: transitivePeerDependencies: - supports-color - '@typescript-eslint/typescript-estree@6.19.1(typescript@5.7.2)': - dependencies: - '@typescript-eslint/types': 6.19.1 - '@typescript-eslint/visitor-keys': 6.19.1 - debug: 4.3.7 - globby: 11.1.0 - is-glob: 4.0.3 - minimatch: 9.0.3 - semver: 7.6.3 - ts-api-utils: 1.3.0(typescript@5.7.2) - optionalDependencies: - typescript: 5.7.2 - transitivePeerDependencies: - - supports-color - '@typescript-eslint/typescript-estree@7.18.0(typescript@5.6.3)': dependencies: '@typescript-eslint/types': 7.18.0 @@ -11745,21 +11674,6 @@ snapshots: transitivePeerDependencies: - supports-color - '@typescript-eslint/typescript-estree@7.18.0(typescript@5.7.2)': - dependencies: - '@typescript-eslint/types': 7.18.0 - '@typescript-eslint/visitor-keys': 7.18.0 - debug: 4.3.7 - globby: 11.1.0 - is-glob: 4.0.3 - minimatch: 9.0.5 - semver: 7.6.3 - ts-api-utils: 1.3.0(typescript@5.7.2) - optionalDependencies: - typescript: 5.7.2 - transitivePeerDependencies: - - supports-color - '@typescript-eslint/typescript-estree@8.11.0(typescript@5.6.3)': dependencies: '@typescript-eslint/types': 8.11.0 @@ -11775,29 +11689,14 @@ snapshots: transitivePeerDependencies: - supports-color - '@typescript-eslint/typescript-estree@8.11.0(typescript@5.7.2)': - dependencies: - '@typescript-eslint/types': 8.11.0 - '@typescript-eslint/visitor-keys': 8.11.0 - debug: 4.3.7 - fast-glob: 3.3.2 - is-glob: 4.0.3 - minimatch: 9.0.5 - semver: 7.6.3 - ts-api-utils: 1.3.0(typescript@5.7.2) - optionalDependencies: - typescript: 5.7.2 - transitivePeerDependencies: - - supports-color - - '@typescript-eslint/utils@5.62.0(eslint@8.56.0)(typescript@5.7.2)': + '@typescript-eslint/utils@5.62.0(eslint@8.56.0)(typescript@5.6.3)': dependencies: '@eslint-community/eslint-utils': 4.4.0(eslint@8.56.0) '@types/json-schema': 7.0.15 '@types/semver': 7.5.8 '@typescript-eslint/scope-manager': 5.62.0 '@typescript-eslint/types': 5.62.0 - '@typescript-eslint/typescript-estree': 5.62.0(typescript@5.7.2) + '@typescript-eslint/typescript-estree': 5.62.0(typescript@5.6.3) eslint: 8.56.0 eslint-scope: 5.1.1 semver: 7.6.3 @@ -11820,14 +11719,14 @@ snapshots: - supports-color - typescript - '@typescript-eslint/utils@5.62.0(eslint@8.57.1)(typescript@5.7.2)': + '@typescript-eslint/utils@5.62.0(eslint@8.57.1)(typescript@5.6.3)': dependencies: '@eslint-community/eslint-utils': 4.4.0(eslint@8.57.1) '@types/json-schema': 7.0.15 '@types/semver': 7.5.8 '@typescript-eslint/scope-manager': 5.62.0 '@typescript-eslint/types': 5.62.0 - '@typescript-eslint/typescript-estree': 5.62.0(typescript@5.7.2) + '@typescript-eslint/typescript-estree': 5.62.0(typescript@5.6.3) eslint: 8.57.1 eslint-scope: 5.1.1 semver: 7.6.3 @@ -11835,14 +11734,14 @@ snapshots: - supports-color - typescript - '@typescript-eslint/utils@6.19.1(eslint@8.56.0)(typescript@5.7.2)': + '@typescript-eslint/utils@6.19.1(eslint@8.56.0)(typescript@5.6.3)': dependencies: '@eslint-community/eslint-utils': 4.4.0(eslint@8.56.0) '@types/json-schema': 7.0.15 '@types/semver': 7.5.8 '@typescript-eslint/scope-manager': 6.19.1 '@typescript-eslint/types': 6.19.1 - '@typescript-eslint/typescript-estree': 6.19.1(typescript@5.7.2) + '@typescript-eslint/typescript-estree': 6.19.1(typescript@5.6.3) eslint: 8.56.0 semver: 7.6.3 transitivePeerDependencies: @@ -11863,26 +11762,26 @@ snapshots: - supports-color - typescript - '@typescript-eslint/utils@6.19.1(eslint@8.57.1)(typescript@5.7.2)': + '@typescript-eslint/utils@6.19.1(eslint@8.57.1)(typescript@5.6.3)': dependencies: '@eslint-community/eslint-utils': 4.4.0(eslint@8.57.1) '@types/json-schema': 7.0.15 '@types/semver': 7.5.8 '@typescript-eslint/scope-manager': 6.19.1 '@typescript-eslint/types': 6.19.1 - '@typescript-eslint/typescript-estree': 6.19.1(typescript@5.7.2) + '@typescript-eslint/typescript-estree': 6.19.1(typescript@5.6.3) eslint: 8.57.1 semver: 7.6.3 transitivePeerDependencies: - supports-color - typescript - '@typescript-eslint/utils@7.18.0(eslint@8.56.0)(typescript@5.7.2)': + '@typescript-eslint/utils@7.18.0(eslint@8.56.0)(typescript@5.6.3)': dependencies: '@eslint-community/eslint-utils': 4.4.0(eslint@8.56.0) '@typescript-eslint/scope-manager': 7.18.0 '@typescript-eslint/types': 7.18.0 - '@typescript-eslint/typescript-estree': 7.18.0(typescript@5.7.2) + '@typescript-eslint/typescript-estree': 7.18.0(typescript@5.6.3) eslint: 8.56.0 transitivePeerDependencies: - supports-color @@ -11899,23 +11798,23 @@ snapshots: - supports-color - typescript - '@typescript-eslint/utils@7.18.0(eslint@8.57.1)(typescript@5.7.2)': + '@typescript-eslint/utils@7.18.0(eslint@8.57.1)(typescript@5.6.3)': dependencies: '@eslint-community/eslint-utils': 4.4.0(eslint@8.57.1) '@typescript-eslint/scope-manager': 7.18.0 '@typescript-eslint/types': 7.18.0 - '@typescript-eslint/typescript-estree': 7.18.0(typescript@5.7.2) + '@typescript-eslint/typescript-estree': 7.18.0(typescript@5.6.3) eslint: 8.57.1 transitivePeerDependencies: - supports-color - typescript - '@typescript-eslint/utils@8.11.0(eslint@8.56.0)(typescript@5.7.2)': + '@typescript-eslint/utils@8.11.0(eslint@8.56.0)(typescript@5.6.3)': dependencies: '@eslint-community/eslint-utils': 4.4.0(eslint@8.56.0) '@typescript-eslint/scope-manager': 8.11.0 '@typescript-eslint/types': 8.11.0 - '@typescript-eslint/typescript-estree': 8.11.0(typescript@5.7.2) + '@typescript-eslint/typescript-estree': 8.11.0(typescript@5.6.3) eslint: 8.56.0 transitivePeerDependencies: - supports-color @@ -11932,12 +11831,12 @@ snapshots: - supports-color - typescript - '@typescript-eslint/utils@8.11.0(eslint@8.57.1)(typescript@5.7.2)': + '@typescript-eslint/utils@8.11.0(eslint@8.57.1)(typescript@5.6.3)': dependencies: '@eslint-community/eslint-utils': 4.4.0(eslint@8.57.1) '@typescript-eslint/scope-manager': 8.11.0 '@typescript-eslint/types': 8.11.0 - '@typescript-eslint/typescript-estree': 8.11.0(typescript@5.7.2) + '@typescript-eslint/typescript-estree': 8.11.0(typescript@5.6.3) eslint: 8.57.1 transitivePeerDependencies: - supports-color @@ -11965,33 +11864,33 @@ snapshots: '@ungap/structured-clone@1.2.0': {} - '@vercel/style-guide@6.0.0(@next/eslint-plugin-next@14.2.16)(eslint@8.56.0)(prettier@3.3.3)(typescript@5.7.2)': + '@vercel/style-guide@6.0.0(@next/eslint-plugin-next@14.2.16)(eslint@8.56.0)(prettier@3.3.3)(typescript@5.6.3)': dependencies: - '@babel/core': 7.26.0 - '@babel/eslint-parser': 7.25.9(@babel/core@7.26.0)(eslint@8.56.0) + '@babel/core': 7.25.9 + '@babel/eslint-parser': 7.25.9(@babel/core@7.25.9)(eslint@8.56.0) '@rushstack/eslint-patch': 1.10.4 - '@typescript-eslint/eslint-plugin': 7.18.0(@typescript-eslint/parser@7.18.0(eslint@8.56.0)(typescript@5.7.2))(eslint@8.56.0)(typescript@5.7.2) - '@typescript-eslint/parser': 7.18.0(eslint@8.56.0)(typescript@5.7.2) + '@typescript-eslint/eslint-plugin': 7.18.0(@typescript-eslint/parser@7.18.0(eslint@8.56.0)(typescript@5.6.3))(eslint@8.56.0)(typescript@5.6.3) + '@typescript-eslint/parser': 7.18.0(eslint@8.56.0)(typescript@5.6.3) eslint-config-prettier: 9.1.0(eslint@8.56.0) eslint-import-resolver-alias: 1.1.2(eslint-plugin-import@2.31.0) - eslint-import-resolver-typescript: 3.6.3(@typescript-eslint/parser@7.18.0(eslint@8.56.0)(typescript@5.7.2))(eslint-plugin-import@2.31.0)(eslint@8.56.0) + eslint-import-resolver-typescript: 3.6.3(@typescript-eslint/parser@7.18.0(eslint@8.56.0)(typescript@5.6.3))(eslint-plugin-import@2.31.0)(eslint@8.56.0) eslint-plugin-eslint-comments: 3.2.0(eslint@8.56.0) - eslint-plugin-import: 2.31.0(@typescript-eslint/parser@7.18.0(eslint@8.56.0)(typescript@5.7.2))(eslint-import-resolver-typescript@3.6.3)(eslint@8.56.0) - eslint-plugin-jest: 27.9.0(@typescript-eslint/eslint-plugin@7.18.0(@typescript-eslint/parser@7.18.0(eslint@8.56.0)(typescript@5.7.2))(eslint@8.56.0)(typescript@5.7.2))(eslint@8.56.0)(typescript@5.7.2) + eslint-plugin-import: 2.31.0(@typescript-eslint/parser@7.18.0(eslint@8.56.0)(typescript@5.6.3))(eslint-import-resolver-typescript@3.6.3)(eslint@8.56.0) + eslint-plugin-jest: 27.9.0(@typescript-eslint/eslint-plugin@7.18.0(@typescript-eslint/parser@7.18.0(eslint@8.56.0)(typescript@5.6.3))(eslint@8.56.0)(typescript@5.6.3))(eslint@8.56.0)(typescript@5.6.3) eslint-plugin-jsx-a11y: 6.10.1(eslint@8.56.0) - eslint-plugin-playwright: 1.8.3(eslint-plugin-jest@27.9.0(@typescript-eslint/eslint-plugin@7.18.0(@typescript-eslint/parser@7.18.0(eslint@8.56.0)(typescript@5.7.2))(eslint@8.56.0)(typescript@5.7.2))(eslint@8.56.0)(typescript@5.7.2))(eslint@8.56.0) + eslint-plugin-playwright: 1.8.3(eslint-plugin-jest@27.9.0(@typescript-eslint/eslint-plugin@7.18.0(@typescript-eslint/parser@7.18.0(eslint@8.56.0)(typescript@5.6.3))(eslint@8.56.0)(typescript@5.6.3))(eslint@8.56.0)(typescript@5.6.3))(eslint@8.56.0) eslint-plugin-react: 7.37.2(eslint@8.56.0) eslint-plugin-react-hooks: 4.6.2(eslint@8.56.0) - eslint-plugin-testing-library: 6.4.0(eslint@8.56.0)(typescript@5.7.2) + eslint-plugin-testing-library: 6.4.0(eslint@8.56.0)(typescript@5.6.3) eslint-plugin-tsdoc: 0.2.17 eslint-plugin-unicorn: 51.0.1(eslint@8.56.0) - eslint-plugin-vitest: 0.3.26(@typescript-eslint/eslint-plugin@7.18.0(@typescript-eslint/parser@7.18.0(eslint@8.56.0)(typescript@5.7.2))(eslint@8.56.0)(typescript@5.7.2))(eslint@8.56.0)(typescript@5.7.2)(vitest@2.1.8(@types/node@22.10.2)(jsdom@25.0.1)(sass@1.83.0)(terser@5.31.0)) + eslint-plugin-vitest: 0.3.26(@typescript-eslint/eslint-plugin@7.18.0(@typescript-eslint/parser@7.18.0(eslint@8.56.0)(typescript@5.6.3))(eslint@8.56.0)(typescript@5.6.3))(eslint@8.56.0)(typescript@5.6.3)(vitest@2.1.4(@types/node@22.9.0)(jsdom@25.0.1)(sass@1.80.6)(terser@5.31.0)) prettier-plugin-packagejson: 2.5.3(prettier@3.3.3) optionalDependencies: '@next/eslint-plugin-next': 14.2.16 eslint: 8.56.0 prettier: 3.3.3 - typescript: 5.7.2 + typescript: 5.6.3 transitivePeerDependencies: - eslint-import-resolver-node - eslint-import-resolver-webpack @@ -12000,33 +11899,68 @@ snapshots: - supports-color - vitest - '@vercel/style-guide@6.0.0(@next/eslint-plugin-next@14.2.16)(eslint@8.56.0)(prettier@3.3.3)(typescript@5.7.2)(vitest@2.1.8(@types/node@22.10.2)(jsdom@25.0.1)(sass@1.83.0)(terser@5.31.0))': + '@vercel/style-guide@6.0.0(@next/eslint-plugin-next@14.2.16)(eslint@8.56.0)(prettier@3.3.3)(typescript@5.6.3)(vitest@2.1.4(@types/node@22.9.0)(jsdom@25.0.1)(sass@1.80.6)(terser@5.31.0))': dependencies: - '@babel/core': 7.26.0 - '@babel/eslint-parser': 7.25.9(@babel/core@7.26.0)(eslint@8.56.0) + '@babel/core': 7.25.9 + '@babel/eslint-parser': 7.25.9(@babel/core@7.25.9)(eslint@8.56.0) '@rushstack/eslint-patch': 1.10.4 - '@typescript-eslint/eslint-plugin': 7.18.0(@typescript-eslint/parser@7.18.0(eslint@8.56.0)(typescript@5.7.2))(eslint@8.56.0)(typescript@5.7.2) - '@typescript-eslint/parser': 7.18.0(eslint@8.56.0)(typescript@5.7.2) + '@typescript-eslint/eslint-plugin': 7.18.0(@typescript-eslint/parser@7.18.0(eslint@8.56.0)(typescript@5.6.3))(eslint@8.56.0)(typescript@5.6.3) + '@typescript-eslint/parser': 7.18.0(eslint@8.56.0)(typescript@5.6.3) eslint-config-prettier: 9.1.0(eslint@8.56.0) eslint-import-resolver-alias: 1.1.2(eslint-plugin-import@2.31.0) - eslint-import-resolver-typescript: 3.6.3(@typescript-eslint/parser@7.18.0(eslint@8.56.0)(typescript@5.7.2))(eslint-plugin-import@2.31.0)(eslint@8.56.0) + eslint-import-resolver-typescript: 3.6.3(@typescript-eslint/parser@7.18.0(eslint@8.56.0)(typescript@5.6.3))(eslint-plugin-import@2.31.0)(eslint@8.56.0) eslint-plugin-eslint-comments: 3.2.0(eslint@8.56.0) - eslint-plugin-import: 2.31.0(@typescript-eslint/parser@7.18.0(eslint@8.56.0)(typescript@5.7.2))(eslint-import-resolver-typescript@3.6.3)(eslint@8.56.0) - eslint-plugin-jest: 27.9.0(@typescript-eslint/eslint-plugin@7.18.0(@typescript-eslint/parser@7.18.0(eslint@8.56.0)(typescript@5.7.2))(eslint@8.56.0)(typescript@5.7.2))(eslint@8.56.0)(typescript@5.7.2) + eslint-plugin-import: 2.31.0(@typescript-eslint/parser@7.18.0(eslint@8.56.0)(typescript@5.6.3))(eslint-import-resolver-typescript@3.6.3)(eslint@8.56.0) + eslint-plugin-jest: 27.9.0(@typescript-eslint/eslint-plugin@7.18.0(@typescript-eslint/parser@7.18.0(eslint@8.56.0)(typescript@5.6.3))(eslint@8.56.0)(typescript@5.6.3))(eslint@8.56.0)(typescript@5.6.3) eslint-plugin-jsx-a11y: 6.10.1(eslint@8.56.0) - eslint-plugin-playwright: 1.8.3(eslint-plugin-jest@27.9.0(@typescript-eslint/eslint-plugin@7.18.0(@typescript-eslint/parser@7.18.0(eslint@8.56.0)(typescript@5.7.2))(eslint@8.56.0)(typescript@5.7.2))(eslint@8.56.0)(typescript@5.7.2))(eslint@8.56.0) + eslint-plugin-playwright: 1.8.3(eslint-plugin-jest@27.9.0(@typescript-eslint/eslint-plugin@7.18.0(@typescript-eslint/parser@7.18.0(eslint@8.56.0)(typescript@5.6.3))(eslint@8.56.0)(typescript@5.6.3))(eslint@8.56.0)(typescript@5.6.3))(eslint@8.56.0) eslint-plugin-react: 7.37.2(eslint@8.56.0) eslint-plugin-react-hooks: 4.6.2(eslint@8.56.0) - eslint-plugin-testing-library: 6.4.0(eslint@8.56.0)(typescript@5.7.2) + eslint-plugin-testing-library: 6.4.0(eslint@8.56.0)(typescript@5.6.3) eslint-plugin-tsdoc: 0.2.17 eslint-plugin-unicorn: 51.0.1(eslint@8.56.0) - eslint-plugin-vitest: 0.3.26(@typescript-eslint/eslint-plugin@7.18.0(@typescript-eslint/parser@7.18.0(eslint@8.56.0)(typescript@5.7.2))(eslint@8.56.0)(typescript@5.7.2))(eslint@8.56.0)(typescript@5.7.2)(vitest@2.1.8(@types/node@22.10.2)(jsdom@25.0.1)(sass@1.83.0)(terser@5.31.0)) + eslint-plugin-vitest: 0.3.26(@typescript-eslint/eslint-plugin@7.18.0(@typescript-eslint/parser@7.18.0(eslint@8.56.0)(typescript@5.6.3))(eslint@8.56.0)(typescript@5.6.3))(eslint@8.56.0)(typescript@5.6.3)(vitest@2.1.4(@types/node@22.9.0)(jsdom@25.0.1)(sass@1.80.6)(terser@5.31.0)) prettier-plugin-packagejson: 2.5.3(prettier@3.3.3) optionalDependencies: '@next/eslint-plugin-next': 14.2.16 eslint: 8.56.0 prettier: 3.3.3 - typescript: 5.7.2 + typescript: 5.6.3 + transitivePeerDependencies: + - eslint-import-resolver-node + - eslint-import-resolver-webpack + - eslint-plugin-import-x + - jest + - supports-color + - vitest + + '@vercel/style-guide@6.0.0(@next/eslint-plugin-next@14.2.16)(eslint@8.56.0)(prettier@3.3.3)(typescript@5.6.3)(vitest@2.1.5(@types/node@22.9.0)(jsdom@25.0.1)(sass@1.80.6)(terser@5.31.0))': + dependencies: + '@babel/core': 7.25.9 + '@babel/eslint-parser': 7.25.9(@babel/core@7.25.9)(eslint@8.56.0) + '@rushstack/eslint-patch': 1.10.4 + '@typescript-eslint/eslint-plugin': 7.18.0(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.6.3))(eslint@8.56.0)(typescript@5.6.3) + '@typescript-eslint/parser': 7.18.0(eslint@8.56.0)(typescript@5.6.3) + eslint-config-prettier: 9.1.0(eslint@8.56.0) + eslint-import-resolver-alias: 1.1.2(eslint-plugin-import@2.31.0) + eslint-import-resolver-typescript: 3.6.3(@typescript-eslint/parser@7.18.0(eslint@8.56.0)(typescript@5.6.3))(eslint-plugin-import@2.31.0)(eslint@8.56.0) + eslint-plugin-eslint-comments: 3.2.0(eslint@8.56.0) + eslint-plugin-import: 2.31.0(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.6.3))(eslint@8.56.0) + eslint-plugin-jest: 27.9.0(@typescript-eslint/eslint-plugin@7.18.0(@typescript-eslint/parser@7.18.0(eslint@8.56.0)(typescript@5.6.3))(eslint@8.56.0)(typescript@5.6.3))(eslint@8.56.0)(typescript@5.6.3) + eslint-plugin-jsx-a11y: 6.10.1(eslint@8.56.0) + eslint-plugin-playwright: 1.8.3(eslint-plugin-jest@27.9.0(@typescript-eslint/eslint-plugin@7.18.0(@typescript-eslint/parser@7.18.0(eslint@8.56.0)(typescript@5.6.3))(eslint@8.56.0)(typescript@5.6.3))(eslint@8.56.0)(typescript@5.6.3))(eslint@8.56.0) + eslint-plugin-react: 7.37.2(eslint@8.56.0) + eslint-plugin-react-hooks: 4.6.2(eslint@8.56.0) + eslint-plugin-testing-library: 6.4.0(eslint@8.56.0)(typescript@5.6.3) + eslint-plugin-tsdoc: 0.2.17 + eslint-plugin-unicorn: 51.0.1(eslint@8.56.0) + eslint-plugin-vitest: 0.3.26(@typescript-eslint/eslint-plugin@7.18.0(@typescript-eslint/parser@7.18.0(eslint@8.56.0)(typescript@5.6.3))(eslint@8.56.0)(typescript@5.6.3))(eslint@8.56.0)(typescript@5.6.3)(vitest@2.1.5(@types/node@22.9.0)(jsdom@25.0.1)(sass@1.80.6)(terser@5.31.0)) + prettier-plugin-packagejson: 2.5.3(prettier@3.3.3) + optionalDependencies: + '@next/eslint-plugin-next': 14.2.16 + eslint: 8.56.0 + prettier: 3.3.3 + typescript: 5.6.3 transitivePeerDependencies: - eslint-import-resolver-node - eslint-import-resolver-webpack @@ -12037,8 +11971,8 @@ snapshots: '@vercel/style-guide@6.0.0(@next/eslint-plugin-next@14.2.16)(eslint@8.57.0)(prettier@3.3.3)(typescript@5.6.3)': dependencies: - '@babel/core': 7.26.0 - '@babel/eslint-parser': 7.25.9(@babel/core@7.26.0)(eslint@8.57.0) + '@babel/core': 7.25.9 + '@babel/eslint-parser': 7.25.9(@babel/core@7.25.9)(eslint@8.57.0) '@rushstack/eslint-patch': 1.10.4 '@typescript-eslint/eslint-plugin': 7.18.0(@typescript-eslint/parser@7.18.0(eslint@8.57.0)(typescript@5.6.3))(eslint@8.57.0)(typescript@5.6.3) '@typescript-eslint/parser': 7.18.0(eslint@8.57.0)(typescript@5.6.3) @@ -12070,33 +12004,33 @@ snapshots: - supports-color - vitest - '@vercel/style-guide@6.0.0(@next/eslint-plugin-next@14.2.16)(eslint@8.57.1)(prettier@3.3.3)(typescript@5.7.2)': + '@vercel/style-guide@6.0.0(@next/eslint-plugin-next@14.2.16)(eslint@8.57.1)(prettier@3.3.3)(typescript@5.6.3)': dependencies: - '@babel/core': 7.26.0 - '@babel/eslint-parser': 7.25.9(@babel/core@7.26.0)(eslint@8.57.1) + '@babel/core': 7.25.9 + '@babel/eslint-parser': 7.25.9(@babel/core@7.25.9)(eslint@8.57.1) '@rushstack/eslint-patch': 1.10.4 - '@typescript-eslint/eslint-plugin': 7.18.0(@typescript-eslint/parser@7.18.0(eslint@8.57.1)(typescript@5.7.2))(eslint@8.57.1)(typescript@5.7.2) - '@typescript-eslint/parser': 7.18.0(eslint@8.57.1)(typescript@5.7.2) + '@typescript-eslint/eslint-plugin': 7.18.0(@typescript-eslint/parser@7.18.0(eslint@8.57.1)(typescript@5.6.3))(eslint@8.57.1)(typescript@5.6.3) + '@typescript-eslint/parser': 7.18.0(eslint@8.57.1)(typescript@5.6.3) eslint-config-prettier: 9.1.0(eslint@8.57.1) eslint-import-resolver-alias: 1.1.2(eslint-plugin-import@2.31.0) - eslint-import-resolver-typescript: 3.6.3(@typescript-eslint/parser@7.18.0(eslint@8.57.1)(typescript@5.7.2))(eslint-plugin-import@2.31.0)(eslint@8.57.1) + eslint-import-resolver-typescript: 3.6.3(@typescript-eslint/parser@7.18.0(eslint@8.57.1)(typescript@5.6.3))(eslint-plugin-import@2.31.0)(eslint@8.57.1) eslint-plugin-eslint-comments: 3.2.0(eslint@8.57.1) - eslint-plugin-import: 2.31.0(@typescript-eslint/parser@7.18.0(eslint@8.57.1)(typescript@5.7.2))(eslint-import-resolver-typescript@3.6.3)(eslint@8.57.1) - eslint-plugin-jest: 27.9.0(@typescript-eslint/eslint-plugin@7.18.0(@typescript-eslint/parser@7.18.0(eslint@8.57.1)(typescript@5.7.2))(eslint@8.57.1)(typescript@5.7.2))(eslint@8.57.1)(typescript@5.7.2) + eslint-plugin-import: 2.31.0(@typescript-eslint/parser@7.18.0(eslint@8.57.1)(typescript@5.6.3))(eslint-import-resolver-typescript@3.6.3)(eslint@8.57.1) + eslint-plugin-jest: 27.9.0(@typescript-eslint/eslint-plugin@7.18.0(@typescript-eslint/parser@7.18.0(eslint@8.57.1)(typescript@5.6.3))(eslint@8.57.1)(typescript@5.6.3))(eslint@8.57.1)(typescript@5.6.3) eslint-plugin-jsx-a11y: 6.10.1(eslint@8.57.1) - eslint-plugin-playwright: 1.8.3(eslint-plugin-jest@27.9.0(@typescript-eslint/eslint-plugin@7.18.0(@typescript-eslint/parser@7.18.0(eslint@8.57.1)(typescript@5.7.2))(eslint@8.57.1)(typescript@5.7.2))(eslint@8.57.1)(typescript@5.7.2))(eslint@8.57.1) + eslint-plugin-playwright: 1.8.3(eslint-plugin-jest@27.9.0(@typescript-eslint/eslint-plugin@7.18.0(@typescript-eslint/parser@7.18.0(eslint@8.57.1)(typescript@5.6.3))(eslint@8.57.1)(typescript@5.6.3))(eslint@8.57.1)(typescript@5.6.3))(eslint@8.57.1) eslint-plugin-react: 7.37.2(eslint@8.57.1) eslint-plugin-react-hooks: 4.6.2(eslint@8.57.1) - eslint-plugin-testing-library: 6.4.0(eslint@8.57.1)(typescript@5.7.2) + eslint-plugin-testing-library: 6.4.0(eslint@8.57.1)(typescript@5.6.3) eslint-plugin-tsdoc: 0.2.17 eslint-plugin-unicorn: 51.0.1(eslint@8.57.1) - eslint-plugin-vitest: 0.3.26(@typescript-eslint/eslint-plugin@7.18.0(@typescript-eslint/parser@7.18.0(eslint@8.57.1)(typescript@5.7.2))(eslint@8.57.1)(typescript@5.7.2))(eslint@8.57.1)(typescript@5.7.2)(vitest@2.1.8(@types/node@20.16.15)(jsdom@25.0.1)(sass@1.83.0)(terser@5.31.0)) + eslint-plugin-vitest: 0.3.26(@typescript-eslint/eslint-plugin@7.18.0(@typescript-eslint/parser@7.18.0(eslint@8.57.1)(typescript@5.6.3))(eslint@8.57.1)(typescript@5.6.3))(eslint@8.57.1)(typescript@5.6.3)(vitest@2.1.4(@types/node@20.16.15)(jsdom@25.0.1)(sass@1.80.6)(terser@5.31.0)) prettier-plugin-packagejson: 2.5.3(prettier@3.3.3) optionalDependencies: '@next/eslint-plugin-next': 14.2.16 eslint: 8.57.1 prettier: 3.3.3 - typescript: 5.7.2 + typescript: 5.6.3 transitivePeerDependencies: - eslint-import-resolver-node - eslint-import-resolver-webpack @@ -12105,33 +12039,33 @@ snapshots: - supports-color - vitest - '@vercel/style-guide@6.0.0(@next/eslint-plugin-next@14.2.16)(eslint@8.57.1)(prettier@3.3.3)(typescript@5.7.2)(vitest@2.1.8(@types/node@20.16.15)(jsdom@25.0.1)(sass@1.83.0)(terser@5.31.0))': + '@vercel/style-guide@6.0.0(@next/eslint-plugin-next@14.2.16)(eslint@8.57.1)(prettier@3.3.3)(typescript@5.6.3)(vitest@2.1.4(@types/node@20.16.15)(jsdom@25.0.1)(sass@1.80.6)(terser@5.31.0))': dependencies: - '@babel/core': 7.26.0 - '@babel/eslint-parser': 7.25.9(@babel/core@7.26.0)(eslint@8.57.1) + '@babel/core': 7.25.9 + '@babel/eslint-parser': 7.25.9(@babel/core@7.25.9)(eslint@8.57.1) '@rushstack/eslint-patch': 1.10.4 - '@typescript-eslint/eslint-plugin': 7.18.0(@typescript-eslint/parser@7.18.0(eslint@8.57.1)(typescript@5.7.2))(eslint@8.57.1)(typescript@5.7.2) - '@typescript-eslint/parser': 7.18.0(eslint@8.57.1)(typescript@5.7.2) + '@typescript-eslint/eslint-plugin': 7.18.0(@typescript-eslint/parser@7.18.0(eslint@8.57.1)(typescript@5.6.3))(eslint@8.57.1)(typescript@5.6.3) + '@typescript-eslint/parser': 7.18.0(eslint@8.57.1)(typescript@5.6.3) eslint-config-prettier: 9.1.0(eslint@8.57.1) - eslint-import-resolver-alias: 1.1.2(eslint-plugin-import@2.31.0(@typescript-eslint/parser@7.18.0(eslint@8.57.1)(typescript@5.7.2))(eslint-import-resolver-typescript@3.6.3(@typescript-eslint/parser@7.18.0(eslint@8.57.1)(typescript@5.7.2))(eslint-plugin-import@2.31.0(@typescript-eslint/parser@7.18.0(eslint@8.57.1)(typescript@5.7.2))(eslint@8.57.1))(eslint@8.57.1))(eslint@8.57.1)) - eslint-import-resolver-typescript: 3.6.3(@typescript-eslint/parser@7.18.0(eslint@8.57.1)(typescript@5.7.2))(eslint-plugin-import@2.31.0(@typescript-eslint/parser@7.18.0(eslint@8.57.1)(typescript@5.7.2))(eslint@8.57.1))(eslint@8.57.1) + eslint-import-resolver-alias: 1.1.2(eslint-plugin-import@2.31.0) + eslint-import-resolver-typescript: 3.6.3(@typescript-eslint/parser@7.18.0(eslint@8.57.1)(typescript@5.6.3))(eslint-plugin-import@2.31.0)(eslint@8.57.1) eslint-plugin-eslint-comments: 3.2.0(eslint@8.57.1) - eslint-plugin-import: 2.31.0(@typescript-eslint/parser@7.18.0(eslint@8.57.1)(typescript@5.7.2))(eslint-import-resolver-typescript@3.6.3(@typescript-eslint/parser@7.18.0(eslint@8.57.1)(typescript@5.7.2))(eslint-plugin-import@2.31.0(@typescript-eslint/parser@7.18.0(eslint@8.57.1)(typescript@5.7.2))(eslint@8.57.1))(eslint@8.57.1))(eslint@8.57.1) - eslint-plugin-jest: 27.9.0(@typescript-eslint/eslint-plugin@7.18.0(@typescript-eslint/parser@7.18.0(eslint@8.57.1)(typescript@5.7.2))(eslint@8.57.1)(typescript@5.7.2))(eslint@8.57.1)(typescript@5.7.2) + eslint-plugin-import: 2.31.0(@typescript-eslint/parser@7.18.0(eslint@8.57.1)(typescript@5.6.3))(eslint-import-resolver-typescript@3.6.3)(eslint@8.57.1) + eslint-plugin-jest: 27.9.0(@typescript-eslint/eslint-plugin@7.18.0(@typescript-eslint/parser@7.18.0(eslint@8.57.1)(typescript@5.6.3))(eslint@8.57.1)(typescript@5.6.3))(eslint@8.57.1)(typescript@5.6.3) eslint-plugin-jsx-a11y: 6.10.1(eslint@8.57.1) - eslint-plugin-playwright: 1.8.3(eslint-plugin-jest@27.9.0(@typescript-eslint/eslint-plugin@7.18.0(@typescript-eslint/parser@7.18.0(eslint@8.57.1)(typescript@5.7.2))(eslint@8.57.1)(typescript@5.7.2))(eslint@8.57.1)(typescript@5.7.2))(eslint@8.57.1) + eslint-plugin-playwright: 1.8.3(eslint-plugin-jest@27.9.0(@typescript-eslint/eslint-plugin@7.18.0(@typescript-eslint/parser@7.18.0(eslint@8.57.1)(typescript@5.6.3))(eslint@8.57.1)(typescript@5.6.3))(eslint@8.57.1)(typescript@5.6.3))(eslint@8.57.1) eslint-plugin-react: 7.37.2(eslint@8.57.1) eslint-plugin-react-hooks: 4.6.2(eslint@8.57.1) - eslint-plugin-testing-library: 6.4.0(eslint@8.57.1)(typescript@5.7.2) + eslint-plugin-testing-library: 6.4.0(eslint@8.57.1)(typescript@5.6.3) eslint-plugin-tsdoc: 0.2.17 eslint-plugin-unicorn: 51.0.1(eslint@8.57.1) - eslint-plugin-vitest: 0.3.26(@typescript-eslint/eslint-plugin@7.18.0(@typescript-eslint/parser@7.18.0(eslint@8.57.1)(typescript@5.7.2))(eslint@8.57.1)(typescript@5.7.2))(eslint@8.57.1)(typescript@5.7.2)(vitest@2.1.8(@types/node@20.16.15)(jsdom@25.0.1)(sass@1.83.0)(terser@5.31.0)) + eslint-plugin-vitest: 0.3.26(@typescript-eslint/eslint-plugin@7.18.0(@typescript-eslint/parser@7.18.0(eslint@8.57.1)(typescript@5.6.3))(eslint@8.57.1)(typescript@5.6.3))(eslint@8.57.1)(typescript@5.6.3)(vitest@2.1.4(@types/node@20.16.15)(jsdom@25.0.1)(sass@1.80.6)(terser@5.31.0)) prettier-plugin-packagejson: 2.5.3(prettier@3.3.3) optionalDependencies: '@next/eslint-plugin-next': 14.2.16 eslint: 8.57.1 prettier: 3.3.3 - typescript: 5.7.2 + typescript: 5.6.3 transitivePeerDependencies: - eslint-import-resolver-node - eslint-import-resolver-webpack @@ -12140,40 +12074,40 @@ snapshots: - supports-color - vitest - '@vitejs/plugin-react@4.3.3(vite@5.4.10(@types/node@22.10.2)(sass@1.80.3)(terser@5.31.0))': + '@vitejs/plugin-react@4.3.3(vite@5.4.10(@types/node@22.9.0)(sass@1.80.3)(terser@5.31.0))': dependencies: '@babel/core': 7.25.9 '@babel/plugin-transform-react-jsx-self': 7.25.9(@babel/core@7.25.9) '@babel/plugin-transform-react-jsx-source': 7.25.9(@babel/core@7.25.9) '@types/babel__core': 7.20.5 react-refresh: 0.14.2 - vite: 5.4.10(@types/node@22.10.2)(sass@1.80.3)(terser@5.31.0) + vite: 5.4.10(@types/node@22.9.0)(sass@1.80.3)(terser@5.31.0) transitivePeerDependencies: - supports-color - '@vitejs/plugin-react@4.3.4(vite@5.4.11(@types/node@20.16.15)(sass@1.83.0)(terser@5.31.0))': + '@vitejs/plugin-react@4.3.3(vite@5.4.11(@types/node@20.16.15)(sass@1.80.6)(terser@5.31.0))': dependencies: - '@babel/core': 7.26.0 - '@babel/plugin-transform-react-jsx-self': 7.25.9(@babel/core@7.26.0) - '@babel/plugin-transform-react-jsx-source': 7.25.9(@babel/core@7.26.0) + '@babel/core': 7.25.9 + '@babel/plugin-transform-react-jsx-self': 7.25.9(@babel/core@7.25.9) + '@babel/plugin-transform-react-jsx-source': 7.25.9(@babel/core@7.25.9) '@types/babel__core': 7.20.5 react-refresh: 0.14.2 - vite: 5.4.11(@types/node@20.16.15)(sass@1.83.0)(terser@5.31.0) + vite: 5.4.11(@types/node@20.16.15)(sass@1.80.6)(terser@5.31.0) transitivePeerDependencies: - supports-color - '@vitejs/plugin-react@4.3.4(vite@5.4.11(@types/node@22.10.2)(sass@1.83.0)(terser@5.31.0))': + '@vitejs/plugin-react@4.3.3(vite@5.4.11(@types/node@22.9.0)(sass@1.80.6)(terser@5.31.0))': dependencies: - '@babel/core': 7.26.0 - '@babel/plugin-transform-react-jsx-self': 7.25.9(@babel/core@7.26.0) - '@babel/plugin-transform-react-jsx-source': 7.25.9(@babel/core@7.26.0) + '@babel/core': 7.25.9 + '@babel/plugin-transform-react-jsx-self': 7.25.9(@babel/core@7.25.9) + '@babel/plugin-transform-react-jsx-source': 7.25.9(@babel/core@7.25.9) '@types/babel__core': 7.20.5 react-refresh: 0.14.2 - vite: 5.4.11(@types/node@22.10.2)(sass@1.83.0)(terser@5.31.0) + vite: 5.4.11(@types/node@22.9.0)(sass@1.80.6)(terser@5.31.0) transitivePeerDependencies: - supports-color - '@vitest/coverage-istanbul@2.1.5(vitest@2.1.8(@types/node@20.16.15)(jsdom@25.0.1)(sass@1.83.0)(terser@5.31.0))': + '@vitest/coverage-istanbul@2.1.5(vitest@2.1.4(@types/node@20.16.15)(jsdom@25.0.1)(sass@1.80.6)(terser@5.31.0))': dependencies: '@istanbuljs/schema': 0.1.3 debug: 4.3.7 @@ -12185,11 +12119,11 @@ snapshots: magicast: 0.3.5 test-exclude: 7.0.1 tinyrainbow: 1.2.0 - vitest: 2.1.8(@types/node@20.16.15)(jsdom@25.0.1)(sass@1.83.0)(terser@5.31.0) + vitest: 2.1.4(@types/node@20.16.15)(jsdom@25.0.1)(sass@1.80.6)(terser@5.31.0) transitivePeerDependencies: - supports-color - '@vitest/coverage-istanbul@2.1.5(vitest@2.1.8(@types/node@22.10.2)(jsdom@25.0.1)(sass@1.83.0)(terser@5.31.0))': + '@vitest/coverage-istanbul@2.1.5(vitest@2.1.4(@types/node@22.9.0)(jsdom@25.0.1)(sass@1.80.6)(terser@5.31.0))': dependencies: '@istanbuljs/schema': 0.1.3 debug: 4.3.7 @@ -12201,11 +12135,27 @@ snapshots: magicast: 0.3.5 test-exclude: 7.0.1 tinyrainbow: 1.2.0 - vitest: 2.1.8(@types/node@22.10.2)(jsdom@25.0.1)(sass@1.83.0)(terser@5.31.0) + vitest: 2.1.4(@types/node@22.9.0)(jsdom@25.0.1)(sass@1.80.6)(terser@5.31.0) transitivePeerDependencies: - supports-color - '@vitest/coverage-v8@2.1.5(vitest@2.1.8(@types/node@20.16.15)(jsdom@25.0.1)(sass@1.83.0)(terser@5.31.0))': + '@vitest/coverage-istanbul@2.1.5(vitest@2.1.5(@types/node@22.9.0)(jsdom@25.0.1)(sass@1.80.6)(terser@5.31.0))': + dependencies: + '@istanbuljs/schema': 0.1.3 + debug: 4.3.7 + istanbul-lib-coverage: 3.2.2 + istanbul-lib-instrument: 6.0.3 + istanbul-lib-report: 3.0.1 + istanbul-lib-source-maps: 5.0.6 + istanbul-reports: 3.1.7 + magicast: 0.3.5 + test-exclude: 7.0.1 + tinyrainbow: 1.2.0 + vitest: 2.1.5(@types/node@22.9.0)(jsdom@25.0.1)(sass@1.80.6)(terser@5.31.0) + transitivePeerDependencies: + - supports-color + + '@vitest/coverage-v8@2.1.5(vitest@2.1.4(@types/node@20.16.15)(jsdom@25.0.1)(sass@1.80.6)(terser@5.31.0))': dependencies: '@ampproject/remapping': 2.3.0 '@bcoe/v8-coverage': 0.2.3 @@ -12219,11 +12169,11 @@ snapshots: std-env: 3.8.0 test-exclude: 7.0.1 tinyrainbow: 1.2.0 - vitest: 2.1.8(@types/node@20.16.15)(jsdom@25.0.1)(sass@1.83.0)(terser@5.31.0) + vitest: 2.1.4(@types/node@20.16.15)(jsdom@25.0.1)(sass@1.80.6)(terser@5.31.0) transitivePeerDependencies: - supports-color - '@vitest/coverage-v8@2.1.5(vitest@2.1.8(@types/node@22.10.2)(jsdom@25.0.1)(sass@1.83.0)(terser@5.31.0))': + '@vitest/coverage-v8@2.1.5(vitest@2.1.4(@types/node@22.9.0)(jsdom@25.0.1)(sass@1.80.6)(terser@5.31.0))': dependencies: '@ampproject/remapping': 2.3.0 '@bcoe/v8-coverage': 0.2.3 @@ -12237,7 +12187,25 @@ snapshots: std-env: 3.8.0 test-exclude: 7.0.1 tinyrainbow: 1.2.0 - vitest: 2.1.8(@types/node@22.10.2)(jsdom@25.0.1)(sass@1.83.0)(terser@5.31.0) + vitest: 2.1.4(@types/node@22.9.0)(jsdom@25.0.1)(sass@1.80.6)(terser@5.31.0) + transitivePeerDependencies: + - supports-color + + '@vitest/coverage-v8@2.1.5(vitest@2.1.5(@types/node@22.9.0)(jsdom@25.0.1)(sass@1.80.6)(terser@5.31.0))': + dependencies: + '@ampproject/remapping': 2.3.0 + '@bcoe/v8-coverage': 0.2.3 + debug: 4.3.7 + istanbul-lib-coverage: 3.2.2 + istanbul-lib-report: 3.0.1 + istanbul-lib-source-maps: 5.0.6 + istanbul-reports: 3.1.7 + magic-string: 0.30.12 + magicast: 0.3.5 + std-env: 3.8.0 + test-exclude: 7.0.1 + tinyrainbow: 1.2.0 + vitest: 2.1.5(@types/node@22.9.0)(jsdom@25.0.1)(sass@1.80.6)(terser@5.31.0) transitivePeerDependencies: - supports-color @@ -12248,45 +12216,75 @@ snapshots: chai: 5.1.2 tinyrainbow: 1.2.0 - '@vitest/expect@2.1.8': + '@vitest/expect@2.1.4': dependencies: - '@vitest/spy': 2.1.8 - '@vitest/utils': 2.1.8 + '@vitest/spy': 2.1.4 + '@vitest/utils': 2.1.4 chai: 5.1.2 tinyrainbow: 1.2.0 - '@vitest/mocker@2.1.8(vite@5.4.11(@types/node@20.16.15)(sass@1.83.0)(terser@5.31.0))': + '@vitest/expect@2.1.5': + dependencies: + '@vitest/spy': 2.1.5 + '@vitest/utils': 2.1.5 + chai: 5.1.2 + tinyrainbow: 1.2.0 + + '@vitest/mocker@2.1.4(vite@5.4.11(@types/node@20.16.15)(sass@1.80.6)(terser@5.31.0))': + dependencies: + '@vitest/spy': 2.1.4 + estree-walker: 3.0.3 + magic-string: 0.30.12 + optionalDependencies: + vite: 5.4.11(@types/node@20.16.15)(sass@1.80.6)(terser@5.31.0) + + '@vitest/mocker@2.1.4(vite@5.4.11(@types/node@22.9.0)(sass@1.80.6)(terser@5.31.0))': dependencies: - '@vitest/spy': 2.1.8 + '@vitest/spy': 2.1.4 estree-walker: 3.0.3 magic-string: 0.30.12 optionalDependencies: - vite: 5.4.11(@types/node@20.16.15)(sass@1.83.0)(terser@5.31.0) + vite: 5.4.11(@types/node@22.9.0)(sass@1.80.6)(terser@5.31.0) - '@vitest/mocker@2.1.8(vite@5.4.11(@types/node@22.10.2)(sass@1.83.0)(terser@5.31.0))': + '@vitest/mocker@2.1.5(vite@5.4.11(@types/node@22.9.0)(sass@1.80.6)(terser@5.31.0))': dependencies: - '@vitest/spy': 2.1.8 + '@vitest/spy': 2.1.5 estree-walker: 3.0.3 magic-string: 0.30.12 optionalDependencies: - vite: 5.4.11(@types/node@22.10.2)(sass@1.83.0)(terser@5.31.0) + vite: 5.4.11(@types/node@22.9.0)(sass@1.80.6)(terser@5.31.0) '@vitest/pretty-format@2.0.5': dependencies: tinyrainbow: 1.2.0 - '@vitest/pretty-format@2.1.8': + '@vitest/pretty-format@2.1.4': + dependencies: + tinyrainbow: 1.2.0 + + '@vitest/pretty-format@2.1.5': dependencies: tinyrainbow: 1.2.0 - '@vitest/runner@2.1.8': + '@vitest/runner@2.1.4': + dependencies: + '@vitest/utils': 2.1.4 + pathe: 1.1.2 + + '@vitest/runner@2.1.5': + dependencies: + '@vitest/utils': 2.1.5 + pathe: 1.1.2 + + '@vitest/snapshot@2.1.4': dependencies: - '@vitest/utils': 2.1.8 + '@vitest/pretty-format': 2.1.4 + magic-string: 0.30.12 pathe: 1.1.2 - '@vitest/snapshot@2.1.8': + '@vitest/snapshot@2.1.5': dependencies: - '@vitest/pretty-format': 2.1.8 + '@vitest/pretty-format': 2.1.5 magic-string: 0.30.12 pathe: 1.1.2 @@ -12294,7 +12292,11 @@ snapshots: dependencies: tinyspy: 3.0.2 - '@vitest/spy@2.1.8': + '@vitest/spy@2.1.4': + dependencies: + tinyspy: 3.0.2 + + '@vitest/spy@2.1.5': dependencies: tinyspy: 3.0.2 @@ -12305,9 +12307,15 @@ snapshots: loupe: 3.1.2 tinyrainbow: 1.2.0 - '@vitest/utils@2.1.8': + '@vitest/utils@2.1.4': + dependencies: + '@vitest/pretty-format': 2.1.4 + loupe: 3.1.2 + tinyrainbow: 1.2.0 + + '@vitest/utils@2.1.5': dependencies: - '@vitest/pretty-format': 2.1.8 + '@vitest/pretty-format': 2.1.5 loupe: 3.1.2 tinyrainbow: 1.2.0 @@ -12325,7 +12333,7 @@ snapshots: '@vue/compiler-core@3.4.27': dependencies: - '@babel/parser': 7.26.3 + '@babel/parser': 7.25.9 '@vue/shared': 3.4.27 entities: 4.5.0 estree-walker: 2.0.2 @@ -12341,7 +12349,7 @@ snapshots: de-indent: 1.0.2 he: 1.2.0 - '@vue/language-core@2.1.6(typescript@5.7.2)': + '@vue/language-core@2.1.6(typescript@5.6.3)': dependencies: '@volar/language-core': 2.4.5 '@vue/compiler-dom': 3.4.27 @@ -12352,7 +12360,7 @@ snapshots: muggle-string: 0.4.1 path-browserify: 1.0.1 optionalDependencies: - typescript: 5.7.2 + typescript: 5.6.3 '@vue/shared@3.4.27': {} @@ -12461,6 +12469,10 @@ snapshots: dependencies: acorn: 7.4.1 + acorn-jsx@5.3.2(acorn@8.13.0): + dependencies: + acorn: 8.13.0 + acorn-jsx@5.3.2(acorn@8.14.0): dependencies: acorn: 8.14.0 @@ -12477,6 +12489,8 @@ snapshots: acorn@7.4.1: {} + acorn@8.13.0: {} + acorn@8.14.0: {} adjust-sourcemap-loader@4.0.0: @@ -12714,12 +12728,12 @@ snapshots: b4a@1.6.6: {} - babel-loader@9.1.3(@babel/core@7.25.9)(webpack@5.91.0(@swc/core@1.7.39(@swc/helpers@0.5.15))(esbuild@0.23.1)): + babel-loader@9.1.3(@babel/core@7.25.9)(webpack@5.91.0(@swc/core@1.7.39(@swc/helpers@0.5.13))(esbuild@0.23.1)): dependencies: '@babel/core': 7.25.9 find-cache-dir: 4.0.0 schema-utils: 4.2.0 - webpack: 5.91.0(@swc/core@1.7.39(@swc/helpers@0.5.15))(esbuild@0.23.1) + webpack: 5.91.0(@swc/core@1.7.39(@swc/helpers@0.5.13))(esbuild@0.23.1) babel-plugin-polyfill-corejs2@0.4.11(@babel/core@7.25.9): dependencies: @@ -12745,7 +12759,7 @@ snapshots: transitivePeerDependencies: - supports-color - backstopjs@6.3.25(encoding@0.1.13)(typescript@5.7.2): + backstopjs@6.3.25(encoding@0.1.13)(typescript@5.6.3): dependencies: os: 0.1.2 '@mirzazeyrek/node-resemble-js': 1.2.1 @@ -12762,7 +12776,7 @@ snapshots: path: 0.12.7 playwright: 1.48.1 portfinder: 1.0.32 - puppeteer: 22.3.0(encoding@0.1.13)(typescript@5.7.2) + puppeteer: 22.3.0(encoding@0.1.13)(typescript@5.6.3) super-simple-web-server: 1.1.4 temp: 0.9.4 transitivePeerDependencies: @@ -13284,15 +13298,6 @@ snapshots: optionalDependencies: typescript: 5.6.3 - cosmiconfig@9.0.0(typescript@5.7.2): - dependencies: - env-paths: 2.2.1 - import-fresh: 3.3.0 - js-yaml: 4.1.0 - parse-json: 5.2.0 - optionalDependencies: - typescript: 5.7.2 - create-ecdh@4.0.4: dependencies: bn.js: 4.12.0 @@ -13347,7 +13352,7 @@ snapshots: randombytes: 2.1.0 randomfill: 1.0.4 - css-loader@6.11.0(webpack@5.91.0(@swc/core@1.7.39(@swc/helpers@0.5.15))(esbuild@0.23.1)): + css-loader@6.11.0(webpack@5.91.0(@swc/core@1.7.39(@swc/helpers@0.5.13))(esbuild@0.23.1)): dependencies: icss-utils: 5.1.0(postcss@8.4.47) postcss: 8.4.47 @@ -13358,7 +13363,7 @@ snapshots: postcss-value-parser: 4.2.0 semver: 7.6.3 optionalDependencies: - webpack: 5.91.0(@swc/core@1.7.39(@swc/helpers@0.5.15))(esbuild@0.23.1) + webpack: 5.91.0(@swc/core@1.7.39(@swc/helpers@0.5.13))(esbuild@0.23.1) css-select@4.3.0: dependencies: @@ -13912,17 +13917,13 @@ snapshots: eslint: 8.57.1 eslint-plugin-turbo: 1.13.4(eslint@8.57.1) - eslint-import-resolver-alias@1.1.2(eslint-plugin-import@2.31.0(@typescript-eslint/parser@7.18.0(eslint@8.57.1)(typescript@5.7.2))(eslint-import-resolver-typescript@3.6.3(@typescript-eslint/parser@7.18.0(eslint@8.57.1)(typescript@5.7.2))(eslint-plugin-import@2.31.0(@typescript-eslint/parser@7.18.0(eslint@8.57.1)(typescript@5.7.2))(eslint@8.57.1))(eslint@8.57.1))(eslint@8.57.1)): - dependencies: - eslint-plugin-import: 2.31.0(@typescript-eslint/parser@7.18.0(eslint@8.57.1)(typescript@5.7.2))(eslint-import-resolver-typescript@3.6.3(@typescript-eslint/parser@7.18.0(eslint@8.57.1)(typescript@5.7.2))(eslint-plugin-import@2.31.0(@typescript-eslint/parser@7.18.0(eslint@8.57.1)(typescript@5.7.2))(eslint@8.57.1))(eslint@8.57.1))(eslint@8.57.1) - eslint-import-resolver-alias@1.1.2(eslint-plugin-import@2.31.0(eslint@8.57.0)): dependencies: eslint-plugin-import: 2.31.0(eslint@8.57.0) eslint-import-resolver-alias@1.1.2(eslint-plugin-import@2.31.0): dependencies: - eslint-plugin-import: 2.31.0(@typescript-eslint/parser@7.18.0(eslint@8.57.1)(typescript@5.7.2))(eslint-import-resolver-typescript@3.6.3)(eslint@8.57.1) + eslint-plugin-import: 2.31.0(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.6.3))(eslint@8.56.0) eslint-import-resolver-node@0.3.9: dependencies: @@ -13932,19 +13933,19 @@ snapshots: transitivePeerDependencies: - supports-color - eslint-import-resolver-typescript@3.6.3(@typescript-eslint/parser@7.18.0(eslint@8.56.0)(typescript@5.7.2))(eslint-plugin-import@2.31.0)(eslint@8.56.0): + eslint-import-resolver-typescript@3.6.3(@typescript-eslint/parser@7.18.0(eslint@8.56.0)(typescript@5.6.3))(eslint-plugin-import@2.31.0)(eslint@8.56.0): dependencies: '@nolyfill/is-core-module': 1.0.39 debug: 4.3.7 enhanced-resolve: 5.17.1 eslint: 8.56.0 - eslint-module-utils: 2.12.0(@typescript-eslint/parser@7.18.0(eslint@8.56.0)(typescript@5.7.2))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.3)(eslint@8.56.0) + eslint-module-utils: 2.12.0(@typescript-eslint/parser@7.18.0(eslint@8.56.0)(typescript@5.6.3))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.3)(eslint@8.56.0) fast-glob: 3.3.2 get-tsconfig: 4.8.1 is-bun-module: 1.2.1 is-glob: 4.0.3 optionalDependencies: - eslint-plugin-import: 2.31.0(@typescript-eslint/parser@7.18.0(eslint@8.56.0)(typescript@5.7.2))(eslint-import-resolver-typescript@3.6.3)(eslint@8.56.0) + eslint-plugin-import: 2.31.0(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.6.3))(eslint@8.56.0) transitivePeerDependencies: - '@typescript-eslint/parser' - eslint-import-resolver-node @@ -13970,38 +13971,19 @@ snapshots: - eslint-import-resolver-webpack - supports-color - eslint-import-resolver-typescript@3.6.3(@typescript-eslint/parser@7.18.0(eslint@8.57.1)(typescript@5.7.2))(eslint-plugin-import@2.31.0(@typescript-eslint/parser@7.18.0(eslint@8.57.1)(typescript@5.7.2))(eslint@8.57.1))(eslint@8.57.1): - dependencies: - '@nolyfill/is-core-module': 1.0.39 - debug: 4.3.7 - enhanced-resolve: 5.17.1 - eslint: 8.57.1 - eslint-module-utils: 2.12.0(@typescript-eslint/parser@7.18.0(eslint@8.57.1)(typescript@5.7.2))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.3(@typescript-eslint/parser@7.18.0(eslint@8.57.1)(typescript@5.7.2))(eslint-plugin-import@2.31.0(@typescript-eslint/parser@7.18.0(eslint@8.57.1)(typescript@5.7.2))(eslint@8.57.1))(eslint@8.57.1))(eslint@8.57.1) - fast-glob: 3.3.2 - get-tsconfig: 4.8.1 - is-bun-module: 1.2.1 - is-glob: 4.0.3 - optionalDependencies: - eslint-plugin-import: 2.31.0(@typescript-eslint/parser@7.18.0(eslint@8.57.1)(typescript@5.7.2))(eslint-import-resolver-typescript@3.6.3(@typescript-eslint/parser@7.18.0(eslint@8.57.1)(typescript@5.7.2))(eslint-plugin-import@2.31.0(@typescript-eslint/parser@7.18.0(eslint@8.57.1)(typescript@5.7.2))(eslint@8.57.1))(eslint@8.57.1))(eslint@8.57.1) - transitivePeerDependencies: - - '@typescript-eslint/parser' - - eslint-import-resolver-node - - eslint-import-resolver-webpack - - supports-color - - eslint-import-resolver-typescript@3.6.3(@typescript-eslint/parser@7.18.0(eslint@8.57.1)(typescript@5.7.2))(eslint-plugin-import@2.31.0)(eslint@8.57.1): + eslint-import-resolver-typescript@3.6.3(@typescript-eslint/parser@7.18.0(eslint@8.57.1)(typescript@5.6.3))(eslint-plugin-import@2.31.0)(eslint@8.57.1): dependencies: '@nolyfill/is-core-module': 1.0.39 debug: 4.3.7 enhanced-resolve: 5.17.1 eslint: 8.57.1 - eslint-module-utils: 2.12.0(@typescript-eslint/parser@7.18.0(eslint@8.57.1)(typescript@5.7.2))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.3)(eslint@8.57.1) + eslint-module-utils: 2.12.0(@typescript-eslint/parser@7.18.0(eslint@8.57.1)(typescript@5.6.3))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.3)(eslint@8.57.1) fast-glob: 3.3.2 get-tsconfig: 4.8.1 is-bun-module: 1.2.1 is-glob: 4.0.3 optionalDependencies: - eslint-plugin-import: 2.31.0(@typescript-eslint/parser@7.18.0(eslint@8.57.1)(typescript@5.7.2))(eslint-import-resolver-typescript@3.6.3)(eslint@8.57.1) + eslint-plugin-import: 2.31.0(@typescript-eslint/parser@7.18.0(eslint@8.57.1)(typescript@5.6.3))(eslint-import-resolver-typescript@3.6.3)(eslint@8.57.1) transitivePeerDependencies: - '@typescript-eslint/parser' - eslint-import-resolver-node @@ -14071,14 +14053,14 @@ snapshots: - bluebird - supports-color - eslint-module-utils@2.12.0(@typescript-eslint/parser@7.18.0(eslint@8.56.0)(typescript@5.7.2))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.3)(eslint@8.56.0): + eslint-module-utils@2.12.0(@typescript-eslint/parser@7.18.0(eslint@8.56.0)(typescript@5.6.3))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.3)(eslint@8.56.0): dependencies: debug: 3.2.7 optionalDependencies: - '@typescript-eslint/parser': 7.18.0(eslint@8.56.0)(typescript@5.7.2) + '@typescript-eslint/parser': 7.18.0(eslint@8.56.0)(typescript@5.6.3) eslint: 8.56.0 eslint-import-resolver-node: 0.3.9 - eslint-import-resolver-typescript: 3.6.3(@typescript-eslint/parser@7.18.0(eslint@8.56.0)(typescript@5.7.2))(eslint-plugin-import@2.31.0)(eslint@8.56.0) + eslint-import-resolver-typescript: 3.6.3(@typescript-eslint/parser@7.18.0(eslint@8.56.0)(typescript@5.6.3))(eslint-plugin-import@2.31.0)(eslint@8.56.0) transitivePeerDependencies: - supports-color @@ -14093,25 +14075,14 @@ snapshots: transitivePeerDependencies: - supports-color - eslint-module-utils@2.12.0(@typescript-eslint/parser@7.18.0(eslint@8.57.1)(typescript@5.7.2))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.3(@typescript-eslint/parser@7.18.0(eslint@8.57.1)(typescript@5.7.2))(eslint-plugin-import@2.31.0(@typescript-eslint/parser@7.18.0(eslint@8.57.1)(typescript@5.7.2))(eslint@8.57.1))(eslint@8.57.1))(eslint@8.57.1): - dependencies: - debug: 3.2.7 - optionalDependencies: - '@typescript-eslint/parser': 7.18.0(eslint@8.57.1)(typescript@5.7.2) - eslint: 8.57.1 - eslint-import-resolver-node: 0.3.9 - eslint-import-resolver-typescript: 3.6.3(@typescript-eslint/parser@7.18.0(eslint@8.57.1)(typescript@5.7.2))(eslint-plugin-import@2.31.0(@typescript-eslint/parser@7.18.0(eslint@8.57.1)(typescript@5.7.2))(eslint@8.57.1))(eslint@8.57.1) - transitivePeerDependencies: - - supports-color - - eslint-module-utils@2.12.0(@typescript-eslint/parser@7.18.0(eslint@8.57.1)(typescript@5.7.2))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.3)(eslint@8.57.1): + eslint-module-utils@2.12.0(@typescript-eslint/parser@7.18.0(eslint@8.57.1)(typescript@5.6.3))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.3)(eslint@8.57.1): dependencies: debug: 3.2.7 optionalDependencies: - '@typescript-eslint/parser': 7.18.0(eslint@8.57.1)(typescript@5.7.2) + '@typescript-eslint/parser': 7.18.0(eslint@8.57.1)(typescript@5.6.3) eslint: 8.57.1 eslint-import-resolver-node: 0.3.9 - eslint-import-resolver-typescript: 3.6.3(@typescript-eslint/parser@7.18.0(eslint@8.57.1)(typescript@5.7.2))(eslint-plugin-import@2.31.0)(eslint@8.57.1) + eslint-import-resolver-typescript: 3.6.3(@typescript-eslint/parser@7.18.0(eslint@8.57.1)(typescript@5.6.3))(eslint-plugin-import@2.31.0)(eslint@8.57.1) transitivePeerDependencies: - supports-color @@ -14148,7 +14119,7 @@ snapshots: eslint: 8.57.1 ignore: 5.3.2 - eslint-plugin-import@2.31.0(@typescript-eslint/parser@7.18.0(eslint@8.56.0)(typescript@5.7.2))(eslint-import-resolver-typescript@3.6.3)(eslint@8.56.0): + eslint-plugin-import@2.31.0(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.6.3))(eslint@8.56.0): dependencies: '@rtsao/scc': 1.1.0 array-includes: 3.1.8 @@ -14159,7 +14130,7 @@ snapshots: doctrine: 2.1.0 eslint: 8.56.0 eslint-import-resolver-node: 0.3.9 - eslint-module-utils: 2.12.0(@typescript-eslint/parser@7.18.0(eslint@8.56.0)(typescript@5.7.2))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.3)(eslint@8.56.0) + eslint-module-utils: 2.12.0(@typescript-eslint/parser@7.18.0(eslint@8.56.0)(typescript@5.6.3))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.3)(eslint@8.56.0) hasown: 2.0.2 is-core-module: 2.15.1 is-glob: 4.0.3 @@ -14171,13 +14142,13 @@ snapshots: string.prototype.trimend: 1.0.8 tsconfig-paths: 3.15.0 optionalDependencies: - '@typescript-eslint/parser': 7.18.0(eslint@8.56.0)(typescript@5.7.2) + '@typescript-eslint/parser': 6.19.1(eslint@8.56.0)(typescript@5.6.3) transitivePeerDependencies: - eslint-import-resolver-typescript - eslint-import-resolver-webpack - supports-color - eslint-plugin-import@2.31.0(@typescript-eslint/parser@7.18.0(eslint@8.57.0)(typescript@5.6.3))(eslint-import-resolver-typescript@3.6.3(@typescript-eslint/parser@7.18.0(eslint@8.57.0)(typescript@5.6.3))(eslint-plugin-import@2.31.0(eslint@8.57.0))(eslint@8.57.0))(eslint@8.57.0): + eslint-plugin-import@2.31.0(@typescript-eslint/parser@7.18.0(eslint@8.56.0)(typescript@5.6.3))(eslint-import-resolver-typescript@3.6.3)(eslint@8.56.0): dependencies: '@rtsao/scc': 1.1.0 array-includes: 3.1.8 @@ -14186,9 +14157,9 @@ snapshots: array.prototype.flatmap: 1.3.2 debug: 3.2.7 doctrine: 2.1.0 - eslint: 8.57.0 + eslint: 8.56.0 eslint-import-resolver-node: 0.3.9 - eslint-module-utils: 2.12.0(@typescript-eslint/parser@7.18.0(eslint@8.57.0)(typescript@5.6.3))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.3(@typescript-eslint/parser@7.18.0(eslint@8.57.0)(typescript@5.6.3))(eslint-plugin-import@2.31.0(eslint@8.57.0))(eslint@8.57.0))(eslint@8.57.0) + eslint-module-utils: 2.12.0(@typescript-eslint/parser@7.18.0(eslint@8.56.0)(typescript@5.6.3))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.3)(eslint@8.56.0) hasown: 2.0.2 is-core-module: 2.15.1 is-glob: 4.0.3 @@ -14200,13 +14171,13 @@ snapshots: string.prototype.trimend: 1.0.8 tsconfig-paths: 3.15.0 optionalDependencies: - '@typescript-eslint/parser': 7.18.0(eslint@8.57.0)(typescript@5.6.3) + '@typescript-eslint/parser': 7.18.0(eslint@8.56.0)(typescript@5.6.3) transitivePeerDependencies: - eslint-import-resolver-typescript - eslint-import-resolver-webpack - supports-color - eslint-plugin-import@2.31.0(@typescript-eslint/parser@7.18.0(eslint@8.57.1)(typescript@5.7.2))(eslint-import-resolver-typescript@3.6.3(@typescript-eslint/parser@7.18.0(eslint@8.57.1)(typescript@5.7.2))(eslint-plugin-import@2.31.0(@typescript-eslint/parser@7.18.0(eslint@8.57.1)(typescript@5.7.2))(eslint@8.57.1))(eslint@8.57.1))(eslint@8.57.1): + eslint-plugin-import@2.31.0(@typescript-eslint/parser@7.18.0(eslint@8.57.0)(typescript@5.6.3))(eslint-import-resolver-typescript@3.6.3(@typescript-eslint/parser@7.18.0(eslint@8.57.0)(typescript@5.6.3))(eslint-plugin-import@2.31.0(eslint@8.57.0))(eslint@8.57.0))(eslint@8.57.0): dependencies: '@rtsao/scc': 1.1.0 array-includes: 3.1.8 @@ -14215,9 +14186,9 @@ snapshots: array.prototype.flatmap: 1.3.2 debug: 3.2.7 doctrine: 2.1.0 - eslint: 8.57.1 + eslint: 8.57.0 eslint-import-resolver-node: 0.3.9 - eslint-module-utils: 2.12.0(@typescript-eslint/parser@7.18.0(eslint@8.57.1)(typescript@5.7.2))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.3(@typescript-eslint/parser@7.18.0(eslint@8.57.1)(typescript@5.7.2))(eslint-plugin-import@2.31.0(@typescript-eslint/parser@7.18.0(eslint@8.57.1)(typescript@5.7.2))(eslint@8.57.1))(eslint@8.57.1))(eslint@8.57.1) + eslint-module-utils: 2.12.0(@typescript-eslint/parser@7.18.0(eslint@8.57.0)(typescript@5.6.3))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.3(@typescript-eslint/parser@7.18.0(eslint@8.57.0)(typescript@5.6.3))(eslint-plugin-import@2.31.0(eslint@8.57.0))(eslint@8.57.0))(eslint@8.57.0) hasown: 2.0.2 is-core-module: 2.15.1 is-glob: 4.0.3 @@ -14229,13 +14200,13 @@ snapshots: string.prototype.trimend: 1.0.8 tsconfig-paths: 3.15.0 optionalDependencies: - '@typescript-eslint/parser': 7.18.0(eslint@8.57.1)(typescript@5.7.2) + '@typescript-eslint/parser': 7.18.0(eslint@8.57.0)(typescript@5.6.3) transitivePeerDependencies: - eslint-import-resolver-typescript - eslint-import-resolver-webpack - supports-color - eslint-plugin-import@2.31.0(@typescript-eslint/parser@7.18.0(eslint@8.57.1)(typescript@5.7.2))(eslint-import-resolver-typescript@3.6.3)(eslint@8.57.1): + eslint-plugin-import@2.31.0(@typescript-eslint/parser@7.18.0(eslint@8.57.1)(typescript@5.6.3))(eslint-import-resolver-typescript@3.6.3)(eslint@8.57.1): dependencies: '@rtsao/scc': 1.1.0 array-includes: 3.1.8 @@ -14246,7 +14217,7 @@ snapshots: doctrine: 2.1.0 eslint: 8.57.1 eslint-import-resolver-node: 0.3.9 - eslint-module-utils: 2.12.0(@typescript-eslint/parser@7.18.0(eslint@8.57.1)(typescript@5.7.2))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.3)(eslint@8.57.1) + eslint-module-utils: 2.12.0(@typescript-eslint/parser@7.18.0(eslint@8.57.1)(typescript@5.6.3))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.3)(eslint@8.57.1) hasown: 2.0.2 is-core-module: 2.15.1 is-glob: 4.0.3 @@ -14258,7 +14229,7 @@ snapshots: string.prototype.trimend: 1.0.8 tsconfig-paths: 3.15.0 optionalDependencies: - '@typescript-eslint/parser': 7.18.0(eslint@8.57.1)(typescript@5.7.2) + '@typescript-eslint/parser': 7.18.0(eslint@8.57.1)(typescript@5.6.3) transitivePeerDependencies: - eslint-import-resolver-typescript - eslint-import-resolver-webpack @@ -14291,12 +14262,12 @@ snapshots: - eslint-import-resolver-webpack - supports-color - eslint-plugin-jest@27.9.0(@typescript-eslint/eslint-plugin@7.18.0(@typescript-eslint/parser@7.18.0(eslint@8.56.0)(typescript@5.7.2))(eslint@8.56.0)(typescript@5.7.2))(eslint@8.56.0)(typescript@5.7.2): + eslint-plugin-jest@27.9.0(@typescript-eslint/eslint-plugin@7.18.0(@typescript-eslint/parser@7.18.0(eslint@8.56.0)(typescript@5.6.3))(eslint@8.56.0)(typescript@5.6.3))(eslint@8.56.0)(typescript@5.6.3): dependencies: - '@typescript-eslint/utils': 5.62.0(eslint@8.56.0)(typescript@5.7.2) + '@typescript-eslint/utils': 5.62.0(eslint@8.56.0)(typescript@5.6.3) eslint: 8.56.0 optionalDependencies: - '@typescript-eslint/eslint-plugin': 7.18.0(@typescript-eslint/parser@7.18.0(eslint@8.56.0)(typescript@5.7.2))(eslint@8.56.0)(typescript@5.7.2) + '@typescript-eslint/eslint-plugin': 7.18.0(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.6.3))(eslint@8.56.0)(typescript@5.6.3) transitivePeerDependencies: - supports-color - typescript @@ -14311,12 +14282,12 @@ snapshots: - supports-color - typescript - eslint-plugin-jest@27.9.0(@typescript-eslint/eslint-plugin@7.18.0(@typescript-eslint/parser@7.18.0(eslint@8.57.1)(typescript@5.7.2))(eslint@8.57.1)(typescript@5.7.2))(eslint@8.57.1)(typescript@5.7.2): + eslint-plugin-jest@27.9.0(@typescript-eslint/eslint-plugin@7.18.0(@typescript-eslint/parser@7.18.0(eslint@8.57.1)(typescript@5.6.3))(eslint@8.57.1)(typescript@5.6.3))(eslint@8.57.1)(typescript@5.6.3): dependencies: - '@typescript-eslint/utils': 5.62.0(eslint@8.57.1)(typescript@5.7.2) + '@typescript-eslint/utils': 5.62.0(eslint@8.57.1)(typescript@5.6.3) eslint: 8.57.1 optionalDependencies: - '@typescript-eslint/eslint-plugin': 7.18.0(@typescript-eslint/parser@7.18.0(eslint@8.57.1)(typescript@5.7.2))(eslint@8.57.1)(typescript@5.7.2) + '@typescript-eslint/eslint-plugin': 7.18.0(@typescript-eslint/parser@7.18.0(eslint@8.57.1)(typescript@5.6.3))(eslint@8.57.1)(typescript@5.6.3) transitivePeerDependencies: - supports-color - typescript @@ -14451,12 +14422,12 @@ snapshots: eslint-plugin-only-warn@1.1.0: {} - eslint-plugin-playwright@1.8.3(eslint-plugin-jest@27.9.0(@typescript-eslint/eslint-plugin@7.18.0(@typescript-eslint/parser@7.18.0(eslint@8.56.0)(typescript@5.7.2))(eslint@8.56.0)(typescript@5.7.2))(eslint@8.56.0)(typescript@5.7.2))(eslint@8.56.0): + eslint-plugin-playwright@1.8.3(eslint-plugin-jest@27.9.0(@typescript-eslint/eslint-plugin@7.18.0(@typescript-eslint/parser@7.18.0(eslint@8.56.0)(typescript@5.6.3))(eslint@8.56.0)(typescript@5.6.3))(eslint@8.56.0)(typescript@5.6.3))(eslint@8.56.0): dependencies: eslint: 8.56.0 globals: 13.24.0 optionalDependencies: - eslint-plugin-jest: 27.9.0(@typescript-eslint/eslint-plugin@7.18.0(@typescript-eslint/parser@7.18.0(eslint@8.56.0)(typescript@5.7.2))(eslint@8.56.0)(typescript@5.7.2))(eslint@8.56.0)(typescript@5.7.2) + eslint-plugin-jest: 27.9.0(@typescript-eslint/eslint-plugin@7.18.0(@typescript-eslint/parser@7.18.0(eslint@8.56.0)(typescript@5.6.3))(eslint@8.56.0)(typescript@5.6.3))(eslint@8.56.0)(typescript@5.6.3) eslint-plugin-playwright@1.8.3(eslint-plugin-jest@27.9.0(@typescript-eslint/eslint-plugin@7.18.0(@typescript-eslint/parser@7.18.0(eslint@8.57.0)(typescript@5.6.3))(eslint@8.57.0)(typescript@5.6.3))(eslint@8.57.0)(typescript@5.6.3))(eslint@8.57.0): dependencies: @@ -14465,12 +14436,12 @@ snapshots: optionalDependencies: eslint-plugin-jest: 27.9.0(@typescript-eslint/eslint-plugin@7.18.0(@typescript-eslint/parser@7.18.0(eslint@8.57.0)(typescript@5.6.3))(eslint@8.57.0)(typescript@5.6.3))(eslint@8.57.0)(typescript@5.6.3) - eslint-plugin-playwright@1.8.3(eslint-plugin-jest@27.9.0(@typescript-eslint/eslint-plugin@7.18.0(@typescript-eslint/parser@7.18.0(eslint@8.57.1)(typescript@5.7.2))(eslint@8.57.1)(typescript@5.7.2))(eslint@8.57.1)(typescript@5.7.2))(eslint@8.57.1): + eslint-plugin-playwright@1.8.3(eslint-plugin-jest@27.9.0(@typescript-eslint/eslint-plugin@7.18.0(@typescript-eslint/parser@7.18.0(eslint@8.57.1)(typescript@5.6.3))(eslint@8.57.1)(typescript@5.6.3))(eslint@8.57.1)(typescript@5.6.3))(eslint@8.57.1): dependencies: eslint: 8.57.1 globals: 13.24.0 optionalDependencies: - eslint-plugin-jest: 27.9.0(@typescript-eslint/eslint-plugin@7.18.0(@typescript-eslint/parser@7.18.0(eslint@8.57.1)(typescript@5.7.2))(eslint@8.57.1)(typescript@5.7.2))(eslint@8.57.1)(typescript@5.7.2) + eslint-plugin-jest: 27.9.0(@typescript-eslint/eslint-plugin@7.18.0(@typescript-eslint/parser@7.18.0(eslint@8.57.1)(typescript@5.6.3))(eslint@8.57.1)(typescript@5.6.3))(eslint@8.57.1)(typescript@5.6.3) eslint-plugin-promise@6.1.1(eslint@8.56.0): dependencies: @@ -14634,10 +14605,10 @@ snapshots: string.prototype.matchall: 4.0.11 string.prototype.repeat: 1.0.0 - eslint-plugin-storybook@0.8.0(eslint@8.56.0)(typescript@5.7.2): + eslint-plugin-storybook@0.8.0(eslint@8.56.0)(typescript@5.6.3): dependencies: '@storybook/csf': 0.0.1 - '@typescript-eslint/utils': 5.62.0(eslint@8.56.0)(typescript@5.7.2) + '@typescript-eslint/utils': 5.62.0(eslint@8.56.0)(typescript@5.6.3) eslint: 8.56.0 requireindex: 1.2.0 ts-dedent: 2.2.0 @@ -14656,10 +14627,10 @@ snapshots: - supports-color - typescript - eslint-plugin-storybook@0.8.0(eslint@8.57.1)(typescript@5.7.2): + eslint-plugin-storybook@0.8.0(eslint@8.57.1)(typescript@5.6.3): dependencies: '@storybook/csf': 0.0.1 - '@typescript-eslint/utils': 5.62.0(eslint@8.57.1)(typescript@5.7.2) + '@typescript-eslint/utils': 5.62.0(eslint@8.57.1)(typescript@5.6.3) eslint: 8.57.1 requireindex: 1.2.0 ts-dedent: 2.2.0 @@ -14667,9 +14638,9 @@ snapshots: - supports-color - typescript - eslint-plugin-testing-library@6.4.0(eslint@8.56.0)(typescript@5.7.2): + eslint-plugin-testing-library@6.4.0(eslint@8.56.0)(typescript@5.6.3): dependencies: - '@typescript-eslint/utils': 5.62.0(eslint@8.56.0)(typescript@5.7.2) + '@typescript-eslint/utils': 5.62.0(eslint@8.56.0)(typescript@5.6.3) eslint: 8.56.0 transitivePeerDependencies: - supports-color @@ -14683,9 +14654,9 @@ snapshots: - supports-color - typescript - eslint-plugin-testing-library@6.4.0(eslint@8.57.1)(typescript@5.7.2): + eslint-plugin-testing-library@6.4.0(eslint@8.57.1)(typescript@5.6.3): dependencies: - '@typescript-eslint/utils': 5.62.0(eslint@8.57.1)(typescript@5.7.2) + '@typescript-eslint/utils': 5.62.0(eslint@8.57.1)(typescript@5.6.3) eslint: 8.57.1 transitivePeerDependencies: - supports-color @@ -14782,13 +14753,24 @@ snapshots: transitivePeerDependencies: - supports-color - eslint-plugin-vitest@0.3.26(@typescript-eslint/eslint-plugin@7.18.0(@typescript-eslint/parser@7.18.0(eslint@8.56.0)(typescript@5.7.2))(eslint@8.56.0)(typescript@5.7.2))(eslint@8.56.0)(typescript@5.7.2)(vitest@2.1.8(@types/node@22.10.2)(jsdom@25.0.1)(sass@1.83.0)(terser@5.31.0)): + eslint-plugin-vitest@0.3.26(@typescript-eslint/eslint-plugin@7.18.0(@typescript-eslint/parser@7.18.0(eslint@8.56.0)(typescript@5.6.3))(eslint@8.56.0)(typescript@5.6.3))(eslint@8.56.0)(typescript@5.6.3)(vitest@2.1.4(@types/node@22.9.0)(jsdom@25.0.1)(sass@1.80.6)(terser@5.31.0)): dependencies: - '@typescript-eslint/utils': 7.18.0(eslint@8.56.0)(typescript@5.7.2) + '@typescript-eslint/utils': 7.18.0(eslint@8.56.0)(typescript@5.6.3) eslint: 8.56.0 optionalDependencies: - '@typescript-eslint/eslint-plugin': 7.18.0(@typescript-eslint/parser@7.18.0(eslint@8.56.0)(typescript@5.7.2))(eslint@8.56.0)(typescript@5.7.2) - vitest: 2.1.8(@types/node@22.10.2)(jsdom@25.0.1)(sass@1.83.0)(terser@5.31.0) + '@typescript-eslint/eslint-plugin': 7.18.0(@typescript-eslint/parser@7.18.0(eslint@8.56.0)(typescript@5.6.3))(eslint@8.56.0)(typescript@5.6.3) + vitest: 2.1.4(@types/node@22.9.0)(jsdom@25.0.1)(sass@1.80.6)(terser@5.31.0) + transitivePeerDependencies: + - supports-color + - typescript + + eslint-plugin-vitest@0.3.26(@typescript-eslint/eslint-plugin@7.18.0(@typescript-eslint/parser@7.18.0(eslint@8.56.0)(typescript@5.6.3))(eslint@8.56.0)(typescript@5.6.3))(eslint@8.56.0)(typescript@5.6.3)(vitest@2.1.5(@types/node@22.9.0)(jsdom@25.0.1)(sass@1.80.6)(terser@5.31.0)): + dependencies: + '@typescript-eslint/utils': 7.18.0(eslint@8.56.0)(typescript@5.6.3) + eslint: 8.56.0 + optionalDependencies: + '@typescript-eslint/eslint-plugin': 7.18.0(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.6.3))(eslint@8.56.0)(typescript@5.6.3) + vitest: 2.1.5(@types/node@22.9.0)(jsdom@25.0.1)(sass@1.80.6)(terser@5.31.0) transitivePeerDependencies: - supports-color - typescript @@ -14803,13 +14785,13 @@ snapshots: - supports-color - typescript - eslint-plugin-vitest@0.3.26(@typescript-eslint/eslint-plugin@7.18.0(@typescript-eslint/parser@7.18.0(eslint@8.57.1)(typescript@5.7.2))(eslint@8.57.1)(typescript@5.7.2))(eslint@8.57.1)(typescript@5.7.2)(vitest@2.1.8(@types/node@20.16.15)(jsdom@25.0.1)(sass@1.83.0)(terser@5.31.0)): + eslint-plugin-vitest@0.3.26(@typescript-eslint/eslint-plugin@7.18.0(@typescript-eslint/parser@7.18.0(eslint@8.57.1)(typescript@5.6.3))(eslint@8.57.1)(typescript@5.6.3))(eslint@8.57.1)(typescript@5.6.3)(vitest@2.1.4(@types/node@20.16.15)(jsdom@25.0.1)(sass@1.80.6)(terser@5.31.0)): dependencies: - '@typescript-eslint/utils': 7.18.0(eslint@8.57.1)(typescript@5.7.2) + '@typescript-eslint/utils': 7.18.0(eslint@8.57.1)(typescript@5.6.3) eslint: 8.57.1 optionalDependencies: - '@typescript-eslint/eslint-plugin': 7.18.0(@typescript-eslint/parser@7.18.0(eslint@8.57.1)(typescript@5.7.2))(eslint@8.57.1)(typescript@5.7.2) - vitest: 2.1.8(@types/node@20.16.15)(jsdom@25.0.1)(sass@1.83.0)(terser@5.31.0) + '@typescript-eslint/eslint-plugin': 7.18.0(@typescript-eslint/parser@7.18.0(eslint@8.57.1)(typescript@5.6.3))(eslint@8.57.1)(typescript@5.6.3) + vitest: 2.1.4(@types/node@20.16.15)(jsdom@25.0.1)(sass@1.80.6)(terser@5.31.0) transitivePeerDependencies: - supports-color - typescript @@ -14966,8 +14948,8 @@ snapshots: espree@9.6.1: dependencies: - acorn: 8.14.0 - acorn-jsx: 5.3.2(acorn@8.14.0) + acorn: 8.13.0 + acorn-jsx: 5.3.2(acorn@8.13.0) eslint-visitor-keys: 3.4.3 esprima@4.0.1: {} @@ -15252,9 +15234,9 @@ snapshots: cross-spawn: 7.0.3 signal-exit: 4.1.0 - fork-ts-checker-webpack-plugin@8.0.0(typescript@5.6.3)(webpack@5.91.0(@swc/core@1.7.39(@swc/helpers@0.5.15))(esbuild@0.23.1)): + fork-ts-checker-webpack-plugin@8.0.0(typescript@5.6.3)(webpack@5.91.0(@swc/core@1.7.39(@swc/helpers@0.5.13))(esbuild@0.23.1)): dependencies: - '@babel/code-frame': 7.26.2 + '@babel/code-frame': 7.25.9 chalk: 4.1.2 chokidar: 3.6.0 cosmiconfig: 7.1.0 @@ -15267,7 +15249,7 @@ snapshots: semver: 7.6.3 tapable: 2.2.1 typescript: 5.6.3 - webpack: 5.91.0(@swc/core@1.7.39(@swc/helpers@0.5.15))(esbuild@0.23.1) + webpack: 5.91.0(@swc/core@1.7.39(@swc/helpers@0.5.13))(esbuild@0.23.1) form-data@4.0.1: dependencies: @@ -15402,7 +15384,7 @@ snapshots: glob@10.4.2: dependencies: - foreground-child: 3.3.0 + foreground-child: 3.1.1 jackspeak: 3.1.2 minimatch: 9.0.5 minipass: 7.1.2 @@ -15672,7 +15654,7 @@ snapshots: html-tags@3.2.0: {} - html-webpack-plugin@5.6.0(webpack@5.91.0(@swc/core@1.7.39(@swc/helpers@0.5.15))(esbuild@0.23.1)): + html-webpack-plugin@5.6.0(webpack@5.91.0(@swc/core@1.7.39(@swc/helpers@0.5.13))(esbuild@0.23.1)): dependencies: '@types/html-minifier-terser': 6.1.0 html-minifier-terser: 6.1.0 @@ -15680,7 +15662,7 @@ snapshots: pretty-error: 4.0.0 tapable: 2.2.1 optionalDependencies: - webpack: 5.91.0(@swc/core@1.7.39(@swc/helpers@0.5.15))(esbuild@0.23.1) + webpack: 5.91.0(@swc/core@1.7.39(@swc/helpers@0.5.13))(esbuild@0.23.1) htmlparser2@6.1.0: dependencies: @@ -15762,8 +15744,6 @@ snapshots: immutable@4.3.7: {} - immutable@5.0.3: {} - import-fresh@3.3.0: dependencies: parent-module: 1.0.1 @@ -15995,8 +15975,8 @@ snapshots: istanbul-lib-instrument@6.0.3: dependencies: - '@babel/core': 7.26.0 - '@babel/parser': 7.26.3 + '@babel/core': 7.25.9 + '@babel/parser': 7.25.9 '@istanbuljs/schema': 0.1.3 istanbul-lib-coverage: 3.2.2 semver: 7.6.3 @@ -16056,7 +16036,7 @@ snapshots: jest-worker@27.5.1: dependencies: - '@types/node': 22.9.0 + '@types/node': 22.7.9 merge-stream: 2.0.0 supports-color: 8.1.1 @@ -16279,8 +16259,8 @@ snapshots: magicast@0.3.5: dependencies: - '@babel/parser': 7.26.3 - '@babel/types': 7.26.3 + '@babel/parser': 7.25.9 + '@babel/types': 7.25.9 source-map-js: 1.2.1 make-dir@3.1.0: @@ -16323,7 +16303,7 @@ snapshots: dependencies: react: 18.3.1 - marked@15.0.4: {} + marked@15.0.0: {} md5.js@1.3.5: dependencies: @@ -16929,7 +16909,7 @@ snapshots: pkg-types: 1.2.0 ufo: 1.5.4 - monocart-coverage-reports@2.11.4: + monocart-coverage-reports@2.11.2: dependencies: acorn: 8.14.0 acorn-loose: 8.4.0 @@ -16976,12 +16956,12 @@ snapshots: netmask@2.0.2: {} - next-mdx-remote@5.0.0(@types/react@19.0.1)(acorn@8.14.0)(react@19.0.0): + next-mdx-remote@5.0.0(@types/react@18.3.12)(acorn@8.14.0)(react@18.3.1): dependencies: '@babel/code-frame': 7.25.9 '@mdx-js/mdx': 3.1.0(acorn@8.14.0) - '@mdx-js/react': 3.1.0(@types/react@19.0.1)(react@19.0.0) - react: 19.0.0 + '@mdx-js/react': 3.1.0(@types/react@18.3.12)(react@18.3.1) + react: 18.3.1 unist-util-remove: 3.1.1 vfile: 6.0.3 vfile-matter: 5.0.0 @@ -16992,11 +16972,11 @@ snapshots: next-tick@1.1.0: {} - next@15.1.0(@babel/core@7.25.9)(@playwright/test@1.49.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.80.3): + next@15.0.3(@babel/core@7.25.9)(@playwright/test@1.48.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.80.3): dependencies: - '@next/env': 15.1.0 + '@next/env': 15.0.3 '@swc/counter': 0.1.3 - '@swc/helpers': 0.5.15 + '@swc/helpers': 0.5.13 busboy: 1.6.0 caniuse-lite: 1.0.30001669 postcss: 8.4.31 @@ -17004,43 +16984,43 @@ snapshots: react-dom: 18.3.1(react@18.3.1) styled-jsx: 5.1.6(@babel/core@7.25.9)(react@18.3.1) optionalDependencies: - '@next/swc-darwin-arm64': 15.1.0 - '@next/swc-darwin-x64': 15.1.0 - '@next/swc-linux-arm64-gnu': 15.1.0 - '@next/swc-linux-arm64-musl': 15.1.0 - '@next/swc-linux-x64-gnu': 15.1.0 - '@next/swc-linux-x64-musl': 15.1.0 - '@next/swc-win32-arm64-msvc': 15.1.0 - '@next/swc-win32-x64-msvc': 15.1.0 - '@playwright/test': 1.49.1 + '@next/swc-darwin-arm64': 15.0.3 + '@next/swc-darwin-x64': 15.0.3 + '@next/swc-linux-arm64-gnu': 15.0.3 + '@next/swc-linux-arm64-musl': 15.0.3 + '@next/swc-linux-x64-gnu': 15.0.3 + '@next/swc-linux-x64-musl': 15.0.3 + '@next/swc-win32-arm64-msvc': 15.0.3 + '@next/swc-win32-x64-msvc': 15.0.3 + '@playwright/test': 1.48.2 sass: 1.80.3 sharp: 0.33.5 transitivePeerDependencies: - '@babel/core' - babel-plugin-macros - next@15.1.0(@babel/core@7.26.0)(@playwright/test@1.49.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(sass@1.83.0): + next@15.0.3(@playwright/test@1.48.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.80.6): dependencies: - '@next/env': 15.1.0 + '@next/env': 15.0.3 '@swc/counter': 0.1.3 - '@swc/helpers': 0.5.15 + '@swc/helpers': 0.5.13 busboy: 1.6.0 caniuse-lite: 1.0.30001669 postcss: 8.4.31 - react: 19.0.0 - react-dom: 19.0.0(react@19.0.0) - styled-jsx: 5.1.6(@babel/core@7.26.0)(react@19.0.0) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + styled-jsx: 5.1.6(@babel/core@7.25.9)(react@18.3.1) optionalDependencies: - '@next/swc-darwin-arm64': 15.1.0 - '@next/swc-darwin-x64': 15.1.0 - '@next/swc-linux-arm64-gnu': 15.1.0 - '@next/swc-linux-arm64-musl': 15.1.0 - '@next/swc-linux-x64-gnu': 15.1.0 - '@next/swc-linux-x64-musl': 15.1.0 - '@next/swc-win32-arm64-msvc': 15.1.0 - '@next/swc-win32-x64-msvc': 15.1.0 - '@playwright/test': 1.49.1 - sass: 1.83.0 + '@next/swc-darwin-arm64': 15.0.3 + '@next/swc-darwin-x64': 15.0.3 + '@next/swc-linux-arm64-gnu': 15.0.3 + '@next/swc-linux-arm64-musl': 15.0.3 + '@next/swc-linux-x64-gnu': 15.0.3 + '@next/swc-linux-x64-musl': 15.0.3 + '@next/swc-win32-arm64-msvc': 15.0.3 + '@next/swc-win32-x64-msvc': 15.0.3 + '@playwright/test': 1.48.2 + sass: 1.80.6 sharp: 0.33.5 transitivePeerDependencies: - '@babel/core' @@ -17078,7 +17058,7 @@ snapshots: - bluebird - supports-color - node-polyfill-webpack-plugin@2.0.1(webpack@5.91.0(@swc/core@1.7.39(@swc/helpers@0.5.15))(esbuild@0.23.1)): + node-polyfill-webpack-plugin@2.0.1(webpack@5.91.0(@swc/core@1.7.39(@swc/helpers@0.5.13))(esbuild@0.23.1)): dependencies: assert: 2.1.0 browserify-zlib: 0.2.0 @@ -17105,7 +17085,7 @@ snapshots: url: 0.11.3 util: 0.12.5 vm-browserify: 1.1.2 - webpack: 5.91.0(@swc/core@1.7.39(@swc/helpers@0.5.15))(esbuild@0.23.1) + webpack: 5.91.0(@swc/core@1.7.39(@swc/helpers@0.5.13))(esbuild@0.23.1) node-releases@2.0.18: {} @@ -17376,14 +17356,14 @@ snapshots: parse-json@5.2.0: dependencies: - '@babel/code-frame': 7.26.2 + '@babel/code-frame': 7.25.9 error-ex: 1.3.2 json-parse-even-better-errors: 2.3.1 lines-and-columns: 1.2.4 parse-json@7.1.1: dependencies: - '@babel/code-frame': 7.26.2 + '@babel/code-frame': 7.25.9 error-ex: 1.3.2 json-parse-even-better-errors: 3.0.2 lines-and-columns: 2.0.4 @@ -17483,7 +17463,7 @@ snapshots: playwright-core@1.48.1: {} - playwright-core@1.49.1: {} + playwright-core@1.48.2: {} playwright@1.48.1: dependencies: @@ -17491,9 +17471,9 @@ snapshots: optionalDependencies: fsevents: 2.3.2 - playwright@1.49.1: + playwright@1.48.2: dependencies: - playwright-core: 1.49.1 + playwright-core: 1.48.2 optionalDependencies: fsevents: 2.3.2 @@ -17523,22 +17503,22 @@ snapshots: possible-typed-array-names@1.0.0: {} - postcss-load-config@6.0.1(jiti@1.21.0)(postcss@8.4.49)(yaml@2.6.0): + postcss-load-config@6.0.1(jiti@1.21.0)(postcss@8.4.47)(yaml@2.6.0): dependencies: lilconfig: 3.1.2 optionalDependencies: jiti: 1.21.0 - postcss: 8.4.49 + postcss: 8.4.47 yaml: 2.6.0 - postcss-loader@8.1.1(postcss@8.4.47)(typescript@5.6.3)(webpack@5.91.0(@swc/core@1.7.39(@swc/helpers@0.5.15))(esbuild@0.23.1)): + postcss-loader@8.1.1(postcss@8.4.47)(typescript@5.6.3)(webpack@5.91.0(@swc/core@1.7.39(@swc/helpers@0.5.13))(esbuild@0.23.1)): dependencies: cosmiconfig: 9.0.0(typescript@5.6.3) jiti: 1.21.0 postcss: 8.4.47 semver: 7.6.3 optionalDependencies: - webpack: 5.91.0(@swc/core@1.7.39(@swc/helpers@0.5.15))(esbuild@0.23.1) + webpack: 5.91.0(@swc/core@1.7.39(@swc/helpers@0.5.13))(esbuild@0.23.1) transitivePeerDependencies: - typescript @@ -17582,12 +17562,6 @@ snapshots: picocolors: 1.1.1 source-map-js: 1.2.1 - postcss@8.4.49: - dependencies: - nanoid: 3.3.7 - picocolors: 1.1.1 - source-map-js: 1.2.1 - prelude-ls@1.2.1: {} prettier-plugin-packagejson@2.5.3(prettier@3.3.3): @@ -17689,10 +17663,10 @@ snapshots: - supports-color - utf-8-validate - puppeteer@22.3.0(encoding@0.1.13)(typescript@5.7.2): + puppeteer@22.3.0(encoding@0.1.13)(typescript@5.6.3): dependencies: '@puppeteer/browsers': 2.1.0 - cosmiconfig: 9.0.0(typescript@5.7.2) + cosmiconfig: 9.0.0(typescript@5.6.3) puppeteer-core: 22.3.0(encoding@0.1.13) transitivePeerDependencies: - bufferutil @@ -17753,9 +17727,9 @@ snapshots: react-docgen@7.0.1: dependencies: - '@babel/core': 7.26.0 + '@babel/core': 7.25.9 '@babel/traverse': 7.25.9 - '@babel/types': 7.26.3 + '@babel/types': 7.25.9 '@types/babel__core': 7.20.5 '@types/babel__traverse': 7.20.6 '@types/doctrine': 0.0.9 @@ -17772,16 +17746,6 @@ snapshots: react: 18.3.1 scheduler: 0.23.2 - react-dom@19.0.0(react@18.3.1): - dependencies: - react: 18.3.1 - scheduler: 0.25.0 - - react-dom@19.0.0(react@19.0.0): - dependencies: - react: 19.0.0 - scheduler: 0.25.0 - react-element-to-jsx-string@15.0.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1): dependencies: '@base2/pretty-print-object': 1.0.1 @@ -17802,8 +17766,6 @@ snapshots: dependencies: loose-envify: 1.4.0 - react@19.0.0: {} - read-package-json-fast@3.0.2: dependencies: json-parse-even-better-errors: 3.0.2 @@ -18179,10 +18141,10 @@ snapshots: safer-buffer@2.1.2: {} - sass-loader@13.3.3(sass@1.80.3)(webpack@5.91.0(@swc/core@1.7.39(@swc/helpers@0.5.15))(esbuild@0.23.1)): + sass-loader@13.3.3(sass@1.80.3)(webpack@5.91.0(@swc/core@1.7.39(@swc/helpers@0.5.13))(esbuild@0.23.1)): dependencies: neo-async: 2.6.2 - webpack: 5.91.0(@swc/core@1.7.39(@swc/helpers@0.5.15))(esbuild@0.23.1) + webpack: 5.91.0(@swc/core@1.7.39(@swc/helpers@0.5.13))(esbuild@0.23.1) optionalDependencies: sass: 1.80.3 @@ -18193,10 +18155,10 @@ snapshots: immutable: 4.3.7 source-map-js: 1.2.1 - sass@1.83.0: + sass@1.80.6: dependencies: chokidar: 4.0.1 - immutable: 5.0.3 + immutable: 4.3.7 source-map-js: 1.2.1 optionalDependencies: '@parcel/watcher': 2.4.1 @@ -18211,8 +18173,6 @@ snapshots: dependencies: loose-envify: 1.4.0 - scheduler@0.25.0: {} - schema-utils@3.3.0: dependencies: '@types/json-schema': 7.0.15 @@ -18404,7 +18364,7 @@ snapshots: smart-buffer@4.2.0: {} - smooth-zoom@1.5.0: {} + smooth-zoom@1.4.1: {} socks-proxy-agent@7.0.0: dependencies: @@ -18488,17 +18448,19 @@ snapshots: statuses@2.0.1: {} + std-env@3.7.0: {} + std-env@3.8.0: {} - storybook-addon-swc@1.2.0(@swc/core@1.7.39(@swc/helpers@0.5.15))(terser-webpack-plugin@5.3.10(@swc/core@1.7.39(@swc/helpers@0.5.15))(esbuild@0.23.1)(webpack@5.91.0(@swc/core@1.7.39(@swc/helpers@0.5.15))(esbuild@0.23.1)))(webpack@5.91.0(@swc/core@1.7.39(@swc/helpers@0.5.15))(esbuild@0.23.1)): + storybook-addon-swc@1.2.0(@swc/core@1.7.39(@swc/helpers@0.5.13))(terser-webpack-plugin@5.3.10(@swc/core@1.7.39(@swc/helpers@0.5.13))(esbuild@0.23.1)(webpack@5.91.0(@swc/core@1.7.39(@swc/helpers@0.5.13))(esbuild@0.23.1)))(webpack@5.91.0(@swc/core@1.7.39(@swc/helpers@0.5.13))(esbuild@0.23.1)): dependencies: '@babel/runtime': 7.24.5 - '@swc/core': 1.7.39(@swc/helpers@0.5.15) + '@swc/core': 1.7.39(@swc/helpers@0.5.13) deepmerge: 4.3.1 - swc-loader: 0.1.16(@swc/core@1.7.39(@swc/helpers@0.5.15))(webpack@5.91.0(@swc/core@1.7.39(@swc/helpers@0.5.15))(esbuild@0.23.1)) + swc-loader: 0.1.16(@swc/core@1.7.39(@swc/helpers@0.5.13))(webpack@5.91.0(@swc/core@1.7.39(@swc/helpers@0.5.13))(esbuild@0.23.1)) optionalDependencies: - terser-webpack-plugin: 5.3.10(@swc/core@1.7.39(@swc/helpers@0.5.15))(esbuild@0.23.1)(webpack@5.91.0(@swc/core@1.7.39(@swc/helpers@0.5.15))(esbuild@0.23.1)) - webpack: 5.91.0(@swc/core@1.7.39(@swc/helpers@0.5.15))(esbuild@0.23.1) + terser-webpack-plugin: 5.3.10(@swc/core@1.7.39(@swc/helpers@0.5.13))(esbuild@0.23.1)(webpack@5.91.0(@swc/core@1.7.39(@swc/helpers@0.5.13))(esbuild@0.23.1)) + webpack: 5.91.0(@swc/core@1.7.39(@swc/helpers@0.5.13))(esbuild@0.23.1) storybook@8.3.6: dependencies: @@ -18633,9 +18595,9 @@ snapshots: strip-json-comments@3.1.1: {} - style-loader@3.3.4(webpack@5.91.0(@swc/core@1.7.39(@swc/helpers@0.5.15))(esbuild@0.23.1)): + style-loader@3.3.4(webpack@5.91.0(@swc/core@1.7.39(@swc/helpers@0.5.13))(esbuild@0.23.1)): dependencies: - webpack: 5.91.0(@swc/core@1.7.39(@swc/helpers@0.5.15))(esbuild@0.23.1) + webpack: 5.91.0(@swc/core@1.7.39(@swc/helpers@0.5.13))(esbuild@0.23.1) style-to-object@0.4.4: dependencies: @@ -18652,13 +18614,6 @@ snapshots: optionalDependencies: '@babel/core': 7.25.9 - styled-jsx@5.1.6(@babel/core@7.26.0)(react@19.0.0): - dependencies: - client-only: 0.0.1 - react: 19.0.0 - optionalDependencies: - '@babel/core': 7.26.0 - sucrase@3.35.0: dependencies: '@jridgewell/gen-mapping': 0.3.5 @@ -18711,10 +18666,10 @@ snapshots: svgpath@2.6.0: {} - swc-loader@0.1.16(@swc/core@1.7.39(@swc/helpers@0.5.15))(webpack@5.91.0(@swc/core@1.7.39(@swc/helpers@0.5.15))(esbuild@0.23.1)): + swc-loader@0.1.16(@swc/core@1.7.39(@swc/helpers@0.5.13))(webpack@5.91.0(@swc/core@1.7.39(@swc/helpers@0.5.13))(esbuild@0.23.1)): dependencies: - '@swc/core': 1.7.39(@swc/helpers@0.5.15) - webpack: 5.91.0(@swc/core@1.7.39(@swc/helpers@0.5.15))(esbuild@0.23.1) + '@swc/core': 1.7.39(@swc/helpers@0.5.13) + webpack: 5.91.0(@swc/core@1.7.39(@swc/helpers@0.5.13))(esbuild@0.23.1) symbol-tree@3.2.4: {} @@ -18759,16 +18714,16 @@ snapshots: term-size@2.2.1: {} - terser-webpack-plugin@5.3.10(@swc/core@1.7.39(@swc/helpers@0.5.15))(esbuild@0.23.1)(webpack@5.91.0(@swc/core@1.7.39(@swc/helpers@0.5.15))(esbuild@0.23.1)): + terser-webpack-plugin@5.3.10(@swc/core@1.7.39(@swc/helpers@0.5.13))(esbuild@0.23.1)(webpack@5.91.0(@swc/core@1.7.39(@swc/helpers@0.5.13))(esbuild@0.23.1)): dependencies: '@jridgewell/trace-mapping': 0.3.25 jest-worker: 27.5.1 schema-utils: 3.3.0 serialize-javascript: 6.0.2 terser: 5.31.0 - webpack: 5.91.0(@swc/core@1.7.39(@swc/helpers@0.5.15))(esbuild@0.23.1) + webpack: 5.91.0(@swc/core@1.7.39(@swc/helpers@0.5.13))(esbuild@0.23.1) optionalDependencies: - '@swc/core': 1.7.39(@swc/helpers@0.5.15) + '@swc/core': 1.7.39(@swc/helpers@0.5.13) esbuild: 0.23.1 terser@5.31.0: @@ -18866,10 +18821,6 @@ snapshots: dependencies: typescript: 5.6.3 - ts-api-utils@1.3.0(typescript@5.7.2): - dependencies: - typescript: 5.7.2 - ts-dedent@2.2.0: {} ts-interface-checker@0.1.13: {} @@ -18901,7 +18852,7 @@ snapshots: tslib@2.8.0: {} - tsup@8.3.5(@microsoft/api-extractor@7.47.11(@types/node@22.10.2))(@swc/core@1.7.39(@swc/helpers@0.5.15))(jiti@1.21.0)(postcss@8.4.49)(typescript@5.7.2)(yaml@2.6.0): + tsup@8.3.5(@microsoft/api-extractor@7.47.11(@types/node@22.9.0))(@swc/core@1.7.39(@swc/helpers@0.5.13))(jiti@1.21.0)(postcss@8.4.47)(typescript@5.6.3)(yaml@2.6.0): dependencies: bundle-require: 5.0.0(esbuild@0.24.0) cac: 6.7.14 @@ -18911,7 +18862,7 @@ snapshots: esbuild: 0.24.0 joycon: 3.1.1 picocolors: 1.1.1 - postcss-load-config: 6.0.1(jiti@1.21.0)(postcss@8.4.49)(yaml@2.6.0) + postcss-load-config: 6.0.1(jiti@1.21.0)(postcss@8.4.47)(yaml@2.6.0) resolve-from: 5.0.0 rollup: 4.24.0 source-map: 0.8.0-beta.0 @@ -18920,10 +18871,10 @@ snapshots: tinyglobby: 0.2.10 tree-kill: 1.2.2 optionalDependencies: - '@microsoft/api-extractor': 7.47.11(@types/node@22.10.2) - '@swc/core': 1.7.39(@swc/helpers@0.5.15) - postcss: 8.4.49 - typescript: 5.7.2 + '@microsoft/api-extractor': 7.47.11(@types/node@22.9.0) + '@swc/core': 1.7.39(@swc/helpers@0.5.13) + postcss: 8.4.47 + typescript: 5.6.3 transitivePeerDependencies: - jiti - supports-color @@ -18935,11 +18886,6 @@ snapshots: tslib: 1.14.1 typescript: 5.6.3 - tsutils@3.21.0(typescript@5.7.2): - dependencies: - tslib: 1.14.1 - typescript: 5.7.2 - ttf2eot@3.1.0: dependencies: argparse: 2.0.1 @@ -19049,8 +18995,6 @@ snapshots: typescript@5.6.3: {} - typescript@5.7.2: {} - ufo@1.5.4: {} uglify-js@3.17.4: @@ -19070,8 +19014,6 @@ snapshots: undici-types@6.19.8: {} - undici-types@6.20.0: {} - unicode-canonical-property-names-ecmascript@2.0.0: {} unicode-match-property-ecmascript@2.0.0: @@ -19290,13 +19232,29 @@ snapshots: '@types/unist': 3.0.3 vfile-message: 4.0.2 - vite-node@2.1.8(@types/node@20.16.15)(sass@1.83.0)(terser@5.31.0): + vite-node@2.1.4(@types/node@20.16.15)(sass@1.80.6)(terser@5.31.0): + dependencies: + cac: 6.7.14 + debug: 4.3.7 + pathe: 1.1.2 + vite: 5.4.11(@types/node@20.16.15)(sass@1.80.6)(terser@5.31.0) + transitivePeerDependencies: + - '@types/node' + - less + - lightningcss + - sass + - sass-embedded + - stylus + - sugarss + - supports-color + - terser + + vite-node@2.1.4(@types/node@22.9.0)(sass@1.80.6)(terser@5.31.0): dependencies: cac: 6.7.14 debug: 4.3.7 - es-module-lexer: 1.5.4 pathe: 1.1.2 - vite: 5.4.11(@types/node@20.16.15)(sass@1.83.0)(terser@5.31.0) + vite: 5.4.11(@types/node@22.9.0)(sass@1.80.6)(terser@5.31.0) transitivePeerDependencies: - '@types/node' - less @@ -19308,13 +19266,13 @@ snapshots: - supports-color - terser - vite-node@2.1.8(@types/node@22.10.2)(sass@1.83.0)(terser@5.31.0): + vite-node@2.1.5(@types/node@22.9.0)(sass@1.80.6)(terser@5.31.0): dependencies: cac: 6.7.14 debug: 4.3.7 es-module-lexer: 1.5.4 pathe: 1.1.2 - vite: 5.4.11(@types/node@22.10.2)(sass@1.83.0)(terser@5.31.0) + vite: 5.4.11(@types/node@22.9.0)(sass@1.80.6)(terser@5.31.0) transitivePeerDependencies: - '@types/node' - less @@ -19326,114 +19284,124 @@ snapshots: - supports-color - terser - vite-plugin-dts@4.3.0(@types/node@22.10.2)(rollup@4.24.0)(typescript@5.7.2)(vite@5.4.11(@types/node@22.10.2)(sass@1.83.0)(terser@5.31.0)): + vite-plugin-dts@4.3.0(@types/node@22.9.0)(rollup@4.24.0)(typescript@5.6.3)(vite@5.4.11(@types/node@22.9.0)(sass@1.80.6)(terser@5.31.0)): dependencies: - '@microsoft/api-extractor': 7.47.11(@types/node@22.10.2) + '@microsoft/api-extractor': 7.47.11(@types/node@22.9.0) '@rollup/pluginutils': 5.1.0(rollup@4.24.0) '@volar/typescript': 2.4.5 - '@vue/language-core': 2.1.6(typescript@5.7.2) + '@vue/language-core': 2.1.6(typescript@5.6.3) compare-versions: 6.1.1 debug: 4.3.7 kolorist: 1.8.0 local-pkg: 0.5.0 magic-string: 0.30.12 - typescript: 5.7.2 + typescript: 5.6.3 optionalDependencies: - vite: 5.4.11(@types/node@22.10.2)(sass@1.83.0)(terser@5.31.0) + vite: 5.4.11(@types/node@22.9.0)(sass@1.80.6)(terser@5.31.0) transitivePeerDependencies: - '@types/node' - rollup - supports-color - vite-plugin-lib-inject-css@2.1.1(vite@5.4.11(@types/node@22.10.2)(sass@1.83.0)(terser@5.31.0)): + vite-plugin-lib-inject-css@2.1.1(vite@5.4.11(@types/node@22.9.0)(sass@1.80.6)(terser@5.31.0)): dependencies: '@ast-grep/napi': 0.22.4 magic-string: 0.30.10 picocolors: 1.0.0 - vite: 5.4.11(@types/node@22.10.2)(sass@1.83.0)(terser@5.31.0) + vite: 5.4.11(@types/node@22.9.0)(sass@1.80.6)(terser@5.31.0) - vite-plugin-static-copy@2.2.0(vite@5.4.11(@types/node@22.10.2)(sass@1.83.0)(terser@5.31.0)): + vite-plugin-static-copy@2.1.0(vite@5.4.11(@types/node@22.9.0)(sass@1.80.6)(terser@5.31.0)): dependencies: chokidar: 3.6.0 fast-glob: 3.3.2 fs-extra: 11.2.0 picocolors: 1.1.1 - vite: 5.4.11(@types/node@22.10.2)(sass@1.83.0)(terser@5.31.0) + vite: 5.4.11(@types/node@22.9.0)(sass@1.80.6)(terser@5.31.0) - vite@5.4.10(@types/node@22.10.2)(sass@1.80.3)(terser@5.31.0): + vite@5.4.10(@types/node@22.9.0)(sass@1.80.3)(terser@5.31.0): dependencies: esbuild: 0.21.5 postcss: 8.4.47 rollup: 4.24.0 optionalDependencies: - '@types/node': 22.10.2 + '@types/node': 22.9.0 fsevents: 2.3.3 sass: 1.80.3 terser: 5.31.0 - vite@5.4.11(@types/node@20.16.15)(sass@1.83.0)(terser@5.31.0): + vite@5.4.11(@types/node@20.16.15)(sass@1.80.6)(terser@5.31.0): dependencies: esbuild: 0.21.5 - postcss: 8.4.49 + postcss: 8.4.47 rollup: 4.24.0 optionalDependencies: '@types/node': 20.16.15 fsevents: 2.3.3 - sass: 1.83.0 + sass: 1.80.6 terser: 5.31.0 - vite@5.4.11(@types/node@22.10.2)(sass@1.83.0)(terser@5.31.0): + vite@5.4.11(@types/node@22.9.0)(sass@1.80.6)(terser@5.31.0): dependencies: esbuild: 0.21.5 - postcss: 8.4.49 + postcss: 8.4.47 rollup: 4.24.0 optionalDependencies: - '@types/node': 22.10.2 + '@types/node': 22.9.0 fsevents: 2.3.3 - sass: 1.83.0 + sass: 1.80.6 terser: 5.31.0 - vitest-monocart-coverage@2.1.2(vitest@2.1.8(@types/node@20.16.15)(jsdom@25.0.1)(sass@1.83.0)(terser@5.31.0)): + vitest-monocart-coverage@2.1.2(vitest@2.1.4(@types/node@20.16.15)(jsdom@25.0.1)(sass@1.80.6)(terser@5.31.0)): dependencies: - '@vitest/coverage-istanbul': 2.1.5(vitest@2.1.8(@types/node@20.16.15)(jsdom@25.0.1)(sass@1.83.0)(terser@5.31.0)) - '@vitest/coverage-v8': 2.1.5(vitest@2.1.8(@types/node@20.16.15)(jsdom@25.0.1)(sass@1.83.0)(terser@5.31.0)) - monocart-coverage-reports: 2.11.4 + '@vitest/coverage-istanbul': 2.1.5(vitest@2.1.4(@types/node@20.16.15)(jsdom@25.0.1)(sass@1.80.6)(terser@5.31.0)) + '@vitest/coverage-v8': 2.1.5(vitest@2.1.4(@types/node@20.16.15)(jsdom@25.0.1)(sass@1.80.6)(terser@5.31.0)) + monocart-coverage-reports: 2.11.2 transitivePeerDependencies: - '@vitest/browser' - supports-color - vitest - vitest-monocart-coverage@2.1.2(vitest@2.1.8(@types/node@22.10.2)(jsdom@25.0.1)(sass@1.83.0)(terser@5.31.0)): + vitest-monocart-coverage@2.1.2(vitest@2.1.4(@types/node@22.9.0)(jsdom@25.0.1)(sass@1.80.6)(terser@5.31.0)): dependencies: - '@vitest/coverage-istanbul': 2.1.5(vitest@2.1.8(@types/node@22.10.2)(jsdom@25.0.1)(sass@1.83.0)(terser@5.31.0)) - '@vitest/coverage-v8': 2.1.5(vitest@2.1.8(@types/node@22.10.2)(jsdom@25.0.1)(sass@1.83.0)(terser@5.31.0)) - monocart-coverage-reports: 2.11.4 + '@vitest/coverage-istanbul': 2.1.5(vitest@2.1.4(@types/node@22.9.0)(jsdom@25.0.1)(sass@1.80.6)(terser@5.31.0)) + '@vitest/coverage-v8': 2.1.5(vitest@2.1.4(@types/node@22.9.0)(jsdom@25.0.1)(sass@1.80.6)(terser@5.31.0)) + monocart-coverage-reports: 2.11.2 transitivePeerDependencies: - '@vitest/browser' - supports-color - vitest - vitest@2.1.8(@types/node@20.16.15)(jsdom@25.0.1)(sass@1.83.0)(terser@5.31.0): + vitest-monocart-coverage@2.1.2(vitest@2.1.5(@types/node@22.9.0)(jsdom@25.0.1)(sass@1.80.6)(terser@5.31.0)): dependencies: - '@vitest/expect': 2.1.8 - '@vitest/mocker': 2.1.8(vite@5.4.11(@types/node@20.16.15)(sass@1.83.0)(terser@5.31.0)) - '@vitest/pretty-format': 2.1.8 - '@vitest/runner': 2.1.8 - '@vitest/snapshot': 2.1.8 - '@vitest/spy': 2.1.8 - '@vitest/utils': 2.1.8 + '@vitest/coverage-istanbul': 2.1.5(vitest@2.1.5(@types/node@22.9.0)(jsdom@25.0.1)(sass@1.80.6)(terser@5.31.0)) + '@vitest/coverage-v8': 2.1.5(vitest@2.1.5(@types/node@22.9.0)(jsdom@25.0.1)(sass@1.80.6)(terser@5.31.0)) + monocart-coverage-reports: 2.11.2 + transitivePeerDependencies: + - '@vitest/browser' + - supports-color + - vitest + + vitest@2.1.4(@types/node@20.16.15)(jsdom@25.0.1)(sass@1.80.6)(terser@5.31.0): + dependencies: + '@vitest/expect': 2.1.4 + '@vitest/mocker': 2.1.4(vite@5.4.11(@types/node@20.16.15)(sass@1.80.6)(terser@5.31.0)) + '@vitest/pretty-format': 2.1.4 + '@vitest/runner': 2.1.4 + '@vitest/snapshot': 2.1.4 + '@vitest/spy': 2.1.4 + '@vitest/utils': 2.1.4 chai: 5.1.2 debug: 4.3.7 expect-type: 1.1.0 magic-string: 0.30.12 pathe: 1.1.2 - std-env: 3.8.0 + std-env: 3.7.0 tinybench: 2.9.0 tinyexec: 0.3.1 tinypool: 1.0.1 tinyrainbow: 1.2.0 - vite: 5.4.11(@types/node@20.16.15)(sass@1.83.0)(terser@5.31.0) - vite-node: 2.1.8(@types/node@20.16.15)(sass@1.83.0)(terser@5.31.0) + vite: 5.4.11(@types/node@20.16.15)(sass@1.80.6)(terser@5.31.0) + vite-node: 2.1.4(@types/node@20.16.15)(sass@1.80.6)(terser@5.31.0) why-is-node-running: 2.3.0 optionalDependencies: '@types/node': 20.16.15 @@ -19449,15 +19417,51 @@ snapshots: - supports-color - terser - vitest@2.1.8(@types/node@22.10.2)(jsdom@25.0.1)(sass@1.83.0)(terser@5.31.0): + vitest@2.1.4(@types/node@22.9.0)(jsdom@25.0.1)(sass@1.80.6)(terser@5.31.0): dependencies: - '@vitest/expect': 2.1.8 - '@vitest/mocker': 2.1.8(vite@5.4.11(@types/node@22.10.2)(sass@1.83.0)(terser@5.31.0)) - '@vitest/pretty-format': 2.1.8 - '@vitest/runner': 2.1.8 - '@vitest/snapshot': 2.1.8 - '@vitest/spy': 2.1.8 - '@vitest/utils': 2.1.8 + '@vitest/expect': 2.1.4 + '@vitest/mocker': 2.1.4(vite@5.4.11(@types/node@22.9.0)(sass@1.80.6)(terser@5.31.0)) + '@vitest/pretty-format': 2.1.4 + '@vitest/runner': 2.1.4 + '@vitest/snapshot': 2.1.4 + '@vitest/spy': 2.1.4 + '@vitest/utils': 2.1.4 + chai: 5.1.2 + debug: 4.3.7 + expect-type: 1.1.0 + magic-string: 0.30.12 + pathe: 1.1.2 + std-env: 3.7.0 + tinybench: 2.9.0 + tinyexec: 0.3.1 + tinypool: 1.0.1 + tinyrainbow: 1.2.0 + vite: 5.4.11(@types/node@22.9.0)(sass@1.80.6)(terser@5.31.0) + vite-node: 2.1.4(@types/node@22.9.0)(sass@1.80.6)(terser@5.31.0) + why-is-node-running: 2.3.0 + optionalDependencies: + '@types/node': 22.9.0 + jsdom: 25.0.1 + transitivePeerDependencies: + - less + - lightningcss + - msw + - sass + - sass-embedded + - stylus + - sugarss + - supports-color + - terser + + vitest@2.1.5(@types/node@22.9.0)(jsdom@25.0.1)(sass@1.80.6)(terser@5.31.0): + dependencies: + '@vitest/expect': 2.1.5 + '@vitest/mocker': 2.1.5(vite@5.4.11(@types/node@22.9.0)(sass@1.80.6)(terser@5.31.0)) + '@vitest/pretty-format': 2.1.5 + '@vitest/runner': 2.1.5 + '@vitest/snapshot': 2.1.5 + '@vitest/spy': 2.1.5 + '@vitest/utils': 2.1.5 chai: 5.1.2 debug: 4.3.7 expect-type: 1.1.0 @@ -19468,11 +19472,11 @@ snapshots: tinyexec: 0.3.1 tinypool: 1.0.1 tinyrainbow: 1.2.0 - vite: 5.4.11(@types/node@22.10.2)(sass@1.83.0)(terser@5.31.0) - vite-node: 2.1.8(@types/node@22.10.2)(sass@1.83.0)(terser@5.31.0) + vite: 5.4.11(@types/node@22.9.0)(sass@1.80.6)(terser@5.31.0) + vite-node: 2.1.5(@types/node@22.9.0)(sass@1.80.6)(terser@5.31.0) why-is-node-running: 2.3.0 optionalDependencies: - '@types/node': 22.10.2 + '@types/node': 22.9.0 jsdom: 25.0.1 transitivePeerDependencies: - less @@ -19511,7 +19515,7 @@ snapshots: webpack-bundle-analyzer@4.10.1: dependencies: '@discoveryjs/json-ext': 0.5.7 - acorn: 8.14.0 + acorn: 8.13.0 acorn-walk: 8.3.4 commander: 7.2.0 debounce: 1.2.1 @@ -19527,7 +19531,7 @@ snapshots: - bufferutil - utf-8-validate - webpack-dev-middleware@6.1.3(webpack@5.91.0(@swc/core@1.7.39(@swc/helpers@0.5.15))(esbuild@0.23.1)): + webpack-dev-middleware@6.1.3(webpack@5.91.0(@swc/core@1.7.39(@swc/helpers@0.5.13))(esbuild@0.23.1)): dependencies: colorette: 2.0.20 memfs: 3.5.3 @@ -19535,7 +19539,7 @@ snapshots: range-parser: 1.2.1 schema-utils: 4.2.0 optionalDependencies: - webpack: 5.91.0(@swc/core@1.7.39(@swc/helpers@0.5.15))(esbuild@0.23.1) + webpack: 5.91.0(@swc/core@1.7.39(@swc/helpers@0.5.13))(esbuild@0.23.1) webpack-hot-middleware@2.26.1: dependencies: @@ -19547,7 +19551,7 @@ snapshots: webpack-virtual-modules@0.6.1: {} - webpack@5.91.0(@swc/core@1.7.39(@swc/helpers@0.5.15))(esbuild@0.23.1): + webpack@5.91.0(@swc/core@1.7.39(@swc/helpers@0.5.13))(esbuild@0.23.1): dependencies: '@types/eslint-scope': 3.7.7 '@types/estree': 1.0.6 @@ -19559,7 +19563,7 @@ snapshots: browserslist: 4.24.2 chrome-trace-event: 1.0.3 enhanced-resolve: 5.17.1 - es-module-lexer: 1.5.4 + es-module-lexer: 1.5.2 eslint-scope: 5.1.1 events: 3.3.0 glob-to-regexp: 0.4.1 @@ -19570,7 +19574,7 @@ snapshots: neo-async: 2.6.2 schema-utils: 3.3.0 tapable: 2.2.1 - terser-webpack-plugin: 5.3.10(@swc/core@1.7.39(@swc/helpers@0.5.15))(esbuild@0.23.1)(webpack@5.91.0(@swc/core@1.7.39(@swc/helpers@0.5.15))(esbuild@0.23.1)) + terser-webpack-plugin: 5.3.10(@swc/core@1.7.39(@swc/helpers@0.5.13))(esbuild@0.23.1)(webpack@5.91.0(@swc/core@1.7.39(@swc/helpers@0.5.13))(esbuild@0.23.1)) watchpack: 2.4.1 webpack-sources: 3.2.3 transitivePeerDependencies: @@ -19730,6 +19734,4 @@ snapshots: zod@3.23.8: {} - zod@3.24.1: {} - zwitch@2.0.4: {}