diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 276a3e8be65..d9f48e4a953 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -19,6 +19,7 @@ permissions: jobs: post-update: + if: github.repository == 'vbenjs/vue-vben-admin' # if: ${{ github.actor == 'dependabot[bot]' }} runs-on: ${{ matrix.os }} strategy: diff --git a/.github/workflows/changeset-version.yml b/.github/workflows/changeset-version.yml index 4e85cd67d2f..373d9af27b1 100644 --- a/.github/workflows/changeset-version.yml +++ b/.github/workflows/changeset-version.yml @@ -18,7 +18,7 @@ env: jobs: version: - if: (github.event.pull_request.merged || github.event_name == 'workflow_dispatch') && github.actor != 'dependabot[bot]' && !contains(github.event.head_commit.message, '[skip ci]') + if: (github.event.pull_request.merged || github.event_name == 'workflow_dispatch') && github.actor != 'dependabot[bot]' && !contains(github.event.head_commit.message, '[skip ci]') && github.repository == 'vbenjs/vue-vben-admin' # if: github.repository == 'vbenjs/vue-vben-admin' timeout-minutes: 15 runs-on: ubuntu-latest diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e4fc70f687a..00750949337 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -17,6 +17,7 @@ env: jobs: test: name: Test + if: github.repository == 'vbenjs/vue-vben-admin' runs-on: ${{ matrix.os }} strategy: matrix: @@ -55,6 +56,7 @@ jobs: lint: name: Lint + if: github.repository == 'vbenjs/vue-vben-admin' runs-on: ${{ matrix.os }} strategy: matrix: @@ -77,6 +79,7 @@ jobs: check: name: Check + if: github.repository == 'vbenjs/vue-vben-admin' runs-on: ${{ matrix.os }} timeout-minutes: 20 strategy: @@ -106,6 +109,7 @@ jobs: ci-ok: name: CI OK + if: github.repository == 'vbenjs/vue-vben-admin' runs-on: ubuntu-latest needs: [test, check, lint] env: diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml index 53765ba6aa4..69a990f0543 100644 --- a/.github/workflows/codeql.yml +++ b/.github/workflows/codeql.yml @@ -22,6 +22,7 @@ on: jobs: analyze: name: Analyze (${{ matrix.language }}) + if: github.repository == 'vbenjs/vue-vben-admin' # Runner size impacts CodeQL analysis time. To learn more, please see: # - https://gh.io/recommended-hardware-resources-for-running-codeql # - https://gh.io/supported-runners-and-hardware-resources diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 5ddc14d676d..533a87c3a93 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -8,7 +8,7 @@ on: jobs: deploy-playground-ftp: name: Deploy Push Playground Ftp - if: github.actor != 'dependabot[bot]' && !contains(github.event.head_commit.message, '[skip ci]') + if: github.actor != 'dependabot[bot]' && !contains(github.event.head_commit.message, '[skip ci]') && github.repository == 'vbenjs/vue-vben-admin' runs-on: ubuntu-latest steps: - name: Checkout code @@ -39,7 +39,7 @@ jobs: deploy-docs-ftp: name: Deploy Push Docs Ftp - if: github.actor != 'dependabot[bot]' && !contains(github.event.head_commit.message, '[skip ci]') + if: github.actor != 'dependabot[bot]' && !contains(github.event.head_commit.message, '[skip ci]') && github.repository == 'vbenjs/vue-vben-admin' runs-on: ubuntu-latest steps: - name: Checkout code @@ -63,7 +63,7 @@ jobs: deploy-antd-ftp: name: Deploy Push Antd Ftp - if: github.actor != 'dependabot[bot]' && !contains(github.event.head_commit.message, '[skip ci]') + if: github.actor != 'dependabot[bot]' && !contains(github.event.head_commit.message, '[skip ci]') && github.repository == 'vbenjs/vue-vben-admin' runs-on: ubuntu-latest steps: - name: Checkout code @@ -94,7 +94,7 @@ jobs: deploy-ele-ftp: name: Deploy Push Element Ftp - if: github.actor != 'dependabot[bot]' && !contains(github.event.head_commit.message, '[skip ci]') + if: github.actor != 'dependabot[bot]' && !contains(github.event.head_commit.message, '[skip ci]') && github.repository == 'vbenjs/vue-vben-admin' runs-on: ubuntu-latest steps: - name: Checkout code @@ -125,7 +125,7 @@ jobs: deploy-naive-ftp: name: Deploy Push Naive Ftp - if: github.actor != 'dependabot[bot]' && !contains(github.event.head_commit.message, '[skip ci]') + if: github.actor != 'dependabot[bot]' && !contains(github.event.head_commit.message, '[skip ci]') && github.repository == 'vbenjs/vue-vben-admin' runs-on: ubuntu-latest steps: - name: Checkout code diff --git a/.github/workflows/draft.yml b/.github/workflows/draft.yml index a3334aa992f..20b4148a7be 100644 --- a/.github/workflows/draft.yml +++ b/.github/workflows/draft.yml @@ -17,6 +17,7 @@ jobs: # write permission is required for autolabeler # otherwise, read permission is required at least pull-requests: write + if: github.repository == 'vbenjs/vue-vben-admin' runs-on: ubuntu-latest steps: - uses: release-drafter/release-drafter@v6 diff --git a/.github/workflows/issue-close-require.yml b/.github/workflows/issue-close-require.yml index 3c7ad8e6169..18c007bfded 100644 --- a/.github/workflows/issue-close-require.yml +++ b/.github/workflows/issue-close-require.yml @@ -3,23 +3,29 @@ name: Issue Close Require # 触发条件:每天零点 on: + workflow_dispatch: schedule: - cron: '0 0 * * *' permissions: pull-requests: write contents: write + issues: write jobs: close-issues: + if: github.repository == 'vbenjs/vue-vben-admin' runs-on: ubuntu-latest - steps: - # 步骤1:关闭未活动的 Issues + # 关闭未活动的 Issues - name: Close Inactive Issues - uses: actions-cool/issues-helper@v3 + uses: actions/stale@v9 with: - actions: 'close-issues' # 执行动作:关闭 Issues - token: ${{ secrets.GITHUB_TOKEN }} # GitHub Token,用于认证 - labels: 'needs reproduction' # 目标标签 - inactive-day: 3 # 未活动天数阈值 + days-before-stale: -1 # Issues and PR will never be flagged stale automatically. + stale-issue-label: needs-reproduction # Label that flags an issue as stale. + only-labels: needs-reproduction # Only process these issues + days-before-issue-close: 3 + ignore-updates: true + remove-stale-when-updated: false + close-issue-message: This issue was closed because it was open for 3 days without a valid reproduction. + close-issue-label: closed-by-action diff --git a/.github/workflows/issue-labeled.yml b/.github/workflows/issue-labeled.yml index c0010c7b4f0..2feda4ef77a 100644 --- a/.github/workflows/issue-labeled.yml +++ b/.github/workflows/issue-labeled.yml @@ -13,6 +13,7 @@ permissions: jobs: reply-labeled: + if: github.repository == 'vbenjs/vue-vben-admin' runs-on: ubuntu-latest steps: - name: remove enhancement pending diff --git a/.github/workflows/lock.yml b/.github/workflows/lock.yml index c16764ad45b..bd73d5331de 100644 --- a/.github/workflows/lock.yml +++ b/.github/workflows/lock.yml @@ -11,12 +11,13 @@ permissions: jobs: action: + if: github.repository == 'vbenjs/vue-vben-admin' runs-on: ubuntu-latest steps: - uses: dessant/lock-threads@v5 with: github-token: ${{ secrets.GITHUB_TOKEN }} - issue-inactive-days: '30' + issue-inactive-days: '14' issue-lock-reason: '' pr-inactive-days: '30' pr-lock-reason: '' diff --git a/.github/workflows/release-tag.yml b/.github/workflows/release-tag.yml index 794bac9704f..7f524f908f4 100644 --- a/.github/workflows/release-tag.yml +++ b/.github/workflows/release-tag.yml @@ -15,6 +15,7 @@ permissions: jobs: build: name: Create Release + if: github.repository == 'vbenjs/vue-vben-admin' runs-on: ubuntu-latest strategy: matrix: diff --git a/.github/workflows/semantic-pull-request.yml b/.github/workflows/semantic-pull-request.yml index 7c5af0b7ab4..db8e9e091ea 100644 --- a/.github/workflows/semantic-pull-request.yml +++ b/.github/workflows/semantic-pull-request.yml @@ -9,8 +9,9 @@ on: jobs: main: - runs-on: ubuntu-latest name: Semantic Pull Request + if: github.repository == 'vbenjs/vue-vben-admin' + runs-on: ubuntu-latest steps: - name: Validate PR title uses: amannn/action-semantic-pull-request@v5 diff --git a/.github/workflows/stale.yml b/.github/workflows/stale.yml index 86f7ee62c90..991e1331dfa 100644 --- a/.github/workflows/stale.yml +++ b/.github/workflows/stale.yml @@ -6,6 +6,7 @@ on: jobs: stale: + if: github.repository == 'vbenjs/vue-vben-admin' runs-on: ubuntu-latest steps: - uses: actions/stale@v9 diff --git a/apps/web-antd/src/api/core/auth.ts b/apps/web-antd/src/api/core/auth.ts index a40ff0a1398..53b8366df96 100644 --- a/apps/web-antd/src/api/core/auth.ts +++ b/apps/web-antd/src/api/core/auth.ts @@ -10,10 +10,6 @@ export namespace AuthApi { /** 登录接口返回值 */ export interface LoginResult { accessToken: string; - desc: string; - realName: string; - userId: string; - username: string; } export interface RefreshTokenResult { diff --git a/apps/web-antd/src/api/request.ts b/apps/web-antd/src/api/request.ts index 101fb5eb2d5..9bf886c1676 100644 --- a/apps/web-antd/src/api/request.ts +++ b/apps/web-antd/src/api/request.ts @@ -1,6 +1,8 @@ /** * 该文件可自行根据业务逻辑进行调整 */ +import type { HttpResponse } from '@vben/request'; + import { useAppConfig } from '@vben/hooks'; import { preferences } from '@vben/preferences'; import { @@ -68,7 +70,7 @@ function createRequestClient(baseURL: string) { }); // response数据解构 - client.addResponseInterceptor({ + client.addResponseInterceptor({ fulfilled: (response) => { const { data: responseData, status } = response; diff --git a/apps/web-ele/src/api/core/auth.ts b/apps/web-ele/src/api/core/auth.ts index a40ff0a1398..53b8366df96 100644 --- a/apps/web-ele/src/api/core/auth.ts +++ b/apps/web-ele/src/api/core/auth.ts @@ -10,10 +10,6 @@ export namespace AuthApi { /** 登录接口返回值 */ export interface LoginResult { accessToken: string; - desc: string; - realName: string; - userId: string; - username: string; } export interface RefreshTokenResult { diff --git a/apps/web-ele/src/api/request.ts b/apps/web-ele/src/api/request.ts index 639b75c61c2..939735f1971 100644 --- a/apps/web-ele/src/api/request.ts +++ b/apps/web-ele/src/api/request.ts @@ -1,6 +1,8 @@ /** * 该文件可自行根据业务逻辑进行调整 */ +import type { HttpResponse } from '@vben/request'; + import { useAppConfig } from '@vben/hooks'; import { preferences } from '@vben/preferences'; import { @@ -68,7 +70,7 @@ function createRequestClient(baseURL: string) { }); // response数据解构 - client.addResponseInterceptor({ + client.addResponseInterceptor({ fulfilled: (response) => { const { data: responseData, status } = response; diff --git a/apps/web-naive/src/api/core/auth.ts b/apps/web-naive/src/api/core/auth.ts index a40ff0a1398..53b8366df96 100644 --- a/apps/web-naive/src/api/core/auth.ts +++ b/apps/web-naive/src/api/core/auth.ts @@ -10,10 +10,6 @@ export namespace AuthApi { /** 登录接口返回值 */ export interface LoginResult { accessToken: string; - desc: string; - realName: string; - userId: string; - username: string; } export interface RefreshTokenResult { diff --git a/apps/web-naive/src/api/request.ts b/apps/web-naive/src/api/request.ts index 55236ca4610..ac0b722c9b6 100644 --- a/apps/web-naive/src/api/request.ts +++ b/apps/web-naive/src/api/request.ts @@ -1,6 +1,8 @@ /** * 该文件可自行根据业务逻辑进行调整 */ +import type { HttpResponse } from '@vben/request'; + import { useAppConfig } from '@vben/hooks'; import { preferences } from '@vben/preferences'; import { @@ -67,7 +69,7 @@ function createRequestClient(baseURL: string) { }); // response数据解构 - client.addResponseInterceptor({ + client.addResponseInterceptor({ fulfilled: (response) => { const { data: responseData, status } = response; diff --git a/docs/src/en/guide/essentials/server.md b/docs/src/en/guide/essentials/server.md index 53ce1e436d5..4a31f93640e 100644 --- a/docs/src/en/guide/essentials/server.md +++ b/docs/src/en/guide/essentials/server.md @@ -163,6 +163,8 @@ The `src/api/request.ts` within the application can be configured according to t /** * This file can be adjusted according to business logic */ +import type { HttpResponse } from '@vben/request'; + import { useAppConfig } from '@vben/hooks'; import { preferences } from '@vben/preferences'; import { @@ -227,7 +229,7 @@ function createRequestClient(baseURL: string) { }); // Deal Response Data - client.addResponseInterceptor({ + client.addResponseInterceptor({ fulfilled: (response) => { const { data: responseData, status } = response; @@ -253,7 +255,10 @@ function createRequestClient(baseURL: string) { // Generic error handling; if none of the above error handling logic is triggered, it will fall back to this. client.addResponseInterceptor( - errorMessageResponseInterceptor((msg: string) => message.error(msg)), + errorMessageResponseInterceptor((msg: string, _error) => { + // 这里可以根据业务进行定制,你可以拿到 error 内的信息进行定制化处理,根据不同的 code 做不同的提示,而不是直接使用 message.error 提示 msg + message.error(msg); + }), ); return client; diff --git a/docs/src/en/guide/in-depth/login.md b/docs/src/en/guide/in-depth/login.md index f0ca41be444..7fdac2c6f4d 100644 --- a/docs/src/en/guide/in-depth/login.md +++ b/docs/src/en/guide/in-depth/login.md @@ -37,8 +37,6 @@ If you want to adjust the content of the login form, you can configure the `Auth ```vue ``` diff --git a/docs/src/guide/essentials/server.md b/docs/src/guide/essentials/server.md index 16d7957d505..aa0767f54f0 100644 --- a/docs/src/guide/essentials/server.md +++ b/docs/src/guide/essentials/server.md @@ -163,6 +163,8 @@ export async function deleteUserApi(user: UserInfo) { /** * 该文件可自行根据业务逻辑进行调整 */ +import type { HttpResponse } from '@vben/request'; + import { useAppConfig } from '@vben/hooks'; import { preferences } from '@vben/preferences'; import { @@ -230,7 +232,7 @@ function createRequestClient(baseURL: string) { }); // response数据解构 - client.addResponseInterceptor({ + client.addResponseInterceptor({ fulfilled: (response) => { const { data: responseData, status } = response; @@ -256,7 +258,10 @@ function createRequestClient(baseURL: string) { // 通用的错误处理,如果没有进入上面的错误处理逻辑,就会进入这里 client.addResponseInterceptor( - errorMessageResponseInterceptor((msg: string) => message.error(msg)), + errorMessageResponseInterceptor((msg: string, _error) => { + // 这里可以根据业务进行定制,你可以拿到 error 内的信息进行定制化处理,根据不同的 code 做不同的提示,而不是直接使用 message.error 提示 msg + message.error(msg); + }), ); return client; diff --git a/docs/src/guide/in-depth/login.md b/docs/src/guide/in-depth/login.md index 81d2941850d..adb89b75d8f 100644 --- a/docs/src/guide/in-depth/login.md +++ b/docs/src/guide/in-depth/login.md @@ -1,10 +1,14 @@ +--- +outline: deep +--- + # 登录 -本文介绍如何去改造自己的应用程序登录页。 +本文介绍如何去改造自己的应用程序登录页以及如何快速的对接登录页面接口。 ## 登录页面调整 -如果你想调整登录页面的标题、描述和图标以及工具栏,你可以通过配置 `AuthPageLayout` 组件的 `props` 参数来实现。 +如果你想调整登录页面的标题、描述和图标以及工具栏,你可以通过配置 `AuthPageLayout` 组件的参数来实现。 ![login](/guide/login.png) @@ -30,8 +34,6 @@ ```vue ``` @@ -108,8 +110,111 @@ ::: -::: tip +::: tip Note -如果这些配置不能满足你的需求,你可以自行实现登录表单及相关登录逻辑。 +如果这些配置不能满足你的需求,你可以自行实现登录表单及相关登录逻辑或者给我们提交 `PR`。 ::: + +## 接口对接流程 + +这里将会快速的介绍如何快速对接自己的后端。 + +### 前置条件 + +- 首先文档用的后端服务,接口返回的格式统一如下: + +```ts +interface HttpResponse { + /** + * 0 表示成功 其他表示失败 + * 0 means success, others means fail + */ + code: number; + data: T; + message: string; +} +``` + +如果你不符合这个格式,你需要先阅读 [服务端交互](../essentials/server.md) 文档,改造你的`request.ts`配置。 + +- 其次你需要在先将本地代理地址改为你的真实后端地址,你可以在应用下的 `vite.config.mts` 内配置: + +```ts +import { defineConfig } from '@vben/vite-config'; + +export default defineConfig(async () => { + return { + vite: { + server: { + proxy: { + '/api': { + changeOrigin: true, + rewrite: (path) => path.replace(/^\/api/, ''), + // 这里改为你的真实接口地址 + target: 'http://localhost:5320/api', + ws: true, + }, + }, + }, + }, + }; +}); +``` + +### 登录接口 + +为了能正常登录,你的后端最少需要提供 `2-3` 个接口: + +- 登录接口 + +接口地址可在应用下的 `src/api/core/auth` 内修改,以下为默认接口地址: + +```ts +/** + * 登录 + */ +export async function loginApi(data: AuthApi.LoginParams) { + return requestClient.post('/auth/login', data); +} + +/** 只需要保证登录接口返回值有 `accessToken` 字段即可 */ +export interface LoginResult { + accessToken: string; +} +``` + +- 获取用户信息接口 + +接口地址可在应用下的 `src/api/core/user` 内修改,以下为默认接口地址: + +```ts +export async function getUserInfoApi() { + return requestClient.get('/user/info'); +} + +/** 只需要保证登录接口返回值有以下字段即可,多的字段可以自行使用 */ +export interface UserInfo { + roles: string[]; + realName: string; +} +``` + +- 获取权限码 (可选) + +这个接口用于获取用户的权限码,权限码是用于控制用户的权限的,接口地址可在应用下的 `src/api/core/auth` 内修改,以下为默认接口地址: + +```ts +export async function getAccessCodesApi() { + return requestClient.get('/auth/codes'); +} +``` + +如果你不需要这个权限,你只需要把代码改为返回一个空数组即可。 + +```ts {2} +export async function getAccessCodesApi() { + // 这里返回一个空数组即可 + return []; +} +``` diff --git a/docs/src/guide/introduction/thin.md b/docs/src/guide/introduction/thin.md index 523c6f8de83..a2c41e124dc 100644 --- a/docs/src/guide/introduction/thin.md +++ b/docs/src/guide/introduction/thin.md @@ -1,3 +1,7 @@ +--- +outline: deep +--- + # 精简版本 从 `5.0` 版本开始,我们不再提供精简的仓库或者分支。我们的目标是提供一个更加一致的开发体验,同时减少维护成本。在这里,我们将如何介绍自己的项目,如何去精简以及移除不需要的功能。 @@ -74,3 +78,17 @@ pnpm install - `.github` 文件夹用于存放 GitHub 的配置文件 - `.vscode` 文件夹用于存放 VSCode 的配置文件,如果你使用其他编辑器,可以删除 - `./scripts/deploy` 文件夹用于存放部署脚本,如果你不需要docker部署,可以删除 + +## 应用精简 + +当你确定了某个应用,你还可以进一步精简: + +### 删除不需要的路由及页面 + +- 在应用的 `src/router/routes` 文件中,你可以删除不需要的路由。其中 `core` 文件夹内,如果只需要登录和忘记密码,你可以删除其他路由,如忘记密码、注册等。路由删除后,你可以删除对应的页面文件,在 `src/views/_core` 文件夹中。 + +- 在应用的 `src/router/routes` 文件中,你可以按需求删除不需要的路由,如`demos`、`vben` 目录等。路由删除后,你可以删除对应的页面文件,在 `src/views` 文件夹中。 + +### 删除不需要的组件 + +- 在应用的 `packages/effects/common-ui/src/ui` 文件夹中,你可以删除不需要的组件,如`about`、`dashboard` 目录等。删除之前请先确保你的路由中没有引用到这些组件。 diff --git a/package.json b/package.json index bf01c13c40b..6636b89e6fc 100644 --- a/package.json +++ b/package.json @@ -110,7 +110,7 @@ "@ctrl/tinycolor": "4.1.0", "clsx": "2.1.1", "pinia": "2.2.2", - "vue": "3.5.7" + "vue": "3.5.8" }, "neverBuiltDependencies": [ "canvas", diff --git a/packages/@core/preferences/__tests__/preferences.test.ts b/packages/@core/preferences/__tests__/preferences.test.ts index 37657d89f77..da96d1ebe23 100644 --- a/packages/@core/preferences/__tests__/preferences.test.ts +++ b/packages/@core/preferences/__tests__/preferences.test.ts @@ -30,30 +30,30 @@ describe('preferences', () => { expect(preferences).toEqual(defaultPreferences); }); - it('initializes preferences with overrides', async () => { - const overrides: any = { - app: { - locale: 'en-US', - }, - }; - await preferenceManager.initPreferences({ - namespace: 'testNamespace', - overrides, - }); - - // 等待防抖动操作完成 - // await new Promise((resolve) => setTimeout(resolve, 300)); // 等待100毫秒 - - const expected = { - ...defaultPreferences, - app: { - ...defaultPreferences.app, - ...overrides.app, - }, - }; - - expect(preferenceManager.getPreferences()).toEqual(expected); - }); + // it('initializes preferences with overrides', async () => { + // const overrides: any = { + // app: { + // locale: 'en-US', + // }, + // }; + // await preferenceManager.initPreferences({ + // namespace: 'testNamespace', + // overrides, + // }); + + // // 等待防抖动操作完成 + // // await new Promise((resolve) => setTimeout(resolve, 300)); // 等待100毫秒 + + // const expected = { + // ...defaultPreferences, + // app: { + // ...defaultPreferences.app, + // ...overrides.app, + // }, + // }; + + // expect(preferenceManager.getPreferences()).toEqual(expected); + // }); it('updates theme mode correctly', () => { preferenceManager.updatePreferences({ diff --git a/packages/@core/preferences/src/preferences.ts b/packages/@core/preferences/src/preferences.ts index 7c1843f8c73..ef130a4a91b 100644 --- a/packages/@core/preferences/src/preferences.ts +++ b/packages/@core/preferences/src/preferences.ts @@ -171,8 +171,9 @@ class PreferenceManager { // 加载并合并当前存储的偏好设置 const mergedPreference = merge( {}, - overrides, + // overrides, this.loadCachedPreferences() || defaultPreferences, + this.initialPreferences, ); // 更新偏好设置 diff --git a/packages/effects/common-ui/src/components/captcha/slider-captcha/index.vue b/packages/effects/common-ui/src/components/captcha/slider-captcha/index.vue index e48d98f023c..fa43493e21f 100644 --- a/packages/effects/common-ui/src/components/captcha/slider-captcha/index.vue +++ b/packages/effects/common-ui/src/components/captcha/slider-captcha/index.vue @@ -154,7 +154,7 @@ function handleDragOver(e: MouseEvent | TouchEvent) { resume(); } } else { - actionEl.setLeft(`${wrapperWidth - actionWidth + 10}px`); + actionEl.setLeft(`${wrapperWidth - actionWidth}px`); barEl.setWidth(`${wrapperWidth - actionWidth / 2}px`); checkPass(); } diff --git a/playground/src/api/core/auth.ts b/playground/src/api/core/auth.ts index a40ff0a1398..53b8366df96 100644 --- a/playground/src/api/core/auth.ts +++ b/playground/src/api/core/auth.ts @@ -10,10 +10,6 @@ export namespace AuthApi { /** 登录接口返回值 */ export interface LoginResult { accessToken: string; - desc: string; - realName: string; - userId: string; - username: string; } export interface RefreshTokenResult { diff --git a/playground/src/api/request.ts b/playground/src/api/request.ts index 7952def2bce..09be6a9a88f 100644 --- a/playground/src/api/request.ts +++ b/playground/src/api/request.ts @@ -1,6 +1,8 @@ /** * 该文件可自行根据业务逻辑进行调整 */ +import type { HttpResponse } from '@vben/request'; + import { useAppConfig } from '@vben/hooks'; import { preferences } from '@vben/preferences'; import { @@ -68,7 +70,7 @@ function createRequestClient(baseURL: string) { }); // response数据解构 - client.addResponseInterceptor({ + client.addResponseInterceptor({ fulfilled: (response) => { const { data: responseData, status } = response; diff --git a/playground/src/preferences.ts b/playground/src/preferences.ts index 1e7ab05ef3c..63edb3a9be3 100644 --- a/playground/src/preferences.ts +++ b/playground/src/preferences.ts @@ -9,5 +9,4 @@ export const overridesPreferences = defineOverridesPreferences({ app: { name: import.meta.env.VITE_APP_TITLE, }, - theme: {}, }); diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 2bbc7157b5e..125d7865aad 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -25,8 +25,8 @@ catalogs: specifier: ^19.5.0 version: 19.5.0 '@eslint/js': - specifier: ^9.11.0 - version: 9.11.0 + specifier: ^9.11.1 + version: 9.11.1 '@iconify/json': specifier: ^2.2.252 version: 2.2.252 @@ -91,8 +91,8 @@ catalogs: specifier: ^4.5.9 version: 4.5.9 '@types/node': - specifier: ^22.5.5 - version: 22.5.5 + specifier: ^22.7.0 + version: 22.7.0 '@types/nprogress': specifier: ^0.2.3 version: 0.2.3 @@ -106,11 +106,11 @@ catalogs: specifier: ^1.15.8 version: 1.15.8 '@typescript-eslint/eslint-plugin': - specifier: ^8.6.0 - version: 8.6.0 + specifier: ^8.7.0 + version: 8.7.0 '@typescript-eslint/parser': - specifier: ^8.6.0 - version: 8.6.0 + specifier: ^8.7.0 + version: 8.7.0 '@vee-validate/zod': specifier: ^4.13.2 version: 4.13.2 @@ -208,8 +208,8 @@ catalogs: specifier: ^2.8.3 version: 2.8.3 eslint: - specifier: ^9.11.0 - version: 9.11.0 + specifier: ^9.11.1 + version: 9.11.1 eslint-config-turbo: specifier: ^2.1.2 version: 2.1.2 @@ -235,8 +235,8 @@ catalogs: specifier: ^3.3.0 version: 3.3.0 eslint-plugin-perfectionist: - specifier: ^3.6.0 - version: 3.6.0 + specifier: ^3.7.0 + version: 3.7.0 eslint-plugin-prettier: specifier: ^5.2.1 version: 5.2.1 @@ -346,8 +346,8 @@ catalogs: specifier: ^3.3.3 version: 3.3.3 prettier-plugin-tailwindcss: - specifier: ^0.6.6 - version: 0.6.6 + specifier: ^0.6.8 + version: 0.6.8 publint: specifier: ^0.2.11 version: 0.2.11 @@ -406,8 +406,8 @@ catalogs: specifier: ^2.5.2 version: 2.5.2 tailwindcss: - specifier: ^3.4.12 - version: 3.4.12 + specifier: ^3.4.13 + version: 3.4.13 tailwindcss-animate: specifier: ^1.0.7 version: 1.0.7 @@ -431,7 +431,7 @@ catalogs: version: 4.13.2 vite: specifier: ^5.4.7 - version: 5.4.7 + version: 5.4.8 vite-plugin-compression: specifier: ^0.5.1 version: 0.5.1 @@ -448,8 +448,8 @@ catalogs: specifier: ^0.20.5 version: 0.20.5 vite-plugin-vue-devtools: - specifier: ^7.4.5 - version: 7.4.5 + specifier: ^7.4.6 + version: 7.4.6 vitepress: specifier: ^1.3.4 version: 1.3.4 @@ -473,7 +473,7 @@ catalogs: version: 2.1.6 watermark-js-plus: specifier: ^1.5.6 - version: 1.5.6 + version: 1.5.7 zod: specifier: ^3.23.8 version: 3.23.8 @@ -485,7 +485,7 @@ overrides: '@ctrl/tinycolor': 4.1.0 clsx: 2.1.1 pinia: 2.2.2 - vue: 3.5.7 + vue: 3.5.8 importers: @@ -502,7 +502,7 @@ importers: version: 1.47.2 '@types/node': specifier: 'catalog:' - version: 22.5.5 + version: 22.7.0 '@vben/commitlint-config': specifier: workspace:* version: link:internal/lint-configs/commitlint-config @@ -532,10 +532,10 @@ importers: version: link:scripts/vsh '@vitejs/plugin-vue': specifier: 'catalog:' - version: 5.1.4(vite@5.4.7(@types/node@22.5.5)(less@4.2.0)(sass@1.79.3)(terser@5.33.0))(vue@3.5.7(typescript@5.6.2)) + version: 5.1.4(vite@5.4.8(@types/node@22.7.0)(less@4.2.0)(sass@1.79.3)(terser@5.33.0))(vue@3.5.8(typescript@5.6.2)) '@vitejs/plugin-vue-jsx': specifier: 'catalog:' - version: 4.0.1(vite@5.4.7(@types/node@22.5.5)(less@4.2.0)(sass@1.79.3)(terser@5.33.0))(vue@3.5.7(typescript@5.6.2)) + version: 4.0.1(vite@5.4.8(@types/node@22.7.0)(less@4.2.0)(sass@1.79.3)(terser@5.33.0))(vue@3.5.8(typescript@5.6.2)) '@vue/test-utils': specifier: 'catalog:' version: 2.4.6 @@ -568,7 +568,7 @@ importers: version: 6.0.1 tailwindcss: specifier: 'catalog:' - version: 3.4.12 + version: 3.4.13 turbo: specifier: 'catalog:' version: 2.1.2 @@ -580,13 +580,13 @@ importers: version: 2.0.0(sass@1.79.3)(typescript@5.6.2)(vue-tsc@2.1.6(typescript@5.6.2)) vite: specifier: 'catalog:' - version: 5.4.7(@types/node@22.5.5)(less@4.2.0)(sass@1.79.3)(terser@5.33.0) + version: 5.4.8(@types/node@22.7.0)(less@4.2.0)(sass@1.79.3)(terser@5.33.0) vitest: specifier: 'catalog:' - version: 2.1.1(@types/node@22.5.5)(happy-dom@15.7.4)(less@4.2.0)(sass@1.79.3)(terser@5.33.0) + version: 2.1.1(@types/node@22.7.0)(happy-dom@15.7.4)(less@4.2.0)(sass@1.79.3)(terser@5.33.0) vue: - specifier: 3.5.7 - version: 3.5.7(typescript@5.6.2) + specifier: 3.5.8 + version: 3.5.8(typescript@5.6.2) vue-tsc: specifier: 'catalog:' version: 2.1.6(typescript@5.6.2) @@ -653,22 +653,22 @@ importers: version: link:../../packages/utils '@vueuse/core': specifier: 'catalog:' - version: 11.1.0(vue@3.5.7(typescript@5.6.2)) + version: 11.1.0(vue@3.5.8(typescript@5.6.2)) ant-design-vue: specifier: 'catalog:' - version: 4.2.5(vue@3.5.7(typescript@5.6.2)) + version: 4.2.5(vue@3.5.8(typescript@5.6.2)) dayjs: specifier: 'catalog:' version: 1.11.13 pinia: specifier: 2.2.2 - version: 2.2.2(typescript@5.6.2)(vue@3.5.7(typescript@5.6.2)) + version: 2.2.2(typescript@5.6.2)(vue@3.5.8(typescript@5.6.2)) vue: - specifier: 3.5.7 - version: 3.5.7(typescript@5.6.2) + specifier: 3.5.8 + version: 3.5.8(typescript@5.6.2) vue-router: specifier: 'catalog:' - version: 4.4.5(vue@3.5.7(typescript@5.6.2)) + version: 4.4.5(vue@3.5.8(typescript@5.6.2)) apps/web-ele: dependencies: @@ -716,22 +716,22 @@ importers: version: link:../../packages/utils '@vueuse/core': specifier: 'catalog:' - version: 11.1.0(vue@3.5.7(typescript@5.6.2)) + version: 11.1.0(vue@3.5.8(typescript@5.6.2)) dayjs: specifier: 'catalog:' version: 1.11.13 element-plus: specifier: 'catalog:' - version: 2.8.3(vue@3.5.7(typescript@5.6.2)) + version: 2.8.3(vue@3.5.8(typescript@5.6.2)) pinia: specifier: 2.2.2 - version: 2.2.2(typescript@5.6.2)(vue@3.5.7(typescript@5.6.2)) + version: 2.2.2(typescript@5.6.2)(vue@3.5.8(typescript@5.6.2)) vue: - specifier: 3.5.7 - version: 3.5.7(typescript@5.6.2) + specifier: 3.5.8 + version: 3.5.8(typescript@5.6.2) vue-router: specifier: 'catalog:' - version: 4.4.5(vue@3.5.7(typescript@5.6.2)) + version: 4.4.5(vue@3.5.8(typescript@5.6.2)) devDependencies: unplugin-element-plus: specifier: 'catalog:' @@ -783,19 +783,19 @@ importers: version: link:../../packages/utils '@vueuse/core': specifier: 'catalog:' - version: 11.1.0(vue@3.5.7(typescript@5.6.2)) + version: 11.1.0(vue@3.5.8(typescript@5.6.2)) naive-ui: specifier: 'catalog:' - version: 2.39.0(vue@3.5.7(typescript@5.6.2)) + version: 2.39.0(vue@3.5.8(typescript@5.6.2)) pinia: specifier: 2.2.2 - version: 2.2.2(typescript@5.6.2)(vue@3.5.7(typescript@5.6.2)) + version: 2.2.2(typescript@5.6.2)(vue@3.5.8(typescript@5.6.2)) vue: - specifier: 3.5.7 - version: 3.5.7(typescript@5.6.2) + specifier: 3.5.8 + version: 3.5.8(typescript@5.6.2) vue-router: specifier: 'catalog:' - version: 4.4.5(vue@3.5.7(typescript@5.6.2)) + version: 4.4.5(vue@3.5.8(typescript@5.6.2)) docs: dependencies: @@ -819,41 +819,41 @@ importers: version: link:../packages/styles ant-design-vue: specifier: 'catalog:' - version: 4.2.5(vue@3.5.7(typescript@5.6.2)) + version: 4.2.5(vue@3.5.8(typescript@5.6.2)) lucide-vue-next: specifier: 'catalog:' - version: 0.445.0(vue@3.5.7(typescript@5.6.2)) + version: 0.445.0(vue@3.5.8(typescript@5.6.2)) medium-zoom: specifier: 'catalog:' version: 1.1.0 radix-vue: specifier: 'catalog:' - version: 1.9.6(vue@3.5.7(typescript@5.6.2)) + version: 1.9.6(vue@3.5.8(typescript@5.6.2)) vitepress-plugin-group-icons: specifier: 'catalog:' version: 1.2.4 devDependencies: '@nolebase/vitepress-plugin-git-changelog': specifier: 'catalog:' - version: 2.5.0(@algolia/client-search@4.24.0)(@types/node@22.5.5)(async-validator@4.2.5)(axios@1.7.7)(nprogress@0.2.0)(postcss@8.4.47)(qrcode@1.5.4)(sass@1.79.3)(search-insights@2.17.2)(sortablejs@1.15.3)(terser@5.33.0)(typescript@5.6.2) + version: 2.5.0(@algolia/client-search@4.24.0)(@types/node@22.7.0)(async-validator@4.2.5)(axios@1.7.7)(nprogress@0.2.0)(postcss@8.4.47)(qrcode@1.5.4)(sass@1.79.3)(search-insights@2.17.2)(sortablejs@1.15.3)(terser@5.33.0)(typescript@5.6.2) '@vben/vite-config': specifier: workspace:* version: link:../internal/vite-config '@vite-pwa/vitepress': specifier: 'catalog:' - version: 0.5.3(vite-plugin-pwa@0.20.5(vite@5.4.7(@types/node@22.5.5)(less@4.2.0)(sass@1.79.3)(terser@5.33.0))(workbox-build@7.1.1)(workbox-window@7.1.0)) + version: 0.5.3(vite-plugin-pwa@0.20.5(vite@5.4.8(@types/node@22.7.0)(less@4.2.0)(sass@1.79.3)(terser@5.33.0))(workbox-build@7.1.1)(workbox-window@7.1.0)) vitepress: specifier: 'catalog:' - version: 1.3.4(@algolia/client-search@4.24.0)(@types/node@22.5.5)(async-validator@4.2.5)(axios@1.7.7)(less@4.2.0)(nprogress@0.2.0)(postcss@8.4.47)(qrcode@1.5.4)(sass@1.79.3)(search-insights@2.17.2)(sortablejs@1.15.3)(terser@5.33.0)(typescript@5.6.2) + version: 1.3.4(@algolia/client-search@4.24.0)(@types/node@22.7.0)(async-validator@4.2.5)(axios@1.7.7)(less@4.2.0)(nprogress@0.2.0)(postcss@8.4.47)(qrcode@1.5.4)(sass@1.79.3)(search-insights@2.17.2)(sortablejs@1.15.3)(terser@5.33.0)(typescript@5.6.2) vue: - specifier: 3.5.7 - version: 3.5.7(typescript@5.6.2) + specifier: 3.5.8 + version: 3.5.8(typescript@5.6.2) internal/lint-configs/commitlint-config: dependencies: '@commitlint/cli': specifier: 'catalog:' - version: 19.5.0(@types/node@22.5.5)(typescript@5.6.2) + version: 19.5.0(@types/node@22.7.0)(typescript@5.6.2) '@commitlint/config-conventional': specifier: 'catalog:' version: 19.5.0 @@ -874,65 +874,65 @@ importers: dependencies: eslint-config-turbo: specifier: 'catalog:' - version: 2.1.2(eslint@9.11.0(jiti@1.21.6)) + version: 2.1.2(eslint@9.11.1(jiti@1.21.6)) eslint-plugin-command: specifier: 'catalog:' - version: 0.2.5(eslint@9.11.0(jiti@1.21.6)) + version: 0.2.5(eslint@9.11.1(jiti@1.21.6)) eslint-plugin-import-x: specifier: 'catalog:' - version: 4.3.0(eslint@9.11.0(jiti@1.21.6))(typescript@5.6.2) + version: 4.3.0(eslint@9.11.1(jiti@1.21.6))(typescript@5.6.2) devDependencies: '@eslint/js': specifier: 'catalog:' - version: 9.11.0 + version: 9.11.1 '@types/eslint': specifier: 'catalog:' version: 9.6.1 '@typescript-eslint/eslint-plugin': specifier: 'catalog:' - version: 8.6.0(@typescript-eslint/parser@8.6.0(eslint@9.11.0(jiti@1.21.6))(typescript@5.6.2))(eslint@9.11.0(jiti@1.21.6))(typescript@5.6.2) + version: 8.7.0(@typescript-eslint/parser@8.7.0(eslint@9.11.1(jiti@1.21.6))(typescript@5.6.2))(eslint@9.11.1(jiti@1.21.6))(typescript@5.6.2) '@typescript-eslint/parser': specifier: 'catalog:' - version: 8.6.0(eslint@9.11.0(jiti@1.21.6))(typescript@5.6.2) + version: 8.7.0(eslint@9.11.1(jiti@1.21.6))(typescript@5.6.2) eslint: specifier: 'catalog:' - version: 9.11.0(jiti@1.21.6) + version: 9.11.1(jiti@1.21.6) eslint-plugin-eslint-comments: specifier: 'catalog:' - version: 3.2.0(eslint@9.11.0(jiti@1.21.6)) + version: 3.2.0(eslint@9.11.1(jiti@1.21.6)) eslint-plugin-jsdoc: specifier: 'catalog:' - version: 50.2.4(eslint@9.11.0(jiti@1.21.6)) + version: 50.2.4(eslint@9.11.1(jiti@1.21.6)) eslint-plugin-jsonc: specifier: 'catalog:' - version: 2.16.0(eslint@9.11.0(jiti@1.21.6)) + version: 2.16.0(eslint@9.11.1(jiti@1.21.6)) eslint-plugin-n: specifier: 'catalog:' - version: 17.10.3(eslint@9.11.0(jiti@1.21.6)) + version: 17.10.3(eslint@9.11.1(jiti@1.21.6)) eslint-plugin-no-only-tests: specifier: 'catalog:' version: 3.3.0 eslint-plugin-perfectionist: specifier: 'catalog:' - version: 3.6.0(eslint@9.11.0(jiti@1.21.6))(typescript@5.6.2)(vue-eslint-parser@9.4.3(eslint@9.11.0(jiti@1.21.6))) + version: 3.7.0(eslint@9.11.1(jiti@1.21.6))(typescript@5.6.2)(vue-eslint-parser@9.4.3(eslint@9.11.1(jiti@1.21.6))) eslint-plugin-prettier: specifier: 'catalog:' - version: 5.2.1(@types/eslint@9.6.1)(eslint@9.11.0(jiti@1.21.6))(prettier@3.3.3) + version: 5.2.1(@types/eslint@9.6.1)(eslint@9.11.1(jiti@1.21.6))(prettier@3.3.3) eslint-plugin-regexp: specifier: 'catalog:' - version: 2.6.0(eslint@9.11.0(jiti@1.21.6)) + version: 2.6.0(eslint@9.11.1(jiti@1.21.6)) eslint-plugin-unicorn: specifier: 'catalog:' - version: 55.0.0(eslint@9.11.0(jiti@1.21.6)) + version: 55.0.0(eslint@9.11.1(jiti@1.21.6)) eslint-plugin-unused-imports: specifier: 'catalog:' - version: 4.1.4(@typescript-eslint/eslint-plugin@8.6.0(@typescript-eslint/parser@8.6.0(eslint@9.11.0(jiti@1.21.6))(typescript@5.6.2))(eslint@9.11.0(jiti@1.21.6))(typescript@5.6.2))(eslint@9.11.0(jiti@1.21.6)) + version: 4.1.4(@typescript-eslint/eslint-plugin@8.7.0(@typescript-eslint/parser@8.7.0(eslint@9.11.1(jiti@1.21.6))(typescript@5.6.2))(eslint@9.11.1(jiti@1.21.6))(typescript@5.6.2))(eslint@9.11.1(jiti@1.21.6)) eslint-plugin-vitest: specifier: 'catalog:' - version: 0.5.4(@typescript-eslint/eslint-plugin@8.6.0(@typescript-eslint/parser@8.6.0(eslint@9.11.0(jiti@1.21.6))(typescript@5.6.2))(eslint@9.11.0(jiti@1.21.6))(typescript@5.6.2))(eslint@9.11.0(jiti@1.21.6))(typescript@5.6.2)(vitest@2.1.1(@types/node@22.5.5)(happy-dom@15.7.4)(less@4.2.0)(sass@1.79.3)(terser@5.33.0)) + version: 0.5.4(@typescript-eslint/eslint-plugin@8.7.0(@typescript-eslint/parser@8.7.0(eslint@9.11.1(jiti@1.21.6))(typescript@5.6.2))(eslint@9.11.1(jiti@1.21.6))(typescript@5.6.2))(eslint@9.11.1(jiti@1.21.6))(typescript@5.6.2)(vitest@2.1.1(@types/node@22.7.0)(happy-dom@15.7.4)(less@4.2.0)(sass@1.79.3)(terser@5.33.0)) eslint-plugin-vue: specifier: 'catalog:' - version: 9.28.0(eslint@9.11.0(jiti@1.21.6)) + version: 9.28.0(eslint@9.11.1(jiti@1.21.6)) globals: specifier: 'catalog:' version: 15.9.0 @@ -941,7 +941,7 @@ importers: version: 2.4.0 vue-eslint-parser: specifier: 'catalog:' - version: 9.4.3(eslint@9.11.0(jiti@1.21.6)) + version: 9.4.3(eslint@9.11.1(jiti@1.21.6)) internal/lint-configs/prettier-config: dependencies: @@ -950,7 +950,7 @@ importers: version: 3.3.3 prettier-plugin-tailwindcss: specifier: 'catalog:' - version: 0.6.6(prettier@3.3.3) + version: 0.6.8(prettier@3.3.3) internal/lint-configs/stylelint-config: dependencies: @@ -1054,7 +1054,7 @@ importers: version: 0.0.0-insiders.565cd3e(postcss@8.4.47) '@tailwindcss/typography': specifier: 'catalog:' - version: 0.5.15(tailwindcss@3.4.12) + version: 0.5.15(tailwindcss@3.4.13) autoprefixer: specifier: 'catalog:' version: 10.4.20(postcss@8.4.47) @@ -1075,10 +1075,10 @@ importers: version: 10.0.5(postcss@8.4.47) tailwindcss: specifier: 'catalog:' - version: 3.4.12 + version: 3.4.13 tailwindcss-animate: specifier: 'catalog:' - version: 1.0.7(tailwindcss@3.4.12) + version: 1.0.7(tailwindcss@3.4.13) devDependencies: '@types/postcss-import': specifier: 'catalog:' @@ -1094,13 +1094,13 @@ importers: version: link:../../packages/types vite: specifier: 'catalog:' - version: 5.4.7(@types/node@22.5.5)(less@4.2.0)(sass@1.79.3)(terser@5.33.0) + version: 5.4.8(@types/node@22.7.0)(less@4.2.0)(sass@1.79.3)(terser@5.33.0) internal/vite-config: dependencies: '@intlify/unplugin-vue-i18n': specifier: 'catalog:' - version: 5.2.0(@vue/compiler-dom@3.5.8)(eslint@9.11.0(jiti@1.21.6))(rollup@4.22.4)(typescript@5.6.2)(vue-i18n@10.0.3(vue@3.5.7(typescript@5.6.2)))(vue@3.5.7(typescript@5.6.2)) + version: 5.2.0(@vue/compiler-dom@3.5.8)(eslint@9.11.1(jiti@1.21.6))(rollup@4.22.4)(typescript@5.6.2)(vue-i18n@10.0.3(vue@3.5.8(typescript@5.6.2)))(vue@3.5.8(typescript@5.6.2)) '@jspm/generator': specifier: 'catalog:' version: 2.3.1 @@ -1124,13 +1124,13 @@ importers: version: 2.0.2 vite-plugin-lib-inject-css: specifier: 'catalog:' - version: 2.1.1(vite@5.4.7(@types/node@22.5.5)(less@4.2.0)(sass@1.79.3)(terser@5.33.0)) + version: 2.1.1(vite@5.4.8(@types/node@22.7.0)(less@4.2.0)(sass@1.79.3)(terser@5.33.0)) vite-plugin-pwa: specifier: 'catalog:' - version: 0.20.5(vite@5.4.7(@types/node@22.5.5)(less@4.2.0)(sass@1.79.3)(terser@5.33.0))(workbox-build@7.1.1)(workbox-window@7.1.0) + version: 0.20.5(vite@5.4.8(@types/node@22.7.0)(less@4.2.0)(sass@1.79.3)(terser@5.33.0))(workbox-build@7.1.1)(workbox-window@7.1.0) vite-plugin-vue-devtools: specifier: 'catalog:' - version: 7.4.5(rollup@4.22.4)(vite@5.4.7(@types/node@22.5.5)(less@4.2.0)(sass@1.79.3)(terser@5.33.0))(vue@3.5.7(typescript@5.6.2)) + version: 7.4.6(rollup@4.22.4)(vite@5.4.8(@types/node@22.7.0)(less@4.2.0)(sass@1.79.3)(terser@5.33.0))(vue@3.5.8(typescript@5.6.2)) devDependencies: '@types/archiver': specifier: 'catalog:' @@ -1143,10 +1143,10 @@ importers: version: link:../node-utils '@vitejs/plugin-vue': specifier: 'catalog:' - version: 5.1.4(vite@5.4.7(@types/node@22.5.5)(less@4.2.0)(sass@1.79.3)(terser@5.33.0))(vue@3.5.7(typescript@5.6.2)) + version: 5.1.4(vite@5.4.8(@types/node@22.7.0)(less@4.2.0)(sass@1.79.3)(terser@5.33.0))(vue@3.5.8(typescript@5.6.2)) '@vitejs/plugin-vue-jsx': specifier: 'catalog:' - version: 4.0.1(vite@5.4.7(@types/node@22.5.5)(less@4.2.0)(sass@1.79.3)(terser@5.33.0))(vue@3.5.7(typescript@5.6.2)) + version: 4.0.1(vite@5.4.8(@types/node@22.7.0)(less@4.2.0)(sass@1.79.3)(terser@5.33.0))(vue@3.5.8(typescript@5.6.2)) dayjs: specifier: 'catalog:' version: 1.11.13 @@ -1164,16 +1164,16 @@ importers: version: 1.79.3 vite: specifier: 'catalog:' - version: 5.4.7(@types/node@22.5.5)(less@4.2.0)(sass@1.79.3)(terser@5.33.0) + version: 5.4.8(@types/node@22.7.0)(less@4.2.0)(sass@1.79.3)(terser@5.33.0) vite-plugin-compression: specifier: 'catalog:' - version: 0.5.1(vite@5.4.7(@types/node@22.5.5)(less@4.2.0)(sass@1.79.3)(terser@5.33.0)) + version: 0.5.1(vite@5.4.8(@types/node@22.7.0)(less@4.2.0)(sass@1.79.3)(terser@5.33.0)) vite-plugin-dts: specifier: 'catalog:' - version: 4.2.1(@types/node@22.5.5)(rollup@4.22.4)(typescript@5.6.2)(vite@5.4.7(@types/node@22.5.5)(less@4.2.0)(sass@1.79.3)(terser@5.33.0)) + version: 4.2.1(@types/node@22.7.0)(rollup@4.22.4)(typescript@5.6.2)(vite@5.4.8(@types/node@22.7.0)(less@4.2.0)(sass@1.79.3)(terser@5.33.0)) vite-plugin-html: specifier: 'catalog:' - version: 3.2.2(vite@5.4.7(@types/node@22.5.5)(less@4.2.0)(sass@1.79.3)(terser@5.33.0)) + version: 3.2.2(vite@5.4.8(@types/node@22.7.0)(less@4.2.0)(sass@1.79.3)(terser@5.33.0)) packages/@core/base/design: {} @@ -1181,13 +1181,13 @@ importers: dependencies: '@iconify/vue': specifier: 'catalog:' - version: 4.1.2(vue@3.5.7(typescript@5.6.2)) + version: 4.1.2(vue@3.5.8(typescript@5.6.2)) lucide-vue-next: specifier: 'catalog:' - version: 0.445.0(vue@3.5.7(typescript@5.6.2)) + version: 0.445.0(vue@3.5.8(typescript@5.6.2)) vue: - specifier: 3.5.7 - version: 3.5.7(typescript@5.6.2) + specifier: 3.5.8 + version: 3.5.8(typescript@5.6.2) packages/@core/base/shared: dependencies: @@ -1196,7 +1196,7 @@ importers: version: 4.1.0 '@tanstack/vue-store': specifier: 'catalog:' - version: 0.5.5(vue@3.5.7(typescript@5.6.2)) + version: 0.5.5(vue@3.5.8(typescript@5.6.2)) '@vue/reactivity': specifier: 'catalog:' version: 3.5.8 @@ -1232,11 +1232,11 @@ importers: packages/@core/base/typings: dependencies: vue: - specifier: 3.5.7 - version: 3.5.7(typescript@5.6.2) + specifier: 3.5.8 + version: 3.5.8(typescript@5.6.2) vue-router: specifier: 'catalog:' - version: 4.4.5(vue@3.5.7(typescript@5.6.2)) + version: 4.4.5(vue@3.5.8(typescript@5.6.2)) packages/@core/composables: dependencies: @@ -1245,16 +1245,16 @@ importers: version: link:../base/shared '@vueuse/core': specifier: 'catalog:' - version: 11.1.0(vue@3.5.7(typescript@5.6.2)) + version: 11.1.0(vue@3.5.8(typescript@5.6.2)) radix-vue: specifier: 'catalog:' - version: 1.9.6(vue@3.5.7(typescript@5.6.2)) + version: 1.9.6(vue@3.5.8(typescript@5.6.2)) sortablejs: specifier: 'catalog:' version: 1.15.3 vue: - specifier: 3.5.7 - version: 3.5.7(typescript@5.6.2) + specifier: 3.5.8 + version: 3.5.8(typescript@5.6.2) devDependencies: '@types/sortablejs': specifier: 'catalog:' @@ -1270,10 +1270,10 @@ importers: version: link:../base/typings '@vueuse/core': specifier: 'catalog:' - version: 11.1.0(vue@3.5.7(typescript@5.6.2)) + version: 11.1.0(vue@3.5.8(typescript@5.6.2)) vue: - specifier: 3.5.7 - version: 3.5.7(typescript@5.6.2) + specifier: 3.5.8 + version: 3.5.8(typescript@5.6.2) packages/@core/ui-kit/form-ui: dependencies: @@ -1288,16 +1288,16 @@ importers: version: link:../../base/shared '@vee-validate/zod': specifier: 'catalog:' - version: 4.13.2(vue@3.5.7(typescript@5.6.2)) + version: 4.13.2(vue@3.5.8(typescript@5.6.2)) '@vueuse/core': specifier: 'catalog:' - version: 11.1.0(vue@3.5.7(typescript@5.6.2)) + version: 11.1.0(vue@3.5.8(typescript@5.6.2)) vee-validate: specifier: 'catalog:' - version: 4.13.2(vue@3.5.7(typescript@5.6.2)) + version: 4.13.2(vue@3.5.8(typescript@5.6.2)) vue: - specifier: 3.5.7 - version: 3.5.7(typescript@5.6.2) + specifier: 3.5.8 + version: 3.5.8(typescript@5.6.2) zod: specifier: 'catalog:' version: 3.23.8 @@ -1321,10 +1321,10 @@ importers: version: link:../../base/typings '@vueuse/core': specifier: 'catalog:' - version: 11.1.0(vue@3.5.7(typescript@5.6.2)) + version: 11.1.0(vue@3.5.8(typescript@5.6.2)) vue: - specifier: 3.5.7 - version: 3.5.7(typescript@5.6.2) + specifier: 3.5.8 + version: 3.5.8(typescript@5.6.2) packages/@core/ui-kit/menu-ui: dependencies: @@ -1345,10 +1345,10 @@ importers: version: link:../../base/typings '@vueuse/core': specifier: 'catalog:' - version: 11.1.0(vue@3.5.7(typescript@5.6.2)) + version: 11.1.0(vue@3.5.8(typescript@5.6.2)) vue: - specifier: 3.5.7 - version: 3.5.7(typescript@5.6.2) + specifier: 3.5.8 + version: 3.5.8(typescript@5.6.2) packages/@core/ui-kit/popup-ui: dependencies: @@ -1366,16 +1366,16 @@ importers: version: link:../../base/shared '@vueuse/core': specifier: 'catalog:' - version: 11.1.0(vue@3.5.7(typescript@5.6.2)) + version: 11.1.0(vue@3.5.8(typescript@5.6.2)) vue: - specifier: 3.5.7 - version: 3.5.7(typescript@5.6.2) + specifier: 3.5.8 + version: 3.5.8(typescript@5.6.2) packages/@core/ui-kit/shadcn-ui: dependencies: '@radix-icons/vue': specifier: 'catalog:' - version: 1.0.0(vue@3.5.7(typescript@5.6.2)) + version: 1.0.0(vue@3.5.8(typescript@5.6.2)) '@vben-core/composables': specifier: workspace:* version: link:../../composables @@ -1390,22 +1390,22 @@ importers: version: link:../../base/typings '@vueuse/core': specifier: 'catalog:' - version: 11.1.0(vue@3.5.7(typescript@5.6.2)) + version: 11.1.0(vue@3.5.8(typescript@5.6.2)) class-variance-authority: specifier: 'catalog:' version: 0.7.0 lucide-vue-next: specifier: 'catalog:' - version: 0.445.0(vue@3.5.7(typescript@5.6.2)) + version: 0.445.0(vue@3.5.8(typescript@5.6.2)) radix-vue: specifier: 'catalog:' - version: 1.9.6(vue@3.5.7(typescript@5.6.2)) + version: 1.9.6(vue@3.5.8(typescript@5.6.2)) vee-validate: specifier: 'catalog:' - version: 4.13.2(vue@3.5.7(typescript@5.6.2)) + version: 4.13.2(vue@3.5.8(typescript@5.6.2)) vue: - specifier: 3.5.7 - version: 3.5.7(typescript@5.6.2) + specifier: 3.5.8 + version: 3.5.8(typescript@5.6.2) packages/@core/ui-kit/tabs-ui: dependencies: @@ -1426,10 +1426,10 @@ importers: version: link:../../base/typings '@vueuse/core': specifier: 'catalog:' - version: 11.1.0(vue@3.5.7(typescript@5.6.2)) + version: 11.1.0(vue@3.5.8(typescript@5.6.2)) vue: - specifier: 3.5.7 - version: 3.5.7(typescript@5.6.2) + specifier: 3.5.8 + version: 3.5.8(typescript@5.6.2) packages/constants: dependencies: @@ -1452,8 +1452,8 @@ importers: specifier: workspace:* version: link:../../utils vue: - specifier: 3.5.7 - version: 3.5.7(typescript@5.6.2) + specifier: 3.5.8 + version: 3.5.8(typescript@5.6.2) packages/effects/common-ui: dependencies: @@ -1483,19 +1483,19 @@ importers: version: link:../../types '@vueuse/core': specifier: 'catalog:' - version: 11.1.0(vue@3.5.7(typescript@5.6.2)) + version: 11.1.0(vue@3.5.8(typescript@5.6.2)) '@vueuse/integrations': specifier: 'catalog:' - version: 11.1.0(async-validator@4.2.5)(axios@1.7.7)(focus-trap@7.6.0)(nprogress@0.2.0)(qrcode@1.5.4)(sortablejs@1.15.3)(vue@3.5.7(typescript@5.6.2)) + version: 11.1.0(async-validator@4.2.5)(axios@1.7.7)(focus-trap@7.6.0)(nprogress@0.2.0)(qrcode@1.5.4)(sortablejs@1.15.3)(vue@3.5.8(typescript@5.6.2)) qrcode: specifier: 'catalog:' version: 1.5.4 vue: - specifier: 3.5.7 - version: 3.5.7(typescript@5.6.2) + specifier: 3.5.8 + version: 3.5.8(typescript@5.6.2) vue-router: specifier: 'catalog:' - version: 4.4.5(vue@3.5.7(typescript@5.6.2)) + version: 4.4.5(vue@3.5.8(typescript@5.6.2)) devDependencies: '@types/qrcode': specifier: 'catalog:' @@ -1519,14 +1519,14 @@ importers: specifier: workspace:* version: link:../../utils vue: - specifier: 3.5.7 - version: 3.5.7(typescript@5.6.2) + specifier: 3.5.8 + version: 3.5.8(typescript@5.6.2) vue-router: specifier: 'catalog:' - version: 4.4.5(vue@3.5.7(typescript@5.6.2)) + version: 4.4.5(vue@3.5.8(typescript@5.6.2)) watermark-js-plus: specifier: 'catalog:' - version: 1.5.6 + version: 1.5.7 packages/effects/layouts: dependencies: @@ -1577,13 +1577,13 @@ importers: version: link:../../utils '@vueuse/core': specifier: 'catalog:' - version: 11.1.0(vue@3.5.7(typescript@5.6.2)) + version: 11.1.0(vue@3.5.8(typescript@5.6.2)) vue: - specifier: 3.5.7 - version: 3.5.7(typescript@5.6.2) + specifier: 3.5.8 + version: 3.5.8(typescript@5.6.2) vue-router: specifier: 'catalog:' - version: 4.4.5(vue@3.5.7(typescript@5.6.2)) + version: 4.4.5(vue@3.5.8(typescript@5.6.2)) packages/effects/plugins: dependencies: @@ -1592,13 +1592,13 @@ importers: version: link:../../preferences '@vueuse/core': specifier: 'catalog:' - version: 11.1.0(vue@3.5.7(typescript@5.6.2)) + version: 11.1.0(vue@3.5.8(typescript@5.6.2)) echarts: specifier: 'catalog:' version: 5.5.1 vue: - specifier: 3.5.7 - version: 3.5.7(typescript@5.6.2) + specifier: 3.5.8 + version: 3.5.8(typescript@5.6.2) packages/effects/request: dependencies: @@ -1631,11 +1631,11 @@ importers: specifier: workspace:* version: link:../@core/composables vue: - specifier: 3.5.7 - version: 3.5.7(typescript@5.6.2) + specifier: 3.5.8 + version: 3.5.8(typescript@5.6.2) vue-i18n: specifier: 'catalog:' - version: 10.0.3(vue@3.5.7(typescript@5.6.2)) + version: 10.0.3(vue@3.5.8(typescript@5.6.2)) packages/preferences: dependencies: @@ -1656,16 +1656,16 @@ importers: version: link:../@core/base/typings pinia: specifier: 2.2.2 - version: 2.2.2(typescript@5.6.2)(vue@3.5.7(typescript@5.6.2)) + version: 2.2.2(typescript@5.6.2)(vue@3.5.8(typescript@5.6.2)) pinia-plugin-persistedstate: specifier: 'catalog:' - version: 4.0.2(pinia@2.2.2(typescript@5.6.2)(vue@3.5.7(typescript@5.6.2)))(rollup@4.22.4) + version: 4.0.2(pinia@2.2.2(typescript@5.6.2)(vue@3.5.8(typescript@5.6.2)))(rollup@4.22.4) vue: - specifier: 3.5.7 - version: 3.5.7(typescript@5.6.2) + specifier: 3.5.8 + version: 3.5.8(typescript@5.6.2) vue-router: specifier: 'catalog:' - version: 4.4.5(vue@3.5.7(typescript@5.6.2)) + version: 4.4.5(vue@3.5.8(typescript@5.6.2)) packages/styles: dependencies: @@ -1679,11 +1679,11 @@ importers: specifier: workspace:* version: link:../@core/base/typings vue: - specifier: 3.5.7 - version: 3.5.7(typescript@5.6.2) + specifier: 3.5.8 + version: 3.5.8(typescript@5.6.2) vue-router: specifier: 'catalog:' - version: 4.4.5(vue@3.5.7(typescript@5.6.2)) + version: 4.4.5(vue@3.5.8(typescript@5.6.2)) packages/utils: dependencies: @@ -1695,13 +1695,13 @@ importers: version: link:../@core/base/typings vue-router: specifier: 'catalog:' - version: 4.4.5(vue@3.5.7(typescript@5.6.2)) + version: 4.4.5(vue@3.5.8(typescript@5.6.2)) playground: dependencies: '@tanstack/vue-query': specifier: 'catalog:' - version: 5.56.2(vue@3.5.7(typescript@5.6.2)) + version: 5.56.2(vue@3.5.8(typescript@5.6.2)) '@vben/access': specifier: workspace:* version: link:../packages/effects/access @@ -1746,22 +1746,22 @@ importers: version: link:../packages/utils '@vueuse/core': specifier: 'catalog:' - version: 11.1.0(vue@3.5.7(typescript@5.6.2)) + version: 11.1.0(vue@3.5.8(typescript@5.6.2)) ant-design-vue: specifier: 'catalog:' - version: 4.2.5(vue@3.5.7(typescript@5.6.2)) + version: 4.2.5(vue@3.5.8(typescript@5.6.2)) dayjs: specifier: 'catalog:' version: 1.11.13 pinia: specifier: 2.2.2 - version: 2.2.2(typescript@5.6.2)(vue@3.5.7(typescript@5.6.2)) + version: 2.2.2(typescript@5.6.2)(vue@3.5.8(typescript@5.6.2)) vue: - specifier: 3.5.7 - version: 3.5.7(typescript@5.6.2) + specifier: 3.5.8 + version: 3.5.8(typescript@5.6.2) vue-router: specifier: 'catalog:' - version: 4.4.5(vue@3.5.7(typescript@5.6.2)) + version: 4.4.5(vue@3.5.8(typescript@5.6.2)) scripts/turbo-run: dependencies: @@ -1877,7 +1877,7 @@ packages: '@ant-design/icons-vue@7.0.1': resolution: {integrity: sha512-eCqY2unfZK6Fe02AwFlDHLfoyEFreP6rBwAZMIJ1LugmfMiVgwWDYlp1YsRugaPtICYOabV1iWxXdP12u9U43Q==} peerDependencies: - vue: 3.5.7 + vue: 3.5.8 '@antfu/install-pkg@0.4.1': resolution: {integrity: sha512-T7yB5QNG29afhWVkVq7XeIMBa5U/vs9mX69YqayXypPRmYzUmzwnYltplHmPtZ4HPCn+sQKeXW8I47wCbuBOjw==} @@ -1897,8 +1897,8 @@ packages: cpu: [arm64] os: [darwin] - '@ast-grep/napi-darwin-arm64@0.27.1': - resolution: {integrity: sha512-zguPfCTnPIMTjkIyYoChgXnUpoYjeElyksesAHhFAtbYUQK+A3wRS1BGb1KteRQYq2rNeRRiEDSBUDdkxbcSbA==} + '@ast-grep/napi-darwin-arm64@0.27.2': + resolution: {integrity: sha512-Rs4XH2z/j8zSZbazTeQZhRAEuKAdZMP9DnPIRNCXbvHZscWBs+iVMPw6XbJTbIQ1XsFzt4Pbwjidnm8gJxUXDw==} engines: {node: '>= 10'} cpu: [arm64] os: [darwin] @@ -1909,8 +1909,8 @@ packages: cpu: [x64] os: [darwin] - '@ast-grep/napi-darwin-x64@0.27.1': - resolution: {integrity: sha512-sVhcGjz2XTz1n8kRYu6tY2Sm9m6AHRr7AF11jM536FnLZYvJ5HIbsT19E5ofz8Gc16x/REOe1FTxgJ0LtAbIQw==} + '@ast-grep/napi-darwin-x64@0.27.2': + resolution: {integrity: sha512-kBIJS7tm+mmdsPVtX7LpDw3gNOwHmrFwGSmDIOpk/hT54aGvx+/R34VM1Niu4/D8iVkdl49laHpv2dTyZR922A==} engines: {node: '>= 10'} cpu: [x64] os: [darwin] @@ -1922,15 +1922,15 @@ packages: os: [linux] libc: [glibc] - '@ast-grep/napi-linux-arm64-gnu@0.27.1': - resolution: {integrity: sha512-GlLtN9AaichpY8qsbX0UR7pq9Ow1UQ7DPEqsLuTqkMGMWb78ZoZk2fOQ8aIMsH6nV9HEboH9CX0k5O1bnp3SDQ==} + '@ast-grep/napi-linux-arm64-gnu@0.27.2': + resolution: {integrity: sha512-SI+DDHkGz23XiJVYvZ+m+PuURXKGlEHtuz3tNpA6QclEsNnCcOTkICtigafndGAgkx0oB4ehRtfR90zQR1jlEQ==} engines: {node: '>= 10'} cpu: [arm64] os: [linux] libc: [glibc] - '@ast-grep/napi-linux-arm64-musl@0.27.1': - resolution: {integrity: sha512-IHNLqeS/Xhflnl+39+OwPU75AxsM3l8b7+sPhFDt2eGFhAzgq8/UR/mtJ7SfIUXRoyCcNqbsLRFlXESnDt5JXg==} + '@ast-grep/napi-linux-arm64-musl@0.27.2': + resolution: {integrity: sha512-b2wAVcKJ3E23Ne7NyzBMwbtDXn3eaI59YBgbg0oJH2c4UygRTI1gd0wuopVotWtGg/fiEK21JBDeoVrNJ/ar8g==} engines: {node: '>= 10'} cpu: [arm64] os: [linux] @@ -1943,8 +1943,8 @@ packages: os: [linux] libc: [glibc] - '@ast-grep/napi-linux-x64-gnu@0.27.1': - resolution: {integrity: sha512-YE/iYeIjBIih42Msi2daOdgNWoa9rITTZGMvzcHizWaFX4hWNeE1j4Oo8pwgjOMgdPRc6dV698OGR642naPDFw==} + '@ast-grep/napi-linux-x64-gnu@0.27.2': + resolution: {integrity: sha512-K7U68gMIJHLxAXAiex6CBRKsieAXLsvMgIo/RLSh46Bzr8O5z2zZbc2DamT28cke81FltbBOhYNICi68hYFegg==} engines: {node: '>= 10'} cpu: [x64] os: [linux] @@ -1957,8 +1957,8 @@ packages: os: [linux] libc: [musl] - '@ast-grep/napi-linux-x64-musl@0.27.1': - resolution: {integrity: sha512-q8klHZncFDV/a18jDPoCCUJdid+mQ583C8tWiAjOWSiITZpQAR0pfMhwu4TMhIkDmNaVRryqDm4fWNaxtsEpSQ==} + '@ast-grep/napi-linux-x64-musl@0.27.2': + resolution: {integrity: sha512-j437X4TaadXhUfCyYgKg1F5DD97ms02EaMJbiokUHHnCOZulqK7JD92Os9ufVwkGx2QjkEhCqBmHg+70hoczjQ==} engines: {node: '>= 10'} cpu: [x64] os: [linux] @@ -1970,8 +1970,8 @@ packages: cpu: [arm64] os: [win32] - '@ast-grep/napi-win32-arm64-msvc@0.27.1': - resolution: {integrity: sha512-pqSo03JnL+ONLMoYPtFOKRhKe1CrEmm7mjusAyAT8gZ25rTzFEvpDS9pMNpeXt3wnmUeyEYNuB1U2x0qHXo1qQ==} + '@ast-grep/napi-win32-arm64-msvc@0.27.2': + resolution: {integrity: sha512-aK0vVIJ/k2mtQzcm/nJhAg5m/wfQlK26wJ1oqwJxvIb3ks+CpMV9BpxQ4Fkai9rzCJN1Na+6AVTFEDsircEQbg==} engines: {node: '>= 10'} cpu: [arm64] os: [win32] @@ -1982,8 +1982,8 @@ packages: cpu: [ia32] os: [win32] - '@ast-grep/napi-win32-ia32-msvc@0.27.1': - resolution: {integrity: sha512-710Jtkr75etK54XL9suzyGT+bKhQZhxm5TPVvPwoF0pRAyuAnU9PHimpSU0LnisteVIKgOk4EOBieZON0YuJBg==} + '@ast-grep/napi-win32-ia32-msvc@0.27.2': + resolution: {integrity: sha512-M/Tk1srYu4r/LYezeeazeRprGzUFHUoMd+pxOi6y+MBVUXhp/p95J4LHG7uYdprxuSSqGzNnr+S6AGCtiWQljg==} engines: {node: '>= 10'} cpu: [ia32] os: [win32] @@ -1994,8 +1994,8 @@ packages: cpu: [x64] os: [win32] - '@ast-grep/napi-win32-x64-msvc@0.27.1': - resolution: {integrity: sha512-yh2N58ifVWQtrek6sP1zr6+qfh+uguoy1DS1+3ZCdrAjflOBBm6pcwCw8bNoRkEckxpkx88JzEAov9BkNH766Q==} + '@ast-grep/napi-win32-x64-msvc@0.27.2': + resolution: {integrity: sha512-E/W38ZdacIilvoobQENmOB9t8AH4p41QSk1XR0za7m3mz2O2TZQCPUXVW6f4dNemv66GWqPmun+Cynhtt+yVuw==} engines: {node: '>= 10'} cpu: [x64] os: [win32] @@ -2004,8 +2004,8 @@ packages: resolution: {integrity: sha512-kNF87HiI4omHC7VzyBZSvqOAXtMlSDRF2YX+O5ya0XKv/7/GYms1opLQ+BQ9twLLDj0WsSFX4MYg0TrinZTxTg==} engines: {node: '>= 10'} - '@ast-grep/napi@0.27.1': - resolution: {integrity: sha512-zmUOJ+ViUbqd1z/watSAec9h8qaWjFXKXg1ifOcmvrHsByJFTL9DWfIdrNVlaDPDWHcYdb3iPTeFzwXdg3cwtw==} + '@ast-grep/napi@0.27.2': + resolution: {integrity: sha512-DDFPthgmNTgK4t4z2gfYeSIwxqM4KigdWnNmGSKk9S1w0L2x/Dv788MRFMUNGzFot3nEqmjrf9yQ1Sw5x5AZsw==} engines: {node: '>= 10'} '@babel/code-frame@7.24.7': @@ -2870,8 +2870,8 @@ packages: '@cspell/dict-html-symbol-entities@4.0.0': resolution: {integrity: sha512-HGRu+48ErJjoweR5IbcixxETRewrBb0uxQBd6xFGcxbEYCX8CnQFTAmKI5xNaIt2PKaZiJH3ijodGSqbKdsxhw==} - '@cspell/dict-html@4.0.5': - resolution: {integrity: sha512-p0brEnRybzSSWi8sGbuVEf7jSTDmXPx7XhQUb5bgG6b54uj+Z0Qf0V2n8b/LWwIPJNd1GygaO9l8k3HTCy1h4w==} + '@cspell/dict-html@4.0.6': + resolution: {integrity: sha512-cLWHfuOhE4wqwC12up6Doxo2u1xxVhX1A8zriR4CUD+osFQzUIcBK1ykNXppga+rt1WyypaJdTU2eV6OpzYrgQ==} '@cspell/dict-java@5.0.7': resolution: {integrity: sha512-ejQ9iJXYIq7R09BScU2y5OUGrSqwcD+J5mHFOKbduuQ5s/Eh/duz45KOzykeMLI6KHPVxhBKpUPBWIsfewECpQ==} @@ -2906,8 +2906,8 @@ packages: '@cspell/dict-php@4.0.10': resolution: {integrity: sha512-NfTZdp6kcZDF1PvgQ6cY0zE4FUO5rSwNmBH/iwCBuaLfJAFQ97rgjxo+D2bic4CFwNjyHutnHPtjJBRANO5XQw==} - '@cspell/dict-powershell@5.0.8': - resolution: {integrity: sha512-Eg64BccQp5oEJ+V/O2G27KaLWmuOL2AWMOs2470adUihOleRfW8j9XwAEGCS+JKSnDb2mksWA72Z6kDqH138IQ==} + '@cspell/dict-powershell@5.0.9': + resolution: {integrity: sha512-Vi0h0rlxS39tgTyUtxI6L3BPHH7MLPkLWCYkNfb/buQuNJYNFdHiF4bqoqVdJ/7ZrfIfNg4i6rzocnwGRn2ruw==} '@cspell/dict-public-licenses@2.0.8': resolution: {integrity: sha512-Sup+tFS7cDV0fgpoKtUqEZ6+fA/H+XUgBiqQ/Fbs6vUE3WCjJHOIVsP+udHuyMH7iBfJ4UFYOYeORcY4EaKdMg==} @@ -2972,7 +2972,7 @@ packages: '@css-render/vue3-ssr@0.15.14': resolution: {integrity: sha512-//8027GSbxE9n3QlD73xFY6z4ZbHbvrOVB7AO6hsmrEzGbg+h2A09HboUyDgu+xsmj7JnvJD39Irt+2D0+iV8g==} peerDependencies: - vue: 3.5.7 + vue: 3.5.8 '@csstools/cascade-layer-name-parser@2.0.1': resolution: {integrity: sha512-G9ZYN5+yr/E6xYSiy1BwOEFP5p88ZtWo8sL4NztKBkRRAwRkzVGa70M+D+fYHugMID5jkLeNt5X9jYd5EaVuyg==} @@ -3247,7 +3247,7 @@ packages: '@element-plus/icons-vue@2.3.1': resolution: {integrity: sha512-XxVUZv48RZAd87ucGS48jPf6pKu0yV5UCg9f4FFwtrYxXOwWuVJo6wOvSLKEoMQKjv8GsX/mhP6UsC1lRwbUWg==} peerDependencies: - vue: 3.5.7 + vue: 3.5.8 '@emotion/hash@0.8.0': resolution: {integrity: sha512-kBJtf7PH6aWwZ6fka3zQ0p6SBYzx4fl1LoZXE2RrnYST9Xljm7WfKJrU4g/Xr3Beg72MLrp1AWNUmuYJTL7Cow==} @@ -3834,12 +3834,16 @@ packages: resolution: {integrity: sha512-fTxvnS1sRMu3+JjXwJG0j/i4RT9u4qJ+lqS/yCGap4lH4zZGzQ7tu+xZqQmcMZq5OBZDL4QRxQzRjkWcGt8IVw==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + '@eslint/core@0.6.0': + resolution: {integrity: sha512-8I2Q8ykA4J0x0o7cg67FPVnehcqWTBehu/lmY+bolPFHGjh49YzGBMXTvpqVgEbBdvNCSxj6iFgiIyHzf03lzg==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + '@eslint/eslintrc@3.1.0': resolution: {integrity: sha512-4Bfj15dVJdoy3RfZmmo86RK1Fwzn6SstsvK9JS+BaVKqC6QQQQyXekNaC+g+LKNgkQ+2VhGAzm6hO40AhMR3zQ==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} - '@eslint/js@9.11.0': - resolution: {integrity: sha512-LPkkenkDqyzTFauZLLAPhIb48fj6drrfMvRGSL9tS3AcZBSVTllemLSNyCvHNNL2t797S/6DJNSIwRwXgMO/eQ==} + '@eslint/js@9.11.1': + resolution: {integrity: sha512-/qu+TWz8WwPWc7/HcIJKi+c+MOm46GdVaSlTTQcaqaL53+GsoA6MxWp5PtTx48qbSP7ylM1Kn7nhvkugfJvRSA==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} '@eslint/object-schema@2.1.4': @@ -3901,7 +3905,7 @@ packages: '@iconify/vue@4.1.2': resolution: {integrity: sha512-CQnYqLiQD5LOAaXhBrmj1mdL2/NCJvwcC4jtW2Z8ukhThiFkLDkutarTOV2trfc9EXqUqRs0KqXOL9pZ/IyysA==} peerDependencies: - vue: 3.5.7 + vue: 3.5.8 '@internationalized/date@3.5.5': resolution: {integrity: sha512-H+CfYvOZ0LTJeeLOqm19E3uj/4YjrmOFtBufDHPfvtI80hFAMqtrp7oCACpe4Cil5l8S0Qu/9dYfZc/5lY8WQQ==} @@ -3946,7 +3950,7 @@ packages: engines: {node: '>= 18'} peerDependencies: petite-vue-i18n: '*' - vue: 3.5.7 + vue: 3.5.8 vue-i18n: '*' peerDependenciesMeta: petite-vue-i18n: @@ -3960,7 +3964,7 @@ packages: peerDependencies: '@intlify/shared': ^9.0.0 || ^10.0.0 '@vue/compiler-dom': ^3.0.0 - vue: 3.5.7 + vue: 3.5.8 vue-i18n: ^9.0.0 || ^10.0.0 peerDependenciesMeta: '@intlify/shared': @@ -4211,10 +4215,10 @@ packages: '@radix-icons/vue@1.0.0': resolution: {integrity: sha512-gKWWk9tTK/laDRRNe5KLLR8A0qUwx4q4+DN8Fq48hJ904u78R82ayAO3TrxbNLgyn2D0h6rRiGdLzQWj7rPcvA==} peerDependencies: - vue: 3.5.7 + vue: 3.5.8 - '@rollup/plugin-alias@5.1.0': - resolution: {integrity: sha512-lpA3RZ9PdIG7qqhEfv79tBffNaoDuukFDrmhLqg9ifv99u/ehn+lOg30x2zmhf8AQqQUZaMk/B9fZraQ6/acDQ==} + '@rollup/plugin-alias@5.1.1': + resolution: {integrity: sha512-PR9zDb+rOzkRb2VD+EuKB7UC41vU5DIwZ5qqCpk0KJudcWAyi8rvYOhS7+L5aZCspw1stTViLgN5v6FF1p5cgQ==} engines: {node: '>=14.0.0'} peerDependencies: rollup: ^1.20.0||^2.0.0||^3.0.0||^4.0.0 @@ -4260,8 +4264,8 @@ packages: rollup: optional: true - '@rollup/plugin-node-resolve@15.2.3': - resolution: {integrity: sha512-j/lym8nf5E21LwBT4Df1VD6hRO2L2iwUeUmP7litikRsVp1H6NWx20NEp0Y7su+7XGc476GnXXc4kFeZNGmaSQ==} + '@rollup/plugin-node-resolve@15.3.0': + resolution: {integrity: sha512-9eO5McEICxMzJpDW9OnMYSv4Sta3hmt7VtBFz5zR9273suNOydOyq/FrGeGy+KsTRFm8w0SLVhzig2ILFT63Ag==} engines: {node: '>=14.0.0'} peerDependencies: rollup: ^2.78.0||^3.0.0||^4.0.0 @@ -4302,8 +4306,8 @@ packages: resolution: {integrity: sha512-iKnFXr7NkdZAIHiIWE+BX5ULi/ucVFYWD6TbAV+rZctiRTY2PL6tsIKhoIOaoskiWAkgu+VsbXgUVDNLHf+InQ==} engines: {node: '>= 8.0.0'} - '@rollup/pluginutils@5.1.0': - resolution: {integrity: sha512-XTIWOPPcpvyKI6L1NHo0lFlCyznUEyPmPY1mc3KpPVDYulHSTvyeLNVW00QTLIAFNhR3kYnJTQHeGqU4M3n09g==} + '@rollup/pluginutils@5.1.2': + resolution: {integrity: sha512-/FIdS3PyZ39bjZlwqFnWqCOVnW7o963LtKMwQOD0NhQqw22gSr2YY1afu3FxRip4ZCZNsD5jq6Aaz6QV3D/Njw==} engines: {node: '>=14.0.0'} peerDependencies: rollup: ^1.20.0||^2.0.0||^3.0.0||^4.0.0 @@ -4496,7 +4500,7 @@ packages: resolution: {integrity: sha512-VW7qS8JXwC3SZpawJHxQ+mWwWa5WVIQUUOh/OD6WI85eLcbJPg83ezjGupPXGKF9h31gl7CIRrnJDi4g5pK3Jg==} peerDependencies: '@vue/composition-api': ^1.1.2 - vue: 3.5.7 + vue: 3.5.8 peerDependenciesMeta: '@vue/composition-api': optional: true @@ -4505,7 +4509,7 @@ packages: resolution: {integrity: sha512-j+CDrxVhtQQNOjWzLmCqJeDwmmTAQGvEaNbLr1uPJ9rxJITodJtFNdBFj7l+Nd5o34v2ayEv64Ugh6+1BtuGNg==} peerDependencies: '@vue/composition-api': ^1.2.1 - vue: 3.5.7 + vue: 3.5.8 peerDependenciesMeta: '@vue/composition-api': optional: true @@ -4513,7 +4517,7 @@ packages: '@tanstack/vue-virtual@3.10.8': resolution: {integrity: sha512-DB5QA8c/LfqOqIUCpSs3RdOTVroRRdqeHMqBkYrcashSZtOzIv8xbiqHgg7RYxDfkH5F3Y+e0MkuuyGNDVB0BQ==} peerDependencies: - vue: 3.5.7 + vue: 3.5.8 '@tootallnate/once@1.1.2': resolution: {integrity: sha512-RbzJvlNzmRq5c3O09UipeuXno4tA1FE6ikOjxZK0tuxVv3412l64l5t1W5pj4+rJq9vpkm/kwiR07aZXnsKPxw==} @@ -4584,8 +4588,8 @@ packages: '@types/lodash.clonedeep@4.5.9': resolution: {integrity: sha512-19429mWC+FyaAhOLzsS8kZUsI+/GmBAQ0HFiCPsKGU+7pBXOQWhyrY6xNNDwUSX8SMZMJvuFVMF9O5dQOlQK9Q==} - '@types/lodash@4.17.7': - resolution: {integrity: sha512-8wTvZawATi/lsmNu10/j2hk1KEP0IvjubqPE3cu1Xz7xfXXt5oCq3SNUz4fMIP4XGF9Ky+Ue2tBA3hcS7LSBlA==} + '@types/lodash@4.17.9': + resolution: {integrity: sha512-w9iWudx1XWOHW5lQRS9iKpK/XuRhnN+0T7HvdCCd802FYkT1AMTnxndJHGrNJwRoRHkslGr4S29tjm1cT7x/7w==} '@types/markdown-it@14.1.2': resolution: {integrity: sha512-promo4eFwuiW+TfGxhi+0x3czqTYJkG8qB17ZUJiVF10Xm7NLVRSLUsfRTU/6h1e24VvRnXCx+hG7li58lkzog==} @@ -4602,8 +4606,8 @@ packages: '@types/node@12.20.55': resolution: {integrity: sha512-J8xLz7q2OFulZ2cyGTLE1TbbZcjpno7FaN6zdJNrgAdrJ+DZzh/uFR6YrTb4C+nXakvud8Q4+rbhoIWlYQbUFQ==} - '@types/node@22.5.5': - resolution: {integrity: sha512-Xjs4y5UPO/CLdzpgR6GirZJx36yScjh73+2NlLlkFRSoQN8B0DpfXPdZGnvVmLRLOsqDpOfTNv7D9trgGhmOIA==} + '@types/node@22.7.0': + resolution: {integrity: sha512-MOdOibwBs6KW1vfqz2uKMlxq5xAfAZ98SZjO8e3XnAbFnTJtAspqhWk7hrdSAs9/Y14ZWMiy7/MxMUzAOadYEw==} '@types/normalize-package-data@2.4.4': resolution: {integrity: sha512-37i+OaWTh9qeK4LSHPsyRC7NahnGotNuZvjLSgcPzblpHB3rrCJxAOgI5gCdKm7coonsaX1Of0ILiTcnZjbfxA==} @@ -4644,8 +4648,8 @@ packages: '@types/web-bluetooth@0.0.20': resolution: {integrity: sha512-g9gZnnXVq7gM7v3tJCWV/qw7w+KeOlSHAhgF9RytFyifW6AF61hdT2ucrYhPq9hLs5JIryeupHV3qGk95dH9ow==} - '@typescript-eslint/eslint-plugin@8.6.0': - resolution: {integrity: sha512-UOaz/wFowmoh2G6Mr9gw60B1mm0MzUtm6Ic8G2yM1Le6gyj5Loi/N+O5mocugRGY+8OeeKmkMmbxNqUCq3B4Sg==} + '@typescript-eslint/eslint-plugin@8.7.0': + resolution: {integrity: sha512-RIHOoznhA3CCfSTFiB6kBGLQtB/sox+pJ6jeFu6FxJvqL8qRxq/FfGO/UhsGgQM9oGdXkV4xUgli+dt26biB6A==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} peerDependencies: '@typescript-eslint/parser': ^8.0.0 || ^8.0.0-alpha.0 @@ -4655,8 +4659,8 @@ packages: typescript: optional: true - '@typescript-eslint/parser@8.6.0': - resolution: {integrity: sha512-eQcbCuA2Vmw45iGfcyG4y6rS7BhWfz9MQuk409WD47qMM+bKCGQWXxvoOs1DUp+T7UBMTtRTVT+kXr7Sh4O9Ow==} + '@typescript-eslint/parser@8.7.0': + resolution: {integrity: sha512-lN0btVpj2unxHlNYLI//BQ7nzbMJYBVQX5+pbNXvGYazdlgYonMn4AhhHifQ+J4fGRYA/m1DjaQjx+fDetqBOQ==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} peerDependencies: eslint: ^8.57.0 || ^9.0.0 @@ -4669,12 +4673,12 @@ packages: resolution: {integrity: sha512-jjhdIE/FPF2B7Z1uzc6i3oWKbGcHb87Qw7AWj6jmEqNOfDFbJWtjt/XfwCpvNkpGWlcJaog5vTR+VV8+w9JflA==} engines: {node: ^18.18.0 || >=20.0.0} - '@typescript-eslint/scope-manager@8.6.0': - resolution: {integrity: sha512-ZuoutoS5y9UOxKvpc/GkvF4cuEmpokda4wRg64JEia27wX+PysIE9q+lzDtlHHgblwUWwo5/Qn+/WyTUvDwBHw==} + '@typescript-eslint/scope-manager@8.7.0': + resolution: {integrity: sha512-87rC0k3ZlDOuz82zzXRtQ7Akv3GKhHs0ti4YcbAJtaomllXoSO8hi7Ix3ccEvCd824dy9aIX+j3d2UMAfCtVpg==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} - '@typescript-eslint/type-utils@8.6.0': - resolution: {integrity: sha512-dtePl4gsuenXVwC7dVNlb4mGDcKjDT/Ropsk4za/ouMBPplCLyznIaR+W65mvCvsyS97dymoBRrioEXI7k0XIg==} + '@typescript-eslint/type-utils@8.7.0': + resolution: {integrity: sha512-tl0N0Mj3hMSkEYhLkjREp54OSb/FI6qyCzfiiclvJvOqre6hsZTGSnHtmFLDU8TIM62G7ygEa1bI08lcuRwEnQ==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} peerDependencies: typescript: '*' @@ -4686,8 +4690,8 @@ packages: resolution: {integrity: sha512-iZqi+Ds1y4EDYUtlOOC+aUmxnE9xS/yCigkjA7XpTKV6nCBd3Hp/PRGGmdwnfkV2ThMyYldP1wRpm/id99spTQ==} engines: {node: ^18.18.0 || >=20.0.0} - '@typescript-eslint/types@8.6.0': - resolution: {integrity: sha512-rojqFZGd4MQxw33SrOy09qIDS8WEldM8JWtKQLAjf/X5mGSeEFh5ixQlxssMNyPslVIk9yzWqXCsV2eFhYrYUw==} + '@typescript-eslint/types@8.7.0': + resolution: {integrity: sha512-LLt4BLHFwSfASHSF2K29SZ+ZCsbQOM+LuarPjRUuHm+Qd09hSe3GCeaQbcCr+Mik+0QFRmep/FyZBO6fJ64U3w==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} '@typescript-eslint/typescript-estree@7.18.0': @@ -4699,8 +4703,8 @@ packages: typescript: optional: true - '@typescript-eslint/typescript-estree@8.6.0': - resolution: {integrity: sha512-MOVAzsKJIPIlLK239l5s06YXjNqpKTVhBVDnqUumQJja5+Y94V3+4VUFRA0G60y2jNnTVwRCkhyGQpavfsbq/g==} + '@typescript-eslint/typescript-estree@8.7.0': + resolution: {integrity: sha512-MC8nmcGHsmfAKxwnluTQpNqceniT8SteVwd2voYlmiSWGOtjvGXdPl17dYu2797GVscK30Z04WRM28CrKS9WOg==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} peerDependencies: typescript: '*' @@ -4714,8 +4718,8 @@ packages: peerDependencies: eslint: ^8.56.0 - '@typescript-eslint/utils@8.6.0': - resolution: {integrity: sha512-eNp9cWnYf36NaOVjkEUznf6fEgVy1TWpE0o52e4wtojjBx7D1UV2WAWGzR+8Y5lVFtpMLPwNbC67T83DWSph4A==} + '@typescript-eslint/utils@8.7.0': + resolution: {integrity: sha512-ZbdUdwsl2X/s3CiyAu3gOlfQzpbuG3nTWKPoIvAu1pu5r8viiJvv2NPN2AqArL35NCYtw/lrPPfM4gxrMLNLPw==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} peerDependencies: eslint: ^8.57.0 || ^9.0.0 @@ -4724,8 +4728,8 @@ packages: resolution: {integrity: sha512-cDF0/Gf81QpY3xYyJKDV14Zwdmid5+uuENhjH2EqFaF0ni+yAyq/LzMaIJdhNJXZI7uLzwIlA+V7oWoyn6Curg==} engines: {node: ^18.18.0 || >=20.0.0} - '@typescript-eslint/visitor-keys@8.6.0': - resolution: {integrity: sha512-wapVFfZg9H0qOYh4grNVQiMklJGluQrOUiOhYRrQWhx7BY/+I1IYb8BczWNbbUpO+pqy0rDciv3lQH5E1bCLrg==} + '@typescript-eslint/visitor-keys@8.7.0': + resolution: {integrity: sha512-b1tx0orFCCh/THWPQa2ZwWzvOeyzzp36vkJYOpVg0u8UVOIsfVrnuC9FqAw9gRKn+rG2VmWQ/zDJZzkxUnj/XQ==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} '@ungap/structured-clone@1.2.0': @@ -4753,14 +4757,14 @@ packages: engines: {node: ^18.0.0 || >=20.0.0} peerDependencies: vite: ^5.0.0 - vue: 3.5.7 + vue: 3.5.8 '@vitejs/plugin-vue@5.1.4': resolution: {integrity: sha512-N2XSI2n3sQqp5w7Y/AN/L2XDjBIRGqXko+eDp42sydYSBeJuSm5a1sLf8zakmo8u7tA8NmBgoDLA1HeOESjp9A==} engines: {node: ^18.0.0 || >=20.0.0} peerDependencies: vite: ^5.0.0 - vue: 3.5.7 + vue: 3.5.8 '@vitest/expect@2.1.1': resolution: {integrity: sha512-YeueunS0HiHiQxk+KEOnq/QMzlUuOzbU1Go+PgAsHvvv3tUkJPm9xWt+6ITNTlzsMXUjmgm5T+U7KBPK2qQV6w==} @@ -4817,27 +4821,15 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 - '@vue/compiler-core@3.5.7': - resolution: {integrity: sha512-A0gay3lK71MddsSnGlBxRPOugIVdACze9L/rCo5X5srCyjQfZOfYtSFMJc3aOZCM+xN55EQpb4R97rYn/iEbSw==} - '@vue/compiler-core@3.5.8': resolution: {integrity: sha512-Uzlxp91EPjfbpeO5KtC0KnXPkuTfGsNDeaKQJxQN718uz+RqDYarEf7UhQJGK+ZYloD2taUbHTI2J4WrUaZQNA==} - '@vue/compiler-dom@3.5.7': - resolution: {integrity: sha512-GYWl3+gO8/g0ZdYaJ18fYHdI/WVic2VuuUd1NsPp60DWXKy+XjdhFsDW7FbUto8siYYZcosBGn9yVBkjhq1M8Q==} - '@vue/compiler-dom@3.5.8': resolution: {integrity: sha512-GUNHWvoDSbSa5ZSHT9SnV5WkStWfzJwwTd6NMGzilOE/HM5j+9EB9zGXdtu/fCNEmctBqMs6C9SvVPpVPuk1Eg==} - '@vue/compiler-sfc@3.5.7': - resolution: {integrity: sha512-EjOJtCWJrC7HqoCEzOwpIYHm+JH7YmkxC1hG6VkqIukYRqj8KFUlTLK6hcT4nGgtVov2+ZfrdrRlcaqS78HnBA==} - '@vue/compiler-sfc@3.5.8': resolution: {integrity: sha512-taYpngQtSysrvO9GULaOSwcG5q821zCoIQBtQQSx7Uf7DxpR6CIHR90toPr9QfDD2mqHQPCSgoWBvJu0yV9zjg==} - '@vue/compiler-ssr@3.5.7': - resolution: {integrity: sha512-oZx+jXP2k5arV/8Ly3TpQbfFyimMw2ANrRqvHJoKjPqtEzazxQGZjCLOfq8TnZ3wy2TOXdqfmVp4q7FyYeHV4g==} - '@vue/compiler-ssr@3.5.8': resolution: {integrity: sha512-W96PtryNsNG9u0ZnN5Q5j27Z/feGrFV6zy9q5tzJVyJaLiwYxvC0ek4IXClZygyhjm+XKM7WD9pdKi/wIRVC/Q==} @@ -4847,19 +4839,19 @@ packages: '@vue/devtools-api@6.6.4': resolution: {integrity: sha512-sGhTPMuXqZ1rVOk32RylztWkfXTRhuS7vgAKv0zjqk8gbsHkJ7xfFf+jbySxt7tWObEJwyKaHMikV/WGDiQm8g==} - '@vue/devtools-api@7.4.5': - resolution: {integrity: sha512-PX9uXirHOY2P99kb1cP3DxWZojFW3acNMqd+l4i5nKcqY59trXTOfwDZXt2Qifu0OU1izAQb76Ur6NPVldF2KQ==} + '@vue/devtools-api@7.4.6': + resolution: {integrity: sha512-XipBV5k0/IfTr0sNBDTg7OBUCp51cYMMXyPxLXJZ4K/wmUeMqt8cVdr2ZZGOFq+si/jTyCYnNxeKoyev5DOUUA==} - '@vue/devtools-core@7.4.5': - resolution: {integrity: sha512-QwrgKYxwafJUJrKRvJGbzQLuGt0BC1P4qTr4qlEKgOOs+GV0n6zTry2oeHiwmj5H6pOkLoHnwFMOTB9rFtn9QQ==} + '@vue/devtools-core@7.4.6': + resolution: {integrity: sha512-7ATNPEbVqThOOAp2bg/YUIm9MqqgimbSk24D05hdXUp89JlXX12aTzdrWd9xZRwS78hDR+wCToHl1C/8sopBrg==} peerDependencies: - vue: 3.5.7 + vue: 3.5.8 - '@vue/devtools-kit@7.4.5': - resolution: {integrity: sha512-Uuki4Z6Bc/ExvtlPkeDNGSAe4580R+HPcVABfTE9TF7BTz3Nntk7vxIRUyWblZkUEcB/x+wn2uofyt5i2LaUew==} + '@vue/devtools-kit@7.4.6': + resolution: {integrity: sha512-NbYBwPWgEic1AOd9bWExz9weBzFdjiIfov0yRn4DrRfR+EQJCI9dn4I0XS7IxYGdkmUJi8mFW42LLk18WsGqew==} - '@vue/devtools-shared@7.4.5': - resolution: {integrity: sha512-2XgUOkL/7QDmyYI9J7cm+rz/qBhcGv+W5+i1fhwdQ0HQ1RowhdK66F0QBuJSz/5k12opJY8eN6m03/XZMs7imQ==} + '@vue/devtools-shared@7.4.6': + resolution: {integrity: sha512-rPeSBzElnHYMB05Cc056BQiJpgocQjY8XVulgni+O9a9Gr9tNXgPteSzFFD+fT/iWMxNuUgGKs9CuW5DZewfIg==} '@vue/language-core@2.1.6': resolution: {integrity: sha512-MW569cSky9R/ooKMh6xa2g1D0AtRKbL56k83dzus/bx//RDJk24RHWkMzbAlXjMdDNyxAaagKPRquBIxkxlCkg==} @@ -4869,25 +4861,19 @@ packages: typescript: optional: true - '@vue/reactivity@3.5.7': - resolution: {integrity: sha512-yF0EpokpOHRNXyn/h6abXc9JFIzfdAf0MJHIi92xxCWS0mqrXH6+2aZ+A6EbSrspGzX5MHTd5N8iBA28HnXu9g==} - '@vue/reactivity@3.5.8': resolution: {integrity: sha512-mlgUyFHLCUZcAYkqvzYnlBRCh0t5ZQfLYit7nukn1GR96gc48Bp4B7OIcSfVSvlG1k3BPfD+p22gi1t2n9tsXg==} - '@vue/runtime-core@3.5.7': - resolution: {integrity: sha512-OzLpBpKbZEaZVSNfd+hQbfBrDKux+b7Yl5hYhhWWWhHD7fEpF+CdI3Brm5k5GsufHEfvMcjruPxwQZuBN6nFYQ==} + '@vue/runtime-core@3.5.8': + resolution: {integrity: sha512-fJuPelh64agZ8vKkZgp5iCkPaEqFJsYzxLk9vSC0X3G8ppknclNDr61gDc45yBGTaN5Xqc1qZWU3/NoaBMHcjQ==} - '@vue/runtime-dom@3.5.7': - resolution: {integrity: sha512-fL7cETfE27U2jyTgqzE382IGFY6a6uyznErn27KbbEzNctzxxUWYDbaN3B55l9nXh0xW2LRWPuWKOvjtO2UewQ==} + '@vue/runtime-dom@3.5.8': + resolution: {integrity: sha512-DpAUz+PKjTZPUOB6zJgkxVI3GuYc2iWZiNeeHQUw53kdrparSTG6HeXUrYDjaam8dVsCdvQxDz6ZWxnyjccUjQ==} - '@vue/server-renderer@3.5.7': - resolution: {integrity: sha512-peRypij815eIDjpPpPXvYQGYqPH6QXwLJGWraJYPPn8JqWGl29A8QXnS7/Mh3TkMiOcdsJNhbFCoW2Agc2NgAQ==} + '@vue/server-renderer@3.5.8': + resolution: {integrity: sha512-7AmC9/mEeV9mmXNVyUIm1a1AjUhyeeGNbkLh39J00E7iPeGks8OGRB5blJiMmvqSh8SkaS7jkLWSpXtxUCeagA==} peerDependencies: - vue: 3.5.7 - - '@vue/shared@3.5.7': - resolution: {integrity: sha512-NBE1PBIvzIedxIc2RZiKXvGbJkrZ2/hLf3h8GlS4/sP9xcXEZMFWOazFkNd6aGeUCMaproe5MHVYB3/4AW9q9g==} + vue: 3.5.8 '@vue/shared@3.5.8': resolution: {integrity: sha512-mJleSWbAGySd2RJdX1RBtcrUBX6snyOc0qHpgk3lGi4l9/P/3ny3ELqFWqYdkXIwwNN/kdm8nD9ky8o6l/Lx2A==} @@ -5071,7 +5057,7 @@ packages: resolution: {integrity: sha512-dh5CBXSaxJZBFQBd156sOUuZPfxI7pZsNXDYpHNBt/JyKZoYlbetRp/nJmSragS2Oo0mVC23Ote+TQSGc0TX6g==} engines: {node: '>=12.22.0'} peerDependencies: - vue: 3.5.7 + vue: 3.5.8 any-promise@1.3.0: resolution: {integrity: sha512-7UvmKalWRt1wgjL1RrGxoSJW/0QZFIegpeGvZG9kjp8vrRu55XTHbwnqq2GpXm9uLbcuhxm3IqX9OB4MZR1b2A==} @@ -5212,8 +5198,8 @@ packages: balanced-match@2.0.0: resolution: {integrity: sha512-1ugUSr8BHXRnK23KfuYS+gVMC3LB8QGH9W1iGtDPsNWoQbgtXSExkBu2aDR4epiGWZOjZsj6lDl/N/AqqTC3UA==} - bare-events@2.4.2: - resolution: {integrity: sha512-qMKFd2qG/36aA4GwvKq8MxnPgCQAmBWmSyLWsJcbn8v03wvIPQ/hG1Ms8bPzndZxMDoHpxez5VOS+gC9Yi24/Q==} + bare-events@2.5.0: + resolution: {integrity: sha512-/E8dDe9dsbLyh2qrZ64PEPadOQ0F4gbl1sUJOrmph7xOiIxfY8vwab/4bFLh4Y88/Hk/ujKcrQKc+ps0mv873A==} base64-js@1.5.1: resolution: {integrity: sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==} @@ -5252,8 +5238,8 @@ packages: resolution: {integrity: sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==} engines: {node: '>=8'} - browserslist@4.23.3: - resolution: {integrity: sha512-btwCFJVjI4YWDNfau8RhZ+B1Q/VLoUITrm3RlP6y1tYGWIOa+InuYiRGXUBXo8nA1qKmHMyLB/iVQg5TT4eFoA==} + browserslist@4.24.0: + resolution: {integrity: sha512-Rmb62sR1Zpjql25eSanFGEhAxcFwfA1K0GuQcLoaJBAcENegrQut3hYdhXFF1obQfiDyqIW/cLM5HSJ/9k884A==} engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7} hasBin: true @@ -5327,8 +5313,8 @@ packages: caniuse-api@3.0.0: resolution: {integrity: sha512-bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw==} - caniuse-lite@1.0.30001662: - resolution: {integrity: sha512-sgMUVwLmGseH8ZIrm1d51UbrhqMCH3jvS7gF/M6byuHOnKyLOBL7W8yz5V02OHwgLGA36o/AFhWzzh4uc5aqTA==} + caniuse-lite@1.0.30001663: + resolution: {integrity: sha512-o9C3X27GLKbLeTYZ6HBOLU1tsAcBZsLis28wrVzddShCS16RujjHp9GDHKZqrB3meE0YjhawvMFsGb/igqiPzA==} ccount@2.0.1: resolution: {integrity: sha512-eyrF0jiFpY+3drT6383f1qhkbGsLSifNAjA61IUjZjmLCWjItY6LB9ft9YhoDgwfmclB2zhu51Lc7+95b8NRAg==} @@ -5377,8 +5363,8 @@ packages: resolution: {integrity: sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==} engines: {node: '>= 8.10.0'} - chokidar@4.0.0: - resolution: {integrity: sha512-mxIojEAQcuEvT/lyXq+jf/3cO/KoA6z4CeNDGGevTybECPOMFCnQy3OPahluUkbqgPNGw5Bi78UC7Po6Lhy+NA==} + chokidar@4.0.1: + resolution: {integrity: sha512-n8enUVCED/KVRQlab1hr3MVpcVMvxtZjmEa956u+4YijlmQED223XMSYj2tLuKvr4jcCTzNNMpQDUer72MMmzA==} engines: {node: '>= 14.16.0'} chownr@2.0.0: @@ -6084,13 +6070,13 @@ packages: engines: {node: '>=0.10.0'} hasBin: true - electron-to-chromium@1.5.27: - resolution: {integrity: sha512-o37j1vZqCoEgBuWWXLHQgTN/KDKe7zwpiY5CPeq2RvUqOyJw9xnrULzZAEVQ5p4h+zjMk7hgtOoPdnLxr7m/jw==} + electron-to-chromium@1.5.28: + resolution: {integrity: sha512-VufdJl+rzaKZoYVUijN13QcXVF5dWPZANeFTLNy+OSpHdDL5ynXTF35+60RSBbaQYB1ae723lQXHCrf4pyLsMw==} element-plus@2.8.3: resolution: {integrity: sha512-BXQOyDf0s7JHyNEV8iaO+iaOzTZPsBXVKMzMI967vLCodUBDLrtiY5vglAn1YEebQcUOEUMhGcttTpIvEkcBjQ==} peerDependencies: - vue: 3.5.7 + vue: 3.5.8 emoji-regex@10.4.0: resolution: {integrity: sha512-EC+0oUMY1Rqm4O6LLrgjtYDvcVYTy7chDnM4Q7030tP4Kwj3u/pR6gP9ygnp2CJMK5Gq+9Q2oqmrFJAz01DXjw==} @@ -6182,8 +6168,8 @@ packages: resolution: {integrity: sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==} engines: {node: '>= 0.4'} - es-toolkit@1.20.0: - resolution: {integrity: sha512-dRaoLJVlrQEHGTwSLHcozC/371qY+5QYRsm9JZncos35zcGHyS00ogRTghzRyJLOTrOTWg/8qj+ckvLWPnYP7g==} + es-toolkit@1.21.0: + resolution: {integrity: sha512-d1T3yyOBPYVbmLtjxsuzuIInuJaw7kcbtu/7sQyfM04hT98X8Z0bLKhYYYePdCBYH4GoA5AnWUyodV5xDcdrOw==} esbuild@0.19.12: resolution: {integrity: sha512-aARqgq8roFBj054KvQr5f1sFu0D65G+miZRCuJyJ0G13Zwx7vRar5Zhn2tkQNzIXcBrNVsv/8stehpj+GAjgbg==} @@ -6292,8 +6278,8 @@ packages: resolution: {integrity: sha512-brcKcxGnISN2CcVhXJ/kEQlNa0MEfGRtwKtWA16SkqXHKitaKIMrfemJKLKX1YqDU5C/5JY3PvZXd5jEW04e0Q==} engines: {node: '>=5.0.0'} - eslint-plugin-perfectionist@3.6.0: - resolution: {integrity: sha512-sA6ljy6dL/9cM5ruZ/pMqRVt0FQ4Z7mbQWlBYpyX9941LVfm65d2jl2k1ZbWD3ud9Wm+/NKgOvRnAatsKhMJbA==} + eslint-plugin-perfectionist@3.7.0: + resolution: {integrity: sha512-pemhfcR3LDbYVWeveHok9u048yR7GpsnfyPvn6RsDkp/UV7iqBV0y5K0aGb9ZJMsemOyWok7akxGzPLsz+mHKQ==} engines: {node: ^18.0.0 || >=20.0.0} peerDependencies: astro-eslint-parser: ^1.0.2 @@ -6386,8 +6372,8 @@ packages: resolution: {integrity: sha512-OtIRv/2GyiF6o/d8K7MYKKbXrOUBIK6SfkIRM4Z0dY3w+LiQ0vy3F57m0Z71bjbyeiWFiHJ8brqnmE6H6/jEuw==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} - eslint@9.11.0: - resolution: {integrity: sha512-yVS6XODx+tMFMDFcG4+Hlh+qG7RM6cCJXtQhCKLSsr3XkLvWggHjCqjfh0XsPPnt1c56oaT6PMgW9XWQQjdHXA==} + eslint@9.11.1: + resolution: {integrity: sha512-MobhYKIoAO1s1e4VUrgx1l1Sk2JBR/Gqjjgw8+mfgoLE2xwsHur4gdfTxyTgShrhvdVFTaJSgMiQBl1jv/AWxg==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} hasBin: true peerDependencies: @@ -7278,8 +7264,8 @@ packages: jackspeak@3.4.3: resolution: {integrity: sha512-OGlZQpz2yfahA/Rd1Y8Cd9SIEsqvXkLVoSw/cgwhnhFMDbsQFeZYoJJ7bIZBS9BcamUW96asq/npPWugM+RQBw==} - jackspeak@4.0.1: - resolution: {integrity: sha512-cub8rahkh0Q/bw1+GxP7aeSe29hHHn2V4m29nnDlvCdlgU+3UGxkZp7Z53jLUdpX3jdTO0nJZUDl3xvbWc2Xog==} + jackspeak@4.0.2: + resolution: {integrity: sha512-bZsjR/iRjl1Nk1UkjGpAzLNfQtzuijhn2g+pbZb98HQ1Gk8vM9hfbxeMBP+M2/UUdwj0RqGG3mlvk2MsAqwvEw==} engines: {node: 20 || >=22} jake@10.9.2: @@ -7594,7 +7580,7 @@ packages: lucide-vue-next@0.445.0: resolution: {integrity: sha512-+JWAiyLliw+hprRsxv+Og/Vba3VoCyPLK1GHyd/1nYrVH0bySlPDdobbv2DxhMfGe+3y3yOOk0aSCligFy3Vkg==} peerDependencies: - vue: 3.5.7 + vue: 3.5.8 magic-string@0.25.9: resolution: {integrity: sha512-RmF0AsMzgt25qzqqLc1+MbHmhdx0ojF2Fvs4XnOqz2ZOBXzzkEwc/dJQZCYHAn7v1jbVOjAZfK8msRn4BxO4VQ==} @@ -7825,7 +7811,7 @@ packages: naive-ui@2.39.0: resolution: {integrity: sha512-5oUJzRG+rtLSH8eRU+fJvVYiQids2BxF9jp+fwGoAqHOptEINrBlgBu9uy+95RHE5FLJ7Q/z41o+qkoGnUrKxQ==} peerDependencies: - vue: 3.5.7 + vue: 3.5.8 nanoid@3.3.7: resolution: {integrity: sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g==} @@ -8219,7 +8205,7 @@ packages: peerDependencies: '@vue/composition-api': ^1.4.0 typescript: '>=4.4.4' - vue: 3.5.7 + vue: 3.5.8 peerDependenciesMeta: '@vue/composition-api': optional: true @@ -8668,8 +8654,8 @@ packages: resolution: {integrity: sha512-56rxCq7G/XfB4EkXq9Egn5GCqugWvDFjafDOThIdMBsI15iqPqR5r15TfSr1YPYeEI19YeaXMCbY6u88Y76GLQ==} engines: {node: ^10 || ^12 || >=14} - preact@10.24.0: - resolution: {integrity: sha512-aK8Cf+jkfyuZ0ZZRG9FbYqwmEiGQ4y/PUO4SuTWoyWL244nZZh7bd5h2APd4rSNDYTBNghg1L+5iJN3Skxtbsw==} + preact@10.24.1: + resolution: {integrity: sha512-PnBAwFI3Yjxxcxw75n6VId/5TFxNW/81zexzWD9jn1+eSrOP84NdsS38H5IkF/UH3frqRPT+MvuCoVHjTDTnDw==} prelude-ls@1.2.1: resolution: {integrity: sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==} @@ -8679,8 +8665,8 @@ packages: resolution: {integrity: sha512-GbK2cP9nraSSUF9N2XwUwqfzlAFlMNYYl+ShE/V+H8a9uNl/oUqB1w2EL54Jh0OlyRSd8RfWYJ3coVS4TROP2w==} engines: {node: '>=6.0.0'} - prettier-plugin-tailwindcss@0.6.6: - resolution: {integrity: sha512-OPva5S7WAsPLEsOuOWXATi13QrCKACCiIonFgIR6V4lYv4QLp++UXVhZSzRbZxXGimkQtQT86CC6fQqTOybGng==} + prettier-plugin-tailwindcss@0.6.8: + resolution: {integrity: sha512-dGu3kdm7SXPkiW4nzeWKCl3uoImdd5CTZEJGxyypEPL37Wj0HT2pLqjrvSei1nTeuQfO4PUfjeW5cTUNRLZ4sA==} engines: {node: '>=14.21.3'} peerDependencies: '@ianvs/prettier-plugin-sort-imports': '*' @@ -8817,7 +8803,7 @@ packages: radix-vue@1.9.6: resolution: {integrity: sha512-legrn9jHbEpbJS4QYrA0VmIafj1bmc4MSVzN55WZatGiXMJg3oFrQL5QxpiURJciS+OlATbKA2KAGkMuuLA0LA==} peerDependencies: - vue: 3.5.7 + vue: 3.5.8 radix3@1.1.2: resolution: {integrity: sha512-b484I/7b8rDEdSDKckSSBA8knMpcdsXudlE/LNL639wFoHKwLbEkQFZHWEYwDC0wa0FKUcCY+GAF73Z7wxNVFA==} @@ -9564,8 +9550,8 @@ packages: peerDependencies: tailwindcss: '>=3.0.0 || insiders' - tailwindcss@3.4.12: - resolution: {integrity: sha512-Htf/gHj2+soPb9UayUNci/Ja3d8pTmu9ONTfh4QY8r3MATTZOzmv6UYWF7ZwikEIC8okpfqmGqrmDehua8mF8w==} + tailwindcss@3.4.13: + resolution: {integrity: sha512-KqjHOJKogOUt5Bs752ykCeiwvi0fKVkr5oqsFNt/8px/tA8scFPIlkygsf6jXrfCqGHz7VflA6+yytWuM+XhFw==} engines: {node: '>=14.0.0'} hasBin: true @@ -9976,12 +9962,12 @@ packages: vdirs@0.1.8: resolution: {integrity: sha512-H9V1zGRLQZg9b+GdMk8MXDN2Lva0zx72MPahDKc30v+DtwKjfyOSXWRIX4t2mhDubM1H09gPhWeth/BJWPHGUw==} peerDependencies: - vue: 3.5.7 + vue: 3.5.8 vee-validate@4.13.2: resolution: {integrity: sha512-HlpR/6MJ92TW9f135umMZKUqdd/tFQTxLNSf2ImbU4Y/MlLVAUpF1l64VdjTOhbClAqPjCb5p/SqHDxLpUHXrw==} peerDependencies: - vue: 3.5.7 + vue: 3.5.8 vfile-message@4.0.2: resolution: {integrity: sha512-jRDZ1IMLttGj41KcZvlrYAaI3CfqpLpfpf+Mfig13viT6NKvRzWZ+lXz0Y5D60w6uJIBAOGq9mSHf0gktF0duw==} @@ -10046,8 +10032,8 @@ packages: '@vite-pwa/assets-generator': optional: true - vite-plugin-vue-devtools@7.4.5: - resolution: {integrity: sha512-8D9Dv7uw620r96uI45M7hCyfsBA9KwttdmxA/DAd0/1KpuGmrFEhNwo4ob/sjaou1noAeK2TrnKdW+sFMR6aKQ==} + vite-plugin-vue-devtools@7.4.6: + resolution: {integrity: sha512-lOKur3qovCB3BQStL0qfHEoIusqya1ngfxfWuqn9DTa6h9rlw6+S3PV4geOP5YBGYQ4NW1hRX70OD8I+sYr1dA==} engines: {node: '>=v14.21.3'} peerDependencies: vite: ^3.1.0 || ^4.0.0-0 || ^5.0.0-0 @@ -10057,8 +10043,8 @@ packages: peerDependencies: vite: ^3.0.0-0 || ^4.0.0-0 || ^5.0.0-0 - vite@5.4.7: - resolution: {integrity: sha512-5l2zxqMEPVENgvzTuBpHer2awaetimj2BGkhBPdnwKbPNOlHsODU+oiazEZzLK7KhAnOrO+XGYJYn4ZlUhDtDQ==} + vite@5.4.8: + resolution: {integrity: sha512-FqrItQ4DT1NC4zCUqMB4c4AZORMKIa0m8/URVCZ77OZ/QSNeJ54bU1vrFADbDsuwfIPcgknRkmqakQcgnL4GiQ==} engines: {node: ^18.0.0 || >=20.0.0} hasBin: true peerDependencies: @@ -10131,7 +10117,7 @@ packages: vooks@0.2.12: resolution: {integrity: sha512-iox0I3RZzxtKlcgYaStQYKEzWWGAduMmq+jS7OrNdQo1FgGfPMubGL3uGHOU9n97NIvfFDBGnpSvkWyb/NSn/Q==} peerDependencies: - vue: 3.5.7 + vue: 3.5.8 vscode-languageserver-textdocument@1.0.12: resolution: {integrity: sha512-cxWNPesCnQCcMPeenjKKsOCKQZ/L6Tv19DTRIGuLWe32lyzWhihGVJ/rcckZXJxfdKCFvRLS3fpBIsV/ZGX4zA==} @@ -10148,7 +10134,7 @@ packages: hasBin: true peerDependencies: '@vue/composition-api': ^1.0.0-rc.1 - vue: 3.5.7 + vue: 3.5.8 peerDependenciesMeta: '@vue/composition-api': optional: true @@ -10163,12 +10149,12 @@ packages: resolution: {integrity: sha512-8ul2S4Hy9orKs7eOlkw/zqnVu98GttUdyIMRyjoMpv6hFPxnybgBLdep/UCmdan5kUHyxqMnr2cGHTBuPBYJaw==} engines: {node: '>= 16'} peerDependencies: - vue: 3.5.7 + vue: 3.5.8 vue-router@4.4.5: resolution: {integrity: sha512-4fKZygS8cH1yCyuabAXGUAsyi1b2/o/OKgu/RUb+znIYOxPRxdkytJEx+0wGcpBE1pX6vUgh5jwWOKRGvuA/7Q==} peerDependencies: - vue: 3.5.7 + vue: 3.5.8 vue-tsc@2.1.6: resolution: {integrity: sha512-f98dyZp5FOukcYmbFpuSCJ4Z0vHSOSmxGttZJCsFeX0M4w/Rsq0s4uKXjcSRsZqsRgQa6z7SfuO+y0HVICE57Q==} @@ -10180,27 +10166,27 @@ packages: resolution: {integrity: sha512-IwUC0Aq2zwaXqy74h4WCvFCUtoV0iSWr0snWnE9TnU18S66GAQyqQbRf2qfJtUuiFsBf6qp0MEwdonlwznlcrw==} engines: {node: '>=10.15.0'} peerDependencies: - vue: 3.5.7 + vue: 3.5.8 - vue@3.5.7: - resolution: {integrity: sha512-JcFm0f5j8DQO9E07pZRxqZ/ZsNopMVzHYXpKvnfqXFcA4JTi+4YcrikRn9wkzWsdj0YsLzlLIsR0zzGxA2P6Wg==} + vue@3.5.8: + resolution: {integrity: sha512-hvuvuCy51nP/1fSRvrrIqTLSvrSyz2Pq+KQ8S8SXCxTWVE0nMaOnSDnSOxV1eYmGfvK7mqiwvd1C59CEEz7dAQ==} peerDependencies: typescript: '*' peerDependenciesMeta: typescript: optional: true - vueuc@0.4.58: - resolution: {integrity: sha512-Wnj/N8WbPRSxSt+9ji1jtDHPzda5h2OH/0sFBhvdxDRuyCZbjGg3/cKMaKqEoe+dErTexG2R+i6Q8S/Toq1MYg==} + vueuc@0.4.63: + resolution: {integrity: sha512-QJT0z9yYWXdKpUq6f6IrAgJ83e34iTYMCVHjcAP8lCjldG0JzHnDfJYMpPWkNuLB5SdBZCbYGmYTKnTR+ff7CQ==} peerDependencies: - vue: 3.5.7 + vue: 3.5.8 warning@4.0.3: resolution: {integrity: sha512-rpJyN222KWIvHJ/F53XSZv0Zl/accqHR8et1kpaMTD/fLCRxtV8iX8czMzY7sVZupTI3zcUTg8eycS2kNF9l6w==} - watermark-js-plus@1.5.6: - resolution: {integrity: sha512-hidrfErYr7n3YPQIPcLdzqe01Z3dB3eenkC3e1Mv0KaNI5mi7fJDx4ug+3ueSTdH4q49omO692MSx2JYhywL6Q==} - engines: {node: '>=16.0.0'} + watermark-js-plus@1.5.7: + resolution: {integrity: sha512-KaQEUnvBX5em2hBeuKcpAASpV+sO1j8NbXY7FL7jb0w1TCKmMSyn8nkj2e+KeleuQ1iwyXHEMFdSWXDIQsACYQ==} + engines: {node: '>=20.0.0'} webidl-conversions@3.0.1: resolution: {integrity: sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==} @@ -10558,11 +10544,11 @@ snapshots: '@ant-design/icons-svg@4.4.2': {} - '@ant-design/icons-vue@7.0.1(vue@3.5.7(typescript@5.6.2))': + '@ant-design/icons-vue@7.0.1(vue@3.5.8(typescript@5.6.2))': dependencies: '@ant-design/colors': 6.0.0 '@ant-design/icons-svg': 4.4.2 - vue: 3.5.7(typescript@5.6.2) + vue: 3.5.8(typescript@5.6.2) '@antfu/install-pkg@0.4.1': dependencies: @@ -10581,52 +10567,52 @@ snapshots: '@ast-grep/napi-darwin-arm64@0.22.6': optional: true - '@ast-grep/napi-darwin-arm64@0.27.1': + '@ast-grep/napi-darwin-arm64@0.27.2': optional: true '@ast-grep/napi-darwin-x64@0.22.6': optional: true - '@ast-grep/napi-darwin-x64@0.27.1': + '@ast-grep/napi-darwin-x64@0.27.2': optional: true '@ast-grep/napi-linux-arm64-gnu@0.22.6': optional: true - '@ast-grep/napi-linux-arm64-gnu@0.27.1': + '@ast-grep/napi-linux-arm64-gnu@0.27.2': optional: true - '@ast-grep/napi-linux-arm64-musl@0.27.1': + '@ast-grep/napi-linux-arm64-musl@0.27.2': optional: true '@ast-grep/napi-linux-x64-gnu@0.22.6': optional: true - '@ast-grep/napi-linux-x64-gnu@0.27.1': + '@ast-grep/napi-linux-x64-gnu@0.27.2': optional: true '@ast-grep/napi-linux-x64-musl@0.22.6': optional: true - '@ast-grep/napi-linux-x64-musl@0.27.1': + '@ast-grep/napi-linux-x64-musl@0.27.2': optional: true '@ast-grep/napi-win32-arm64-msvc@0.22.6': optional: true - '@ast-grep/napi-win32-arm64-msvc@0.27.1': + '@ast-grep/napi-win32-arm64-msvc@0.27.2': optional: true '@ast-grep/napi-win32-ia32-msvc@0.22.6': optional: true - '@ast-grep/napi-win32-ia32-msvc@0.27.1': + '@ast-grep/napi-win32-ia32-msvc@0.27.2': optional: true '@ast-grep/napi-win32-x64-msvc@0.22.6': optional: true - '@ast-grep/napi-win32-x64-msvc@0.27.1': + '@ast-grep/napi-win32-x64-msvc@0.27.2': optional: true '@ast-grep/napi@0.22.6': @@ -10640,17 +10626,17 @@ snapshots: '@ast-grep/napi-win32-ia32-msvc': 0.22.6 '@ast-grep/napi-win32-x64-msvc': 0.22.6 - '@ast-grep/napi@0.27.1': + '@ast-grep/napi@0.27.2': optionalDependencies: - '@ast-grep/napi-darwin-arm64': 0.27.1 - '@ast-grep/napi-darwin-x64': 0.27.1 - '@ast-grep/napi-linux-arm64-gnu': 0.27.1 - '@ast-grep/napi-linux-arm64-musl': 0.27.1 - '@ast-grep/napi-linux-x64-gnu': 0.27.1 - '@ast-grep/napi-linux-x64-musl': 0.27.1 - '@ast-grep/napi-win32-arm64-msvc': 0.27.1 - '@ast-grep/napi-win32-ia32-msvc': 0.27.1 - '@ast-grep/napi-win32-x64-msvc': 0.27.1 + '@ast-grep/napi-darwin-arm64': 0.27.2 + '@ast-grep/napi-darwin-x64': 0.27.2 + '@ast-grep/napi-linux-arm64-gnu': 0.27.2 + '@ast-grep/napi-linux-arm64-musl': 0.27.2 + '@ast-grep/napi-linux-x64-gnu': 0.27.2 + '@ast-grep/napi-linux-x64-musl': 0.27.2 + '@ast-grep/napi-win32-arm64-msvc': 0.27.2 + '@ast-grep/napi-win32-ia32-msvc': 0.27.2 + '@ast-grep/napi-win32-x64-msvc': 0.27.2 '@babel/code-frame@7.24.7': dependencies: @@ -10701,7 +10687,7 @@ snapshots: dependencies: '@babel/compat-data': 7.25.4 '@babel/helper-validator-option': 7.24.8 - browserslist: 4.23.3 + browserslist: 4.24.0 lru-cache: 5.1.1 semver: 6.3.1 @@ -11635,11 +11621,11 @@ snapshots: dependencies: mime: 3.0.0 - '@commitlint/cli@19.5.0(@types/node@22.5.5)(typescript@5.6.2)': + '@commitlint/cli@19.5.0(@types/node@22.7.0)(typescript@5.6.2)': dependencies: '@commitlint/format': 19.5.0 '@commitlint/lint': 19.5.0 - '@commitlint/load': 19.5.0(@types/node@22.5.5)(typescript@5.6.2) + '@commitlint/load': 19.5.0(@types/node@22.7.0)(typescript@5.6.2) '@commitlint/read': 19.5.0 '@commitlint/types': 19.5.0 tinyexec: 0.3.0 @@ -11686,7 +11672,7 @@ snapshots: '@commitlint/rules': 19.5.0 '@commitlint/types': 19.5.0 - '@commitlint/load@19.5.0(@types/node@22.5.5)(typescript@5.6.2)': + '@commitlint/load@19.5.0(@types/node@22.7.0)(typescript@5.6.2)': dependencies: '@commitlint/config-validator': 19.5.0 '@commitlint/execute-rule': 19.5.0 @@ -11694,7 +11680,7 @@ snapshots: '@commitlint/types': 19.5.0 chalk: 5.3.0 cosmiconfig: 9.0.0(typescript@5.6.2) - cosmiconfig-typescript-loader: 5.0.0(@types/node@22.5.5)(cosmiconfig@9.0.0(typescript@5.6.2))(typescript@5.6.2) + cosmiconfig-typescript-loader: 5.0.0(@types/node@22.7.0)(cosmiconfig@9.0.0(typescript@5.6.2))(typescript@5.6.2) lodash.isplainobject: 4.0.6 lodash.merge: 4.6.2 lodash.uniq: 4.5.0 @@ -11773,7 +11759,7 @@ snapshots: '@cspell/dict-golang': 6.0.12 '@cspell/dict-google': 1.0.1 '@cspell/dict-haskell': 4.0.1 - '@cspell/dict-html': 4.0.5 + '@cspell/dict-html': 4.0.6 '@cspell/dict-html-symbol-entities': 4.0.0 '@cspell/dict-java': 5.0.7 '@cspell/dict-julia': 1.0.1 @@ -11786,7 +11772,7 @@ snapshots: '@cspell/dict-node': 5.0.1 '@cspell/dict-npm': 5.1.5 '@cspell/dict-php': 4.0.10 - '@cspell/dict-powershell': 5.0.8 + '@cspell/dict-powershell': 5.0.9 '@cspell/dict-public-licenses': 2.0.8 '@cspell/dict-python': 4.2.6 '@cspell/dict-r': 2.0.1 @@ -11871,7 +11857,7 @@ snapshots: '@cspell/dict-html-symbol-entities@4.0.0': {} - '@cspell/dict-html@4.0.5': {} + '@cspell/dict-html@4.0.6': {} '@cspell/dict-java@5.0.7': {} @@ -11895,7 +11881,7 @@ snapshots: '@cspell/dict-php@4.0.10': {} - '@cspell/dict-powershell@5.0.8': {} + '@cspell/dict-powershell@5.0.9': {} '@cspell/dict-public-licenses@2.0.8': {} @@ -11939,9 +11925,9 @@ snapshots: dependencies: css-render: 0.15.14 - '@css-render/vue3-ssr@0.15.14(vue@3.5.7(typescript@5.6.2))': + '@css-render/vue3-ssr@0.15.14(vue@3.5.8(typescript@5.6.2))': dependencies: - vue: 3.5.7(typescript@5.6.2) + vue: 3.5.8(typescript@5.6.2) '@csstools/cascade-layer-name-parser@2.0.1(@csstools/css-parser-algorithms@3.0.1(@csstools/css-tokenizer@3.0.1))(@csstools/css-tokenizer@3.0.1)': dependencies: @@ -12188,7 +12174,7 @@ snapshots: '@docsearch/js@3.6.1(@algolia/client-search@4.24.0)(search-insights@2.17.2)': dependencies: '@docsearch/react': 3.6.1(@algolia/client-search@4.24.0)(search-insights@2.17.2) - preact: 10.24.0 + preact: 10.24.1 transitivePeerDependencies: - '@algolia/client-search' - '@types/react' @@ -12209,9 +12195,9 @@ snapshots: '@dual-bundle/import-meta-resolve@4.1.0': {} - '@element-plus/icons-vue@2.3.1(vue@3.5.7(typescript@5.6.2))': + '@element-plus/icons-vue@2.3.1(vue@3.5.8(typescript@5.6.2))': dependencies: - vue: 3.5.7(typescript@5.6.2) + vue: 3.5.8(typescript@5.6.2) '@emotion/hash@0.8.0': {} @@ -12504,9 +12490,9 @@ snapshots: '@esbuild/win32-x64@0.23.1': optional: true - '@eslint-community/eslint-utils@4.4.0(eslint@9.11.0(jiti@1.21.6))': + '@eslint-community/eslint-utils@4.4.0(eslint@9.11.1(jiti@1.21.6))': dependencies: - eslint: 9.11.0(jiti@1.21.6) + eslint: 9.11.1(jiti@1.21.6) eslint-visitor-keys: 3.4.3 '@eslint-community/regexpp@4.11.1': {} @@ -12519,6 +12505,8 @@ snapshots: transitivePeerDependencies: - supports-color + '@eslint/core@0.6.0': {} + '@eslint/eslintrc@3.1.0': dependencies: ajv: 6.12.6 @@ -12533,7 +12521,7 @@ snapshots: transitivePeerDependencies: - supports-color - '@eslint/js@9.11.0': {} + '@eslint/js@9.11.1': {} '@eslint/object-schema@2.1.4': {} @@ -12554,11 +12542,11 @@ snapshots: '@floating-ui/utils@0.2.8': {} - '@floating-ui/vue@1.1.5(vue@3.5.7(typescript@5.6.2))': + '@floating-ui/vue@1.1.5(vue@3.5.8(typescript@5.6.2))': dependencies: '@floating-ui/dom': 1.6.11 '@floating-ui/utils': 0.2.8 - vue-demi: 0.14.10(vue@3.5.7(typescript@5.6.2)) + vue-demi: 0.14.10(vue@3.5.8(typescript@5.6.2)) transitivePeerDependencies: - '@vue/composition-api' - vue @@ -12604,10 +12592,10 @@ snapshots: transitivePeerDependencies: - supports-color - '@iconify/vue@4.1.2(vue@3.5.7(typescript@5.6.2))': + '@iconify/vue@4.1.2(vue@3.5.8(typescript@5.6.2))': dependencies: '@iconify/types': 2.0.0 - vue: 3.5.7(typescript@5.6.2) + vue: 3.5.8(typescript@5.6.2) '@internationalized/date@3.5.5': dependencies: @@ -12617,7 +12605,7 @@ snapshots: dependencies: '@swc/helpers': 0.5.13 - '@intlify/bundle-utils@9.0.0-beta.0(vue-i18n@10.0.3(vue@3.5.7(typescript@5.6.2)))': + '@intlify/bundle-utils@9.0.0-beta.0(vue-i18n@10.0.3(vue@3.5.8(typescript@5.6.2)))': dependencies: '@intlify/message-compiler': 10.0.0 '@intlify/shared': 10.0.0 @@ -12629,7 +12617,7 @@ snapshots: source-map-js: 1.2.1 yaml-eslint-parser: 1.2.3 optionalDependencies: - vue-i18n: 10.0.3(vue@3.5.7(typescript@5.6.2)) + vue-i18n: 10.0.3(vue@3.5.8(typescript@5.6.2)) '@intlify/core-base@10.0.3': dependencies: @@ -12650,13 +12638,13 @@ snapshots: '@intlify/shared@10.0.3': {} - '@intlify/unplugin-vue-i18n@5.2.0(@vue/compiler-dom@3.5.8)(eslint@9.11.0(jiti@1.21.6))(rollup@4.22.4)(typescript@5.6.2)(vue-i18n@10.0.3(vue@3.5.7(typescript@5.6.2)))(vue@3.5.7(typescript@5.6.2))': + '@intlify/unplugin-vue-i18n@5.2.0(@vue/compiler-dom@3.5.8)(eslint@9.11.1(jiti@1.21.6))(rollup@4.22.4)(typescript@5.6.2)(vue-i18n@10.0.3(vue@3.5.8(typescript@5.6.2)))(vue@3.5.8(typescript@5.6.2))': dependencies: - '@eslint-community/eslint-utils': 4.4.0(eslint@9.11.0(jiti@1.21.6)) - '@intlify/bundle-utils': 9.0.0-beta.0(vue-i18n@10.0.3(vue@3.5.7(typescript@5.6.2))) + '@eslint-community/eslint-utils': 4.4.0(eslint@9.11.1(jiti@1.21.6)) + '@intlify/bundle-utils': 9.0.0-beta.0(vue-i18n@10.0.3(vue@3.5.8(typescript@5.6.2))) '@intlify/shared': 10.0.0 - '@intlify/vue-i18n-extensions': 7.0.0(@intlify/shared@10.0.0)(@vue/compiler-dom@3.5.8)(vue-i18n@10.0.3(vue@3.5.7(typescript@5.6.2)))(vue@3.5.7(typescript@5.6.2)) - '@rollup/pluginutils': 5.1.0(rollup@4.22.4) + '@intlify/vue-i18n-extensions': 7.0.0(@intlify/shared@10.0.0)(@vue/compiler-dom@3.5.8)(vue-i18n@10.0.3(vue@3.5.8(typescript@5.6.2)))(vue@3.5.8(typescript@5.6.2)) + '@rollup/pluginutils': 5.1.2(rollup@4.22.4) '@typescript-eslint/scope-manager': 7.18.0 '@typescript-eslint/typescript-estree': 7.18.0(typescript@5.6.2) debug: 4.3.7 @@ -12667,9 +12655,9 @@ snapshots: picocolors: 1.1.0 source-map-js: 1.2.1 unplugin: 1.14.1 - vue: 3.5.7(typescript@5.6.2) + vue: 3.5.8(typescript@5.6.2) optionalDependencies: - vue-i18n: 10.0.3(vue@3.5.7(typescript@5.6.2)) + vue-i18n: 10.0.3(vue@3.5.8(typescript@5.6.2)) transitivePeerDependencies: - '@vue/compiler-dom' - eslint @@ -12678,14 +12666,14 @@ snapshots: - typescript - webpack-sources - '@intlify/vue-i18n-extensions@7.0.0(@intlify/shared@10.0.0)(@vue/compiler-dom@3.5.8)(vue-i18n@10.0.3(vue@3.5.7(typescript@5.6.2)))(vue@3.5.7(typescript@5.6.2))': + '@intlify/vue-i18n-extensions@7.0.0(@intlify/shared@10.0.0)(@vue/compiler-dom@3.5.8)(vue-i18n@10.0.3(vue@3.5.8(typescript@5.6.2)))(vue@3.5.8(typescript@5.6.2))': dependencies: '@babel/parser': 7.25.6 optionalDependencies: '@intlify/shared': 10.0.0 '@vue/compiler-dom': 3.5.8 - vue: 3.5.7(typescript@5.6.2) - vue-i18n: 10.0.3(vue@3.5.7(typescript@5.6.2)) + vue: 3.5.8(typescript@5.6.2) + vue-i18n: 10.0.3(vue@3.5.8(typescript@5.6.2)) '@ioredis/commands@1.2.0': {} @@ -12783,23 +12771,23 @@ snapshots: - encoding - supports-color - '@microsoft/api-extractor-model@7.29.6(@types/node@22.5.5)': + '@microsoft/api-extractor-model@7.29.6(@types/node@22.7.0)': dependencies: '@microsoft/tsdoc': 0.15.0 '@microsoft/tsdoc-config': 0.17.0 - '@rushstack/node-core-library': 5.7.0(@types/node@22.5.5) + '@rushstack/node-core-library': 5.7.0(@types/node@22.7.0) transitivePeerDependencies: - '@types/node' - '@microsoft/api-extractor@7.47.7(@types/node@22.5.5)': + '@microsoft/api-extractor@7.47.7(@types/node@22.7.0)': dependencies: - '@microsoft/api-extractor-model': 7.29.6(@types/node@22.5.5) + '@microsoft/api-extractor-model': 7.29.6(@types/node@22.7.0) '@microsoft/tsdoc': 0.15.0 '@microsoft/tsdoc-config': 0.17.0 - '@rushstack/node-core-library': 5.7.0(@types/node@22.5.5) + '@rushstack/node-core-library': 5.7.0(@types/node@22.7.0) '@rushstack/rig-package': 0.5.3 - '@rushstack/terminal': 0.14.0(@types/node@22.5.5) - '@rushstack/ts-command-line': 4.22.6(@types/node@22.5.5) + '@rushstack/terminal': 0.14.0(@types/node@22.7.0) + '@rushstack/ts-command-line': 4.22.6(@types/node@22.7.0) lodash: 4.17.21 minimatch: 3.0.8 resolve: 1.22.8 @@ -12841,12 +12829,12 @@ snapshots: '@nodelib/fs.scandir': 2.1.5 fastq: 1.17.1 - '@nolebase/ui@2.5.0(@algolia/client-search@4.24.0)(@types/node@22.5.5)(async-validator@4.2.5)(axios@1.7.7)(nprogress@0.2.0)(postcss@8.4.47)(qrcode@1.5.4)(sass@1.79.3)(search-insights@2.17.2)(sortablejs@1.15.3)(terser@5.33.0)(typescript@5.6.2)': + '@nolebase/ui@2.5.0(@algolia/client-search@4.24.0)(@types/node@22.7.0)(async-validator@4.2.5)(axios@1.7.7)(nprogress@0.2.0)(postcss@8.4.47)(qrcode@1.5.4)(sass@1.79.3)(search-insights@2.17.2)(sortablejs@1.15.3)(terser@5.33.0)(typescript@5.6.2)': dependencies: '@iconify-json/octicon': 1.2.0 less: 4.2.0 - vitepress: 1.3.4(@algolia/client-search@4.24.0)(@types/node@22.5.5)(async-validator@4.2.5)(axios@1.7.7)(less@4.2.0)(nprogress@0.2.0)(postcss@8.4.47)(qrcode@1.5.4)(sass@1.79.3)(search-insights@2.17.2)(sortablejs@1.15.3)(terser@5.33.0)(typescript@5.6.2) - vue: 3.5.7(typescript@5.6.2) + vitepress: 1.3.4(@algolia/client-search@4.24.0)(@types/node@22.7.0)(async-validator@4.2.5)(axios@1.7.7)(less@4.2.0)(nprogress@0.2.0)(postcss@8.4.47)(qrcode@1.5.4)(sass@1.79.3)(search-insights@2.17.2)(sortablejs@1.15.3)(terser@5.33.0)(typescript@5.6.2) + vue: 3.5.8(typescript@5.6.2) transitivePeerDependencies: - '@algolia/client-search' - '@types/node' @@ -12876,20 +12864,20 @@ snapshots: - typescript - universal-cookie - '@nolebase/vitepress-plugin-git-changelog@2.5.0(@algolia/client-search@4.24.0)(@types/node@22.5.5)(async-validator@4.2.5)(axios@1.7.7)(nprogress@0.2.0)(postcss@8.4.47)(qrcode@1.5.4)(sass@1.79.3)(search-insights@2.17.2)(sortablejs@1.15.3)(terser@5.33.0)(typescript@5.6.2)': + '@nolebase/vitepress-plugin-git-changelog@2.5.0(@algolia/client-search@4.24.0)(@types/node@22.7.0)(async-validator@4.2.5)(axios@1.7.7)(nprogress@0.2.0)(postcss@8.4.47)(qrcode@1.5.4)(sass@1.79.3)(search-insights@2.17.2)(sortablejs@1.15.3)(terser@5.33.0)(typescript@5.6.2)': dependencies: '@iconify-json/octicon': 1.2.0 - '@nolebase/ui': 2.5.0(@algolia/client-search@4.24.0)(@types/node@22.5.5)(async-validator@4.2.5)(axios@1.7.7)(nprogress@0.2.0)(postcss@8.4.47)(qrcode@1.5.4)(sass@1.79.3)(search-insights@2.17.2)(sortablejs@1.15.3)(terser@5.33.0)(typescript@5.6.2) + '@nolebase/ui': 2.5.0(@algolia/client-search@4.24.0)(@types/node@22.7.0)(async-validator@4.2.5)(axios@1.7.7)(nprogress@0.2.0)(postcss@8.4.47)(qrcode@1.5.4)(sass@1.79.3)(search-insights@2.17.2)(sortablejs@1.15.3)(terser@5.33.0)(typescript@5.6.2) colorette: 2.0.20 date-fns: 3.6.0 defu: 6.1.4 - es-toolkit: 1.20.0 + es-toolkit: 1.21.0 execa: 8.0.1 globby: 14.0.2 gray-matter: 4.0.3 less: 4.2.0 uncrypto: 0.1.3 - vitepress: 1.3.4(@algolia/client-search@4.24.0)(@types/node@22.5.5)(async-validator@4.2.5)(axios@1.7.7)(less@4.2.0)(nprogress@0.2.0)(postcss@8.4.47)(qrcode@1.5.4)(sass@1.79.3)(search-insights@2.17.2)(sortablejs@1.15.3)(terser@5.33.0)(typescript@5.6.2) + vitepress: 1.3.4(@algolia/client-search@4.24.0)(@types/node@22.7.0)(async-validator@4.2.5)(axios@1.7.7)(less@4.2.0)(nprogress@0.2.0)(postcss@8.4.47)(qrcode@1.5.4)(sass@1.79.3)(search-insights@2.17.2)(sortablejs@1.15.3)(terser@5.33.0)(typescript@5.6.2) transitivePeerDependencies: - '@algolia/client-search' - '@types/node' @@ -13062,19 +13050,15 @@ snapshots: '@polka/url@1.0.0-next.28': {} - '@radix-icons/vue@1.0.0(vue@3.5.7(typescript@5.6.2))': + '@radix-icons/vue@1.0.0(vue@3.5.8(typescript@5.6.2))': dependencies: - vue: 3.5.7(typescript@5.6.2) + vue: 3.5.8(typescript@5.6.2) - '@rollup/plugin-alias@5.1.0(rollup@3.29.5)': - dependencies: - slash: 4.0.0 + '@rollup/plugin-alias@5.1.1(rollup@3.29.5)': optionalDependencies: rollup: 3.29.5 - '@rollup/plugin-alias@5.1.0(rollup@4.22.4)': - dependencies: - slash: 4.0.0 + '@rollup/plugin-alias@5.1.1(rollup@4.22.4)': optionalDependencies: rollup: 4.22.4 @@ -13089,7 +13073,7 @@ snapshots: '@rollup/plugin-commonjs@25.0.8(rollup@3.29.5)': dependencies: - '@rollup/pluginutils': 5.1.0(rollup@3.29.5) + '@rollup/pluginutils': 5.1.2(rollup@3.29.5) commondir: 1.0.1 estree-walker: 2.0.2 glob: 8.1.0 @@ -13100,7 +13084,7 @@ snapshots: '@rollup/plugin-commonjs@25.0.8(rollup@4.22.4)': dependencies: - '@rollup/pluginutils': 5.1.0(rollup@4.22.4) + '@rollup/pluginutils': 5.1.2(rollup@4.22.4) commondir: 1.0.1 estree-walker: 2.0.2 glob: 8.1.0 @@ -13111,7 +13095,7 @@ snapshots: '@rollup/plugin-inject@5.0.5(rollup@4.22.4)': dependencies: - '@rollup/pluginutils': 5.1.0(rollup@4.22.4) + '@rollup/pluginutils': 5.1.2(rollup@4.22.4) estree-walker: 2.0.2 magic-string: 0.30.11 optionalDependencies: @@ -13119,44 +13103,41 @@ snapshots: '@rollup/plugin-json@6.1.0(rollup@3.29.5)': dependencies: - '@rollup/pluginutils': 5.1.0(rollup@3.29.5) + '@rollup/pluginutils': 5.1.2(rollup@3.29.5) optionalDependencies: rollup: 3.29.5 '@rollup/plugin-json@6.1.0(rollup@4.22.4)': dependencies: - '@rollup/pluginutils': 5.1.0(rollup@4.22.4) + '@rollup/pluginutils': 5.1.2(rollup@4.22.4) optionalDependencies: rollup: 4.22.4 - '@rollup/plugin-node-resolve@15.2.3(rollup@2.79.1)': + '@rollup/plugin-node-resolve@15.3.0(rollup@2.79.1)': dependencies: - '@rollup/pluginutils': 5.1.0(rollup@2.79.1) + '@rollup/pluginutils': 5.1.2(rollup@2.79.1) '@types/resolve': 1.20.2 deepmerge: 4.3.1 - is-builtin-module: 3.2.1 is-module: 1.0.0 resolve: 1.22.8 optionalDependencies: rollup: 2.79.1 - '@rollup/plugin-node-resolve@15.2.3(rollup@3.29.5)': + '@rollup/plugin-node-resolve@15.3.0(rollup@3.29.5)': dependencies: - '@rollup/pluginutils': 5.1.0(rollup@3.29.5) + '@rollup/pluginutils': 5.1.2(rollup@3.29.5) '@types/resolve': 1.20.2 deepmerge: 4.3.1 - is-builtin-module: 3.2.1 is-module: 1.0.0 resolve: 1.22.8 optionalDependencies: rollup: 3.29.5 - '@rollup/plugin-node-resolve@15.2.3(rollup@4.22.4)': + '@rollup/plugin-node-resolve@15.3.0(rollup@4.22.4)': dependencies: - '@rollup/pluginutils': 5.1.0(rollup@4.22.4) + '@rollup/pluginutils': 5.1.2(rollup@4.22.4) '@types/resolve': 1.20.2 deepmerge: 4.3.1 - is-builtin-module: 3.2.1 is-module: 1.0.0 resolve: 1.22.8 optionalDependencies: @@ -13170,14 +13151,14 @@ snapshots: '@rollup/plugin-replace@5.0.7(rollup@3.29.5)': dependencies: - '@rollup/pluginutils': 5.1.0(rollup@3.29.5) + '@rollup/pluginutils': 5.1.2(rollup@3.29.5) magic-string: 0.30.11 optionalDependencies: rollup: 3.29.5 '@rollup/plugin-replace@5.0.7(rollup@4.22.4)': dependencies: - '@rollup/pluginutils': 5.1.0(rollup@4.22.4) + '@rollup/pluginutils': 5.1.2(rollup@4.22.4) magic-string: 0.30.11 optionalDependencies: rollup: 4.22.4 @@ -13210,7 +13191,7 @@ snapshots: estree-walker: 2.0.2 picomatch: 2.3.1 - '@rollup/pluginutils@5.1.0(rollup@2.79.1)': + '@rollup/pluginutils@5.1.2(rollup@2.79.1)': dependencies: '@types/estree': 1.0.6 estree-walker: 2.0.2 @@ -13218,7 +13199,7 @@ snapshots: optionalDependencies: rollup: 2.79.1 - '@rollup/pluginutils@5.1.0(rollup@3.29.5)': + '@rollup/pluginutils@5.1.2(rollup@3.29.5)': dependencies: '@types/estree': 1.0.6 estree-walker: 2.0.2 @@ -13226,7 +13207,7 @@ snapshots: optionalDependencies: rollup: 3.29.5 - '@rollup/pluginutils@5.1.0(rollup@4.22.4)': + '@rollup/pluginutils@5.1.2(rollup@4.22.4)': dependencies: '@types/estree': 1.0.6 estree-walker: 2.0.2 @@ -13282,7 +13263,7 @@ snapshots: '@rollup/rollup-win32-x64-msvc@4.22.4': optional: true - '@rushstack/node-core-library@5.7.0(@types/node@22.5.5)': + '@rushstack/node-core-library@5.7.0(@types/node@22.7.0)': dependencies: ajv: 8.13.0 ajv-draft-04: 1.0.0(ajv@8.13.0) @@ -13293,23 +13274,23 @@ snapshots: resolve: 1.22.8 semver: 7.5.4 optionalDependencies: - '@types/node': 22.5.5 + '@types/node': 22.7.0 '@rushstack/rig-package@0.5.3': dependencies: resolve: 1.22.8 strip-json-comments: 3.1.1 - '@rushstack/terminal@0.14.0(@types/node@22.5.5)': + '@rushstack/terminal@0.14.0(@types/node@22.7.0)': dependencies: - '@rushstack/node-core-library': 5.7.0(@types/node@22.5.5) + '@rushstack/node-core-library': 5.7.0(@types/node@22.7.0) supports-color: 8.1.1 optionalDependencies: - '@types/node': 22.5.5 + '@types/node': 22.7.0 - '@rushstack/ts-command-line@4.22.6(@types/node@22.5.5)': + '@rushstack/ts-command-line@4.22.6(@types/node@22.7.0)': dependencies: - '@rushstack/terminal': 0.14.0(@types/node@22.5.5) + '@rushstack/terminal': 0.14.0(@types/node@22.7.0) '@types/argparse': 1.0.38 argparse: 1.0.10 string-argv: 0.3.2 @@ -13387,13 +13368,13 @@ snapshots: postcss: 8.4.47 postcss-nested: 5.0.6(postcss@8.4.47) - '@tailwindcss/typography@0.5.15(tailwindcss@3.4.12)': + '@tailwindcss/typography@0.5.15(tailwindcss@3.4.13)': dependencies: lodash.castarray: 4.4.0 lodash.isplainobject: 4.0.6 lodash.merge: 4.6.2 postcss-selector-parser: 6.0.10 - tailwindcss: 3.4.12 + tailwindcss: 3.4.13 '@tanstack/match-sorter-utils@8.19.4': dependencies: @@ -13405,24 +13386,24 @@ snapshots: '@tanstack/virtual-core@3.10.8': {} - '@tanstack/vue-query@5.56.2(vue@3.5.7(typescript@5.6.2))': + '@tanstack/vue-query@5.56.2(vue@3.5.8(typescript@5.6.2))': dependencies: '@tanstack/match-sorter-utils': 8.19.4 '@tanstack/query-core': 5.56.2 '@vue/devtools-api': 6.6.4 - vue: 3.5.7(typescript@5.6.2) - vue-demi: 0.14.10(vue@3.5.7(typescript@5.6.2)) + vue: 3.5.8(typescript@5.6.2) + vue-demi: 0.14.10(vue@3.5.8(typescript@5.6.2)) - '@tanstack/vue-store@0.5.5(vue@3.5.7(typescript@5.6.2))': + '@tanstack/vue-store@0.5.5(vue@3.5.8(typescript@5.6.2))': dependencies: '@tanstack/store': 0.5.5 - vue: 3.5.7(typescript@5.6.2) - vue-demi: 0.14.10(vue@3.5.7(typescript@5.6.2)) + vue: 3.5.8(typescript@5.6.2) + vue-demi: 0.14.10(vue@3.5.8(typescript@5.6.2)) - '@tanstack/vue-virtual@3.10.8(vue@3.5.7(typescript@5.6.2))': + '@tanstack/vue-virtual@3.10.8(vue@3.5.8(typescript@5.6.2))': dependencies: '@tanstack/virtual-core': 3.10.8 - vue: 3.5.7(typescript@5.6.2) + vue: 3.5.8(typescript@5.6.2) '@tootallnate/once@1.1.2': {} @@ -13442,7 +13423,7 @@ snapshots: '@types/conventional-commits-parser@5.0.0': dependencies: - '@types/node': 22.5.5 + '@types/node': 22.7.0 '@types/eslint@9.6.1': dependencies: @@ -13458,7 +13439,7 @@ snapshots: '@types/fs-extra@11.0.4': dependencies: '@types/jsonfile': 6.1.4 - '@types/node': 22.5.5 + '@types/node': 22.7.0 optional: true '@types/hast@3.0.4': @@ -13469,18 +13450,18 @@ snapshots: '@types/http-proxy@1.17.15': dependencies: - '@types/node': 22.5.5 + '@types/node': 22.7.0 '@types/json-schema@7.0.15': {} '@types/jsonfile@6.1.4': dependencies: - '@types/node': 22.5.5 + '@types/node': 22.7.0 optional: true '@types/jsonwebtoken@9.0.7': dependencies: - '@types/node': 22.5.5 + '@types/node': 22.7.0 '@types/katex@0.16.7': {} @@ -13488,13 +13469,13 @@ snapshots: '@types/lodash-es@4.17.12': dependencies: - '@types/lodash': 4.17.7 + '@types/lodash': 4.17.9 '@types/lodash.clonedeep@4.5.9': dependencies: - '@types/lodash': 4.17.7 + '@types/lodash': 4.17.9 - '@types/lodash@4.17.7': {} + '@types/lodash@4.17.9': {} '@types/markdown-it@14.1.2': dependencies: @@ -13511,7 +13492,7 @@ snapshots: '@types/node@12.20.55': {} - '@types/node@22.5.5': + '@types/node@22.7.0': dependencies: undici-types: 6.19.8 @@ -13527,11 +13508,11 @@ snapshots: '@types/qrcode@1.5.5': dependencies: - '@types/node': 22.5.5 + '@types/node': 22.7.0 '@types/readdir-glob@1.1.5': dependencies: - '@types/node': 22.5.5 + '@types/node': 22.7.0 '@types/resolve@1.20.2': {} @@ -13547,15 +13528,15 @@ snapshots: '@types/web-bluetooth@0.0.20': {} - '@typescript-eslint/eslint-plugin@8.6.0(@typescript-eslint/parser@8.6.0(eslint@9.11.0(jiti@1.21.6))(typescript@5.6.2))(eslint@9.11.0(jiti@1.21.6))(typescript@5.6.2)': + '@typescript-eslint/eslint-plugin@8.7.0(@typescript-eslint/parser@8.7.0(eslint@9.11.1(jiti@1.21.6))(typescript@5.6.2))(eslint@9.11.1(jiti@1.21.6))(typescript@5.6.2)': dependencies: '@eslint-community/regexpp': 4.11.1 - '@typescript-eslint/parser': 8.6.0(eslint@9.11.0(jiti@1.21.6))(typescript@5.6.2) - '@typescript-eslint/scope-manager': 8.6.0 - '@typescript-eslint/type-utils': 8.6.0(eslint@9.11.0(jiti@1.21.6))(typescript@5.6.2) - '@typescript-eslint/utils': 8.6.0(eslint@9.11.0(jiti@1.21.6))(typescript@5.6.2) - '@typescript-eslint/visitor-keys': 8.6.0 - eslint: 9.11.0(jiti@1.21.6) + '@typescript-eslint/parser': 8.7.0(eslint@9.11.1(jiti@1.21.6))(typescript@5.6.2) + '@typescript-eslint/scope-manager': 8.7.0 + '@typescript-eslint/type-utils': 8.7.0(eslint@9.11.1(jiti@1.21.6))(typescript@5.6.2) + '@typescript-eslint/utils': 8.7.0(eslint@9.11.1(jiti@1.21.6))(typescript@5.6.2) + '@typescript-eslint/visitor-keys': 8.7.0 + eslint: 9.11.1(jiti@1.21.6) graphemer: 1.4.0 ignore: 5.3.2 natural-compare: 1.4.0 @@ -13565,14 +13546,14 @@ snapshots: transitivePeerDependencies: - supports-color - '@typescript-eslint/parser@8.6.0(eslint@9.11.0(jiti@1.21.6))(typescript@5.6.2)': + '@typescript-eslint/parser@8.7.0(eslint@9.11.1(jiti@1.21.6))(typescript@5.6.2)': dependencies: - '@typescript-eslint/scope-manager': 8.6.0 - '@typescript-eslint/types': 8.6.0 - '@typescript-eslint/typescript-estree': 8.6.0(typescript@5.6.2) - '@typescript-eslint/visitor-keys': 8.6.0 + '@typescript-eslint/scope-manager': 8.7.0 + '@typescript-eslint/types': 8.7.0 + '@typescript-eslint/typescript-estree': 8.7.0(typescript@5.6.2) + '@typescript-eslint/visitor-keys': 8.7.0 debug: 4.3.7 - eslint: 9.11.0(jiti@1.21.6) + eslint: 9.11.1(jiti@1.21.6) optionalDependencies: typescript: 5.6.2 transitivePeerDependencies: @@ -13583,15 +13564,15 @@ snapshots: '@typescript-eslint/types': 7.18.0 '@typescript-eslint/visitor-keys': 7.18.0 - '@typescript-eslint/scope-manager@8.6.0': + '@typescript-eslint/scope-manager@8.7.0': dependencies: - '@typescript-eslint/types': 8.6.0 - '@typescript-eslint/visitor-keys': 8.6.0 + '@typescript-eslint/types': 8.7.0 + '@typescript-eslint/visitor-keys': 8.7.0 - '@typescript-eslint/type-utils@8.6.0(eslint@9.11.0(jiti@1.21.6))(typescript@5.6.2)': + '@typescript-eslint/type-utils@8.7.0(eslint@9.11.1(jiti@1.21.6))(typescript@5.6.2)': dependencies: - '@typescript-eslint/typescript-estree': 8.6.0(typescript@5.6.2) - '@typescript-eslint/utils': 8.6.0(eslint@9.11.0(jiti@1.21.6))(typescript@5.6.2) + '@typescript-eslint/typescript-estree': 8.7.0(typescript@5.6.2) + '@typescript-eslint/utils': 8.7.0(eslint@9.11.1(jiti@1.21.6))(typescript@5.6.2) debug: 4.3.7 ts-api-utils: 1.3.0(typescript@5.6.2) optionalDependencies: @@ -13602,7 +13583,7 @@ snapshots: '@typescript-eslint/types@7.18.0': {} - '@typescript-eslint/types@8.6.0': {} + '@typescript-eslint/types@8.7.0': {} '@typescript-eslint/typescript-estree@7.18.0(typescript@5.6.2)': dependencies: @@ -13619,10 +13600,10 @@ snapshots: transitivePeerDependencies: - supports-color - '@typescript-eslint/typescript-estree@8.6.0(typescript@5.6.2)': + '@typescript-eslint/typescript-estree@8.7.0(typescript@5.6.2)': dependencies: - '@typescript-eslint/types': 8.6.0 - '@typescript-eslint/visitor-keys': 8.6.0 + '@typescript-eslint/types': 8.7.0 + '@typescript-eslint/visitor-keys': 8.7.0 debug: 4.3.7 fast-glob: 3.3.2 is-glob: 4.0.3 @@ -13634,24 +13615,24 @@ snapshots: transitivePeerDependencies: - supports-color - '@typescript-eslint/utils@7.18.0(eslint@9.11.0(jiti@1.21.6))(typescript@5.6.2)': + '@typescript-eslint/utils@7.18.0(eslint@9.11.1(jiti@1.21.6))(typescript@5.6.2)': dependencies: - '@eslint-community/eslint-utils': 4.4.0(eslint@9.11.0(jiti@1.21.6)) + '@eslint-community/eslint-utils': 4.4.0(eslint@9.11.1(jiti@1.21.6)) '@typescript-eslint/scope-manager': 7.18.0 '@typescript-eslint/types': 7.18.0 '@typescript-eslint/typescript-estree': 7.18.0(typescript@5.6.2) - eslint: 9.11.0(jiti@1.21.6) + eslint: 9.11.1(jiti@1.21.6) transitivePeerDependencies: - supports-color - typescript - '@typescript-eslint/utils@8.6.0(eslint@9.11.0(jiti@1.21.6))(typescript@5.6.2)': + '@typescript-eslint/utils@8.7.0(eslint@9.11.1(jiti@1.21.6))(typescript@5.6.2)': dependencies: - '@eslint-community/eslint-utils': 4.4.0(eslint@9.11.0(jiti@1.21.6)) - '@typescript-eslint/scope-manager': 8.6.0 - '@typescript-eslint/types': 8.6.0 - '@typescript-eslint/typescript-estree': 8.6.0(typescript@5.6.2) - eslint: 9.11.0(jiti@1.21.6) + '@eslint-community/eslint-utils': 4.4.0(eslint@9.11.1(jiti@1.21.6)) + '@typescript-eslint/scope-manager': 8.7.0 + '@typescript-eslint/types': 8.7.0 + '@typescript-eslint/typescript-estree': 8.7.0(typescript@5.6.2) + eslint: 9.11.1(jiti@1.21.6) transitivePeerDependencies: - supports-color - typescript @@ -13661,17 +13642,17 @@ snapshots: '@typescript-eslint/types': 7.18.0 eslint-visitor-keys: 3.4.3 - '@typescript-eslint/visitor-keys@8.6.0': + '@typescript-eslint/visitor-keys@8.7.0': dependencies: - '@typescript-eslint/types': 8.6.0 + '@typescript-eslint/types': 8.7.0 eslint-visitor-keys: 3.4.3 '@ungap/structured-clone@1.2.0': {} - '@vee-validate/zod@4.13.2(vue@3.5.7(typescript@5.6.2))': + '@vee-validate/zod@4.13.2(vue@3.5.8(typescript@5.6.2))': dependencies: type-fest: 4.26.1 - vee-validate: 4.13.2(vue@3.5.7(typescript@5.6.2)) + vee-validate: 4.13.2(vue@3.5.8(typescript@5.6.2)) zod: 3.23.8 transitivePeerDependencies: - vue @@ -13694,24 +13675,24 @@ snapshots: - encoding - supports-color - '@vite-pwa/vitepress@0.5.3(vite-plugin-pwa@0.20.5(vite@5.4.7(@types/node@22.5.5)(less@4.2.0)(sass@1.79.3)(terser@5.33.0))(workbox-build@7.1.1)(workbox-window@7.1.0))': + '@vite-pwa/vitepress@0.5.3(vite-plugin-pwa@0.20.5(vite@5.4.8(@types/node@22.7.0)(less@4.2.0)(sass@1.79.3)(terser@5.33.0))(workbox-build@7.1.1)(workbox-window@7.1.0))': dependencies: - vite-plugin-pwa: 0.20.5(vite@5.4.7(@types/node@22.5.5)(less@4.2.0)(sass@1.79.3)(terser@5.33.0))(workbox-build@7.1.1)(workbox-window@7.1.0) + vite-plugin-pwa: 0.20.5(vite@5.4.8(@types/node@22.7.0)(less@4.2.0)(sass@1.79.3)(terser@5.33.0))(workbox-build@7.1.1)(workbox-window@7.1.0) - '@vitejs/plugin-vue-jsx@4.0.1(vite@5.4.7(@types/node@22.5.5)(less@4.2.0)(sass@1.79.3)(terser@5.33.0))(vue@3.5.7(typescript@5.6.2))': + '@vitejs/plugin-vue-jsx@4.0.1(vite@5.4.8(@types/node@22.7.0)(less@4.2.0)(sass@1.79.3)(terser@5.33.0))(vue@3.5.8(typescript@5.6.2))': dependencies: '@babel/core': 7.25.2 '@babel/plugin-transform-typescript': 7.25.2(@babel/core@7.25.2) '@vue/babel-plugin-jsx': 1.2.5(@babel/core@7.25.2) - vite: 5.4.7(@types/node@22.5.5)(less@4.2.0)(sass@1.79.3)(terser@5.33.0) - vue: 3.5.7(typescript@5.6.2) + vite: 5.4.8(@types/node@22.7.0)(less@4.2.0)(sass@1.79.3)(terser@5.33.0) + vue: 3.5.8(typescript@5.6.2) transitivePeerDependencies: - supports-color - '@vitejs/plugin-vue@5.1.4(vite@5.4.7(@types/node@22.5.5)(less@4.2.0)(sass@1.79.3)(terser@5.33.0))(vue@3.5.7(typescript@5.6.2))': + '@vitejs/plugin-vue@5.1.4(vite@5.4.8(@types/node@22.7.0)(less@4.2.0)(sass@1.79.3)(terser@5.33.0))(vue@3.5.8(typescript@5.6.2))': dependencies: - vite: 5.4.7(@types/node@22.5.5)(less@4.2.0)(sass@1.79.3)(terser@5.33.0) - vue: 3.5.7(typescript@5.6.2) + vite: 5.4.8(@types/node@22.7.0)(less@4.2.0)(sass@1.79.3)(terser@5.33.0) + vue: 3.5.8(typescript@5.6.2) '@vitest/expect@2.1.1': dependencies: @@ -13720,13 +13701,13 @@ snapshots: chai: 5.1.1 tinyrainbow: 1.2.0 - '@vitest/mocker@2.1.1(@vitest/spy@2.1.1)(vite@5.4.7(@types/node@22.5.5)(less@4.2.0)(sass@1.79.3)(terser@5.33.0))': + '@vitest/mocker@2.1.1(@vitest/spy@2.1.1)(vite@5.4.8(@types/node@22.7.0)(less@4.2.0)(sass@1.79.3)(terser@5.33.0))': dependencies: '@vitest/spy': 2.1.1 estree-walker: 3.0.3 magic-string: 0.30.11 optionalDependencies: - vite: 5.4.7(@types/node@22.5.5)(less@4.2.0)(sass@1.79.3)(terser@5.33.0) + vite: 5.4.8(@types/node@22.7.0)(less@4.2.0)(sass@1.79.3)(terser@5.33.0) '@vitest/pretty-format@2.1.1': dependencies: @@ -13795,14 +13776,6 @@ snapshots: transitivePeerDependencies: - supports-color - '@vue/compiler-core@3.5.7': - dependencies: - '@babel/parser': 7.25.6 - '@vue/shared': 3.5.7 - entities: 4.5.0 - estree-walker: 2.0.2 - source-map-js: 1.2.1 - '@vue/compiler-core@3.5.8': dependencies: '@babel/parser': 7.25.6 @@ -13811,28 +13784,11 @@ snapshots: estree-walker: 2.0.2 source-map-js: 1.2.1 - '@vue/compiler-dom@3.5.7': - dependencies: - '@vue/compiler-core': 3.5.7 - '@vue/shared': 3.5.7 - '@vue/compiler-dom@3.5.8': dependencies: '@vue/compiler-core': 3.5.8 '@vue/shared': 3.5.8 - '@vue/compiler-sfc@3.5.7': - dependencies: - '@babel/parser': 7.25.6 - '@vue/compiler-core': 3.5.7 - '@vue/compiler-dom': 3.5.7 - '@vue/compiler-ssr': 3.5.7 - '@vue/shared': 3.5.7 - estree-walker: 2.0.2 - magic-string: 0.30.11 - postcss: 8.4.47 - source-map-js: 1.2.1 - '@vue/compiler-sfc@3.5.8': dependencies: '@babel/parser': 7.25.6 @@ -13845,11 +13801,6 @@ snapshots: postcss: 8.4.47 source-map-js: 1.2.1 - '@vue/compiler-ssr@3.5.7': - dependencies: - '@vue/compiler-dom': 3.5.7 - '@vue/shared': 3.5.7 - '@vue/compiler-ssr@3.5.8': dependencies: '@vue/compiler-dom': 3.5.8 @@ -13862,25 +13813,25 @@ snapshots: '@vue/devtools-api@6.6.4': {} - '@vue/devtools-api@7.4.5': + '@vue/devtools-api@7.4.6': dependencies: - '@vue/devtools-kit': 7.4.5 + '@vue/devtools-kit': 7.4.6 - '@vue/devtools-core@7.4.5(vite@5.4.7(@types/node@22.5.5)(less@4.2.0)(sass@1.79.3)(terser@5.33.0))(vue@3.5.7(typescript@5.6.2))': + '@vue/devtools-core@7.4.6(vite@5.4.8(@types/node@22.7.0)(less@4.2.0)(sass@1.79.3)(terser@5.33.0))(vue@3.5.8(typescript@5.6.2))': dependencies: - '@vue/devtools-kit': 7.4.5 - '@vue/devtools-shared': 7.4.5 + '@vue/devtools-kit': 7.4.6 + '@vue/devtools-shared': 7.4.6 mitt: 3.0.1 nanoid: 3.3.7 pathe: 1.1.2 - vite-hot-client: 0.2.3(vite@5.4.7(@types/node@22.5.5)(less@4.2.0)(sass@1.79.3)(terser@5.33.0)) - vue: 3.5.7(typescript@5.6.2) + vite-hot-client: 0.2.3(vite@5.4.8(@types/node@22.7.0)(less@4.2.0)(sass@1.79.3)(terser@5.33.0)) + vue: 3.5.8(typescript@5.6.2) transitivePeerDependencies: - vite - '@vue/devtools-kit@7.4.5': + '@vue/devtools-kit@7.4.6': dependencies: - '@vue/devtools-shared': 7.4.5 + '@vue/devtools-shared': 7.4.6 birpc: 0.2.17 hookable: 5.5.3 mitt: 3.0.1 @@ -13888,7 +13839,7 @@ snapshots: speakingurl: 14.0.1 superjson: 2.2.1 - '@vue/devtools-shared@7.4.5': + '@vue/devtools-shared@7.4.6': dependencies: rfdc: 1.4.1 @@ -13905,33 +13856,27 @@ snapshots: optionalDependencies: typescript: 5.6.2 - '@vue/reactivity@3.5.7': - dependencies: - '@vue/shared': 3.5.7 - '@vue/reactivity@3.5.8': dependencies: '@vue/shared': 3.5.8 - '@vue/runtime-core@3.5.7': + '@vue/runtime-core@3.5.8': dependencies: - '@vue/reactivity': 3.5.7 - '@vue/shared': 3.5.7 + '@vue/reactivity': 3.5.8 + '@vue/shared': 3.5.8 - '@vue/runtime-dom@3.5.7': + '@vue/runtime-dom@3.5.8': dependencies: - '@vue/reactivity': 3.5.7 - '@vue/runtime-core': 3.5.7 - '@vue/shared': 3.5.7 + '@vue/reactivity': 3.5.8 + '@vue/runtime-core': 3.5.8 + '@vue/shared': 3.5.8 csstype: 3.1.3 - '@vue/server-renderer@3.5.7(vue@3.5.7(typescript@5.6.2))': + '@vue/server-renderer@3.5.8(vue@3.5.8(typescript@5.6.2))': dependencies: - '@vue/compiler-ssr': 3.5.7 - '@vue/shared': 3.5.7 - vue: 3.5.7(typescript@5.6.2) - - '@vue/shared@3.5.7': {} + '@vue/compiler-ssr': 3.5.8 + '@vue/shared': 3.5.8 + vue: 3.5.8(typescript@5.6.2) '@vue/shared@3.5.8': {} @@ -13940,41 +13885,41 @@ snapshots: js-beautify: 1.15.1 vue-component-type-helpers: 2.1.6 - '@vueuse/core@10.11.1(vue@3.5.7(typescript@5.6.2))': + '@vueuse/core@10.11.1(vue@3.5.8(typescript@5.6.2))': dependencies: '@types/web-bluetooth': 0.0.20 '@vueuse/metadata': 10.11.1 - '@vueuse/shared': 10.11.1(vue@3.5.7(typescript@5.6.2)) - vue-demi: 0.14.10(vue@3.5.7(typescript@5.6.2)) + '@vueuse/shared': 10.11.1(vue@3.5.8(typescript@5.6.2)) + vue-demi: 0.14.10(vue@3.5.8(typescript@5.6.2)) transitivePeerDependencies: - '@vue/composition-api' - vue - '@vueuse/core@11.1.0(vue@3.5.7(typescript@5.6.2))': + '@vueuse/core@11.1.0(vue@3.5.8(typescript@5.6.2))': dependencies: '@types/web-bluetooth': 0.0.20 '@vueuse/metadata': 11.1.0 - '@vueuse/shared': 11.1.0(vue@3.5.7(typescript@5.6.2)) - vue-demi: 0.14.10(vue@3.5.7(typescript@5.6.2)) + '@vueuse/shared': 11.1.0(vue@3.5.8(typescript@5.6.2)) + vue-demi: 0.14.10(vue@3.5.8(typescript@5.6.2)) transitivePeerDependencies: - '@vue/composition-api' - vue - '@vueuse/core@9.13.0(vue@3.5.7(typescript@5.6.2))': + '@vueuse/core@9.13.0(vue@3.5.8(typescript@5.6.2))': dependencies: '@types/web-bluetooth': 0.0.16 '@vueuse/metadata': 9.13.0 - '@vueuse/shared': 9.13.0(vue@3.5.7(typescript@5.6.2)) - vue-demi: 0.14.10(vue@3.5.7(typescript@5.6.2)) + '@vueuse/shared': 9.13.0(vue@3.5.8(typescript@5.6.2)) + vue-demi: 0.14.10(vue@3.5.8(typescript@5.6.2)) transitivePeerDependencies: - '@vue/composition-api' - vue - '@vueuse/integrations@11.1.0(async-validator@4.2.5)(axios@1.7.7)(focus-trap@7.6.0)(nprogress@0.2.0)(qrcode@1.5.4)(sortablejs@1.15.3)(vue@3.5.7(typescript@5.6.2))': + '@vueuse/integrations@11.1.0(async-validator@4.2.5)(axios@1.7.7)(focus-trap@7.6.0)(nprogress@0.2.0)(qrcode@1.5.4)(sortablejs@1.15.3)(vue@3.5.8(typescript@5.6.2))': dependencies: - '@vueuse/core': 11.1.0(vue@3.5.7(typescript@5.6.2)) - '@vueuse/shared': 11.1.0(vue@3.5.7(typescript@5.6.2)) - vue-demi: 0.14.10(vue@3.5.7(typescript@5.6.2)) + '@vueuse/core': 11.1.0(vue@3.5.8(typescript@5.6.2)) + '@vueuse/shared': 11.1.0(vue@3.5.8(typescript@5.6.2)) + vue-demi: 0.14.10(vue@3.5.8(typescript@5.6.2)) optionalDependencies: async-validator: 4.2.5 axios: 1.7.7 @@ -13992,23 +13937,23 @@ snapshots: '@vueuse/metadata@9.13.0': {} - '@vueuse/shared@10.11.1(vue@3.5.7(typescript@5.6.2))': + '@vueuse/shared@10.11.1(vue@3.5.8(typescript@5.6.2))': dependencies: - vue-demi: 0.14.10(vue@3.5.7(typescript@5.6.2)) + vue-demi: 0.14.10(vue@3.5.8(typescript@5.6.2)) transitivePeerDependencies: - '@vue/composition-api' - vue - '@vueuse/shared@11.1.0(vue@3.5.7(typescript@5.6.2))': + '@vueuse/shared@11.1.0(vue@3.5.8(typescript@5.6.2))': dependencies: - vue-demi: 0.14.10(vue@3.5.7(typescript@5.6.2)) + vue-demi: 0.14.10(vue@3.5.8(typescript@5.6.2)) transitivePeerDependencies: - '@vue/composition-api' - vue - '@vueuse/shared@9.13.0(vue@3.5.7(typescript@5.6.2))': + '@vueuse/shared@9.13.0(vue@3.5.8(typescript@5.6.2))': dependencies: - vue-demi: 0.14.10(vue@3.5.7(typescript@5.6.2)) + vue-demi: 0.14.10(vue@3.5.8(typescript@5.6.2)) transitivePeerDependencies: - '@vue/composition-api' - vue @@ -14129,10 +14074,10 @@ snapshots: ansi-styles@6.2.1: {} - ant-design-vue@4.2.5(vue@3.5.7(typescript@5.6.2)): + ant-design-vue@4.2.5(vue@3.5.8(typescript@5.6.2)): dependencies: '@ant-design/colors': 6.0.0 - '@ant-design/icons-vue': 7.0.1(vue@3.5.7(typescript@5.6.2)) + '@ant-design/icons-vue': 7.0.1(vue@3.5.8(typescript@5.6.2)) '@babel/runtime': 7.25.6 '@ctrl/tinycolor': 4.1.0 '@emotion/hash': 0.9.2 @@ -14151,8 +14096,8 @@ snapshots: shallow-equal: 1.2.1 stylis: 4.3.4 throttle-debounce: 5.0.2 - vue: 3.5.7(typescript@5.6.2) - vue-types: 3.0.2(vue@3.5.7(typescript@5.6.2)) + vue: 3.5.8(typescript@5.6.2) + vue-types: 3.0.2(vue@3.5.8(typescript@5.6.2)) warning: 4.0.3 any-promise@1.3.0: {} @@ -14252,8 +14197,8 @@ snapshots: autoprefixer@10.4.20(postcss@8.4.47): dependencies: - browserslist: 4.23.3 - caniuse-lite: 1.0.30001662 + browserslist: 4.24.0 + caniuse-lite: 1.0.30001663 fraction.js: 4.3.7 normalize-range: 0.1.2 picocolors: 1.1.0 @@ -14308,7 +14253,7 @@ snapshots: balanced-match@2.0.0: {} - bare-events@2.4.2: + bare-events@2.5.0: optional: true base64-js@1.5.1: {} @@ -14353,12 +14298,12 @@ snapshots: dependencies: fill-range: 7.1.1 - browserslist@4.23.3: + browserslist@4.24.0: dependencies: - caniuse-lite: 1.0.30001662 - electron-to-chromium: 1.5.27 + caniuse-lite: 1.0.30001663 + electron-to-chromium: 1.5.28 node-releases: 2.0.18 - update-browserslist-db: 1.1.0(browserslist@4.23.3) + update-browserslist-db: 1.1.0(browserslist@4.24.0) buffer-crc32@1.0.0: {} @@ -14444,12 +14389,12 @@ snapshots: caniuse-api@3.0.0: dependencies: - browserslist: 4.23.3 - caniuse-lite: 1.0.30001662 + browserslist: 4.24.0 + caniuse-lite: 1.0.30001663 lodash.memoize: 4.1.2 lodash.uniq: 4.5.0 - caniuse-lite@1.0.30001662: {} + caniuse-lite@1.0.30001663: {} ccount@2.0.1: {} @@ -14521,7 +14466,7 @@ snapshots: optionalDependencies: fsevents: 2.3.3 - chokidar@4.0.0: + chokidar@4.0.1: dependencies: readdirp: 4.0.1 @@ -14533,7 +14478,7 @@ snapshots: circular-dependency-scanner@2.3.0: dependencies: - '@ast-grep/napi': 0.27.1 + '@ast-grep/napi': 0.27.2 '@vue/compiler-sfc': 3.5.8 commander: 12.1.0 get-tsconfig: 4.8.1 @@ -14737,15 +14682,15 @@ snapshots: core-js-compat@3.38.1: dependencies: - browserslist: 4.23.3 + browserslist: 4.24.0 core-js@3.38.1: {} core-util-is@1.0.3: {} - cosmiconfig-typescript-loader@5.0.0(@types/node@22.5.5)(cosmiconfig@9.0.0(typescript@5.6.2))(typescript@5.6.2): + cosmiconfig-typescript-loader@5.0.0(@types/node@22.7.0)(cosmiconfig@9.0.0(typescript@5.6.2))(typescript@5.6.2): dependencies: - '@types/node': 22.5.5 + '@types/node': 22.7.0 cosmiconfig: 9.0.0(typescript@5.6.2) jiti: 1.21.6 typescript: 5.6.2 @@ -14947,7 +14892,7 @@ snapshots: cssnano-preset-default@7.0.6(postcss@8.4.47): dependencies: - browserslist: 4.23.3 + browserslist: 4.24.0 css-declaration-sorter: 7.2.0(postcss@8.4.47) cssnano-utils: 5.0.0(postcss@8.4.47) postcss: 8.4.47 @@ -15247,17 +15192,17 @@ snapshots: dependencies: jake: 10.9.2 - electron-to-chromium@1.5.27: {} + electron-to-chromium@1.5.28: {} - element-plus@2.8.3(vue@3.5.7(typescript@5.6.2)): + element-plus@2.8.3(vue@3.5.8(typescript@5.6.2)): dependencies: '@ctrl/tinycolor': 4.1.0 - '@element-plus/icons-vue': 2.3.1(vue@3.5.7(typescript@5.6.2)) + '@element-plus/icons-vue': 2.3.1(vue@3.5.8(typescript@5.6.2)) '@floating-ui/dom': 1.6.11 '@popperjs/core': '@sxzz/popperjs-es@2.11.7' - '@types/lodash': 4.17.7 + '@types/lodash': 4.17.9 '@types/lodash-es': 4.17.12 - '@vueuse/core': 9.13.0(vue@3.5.7(typescript@5.6.2)) + '@vueuse/core': 9.13.0(vue@3.5.8(typescript@5.6.2)) async-validator: 4.2.5 dayjs: 1.11.13 escape-html: 1.0.3 @@ -15266,7 +15211,7 @@ snapshots: lodash-unified: 1.0.3(@types/lodash-es@4.17.12)(lodash-es@4.17.21)(lodash@4.17.21) memoize-one: 6.0.0 normalize-wheel-es: 1.2.0 - vue: 3.5.7(typescript@5.6.2) + vue: 3.5.8(typescript@5.6.2) transitivePeerDependencies: - '@vue/composition-api' @@ -15396,7 +15341,7 @@ snapshots: is-date-object: 1.0.5 is-symbol: 1.0.4 - es-toolkit@1.20.0: {} + es-toolkit@1.21.0: {} esbuild@0.19.12: optionalDependencies: @@ -15523,15 +15468,15 @@ snapshots: optionalDependencies: source-map: 0.6.1 - eslint-compat-utils@0.5.1(eslint@9.11.0(jiti@1.21.6)): + eslint-compat-utils@0.5.1(eslint@9.11.1(jiti@1.21.6)): dependencies: - eslint: 9.11.0(jiti@1.21.6) + eslint: 9.11.1(jiti@1.21.6) semver: 7.6.3 - eslint-config-turbo@2.1.2(eslint@9.11.0(jiti@1.21.6)): + eslint-config-turbo@2.1.2(eslint@9.11.1(jiti@1.21.6)): dependencies: - eslint: 9.11.0(jiti@1.21.6) - eslint-plugin-turbo: 2.1.2(eslint@9.11.0(jiti@1.21.6)) + eslint: 9.11.1(jiti@1.21.6) + eslint-plugin-turbo: 2.1.2(eslint@9.11.1(jiti@1.21.6)) eslint-import-resolver-node@0.3.9: dependencies: @@ -15541,30 +15486,30 @@ snapshots: transitivePeerDependencies: - supports-color - eslint-plugin-command@0.2.5(eslint@9.11.0(jiti@1.21.6)): + eslint-plugin-command@0.2.5(eslint@9.11.1(jiti@1.21.6)): dependencies: '@es-joy/jsdoccomment': 0.48.0 - eslint: 9.11.0(jiti@1.21.6) + eslint: 9.11.1(jiti@1.21.6) - eslint-plugin-es-x@7.8.0(eslint@9.11.0(jiti@1.21.6)): + eslint-plugin-es-x@7.8.0(eslint@9.11.1(jiti@1.21.6)): dependencies: - '@eslint-community/eslint-utils': 4.4.0(eslint@9.11.0(jiti@1.21.6)) + '@eslint-community/eslint-utils': 4.4.0(eslint@9.11.1(jiti@1.21.6)) '@eslint-community/regexpp': 4.11.1 - eslint: 9.11.0(jiti@1.21.6) - eslint-compat-utils: 0.5.1(eslint@9.11.0(jiti@1.21.6)) + eslint: 9.11.1(jiti@1.21.6) + eslint-compat-utils: 0.5.1(eslint@9.11.1(jiti@1.21.6)) - eslint-plugin-eslint-comments@3.2.0(eslint@9.11.0(jiti@1.21.6)): + eslint-plugin-eslint-comments@3.2.0(eslint@9.11.1(jiti@1.21.6)): dependencies: escape-string-regexp: 1.0.5 - eslint: 9.11.0(jiti@1.21.6) + eslint: 9.11.1(jiti@1.21.6) ignore: 5.3.2 - eslint-plugin-import-x@4.3.0(eslint@9.11.0(jiti@1.21.6))(typescript@5.6.2): + eslint-plugin-import-x@4.3.0(eslint@9.11.1(jiti@1.21.6))(typescript@5.6.2): dependencies: - '@typescript-eslint/utils': 8.6.0(eslint@9.11.0(jiti@1.21.6))(typescript@5.6.2) + '@typescript-eslint/utils': 8.7.0(eslint@9.11.1(jiti@1.21.6))(typescript@5.6.2) debug: 4.3.7 doctrine: 3.0.0 - eslint: 9.11.0(jiti@1.21.6) + eslint: 9.11.1(jiti@1.21.6) eslint-import-resolver-node: 0.3.9 get-tsconfig: 4.8.1 is-glob: 4.0.3 @@ -15576,14 +15521,14 @@ snapshots: - supports-color - typescript - eslint-plugin-jsdoc@50.2.4(eslint@9.11.0(jiti@1.21.6)): + eslint-plugin-jsdoc@50.2.4(eslint@9.11.1(jiti@1.21.6)): dependencies: '@es-joy/jsdoccomment': 0.48.0 are-docs-informative: 0.0.2 comment-parser: 1.4.1 debug: 4.3.7 escape-string-regexp: 4.0.0 - eslint: 9.11.0(jiti@1.21.6) + eslint: 9.11.1(jiti@1.21.6) espree: 10.1.0 esquery: 1.6.0 parse-imports: 2.2.1 @@ -15593,23 +15538,23 @@ snapshots: transitivePeerDependencies: - supports-color - eslint-plugin-jsonc@2.16.0(eslint@9.11.0(jiti@1.21.6)): + eslint-plugin-jsonc@2.16.0(eslint@9.11.1(jiti@1.21.6)): dependencies: - '@eslint-community/eslint-utils': 4.4.0(eslint@9.11.0(jiti@1.21.6)) - eslint: 9.11.0(jiti@1.21.6) - eslint-compat-utils: 0.5.1(eslint@9.11.0(jiti@1.21.6)) + '@eslint-community/eslint-utils': 4.4.0(eslint@9.11.1(jiti@1.21.6)) + eslint: 9.11.1(jiti@1.21.6) + eslint-compat-utils: 0.5.1(eslint@9.11.1(jiti@1.21.6)) espree: 9.6.1 graphemer: 1.4.0 jsonc-eslint-parser: 2.4.0 natural-compare: 1.4.0 synckit: 0.6.2 - eslint-plugin-n@17.10.3(eslint@9.11.0(jiti@1.21.6)): + eslint-plugin-n@17.10.3(eslint@9.11.1(jiti@1.21.6)): dependencies: - '@eslint-community/eslint-utils': 4.4.0(eslint@9.11.0(jiti@1.21.6)) + '@eslint-community/eslint-utils': 4.4.0(eslint@9.11.1(jiti@1.21.6)) enhanced-resolve: 5.17.1 - eslint: 9.11.0(jiti@1.21.6) - eslint-plugin-es-x: 7.8.0(eslint@9.11.0(jiti@1.21.6)) + eslint: 9.11.1(jiti@1.21.6) + eslint-plugin-es-x: 7.8.0(eslint@9.11.1(jiti@1.21.6)) get-tsconfig: 4.8.1 globals: 15.9.0 ignore: 5.3.2 @@ -15618,52 +15563,52 @@ snapshots: eslint-plugin-no-only-tests@3.3.0: {} - eslint-plugin-perfectionist@3.6.0(eslint@9.11.0(jiti@1.21.6))(typescript@5.6.2)(vue-eslint-parser@9.4.3(eslint@9.11.0(jiti@1.21.6))): + eslint-plugin-perfectionist@3.7.0(eslint@9.11.1(jiti@1.21.6))(typescript@5.6.2)(vue-eslint-parser@9.4.3(eslint@9.11.1(jiti@1.21.6))): dependencies: - '@typescript-eslint/types': 8.6.0 - '@typescript-eslint/utils': 8.6.0(eslint@9.11.0(jiti@1.21.6))(typescript@5.6.2) - eslint: 9.11.0(jiti@1.21.6) + '@typescript-eslint/types': 8.7.0 + '@typescript-eslint/utils': 8.7.0(eslint@9.11.1(jiti@1.21.6))(typescript@5.6.2) + eslint: 9.11.1(jiti@1.21.6) minimatch: 9.0.5 natural-compare-lite: 1.4.0 optionalDependencies: - vue-eslint-parser: 9.4.3(eslint@9.11.0(jiti@1.21.6)) + vue-eslint-parser: 9.4.3(eslint@9.11.1(jiti@1.21.6)) transitivePeerDependencies: - supports-color - typescript - eslint-plugin-prettier@5.2.1(@types/eslint@9.6.1)(eslint@9.11.0(jiti@1.21.6))(prettier@3.3.3): + eslint-plugin-prettier@5.2.1(@types/eslint@9.6.1)(eslint@9.11.1(jiti@1.21.6))(prettier@3.3.3): dependencies: - eslint: 9.11.0(jiti@1.21.6) + eslint: 9.11.1(jiti@1.21.6) prettier: 3.3.3 prettier-linter-helpers: 1.0.0 synckit: 0.9.1 optionalDependencies: '@types/eslint': 9.6.1 - eslint-plugin-regexp@2.6.0(eslint@9.11.0(jiti@1.21.6)): + eslint-plugin-regexp@2.6.0(eslint@9.11.1(jiti@1.21.6)): dependencies: - '@eslint-community/eslint-utils': 4.4.0(eslint@9.11.0(jiti@1.21.6)) + '@eslint-community/eslint-utils': 4.4.0(eslint@9.11.1(jiti@1.21.6)) '@eslint-community/regexpp': 4.11.1 comment-parser: 1.4.1 - eslint: 9.11.0(jiti@1.21.6) + eslint: 9.11.1(jiti@1.21.6) jsdoc-type-pratt-parser: 4.1.0 refa: 0.12.1 regexp-ast-analysis: 0.7.1 scslre: 0.3.0 - eslint-plugin-turbo@2.1.2(eslint@9.11.0(jiti@1.21.6)): + eslint-plugin-turbo@2.1.2(eslint@9.11.1(jiti@1.21.6)): dependencies: dotenv: 16.0.3 - eslint: 9.11.0(jiti@1.21.6) + eslint: 9.11.1(jiti@1.21.6) - eslint-plugin-unicorn@55.0.0(eslint@9.11.0(jiti@1.21.6)): + eslint-plugin-unicorn@55.0.0(eslint@9.11.1(jiti@1.21.6)): dependencies: '@babel/helper-validator-identifier': 7.24.7 - '@eslint-community/eslint-utils': 4.4.0(eslint@9.11.0(jiti@1.21.6)) + '@eslint-community/eslint-utils': 4.4.0(eslint@9.11.1(jiti@1.21.6)) ci-info: 4.0.0 clean-regexp: 1.0.0 core-js-compat: 3.38.1 - eslint: 9.11.0(jiti@1.21.6) + eslint: 9.11.1(jiti@1.21.6) esquery: 1.6.0 globals: 15.9.0 indent-string: 4.0.0 @@ -15676,33 +15621,33 @@ snapshots: semver: 7.6.3 strip-indent: 3.0.0 - eslint-plugin-unused-imports@4.1.4(@typescript-eslint/eslint-plugin@8.6.0(@typescript-eslint/parser@8.6.0(eslint@9.11.0(jiti@1.21.6))(typescript@5.6.2))(eslint@9.11.0(jiti@1.21.6))(typescript@5.6.2))(eslint@9.11.0(jiti@1.21.6)): + eslint-plugin-unused-imports@4.1.4(@typescript-eslint/eslint-plugin@8.7.0(@typescript-eslint/parser@8.7.0(eslint@9.11.1(jiti@1.21.6))(typescript@5.6.2))(eslint@9.11.1(jiti@1.21.6))(typescript@5.6.2))(eslint@9.11.1(jiti@1.21.6)): dependencies: - eslint: 9.11.0(jiti@1.21.6) + eslint: 9.11.1(jiti@1.21.6) optionalDependencies: - '@typescript-eslint/eslint-plugin': 8.6.0(@typescript-eslint/parser@8.6.0(eslint@9.11.0(jiti@1.21.6))(typescript@5.6.2))(eslint@9.11.0(jiti@1.21.6))(typescript@5.6.2) + '@typescript-eslint/eslint-plugin': 8.7.0(@typescript-eslint/parser@8.7.0(eslint@9.11.1(jiti@1.21.6))(typescript@5.6.2))(eslint@9.11.1(jiti@1.21.6))(typescript@5.6.2) - eslint-plugin-vitest@0.5.4(@typescript-eslint/eslint-plugin@8.6.0(@typescript-eslint/parser@8.6.0(eslint@9.11.0(jiti@1.21.6))(typescript@5.6.2))(eslint@9.11.0(jiti@1.21.6))(typescript@5.6.2))(eslint@9.11.0(jiti@1.21.6))(typescript@5.6.2)(vitest@2.1.1(@types/node@22.5.5)(happy-dom@15.7.4)(less@4.2.0)(sass@1.79.3)(terser@5.33.0)): + eslint-plugin-vitest@0.5.4(@typescript-eslint/eslint-plugin@8.7.0(@typescript-eslint/parser@8.7.0(eslint@9.11.1(jiti@1.21.6))(typescript@5.6.2))(eslint@9.11.1(jiti@1.21.6))(typescript@5.6.2))(eslint@9.11.1(jiti@1.21.6))(typescript@5.6.2)(vitest@2.1.1(@types/node@22.7.0)(happy-dom@15.7.4)(less@4.2.0)(sass@1.79.3)(terser@5.33.0)): dependencies: - '@typescript-eslint/utils': 7.18.0(eslint@9.11.0(jiti@1.21.6))(typescript@5.6.2) - eslint: 9.11.0(jiti@1.21.6) + '@typescript-eslint/utils': 7.18.0(eslint@9.11.1(jiti@1.21.6))(typescript@5.6.2) + eslint: 9.11.1(jiti@1.21.6) optionalDependencies: - '@typescript-eslint/eslint-plugin': 8.6.0(@typescript-eslint/parser@8.6.0(eslint@9.11.0(jiti@1.21.6))(typescript@5.6.2))(eslint@9.11.0(jiti@1.21.6))(typescript@5.6.2) - vitest: 2.1.1(@types/node@22.5.5)(happy-dom@15.7.4)(less@4.2.0)(sass@1.79.3)(terser@5.33.0) + '@typescript-eslint/eslint-plugin': 8.7.0(@typescript-eslint/parser@8.7.0(eslint@9.11.1(jiti@1.21.6))(typescript@5.6.2))(eslint@9.11.1(jiti@1.21.6))(typescript@5.6.2) + vitest: 2.1.1(@types/node@22.7.0)(happy-dom@15.7.4)(less@4.2.0)(sass@1.79.3)(terser@5.33.0) transitivePeerDependencies: - supports-color - typescript - eslint-plugin-vue@9.28.0(eslint@9.11.0(jiti@1.21.6)): + eslint-plugin-vue@9.28.0(eslint@9.11.1(jiti@1.21.6)): dependencies: - '@eslint-community/eslint-utils': 4.4.0(eslint@9.11.0(jiti@1.21.6)) - eslint: 9.11.0(jiti@1.21.6) + '@eslint-community/eslint-utils': 4.4.0(eslint@9.11.1(jiti@1.21.6)) + eslint: 9.11.1(jiti@1.21.6) globals: 13.24.0 natural-compare: 1.4.0 nth-check: 2.1.1 postcss-selector-parser: 6.1.2 semver: 7.6.3 - vue-eslint-parser: 9.4.3(eslint@9.11.0(jiti@1.21.6)) + vue-eslint-parser: 9.4.3(eslint@9.11.1(jiti@1.21.6)) xml-name-validator: 4.0.0 transitivePeerDependencies: - supports-color @@ -15721,17 +15666,20 @@ snapshots: eslint-visitor-keys@4.0.0: {} - eslint@9.11.0(jiti@1.21.6): + eslint@9.11.1(jiti@1.21.6): dependencies: - '@eslint-community/eslint-utils': 4.4.0(eslint@9.11.0(jiti@1.21.6)) + '@eslint-community/eslint-utils': 4.4.0(eslint@9.11.1(jiti@1.21.6)) '@eslint-community/regexpp': 4.11.1 '@eslint/config-array': 0.18.0 + '@eslint/core': 0.6.0 '@eslint/eslintrc': 3.1.0 - '@eslint/js': 9.11.0 + '@eslint/js': 9.11.1 '@eslint/plugin-kit': 0.2.0 '@humanwhocodes/module-importer': 1.0.1 '@humanwhocodes/retry': 0.3.0 '@nodelib/fs.walk': 1.2.8 + '@types/estree': 1.0.6 + '@types/json-schema': 7.0.15 ajv: 6.12.6 chalk: 4.1.2 cross-spawn: 7.0.3 @@ -16113,7 +16061,7 @@ snapshots: glob@11.0.0: dependencies: foreground-child: 3.3.0 - jackspeak: 4.0.1 + jackspeak: 4.0.2 minimatch: 10.0.1 minipass: 7.1.2 package-json-from-dist: 1.0.0 @@ -16652,11 +16600,9 @@ snapshots: optionalDependencies: '@pkgjs/parseargs': 0.11.0 - jackspeak@4.0.1: + jackspeak@4.0.2: dependencies: '@isaacs/cliui': 8.0.2 - optionalDependencies: - '@pkgjs/parseargs': 0.11.0 jake@10.9.2: dependencies: @@ -16974,9 +16920,9 @@ snapshots: dependencies: yallist: 4.0.0 - lucide-vue-next@0.445.0(vue@3.5.7(typescript@5.6.2)): + lucide-vue-next@0.445.0(vue@3.5.8(typescript@5.6.2)): dependencies: - vue: 3.5.7(typescript@5.6.2) + vue: 3.5.8(typescript@5.6.2) magic-string@0.25.9: dependencies: @@ -17213,12 +17159,12 @@ snapshots: object-assign: 4.1.1 thenify-all: 1.6.0 - naive-ui@2.39.0(vue@3.5.7(typescript@5.6.2)): + naive-ui@2.39.0(vue@3.5.8(typescript@5.6.2)): dependencies: '@css-render/plugin-bem': 0.15.14(css-render@0.15.14) - '@css-render/vue3-ssr': 0.15.14(vue@3.5.7(typescript@5.6.2)) + '@css-render/vue3-ssr': 0.15.14(vue@3.5.8(typescript@5.6.2)) '@types/katex': 0.16.7 - '@types/lodash': 4.17.7 + '@types/lodash': 4.17.9 '@types/lodash-es': 4.17.12 async-validator: 4.2.5 css-render: 0.15.14 @@ -17231,10 +17177,10 @@ snapshots: lodash-es: 4.17.21 seemly: 0.3.8 treemate: 0.3.11 - vdirs: 0.1.8(vue@3.5.7(typescript@5.6.2)) - vooks: 0.2.12(vue@3.5.7(typescript@5.6.2)) - vue: 3.5.7(typescript@5.6.2) - vueuc: 0.4.58(vue@3.5.7(typescript@5.6.2)) + vdirs: 0.1.8(vue@3.5.8(typescript@5.6.2)) + vooks: 0.2.12(vue@3.5.8(typescript@5.6.2)) + vue: 3.5.8(typescript@5.6.2) + vueuc: 0.4.63(vue@3.5.8(typescript@5.6.2)) nanoid@3.3.7: {} @@ -17256,14 +17202,14 @@ snapshots: dependencies: '@cloudflare/kv-asset-handler': 0.3.4 '@netlify/functions': 2.8.1 - '@rollup/plugin-alias': 5.1.0(rollup@4.22.4) + '@rollup/plugin-alias': 5.1.1(rollup@4.22.4) '@rollup/plugin-commonjs': 25.0.8(rollup@4.22.4) '@rollup/plugin-inject': 5.0.5(rollup@4.22.4) '@rollup/plugin-json': 6.1.0(rollup@4.22.4) - '@rollup/plugin-node-resolve': 15.2.3(rollup@4.22.4) + '@rollup/plugin-node-resolve': 15.3.0(rollup@4.22.4) '@rollup/plugin-replace': 5.0.7(rollup@4.22.4) '@rollup/plugin-terser': 0.4.4(rollup@4.22.4) - '@rollup/pluginutils': 5.1.0(rollup@4.22.4) + '@rollup/pluginutils': 5.1.2(rollup@4.22.4) '@types/http-proxy': 1.17.15 '@vercel/nft': 0.26.5(encoding@0.1.13) archiver: 7.0.1 @@ -17671,25 +17617,25 @@ snapshots: pify@4.0.1: {} - pinia-plugin-persistedstate@4.0.2(pinia@2.2.2(typescript@5.6.2)(vue@3.5.7(typescript@5.6.2)))(rollup@4.22.4): + pinia-plugin-persistedstate@4.0.2(pinia@2.2.2(typescript@5.6.2)(vue@3.5.8(typescript@5.6.2)))(rollup@4.22.4): dependencies: '@nuxt/kit': 3.13.2(rollup@4.22.4) deep-pick-omit: 1.2.0 defu: 6.1.4 destr: 2.0.3 optionalDependencies: - pinia: 2.2.2(typescript@5.6.2)(vue@3.5.7(typescript@5.6.2)) + pinia: 2.2.2(typescript@5.6.2)(vue@3.5.8(typescript@5.6.2)) transitivePeerDependencies: - magicast - rollup - supports-color - webpack-sources - pinia@2.2.2(typescript@5.6.2)(vue@3.5.7(typescript@5.6.2)): + pinia@2.2.2(typescript@5.6.2)(vue@3.5.8(typescript@5.6.2)): dependencies: '@vue/devtools-api': 6.6.4 - vue: 3.5.7(typescript@5.6.2) - vue-demi: 0.14.10(vue@3.5.7(typescript@5.6.2)) + vue: 3.5.8(typescript@5.6.2) + vue-demi: 0.14.10(vue@3.5.8(typescript@5.6.2)) optionalDependencies: typescript: 5.6.2 @@ -17762,7 +17708,7 @@ snapshots: postcss-colormin@7.0.2(postcss@8.4.47): dependencies: - browserslist: 4.23.3 + browserslist: 4.24.0 caniuse-api: 3.0.0 colord: 2.9.3 postcss: 8.4.47 @@ -17770,7 +17716,7 @@ snapshots: postcss-convert-values@7.0.4(postcss@8.4.47): dependencies: - browserslist: 4.23.3 + browserslist: 4.24.0 postcss: 8.4.47 postcss-value-parser: 4.2.0 @@ -17909,7 +17855,7 @@ snapshots: postcss-merge-rules@7.0.4(postcss@8.4.47): dependencies: - browserslist: 4.23.3 + browserslist: 4.24.0 caniuse-api: 3.0.0 cssnano-utils: 5.0.0(postcss@8.4.47) postcss: 8.4.47 @@ -17929,7 +17875,7 @@ snapshots: postcss-minify-params@7.0.2(postcss@8.4.47): dependencies: - browserslist: 4.23.3 + browserslist: 4.24.0 cssnano-utils: 5.0.0(postcss@8.4.47) postcss: 8.4.47 postcss-value-parser: 4.2.0 @@ -17988,7 +17934,7 @@ snapshots: postcss-normalize-unicode@7.0.2(postcss@8.4.47): dependencies: - browserslist: 4.23.3 + browserslist: 4.24.0 postcss: 8.4.47 postcss-value-parser: 4.2.0 @@ -18059,7 +18005,7 @@ snapshots: '@csstools/postcss-trigonometric-functions': 4.0.1(postcss@8.4.47) '@csstools/postcss-unset-value': 4.0.0(postcss@8.4.47) autoprefixer: 10.4.20(postcss@8.4.47) - browserslist: 4.23.3 + browserslist: 4.24.0 css-blank-pseudo: 7.0.0(postcss@8.4.47) css-has-pseudo: 7.0.0(postcss@8.4.47) css-prefers-color-scheme: 10.0.0(postcss@8.4.47) @@ -18098,7 +18044,7 @@ snapshots: postcss-reduce-initial@7.0.2(postcss@8.4.47): dependencies: - browserslist: 4.23.3 + browserslist: 4.24.0 caniuse-api: 3.0.0 postcss: 8.4.47 @@ -18163,7 +18109,7 @@ snapshots: picocolors: 1.1.0 source-map-js: 1.2.1 - preact@10.24.0: {} + preact@10.24.1: {} prelude-ls@1.2.1: {} @@ -18171,7 +18117,7 @@ snapshots: dependencies: fast-diff: 1.3.0 - prettier-plugin-tailwindcss@0.6.6(prettier@3.3.3): + prettier-plugin-tailwindcss@0.6.8(prettier@3.3.3): dependencies: prettier: 3.3.3 @@ -18231,20 +18177,20 @@ snapshots: queue-tick@1.0.1: {} - radix-vue@1.9.6(vue@3.5.7(typescript@5.6.2)): + radix-vue@1.9.6(vue@3.5.8(typescript@5.6.2)): dependencies: '@floating-ui/dom': 1.6.11 - '@floating-ui/vue': 1.1.5(vue@3.5.7(typescript@5.6.2)) + '@floating-ui/vue': 1.1.5(vue@3.5.8(typescript@5.6.2)) '@internationalized/date': 3.5.5 '@internationalized/number': 3.5.3 - '@tanstack/vue-virtual': 3.10.8(vue@3.5.7(typescript@5.6.2)) - '@vueuse/core': 10.11.1(vue@3.5.7(typescript@5.6.2)) - '@vueuse/shared': 10.11.1(vue@3.5.7(typescript@5.6.2)) + '@tanstack/vue-virtual': 3.10.8(vue@3.5.8(typescript@5.6.2)) + '@vueuse/core': 10.11.1(vue@3.5.8(typescript@5.6.2)) + '@vueuse/shared': 10.11.1(vue@3.5.8(typescript@5.6.2)) aria-hidden: 1.2.4 defu: 6.1.4 fast-deep-equal: 3.1.3 nanoid: 5.0.7 - vue: 3.5.7(typescript@5.6.2) + vue: 3.5.8(typescript@5.6.2) transitivePeerDependencies: - '@vue/composition-api' @@ -18524,7 +18470,7 @@ snapshots: sass@1.79.3: dependencies: - chokidar: 4.0.0 + chokidar: 4.0.1 immutable: 4.3.7 source-map-js: 1.2.1 @@ -18784,7 +18730,7 @@ snapshots: queue-tick: 1.0.1 text-decoder: 1.2.0 optionalDependencies: - bare-events: 2.4.2 + bare-events: 2.5.0 string-argv@0.3.2: {} @@ -18895,7 +18841,7 @@ snapshots: stylehacks@7.0.4(postcss@8.4.47): dependencies: - browserslist: 4.23.3 + browserslist: 4.24.0 postcss: 8.4.47 postcss-selector-parser: 6.1.2 @@ -19079,11 +19025,11 @@ snapshots: tailwind-merge@2.5.2: {} - tailwindcss-animate@1.0.7(tailwindcss@3.4.12): + tailwindcss-animate@1.0.7(tailwindcss@3.4.13): dependencies: - tailwindcss: 3.4.12 + tailwindcss: 3.4.13 - tailwindcss@3.4.12: + tailwindcss@3.4.13: dependencies: '@alloc/quick-lru': 5.2.0 arg: 5.0.2 @@ -19306,12 +19252,12 @@ snapshots: unbuild@2.0.0(sass@1.79.3)(typescript@5.6.2)(vue-tsc@2.1.6(typescript@5.6.2)): dependencies: - '@rollup/plugin-alias': 5.1.0(rollup@3.29.5) + '@rollup/plugin-alias': 5.1.1(rollup@3.29.5) '@rollup/plugin-commonjs': 25.0.8(rollup@3.29.5) '@rollup/plugin-json': 6.1.0(rollup@3.29.5) - '@rollup/plugin-node-resolve': 15.2.3(rollup@3.29.5) + '@rollup/plugin-node-resolve': 15.3.0(rollup@3.29.5) '@rollup/plugin-replace': 5.0.7(rollup@3.29.5) - '@rollup/pluginutils': 5.1.0(rollup@3.29.5) + '@rollup/pluginutils': 5.1.2(rollup@3.29.5) chalk: 5.3.0 citty: 0.1.6 consola: 3.2.3 @@ -19381,7 +19327,7 @@ snapshots: unimport@3.12.0(rollup@4.22.4): dependencies: - '@rollup/pluginutils': 5.1.0(rollup@4.22.4) + '@rollup/pluginutils': 5.1.2(rollup@4.22.4) acorn: 8.12.1 escape-string-regexp: 5.0.0 estree-walker: 3.0.3 @@ -19439,7 +19385,7 @@ snapshots: unplugin-element-plus@0.8.0(rollup@4.22.4): dependencies: - '@rollup/pluginutils': 5.1.0(rollup@4.22.4) + '@rollup/pluginutils': 5.1.2(rollup@4.22.4) es-module-lexer: 1.5.4 magic-string: 0.30.11 unplugin: 1.14.1 @@ -19500,9 +19446,9 @@ snapshots: upath@1.2.0: {} - update-browserslist-db@1.1.0(browserslist@4.23.3): + update-browserslist-db@1.1.0(browserslist@4.24.0): dependencies: - browserslist: 4.23.3 + browserslist: 4.24.0 escalade: 3.2.0 picocolors: 1.1.0 @@ -19534,16 +19480,16 @@ snapshots: spdx-correct: 3.2.0 spdx-expression-parse: 3.0.1 - vdirs@0.1.8(vue@3.5.7(typescript@5.6.2)): + vdirs@0.1.8(vue@3.5.8(typescript@5.6.2)): dependencies: evtd: 0.2.4 - vue: 3.5.7(typescript@5.6.2) + vue: 3.5.8(typescript@5.6.2) - vee-validate@4.13.2(vue@3.5.7(typescript@5.6.2)): + vee-validate@4.13.2(vue@3.5.8(typescript@5.6.2)): dependencies: '@vue/devtools-api': 6.6.4 type-fest: 4.26.1 - vue: 3.5.7(typescript@5.6.2) + vue: 3.5.8(typescript@5.6.2) vfile-message@4.0.2: dependencies: @@ -19555,16 +19501,16 @@ snapshots: '@types/unist': 3.0.3 vfile-message: 4.0.2 - vite-hot-client@0.2.3(vite@5.4.7(@types/node@22.5.5)(less@4.2.0)(sass@1.79.3)(terser@5.33.0)): + vite-hot-client@0.2.3(vite@5.4.8(@types/node@22.7.0)(less@4.2.0)(sass@1.79.3)(terser@5.33.0)): dependencies: - vite: 5.4.7(@types/node@22.5.5)(less@4.2.0)(sass@1.79.3)(terser@5.33.0) + vite: 5.4.8(@types/node@22.7.0)(less@4.2.0)(sass@1.79.3)(terser@5.33.0) - vite-node@2.1.1(@types/node@22.5.5)(less@4.2.0)(sass@1.79.3)(terser@5.33.0): + vite-node@2.1.1(@types/node@22.7.0)(less@4.2.0)(sass@1.79.3)(terser@5.33.0): dependencies: cac: 6.7.14 debug: 4.3.7 pathe: 1.1.2 - vite: 5.4.7(@types/node@22.5.5)(less@4.2.0)(sass@1.79.3)(terser@5.33.0) + vite: 5.4.8(@types/node@22.7.0)(less@4.2.0)(sass@1.79.3)(terser@5.33.0) transitivePeerDependencies: - '@types/node' - less @@ -19576,19 +19522,19 @@ snapshots: - supports-color - terser - vite-plugin-compression@0.5.1(vite@5.4.7(@types/node@22.5.5)(less@4.2.0)(sass@1.79.3)(terser@5.33.0)): + vite-plugin-compression@0.5.1(vite@5.4.8(@types/node@22.7.0)(less@4.2.0)(sass@1.79.3)(terser@5.33.0)): dependencies: chalk: 4.1.2 debug: 4.3.7 fs-extra: 10.1.0 - vite: 5.4.7(@types/node@22.5.5)(less@4.2.0)(sass@1.79.3)(terser@5.33.0) + vite: 5.4.8(@types/node@22.7.0)(less@4.2.0)(sass@1.79.3)(terser@5.33.0) transitivePeerDependencies: - supports-color - vite-plugin-dts@4.2.1(@types/node@22.5.5)(rollup@4.22.4)(typescript@5.6.2)(vite@5.4.7(@types/node@22.5.5)(less@4.2.0)(sass@1.79.3)(terser@5.33.0)): + vite-plugin-dts@4.2.1(@types/node@22.7.0)(rollup@4.22.4)(typescript@5.6.2)(vite@5.4.8(@types/node@22.7.0)(less@4.2.0)(sass@1.79.3)(terser@5.33.0)): dependencies: - '@microsoft/api-extractor': 7.47.7(@types/node@22.5.5) - '@rollup/pluginutils': 5.1.0(rollup@4.22.4) + '@microsoft/api-extractor': 7.47.7(@types/node@22.7.0) + '@rollup/pluginutils': 5.1.2(rollup@4.22.4) '@volar/typescript': 2.4.5 '@vue/language-core': 2.1.6(typescript@5.6.2) compare-versions: 6.1.1 @@ -19598,13 +19544,13 @@ snapshots: magic-string: 0.30.11 typescript: 5.6.2 optionalDependencies: - vite: 5.4.7(@types/node@22.5.5)(less@4.2.0)(sass@1.79.3)(terser@5.33.0) + vite: 5.4.8(@types/node@22.7.0)(less@4.2.0)(sass@1.79.3)(terser@5.33.0) transitivePeerDependencies: - '@types/node' - rollup - supports-color - vite-plugin-html@3.2.2(vite@5.4.7(@types/node@22.5.5)(less@4.2.0)(sass@1.79.3)(terser@5.33.0)): + vite-plugin-html@3.2.2(vite@5.4.8(@types/node@22.7.0)(less@4.2.0)(sass@1.79.3)(terser@5.33.0)): dependencies: '@rollup/pluginutils': 4.2.1 colorette: 2.0.20 @@ -19618,12 +19564,12 @@ snapshots: html-minifier-terser: 6.1.0 node-html-parser: 5.4.2 pathe: 0.2.0 - vite: 5.4.7(@types/node@22.5.5)(less@4.2.0)(sass@1.79.3)(terser@5.33.0) + vite: 5.4.8(@types/node@22.7.0)(less@4.2.0)(sass@1.79.3)(terser@5.33.0) - vite-plugin-inspect@0.8.7(rollup@4.22.4)(vite@5.4.7(@types/node@22.5.5)(less@4.2.0)(sass@1.79.3)(terser@5.33.0)): + vite-plugin-inspect@0.8.7(rollup@4.22.4)(vite@5.4.8(@types/node@22.7.0)(less@4.2.0)(sass@1.79.3)(terser@5.33.0)): dependencies: '@antfu/utils': 0.7.10 - '@rollup/pluginutils': 5.1.0(rollup@4.22.4) + '@rollup/pluginutils': 5.1.2(rollup@4.22.4) debug: 4.3.7 error-stack-parser-es: 0.1.5 fs-extra: 11.2.0 @@ -19631,46 +19577,46 @@ snapshots: perfect-debounce: 1.0.0 picocolors: 1.1.0 sirv: 2.0.4 - vite: 5.4.7(@types/node@22.5.5)(less@4.2.0)(sass@1.79.3)(terser@5.33.0) + vite: 5.4.8(@types/node@22.7.0)(less@4.2.0)(sass@1.79.3)(terser@5.33.0) transitivePeerDependencies: - rollup - supports-color - vite-plugin-lib-inject-css@2.1.1(vite@5.4.7(@types/node@22.5.5)(less@4.2.0)(sass@1.79.3)(terser@5.33.0)): + vite-plugin-lib-inject-css@2.1.1(vite@5.4.8(@types/node@22.7.0)(less@4.2.0)(sass@1.79.3)(terser@5.33.0)): dependencies: '@ast-grep/napi': 0.22.6 magic-string: 0.30.11 picocolors: 1.1.0 - vite: 5.4.7(@types/node@22.5.5)(less@4.2.0)(sass@1.79.3)(terser@5.33.0) + vite: 5.4.8(@types/node@22.7.0)(less@4.2.0)(sass@1.79.3)(terser@5.33.0) - vite-plugin-pwa@0.20.5(vite@5.4.7(@types/node@22.5.5)(less@4.2.0)(sass@1.79.3)(terser@5.33.0))(workbox-build@7.1.1)(workbox-window@7.1.0): + vite-plugin-pwa@0.20.5(vite@5.4.8(@types/node@22.7.0)(less@4.2.0)(sass@1.79.3)(terser@5.33.0))(workbox-build@7.1.1)(workbox-window@7.1.0): dependencies: debug: 4.3.7 pretty-bytes: 6.1.1 tinyglobby: 0.2.6 - vite: 5.4.7(@types/node@22.5.5)(less@4.2.0)(sass@1.79.3)(terser@5.33.0) + vite: 5.4.8(@types/node@22.7.0)(less@4.2.0)(sass@1.79.3)(terser@5.33.0) workbox-build: 7.1.1 workbox-window: 7.1.0 transitivePeerDependencies: - supports-color - vite-plugin-vue-devtools@7.4.5(rollup@4.22.4)(vite@5.4.7(@types/node@22.5.5)(less@4.2.0)(sass@1.79.3)(terser@5.33.0))(vue@3.5.7(typescript@5.6.2)): + vite-plugin-vue-devtools@7.4.6(rollup@4.22.4)(vite@5.4.8(@types/node@22.7.0)(less@4.2.0)(sass@1.79.3)(terser@5.33.0))(vue@3.5.8(typescript@5.6.2)): dependencies: - '@vue/devtools-core': 7.4.5(vite@5.4.7(@types/node@22.5.5)(less@4.2.0)(sass@1.79.3)(terser@5.33.0))(vue@3.5.7(typescript@5.6.2)) - '@vue/devtools-kit': 7.4.5 - '@vue/devtools-shared': 7.4.5 + '@vue/devtools-core': 7.4.6(vite@5.4.8(@types/node@22.7.0)(less@4.2.0)(sass@1.79.3)(terser@5.33.0))(vue@3.5.8(typescript@5.6.2)) + '@vue/devtools-kit': 7.4.6 + '@vue/devtools-shared': 7.4.6 execa: 8.0.1 sirv: 2.0.4 - vite: 5.4.7(@types/node@22.5.5)(less@4.2.0)(sass@1.79.3)(terser@5.33.0) - vite-plugin-inspect: 0.8.7(rollup@4.22.4)(vite@5.4.7(@types/node@22.5.5)(less@4.2.0)(sass@1.79.3)(terser@5.33.0)) - vite-plugin-vue-inspector: 5.2.0(vite@5.4.7(@types/node@22.5.5)(less@4.2.0)(sass@1.79.3)(terser@5.33.0)) + vite: 5.4.8(@types/node@22.7.0)(less@4.2.0)(sass@1.79.3)(terser@5.33.0) + vite-plugin-inspect: 0.8.7(rollup@4.22.4)(vite@5.4.8(@types/node@22.7.0)(less@4.2.0)(sass@1.79.3)(terser@5.33.0)) + vite-plugin-vue-inspector: 5.2.0(vite@5.4.8(@types/node@22.7.0)(less@4.2.0)(sass@1.79.3)(terser@5.33.0)) transitivePeerDependencies: - '@nuxt/kit' - rollup - supports-color - vue - vite-plugin-vue-inspector@5.2.0(vite@5.4.7(@types/node@22.5.5)(less@4.2.0)(sass@1.79.3)(terser@5.33.0)): + vite-plugin-vue-inspector@5.2.0(vite@5.4.8(@types/node@22.7.0)(less@4.2.0)(sass@1.79.3)(terser@5.33.0)): dependencies: '@babel/core': 7.25.2 '@babel/plugin-proposal-decorators': 7.24.7(@babel/core@7.25.2) @@ -19681,17 +19627,17 @@ snapshots: '@vue/compiler-dom': 3.5.8 kolorist: 1.8.0 magic-string: 0.30.11 - vite: 5.4.7(@types/node@22.5.5)(less@4.2.0)(sass@1.79.3)(terser@5.33.0) + vite: 5.4.8(@types/node@22.7.0)(less@4.2.0)(sass@1.79.3)(terser@5.33.0) transitivePeerDependencies: - supports-color - vite@5.4.7(@types/node@22.5.5)(less@4.2.0)(sass@1.79.3)(terser@5.33.0): + vite@5.4.8(@types/node@22.7.0)(less@4.2.0)(sass@1.79.3)(terser@5.33.0): dependencies: esbuild: 0.21.5 postcss: 8.4.47 rollup: 4.22.4 optionalDependencies: - '@types/node': 22.5.5 + '@types/node': 22.7.0 fsevents: 2.3.3 less: 4.2.0 sass: 1.79.3 @@ -19705,24 +19651,24 @@ snapshots: transitivePeerDependencies: - supports-color - vitepress@1.3.4(@algolia/client-search@4.24.0)(@types/node@22.5.5)(async-validator@4.2.5)(axios@1.7.7)(less@4.2.0)(nprogress@0.2.0)(postcss@8.4.47)(qrcode@1.5.4)(sass@1.79.3)(search-insights@2.17.2)(sortablejs@1.15.3)(terser@5.33.0)(typescript@5.6.2): + vitepress@1.3.4(@algolia/client-search@4.24.0)(@types/node@22.7.0)(async-validator@4.2.5)(axios@1.7.7)(less@4.2.0)(nprogress@0.2.0)(postcss@8.4.47)(qrcode@1.5.4)(sass@1.79.3)(search-insights@2.17.2)(sortablejs@1.15.3)(terser@5.33.0)(typescript@5.6.2): dependencies: '@docsearch/css': 3.6.1 '@docsearch/js': 3.6.1(@algolia/client-search@4.24.0)(search-insights@2.17.2) '@shikijs/core': 1.18.0 '@shikijs/transformers': 1.18.0 '@types/markdown-it': 14.1.2 - '@vitejs/plugin-vue': 5.1.4(vite@5.4.7(@types/node@22.5.5)(less@4.2.0)(sass@1.79.3)(terser@5.33.0))(vue@3.5.7(typescript@5.6.2)) - '@vue/devtools-api': 7.4.5 + '@vitejs/plugin-vue': 5.1.4(vite@5.4.8(@types/node@22.7.0)(less@4.2.0)(sass@1.79.3)(terser@5.33.0))(vue@3.5.8(typescript@5.6.2)) + '@vue/devtools-api': 7.4.6 '@vue/shared': 3.5.8 - '@vueuse/core': 11.1.0(vue@3.5.7(typescript@5.6.2)) - '@vueuse/integrations': 11.1.0(async-validator@4.2.5)(axios@1.7.7)(focus-trap@7.6.0)(nprogress@0.2.0)(qrcode@1.5.4)(sortablejs@1.15.3)(vue@3.5.7(typescript@5.6.2)) + '@vueuse/core': 11.1.0(vue@3.5.8(typescript@5.6.2)) + '@vueuse/integrations': 11.1.0(async-validator@4.2.5)(axios@1.7.7)(focus-trap@7.6.0)(nprogress@0.2.0)(qrcode@1.5.4)(sortablejs@1.15.3)(vue@3.5.8(typescript@5.6.2)) focus-trap: 7.6.0 mark.js: 8.11.1 minisearch: 7.1.0 shiki: 1.18.0 - vite: 5.4.7(@types/node@22.5.5)(less@4.2.0)(sass@1.79.3)(terser@5.33.0) - vue: 3.5.7(typescript@5.6.2) + vite: 5.4.8(@types/node@22.7.0)(less@4.2.0)(sass@1.79.3)(terser@5.33.0) + vue: 3.5.8(typescript@5.6.2) optionalDependencies: postcss: 8.4.47 transitivePeerDependencies: @@ -19753,10 +19699,10 @@ snapshots: - typescript - universal-cookie - vitest@2.1.1(@types/node@22.5.5)(happy-dom@15.7.4)(less@4.2.0)(sass@1.79.3)(terser@5.33.0): + vitest@2.1.1(@types/node@22.7.0)(happy-dom@15.7.4)(less@4.2.0)(sass@1.79.3)(terser@5.33.0): dependencies: '@vitest/expect': 2.1.1 - '@vitest/mocker': 2.1.1(@vitest/spy@2.1.1)(vite@5.4.7(@types/node@22.5.5)(less@4.2.0)(sass@1.79.3)(terser@5.33.0)) + '@vitest/mocker': 2.1.1(@vitest/spy@2.1.1)(vite@5.4.8(@types/node@22.7.0)(less@4.2.0)(sass@1.79.3)(terser@5.33.0)) '@vitest/pretty-format': 2.1.1 '@vitest/runner': 2.1.1 '@vitest/snapshot': 2.1.1 @@ -19771,11 +19717,11 @@ snapshots: tinyexec: 0.3.0 tinypool: 1.0.1 tinyrainbow: 1.2.0 - vite: 5.4.7(@types/node@22.5.5)(less@4.2.0)(sass@1.79.3)(terser@5.33.0) - vite-node: 2.1.1(@types/node@22.5.5)(less@4.2.0)(sass@1.79.3)(terser@5.33.0) + vite: 5.4.8(@types/node@22.7.0)(less@4.2.0)(sass@1.79.3)(terser@5.33.0) + vite-node: 2.1.1(@types/node@22.7.0)(less@4.2.0)(sass@1.79.3)(terser@5.33.0) why-is-node-running: 2.3.0 optionalDependencies: - '@types/node': 22.5.5 + '@types/node': 22.7.0 happy-dom: 15.7.4 transitivePeerDependencies: - less @@ -19788,10 +19734,10 @@ snapshots: - supports-color - terser - vooks@0.2.12(vue@3.5.7(typescript@5.6.2)): + vooks@0.2.12(vue@3.5.8(typescript@5.6.2)): dependencies: evtd: 0.2.4 - vue: 3.5.7(typescript@5.6.2) + vue: 3.5.8(typescript@5.6.2) vscode-languageserver-textdocument@1.0.12: {} @@ -19799,14 +19745,14 @@ snapshots: vue-component-type-helpers@2.1.6: {} - vue-demi@0.14.10(vue@3.5.7(typescript@5.6.2)): + vue-demi@0.14.10(vue@3.5.8(typescript@5.6.2)): dependencies: - vue: 3.5.7(typescript@5.6.2) + vue: 3.5.8(typescript@5.6.2) - vue-eslint-parser@9.4.3(eslint@9.11.0(jiti@1.21.6)): + vue-eslint-parser@9.4.3(eslint@9.11.1(jiti@1.21.6)): dependencies: debug: 4.3.7 - eslint: 9.11.0(jiti@1.21.6) + eslint: 9.11.1(jiti@1.21.6) eslint-scope: 7.2.2 eslint-visitor-keys: 3.4.3 espree: 9.6.1 @@ -19816,17 +19762,17 @@ snapshots: transitivePeerDependencies: - supports-color - vue-i18n@10.0.3(vue@3.5.7(typescript@5.6.2)): + vue-i18n@10.0.3(vue@3.5.8(typescript@5.6.2)): dependencies: '@intlify/core-base': 10.0.3 '@intlify/shared': 10.0.3 '@vue/devtools-api': 6.6.4 - vue: 3.5.7(typescript@5.6.2) + vue: 3.5.8(typescript@5.6.2) - vue-router@4.4.5(vue@3.5.7(typescript@5.6.2)): + vue-router@4.4.5(vue@3.5.8(typescript@5.6.2)): dependencies: '@vue/devtools-api': 6.6.4 - vue: 3.5.7(typescript@5.6.2) + vue: 3.5.8(typescript@5.6.2) vue-tsc@2.1.6(typescript@5.6.2): dependencies: @@ -19835,37 +19781,37 @@ snapshots: semver: 7.6.3 typescript: 5.6.2 - vue-types@3.0.2(vue@3.5.7(typescript@5.6.2)): + vue-types@3.0.2(vue@3.5.8(typescript@5.6.2)): dependencies: is-plain-object: 3.0.1 - vue: 3.5.7(typescript@5.6.2) + vue: 3.5.8(typescript@5.6.2) - vue@3.5.7(typescript@5.6.2): + vue@3.5.8(typescript@5.6.2): dependencies: - '@vue/compiler-dom': 3.5.7 - '@vue/compiler-sfc': 3.5.7 - '@vue/runtime-dom': 3.5.7 - '@vue/server-renderer': 3.5.7(vue@3.5.7(typescript@5.6.2)) - '@vue/shared': 3.5.7 + '@vue/compiler-dom': 3.5.8 + '@vue/compiler-sfc': 3.5.8 + '@vue/runtime-dom': 3.5.8 + '@vue/server-renderer': 3.5.8(vue@3.5.8(typescript@5.6.2)) + '@vue/shared': 3.5.8 optionalDependencies: typescript: 5.6.2 - vueuc@0.4.58(vue@3.5.7(typescript@5.6.2)): + vueuc@0.4.63(vue@3.5.8(typescript@5.6.2)): dependencies: - '@css-render/vue3-ssr': 0.15.14(vue@3.5.7(typescript@5.6.2)) + '@css-render/vue3-ssr': 0.15.14(vue@3.5.8(typescript@5.6.2)) '@juggle/resize-observer': 3.4.0 css-render: 0.15.14 evtd: 0.2.4 seemly: 0.3.8 - vdirs: 0.1.8(vue@3.5.7(typescript@5.6.2)) - vooks: 0.2.12(vue@3.5.7(typescript@5.6.2)) - vue: 3.5.7(typescript@5.6.2) + vdirs: 0.1.8(vue@3.5.8(typescript@5.6.2)) + vooks: 0.2.12(vue@3.5.8(typescript@5.6.2)) + vue: 3.5.8(typescript@5.6.2) warning@4.0.3: dependencies: loose-envify: 1.4.0 - watermark-js-plus@1.5.6: {} + watermark-js-plus@1.5.7: {} webidl-conversions@3.0.1: {} @@ -19953,7 +19899,7 @@ snapshots: '@babel/preset-env': 7.25.4(@babel/core@7.25.2) '@babel/runtime': 7.25.6 '@rollup/plugin-babel': 5.3.1(@babel/core@7.25.2)(rollup@2.79.1) - '@rollup/plugin-node-resolve': 15.2.3(rollup@2.79.1) + '@rollup/plugin-node-resolve': 15.3.0(rollup@2.79.1) '@rollup/plugin-replace': 2.4.2(rollup@2.79.1) '@rollup/plugin-terser': 0.4.4(rollup@2.79.1) '@surma/rollup-plugin-off-main-thread': 2.2.3 @@ -20175,4 +20121,4 @@ snapshots: zx@8.1.8: optionalDependencies: '@types/fs-extra': 11.0.4 - '@types/node': 22.5.5 + '@types/node': 22.7.0 diff --git a/pnpm-workspace.yaml b/pnpm-workspace.yaml index 49ea61ad635..8eea2b3e6ad 100644 --- a/pnpm-workspace.yaml +++ b/pnpm-workspace.yaml @@ -20,7 +20,7 @@ catalog: '@commitlint/cli': ^19.5.0 '@commitlint/config-conventional': ^19.5.0 '@ctrl/tinycolor': ^4.1.0 - '@eslint/js': ^9.11.0 + '@eslint/js': ^9.11.1 '@iconify/json': ^2.2.252 '@iconify/tailwind': ^1.1.3 '@iconify/vue': ^4.1.2 @@ -42,13 +42,13 @@ catalog: '@types/html-minifier-terser': ^7.0.2 '@types/jsonwebtoken': ^9.0.7 '@types/lodash.clonedeep': ^4.5.9 - '@types/node': ^22.5.5 + '@types/node': ^22.7.0 '@types/nprogress': ^0.2.3 '@types/postcss-import': ^14.0.3 '@types/qrcode': ^1.5.5 '@types/sortablejs': ^1.15.8 - '@typescript-eslint/eslint-plugin': ^8.6.0 - '@typescript-eslint/parser': ^8.6.0 + '@typescript-eslint/eslint-plugin': ^8.7.0 + '@typescript-eslint/parser': ^8.7.0 '@vee-validate/zod': ^4.13.2 '@vite-pwa/vitepress': ^0.5.3 '@vitejs/plugin-vue': ^5.1.4 @@ -82,7 +82,7 @@ catalog: dotenv: ^16.4.5 echarts: ^5.5.1 element-plus: ^2.8.3 - eslint: ^9.11.0 + eslint: ^9.11.1 eslint-config-turbo: ^2.1.2 eslint-plugin-command: ^0.2.5 eslint-plugin-eslint-comments: ^3.2.0 @@ -91,7 +91,7 @@ catalog: eslint-plugin-jsonc: ^2.16.0 eslint-plugin-n: ^17.10.3 eslint-plugin-no-only-tests: ^3.3.0 - eslint-plugin-perfectionist: ^3.6.0 + eslint-plugin-perfectionist: ^3.7.0 eslint-plugin-prettier: ^5.2.1 eslint-plugin-regexp: ^2.6.0 eslint-plugin-unicorn: ^55.0.0 @@ -129,7 +129,7 @@ catalog: postcss-preset-env: ^10.0.5 postcss-scss: ^4.0.9 prettier: ^3.3.3 - prettier-plugin-tailwindcss: ^0.6.6 + prettier-plugin-tailwindcss: ^0.6.8 publint: ^0.2.11 qrcode: ^1.5.4 radix-vue: ^1.9.6 @@ -149,7 +149,7 @@ catalog: stylelint-prettier: ^5.0.2 stylelint-scss: ^6.7.0 tailwind-merge: ^2.5.2 - tailwindcss: ^3.4.12 + tailwindcss: ^3.4.13 tailwindcss-animate: ^1.0.7 theme-colors: ^0.1.0 turbo: ^2.1.2 @@ -163,7 +163,7 @@ catalog: vite-plugin-html: ^3.2.2 vite-plugin-lib-inject-css: ^2.1.1 vite-plugin-pwa: ^0.20.5 - vite-plugin-vue-devtools: ^7.4.5 + vite-plugin-vue-devtools: ^7.4.6 vitepress: ^1.3.4 vitepress-plugin-group-icons: ^1.2.4 vitest: ^2.1.1