diff --git a/.github/workflows/cd.yml b/.github/workflows/cd.yml index 7d9959002d..86f322e35f 100644 --- a/.github/workflows/cd.yml +++ b/.github/workflows/cd.yml @@ -17,7 +17,7 @@ jobs: - name: Install Node.js uses: actions/setup-node@v4.0.1 with: - node-version: 22 + node-version: 24 - uses: pnpm/action-setup@v4.0.0 name: Install pnpm id: pnpm-install @@ -95,7 +95,7 @@ jobs: - name: Install Node.js uses: actions/setup-node@v4.0.1 with: - node-version: 22 + node-version: 24 - uses: pnpm/action-setup@v4.0.0 name: Install pnpm id: pnpm-install @@ -140,7 +140,7 @@ jobs: - name: Install Node.js uses: actions/setup-node@v4.0.1 with: - node-version: 22 + node-version: 24 - uses: pnpm/action-setup@v4.0.0 name: Install pnpm id: pnpm-install @@ -223,7 +223,7 @@ jobs: - name: Install Node.js uses: actions/setup-node@v4.0.1 with: - node-version: 22 + node-version: 24 - uses: pnpm/action-setup@v4.0.0 name: Install pnpm id: pnpm-install @@ -282,7 +282,7 @@ jobs: # - name: Install Node.js # uses: actions/setup-node@v4.0.1 # with: -# node-version: 22 +# node-version: 24 # - uses: pnpm/action-setup@v4.0.0 # name: Install pnpm # id: pnpm-install @@ -565,7 +565,7 @@ jobs: - name: Install Node.js uses: actions/setup-node@v4.0.1 with: - node-version: 22 + node-version: 24 - uses: pnpm/action-setup@v4.0.0 name: Install pnpm id: pnpm-install diff --git a/commonVite.config.ts b/commonVite.config.ts index b1c5338d68..aa0be043b9 100644 --- a/commonVite.config.ts +++ b/commonVite.config.ts @@ -28,6 +28,7 @@ export default defineConfig({ emptyOutDir: false, outDir: 'lib', rollupOptions: { + treeshake: false, external: ['react', 'react-dom', 'react/jsx-runtime', /@babel\/runtime\/*/, /@semcore\/*/], output: [ { diff --git a/package.json b/package.json index de420c4992..fb5e50d273 100644 --- a/package.json +++ b/package.json @@ -79,29 +79,30 @@ "@semcore/gcs-upload": "workspace:*", "@semcore/icon": "workspace:*", "@semcore/theme-redesign": "1.5.12", - "@storybook/addon-a11y": "9.1.6", - "@storybook/addon-docs": "^9.1.6", - "@storybook/addon-links": "9.1.6", - "@storybook/addon-storysource": "^8.6.14", + "@storybook/addon-a11y": "10.3.5", + "@storybook/addon-docs": "10.3.5", + "@storybook/addon-links": "10.3.5", + "@storybook/addon-storysource": "8.6.14", "@stylistic/eslint-plugin": "4.4.0", "@testing-library/react": "13.4.0", "@types/glob": "8.1.0", - "@types/node": "18.16.15", + "@types/node": "25.5.2", "@types/react": "18.2.19", "@types/react-dom": "18.3.7", - "@vitejs/plugin-react": "2.0.0", - "@vitest/browser": "3.0.6", - "@vitest/ui": "3.0.6", + "@vitejs/plugin-react": "5.2.0", + "@vitest/browser": "3.2.4", + "@vitest/ui": "3.2.4", + "@workspace/types": "workspace:*", "allure-commandline": "2.34.0", "allure-js-commons": "3.4.5", "allure-playwright": "3.4.5", - "allure-vitest": "3.4.5", + "allure-vitest": "3.7.1", "babel-plugin-preval": "5.1.0", "babel-plugin-replace-import-extension": "1.1.5", "chromatic": "15.1.1", "csv": "6.2.0", "dotenv": "16.5.0", - "esbuild": "0.14.29", + "esbuild": "0.28.0", "eslint": "9.27.0", "eslint-plugin-import": "2.31.0", "eslint-plugin-react": "7.37.5", @@ -125,20 +126,20 @@ "rollup-plugin-copy": "3.5.0", "semver": "7.7.2", "simple-git": "3.28.0", - "storybook": "9.1.6", + "storybook": "10.3.5", "stylelint": "15.9.0", "stylelint-config-recommended": "12.0.0", "tsm": "2.3.0", - "typescript": "5.8.3", - "typescript-eslint": "8.33.0", + "typescript": "6.0.2", + "typescript-eslint": "8.58.1", "typescript-plugin-css-modules": "2.2.0", "typescript-workspace-plugin": "2.0.1", "unplugin": "1.14.1", - "vite": "6.3.5", - "vite-plugin-babel": "1.3.2", - "vitest": "3.0.9", + "vite": "7.3.2", + "vite-plugin-babel": "1.6.0", + "vitest": "3.2.4", "webdriverio": "8.24.3", - "yaml": "2.8.0" + "yaml": "2.8.3" }, "lint-staged": { "*.{css}": "pnpm lint:css --fix", @@ -157,7 +158,7 @@ "@types/scheduler": "< 0.23.0" }, "engines": { - "node": ">=20" + "node": ">=24" }, "pnpm": { "patchedDependencies": { diff --git a/playground/entries/InputTags.tsx b/playground/entries/InputTags.tsx index 03c24543ff..7dfb041e8a 100644 --- a/playground/entries/InputTags.tsx +++ b/playground/entries/InputTags.tsx @@ -1,7 +1,6 @@ -import CheckM from '@semcore/icon/Check/m'; import type { InputValueProps } from '@semcore/ui/input'; import InputTags from '@semcore/ui/input-tags'; -import type { InputTagsProps } from 'input-tags/src/InputTags'; +import type { InputTagsProps } from '@semcore/ui/input-tags'; import React from 'react'; import type { JSXProps } from '../types/JSXProps'; diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 8a107bd159..afc18636df 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -121,20 +121,20 @@ importers: specifier: 1.5.12 version: 1.5.12 '@storybook/addon-a11y': - specifier: 9.1.6 - version: 9.1.6(storybook@9.1.6(@testing-library/dom@10.4.1)(msw@2.12.14(@types/node@18.16.15)(typescript@5.8.3))(prettier@3.8.1)(vite@6.3.5(@types/node@18.16.15)(less@3.13.1)(lightningcss@1.31.1)(sass@1.98.0)(sugarss@5.0.1(postcss@8.4.38))(terser@5.46.1)(yaml@2.8.0))) + specifier: 10.3.5 + version: 10.3.5(storybook@10.3.5(@testing-library/dom@10.4.1)(prettier@3.8.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)) '@storybook/addon-docs': - specifier: ^9.1.6 - version: 9.1.20(@types/react@18.2.19)(storybook@9.1.6(@testing-library/dom@10.4.1)(msw@2.12.14(@types/node@18.16.15)(typescript@5.8.3))(prettier@3.8.1)(vite@6.3.5(@types/node@18.16.15)(less@3.13.1)(lightningcss@1.31.1)(sass@1.98.0)(sugarss@5.0.1(postcss@8.4.38))(terser@5.46.1)(yaml@2.8.0))) + specifier: 10.3.5 + version: 10.3.5(@types/react@18.2.19)(esbuild@0.28.0)(rollup@4.60.0)(storybook@10.3.5(@testing-library/dom@10.4.1)(prettier@3.8.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(vite@7.3.2(@types/node@25.5.2)(lightningcss@1.32.0)(sass@1.98.0)(sugarss@5.0.1(postcss@8.4.38))(terser@5.46.1)(yaml@2.8.3))(webpack@5.105.4(esbuild@0.28.0)) '@storybook/addon-links': - specifier: 9.1.6 - version: 9.1.6(react@18.3.1)(storybook@9.1.6(@testing-library/dom@10.4.1)(msw@2.12.14(@types/node@18.16.15)(typescript@5.8.3))(prettier@3.8.1)(vite@6.3.5(@types/node@18.16.15)(less@3.13.1)(lightningcss@1.31.1)(sass@1.98.0)(sugarss@5.0.1(postcss@8.4.38))(terser@5.46.1)(yaml@2.8.0))) + specifier: 10.3.5 + version: 10.3.5(react@18.3.1)(storybook@10.3.5(@testing-library/dom@10.4.1)(prettier@3.8.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)) '@storybook/addon-storysource': - specifier: ^8.6.14 - version: 8.6.14(storybook@9.1.6(@testing-library/dom@10.4.1)(msw@2.12.14(@types/node@18.16.15)(typescript@5.8.3))(prettier@3.8.1)(vite@6.3.5(@types/node@18.16.15)(less@3.13.1)(lightningcss@1.31.1)(sass@1.98.0)(sugarss@5.0.1(postcss@8.4.38))(terser@5.46.1)(yaml@2.8.0))) + specifier: 8.6.14 + version: 8.6.14(storybook@10.3.5(@testing-library/dom@10.4.1)(prettier@3.8.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)) '@stylistic/eslint-plugin': specifier: 4.4.0 - version: 4.4.0(eslint@9.27.0)(typescript@5.8.3) + version: 4.4.0(eslint@9.27.0)(typescript@6.0.2) '@testing-library/react': specifier: 13.4.0 version: 13.4.0(@types/react@18.2.19)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) @@ -142,8 +142,8 @@ importers: specifier: 8.1.0 version: 8.1.0 '@types/node': - specifier: 18.16.15 - version: 18.16.15 + specifier: 25.5.2 + version: 25.5.2 '@types/react': specifier: 18.2.19 version: 18.2.19 @@ -151,14 +151,17 @@ importers: specifier: 18.3.7 version: 18.3.7(@types/react@18.2.19) '@vitejs/plugin-react': - specifier: 2.0.0 - version: 2.0.0(vite@6.3.5(@types/node@18.16.15)(less@3.13.1)(lightningcss@1.31.1)(sass@1.98.0)(sugarss@5.0.1(postcss@8.4.38))(terser@5.46.1)(yaml@2.8.0)) + specifier: 5.2.0 + version: 5.2.0(vite@7.3.2(@types/node@25.5.2)(lightningcss@1.32.0)(sass@1.98.0)(sugarss@5.0.1(postcss@8.4.38))(terser@5.46.1)(yaml@2.8.3)) '@vitest/browser': - specifier: 3.0.6 - version: 3.0.6(@types/node@18.16.15)(playwright@1.58.2)(typescript@5.8.3)(vite@6.3.5(@types/node@18.16.15)(less@3.13.1)(lightningcss@1.31.1)(sass@1.98.0)(sugarss@5.0.1(postcss@8.4.38))(terser@5.46.1)(yaml@2.8.0))(vitest@3.0.9)(webdriverio@8.24.3(typescript@5.8.3)) + specifier: 3.2.4 + version: 3.2.4(msw@2.12.14(@types/node@25.5.2)(typescript@6.0.2))(playwright@1.58.2)(vite@7.3.2(@types/node@25.5.2)(lightningcss@1.32.0)(sass@1.98.0)(sugarss@5.0.1(postcss@8.4.38))(terser@5.46.1)(yaml@2.8.3))(vitest@3.2.4)(webdriverio@8.24.3(typescript@6.0.2)) '@vitest/ui': - specifier: 3.0.6 - version: 3.0.6(vitest@3.0.9) + specifier: 3.2.4 + version: 3.2.4(vitest@3.2.4) + '@workspace/types': + specifier: workspace:* + version: link:tools/@types allure-commandline: specifier: 2.34.0 version: 2.34.0 @@ -169,8 +172,8 @@ importers: specifier: 3.4.5 version: 3.4.5(@playwright/test@1.58.2) allure-vitest: - specifier: 3.4.5 - version: 3.4.5(@vitest/runner@3.0.9)(allure-playwright@3.4.5(@playwright/test@1.58.2))(vitest@3.0.9) + specifier: 3.7.1 + version: 3.7.1(@vitest/runner@4.1.4)(allure-playwright@3.4.5(@playwright/test@1.58.2))(vitest@3.2.4) babel-plugin-preval: specifier: 5.1.0 version: 5.1.0 @@ -187,20 +190,20 @@ importers: specifier: 16.5.0 version: 16.5.0 esbuild: - specifier: 0.14.29 - version: 0.14.29 + specifier: 0.28.0 + version: 0.28.0 eslint: specifier: 9.27.0 version: 9.27.0 eslint-plugin-import: specifier: 2.31.0 - version: 2.31.0(@typescript-eslint/parser@8.33.0(eslint@9.27.0)(typescript@5.8.3))(eslint@9.27.0) + version: 2.31.0(@typescript-eslint/parser@8.58.1(eslint@9.27.0)(typescript@6.0.2))(eslint@9.27.0) eslint-plugin-react: specifier: 7.37.5 version: 7.37.5(eslint@9.27.0) eslint-plugin-storybook: specifier: 9.1.6 - version: 9.1.6(eslint@9.27.0)(storybook@9.1.6(@testing-library/dom@10.4.1)(msw@2.12.14(@types/node@18.16.15)(typescript@5.8.3))(prettier@3.8.1)(vite@6.3.5(@types/node@18.16.15)(less@3.13.1)(lightningcss@1.31.1)(sass@1.98.0)(sugarss@5.0.1(postcss@8.4.38))(terser@5.46.1)(yaml@2.8.0)))(typescript@5.8.3) + version: 9.1.6(eslint@9.27.0)(storybook@10.3.5(@testing-library/dom@10.4.1)(prettier@3.8.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(typescript@6.0.2) execa: specifier: 9.6.0 version: 9.6.0 @@ -259,47 +262,47 @@ importers: specifier: 3.28.0 version: 3.28.0 storybook: - specifier: 9.1.6 - version: 9.1.6(@testing-library/dom@10.4.1)(msw@2.12.14(@types/node@18.16.15)(typescript@5.8.3))(prettier@3.8.1)(vite@6.3.5(@types/node@18.16.15)(less@3.13.1)(lightningcss@1.31.1)(sass@1.98.0)(sugarss@5.0.1(postcss@8.4.38))(terser@5.46.1)(yaml@2.8.0)) + specifier: 10.3.5 + version: 10.3.5(@testing-library/dom@10.4.1)(prettier@3.8.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) stylelint: specifier: 15.9.0 - version: 15.9.0(typescript@5.8.3) + version: 15.9.0(typescript@6.0.2) stylelint-config-recommended: specifier: 12.0.0 - version: 12.0.0(stylelint@15.9.0(typescript@5.8.3)) + version: 12.0.0(stylelint@15.9.0(typescript@6.0.2)) tsm: specifier: 2.3.0 version: 2.3.0 typescript: - specifier: 5.8.3 - version: 5.8.3 + specifier: 6.0.2 + version: 6.0.2 typescript-eslint: - specifier: 8.33.0 - version: 8.33.0(eslint@9.27.0)(typescript@5.8.3) + specifier: 8.58.1 + version: 8.58.1(eslint@9.27.0)(typescript@6.0.2) typescript-plugin-css-modules: specifier: 2.2.0 - version: 2.2.0(typescript@5.8.3) + version: 2.2.0(typescript@6.0.2) typescript-workspace-plugin: specifier: 2.0.1 - version: 2.0.1(typescript@5.8.3) + version: 2.0.1(typescript@6.0.2) unplugin: specifier: 1.14.1 version: 1.14.1(webpack-sources@3.3.4) vite: - specifier: 6.3.5 - version: 6.3.5(@types/node@18.16.15)(less@3.13.1)(lightningcss@1.31.1)(sass@1.98.0)(sugarss@5.0.1(postcss@8.4.38))(terser@5.46.1)(yaml@2.8.0) + specifier: 7.3.2 + version: 7.3.2(@types/node@25.5.2)(lightningcss@1.32.0)(sass@1.98.0)(sugarss@5.0.1(postcss@8.4.38))(terser@5.46.1)(yaml@2.8.3) vite-plugin-babel: - specifier: 1.3.2 - version: 1.3.2(@babel/core@7.27.7)(vite@6.3.5(@types/node@18.16.15)(less@3.13.1)(lightningcss@1.31.1)(sass@1.98.0)(sugarss@5.0.1(postcss@8.4.38))(terser@5.46.1)(yaml@2.8.0)) + specifier: 1.6.0 + version: 1.6.0(@babel/core@7.27.7)(vite@7.3.2(@types/node@25.5.2)(lightningcss@1.32.0)(sass@1.98.0)(sugarss@5.0.1(postcss@8.4.38))(terser@5.46.1)(yaml@2.8.3)) vitest: - specifier: 3.0.9 - version: 3.0.9(@types/debug@4.1.13)(@types/node@18.16.15)(@vitest/browser@3.0.6)(@vitest/ui@3.0.6)(happy-dom@9.20.3)(jsdom@22.1.0)(less@3.13.1)(lightningcss@1.31.1)(msw@2.12.14(@types/node@18.16.15)(typescript@5.8.3))(sass@1.98.0)(sugarss@5.0.1(postcss@8.4.38))(terser@5.46.1)(yaml@2.8.0) + specifier: 3.2.4 + version: 3.2.4(@types/debug@4.1.13)(@types/node@25.5.2)(@vitest/browser@3.2.4)(@vitest/ui@3.2.4)(happy-dom@9.20.3)(jsdom@22.1.0)(lightningcss@1.32.0)(msw@2.12.14(@types/node@25.5.2)(typescript@6.0.2))(sass@1.98.0)(sugarss@5.0.1(postcss@8.4.38))(terser@5.46.1)(yaml@2.8.3) webdriverio: specifier: 8.24.3 - version: 8.24.3(typescript@5.8.3) + version: 8.24.3(typescript@6.0.2) yaml: - specifier: 2.8.0 - version: 2.8.0 + specifier: 2.8.3 + version: 2.8.3 playground: dependencies: @@ -1207,10 +1210,10 @@ importers: version: 2.4.5 '@types/webpack': specifier: ^5.28.5 - version: 5.28.5(esbuild@0.14.29) + version: 5.28.5(esbuild@0.28.0) '@types/webpack-dev-server': specifier: ^4.7.2 - version: 4.7.2(tslib@2.8.1)(webpack@5.105.4(esbuild@0.14.29)) + version: 4.7.2(tslib@2.8.1)(webpack@5.105.4(esbuild@0.28.0)) '@types/webpack-sources': specifier: ^3.2.3 version: 3.2.3 @@ -1794,7 +1797,7 @@ importers: devDependencies: '@pandacss/dev': specifier: 1.9.0 - version: 1.9.0(jsdom@22.1.0)(typescript@5.9.3) + version: 1.9.0(jsdom@22.1.0)(typescript@6.0.2) '@semcore/testing-utils': specifier: workspace:* version: link:../../tools/testing-utils @@ -2134,7 +2137,7 @@ importers: version: 1.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@storybook/react-vite': specifier: 9.1.6 - version: 9.1.6(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(rollup@4.60.0)(storybook@9.1.6(@testing-library/dom@10.4.1)(msw@2.12.14(@types/node@22.19.15)(typescript@5.9.3))(prettier@3.8.1)(vite@6.3.5(@types/node@22.19.15)(less@3.13.1)(lightningcss@1.31.1)(sass@1.98.0)(sugarss@5.0.1(postcss@8.5.8))(terser@5.46.1)(yaml@2.8.0)))(typescript@5.9.3)(vite@6.3.5(@types/node@22.19.15)(less@3.13.1)(lightningcss@1.31.1)(sass@1.98.0)(sugarss@5.0.1(postcss@8.5.8))(terser@5.46.1)(yaml@2.8.0)) + version: 9.1.6(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(rollup@4.60.0)(storybook@10.3.5(@testing-library/dom@10.4.1)(prettier@3.8.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(typescript@6.0.2)(vite@7.3.2(@types/node@25.5.2)(lightningcss@1.32.0)(sass@1.98.0)(sugarss@5.0.1(postcss@8.5.8))(terser@5.46.1)(yaml@2.8.3)) d3-scale: specifier: 3.3.0 version: 3.3.0 @@ -2146,7 +2149,7 @@ importers: version: 7.54.0(patch_hash=5ea80c984744a8ae88b2ac5d6a6b4bd9793291e90ba98f3c1701c4ba9770fd20)(react@18.3.1) react-intl: specifier: 7.1.11 - version: 7.1.11(react@18.3.1)(typescript@5.9.3) + version: 7.1.11(react@18.3.1)(typescript@6.0.2) react-virtualized: specifier: 9.22.6 version: 9.22.6(react-dom@18.3.1(react@18.3.1))(react@18.3.1) @@ -2164,6 +2167,8 @@ importers: specifier: 9.22.0 version: 9.22.0 + tools/@types: {} + tools/babel-plugin-react-semcore: dependencies: '@semcore/babel-plugin-styles': @@ -2181,7 +2186,7 @@ importers: devDependencies: babel-plugin-tester: specifier: 8.0.1 - version: 8.0.1(@babel/core@7.28.4) + version: 8.0.1(@babel/core@7.29.0) tools/babel-plugin-root: dependencies: @@ -2190,7 +2195,7 @@ importers: version: 7.18.6 '@babel/plugin-syntax-jsx': specifier: 7.18.6 - version: 7.18.6(@babel/core@7.28.4) + version: 7.18.6(@babel/core@7.29.0) tools/babel-plugin-styles: dependencies: @@ -2199,7 +2204,7 @@ importers: version: 7.18.6 '@babel/plugin-syntax-jsx': specifier: 7.18.6 - version: 7.18.6(@babel/core@7.28.4) + version: 7.18.6(@babel/core@7.29.0) chokidar: specifier: 3.5.1 version: 3.5.1 @@ -2316,8 +2321,8 @@ importers: specifier: ^7.20.5 version: 7.20.5 esbuild: - specifier: 0.14.29 - version: 0.14.29 + specifier: 0.28.0 + version: 0.28.0 tools/gcs-upload: dependencies: @@ -2386,10 +2391,10 @@ importers: version: 8.4.38 stylelint: specifier: 16.6.1 - version: 16.6.1(typescript@5.9.3) + version: 16.6.1(typescript@6.0.2) stylelint-config-standard: specifier: 36.0.0 - version: 36.0.0(stylelint@16.6.1(typescript@5.9.3)) + version: 36.0.0(stylelint@16.6.1(typescript@6.0.2)) tools/testing-utils: dependencies: @@ -2401,10 +2406,10 @@ importers: version: 1.58.2 '@previewjs/plugin-react': specifier: 17.1.0 - version: 17.1.0(@types/node@22.19.15)(esbuild@0.14.29)(less@3.13.1)(lightningcss@1.31.1)(sass@1.98.0)(sugarss@5.0.1(postcss@8.5.8))(terser@5.46.1)(vite@6.3.5(@types/node@22.19.15)(less@3.13.1)(lightningcss@1.31.1)(sass@1.98.0)(sugarss@5.0.1(postcss@8.5.8))(terser@5.46.1)(yaml@2.8.0))(yaml@2.8.0) + version: 17.1.0(@types/node@25.5.2)(esbuild@0.28.0)(lightningcss@1.32.0)(sass@1.98.0)(sugarss@5.0.1(postcss@8.5.8))(terser@5.46.1)(vite@7.3.2(@types/node@25.5.2)(lightningcss@1.32.0)(sass@1.98.0)(sugarss@5.0.1(postcss@8.5.8))(terser@5.46.1)(yaml@2.8.3))(yaml@2.8.3) '@previewjs/screenshot': specifier: 0.3.2 - version: 0.3.2(@types/node@22.19.15)(esbuild@0.14.29)(less@3.13.1)(lightningcss@1.31.1)(sass@1.98.0)(sugarss@5.0.1(postcss@8.5.8))(terser@5.46.1)(vite@6.3.5(@types/node@22.19.15)(less@3.13.1)(lightningcss@1.31.1)(sass@1.98.0)(sugarss@5.0.1(postcss@8.5.8))(terser@5.46.1)(yaml@2.8.0))(yaml@2.8.0) + version: 0.3.2(@types/node@25.5.2)(esbuild@0.28.0)(lightningcss@1.32.0)(sass@1.98.0)(sugarss@5.0.1(postcss@8.5.8))(terser@5.46.1)(vite@7.3.2(@types/node@25.5.2)(lightningcss@1.32.0)(sass@1.98.0)(sugarss@5.0.1(postcss@8.5.8))(terser@5.46.1)(yaml@2.8.3))(yaml@2.8.3) '@semcore/babel-preset-ui': specifier: workspace:* version: link:../babel-preset-ui @@ -2425,10 +2430,10 @@ importers: version: 4.9.1 babel-jest: specifier: 29.0.1 - version: 29.0.1(@babel/core@7.28.4) + version: 29.0.1(@babel/core@7.29.0) babel-plugin-transform-import-meta: specifier: 2.2.0 - version: 2.2.0(@babel/core@7.28.4) + version: 2.2.0(@babel/core@7.29.0) dotenv: specifier: 16.0.1 version: 16.0.1 @@ -2461,11 +2466,11 @@ importers: specifier: 5.14.9 version: 5.14.9 esbuild: - specifier: 0.14.29 - version: 0.14.29 + specifier: 0.28.0 + version: 0.28.0 vitest-axe: specifier: 0.1.0 - version: 0.1.0(vitest@3.0.9(@types/debug@4.1.13)(@types/node@22.19.15)(@vitest/browser@3.0.6(@types/node@18.16.15)(playwright@1.58.2)(typescript@5.8.3)(vite@6.3.5(@types/node@18.16.15)(less@3.13.1)(lightningcss@1.31.1)(sass@1.98.0)(sugarss@5.0.1(postcss@8.4.38))(terser@5.46.1)(yaml@2.8.0))(vitest@3.0.9)(webdriverio@8.24.3(typescript@5.8.3)))(@vitest/ui@3.0.6(vitest@3.0.9))(happy-dom@9.20.3)(jsdom@22.1.0)(less@3.13.1)(lightningcss@1.31.1)(msw@2.12.14(@types/node@22.19.15)(typescript@5.8.3))(sass@1.98.0)(sugarss@5.0.1(postcss@8.5.8))(terser@5.46.1)(yaml@2.8.0)) + version: 0.1.0(vitest@3.2.4) website: dependencies: @@ -2475,15 +2480,12 @@ importers: '@docsearch/js': specifier: ~3.6.0 version: 3.6.3(@algolia/client-search@5.50.0)(@types/react@18.2.19)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(search-insights@2.17.3) - '@vitejs/plugin-react': - specifier: ^4.5.0 - version: 4.7.0(vite@6.3.5(@types/node@18.19.130)(less@3.13.1)(lightningcss@1.31.1)(sass@1.98.0)(sugarss@5.0.1(postcss@8.4.33))(terser@5.46.1)(yaml@2.8.0)) '@vitejs/plugin-vue-jsx': - specifier: ^3.1.0 - version: 3.1.0(vite@6.3.5(@types/node@18.19.130)(less@3.13.1)(lightningcss@1.31.1)(sass@1.98.0)(sugarss@5.0.1(postcss@8.4.33))(terser@5.46.1)(yaml@2.8.0))(vue@3.5.31(typescript@5.9.3)) + specifier: 5.1.5 + version: 5.1.5(vite@7.3.2(@types/node@25.5.2)(lightningcss@1.32.0)(sass@1.98.0)(sugarss@5.0.1(postcss@8.4.33))(terser@5.46.1)(yaml@2.8.3))(vue@3.5.31(typescript@6.0.2)) '@vueuse/core': specifier: ^11.3.0 - version: 11.3.0(vue@3.5.31(typescript@5.9.3)) + version: 11.3.0(vue@3.5.31(typescript@6.0.2)) algoliasearch: specifier: 4.8.4 version: 4.8.4 @@ -2573,7 +2575,7 @@ importers: version: 7.54.0(patch_hash=5ea80c984744a8ae88b2ac5d6a6b4bd9793291e90ba98f3c1701c4ba9770fd20)(react@18.3.1) react-instantsearch: specifier: 6.8.3 - version: 6.8.3(algoliasearch@4.8.4)(react-dom@18.3.1(react@18.3.1))(react-native@0.84.1(@babel/core@7.28.4)(@types/react@18.2.19)(react@18.3.1))(react@18.3.1) + version: 6.8.3(algoliasearch@4.8.4)(react-dom@18.3.1(react@18.3.1))(react-native@0.84.1(@babel/core@7.29.0)(@types/react@18.2.19)(react@18.3.1))(react@18.3.1) react-loadable: specifier: 5.5.0 version: 5.5.0(react@18.3.1) @@ -2606,20 +2608,20 @@ importers: version: 1.16.1 vue: specifier: ^3.5.16 - version: 3.5.31(typescript@5.9.3) + version: 3.5.31(typescript@6.0.2) whatwg-fetch: specifier: 3.6.2 version: 3.6.2 devDependencies: '@babel/plugin-proposal-class-properties': specifier: 7.18.6 - version: 7.18.6(@babel/core@7.28.4) + version: 7.18.6(@babel/core@7.29.0) '@babel/plugin-proposal-export-default-from': specifier: 7.23.3 - version: 7.23.3(@babel/core@7.28.4) + version: 7.23.3(@babel/core@7.29.0) '@babel/plugin-proposal-optional-chaining': specifier: 7.18.9 - version: 7.18.9(@babel/core@7.28.4) + version: 7.18.9(@babel/core@7.29.0) '@mdit-vue/shared': specifier: 1.0.0 version: 1.0.0 @@ -2629,21 +2631,21 @@ importers: '@types/express': specifier: 4.17.1 version: 4.17.1 + '@types/final-form-focus': + specifier: 1.1.7 + version: 1.1.7 '@types/markdown-it': specifier: ^13.0.9 version: 13.0.9 '@types/mdast': specifier: 3.0.10 version: 3.0.10 - '@types/node': - specifier: ^18.19.108 - version: 18.19.130 convert-layout: specifier: 0.11.1 version: 0.11.1 esbuild: - specifier: 0.14.29 - version: 0.14.29 + specifier: 0.28.0 + version: 0.28.0 esbuild-plugin-alias: specifier: 0.2.1 version: 0.2.1 @@ -2694,7 +2696,7 @@ importers: version: 10.1.2 vitepress: specifier: 1.3.1 - version: 1.3.1(@algolia/client-search@5.50.0)(@types/node@18.19.130)(@types/react@18.2.19)(axios@1.9.0)(fuse.js@6.6.2)(less@3.13.1)(lightningcss@1.31.1)(postcss@8.4.33)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.98.0)(search-insights@2.17.3)(sugarss@5.0.1(postcss@8.4.33))(terser@5.46.1)(typescript@5.9.3) + version: 1.3.1(@algolia/client-search@5.50.0)(@types/node@25.5.2)(@types/react@18.2.19)(axios@1.9.0)(fuse.js@6.6.2)(lightningcss@1.32.0)(postcss@8.4.33)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.98.0)(search-insights@2.17.3)(sugarss@5.0.1(postcss@8.4.33))(terser@5.46.1)(typescript@6.0.2) packages: @@ -2860,6 +2862,10 @@ packages: resolution: {integrity: sha512-2BCOP7TN8M+gVDj7/ht3hsaO/B/n5oDbiAyyvnRlNOs+u1o+JWNYTQrmpuNp1/Wq2gcFrI01JAW+paEKDMx/CA==} engines: {node: '>=6.9.0'} + '@babel/core@7.29.0': + resolution: {integrity: sha512-CGOfOJqWjg2qW/Mb6zNsDm+u5vFQ8DxXfbM09z69p5Z6+mE1ikP2jUXw+j42Pf1XTYED2Rni5f95npYeuwMDQA==} + engines: {node: '>=6.9.0'} + '@babel/generator@7.29.1': resolution: {integrity: sha512-qsaF+9Qcm2Qv8SRIMMscAvG4O3lJ0F1GuMo5HR/Bp02LopNgnZBC/EkbevHFeGs4ls/oPz9v+Bsmzbkbe+0dUw==} engines: {node: '>=6.9.0'} @@ -3879,6 +3885,18 @@ packages: cpu: [ppc64] os: [aix] + '@esbuild/aix-ppc64@0.27.7': + resolution: {integrity: sha512-EKX3Qwmhz1eMdEJokhALr0YiD0lhQNwDqkPYyPhiSwKrh7/4KRjQc04sZ8db+5DVVnZ1LmbNDI1uAMPEUBnQPg==} + engines: {node: '>=18'} + cpu: [ppc64] + os: [aix] + + '@esbuild/aix-ppc64@0.28.0': + resolution: {integrity: sha512-lhRUCeuOyJQURhTxl4WkpFTjIsbDayJHih5kZC1giwE+MhIzAb7mEsQMqMf18rHLsrb5qI1tafG20mLxEWcWlA==} + engines: {node: '>=18'} + cpu: [ppc64] + os: [aix] + '@esbuild/android-arm64@0.21.5': resolution: {integrity: sha512-c0uX9VAUBQ7dTDCjq+wdyGLowMdtR/GoC2U5IYk/7D1H1JYC0qseD7+11iMP2mRLN9RcCMRcjC4YMclCzGwS/A==} engines: {node: '>=12'} @@ -3891,6 +3909,18 @@ packages: cpu: [arm64] os: [android] + '@esbuild/android-arm64@0.27.7': + resolution: {integrity: sha512-62dPZHpIXzvChfvfLJow3q5dDtiNMkwiRzPylSCfriLvZeq0a1bWChrGx/BbUbPwOrsWKMn8idSllklzBy+dgQ==} + engines: {node: '>=18'} + cpu: [arm64] + os: [android] + + '@esbuild/android-arm64@0.28.0': + resolution: {integrity: sha512-+WzIXQOSaGs33tLEgYPYe/yQHf0WTU0X42Jca3y8NWMbUVhp7rUnw+vAsRC/QiDrdD31IszMrZy+qwPOPjd+rw==} + engines: {node: '>=18'} + cpu: [arm64] + os: [android] + '@esbuild/android-arm@0.15.18': resolution: {integrity: sha512-5GT+kcs2WVGjVs7+boataCkO5Fg0y4kCjzkB5bAip7H4jfnOS3dA6KPiww9W1OEKTKeAcUVhdZGvgI65OXmUnw==} engines: {node: '>=12'} @@ -3909,6 +3939,18 @@ packages: cpu: [arm] os: [android] + '@esbuild/android-arm@0.27.7': + resolution: {integrity: sha512-jbPXvB4Yj2yBV7HUfE2KHe4GJX51QplCN1pGbYjvsyCZbQmies29EoJbkEc+vYuU5o45AfQn37vZlyXy4YJ8RQ==} + engines: {node: '>=18'} + cpu: [arm] + os: [android] + + '@esbuild/android-arm@0.28.0': + resolution: {integrity: sha512-wqh0ByljabXLKHeWXYLqoJ5jKC4XBaw6Hk08OfMrCRd2nP2ZQ5eleDZC41XHyCNgktBGYMbqnrJKq/K/lzPMSQ==} + engines: {node: '>=18'} + cpu: [arm] + os: [android] + '@esbuild/android-x64@0.21.5': resolution: {integrity: sha512-D7aPRUUNHRBwHxzxRvp856rjUHRFW1SdQATKXH2hqA0kAZb1hKmi02OpYRacl0TxIGz/ZmXWlbZgjwWYaCakTA==} engines: {node: '>=12'} @@ -3921,6 +3963,18 @@ packages: cpu: [x64] os: [android] + '@esbuild/android-x64@0.27.7': + resolution: {integrity: sha512-x5VpMODneVDb70PYV2VQOmIUUiBtY3D3mPBG8NxVk5CogneYhkR7MmM3yR/uMdITLrC1ml/NV1rj4bMJuy9MCg==} + engines: {node: '>=18'} + cpu: [x64] + os: [android] + + '@esbuild/android-x64@0.28.0': + resolution: {integrity: sha512-+VJggoaKhk2VNNqVL7f6S189UzShHC/mR9EE8rDdSkdpN0KflSwWY/gWjDrNxxisg8Fp1ZCD9jLMo4m0OUfeUA==} + engines: {node: '>=18'} + cpu: [x64] + os: [android] + '@esbuild/darwin-arm64@0.21.5': resolution: {integrity: sha512-DwqXqZyuk5AiWWf3UfLiRDJ5EDd49zg6O9wclZ7kUMv2WRFr4HKjXp/5t8JZ11QbQfUS6/cRCKGwYhtNAY88kQ==} engines: {node: '>=12'} @@ -3933,6 +3987,18 @@ packages: cpu: [arm64] os: [darwin] + '@esbuild/darwin-arm64@0.27.7': + resolution: {integrity: sha512-5lckdqeuBPlKUwvoCXIgI2D9/ABmPq3Rdp7IfL70393YgaASt7tbju3Ac+ePVi3KDH6N2RqePfHnXkaDtY9fkw==} + engines: {node: '>=18'} + cpu: [arm64] + os: [darwin] + + '@esbuild/darwin-arm64@0.28.0': + resolution: {integrity: sha512-0T+A9WZm+bZ84nZBtk1ckYsOvyA3x7e2Acj1KdVfV4/2tdG4fzUp91YHx+GArWLtwqp77pBXVCPn2We7Letr0Q==} + engines: {node: '>=18'} + cpu: [arm64] + os: [darwin] + '@esbuild/darwin-x64@0.21.5': resolution: {integrity: sha512-se/JjF8NlmKVG4kNIuyWMV/22ZaerB+qaSi5MdrXtd6R08kvs2qCN4C09miupktDitvh8jRFflwGFBQcxZRjbw==} engines: {node: '>=12'} @@ -3945,6 +4011,18 @@ packages: cpu: [x64] os: [darwin] + '@esbuild/darwin-x64@0.27.7': + resolution: {integrity: sha512-rYnXrKcXuT7Z+WL5K980jVFdvVKhCHhUwid+dDYQpH+qu+TefcomiMAJpIiC2EM3Rjtq0sO3StMV/+3w3MyyqQ==} + engines: {node: '>=18'} + cpu: [x64] + os: [darwin] + + '@esbuild/darwin-x64@0.28.0': + resolution: {integrity: sha512-fyzLm/DLDl/84OCfp2f/XQ4flmORsjU7VKt8HLjvIXChJoFFOIL6pLJPH4Yhd1n1gGFF9mPwtlN5Wf82DZs+LQ==} + engines: {node: '>=18'} + cpu: [x64] + os: [darwin] + '@esbuild/freebsd-arm64@0.21.5': resolution: {integrity: sha512-5JcRxxRDUJLX8JXp/wcBCy3pENnCgBR9bN6JsY4OmhfUtIHe3ZW0mawA7+RDAcMLrMIZaf03NlQiX9DGyB8h4g==} engines: {node: '>=12'} @@ -3957,6 +4035,18 @@ packages: cpu: [arm64] os: [freebsd] + '@esbuild/freebsd-arm64@0.27.7': + resolution: {integrity: sha512-B48PqeCsEgOtzME2GbNM2roU29AMTuOIN91dsMO30t+Ydis3z/3Ngoj5hhnsOSSwNzS+6JppqWsuhTp6E82l2w==} + engines: {node: '>=18'} + cpu: [arm64] + os: [freebsd] + + '@esbuild/freebsd-arm64@0.28.0': + resolution: {integrity: sha512-l9GeW5UZBT9k9brBYI+0WDffcRxgHQD8ShN2Ur4xWq/NFzUKm3k5lsH4PdaRgb2w7mI9u61nr2gI2mLI27Nh3Q==} + engines: {node: '>=18'} + cpu: [arm64] + os: [freebsd] + '@esbuild/freebsd-x64@0.21.5': resolution: {integrity: sha512-J95kNBj1zkbMXtHVH29bBriQygMXqoVQOQYA+ISs0/2l3T9/kj42ow2mpqerRBxDJnmkUDCaQT/dfNXWX/ZZCQ==} engines: {node: '>=12'} @@ -3969,6 +4059,18 @@ packages: cpu: [x64] os: [freebsd] + '@esbuild/freebsd-x64@0.27.7': + resolution: {integrity: sha512-jOBDK5XEjA4m5IJK3bpAQF9/Lelu/Z9ZcdhTRLf4cajlB+8VEhFFRjWgfy3M1O4rO2GQ/b2dLwCUGpiF/eATNQ==} + engines: {node: '>=18'} + cpu: [x64] + os: [freebsd] + + '@esbuild/freebsd-x64@0.28.0': + resolution: {integrity: sha512-BXoQai/A0wPO6Es3yFJ7APCiKGc1tdAEOgeTNy3SsB491S3aHn4S4r3e976eUnPdU+NbdtmBuLncYir2tMU9Nw==} + engines: {node: '>=18'} + cpu: [x64] + os: [freebsd] + '@esbuild/linux-arm64@0.21.5': resolution: {integrity: sha512-ibKvmyYzKsBeX8d8I7MH/TMfWDXBF3db4qM6sy+7re0YXya+K1cem3on9XgdT2EQGMu4hQyZhan7TeQ8XkGp4Q==} engines: {node: '>=12'} @@ -3981,6 +4083,18 @@ packages: cpu: [arm64] os: [linux] + '@esbuild/linux-arm64@0.27.7': + resolution: {integrity: sha512-RZPHBoxXuNnPQO9rvjh5jdkRmVizktkT7TCDkDmQ0W2SwHInKCAV95GRuvdSvA7w4VMwfCjUiPwDi0ZO6Nfe9A==} + engines: {node: '>=18'} + cpu: [arm64] + os: [linux] + + '@esbuild/linux-arm64@0.28.0': + resolution: {integrity: sha512-RVyzfb3FWsGA55n6WY0MEIEPURL1FcbhFE6BffZEMEekfCzCIMtB5yyDcFnVbTnwk+CLAgTujmV/Lgvih56W+A==} + engines: {node: '>=18'} + cpu: [arm64] + os: [linux] + '@esbuild/linux-arm@0.21.5': resolution: {integrity: sha512-bPb5AHZtbeNGjCKVZ9UGqGwo8EUu4cLq68E95A53KlxAPRmUyYv2D6F0uUI65XisGOL1hBP5mTronbgo+0bFcA==} engines: {node: '>=12'} @@ -3993,6 +4107,18 @@ packages: cpu: [arm] os: [linux] + '@esbuild/linux-arm@0.27.7': + resolution: {integrity: sha512-RkT/YXYBTSULo3+af8Ib0ykH8u2MBh57o7q/DAs3lTJlyVQkgQvlrPTnjIzzRPQyavxtPtfg0EopvDyIt0j1rA==} + engines: {node: '>=18'} + cpu: [arm] + os: [linux] + + '@esbuild/linux-arm@0.28.0': + resolution: {integrity: sha512-CjaaREJagqJp7iTaNQjjidaNbCKYcd4IDkzbwwxtSvjI7NZm79qiHc8HqciMddQ6CKvJT6aBd8lO9kN/ZudLlw==} + engines: {node: '>=18'} + cpu: [arm] + os: [linux] + '@esbuild/linux-ia32@0.21.5': resolution: {integrity: sha512-YvjXDqLRqPDl2dvRODYmmhz4rPeVKYvppfGYKSNGdyZkA01046pLWyRKKI3ax8fbJoK5QbxblURkwK/MWY18Tg==} engines: {node: '>=12'} @@ -4005,6 +4131,18 @@ packages: cpu: [ia32] os: [linux] + '@esbuild/linux-ia32@0.27.7': + resolution: {integrity: sha512-GA48aKNkyQDbd3KtkplYWT102C5sn/EZTY4XROkxONgruHPU72l+gW+FfF8tf2cFjeHaRbWpOYa/uRBz/Xq1Pg==} + engines: {node: '>=18'} + cpu: [ia32] + os: [linux] + + '@esbuild/linux-ia32@0.28.0': + resolution: {integrity: sha512-KBnSTt1kxl9x70q+ydterVdl+Cn0H18ngRMRCEQfrbqdUuntQQ0LoMZv47uB97NljZFzY6HcfqEZ2SAyIUTQBQ==} + engines: {node: '>=18'} + cpu: [ia32] + os: [linux] + '@esbuild/linux-loong64@0.15.18': resolution: {integrity: sha512-L4jVKS82XVhw2nvzLg/19ClLWg0y27ulRwuP7lcyL6AbUWB5aPglXY3M21mauDQMDfRLs8cQmeT03r/+X3cZYQ==} engines: {node: '>=12'} @@ -4023,6 +4161,18 @@ packages: cpu: [loong64] os: [linux] + '@esbuild/linux-loong64@0.27.7': + resolution: {integrity: sha512-a4POruNM2oWsD4WKvBSEKGIiWQF8fZOAsycHOt6JBpZ+JN2n2JH9WAv56SOyu9X5IqAjqSIPTaJkqN8F7XOQ5Q==} + engines: {node: '>=18'} + cpu: [loong64] + os: [linux] + + '@esbuild/linux-loong64@0.28.0': + resolution: {integrity: sha512-zpSlUce1mnxzgBADvxKXX5sl8aYQHo2ezvMNI8I0lbblJtp8V4odlm3Yzlj7gPyt3T8ReksE6bK+pT3WD+aJRg==} + engines: {node: '>=18'} + cpu: [loong64] + os: [linux] + '@esbuild/linux-mips64el@0.21.5': resolution: {integrity: sha512-IajOmO+KJK23bj52dFSNCMsz1QP1DqM6cwLUv3W1QwyxkyIWecfafnI555fvSGqEKwjMXVLokcV5ygHW5b3Jbg==} engines: {node: '>=12'} @@ -4035,6 +4185,18 @@ packages: cpu: [mips64el] os: [linux] + '@esbuild/linux-mips64el@0.27.7': + resolution: {integrity: sha512-KabT5I6StirGfIz0FMgl1I+R1H73Gp0ofL9A3nG3i/cYFJzKHhouBV5VWK1CSgKvVaG4q1RNpCTR2LuTVB3fIw==} + engines: {node: '>=18'} + cpu: [mips64el] + os: [linux] + + '@esbuild/linux-mips64el@0.28.0': + resolution: {integrity: sha512-2jIfP6mmjkdmeTlsX/9vmdmhBmKADrWqN7zcdtHIeNSCH1SqIoNI63cYsjQR8J+wGa4Y5izRcSHSm8K3QWmk3w==} + engines: {node: '>=18'} + cpu: [mips64el] + os: [linux] + '@esbuild/linux-ppc64@0.21.5': resolution: {integrity: sha512-1hHV/Z4OEfMwpLO8rp7CvlhBDnjsC3CttJXIhBi+5Aj5r+MBvy4egg7wCbe//hSsT+RvDAG7s81tAvpL2XAE4w==} engines: {node: '>=12'} @@ -4047,6 +4209,18 @@ packages: cpu: [ppc64] os: [linux] + '@esbuild/linux-ppc64@0.27.7': + resolution: {integrity: sha512-gRsL4x6wsGHGRqhtI+ifpN/vpOFTQtnbsupUF5R5YTAg+y/lKelYR1hXbnBdzDjGbMYjVJLJTd2OFmMewAgwlQ==} + engines: {node: '>=18'} + cpu: [ppc64] + os: [linux] + + '@esbuild/linux-ppc64@0.28.0': + resolution: {integrity: sha512-bc0FE9wWeC0WBm49IQMPSPILRocGTQt3j5KPCA8os6VprfuJ7KD+5PzESSrJ6GmPIPJK965ZJHTUlSA6GNYEhg==} + engines: {node: '>=18'} + cpu: [ppc64] + os: [linux] + '@esbuild/linux-riscv64@0.21.5': resolution: {integrity: sha512-2HdXDMd9GMgTGrPWnJzP2ALSokE/0O5HhTUvWIbD3YdjME8JwvSCnNGBnTThKGEB91OZhzrJ4qIIxk/SBmyDDA==} engines: {node: '>=12'} @@ -4059,6 +4233,18 @@ packages: cpu: [riscv64] os: [linux] + '@esbuild/linux-riscv64@0.27.7': + resolution: {integrity: sha512-hL25LbxO1QOngGzu2U5xeXtxXcW+/GvMN3ejANqXkxZ/opySAZMrc+9LY/WyjAan41unrR3YrmtTsUpwT66InQ==} + engines: {node: '>=18'} + cpu: [riscv64] + os: [linux] + + '@esbuild/linux-riscv64@0.28.0': + resolution: {integrity: sha512-SQPZOwoTTT/HXFXQJG/vBX8sOFagGqvZyXcgLA3NhIqcBv1BJU1d46c0rGcrij2B56Z2rNiSLaZOYW5cUk7yLQ==} + engines: {node: '>=18'} + cpu: [riscv64] + os: [linux] + '@esbuild/linux-s390x@0.21.5': resolution: {integrity: sha512-zus5sxzqBJD3eXxwvjN1yQkRepANgxE9lgOW2qLnmr8ikMTphkjgXu1HR01K4FJg8h1kEEDAqDcZQtbrRnB41A==} engines: {node: '>=12'} @@ -4071,6 +4257,18 @@ packages: cpu: [s390x] os: [linux] + '@esbuild/linux-s390x@0.27.7': + resolution: {integrity: sha512-2k8go8Ycu1Kb46vEelhu1vqEP+UeRVj2zY1pSuPdgvbd5ykAw82Lrro28vXUrRmzEsUV0NzCf54yARIK8r0fdw==} + engines: {node: '>=18'} + cpu: [s390x] + os: [linux] + + '@esbuild/linux-s390x@0.28.0': + resolution: {integrity: sha512-SCfR0HN8CEEjnYnySJTd2cw0k9OHB/YFzt5zgJEwa+wL/T/raGWYMBqwDNAC6dqFKmJYZoQBRfHjgwLHGSrn3Q==} + engines: {node: '>=18'} + cpu: [s390x] + os: [linux] + '@esbuild/linux-x64@0.21.5': resolution: {integrity: sha512-1rYdTpyv03iycF1+BhzrzQJCdOuAOtaqHTWJZCWvijKD2N5Xu0TtVC8/+1faWqcP9iBCWOmjmhoH94dH82BxPQ==} engines: {node: '>=12'} @@ -4083,12 +4281,36 @@ packages: cpu: [x64] os: [linux] + '@esbuild/linux-x64@0.27.7': + resolution: {integrity: sha512-hzznmADPt+OmsYzw1EE33ccA+HPdIqiCRq7cQeL1Jlq2gb1+OyWBkMCrYGBJ+sxVzve2ZJEVeePbLM2iEIZSxA==} + engines: {node: '>=18'} + cpu: [x64] + os: [linux] + + '@esbuild/linux-x64@0.28.0': + resolution: {integrity: sha512-us0dSb9iFxIi8srnpl931Nvs65it/Jd2a2K3qs7fz2WfGPHqzfzZTfec7oxZJRNPXPnNYZtanmRc4AL/JwVzHQ==} + engines: {node: '>=18'} + cpu: [x64] + os: [linux] + '@esbuild/netbsd-arm64@0.25.12': resolution: {integrity: sha512-xXwcTq4GhRM7J9A8Gv5boanHhRa/Q9KLVmcyXHCTaM4wKfIpWkdXiMog/KsnxzJ0A1+nD+zoecuzqPmCRyBGjg==} engines: {node: '>=18'} cpu: [arm64] os: [netbsd] + '@esbuild/netbsd-arm64@0.27.7': + resolution: {integrity: sha512-b6pqtrQdigZBwZxAn1UpazEisvwaIDvdbMbmrly7cDTMFnw/+3lVxxCTGOrkPVnsYIosJJXAsILG9XcQS+Yu6w==} + engines: {node: '>=18'} + cpu: [arm64] + os: [netbsd] + + '@esbuild/netbsd-arm64@0.28.0': + resolution: {integrity: sha512-CR/RYotgtCKwtftMwJlUU7xCVNg3lMYZ0RzTmAHSfLCXw3NtZtNpswLEj/Kkf6kEL3Gw+BpOekRX0BYCtklhUw==} + engines: {node: '>=18'} + cpu: [arm64] + os: [netbsd] + '@esbuild/netbsd-x64@0.21.5': resolution: {integrity: sha512-Woi2MXzXjMULccIwMnLciyZH4nCIMpWQAs049KEeMvOcNADVxo0UBIQPfSmxB3CWKedngg7sWZdLvLczpe0tLg==} engines: {node: '>=12'} @@ -4101,12 +4323,36 @@ packages: cpu: [x64] os: [netbsd] + '@esbuild/netbsd-x64@0.27.7': + resolution: {integrity: sha512-OfatkLojr6U+WN5EDYuoQhtM+1xco+/6FSzJJnuWiUw5eVcicbyK3dq5EeV/QHT1uy6GoDhGbFpprUiHUYggrw==} + engines: {node: '>=18'} + cpu: [x64] + os: [netbsd] + + '@esbuild/netbsd-x64@0.28.0': + resolution: {integrity: sha512-nU1yhmYutL+fQ71Kxnhg8uEOdC0pwEW9entHykTgEbna2pw2dkbFSMeqjjyHZoCmt8SBkOSvV+yNmm94aUrrqw==} + engines: {node: '>=18'} + cpu: [x64] + os: [netbsd] + '@esbuild/openbsd-arm64@0.25.12': resolution: {integrity: sha512-fF96T6KsBo/pkQI950FARU9apGNTSlZGsv1jZBAlcLL1MLjLNIWPBkj5NlSz8aAzYKg+eNqknrUJ24QBybeR5A==} engines: {node: '>=18'} cpu: [arm64] os: [openbsd] + '@esbuild/openbsd-arm64@0.27.7': + resolution: {integrity: sha512-AFuojMQTxAz75Fo8idVcqoQWEHIXFRbOc1TrVcFSgCZtQfSdc1RXgB3tjOn/krRHENUB4j00bfGjyl2mJrU37A==} + engines: {node: '>=18'} + cpu: [arm64] + os: [openbsd] + + '@esbuild/openbsd-arm64@0.28.0': + resolution: {integrity: sha512-cXb5vApOsRsxsEl4mcZ1XY3D4DzcoMxR/nnc4IyqYs0rTI8ZKmW6kyyg+11Z8yvgMfAEldKzP7AdP64HnSC/6g==} + engines: {node: '>=18'} + cpu: [arm64] + os: [openbsd] + '@esbuild/openbsd-x64@0.21.5': resolution: {integrity: sha512-HLNNw99xsvx12lFBUwoT8EVCsSvRNDVxNpjZ7bPn947b8gJPzeHWyNVhFsaerc0n3TsbOINvRP2byTZ5LKezow==} engines: {node: '>=12'} @@ -4119,12 +4365,36 @@ packages: cpu: [x64] os: [openbsd] + '@esbuild/openbsd-x64@0.27.7': + resolution: {integrity: sha512-+A1NJmfM8WNDv5CLVQYJ5PshuRm/4cI6WMZRg1by1GwPIQPCTs1GLEUHwiiQGT5zDdyLiRM/l1G0Pv54gvtKIg==} + engines: {node: '>=18'} + cpu: [x64] + os: [openbsd] + + '@esbuild/openbsd-x64@0.28.0': + resolution: {integrity: sha512-8wZM2qqtv9UP3mzy7HiGYNH/zjTA355mpeuA+859TyR+e+Tc08IHYpLJuMsfpDJwoLo1ikIJI8jC3GFjnRClzA==} + engines: {node: '>=18'} + cpu: [x64] + os: [openbsd] + '@esbuild/openharmony-arm64@0.25.12': resolution: {integrity: sha512-rm0YWsqUSRrjncSXGA7Zv78Nbnw4XL6/dzr20cyrQf7ZmRcsovpcRBdhD43Nuk3y7XIoW2OxMVvwuRvk9XdASg==} engines: {node: '>=18'} cpu: [arm64] os: [openharmony] + '@esbuild/openharmony-arm64@0.27.7': + resolution: {integrity: sha512-+KrvYb/C8zA9CU/g0sR6w2RBw7IGc5J2BPnc3dYc5VJxHCSF1yNMxTV5LQ7GuKteQXZtspjFbiuW5/dOj7H4Yw==} + engines: {node: '>=18'} + cpu: [arm64] + os: [openharmony] + + '@esbuild/openharmony-arm64@0.28.0': + resolution: {integrity: sha512-FLGfyizszcef5C3YtoyQDACyg95+dndv79i2EekILBofh5wpCa1KuBqOWKrEHZg3zrL3t5ouE5jgr94vA+Wb2w==} + engines: {node: '>=18'} + cpu: [arm64] + os: [openharmony] + '@esbuild/sunos-x64@0.21.5': resolution: {integrity: sha512-6+gjmFpfy0BHU5Tpptkuh8+uw3mnrvgs+dSPQXQOv3ekbordwnzTVEb4qnIvQcYXq6gzkyTnoZ9dZG+D4garKg==} engines: {node: '>=12'} @@ -4137,6 +4407,18 @@ packages: cpu: [x64] os: [sunos] + '@esbuild/sunos-x64@0.27.7': + resolution: {integrity: sha512-ikktIhFBzQNt/QDyOL580ti9+5mL/YZeUPKU2ivGtGjdTYoqz6jObj6nOMfhASpS4GU4Q/Clh1QtxWAvcYKamA==} + engines: {node: '>=18'} + cpu: [x64] + os: [sunos] + + '@esbuild/sunos-x64@0.28.0': + resolution: {integrity: sha512-1ZgjUoEdHZZl/YlV76TSCz9Hqj9h9YmMGAgAPYd+q4SicWNX3G5GCyx9uhQWSLcbvPW8Ni7lj4gDa1T40akdlw==} + engines: {node: '>=18'} + cpu: [x64] + os: [sunos] + '@esbuild/win32-arm64@0.21.5': resolution: {integrity: sha512-Z0gOTd75VvXqyq7nsl93zwahcTROgqvuAcYDUr+vOv8uHhNSKROyU961kgtCD1e95IqPKSQKH7tBTslnS3tA8A==} engines: {node: '>=12'} @@ -4149,6 +4431,18 @@ packages: cpu: [arm64] os: [win32] + '@esbuild/win32-arm64@0.27.7': + resolution: {integrity: sha512-7yRhbHvPqSpRUV7Q20VuDwbjW5kIMwTHpptuUzV+AA46kiPze5Z7qgt6CLCK3pWFrHeNfDd1VKgyP4O+ng17CA==} + engines: {node: '>=18'} + cpu: [arm64] + os: [win32] + + '@esbuild/win32-arm64@0.28.0': + resolution: {integrity: sha512-Q9StnDmQ/enxnpxCCLSg0oo4+34B9TdXpuyPeTedN/6+iXBJ4J+zwfQI28u/Jl40nOYAxGoNi7mFP40RUtkmUA==} + engines: {node: '>=18'} + cpu: [arm64] + os: [win32] + '@esbuild/win32-ia32@0.21.5': resolution: {integrity: sha512-SWXFF1CL2RVNMaVs+BBClwtfZSvDgtL//G/smwAc5oVK/UPu2Gu9tIaRgFmYFFKrmg3SyAjSrElf0TiJ1v8fYA==} engines: {node: '>=12'} @@ -4161,6 +4455,18 @@ packages: cpu: [ia32] os: [win32] + '@esbuild/win32-ia32@0.27.7': + resolution: {integrity: sha512-SmwKXe6VHIyZYbBLJrhOoCJRB/Z1tckzmgTLfFYOfpMAx63BJEaL9ExI8x7v0oAO3Zh6D/Oi1gVxEYr5oUCFhw==} + engines: {node: '>=18'} + cpu: [ia32] + os: [win32] + + '@esbuild/win32-ia32@0.28.0': + resolution: {integrity: sha512-zF3ag/gfiCe6U2iczcRzSYJKH1DCI+ByzSENHlM2FcDbEeo5Zd2C86Aq0tKUYAJJ1obRP84ymxIAksZUcdztHA==} + engines: {node: '>=18'} + cpu: [ia32] + os: [win32] + '@esbuild/win32-x64@0.21.5': resolution: {integrity: sha512-tQd/1efJuzPC6rCFwEvLtci/xNFcTZknmXs98FYDfGE4wP9ClFV98nyKrzJKVPMhdDnjzLhdUyMX4PsQAPjwIw==} engines: {node: '>=12'} @@ -4173,6 +4479,18 @@ packages: cpu: [x64] os: [win32] + '@esbuild/win32-x64@0.27.7': + resolution: {integrity: sha512-56hiAJPhwQ1R4i+21FVF7V8kSD5zZTdHcVuRFMW0hn753vVfQN8xlx4uOPT4xoGH0Z/oVATuR82AiqSTDIpaHg==} + engines: {node: '>=18'} + cpu: [x64] + os: [win32] + + '@esbuild/win32-x64@0.28.0': + resolution: {integrity: sha512-pEl1bO9mfAmIC+tW5btTmrKaujg3zGtUmWNdCw/xs70FBjwAL3o9OEKNHvNmnyylD6ubxUERiEhdsL0xBQ9efw==} + engines: {node: '>=18'} + cpu: [x64] + os: [win32] + '@eslint-community/eslint-utils@4.9.1': resolution: {integrity: sha512-phrYmNiYppR7znFEdqgfWHXR6NCkZEK7hwWDHZUjit/2/U0r6XvkDl0SYnoM51Hq7FhCGdLDT6zxCCOY1hexsQ==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} @@ -5023,6 +5341,12 @@ packages: '@rolldown/pluginutils@1.0.0-beta.27': resolution: {integrity: sha512-+d0F4MKMCbeVUJwG96uQ4SgAznZNSq93I3V+9NHA4OpvqG8mRCpGdKmK8l/dl02h2CCDHwW2FqilnTyDcAnqjA==} + '@rolldown/pluginutils@1.0.0-rc.15': + resolution: {integrity: sha512-UromN0peaE53IaBRe9W7CjrZgXl90fqGpK+mIZbA3qSTeYqg3pqpROBdIPvOG3F5ereDHNwoHBI2e50n1BDr1g==} + + '@rolldown/pluginutils@1.0.0-rc.3': + resolution: {integrity: sha512-eybk3TjzzzV97Dlj5c+XrBFW57eTNhzod66y9HrBlzJ6NsCrWCp/2kaPS3K9wJmurBC0Tdw4yPjXKZqlznim3Q==} + '@rollup/pluginutils@5.3.0': resolution: {integrity: sha512-5EdhGZtnu3V88ces7s53hhfK5KSASnJZv8Lulpc04cWO3REESroJXg73DFsOmgbU2BhwV0E20bu2IDZb3VKW4Q==} engines: {node: '>=14.0.0'} @@ -5357,21 +5681,21 @@ packages: '@sinonjs/fake-timers@10.3.0': resolution: {integrity: sha512-V4BG07kuYSUkTCSBHG8G8TNhM+F19jXFWnQtzj+we8DrkpSBCee9Z3Ms8yiGer/dlmhe35/Xdgyo3/0rQKg7YA==} - '@storybook/addon-a11y@9.1.6': - resolution: {integrity: sha512-jpuzbZlT8G1hx4N6nhhmxy6Lu+Xnz1oeGb2/pm+rKx2fZ4oy7yGRliRNOvpTy8MbkpnfMoLLrcqc66s/kfdf3A==} + '@storybook/addon-a11y@10.3.5': + resolution: {integrity: sha512-5k6lpgfIeLxvNhE8v3wEzdiu73ONKjF4gmH1AHvfqYd8kIVzQJai0KCDxgvqNncXHQhIWkaf1fg6+9hKaYJyaw==} peerDependencies: - storybook: ^9.1.6 + storybook: ^10.3.5 - '@storybook/addon-docs@9.1.20': - resolution: {integrity: sha512-eUIOd4u/p9994Nkv8Avn6r/xmS7D+RNmhmu6KGROefN3myLe3JfhSdimal2wDFe/h/OUNZ/LVVKMZrya9oEfKQ==} + '@storybook/addon-docs@10.3.5': + resolution: {integrity: sha512-WuHbxia/o5TX4Rg/IFD0641K5qId/Nk0dxhmAUNoFs5L0+yfZUwh65XOBbzXqrkYmYmcVID4v7cgDRmzstQNkA==} peerDependencies: - storybook: ^9.1.20 + storybook: ^10.3.5 - '@storybook/addon-links@9.1.6': - resolution: {integrity: sha512-TY9d3MVylNHNQswlwsvXMaGNZXGaEr8RMvV9BES65BC4GAPnHM6W1I9mEf1ckg+uSFBf43ZMOsYulSMo86ddpQ==} + '@storybook/addon-links@10.3.5': + resolution: {integrity: sha512-Xe2wCGZ+hpZ0cDqAIBHk+kPc8nODNbu585ghd5bLrlYJMDVXoNM/fIlkrLgjIDVbfpgeJLUEg7vldJrn+FyOLw==} peerDependencies: - react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0-beta - storybook: ^9.1.6 + react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 + storybook: ^10.3.5 peerDependenciesMeta: react: optional: true @@ -5387,10 +5711,23 @@ packages: storybook: ^9.1.6 vite: ^5.0.0 || ^6.0.0 || ^7.0.0 - '@storybook/csf-plugin@9.1.20': - resolution: {integrity: sha512-HHgk50YQhML7mT01Mzf9N7lNMFHWN4HwwRP90kPT9Ct+Jhx7h3LBDbdmWjI96HwujcpY7eoYdTfpB1Sw8Z7nBQ==} + '@storybook/csf-plugin@10.3.5': + resolution: {integrity: sha512-qlEzNKxOjq86pvrbuMwiGD/bylnsXk1dg7ve0j77YFjEEchqtl7qTlrXvFdNaLA89GhW6D/EV6eOCu/eobPDgw==} peerDependencies: - storybook: ^9.1.20 + esbuild: '*' + rollup: '*' + storybook: ^10.3.5 + vite: '*' + webpack: '*' + peerDependenciesMeta: + esbuild: + optional: true + rollup: + optional: true + vite: + optional: true + webpack: + optional: true '@storybook/csf-plugin@9.1.6': resolution: {integrity: sha512-cz4Y+OYCtuovFNwoLkIKk0T62clrRTYf26Bbo1gdIGuX/W3JPP/LnN97sP2/0nfF6heZqCdEwb47k7RubkxXZg==} @@ -5407,12 +5744,18 @@ packages: react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0-beta react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0-beta - '@storybook/react-dom-shim@9.1.20': - resolution: {integrity: sha512-UYdZavfPwHEqCKMqPssUOlyFVZiJExLxnSHwkICSZBmw3gxXJcp1aXWs7PvoZdWz2K4ztl3IcKErXXHeiY6w+A==} + '@storybook/icons@2.0.1': + resolution: {integrity: sha512-/smVjw88yK3CKsiuR71vNgWQ9+NuY2L+e8X7IMrFjexjm6ZR8ULrV2DRkTA61aV6ryefslzHEGDInGpnNeIocg==} peerDependencies: - react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0-beta - react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0-beta - storybook: ^9.1.20 + react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 + react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 + + '@storybook/react-dom-shim@10.3.5': + resolution: {integrity: sha512-Gw8R7XZm0zSUH0XAuxlQJhmizsLzyD6x00KOlP6l7oW9eQHXGfxg3seNDG3WrSAcW07iP1/P422kuiriQlOv7g==} + peerDependencies: + react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 + react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 + storybook: ^10.3.5 '@storybook/react-dom-shim@9.1.6': resolution: {integrity: sha512-Px4duzPMTPqI3kes6eUyYjWpEeJ0AOCCeSDCBDm9rzlf4a+eXlxfhkcVWft3viCDiIkc0vtYagb2Yu7bcSIypg==} @@ -5469,6 +5812,10 @@ packages: resolution: {integrity: sha512-IteBhl4XqYNkM54f4ejhLRJiZNqcSCoXUOG2CPK7qbD322KjQozM4kHQOfkG2oln9b9HTYqs+Sae8vBATubxxA==} engines: {node: '>=14', npm: '>=6', yarn: '>=1'} + '@testing-library/jest-dom@6.9.1': + resolution: {integrity: sha512-zIcONa+hVtVSSep9UT3jZ5rizo2BsxgyDYU7WFD5eICBE7no3881HGeb/QkGfsJs6JTkY1aQhT7rIPC7e+0nnA==} + engines: {node: '>=14', npm: '>=6', yarn: '>=1'} + '@testing-library/react@13.4.0': resolution: {integrity: sha512-sXOGON+WNTh3MLE9rve97ftaZukN3oNf2KjDy7YTx6hcTO2uuLHuCGynMDhFwGw/jYf4OJ2Qk0i4i79qMNNkyw==} engines: {node: '>=12'} @@ -5742,6 +6089,9 @@ packages: '@types/node@22.19.15': resolution: {integrity: sha512-F0R/h2+dsy5wJAUe3tAU6oqa2qbWY5TpNfL/RGmo1y38hiyO1w3x2jPtt76wmuaJI4DQnOBu21cNXQ2STIUUWg==} + '@types/node@25.5.2': + resolution: {integrity: sha512-tO4ZIRKNC+MDWV4qKVZe3Ql/woTnmHDr5JD8UI5hn2pwBrHEwOEMZK7WlNb5RKB6EoJ02gwmQS9OrjuFnZYdpg==} + '@types/normalize-package-data@2.4.4': resolution: {integrity: sha512-37i+OaWTh9qeK4LSHPsyRC7NahnGotNuZvjLSgcPzblpHB3rrCJxAOgI5gCdKm7coonsaX1Of0ILiTcnZjbfxA==} @@ -5875,24 +6225,20 @@ packages: '@types/yauzl@2.10.3': resolution: {integrity: sha512-oJoftv0LSuaDZE3Le4DbKX+KS9G36NzOeSap90UIK0yMA/NhKJhqlSGtNDORNRaIbQfzjXDrQa0ytJ6mNRGz/Q==} - '@typescript-eslint/eslint-plugin@8.33.0': - resolution: {integrity: sha512-CACyQuqSHt7ma3Ns601xykeBK/rDeZa3w6IS6UtMQbixO5DWy+8TilKkviGDH6jtWCo8FGRKEK5cLLkPvEammQ==} + '@typescript-eslint/eslint-plugin@8.58.1': + resolution: {integrity: sha512-eSkwoemjo76bdXl2MYqtxg51HNwUSkWfODUOQ3PaTLZGh9uIWWFZIjyjaJnex7wXDu+TRx+ATsnSxdN9YWfRTQ==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} peerDependencies: - '@typescript-eslint/parser': ^8.33.0 - eslint: ^8.57.0 || ^9.0.0 - typescript: '>=4.8.4 <5.9.0' + '@typescript-eslint/parser': ^8.58.1 + eslint: ^8.57.0 || ^9.0.0 || ^10.0.0 + typescript: '>=4.8.4 <6.1.0' - '@typescript-eslint/parser@8.33.0': - resolution: {integrity: sha512-JaehZvf6m0yqYp34+RVnihBAChkqeH+tqqhS0GuX1qgPpwLvmTPheKEs6OeCK6hVJgXZHJ2vbjnC9j119auStQ==} + '@typescript-eslint/parser@8.58.1': + resolution: {integrity: sha512-gGkiNMPqerb2cJSVcruigx9eHBlLG14fSdPdqMoOcBfh+vvn4iCq2C8MzUB89PrxOXk0y3GZ1yIWb9aOzL93bw==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} peerDependencies: - eslint: ^8.57.0 || ^9.0.0 - typescript: '>=4.8.4 <5.9.0' - - '@typescript-eslint/project-service@8.33.0': - resolution: {integrity: sha512-d1hz0u9l6N+u/gcrk6s6gYdl7/+pp8yHheRTqP6X5hVDKALEaTn8WfGiit7G511yueBEL3OpOEpD+3/MBdoN+A==} - engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + eslint: ^8.57.0 || ^9.0.0 || ^10.0.0 + typescript: '>=4.8.4 <6.1.0' '@typescript-eslint/project-service@8.57.2': resolution: {integrity: sha512-FuH0wipFywXRTHf+bTTjNyuNQQsQC3qh/dYzaM4I4W0jrCqjCVuUh99+xd9KamUfmCGPvbO8NDngo/vsnNVqgw==} @@ -5900,19 +6246,19 @@ packages: peerDependencies: typescript: '>=4.8.4 <6.0.0' - '@typescript-eslint/scope-manager@8.33.0': - resolution: {integrity: sha512-LMi/oqrzpqxyO72ltP+dBSP6V0xiUb4saY7WLtxSfiNEBI8m321LLVFU9/QDJxjDQG9/tjSqKz/E3380TEqSTw==} + '@typescript-eslint/project-service@8.58.1': + resolution: {integrity: sha512-gfQ8fk6cxhtptek+/8ZIqw8YrRW5048Gug8Ts5IYcMLCw18iUgrZAEY/D7s4hkI0FxEfGakKuPK/XUMPzPxi5g==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + peerDependencies: + typescript: '>=4.8.4 <6.1.0' '@typescript-eslint/scope-manager@8.57.2': resolution: {integrity: sha512-snZKH+W4WbWkrBqj4gUNRIGb/jipDW3qMqVJ4C9rzdFc+wLwruxk+2a5D+uoFcKPAqyqEnSb4l2ULuZf95eSkw==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} - '@typescript-eslint/tsconfig-utils@8.33.0': - resolution: {integrity: sha512-sTkETlbqhEoiFmGr1gsdq5HyVbSOF0145SYDJ/EQmXHtKViCaGvnyLqWFFHtEXoS0J1yU8Wyou2UGmgW88fEug==} + '@typescript-eslint/scope-manager@8.58.1': + resolution: {integrity: sha512-TPYUEqJK6avLcEjumWsIuTpuYODTTDAtoMdt8ZZa93uWMTX13Nb8L5leSje1NluammvU+oI3QRr5lLXPgihX3w==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} - peerDependencies: - typescript: '>=4.8.4 <5.9.0' '@typescript-eslint/tsconfig-utils@8.57.2': resolution: {integrity: sha512-3Lm5DSM+DCowsUOJC+YqHHnKEfFh5CoGkj5Z31NQSNF4l5wdOwqGn99wmwN/LImhfY3KJnmordBq/4+VDe2eKw==} @@ -5920,26 +6266,26 @@ packages: peerDependencies: typescript: '>=4.8.4 <6.0.0' - '@typescript-eslint/type-utils@8.33.0': - resolution: {integrity: sha512-lScnHNCBqL1QayuSrWeqAL5GmqNdVUQAAMTaCwdYEdWfIrSrOGzyLGRCHXcCixa5NK6i5l0AfSO2oBSjCjf4XQ==} + '@typescript-eslint/tsconfig-utils@8.58.1': + resolution: {integrity: sha512-JAr2hOIct2Q+qk3G+8YFfqkqi7sC86uNryT+2i5HzMa2MPjw4qNFvtjnw1IiA1rP7QhNKVe21mSSLaSjwA1Olw==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} peerDependencies: - eslint: ^8.57.0 || ^9.0.0 - typescript: '>=4.8.4 <5.9.0' + typescript: '>=4.8.4 <6.1.0' - '@typescript-eslint/types@8.33.0': - resolution: {integrity: sha512-DKuXOKpM5IDT1FA2g9x9x1Ug81YuKrzf4mYX8FAVSNu5Wo/LELHWQyM1pQaDkI42bX15PWl0vNPt1uGiIFUOpg==} + '@typescript-eslint/type-utils@8.58.1': + resolution: {integrity: sha512-HUFxvTJVroT+0rXVJC7eD5zol6ID+Sn5npVPWoFuHGg9Ncq5Q4EYstqR+UOqaNRFXi5TYkpXXkLhoCHe3G0+7w==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + peerDependencies: + eslint: ^8.57.0 || ^9.0.0 || ^10.0.0 + typescript: '>=4.8.4 <6.1.0' '@typescript-eslint/types@8.57.2': resolution: {integrity: sha512-/iZM6FnM4tnx9csuTxspMW4BOSegshwX5oBDznJ7S4WggL7Vczz5d2W11ecc4vRrQMQHXRSxzrCsyG5EsPPTbA==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} - '@typescript-eslint/typescript-estree@8.33.0': - resolution: {integrity: sha512-vegY4FQoB6jL97Tu/lWRsAiUUp8qJTqzAmENH2k59SJhw0Th1oszb9Idq/FyyONLuNqT1OADJPXfyUNOR8SzAQ==} + '@typescript-eslint/types@8.58.1': + resolution: {integrity: sha512-io/dV5Aw5ezwzfPBBWLoT+5QfVtP8O7q4Kftjn5azJ88bYyp/ZMCsyW1lpKK46EXJcaYMZ1JtYj+s/7TdzmQMw==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} - peerDependencies: - typescript: '>=4.8.4 <5.9.0' '@typescript-eslint/typescript-estree@8.57.2': resolution: {integrity: sha512-2MKM+I6g8tJxfSmFKOnHv2t8Sk3T6rF20A1Puk0svLK+uVapDZB/4pfAeB7nE83uAZrU6OxW+HmOd5wHVdXwXA==} @@ -5947,12 +6293,11 @@ packages: peerDependencies: typescript: '>=4.8.4 <6.0.0' - '@typescript-eslint/utils@8.33.0': - resolution: {integrity: sha512-lPFuQaLA9aSNa7D5u2EpRiqdAUhzShwGg/nhpBlc4GR6kcTABttCuyjFs8BcEZ8VWrjCBof/bePhP3Q3fS+Yrw==} + '@typescript-eslint/typescript-estree@8.58.1': + resolution: {integrity: sha512-w4w7WR7GHOjqqPnvAYbazq+Y5oS68b9CzasGtnd6jIeOIeKUzYzupGTB2T4LTPSv4d+WPeccbxuneTFHYgAAWg==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} peerDependencies: - eslint: ^8.57.0 || ^9.0.0 - typescript: '>=4.8.4 <5.9.0' + typescript: '>=4.8.4 <6.1.0' '@typescript-eslint/utils@8.57.2': resolution: {integrity: sha512-krRIbvPK1ju1WBKIefiX+bngPs+odIQUtR7kymzPfo1POVw3jlF+nLkmexdSSd4UCbDcQn+wMBATOOmpBbqgKg==} @@ -5961,37 +6306,44 @@ packages: eslint: ^8.57.0 || ^9.0.0 || ^10.0.0 typescript: '>=4.8.4 <6.0.0' - '@typescript-eslint/visitor-keys@8.33.0': - resolution: {integrity: sha512-7RW7CMYoskiz5OOGAWjJFxgb7c5UNjTG292gYhWeOAcFmYCtVCSqjqSBj5zMhxbXo2JOW95YYrUWJfU0zrpaGQ==} + '@typescript-eslint/utils@8.58.1': + resolution: {integrity: sha512-Ln8R0tmWC7pTtLOzgJzYTXSCjJ9rDNHAqTaVONF4FEi2qwce8mD9iSOxOpLFFvWp/wBFlew0mjM1L1ihYWfBdQ==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + peerDependencies: + eslint: ^8.57.0 || ^9.0.0 || ^10.0.0 + typescript: '>=4.8.4 <6.1.0' '@typescript-eslint/visitor-keys@8.57.2': resolution: {integrity: sha512-zhahknjobV2FiD6Ee9iLbS7OV9zi10rG26odsQdfBO/hjSzUQbkIYgda+iNKK1zNiW2ey+Lf8MU5btN17V3dUw==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + '@typescript-eslint/visitor-keys@8.58.1': + resolution: {integrity: sha512-y+vH7QE8ycjoa0bWciFg7OpFcipUuem1ujhrdLtq1gByKwfbC7bPeKsiny9e0urg93DqwGcHey+bGRKCnF1nZQ==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + '@ungap/structured-clone@1.3.0': resolution: {integrity: sha512-WmoN8qaIAo7WTYWbAZuG8PYEhn5fkz7dZrqTBZ7dtt//lL2Gwms1IcnQ5yHqjDfX8Ft5j4YzDM23f87zBfDe9g==} '@upsetjs/venn.js@1.4.2': resolution: {integrity: sha512-sFyczoc4T0FonsMiHo/7AXqTpuBOOlIGTIMli5tFdfTXUECogGsnHY4+BQfHX9EaYk4zxBno/9PKsxEfY3CZLA==} - '@vitejs/plugin-react@2.0.0': - resolution: {integrity: sha512-zHkRR+X4zqEPNBbKV2FvWSxK7Q6crjMBVIAYroSU8Nbb4M3E5x4qOiLoqJBHtXgr27kfednXjkwr3lr8jS6Wrw==} - engines: {node: '>=14.18.0'} - peerDependencies: - vite: ^3.0.0 - '@vitejs/plugin-react@4.7.0': resolution: {integrity: sha512-gUu9hwfWvvEDBBmgtAowQCojwZmJ5mcLn3aufeCsitijs3+f2NsrPtlAWIR6OPiqljl96GVCUbLe0HyqIpVaoA==} engines: {node: ^14.18.0 || >=16.0.0} peerDependencies: vite: ^4.2.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 - '@vitejs/plugin-vue-jsx@3.1.0': - resolution: {integrity: sha512-w9M6F3LSEU5kszVb9An2/MmXNxocAnUb3WhRr8bHlimhDrXNt6n6D2nJQR3UXpGlZHh/EsgouOHCsM8V3Ln+WA==} - engines: {node: ^14.18.0 || >=16.0.0} + '@vitejs/plugin-react@5.2.0': + resolution: {integrity: sha512-YmKkfhOAi3wsB1PhJq5Scj3GXMn3WvtQ/JC0xoopuHoXSdmtdStOpFrYaT1kie2YgFBcIe64ROzMYRjCrYOdYw==} + engines: {node: ^20.19.0 || >=22.12.0} + peerDependencies: + vite: ^4.2.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0 + + '@vitejs/plugin-vue-jsx@5.1.5': + resolution: {integrity: sha512-jIAsvHOEtWpslLOI2MeElGFxH7M8pM83BU/Tor4RLyiwH0FM4nUW3xdvbw20EeU9wc5IspQwMq225K3CMnJEpA==} + engines: {node: ^20.19.0 || >=22.12.0} peerDependencies: - vite: ^4.0.0 || ^5.0.0 + vite: ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0 vue: ^3.0.0 '@vitejs/plugin-vue@5.2.4': @@ -6001,13 +6353,13 @@ packages: vite: ^5.0.0 || ^6.0.0 vue: ^3.2.25 - '@vitest/browser@3.0.6': - resolution: {integrity: sha512-FqKwCAkALZfNzGNx4YvRJa6HCWM2USWTjOdNO2egI/s6+3WkIl4xAlYISOARLJLDAI3yCXcpTtuUUF39K8TQgw==} + '@vitest/browser@3.2.4': + resolution: {integrity: sha512-tJxiPrWmzH8a+w9nLKlQMzAKX/7VjFs50MWgcAj7p9XQ7AQ9/35fByFYptgPELyLw+0aixTnC4pUWV+APcZ/kw==} peerDependencies: playwright: '*' safaridriver: '*' - vitest: 3.0.6 - webdriverio: '*' + vitest: 3.2.4 + webdriverio: ^7.0.0 || ^8.0.0 || ^9.0.0 peerDependenciesMeta: playwright: optional: true @@ -6016,34 +6368,9 @@ packages: webdriverio: optional: true - '@vitest/expect@3.0.9': - resolution: {integrity: sha512-5eCqRItYgIML7NNVgJj6TVCmdzE7ZVgJhruW0ziSQV4V7PvLkDL1bBkBdcTs/VuIz0IxPb5da1IDSqc1TR9eig==} - '@vitest/expect@3.2.4': resolution: {integrity: sha512-Io0yyORnB6sikFlt8QW5K7slY4OjqNX9jmJQ02QDda8lyM6B5oNgVWoSoKPac8/kgnCUzuHQKrSLtu/uOqqrig==} - '@vitest/mocker@3.0.6': - resolution: {integrity: sha512-KPztr4/tn7qDGZfqlSPQoF2VgJcKxnDNhmfR3VgZ6Fy1bO8T9Fc1stUiTXtqz0yG24VpD00pZP5f8EOFknjNuQ==} - peerDependencies: - msw: ^2.4.9 - vite: ^5.0.0 || ^6.0.0 - peerDependenciesMeta: - msw: - optional: true - vite: - optional: true - - '@vitest/mocker@3.0.9': - resolution: {integrity: sha512-ryERPIBOnvevAkTq+L1lD+DTFBRcjueL9lOUfXsLfwP92h4e+Heb+PjiqS3/OURWPtywfafK0kj++yDFjWUmrA==} - peerDependencies: - msw: ^2.4.9 - vite: ^5.0.0 || ^6.0.0 - peerDependenciesMeta: - msw: - optional: true - vite: - optional: true - '@vitest/mocker@3.2.4': resolution: {integrity: sha512-46ryTE9RZO/rfDd7pEqFl7etuyzekzEhUbTW3BvmeO/BcCMEgq59BKhek3dXDWgAj4oMK6OZi+vRr1wPW6qjEQ==} peerDependencies: @@ -6055,57 +6382,48 @@ packages: vite: optional: true - '@vitest/pretty-format@3.0.6': - resolution: {integrity: sha512-Zyctv3dbNL+67qtHfRnUE/k8qxduOamRfAL1BurEIQSyOEFffoMvx2pnDSSbKAAVxY0Ej2J/GH2dQKI0W2JyVg==} - - '@vitest/pretty-format@3.0.9': - resolution: {integrity: sha512-OW9F8t2J3AwFEwENg3yMyKWweF7oRJlMyHOMIhO5F3n0+cgQAJZBjNgrF8dLwFTEXl5jUqBLXd9QyyKv8zEcmA==} - '@vitest/pretty-format@3.2.4': resolution: {integrity: sha512-IVNZik8IVRJRTr9fxlitMKeJeXFFFN0JaB9PHPGQ8NKQbGpfjlTx9zO4RefN8gp7eqjNy8nyK3NZmBzOPeIxtA==} - '@vitest/runner@3.0.9': - resolution: {integrity: sha512-NX9oUXgF9HPfJSwl8tUZCMP1oGx2+Sf+ru6d05QjzQz4OwWg0psEzwY6VexP2tTHWdOkhKHUIZH+fS6nA7jfOw==} + '@vitest/pretty-format@4.1.4': + resolution: {integrity: sha512-ddmDHU0gjEUyEVLxtZa7xamrpIefdEETu3nZjWtHeZX4QxqJ7tRxSteHVXJOcr8jhiLoGAhkK4WJ3WqBpjx42A==} - '@vitest/snapshot@3.0.9': - resolution: {integrity: sha512-AiLUiuZ0FuA+/8i19mTYd+re5jqjEc2jZbgJ2up0VY0Ddyyxg/uUtBDpIFAy4uzKaQxOW8gMgBdAJJ2ydhu39A==} + '@vitest/runner@3.2.4': + resolution: {integrity: sha512-oukfKT9Mk41LreEW09vt45f8wx7DordoWUZMYdY/cyAk7w5TWkTRCNZYF7sX7n2wB7jyGAl74OxgwhPgKaqDMQ==} - '@vitest/spy@3.0.6': - resolution: {integrity: sha512-HfOGx/bXtjy24fDlTOpgiAEJbRfFxoX3zIGagCqACkFKKZ/TTOE6gYMKXlqecvxEndKFuNHcHqP081ggZ2yM0Q==} + '@vitest/runner@4.1.4': + resolution: {integrity: sha512-xTp7VZ5aXP5ZJrn15UtJUWlx6qXLnGtF6jNxHepdPHpMfz/aVPx+htHtgcAL2mDXJgKhpoo2e9/hVJsIeFbytQ==} - '@vitest/spy@3.0.9': - resolution: {integrity: sha512-/CcK2UDl0aQ2wtkp3YVWldrpLRNCfVcIOFGlVGKO4R5eajsH393Z1yiXLVQ7vWsj26JOEjeZI0x5sm5P4OGUNQ==} + '@vitest/snapshot@3.2.4': + resolution: {integrity: sha512-dEYtS7qQP2CjU27QBC5oUOxLE/v5eLkGqPE0ZKEIDGMs4vKWe7IjgLOeauHsR0D5YuuycGRO5oSRXnwnmA78fQ==} '@vitest/spy@3.2.4': resolution: {integrity: sha512-vAfasCOe6AIK70iP5UD11Ac4siNUNJ9i/9PZ3NKx07sG6sUxeag1LWdNrMWeKKYBLlzuK+Gn65Yd5nyL6ds+nw==} - '@vitest/ui@3.0.6': - resolution: {integrity: sha512-N4M2IUG2Q5LCeX4OWs48pQF4P3qsFejmDTc6QWGRFTLPrEe5EvM5HN0WSUnGAmuzQpSWv7ItfSsIJIWaEM2wpQ==} + '@vitest/ui@3.2.4': + resolution: {integrity: sha512-hGISOaP18plkzbWEcP/QvtRW1xDXF2+96HbEX6byqQhAUbiS5oH6/9JwW+QsQCIYON2bI6QZBF+2PvOmrRZ9wA==} peerDependencies: - vitest: 3.0.6 - - '@vitest/utils@3.0.6': - resolution: {integrity: sha512-18ktZpf4GQFTbf9jK543uspU03Q2qya7ZGya5yiZ0Gx0nnnalBvd5ZBislbl2EhLjM8A8rt4OilqKG7QwcGkvQ==} - - '@vitest/utils@3.0.9': - resolution: {integrity: sha512-ilHM5fHhZ89MCp5aAaM9uhfl1c2JdxVxl3McqsdVyVNN6JffnEen8UMCdRTzOhGXNQGo5GNL9QugHrz727Wnng==} + vitest: 3.2.4 '@vitest/utils@3.2.4': resolution: {integrity: sha512-fB2V0JFrQSMsCo9HiSq3Ezpdv4iYaXRG1Sx8edX3MwxfyNn83mKiGzOcH+Fkxt4MHxr3y42fQi1oeAInqgX2QA==} - '@vue/babel-helper-vue-transform-on@1.5.0': - resolution: {integrity: sha512-0dAYkerNhhHutHZ34JtTl2czVQHUNWv6xEbkdF5W+Yrv5pCWsqjeORdOgbtW2I9gWlt+wBmVn+ttqN9ZxR5tzA==} + '@vitest/utils@4.1.4': + resolution: {integrity: sha512-13QMT+eysM5uVGa1rG4kegGYNp6cnQcsTc67ELFbhNLQO+vgsygtYJx2khvdt4gVQqSSpC/KT5FZZxUpP3Oatw==} + + '@vue/babel-helper-vue-transform-on@2.0.1': + resolution: {integrity: sha512-uZ66EaFbnnZSYqYEyplWvn46GhZ1KuYSThdT68p+am7MgBNbQ3hphTL9L+xSIsWkdktwhPYLwPgVWqo96jDdRA==} - '@vue/babel-plugin-jsx@1.5.0': - resolution: {integrity: sha512-mneBhw1oOqCd2247O0Yw/mRwC9jIGACAJUlawkmMBiNmL4dGA2eMzuNZVNqOUfYTa6vqmND4CtOPzmEEEqLKFw==} + '@vue/babel-plugin-jsx@2.0.1': + resolution: {integrity: sha512-a8CaLQjD/s4PVdhrLD/zT574ZNPnZBOY+IhdtKWRB4HRZ0I2tXBi5ne7d9eCfaYwp5gU5+4KIyFTV1W1YL9xZA==} peerDependencies: '@babel/core': ^7.0.0-0 peerDependenciesMeta: '@babel/core': optional: true - '@vue/babel-plugin-resolve-type@1.5.0': - resolution: {integrity: sha512-Wm/60o+53JwJODm4Knz47dxJnLDJ9FnKnGZJbUUf8nQRAtt6P+undLUAVU3Ha33LxOJe6IPoifRQ6F/0RrU31w==} + '@vue/babel-plugin-resolve-type@2.0.1': + resolution: {integrity: sha512-ybwgIuRGRRBhOU37GImDoWQoz+TlSqap65qVI6iwg/J7FfLTLmMf97TS7xQH9I7Qtr/gp161kYVdhr1ZMraSYQ==} peerDependencies: '@babel/core': ^7.0.0-0 @@ -6297,6 +6615,9 @@ packages: '@webassemblyjs/wast-printer@1.14.1': resolution: {integrity: sha512-kPSSXE6De1XOR820C90RIo2ogvZG+c3KiHzqUoO/F34Y2shGzesfqv7o57xrxovZJH/MetF5UjroJ/R/3isoiw==} + '@webcontainer/env@1.1.1': + resolution: {integrity: sha512-6aN99yL695Hi9SuIk1oC88l9o0gmxL1nGWWQ/kNy81HigJ0FoaoTXpytCj6ItzgyCEwA9kF1wixsTuv5cjsgng==} + '@xtuc/ieee754@1.2.0': resolution: {integrity: sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA==} @@ -6410,13 +6731,21 @@ packages: allure-playwright: optional: true + allure-js-commons@3.7.1: + resolution: {integrity: sha512-S8tFymEzgWpp3ITGFu01z2+6KYdiNZC3sX8FbJaNgLoLWBHDBNQ0lq4lTQgkVjV6IN4TIUrnYfa2YuytWpv8WA==} + peerDependencies: + allure-playwright: 3.7.1 + peerDependenciesMeta: + allure-playwright: + optional: true + allure-playwright@3.4.5: resolution: {integrity: sha512-pVewTpU9Z4qgT14VJdtYLAfF8rWROuESmvDkvyu/QnFWhRFrcDBnomynj84yx/QpXyMjJL+qu1yMU2z4Mq1YnA==} peerDependencies: '@playwright/test': '>=1.53.0' - allure-vitest@3.4.5: - resolution: {integrity: sha512-HdimbVVdqCZaMVXd9YDu25cBkj9hbl20JlhuXjzGE8TfCfD1MBVtKrsog6e4YJXQ1ZbX3qVpYhuHWHSDn6x4WQ==} + allure-vitest@3.7.1: + resolution: {integrity: sha512-RgxxIjTEDHEPqEShPxLrxC4A3E5GGSjHgEtNh0aW7WJ09OW+j+OYq8xad0lYTDM97Nb5o414cwMNcjBrN7bKqA==} peerDependencies: '@vitest/runner': '>=1.3.0' vitest: '>=1.3.0' @@ -6800,10 +7129,6 @@ packages: bcrypt-pbkdf@1.0.2: resolution: {integrity: sha512-qeFIXtP4MSoi6NLqO12WfqARWWuCKi2Rn/9hJLEmtB5yTNr9DqFWkJRCf2qShWzPeAMRnOgCrq0sg/KLv5ES9w==} - better-opn@3.0.2: - resolution: {integrity: sha512-aVNobHnJqLiUelTaHat9DZ1qM2w0C0Eym4LPI/3JxOnSokGVdsl1T1kN7TFvsEAD8G47A6VKQ0TVHqbBnYMJlQ==} - engines: {node: '>=12.0.0'} - big.js@3.2.0: resolution: {integrity: sha512-+hN/Zh2D08Mx65pZ/4g5bsmNiZUuChDiQfTUQ7qJr4/kuopCr88xZsAXv6mBoZEsUI4OuGHlX59qE94K2mMW8Q==} @@ -7821,10 +8146,6 @@ packages: resolution: {integrity: sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A==} engines: {node: '>= 0.4'} - define-lazy-prop@2.0.0: - resolution: {integrity: sha512-Ds09qNh8yw3khSjiJjiUInaGX9xlqZDY7JVryGxdxV7NPeuqQfplOpQ66yJFZut3jLa5zOwkXw1g9EI2uKh4Og==} - engines: {node: '>=8'} - define-lazy-prop@3.0.0: resolution: {integrity: sha512-N+MeXYoqr3pOgn8xfyRPREN7gHakLYjhsHhWGT3fWAiL4IkAt0iDw14QiiEm2bE30c5XX5q0FtAA3CK5f9/BUg==} engines: {node: '>=12'} @@ -8337,11 +8658,6 @@ packages: peerDependencies: esbuild: '*' - esbuild-register@3.6.0: - resolution: {integrity: sha512-H2/S7Pm8a9CL1uhp9OvjwrBh5Pvx0H8qVOxNu8Wed9Y7qv56MPtq+GGM8RJpq6glYJn9Wspr8uw7l55uyinNeg==} - peerDependencies: - esbuild: '>=0.12 <1' - esbuild-sunos-64@0.14.29: resolution: {integrity: sha512-EfhQN/XO+TBHTbkxwsxwA7EfiTHFe+MNDfxcf0nj97moCppD9JHPq48MLtOaDcuvrTYOcrMdJVeqmmeQ7doTcg==} engines: {node: '>=12'} @@ -8410,6 +8726,16 @@ packages: engines: {node: '>=18'} hasBin: true + esbuild@0.27.7: + resolution: {integrity: sha512-IxpibTjyVnmrIQo5aqNpCgoACA/dTKLTlhMHihVHhdkxKyPO1uBBthumT0rdHmcsk9uMonIWS0m4FljWzILh3w==} + engines: {node: '>=18'} + hasBin: true + + esbuild@0.28.0: + resolution: {integrity: sha512-sNR9MHpXSUV/XB4zmsFKN+QgVG82Cc7+/aaxJ8Adi8hyOac+EXptIp45QBPaVyX3N70664wRbTcLTOemCAnyqw==} + engines: {node: '>=18'} + hasBin: true + escalade@3.2.0: resolution: {integrity: sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==} engines: {node: '>=6'} @@ -9241,9 +9567,6 @@ packages: grapheme-splitter@1.0.4: resolution: {integrity: sha512-bzh50DW9kTPM00T8y4o8vQg89Di9oLJVLW/KaOGIXJWP/iqCN6WKYkbNOF04vFLJhwcpYUh9ydh/+5vpOqV4YQ==} - graphemer@1.4.0: - resolution: {integrity: sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==} - graphql@16.13.2: resolution: {integrity: sha512-5bJ+nf/UCpAjHM8i06fl7eLyVC9iuNAjm9qzkiu2ZGhM0VscSvS6WDPfAwkdkBuoXGM9FJSbKl6wylMwP9Ktig==} engines: {node: ^12.22.0 || ^14.16.0 || ^16.0.0 || >=17.0.0} @@ -10080,6 +10403,9 @@ packages: js-tokens@4.0.0: resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==} + js-tokens@9.0.1: + resolution: {integrity: sha512-mxa9E9ITFOt0ban3j6L5MpjwegGz6lBQmM1IJkWeBZGcMxto50+eWdjC/52xDbS2vy0k7vIMK0Fe2wfL9OQSpQ==} + js-yaml@3.14.2: resolution: {integrity: sha512-PMSmkqxr106Xa156c2M265Z+FTrPl+oxd/rgOQy2tijQeK5TxQ43psO1ZCwhVOSdnn+RzkzlRz/eY4BgJBYVpg==} hasBin: true @@ -10247,30 +10573,60 @@ packages: cpu: [arm64] os: [android] + lightningcss-android-arm64@1.32.0: + resolution: {integrity: sha512-YK7/ClTt4kAK0vo6w3X+Pnm0D2cf2vPHbhOXdoNti1Ga0al1P4TBZhwjATvjNwLEBCnKvjJc2jQgHXH0NEwlAg==} + engines: {node: '>= 12.0.0'} + cpu: [arm64] + os: [android] + lightningcss-darwin-arm64@1.31.1: resolution: {integrity: sha512-02uTEqf3vIfNMq3h/z2cJfcOXnQ0GRwQrkmPafhueLb2h7mqEidiCzkE4gBMEH65abHRiQvhdcQ+aP0D0g67sg==} engines: {node: '>= 12.0.0'} cpu: [arm64] os: [darwin] + lightningcss-darwin-arm64@1.32.0: + resolution: {integrity: sha512-RzeG9Ju5bag2Bv1/lwlVJvBE3q6TtXskdZLLCyfg5pt+HLz9BqlICO7LZM7VHNTTn/5PRhHFBSjk5lc4cmscPQ==} + engines: {node: '>= 12.0.0'} + cpu: [arm64] + os: [darwin] + lightningcss-darwin-x64@1.31.1: resolution: {integrity: sha512-1ObhyoCY+tGxtsz1lSx5NXCj3nirk0Y0kB/g8B8DT+sSx4G9djitg9ejFnjb3gJNWo7qXH4DIy2SUHvpoFwfTA==} engines: {node: '>= 12.0.0'} cpu: [x64] os: [darwin] + lightningcss-darwin-x64@1.32.0: + resolution: {integrity: sha512-U+QsBp2m/s2wqpUYT/6wnlagdZbtZdndSmut/NJqlCcMLTWp5muCrID+K5UJ6jqD2BFshejCYXniPDbNh73V8w==} + engines: {node: '>= 12.0.0'} + cpu: [x64] + os: [darwin] + lightningcss-freebsd-x64@1.31.1: resolution: {integrity: sha512-1RINmQKAItO6ISxYgPwszQE1BrsVU5aB45ho6O42mu96UiZBxEXsuQ7cJW4zs4CEodPUioj/QrXW1r9pLUM74A==} engines: {node: '>= 12.0.0'} cpu: [x64] os: [freebsd] + lightningcss-freebsd-x64@1.32.0: + resolution: {integrity: sha512-JCTigedEksZk3tHTTthnMdVfGf61Fky8Ji2E4YjUTEQX14xiy/lTzXnu1vwiZe3bYe0q+SpsSH/CTeDXK6WHig==} + engines: {node: '>= 12.0.0'} + cpu: [x64] + os: [freebsd] + lightningcss-linux-arm-gnueabihf@1.31.1: resolution: {integrity: sha512-OOCm2//MZJ87CdDK62rZIu+aw9gBv4azMJuA8/KB74wmfS3lnC4yoPHm0uXZ/dvNNHmnZnB8XLAZzObeG0nS1g==} engines: {node: '>= 12.0.0'} cpu: [arm] os: [linux] + lightningcss-linux-arm-gnueabihf@1.32.0: + resolution: {integrity: sha512-x6rnnpRa2GL0zQOkt6rts3YDPzduLpWvwAF6EMhXFVZXD4tPrBkEFqzGowzCsIWsPjqSK+tyNEODUBXeeVHSkw==} + engines: {node: '>= 12.0.0'} + cpu: [arm] + os: [linux] + lightningcss-linux-arm64-gnu@1.31.1: resolution: {integrity: sha512-WKyLWztD71rTnou4xAD5kQT+982wvca7E6QoLpoawZ1gP9JM0GJj4Tp5jMUh9B3AitHbRZ2/H3W5xQmdEOUlLg==} engines: {node: '>= 12.0.0'} @@ -10278,6 +10634,13 @@ packages: os: [linux] libc: [glibc] + lightningcss-linux-arm64-gnu@1.32.0: + resolution: {integrity: sha512-0nnMyoyOLRJXfbMOilaSRcLH3Jw5z9HDNGfT/gwCPgaDjnx0i8w7vBzFLFR1f6CMLKF8gVbebmkUN3fa/kQJpQ==} + engines: {node: '>= 12.0.0'} + cpu: [arm64] + os: [linux] + libc: [glibc] + lightningcss-linux-arm64-musl@1.31.1: resolution: {integrity: sha512-mVZ7Pg2zIbe3XlNbZJdjs86YViQFoJSpc41CbVmKBPiGmC4YrfeOyz65ms2qpAobVd7WQsbW4PdsSJEMymyIMg==} engines: {node: '>= 12.0.0'} @@ -10285,6 +10648,13 @@ packages: os: [linux] libc: [musl] + lightningcss-linux-arm64-musl@1.32.0: + resolution: {integrity: sha512-UpQkoenr4UJEzgVIYpI80lDFvRmPVg6oqboNHfoH4CQIfNA+HOrZ7Mo7KZP02dC6LjghPQJeBsvXhJod/wnIBg==} + engines: {node: '>= 12.0.0'} + cpu: [arm64] + os: [linux] + libc: [musl] + lightningcss-linux-x64-gnu@1.31.1: resolution: {integrity: sha512-xGlFWRMl+0KvUhgySdIaReQdB4FNudfUTARn7q0hh/V67PVGCs3ADFjw+6++kG1RNd0zdGRlEKa+T13/tQjPMA==} engines: {node: '>= 12.0.0'} @@ -10292,6 +10662,13 @@ packages: os: [linux] libc: [glibc] + lightningcss-linux-x64-gnu@1.32.0: + resolution: {integrity: sha512-V7Qr52IhZmdKPVr+Vtw8o+WLsQJYCTd8loIfpDaMRWGUZfBOYEJeyJIkqGIDMZPwPx24pUMfwSxxI8phr/MbOA==} + engines: {node: '>= 12.0.0'} + cpu: [x64] + os: [linux] + libc: [glibc] + lightningcss-linux-x64-musl@1.31.1: resolution: {integrity: sha512-eowF8PrKHw9LpoZii5tdZwnBcYDxRw2rRCyvAXLi34iyeYfqCQNA9rmUM0ce62NlPhCvof1+9ivRaTY6pSKDaA==} engines: {node: '>= 12.0.0'} @@ -10299,22 +10676,45 @@ packages: os: [linux] libc: [musl] + lightningcss-linux-x64-musl@1.32.0: + resolution: {integrity: sha512-bYcLp+Vb0awsiXg/80uCRezCYHNg1/l3mt0gzHnWV9XP1W5sKa5/TCdGWaR/zBM2PeF/HbsQv/j2URNOiVuxWg==} + engines: {node: '>= 12.0.0'} + cpu: [x64] + os: [linux] + libc: [musl] + lightningcss-win32-arm64-msvc@1.31.1: resolution: {integrity: sha512-aJReEbSEQzx1uBlQizAOBSjcmr9dCdL3XuC/6HLXAxmtErsj2ICo5yYggg1qOODQMtnjNQv2UHb9NpOuFtYe4w==} engines: {node: '>= 12.0.0'} cpu: [arm64] os: [win32] + lightningcss-win32-arm64-msvc@1.32.0: + resolution: {integrity: sha512-8SbC8BR40pS6baCM8sbtYDSwEVQd4JlFTOlaD3gWGHfThTcABnNDBda6eTZeqbofalIJhFx0qKzgHJmcPTnGdw==} + engines: {node: '>= 12.0.0'} + cpu: [arm64] + os: [win32] + lightningcss-win32-x64-msvc@1.31.1: resolution: {integrity: sha512-I9aiFrbd7oYHwlnQDqr1Roz+fTz61oDDJX7n9tYF9FJymH1cIN1DtKw3iYt6b8WZgEjoNwVSncwF4wx/ZedMhw==} engines: {node: '>= 12.0.0'} cpu: [x64] os: [win32] + lightningcss-win32-x64-msvc@1.32.0: + resolution: {integrity: sha512-Amq9B/SoZYdDi1kFrojnoqPLxYhQ4Wo5XiL8EVJrVsB8ARoC1PWW6VGtT0WKCemjy8aC+louJnjS7U18x3b06Q==} + engines: {node: '>= 12.0.0'} + cpu: [x64] + os: [win32] + lightningcss@1.31.1: resolution: {integrity: sha512-l51N2r93WmGUye3WuFoN5k10zyvrVs0qfKBhyC5ogUQ6Ew6JUSswh78mbSO+IU3nTWsyOArqPCcShdQSadghBQ==} engines: {node: '>= 12.0.0'} + lightningcss@1.32.0: + resolution: {integrity: sha512-NXYBzinNrblfraPGyrbPoD19C1h9lfI/1mzgWYvXUTe414Gz/X1FD2XBZSZM7rRTrMA8JL3OtAaGifrIKhQ5yQ==} + engines: {node: '>= 12.0.0'} + lines-and-columns@1.2.4: resolution: {integrity: sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==} @@ -10470,10 +10870,6 @@ packages: resolution: {integrity: sha512-h5bgJWpxJNswbU7qCrV0tIKQCaS3blPDrqKWx+QxzuzL1zGUzij9XCWLrSLsJPu5t+eWA/ycetzYAO5IOMcWAQ==} hasBin: true - magic-string@0.26.7: - resolution: {integrity: sha512-hX9XH3ziStPoPhJxLq1syWuZMxbDvGNbVchfrdCtanC7D13888bMFow61x8axrx+GfHLtVeAx2kxL7tTGRl+Ow==} - engines: {node: '>=12'} - magic-string@0.30.21: resolution: {integrity: sha512-vd2F4YUyEXKGcLHoq+TEyCjxueSeHnFxyyjNp80yg0XV4vUhnDer/lvvlqM/arB5bXQN5K2/3oinyCRyx8T2CQ==} @@ -11231,10 +11627,6 @@ packages: resolution: {integrity: sha512-MVHddDVweXZF3awtlAS+6pgKLlm/JgxZ90+/NBurBoQctVOOB/zDdVjcyPzQ+0laDGbsWgrRkflI65sQeOgT9Q==} engines: {node: '>=8'} - open@8.4.2: - resolution: {integrity: sha512-7x81NCL719oNbsq/3mh+hVrAWmFuEYUqrq/Iw3kUzH8ReypT9QQ0BLoJS7/G9k6N81XjW4qHWtjWwe/9eLy1EQ==} - engines: {node: '>=12'} - opener@1.5.2: resolution: {integrity: sha512-ur5UIdyw5Y7yEj9wLzhqXiy6GZ3Mwx0yGI+5sMn2r0N0v3cKJvUmFH5yPP+WXh9e0xfyzyJX95D8l088DNFj7A==} hasBin: true @@ -12584,6 +12976,10 @@ packages: resolution: {integrity: sha512-z6F7K9bV85EfseRCp2bzrpyQ0Gkw1uLoCel9XBVWPg/TjRj94SkJzUTGfOa4bs7iJvBWtQG0Wq7wnI0syw3EBQ==} engines: {node: '>=0.10.0'} + react-refresh@0.18.0: + resolution: {integrity: sha512-QgT5//D3jfjJb6Gsjxv0Slpj23ip+HtOpnNgnb2S5zU3CB26G/IDPGoy4RJB42wzFE46DRsstbW6tKHoKbhAxw==} + engines: {node: '>=0.10.0'} + react-resizable@3.0.4: resolution: {integrity: sha512-StnwmiESiamNzdRHbSSvA65b0ZQJ7eVQpPusrSmcpyGKzC0gojhtO62xxH6YOBmepk9dQTBi9yxidL3W4s3EBA==} peerDependencies: @@ -13218,10 +13614,6 @@ packages: resolution: {integrity: sha512-i5uvt8C3ikiWeNZSVZNWcfZPItFQOsYTUAOkcUPGd8DqDy1uOUikjt5dG+uRlwyvR108Fb9DOd4GvXfT0N2/uQ==} engines: {node: '>= 12'} - sourcemap-codec@1.4.8: - resolution: {integrity: sha512-9NykojV5Uih4lgo5So5dtw+f0JgJX30KCNI8gwhz2J9A15wD0Ml6tjHKwf6fTSa6fAdVBdZeNOs9eJ71qCk8vA==} - deprecated: Please use @jridgewell/sourcemap-codec instead - space-separated-tokens@2.0.2: resolution: {integrity: sha512-PEGlAwrG8yXGXRjW32fGbg66JAlOAwbObuqVoJpv/mRgoWDQfgH1wDPvtzWyUSNAXBGSk8h755YDbbcEy3SH2Q==} @@ -13309,8 +13701,8 @@ packages: resolution: {integrity: sha512-eLoXW/DHyl62zxY4SCaIgnRhuMr6ri4juEYARS8E6sCEqzKpOiE521Ucofdx+KnDZl5xmvGYaaKCk5FEOxJCoQ==} engines: {node: '>= 0.4'} - storybook@9.1.6: - resolution: {integrity: sha512-iIcMaDKkjR5nN+JYBy9hhoxZhjX4TXhyJgUBed+toJOlfrl+QvxpBjImAi7qKyLR3hng3uoigEP0P8+vYtXpOg==} + storybook@10.3.5: + resolution: {integrity: sha512-uBSZu/GZa9aEIW3QMGvdQPMZWhGxSe4dyRWU8B3/Vd47Gy/XLC7tsBxRr13txmmPOEDHZR94uLuq0H50fvuqBw==} hasBin: true peerDependencies: prettier: ^2 || ^3 @@ -13468,6 +13860,9 @@ packages: resolution: {integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==} engines: {node: '>=8'} + strip-literal@3.1.0: + resolution: {integrity: sha512-8r3mkIM/2+PpjHoOtiAW8Rg3jJLHaV7xPwG+YRGrv6FP0wwk/toTpATxWYOW0BKdWwl82VT2tFYi5DlROa0Mxg==} + strip-outer@1.0.1: resolution: {integrity: sha512-k55yxKHwaXnpYGsOzg4Vl8+tDrWylxDEpknGjhTiZB8dFRU5rTo9CAzeycivxV3s+zlTKwrs6WxMxR95n26kwg==} engines: {node: '>=0.10.0'} @@ -13727,8 +14122,8 @@ packages: resolution: {integrity: sha512-op4nsTR47R6p0vMUUoYl/a+ljLFVtlfaXkLQmqfLR1qHma1h/ysYk4hEXZ880bf2CYgTskvTa/e196Vd5dDQXw==} engines: {node: '>=14.0.0'} - tinyspy@3.0.2: - resolution: {integrity: sha512-n1cw8k1k0x4pgA2+9XrOkFydTerNcJ1zWCO5Nn9scWHTD+5tp8dghT2x1uduQePZTZgd3Tupf+x9BxJjeJi77Q==} + tinyrainbow@3.1.0: + resolution: {integrity: sha512-Bf+ILmBgretUrdJxzXM0SgXLZ3XfiaUuOj/IKQHuTXip+05Xn+uyEYdVg0kYDipTBcLrCVyUzAPz7QmArb0mmw==} engines: {node: '>=14.0.0'} tinyspy@4.0.4: @@ -13983,12 +14378,12 @@ packages: typedarray-to-buffer@3.1.5: resolution: {integrity: sha512-zdu8XMNEDepKKR+XYOXAVPtWui0ly0NtohUscw+UmaHiAWT8hrV1rr//H6V+0DvJ3OQ19S979M0laLfX8rm82Q==} - typescript-eslint@8.33.0: - resolution: {integrity: sha512-5YmNhF24ylCsvdNW2oJwMzTbaeO4bg90KeGtMjUw0AGtHksgEPLRTUil+coHwCfiu4QjVJFnjp94DmU6zV7DhQ==} + typescript-eslint@8.58.1: + resolution: {integrity: sha512-gf6/oHChByg9HJvhMO1iBexJh12AqqTfnuxscMDOVqfJW3htsdRJI/GfPpHTTcyeB8cSTUY2JcZmVgoyPqcrDg==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} peerDependencies: - eslint: ^8.57.0 || ^9.0.0 - typescript: '>=4.8.4 <5.9.0' + eslint: ^8.57.0 || ^9.0.0 || ^10.0.0 + typescript: '>=4.8.4 <6.1.0' typescript-plugin-css-modules@2.2.0: resolution: {integrity: sha512-bJoX+jyJkKsB3IJa7Ot7y7dMO8p7P8ZirT9sfyJ3wivzdYVdXpaIoc/ZW4Kts870++LVIpWyLOx3bWSGjVV/9w==} @@ -14005,13 +14400,13 @@ packages: engines: {node: '>=4.2.0'} hasBin: true - typescript@5.8.3: - resolution: {integrity: sha512-p1diW6TqL9L07nNxvRMM7hMMw4c5XOo/1ibL4aAIGmSAt9slTE1Xgw5KWuof2uTOvCg9BY7ZRi+GaF+7sfgPeQ==} + typescript@5.9.3: + resolution: {integrity: sha512-jl1vZzPDinLr9eUt3J/t7V6FgNEw9QjvBPdysz9KfQDD41fQrC2Y4vKQdiaUpFT4bXlb1RHhLpp8wtm6M5TgSw==} engines: {node: '>=14.17'} hasBin: true - typescript@5.9.3: - resolution: {integrity: sha512-jl1vZzPDinLr9eUt3J/t7V6FgNEw9QjvBPdysz9KfQDD41fQrC2Y4vKQdiaUpFT4bXlb1RHhLpp8wtm6M5TgSw==} + typescript@6.0.2: + resolution: {integrity: sha512-bGdAIrZ0wiGDo5l8c++HWtbaNCWTS4UTv7RaTH/ThVIgjkveJt83m74bBHMJkuCbslY8ixgLBVZJIOiQlQTjfQ==} engines: {node: '>=14.17'} hasBin: true @@ -14043,6 +14438,9 @@ packages: undici-types@6.21.0: resolution: {integrity: sha512-iwDZqg0QAGrg9Rav5H4n0M64c3mkR59cJ6wQp+7C4nI0gsmExaedaYLNO44eT4AtBBwjbTiGPMlt2Md0T9H9JQ==} + undici-types@7.18.2: + resolution: {integrity: sha512-AsuCzffGHJybSaRrmr5eHr81mwJU3kjw6M+uprWvCXiNeN9SOGwQ3Jn8jb8m3Z6izVgknn1R0FTCEAP2QrLY/w==} + undici@7.24.6: resolution: {integrity: sha512-Xi4agocCbRzt0yYMZGMA6ApD7gvtUFaxm4ZmeacWI4cZxaF6C+8I8QfofC20NAePiB/IcvZmzkJ7XPa471AEtA==} engines: {node: '>=20.18.1'} @@ -14157,6 +14555,10 @@ packages: unplugin@1.2.0: resolution: {integrity: sha512-7lJXQY4CxOK4jZyVskZuuNBqBSOlxezKqBpfQEpH+Odk2Ban3moKAlvzs9rZuZoZp6/1FEhvY9TZXav2FRhaBg==} + unplugin@2.3.11: + resolution: {integrity: sha512-5uKD0nqiYVzlmCRs01Fhs2BdkEgBS3SAVP6ndrBsuK42iC2+JHyxM05Rm9G8+5mkmRtzMZGY8Ct5+mliZxU/Ww==} + engines: {node: '>=18.12.0'} + until-async@3.0.2: resolution: {integrity: sha512-IiSk4HlzAMqTUseHHe3VhIGyuFmN90zMTpD3Z3y8jeQbzLIq500MVM7Jq2vUAnTKAFPJrqwkzr6PoTcPhGcOiw==} @@ -14187,6 +14589,11 @@ packages: resolution: {integrity: sha512-0kQLIzG4fdk/G5NONku64rSH/x32NOA39LVQqlK8Le6lvTF6GGRJpqaQFGgU+CLwySIqBSMdwYM0sYcW9f6P4A==} engines: {node: '>= 4'} + use-sync-external-store@1.6.0: + resolution: {integrity: sha512-Pp6GSwGP/NrPIrxVFAIkOQeyw8lFenOHijQWkUTrDvrF4ALqylP2C/KCkeS9dpUM3KvYRQhna5vt7IL95+ZQ9w==} + peerDependencies: + react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 + userhome@1.0.1: resolution: {integrity: sha512-5cnLm4gseXjAclKowC4IjByaGsjtAoV6PrOQOljplNB54ReUYJP8HdAFq2muHinSDAh09PPX/uXDPfdxRHvuSA==} engines: {node: '>= 0.8.0'} @@ -14241,16 +14648,16 @@ packages: vfile@6.0.3: resolution: {integrity: sha512-KzIbH/9tXat2u30jf+smMwFCsno4wHVdNmzFyL+T/L3UGqqk6JKfVqOFOZEpZSHADH1k40ab6NUIXZq422ov3Q==} - vite-node@3.0.9: - resolution: {integrity: sha512-w3Gdx7jDcuT9cNn9jExXgOyKmf5UOTb6WMHz8LGAm54eS1Elf5OuBhCxl6zJxGhEeIkgsE1WbHuoL0mj/UXqXg==} + vite-node@3.2.4: + resolution: {integrity: sha512-EbKSKh+bh1E1IFxeO0pg1n4dvoOTt0UDiXMd/qn++r98+jPO1xtJilvXldeuQ8giIB5IkpjCgMleHMNEsGH6pg==} engines: {node: ^18.0.0 || ^20.0.0 || >=22.0.0} hasBin: true - vite-plugin-babel@1.3.2: - resolution: {integrity: sha512-mEld4OVyuNs5+ISN+U5XyTnNcDwln/s2oER2m0PQ32YYPqPR25E3mfnhAA/RkZJxPuwFkprKWV405aZArE6kzA==} + vite-plugin-babel@1.6.0: + resolution: {integrity: sha512-VtYA4FSmQREA2oaZ7+jfLS/fBk1/xZMUR94YZzB5s6U9WyptbvThUD1HSSv7oNDU28jGuHmdBZ1wTVGNIoChoQ==} peerDependencies: '@babel/core': ^7.0.0 - vite: ^2.7.0 || ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 + vite: ^2.7.0 || ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0 vite@5.4.21: resolution: {integrity: sha512-o5a9xKjbtuhY6Bi5S3+HvbRERmouabWbyUcpXXUA1u+GNUKoROi9byOJ8M0nHbHYHkYICiMlqxkg1KkYmm25Sw==} @@ -14323,6 +14730,46 @@ packages: yaml: optional: true + vite@7.3.2: + resolution: {integrity: sha512-Bby3NOsna2jsjfLVOHKes8sGwgl4TT0E6vvpYgnAYDIF/tie7MRaFthmKuHx1NSXjiTueXH3do80FMQgvEktRg==} + engines: {node: ^20.19.0 || >=22.12.0} + hasBin: true + peerDependencies: + '@types/node': ^20.19.0 || >=22.12.0 + jiti: '>=1.21.0' + less: ^4.0.0 + lightningcss: ^1.21.0 + sass: ^1.70.0 + sass-embedded: ^1.70.0 + stylus: '>=0.54.8' + sugarss: ^5.0.0 + terser: ^5.16.0 + tsx: ^4.8.1 + yaml: ^2.4.2 + peerDependenciesMeta: + '@types/node': + optional: true + jiti: + optional: true + less: + optional: true + lightningcss: + optional: true + sass: + optional: true + sass-embedded: + optional: true + stylus: + optional: true + sugarss: + optional: true + terser: + optional: true + tsx: + optional: true + yaml: + optional: true + vitepress@1.3.1: resolution: {integrity: sha512-soZDpg2rRVJNIM/IYMNDPPr+zTHDA5RbLDHAxacRu+Q9iZ2GwSR0QSUlLs+aEZTkG0SOX1dc8RmUYwyuxK8dfQ==} hasBin: true @@ -14340,16 +14787,16 @@ packages: peerDependencies: vitest: '>=0.16.0' - vitest@3.0.9: - resolution: {integrity: sha512-BbcFDqNyBlfSpATmTtXOAOj71RNKDDvjBM/uPfnxxVGrG+FSH2RQIwgeEngTaTkuU/h0ScFvf+tRcKfYXzBybQ==} + vitest@3.2.4: + resolution: {integrity: sha512-LUCP5ev3GURDysTWiP47wRRUpLKMOfPh+yKTx3kVIEiu5KOMeqzpnYNsKyOoVrULivR8tLcks4+lga33Whn90A==} engines: {node: ^18.0.0 || ^20.0.0 || >=22.0.0} hasBin: true peerDependencies: '@edge-runtime/vm': '*' '@types/debug': ^4.1.12 '@types/node': ^18.0.0 || ^20.0.0 || >=22.0.0 - '@vitest/browser': 3.0.9 - '@vitest/ui': 3.0.9 + '@vitest/browser': 3.2.4 + '@vitest/ui': 3.2.4 happy-dom: '*' jsdom: '*' peerDependenciesMeta: @@ -14699,8 +15146,8 @@ packages: resolution: {integrity: sha512-vIYeF1u3CjlhAFekPPAk2h/Kv4T3mAkMox5OymRiJQB0spDP10LHvt+K7G9Ny6NuuMAb25/6n1qyUjAcGNf/AA==} engines: {node: '>= 6'} - yaml@2.8.0: - resolution: {integrity: sha512-4lLa/EcQCB0cJkyts+FpIRx5G/llPxfP6VQU5KByHEhLxY3IJCH0f0Hy1MHI8sClTvsIb8qwRJ6R/ZdlDJ/leQ==} + yaml@2.8.3: + resolution: {integrity: sha512-AvbaCLOO2Otw/lW5bmh9d/WEdcDFdQp2Z2ZUH3pX9U2ihyUY0nvLv7J6TrWowklRGPYbB/IuIMfYgxaCPg5Bpg==} engines: {node: '>= 14.6'} hasBin: true @@ -15035,6 +15482,26 @@ snapshots: transitivePeerDependencies: - supports-color + '@babel/core@7.29.0': + dependencies: + '@babel/code-frame': 7.29.0 + '@babel/generator': 7.29.1 + '@babel/helper-compilation-targets': 7.28.6 + '@babel/helper-module-transforms': 7.28.6(@babel/core@7.29.0) + '@babel/helpers': 7.29.2 + '@babel/parser': 7.29.2 + '@babel/template': 7.28.6 + '@babel/traverse': 7.29.0 + '@babel/types': 7.29.0 + '@jridgewell/remapping': 2.3.5 + convert-source-map: 2.0.0 + debug: 4.4.3 + gensync: 1.0.0-beta.2 + json5: 2.2.3 + semver: 6.3.1 + transitivePeerDependencies: + - supports-color + '@babel/generator@7.29.1': dependencies: '@babel/parser': 7.29.2 @@ -15068,13 +15535,13 @@ snapshots: transitivePeerDependencies: - supports-color - '@babel/helper-create-class-features-plugin@7.28.6(@babel/core@7.28.4)': + '@babel/helper-create-class-features-plugin@7.28.6(@babel/core@7.29.0)': dependencies: - '@babel/core': 7.28.4 + '@babel/core': 7.29.0 '@babel/helper-annotate-as-pure': 7.27.3 '@babel/helper-member-expression-to-functions': 7.28.5 '@babel/helper-optimise-call-expression': 7.27.1 - '@babel/helper-replace-supers': 7.28.6(@babel/core@7.28.4) + '@babel/helper-replace-supers': 7.28.6(@babel/core@7.29.0) '@babel/helper-skip-transparent-expression-wrappers': 7.27.1 '@babel/traverse': 7.29.0 semver: 6.3.1 @@ -15137,6 +15604,15 @@ snapshots: transitivePeerDependencies: - supports-color + '@babel/helper-module-transforms@7.28.6(@babel/core@7.29.0)': + dependencies: + '@babel/core': 7.29.0 + '@babel/helper-module-imports': 7.28.6 + '@babel/helper-validator-identifier': 7.28.5 + '@babel/traverse': 7.29.0 + transitivePeerDependencies: + - supports-color + '@babel/helper-optimise-call-expression@7.27.1': dependencies: '@babel/types': 7.29.0 @@ -15161,9 +15637,9 @@ snapshots: transitivePeerDependencies: - supports-color - '@babel/helper-replace-supers@7.28.6(@babel/core@7.28.4)': + '@babel/helper-replace-supers@7.28.6(@babel/core@7.29.0)': dependencies: - '@babel/core': 7.28.4 + '@babel/core': 7.29.0 '@babel/helper-member-expression-to-functions': 7.28.5 '@babel/helper-optimise-call-expression': 7.27.1 '@babel/traverse': 7.29.0 @@ -15243,10 +15719,10 @@ snapshots: transitivePeerDependencies: - supports-color - '@babel/plugin-proposal-class-properties@7.18.6(@babel/core@7.28.4)': + '@babel/plugin-proposal-class-properties@7.18.6(@babel/core@7.29.0)': dependencies: - '@babel/core': 7.28.4 - '@babel/helper-create-class-features-plugin': 7.28.6(@babel/core@7.28.4) + '@babel/core': 7.29.0 + '@babel/helper-create-class-features-plugin': 7.28.6(@babel/core@7.29.0) '@babel/helper-plugin-utils': 7.28.6 transitivePeerDependencies: - supports-color @@ -15260,23 +15736,23 @@ snapshots: transitivePeerDependencies: - supports-color - '@babel/plugin-proposal-export-default-from@7.23.3(@babel/core@7.28.4)': + '@babel/plugin-proposal-export-default-from@7.23.3(@babel/core@7.29.0)': dependencies: - '@babel/core': 7.28.4 + '@babel/core': 7.29.0 '@babel/helper-plugin-utils': 7.28.6 - '@babel/plugin-syntax-export-default-from': 7.28.6(@babel/core@7.28.4) + '@babel/plugin-syntax-export-default-from': 7.28.6(@babel/core@7.29.0) '@babel/plugin-proposal-export-default-from@7.27.1(@babel/core@7.27.7)': dependencies: '@babel/core': 7.27.7 '@babel/helper-plugin-utils': 7.28.6 - '@babel/plugin-proposal-optional-chaining@7.18.9(@babel/core@7.28.4)': + '@babel/plugin-proposal-optional-chaining@7.18.9(@babel/core@7.29.0)': dependencies: - '@babel/core': 7.28.4 + '@babel/core': 7.29.0 '@babel/helper-plugin-utils': 7.28.6 '@babel/helper-skip-transparent-expression-wrappers': 7.27.1 - '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.28.4) + '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.29.0) transitivePeerDependencies: - supports-color @@ -15284,24 +15760,24 @@ snapshots: dependencies: '@babel/core': 7.27.7 - '@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.28.4)': + '@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.29.0)': dependencies: - '@babel/core': 7.28.4 + '@babel/core': 7.29.0 '@babel/helper-plugin-utils': 7.28.6 - '@babel/plugin-syntax-bigint@7.8.3(@babel/core@7.28.4)': + '@babel/plugin-syntax-bigint@7.8.3(@babel/core@7.29.0)': dependencies: - '@babel/core': 7.28.4 + '@babel/core': 7.29.0 '@babel/helper-plugin-utils': 7.28.6 - '@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.28.4)': + '@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.29.0)': dependencies: - '@babel/core': 7.28.4 + '@babel/core': 7.29.0 '@babel/helper-plugin-utils': 7.28.6 - '@babel/plugin-syntax-class-static-block@7.14.5(@babel/core@7.28.4)': + '@babel/plugin-syntax-class-static-block@7.14.5(@babel/core@7.29.0)': dependencies: - '@babel/core': 7.28.4 + '@babel/core': 7.29.0 '@babel/helper-plugin-utils': 7.28.6 '@babel/plugin-syntax-decorators@7.28.6(@babel/core@7.27.7)': @@ -15309,9 +15785,9 @@ snapshots: '@babel/core': 7.27.7 '@babel/helper-plugin-utils': 7.28.6 - '@babel/plugin-syntax-export-default-from@7.28.6(@babel/core@7.28.4)': + '@babel/plugin-syntax-export-default-from@7.28.6(@babel/core@7.29.0)': dependencies: - '@babel/core': 7.28.4 + '@babel/core': 7.29.0 '@babel/helper-plugin-utils': 7.28.6 '@babel/plugin-syntax-flow@7.28.6(@babel/core@7.28.4)': @@ -15329,24 +15805,24 @@ snapshots: '@babel/core': 7.27.7 '@babel/helper-plugin-utils': 7.28.6 - '@babel/plugin-syntax-import-attributes@7.28.6(@babel/core@7.28.4)': + '@babel/plugin-syntax-import-attributes@7.28.6(@babel/core@7.29.0)': dependencies: - '@babel/core': 7.28.4 + '@babel/core': 7.29.0 '@babel/helper-plugin-utils': 7.28.6 - '@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.28.4)': + '@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.29.0)': dependencies: - '@babel/core': 7.28.4 + '@babel/core': 7.29.0 '@babel/helper-plugin-utils': 7.28.6 - '@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.28.4)': + '@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.29.0)': dependencies: - '@babel/core': 7.28.4 + '@babel/core': 7.29.0 '@babel/helper-plugin-utils': 7.28.6 - '@babel/plugin-syntax-jsx@7.18.6(@babel/core@7.28.4)': + '@babel/plugin-syntax-jsx@7.18.6(@babel/core@7.29.0)': dependencies: - '@babel/core': 7.28.4 + '@babel/core': 7.29.0 '@babel/helper-plugin-utils': 7.28.6 '@babel/plugin-syntax-jsx@7.28.6(@babel/core@7.27.7)': @@ -15359,44 +15835,49 @@ snapshots: '@babel/core': 7.28.4 '@babel/helper-plugin-utils': 7.28.6 - '@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.28.4)': + '@babel/plugin-syntax-jsx@7.28.6(@babel/core@7.29.0)': dependencies: - '@babel/core': 7.28.4 + '@babel/core': 7.29.0 '@babel/helper-plugin-utils': 7.28.6 - '@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.28.4)': + '@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.29.0)': dependencies: - '@babel/core': 7.28.4 + '@babel/core': 7.29.0 '@babel/helper-plugin-utils': 7.28.6 - '@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.28.4)': + '@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.29.0)': dependencies: - '@babel/core': 7.28.4 + '@babel/core': 7.29.0 '@babel/helper-plugin-utils': 7.28.6 - '@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.28.4)': + '@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.29.0)': dependencies: - '@babel/core': 7.28.4 + '@babel/core': 7.29.0 '@babel/helper-plugin-utils': 7.28.6 - '@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.28.4)': + '@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.29.0)': dependencies: - '@babel/core': 7.28.4 + '@babel/core': 7.29.0 '@babel/helper-plugin-utils': 7.28.6 - '@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.28.4)': + '@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.29.0)': dependencies: - '@babel/core': 7.28.4 + '@babel/core': 7.29.0 '@babel/helper-plugin-utils': 7.28.6 - '@babel/plugin-syntax-private-property-in-object@7.14.5(@babel/core@7.28.4)': + '@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.29.0)': dependencies: - '@babel/core': 7.28.4 + '@babel/core': 7.29.0 '@babel/helper-plugin-utils': 7.28.6 - '@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.28.4)': + '@babel/plugin-syntax-private-property-in-object@7.14.5(@babel/core@7.29.0)': dependencies: - '@babel/core': 7.28.4 + '@babel/core': 7.29.0 + '@babel/helper-plugin-utils': 7.28.6 + + '@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.29.0)': + dependencies: + '@babel/core': 7.29.0 '@babel/helper-plugin-utils': 7.28.6 '@babel/plugin-syntax-typescript@7.28.6(@babel/core@7.27.7)': @@ -15404,9 +15885,9 @@ snapshots: '@babel/core': 7.27.7 '@babel/helper-plugin-utils': 7.28.6 - '@babel/plugin-syntax-typescript@7.28.6(@babel/core@7.28.4)': + '@babel/plugin-syntax-typescript@7.28.6(@babel/core@7.29.0)': dependencies: - '@babel/core': 7.28.4 + '@babel/core': 7.29.0 '@babel/helper-plugin-utils': 7.28.6 '@babel/plugin-syntax-unicode-sets-regex@7.18.6(@babel/core@7.27.7)': @@ -15691,16 +16172,14 @@ snapshots: transitivePeerDependencies: - supports-color - '@babel/plugin-transform-react-jsx-development@7.27.1(@babel/core@7.28.4)': + '@babel/plugin-transform-react-jsx-self@7.27.1(@babel/core@7.28.4)': dependencies: '@babel/core': 7.28.4 - '@babel/plugin-transform-react-jsx': 7.28.6(@babel/core@7.28.4) - transitivePeerDependencies: - - supports-color + '@babel/helper-plugin-utils': 7.28.6 - '@babel/plugin-transform-react-jsx-self@7.27.1(@babel/core@7.28.4)': + '@babel/plugin-transform-react-jsx-self@7.27.1(@babel/core@7.29.0)': dependencies: - '@babel/core': 7.28.4 + '@babel/core': 7.29.0 '@babel/helper-plugin-utils': 7.28.6 '@babel/plugin-transform-react-jsx-source@7.27.1(@babel/core@7.28.4)': @@ -15708,24 +16187,18 @@ snapshots: '@babel/core': 7.28.4 '@babel/helper-plugin-utils': 7.28.6 - '@babel/plugin-transform-react-jsx@7.28.6(@babel/core@7.27.7)': + '@babel/plugin-transform-react-jsx-source@7.27.1(@babel/core@7.29.0)': dependencies: - '@babel/core': 7.27.7 - '@babel/helper-annotate-as-pure': 7.27.3 - '@babel/helper-module-imports': 7.28.6 + '@babel/core': 7.29.0 '@babel/helper-plugin-utils': 7.28.6 - '@babel/plugin-syntax-jsx': 7.28.6(@babel/core@7.27.7) - '@babel/types': 7.29.0 - transitivePeerDependencies: - - supports-color - '@babel/plugin-transform-react-jsx@7.28.6(@babel/core@7.28.4)': + '@babel/plugin-transform-react-jsx@7.28.6(@babel/core@7.27.7)': dependencies: - '@babel/core': 7.28.4 + '@babel/core': 7.27.7 '@babel/helper-annotate-as-pure': 7.27.3 '@babel/helper-module-imports': 7.28.6 '@babel/helper-plugin-utils': 7.28.6 - '@babel/plugin-syntax-jsx': 7.28.6(@babel/core@7.28.4) + '@babel/plugin-syntax-jsx': 7.28.6(@babel/core@7.27.7) '@babel/types': 7.29.0 transitivePeerDependencies: - supports-color @@ -15803,14 +16276,14 @@ snapshots: transitivePeerDependencies: - supports-color - '@babel/plugin-transform-typescript@7.28.6(@babel/core@7.28.4)': + '@babel/plugin-transform-typescript@7.28.6(@babel/core@7.29.0)': dependencies: - '@babel/core': 7.28.4 + '@babel/core': 7.29.0 '@babel/helper-annotate-as-pure': 7.27.3 - '@babel/helper-create-class-features-plugin': 7.28.6(@babel/core@7.28.4) + '@babel/helper-create-class-features-plugin': 7.28.6(@babel/core@7.29.0) '@babel/helper-plugin-utils': 7.28.6 '@babel/helper-skip-transparent-expression-wrappers': 7.27.1 - '@babel/plugin-syntax-typescript': 7.28.6(@babel/core@7.28.4) + '@babel/plugin-syntax-typescript': 7.28.6(@babel/core@7.29.0) transitivePeerDependencies: - supports-color @@ -16320,12 +16793,24 @@ snapshots: '@esbuild/aix-ppc64@0.25.12': optional: true + '@esbuild/aix-ppc64@0.27.7': + optional: true + + '@esbuild/aix-ppc64@0.28.0': + optional: true + '@esbuild/android-arm64@0.21.5': optional: true '@esbuild/android-arm64@0.25.12': optional: true + '@esbuild/android-arm64@0.27.7': + optional: true + + '@esbuild/android-arm64@0.28.0': + optional: true + '@esbuild/android-arm@0.15.18': optional: true @@ -16335,34 +16820,70 @@ snapshots: '@esbuild/android-arm@0.25.12': optional: true + '@esbuild/android-arm@0.27.7': + optional: true + + '@esbuild/android-arm@0.28.0': + optional: true + '@esbuild/android-x64@0.21.5': optional: true '@esbuild/android-x64@0.25.12': optional: true + '@esbuild/android-x64@0.27.7': + optional: true + + '@esbuild/android-x64@0.28.0': + optional: true + '@esbuild/darwin-arm64@0.21.5': optional: true '@esbuild/darwin-arm64@0.25.12': optional: true + '@esbuild/darwin-arm64@0.27.7': + optional: true + + '@esbuild/darwin-arm64@0.28.0': + optional: true + '@esbuild/darwin-x64@0.21.5': optional: true '@esbuild/darwin-x64@0.25.12': optional: true + '@esbuild/darwin-x64@0.27.7': + optional: true + + '@esbuild/darwin-x64@0.28.0': + optional: true + '@esbuild/freebsd-arm64@0.21.5': optional: true '@esbuild/freebsd-arm64@0.25.12': optional: true - '@esbuild/freebsd-x64@0.21.5': + '@esbuild/freebsd-arm64@0.27.7': optional: true - '@esbuild/freebsd-x64@0.25.12': + '@esbuild/freebsd-arm64@0.28.0': + optional: true + + '@esbuild/freebsd-x64@0.21.5': + optional: true + + '@esbuild/freebsd-x64@0.25.12': + optional: true + + '@esbuild/freebsd-x64@0.27.7': + optional: true + + '@esbuild/freebsd-x64@0.28.0': optional: true '@esbuild/linux-arm64@0.21.5': @@ -16371,18 +16892,36 @@ snapshots: '@esbuild/linux-arm64@0.25.12': optional: true + '@esbuild/linux-arm64@0.27.7': + optional: true + + '@esbuild/linux-arm64@0.28.0': + optional: true + '@esbuild/linux-arm@0.21.5': optional: true '@esbuild/linux-arm@0.25.12': optional: true + '@esbuild/linux-arm@0.27.7': + optional: true + + '@esbuild/linux-arm@0.28.0': + optional: true + '@esbuild/linux-ia32@0.21.5': optional: true '@esbuild/linux-ia32@0.25.12': optional: true + '@esbuild/linux-ia32@0.27.7': + optional: true + + '@esbuild/linux-ia32@0.28.0': + optional: true + '@esbuild/linux-loong64@0.15.18': optional: true @@ -16392,81 +16931,171 @@ snapshots: '@esbuild/linux-loong64@0.25.12': optional: true + '@esbuild/linux-loong64@0.27.7': + optional: true + + '@esbuild/linux-loong64@0.28.0': + optional: true + '@esbuild/linux-mips64el@0.21.5': optional: true '@esbuild/linux-mips64el@0.25.12': optional: true + '@esbuild/linux-mips64el@0.27.7': + optional: true + + '@esbuild/linux-mips64el@0.28.0': + optional: true + '@esbuild/linux-ppc64@0.21.5': optional: true '@esbuild/linux-ppc64@0.25.12': optional: true + '@esbuild/linux-ppc64@0.27.7': + optional: true + + '@esbuild/linux-ppc64@0.28.0': + optional: true + '@esbuild/linux-riscv64@0.21.5': optional: true '@esbuild/linux-riscv64@0.25.12': optional: true + '@esbuild/linux-riscv64@0.27.7': + optional: true + + '@esbuild/linux-riscv64@0.28.0': + optional: true + '@esbuild/linux-s390x@0.21.5': optional: true '@esbuild/linux-s390x@0.25.12': optional: true + '@esbuild/linux-s390x@0.27.7': + optional: true + + '@esbuild/linux-s390x@0.28.0': + optional: true + '@esbuild/linux-x64@0.21.5': optional: true '@esbuild/linux-x64@0.25.12': optional: true + '@esbuild/linux-x64@0.27.7': + optional: true + + '@esbuild/linux-x64@0.28.0': + optional: true + '@esbuild/netbsd-arm64@0.25.12': optional: true + '@esbuild/netbsd-arm64@0.27.7': + optional: true + + '@esbuild/netbsd-arm64@0.28.0': + optional: true + '@esbuild/netbsd-x64@0.21.5': optional: true '@esbuild/netbsd-x64@0.25.12': optional: true + '@esbuild/netbsd-x64@0.27.7': + optional: true + + '@esbuild/netbsd-x64@0.28.0': + optional: true + '@esbuild/openbsd-arm64@0.25.12': optional: true + '@esbuild/openbsd-arm64@0.27.7': + optional: true + + '@esbuild/openbsd-arm64@0.28.0': + optional: true + '@esbuild/openbsd-x64@0.21.5': optional: true '@esbuild/openbsd-x64@0.25.12': optional: true + '@esbuild/openbsd-x64@0.27.7': + optional: true + + '@esbuild/openbsd-x64@0.28.0': + optional: true + '@esbuild/openharmony-arm64@0.25.12': optional: true + '@esbuild/openharmony-arm64@0.27.7': + optional: true + + '@esbuild/openharmony-arm64@0.28.0': + optional: true + '@esbuild/sunos-x64@0.21.5': optional: true '@esbuild/sunos-x64@0.25.12': optional: true + '@esbuild/sunos-x64@0.27.7': + optional: true + + '@esbuild/sunos-x64@0.28.0': + optional: true + '@esbuild/win32-arm64@0.21.5': optional: true '@esbuild/win32-arm64@0.25.12': optional: true + '@esbuild/win32-arm64@0.27.7': + optional: true + + '@esbuild/win32-arm64@0.28.0': + optional: true + '@esbuild/win32-ia32@0.21.5': optional: true '@esbuild/win32-ia32@0.25.12': optional: true + '@esbuild/win32-ia32@0.27.7': + optional: true + + '@esbuild/win32-ia32@0.28.0': + optional: true + '@esbuild/win32-x64@0.21.5': optional: true '@esbuild/win32-x64@0.25.12': optional: true + '@esbuild/win32-x64@0.27.7': + optional: true + + '@esbuild/win32-x64@0.28.0': + optional: true + '@eslint-community/eslint-utils@4.9.1(eslint@9.27.0)': dependencies: eslint: 9.27.0 @@ -16638,7 +17267,7 @@ snapshots: optionalDependencies: typescript: 5.9.3 - '@formatjs/intl@3.1.6(typescript@5.9.3)': + '@formatjs/intl@3.1.6(typescript@6.0.2)': dependencies: '@formatjs/ecma402-abstract': 2.3.4 '@formatjs/fast-memoize': 2.2.7 @@ -16646,28 +17275,28 @@ snapshots: intl-messageformat: 10.7.16 tslib: 2.8.1 optionalDependencies: - typescript: 5.9.3 + typescript: 6.0.2 - '@fwouts/vite-tsconfig-paths@4.2.1(typescript@5.8.3)(vite@5.4.21(@types/node@22.19.15)(less@3.13.1)(lightningcss@1.31.1)(sass@1.98.0)(sugarss@5.0.1(postcss@8.5.8))(terser@5.46.1))': + '@fwouts/vite-tsconfig-paths@4.2.1(typescript@5.9.3)(vite@5.4.21(@types/node@25.5.2)(lightningcss@1.32.0)(sass@1.98.0)(sugarss@5.0.1(postcss@8.5.8))(terser@5.46.1))': dependencies: async-mutex: 0.4.1 debug: 4.4.3 globrex: 0.1.2 - tsconfck: 2.1.2(typescript@5.8.3) + tsconfck: 2.1.2(typescript@5.9.3) optionalDependencies: - vite: 5.4.21(@types/node@22.19.15)(less@3.13.1)(lightningcss@1.31.1)(sass@1.98.0)(sugarss@5.0.1(postcss@8.5.8))(terser@5.46.1) + vite: 5.4.21(@types/node@25.5.2)(lightningcss@1.32.0)(sass@1.98.0)(sugarss@5.0.1(postcss@8.5.8))(terser@5.46.1) transitivePeerDependencies: - supports-color - typescript - '@fwouts/vite-tsconfig-paths@4.2.1(typescript@5.8.3)(vite@6.3.5(@types/node@22.19.15)(less@3.13.1)(lightningcss@1.31.1)(sass@1.98.0)(sugarss@5.0.1(postcss@8.5.8))(terser@5.46.1)(yaml@2.8.0))': + '@fwouts/vite-tsconfig-paths@4.2.1(typescript@5.9.3)(vite@6.3.5(@types/node@25.5.2)(lightningcss@1.32.0)(sass@1.98.0)(sugarss@5.0.1(postcss@8.5.8))(terser@5.46.1)(yaml@2.8.3))': dependencies: async-mutex: 0.4.1 debug: 4.4.3 globrex: 0.1.2 - tsconfck: 2.1.2(typescript@5.8.3) + tsconfck: 2.1.2(typescript@5.9.3) optionalDependencies: - vite: 6.3.5(@types/node@22.19.15)(less@3.13.1)(lightningcss@1.31.1)(sass@1.98.0)(sugarss@5.0.1(postcss@8.5.8))(terser@5.46.1)(yaml@2.8.0) + vite: 6.3.5(@types/node@25.5.2)(lightningcss@1.32.0)(sass@1.98.0)(sugarss@5.0.1(postcss@8.5.8))(terser@5.46.1)(yaml@2.8.3) transitivePeerDependencies: - supports-color - typescript @@ -16740,59 +17369,37 @@ snapshots: '@humanwhocodes/retry@0.4.3': {} - '@inquirer/ansi@1.0.2': {} - - '@inquirer/confirm@5.1.21(@types/node@18.16.15)': - dependencies: - '@inquirer/core': 10.3.2(@types/node@18.16.15) - '@inquirer/type': 3.0.10(@types/node@18.16.15) - optionalDependencies: - '@types/node': 18.16.15 - - '@inquirer/confirm@5.1.21(@types/node@22.19.15)': - dependencies: - '@inquirer/core': 10.3.2(@types/node@22.19.15) - '@inquirer/type': 3.0.10(@types/node@22.19.15) - optionalDependencies: - '@types/node': 22.19.15 + '@inquirer/ansi@1.0.2': optional: true - '@inquirer/core@10.3.2(@types/node@18.16.15)': + '@inquirer/confirm@5.1.21(@types/node@25.5.2)': dependencies: - '@inquirer/ansi': 1.0.2 - '@inquirer/figures': 1.0.15 - '@inquirer/type': 3.0.10(@types/node@18.16.15) - cli-width: 4.1.0 - mute-stream: 2.0.0 - signal-exit: 4.1.0 - wrap-ansi: 6.2.0 - yoctocolors-cjs: 2.1.3 + '@inquirer/core': 10.3.2(@types/node@25.5.2) + '@inquirer/type': 3.0.10(@types/node@25.5.2) optionalDependencies: - '@types/node': 18.16.15 + '@types/node': 25.5.2 + optional: true - '@inquirer/core@10.3.2(@types/node@22.19.15)': + '@inquirer/core@10.3.2(@types/node@25.5.2)': dependencies: '@inquirer/ansi': 1.0.2 '@inquirer/figures': 1.0.15 - '@inquirer/type': 3.0.10(@types/node@22.19.15) + '@inquirer/type': 3.0.10(@types/node@25.5.2) cli-width: 4.1.0 mute-stream: 2.0.0 signal-exit: 4.1.0 wrap-ansi: 6.2.0 yoctocolors-cjs: 2.1.3 optionalDependencies: - '@types/node': 22.19.15 + '@types/node': 25.5.2 optional: true - '@inquirer/figures@1.0.15': {} - - '@inquirer/type@3.0.10(@types/node@18.16.15)': - optionalDependencies: - '@types/node': 18.16.15 + '@inquirer/figures@1.0.15': + optional: true - '@inquirer/type@3.0.10(@types/node@22.19.15)': + '@inquirer/type@3.0.10(@types/node@25.5.2)': optionalDependencies: - '@types/node': 22.19.15 + '@types/node': 25.5.2 optional: true '@isaacs/cliui@8.0.2': @@ -16828,7 +17435,7 @@ snapshots: dependencies: '@jest/fake-timers': 29.7.0 '@jest/types': 29.6.3 - '@types/node': 18.19.130 + '@types/node': 25.5.2 jest-mock: 29.7.0 '@jest/expect-utils@30.3.0': @@ -16839,7 +17446,7 @@ snapshots: dependencies: '@jest/types': 29.6.3 '@sinonjs/fake-timers': 10.3.0 - '@types/node': 18.19.130 + '@types/node': 25.5.2 jest-message-util: 29.7.0 jest-mock: 29.7.0 jest-util: 29.7.0 @@ -16848,7 +17455,7 @@ snapshots: '@jest/pattern@30.0.1': dependencies: - '@types/node': 18.19.130 + '@types/node': 25.5.2 jest-regex-util: 30.0.1 '@jest/schemas@29.6.3': @@ -16884,7 +17491,7 @@ snapshots: '@jest/schemas': 29.6.3 '@types/istanbul-lib-coverage': 2.0.6 '@types/istanbul-reports': 3.0.4 - '@types/node': 18.19.130 + '@types/node': 25.5.2 '@types/yargs': 17.0.35 chalk: 4.1.2 @@ -16894,18 +17501,18 @@ snapshots: '@jest/schemas': 30.0.5 '@types/istanbul-lib-coverage': 2.0.6 '@types/istanbul-reports': 3.0.4 - '@types/node': 18.19.130 + '@types/node': 25.5.2 '@types/yargs': 17.0.35 chalk: 4.1.2 - '@joshwooding/vite-plugin-react-docgen-typescript@0.6.1(typescript@5.9.3)(vite@6.3.5(@types/node@22.19.15)(less@3.13.1)(lightningcss@1.31.1)(sass@1.98.0)(sugarss@5.0.1(postcss@8.5.8))(terser@5.46.1)(yaml@2.8.0))': + '@joshwooding/vite-plugin-react-docgen-typescript@0.6.1(typescript@6.0.2)(vite@7.3.2(@types/node@25.5.2)(lightningcss@1.32.0)(sass@1.98.0)(sugarss@5.0.1(postcss@8.5.8))(terser@5.46.1)(yaml@2.8.3))': dependencies: glob: 10.5.0 magic-string: 0.30.21 - react-docgen-typescript: 2.4.0(typescript@5.9.3) - vite: 6.3.5(@types/node@22.19.15)(less@3.13.1)(lightningcss@1.31.1)(sass@1.98.0)(sugarss@5.0.1(postcss@8.5.8))(terser@5.46.1)(yaml@2.8.0) + react-docgen-typescript: 2.4.0(typescript@6.0.2) + vite: 7.3.2(@types/node@25.5.2)(lightningcss@1.32.0)(sass@1.98.0)(sugarss@5.0.1(postcss@8.5.8))(terser@5.46.1)(yaml@2.8.3) optionalDependencies: - typescript: 5.9.3 + typescript: 6.0.2 '@jridgewell/gen-mapping@0.3.13': dependencies: @@ -17129,6 +17736,7 @@ snapshots: is-node-process: 1.2.0 outvariant: 1.4.3 strict-event-emitter: 0.5.1 + optional: true '@nicolo-ribaudo/chokidar-2@2.1.8-no-fsevents.3': optional: true @@ -17147,14 +17755,17 @@ snapshots: '@nodelib/fs.scandir': 2.1.5 fastq: 1.20.1 - '@open-draft/deferred-promise@2.2.0': {} + '@open-draft/deferred-promise@2.2.0': + optional: true '@open-draft/logger@0.3.0': dependencies: is-node-process: 1.2.0 outvariant: 1.4.3 + optional: true - '@open-draft/until@2.1.0': {} + '@open-draft/until@2.1.0': + optional: true '@pandacss/config@1.9.0': dependencies: @@ -17190,14 +17801,14 @@ snapshots: postcss-selector-parser: 7.1.1 ts-pattern: 5.9.0 - '@pandacss/dev@1.9.0(jsdom@22.1.0)(typescript@5.9.3)': + '@pandacss/dev@1.9.0(jsdom@22.1.0)(typescript@6.0.2)': dependencies: '@clack/prompts': 0.11.0 '@pandacss/config': 1.9.0 '@pandacss/logger': 1.9.0 - '@pandacss/mcp': 1.9.0(jsdom@22.1.0)(typescript@5.9.3) - '@pandacss/node': 1.9.0(jsdom@22.1.0)(typescript@5.9.3) - '@pandacss/postcss': 1.9.0(jsdom@22.1.0)(typescript@5.9.3) + '@pandacss/mcp': 1.9.0(jsdom@22.1.0)(typescript@6.0.2) + '@pandacss/node': 1.9.0(jsdom@22.1.0)(typescript@6.0.2) + '@pandacss/postcss': 1.9.0(jsdom@22.1.0)(typescript@6.0.2) '@pandacss/preset-base': 1.9.0 '@pandacss/preset-panda': 1.9.0 '@pandacss/shared': 1.9.0 @@ -17210,10 +17821,10 @@ snapshots: - supports-color - typescript - '@pandacss/extractor@1.9.0(jsdom@22.1.0)(typescript@5.9.3)': + '@pandacss/extractor@1.9.0(jsdom@22.1.0)(typescript@6.0.2)': dependencies: '@pandacss/shared': 1.9.0 - ts-evaluator: 1.2.0(jsdom@22.1.0)(typescript@5.9.3) + ts-evaluator: 1.2.0(jsdom@22.1.0)(typescript@6.0.2) ts-morph: 27.0.2 transitivePeerDependencies: - jsdom @@ -17240,12 +17851,12 @@ snapshots: '@pandacss/types': 1.9.0 kleur: 4.1.5 - '@pandacss/mcp@1.9.0(jsdom@22.1.0)(typescript@5.9.3)': + '@pandacss/mcp@1.9.0(jsdom@22.1.0)(typescript@6.0.2)': dependencies: '@clack/prompts': 0.11.0 '@modelcontextprotocol/sdk': 1.29.0(zod@4.3.6) '@pandacss/logger': 1.9.0 - '@pandacss/node': 1.9.0(jsdom@22.1.0)(typescript@5.9.3) + '@pandacss/node': 1.9.0(jsdom@22.1.0)(typescript@6.0.2) '@pandacss/token-dictionary': 1.9.0 '@pandacss/types': 1.9.0 zod: 4.3.6 @@ -17255,13 +17866,13 @@ snapshots: - supports-color - typescript - '@pandacss/node@1.9.0(jsdom@22.1.0)(typescript@5.9.3)': + '@pandacss/node@1.9.0(jsdom@22.1.0)(typescript@6.0.2)': dependencies: '@pandacss/config': 1.9.0 '@pandacss/core': 1.9.0 '@pandacss/generator': 1.9.0 '@pandacss/logger': 1.9.0 - '@pandacss/parser': 1.9.0(jsdom@22.1.0)(typescript@5.9.3) + '@pandacss/parser': 1.9.0(jsdom@22.1.0)(typescript@6.0.2) '@pandacss/reporter': 1.9.0 '@pandacss/shared': 1.9.0 '@pandacss/token-dictionary': 1.9.0 @@ -17285,16 +17896,16 @@ snapshots: prettier: 3.2.5 ts-morph: 27.0.2 ts-pattern: 5.9.0 - tsconfck: 3.1.6(typescript@5.9.3) + tsconfck: 3.1.6(typescript@6.0.2) transitivePeerDependencies: - jsdom - typescript - '@pandacss/parser@1.9.0(jsdom@22.1.0)(typescript@5.9.3)': + '@pandacss/parser@1.9.0(jsdom@22.1.0)(typescript@6.0.2)': dependencies: '@pandacss/config': 1.9.0 '@pandacss/core': 1.9.0 - '@pandacss/extractor': 1.9.0(jsdom@22.1.0)(typescript@5.9.3) + '@pandacss/extractor': 1.9.0(jsdom@22.1.0)(typescript@6.0.2) '@pandacss/logger': 1.9.0 '@pandacss/shared': 1.9.0 '@pandacss/types': 1.9.0 @@ -17306,9 +17917,9 @@ snapshots: - jsdom - typescript - '@pandacss/postcss@1.9.0(jsdom@22.1.0)(typescript@5.9.3)': + '@pandacss/postcss@1.9.0(jsdom@22.1.0)(typescript@6.0.2)': dependencies: - '@pandacss/node': 1.9.0(jsdom@22.1.0)(typescript@5.9.3) + '@pandacss/node': 1.9.0(jsdom@22.1.0)(typescript@6.0.2) postcss: 8.5.6 transitivePeerDependencies: - jsdom @@ -17529,15 +18140,15 @@ snapshots: pino: 9.14.0 pino-pretty: 11.3.0 - '@previewjs/analyzer-react@0.1.11(@types/node@22.19.15)(less@3.13.1)(lightningcss@1.31.1)(sass@1.98.0)(sugarss@5.0.1(postcss@8.5.8))(terser@5.46.1)(vite@6.3.5(@types/node@22.19.15)(less@3.13.1)(lightningcss@1.31.1)(sass@1.98.0)(sugarss@5.0.1(postcss@8.5.8))(terser@5.46.1)(yaml@2.8.0))(yaml@2.8.0)': + '@previewjs/analyzer-react@0.1.11(@types/node@25.5.2)(lightningcss@1.32.0)(sass@1.98.0)(sugarss@5.0.1(postcss@8.5.8))(terser@5.46.1)(vite@7.3.2(@types/node@25.5.2)(lightningcss@1.32.0)(sass@1.98.0)(sugarss@5.0.1(postcss@8.5.8))(terser@5.46.1)(yaml@2.8.3))(yaml@2.8.3)': dependencies: '@previewjs/analyzer-api': 0.1.8 '@previewjs/serializable-values': 9.0.6 - '@previewjs/storybook-helpers': 6.0.1(@types/node@22.19.15)(less@3.13.1)(lightningcss@1.31.1)(sass@1.98.0)(sugarss@5.0.1(postcss@8.5.8))(terser@5.46.1)(yaml@2.8.0) + '@previewjs/storybook-helpers': 6.0.1(@types/node@25.5.2)(lightningcss@1.32.0)(sass@1.98.0)(sugarss@5.0.1(postcss@8.5.8))(terser@5.46.1)(yaml@2.8.3) '@previewjs/type-analyzer': 10.1.5 '@previewjs/vfs': 2.1.4 - '@vitejs/plugin-react': 4.7.0(vite@6.3.5(@types/node@22.19.15)(less@3.13.1)(lightningcss@1.31.1)(sass@1.98.0)(sugarss@5.0.1(postcss@8.5.8))(terser@5.46.1)(yaml@2.8.0)) - typescript: 5.8.3 + '@vitejs/plugin-react': 4.7.0(vite@7.3.2(@types/node@25.5.2)(lightningcss@1.32.0)(sass@1.98.0)(sugarss@5.0.1(postcss@8.5.8))(terser@5.46.1)(yaml@2.8.3)) + typescript: 5.9.3 transitivePeerDependencies: - '@swc/core' - '@swc/wasm' @@ -17564,17 +18175,17 @@ snapshots: transitivePeerDependencies: - debug - '@previewjs/chromeless@13.1.1(@types/node@22.19.15)(esbuild@0.14.29)(less@3.13.1)(lightningcss@1.31.1)(sass@1.98.0)(sugarss@5.0.1(postcss@8.5.8))(terser@5.46.1)': + '@previewjs/chromeless@13.1.1(@types/node@25.5.2)(esbuild@0.28.0)(lightningcss@1.32.0)(sass@1.98.0)(sugarss@5.0.1(postcss@8.5.8))(terser@5.46.1)': dependencies: '@previewjs/api': 16.1.0 - '@previewjs/core': 29.1.1(@types/node@22.19.15)(esbuild@0.14.29)(less@3.13.1)(lightningcss@1.31.1)(sass@1.98.0)(sugarss@5.0.1(postcss@8.5.8))(terser@5.46.1) + '@previewjs/core': 29.1.1(@types/node@25.5.2)(esbuild@0.28.0)(lightningcss@1.32.0)(sass@1.98.0)(sugarss@5.0.1(postcss@8.5.8))(terser@5.46.1) '@previewjs/iframe': 17.1.1 '@previewjs/properties': 5.0.6 '@previewjs/vfs': 2.1.4 express: 4.22.1 pino: 9.14.0 playwright: 1.58.2 - typescript: 5.8.3 + typescript: 5.9.3 transitivePeerDependencies: - '@swc/core' - '@swc/wasm' @@ -17590,9 +18201,9 @@ snapshots: - supports-color - terser - '@previewjs/config@6.0.1(@types/node@22.19.15)(less@3.13.1)(lightningcss@1.31.1)(sass@1.98.0)(sugarss@5.0.1(postcss@8.5.8))(terser@5.46.1)': + '@previewjs/config@6.0.1(@types/node@25.5.2)(lightningcss@1.32.0)(sass@1.98.0)(sugarss@5.0.1(postcss@8.5.8))(terser@5.46.1)': dependencies: - vite: 5.4.21(@types/node@22.19.15)(less@3.13.1)(lightningcss@1.31.1)(sass@1.98.0)(sugarss@5.0.1(postcss@8.5.8))(terser@5.46.1) + vite: 5.4.21(@types/node@25.5.2)(lightningcss@1.32.0)(sass@1.98.0)(sugarss@5.0.1(postcss@8.5.8))(terser@5.46.1) transitivePeerDependencies: - '@types/node' - less @@ -17603,9 +18214,9 @@ snapshots: - sugarss - terser - '@previewjs/config@7.0.1(@types/node@22.19.15)(less@3.13.1)(lightningcss@1.31.1)(sass@1.98.0)(sugarss@5.0.1(postcss@8.5.8))(terser@5.46.1)(yaml@2.8.0)': + '@previewjs/config@7.0.1(@types/node@25.5.2)(lightningcss@1.32.0)(sass@1.98.0)(sugarss@5.0.1(postcss@8.5.8))(terser@5.46.1)(yaml@2.8.3)': dependencies: - vite: 6.3.5(@types/node@22.19.15)(less@3.13.1)(lightningcss@1.31.1)(sass@1.98.0)(sugarss@5.0.1(postcss@8.5.8))(terser@5.46.1)(yaml@2.8.0) + vite: 6.3.5(@types/node@25.5.2)(lightningcss@1.32.0)(sass@1.98.0)(sugarss@5.0.1(postcss@8.5.8))(terser@5.46.1)(yaml@2.8.3) transitivePeerDependencies: - '@types/node' - jiti @@ -17619,19 +18230,19 @@ snapshots: - tsx - yaml - '@previewjs/core@29.1.1(@types/node@22.19.15)(esbuild@0.14.29)(less@3.13.1)(lightningcss@1.31.1)(sass@1.98.0)(sugarss@5.0.1(postcss@8.5.8))(terser@5.46.1)': + '@previewjs/core@29.1.1(@types/node@25.5.2)(esbuild@0.28.0)(lightningcss@1.32.0)(sass@1.98.0)(sugarss@5.0.1(postcss@8.5.8))(terser@5.46.1)': dependencies: - '@fwouts/vite-tsconfig-paths': 4.2.1(typescript@5.8.3)(vite@5.4.21(@types/node@22.19.15)(less@3.13.1)(lightningcss@1.31.1)(sass@1.98.0)(sugarss@5.0.1(postcss@8.5.8))(terser@5.46.1)) + '@fwouts/vite-tsconfig-paths': 4.2.1(typescript@5.9.3)(vite@5.4.21(@types/node@25.5.2)(lightningcss@1.32.0)(sass@1.98.0)(sugarss@5.0.1(postcss@8.5.8))(terser@5.46.1)) '@previewjs/analyzer-api': 0.1.8 '@previewjs/api': 16.1.0 - '@previewjs/config': 6.0.1(@types/node@22.19.15)(less@3.13.1)(lightningcss@1.31.1)(sass@1.98.0)(sugarss@5.0.1(postcss@8.5.8))(terser@5.46.1) + '@previewjs/config': 6.0.1(@types/node@25.5.2)(lightningcss@1.32.0)(sass@1.98.0)(sugarss@5.0.1(postcss@8.5.8))(terser@5.46.1) '@previewjs/iframe': 17.1.1 '@previewjs/serializable-values': 9.0.6 '@previewjs/type-analyzer': 10.1.5 '@previewjs/vfs': 2.1.4 assert-never: 1.4.0 axios: 1.9.0 - esbuild-plugin-polyfill-node: 0.3.0(esbuild@0.14.29) + esbuild-plugin-polyfill-node: 0.3.0(esbuild@0.28.0) exclusive-promises: 1.0.3 express: 4.22.1 fs-extra: 11.3.2 @@ -17641,10 +18252,10 @@ snapshots: pino: 9.14.0 pino-pretty: 11.3.0 rollup-plugin-friendly-type-imports: 1.0.3 - ts-node: 10.9.2(@types/node@22.19.15)(typescript@5.8.3) + ts-node: 10.9.2(@types/node@25.5.2)(typescript@5.9.3) tsconfig-paths: 4.2.0 - typescript: 5.8.3 - vite: 5.4.21(@types/node@22.19.15)(less@3.13.1)(lightningcss@1.31.1)(sass@1.98.0)(sugarss@5.0.1(postcss@8.5.8))(terser@5.46.1) + typescript: 5.9.3 + vite: 5.4.21(@types/node@25.5.2)(lightningcss@1.32.0)(sass@1.98.0)(sugarss@5.0.1(postcss@8.5.8))(terser@5.46.1) zod: 3.25.76 transitivePeerDependencies: - '@swc/core' @@ -17661,12 +18272,12 @@ snapshots: - supports-color - terser - '@previewjs/core@30.2.0(@types/node@22.19.15)(less@3.13.1)(lightningcss@1.31.1)(sass@1.98.0)(sugarss@5.0.1(postcss@8.5.8))(terser@5.46.1)(yaml@2.8.0)': + '@previewjs/core@30.2.0(@types/node@25.5.2)(lightningcss@1.32.0)(sass@1.98.0)(sugarss@5.0.1(postcss@8.5.8))(terser@5.46.1)(yaml@2.8.3)': dependencies: - '@fwouts/vite-tsconfig-paths': 4.2.1(typescript@5.8.3)(vite@6.3.5(@types/node@22.19.15)(less@3.13.1)(lightningcss@1.31.1)(sass@1.98.0)(sugarss@5.0.1(postcss@8.5.8))(terser@5.46.1)(yaml@2.8.0)) + '@fwouts/vite-tsconfig-paths': 4.2.1(typescript@5.9.3)(vite@6.3.5(@types/node@25.5.2)(lightningcss@1.32.0)(sass@1.98.0)(sugarss@5.0.1(postcss@8.5.8))(terser@5.46.1)(yaml@2.8.3)) '@previewjs/analyzer-api': 0.1.8 '@previewjs/api': 16.1.0 - '@previewjs/config': 7.0.1(@types/node@22.19.15)(less@3.13.1)(lightningcss@1.31.1)(sass@1.98.0)(sugarss@5.0.1(postcss@8.5.8))(terser@5.46.1)(yaml@2.8.0) + '@previewjs/config': 7.0.1(@types/node@25.5.2)(lightningcss@1.32.0)(sass@1.98.0)(sugarss@5.0.1(postcss@8.5.8))(terser@5.46.1)(yaml@2.8.3) '@previewjs/iframe': 18.0.0 '@previewjs/serializable-values': 9.0.6 '@previewjs/type-analyzer': 10.1.5 @@ -17682,10 +18293,10 @@ snapshots: pino: 9.14.0 pino-pretty: 11.3.0 rollup-plugin-friendly-type-imports: 1.0.3 - ts-node: 10.9.2(@types/node@22.19.15)(typescript@5.8.3) + ts-node: 10.9.2(@types/node@25.5.2)(typescript@5.9.3) tsconfig-paths: 4.2.0 - typescript: 5.8.3 - vite: 6.3.5(@types/node@22.19.15)(less@3.13.1)(lightningcss@1.31.1)(sass@1.98.0)(sugarss@5.0.1(postcss@8.5.8))(terser@5.46.1)(yaml@2.8.0) + typescript: 5.9.3 + vite: 6.3.5(@types/node@25.5.2)(lightningcss@1.32.0)(sass@1.98.0)(sugarss@5.0.1(postcss@8.5.8))(terser@5.46.1)(yaml@2.8.3) zod: 3.25.76 transitivePeerDependencies: - '@swc/core' @@ -17708,10 +18319,10 @@ snapshots: '@previewjs/iframe@18.0.0': {} - '@previewjs/plugin-react@16.0.2(@types/node@22.19.15)(less@3.13.1)(lightningcss@1.31.1)(sass@1.98.0)(sugarss@5.0.1(postcss@8.5.8))(terser@5.46.1)(vite@6.3.5(@types/node@22.19.15)(less@3.13.1)(lightningcss@1.31.1)(sass@1.98.0)(sugarss@5.0.1(postcss@8.5.8))(terser@5.46.1)(yaml@2.8.0))(yaml@2.8.0)': + '@previewjs/plugin-react@16.0.2(@types/node@25.5.2)(lightningcss@1.32.0)(sass@1.98.0)(sugarss@5.0.1(postcss@8.5.8))(terser@5.46.1)(vite@7.3.2(@types/node@25.5.2)(lightningcss@1.32.0)(sass@1.98.0)(sugarss@5.0.1(postcss@8.5.8))(terser@5.46.1)(yaml@2.8.3))(yaml@2.8.3)': dependencies: - '@previewjs/analyzer-react': 0.1.11(@types/node@22.19.15)(less@3.13.1)(lightningcss@1.31.1)(sass@1.98.0)(sugarss@5.0.1(postcss@8.5.8))(terser@5.46.1)(vite@6.3.5(@types/node@22.19.15)(less@3.13.1)(lightningcss@1.31.1)(sass@1.98.0)(sugarss@5.0.1(postcss@8.5.8))(terser@5.46.1)(yaml@2.8.0))(yaml@2.8.0) - '@vitejs/plugin-react': 4.7.0(vite@6.3.5(@types/node@22.19.15)(less@3.13.1)(lightningcss@1.31.1)(sass@1.98.0)(sugarss@5.0.1(postcss@8.5.8))(terser@5.46.1)(yaml@2.8.0)) + '@previewjs/analyzer-react': 0.1.11(@types/node@25.5.2)(lightningcss@1.32.0)(sass@1.98.0)(sugarss@5.0.1(postcss@8.5.8))(terser@5.46.1)(vite@7.3.2(@types/node@25.5.2)(lightningcss@1.32.0)(sass@1.98.0)(sugarss@5.0.1(postcss@8.5.8))(terser@5.46.1)(yaml@2.8.3))(yaml@2.8.3) + '@vitejs/plugin-react': 4.7.0(vite@7.3.2(@types/node@25.5.2)(lightningcss@1.32.0)(sass@1.98.0)(sugarss@5.0.1(postcss@8.5.8))(terser@5.46.1)(yaml@2.8.3)) transitivePeerDependencies: - '@swc/core' - '@swc/wasm' @@ -17730,11 +18341,11 @@ snapshots: - vite - yaml - '@previewjs/plugin-react@17.1.0(@types/node@22.19.15)(esbuild@0.14.29)(less@3.13.1)(lightningcss@1.31.1)(sass@1.98.0)(sugarss@5.0.1(postcss@8.5.8))(terser@5.46.1)(vite@6.3.5(@types/node@22.19.15)(less@3.13.1)(lightningcss@1.31.1)(sass@1.98.0)(sugarss@5.0.1(postcss@8.5.8))(terser@5.46.1)(yaml@2.8.0))(yaml@2.8.0)': + '@previewjs/plugin-react@17.1.0(@types/node@25.5.2)(esbuild@0.28.0)(lightningcss@1.32.0)(sass@1.98.0)(sugarss@5.0.1(postcss@8.5.8))(terser@5.46.1)(vite@7.3.2(@types/node@25.5.2)(lightningcss@1.32.0)(sass@1.98.0)(sugarss@5.0.1(postcss@8.5.8))(terser@5.46.1)(yaml@2.8.3))(yaml@2.8.3)': dependencies: - '@previewjs/analyzer-react': 0.1.11(@types/node@22.19.15)(less@3.13.1)(lightningcss@1.31.1)(sass@1.98.0)(sugarss@5.0.1(postcss@8.5.8))(terser@5.46.1)(vite@6.3.5(@types/node@22.19.15)(less@3.13.1)(lightningcss@1.31.1)(sass@1.98.0)(sugarss@5.0.1(postcss@8.5.8))(terser@5.46.1)(yaml@2.8.0))(yaml@2.8.0) - '@vitejs/plugin-react': 4.7.0(vite@6.3.5(@types/node@22.19.15)(less@3.13.1)(lightningcss@1.31.1)(sass@1.98.0)(sugarss@5.0.1(postcss@8.5.8))(terser@5.46.1)(yaml@2.8.0)) - esbuild-plugin-polyfill-node: 0.3.0(esbuild@0.14.29) + '@previewjs/analyzer-react': 0.1.11(@types/node@25.5.2)(lightningcss@1.32.0)(sass@1.98.0)(sugarss@5.0.1(postcss@8.5.8))(terser@5.46.1)(vite@7.3.2(@types/node@25.5.2)(lightningcss@1.32.0)(sass@1.98.0)(sugarss@5.0.1(postcss@8.5.8))(terser@5.46.1)(yaml@2.8.3))(yaml@2.8.3) + '@vitejs/plugin-react': 4.7.0(vite@7.3.2(@types/node@25.5.2)(lightningcss@1.32.0)(sass@1.98.0)(sugarss@5.0.1(postcss@8.5.8))(terser@5.46.1)(yaml@2.8.3)) + esbuild-plugin-polyfill-node: 0.3.0(esbuild@0.28.0) transitivePeerDependencies: - '@swc/core' - '@swc/wasm' @@ -17759,12 +18370,12 @@ snapshots: '@previewjs/serializable-values': 9.0.6 '@previewjs/type-analyzer': 10.1.5 - '@previewjs/screenshot@0.3.2(@types/node@22.19.15)(esbuild@0.14.29)(less@3.13.1)(lightningcss@1.31.1)(sass@1.98.0)(sugarss@5.0.1(postcss@8.5.8))(terser@5.46.1)(vite@6.3.5(@types/node@22.19.15)(less@3.13.1)(lightningcss@1.31.1)(sass@1.98.0)(sugarss@5.0.1(postcss@8.5.8))(terser@5.46.1)(yaml@2.8.0))(yaml@2.8.0)': + '@previewjs/screenshot@0.3.2(@types/node@25.5.2)(esbuild@0.28.0)(lightningcss@1.32.0)(sass@1.98.0)(sugarss@5.0.1(postcss@8.5.8))(terser@5.46.1)(vite@7.3.2(@types/node@25.5.2)(lightningcss@1.32.0)(sass@1.98.0)(sugarss@5.0.1(postcss@8.5.8))(terser@5.46.1)(yaml@2.8.3))(yaml@2.8.3)': dependencies: '@previewjs/analyzer-api': 0.1.8 - '@previewjs/chromeless': 13.1.1(@types/node@22.19.15)(esbuild@0.14.29)(less@3.13.1)(lightningcss@1.31.1)(sass@1.98.0)(sugarss@5.0.1(postcss@8.5.8))(terser@5.46.1) - '@previewjs/core': 29.1.1(@types/node@22.19.15)(esbuild@0.14.29)(less@3.13.1)(lightningcss@1.31.1)(sass@1.98.0)(sugarss@5.0.1(postcss@8.5.8))(terser@5.46.1) - '@previewjs/plugin-react': 16.0.2(@types/node@22.19.15)(less@3.13.1)(lightningcss@1.31.1)(sass@1.98.0)(sugarss@5.0.1(postcss@8.5.8))(terser@5.46.1)(vite@6.3.5(@types/node@22.19.15)(less@3.13.1)(lightningcss@1.31.1)(sass@1.98.0)(sugarss@5.0.1(postcss@8.5.8))(terser@5.46.1)(yaml@2.8.0))(yaml@2.8.0) + '@previewjs/chromeless': 13.1.1(@types/node@25.5.2)(esbuild@0.28.0)(lightningcss@1.32.0)(sass@1.98.0)(sugarss@5.0.1(postcss@8.5.8))(terser@5.46.1) + '@previewjs/core': 29.1.1(@types/node@25.5.2)(esbuild@0.28.0)(lightningcss@1.32.0)(sass@1.98.0)(sugarss@5.0.1(postcss@8.5.8))(terser@5.46.1) + '@previewjs/plugin-react': 16.0.2(@types/node@25.5.2)(lightningcss@1.32.0)(sass@1.98.0)(sugarss@5.0.1(postcss@8.5.8))(terser@5.46.1)(vite@7.3.2(@types/node@25.5.2)(lightningcss@1.32.0)(sass@1.98.0)(sugarss@5.0.1(postcss@8.5.8))(terser@5.46.1)(yaml@2.8.3))(yaml@2.8.3) globby: 14.1.0 playwright: 1.58.2 transitivePeerDependencies: @@ -17792,16 +18403,16 @@ snapshots: '@previewjs/type-analyzer': 10.1.5 assert-never: 1.4.0 prettier: 2.8.8 - typescript: 5.8.3 + typescript: 5.9.3 - '@previewjs/storybook-helpers@6.0.1(@types/node@22.19.15)(less@3.13.1)(lightningcss@1.31.1)(sass@1.98.0)(sugarss@5.0.1(postcss@8.5.8))(terser@5.46.1)(yaml@2.8.0)': + '@previewjs/storybook-helpers@6.0.1(@types/node@25.5.2)(lightningcss@1.32.0)(sass@1.98.0)(sugarss@5.0.1(postcss@8.5.8))(terser@5.46.1)(yaml@2.8.3)': dependencies: '@previewjs/analyzer-api': 0.1.8 '@previewjs/api': 16.1.0 - '@previewjs/core': 30.2.0(@types/node@22.19.15)(less@3.13.1)(lightningcss@1.31.1)(sass@1.98.0)(sugarss@5.0.1(postcss@8.5.8))(terser@5.46.1)(yaml@2.8.0) + '@previewjs/core': 30.2.0(@types/node@25.5.2)(lightningcss@1.32.0)(sass@1.98.0)(sugarss@5.0.1(postcss@8.5.8))(terser@5.46.1)(yaml@2.8.3) '@previewjs/serializable-values': 9.0.6 '@previewjs/type-analyzer': 10.1.5 - typescript: 5.8.3 + typescript: 5.9.3 transitivePeerDependencies: - '@swc/core' - '@swc/wasm' @@ -17825,7 +18436,7 @@ snapshots: assert-never: 1.4.0 globby: 14.1.0 prettier: 2.8.8 - typescript: 5.8.3 + typescript: 5.9.3 '@previewjs/vfs@2.1.4': dependencies: @@ -17837,7 +18448,25 @@ snapshots: dependencies: spacetrim: 0.11.59 - '@puppeteer/browsers@1.4.6(typescript@5.8.3)': + '@puppeteer/browsers@1.4.6(typescript@5.9.3)': + dependencies: + debug: 4.3.4 + extract-zip: 2.0.1 + progress: 2.0.3 + proxy-agent: 6.3.0 + tar-fs: 3.0.4 + unbzip2-stream: 1.4.3 + yargs: 17.7.1 + optionalDependencies: + typescript: 5.9.3 + transitivePeerDependencies: + - bare-abort-controller + - bare-buffer + - react-native-b4a + - supports-color + optional: true + + '@puppeteer/browsers@1.4.6(typescript@6.0.2)': dependencies: debug: 4.3.4 extract-zip: 2.0.1 @@ -17847,7 +18476,7 @@ snapshots: unbzip2-stream: 1.4.3 yargs: 17.7.1 optionalDependencies: - typescript: 5.8.3 + typescript: 6.0.2 transitivePeerDependencies: - bare-abort-controller - bare-buffer @@ -17871,9 +18500,9 @@ snapshots: '@react-native/assets-registry@0.84.1': {} - '@react-native/codegen@0.84.1(@babel/core@7.28.4)': + '@react-native/codegen@0.84.1(@babel/core@7.29.0)': dependencies: - '@babel/core': 7.28.4 + '@babel/core': 7.29.0 '@babel/parser': 7.29.2 hermes-parser: 0.32.0 invariant: 2.2.4 @@ -17930,12 +18559,12 @@ snapshots: '@react-native/normalize-colors@0.84.1': {} - '@react-native/virtualized-lists@0.84.1(@types/react@18.2.19)(react-native@0.84.1(@babel/core@7.28.4)(@types/react@18.2.19)(react@18.3.1))(react@18.3.1)': + '@react-native/virtualized-lists@0.84.1(@types/react@18.2.19)(react-native@0.84.1(@babel/core@7.29.0)(@types/react@18.2.19)(react@18.3.1))(react@18.3.1)': dependencies: invariant: 2.2.4 nullthrows: 1.1.1 react: 18.3.1 - react-native: 0.84.1(@babel/core@7.28.4)(@types/react@18.2.19)(react@18.3.1) + react-native: 0.84.1(@babel/core@7.29.0)(@types/react@18.2.19)(react@18.3.1) optionalDependencies: '@types/react': 18.2.19 @@ -17948,6 +18577,10 @@ snapshots: '@rolldown/pluginutils@1.0.0-beta.27': {} + '@rolldown/pluginutils@1.0.0-rc.15': {} + + '@rolldown/pluginutils@1.0.0-rc.3': {} + '@rollup/pluginutils@5.3.0(rollup@4.60.0)': dependencies: '@types/estree': 1.0.8 @@ -18254,54 +18887,63 @@ snapshots: dependencies: '@sinonjs/commons': 3.0.1 - '@storybook/addon-a11y@9.1.6(storybook@9.1.6(@testing-library/dom@10.4.1)(msw@2.12.14(@types/node@18.16.15)(typescript@5.8.3))(prettier@3.8.1)(vite@6.3.5(@types/node@18.16.15)(less@3.13.1)(lightningcss@1.31.1)(sass@1.98.0)(sugarss@5.0.1(postcss@8.4.38))(terser@5.46.1)(yaml@2.8.0)))': + '@storybook/addon-a11y@10.3.5(storybook@10.3.5(@testing-library/dom@10.4.1)(prettier@3.8.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))': dependencies: '@storybook/global': 5.0.0 axe-core: 4.9.1 - storybook: 9.1.6(@testing-library/dom@10.4.1)(msw@2.12.14(@types/node@18.16.15)(typescript@5.8.3))(prettier@3.8.1)(vite@6.3.5(@types/node@18.16.15)(less@3.13.1)(lightningcss@1.31.1)(sass@1.98.0)(sugarss@5.0.1(postcss@8.4.38))(terser@5.46.1)(yaml@2.8.0)) + storybook: 10.3.5(@testing-library/dom@10.4.1)(prettier@3.8.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@storybook/addon-docs@9.1.20(@types/react@18.2.19)(storybook@9.1.6(@testing-library/dom@10.4.1)(msw@2.12.14(@types/node@18.16.15)(typescript@5.8.3))(prettier@3.8.1)(vite@6.3.5(@types/node@18.16.15)(less@3.13.1)(lightningcss@1.31.1)(sass@1.98.0)(sugarss@5.0.1(postcss@8.4.38))(terser@5.46.1)(yaml@2.8.0)))': + '@storybook/addon-docs@10.3.5(@types/react@18.2.19)(esbuild@0.28.0)(rollup@4.60.0)(storybook@10.3.5(@testing-library/dom@10.4.1)(prettier@3.8.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(vite@7.3.2(@types/node@25.5.2)(lightningcss@1.32.0)(sass@1.98.0)(sugarss@5.0.1(postcss@8.4.38))(terser@5.46.1)(yaml@2.8.3))(webpack@5.105.4(esbuild@0.28.0))': dependencies: '@mdx-js/react': 3.1.1(@types/react@18.2.19)(react@18.3.1) - '@storybook/csf-plugin': 9.1.20(storybook@9.1.6(@testing-library/dom@10.4.1)(msw@2.12.14(@types/node@18.16.15)(typescript@5.8.3))(prettier@3.8.1)(vite@6.3.5(@types/node@18.16.15)(less@3.13.1)(lightningcss@1.31.1)(sass@1.98.0)(sugarss@5.0.1(postcss@8.4.38))(terser@5.46.1)(yaml@2.8.0))) - '@storybook/icons': 1.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@storybook/react-dom-shim': 9.1.20(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(storybook@9.1.6(@testing-library/dom@10.4.1)(msw@2.12.14(@types/node@18.16.15)(typescript@5.8.3))(prettier@3.8.1)(vite@6.3.5(@types/node@18.16.15)(less@3.13.1)(lightningcss@1.31.1)(sass@1.98.0)(sugarss@5.0.1(postcss@8.4.38))(terser@5.46.1)(yaml@2.8.0))) + '@storybook/csf-plugin': 10.3.5(esbuild@0.28.0)(rollup@4.60.0)(storybook@10.3.5(@testing-library/dom@10.4.1)(prettier@3.8.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(vite@7.3.2(@types/node@25.5.2)(lightningcss@1.32.0)(sass@1.98.0)(sugarss@5.0.1(postcss@8.4.38))(terser@5.46.1)(yaml@2.8.3))(webpack@5.105.4(esbuild@0.28.0)) + '@storybook/icons': 2.0.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@storybook/react-dom-shim': 10.3.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(storybook@10.3.5(@testing-library/dom@10.4.1)(prettier@3.8.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)) react: 18.3.1 react-dom: 18.3.1(react@18.3.1) - storybook: 9.1.6(@testing-library/dom@10.4.1)(msw@2.12.14(@types/node@18.16.15)(typescript@5.8.3))(prettier@3.8.1)(vite@6.3.5(@types/node@18.16.15)(less@3.13.1)(lightningcss@1.31.1)(sass@1.98.0)(sugarss@5.0.1(postcss@8.4.38))(terser@5.46.1)(yaml@2.8.0)) + storybook: 10.3.5(@testing-library/dom@10.4.1)(prettier@3.8.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) ts-dedent: 2.2.0 transitivePeerDependencies: - '@types/react' + - esbuild + - rollup + - vite + - webpack - '@storybook/addon-links@9.1.6(react@18.3.1)(storybook@9.1.6(@testing-library/dom@10.4.1)(msw@2.12.14(@types/node@18.16.15)(typescript@5.8.3))(prettier@3.8.1)(vite@6.3.5(@types/node@18.16.15)(less@3.13.1)(lightningcss@1.31.1)(sass@1.98.0)(sugarss@5.0.1(postcss@8.4.38))(terser@5.46.1)(yaml@2.8.0)))': + '@storybook/addon-links@10.3.5(react@18.3.1)(storybook@10.3.5(@testing-library/dom@10.4.1)(prettier@3.8.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))': dependencies: '@storybook/global': 5.0.0 - storybook: 9.1.6(@testing-library/dom@10.4.1)(msw@2.12.14(@types/node@18.16.15)(typescript@5.8.3))(prettier@3.8.1)(vite@6.3.5(@types/node@18.16.15)(less@3.13.1)(lightningcss@1.31.1)(sass@1.98.0)(sugarss@5.0.1(postcss@8.4.38))(terser@5.46.1)(yaml@2.8.0)) + storybook: 10.3.5(@testing-library/dom@10.4.1)(prettier@3.8.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) optionalDependencies: react: 18.3.1 - '@storybook/addon-storysource@8.6.14(storybook@9.1.6(@testing-library/dom@10.4.1)(msw@2.12.14(@types/node@18.16.15)(typescript@5.8.3))(prettier@3.8.1)(vite@6.3.5(@types/node@18.16.15)(less@3.13.1)(lightningcss@1.31.1)(sass@1.98.0)(sugarss@5.0.1(postcss@8.4.38))(terser@5.46.1)(yaml@2.8.0)))': + '@storybook/addon-storysource@8.6.14(storybook@10.3.5(@testing-library/dom@10.4.1)(prettier@3.8.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))': dependencies: - '@storybook/source-loader': 8.6.14(storybook@9.1.6(@testing-library/dom@10.4.1)(msw@2.12.14(@types/node@18.16.15)(typescript@5.8.3))(prettier@3.8.1)(vite@6.3.5(@types/node@18.16.15)(less@3.13.1)(lightningcss@1.31.1)(sass@1.98.0)(sugarss@5.0.1(postcss@8.4.38))(terser@5.46.1)(yaml@2.8.0))) + '@storybook/source-loader': 8.6.14(storybook@10.3.5(@testing-library/dom@10.4.1)(prettier@3.8.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)) estraverse: 5.3.0 - storybook: 9.1.6(@testing-library/dom@10.4.1)(msw@2.12.14(@types/node@18.16.15)(typescript@5.8.3))(prettier@3.8.1)(vite@6.3.5(@types/node@18.16.15)(less@3.13.1)(lightningcss@1.31.1)(sass@1.98.0)(sugarss@5.0.1(postcss@8.4.38))(terser@5.46.1)(yaml@2.8.0)) + storybook: 10.3.5(@testing-library/dom@10.4.1)(prettier@3.8.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) tiny-invariant: 1.3.3 - '@storybook/builder-vite@9.1.6(storybook@9.1.6(@testing-library/dom@10.4.1)(msw@2.12.14(@types/node@22.19.15)(typescript@5.9.3))(prettier@3.8.1)(vite@6.3.5(@types/node@22.19.15)(less@3.13.1)(lightningcss@1.31.1)(sass@1.98.0)(sugarss@5.0.1(postcss@8.5.8))(terser@5.46.1)(yaml@2.8.0)))(vite@6.3.5(@types/node@22.19.15)(less@3.13.1)(lightningcss@1.31.1)(sass@1.98.0)(sugarss@5.0.1(postcss@8.5.8))(terser@5.46.1)(yaml@2.8.0))': + '@storybook/builder-vite@9.1.6(storybook@10.3.5(@testing-library/dom@10.4.1)(prettier@3.8.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(vite@7.3.2(@types/node@25.5.2)(lightningcss@1.32.0)(sass@1.98.0)(sugarss@5.0.1(postcss@8.5.8))(terser@5.46.1)(yaml@2.8.3))': dependencies: - '@storybook/csf-plugin': 9.1.6(storybook@9.1.6(@testing-library/dom@10.4.1)(msw@2.12.14(@types/node@22.19.15)(typescript@5.9.3))(prettier@3.8.1)(vite@6.3.5(@types/node@22.19.15)(less@3.13.1)(lightningcss@1.31.1)(sass@1.98.0)(sugarss@5.0.1(postcss@8.5.8))(terser@5.46.1)(yaml@2.8.0))) - storybook: 9.1.6(@testing-library/dom@10.4.1)(msw@2.12.14(@types/node@22.19.15)(typescript@5.9.3))(prettier@3.8.1)(vite@6.3.5(@types/node@22.19.15)(less@3.13.1)(lightningcss@1.31.1)(sass@1.98.0)(sugarss@5.0.1(postcss@8.5.8))(terser@5.46.1)(yaml@2.8.0)) + '@storybook/csf-plugin': 9.1.6(storybook@10.3.5(@testing-library/dom@10.4.1)(prettier@3.8.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)) + storybook: 10.3.5(@testing-library/dom@10.4.1)(prettier@3.8.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) ts-dedent: 2.2.0 - vite: 6.3.5(@types/node@22.19.15)(less@3.13.1)(lightningcss@1.31.1)(sass@1.98.0)(sugarss@5.0.1(postcss@8.5.8))(terser@5.46.1)(yaml@2.8.0) + vite: 7.3.2(@types/node@25.5.2)(lightningcss@1.32.0)(sass@1.98.0)(sugarss@5.0.1(postcss@8.5.8))(terser@5.46.1)(yaml@2.8.3) - '@storybook/csf-plugin@9.1.20(storybook@9.1.6(@testing-library/dom@10.4.1)(msw@2.12.14(@types/node@18.16.15)(typescript@5.8.3))(prettier@3.8.1)(vite@6.3.5(@types/node@18.16.15)(less@3.13.1)(lightningcss@1.31.1)(sass@1.98.0)(sugarss@5.0.1(postcss@8.4.38))(terser@5.46.1)(yaml@2.8.0)))': + '@storybook/csf-plugin@10.3.5(esbuild@0.28.0)(rollup@4.60.0)(storybook@10.3.5(@testing-library/dom@10.4.1)(prettier@3.8.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(vite@7.3.2(@types/node@25.5.2)(lightningcss@1.32.0)(sass@1.98.0)(sugarss@5.0.1(postcss@8.4.38))(terser@5.46.1)(yaml@2.8.3))(webpack@5.105.4(esbuild@0.28.0))': dependencies: - storybook: 9.1.6(@testing-library/dom@10.4.1)(msw@2.12.14(@types/node@18.16.15)(typescript@5.8.3))(prettier@3.8.1)(vite@6.3.5(@types/node@18.16.15)(less@3.13.1)(lightningcss@1.31.1)(sass@1.98.0)(sugarss@5.0.1(postcss@8.4.38))(terser@5.46.1)(yaml@2.8.0)) - unplugin: 1.16.1 + storybook: 10.3.5(@testing-library/dom@10.4.1)(prettier@3.8.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + unplugin: 2.3.11 + optionalDependencies: + esbuild: 0.28.0 + rollup: 4.60.0 + vite: 7.3.2(@types/node@25.5.2)(lightningcss@1.32.0)(sass@1.98.0)(sugarss@5.0.1(postcss@8.4.38))(terser@5.46.1)(yaml@2.8.3) + webpack: 5.105.4(esbuild@0.28.0) - '@storybook/csf-plugin@9.1.6(storybook@9.1.6(@testing-library/dom@10.4.1)(msw@2.12.14(@types/node@22.19.15)(typescript@5.9.3))(prettier@3.8.1)(vite@6.3.5(@types/node@22.19.15)(less@3.13.1)(lightningcss@1.31.1)(sass@1.98.0)(sugarss@5.0.1(postcss@8.5.8))(terser@5.46.1)(yaml@2.8.0)))': + '@storybook/csf-plugin@9.1.6(storybook@10.3.5(@testing-library/dom@10.4.1)(prettier@3.8.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))': dependencies: - storybook: 9.1.6(@testing-library/dom@10.4.1)(msw@2.12.14(@types/node@22.19.15)(typescript@5.9.3))(prettier@3.8.1)(vite@6.3.5(@types/node@22.19.15)(less@3.13.1)(lightningcss@1.31.1)(sass@1.98.0)(sugarss@5.0.1(postcss@8.5.8))(terser@5.46.1)(yaml@2.8.0)) + storybook: 10.3.5(@testing-library/dom@10.4.1)(prettier@3.8.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) unplugin: 1.16.1 '@storybook/global@5.0.0': {} @@ -18311,58 +18953,63 @@ snapshots: react: 18.3.1 react-dom: 18.3.1(react@18.3.1) - '@storybook/react-dom-shim@9.1.20(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(storybook@9.1.6(@testing-library/dom@10.4.1)(msw@2.12.14(@types/node@18.16.15)(typescript@5.8.3))(prettier@3.8.1)(vite@6.3.5(@types/node@18.16.15)(less@3.13.1)(lightningcss@1.31.1)(sass@1.98.0)(sugarss@5.0.1(postcss@8.4.38))(terser@5.46.1)(yaml@2.8.0)))': + '@storybook/icons@2.0.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: react: 18.3.1 react-dom: 18.3.1(react@18.3.1) - storybook: 9.1.6(@testing-library/dom@10.4.1)(msw@2.12.14(@types/node@18.16.15)(typescript@5.8.3))(prettier@3.8.1)(vite@6.3.5(@types/node@18.16.15)(less@3.13.1)(lightningcss@1.31.1)(sass@1.98.0)(sugarss@5.0.1(postcss@8.4.38))(terser@5.46.1)(yaml@2.8.0)) - '@storybook/react-dom-shim@9.1.6(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(storybook@9.1.6(@testing-library/dom@10.4.1)(msw@2.12.14(@types/node@22.19.15)(typescript@5.9.3))(prettier@3.8.1)(vite@6.3.5(@types/node@22.19.15)(less@3.13.1)(lightningcss@1.31.1)(sass@1.98.0)(sugarss@5.0.1(postcss@8.5.8))(terser@5.46.1)(yaml@2.8.0)))': + '@storybook/react-dom-shim@10.3.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(storybook@10.3.5(@testing-library/dom@10.4.1)(prettier@3.8.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))': dependencies: react: 18.3.1 react-dom: 18.3.1(react@18.3.1) - storybook: 9.1.6(@testing-library/dom@10.4.1)(msw@2.12.14(@types/node@22.19.15)(typescript@5.9.3))(prettier@3.8.1)(vite@6.3.5(@types/node@22.19.15)(less@3.13.1)(lightningcss@1.31.1)(sass@1.98.0)(sugarss@5.0.1(postcss@8.5.8))(terser@5.46.1)(yaml@2.8.0)) + storybook: 10.3.5(@testing-library/dom@10.4.1)(prettier@3.8.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@storybook/react-vite@9.1.6(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(rollup@4.60.0)(storybook@9.1.6(@testing-library/dom@10.4.1)(msw@2.12.14(@types/node@22.19.15)(typescript@5.9.3))(prettier@3.8.1)(vite@6.3.5(@types/node@22.19.15)(less@3.13.1)(lightningcss@1.31.1)(sass@1.98.0)(sugarss@5.0.1(postcss@8.5.8))(terser@5.46.1)(yaml@2.8.0)))(typescript@5.9.3)(vite@6.3.5(@types/node@22.19.15)(less@3.13.1)(lightningcss@1.31.1)(sass@1.98.0)(sugarss@5.0.1(postcss@8.5.8))(terser@5.46.1)(yaml@2.8.0))': + '@storybook/react-dom-shim@9.1.6(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(storybook@10.3.5(@testing-library/dom@10.4.1)(prettier@3.8.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))': dependencies: - '@joshwooding/vite-plugin-react-docgen-typescript': 0.6.1(typescript@5.9.3)(vite@6.3.5(@types/node@22.19.15)(less@3.13.1)(lightningcss@1.31.1)(sass@1.98.0)(sugarss@5.0.1(postcss@8.5.8))(terser@5.46.1)(yaml@2.8.0)) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + storybook: 10.3.5(@testing-library/dom@10.4.1)(prettier@3.8.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + + '@storybook/react-vite@9.1.6(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(rollup@4.60.0)(storybook@10.3.5(@testing-library/dom@10.4.1)(prettier@3.8.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(typescript@6.0.2)(vite@7.3.2(@types/node@25.5.2)(lightningcss@1.32.0)(sass@1.98.0)(sugarss@5.0.1(postcss@8.5.8))(terser@5.46.1)(yaml@2.8.3))': + dependencies: + '@joshwooding/vite-plugin-react-docgen-typescript': 0.6.1(typescript@6.0.2)(vite@7.3.2(@types/node@25.5.2)(lightningcss@1.32.0)(sass@1.98.0)(sugarss@5.0.1(postcss@8.5.8))(terser@5.46.1)(yaml@2.8.3)) '@rollup/pluginutils': 5.3.0(rollup@4.60.0) - '@storybook/builder-vite': 9.1.6(storybook@9.1.6(@testing-library/dom@10.4.1)(msw@2.12.14(@types/node@22.19.15)(typescript@5.9.3))(prettier@3.8.1)(vite@6.3.5(@types/node@22.19.15)(less@3.13.1)(lightningcss@1.31.1)(sass@1.98.0)(sugarss@5.0.1(postcss@8.5.8))(terser@5.46.1)(yaml@2.8.0)))(vite@6.3.5(@types/node@22.19.15)(less@3.13.1)(lightningcss@1.31.1)(sass@1.98.0)(sugarss@5.0.1(postcss@8.5.8))(terser@5.46.1)(yaml@2.8.0)) - '@storybook/react': 9.1.6(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(storybook@9.1.6(@testing-library/dom@10.4.1)(msw@2.12.14(@types/node@22.19.15)(typescript@5.9.3))(prettier@3.8.1)(vite@6.3.5(@types/node@22.19.15)(less@3.13.1)(lightningcss@1.31.1)(sass@1.98.0)(sugarss@5.0.1(postcss@8.5.8))(terser@5.46.1)(yaml@2.8.0)))(typescript@5.9.3) + '@storybook/builder-vite': 9.1.6(storybook@10.3.5(@testing-library/dom@10.4.1)(prettier@3.8.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(vite@7.3.2(@types/node@25.5.2)(lightningcss@1.32.0)(sass@1.98.0)(sugarss@5.0.1(postcss@8.5.8))(terser@5.46.1)(yaml@2.8.3)) + '@storybook/react': 9.1.6(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(storybook@10.3.5(@testing-library/dom@10.4.1)(prettier@3.8.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(typescript@6.0.2) find-up: 7.0.0 magic-string: 0.30.21 react: 18.3.1 react-docgen: 8.0.3 react-dom: 18.3.1(react@18.3.1) resolve: 1.22.11 - storybook: 9.1.6(@testing-library/dom@10.4.1)(msw@2.12.14(@types/node@22.19.15)(typescript@5.9.3))(prettier@3.8.1)(vite@6.3.5(@types/node@22.19.15)(less@3.13.1)(lightningcss@1.31.1)(sass@1.98.0)(sugarss@5.0.1(postcss@8.5.8))(terser@5.46.1)(yaml@2.8.0)) + storybook: 10.3.5(@testing-library/dom@10.4.1)(prettier@3.8.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) tsconfig-paths: 4.2.0 - vite: 6.3.5(@types/node@22.19.15)(less@3.13.1)(lightningcss@1.31.1)(sass@1.98.0)(sugarss@5.0.1(postcss@8.5.8))(terser@5.46.1)(yaml@2.8.0) + vite: 7.3.2(@types/node@25.5.2)(lightningcss@1.32.0)(sass@1.98.0)(sugarss@5.0.1(postcss@8.5.8))(terser@5.46.1)(yaml@2.8.3) transitivePeerDependencies: - rollup - supports-color - typescript - '@storybook/react@9.1.6(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(storybook@9.1.6(@testing-library/dom@10.4.1)(msw@2.12.14(@types/node@22.19.15)(typescript@5.9.3))(prettier@3.8.1)(vite@6.3.5(@types/node@22.19.15)(less@3.13.1)(lightningcss@1.31.1)(sass@1.98.0)(sugarss@5.0.1(postcss@8.5.8))(terser@5.46.1)(yaml@2.8.0)))(typescript@5.9.3)': + '@storybook/react@9.1.6(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(storybook@10.3.5(@testing-library/dom@10.4.1)(prettier@3.8.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(typescript@6.0.2)': dependencies: '@storybook/global': 5.0.0 - '@storybook/react-dom-shim': 9.1.6(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(storybook@9.1.6(@testing-library/dom@10.4.1)(msw@2.12.14(@types/node@22.19.15)(typescript@5.9.3))(prettier@3.8.1)(vite@6.3.5(@types/node@22.19.15)(less@3.13.1)(lightningcss@1.31.1)(sass@1.98.0)(sugarss@5.0.1(postcss@8.5.8))(terser@5.46.1)(yaml@2.8.0))) + '@storybook/react-dom-shim': 9.1.6(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(storybook@10.3.5(@testing-library/dom@10.4.1)(prettier@3.8.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)) react: 18.3.1 react-dom: 18.3.1(react@18.3.1) - storybook: 9.1.6(@testing-library/dom@10.4.1)(msw@2.12.14(@types/node@22.19.15)(typescript@5.9.3))(prettier@3.8.1)(vite@6.3.5(@types/node@22.19.15)(less@3.13.1)(lightningcss@1.31.1)(sass@1.98.0)(sugarss@5.0.1(postcss@8.5.8))(terser@5.46.1)(yaml@2.8.0)) + storybook: 10.3.5(@testing-library/dom@10.4.1)(prettier@3.8.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) optionalDependencies: - typescript: 5.9.3 + typescript: 6.0.2 - '@storybook/source-loader@8.6.14(storybook@9.1.6(@testing-library/dom@10.4.1)(msw@2.12.14(@types/node@18.16.15)(typescript@5.8.3))(prettier@3.8.1)(vite@6.3.5(@types/node@18.16.15)(less@3.13.1)(lightningcss@1.31.1)(sass@1.98.0)(sugarss@5.0.1(postcss@8.4.38))(terser@5.46.1)(yaml@2.8.0)))': + '@storybook/source-loader@8.6.14(storybook@10.3.5(@testing-library/dom@10.4.1)(prettier@3.8.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))': dependencies: es-toolkit: 1.45.1 estraverse: 5.3.0 prettier: 3.8.1 - storybook: 9.1.6(@testing-library/dom@10.4.1)(msw@2.12.14(@types/node@18.16.15)(typescript@5.8.3))(prettier@3.8.1)(vite@6.3.5(@types/node@18.16.15)(less@3.13.1)(lightningcss@1.31.1)(sass@1.98.0)(sugarss@5.0.1(postcss@8.4.38))(terser@5.46.1)(yaml@2.8.0)) + storybook: 10.3.5(@testing-library/dom@10.4.1)(prettier@3.8.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@stylistic/eslint-plugin@4.4.0(eslint@9.27.0)(typescript@5.8.3)': + '@stylistic/eslint-plugin@4.4.0(eslint@9.27.0)(typescript@6.0.2)': dependencies: - '@typescript-eslint/utils': 8.57.2(eslint@9.27.0)(typescript@5.8.3) + '@typescript-eslint/utils': 8.57.2(eslint@9.27.0)(typescript@6.0.2) eslint: 9.27.0 eslint-visitor-keys: 4.2.1 espree: 10.4.0 @@ -18408,6 +19055,15 @@ snapshots: lodash: 4.17.23 redent: 3.0.0 + '@testing-library/jest-dom@6.9.1': + dependencies: + '@adobe/css-tools': 4.4.4 + aria-query: 5.3.2 + css.escape: 1.5.1 + dom-accessibility-api: 0.6.3 + picocolors: 1.1.1 + redent: 3.0.0 + '@testing-library/react@13.4.0(@types/react@18.2.19)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: '@babel/runtime': 7.27.6 @@ -18478,11 +19134,11 @@ snapshots: '@types/body-parser@1.19.6': dependencies: '@types/connect': 3.4.38 - '@types/node': 18.19.130 + '@types/node': 25.5.2 '@types/bonjour@3.5.13': dependencies: - '@types/node': 18.19.130 + '@types/node': 25.5.2 '@types/caseless@0.12.5': {} @@ -18496,11 +19152,11 @@ snapshots: '@types/connect-history-api-fallback@1.5.4': dependencies: '@types/express-serve-static-core': 4.19.8 - '@types/node': 18.19.130 + '@types/node': 25.5.2 '@types/connect@3.4.38': dependencies: - '@types/node': 18.19.130 + '@types/node': 25.5.2 '@types/d3-array@3.2.2': {} @@ -18552,14 +19208,14 @@ snapshots: '@types/express-serve-static-core@4.19.8': dependencies: - '@types/node': 18.19.130 + '@types/node': 25.5.2 '@types/qs': 6.15.0 '@types/range-parser': 1.2.7 '@types/send': 1.2.1 '@types/express-serve-static-core@5.1.1': dependencies: - '@types/node': 18.19.130 + '@types/node': 25.5.2 '@types/qs': 6.15.0 '@types/range-parser': 1.2.7 '@types/send': 1.2.1 @@ -18584,20 +19240,20 @@ snapshots: '@types/fs-extra@11.0.4': dependencies: '@types/jsonfile': 6.1.4 - '@types/node': 18.19.130 + '@types/node': 25.5.2 '@types/fs-extra@8.1.0': dependencies: - '@types/node': 18.19.130 + '@types/node': 25.5.2 '@types/fs-extra@9.0.13': dependencies: - '@types/node': 18.19.130 + '@types/node': 25.5.2 '@types/glob@7.2.0': dependencies: '@types/minimatch': 6.0.0 - '@types/node': 18.19.130 + '@types/node': 25.5.2 '@types/glob@8.1.0': dependencies: @@ -18606,7 +19262,7 @@ snapshots: '@types/graceful-fs@4.1.9': dependencies: - '@types/node': 18.19.130 + '@types/node': 25.5.2 '@types/hast@2.3.10': dependencies: @@ -18627,7 +19283,7 @@ snapshots: '@types/http-proxy@1.17.17': dependencies: - '@types/node': 18.19.130 + '@types/node': 25.5.2 '@types/istanbul-lib-coverage@2.0.6': {} @@ -18652,11 +19308,11 @@ snapshots: '@types/jsonfile@6.1.4': dependencies: - '@types/node': 18.19.130 + '@types/node': 25.5.2 '@types/keyv@3.1.4': dependencies: - '@types/node': 18.19.130 + '@types/node': 25.5.2 '@types/linkify-it@3.0.5': {} @@ -18714,17 +19370,21 @@ snapshots: dependencies: undici-types: 6.21.0 + '@types/node@25.5.2': + dependencies: + undici-types: 7.18.2 + '@types/normalize-package-data@2.4.4': {} '@types/parse-json@4.0.2': {} '@types/pixelmatch@5.2.6': dependencies: - '@types/node': 18.19.130 + '@types/node': 25.5.2 '@types/pngjs@6.0.5': dependencies: - '@types/node': 18.19.130 + '@types/node': 25.5.2 '@types/prop-types@15.7.15': {} @@ -18750,7 +19410,7 @@ snapshots: '@types/request@2.48.12': dependencies: '@types/caseless': 0.12.5 - '@types/node': 18.19.130 + '@types/node': 25.5.2 '@types/tough-cookie': 4.0.5 form-data: 2.5.5 @@ -18758,7 +19418,7 @@ snapshots: '@types/responselike@1.0.3': dependencies: - '@types/node': 18.19.130 + '@types/node': 25.5.2 '@types/retry@0.12.2': {} @@ -18768,7 +19428,7 @@ snapshots: '@types/sax@1.2.7': dependencies: - '@types/node': 18.19.130 + '@types/node': 25.5.2 '@types/scheduler@0.16.8': {} @@ -18777,11 +19437,11 @@ snapshots: '@types/send@0.17.6': dependencies: '@types/mime': 1.3.5 - '@types/node': 18.19.130 + '@types/node': 25.5.2 '@types/send@1.2.1': dependencies: - '@types/node': 18.19.130 + '@types/node': 25.5.2 '@types/serve-index@1.9.4': dependencies: @@ -18790,23 +19450,24 @@ snapshots: '@types/serve-static@1.15.10': dependencies: '@types/http-errors': 2.0.5 - '@types/node': 18.19.130 + '@types/node': 25.5.2 '@types/send': 0.17.6 '@types/serve-static@2.2.0': dependencies: '@types/http-errors': 2.0.5 - '@types/node': 18.19.130 + '@types/node': 25.5.2 '@types/sockjs@0.3.36': dependencies: - '@types/node': 18.19.130 + '@types/node': 25.5.2 '@types/source-list-map@0.1.6': {} '@types/stack-utils@2.0.3': {} - '@types/statuses@2.0.6': {} + '@types/statuses@2.0.6': + optional: true '@types/string-hash@1.1.3': {} @@ -18826,13 +19487,13 @@ snapshots: '@types/watchpack@2.4.5': dependencies: '@types/graceful-fs': 4.1.9 - '@types/node': 18.19.130 + '@types/node': 25.5.2 '@types/web-bluetooth@0.0.20': {} - '@types/webpack-dev-server@4.7.2(tslib@2.8.1)(webpack@5.105.4(esbuild@0.14.29))': + '@types/webpack-dev-server@4.7.2(tslib@2.8.1)(webpack@5.105.4(esbuild@0.28.0))': dependencies: - webpack-dev-server: 5.2.3(tslib@2.8.1)(webpack@5.105.4(esbuild@0.14.29)) + webpack-dev-server: 5.2.3(tslib@2.8.1)(webpack@5.105.4(esbuild@0.28.0)) transitivePeerDependencies: - bufferutil - debug @@ -18844,15 +19505,15 @@ snapshots: '@types/webpack-sources@3.2.3': dependencies: - '@types/node': 18.19.130 + '@types/node': 25.5.2 '@types/source-list-map': 0.1.6 source-map: 0.7.6 - '@types/webpack@5.28.5(esbuild@0.14.29)': + '@types/webpack@5.28.5(esbuild@0.28.0)': dependencies: - '@types/node': 18.19.130 + '@types/node': 25.5.2 tapable: 2.3.2 - webpack: 5.105.4(esbuild@0.14.29) + webpack: 5.105.4(esbuild@0.28.0) transitivePeerDependencies: - '@swc/core' - esbuild @@ -18863,7 +19524,7 @@ snapshots: '@types/ws@8.18.1': dependencies: - '@types/node': 18.19.130 + '@types/node': 25.5.2 '@types/yargs-parser@21.0.3': {} @@ -18873,152 +19534,151 @@ snapshots: '@types/yauzl@2.10.3': dependencies: - '@types/node': 18.19.130 + '@types/node': 25.5.2 optional: true - '@typescript-eslint/eslint-plugin@8.33.0(@typescript-eslint/parser@8.33.0(eslint@9.27.0)(typescript@5.8.3))(eslint@9.27.0)(typescript@5.8.3)': + '@typescript-eslint/eslint-plugin@8.58.1(@typescript-eslint/parser@8.58.1(eslint@9.27.0)(typescript@6.0.2))(eslint@9.27.0)(typescript@6.0.2)': dependencies: '@eslint-community/regexpp': 4.12.2 - '@typescript-eslint/parser': 8.33.0(eslint@9.27.0)(typescript@5.8.3) - '@typescript-eslint/scope-manager': 8.33.0 - '@typescript-eslint/type-utils': 8.33.0(eslint@9.27.0)(typescript@5.8.3) - '@typescript-eslint/utils': 8.33.0(eslint@9.27.0)(typescript@5.8.3) - '@typescript-eslint/visitor-keys': 8.33.0 + '@typescript-eslint/parser': 8.58.1(eslint@9.27.0)(typescript@6.0.2) + '@typescript-eslint/scope-manager': 8.58.1 + '@typescript-eslint/type-utils': 8.58.1(eslint@9.27.0)(typescript@6.0.2) + '@typescript-eslint/utils': 8.58.1(eslint@9.27.0)(typescript@6.0.2) + '@typescript-eslint/visitor-keys': 8.58.1 eslint: 9.27.0 - graphemer: 1.4.0 ignore: 7.0.5 natural-compare: 1.4.0 - ts-api-utils: 2.5.0(typescript@5.8.3) - typescript: 5.8.3 + ts-api-utils: 2.5.0(typescript@6.0.2) + typescript: 6.0.2 transitivePeerDependencies: - supports-color - '@typescript-eslint/parser@8.33.0(eslint@9.27.0)(typescript@5.8.3)': + '@typescript-eslint/parser@8.58.1(eslint@9.27.0)(typescript@6.0.2)': dependencies: - '@typescript-eslint/scope-manager': 8.33.0 - '@typescript-eslint/types': 8.33.0 - '@typescript-eslint/typescript-estree': 8.33.0(typescript@5.8.3) - '@typescript-eslint/visitor-keys': 8.33.0 + '@typescript-eslint/scope-manager': 8.58.1 + '@typescript-eslint/types': 8.58.1 + '@typescript-eslint/typescript-estree': 8.58.1(typescript@6.0.2) + '@typescript-eslint/visitor-keys': 8.58.1 debug: 4.4.3 eslint: 9.27.0 - typescript: 5.8.3 + typescript: 6.0.2 transitivePeerDependencies: - supports-color - '@typescript-eslint/project-service@8.33.0(typescript@5.8.3)': + '@typescript-eslint/project-service@8.57.2(typescript@6.0.2)': dependencies: - '@typescript-eslint/tsconfig-utils': 8.33.0(typescript@5.8.3) - '@typescript-eslint/types': 8.33.0 + '@typescript-eslint/tsconfig-utils': 8.57.2(typescript@6.0.2) + '@typescript-eslint/types': 8.57.2 debug: 4.4.3 + typescript: 6.0.2 transitivePeerDependencies: - supports-color - - typescript - '@typescript-eslint/project-service@8.57.2(typescript@5.8.3)': + '@typescript-eslint/project-service@8.58.1(typescript@6.0.2)': dependencies: - '@typescript-eslint/tsconfig-utils': 8.57.2(typescript@5.8.3) - '@typescript-eslint/types': 8.57.2 + '@typescript-eslint/tsconfig-utils': 8.58.1(typescript@6.0.2) + '@typescript-eslint/types': 8.58.1 debug: 4.4.3 - typescript: 5.8.3 + typescript: 6.0.2 transitivePeerDependencies: - supports-color - '@typescript-eslint/scope-manager@8.33.0': - dependencies: - '@typescript-eslint/types': 8.33.0 - '@typescript-eslint/visitor-keys': 8.33.0 - '@typescript-eslint/scope-manager@8.57.2': dependencies: '@typescript-eslint/types': 8.57.2 '@typescript-eslint/visitor-keys': 8.57.2 - '@typescript-eslint/tsconfig-utils@8.33.0(typescript@5.8.3)': + '@typescript-eslint/scope-manager@8.58.1': dependencies: - typescript: 5.8.3 + '@typescript-eslint/types': 8.58.1 + '@typescript-eslint/visitor-keys': 8.58.1 - '@typescript-eslint/tsconfig-utils@8.57.2(typescript@5.8.3)': + '@typescript-eslint/tsconfig-utils@8.57.2(typescript@6.0.2)': dependencies: - typescript: 5.8.3 + typescript: 6.0.2 - '@typescript-eslint/type-utils@8.33.0(eslint@9.27.0)(typescript@5.8.3)': + '@typescript-eslint/tsconfig-utils@8.58.1(typescript@6.0.2)': dependencies: - '@typescript-eslint/typescript-estree': 8.33.0(typescript@5.8.3) - '@typescript-eslint/utils': 8.33.0(eslint@9.27.0)(typescript@5.8.3) + typescript: 6.0.2 + + '@typescript-eslint/type-utils@8.58.1(eslint@9.27.0)(typescript@6.0.2)': + dependencies: + '@typescript-eslint/types': 8.58.1 + '@typescript-eslint/typescript-estree': 8.58.1(typescript@6.0.2) + '@typescript-eslint/utils': 8.58.1(eslint@9.27.0)(typescript@6.0.2) debug: 4.4.3 eslint: 9.27.0 - ts-api-utils: 2.5.0(typescript@5.8.3) - typescript: 5.8.3 + ts-api-utils: 2.5.0(typescript@6.0.2) + typescript: 6.0.2 transitivePeerDependencies: - supports-color - '@typescript-eslint/types@8.33.0': {} - '@typescript-eslint/types@8.57.2': {} - '@typescript-eslint/typescript-estree@8.33.0(typescript@5.8.3)': - dependencies: - '@typescript-eslint/project-service': 8.33.0(typescript@5.8.3) - '@typescript-eslint/tsconfig-utils': 8.33.0(typescript@5.8.3) - '@typescript-eslint/types': 8.33.0 - '@typescript-eslint/visitor-keys': 8.33.0 - debug: 4.4.3 - fast-glob: 3.3.3 - is-glob: 4.0.3 - minimatch: 9.0.9 - semver: 7.7.2 - ts-api-utils: 2.5.0(typescript@5.8.3) - typescript: 5.8.3 - transitivePeerDependencies: - - supports-color + '@typescript-eslint/types@8.58.1': {} - '@typescript-eslint/typescript-estree@8.57.2(typescript@5.8.3)': + '@typescript-eslint/typescript-estree@8.57.2(typescript@6.0.2)': dependencies: - '@typescript-eslint/project-service': 8.57.2(typescript@5.8.3) - '@typescript-eslint/tsconfig-utils': 8.57.2(typescript@5.8.3) + '@typescript-eslint/project-service': 8.57.2(typescript@6.0.2) + '@typescript-eslint/tsconfig-utils': 8.57.2(typescript@6.0.2) '@typescript-eslint/types': 8.57.2 '@typescript-eslint/visitor-keys': 8.57.2 debug: 4.4.3 minimatch: 10.2.4 semver: 7.7.4 tinyglobby: 0.2.15 - ts-api-utils: 2.5.0(typescript@5.8.3) - typescript: 5.8.3 + ts-api-utils: 2.5.0(typescript@6.0.2) + typescript: 6.0.2 transitivePeerDependencies: - supports-color - '@typescript-eslint/utils@8.33.0(eslint@9.27.0)(typescript@5.8.3)': + '@typescript-eslint/typescript-estree@8.58.1(typescript@6.0.2)': dependencies: - '@eslint-community/eslint-utils': 4.9.1(eslint@9.27.0) - '@typescript-eslint/scope-manager': 8.33.0 - '@typescript-eslint/types': 8.33.0 - '@typescript-eslint/typescript-estree': 8.33.0(typescript@5.8.3) - eslint: 9.27.0 - typescript: 5.8.3 + '@typescript-eslint/project-service': 8.58.1(typescript@6.0.2) + '@typescript-eslint/tsconfig-utils': 8.58.1(typescript@6.0.2) + '@typescript-eslint/types': 8.58.1 + '@typescript-eslint/visitor-keys': 8.58.1 + debug: 4.4.3 + minimatch: 10.2.4 + semver: 7.7.4 + tinyglobby: 0.2.15 + ts-api-utils: 2.5.0(typescript@6.0.2) + typescript: 6.0.2 transitivePeerDependencies: - supports-color - '@typescript-eslint/utils@8.57.2(eslint@9.27.0)(typescript@5.8.3)': + '@typescript-eslint/utils@8.57.2(eslint@9.27.0)(typescript@6.0.2)': dependencies: '@eslint-community/eslint-utils': 4.9.1(eslint@9.27.0) '@typescript-eslint/scope-manager': 8.57.2 '@typescript-eslint/types': 8.57.2 - '@typescript-eslint/typescript-estree': 8.57.2(typescript@5.8.3) + '@typescript-eslint/typescript-estree': 8.57.2(typescript@6.0.2) eslint: 9.27.0 - typescript: 5.8.3 + typescript: 6.0.2 transitivePeerDependencies: - supports-color - '@typescript-eslint/visitor-keys@8.33.0': + '@typescript-eslint/utils@8.58.1(eslint@9.27.0)(typescript@6.0.2)': dependencies: - '@typescript-eslint/types': 8.33.0 - eslint-visitor-keys: 4.2.1 + '@eslint-community/eslint-utils': 4.9.1(eslint@9.27.0) + '@typescript-eslint/scope-manager': 8.58.1 + '@typescript-eslint/types': 8.58.1 + '@typescript-eslint/typescript-estree': 8.58.1(typescript@6.0.2) + eslint: 9.27.0 + typescript: 6.0.2 + transitivePeerDependencies: + - supports-color '@typescript-eslint/visitor-keys@8.57.2': dependencies: '@typescript-eslint/types': 8.57.2 eslint-visitor-keys: 5.0.1 + '@typescript-eslint/visitor-keys@8.58.1': + dependencies: + '@typescript-eslint/types': 8.58.1 + eslint-visitor-keys: 5.0.1 + '@ungap/structured-clone@1.3.0': {} '@upsetjs/venn.js@1.4.2': @@ -19028,20 +19688,7 @@ snapshots: d3-selection: 3.0.0 d3-transition: 3.0.1(d3-selection@3.0.0) - '@vitejs/plugin-react@2.0.0(vite@6.3.5(@types/node@18.16.15)(less@3.13.1)(lightningcss@1.31.1)(sass@1.98.0)(sugarss@5.0.1(postcss@8.4.38))(terser@5.46.1)(yaml@2.8.0))': - dependencies: - '@babel/core': 7.28.4 - '@babel/plugin-transform-react-jsx': 7.28.6(@babel/core@7.28.4) - '@babel/plugin-transform-react-jsx-development': 7.27.1(@babel/core@7.28.4) - '@babel/plugin-transform-react-jsx-self': 7.27.1(@babel/core@7.28.4) - '@babel/plugin-transform-react-jsx-source': 7.27.1(@babel/core@7.28.4) - magic-string: 0.26.7 - react-refresh: 0.14.2 - vite: 6.3.5(@types/node@18.16.15)(less@3.13.1)(lightningcss@1.31.1)(sass@1.98.0)(sugarss@5.0.1(postcss@8.4.38))(terser@5.46.1)(yaml@2.8.0) - transitivePeerDependencies: - - supports-color - - '@vitejs/plugin-react@4.7.0(vite@6.3.5(@types/node@18.19.130)(less@3.13.1)(lightningcss@1.31.1)(sass@1.98.0)(sugarss@5.0.1(postcss@8.4.33))(terser@5.46.1)(yaml@2.8.0))': + '@vitejs/plugin-react@4.7.0(vite@7.3.2(@types/node@25.5.2)(lightningcss@1.32.0)(sass@1.98.0)(sugarss@5.0.1(postcss@8.5.8))(terser@5.46.1)(yaml@2.8.3))': dependencies: '@babel/core': 7.28.4 '@babel/plugin-transform-react-jsx-self': 7.27.1(@babel/core@7.28.4) @@ -19049,65 +19696,79 @@ snapshots: '@rolldown/pluginutils': 1.0.0-beta.27 '@types/babel__core': 7.20.5 react-refresh: 0.17.0 - vite: 6.3.5(@types/node@18.19.130)(less@3.13.1)(lightningcss@1.31.1)(sass@1.98.0)(sugarss@5.0.1(postcss@8.4.33))(terser@5.46.1)(yaml@2.8.0) + vite: 7.3.2(@types/node@25.5.2)(lightningcss@1.32.0)(sass@1.98.0)(sugarss@5.0.1(postcss@8.5.8))(terser@5.46.1)(yaml@2.8.3) transitivePeerDependencies: - supports-color - '@vitejs/plugin-react@4.7.0(vite@6.3.5(@types/node@22.19.15)(less@3.13.1)(lightningcss@1.31.1)(sass@1.98.0)(sugarss@5.0.1(postcss@8.5.8))(terser@5.46.1)(yaml@2.8.0))': + '@vitejs/plugin-react@5.2.0(vite@7.3.2(@types/node@25.5.2)(lightningcss@1.32.0)(sass@1.98.0)(sugarss@5.0.1(postcss@8.4.38))(terser@5.46.1)(yaml@2.8.3))': dependencies: - '@babel/core': 7.28.4 - '@babel/plugin-transform-react-jsx-self': 7.27.1(@babel/core@7.28.4) - '@babel/plugin-transform-react-jsx-source': 7.27.1(@babel/core@7.28.4) - '@rolldown/pluginutils': 1.0.0-beta.27 + '@babel/core': 7.29.0 + '@babel/plugin-transform-react-jsx-self': 7.27.1(@babel/core@7.29.0) + '@babel/plugin-transform-react-jsx-source': 7.27.1(@babel/core@7.29.0) + '@rolldown/pluginutils': 1.0.0-rc.3 '@types/babel__core': 7.20.5 - react-refresh: 0.17.0 - vite: 6.3.5(@types/node@22.19.15)(less@3.13.1)(lightningcss@1.31.1)(sass@1.98.0)(sugarss@5.0.1(postcss@8.5.8))(terser@5.46.1)(yaml@2.8.0) + react-refresh: 0.18.0 + vite: 7.3.2(@types/node@25.5.2)(lightningcss@1.32.0)(sass@1.98.0)(sugarss@5.0.1(postcss@8.4.38))(terser@5.46.1)(yaml@2.8.3) transitivePeerDependencies: - supports-color - '@vitejs/plugin-vue-jsx@3.1.0(vite@6.3.5(@types/node@18.19.130)(less@3.13.1)(lightningcss@1.31.1)(sass@1.98.0)(sugarss@5.0.1(postcss@8.4.33))(terser@5.46.1)(yaml@2.8.0))(vue@3.5.31(typescript@5.9.3))': + '@vitejs/plugin-vue-jsx@5.1.5(vite@7.3.2(@types/node@25.5.2)(lightningcss@1.32.0)(sass@1.98.0)(sugarss@5.0.1(postcss@8.4.33))(terser@5.46.1)(yaml@2.8.3))(vue@3.5.31(typescript@6.0.2))': dependencies: - '@babel/core': 7.28.4 - '@babel/plugin-transform-typescript': 7.28.6(@babel/core@7.28.4) - '@vue/babel-plugin-jsx': 1.5.0(@babel/core@7.28.4) - vite: 6.3.5(@types/node@18.19.130)(less@3.13.1)(lightningcss@1.31.1)(sass@1.98.0)(sugarss@5.0.1(postcss@8.4.33))(terser@5.46.1)(yaml@2.8.0) - vue: 3.5.31(typescript@5.9.3) + '@babel/core': 7.29.0 + '@babel/plugin-syntax-typescript': 7.28.6(@babel/core@7.29.0) + '@babel/plugin-transform-typescript': 7.28.6(@babel/core@7.29.0) + '@rolldown/pluginutils': 1.0.0-rc.15 + '@vue/babel-plugin-jsx': 2.0.1(@babel/core@7.29.0) + vite: 7.3.2(@types/node@25.5.2)(lightningcss@1.32.0)(sass@1.98.0)(sugarss@5.0.1(postcss@8.4.33))(terser@5.46.1)(yaml@2.8.3) + vue: 3.5.31(typescript@6.0.2) transitivePeerDependencies: - supports-color - '@vitejs/plugin-vue@5.2.4(vite@5.4.21(@types/node@18.19.130)(less@3.13.1)(lightningcss@1.31.1)(sass@1.98.0)(sugarss@5.0.1(postcss@8.4.33))(terser@5.46.1))(vue@3.5.31(typescript@5.9.3))': + '@vitejs/plugin-vue@5.2.4(vite@5.4.21(@types/node@25.5.2)(lightningcss@1.32.0)(sass@1.98.0)(sugarss@5.0.1(postcss@8.4.33))(terser@5.46.1))(vue@3.5.31(typescript@6.0.2))': dependencies: - vite: 5.4.21(@types/node@18.19.130)(less@3.13.1)(lightningcss@1.31.1)(sass@1.98.0)(sugarss@5.0.1(postcss@8.4.33))(terser@5.46.1) - vue: 3.5.31(typescript@5.9.3) + vite: 5.4.21(@types/node@25.5.2)(lightningcss@1.32.0)(sass@1.98.0)(sugarss@5.0.1(postcss@8.4.33))(terser@5.46.1) + vue: 3.5.31(typescript@6.0.2) - '@vitest/browser@3.0.6(@types/node@18.16.15)(playwright@1.58.2)(typescript@5.8.3)(vite@6.3.5(@types/node@18.16.15)(less@3.13.1)(lightningcss@1.31.1)(sass@1.98.0)(sugarss@5.0.1(postcss@8.4.38))(terser@5.46.1)(yaml@2.8.0))(vitest@3.0.9)(webdriverio@8.24.3(typescript@5.8.3))': + '@vitest/browser@3.2.4(msw@2.12.14(@types/node@25.5.2)(typescript@5.9.3))(playwright@1.58.2)(vite@7.3.2(@types/node@25.5.2)(lightningcss@1.32.0)(sass@1.98.0)(sugarss@5.0.1(postcss@8.5.8))(terser@5.46.1)(yaml@2.8.3))(vitest@3.2.4)(webdriverio@8.24.3(typescript@5.9.3))': dependencies: '@testing-library/dom': 10.4.1 '@testing-library/user-event': 14.6.1(@testing-library/dom@10.4.1) - '@vitest/mocker': 3.0.6(msw@2.12.14(@types/node@18.16.15)(typescript@5.8.3))(vite@6.3.5(@types/node@18.16.15)(less@3.13.1)(lightningcss@1.31.1)(sass@1.98.0)(sugarss@5.0.1(postcss@8.4.38))(terser@5.46.1)(yaml@2.8.0)) - '@vitest/utils': 3.0.6 + '@vitest/mocker': 3.2.4(msw@2.12.14(@types/node@25.5.2)(typescript@5.9.3))(vite@7.3.2(@types/node@25.5.2)(lightningcss@1.32.0)(sass@1.98.0)(sugarss@5.0.1(postcss@8.5.8))(terser@5.46.1)(yaml@2.8.3)) + '@vitest/utils': 3.2.4 magic-string: 0.30.21 - msw: 2.12.14(@types/node@18.16.15)(typescript@5.8.3) sirv: 3.0.2 tinyrainbow: 2.0.0 - vitest: 3.0.9(@types/debug@4.1.13)(@types/node@18.16.15)(@vitest/browser@3.0.6)(@vitest/ui@3.0.6)(happy-dom@9.20.3)(jsdom@22.1.0)(less@3.13.1)(lightningcss@1.31.1)(msw@2.12.14(@types/node@18.16.15)(typescript@5.8.3))(sass@1.98.0)(sugarss@5.0.1(postcss@8.4.38))(terser@5.46.1)(yaml@2.8.0) + vitest: 3.2.4(@types/debug@4.1.13)(@types/node@25.5.2)(@vitest/browser@3.2.4)(@vitest/ui@3.2.4)(happy-dom@9.20.3)(jsdom@22.1.0)(lightningcss@1.32.0)(msw@2.12.14(@types/node@25.5.2)(typescript@5.9.3))(sass@1.98.0)(sugarss@5.0.1(postcss@8.5.8))(terser@5.46.1)(yaml@2.8.3) ws: 8.20.0 optionalDependencies: playwright: 1.58.2 - webdriverio: 8.24.3(typescript@5.8.3) + webdriverio: 8.24.3(typescript@5.9.3) transitivePeerDependencies: - - '@types/node' - bufferutil - - typescript + - msw - utf-8-validate - vite + optional: true - '@vitest/expect@3.0.9': + '@vitest/browser@3.2.4(msw@2.12.14(@types/node@25.5.2)(typescript@6.0.2))(playwright@1.58.2)(vite@7.3.2(@types/node@25.5.2)(lightningcss@1.32.0)(sass@1.98.0)(sugarss@5.0.1(postcss@8.4.38))(terser@5.46.1)(yaml@2.8.3))(vitest@3.2.4)(webdriverio@8.24.3(typescript@6.0.2))': dependencies: - '@vitest/spy': 3.0.9 - '@vitest/utils': 3.0.9 - chai: 5.3.3 + '@testing-library/dom': 10.4.1 + '@testing-library/user-event': 14.6.1(@testing-library/dom@10.4.1) + '@vitest/mocker': 3.2.4(msw@2.12.14(@types/node@25.5.2)(typescript@6.0.2))(vite@7.3.2(@types/node@25.5.2)(lightningcss@1.32.0)(sass@1.98.0)(sugarss@5.0.1(postcss@8.4.38))(terser@5.46.1)(yaml@2.8.3)) + '@vitest/utils': 3.2.4 + magic-string: 0.30.21 + sirv: 3.0.2 tinyrainbow: 2.0.0 + vitest: 3.2.4(@types/debug@4.1.13)(@types/node@25.5.2)(@vitest/browser@3.2.4)(@vitest/ui@3.2.4)(happy-dom@9.20.3)(jsdom@22.1.0)(lightningcss@1.32.0)(msw@2.12.14(@types/node@25.5.2)(typescript@6.0.2))(sass@1.98.0)(sugarss@5.0.1(postcss@8.4.38))(terser@5.46.1)(yaml@2.8.3) + ws: 8.20.0 + optionalDependencies: + playwright: 1.58.2 + webdriverio: 8.24.3(typescript@6.0.2) + transitivePeerDependencies: + - bufferutil + - msw + - utf-8-validate + - vite '@vitest/expect@3.2.4': dependencies: @@ -19117,108 +19778,63 @@ snapshots: chai: 5.3.3 tinyrainbow: 2.0.0 - '@vitest/mocker@3.0.6(msw@2.12.14(@types/node@18.16.15)(typescript@5.8.3))(vite@6.3.5(@types/node@18.16.15)(less@3.13.1)(lightningcss@1.31.1)(sass@1.98.0)(sugarss@5.0.1(postcss@8.4.38))(terser@5.46.1)(yaml@2.8.0))': - dependencies: - '@vitest/spy': 3.0.6 - estree-walker: 3.0.3 - magic-string: 0.30.21 - optionalDependencies: - msw: 2.12.14(@types/node@18.16.15)(typescript@5.8.3) - vite: 6.3.5(@types/node@18.16.15)(less@3.13.1)(lightningcss@1.31.1)(sass@1.98.0)(sugarss@5.0.1(postcss@8.4.38))(terser@5.46.1)(yaml@2.8.0) - - '@vitest/mocker@3.0.9(msw@2.12.14(@types/node@18.16.15)(typescript@5.8.3))(vite@6.3.5(@types/node@18.16.15)(less@3.13.1)(lightningcss@1.31.1)(sass@1.98.0)(sugarss@5.0.1(postcss@8.4.38))(terser@5.46.1)(yaml@2.8.0))': - dependencies: - '@vitest/spy': 3.0.9 - estree-walker: 3.0.3 - magic-string: 0.30.21 - optionalDependencies: - msw: 2.12.14(@types/node@18.16.15)(typescript@5.8.3) - vite: 6.3.5(@types/node@18.16.15)(less@3.13.1)(lightningcss@1.31.1)(sass@1.98.0)(sugarss@5.0.1(postcss@8.4.38))(terser@5.46.1)(yaml@2.8.0) - - '@vitest/mocker@3.0.9(msw@2.12.14(@types/node@22.19.15)(typescript@5.8.3))(vite@6.3.5(@types/node@22.19.15)(less@3.13.1)(lightningcss@1.31.1)(sass@1.98.0)(sugarss@5.0.1(postcss@8.5.8))(terser@5.46.1)(yaml@2.8.0))': - dependencies: - '@vitest/spy': 3.0.9 - estree-walker: 3.0.3 - magic-string: 0.30.21 - optionalDependencies: - msw: 2.12.14(@types/node@22.19.15)(typescript@5.8.3) - vite: 6.3.5(@types/node@22.19.15)(less@3.13.1)(lightningcss@1.31.1)(sass@1.98.0)(sugarss@5.0.1(postcss@8.5.8))(terser@5.46.1)(yaml@2.8.0) - - '@vitest/mocker@3.2.4(msw@2.12.14(@types/node@18.16.15)(typescript@5.8.3))(vite@6.3.5(@types/node@18.16.15)(less@3.13.1)(lightningcss@1.31.1)(sass@1.98.0)(sugarss@5.0.1(postcss@8.4.38))(terser@5.46.1)(yaml@2.8.0))': + '@vitest/mocker@3.2.4(msw@2.12.14(@types/node@25.5.2)(typescript@5.9.3))(vite@7.3.2(@types/node@25.5.2)(lightningcss@1.32.0)(sass@1.98.0)(sugarss@5.0.1(postcss@8.5.8))(terser@5.46.1)(yaml@2.8.3))': dependencies: '@vitest/spy': 3.2.4 estree-walker: 3.0.3 magic-string: 0.30.21 optionalDependencies: - msw: 2.12.14(@types/node@18.16.15)(typescript@5.8.3) - vite: 6.3.5(@types/node@18.16.15)(less@3.13.1)(lightningcss@1.31.1)(sass@1.98.0)(sugarss@5.0.1(postcss@8.4.38))(terser@5.46.1)(yaml@2.8.0) + msw: 2.12.14(@types/node@25.5.2)(typescript@5.9.3) + vite: 7.3.2(@types/node@25.5.2)(lightningcss@1.32.0)(sass@1.98.0)(sugarss@5.0.1(postcss@8.5.8))(terser@5.46.1)(yaml@2.8.3) - '@vitest/mocker@3.2.4(msw@2.12.14(@types/node@22.19.15)(typescript@5.9.3))(vite@6.3.5(@types/node@22.19.15)(less@3.13.1)(lightningcss@1.31.1)(sass@1.98.0)(sugarss@5.0.1(postcss@8.5.8))(terser@5.46.1)(yaml@2.8.0))': + '@vitest/mocker@3.2.4(msw@2.12.14(@types/node@25.5.2)(typescript@6.0.2))(vite@7.3.2(@types/node@25.5.2)(lightningcss@1.32.0)(sass@1.98.0)(sugarss@5.0.1(postcss@8.4.38))(terser@5.46.1)(yaml@2.8.3))': dependencies: '@vitest/spy': 3.2.4 estree-walker: 3.0.3 magic-string: 0.30.21 optionalDependencies: - msw: 2.12.14(@types/node@22.19.15)(typescript@5.9.3) - vite: 6.3.5(@types/node@22.19.15)(less@3.13.1)(lightningcss@1.31.1)(sass@1.98.0)(sugarss@5.0.1(postcss@8.5.8))(terser@5.46.1)(yaml@2.8.0) + msw: 2.12.14(@types/node@25.5.2)(typescript@6.0.2) + vite: 7.3.2(@types/node@25.5.2)(lightningcss@1.32.0)(sass@1.98.0)(sugarss@5.0.1(postcss@8.4.38))(terser@5.46.1)(yaml@2.8.3) - '@vitest/pretty-format@3.0.6': + '@vitest/pretty-format@3.2.4': dependencies: tinyrainbow: 2.0.0 - '@vitest/pretty-format@3.0.9': + '@vitest/pretty-format@4.1.4': dependencies: - tinyrainbow: 2.0.0 + tinyrainbow: 3.1.0 - '@vitest/pretty-format@3.2.4': + '@vitest/runner@3.2.4': dependencies: - tinyrainbow: 2.0.0 + '@vitest/utils': 3.2.4 + pathe: 2.0.3 + strip-literal: 3.1.0 - '@vitest/runner@3.0.9': + '@vitest/runner@4.1.4': dependencies: - '@vitest/utils': 3.0.9 + '@vitest/utils': 4.1.4 pathe: 2.0.3 - '@vitest/snapshot@3.0.9': + '@vitest/snapshot@3.2.4': dependencies: - '@vitest/pretty-format': 3.0.9 + '@vitest/pretty-format': 3.2.4 magic-string: 0.30.21 pathe: 2.0.3 - '@vitest/spy@3.0.6': - dependencies: - tinyspy: 3.0.2 - - '@vitest/spy@3.0.9': - dependencies: - tinyspy: 3.0.2 - '@vitest/spy@3.2.4': dependencies: tinyspy: 4.0.4 - '@vitest/ui@3.0.6(vitest@3.0.9)': + '@vitest/ui@3.2.4(vitest@3.2.4)': dependencies: - '@vitest/utils': 3.0.6 + '@vitest/utils': 3.2.4 fflate: 0.8.2 flatted: 3.4.2 pathe: 2.0.3 sirv: 3.0.2 tinyglobby: 0.2.15 tinyrainbow: 2.0.0 - vitest: 3.0.9(@types/debug@4.1.13)(@types/node@18.16.15)(@vitest/browser@3.0.6)(@vitest/ui@3.0.6)(happy-dom@9.20.3)(jsdom@22.1.0)(less@3.13.1)(lightningcss@1.31.1)(msw@2.12.14(@types/node@18.16.15)(typescript@5.8.3))(sass@1.98.0)(sugarss@5.0.1(postcss@8.4.38))(terser@5.46.1)(yaml@2.8.0) - - '@vitest/utils@3.0.6': - dependencies: - '@vitest/pretty-format': 3.0.6 - loupe: 3.2.1 - tinyrainbow: 2.0.0 - - '@vitest/utils@3.0.9': - dependencies: - '@vitest/pretty-format': 3.0.9 - loupe: 3.2.1 - tinyrainbow: 2.0.0 + vitest: 3.2.4(@types/debug@4.1.13)(@types/node@25.5.2)(@vitest/browser@3.2.4)(@vitest/ui@3.2.4)(happy-dom@9.20.3)(jsdom@22.1.0)(lightningcss@1.32.0)(msw@2.12.14(@types/node@25.5.2)(typescript@6.0.2))(sass@1.98.0)(sugarss@5.0.1(postcss@8.4.38))(terser@5.46.1)(yaml@2.8.3) '@vitest/utils@3.2.4': dependencies: @@ -19226,28 +19842,34 @@ snapshots: loupe: 3.2.1 tinyrainbow: 2.0.0 - '@vue/babel-helper-vue-transform-on@1.5.0': {} + '@vitest/utils@4.1.4': + dependencies: + '@vitest/pretty-format': 4.1.4 + convert-source-map: 2.0.0 + tinyrainbow: 3.1.0 + + '@vue/babel-helper-vue-transform-on@2.0.1': {} - '@vue/babel-plugin-jsx@1.5.0(@babel/core@7.28.4)': + '@vue/babel-plugin-jsx@2.0.1(@babel/core@7.29.0)': dependencies: '@babel/helper-module-imports': 7.28.6 '@babel/helper-plugin-utils': 7.28.6 - '@babel/plugin-syntax-jsx': 7.28.6(@babel/core@7.28.4) + '@babel/plugin-syntax-jsx': 7.28.6(@babel/core@7.29.0) '@babel/template': 7.28.6 '@babel/traverse': 7.29.0 '@babel/types': 7.29.0 - '@vue/babel-helper-vue-transform-on': 1.5.0 - '@vue/babel-plugin-resolve-type': 1.5.0(@babel/core@7.28.4) + '@vue/babel-helper-vue-transform-on': 2.0.1 + '@vue/babel-plugin-resolve-type': 2.0.1(@babel/core@7.29.0) '@vue/shared': 3.5.31 optionalDependencies: - '@babel/core': 7.28.4 + '@babel/core': 7.29.0 transitivePeerDependencies: - supports-color - '@vue/babel-plugin-resolve-type@1.5.0(@babel/core@7.28.4)': + '@vue/babel-plugin-resolve-type@2.0.1(@babel/core@7.29.0)': dependencies: '@babel/code-frame': 7.29.0 - '@babel/core': 7.28.4 + '@babel/core': 7.29.0 '@babel/helper-module-imports': 7.28.6 '@babel/helper-plugin-utils': 7.28.6 '@babel/parser': 7.29.2 @@ -19349,41 +19971,41 @@ snapshots: '@vue/shared': 3.5.31 csstype: 3.2.3 - '@vue/server-renderer@3.5.31(vue@3.5.31(typescript@5.9.3))': + '@vue/server-renderer@3.5.31(vue@3.5.31(typescript@6.0.2))': dependencies: '@vue/compiler-ssr': 3.5.31 '@vue/shared': 3.5.31 - vue: 3.5.31(typescript@5.9.3) + vue: 3.5.31(typescript@6.0.2) '@vue/shared@3.5.25': {} '@vue/shared@3.5.31': {} - '@vueuse/core@10.11.1(vue@3.5.31(typescript@5.9.3))': + '@vueuse/core@10.11.1(vue@3.5.31(typescript@6.0.2))': dependencies: '@types/web-bluetooth': 0.0.20 '@vueuse/metadata': 10.11.1 - '@vueuse/shared': 10.11.1(vue@3.5.31(typescript@5.9.3)) - vue-demi: 0.14.10(vue@3.5.31(typescript@5.9.3)) + '@vueuse/shared': 10.11.1(vue@3.5.31(typescript@6.0.2)) + vue-demi: 0.14.10(vue@3.5.31(typescript@6.0.2)) transitivePeerDependencies: - '@vue/composition-api' - vue - '@vueuse/core@11.3.0(vue@3.5.31(typescript@5.9.3))': + '@vueuse/core@11.3.0(vue@3.5.31(typescript@6.0.2))': dependencies: '@types/web-bluetooth': 0.0.20 '@vueuse/metadata': 11.3.0 - '@vueuse/shared': 11.3.0(vue@3.5.31(typescript@5.9.3)) - vue-demi: 0.14.10(vue@3.5.31(typescript@5.9.3)) + '@vueuse/shared': 11.3.0(vue@3.5.31(typescript@6.0.2)) + vue-demi: 0.14.10(vue@3.5.31(typescript@6.0.2)) transitivePeerDependencies: - '@vue/composition-api' - vue - '@vueuse/integrations@10.11.1(axios@1.9.0)(focus-trap@7.8.0)(fuse.js@6.6.2)(vue@3.5.31(typescript@5.9.3))': + '@vueuse/integrations@10.11.1(axios@1.9.0)(focus-trap@7.8.0)(fuse.js@6.6.2)(vue@3.5.31(typescript@6.0.2))': dependencies: - '@vueuse/core': 10.11.1(vue@3.5.31(typescript@5.9.3)) - '@vueuse/shared': 10.11.1(vue@3.5.31(typescript@5.9.3)) - vue-demi: 0.14.10(vue@3.5.31(typescript@5.9.3)) + '@vueuse/core': 10.11.1(vue@3.5.31(typescript@6.0.2)) + '@vueuse/shared': 10.11.1(vue@3.5.31(typescript@6.0.2)) + vue-demi: 0.14.10(vue@3.5.31(typescript@6.0.2)) optionalDependencies: axios: 1.9.0 focus-trap: 7.8.0 @@ -19396,16 +20018,16 @@ snapshots: '@vueuse/metadata@11.3.0': {} - '@vueuse/shared@10.11.1(vue@3.5.31(typescript@5.9.3))': + '@vueuse/shared@10.11.1(vue@3.5.31(typescript@6.0.2))': dependencies: - vue-demi: 0.14.10(vue@3.5.31(typescript@5.9.3)) + vue-demi: 0.14.10(vue@3.5.31(typescript@6.0.2)) transitivePeerDependencies: - '@vue/composition-api' - vue - '@vueuse/shared@11.3.0(vue@3.5.31(typescript@5.9.3))': + '@vueuse/shared@11.3.0(vue@3.5.31(typescript@6.0.2))': dependencies: - vue-demi: 0.14.10(vue@3.5.31(typescript@5.9.3)) + vue-demi: 0.14.10(vue@3.5.31(typescript@6.0.2)) transitivePeerDependencies: - '@vue/composition-api' - vue @@ -19555,6 +20177,8 @@ snapshots: '@webassemblyjs/ast': 1.14.1 '@xtuc/long': 4.2.2 + '@webcontainer/env@1.1.1': {} + '@xtuc/ieee754@1.2.0': {} '@xtuc/long@4.2.2': {} @@ -19684,16 +20308,22 @@ snapshots: optionalDependencies: allure-playwright: 3.4.5(@playwright/test@1.58.2) + allure-js-commons@3.7.1(allure-playwright@3.4.5(@playwright/test@1.58.2)): + dependencies: + md5: 2.3.0 + optionalDependencies: + allure-playwright: 3.4.5(@playwright/test@1.58.2) + allure-playwright@3.4.5(@playwright/test@1.58.2): dependencies: '@playwright/test': 1.58.2 allure-js-commons: 3.4.5(allure-playwright@3.4.5(@playwright/test@1.58.2)) - allure-vitest@3.4.5(@vitest/runner@3.0.9)(allure-playwright@3.4.5(@playwright/test@1.58.2))(vitest@3.0.9): + allure-vitest@3.7.1(@vitest/runner@4.1.4)(allure-playwright@3.4.5(@playwright/test@1.58.2))(vitest@3.2.4): dependencies: - '@vitest/runner': 3.0.9 - allure-js-commons: 3.4.5(allure-playwright@3.4.5(@playwright/test@1.58.2)) - vitest: 3.0.9(@types/debug@4.1.13)(@types/node@18.16.15)(@vitest/browser@3.0.6)(@vitest/ui@3.0.6)(happy-dom@9.20.3)(jsdom@22.1.0)(less@3.13.1)(lightningcss@1.31.1)(msw@2.12.14(@types/node@18.16.15)(typescript@5.8.3))(sass@1.98.0)(sugarss@5.0.1(postcss@8.4.38))(terser@5.46.1)(yaml@2.8.0) + '@vitest/runner': 4.1.4 + allure-js-commons: 3.7.1(allure-playwright@3.4.5(@playwright/test@1.58.2)) + vitest: 3.2.4(@types/debug@4.1.13)(@types/node@25.5.2)(@vitest/browser@3.2.4)(@vitest/ui@3.2.4)(happy-dom@9.20.3)(jsdom@22.1.0)(lightningcss@1.32.0)(msw@2.12.14(@types/node@25.5.2)(typescript@6.0.2))(sass@1.98.0)(sugarss@5.0.1(postcss@8.4.38))(terser@5.46.1)(yaml@2.8.3) transitivePeerDependencies: - allure-playwright @@ -19957,26 +20587,26 @@ snapshots: b4a@1.8.0: {} - babel-jest@29.0.1(@babel/core@7.28.4): + babel-jest@29.0.1(@babel/core@7.29.0): dependencies: - '@babel/core': 7.28.4 + '@babel/core': 7.29.0 '@jest/transform': 29.7.0 '@types/babel__core': 7.20.5 babel-plugin-istanbul: 6.1.1 - babel-preset-jest: 29.6.3(@babel/core@7.28.4) + babel-preset-jest: 29.6.3(@babel/core@7.29.0) chalk: 4.1.2 graceful-fs: 4.2.11 slash: 3.0.0 transitivePeerDependencies: - supports-color - babel-jest@29.7.0(@babel/core@7.28.4): + babel-jest@29.7.0(@babel/core@7.29.0): dependencies: - '@babel/core': 7.28.4 + '@babel/core': 7.29.0 '@jest/transform': 29.7.0 '@types/babel__core': 7.20.5 babel-plugin-istanbul: 6.1.1 - babel-preset-jest: 29.6.3(@babel/core@7.28.4) + babel-preset-jest: 29.6.3(@babel/core@7.29.0) chalk: 4.1.2 graceful-fs: 4.2.11 slash: 3.0.0 @@ -20043,43 +20673,43 @@ snapshots: dependencies: hermes-parser: 0.32.0 - babel-plugin-tester@8.0.1(@babel/core@7.28.4): + babel-plugin-tester@8.0.1(@babel/core@7.29.0): dependencies: - '@babel/core': 7.28.4 + '@babel/core': 7.29.0 lodash.mergewith: 4.6.2 prettier: 1.19.1 strip-indent: 3.0.0 - babel-plugin-transform-import-meta@2.2.0(@babel/core@7.28.4): + babel-plugin-transform-import-meta@2.2.0(@babel/core@7.29.0): dependencies: - '@babel/core': 7.28.4 + '@babel/core': 7.29.0 '@babel/template': 7.28.6 tslib: 2.8.1 - babel-preset-current-node-syntax@1.2.0(@babel/core@7.28.4): - dependencies: - '@babel/core': 7.28.4 - '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.28.4) - '@babel/plugin-syntax-bigint': 7.8.3(@babel/core@7.28.4) - '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.28.4) - '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.28.4) - '@babel/plugin-syntax-import-attributes': 7.28.6(@babel/core@7.28.4) - '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.28.4) - '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.28.4) - '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.28.4) - '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.28.4) - '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.28.4) - '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.28.4) - '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.28.4) - '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.28.4) - '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.28.4) - '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.28.4) - - babel-preset-jest@29.6.3(@babel/core@7.28.4): - dependencies: - '@babel/core': 7.28.4 + babel-preset-current-node-syntax@1.2.0(@babel/core@7.29.0): + dependencies: + '@babel/core': 7.29.0 + '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.29.0) + '@babel/plugin-syntax-bigint': 7.8.3(@babel/core@7.29.0) + '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.29.0) + '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.29.0) + '@babel/plugin-syntax-import-attributes': 7.28.6(@babel/core@7.29.0) + '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.29.0) + '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.29.0) + '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.29.0) + '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.29.0) + '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.29.0) + '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.29.0) + '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.29.0) + '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.29.0) + '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.29.0) + '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.29.0) + + babel-preset-jest@29.6.3(@babel/core@7.29.0): + dependencies: + '@babel/core': 7.29.0 babel-plugin-jest-hoist: 29.6.3 - babel-preset-current-node-syntax: 1.2.0(@babel/core@7.28.4) + babel-preset-current-node-syntax: 1.2.0(@babel/core@7.29.0) bail@2.0.2: {} @@ -20137,10 +20767,6 @@ snapshots: dependencies: tweetnacl: 0.14.5 - better-opn@3.0.2: - dependencies: - open: 8.4.2 - big.js@3.2.0: {} big.js@5.2.2: {} @@ -20520,7 +21146,7 @@ snapshots: chrome-launcher@0.15.2: dependencies: - '@types/node': 18.19.130 + '@types/node': 25.5.2 escape-string-regexp: 4.0.0 is-wsl: 2.2.0 lighthouse-logger: 1.4.2 @@ -20536,7 +21162,7 @@ snapshots: chromium-edge-launcher@0.2.0: dependencies: - '@types/node': 18.19.130 + '@types/node': 25.5.2 escape-string-regexp: 4.0.0 is-wsl: 2.2.0 lighthouse-logger: 1.4.2 @@ -20570,7 +21196,8 @@ snapshots: cli-width@2.2.1: {} - cli-width@4.1.0: {} + cli-width@4.1.0: + optional: true cliui@2.1.0: dependencies: @@ -20750,7 +21377,8 @@ snapshots: cookie@0.7.2: {} - cookie@1.1.1: {} + cookie@1.1.1: + optional: true copy-anything@2.0.6: dependencies: @@ -20798,23 +21426,23 @@ snapshots: path-type: 4.0.0 yaml: 1.10.3 - cosmiconfig@8.3.6(typescript@5.8.3): + cosmiconfig@8.3.6(typescript@6.0.2): dependencies: import-fresh: 3.3.1 js-yaml: 4.1.1 parse-json: 5.2.0 path-type: 4.0.0 optionalDependencies: - typescript: 5.8.3 + typescript: 6.0.2 - cosmiconfig@9.0.1(typescript@5.9.3): + cosmiconfig@9.0.1(typescript@6.0.2): dependencies: env-paths: 2.2.1 import-fresh: 3.3.1 js-yaml: 4.1.1 parse-json: 5.2.0 optionalDependencies: - typescript: 5.9.3 + typescript: 6.0.2 crc-32@1.2.2: {} @@ -21275,8 +21903,6 @@ snapshots: es-errors: 1.3.0 gopd: 1.2.0 - define-lazy-prop@2.0.0: {} - define-lazy-prop@3.0.0: {} define-properties@1.2.1: @@ -21765,20 +22391,13 @@ snapshots: esbuild-openbsd-64@0.15.18: optional: true - esbuild-plugin-alias@0.2.1: {} - - esbuild-plugin-polyfill-node@0.3.0(esbuild@0.14.29): - dependencies: - '@jspm/core': 2.1.0 - esbuild: 0.14.29 - import-meta-resolve: 3.1.1 - - esbuild-register@3.6.0(esbuild@0.25.12): - dependencies: - debug: 4.4.3 - esbuild: 0.25.12 - transitivePeerDependencies: - - supports-color + esbuild-plugin-alias@0.2.1: {} + + esbuild-plugin-polyfill-node@0.3.0(esbuild@0.28.0): + dependencies: + '@jspm/core': 2.1.0 + esbuild: 0.28.0 + import-meta-resolve: 3.1.1 esbuild-sunos-64@0.14.29: optional: true @@ -21907,6 +22526,64 @@ snapshots: '@esbuild/win32-ia32': 0.25.12 '@esbuild/win32-x64': 0.25.12 + esbuild@0.27.7: + optionalDependencies: + '@esbuild/aix-ppc64': 0.27.7 + '@esbuild/android-arm': 0.27.7 + '@esbuild/android-arm64': 0.27.7 + '@esbuild/android-x64': 0.27.7 + '@esbuild/darwin-arm64': 0.27.7 + '@esbuild/darwin-x64': 0.27.7 + '@esbuild/freebsd-arm64': 0.27.7 + '@esbuild/freebsd-x64': 0.27.7 + '@esbuild/linux-arm': 0.27.7 + '@esbuild/linux-arm64': 0.27.7 + '@esbuild/linux-ia32': 0.27.7 + '@esbuild/linux-loong64': 0.27.7 + '@esbuild/linux-mips64el': 0.27.7 + '@esbuild/linux-ppc64': 0.27.7 + '@esbuild/linux-riscv64': 0.27.7 + '@esbuild/linux-s390x': 0.27.7 + '@esbuild/linux-x64': 0.27.7 + '@esbuild/netbsd-arm64': 0.27.7 + '@esbuild/netbsd-x64': 0.27.7 + '@esbuild/openbsd-arm64': 0.27.7 + '@esbuild/openbsd-x64': 0.27.7 + '@esbuild/openharmony-arm64': 0.27.7 + '@esbuild/sunos-x64': 0.27.7 + '@esbuild/win32-arm64': 0.27.7 + '@esbuild/win32-ia32': 0.27.7 + '@esbuild/win32-x64': 0.27.7 + + esbuild@0.28.0: + optionalDependencies: + '@esbuild/aix-ppc64': 0.28.0 + '@esbuild/android-arm': 0.28.0 + '@esbuild/android-arm64': 0.28.0 + '@esbuild/android-x64': 0.28.0 + '@esbuild/darwin-arm64': 0.28.0 + '@esbuild/darwin-x64': 0.28.0 + '@esbuild/freebsd-arm64': 0.28.0 + '@esbuild/freebsd-x64': 0.28.0 + '@esbuild/linux-arm': 0.28.0 + '@esbuild/linux-arm64': 0.28.0 + '@esbuild/linux-ia32': 0.28.0 + '@esbuild/linux-loong64': 0.28.0 + '@esbuild/linux-mips64el': 0.28.0 + '@esbuild/linux-ppc64': 0.28.0 + '@esbuild/linux-riscv64': 0.28.0 + '@esbuild/linux-s390x': 0.28.0 + '@esbuild/linux-x64': 0.28.0 + '@esbuild/netbsd-arm64': 0.28.0 + '@esbuild/netbsd-x64': 0.28.0 + '@esbuild/openbsd-arm64': 0.28.0 + '@esbuild/openbsd-x64': 0.28.0 + '@esbuild/openharmony-arm64': 0.28.0 + '@esbuild/sunos-x64': 0.28.0 + '@esbuild/win32-arm64': 0.28.0 + '@esbuild/win32-ia32': 0.28.0 + '@esbuild/win32-x64': 0.28.0 + escalade@3.2.0: {} escape-html@1.0.3: {} @@ -21935,17 +22612,17 @@ snapshots: transitivePeerDependencies: - supports-color - eslint-module-utils@2.12.1(@typescript-eslint/parser@8.33.0(eslint@9.27.0)(typescript@5.8.3))(eslint-import-resolver-node@0.3.9)(eslint@9.27.0): + eslint-module-utils@2.12.1(@typescript-eslint/parser@8.58.1(eslint@9.27.0)(typescript@6.0.2))(eslint-import-resolver-node@0.3.9)(eslint@9.27.0): dependencies: debug: 3.2.7 optionalDependencies: - '@typescript-eslint/parser': 8.33.0(eslint@9.27.0)(typescript@5.8.3) + '@typescript-eslint/parser': 8.58.1(eslint@9.27.0)(typescript@6.0.2) eslint: 9.27.0 eslint-import-resolver-node: 0.3.9 transitivePeerDependencies: - supports-color - eslint-plugin-import@2.31.0(@typescript-eslint/parser@8.33.0(eslint@9.27.0)(typescript@5.8.3))(eslint@9.27.0): + eslint-plugin-import@2.31.0(@typescript-eslint/parser@8.58.1(eslint@9.27.0)(typescript@6.0.2))(eslint@9.27.0): dependencies: '@rtsao/scc': 1.1.0 array-includes: 3.1.9 @@ -21956,7 +22633,7 @@ snapshots: doctrine: 2.1.0 eslint: 9.27.0 eslint-import-resolver-node: 0.3.9 - eslint-module-utils: 2.12.1(@typescript-eslint/parser@8.33.0(eslint@9.27.0)(typescript@5.8.3))(eslint-import-resolver-node@0.3.9)(eslint@9.27.0) + eslint-module-utils: 2.12.1(@typescript-eslint/parser@8.58.1(eslint@9.27.0)(typescript@6.0.2))(eslint-import-resolver-node@0.3.9)(eslint@9.27.0) hasown: 2.0.2 is-core-module: 2.16.1 is-glob: 4.0.3 @@ -21968,7 +22645,7 @@ snapshots: string.prototype.trimend: 1.0.9 tsconfig-paths: 3.15.0 optionalDependencies: - '@typescript-eslint/parser': 8.33.0(eslint@9.27.0)(typescript@5.8.3) + '@typescript-eslint/parser': 8.58.1(eslint@9.27.0)(typescript@6.0.2) transitivePeerDependencies: - eslint-import-resolver-typescript - eslint-import-resolver-webpack @@ -21996,11 +22673,11 @@ snapshots: string.prototype.matchall: 4.0.12 string.prototype.repeat: 1.0.0 - eslint-plugin-storybook@9.1.6(eslint@9.27.0)(storybook@9.1.6(@testing-library/dom@10.4.1)(msw@2.12.14(@types/node@18.16.15)(typescript@5.8.3))(prettier@3.8.1)(vite@6.3.5(@types/node@18.16.15)(less@3.13.1)(lightningcss@1.31.1)(sass@1.98.0)(sugarss@5.0.1(postcss@8.4.38))(terser@5.46.1)(yaml@2.8.0)))(typescript@5.8.3): + eslint-plugin-storybook@9.1.6(eslint@9.27.0)(storybook@10.3.5(@testing-library/dom@10.4.1)(prettier@3.8.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(typescript@6.0.2): dependencies: - '@typescript-eslint/utils': 8.57.2(eslint@9.27.0)(typescript@5.8.3) + '@typescript-eslint/utils': 8.57.2(eslint@9.27.0)(typescript@6.0.2) eslint: 9.27.0 - storybook: 9.1.6(@testing-library/dom@10.4.1)(msw@2.12.14(@types/node@18.16.15)(typescript@5.8.3))(prettier@3.8.1)(vite@6.3.5(@types/node@18.16.15)(less@3.13.1)(lightningcss@1.31.1)(sass@1.98.0)(sugarss@5.0.1(postcss@8.4.38))(terser@5.46.1)(yaml@2.8.0)) + storybook: 10.3.5(@testing-library/dom@10.4.1)(prettier@3.8.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) transitivePeerDependencies: - supports-color - typescript @@ -22336,7 +23013,7 @@ snapshots: extract-zip@2.0.1: dependencies: - debug: 4.3.4 + debug: 4.4.3 get-stream: 5.2.0 yauzl: 2.10.0 optionalDependencies: @@ -23057,9 +23734,8 @@ snapshots: grapheme-splitter@1.0.4: {} - graphemer@1.4.0: {} - - graphql@16.13.2: {} + graphql@16.13.2: + optional: true gray-matter@4.0.3: dependencies: @@ -23177,7 +23853,8 @@ snapshots: he@1.2.0: {} - headers-polyfill@4.0.3: {} + headers-polyfill@4.0.3: + optional: true help-me@5.0.0: {} @@ -23676,7 +24353,8 @@ snapshots: is-network-error@1.3.1: {} - is-node-process@1.2.0: {} + is-node-process@1.2.0: + optional: true is-number-object@1.1.1: dependencies: @@ -23845,7 +24523,7 @@ snapshots: '@jest/environment': 29.7.0 '@jest/fake-timers': 29.7.0 '@jest/types': 29.6.3 - '@types/node': 18.19.130 + '@types/node': 25.5.2 jest-mock: 29.7.0 jest-util: 29.7.0 @@ -23855,7 +24533,7 @@ snapshots: dependencies: '@jest/types': 29.6.3 '@types/graceful-fs': 4.1.9 - '@types/node': 18.19.130 + '@types/node': 25.5.2 anymatch: 3.1.3 fb-watchman: 2.0.2 graceful-fs: 4.2.11 @@ -23901,13 +24579,13 @@ snapshots: jest-mock@29.7.0: dependencies: '@jest/types': 29.6.3 - '@types/node': 18.19.130 + '@types/node': 25.5.2 jest-util: 29.7.0 jest-mock@30.3.0: dependencies: '@jest/types': 30.3.0 - '@types/node': 18.19.130 + '@types/node': 25.5.2 jest-util: 30.3.0 jest-regex-util@29.6.3: {} @@ -23917,7 +24595,7 @@ snapshots: jest-util@29.7.0: dependencies: '@jest/types': 29.6.3 - '@types/node': 18.19.130 + '@types/node': 25.5.2 chalk: 4.1.2 ci-info: 3.9.0 graceful-fs: 4.2.11 @@ -23926,7 +24604,7 @@ snapshots: jest-util@30.3.0: dependencies: '@jest/types': 30.3.0 - '@types/node': 18.19.130 + '@types/node': 25.5.2 chalk: 4.1.2 ci-info: 4.4.0 graceful-fs: 4.2.11 @@ -23943,13 +24621,13 @@ snapshots: jest-worker@27.5.1: dependencies: - '@types/node': 18.19.130 + '@types/node': 25.5.2 merge-stream: 2.0.0 supports-color: 8.1.1 jest-worker@29.7.0: dependencies: - '@types/node': 18.19.130 + '@types/node': 25.5.2 jest-util: 29.7.0 merge-stream: 2.0.0 supports-color: 8.1.1 @@ -23964,6 +24642,8 @@ snapshots: js-tokens@4.0.0: {} + js-tokens@9.0.1: {} + js-yaml@3.14.2: dependencies: argparse: 1.0.10 @@ -24149,36 +24829,69 @@ snapshots: lightningcss-android-arm64@1.31.1: optional: true + lightningcss-android-arm64@1.32.0: + optional: true + lightningcss-darwin-arm64@1.31.1: optional: true + lightningcss-darwin-arm64@1.32.0: + optional: true + lightningcss-darwin-x64@1.31.1: optional: true + lightningcss-darwin-x64@1.32.0: + optional: true + lightningcss-freebsd-x64@1.31.1: optional: true + lightningcss-freebsd-x64@1.32.0: + optional: true + lightningcss-linux-arm-gnueabihf@1.31.1: optional: true + lightningcss-linux-arm-gnueabihf@1.32.0: + optional: true + lightningcss-linux-arm64-gnu@1.31.1: optional: true + lightningcss-linux-arm64-gnu@1.32.0: + optional: true + lightningcss-linux-arm64-musl@1.31.1: optional: true + lightningcss-linux-arm64-musl@1.32.0: + optional: true + lightningcss-linux-x64-gnu@1.31.1: optional: true + lightningcss-linux-x64-gnu@1.32.0: + optional: true + lightningcss-linux-x64-musl@1.31.1: optional: true + lightningcss-linux-x64-musl@1.32.0: + optional: true + lightningcss-win32-arm64-msvc@1.31.1: optional: true + lightningcss-win32-arm64-msvc@1.32.0: + optional: true + lightningcss-win32-x64-msvc@1.31.1: optional: true + lightningcss-win32-x64-msvc@1.32.0: + optional: true + lightningcss@1.31.1: dependencies: detect-libc: 2.1.2 @@ -24195,6 +24908,23 @@ snapshots: lightningcss-win32-arm64-msvc: 1.31.1 lightningcss-win32-x64-msvc: 1.31.1 + lightningcss@1.32.0: + dependencies: + detect-libc: 2.1.2 + optionalDependencies: + lightningcss-android-arm64: 1.32.0 + lightningcss-darwin-arm64: 1.32.0 + lightningcss-darwin-x64: 1.32.0 + lightningcss-freebsd-x64: 1.32.0 + lightningcss-linux-arm-gnueabihf: 1.32.0 + lightningcss-linux-arm64-gnu: 1.32.0 + lightningcss-linux-arm64-musl: 1.32.0 + lightningcss-linux-x64-gnu: 1.32.0 + lightningcss-linux-x64-musl: 1.32.0 + lightningcss-win32-arm64-msvc: 1.32.0 + lightningcss-win32-x64-msvc: 1.32.0 + optional: true + lines-and-columns@1.2.4: {} linkify-it@4.0.1: @@ -24351,10 +25081,6 @@ snapshots: lz-string@1.5.0: {} - magic-string@0.26.7: - dependencies: - sourcemap-codec: 1.4.8 - magic-string@0.30.21: dependencies: '@jridgewell/sourcemap-codec': 1.5.5 @@ -24642,7 +25368,7 @@ snapshots: metro-cache: 0.83.5 metro-core: 0.83.5 metro-runtime: 0.83.5 - yaml: 2.8.0 + yaml: 2.8.3 transitivePeerDependencies: - bufferutil - supports-color @@ -25100,34 +25826,9 @@ snapshots: ms@2.1.3: {} - msw@2.12.14(@types/node@18.16.15)(typescript@5.8.3): - dependencies: - '@inquirer/confirm': 5.1.21(@types/node@18.16.15) - '@mswjs/interceptors': 0.41.3 - '@open-draft/deferred-promise': 2.2.0 - '@types/statuses': 2.0.6 - cookie: 1.1.1 - graphql: 16.13.2 - headers-polyfill: 4.0.3 - is-node-process: 1.2.0 - outvariant: 1.4.3 - path-to-regexp: 6.3.0 - picocolors: 1.1.1 - rettime: 0.10.1 - statuses: 2.0.2 - strict-event-emitter: 0.5.1 - tough-cookie: 6.0.1 - type-fest: 5.5.0 - until-async: 3.0.2 - yargs: 17.7.2 - optionalDependencies: - typescript: 5.8.3 - transitivePeerDependencies: - - '@types/node' - - msw@2.12.14(@types/node@22.19.15)(typescript@5.8.3): + msw@2.12.14(@types/node@25.5.2)(typescript@5.9.3): dependencies: - '@inquirer/confirm': 5.1.21(@types/node@22.19.15) + '@inquirer/confirm': 5.1.21(@types/node@25.5.2) '@mswjs/interceptors': 0.41.3 '@open-draft/deferred-promise': 2.2.0 '@types/statuses': 2.0.6 @@ -25146,14 +25847,14 @@ snapshots: until-async: 3.0.2 yargs: 17.7.2 optionalDependencies: - typescript: 5.8.3 + typescript: 5.9.3 transitivePeerDependencies: - '@types/node' optional: true - msw@2.12.14(@types/node@22.19.15)(typescript@5.9.3): + msw@2.12.14(@types/node@25.5.2)(typescript@6.0.2): dependencies: - '@inquirer/confirm': 5.1.21(@types/node@22.19.15) + '@inquirer/confirm': 5.1.21(@types/node@25.5.2) '@mswjs/interceptors': 0.41.3 '@open-draft/deferred-promise': 2.2.0 '@types/statuses': 2.0.6 @@ -25172,7 +25873,7 @@ snapshots: until-async: 3.0.2 yargs: 17.7.2 optionalDependencies: - typescript: 5.9.3 + typescript: 6.0.2 transitivePeerDependencies: - '@types/node' optional: true @@ -25184,7 +25885,8 @@ snapshots: mute-stream@0.0.7: {} - mute-stream@2.0.0: {} + mute-stream@2.0.0: + optional: true nanoid@3.3.11: {} @@ -25422,12 +26124,6 @@ snapshots: is-docker: 2.2.1 is-wsl: 2.2.0 - open@8.4.2: - dependencies: - define-lazy-prop: 2.0.0 - is-docker: 2.2.1 - is-wsl: 2.2.0 - opener@1.5.2: {} optionator@0.9.4: @@ -25451,7 +26147,8 @@ snapshots: outdent@0.8.0: {} - outvariant@1.4.3: {} + outvariant@1.4.3: + optional: true ow@0.17.0: dependencies: @@ -25658,7 +26355,8 @@ snapshots: dependencies: isarray: 0.0.1 - path-to-regexp@6.3.0: {} + path-to-regexp@6.3.0: + optional: true path-to-regexp@8.4.1: {} @@ -26635,7 +27333,7 @@ snapshots: proxy-agent@6.3.0: dependencies: agent-base: 7.1.4 - debug: 4.3.4 + debug: 4.4.3 http-proxy-agent: 7.0.2 https-proxy-agent: 7.0.6 lru-cache: 7.18.3 @@ -26648,7 +27346,7 @@ snapshots: proxy-agent@6.3.1: dependencies: agent-base: 7.1.4 - debug: 4.3.4 + debug: 4.4.3 http-proxy-agent: 7.0.2 https-proxy-agent: 7.0.6 lru-cache: 7.18.3 @@ -26684,16 +27382,36 @@ snapshots: punycode@2.3.1: {} - puppeteer-core@20.9.0(typescript@5.8.3): + puppeteer-core@20.9.0(typescript@5.9.3): + dependencies: + '@puppeteer/browsers': 1.4.6(typescript@5.9.3) + chromium-bidi: 0.4.16(devtools-protocol@0.0.1147663) + cross-fetch: 4.0.0 + debug: 4.3.4 + devtools-protocol: 0.0.1147663 + ws: 8.13.0 + optionalDependencies: + typescript: 5.9.3 + transitivePeerDependencies: + - bare-abort-controller + - bare-buffer + - bufferutil + - encoding + - react-native-b4a + - supports-color + - utf-8-validate + optional: true + + puppeteer-core@20.9.0(typescript@6.0.2): dependencies: - '@puppeteer/browsers': 1.4.6(typescript@5.8.3) + '@puppeteer/browsers': 1.4.6(typescript@6.0.2) chromium-bidi: 0.4.16(devtools-protocol@0.0.1147663) cross-fetch: 4.0.0 debug: 4.3.4 devtools-protocol: 0.0.1147663 ws: 8.13.0 optionalDependencies: - typescript: 5.8.3 + typescript: 6.0.2 transitivePeerDependencies: - bare-abort-controller - bare-buffer @@ -26787,9 +27505,9 @@ snapshots: - bufferutil - utf-8-validate - react-docgen-typescript@2.4.0(typescript@5.9.3): + react-docgen-typescript@2.4.0(typescript@6.0.2): dependencies: - typescript: 5.9.3 + typescript: 6.0.2 react-docgen@8.0.3: dependencies: @@ -26868,31 +27586,31 @@ snapshots: react-fast-compare: 3.2.2 react-instantsearch-core: 6.40.4(algoliasearch@4.8.4)(react@18.3.1) - react-instantsearch-native@6.40.4(algoliasearch@4.8.4)(react-native@0.84.1(@babel/core@7.28.4)(@types/react@18.2.19)(react@18.3.1))(react@18.3.1): + react-instantsearch-native@6.40.4(algoliasearch@4.8.4)(react-native@0.84.1(@babel/core@7.29.0)(@types/react@18.2.19)(react@18.3.1))(react@18.3.1): dependencies: '@babel/runtime': 7.27.6 algoliasearch: 4.8.4 react: 18.3.1 react-instantsearch-core: 6.40.4(algoliasearch@4.8.4)(react@18.3.1) - react-native: 0.84.1(@babel/core@7.28.4)(@types/react@18.2.19)(react@18.3.1) + react-native: 0.84.1(@babel/core@7.29.0)(@types/react@18.2.19)(react@18.3.1) - react-instantsearch@6.8.3(algoliasearch@4.8.4)(react-dom@18.3.1(react@18.3.1))(react-native@0.84.1(@babel/core@7.28.4)(@types/react@18.2.19)(react@18.3.1))(react@18.3.1): + react-instantsearch@6.8.3(algoliasearch@4.8.4)(react-dom@18.3.1(react@18.3.1))(react-native@0.84.1(@babel/core@7.29.0)(@types/react@18.2.19)(react@18.3.1))(react@18.3.1): dependencies: '@babel/runtime': 7.27.6 react-instantsearch-core: 6.40.4(algoliasearch@4.8.4)(react@18.3.1) react-instantsearch-dom: 6.40.4(algoliasearch@4.8.4)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - react-instantsearch-native: 6.40.4(algoliasearch@4.8.4)(react-native@0.84.1(@babel/core@7.28.4)(@types/react@18.2.19)(react@18.3.1))(react@18.3.1) + react-instantsearch-native: 6.40.4(algoliasearch@4.8.4)(react-native@0.84.1(@babel/core@7.29.0)(@types/react@18.2.19)(react@18.3.1))(react@18.3.1) transitivePeerDependencies: - algoliasearch - react - react-dom - react-native - react-intl@7.1.11(react@18.3.1)(typescript@5.9.3): + react-intl@7.1.11(react@18.3.1)(typescript@6.0.2): dependencies: '@formatjs/ecma402-abstract': 2.3.4 '@formatjs/icu-messageformat-parser': 2.11.2 - '@formatjs/intl': 3.1.6(typescript@5.9.3) + '@formatjs/intl': 3.1.6(typescript@6.0.2) '@types/hoist-non-react-statics': 3.3.7(@types/react@18.2.19) '@types/react': 18.2.19 hoist-non-react-statics: 3.3.2 @@ -26900,7 +27618,7 @@ snapshots: react: 18.3.1 tslib: 2.8.1 optionalDependencies: - typescript: 5.9.3 + typescript: 6.0.2 react-is@16.13.1: {} @@ -26917,20 +27635,20 @@ snapshots: prop-types: 15.8.1 react: 18.3.1 - react-native@0.84.1(@babel/core@7.28.4)(@types/react@18.2.19)(react@18.3.1): + react-native@0.84.1(@babel/core@7.29.0)(@types/react@18.2.19)(react@18.3.1): dependencies: '@jest/create-cache-key-function': 29.7.0 '@react-native/assets-registry': 0.84.1 - '@react-native/codegen': 0.84.1(@babel/core@7.28.4) + '@react-native/codegen': 0.84.1(@babel/core@7.29.0) '@react-native/community-cli-plugin': 0.84.1 '@react-native/gradle-plugin': 0.84.1 '@react-native/js-polyfills': 0.84.1 '@react-native/normalize-colors': 0.84.1 - '@react-native/virtualized-lists': 0.84.1(@types/react@18.2.19)(react-native@0.84.1(@babel/core@7.28.4)(@types/react@18.2.19)(react@18.3.1))(react@18.3.1) + '@react-native/virtualized-lists': 0.84.1(@types/react@18.2.19)(react-native@0.84.1(@babel/core@7.29.0)(@types/react@18.2.19)(react@18.3.1))(react@18.3.1) abort-controller: 3.0.0 anser: 1.4.10 ansi-regex: 5.0.1 - babel-jest: 29.7.0(@babel/core@7.28.4) + babel-jest: 29.7.0(@babel/core@7.29.0) babel-plugin-syntax-hermes-parser: 0.32.0 base64-js: 1.5.1 commander: 12.1.0 @@ -26969,6 +27687,8 @@ snapshots: react-refresh@0.17.0: {} + react-refresh@0.18.0: {} + react-resizable@3.0.4(react-dom@18.3.1(react@18.3.1))(react@18.3.1): dependencies: prop-types: 15.8.1 @@ -27281,7 +28001,8 @@ snapshots: retry@0.13.1: {} - rettime@0.10.1: {} + rettime@0.10.1: + optional: true reusify@1.1.0: {} @@ -27798,8 +28519,6 @@ snapshots: source-map@0.7.6: {} - sourcemap-codec@1.4.8: {} - space-separated-tokens@2.0.2: {} spacetrim@0.11.59: {} @@ -27899,53 +28618,29 @@ snapshots: es-errors: 1.3.0 internal-slot: 1.1.0 - storybook@9.1.6(@testing-library/dom@10.4.1)(msw@2.12.14(@types/node@18.16.15)(typescript@5.8.3))(prettier@3.8.1)(vite@6.3.5(@types/node@18.16.15)(less@3.13.1)(lightningcss@1.31.1)(sass@1.98.0)(sugarss@5.0.1(postcss@8.4.38))(terser@5.46.1)(yaml@2.8.0)): - dependencies: - '@storybook/global': 5.0.0 - '@testing-library/jest-dom': 6.6.3 - '@testing-library/user-event': 14.6.1(@testing-library/dom@10.4.1) - '@vitest/expect': 3.2.4 - '@vitest/mocker': 3.2.4(msw@2.12.14(@types/node@18.16.15)(typescript@5.8.3))(vite@6.3.5(@types/node@18.16.15)(less@3.13.1)(lightningcss@1.31.1)(sass@1.98.0)(sugarss@5.0.1(postcss@8.4.38))(terser@5.46.1)(yaml@2.8.0)) - '@vitest/spy': 3.2.4 - better-opn: 3.0.2 - esbuild: 0.25.12 - esbuild-register: 3.6.0(esbuild@0.25.12) - recast: 0.23.11 - semver: 7.7.2 - ws: 8.20.0 - optionalDependencies: - prettier: 3.8.1 - transitivePeerDependencies: - - '@testing-library/dom' - - bufferutil - - msw - - supports-color - - utf-8-validate - - vite - - storybook@9.1.6(@testing-library/dom@10.4.1)(msw@2.12.14(@types/node@22.19.15)(typescript@5.9.3))(prettier@3.8.1)(vite@6.3.5(@types/node@22.19.15)(less@3.13.1)(lightningcss@1.31.1)(sass@1.98.0)(sugarss@5.0.1(postcss@8.5.8))(terser@5.46.1)(yaml@2.8.0)): + storybook@10.3.5(@testing-library/dom@10.4.1)(prettier@3.8.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1): dependencies: '@storybook/global': 5.0.0 - '@testing-library/jest-dom': 6.6.3 + '@storybook/icons': 2.0.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@testing-library/jest-dom': 6.9.1 '@testing-library/user-event': 14.6.1(@testing-library/dom@10.4.1) '@vitest/expect': 3.2.4 - '@vitest/mocker': 3.2.4(msw@2.12.14(@types/node@22.19.15)(typescript@5.9.3))(vite@6.3.5(@types/node@22.19.15)(less@3.13.1)(lightningcss@1.31.1)(sass@1.98.0)(sugarss@5.0.1(postcss@8.5.8))(terser@5.46.1)(yaml@2.8.0)) '@vitest/spy': 3.2.4 - better-opn: 3.0.2 + '@webcontainer/env': 1.1.1 esbuild: 0.25.12 - esbuild-register: 3.6.0(esbuild@0.25.12) + open: 10.2.0 recast: 0.23.11 - semver: 7.7.2 + semver: 7.7.4 + use-sync-external-store: 1.6.0(react@18.3.1) ws: 8.20.0 optionalDependencies: prettier: 3.8.1 transitivePeerDependencies: - '@testing-library/dom' - bufferutil - - msw - - supports-color + - react + - react-dom - utf-8-validate - - vite stream-events@1.0.5: dependencies: @@ -27968,7 +28663,8 @@ snapshots: - bare-abort-controller - react-native-b4a - strict-event-emitter@0.5.1: {} + strict-event-emitter@0.5.1: + optional: true strict-uri-encode@1.1.0: {} @@ -28119,6 +28815,10 @@ snapshots: strip-json-comments@3.1.1: {} + strip-literal@3.1.0: + dependencies: + js-tokens: 9.0.1 + strip-outer@1.0.1: dependencies: escape-string-regexp: 1.0.5 @@ -28140,20 +28840,20 @@ snapshots: postcss: 8.4.38 postcss-selector-parser: 6.1.2 - stylelint-config-recommended@12.0.0(stylelint@15.9.0(typescript@5.8.3)): + stylelint-config-recommended@12.0.0(stylelint@15.9.0(typescript@6.0.2)): dependencies: - stylelint: 15.9.0(typescript@5.8.3) + stylelint: 15.9.0(typescript@6.0.2) - stylelint-config-recommended@14.0.1(stylelint@16.6.1(typescript@5.9.3)): + stylelint-config-recommended@14.0.1(stylelint@16.6.1(typescript@6.0.2)): dependencies: - stylelint: 16.6.1(typescript@5.9.3) + stylelint: 16.6.1(typescript@6.0.2) - stylelint-config-standard@36.0.0(stylelint@16.6.1(typescript@5.9.3)): + stylelint-config-standard@36.0.0(stylelint@16.6.1(typescript@6.0.2)): dependencies: - stylelint: 16.6.1(typescript@5.9.3) - stylelint-config-recommended: 14.0.1(stylelint@16.6.1(typescript@5.9.3)) + stylelint: 16.6.1(typescript@6.0.2) + stylelint-config-recommended: 14.0.1(stylelint@16.6.1(typescript@6.0.2)) - stylelint@15.9.0(typescript@5.8.3): + stylelint@15.9.0(typescript@6.0.2): dependencies: '@csstools/css-parser-algorithms': 2.7.1(@csstools/css-tokenizer@2.4.1) '@csstools/css-tokenizer': 2.4.1 @@ -28161,7 +28861,7 @@ snapshots: '@csstools/selector-specificity': 2.2.0(postcss-selector-parser@6.1.2) balanced-match: 2.0.0 colord: 2.9.3 - cosmiconfig: 8.3.6(typescript@5.8.3) + cosmiconfig: 8.3.6(typescript@6.0.2) css-functions-list: 3.3.3 css-tree: 2.3.1 debug: 4.4.3 @@ -28200,7 +28900,7 @@ snapshots: - supports-color - typescript - stylelint@16.6.1(typescript@5.9.3): + stylelint@16.6.1(typescript@6.0.2): dependencies: '@csstools/css-parser-algorithms': 2.7.1(@csstools/css-tokenizer@2.4.1) '@csstools/css-tokenizer': 2.4.1 @@ -28209,7 +28909,7 @@ snapshots: '@dual-bundle/import-meta-resolve': 4.2.1 balanced-match: 2.0.0 colord: 2.9.3 - cosmiconfig: 9.0.1(typescript@5.9.3) + cosmiconfig: 9.0.1(typescript@6.0.2) css-functions-list: 3.3.3 css-tree: 2.3.1 debug: 4.4.3 @@ -28332,7 +29032,8 @@ snapshots: string-width: 4.2.3 strip-ansi: 6.0.1 - tagged-tag@1.0.0: {} + tagged-tag@1.0.0: + optional: true tapable@2.3.2: {} @@ -28448,15 +29149,15 @@ snapshots: temp-dir: 1.0.0 uuid: 3.4.0 - terser-webpack-plugin@5.4.0(esbuild@0.14.29)(webpack@5.105.4(esbuild@0.14.29)): + terser-webpack-plugin@5.4.0(esbuild@0.28.0)(webpack@5.105.4(esbuild@0.28.0)): dependencies: '@jridgewell/trace-mapping': 0.3.31 jest-worker: 27.5.1 schema-utils: 4.3.3 terser: 5.46.1 - webpack: 5.105.4(esbuild@0.14.29) + webpack: 5.105.4(esbuild@0.28.0) optionalDependencies: - esbuild: 0.14.29 + esbuild: 0.28.0 terser@5.46.1: dependencies: @@ -28521,15 +29222,17 @@ snapshots: tinyrainbow@2.0.0: {} - tinyspy@3.0.2: {} + tinyrainbow@3.1.0: {} tinyspy@4.0.4: {} - tldts-core@7.0.27: {} + tldts-core@7.0.27: + optional: true tldts@7.0.27: dependencies: tldts-core: 7.0.27 + optional: true tmp@0.0.33: dependencies: @@ -28572,6 +29275,7 @@ snapshots: tough-cookie@6.0.1: dependencies: tldts: 7.0.27 + optional: true tr46@0.0.3: {} @@ -28593,18 +29297,18 @@ snapshots: trough@2.2.0: {} - ts-api-utils@2.5.0(typescript@5.8.3): + ts-api-utils@2.5.0(typescript@6.0.2): dependencies: - typescript: 5.8.3 + typescript: 6.0.2 ts-dedent@2.2.0: {} - ts-evaluator@1.2.0(jsdom@22.1.0)(typescript@5.9.3): + ts-evaluator@1.2.0(jsdom@22.1.0)(typescript@6.0.2): dependencies: ansi-colors: 4.1.3 crosspath: 2.0.0 object-path: 0.11.8 - typescript: 5.9.3 + typescript: 6.0.2 optionalDependencies: jsdom: 22.1.0 @@ -28613,33 +29317,33 @@ snapshots: '@ts-morph/common': 0.28.1 code-block-writer: 13.0.3 - ts-node@10.9.2(@types/node@22.19.15)(typescript@5.8.3): + ts-node@10.9.2(@types/node@25.5.2)(typescript@5.9.3): dependencies: '@cspotcode/source-map-support': 0.8.1 '@tsconfig/node10': 1.0.12 '@tsconfig/node12': 1.0.11 '@tsconfig/node14': 1.0.3 '@tsconfig/node16': 1.0.4 - '@types/node': 22.19.15 + '@types/node': 25.5.2 acorn: 8.16.0 acorn-walk: 8.3.5 arg: 4.1.3 create-require: 1.1.1 diff: 4.0.4 make-error: 1.3.6 - typescript: 5.8.3 + typescript: 5.9.3 v8-compile-cache-lib: 3.0.1 yn: 3.1.1 ts-pattern@5.9.0: {} - tsconfck@2.1.2(typescript@5.8.3): + tsconfck@2.1.2(typescript@5.9.3): optionalDependencies: - typescript: 5.8.3 + typescript: 5.9.3 - tsconfck@3.1.6(typescript@5.9.3): + tsconfck@3.1.6(typescript@6.0.2): optionalDependencies: - typescript: 5.9.3 + typescript: 6.0.2 tsconfig-paths@3.15.0: dependencies: @@ -28707,6 +29411,7 @@ snapshots: type-fest@5.5.0: dependencies: tagged-tag: 1.0.0 + optional: true type-is@1.6.18: dependencies: @@ -28756,17 +29461,18 @@ snapshots: dependencies: is-typedarray: 1.0.0 - typescript-eslint@8.33.0(eslint@9.27.0)(typescript@5.8.3): + typescript-eslint@8.58.1(eslint@9.27.0)(typescript@6.0.2): dependencies: - '@typescript-eslint/eslint-plugin': 8.33.0(@typescript-eslint/parser@8.33.0(eslint@9.27.0)(typescript@5.8.3))(eslint@9.27.0)(typescript@5.8.3) - '@typescript-eslint/parser': 8.33.0(eslint@9.27.0)(typescript@5.8.3) - '@typescript-eslint/utils': 8.33.0(eslint@9.27.0)(typescript@5.8.3) + '@typescript-eslint/eslint-plugin': 8.58.1(@typescript-eslint/parser@8.58.1(eslint@9.27.0)(typescript@6.0.2))(eslint@9.27.0)(typescript@6.0.2) + '@typescript-eslint/parser': 8.58.1(eslint@9.27.0)(typescript@6.0.2) + '@typescript-eslint/typescript-estree': 8.58.1(typescript@6.0.2) + '@typescript-eslint/utils': 8.58.1(eslint@9.27.0)(typescript@6.0.2) eslint: 9.27.0 - typescript: 5.8.3 + typescript: 6.0.2 transitivePeerDependencies: - supports-color - typescript-plugin-css-modules@2.2.0(typescript@5.8.3): + typescript-plugin-css-modules@2.2.0(typescript@6.0.2): dependencies: dotenv: 8.2.0 icss-utils: 4.1.1 @@ -28778,18 +29484,18 @@ snapshots: postcss-load-config: 2.1.2 reserved-words: 0.1.2 sass: 1.98.0 - typescript: 5.8.3 + typescript: 6.0.2 - typescript-workspace-plugin@2.0.1(typescript@5.8.3): + typescript-workspace-plugin@2.0.1(typescript@6.0.2): dependencies: - typescript: 5.8.3 + typescript: 6.0.2 typescript@4.9.5: {} - typescript@5.8.3: {} - typescript@5.9.3: {} + typescript@6.0.2: {} + uc.micro@1.0.6: {} uglify-js@2.8.29: @@ -28820,6 +29526,8 @@ snapshots: undici-types@6.21.0: {} + undici-types@7.18.2: {} + undici@7.24.6: {} unicode-canonical-property-names-ecmascript@2.0.1: {} @@ -28938,7 +29646,15 @@ snapshots: webpack-sources: 3.3.4 webpack-virtual-modules: 0.5.0 - until-async@3.0.2: {} + unplugin@2.3.11: + dependencies: + '@jridgewell/remapping': 2.3.5 + acorn: 8.16.0 + picomatch: 4.0.4 + webpack-virtual-modules: 0.6.2 + + until-async@3.0.2: + optional: true update-browserslist-db@1.2.3(browserslist@4.28.1): dependencies: @@ -28967,6 +29683,10 @@ snapshots: url-to-options@1.0.1: {} + use-sync-external-store@1.6.0(react@18.3.1): + dependencies: + react: 18.3.1 + userhome@1.0.1: {} util-deprecate@1.0.2: {} @@ -29023,13 +29743,13 @@ snapshots: '@types/unist': 3.0.3 vfile-message: 4.0.3 - vite-node@3.0.9(@types/node@18.16.15)(less@3.13.1)(lightningcss@1.31.1)(sass@1.98.0)(sugarss@5.0.1(postcss@8.4.38))(terser@5.46.1)(yaml@2.8.0): + vite-node@3.2.4(@types/node@25.5.2)(lightningcss@1.32.0)(sass@1.98.0)(sugarss@5.0.1(postcss@8.4.38))(terser@5.46.1)(yaml@2.8.3): dependencies: cac: 6.7.14 debug: 4.4.3 es-module-lexer: 1.7.0 pathe: 2.0.3 - vite: 6.3.5(@types/node@18.16.15)(less@3.13.1)(lightningcss@1.31.1)(sass@1.98.0)(sugarss@5.0.1(postcss@8.4.38))(terser@5.46.1)(yaml@2.8.0) + vite: 7.3.2(@types/node@25.5.2)(lightningcss@1.32.0)(sass@1.98.0)(sugarss@5.0.1(postcss@8.4.38))(terser@5.46.1)(yaml@2.8.3) transitivePeerDependencies: - '@types/node' - jiti @@ -29044,13 +29764,13 @@ snapshots: - tsx - yaml - vite-node@3.0.9(@types/node@22.19.15)(less@3.13.1)(lightningcss@1.31.1)(sass@1.98.0)(sugarss@5.0.1(postcss@8.5.8))(terser@5.46.1)(yaml@2.8.0): + vite-node@3.2.4(@types/node@25.5.2)(lightningcss@1.32.0)(sass@1.98.0)(sugarss@5.0.1(postcss@8.5.8))(terser@5.46.1)(yaml@2.8.3): dependencies: cac: 6.7.14 debug: 4.4.3 es-module-lexer: 1.7.0 pathe: 2.0.3 - vite: 6.3.5(@types/node@22.19.15)(less@3.13.1)(lightningcss@1.31.1)(sass@1.98.0)(sugarss@5.0.1(postcss@8.5.8))(terser@5.46.1)(yaml@2.8.0) + vite: 7.3.2(@types/node@25.5.2)(lightningcss@1.32.0)(sass@1.98.0)(sugarss@5.0.1(postcss@8.5.8))(terser@5.46.1)(yaml@2.8.3) transitivePeerDependencies: - '@types/node' - jiti @@ -29065,40 +29785,38 @@ snapshots: - tsx - yaml - vite-plugin-babel@1.3.2(@babel/core@7.27.7)(vite@6.3.5(@types/node@18.16.15)(less@3.13.1)(lightningcss@1.31.1)(sass@1.98.0)(sugarss@5.0.1(postcss@8.4.38))(terser@5.46.1)(yaml@2.8.0)): + vite-plugin-babel@1.6.0(@babel/core@7.27.7)(vite@7.3.2(@types/node@25.5.2)(lightningcss@1.32.0)(sass@1.98.0)(sugarss@5.0.1(postcss@8.4.38))(terser@5.46.1)(yaml@2.8.3)): dependencies: '@babel/core': 7.27.7 - vite: 6.3.5(@types/node@18.16.15)(less@3.13.1)(lightningcss@1.31.1)(sass@1.98.0)(sugarss@5.0.1(postcss@8.4.38))(terser@5.46.1)(yaml@2.8.0) + vite: 7.3.2(@types/node@25.5.2)(lightningcss@1.32.0)(sass@1.98.0)(sugarss@5.0.1(postcss@8.4.38))(terser@5.46.1)(yaml@2.8.3) - vite@5.4.21(@types/node@18.19.130)(less@3.13.1)(lightningcss@1.31.1)(sass@1.98.0)(sugarss@5.0.1(postcss@8.4.33))(terser@5.46.1): + vite@5.4.21(@types/node@25.5.2)(lightningcss@1.32.0)(sass@1.98.0)(sugarss@5.0.1(postcss@8.4.33))(terser@5.46.1): dependencies: esbuild: 0.21.5 postcss: 8.5.8 rollup: 4.60.0 optionalDependencies: - '@types/node': 18.19.130 + '@types/node': 25.5.2 fsevents: 2.3.3 - less: 3.13.1 - lightningcss: 1.31.1 + lightningcss: 1.32.0 sass: 1.98.0 sugarss: 5.0.1(postcss@8.4.33) terser: 5.46.1 - vite@5.4.21(@types/node@22.19.15)(less@3.13.1)(lightningcss@1.31.1)(sass@1.98.0)(sugarss@5.0.1(postcss@8.5.8))(terser@5.46.1): + vite@5.4.21(@types/node@25.5.2)(lightningcss@1.32.0)(sass@1.98.0)(sugarss@5.0.1(postcss@8.5.8))(terser@5.46.1): dependencies: esbuild: 0.21.5 postcss: 8.5.8 rollup: 4.60.0 optionalDependencies: - '@types/node': 22.19.15 + '@types/node': 25.5.2 fsevents: 2.3.3 - less: 3.13.1 - lightningcss: 1.31.1 + lightningcss: 1.32.0 sass: 1.98.0 sugarss: 5.0.1(postcss@8.5.8) terser: 5.46.1 - vite@6.3.5(@types/node@18.16.15)(less@3.13.1)(lightningcss@1.31.1)(sass@1.98.0)(sugarss@5.0.1(postcss@8.4.38))(terser@5.46.1)(yaml@2.8.0): + vite@6.3.5(@types/node@25.5.2)(lightningcss@1.32.0)(sass@1.98.0)(sugarss@5.0.1(postcss@8.5.8))(terser@5.46.1)(yaml@2.8.3): dependencies: esbuild: 0.25.12 fdir: 6.5.0(picomatch@4.0.4) @@ -29107,69 +29825,83 @@ snapshots: rollup: 4.60.0 tinyglobby: 0.2.15 optionalDependencies: - '@types/node': 18.16.15 + '@types/node': 25.5.2 fsevents: 2.3.3 - less: 3.13.1 - lightningcss: 1.31.1 + lightningcss: 1.32.0 sass: 1.98.0 - sugarss: 5.0.1(postcss@8.4.38) + sugarss: 5.0.1(postcss@8.5.8) terser: 5.46.1 - yaml: 2.8.0 + yaml: 2.8.3 - vite@6.3.5(@types/node@18.19.130)(less@3.13.1)(lightningcss@1.31.1)(sass@1.98.0)(sugarss@5.0.1(postcss@8.4.33))(terser@5.46.1)(yaml@2.8.0): + vite@7.3.2(@types/node@25.5.2)(lightningcss@1.32.0)(sass@1.98.0)(sugarss@5.0.1(postcss@8.4.33))(terser@5.46.1)(yaml@2.8.3): dependencies: - esbuild: 0.25.12 + esbuild: 0.27.7 fdir: 6.5.0(picomatch@4.0.4) picomatch: 4.0.4 postcss: 8.5.8 rollup: 4.60.0 tinyglobby: 0.2.15 optionalDependencies: - '@types/node': 18.19.130 + '@types/node': 25.5.2 fsevents: 2.3.3 - less: 3.13.1 - lightningcss: 1.31.1 + lightningcss: 1.32.0 sass: 1.98.0 sugarss: 5.0.1(postcss@8.4.33) terser: 5.46.1 - yaml: 2.8.0 + yaml: 2.8.3 - vite@6.3.5(@types/node@22.19.15)(less@3.13.1)(lightningcss@1.31.1)(sass@1.98.0)(sugarss@5.0.1(postcss@8.5.8))(terser@5.46.1)(yaml@2.8.0): + vite@7.3.2(@types/node@25.5.2)(lightningcss@1.32.0)(sass@1.98.0)(sugarss@5.0.1(postcss@8.4.38))(terser@5.46.1)(yaml@2.8.3): dependencies: - esbuild: 0.25.12 + esbuild: 0.27.7 fdir: 6.5.0(picomatch@4.0.4) picomatch: 4.0.4 postcss: 8.5.8 rollup: 4.60.0 tinyglobby: 0.2.15 optionalDependencies: - '@types/node': 22.19.15 + '@types/node': 25.5.2 fsevents: 2.3.3 - less: 3.13.1 - lightningcss: 1.31.1 + lightningcss: 1.32.0 + sass: 1.98.0 + sugarss: 5.0.1(postcss@8.4.38) + terser: 5.46.1 + yaml: 2.8.3 + + vite@7.3.2(@types/node@25.5.2)(lightningcss@1.32.0)(sass@1.98.0)(sugarss@5.0.1(postcss@8.5.8))(terser@5.46.1)(yaml@2.8.3): + dependencies: + esbuild: 0.27.7 + fdir: 6.5.0(picomatch@4.0.4) + picomatch: 4.0.4 + postcss: 8.5.8 + rollup: 4.60.0 + tinyglobby: 0.2.15 + optionalDependencies: + '@types/node': 25.5.2 + fsevents: 2.3.3 + lightningcss: 1.32.0 sass: 1.98.0 sugarss: 5.0.1(postcss@8.5.8) terser: 5.46.1 - yaml: 2.8.0 + yaml: 2.8.3 - vitepress@1.3.1(@algolia/client-search@5.50.0)(@types/node@18.19.130)(@types/react@18.2.19)(axios@1.9.0)(fuse.js@6.6.2)(less@3.13.1)(lightningcss@1.31.1)(postcss@8.4.33)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.98.0)(search-insights@2.17.3)(sugarss@5.0.1(postcss@8.4.33))(terser@5.46.1)(typescript@5.9.3): + vitepress@1.3.1(@algolia/client-search@5.50.0)(@types/node@25.5.2)(@types/react@18.2.19)(axios@1.9.0)(fuse.js@6.6.2)(lightningcss@1.32.0)(postcss@8.4.33)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.98.0)(search-insights@2.17.3)(sugarss@5.0.1(postcss@8.4.33))(terser@5.46.1)(typescript@6.0.2): dependencies: '@docsearch/css': 3.6.3 '@docsearch/js': 3.6.3(@algolia/client-search@5.50.0)(@types/react@18.2.19)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(search-insights@2.17.3) '@shikijs/core': 1.29.2 '@shikijs/transformers': 1.29.2 '@types/markdown-it': 14.1.2 - '@vitejs/plugin-vue': 5.2.4(vite@5.4.21(@types/node@18.19.130)(less@3.13.1)(lightningcss@1.31.1)(sass@1.98.0)(sugarss@5.0.1(postcss@8.4.33))(terser@5.46.1))(vue@3.5.31(typescript@5.9.3)) + '@vitejs/plugin-vue': 5.2.4(vite@5.4.21(@types/node@25.5.2)(lightningcss@1.32.0)(sass@1.98.0)(sugarss@5.0.1(postcss@8.4.33))(terser@5.46.1))(vue@3.5.31(typescript@6.0.2)) '@vue/devtools-api': 7.7.9 '@vue/shared': 3.5.31 - '@vueuse/core': 10.11.1(vue@3.5.31(typescript@5.9.3)) - '@vueuse/integrations': 10.11.1(axios@1.9.0)(focus-trap@7.8.0)(fuse.js@6.6.2)(vue@3.5.31(typescript@5.9.3)) + '@vueuse/core': 10.11.1(vue@3.5.31(typescript@6.0.2)) + '@vueuse/integrations': 10.11.1(axios@1.9.0)(focus-trap@7.8.0)(fuse.js@6.6.2)(vue@3.5.31(typescript@6.0.2)) focus-trap: 7.8.0 mark.js: 8.11.1 minisearch: 7.2.0 shiki: 1.29.2 - vite: 5.4.21(@types/node@18.19.130)(less@3.13.1)(lightningcss@1.31.1)(sass@1.98.0)(sugarss@5.0.1(postcss@8.4.33))(terser@5.46.1) - vue: 3.5.31(typescript@5.9.3) + vite: 5.4.21(@types/node@25.5.2)(lightningcss@1.32.0)(sass@1.98.0)(sugarss@5.0.1(postcss@8.4.33))(terser@5.46.1) + vue: 3.5.31(typescript@6.0.2) optionalDependencies: postcss: 8.4.33 transitivePeerDependencies: @@ -29200,7 +29932,7 @@ snapshots: - typescript - universal-cookie - vitest-axe@0.1.0(vitest@3.0.9(@types/debug@4.1.13)(@types/node@22.19.15)(@vitest/browser@3.0.6(@types/node@18.16.15)(playwright@1.58.2)(typescript@5.8.3)(vite@6.3.5(@types/node@18.16.15)(less@3.13.1)(lightningcss@1.31.1)(sass@1.98.0)(sugarss@5.0.1(postcss@8.4.38))(terser@5.46.1)(yaml@2.8.0))(vitest@3.0.9)(webdriverio@8.24.3(typescript@5.8.3)))(@vitest/ui@3.0.6(vitest@3.0.9))(happy-dom@9.20.3)(jsdom@22.1.0)(less@3.13.1)(lightningcss@1.31.1)(msw@2.12.14(@types/node@22.19.15)(typescript@5.8.3))(sass@1.98.0)(sugarss@5.0.1(postcss@8.5.8))(terser@5.46.1)(yaml@2.8.0)): + vitest-axe@0.1.0(vitest@3.2.4): dependencies: aria-query: 5.3.2 axe-core: 4.9.1 @@ -29208,35 +29940,38 @@ snapshots: dom-accessibility-api: 0.5.16 lodash-es: 4.17.23 redent: 3.0.0 - vitest: 3.0.9(@types/debug@4.1.13)(@types/node@22.19.15)(@vitest/browser@3.0.6(@types/node@18.16.15)(playwright@1.58.2)(typescript@5.8.3)(vite@6.3.5(@types/node@18.16.15)(less@3.13.1)(lightningcss@1.31.1)(sass@1.98.0)(sugarss@5.0.1(postcss@8.4.38))(terser@5.46.1)(yaml@2.8.0))(vitest@3.0.9)(webdriverio@8.24.3(typescript@5.8.3)))(@vitest/ui@3.0.6(vitest@3.0.9))(happy-dom@9.20.3)(jsdom@22.1.0)(less@3.13.1)(lightningcss@1.31.1)(msw@2.12.14(@types/node@22.19.15)(typescript@5.8.3))(sass@1.98.0)(sugarss@5.0.1(postcss@8.5.8))(terser@5.46.1)(yaml@2.8.0) + vitest: 3.2.4(@types/debug@4.1.13)(@types/node@25.5.2)(@vitest/browser@3.2.4)(@vitest/ui@3.2.4)(happy-dom@9.20.3)(jsdom@22.1.0)(lightningcss@1.32.0)(msw@2.12.14(@types/node@25.5.2)(typescript@5.9.3))(sass@1.98.0)(sugarss@5.0.1(postcss@8.5.8))(terser@5.46.1)(yaml@2.8.3) - vitest@3.0.9(@types/debug@4.1.13)(@types/node@18.16.15)(@vitest/browser@3.0.6)(@vitest/ui@3.0.6)(happy-dom@9.20.3)(jsdom@22.1.0)(less@3.13.1)(lightningcss@1.31.1)(msw@2.12.14(@types/node@18.16.15)(typescript@5.8.3))(sass@1.98.0)(sugarss@5.0.1(postcss@8.4.38))(terser@5.46.1)(yaml@2.8.0): + vitest@3.2.4(@types/debug@4.1.13)(@types/node@25.5.2)(@vitest/browser@3.2.4)(@vitest/ui@3.2.4)(happy-dom@9.20.3)(jsdom@22.1.0)(lightningcss@1.32.0)(msw@2.12.14(@types/node@25.5.2)(typescript@5.9.3))(sass@1.98.0)(sugarss@5.0.1(postcss@8.5.8))(terser@5.46.1)(yaml@2.8.3): dependencies: - '@vitest/expect': 3.0.9 - '@vitest/mocker': 3.0.9(msw@2.12.14(@types/node@18.16.15)(typescript@5.8.3))(vite@6.3.5(@types/node@18.16.15)(less@3.13.1)(lightningcss@1.31.1)(sass@1.98.0)(sugarss@5.0.1(postcss@8.4.38))(terser@5.46.1)(yaml@2.8.0)) + '@types/chai': 5.2.3 + '@vitest/expect': 3.2.4 + '@vitest/mocker': 3.2.4(msw@2.12.14(@types/node@25.5.2)(typescript@5.9.3))(vite@7.3.2(@types/node@25.5.2)(lightningcss@1.32.0)(sass@1.98.0)(sugarss@5.0.1(postcss@8.5.8))(terser@5.46.1)(yaml@2.8.3)) '@vitest/pretty-format': 3.2.4 - '@vitest/runner': 3.0.9 - '@vitest/snapshot': 3.0.9 - '@vitest/spy': 3.0.9 - '@vitest/utils': 3.0.9 + '@vitest/runner': 3.2.4 + '@vitest/snapshot': 3.2.4 + '@vitest/spy': 3.2.4 + '@vitest/utils': 3.2.4 chai: 5.3.3 debug: 4.4.3 expect-type: 1.3.0 magic-string: 0.30.21 pathe: 2.0.3 + picomatch: 4.0.4 std-env: 3.10.0 tinybench: 2.9.0 tinyexec: 0.3.2 + tinyglobby: 0.2.15 tinypool: 1.1.1 tinyrainbow: 2.0.0 - vite: 6.3.5(@types/node@18.16.15)(less@3.13.1)(lightningcss@1.31.1)(sass@1.98.0)(sugarss@5.0.1(postcss@8.4.38))(terser@5.46.1)(yaml@2.8.0) - vite-node: 3.0.9(@types/node@18.16.15)(less@3.13.1)(lightningcss@1.31.1)(sass@1.98.0)(sugarss@5.0.1(postcss@8.4.38))(terser@5.46.1)(yaml@2.8.0) + vite: 7.3.2(@types/node@25.5.2)(lightningcss@1.32.0)(sass@1.98.0)(sugarss@5.0.1(postcss@8.5.8))(terser@5.46.1)(yaml@2.8.3) + vite-node: 3.2.4(@types/node@25.5.2)(lightningcss@1.32.0)(sass@1.98.0)(sugarss@5.0.1(postcss@8.5.8))(terser@5.46.1)(yaml@2.8.3) why-is-node-running: 2.3.0 optionalDependencies: '@types/debug': 4.1.13 - '@types/node': 18.16.15 - '@vitest/browser': 3.0.6(@types/node@18.16.15)(playwright@1.58.2)(typescript@5.8.3)(vite@6.3.5(@types/node@18.16.15)(less@3.13.1)(lightningcss@1.31.1)(sass@1.98.0)(sugarss@5.0.1(postcss@8.4.38))(terser@5.46.1)(yaml@2.8.0))(vitest@3.0.9)(webdriverio@8.24.3(typescript@5.8.3)) - '@vitest/ui': 3.0.6(vitest@3.0.9) + '@types/node': 25.5.2 + '@vitest/browser': 3.2.4(msw@2.12.14(@types/node@25.5.2)(typescript@5.9.3))(playwright@1.58.2)(vite@7.3.2(@types/node@25.5.2)(lightningcss@1.32.0)(sass@1.98.0)(sugarss@5.0.1(postcss@8.5.8))(terser@5.46.1)(yaml@2.8.3))(vitest@3.2.4)(webdriverio@8.24.3(typescript@5.9.3)) + '@vitest/ui': 3.2.4(vitest@3.2.4) happy-dom: 9.20.3 jsdom: 22.1.0 transitivePeerDependencies: @@ -29253,33 +29988,36 @@ snapshots: - tsx - yaml - vitest@3.0.9(@types/debug@4.1.13)(@types/node@22.19.15)(@vitest/browser@3.0.6(@types/node@18.16.15)(playwright@1.58.2)(typescript@5.8.3)(vite@6.3.5(@types/node@18.16.15)(less@3.13.1)(lightningcss@1.31.1)(sass@1.98.0)(sugarss@5.0.1(postcss@8.4.38))(terser@5.46.1)(yaml@2.8.0))(vitest@3.0.9)(webdriverio@8.24.3(typescript@5.8.3)))(@vitest/ui@3.0.6(vitest@3.0.9))(happy-dom@9.20.3)(jsdom@22.1.0)(less@3.13.1)(lightningcss@1.31.1)(msw@2.12.14(@types/node@22.19.15)(typescript@5.8.3))(sass@1.98.0)(sugarss@5.0.1(postcss@8.5.8))(terser@5.46.1)(yaml@2.8.0): + vitest@3.2.4(@types/debug@4.1.13)(@types/node@25.5.2)(@vitest/browser@3.2.4)(@vitest/ui@3.2.4)(happy-dom@9.20.3)(jsdom@22.1.0)(lightningcss@1.32.0)(msw@2.12.14(@types/node@25.5.2)(typescript@6.0.2))(sass@1.98.0)(sugarss@5.0.1(postcss@8.4.38))(terser@5.46.1)(yaml@2.8.3): dependencies: - '@vitest/expect': 3.0.9 - '@vitest/mocker': 3.0.9(msw@2.12.14(@types/node@22.19.15)(typescript@5.8.3))(vite@6.3.5(@types/node@22.19.15)(less@3.13.1)(lightningcss@1.31.1)(sass@1.98.0)(sugarss@5.0.1(postcss@8.5.8))(terser@5.46.1)(yaml@2.8.0)) + '@types/chai': 5.2.3 + '@vitest/expect': 3.2.4 + '@vitest/mocker': 3.2.4(msw@2.12.14(@types/node@25.5.2)(typescript@6.0.2))(vite@7.3.2(@types/node@25.5.2)(lightningcss@1.32.0)(sass@1.98.0)(sugarss@5.0.1(postcss@8.4.38))(terser@5.46.1)(yaml@2.8.3)) '@vitest/pretty-format': 3.2.4 - '@vitest/runner': 3.0.9 - '@vitest/snapshot': 3.0.9 - '@vitest/spy': 3.0.9 - '@vitest/utils': 3.0.9 + '@vitest/runner': 3.2.4 + '@vitest/snapshot': 3.2.4 + '@vitest/spy': 3.2.4 + '@vitest/utils': 3.2.4 chai: 5.3.3 debug: 4.4.3 expect-type: 1.3.0 magic-string: 0.30.21 pathe: 2.0.3 + picomatch: 4.0.4 std-env: 3.10.0 tinybench: 2.9.0 tinyexec: 0.3.2 + tinyglobby: 0.2.15 tinypool: 1.1.1 tinyrainbow: 2.0.0 - vite: 6.3.5(@types/node@22.19.15)(less@3.13.1)(lightningcss@1.31.1)(sass@1.98.0)(sugarss@5.0.1(postcss@8.5.8))(terser@5.46.1)(yaml@2.8.0) - vite-node: 3.0.9(@types/node@22.19.15)(less@3.13.1)(lightningcss@1.31.1)(sass@1.98.0)(sugarss@5.0.1(postcss@8.5.8))(terser@5.46.1)(yaml@2.8.0) + vite: 7.3.2(@types/node@25.5.2)(lightningcss@1.32.0)(sass@1.98.0)(sugarss@5.0.1(postcss@8.4.38))(terser@5.46.1)(yaml@2.8.3) + vite-node: 3.2.4(@types/node@25.5.2)(lightningcss@1.32.0)(sass@1.98.0)(sugarss@5.0.1(postcss@8.4.38))(terser@5.46.1)(yaml@2.8.3) why-is-node-running: 2.3.0 optionalDependencies: '@types/debug': 4.1.13 - '@types/node': 22.19.15 - '@vitest/browser': 3.0.6(@types/node@18.16.15)(playwright@1.58.2)(typescript@5.8.3)(vite@6.3.5(@types/node@18.16.15)(less@3.13.1)(lightningcss@1.31.1)(sass@1.98.0)(sugarss@5.0.1(postcss@8.4.38))(terser@5.46.1)(yaml@2.8.0))(vitest@3.0.9)(webdriverio@8.24.3(typescript@5.8.3)) - '@vitest/ui': 3.0.6(vitest@3.0.9) + '@types/node': 25.5.2 + '@vitest/browser': 3.2.4(msw@2.12.14(@types/node@25.5.2)(typescript@6.0.2))(playwright@1.58.2)(vite@7.3.2(@types/node@25.5.2)(lightningcss@1.32.0)(sass@1.98.0)(sugarss@5.0.1(postcss@8.4.38))(terser@5.46.1)(yaml@2.8.3))(vitest@3.2.4)(webdriverio@8.24.3(typescript@6.0.2)) + '@vitest/ui': 3.2.4(vitest@3.2.4) happy-dom: 9.20.3 jsdom: 22.1.0 transitivePeerDependencies: @@ -29298,19 +30036,19 @@ snapshots: vlq@1.0.1: {} - vue-demi@0.14.10(vue@3.5.31(typescript@5.9.3)): + vue-demi@0.14.10(vue@3.5.31(typescript@6.0.2)): dependencies: - vue: 3.5.31(typescript@5.9.3) + vue: 3.5.31(typescript@6.0.2) - vue@3.5.31(typescript@5.9.3): + vue@3.5.31(typescript@6.0.2): dependencies: '@vue/compiler-dom': 3.5.31 '@vue/compiler-sfc': 3.5.31 '@vue/runtime-dom': 3.5.31 - '@vue/server-renderer': 3.5.31(vue@3.5.31(typescript@5.9.3)) + '@vue/server-renderer': 3.5.31(vue@3.5.31(typescript@6.0.2)) '@vue/shared': 3.5.31 optionalDependencies: - typescript: 5.9.3 + typescript: 6.0.2 w3c-xmlserializer@4.0.0: dependencies: @@ -29362,7 +30100,44 @@ snapshots: - supports-color - utf-8-validate - webdriverio@8.24.3(typescript@5.8.3): + webdriverio@8.24.3(typescript@5.9.3): + dependencies: + '@types/node': 20.19.37 + '@wdio/config': 8.24.3 + '@wdio/logger': 8.16.17 + '@wdio/protocols': 8.23.0 + '@wdio/repl': 8.23.1 + '@wdio/types': 8.24.2 + '@wdio/utils': 8.24.3 + archiver: 6.0.2 + aria-query: 5.3.2 + css-shorthand-properties: 1.1.2 + css-value: 0.0.1 + devtools-protocol: 0.0.1213968 + grapheme-splitter: 1.0.4 + import-meta-resolve: 3.1.1 + is-plain-obj: 4.1.0 + lodash.clonedeep: 4.5.0 + lodash.zip: 4.2.0 + minimatch: 9.0.9 + puppeteer-core: 20.9.0(typescript@5.9.3) + query-selector-shadow-dom: 1.0.1 + resq: 1.11.0 + rgb2hex: 0.2.5 + serialize-error: 11.0.3 + webdriver: 8.24.3 + transitivePeerDependencies: + - bare-abort-controller + - bare-buffer + - bufferutil + - encoding + - react-native-b4a + - supports-color + - typescript + - utf-8-validate + optional: true + + webdriverio@8.24.3(typescript@6.0.2): dependencies: '@types/node': 20.19.37 '@wdio/config': 8.24.3 @@ -29382,7 +30157,7 @@ snapshots: lodash.clonedeep: 4.5.0 lodash.zip: 4.2.0 minimatch: 9.0.9 - puppeteer-core: 20.9.0(typescript@5.8.3) + puppeteer-core: 20.9.0(typescript@6.0.2) query-selector-shadow-dom: 1.0.1 resq: 1.11.0 rgb2hex: 0.2.5 @@ -29402,7 +30177,7 @@ snapshots: webidl-conversions@7.0.0: {} - webpack-dev-middleware@7.4.5(tslib@2.8.1)(webpack@5.105.4(esbuild@0.14.29)): + webpack-dev-middleware@7.4.5(tslib@2.8.1)(webpack@5.105.4(esbuild@0.28.0)): dependencies: colorette: 2.0.20 memfs: 4.57.1(tslib@2.8.1) @@ -29411,11 +30186,11 @@ snapshots: range-parser: 1.2.1 schema-utils: 4.3.3 optionalDependencies: - webpack: 5.105.4(esbuild@0.14.29) + webpack: 5.105.4(esbuild@0.28.0) transitivePeerDependencies: - tslib - webpack-dev-server@5.2.3(tslib@2.8.1)(webpack@5.105.4(esbuild@0.14.29)): + webpack-dev-server@5.2.3(tslib@2.8.1)(webpack@5.105.4(esbuild@0.28.0)): dependencies: '@types/bonjour': 3.5.13 '@types/connect-history-api-fallback': 1.5.4 @@ -29443,10 +30218,10 @@ snapshots: serve-index: 1.9.2 sockjs: 0.3.24 spdy: 4.0.2 - webpack-dev-middleware: 7.4.5(tslib@2.8.1)(webpack@5.105.4(esbuild@0.14.29)) + webpack-dev-middleware: 7.4.5(tslib@2.8.1)(webpack@5.105.4(esbuild@0.28.0)) ws: 8.20.0 optionalDependencies: - webpack: 5.105.4(esbuild@0.14.29) + webpack: 5.105.4(esbuild@0.28.0) transitivePeerDependencies: - bufferutil - debug @@ -29466,7 +30241,7 @@ snapshots: webpack-virtual-modules@0.6.2: {} - webpack@5.105.4(esbuild@0.14.29): + webpack@5.105.4(esbuild@0.28.0): dependencies: '@types/eslint-scope': 3.7.7 '@types/estree': 1.0.8 @@ -29490,7 +30265,7 @@ snapshots: neo-async: 2.6.2 schema-utils: 4.3.3 tapable: 2.3.2 - terser-webpack-plugin: 5.4.0(esbuild@0.14.29)(webpack@5.105.4(esbuild@0.14.29)) + terser-webpack-plugin: 5.4.0(esbuild@0.28.0)(webpack@5.105.4(esbuild@0.28.0)) watchpack: 2.5.1 webpack-sources: 3.3.4 transitivePeerDependencies: @@ -29685,7 +30460,7 @@ snapshots: yaml@1.10.3: {} - yaml@2.8.0: {} + yaml@2.8.3: {} yargs-parser@18.1.3: dependencies: @@ -29762,7 +30537,8 @@ snapshots: yocto-queue@1.2.2: {} - yoctocolors-cjs@2.1.3: {} + yoctocolors-cjs@2.1.3: + optional: true yoctocolors@2.1.2: {} diff --git a/pnpm-workspace.yaml b/pnpm-workspace.yaml index 90bc88a999..faa842031c 100644 --- a/pnpm-workspace.yaml +++ b/pnpm-workspace.yaml @@ -1,7 +1,6 @@ packages: - 'semcore/*' - 'tools/*' - - '!tools/@types' - 'website' - 'stories' - vite-project diff --git a/semcore/accordion/tsconfig.json b/semcore/accordion/tsconfig.json index 1d8ac6ce6a..ddb8b6811a 100644 --- a/semcore/accordion/tsconfig.json +++ b/semcore/accordion/tsconfig.json @@ -1,4 +1,7 @@ { "extends": "../../tsconfig.json", - "include": ["src", "lib"] + "include": ["src/**/*.ts", "src/**/*.tsx", "src/**/*.json"], + "compilerOptions": { + "rootDir": "./src" + } } diff --git a/semcore/add-filter/tsconfig.json b/semcore/add-filter/tsconfig.json index 1d8ac6ce6a..ddb8b6811a 100644 --- a/semcore/add-filter/tsconfig.json +++ b/semcore/add-filter/tsconfig.json @@ -1,4 +1,7 @@ { "extends": "../../tsconfig.json", - "include": ["src", "lib"] + "include": ["src/**/*.ts", "src/**/*.tsx", "src/**/*.json"], + "compilerOptions": { + "rootDir": "./src" + } } diff --git a/semcore/badge/__tests__/index.test.tsx b/semcore/badge/__tests__/index.test.tsx index c400e100aa..6f1fabf208 100644 --- a/semcore/badge/__tests__/index.test.tsx +++ b/semcore/badge/__tests__/index.test.tsx @@ -12,7 +12,7 @@ describe('Badge Dependency imports', () => { describe('Badge deprecation warnings', () => { beforeEach(cleanup); - let consoleWarnSpy: ReturnType; + let consoleWarnSpy: ReturnType>; beforeEach(() => { consoleWarnSpy = vi.spyOn(console, 'warn').mockImplementation(() => { }); diff --git a/semcore/badge/tsconfig.json b/semcore/badge/tsconfig.json index 1d8ac6ce6a..ddb8b6811a 100644 --- a/semcore/badge/tsconfig.json +++ b/semcore/badge/tsconfig.json @@ -1,4 +1,7 @@ { "extends": "../../tsconfig.json", - "include": ["src", "lib"] + "include": ["src/**/*.ts", "src/**/*.tsx", "src/**/*.json"], + "compilerOptions": { + "rootDir": "./src" + } } diff --git a/semcore/base-components/src/components/popper/Popper.tsx b/semcore/base-components/src/components/popper/Popper.tsx index 91cced380f..94152bcb1f 100644 --- a/semcore/base-components/src/components/popper/Popper.tsx +++ b/semcore/base-components/src/components/popper/Popper.tsx @@ -12,7 +12,8 @@ import canUseDOM from '@semcore/core/lib/utils/canUseDOM'; import { hasParent } from '@semcore/core/lib/utils/hasParent'; import logger from '@semcore/core/lib/utils/logger'; import pick from '@semcore/core/lib/utils/pick'; -import { setRef, forkRef } from '@semcore/core/lib/utils/ref'; +import { forkRef } from '@semcore/core/lib/utils/ref'; +import setRef from '@semcore/core/lib/utils/setRef'; import { useContextTheme } from '@semcore/core/lib/utils/ThemeProvider'; import uniqueIDEnhancement from '@semcore/core/lib/utils/uniqueID'; import { diff --git a/semcore/base-components/tsconfig.json b/semcore/base-components/tsconfig.json index 596e2cf729..a551c16819 100644 --- a/semcore/base-components/tsconfig.json +++ b/semcore/base-components/tsconfig.json @@ -1,4 +1,7 @@ { "extends": "../../tsconfig.json", - "include": ["src"] + "compilerOptions": { + "rootDir": "./src" + }, + "include": ["src/**/*.ts", "src/**/*.tsx", "src/**/*.json"] } diff --git a/semcore/base-trigger/__tests__/index.test.tsx b/semcore/base-trigger/__tests__/index.test.tsx index b1e0a2ef88..a2dc1caa50 100644 --- a/semcore/base-trigger/__tests__/index.test.tsx +++ b/semcore/base-trigger/__tests__/index.test.tsx @@ -1,7 +1,7 @@ import * as sharedTests from '@semcore/testing-utils/shared-tests'; import { runDependencyCheckTests } from '@semcore/testing-utils/shared-tests'; import { cleanup, render, userEvent } from '@semcore/testing-utils/testing-library'; -import { test, describe, beforeEach } from '@semcore/testing-utils/vitest'; +import { expect, test, describe, beforeEach } from '@semcore/testing-utils/vitest'; import React from 'react'; import BaseTrigger, { ButtonTrigger, FilterTrigger, LinkTrigger } from '../src'; @@ -25,7 +25,7 @@ describe('ButtonTrigger', () => { shouldSupportClassName(ButtonTrigger); shouldSupportRef(ButtonTrigger); - test.concurrent('Should work as button with labels', async ({ expect }) => { + test.concurrent('Should work as button with labels', async () => { const component = ( <>