From ac6ca1db73fd42ff50f556ad21b5a32ca0b5284f Mon Sep 17 00:00:00 2001 From: xlsea Date: Fri, 30 Aug 2024 16:34:49 +0800 Subject: [PATCH] =?UTF-8?q?merge(sj=5F1.2.0-beta1):=20=E5=90=88=E5=B9=B6?= =?UTF-8?q?=20sa?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- build/config/proxy.ts | 6 +- package.json | 51 +- packages/axios/package.json | 6 +- packages/scripts/package.json | 6 +- packages/scripts/src/locales/index.ts | 8 +- pnpm-lock.yaml | 1048 +++++++++++++++---------- src/hooks/common/router.ts | 10 +- src/plugins/app.ts | 4 +- src/store/modules/auth/index.ts | 4 +- src/typings/api.d.ts | 3 + src/typings/naive-ui.d.ts | 2 +- src/utils/service.ts | 8 +- vite.config.ts | 4 +- 13 files changed, 699 insertions(+), 461 deletions(-) diff --git a/build/config/proxy.ts b/build/config/proxy.ts index 350dfee..548ea4e 100644 --- a/build/config/proxy.ts +++ b/build/config/proxy.ts @@ -5,10 +5,10 @@ import { createServiceConfig } from '../../src/utils/service'; * Set http proxy * * @param env - The current env - * @param isDev - Is development environment + * @param enable - If enable http proxy */ -export function createViteProxy(env: Env.ImportMeta, isDev: boolean) { - const isEnableHttpProxy = isDev && env.VITE_HTTP_PROXY === 'Y'; +export function createViteProxy(env: Env.ImportMeta, enable: boolean) { + const isEnableHttpProxy = enable && env.VITE_HTTP_PROXY === 'Y'; if (!isEnableHttpProxy) return undefined; diff --git a/package.json b/package.json index 2a0d1dd..9ef253d 100644 --- a/package.json +++ b/package.json @@ -34,7 +34,7 @@ "build:test": "vite build --mode test", "cleanup": "sa cleanup", "commit": "sa git-commit", - "czh": "sa git-commit -l=zh-cn", + "commit:zh": "sa git-commit -l=zh-cn", "dev": "vite --mode test", "dev:prod": "vite --mode prod", "gen-route": "sa gen-route", @@ -57,53 +57,54 @@ "@sa/hooks": "workspace:*", "@sa/materials": "workspace:*", "@sa/utils": "workspace:*", - "@vueuse/core": "10.11.0", + "@vueuse/core": "11.0.1", "clipboard": "2.0.11", "dayjs": "1.11.12", "echarts": "5.5.1", "highlight.js": "^11.10.0", "naive-ui": "2.39.0", "nprogress": "0.2.0", - "pinia": "2.2.0", - "tailwind-merge": "2.4.0", + "pinia": "2.2.2", + "tailwind-merge": "2.5.2", "ts-md5": "1.3.1", - "vue": "3.4.35", + "vue": "3.4.38", "vue-codemirror6": "^1.3.4", "vue-drag-resize": "^1.5.4", - "vue-draggable-plus": "0.5.2", - "vue-i18n": "9.13.1", - "vue-router": "4.4.1", + "vue-draggable-plus": "0.5.3", + "vue-i18n": "9.14.0", + "vue-router": "4.4.3", "vue3-puzzle-vcode": "^1.1.7" }, "devDependencies": { "@elegant-router/vue": "0.3.8", - "@iconify/json": "2.2.232", + "@iconify/json": "2.2.238", "@sa/scripts": "workspace:*", "@sa/uno-preset": "workspace:*", "@soybeanjs/eslint-config": "1.4.0", - "@types/node": "22.0.1", + "@types/node": "22.4.1", "@types/nprogress": "0.2.3", - "@unocss/eslint-config": "0.61.9", - "@unocss/preset-icons": "0.61.9", - "@unocss/preset-uno": "0.61.9", - "@unocss/transformer-directives": "0.61.9", - "@unocss/transformer-variant-group": "0.61.9", - "@unocss/vite": "0.61.9", - "@vitejs/plugin-vue": "5.1.1", - "@vitejs/plugin-vue-jsx": "4.0.0", - "eslint": "9.8.0", + "@unocss/eslint-config": "0.62.2", + "@unocss/preset-icons": "0.62.2", + "@unocss/preset-uno": "0.62.2", + "@unocss/transformer-directives": "0.62.2", + "@unocss/transformer-variant-group": "0.62.2", + "@unocss/vite": "0.62.2", + "@vitejs/plugin-vue": "5.1.2", + "@vitejs/plugin-vue-jsx": "4.0.1", + "eslint": "9.9.0", "eslint-plugin-vue": "9.27.0", - "lint-staged": "15.2.7", + "json5": "2.2.3", + "lint-staged": "15.2.9", "sass": "1.77.8", "simple-git-hooks": "2.11.1", - "tsx": "4.16.3", + "tsx": "4.17.0", "typescript": "5.5.4", - "unplugin-icons": "0.19.1", - "unplugin-vue-components": "0.27.3", - "vite": "5.3.5", + "unplugin-icons": "0.19.2", + "unplugin-vue-components": "0.27.4", + "vite": "5.4.1", "vite-plugin-progress": "0.0.7", "vite-plugin-svg-icons": "2.0.1", - "vite-plugin-vue-devtools": "7.3.7", + "vite-plugin-vue-devtools": "7.3.8", "vue-eslint-parser": "9.4.3", "vue-tsc": "2.0.29" }, diff --git a/packages/axios/package.json b/packages/axios/package.json index cb9ccb1..766bc60 100644 --- a/packages/axios/package.json +++ b/packages/axios/package.json @@ -11,9 +11,9 @@ }, "dependencies": { "@sa/utils": "workspace:*", - "axios": "1.7.2", - "axios-retry": "4.4.2", - "qs": "6.12.3" + "axios": "1.7.4", + "axios-retry": "4.5.0", + "qs": "6.13.0" }, "devDependencies": { "@types/qs": "6.9.15" diff --git a/packages/scripts/package.json b/packages/scripts/package.json index b2d5689..5a163f8 100644 --- a/packages/scripts/package.json +++ b/packages/scripts/package.json @@ -14,14 +14,14 @@ }, "devDependencies": { "@soybeanjs/changelog": "0.3.24", - "bumpp": "9.4.1", + "bumpp": "9.5.1", "c12": "1.11.1", "cac": "6.7.14", "consola": "3.2.3", "enquirer": "2.4.1", - "execa": "9.3.0", + "execa": "9.3.1", "kolorist": "1.8.0", - "npm-check-updates": "17.0.0", + "npm-check-updates": "17.0.6", "rimraf": "6.0.1" } } diff --git a/packages/scripts/src/locales/index.ts b/packages/scripts/src/locales/index.ts index 8d28dd5..74321d0 100644 --- a/packages/scripts/src/locales/index.ts +++ b/packages/scripts/src/locales/index.ts @@ -11,13 +11,15 @@ export const locales = { }, gitCommitTypes: [ ['feat', '新功能'], + ['feat-wip', '开发中的功能,比如某功能的部分代码'], ['fix', '修复Bug'], - ['docs', '只更新文档'], + ['docs', '只涉及文档更新'], + ['typo', '代码或文档勘误,比如错误拼写'], ['style', '修改代码风格,不影响代码含义的变更'], ['refactor', '代码重构,既不修复 bug 也不添加功能的代码变更'], ['perf', '可提高性能的代码更改'], ['optimize', '优化代码质量的代码更改'], - ['test', '添加缺失的测试或更正现有测'], + ['test', '添加缺失的测试或更正现有测试'], ['build', '影响构建系统或外部依赖项的更改'], ['ci', '对 CI 配置文件和脚本的更改'], ['chore', '没有修改src或测试文件的其他变更'], @@ -47,8 +49,10 @@ export const locales = { }, gitCommitTypes: [ ['feat', 'A new feature'], + ['feat-wip', 'Features in development, such as partial code for a certain feature'], ['fix', 'A bug fix'], ['docs', 'Documentation only changes'], + ['typo', 'Code or document corrections, such as spelling errors'], ['style', 'Changes that do not affect the meaning of the code'], ['refactor', 'A code change that neither fixes a bug nor adds a feature'], ['perf', 'A code change that improves performance'], diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 6fcc65c..39dfd21 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -22,7 +22,7 @@ importers: version: 6.1.2 '@iconify/vue': specifier: 4.1.2 - version: 4.1.2(vue@3.4.35(typescript@5.5.4)) + version: 4.1.2(vue@3.4.38(typescript@5.5.4)) '@sa/axios': specifier: workspace:* version: link:packages/axios @@ -42,8 +42,8 @@ importers: specifier: workspace:* version: link:packages/utils '@vueuse/core': - specifier: 10.11.0 - version: 10.11.0(vue@3.4.35(typescript@5.5.4)) + specifier: 11.0.1 + version: 11.0.1(vue@3.4.38(typescript@5.5.4)) clipboard: specifier: 2.0.11 version: 2.0.11 @@ -58,37 +58,37 @@ importers: version: 11.10.0 naive-ui: specifier: 2.39.0 - version: 2.39.0(vue@3.4.35(typescript@5.5.4)) + version: 2.39.0(vue@3.4.38(typescript@5.5.4)) nprogress: specifier: 0.2.0 version: 0.2.0 pinia: - specifier: 2.2.0 - version: 2.2.0(typescript@5.5.4)(vue@3.4.35(typescript@5.5.4)) + specifier: 2.2.2 + version: 2.2.2(typescript@5.5.4)(vue@3.4.38(typescript@5.5.4)) tailwind-merge: - specifier: 2.4.0 - version: 2.4.0 + specifier: 2.5.2 + version: 2.5.2 ts-md5: specifier: 1.3.1 version: 1.3.1 vue: - specifier: 3.4.35 - version: 3.4.35(typescript@5.5.4) + specifier: 3.4.38 + version: 3.4.38(typescript@5.5.4) vue-codemirror6: specifier: ^1.3.4 - version: 1.3.4(@lezer/common@1.2.1)(vue@3.4.35(typescript@5.5.4)) + version: 1.3.4(@lezer/common@1.2.1)(vue@3.4.38(typescript@5.5.4)) vue-drag-resize: specifier: ^1.5.4 version: 1.5.4 vue-draggable-plus: - specifier: 0.5.2 - version: 0.5.2(@types/sortablejs@1.15.8) + specifier: 0.5.3 + version: 0.5.3(@types/sortablejs@1.15.8) vue-i18n: - specifier: 9.13.1 - version: 9.13.1(vue@3.4.35(typescript@5.5.4)) + specifier: 9.14.0 + version: 9.14.0(vue@3.4.38(typescript@5.5.4)) vue-router: - specifier: 4.4.1 - version: 4.4.1(vue@3.4.35(typescript@5.5.4)) + specifier: 4.4.3 + version: 4.4.3(vue@3.4.38(typescript@5.5.4)) vue3-puzzle-vcode: specifier: ^1.1.7 version: 1.1.7 @@ -97,8 +97,8 @@ importers: specifier: 0.3.8 version: 0.3.8 '@iconify/json': - specifier: 2.2.232 - version: 2.2.232 + specifier: 2.2.238 + version: 2.2.238 '@sa/scripts': specifier: workspace:* version: link:packages/scripts @@ -107,46 +107,49 @@ importers: version: link:packages/uno-preset '@soybeanjs/eslint-config': specifier: 1.4.0 - version: 1.4.0(@unocss/eslint-config@0.61.9(eslint@9.8.0)(typescript@5.5.4))(eslint-plugin-vue@9.27.0(eslint@9.8.0))(eslint@9.8.0)(typescript@5.5.4)(vue-eslint-parser@9.4.3(eslint@9.8.0)) + version: 1.4.0(@unocss/eslint-config@0.62.2(eslint@9.9.0(jiti@1.21.6))(typescript@5.5.4))(eslint-plugin-vue@9.27.0(eslint@9.9.0(jiti@1.21.6)))(eslint@9.9.0(jiti@1.21.6))(typescript@5.5.4)(vue-eslint-parser@9.4.3(eslint@9.9.0(jiti@1.21.6))) '@types/node': - specifier: 22.0.1 - version: 22.0.1 + specifier: 22.4.1 + version: 22.4.1 '@types/nprogress': specifier: 0.2.3 version: 0.2.3 '@unocss/eslint-config': - specifier: 0.61.9 - version: 0.61.9(eslint@9.8.0)(typescript@5.5.4) + specifier: 0.62.2 + version: 0.62.2(eslint@9.9.0(jiti@1.21.6))(typescript@5.5.4) '@unocss/preset-icons': - specifier: 0.61.9 - version: 0.61.9 + specifier: 0.62.2 + version: 0.62.2 '@unocss/preset-uno': - specifier: 0.61.9 - version: 0.61.9 + specifier: 0.62.2 + version: 0.62.2 '@unocss/transformer-directives': - specifier: 0.61.9 - version: 0.61.9 + specifier: 0.62.2 + version: 0.62.2 '@unocss/transformer-variant-group': - specifier: 0.61.9 - version: 0.61.9 + specifier: 0.62.2 + version: 0.62.2 '@unocss/vite': - specifier: 0.61.9 - version: 0.61.9(rollup@4.19.1)(vite@5.3.5(@types/node@22.0.1)(sass@1.77.8)) + specifier: 0.62.2 + version: 0.62.2(rollup@4.19.1)(vite@5.4.1(@types/node@22.4.1)(sass@1.77.8)) '@vitejs/plugin-vue': - specifier: 5.1.1 - version: 5.1.1(vite@5.3.5(@types/node@22.0.1)(sass@1.77.8))(vue@3.4.35(typescript@5.5.4)) + specifier: 5.1.2 + version: 5.1.2(vite@5.4.1(@types/node@22.4.1)(sass@1.77.8))(vue@3.4.38(typescript@5.5.4)) '@vitejs/plugin-vue-jsx': - specifier: 4.0.0 - version: 4.0.0(vite@5.3.5(@types/node@22.0.1)(sass@1.77.8))(vue@3.4.35(typescript@5.5.4)) + specifier: 4.0.1 + version: 4.0.1(vite@5.4.1(@types/node@22.4.1)(sass@1.77.8))(vue@3.4.38(typescript@5.5.4)) eslint: - specifier: 9.8.0 - version: 9.8.0 + specifier: 9.9.0 + version: 9.9.0(jiti@1.21.6) eslint-plugin-vue: specifier: 9.27.0 - version: 9.27.0(eslint@9.8.0) + version: 9.27.0(eslint@9.9.0(jiti@1.21.6)) + json5: + specifier: 2.2.3 + version: 2.2.3 lint-staged: - specifier: 15.2.7 - version: 15.2.7 + specifier: 15.2.9 + version: 15.2.9 sass: specifier: 1.77.8 version: 1.77.8 @@ -154,32 +157,32 @@ importers: specifier: 2.11.1 version: 2.11.1 tsx: - specifier: 4.16.3 - version: 4.16.3 + specifier: 4.17.0 + version: 4.17.0 typescript: specifier: 5.5.4 version: 5.5.4 unplugin-icons: - specifier: 0.19.1 - version: 0.19.1(@vue/compiler-sfc@3.4.35) + specifier: 0.19.2 + version: 0.19.2(@vue/compiler-sfc@3.4.38) unplugin-vue-components: - specifier: 0.27.3 - version: 0.27.3(@babel/parser@7.25.3)(rollup@4.19.1)(vue@3.4.35(typescript@5.5.4)) + specifier: 0.27.4 + version: 0.27.4(@babel/parser@7.25.3)(rollup@4.19.1)(vue@3.4.38(typescript@5.5.4)) vite: - specifier: 5.3.5 - version: 5.3.5(@types/node@22.0.1)(sass@1.77.8) + specifier: 5.4.1 + version: 5.4.1(@types/node@22.4.1)(sass@1.77.8) vite-plugin-progress: specifier: 0.0.7 - version: 0.0.7(vite@5.3.5(@types/node@22.0.1)(sass@1.77.8)) + version: 0.0.7(vite@5.4.1(@types/node@22.4.1)(sass@1.77.8)) vite-plugin-svg-icons: specifier: 2.0.1 - version: 2.0.1(vite@5.3.5(@types/node@22.0.1)(sass@1.77.8)) + version: 2.0.1(vite@5.4.1(@types/node@22.4.1)(sass@1.77.8)) vite-plugin-vue-devtools: - specifier: 7.3.7 - version: 7.3.7(rollup@4.19.1)(vite@5.3.5(@types/node@22.0.1)(sass@1.77.8))(vue@3.4.35(typescript@5.5.4)) + specifier: 7.3.8 + version: 7.3.8(rollup@4.19.1)(vite@5.4.1(@types/node@22.4.1)(sass@1.77.8))(vue@3.4.38(typescript@5.5.4)) vue-eslint-parser: specifier: 9.4.3 - version: 9.4.3(eslint@9.8.0) + version: 9.4.3(eslint@9.9.0(jiti@1.21.6)) vue-tsc: specifier: 2.0.29 version: 2.0.29(typescript@5.5.4) @@ -190,14 +193,14 @@ importers: specifier: workspace:* version: link:../utils axios: - specifier: 1.7.2 - version: 1.7.2 + specifier: 1.7.4 + version: 1.7.4 axios-retry: - specifier: 4.4.2 - version: 4.4.2(axios@1.7.2) + specifier: 4.5.0 + version: 4.5.0(axios@1.7.4) qs: - specifier: 6.12.3 - version: 6.12.3 + specifier: 6.13.0 + version: 6.13.0 devDependencies: '@types/qs': specifier: 6.9.15 @@ -234,7 +237,7 @@ importers: version: link:../utils simplebar-vue: specifier: 2.3.5 - version: 2.3.5(vue@3.4.35(typescript@5.5.4)) + version: 2.3.5(vue@3.4.38(typescript@5.5.4)) devDependencies: typed-css-modules: specifier: 0.9.1 @@ -250,10 +253,10 @@ importers: devDependencies: '@soybeanjs/changelog': specifier: 0.3.24 - version: 0.3.24(@unocss/eslint-config@0.61.9(eslint@9.8.0)(typescript@5.5.4))(eslint-plugin-vue@9.27.0(eslint@9.8.0))(eslint@9.8.0)(typescript@5.5.4)(vue-eslint-parser@9.4.3(eslint@9.8.0)) + version: 0.3.24(@unocss/eslint-config@0.62.2(eslint@9.9.0(jiti@1.21.6))(typescript@5.5.4))(eslint-plugin-vue@9.27.0(eslint@9.9.0(jiti@1.21.6)))(eslint@9.9.0(jiti@1.21.6))(typescript@5.5.4)(vue-eslint-parser@9.4.3(eslint@9.9.0(jiti@1.21.6))) bumpp: - specifier: 9.4.1 - version: 9.4.1(magicast@0.3.4) + specifier: 9.5.1 + version: 9.5.1(magicast@0.3.4) c12: specifier: 1.11.1 version: 1.11.1(magicast@0.3.4) @@ -267,14 +270,14 @@ importers: specifier: 2.4.1 version: 2.4.1 execa: - specifier: 9.3.0 - version: 9.3.0 + specifier: 9.3.1 + version: 9.3.1 kolorist: specifier: 1.8.0 version: 1.8.0 npm-check-updates: - specifier: 17.0.0 - version: 17.0.0 + specifier: 17.0.6 + version: 17.0.6 rimraf: specifier: 6.0.1 version: 6.0.1 @@ -319,6 +322,9 @@ packages: '@antfu/install-pkg@0.3.3': resolution: {integrity: sha512-nHHsk3NXQ6xkCfiRRC8Nfrg8pU5kkr3P3Y9s9dKqiuRmBD0Yap7fymNDjGFKeWhZQHqqbCS5CfeMy9wtExM24w==} + '@antfu/install-pkg@0.4.1': + resolution: {integrity: sha512-T7yB5QNG29afhWVkVq7XeIMBa5U/vs9mX69YqayXypPRmYzUmzwnYltplHmPtZ4HPCn+sQKeXW8I47wCbuBOjw==} + '@antfu/utils@0.7.10': resolution: {integrity: sha512-+562v9k4aI80m1+VuMHehNJWLOFjBnXn3tdOitzD0il5b7smkSBal4+a3oKiQTbrwMmN/TBUMDvbdoWDehgOww==} @@ -838,6 +844,10 @@ packages: resolution: {integrity: sha512-MfluB7EUfxXtv3i/++oh89uzAr4PDI4nn201hsp+qaXqsjAWzinlZEHEfPgAX4doIlKvPG/i0A9dpKxOLII8yA==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + '@eslint/js@9.9.0': + resolution: {integrity: sha512-hhetes6ZHP3BlXLxmd8K2SNgkhNSi+UcecbnwWKwpP7kyi/uC75DJ1lOOBO3xrC4jyojtGE3YxKZPHfk4yrgug==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + '@eslint/object-schema@2.1.4': resolution: {integrity: sha512-BsWiH1yFGjXXS2yvrf5LyuoSIIbPrGUWob917o+BTKuZ7qJdxX8aJLRxs1fS9n6r7vESrq1OUqb68dANcFXuQQ==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} @@ -850,8 +860,8 @@ packages: resolution: {integrity: sha512-d2CGZR2o7fS6sWB7DG/3a95bGKQyHMACZ5aW8qGkkqQpUoZV6C0X7Pc7l4ZNMZkfNBf4VWNe9E1jRsf0G146Ew==} engines: {node: '>=18.18'} - '@iconify/json@2.2.232': - resolution: {integrity: sha512-o1W5bNDuXTd3ugywfX9uRmhuJTKYOLhH4qk+eUpkR8WEYdTmMW+FSiFO5R2KqD94Tzoi8Ef8u/R7felU5xk3eQ==} + '@iconify/json@2.2.238': + resolution: {integrity: sha512-wtsUtPGeHH4Jy0Z+oIKyD9ldrFISAEzfGs1SM+PthhHRywDDiZsP2iVn6d2Vzn03wVTB7b8882zoztWWPl1ZmA==} '@iconify/types@2.0.0': resolution: {integrity: sha512-+wluvCrRhXrhyOmRDJ3q8mux9JkKy5SJ/v8ol2tu4FVjyYvtEzkc/3pK15ET6RKg4b4w4BmTk1+gsCUhf21Ykg==} @@ -859,21 +869,24 @@ packages: '@iconify/utils@2.1.29': resolution: {integrity: sha512-wCcTsmlJvTi1VWBgcJ7HeuWlh7gLGWY7L9HmbgMfjOfsoo7DADemB2Nqnrw1KvCdEAxLL5wTMBAOP5BesFrtng==} + '@iconify/utils@2.1.32': + resolution: {integrity: sha512-LeifFZPPKu28O3AEDpYJNdEbvS4/ojAPyIW+pF/vUpJTYnbTiXUHkCh0bwgFRzKvdpb8H4Fbfd/742++MF4fPQ==} + '@iconify/vue@4.1.2': resolution: {integrity: sha512-CQnYqLiQD5LOAaXhBrmj1mdL2/NCJvwcC4jtW2Z8ukhThiFkLDkutarTOV2trfc9EXqUqRs0KqXOL9pZ/IyysA==} peerDependencies: vue: '>=3' - '@intlify/core-base@9.13.1': - resolution: {integrity: sha512-+bcQRkJO9pcX8d0gel9ZNfrzU22sZFSA0WVhfXrf5jdJOS24a+Bp8pozuS9sBI9Hk/tGz83pgKfmqcn/Ci7/8w==} + '@intlify/core-base@9.14.0': + resolution: {integrity: sha512-zJn0imh9HIsZZUtt9v8T16PeVstPv6bP2YzlrYJwoF8F30gs4brZBwW2KK6EI5WYKFi3NeqX6+UU4gniz5TkGg==} engines: {node: '>= 16'} - '@intlify/message-compiler@9.13.1': - resolution: {integrity: sha512-SKsVa4ajYGBVm7sHMXd5qX70O2XXjm55zdZB3VeMFCvQyvLew/dLvq3MqnaIsTMF1VkkOb9Ttr6tHcMlyPDL9w==} + '@intlify/message-compiler@9.14.0': + resolution: {integrity: sha512-sXNsoMI0YsipSXW8SR75drmVK56tnJHoYbPXUv2Cf9lz6FzvwsosFm6JtC1oQZI/kU+n7qx0qRrEWkeYFTgETA==} engines: {node: '>= 16'} - '@intlify/shared@9.13.1': - resolution: {integrity: sha512-u3b6BKGhE6j/JeRU6C/RL2FgyJfy6LakbtfeVF8fJXURpZZTzfh3e05J0bu0XPw447Q6/WUp3C4ajv4TMS4YsQ==} + '@intlify/shared@9.14.0': + resolution: {integrity: sha512-r+N8KRQL7LgN1TMTs1A2svfuAU0J94Wu9wWdJVJqYsoMMLIeJxrPjazihfHpmJqfgZq0ah3Y9Q4pgWV2O90Fyg==} engines: {node: '>= 16'} '@isaacs/cliui@8.0.2': @@ -1132,8 +1145,8 @@ packages: '@types/node@10.17.60': resolution: {integrity: sha512-F0KIgDJfy2nA3zMLmWGKxcH2ZVEtCZXHHdOQs2gSaQ27+lNeEfGxzkIw90aXswATX7AZ33tahPbzy6KAfUreVw==} - '@types/node@22.0.1': - resolution: {integrity: sha512-RVKWL+s4ax6syie/ev3FXFIs38mke4ZsCDPBcLF2Gu6MbQXKe9Fo9iU0EPUxDB1mDVvC0vCgkV3lKa2f6xIuHg==} + '@types/node@22.4.1': + resolution: {integrity: sha512-1tbpb9325+gPnKK0dMm+/LMriX0vKxf6RnB0SZUqfyVkQ4fMgUSySqhxE/y8Jvs4NyF1yHzTfG9KlnkIODxPKg==} '@types/normalize-package-data@2.4.4': resolution: {integrity: sha512-37i+OaWTh9qeK4LSHPsyRC7NahnGotNuZvjLSgcPzblpHB3rrCJxAOgI5gCdKm7coonsaX1Of0ILiTcnZjbfxA==} @@ -1181,6 +1194,10 @@ packages: resolution: {integrity: sha512-jjhdIE/FPF2B7Z1uzc6i3oWKbGcHb87Qw7AWj6jmEqNOfDFbJWtjt/XfwCpvNkpGWlcJaog5vTR+VV8+w9JflA==} engines: {node: ^18.18.0 || >=20.0.0} + '@typescript-eslint/scope-manager@8.3.0': + resolution: {integrity: sha512-mz2X8WcN2nVu5Hodku+IR8GgCOl4C0G/Z1ruaWN4dgec64kDBabuXyPAr+/RgJtumv8EEkqIzf3X2U5DUKB2eg==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + '@typescript-eslint/type-utils@7.18.0': resolution: {integrity: sha512-XL0FJXuCLaDuX2sYqZUUSOJ2sG5/i1AAze+axqmLnSkNEVMVYLF+cbwlB2w8D1tinFuSikHmFta+P+HOofrLeA==} engines: {node: ^18.18.0 || >=20.0.0} @@ -1195,6 +1212,10 @@ packages: resolution: {integrity: sha512-iZqi+Ds1y4EDYUtlOOC+aUmxnE9xS/yCigkjA7XpTKV6nCBd3Hp/PRGGmdwnfkV2ThMyYldP1wRpm/id99spTQ==} engines: {node: ^18.18.0 || >=20.0.0} + '@typescript-eslint/types@8.3.0': + resolution: {integrity: sha512-y6sSEeK+facMaAyixM36dQ5NVXTnKWunfD1Ft4xraYqxP0lC0POJmIaL/mw72CUMqjY9qfyVfXafMeaUj0noWw==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + '@typescript-eslint/typescript-estree@7.18.0': resolution: {integrity: sha512-aP1v/BSPnnyhMHts8cf1qQ6Q1IFwwRvAQGRvBFkWlo3/lH29OXA3Pts+c10nxRxIBrDnoMqzhgdwVe5f2D6OzA==} engines: {node: ^18.18.0 || >=20.0.0} @@ -1204,76 +1225,95 @@ packages: typescript: optional: true + '@typescript-eslint/typescript-estree@8.3.0': + resolution: {integrity: sha512-Mq7FTHl0R36EmWlCJWojIC1qn/ZWo2YiWYc1XVtasJ7FIgjo0MVv9rZWXEE7IK2CGrtwe1dVOxWwqXUdNgfRCA==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + peerDependencies: + typescript: '*' + peerDependenciesMeta: + typescript: + optional: true + '@typescript-eslint/utils@7.18.0': resolution: {integrity: sha512-kK0/rNa2j74XuHVcoCZxdFBMF+aq/vH83CXAOHieC+2Gis4mF8jJXT5eAfyD3K0sAxtPuwxaIOIOvhwzVDt/kw==} engines: {node: ^18.18.0 || >=20.0.0} peerDependencies: eslint: ^8.56.0 + '@typescript-eslint/utils@8.3.0': + resolution: {integrity: sha512-F77WwqxIi/qGkIGOGXNBLV7nykwfjLsdauRB/DOFPdv6LTF3BHHkBpq81/b5iMPSF055oO2BiivDJV4ChvNtXA==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + peerDependencies: + eslint: ^8.57.0 || ^9.0.0 + '@typescript-eslint/visitor-keys@7.18.0': resolution: {integrity: sha512-cDF0/Gf81QpY3xYyJKDV14Zwdmid5+uuENhjH2EqFaF0ni+yAyq/LzMaIJdhNJXZI7uLzwIlA+V7oWoyn6Curg==} engines: {node: ^18.18.0 || >=20.0.0} - '@unocss/config@0.61.9': - resolution: {integrity: sha512-ATvZEFMQiW3/oUaaplVMBYuagEELtnLbHSYH4pUGbJ5MALAfV98mZRyk4FkKkYoMYqWLGdCylzpgMPFDOuFQlQ==} + '@typescript-eslint/visitor-keys@8.3.0': + resolution: {integrity: sha512-RmZwrTbQ9QveF15m/Cl28n0LXD6ea2CjkhH5rQ55ewz3H24w+AMCJHPVYaZ8/0HoG8Z3cLLFFycRXxeO2tz9FA==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + + '@unocss/config@0.62.2': + resolution: {integrity: sha512-TgWhO0hkTADnuSgcUZvFP3i4AVpaiMvr41hhQqCPQTaiLMRrroXFnqL33cpkEbHLIfbTh74pXrDxnzMLaEKVdQ==} engines: {node: '>=14'} - '@unocss/core@0.61.9': - resolution: {integrity: sha512-2W1YZQIWXcueGdbXU/ZCqn/8yQhWk8e8kAHFkVlbc9rictkd2UmPB9nIZ8Ii1tMwt6F0TT6vfHbLJEGCV08o2g==} + '@unocss/core@0.62.2': + resolution: {integrity: sha512-86jEFUJ/PSwdb1qqiEi0lWlewfKLQwiH+JAfnh8c2hLjOPVmCkb0nnsYSMh8drmtN5kpk6E06mN0IrKMO7OnvQ==} - '@unocss/eslint-config@0.61.9': - resolution: {integrity: sha512-TYjrfSLkRZSRBBcdKWKuZafB9XuFHqI/P/AVI5Vwqvbdq3uc/eQpRXgnYoX1jM0ds1jzOigWRWiYkJx7KhxSnw==} + '@unocss/eslint-config@0.62.2': + resolution: {integrity: sha512-/xh/kNoQ3RW0TTruCt0reesIzoBSsFgrDTJCcD1+iHgFqq7xsYK8sF6oeWRDUC/f+LoyUQiLtXAoTu2IRWrJzQ==} engines: {node: '>=14'} - '@unocss/eslint-plugin@0.61.9': - resolution: {integrity: sha512-jgOym3WyWXAWyjkrtIZurkl87XuWAwhN8mul8V4mokpFMB5y6VMlatCYql/dD0tIyZuFJujxfWvUkizqyE84aQ==} + '@unocss/eslint-plugin@0.62.2': + resolution: {integrity: sha512-y1E3jhRfORBHvhA0/dYK/tVBT5/YtJDrV3Y3ytJ5r8HdPqhDYucKV4Ihk2vDthIxzLlxzzwn2YZeSZEdbt0/IQ==} engines: {node: '>=14'} - '@unocss/extractor-arbitrary-variants@0.61.9': - resolution: {integrity: sha512-ii42/hKbhgeBBOy86729t6/HeGmxUcHM8FprPeb/v/DfYsCkjDvMYVynX3FN/K5pR2WV+HHp6TQS7GbTmRIN0g==} + '@unocss/extractor-arbitrary-variants@0.62.2': + resolution: {integrity: sha512-k0+QifbKe3Wp6dznQIhn1bQ/shR8yMk1ypfWQFOAr0ylXXlKMXFxfpRyxH3awbTDRBpi/SxIIaBTAzflGxBSgg==} - '@unocss/inspector@0.61.9': - resolution: {integrity: sha512-kUcQ/h8/yAfkqL2eCGVFyB0IGSPdR0dx2HH4V+mdSMfd8yKFR/BQys3mBvqZwSZu5a0+iisFHHq9wr+/I5DtHQ==} + '@unocss/inspector@0.62.2': + resolution: {integrity: sha512-P2J8xx4MeB8VHCwjick+PzMyLPKvUNZBuUxuFVhh3xpMsbGlvSIKMH4PRCriwWih+7wqHlrI+fv1gAjoiGHe3Q==} - '@unocss/preset-icons@0.61.9': - resolution: {integrity: sha512-5XZO511ksu3EVwpV2nIZKa5NzyJAb+JARKaUpQIXssHUVdRKk5nJYr1XtrpBDLgB6VEf/1skViLEa1bpOUI5Wg==} + '@unocss/preset-icons@0.62.2': + resolution: {integrity: sha512-cj5fhhgyMK2Wio2nsR4hJuorRtqrgeX8sApffCRxpdKb/rg0De7IzXlTRQvAivFingRLXxwMKcpR4hgw/kw/pA==} - '@unocss/preset-mini@0.61.9': - resolution: {integrity: sha512-qhagWfdM7ytRWf4wFfrAcdeCUCVD9wDVrM+9evAmuOnMXWEiVZCjfwhjjFu+8lM7g+38n+gi7VcrNuTiZ8fHBA==} + '@unocss/preset-mini@0.62.2': + resolution: {integrity: sha512-NeyYGwGCmMbjzMMhQGzn4qk74LYIsLM4zpQru2Krt1snw1DgVpp3iV8hCWIH4y0Y+ud+K5SUFMAvIe18vq2OQw==} - '@unocss/preset-uno@0.61.9': - resolution: {integrity: sha512-N4R/BCMphrHvAMZ+qgR/FPoh724uXDuZ/1DEGuirUQJMg7makqrI6czL+P99q1bP8nWzxWEXiRXnKKLiyD9pJw==} + '@unocss/preset-uno@0.62.2': + resolution: {integrity: sha512-oMwSP3haSiyiSqI0KqrYkda8mnkWu9lJDdm4bZ5iO6v/rDxmcydBr7MEl8iEy9EdOy1lv3xsyzwMrRer392JEw==} - '@unocss/preset-wind@0.61.9': - resolution: {integrity: sha512-AzbjJrNL9Rb2BzTiREyssd8v7KFVVLERQ/PNILGzo6yYelYMl4AhKXZ3jgxWEsIABArVa3UkGBigG4h/L+2JHA==} + '@unocss/preset-wind@0.62.2': + resolution: {integrity: sha512-1pohITLsjhUfEA774Ftz2EAaolbUmhM8yircxTaQEty9qYF1dEcLM2Fm6Y0+ZNhPOcKCAOYZkExuu6JEjbEACg==} - '@unocss/rule-utils@0.61.9': - resolution: {integrity: sha512-54Hw0nF+3ga70ETo3kes4He62wdsB4dHMgEiD/DEmJzyVY3ZuG/sIVAgkxjMQDo5w4SSYU/Ys1QaY+IQmeJHFQ==} + '@unocss/rule-utils@0.62.2': + resolution: {integrity: sha512-0za00pkDHsGZhiXBiZfOuUyT+GjCInPxMXj+QsybRU4UrjJS+d3gAteC34BqNFfDAoKQb9G5q9etXztcNHXQbg==} engines: {node: '>=14'} - '@unocss/scope@0.61.9': - resolution: {integrity: sha512-a9/vdg7YTFZEnJSaJBh/GqkLokYh3ZjEd3gHUxl/TZDSkGOz3WnkR2h+lgaLZm9MJ7RlSvJxYP8ySezH7jU1Pw==} + '@unocss/scope@0.62.2': + resolution: {integrity: sha512-AEQ1CV8s8NAkBJPO1NCSjADoNyCOYiqkW1DXMvB9mA6lTff5SgmFqIiNmBtMsnBs7/dO0iOSMEDIpdgtDg/KhA==} - '@unocss/transformer-directives@0.61.9': - resolution: {integrity: sha512-e4uIbHYdAYJSVpvxOv6kAsyI18X3gHkBsmBYWcUlPLVv+8tYo4eZtc0rn6ZvpiLzkFywG9e9cmpqVQwOR6pBVg==} + '@unocss/transformer-directives@0.62.2': + resolution: {integrity: sha512-5ZGTmsXkAkFd7pHjHkGy6LGgxhh6bPbZ3jLltf98OhgBZH558y9iui6LKq3n2LpUsSZox6ey3yh1AibvakQeeg==} - '@unocss/transformer-variant-group@0.61.9': - resolution: {integrity: sha512-iewADYlY0LoeCb80E/4feHVSCKHl+QzGH4xUvW0zU85evMqNOa0/t0dCIoEG22wr/9piyEsg6OdHprZ2QliYqg==} + '@unocss/transformer-variant-group@0.62.2': + resolution: {integrity: sha512-WknoFYRAik2NJfo0AHoId912jzzZaOV9bKgoSh7Lpx7dMxgngfU027Gx7Wnd8mR+TSqQzsfYaXdPa+PqyTv6Xg==} - '@unocss/vite@0.61.9': - resolution: {integrity: sha512-hP/sL9rq1DvVCbSSx05m+bwYqen1nHm9tW6elKFkfV7X5jBUywu24WRq551NZI33KmgHA525ApX++DSWye+0uw==} + '@unocss/vite@0.62.2': + resolution: {integrity: sha512-ES39SL7+0UDTM5IvIiDVodH4duUIzGXug/bhuDHHhhtUBoengH+Oe59jURzRChDj4Pf3cyqMtTwo5amoz3lV2Q==} peerDependencies: vite: ^2.9.0 || ^3.0.0-0 || ^4.0.0 || ^5.0.0-0 - '@vitejs/plugin-vue-jsx@4.0.0': - resolution: {integrity: sha512-A+6wL2AdQhDsLsDnY+2v4rRDI1HLJGIMc97a8FURO9tqKsH5QvjWrzsa5DH3NlZsM742W2wODl2fF+bfcTWtXw==} + '@vitejs/plugin-vue-jsx@4.0.1': + resolution: {integrity: sha512-7mg9HFGnFHMEwCdB6AY83cVK4A6sCqnrjFYF4WIlebYAQVVJ/sC/CiTruVdrRlhrFoeZ8rlMxY9wYpPTIRhhAg==} engines: {node: ^18.0.0 || >=20.0.0} peerDependencies: vite: ^5.0.0 vue: ^3.0.0 - '@vitejs/plugin-vue@5.1.1': - resolution: {integrity: sha512-sDckXxlHpMsjRQbAH9WanangrfrblsOd3pNifePs+FOHjJg1jfWq5L/P0PsBRndEt3nmdUnmvieP8ULDeX5AvA==} + '@vitejs/plugin-vue@5.1.2': + resolution: {integrity: sha512-nY9IwH12qeiJqumTCLJLE7IiNx7HZ39cbHaysEUd+Myvbz9KAqd2yq+U01Kab1R/H1BmiyM2ShTYlNH32Fzo3A==} engines: {node: ^18.0.0 || >=20.0.0} peerDependencies: vite: ^5.0.0 @@ -1307,31 +1347,43 @@ packages: '@vue/compiler-core@3.4.35': resolution: {integrity: sha512-gKp0zGoLnMYtw4uS/SJRRO7rsVggLjvot3mcctlMXunYNsX+aRJDqqw/lV5/gHK91nvaAAlWFgdVl020AW1Prg==} + '@vue/compiler-core@3.4.38': + resolution: {integrity: sha512-8IQOTCWnLFqfHzOGm9+P8OPSEDukgg3Huc92qSG49if/xI2SAwLHQO2qaPQbjCWPBcQoO1WYfXfTACUrWV3c5A==} + '@vue/compiler-dom@3.4.35': resolution: {integrity: sha512-pWIZRL76/oE/VMhdv/ovZfmuooEni6JPG1BFe7oLk5DZRo/ImydXijoZl/4kh2406boRQ7lxTYzbZEEXEhj9NQ==} + '@vue/compiler-dom@3.4.38': + resolution: {integrity: sha512-Osc/c7ABsHXTsETLgykcOwIxFktHfGSUDkb05V61rocEfsFDcjDLH/IHJSNJP+/Sv9KeN2Lx1V6McZzlSb9EhQ==} + '@vue/compiler-sfc@3.4.35': resolution: {integrity: sha512-xacnRS/h/FCsjsMfxBkzjoNxyxEyKyZfBch/P4vkLRvYJwe5ChXmZZrj8Dsed/752H2Q3JE8kYu9Uyha9J6PgA==} + '@vue/compiler-sfc@3.4.38': + resolution: {integrity: sha512-s5QfZ+9PzPh3T5H4hsQDJtI8x7zdJaew/dCGgqZ2630XdzaZ3AD8xGZfBqpT8oaD/p2eedd+pL8tD5vvt5ZYJQ==} + '@vue/compiler-ssr@3.4.35': resolution: {integrity: sha512-7iynB+0KB1AAJKk/biENTV5cRGHRdbdaD7Mx3nWcm1W8bVD6QmnH3B4AHhQQ1qZHhqFwzEzMwiytXm3PX1e60A==} + '@vue/compiler-ssr@3.4.38': + resolution: {integrity: sha512-YXznKFQ8dxYpAz9zLuVvfcXhc31FSPFDcqr0kyujbOwNhlmaNvL2QfIy+RZeJgSn5Fk54CWoEUeW+NVBAogGaw==} + '@vue/compiler-vue2@2.7.16': resolution: {integrity: sha512-qYC3Psj9S/mfu9uVi5WvNZIzq+xnXMhOwbTFKKDD7b1lhpnn71jXSFdTQ+WsIEk0ONCd7VV2IMm7ONl6tbQ86A==} '@vue/devtools-api@6.6.3': resolution: {integrity: sha512-0MiMsFma/HqA6g3KLKn+AGpL1kgKhFWszC9U29NfpWK5LE7bjeXxySWJrOJ77hBz+TBrBQ7o4QJqbPbqbs8rJw==} - '@vue/devtools-core@7.3.7': - resolution: {integrity: sha512-IapWbHUqvO6n+p5JFTCE5JyNjpsZ5IS1GYIRX0P7/SqYPgFCOdH0dG+u8PbBHYdnp+VPxHLO+GGZ/WBZFCZnsA==} + '@vue/devtools-core@7.3.9': + resolution: {integrity: sha512-B5zAl9ulNjI6nknSnGNRzmP/ldR9ADUwwT8HkI8Hejo1W00uK9ABUahbfrXzME296rBfmwhQuCFwJ6t9KFdbXQ==} peerDependencies: vue: ^3.0.0 - '@vue/devtools-kit@7.3.7': - resolution: {integrity: sha512-ktHhhjI4CoUrwdSUF5b/MFfjrtAtK8r4vhOkFyRN5Yp9kdXTwsRBYcwarHuP+wFPKf4/KM7DVBj2ELO8SBwdsw==} + '@vue/devtools-kit@7.3.9': + resolution: {integrity: sha512-Gr17nA+DaQzqyhNx1DUJr1CJRzTRfbIuuC80ZgU8MD/qNO302tv9la+ROi+Uaw+ULVwU9T71GnwLy4n8m9Lspg==} - '@vue/devtools-shared@7.3.7': - resolution: {integrity: sha512-M9EU1/bWi5GNS/+IZrAhwGOVZmUTN4MH22Hvh35nUZZg9AZP2R2OhfCb+MG4EtAsrUEYlu3R43/SIj3G7EZYtQ==} + '@vue/devtools-shared@7.3.9': + resolution: {integrity: sha512-CdfMRZKXyI8vw+hqOcQIiLihB6Hbbi7WNZGp7LsuH1Qe4aYAFmTaKjSciRZ301oTnwmU/knC/s5OGuV6UNiNoA==} '@vue/language-core@2.0.29': resolution: {integrity: sha512-o2qz9JPjhdoVj8D2+9bDXbaI4q2uZTHQA/dbyZT4Bj1FR9viZxDJnLcKVHfxdn6wsOzRgpqIzJEEmSSvgMvDTQ==} @@ -1341,31 +1393,34 @@ packages: typescript: optional: true - '@vue/reactivity@3.4.35': - resolution: {integrity: sha512-Ggtz7ZZHakriKioveJtPlStYardwQH6VCs9V13/4qjHSQb/teE30LVJNrbBVs4+aoYGtTQKJbTe4CWGxVZrvEw==} + '@vue/reactivity@3.4.38': + resolution: {integrity: sha512-4vl4wMMVniLsSYYeldAKzbk72+D3hUnkw9z8lDeJacTxAkXeDAP1uE9xr2+aKIN0ipOL8EG2GPouVTH6yF7Gnw==} - '@vue/runtime-core@3.4.35': - resolution: {integrity: sha512-D+BAjFoWwT5wtITpSxwqfWZiBClhBbR+bm0VQlWYFOadUUXFo+5wbe9ErXhLvwguPiLZdEF13QAWi2vP3ZD5tA==} + '@vue/runtime-core@3.4.38': + resolution: {integrity: sha512-21z3wA99EABtuf+O3IhdxP0iHgkBs1vuoCAsCKLVJPEjpVqvblwBnTj42vzHRlWDCyxu9ptDm7sI2ZMcWrQqlA==} - '@vue/runtime-dom@3.4.35': - resolution: {integrity: sha512-yGOlbos+MVhlS5NWBF2HDNgblG8e2MY3+GigHEyR/dREAluvI5tuUUgie3/9XeqhPE4LF0i2wjlduh5thnfOqw==} + '@vue/runtime-dom@3.4.38': + resolution: {integrity: sha512-afZzmUreU7vKwKsV17H1NDThEEmdYI+GCAK/KY1U957Ig2NATPVjCROv61R19fjZNzMmiU03n79OMnXyJVN0UA==} - '@vue/server-renderer@3.4.35': - resolution: {integrity: sha512-iZ0e/u9mRE4T8tNhlo0tbA+gzVkgv8r5BX6s1kRbOZqfpq14qoIvCZ5gIgraOmYkMYrSEZgkkojFPr+Nyq/Mnw==} + '@vue/server-renderer@3.4.38': + resolution: {integrity: sha512-NggOTr82FbPEkkUvBm4fTGcwUY8UuTsnWC/L2YZBmvaQ4C4Jl/Ao4HHTB+l7WnFCt5M/dN3l0XLuyjzswGYVCA==} peerDependencies: - vue: 3.4.35 + vue: 3.4.38 '@vue/shared@3.4.35': resolution: {integrity: sha512-hvuhBYYDe+b1G8KHxsQ0diDqDMA8D9laxWZhNAjE83VZb5UDaXl9Xnz7cGdDSyiHM90qqI/CyGMcpBpiDy6VVQ==} - '@vueuse/core@10.11.0': - resolution: {integrity: sha512-x3sD4Mkm7PJ+pcq3HX8PLPBadXCAlSDR/waK87dz0gQE+qJnaaFhc/dZVfJz+IUYzTMVGum2QlR7ImiJQN4s6g==} + '@vue/shared@3.4.38': + resolution: {integrity: sha512-q0xCiLkuWWQLzVrecPb0RMsNWyxICOjPrcrwxTUEHb1fsnvni4dcuyG7RT/Ie7VPTvnjzIaWzRMUBsrqNj/hhw==} - '@vueuse/metadata@10.11.0': - resolution: {integrity: sha512-kQX7l6l8dVWNqlqyN3ePW3KmjCQO3ZMgXuBMddIu83CmucrsBfXlH+JoviYyRBws/yLTQO8g3Pbw+bdIoVm4oQ==} + '@vueuse/core@11.0.1': + resolution: {integrity: sha512-YTrekI18WwEyP3h168Fir94G/HNC27wvXJI21Alm0sPOwvhihfkrvHIe+5PNJq+MpgWdRcsjvE/38JaoKrgZhQ==} - '@vueuse/shared@10.11.0': - resolution: {integrity: sha512-fyNoIXEq3PfX1L3NkNhtVQUSRtqYwJtJg+Bp9rIzculIZWHTkKSysujrOk2J+NrRulLTQH9+3gGSfYLWSEWU1A==} + '@vueuse/metadata@11.0.1': + resolution: {integrity: sha512-dTFvuHFAjLYOiSd+t9Sk7xUiuL6jbfay/eX+g+jaipXXlwKur2VCqBCZX+jfu+2vROUGcUsdn3fJR9KkpadIOg==} + + '@vueuse/shared@11.0.1': + resolution: {integrity: sha512-eAPf5CQB3HR0S76HqrhjBqFYstZfiHWZq8xF9EQmobGBkrhPfErJEhr8aMNQMqd6MkENIx2pblIEfJGlHpClug==} acorn-jsx@5.3.2: resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==} @@ -1474,13 +1529,13 @@ packages: resolution: {integrity: sha512-wvUjBtSGN7+7SjNpq/9M2Tg350UZD3q62IFZLbRAR1bSMlCo1ZaeW+BJ+D090e4hIIZLBcTDWe4Mh4jvUDajzQ==} engines: {node: '>= 0.4'} - axios-retry@4.4.2: - resolution: {integrity: sha512-2fjo9uDNBQjX8+GMEGOFG5TrLMZ3QijjeRYcgBI2MhrsabnvcIAfLxxIhG7+CCD68vPEQY3IM2llV70ZsrqPvA==} + axios-retry@4.5.0: + resolution: {integrity: sha512-aR99oXhpEDGo0UuAlYcn2iGRds30k366Zfa05XWScR9QaQD4JYiP3/1Qt1u7YlefUOK+cn0CcwoL1oefavQUlQ==} peerDependencies: axios: 0.x || 1.x - axios@1.7.2: - resolution: {integrity: sha512-2A8QhOMrbomlDuiLeK9XibIBzuHeRcqqNOHp0Cyp5EoJ1IFDh+XZH3A6BkXtv0K4gFGCI0Y4BM7B1wOEi0Rmgw==} + axios@1.7.4: + resolution: {integrity: sha512-DukmaFRnY6AzAALSH4J2M3k6PkaC+MfaAGdEERRWcC9q3/TWQwLpHR8ZRLKTdQ3aBDL64EdluRDjJqKw+BPZEw==} balanced-match@1.0.2: resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==} @@ -1531,8 +1586,8 @@ packages: resolution: {integrity: sha512-zhaCDicdLuWN5UbN5IMnFqNMhNfo919sH85y2/ea+5Yg9TsTkeZxpL+JLbp6cgYFS4sRLp3YV4S6yDuqVWHYOw==} engines: {node: '>=6'} - bumpp@9.4.1: - resolution: {integrity: sha512-kzhp/LpNX0HkUpEyLd7sU2LTN/mbAVgcxJ1Zi2cAJTE/tul6rypSKGpH8UywDpzKWItL8LVdKsIFnwmylw0+7g==} + bumpp@9.5.1: + resolution: {integrity: sha512-crWpuPh5/SO84HTsIIQbwFpjwg8Zadm3udyj2YfnSSijCvjxwdtmXy2vQh6GLMWJ5LgKwmmMIn85qJ4AIHKlhg==} engines: {node: '>=10'} hasBin: true @@ -2105,10 +2160,15 @@ packages: resolution: {integrity: sha512-OtIRv/2GyiF6o/d8K7MYKKbXrOUBIK6SfkIRM4Z0dY3w+LiQ0vy3F57m0Z71bjbyeiWFiHJ8brqnmE6H6/jEuw==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} - eslint@9.8.0: - resolution: {integrity: sha512-K8qnZ/QJzT2dLKdZJVX6W4XOwBzutMYmt0lqUS+JdXgd+HTYFlonFgkJ8s44d/zMPPCnOOk0kMWCApCPhiOy9A==} + eslint@9.9.0: + resolution: {integrity: sha512-JfiKJrbx0506OEerjK2Y1QlldtBxkAlLxT5OEcRF8uaQ86noDe2k31Vw9rnSWv+MXZHj7OOUV/dA0AhdLFcyvA==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} hasBin: true + peerDependencies: + jiti: '*' + peerDependenciesMeta: + jiti: + optional: true espree@10.1.0: resolution: {integrity: sha512-M1M6CpiE6ffoigIOWYO9UDP8TMUw9kqb21tf+08IgDYjCsOvCuDt4jQcZmoYxx+w7zlKw9/N0KXfto+I8/FrXA==} @@ -2164,8 +2224,8 @@ packages: resolution: {integrity: sha512-lSgHc4Elo2m6bUDhc3Hl/VxvUDJdQWI40RZ4KMY9bKRc+hgMOT7II/JjbNDhI8VnMtrCb7U/fhpJIkLORZozWw==} engines: {node: '>=18'} - execa@9.3.0: - resolution: {integrity: sha512-l6JFbqnHEadBoVAVpN5dl2yCyfX28WoBAGaoQcNmLLSedOxTxcn2Qa83s8I/PA5i56vWru2OHOtrwF7Om2vqlg==} + execa@9.3.1: + resolution: {integrity: sha512-gdhefCCNy/8tpH/2+ajP9IQc14vXchNdd0weyzSJEFURhRMGncQ+zKFxwjAufIewPEJm9BPOaJnvg2UtlH2gPQ==} engines: {node: ^18.19.0 || >=20.5.0} expand-brackets@2.1.4: @@ -2203,6 +2263,14 @@ packages: fastq@1.17.1: resolution: {integrity: sha512-sRVD3lWVIXWg6By68ZN7vho9a1pQcN/WBFaAAsDDFzlJjvoGx0P8z7V1t72grFJfJhu3YPZBuu25f7Kaw2jN1w==} + fdir@6.3.0: + resolution: {integrity: sha512-QOnuT+BOtivR77wYvCWHfGt9s4Pz1VIMbD463vegT5MLqNXy8rYFT/lPVEqf/bhYeT6qmqrNHhsX+rWwe3rOCQ==} + peerDependencies: + picomatch: ^3 || ^4 + peerDependenciesMeta: + picomatch: + optional: true + figures@6.1.0: resolution: {integrity: sha512-d+l3qxjSesT4V7v2fh+QnmFnUWv9lSpjarhShNTgBOfA0ttejbQUAlHLitbjkoRiDulW0OPoQPYIGhIC8ohejg==} engines: {node: '>=18'} @@ -2480,6 +2548,10 @@ packages: resolution: {integrity: sha512-74kytxOUSvNbjrT9KisAbaTZ/eJwD/LrbM/kh5j0IhPuJzwuA19dWvniFGwBzN9rVjg+O/e+F310PjObDXS+9Q==} engines: {node: '>=18.18.0'} + human-signals@8.0.0: + resolution: {integrity: sha512-/1/GPCpDUCCYwlERiYjxoczfP0zfvZMU/OWgQPMya9AbAE24vseigFdhAMObpc8Q4lc/kjutPfUddDYyAmejnA==} + engines: {node: '>=18.18.0'} + icss-replace-symbols@1.1.0: resolution: {integrity: sha512-chIaY3Vh2mh2Q3RGXttaDIzeiPvaVXJ+C4DAh/w3c37SKZ/U6PGMmuicR2EQQp9bKG8zLMCl7I+PtIoOOPp8Gg==} @@ -2788,6 +2860,9 @@ packages: engines: {node: '>=6'} hasBin: true + jsonc-parser@3.3.1: + resolution: {integrity: sha512-HUgH65KyejrUFPvHFPbqOY0rsFip3Bo5wb4ngvdi1EpCYWUQDC5V+Y7mZws+DLkr4M//zQJoanu1SP+87Dv1oQ==} + jsonfile@6.1.0: resolution: {integrity: sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==} @@ -2835,8 +2910,8 @@ packages: lines-and-columns@1.2.4: resolution: {integrity: sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==} - lint-staged@15.2.7: - resolution: {integrity: sha512-+FdVbbCZ+yoh7E/RosSdqKJyUM2OEjTciH0TFNkawKgvFp1zbGlEC39RADg+xKBG1R4mhoH2j85myBQZ5wR+lw==} + lint-staged@15.2.9: + resolution: {integrity: sha512-BZAt8Lk3sEnxw7tfxM7jeZlPRuT4M68O0/CwZhhaw6eeWu0Lz5eERE3m386InivXB64fp/mDID452h48tvKlRQ==} engines: {node: '>=18.12.0'} hasBin: true @@ -3127,8 +3202,8 @@ packages: resolution: {integrity: sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==} engines: {node: '>=0.10.0'} - npm-check-updates@17.0.0: - resolution: {integrity: sha512-rXJTiUYBa+GzlvPgemFlwlTdsqS2C16trlW58d9it8u3Hnp0M+Fzmd3NsYBFCjlRlgMZwzuCIBKd9bvIz6yx0Q==} + npm-check-updates@17.0.6: + resolution: {integrity: sha512-KCiaJH1cfnh/RyzKiDNjNfXgcKFyQs550Uf1OF/Yzb8xO56w+RLpP/OKRUx23/GyP/mLYwEpOO65qjmVdh6j0A==} engines: {node: ^18.18.0 || >=20.0.0, npm: '>=8.12.1'} hasBin: true @@ -3228,6 +3303,9 @@ packages: package-json-from-dist@1.0.0: resolution: {integrity: sha512-dATvCeZN/8wQsGywez1mzHtTlP22H8OEfPrVMLNr4/eGa+ijtLn/6M5f0dY8UKNrC2O9UCU6SSoG3qRKnt7STw==} + package-manager-detector@0.2.0: + resolution: {integrity: sha512-E385OSk9qDcXhcM9LNSe4sdhx8a9mAPrZ4sMLW+tmxl5ZuGtPUcdFu+MPP2jbgiWAZ6Pfe5soGFMd+0Db5Vrog==} + parent-module@1.0.1: resolution: {integrity: sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==} engines: {node: '>=6'} @@ -3294,13 +3372,17 @@ packages: resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==} engines: {node: '>=8.6'} + picomatch@4.0.2: + resolution: {integrity: sha512-M7BAV6Rlcy5u+m6oPhAPFgJTzAioX/6B0DxyvDlo9l8+T3nLKbrczg2WLUyzd45L8RqfUMyGPzekbMvX2Ldkwg==} + engines: {node: '>=12'} + pidtree@0.6.0: resolution: {integrity: sha512-eG2dWTVw5bzqGRztnHExczNxt5VGsE6OwTeCG3fdUf9KBsZzO3R5OIIIzWR+iZA0NtZ+RDVdaoE2dK1cn6jH4g==} engines: {node: '>=0.10'} hasBin: true - pinia@2.2.0: - resolution: {integrity: sha512-iPrIh26GMqfpUlMOGyxuDowGmYousTecbTHFwT0xZ1zJvh23oQ+Cj99ZoPQA1TnUPhU6AuRPv6/drkTCJ0VHQA==} + pinia@2.2.2: + resolution: {integrity: sha512-ja2XqFWZC36mupU4z1ZzxeTApV7DOw44cV4dhQ9sGwun+N89v/XP7+j7q6TanS1u1tdbK4r+1BUx7heMaIdagA==} peerDependencies: '@vue/composition-api': ^1.4.0 typescript: '>=4.4.4' @@ -3370,6 +3452,10 @@ packages: resolution: {integrity: sha512-YF2kKIUzAofPMpfH6hOi2cGnv/HrUlfucspc7pDyvv7kGdqXrfj8SCl/t8owkEgKEuu8ZcRjSOxFxVLqwChZ2Q==} engines: {node: ^10 || ^12 || >=14} + postcss@8.4.41: + resolution: {integrity: sha512-TesUflQ0WKZqAvg52PWL6kHgLKP6xB6heTOdoYM0Wt2UHyxNa4K25EZZMgKns3BH1RLVbZCREPpLY0rhnNoHVQ==} + engines: {node: ^10 || ^12 || >=14} + posthtml-parser@0.2.1: resolution: {integrity: sha512-nPC53YMqJnc/+1x4fRYFfm81KV2V+G9NZY+hTohpYg64Ay7NemWWcV4UWuy/SgMupqQ3kJ88M/iRfZmSnxT+pw==} @@ -3430,8 +3516,8 @@ packages: resolution: {integrity: sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==} engines: {node: '>=6'} - qs@6.12.3: - resolution: {integrity: sha512-AWJm14H1vVaO/iNZ4/hO+HyaTehuy9nRqVdkTqlJt0HWvBiBIEXFmb4C0DGeYo3Xes9rrEW+TxHsaigCbN5ICQ==} + qs@6.13.0: + resolution: {integrity: sha512-+38qI9SOr8tfZ4QmJNplMUxqjbe7LKvvZgWdExBOmd+egZTtjLB67Gu0HRX3u/XOq7UU2Nx6nsjvS16Z9uwfpg==} engines: {node: '>=0.6'} query-string@4.3.4: @@ -3821,8 +3907,8 @@ packages: resolution: {integrity: sha512-7gr8p9TQP6RAHusBOSLs46F4564ZrjV8xFmw5zCmgmhGUcw2hxsShhJ6CEiHQMgPDwAQ1fWHPM0ypc4RMAig4A==} engines: {node: ^14.18.0 || >=16.0.0} - tailwind-merge@2.4.0: - resolution: {integrity: sha512-49AwoOQNKdqKPd9CViyH5wJoSKsCDjUlzL8DxuGp3P1FsGY36NJDAa18jLZcaHAUUuTj+JB8IAo8zWgBNvBF7A==} + tailwind-merge@2.5.2: + resolution: {integrity: sha512-kjEBm+pvD+6eAwzJL2Bi+02/9LFLal1Gs61+QB7HvTfQQ0aXwC5LGT8PEt1gS0CWKktKe6ysPTAy3cBC5MeiIg==} tapable@2.2.1: resolution: {integrity: sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==} @@ -3841,6 +3927,13 @@ packages: tiny-invariant@1.3.3: resolution: {integrity: sha512-+FbBPE1o9QAYvviau/qC5SE3caw21q3xkvWKBtja5vgqOWIHHJ3ioaq1VPfn/Szqctz2bU/oYeKd9/z5BL+PVg==} + tinyexec@0.3.0: + resolution: {integrity: sha512-tVGE0mVJPGb0chKhqmsoosjsS+qUnJVGJpZgsHYQcGoPlG3B51R3PouqTgEGH2Dc9jjFyOqOpix6ZHNMXp1FZg==} + + tinyglobby@0.2.5: + resolution: {integrity: sha512-Dlqgt6h0QkoHttG53/WGADNh9QhcjCAIZMTERAVhdpmIBEejSuLI9ZmGKWzB7tweBjlk30+s/ofi4SLmBeTYhw==} + engines: {node: '>=12.0.0'} + to-fast-properties@2.0.0: resolution: {integrity: sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==} engines: {node: '>=4'} @@ -3888,8 +3981,8 @@ packages: tslib@2.6.3: resolution: {integrity: sha512-xNvxJEOUiWPGhUuUdQgAJPKOOJfGnIyKySOc09XkKsgdUV/3E2zvwZYdejjmRgPCgcym1juLH3226yA7sEFJKQ==} - tsx@4.16.3: - resolution: {integrity: sha512-MP8AEUxVnboD2rCC6kDLxnpDBNWN9k3BSVU/0/nNxgm70bPBnfn+yCKcnOsIVPQwdkbKYoFOlKjjWZWJ2XCXUg==} + tsx@4.17.0: + resolution: {integrity: sha512-eN4mnDA5UMKDt4YZixo9tBioibaMBpoxBkD+rIPAjVmYERSG0/dWEY1CEFuV89CgASlKL499q8AhmkMnnjtOJg==} engines: {node: '>=18.0.0'} hasBin: true @@ -3952,8 +4045,8 @@ packages: unconfig@0.5.5: resolution: {integrity: sha512-VQZ5PT9HDX+qag0XdgQi8tJepPhXiR/yVOkn707gJDKo31lGjRilPREiQJ9Z6zd/Ugpv6ZvO5VxVIcatldYcNQ==} - undici-types@6.11.1: - resolution: {integrity: sha512-mIDEX2ek50x0OlRgxryxsenE5XaQD4on5U2inY7RApK3SOJpofyw7uW2AyfMKkhAxXIceo2DeWGVGwyvng1GNQ==} + undici-types@6.19.8: + resolution: {integrity: sha512-ve2KP6f/JnbPBFyobGHuerC9g1FYGn/F8n1LWTwNxCEzd6IfqTwUQcNXgEtmmQ6DlRrC1hrSrBnCZPokRrDHjw==} union-value@1.0.1: resolution: {integrity: sha512-tJfXmxMeWYnczCVs7XAEvIV7ieppALdyepWMkHkwciRpZraG/xwT+s2JN8+pr1+8jCRf80FFzvr+MpQeeoF4Xg==} @@ -3966,8 +4059,8 @@ packages: resolution: {integrity: sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==} engines: {node: '>= 10.0.0'} - unplugin-icons@0.19.1: - resolution: {integrity: sha512-a5I+wSOO5lsgc4dB2nEFaSZ4eEgQvSSR8tSR2jT69nTKiVmcK+PPU633zn2FyRf9i6vLapUiQ28GQStfzGURdg==} + unplugin-icons@0.19.2: + resolution: {integrity: sha512-QkQJ/Iz3PFr/EoiOvFUQYvqbbJZ7Vs3hObKAFHh5eywTU1PQagSNeXKGRD+JpzXSTnUNLtG0u/xEA5Ec2OeANQ==} peerDependencies: '@svgr/core': '>=7.0.0' '@svgx/core': ^1.0.1 @@ -3986,8 +4079,8 @@ packages: vue-template-es2015-compiler: optional: true - unplugin-vue-components@0.27.3: - resolution: {integrity: sha512-5wg7lbdg5ZcrAQNzyYK+6gcg/DG8K6rO+f5YeuvqGHs/PhpapBvpA4O/0ex/pFthE5WgRk43iWuRZEMLVsdz4Q==} + unplugin-vue-components@0.27.4: + resolution: {integrity: sha512-1XVl5iXG7P1UrOMnaj2ogYa5YTq8aoh5jwDPQhemwO/OrXW+lPQKDXd1hMz15qxQPxgb/XXlbgo3HQ2rLEbmXQ==} engines: {node: '>=14'} peerDependencies: '@babel/parser': ^7.15.8 @@ -4003,6 +4096,10 @@ packages: resolution: {integrity: sha512-KeczzHl2sATPQUx1gzo+EnUkmN4VmGBYRRVOZSGvGITE9rGHRDGqft6ONceP3vgXcyJ2XjX5axG5jMWUwNCYLw==} engines: {node: '>=14.0.0'} + unplugin@1.12.2: + resolution: {integrity: sha512-bEqQxeC7rxtxPZ3M5V4Djcc4lQqKPgGe3mAWZvxcSmX5jhGxll19NliaRzQSQPrk4xJZSGniK3puLWpRuZN7VQ==} + engines: {node: '>=14.0.0'} + unset-value@1.0.0: resolution: {integrity: sha512-PcA2tsuGSF9cnySLHTLSh2qrQiJ70mn+r+Glzxv2TWZblxsxCC52BDlZoPCsz7STd9pN7EZetkWZBAvk4cgZdQ==} engines: {node: '>=0.10.0'} @@ -4065,8 +4162,8 @@ packages: peerDependencies: vite: '>=2.0.0' - vite-plugin-vue-devtools@7.3.7: - resolution: {integrity: sha512-pPv6YJYrCIlWP+wwRk9gzDp2rK5M5jQ5oz//Nci3C3FDvORL1btKQqGvgthx3hs6xbx5acToJtkMGgDnZg8smw==} + vite-plugin-vue-devtools@7.3.8: + resolution: {integrity: sha512-b5t4wxCb5g5cjh+odNpgnB7iX7gA6FJnKugFqX2/YZX9I4fvMjlj1bUnCKnvPlmwnFxClYgdmgZcCh2RyhZgvw==} engines: {node: '>=v14.21.3'} peerDependencies: vite: ^3.1.0 || ^4.0.0-0 || ^5.0.0-0 @@ -4076,8 +4173,8 @@ packages: peerDependencies: vite: ^3.0.0-0 || ^4.0.0-0 || ^5.0.0-0 - vite@5.3.5: - resolution: {integrity: sha512-MdjglKR6AQXQb9JGiS7Rc2wC6uMjcm7Go/NHNO63EwiJXfuk9PgqiP/n5IDJCziMkfw9n4Ubp7lttNwz+8ZVKA==} + vite@5.4.1: + resolution: {integrity: sha512-1oE6yuNXssjrZdblI9AfBbHCC41nnyoVoEZxQnID6yvQZAFBzxxkqoFLtHUMkYunL8hwOLEjgTuxpkRxvba3kA==} engines: {node: ^18.0.0 || >=20.0.0} hasBin: true peerDependencies: @@ -4085,6 +4182,7 @@ packages: less: '*' lightningcss: ^1.21.0 sass: '*' + sass-embedded: '*' stylus: '*' sugarss: '*' terser: ^5.4.0 @@ -4097,6 +4195,8 @@ packages: optional: true sass: optional: true + sass-embedded: + optional: true stylus: optional: true sugarss: @@ -4144,8 +4244,8 @@ packages: resolution: {integrity: sha512-SR3U7n6TAZEBgP7zw7bR9mjtAlYBjqIoaWTDPz5HXN/nYhOxKSA31aD7p71fmq1jtyt9reAnCx62valNL9ZAcg==} engines: {node: '>= 4.0.0', npm: '>= 3.0.0'} - vue-draggable-plus@0.5.2: - resolution: {integrity: sha512-+EWOYOtY6MVbhPpG+H4rjyuWAJiQU2VoLI/ehOCZkz62anrKrGHz5CBL2HDXi01hpNSP9BTDgkBcibhdO9/Jgg==} + vue-draggable-plus@0.5.3: + resolution: {integrity: sha512-dwKDzZ8io3y7k2iuIwVwiGrdiq5C0S7Et7nt5Gz5KjpBS9MtZGFP+L4FJPWGSLYleOT8HmVuCXTZYjGet7wC0g==} peerDependencies: '@types/sortablejs': ^1.15.0 '@vue/composition-api': '*' @@ -4159,14 +4259,14 @@ packages: peerDependencies: eslint: '>=6.0.0' - vue-i18n@9.13.1: - resolution: {integrity: sha512-mh0GIxx0wPtPlcB1q4k277y0iKgo25xmDPWioVVYanjPufDBpvu5ySTjP5wOrSvlYQ2m1xI+CFhGdauv/61uQg==} + vue-i18n@9.14.0: + resolution: {integrity: sha512-LxmpRuCt2rI8gqU+kxeflRZMQn4D5+4M3oP3PWZdowW/ePJraHqhF7p4CuaME52mUxdw3Mmy2yAUKgfZYgCRjA==} engines: {node: '>= 16'} peerDependencies: vue: ^3.0.0 - vue-router@4.4.1: - resolution: {integrity: sha512-njTLt/6gYGgIhv+U8nc5J6JpJpntFgy4fptRJ9Dp2qWQRo/PekB5DbKRYRPt0kM6feXysPKl7A5BjOmOJL5Ttw==} + vue-router@4.4.3: + resolution: {integrity: sha512-sv6wmNKx2j3aqJQDMxLFzs/u/mjA9Z5LCgy6BE0f7yFWMjrPLnS/sPNn8ARY/FXw6byV18EFutn5lTO6+UsV5A==} peerDependencies: vue: ^3.2.0 @@ -4179,8 +4279,8 @@ packages: vue3-puzzle-vcode@1.1.7: resolution: {integrity: sha512-mW780dz7HKjrElnE60CeYSeHGidKBKHoMjTDYfqF21330rTkFOsfDK1FQKZ22MktgMtTEoS/imfpEDlM1cxY/g==} - vue@3.4.35: - resolution: {integrity: sha512-+fl/GLmI4GPileHftVlCdB7fUL4aziPcqTudpTGXCT8s+iZWuOCeNEB5haX6Uz2IpRrbEXOgIFbe+XciCuGbNQ==} + vue@3.4.38: + resolution: {integrity: sha512-f0ZgN+mZ5KFgVv9wz0f4OgVKukoXtS3nwET4c2vLBGQR50aI8G0cqbFtLlX9Yiyg3LFGBitruPHt2PxwTduJEw==} peerDependencies: typescript: '*' peerDependenciesMeta: @@ -4244,8 +4344,8 @@ packages: yallist@4.0.0: resolution: {integrity: sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==} - yaml@2.4.5: - resolution: {integrity: sha512-aBx2bnqDzVOyNKfsysjA2ms5ZlnjSAW2eG3/L5G/CSujfjLJTJsEw1bGw8kCf04KodQWk1pxlGnZ56CRxiawmg==} + yaml@2.5.0: + resolution: {integrity: sha512-2wWLbGbYDiSqqIKoPjar3MPgB94ErzCtrNE1FdqGuaO0pi2JGjmE8aW8TDZwzU7vuxcGRdL/4gPQwQ7hD5AMSw==} engines: {node: '>= 14'} hasBin: true @@ -4286,6 +4386,11 @@ snapshots: dependencies: '@jsdevtools/ez-spawn': 3.0.4 + '@antfu/install-pkg@0.4.1': + dependencies: + package-manager-detector: 0.2.0 + tinyexec: 0.3.0 + '@antfu/utils@0.7.10': {} '@babel/code-frame@7.24.7': @@ -4574,9 +4679,9 @@ snapshots: dependencies: css-render: 0.15.14 - '@css-render/vue3-ssr@0.15.14(vue@3.4.35(typescript@5.5.4))': + '@css-render/vue3-ssr@0.15.14(vue@3.4.38(typescript@5.5.4))': dependencies: - vue: 3.4.35(typescript@5.5.4) + vue: 3.4.38(typescript@5.5.4) '@elegant-router/core@0.3.8': dependencies: @@ -4740,9 +4845,9 @@ snapshots: '@esbuild/win32-x64@0.23.0': optional: true - '@eslint-community/eslint-utils@4.4.0(eslint@9.8.0)': + '@eslint-community/eslint-utils@4.4.0(eslint@9.9.0(jiti@1.21.6))': dependencies: - eslint: 9.8.0 + eslint: 9.9.0(jiti@1.21.6) eslint-visitor-keys: 3.4.3 '@eslint-community/regexpp@4.11.0': {} @@ -4771,13 +4876,15 @@ snapshots: '@eslint/js@9.8.0': {} + '@eslint/js@9.9.0': {} + '@eslint/object-schema@2.1.4': {} '@humanwhocodes/module-importer@1.0.1': {} '@humanwhocodes/retry@0.3.0': {} - '@iconify/json@2.2.232': + '@iconify/json@2.2.238': dependencies: '@iconify/types': 2.0.0 pathe: 1.1.2 @@ -4796,22 +4903,34 @@ snapshots: transitivePeerDependencies: - supports-color - '@iconify/vue@4.1.2(vue@3.4.35(typescript@5.5.4))': + '@iconify/utils@2.1.32': + dependencies: + '@antfu/install-pkg': 0.4.1 + '@antfu/utils': 0.7.10 + '@iconify/types': 2.0.0 + debug: 4.3.6 + kolorist: 1.8.0 + local-pkg: 0.5.0 + mlly: 1.7.1 + transitivePeerDependencies: + - supports-color + + '@iconify/vue@4.1.2(vue@3.4.38(typescript@5.5.4))': dependencies: '@iconify/types': 2.0.0 - vue: 3.4.35(typescript@5.5.4) + vue: 3.4.38(typescript@5.5.4) - '@intlify/core-base@9.13.1': + '@intlify/core-base@9.14.0': dependencies: - '@intlify/message-compiler': 9.13.1 - '@intlify/shared': 9.13.1 + '@intlify/message-compiler': 9.14.0 + '@intlify/shared': 9.14.0 - '@intlify/message-compiler@9.13.1': + '@intlify/message-compiler@9.14.0': dependencies: - '@intlify/shared': 9.13.1 + '@intlify/shared': 9.14.0 source-map-js: 1.2.0 - '@intlify/shared@9.13.1': {} + '@intlify/shared@9.14.0': {} '@isaacs/cliui@8.0.2': dependencies: @@ -4949,9 +5068,9 @@ snapshots: '@sindresorhus/merge-streams@4.0.0': {} - '@soybeanjs/changelog@0.3.24(@unocss/eslint-config@0.61.9(eslint@9.8.0)(typescript@5.5.4))(eslint-plugin-vue@9.27.0(eslint@9.8.0))(eslint@9.8.0)(typescript@5.5.4)(vue-eslint-parser@9.4.3(eslint@9.8.0))': + '@soybeanjs/changelog@0.3.24(@unocss/eslint-config@0.62.2(eslint@9.9.0(jiti@1.21.6))(typescript@5.5.4))(eslint-plugin-vue@9.27.0(eslint@9.9.0(jiti@1.21.6)))(eslint@9.9.0(jiti@1.21.6))(typescript@5.5.4)(vue-eslint-parser@9.4.3(eslint@9.9.0(jiti@1.21.6)))': dependencies: - '@soybeanjs/eslint-config': 1.4.0(@unocss/eslint-config@0.61.9(eslint@9.8.0)(typescript@5.5.4))(eslint-plugin-vue@9.27.0(eslint@9.8.0))(eslint@9.8.0)(typescript@5.5.4)(vue-eslint-parser@9.4.3(eslint@9.8.0)) + '@soybeanjs/eslint-config': 1.4.0(@unocss/eslint-config@0.62.2(eslint@9.9.0(jiti@1.21.6))(typescript@5.5.4))(eslint-plugin-vue@9.27.0(eslint@9.9.0(jiti@1.21.6)))(eslint@9.9.0(jiti@1.21.6))(typescript@5.5.4)(vue-eslint-parser@9.4.3(eslint@9.9.0(jiti@1.21.6))) cli-progress: 3.12.0 convert-gitmoji: 0.1.5 dayjs: 1.11.11 @@ -4978,22 +5097,22 @@ snapshots: - typescript - vue-eslint-parser - '@soybeanjs/eslint-config@1.4.0(@unocss/eslint-config@0.61.9(eslint@9.8.0)(typescript@5.5.4))(eslint-plugin-vue@9.27.0(eslint@9.8.0))(eslint@9.8.0)(typescript@5.5.4)(vue-eslint-parser@9.4.3(eslint@9.8.0))': + '@soybeanjs/eslint-config@1.4.0(@unocss/eslint-config@0.62.2(eslint@9.9.0(jiti@1.21.6))(typescript@5.5.4))(eslint-plugin-vue@9.27.0(eslint@9.9.0(jiti@1.21.6)))(eslint@9.9.0(jiti@1.21.6))(typescript@5.5.4)(vue-eslint-parser@9.4.3(eslint@9.9.0(jiti@1.21.6)))': dependencies: '@antfu/eslint-define-config': 1.23.0-2 '@antfu/install-pkg': 0.3.3 '@eslint/eslintrc': 3.1.0 '@eslint/js': 9.8.0 - '@typescript-eslint/eslint-plugin': 7.18.0(@typescript-eslint/parser@7.18.0(eslint@9.8.0)(typescript@5.5.4))(eslint@9.8.0)(typescript@5.5.4) - '@typescript-eslint/parser': 7.18.0(eslint@9.8.0)(typescript@5.5.4) - eslint: 9.8.0 + '@typescript-eslint/eslint-plugin': 7.18.0(@typescript-eslint/parser@7.18.0(eslint@9.9.0(jiti@1.21.6))(typescript@5.5.4))(eslint@9.9.0(jiti@1.21.6))(typescript@5.5.4) + '@typescript-eslint/parser': 7.18.0(eslint@9.9.0(jiti@1.21.6))(typescript@5.5.4) + eslint: 9.9.0(jiti@1.21.6) eslint-config-flat-gitignore: 0.1.8 - eslint-config-prettier: 9.1.0(eslint@9.8.0) + eslint-config-prettier: 9.1.0(eslint@9.9.0(jiti@1.21.6)) eslint-parser-plain: 0.1.0 - eslint-plugin-import-x: 3.1.0(eslint@9.8.0)(typescript@5.5.4) - eslint-plugin-n: 17.10.1(eslint@9.8.0) - eslint-plugin-prettier: 5.2.1(eslint-config-prettier@9.1.0(eslint@9.8.0))(eslint@9.8.0)(prettier@3.3.3) - eslint-plugin-unicorn: 55.0.0(eslint@9.8.0) + eslint-plugin-import-x: 3.1.0(eslint@9.9.0(jiti@1.21.6))(typescript@5.5.4) + eslint-plugin-n: 17.10.1(eslint@9.9.0(jiti@1.21.6)) + eslint-plugin-prettier: 5.2.1(eslint-config-prettier@9.1.0(eslint@9.9.0(jiti@1.21.6)))(eslint@9.9.0(jiti@1.21.6))(prettier@3.3.3) + eslint-plugin-unicorn: 55.0.0(eslint@9.9.0(jiti@1.21.6)) globals: 15.8.0 local-pkg: 0.5.0 prettier: 3.3.3 @@ -5002,9 +5121,9 @@ snapshots: prompts: 2.4.2 typescript: 5.5.4 optionalDependencies: - '@unocss/eslint-config': 0.61.9(eslint@9.8.0)(typescript@5.5.4) - eslint-plugin-vue: 9.27.0(eslint@9.8.0) - vue-eslint-parser: 9.4.3(eslint@9.8.0) + '@unocss/eslint-config': 0.62.2(eslint@9.9.0(jiti@1.21.6))(typescript@5.5.4) + eslint-plugin-vue: 9.27.0(eslint@9.9.0(jiti@1.21.6)) + vue-eslint-parser: 9.4.3(eslint@9.9.0(jiti@1.21.6)) transitivePeerDependencies: - '@types/eslint' - supports-color @@ -5035,9 +5154,9 @@ snapshots: '@types/node@10.17.60': {} - '@types/node@22.0.1': + '@types/node@22.4.1': dependencies: - undici-types: 6.11.1 + undici-types: 6.19.8 '@types/normalize-package-data@2.4.4': {} @@ -5049,21 +5168,21 @@ snapshots: '@types/svgo@2.6.4': dependencies: - '@types/node': 22.0.1 + '@types/node': 22.4.1 '@types/unist@3.0.2': {} '@types/web-bluetooth@0.0.20': {} - '@typescript-eslint/eslint-plugin@7.18.0(@typescript-eslint/parser@7.18.0(eslint@9.8.0)(typescript@5.5.4))(eslint@9.8.0)(typescript@5.5.4)': + '@typescript-eslint/eslint-plugin@7.18.0(@typescript-eslint/parser@7.18.0(eslint@9.9.0(jiti@1.21.6))(typescript@5.5.4))(eslint@9.9.0(jiti@1.21.6))(typescript@5.5.4)': dependencies: '@eslint-community/regexpp': 4.11.0 - '@typescript-eslint/parser': 7.18.0(eslint@9.8.0)(typescript@5.5.4) + '@typescript-eslint/parser': 7.18.0(eslint@9.9.0(jiti@1.21.6))(typescript@5.5.4) '@typescript-eslint/scope-manager': 7.18.0 - '@typescript-eslint/type-utils': 7.18.0(eslint@9.8.0)(typescript@5.5.4) - '@typescript-eslint/utils': 7.18.0(eslint@9.8.0)(typescript@5.5.4) + '@typescript-eslint/type-utils': 7.18.0(eslint@9.9.0(jiti@1.21.6))(typescript@5.5.4) + '@typescript-eslint/utils': 7.18.0(eslint@9.9.0(jiti@1.21.6))(typescript@5.5.4) '@typescript-eslint/visitor-keys': 7.18.0 - eslint: 9.8.0 + eslint: 9.9.0(jiti@1.21.6) graphemer: 1.4.0 ignore: 5.3.1 natural-compare: 1.4.0 @@ -5073,14 +5192,14 @@ snapshots: transitivePeerDependencies: - supports-color - '@typescript-eslint/parser@7.18.0(eslint@9.8.0)(typescript@5.5.4)': + '@typescript-eslint/parser@7.18.0(eslint@9.9.0(jiti@1.21.6))(typescript@5.5.4)': dependencies: '@typescript-eslint/scope-manager': 7.18.0 '@typescript-eslint/types': 7.18.0 '@typescript-eslint/typescript-estree': 7.18.0(typescript@5.5.4) '@typescript-eslint/visitor-keys': 7.18.0 debug: 4.3.6 - eslint: 9.8.0 + eslint: 9.9.0(jiti@1.21.6) optionalDependencies: typescript: 5.5.4 transitivePeerDependencies: @@ -5091,12 +5210,17 @@ snapshots: '@typescript-eslint/types': 7.18.0 '@typescript-eslint/visitor-keys': 7.18.0 - '@typescript-eslint/type-utils@7.18.0(eslint@9.8.0)(typescript@5.5.4)': + '@typescript-eslint/scope-manager@8.3.0': + dependencies: + '@typescript-eslint/types': 8.3.0 + '@typescript-eslint/visitor-keys': 8.3.0 + + '@typescript-eslint/type-utils@7.18.0(eslint@9.9.0(jiti@1.21.6))(typescript@5.5.4)': dependencies: '@typescript-eslint/typescript-estree': 7.18.0(typescript@5.5.4) - '@typescript-eslint/utils': 7.18.0(eslint@9.8.0)(typescript@5.5.4) + '@typescript-eslint/utils': 7.18.0(eslint@9.9.0(jiti@1.21.6))(typescript@5.5.4) debug: 4.3.6 - eslint: 9.8.0 + eslint: 9.9.0(jiti@1.21.6) ts-api-utils: 1.3.0(typescript@5.5.4) optionalDependencies: typescript: 5.5.4 @@ -5105,6 +5229,8 @@ snapshots: '@typescript-eslint/types@7.18.0': {} + '@typescript-eslint/types@8.3.0': {} + '@typescript-eslint/typescript-estree@7.18.0(typescript@5.5.4)': dependencies: '@typescript-eslint/types': 7.18.0 @@ -5120,13 +5246,39 @@ snapshots: transitivePeerDependencies: - supports-color - '@typescript-eslint/utils@7.18.0(eslint@9.8.0)(typescript@5.5.4)': + '@typescript-eslint/typescript-estree@8.3.0(typescript@5.5.4)': dependencies: - '@eslint-community/eslint-utils': 4.4.0(eslint@9.8.0) + '@typescript-eslint/types': 8.3.0 + '@typescript-eslint/visitor-keys': 8.3.0 + debug: 4.3.6 + fast-glob: 3.3.2 + is-glob: 4.0.3 + minimatch: 9.0.5 + semver: 7.6.3 + ts-api-utils: 1.3.0(typescript@5.5.4) + optionalDependencies: + typescript: 5.5.4 + transitivePeerDependencies: + - supports-color + + '@typescript-eslint/utils@7.18.0(eslint@9.9.0(jiti@1.21.6))(typescript@5.5.4)': + dependencies: + '@eslint-community/eslint-utils': 4.4.0(eslint@9.9.0(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.5.4) - eslint: 9.8.0 + eslint: 9.9.0(jiti@1.21.6) + transitivePeerDependencies: + - supports-color + - typescript + + '@typescript-eslint/utils@8.3.0(eslint@9.9.0(jiti@1.21.6))(typescript@5.5.4)': + dependencies: + '@eslint-community/eslint-utils': 4.4.0(eslint@9.9.0(jiti@1.21.6)) + '@typescript-eslint/scope-manager': 8.3.0 + '@typescript-eslint/types': 8.3.0 + '@typescript-eslint/typescript-estree': 8.3.0(typescript@5.5.4) + eslint: 9.9.0(jiti@1.21.6) transitivePeerDependencies: - supports-color - typescript @@ -5136,28 +5288,33 @@ snapshots: '@typescript-eslint/types': 7.18.0 eslint-visitor-keys: 3.4.3 - '@unocss/config@0.61.9': + '@typescript-eslint/visitor-keys@8.3.0': dependencies: - '@unocss/core': 0.61.9 + '@typescript-eslint/types': 8.3.0 + eslint-visitor-keys: 3.4.3 + + '@unocss/config@0.62.2': + dependencies: + '@unocss/core': 0.62.2 unconfig: 0.5.5 transitivePeerDependencies: - supports-color - '@unocss/core@0.61.9': {} + '@unocss/core@0.62.2': {} - '@unocss/eslint-config@0.61.9(eslint@9.8.0)(typescript@5.5.4)': + '@unocss/eslint-config@0.62.2(eslint@9.9.0(jiti@1.21.6))(typescript@5.5.4)': dependencies: - '@unocss/eslint-plugin': 0.61.9(eslint@9.8.0)(typescript@5.5.4) + '@unocss/eslint-plugin': 0.62.2(eslint@9.9.0(jiti@1.21.6))(typescript@5.5.4) transitivePeerDependencies: - eslint - supports-color - typescript - '@unocss/eslint-plugin@0.61.9(eslint@9.8.0)(typescript@5.5.4)': + '@unocss/eslint-plugin@0.62.2(eslint@9.9.0(jiti@1.21.6))(typescript@5.5.4)': dependencies: - '@typescript-eslint/utils': 7.18.0(eslint@9.8.0)(typescript@5.5.4) - '@unocss/config': 0.61.9 - '@unocss/core': 0.61.9 + '@typescript-eslint/utils': 8.3.0(eslint@9.9.0(jiti@1.21.6))(typescript@5.5.4) + '@unocss/config': 0.62.2 + '@unocss/core': 0.62.2 magic-string: 0.30.11 synckit: 0.9.1 transitivePeerDependencies: @@ -5165,92 +5322,92 @@ snapshots: - supports-color - typescript - '@unocss/extractor-arbitrary-variants@0.61.9': + '@unocss/extractor-arbitrary-variants@0.62.2': dependencies: - '@unocss/core': 0.61.9 + '@unocss/core': 0.62.2 - '@unocss/inspector@0.61.9': + '@unocss/inspector@0.62.2': dependencies: - '@unocss/core': 0.61.9 - '@unocss/rule-utils': 0.61.9 + '@unocss/core': 0.62.2 + '@unocss/rule-utils': 0.62.2 gzip-size: 6.0.0 sirv: 2.0.4 - '@unocss/preset-icons@0.61.9': + '@unocss/preset-icons@0.62.2': dependencies: - '@iconify/utils': 2.1.29 - '@unocss/core': 0.61.9 + '@iconify/utils': 2.1.32 + '@unocss/core': 0.62.2 ofetch: 1.3.4 transitivePeerDependencies: - supports-color - '@unocss/preset-mini@0.61.9': + '@unocss/preset-mini@0.62.2': dependencies: - '@unocss/core': 0.61.9 - '@unocss/extractor-arbitrary-variants': 0.61.9 - '@unocss/rule-utils': 0.61.9 + '@unocss/core': 0.62.2 + '@unocss/extractor-arbitrary-variants': 0.62.2 + '@unocss/rule-utils': 0.62.2 - '@unocss/preset-uno@0.61.9': + '@unocss/preset-uno@0.62.2': dependencies: - '@unocss/core': 0.61.9 - '@unocss/preset-mini': 0.61.9 - '@unocss/preset-wind': 0.61.9 - '@unocss/rule-utils': 0.61.9 + '@unocss/core': 0.62.2 + '@unocss/preset-mini': 0.62.2 + '@unocss/preset-wind': 0.62.2 + '@unocss/rule-utils': 0.62.2 - '@unocss/preset-wind@0.61.9': + '@unocss/preset-wind@0.62.2': dependencies: - '@unocss/core': 0.61.9 - '@unocss/preset-mini': 0.61.9 - '@unocss/rule-utils': 0.61.9 + '@unocss/core': 0.62.2 + '@unocss/preset-mini': 0.62.2 + '@unocss/rule-utils': 0.62.2 - '@unocss/rule-utils@0.61.9': + '@unocss/rule-utils@0.62.2': dependencies: - '@unocss/core': 0.61.9 + '@unocss/core': 0.62.2 magic-string: 0.30.11 - '@unocss/scope@0.61.9': {} + '@unocss/scope@0.62.2': {} - '@unocss/transformer-directives@0.61.9': + '@unocss/transformer-directives@0.62.2': dependencies: - '@unocss/core': 0.61.9 - '@unocss/rule-utils': 0.61.9 + '@unocss/core': 0.62.2 + '@unocss/rule-utils': 0.62.2 css-tree: 2.3.1 - '@unocss/transformer-variant-group@0.61.9': + '@unocss/transformer-variant-group@0.62.2': dependencies: - '@unocss/core': 0.61.9 + '@unocss/core': 0.62.2 - '@unocss/vite@0.61.9(rollup@4.19.1)(vite@5.3.5(@types/node@22.0.1)(sass@1.77.8))': + '@unocss/vite@0.62.2(rollup@4.19.1)(vite@5.4.1(@types/node@22.4.1)(sass@1.77.8))': dependencies: '@ampproject/remapping': 2.3.0 '@rollup/pluginutils': 5.1.0(rollup@4.19.1) - '@unocss/config': 0.61.9 - '@unocss/core': 0.61.9 - '@unocss/inspector': 0.61.9 - '@unocss/scope': 0.61.9 - '@unocss/transformer-directives': 0.61.9 + '@unocss/config': 0.62.2 + '@unocss/core': 0.62.2 + '@unocss/inspector': 0.62.2 + '@unocss/scope': 0.62.2 + '@unocss/transformer-directives': 0.62.2 chokidar: 3.6.0 - fast-glob: 3.3.2 magic-string: 0.30.11 - vite: 5.3.5(@types/node@22.0.1)(sass@1.77.8) + tinyglobby: 0.2.5 + vite: 5.4.1(@types/node@22.4.1)(sass@1.77.8) transitivePeerDependencies: - rollup - supports-color - '@vitejs/plugin-vue-jsx@4.0.0(vite@5.3.5(@types/node@22.0.1)(sass@1.77.8))(vue@3.4.35(typescript@5.5.4))': + '@vitejs/plugin-vue-jsx@4.0.1(vite@5.4.1(@types/node@22.4.1)(sass@1.77.8))(vue@3.4.38(typescript@5.5.4))': dependencies: '@babel/core': 7.25.2 '@babel/plugin-transform-typescript': 7.25.2(@babel/core@7.25.2) '@vue/babel-plugin-jsx': 1.2.2(@babel/core@7.25.2) - vite: 5.3.5(@types/node@22.0.1)(sass@1.77.8) - vue: 3.4.35(typescript@5.5.4) + vite: 5.4.1(@types/node@22.4.1)(sass@1.77.8) + vue: 3.4.38(typescript@5.5.4) transitivePeerDependencies: - supports-color - '@vitejs/plugin-vue@5.1.1(vite@5.3.5(@types/node@22.0.1)(sass@1.77.8))(vue@3.4.35(typescript@5.5.4))': + '@vitejs/plugin-vue@5.1.2(vite@5.4.1(@types/node@22.4.1)(sass@1.77.8))(vue@3.4.38(typescript@5.5.4))': dependencies: - vite: 5.3.5(@types/node@22.0.1)(sass@1.77.8) - vue: 3.4.35(typescript@5.5.4) + vite: 5.4.1(@types/node@22.4.1)(sass@1.77.8) + vue: 3.4.38(typescript@5.5.4) '@volar/language-core@2.4.0-alpha.18': dependencies: @@ -5301,11 +5458,24 @@ snapshots: estree-walker: 2.0.2 source-map-js: 1.2.0 + '@vue/compiler-core@3.4.38': + dependencies: + '@babel/parser': 7.25.3 + '@vue/shared': 3.4.38 + entities: 4.5.0 + estree-walker: 2.0.2 + source-map-js: 1.2.0 + '@vue/compiler-dom@3.4.35': dependencies: '@vue/compiler-core': 3.4.35 '@vue/shared': 3.4.35 + '@vue/compiler-dom@3.4.38': + dependencies: + '@vue/compiler-core': 3.4.38 + '@vue/shared': 3.4.38 + '@vue/compiler-sfc@3.4.35': dependencies: '@babel/parser': 7.25.3 @@ -5318,11 +5488,28 @@ snapshots: postcss: 8.4.40 source-map-js: 1.2.0 + '@vue/compiler-sfc@3.4.38': + dependencies: + '@babel/parser': 7.25.3 + '@vue/compiler-core': 3.4.38 + '@vue/compiler-dom': 3.4.38 + '@vue/compiler-ssr': 3.4.38 + '@vue/shared': 3.4.38 + estree-walker: 2.0.2 + magic-string: 0.30.11 + postcss: 8.4.40 + source-map-js: 1.2.0 + '@vue/compiler-ssr@3.4.35': dependencies: '@vue/compiler-dom': 3.4.35 '@vue/shared': 3.4.35 + '@vue/compiler-ssr@3.4.38': + dependencies: + '@vue/compiler-dom': 3.4.38 + '@vue/shared': 3.4.38 + '@vue/compiler-vue2@2.7.16': dependencies: de-indent: 1.0.2 @@ -5330,21 +5517,21 @@ snapshots: '@vue/devtools-api@6.6.3': {} - '@vue/devtools-core@7.3.7(vite@5.3.5(@types/node@22.0.1)(sass@1.77.8))(vue@3.4.35(typescript@5.5.4))': + '@vue/devtools-core@7.3.9(vite@5.4.1(@types/node@22.4.1)(sass@1.77.8))(vue@3.4.38(typescript@5.5.4))': dependencies: - '@vue/devtools-kit': 7.3.7 - '@vue/devtools-shared': 7.3.7 + '@vue/devtools-kit': 7.3.9 + '@vue/devtools-shared': 7.3.9 mitt: 3.0.1 nanoid: 3.3.7 pathe: 1.1.2 - vite-hot-client: 0.2.3(vite@5.3.5(@types/node@22.0.1)(sass@1.77.8)) - vue: 3.4.35(typescript@5.5.4) + vite-hot-client: 0.2.3(vite@5.4.1(@types/node@22.4.1)(sass@1.77.8)) + vue: 3.4.38(typescript@5.5.4) transitivePeerDependencies: - vite - '@vue/devtools-kit@7.3.7': + '@vue/devtools-kit@7.3.9': dependencies: - '@vue/devtools-shared': 7.3.7 + '@vue/devtools-shared': 7.3.9 birpc: 0.2.17 hookable: 5.5.3 mitt: 3.0.1 @@ -5352,7 +5539,7 @@ snapshots: speakingurl: 14.0.1 superjson: 2.2.1 - '@vue/devtools-shared@7.3.7': + '@vue/devtools-shared@7.3.9': dependencies: rfdc: 1.4.1 @@ -5369,45 +5556,47 @@ snapshots: optionalDependencies: typescript: 5.5.4 - '@vue/reactivity@3.4.35': + '@vue/reactivity@3.4.38': dependencies: - '@vue/shared': 3.4.35 + '@vue/shared': 3.4.38 - '@vue/runtime-core@3.4.35': + '@vue/runtime-core@3.4.38': dependencies: - '@vue/reactivity': 3.4.35 - '@vue/shared': 3.4.35 + '@vue/reactivity': 3.4.38 + '@vue/shared': 3.4.38 - '@vue/runtime-dom@3.4.35': + '@vue/runtime-dom@3.4.38': dependencies: - '@vue/reactivity': 3.4.35 - '@vue/runtime-core': 3.4.35 - '@vue/shared': 3.4.35 + '@vue/reactivity': 3.4.38 + '@vue/runtime-core': 3.4.38 + '@vue/shared': 3.4.38 csstype: 3.1.3 - '@vue/server-renderer@3.4.35(vue@3.4.35(typescript@5.5.4))': + '@vue/server-renderer@3.4.38(vue@3.4.38(typescript@5.5.4))': dependencies: - '@vue/compiler-ssr': 3.4.35 - '@vue/shared': 3.4.35 - vue: 3.4.35(typescript@5.5.4) + '@vue/compiler-ssr': 3.4.38 + '@vue/shared': 3.4.38 + vue: 3.4.38(typescript@5.5.4) '@vue/shared@3.4.35': {} - '@vueuse/core@10.11.0(vue@3.4.35(typescript@5.5.4))': + '@vue/shared@3.4.38': {} + + '@vueuse/core@11.0.1(vue@3.4.38(typescript@5.5.4))': dependencies: '@types/web-bluetooth': 0.0.20 - '@vueuse/metadata': 10.11.0 - '@vueuse/shared': 10.11.0(vue@3.4.35(typescript@5.5.4)) - vue-demi: 0.14.10(vue@3.4.35(typescript@5.5.4)) + '@vueuse/metadata': 11.0.1 + '@vueuse/shared': 11.0.1(vue@3.4.38(typescript@5.5.4)) + vue-demi: 0.14.10(vue@3.4.38(typescript@5.5.4)) transitivePeerDependencies: - '@vue/composition-api' - vue - '@vueuse/metadata@10.11.0': {} + '@vueuse/metadata@11.0.1': {} - '@vueuse/shared@10.11.0(vue@3.4.35(typescript@5.5.4))': + '@vueuse/shared@11.0.1(vue@3.4.38(typescript@5.5.4))': dependencies: - vue-demi: 0.14.10(vue@3.4.35(typescript@5.5.4)) + vue-demi: 0.14.10(vue@3.4.38(typescript@5.5.4)) transitivePeerDependencies: - '@vue/composition-api' - vue @@ -5498,12 +5687,12 @@ snapshots: dependencies: possible-typed-array-names: 1.0.0 - axios-retry@4.4.2(axios@1.7.2): + axios-retry@4.5.0(axios@1.7.4): dependencies: - axios: 1.7.2 + axios: 1.7.4 is-retry-allowed: 2.2.0 - axios@1.7.2: + axios@1.7.4: dependencies: follow-redirects: 1.15.6 form-data: 4.0.0 @@ -5572,7 +5761,7 @@ snapshots: builtin-modules@3.3.0: {} - bumpp@9.4.1(magicast@0.3.4): + bumpp@9.5.1(magicast@0.3.4): dependencies: '@jsdevtools/ez-spawn': 3.0.4 c12: 1.11.1(magicast@0.3.4) @@ -5580,6 +5769,7 @@ snapshots: escalade: 3.1.2 fast-glob: 3.3.2 js-yaml: 4.1.0 + jsonc-parser: 3.3.1 prompts: 2.4.2 semver: 7.6.3 transitivePeerDependencies: @@ -6160,9 +6350,9 @@ snapshots: escape-string-regexp@4.0.0: {} - eslint-compat-utils@0.5.1(eslint@9.8.0): + eslint-compat-utils@0.5.1(eslint@9.9.0(jiti@1.21.6)): dependencies: - eslint: 9.8.0 + eslint: 9.9.0(jiti@1.21.6) semver: 7.6.3 eslint-config-flat-gitignore@0.1.8: @@ -6170,9 +6360,9 @@ snapshots: find-up-simple: 1.0.0 parse-gitignore: 2.0.0 - eslint-config-prettier@9.1.0(eslint@9.8.0): + eslint-config-prettier@9.1.0(eslint@9.9.0(jiti@1.21.6)): dependencies: - eslint: 9.8.0 + eslint: 9.9.0(jiti@1.21.6) eslint-import-resolver-node@0.3.9: dependencies: @@ -6184,19 +6374,19 @@ snapshots: eslint-parser-plain@0.1.0: {} - eslint-plugin-es-x@7.8.0(eslint@9.8.0): + eslint-plugin-es-x@7.8.0(eslint@9.9.0(jiti@1.21.6)): dependencies: - '@eslint-community/eslint-utils': 4.4.0(eslint@9.8.0) + '@eslint-community/eslint-utils': 4.4.0(eslint@9.9.0(jiti@1.21.6)) '@eslint-community/regexpp': 4.11.0 - eslint: 9.8.0 - eslint-compat-utils: 0.5.1(eslint@9.8.0) + eslint: 9.9.0(jiti@1.21.6) + eslint-compat-utils: 0.5.1(eslint@9.9.0(jiti@1.21.6)) - eslint-plugin-import-x@3.1.0(eslint@9.8.0)(typescript@5.5.4): + eslint-plugin-import-x@3.1.0(eslint@9.9.0(jiti@1.21.6))(typescript@5.5.4): dependencies: - '@typescript-eslint/utils': 7.18.0(eslint@9.8.0)(typescript@5.5.4) + '@typescript-eslint/utils': 7.18.0(eslint@9.9.0(jiti@1.21.6))(typescript@5.5.4) debug: 4.3.6 doctrine: 3.0.0 - eslint: 9.8.0 + eslint: 9.9.0(jiti@1.21.6) eslint-import-resolver-node: 0.3.9 get-tsconfig: 4.7.6 is-glob: 4.0.3 @@ -6208,35 +6398,35 @@ snapshots: - supports-color - typescript - eslint-plugin-n@17.10.1(eslint@9.8.0): + eslint-plugin-n@17.10.1(eslint@9.9.0(jiti@1.21.6)): dependencies: - '@eslint-community/eslint-utils': 4.4.0(eslint@9.8.0) + '@eslint-community/eslint-utils': 4.4.0(eslint@9.9.0(jiti@1.21.6)) enhanced-resolve: 5.17.1 - eslint: 9.8.0 - eslint-plugin-es-x: 7.8.0(eslint@9.8.0) + eslint: 9.9.0(jiti@1.21.6) + eslint-plugin-es-x: 7.8.0(eslint@9.9.0(jiti@1.21.6)) get-tsconfig: 4.7.6 globals: 15.8.0 ignore: 5.3.1 minimatch: 9.0.5 semver: 7.6.3 - eslint-plugin-prettier@5.2.1(eslint-config-prettier@9.1.0(eslint@9.8.0))(eslint@9.8.0)(prettier@3.3.3): + eslint-plugin-prettier@5.2.1(eslint-config-prettier@9.1.0(eslint@9.9.0(jiti@1.21.6)))(eslint@9.9.0(jiti@1.21.6))(prettier@3.3.3): dependencies: - eslint: 9.8.0 + eslint: 9.9.0(jiti@1.21.6) prettier: 3.3.3 prettier-linter-helpers: 1.0.0 synckit: 0.9.1 optionalDependencies: - eslint-config-prettier: 9.1.0(eslint@9.8.0) + eslint-config-prettier: 9.1.0(eslint@9.9.0(jiti@1.21.6)) - eslint-plugin-unicorn@55.0.0(eslint@9.8.0): + eslint-plugin-unicorn@55.0.0(eslint@9.9.0(jiti@1.21.6)): dependencies: '@babel/helper-validator-identifier': 7.24.7 - '@eslint-community/eslint-utils': 4.4.0(eslint@9.8.0) + '@eslint-community/eslint-utils': 4.4.0(eslint@9.9.0(jiti@1.21.6)) ci-info: 4.0.0 clean-regexp: 1.0.0 core-js-compat: 3.37.1 - eslint: 9.8.0 + eslint: 9.9.0(jiti@1.21.6) esquery: 1.6.0 globals: 15.8.0 indent-string: 4.0.0 @@ -6249,16 +6439,16 @@ snapshots: semver: 7.6.3 strip-indent: 3.0.0 - eslint-plugin-vue@9.27.0(eslint@9.8.0): + eslint-plugin-vue@9.27.0(eslint@9.9.0(jiti@1.21.6)): dependencies: - '@eslint-community/eslint-utils': 4.4.0(eslint@9.8.0) - eslint: 9.8.0 + '@eslint-community/eslint-utils': 4.4.0(eslint@9.9.0(jiti@1.21.6)) + eslint: 9.9.0(jiti@1.21.6) globals: 13.24.0 natural-compare: 1.4.0 nth-check: 2.1.1 postcss-selector-parser: 6.1.1 semver: 7.6.3 - vue-eslint-parser: 9.4.3(eslint@9.8.0) + vue-eslint-parser: 9.4.3(eslint@9.9.0(jiti@1.21.6)) xml-name-validator: 4.0.0 transitivePeerDependencies: - supports-color @@ -6277,13 +6467,13 @@ snapshots: eslint-visitor-keys@4.0.0: {} - eslint@9.8.0: + eslint@9.9.0(jiti@1.21.6): dependencies: - '@eslint-community/eslint-utils': 4.4.0(eslint@9.8.0) + '@eslint-community/eslint-utils': 4.4.0(eslint@9.9.0(jiti@1.21.6)) '@eslint-community/regexpp': 4.11.0 '@eslint/config-array': 0.17.1 '@eslint/eslintrc': 3.1.0 - '@eslint/js': 9.8.0 + '@eslint/js': 9.9.0 '@humanwhocodes/module-importer': 1.0.1 '@humanwhocodes/retry': 0.3.0 '@nodelib/fs.walk': 1.2.8 @@ -6313,6 +6503,8 @@ snapshots: optionator: 0.9.4 strip-ansi: 6.0.1 text-table: 0.2.0 + optionalDependencies: + jiti: 1.21.6 transitivePeerDependencies: - supports-color @@ -6389,13 +6581,13 @@ snapshots: strip-final-newline: 4.0.0 yoctocolors: 2.1.1 - execa@9.3.0: + execa@9.3.1: dependencies: '@sindresorhus/merge-streams': 4.0.0 cross-spawn: 7.0.3 figures: 6.1.0 get-stream: 9.0.1 - human-signals: 7.0.0 + human-signals: 8.0.0 is-plain-obj: 4.1.0 is-stream: 4.0.1 npm-run-path: 5.3.0 @@ -6458,6 +6650,10 @@ snapshots: dependencies: reusify: 1.0.4 + fdir@6.3.0(picomatch@4.0.2): + optionalDependencies: + picomatch: 4.0.2 + figures@6.1.0: dependencies: is-unicode-supported: 2.0.0 @@ -6733,6 +6929,8 @@ snapshots: human-signals@7.0.0: {} + human-signals@8.0.0: {} + icss-replace-symbols@1.1.0: {} icss-utils@5.1.0(postcss@8.4.40): @@ -6761,7 +6959,7 @@ snapshots: jiti-v1: jiti@1.21.6 pathe: 1.1.2 pkg-types: 1.1.3 - tsx: 4.16.3 + tsx: 4.17.0 transitivePeerDependencies: - supports-color @@ -6984,6 +7182,8 @@ snapshots: json5@2.2.3: {} + jsonc-parser@3.3.1: {} + jsonfile@6.1.0: dependencies: universalify: 2.0.1 @@ -7025,7 +7225,7 @@ snapshots: lines-and-columns@1.2.4: {} - lint-staged@15.2.7: + lint-staged@15.2.9: dependencies: chalk: 5.3.0 commander: 12.1.0 @@ -7036,7 +7236,7 @@ snapshots: micromatch: 4.0.7 pidtree: 0.6.0 string-argv: 0.3.2 - yaml: 2.4.5 + yaml: 2.5.0 transitivePeerDependencies: - supports-color @@ -7372,10 +7572,10 @@ snapshots: muggle-string@0.4.1: {} - naive-ui@2.39.0(vue@3.4.35(typescript@5.5.4)): + naive-ui@2.39.0(vue@3.4.38(typescript@5.5.4)): dependencies: '@css-render/plugin-bem': 0.15.14(css-render@0.15.14) - '@css-render/vue3-ssr': 0.15.14(vue@3.4.35(typescript@5.5.4)) + '@css-render/vue3-ssr': 0.15.14(vue@3.4.38(typescript@5.5.4)) '@types/katex': 0.16.7 '@types/lodash': 4.17.7 '@types/lodash-es': 4.17.12 @@ -7390,10 +7590,10 @@ snapshots: lodash-es: 4.17.21 seemly: 0.3.8 treemate: 0.3.11 - vdirs: 0.1.8(vue@3.4.35(typescript@5.5.4)) - vooks: 0.2.12(vue@3.4.35(typescript@5.5.4)) - vue: 3.4.35(typescript@5.5.4) - vueuc: 0.4.58(vue@3.4.35(typescript@5.5.4)) + vdirs: 0.1.8(vue@3.4.38(typescript@5.5.4)) + vooks: 0.2.12(vue@3.4.38(typescript@5.5.4)) + vue: 3.4.38(typescript@5.5.4) + vueuc: 0.4.58(vue@3.4.38(typescript@5.5.4)) nanoid@3.3.7: {} @@ -7430,7 +7630,7 @@ snapshots: normalize-path@3.0.0: {} - npm-check-updates@17.0.0: {} + npm-check-updates@17.0.6: {} npm-run-path@4.0.1: dependencies: @@ -7538,6 +7738,8 @@ snapshots: package-json-from-dist@1.0.0: {} + package-manager-detector@0.2.0: {} + parent-module@1.0.1: dependencies: callsites: 3.1.0 @@ -7587,13 +7789,15 @@ snapshots: picomatch@2.3.1: {} + picomatch@4.0.2: {} + pidtree@0.6.0: {} - pinia@2.2.0(typescript@5.5.4)(vue@3.4.35(typescript@5.5.4)): + pinia@2.2.2(typescript@5.5.4)(vue@3.4.38(typescript@5.5.4)): dependencies: '@vue/devtools-api': 6.6.3 - vue: 3.4.35(typescript@5.5.4) - vue-demi: 0.14.10(vue@3.4.35(typescript@5.5.4)) + vue: 3.4.38(typescript@5.5.4) + vue-demi: 0.14.10(vue@3.4.38(typescript@5.5.4)) optionalDependencies: typescript: 5.5.4 @@ -7654,6 +7858,12 @@ snapshots: picocolors: 1.0.1 source-map-js: 1.2.0 + postcss@8.4.41: + dependencies: + nanoid: 3.3.7 + picocolors: 1.0.1 + source-map-js: 1.2.0 + posthtml-parser@0.2.1: dependencies: htmlparser2: 3.10.1 @@ -7713,7 +7923,7 @@ snapshots: punycode@2.3.1: {} - qs@6.12.3: + qs@6.13.0: dependencies: side-channel: 1.0.6 @@ -7931,11 +8141,11 @@ snapshots: lodash: 4.17.21 lodash-es: 4.17.21 - simplebar-vue@2.3.5(vue@3.4.35(typescript@5.5.4)): + simplebar-vue@2.3.5(vue@3.4.38(typescript@5.5.4)): dependencies: simplebar-core: 1.2.6 - vue: 3.4.35(typescript@5.5.4) - vue-demi: 0.13.11(vue@3.4.35(typescript@5.5.4)) + vue: 3.4.38(typescript@5.5.4) + vue-demi: 0.13.11(vue@3.4.38(typescript@5.5.4)) transitivePeerDependencies: - '@vue/composition-api' @@ -8153,7 +8363,7 @@ snapshots: '@pkgr/core': 0.1.1 tslib: 2.6.3 - tailwind-merge@2.4.0: {} + tailwind-merge@2.5.2: {} tapable@2.2.1: {} @@ -8172,6 +8382,13 @@ snapshots: tiny-invariant@1.3.3: {} + tinyexec@0.3.0: {} + + tinyglobby@0.2.5: + dependencies: + fdir: 6.3.0(picomatch@4.0.2) + picomatch: 4.0.2 + to-fast-properties@2.0.0: {} to-object-path@0.3.0: @@ -8214,9 +8431,9 @@ snapshots: tslib@2.6.3: {} - tsx@4.16.3: + tsx@4.17.0: dependencies: - esbuild: 0.21.5 + esbuild: 0.23.0 get-tsconfig: 4.7.6 optionalDependencies: fsevents: 2.3.3 @@ -8309,7 +8526,7 @@ snapshots: transitivePeerDependencies: - supports-color - undici-types@6.11.1: {} + undici-types@6.19.8: {} union-value@1.0.1: dependencies: @@ -8324,7 +8541,7 @@ snapshots: universalify@2.0.1: {} - unplugin-icons@0.19.1(@vue/compiler-sfc@3.4.35): + unplugin-icons@0.19.2(@vue/compiler-sfc@3.4.38): dependencies: '@antfu/install-pkg': 0.3.3 '@antfu/utils': 0.7.10 @@ -8334,11 +8551,11 @@ snapshots: local-pkg: 0.5.0 unplugin: 1.12.0 optionalDependencies: - '@vue/compiler-sfc': 3.4.35 + '@vue/compiler-sfc': 3.4.38 transitivePeerDependencies: - supports-color - unplugin-vue-components@0.27.3(@babel/parser@7.25.3)(rollup@4.19.1)(vue@3.4.35(typescript@5.5.4)): + unplugin-vue-components@0.27.4(@babel/parser@7.25.3)(rollup@4.19.1)(vue@3.4.38(typescript@5.5.4)): dependencies: '@antfu/utils': 0.7.10 '@rollup/pluginutils': 5.1.0(rollup@4.19.1) @@ -8349,8 +8566,8 @@ snapshots: magic-string: 0.30.11 minimatch: 9.0.5 mlly: 1.7.1 - unplugin: 1.12.0 - vue: 3.4.35(typescript@5.5.4) + unplugin: 1.12.2 + vue: 3.4.38(typescript@5.5.4) optionalDependencies: '@babel/parser': 7.25.3 transitivePeerDependencies: @@ -8364,6 +8581,13 @@ snapshots: webpack-sources: 3.2.3 webpack-virtual-modules: 0.6.2 + unplugin@1.12.2: + dependencies: + acorn: 8.12.1 + chokidar: 3.6.0 + webpack-sources: 3.2.3 + webpack-virtual-modules: 0.6.2 + unset-value@1.0.0: dependencies: has-value: 0.3.1 @@ -8392,16 +8616,16 @@ snapshots: vary@1.1.2: {} - vdirs@0.1.8(vue@3.4.35(typescript@5.5.4)): + vdirs@0.1.8(vue@3.4.38(typescript@5.5.4)): dependencies: evtd: 0.2.4 - vue: 3.4.35(typescript@5.5.4) + vue: 3.4.38(typescript@5.5.4) - vite-hot-client@0.2.3(vite@5.3.5(@types/node@22.0.1)(sass@1.77.8)): + vite-hot-client@0.2.3(vite@5.4.1(@types/node@22.4.1)(sass@1.77.8)): dependencies: - vite: 5.3.5(@types/node@22.0.1)(sass@1.77.8) + vite: 5.4.1(@types/node@22.4.1)(sass@1.77.8) - vite-plugin-inspect@0.8.5(rollup@4.19.1)(vite@5.3.5(@types/node@22.0.1)(sass@1.77.8)): + vite-plugin-inspect@0.8.5(rollup@4.19.1)(vite@5.4.1(@types/node@22.4.1)(sass@1.77.8)): dependencies: '@antfu/utils': 0.7.10 '@rollup/pluginutils': 5.1.0(rollup@4.19.1) @@ -8412,19 +8636,19 @@ snapshots: perfect-debounce: 1.0.0 picocolors: 1.0.1 sirv: 2.0.4 - vite: 5.3.5(@types/node@22.0.1)(sass@1.77.8) + vite: 5.4.1(@types/node@22.4.1)(sass@1.77.8) transitivePeerDependencies: - rollup - supports-color - vite-plugin-progress@0.0.7(vite@5.3.5(@types/node@22.0.1)(sass@1.77.8)): + vite-plugin-progress@0.0.7(vite@5.4.1(@types/node@22.4.1)(sass@1.77.8)): dependencies: picocolors: 1.0.1 progress: 2.0.3 rd: 2.0.1 - vite: 5.3.5(@types/node@22.0.1)(sass@1.77.8) + vite: 5.4.1(@types/node@22.4.1)(sass@1.77.8) - vite-plugin-svg-icons@2.0.1(vite@5.3.5(@types/node@22.0.1)(sass@1.77.8)): + vite-plugin-svg-icons@2.0.1(vite@5.4.1(@types/node@22.4.1)(sass@1.77.8)): dependencies: '@types/svgo': 2.6.4 cors: 2.8.5 @@ -8434,27 +8658,27 @@ snapshots: pathe: 0.2.0 svg-baker: 1.7.0 svgo: 2.8.0 - vite: 5.3.5(@types/node@22.0.1)(sass@1.77.8) + vite: 5.4.1(@types/node@22.4.1)(sass@1.77.8) transitivePeerDependencies: - supports-color - vite-plugin-vue-devtools@7.3.7(rollup@4.19.1)(vite@5.3.5(@types/node@22.0.1)(sass@1.77.8))(vue@3.4.35(typescript@5.5.4)): + vite-plugin-vue-devtools@7.3.8(rollup@4.19.1)(vite@5.4.1(@types/node@22.4.1)(sass@1.77.8))(vue@3.4.38(typescript@5.5.4)): dependencies: - '@vue/devtools-core': 7.3.7(vite@5.3.5(@types/node@22.0.1)(sass@1.77.8))(vue@3.4.35(typescript@5.5.4)) - '@vue/devtools-kit': 7.3.7 - '@vue/devtools-shared': 7.3.7 + '@vue/devtools-core': 7.3.9(vite@5.4.1(@types/node@22.4.1)(sass@1.77.8))(vue@3.4.38(typescript@5.5.4)) + '@vue/devtools-kit': 7.3.9 + '@vue/devtools-shared': 7.3.9 execa: 8.0.1 sirv: 2.0.4 - vite: 5.3.5(@types/node@22.0.1)(sass@1.77.8) - vite-plugin-inspect: 0.8.5(rollup@4.19.1)(vite@5.3.5(@types/node@22.0.1)(sass@1.77.8)) - vite-plugin-vue-inspector: 5.1.3(vite@5.3.5(@types/node@22.0.1)(sass@1.77.8)) + vite: 5.4.1(@types/node@22.4.1)(sass@1.77.8) + vite-plugin-inspect: 0.8.5(rollup@4.19.1)(vite@5.4.1(@types/node@22.4.1)(sass@1.77.8)) + vite-plugin-vue-inspector: 5.1.3(vite@5.4.1(@types/node@22.4.1)(sass@1.77.8)) transitivePeerDependencies: - '@nuxt/kit' - rollup - supports-color - vue - vite-plugin-vue-inspector@5.1.3(vite@5.3.5(@types/node@22.0.1)(sass@1.77.8)): + vite-plugin-vue-inspector@5.1.3(vite@5.4.1(@types/node@22.4.1)(sass@1.77.8)): dependencies: '@babel/core': 7.25.2 '@babel/plugin-proposal-decorators': 7.24.7(@babel/core@7.25.2) @@ -8465,54 +8689,54 @@ snapshots: '@vue/compiler-dom': 3.4.35 kolorist: 1.8.0 magic-string: 0.30.11 - vite: 5.3.5(@types/node@22.0.1)(sass@1.77.8) + vite: 5.4.1(@types/node@22.4.1)(sass@1.77.8) transitivePeerDependencies: - supports-color - vite@5.3.5(@types/node@22.0.1)(sass@1.77.8): + vite@5.4.1(@types/node@22.4.1)(sass@1.77.8): dependencies: esbuild: 0.21.5 - postcss: 8.4.40 + postcss: 8.4.41 rollup: 4.19.1 optionalDependencies: - '@types/node': 22.0.1 + '@types/node': 22.4.1 fsevents: 2.3.3 sass: 1.77.8 - vooks@0.2.12(vue@3.4.35(typescript@5.5.4)): + vooks@0.2.12(vue@3.4.38(typescript@5.5.4)): dependencies: evtd: 0.2.4 - vue: 3.4.35(typescript@5.5.4) + vue: 3.4.38(typescript@5.5.4) vscode-uri@3.0.8: {} - vue-codemirror6@1.3.4(@lezer/common@1.2.1)(vue@3.4.35(typescript@5.5.4)): + vue-codemirror6@1.3.4(@lezer/common@1.2.1)(vue@3.4.38(typescript@5.5.4)): dependencies: codemirror: 6.0.1(@lezer/common@1.2.1) - vue: 3.4.35(typescript@5.5.4) - vue-demi: 0.14.10(vue@3.4.35(typescript@5.5.4)) + vue: 3.4.38(typescript@5.5.4) + vue-demi: 0.14.10(vue@3.4.38(typescript@5.5.4)) transitivePeerDependencies: - '@lezer/common' - '@vue/composition-api' - vue-demi@0.13.11(vue@3.4.35(typescript@5.5.4)): + vue-demi@0.13.11(vue@3.4.38(typescript@5.5.4)): dependencies: - vue: 3.4.35(typescript@5.5.4) + vue: 3.4.38(typescript@5.5.4) - vue-demi@0.14.10(vue@3.4.35(typescript@5.5.4)): + vue-demi@0.14.10(vue@3.4.38(typescript@5.5.4)): dependencies: - vue: 3.4.35(typescript@5.5.4) + vue: 3.4.38(typescript@5.5.4) vue-drag-resize@1.5.4: {} - vue-draggable-plus@0.5.2(@types/sortablejs@1.15.8): + vue-draggable-plus@0.5.3(@types/sortablejs@1.15.8): dependencies: '@types/sortablejs': 1.15.8 - vue-eslint-parser@9.4.3(eslint@9.8.0): + vue-eslint-parser@9.4.3(eslint@9.9.0(jiti@1.21.6)): dependencies: debug: 4.3.6 - eslint: 9.8.0 + eslint: 9.9.0(jiti@1.21.6) eslint-scope: 7.2.2 eslint-visitor-keys: 3.4.3 espree: 9.6.1 @@ -8522,17 +8746,17 @@ snapshots: transitivePeerDependencies: - supports-color - vue-i18n@9.13.1(vue@3.4.35(typescript@5.5.4)): + vue-i18n@9.14.0(vue@3.4.38(typescript@5.5.4)): dependencies: - '@intlify/core-base': 9.13.1 - '@intlify/shared': 9.13.1 + '@intlify/core-base': 9.14.0 + '@intlify/shared': 9.14.0 '@vue/devtools-api': 6.6.3 - vue: 3.4.35(typescript@5.5.4) + vue: 3.4.38(typescript@5.5.4) - vue-router@4.4.1(vue@3.4.35(typescript@5.5.4)): + vue-router@4.4.3(vue@3.4.38(typescript@5.5.4)): dependencies: '@vue/devtools-api': 6.6.3 - vue: 3.4.35(typescript@5.5.4) + vue: 3.4.38(typescript@5.5.4) vue-tsc@2.0.29(typescript@5.5.4): dependencies: @@ -8543,26 +8767,26 @@ snapshots: vue3-puzzle-vcode@1.1.7: {} - vue@3.4.35(typescript@5.5.4): + vue@3.4.38(typescript@5.5.4): dependencies: - '@vue/compiler-dom': 3.4.35 - '@vue/compiler-sfc': 3.4.35 - '@vue/runtime-dom': 3.4.35 - '@vue/server-renderer': 3.4.35(vue@3.4.35(typescript@5.5.4)) - '@vue/shared': 3.4.35 + '@vue/compiler-dom': 3.4.38 + '@vue/compiler-sfc': 3.4.38 + '@vue/runtime-dom': 3.4.38 + '@vue/server-renderer': 3.4.38(vue@3.4.38(typescript@5.5.4)) + '@vue/shared': 3.4.38 optionalDependencies: typescript: 5.5.4 - vueuc@0.4.58(vue@3.4.35(typescript@5.5.4)): + vueuc@0.4.58(vue@3.4.38(typescript@5.5.4)): dependencies: - '@css-render/vue3-ssr': 0.15.14(vue@3.4.35(typescript@5.5.4)) + '@css-render/vue3-ssr': 0.15.14(vue@3.4.38(typescript@5.5.4)) '@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.4.35(typescript@5.5.4)) - vooks: 0.2.12(vue@3.4.35(typescript@5.5.4)) - vue: 3.4.35(typescript@5.5.4) + vdirs: 0.1.8(vue@3.4.38(typescript@5.5.4)) + vooks: 0.2.12(vue@3.4.38(typescript@5.5.4)) + vue: 3.4.38(typescript@5.5.4) w3c-keyname@2.2.8: {} @@ -8618,7 +8842,7 @@ snapshots: yallist@4.0.0: {} - yaml@2.4.5: {} + yaml@2.5.0: {} yargs-parser@21.1.1: {} diff --git a/src/hooks/common/router.ts b/src/hooks/common/router.ts index 9ecbaf9..1e50f5b 100644 --- a/src/hooks/common/router.ts +++ b/src/hooks/common/router.ts @@ -98,11 +98,15 @@ export function useRouterPush(inSetup = true) { return routerPushByKey('login', { query, params: { module } }); } - /** Redirect from login */ - async function redirectFromLogin() { + /** + * Redirect from login + * + * @param [needRedirect=true] Whether to redirect after login. Default is `true` + */ + async function redirectFromLogin(needRedirect = true) { const redirect = route.value.query?.redirect as string; - if (redirect) { + if (needRedirect && redirect) { routerPush(redirect); } else { toHome(); diff --git a/src/plugins/app.ts b/src/plugins/app.ts index bd80c11..0c0e6bc 100644 --- a/src/plugins/app.ts +++ b/src/plugins/app.ts @@ -53,9 +53,7 @@ export function setupAppVersionNotification() { } async function getHtmlBuildTime() { - const baseURL = import.meta.env.VITE_BASE_URL; - - const res = await fetch(`${baseURL}index.html`); + const res = await fetch(`/index.html?time=${Date.now()}`); const html = await res.text(); diff --git a/src/store/modules/auth/index.ts b/src/store/modules/auth/index.ts index 0777b15..2fc3638 100644 --- a/src/store/modules/auth/index.ts +++ b/src/store/modules/auth/index.ts @@ -81,9 +81,7 @@ export const useAuthStore = defineStore(SetupStoreId.Auth, () => { if (pass) { await routeStore.initAuthRoute(); - if (redirect) { - await redirectFromLogin(); - } + await redirectFromLogin(redirect); if (routeStore.isInitAuthRoute) { window.$notification?.success({ diff --git a/src/typings/api.d.ts b/src/typings/api.d.ts index 538ef6a..8c5c14e 100644 --- a/src/typings/api.d.ts +++ b/src/typings/api.d.ts @@ -30,6 +30,9 @@ declare namespace Api { total: number; }; + /** common search params of table */ + type CommonSearchParams = Pick; + /** * enable status * diff --git a/src/typings/naive-ui.d.ts b/src/typings/naive-ui.d.ts index cfd38b6..cf5c176 100644 --- a/src/typings/naive-ui.d.ts +++ b/src/typings/naive-ui.d.ts @@ -26,7 +26,7 @@ declare namespace NaiveUI { type TableColumn = TableColumnWithKey | DataTableSelectionColumn | DataTableExpandColumn; - type TableApiFn = ( + type TableApiFn = ( params: R ) => Promise>>; diff --git a/src/utils/service.ts b/src/utils/service.ts index 9065bcc..a8d4596 100644 --- a/src/utils/service.ts +++ b/src/utils/service.ts @@ -1,3 +1,5 @@ +import json5 from 'json5'; + /** * Create service config by current env * @@ -8,10 +10,12 @@ export function createServiceConfig(env: Env.ImportMeta) { let other = {} as Record; try { - other = VITE_OTHER_SERVICE_BASE_URL ? JSON.parse(VITE_OTHER_SERVICE_BASE_URL) : {}; + if (VITE_OTHER_SERVICE_BASE_URL) { + other = json5.parse(VITE_OTHER_SERVICE_BASE_URL); + } } catch (error) { // eslint-disable-next-line no-console - console.error('VITE_OTHER_SERVICE_BASE_URL is not a valid JSON string'); + console.error('VITE_OTHER_SERVICE_BASE_URL is not a valid json5 string'); } const httpConfig: App.Service.SimpleServiceConfig = { diff --git a/vite.config.ts b/vite.config.ts index 218d28c..dfc20a9 100644 --- a/vite.config.ts +++ b/vite.config.ts @@ -9,6 +9,8 @@ export default defineConfig(configEnv => { const buildTime = getBuildTime(); + const enableProxy = configEnv.command === 'serve' && !configEnv.isPreview; + return { base: viteEnv.VITE_BASE_URL, resolve: { @@ -32,7 +34,7 @@ export default defineConfig(configEnv => { host: '0.0.0.0', port: 9527, open: true, - proxy: createViteProxy(viteEnv, configEnv.command === 'serve'), + proxy: createViteProxy(viteEnv, enableProxy), fs: { cachedChecks: false }