From 08391ad53ea23cd6766d9e22e161dc16fc79f258 Mon Sep 17 00:00:00 2001 From: sea <45450994+warmthsea@users.noreply.github.com> Date: Wed, 7 Aug 2024 13:42:33 +0800 Subject: [PATCH 1/9] feat: api suffix (#4065) --- apps/web-antd/src/api/core/auth.ts | 4 ++-- apps/web-antd/src/api/core/menu.ts | 2 +- apps/web-antd/src/api/core/user.ts | 2 +- apps/web-antd/src/api/demos/status.ts | 4 ++-- apps/web-antd/src/router/access.ts | 4 ++-- apps/web-antd/src/store/auth.ts | 8 ++++---- .../src/views/demos/features/login-expired/index.vue | 4 ++-- apps/web-ele/src/api/core/auth.ts | 4 ++-- apps/web-ele/src/api/core/menu.ts | 2 +- apps/web-ele/src/api/core/user.ts | 2 +- apps/web-ele/src/router/access.ts | 4 ++-- apps/web-ele/src/store/auth.ts | 8 ++++---- apps/web-naive/src/api/core/auth.ts | 4 ++-- apps/web-naive/src/api/core/menu.ts | 2 +- apps/web-naive/src/api/core/user.ts | 2 +- apps/web-naive/src/router/access.ts | 4 ++-- apps/web-naive/src/store/auth.ts | 8 ++++---- docs/src/guide/essentials/server.md | 10 +++++----- 18 files changed, 39 insertions(+), 39 deletions(-) diff --git a/apps/web-antd/src/api/core/auth.ts b/apps/web-antd/src/api/core/auth.ts index 6950e3bf..548e9dc9 100644 --- a/apps/web-antd/src/api/core/auth.ts +++ b/apps/web-antd/src/api/core/auth.ts @@ -21,13 +21,13 @@ export namespace AuthApi { /** * 登录 */ -export async function login(data: AuthApi.LoginParams) { +export async function loginApi(data: AuthApi.LoginParams) { return requestClient.post('/auth/login', data); } /** * 获取用户权限码 */ -export async function getAccessCodes() { +export async function getAccessCodesApi() { return requestClient.get('/auth/codes'); } diff --git a/apps/web-antd/src/api/core/menu.ts b/apps/web-antd/src/api/core/menu.ts index 62c40f17..9ef60b11 100644 --- a/apps/web-antd/src/api/core/menu.ts +++ b/apps/web-antd/src/api/core/menu.ts @@ -5,6 +5,6 @@ import { requestClient } from '#/api/request'; /** * 获取用户所有菜单 */ -export async function getAllMenus() { +export async function getAllMenusApi() { return requestClient.get('/menu/all'); } diff --git a/apps/web-antd/src/api/core/user.ts b/apps/web-antd/src/api/core/user.ts index 34c14ea9..7e28ea84 100644 --- a/apps/web-antd/src/api/core/user.ts +++ b/apps/web-antd/src/api/core/user.ts @@ -5,6 +5,6 @@ import { requestClient } from '#/api/request'; /** * 获取用户信息 */ -export async function getUserInfo() { +export async function getUserInfoApi() { return requestClient.get('/user/info'); } diff --git a/apps/web-antd/src/api/demos/status.ts b/apps/web-antd/src/api/demos/status.ts index daa3d638..4a75fe7e 100644 --- a/apps/web-antd/src/api/demos/status.ts +++ b/apps/web-antd/src/api/demos/status.ts @@ -3,8 +3,8 @@ import { requestClient } from '#/api/request'; /** * 模拟任意状态码 */ -async function getMockStatus(status: string) { +async function getMockStatusApi(status: string) { return requestClient.get('/status', { params: { status } }); } -export { getMockStatus }; +export { getMockStatusApi }; diff --git a/apps/web-antd/src/router/access.ts b/apps/web-antd/src/router/access.ts index 251db72f..3a48be23 100644 --- a/apps/web-antd/src/router/access.ts +++ b/apps/web-antd/src/router/access.ts @@ -8,7 +8,7 @@ import { preferences } from '@vben/preferences'; import { message } from 'ant-design-vue'; -import { getAllMenus } from '#/api'; +import { getAllMenusApi } from '#/api'; import { BasicLayout, IFrameView } from '#/layouts'; import { $t } from '#/locales'; @@ -29,7 +29,7 @@ async function generateAccess(options: GenerateMenuAndRoutesOptions) { content: `${$t('common.loadingMenu')}...`, duration: 1.5, }); - return await getAllMenus(); + return await getAllMenusApi(); }, // 可以指定没有权限跳转403页面 forbiddenComponent, diff --git a/apps/web-antd/src/store/auth.ts b/apps/web-antd/src/store/auth.ts index c731dea7..59a640ca 100644 --- a/apps/web-antd/src/store/auth.ts +++ b/apps/web-antd/src/store/auth.ts @@ -10,7 +10,7 @@ import { resetAllStores, useAccessStore, useUserStore } from '@vben/stores'; import { notification } from 'ant-design-vue'; import { defineStore } from 'pinia'; -import { getAccessCodes, getUserInfo, login } from '#/api'; +import { getAccessCodesApi, getUserInfoApi, loginApi } from '#/api'; import { $t } from '#/locales'; export const useAuthStore = defineStore('auth', () => { @@ -33,7 +33,7 @@ export const useAuthStore = defineStore('auth', () => { let userInfo: null | UserInfo = null; try { loginLoading.value = true; - const { accessToken, refreshToken } = await login(params); + const { accessToken, refreshToken } = await loginApi(params); // 如果成功获取到 accessToken if (accessToken) { @@ -44,7 +44,7 @@ export const useAuthStore = defineStore('auth', () => { // 获取用户信息并存储到 accessStore 中 const [fetchUserInfoResult, accessCodes] = await Promise.all([ fetchUserInfo(), - getAccessCodes(), + getAccessCodesApi(), ]); userInfo = fetchUserInfoResult; @@ -92,7 +92,7 @@ export const useAuthStore = defineStore('auth', () => { async function fetchUserInfo() { let userInfo: null | UserInfo = null; - userInfo = await getUserInfo(); + userInfo = await getUserInfoApi(); userStore.setUserInfo(userInfo); return userInfo; } diff --git a/apps/web-antd/src/views/demos/features/login-expired/index.vue b/apps/web-antd/src/views/demos/features/login-expired/index.vue index 7f381496..f6c72303 100644 --- a/apps/web-antd/src/views/demos/features/login-expired/index.vue +++ b/apps/web-antd/src/views/demos/features/login-expired/index.vue @@ -5,13 +5,13 @@ import { preferences, updatePreferences } from '@vben/preferences'; import { Button } from 'ant-design-vue'; -import { getMockStatus } from '#/api'; +import { getMockStatusApi } from '#/api'; async function handleClick(type: LoginExpiredModeType) { const loginExpiredMode = preferences.app.loginExpiredMode; updatePreferences({ app: { loginExpiredMode: type } }); - await getMockStatus('401'); + await getMockStatusApi('401'); updatePreferences({ app: { loginExpiredMode } }); } diff --git a/apps/web-ele/src/api/core/auth.ts b/apps/web-ele/src/api/core/auth.ts index 6950e3bf..548e9dc9 100644 --- a/apps/web-ele/src/api/core/auth.ts +++ b/apps/web-ele/src/api/core/auth.ts @@ -21,13 +21,13 @@ export namespace AuthApi { /** * 登录 */ -export async function login(data: AuthApi.LoginParams) { +export async function loginApi(data: AuthApi.LoginParams) { return requestClient.post('/auth/login', data); } /** * 获取用户权限码 */ -export async function getAccessCodes() { +export async function getAccessCodesApi() { return requestClient.get('/auth/codes'); } diff --git a/apps/web-ele/src/api/core/menu.ts b/apps/web-ele/src/api/core/menu.ts index 62c40f17..9ef60b11 100644 --- a/apps/web-ele/src/api/core/menu.ts +++ b/apps/web-ele/src/api/core/menu.ts @@ -5,6 +5,6 @@ import { requestClient } from '#/api/request'; /** * 获取用户所有菜单 */ -export async function getAllMenus() { +export async function getAllMenusApi() { return requestClient.get('/menu/all'); } diff --git a/apps/web-ele/src/api/core/user.ts b/apps/web-ele/src/api/core/user.ts index 34c14ea9..7e28ea84 100644 --- a/apps/web-ele/src/api/core/user.ts +++ b/apps/web-ele/src/api/core/user.ts @@ -5,6 +5,6 @@ import { requestClient } from '#/api/request'; /** * 获取用户信息 */ -export async function getUserInfo() { +export async function getUserInfoApi() { return requestClient.get('/user/info'); } diff --git a/apps/web-ele/src/router/access.ts b/apps/web-ele/src/router/access.ts index a123006f..2d07c892 100644 --- a/apps/web-ele/src/router/access.ts +++ b/apps/web-ele/src/router/access.ts @@ -8,7 +8,7 @@ import { preferences } from '@vben/preferences'; import { ElMessage } from 'element-plus'; -import { getAllMenus } from '#/api'; +import { getAllMenusApi } from '#/api'; import { BasicLayout, IFrameView } from '#/layouts'; import { $t } from '#/locales'; @@ -29,7 +29,7 @@ async function generateAccess(options: GenerateMenuAndRoutesOptions) { duration: 1500, message: `${$t('common.loadingMenu')}...`, }); - return await getAllMenus(); + return await getAllMenusApi(); }, // 可以指定没有权限跳转403页面 forbiddenComponent, diff --git a/apps/web-ele/src/store/auth.ts b/apps/web-ele/src/store/auth.ts index 0e711773..c2aeef5c 100644 --- a/apps/web-ele/src/store/auth.ts +++ b/apps/web-ele/src/store/auth.ts @@ -10,7 +10,7 @@ import { resetAllStores, useAccessStore, useUserStore } from '@vben/stores'; import { ElNotification } from 'element-plus'; import { defineStore } from 'pinia'; -import { getAccessCodes, getUserInfo, login } from '#/api'; +import { getAccessCodesApi, getUserInfoApi, loginApi } from '#/api'; import { $t } from '#/locales'; export const useAuthStore = defineStore('auth', () => { @@ -33,7 +33,7 @@ export const useAuthStore = defineStore('auth', () => { let userInfo: null | UserInfo = null; try { loginLoading.value = true; - const { accessToken, refreshToken } = await login(params); + const { accessToken, refreshToken } = await loginApi(params); // 如果成功获取到 accessToken if (accessToken) { @@ -44,7 +44,7 @@ export const useAuthStore = defineStore('auth', () => { // 获取用户信息并存储到 accessStore 中 const [fetchUserInfoResult, accessCodes] = await Promise.all([ fetchUserInfo(), - getAccessCodes(), + getAccessCodesApi(), ]); userInfo = fetchUserInfoResult; @@ -92,7 +92,7 @@ export const useAuthStore = defineStore('auth', () => { async function fetchUserInfo() { let userInfo: null | UserInfo = null; - userInfo = await getUserInfo(); + userInfo = await getUserInfoApi(); userStore.setUserInfo(userInfo); return userInfo; } diff --git a/apps/web-naive/src/api/core/auth.ts b/apps/web-naive/src/api/core/auth.ts index 6950e3bf..548e9dc9 100644 --- a/apps/web-naive/src/api/core/auth.ts +++ b/apps/web-naive/src/api/core/auth.ts @@ -21,13 +21,13 @@ export namespace AuthApi { /** * 登录 */ -export async function login(data: AuthApi.LoginParams) { +export async function loginApi(data: AuthApi.LoginParams) { return requestClient.post('/auth/login', data); } /** * 获取用户权限码 */ -export async function getAccessCodes() { +export async function getAccessCodesApi() { return requestClient.get('/auth/codes'); } diff --git a/apps/web-naive/src/api/core/menu.ts b/apps/web-naive/src/api/core/menu.ts index 62c40f17..9ef60b11 100644 --- a/apps/web-naive/src/api/core/menu.ts +++ b/apps/web-naive/src/api/core/menu.ts @@ -5,6 +5,6 @@ import { requestClient } from '#/api/request'; /** * 获取用户所有菜单 */ -export async function getAllMenus() { +export async function getAllMenusApi() { return requestClient.get('/menu/all'); } diff --git a/apps/web-naive/src/api/core/user.ts b/apps/web-naive/src/api/core/user.ts index 34c14ea9..7e28ea84 100644 --- a/apps/web-naive/src/api/core/user.ts +++ b/apps/web-naive/src/api/core/user.ts @@ -5,6 +5,6 @@ import { requestClient } from '#/api/request'; /** * 获取用户信息 */ -export async function getUserInfo() { +export async function getUserInfoApi() { return requestClient.get('/user/info'); } diff --git a/apps/web-naive/src/router/access.ts b/apps/web-naive/src/router/access.ts index 503a645c..dc90e891 100644 --- a/apps/web-naive/src/router/access.ts +++ b/apps/web-naive/src/router/access.ts @@ -6,7 +6,7 @@ import type { import { generateAccessible } from '@vben/access'; import { preferences } from '@vben/preferences'; -import { getAllMenus } from '#/api'; +import { getAllMenusApi } from '#/api'; import { BasicLayout, IFrameView } from '#/layouts'; import { $t } from '#/locales'; import { message } from '#/naive'; @@ -27,7 +27,7 @@ async function generateAccess(options: GenerateMenuAndRoutesOptions) { message.loading(`${$t('common.loadingMenu')}...`, { duration: 1.5, }); - return await getAllMenus(); + return await getAllMenusApi(); }, // 可以指定没有权限跳转403页面 forbiddenComponent, diff --git a/apps/web-naive/src/store/auth.ts b/apps/web-naive/src/store/auth.ts index 9ad87257..bb0c7587 100644 --- a/apps/web-naive/src/store/auth.ts +++ b/apps/web-naive/src/store/auth.ts @@ -9,7 +9,7 @@ import { resetAllStores, useAccessStore, useUserStore } from '@vben/stores'; import { defineStore } from 'pinia'; -import { getAccessCodes, getUserInfo, login } from '#/api'; +import { getAccessCodesApi, getUserInfoApi, loginApi } from '#/api'; import { $t } from '#/locales'; import { notification } from '#/naive'; @@ -33,7 +33,7 @@ export const useAuthStore = defineStore('auth', () => { let userInfo: null | UserInfo = null; try { loginLoading.value = true; - const { accessToken, refreshToken } = await login(params); + const { accessToken, refreshToken } = await loginApi(params); // 如果成功获取到 accessToken if (accessToken) { @@ -44,7 +44,7 @@ export const useAuthStore = defineStore('auth', () => { // 获取用户信息并存储到 accessStore 中 const [fetchUserInfoResult, accessCodes] = await Promise.all([ fetchUserInfo(), - getAccessCodes(), + getAccessCodesApi(), ]); userInfo = fetchUserInfoResult; @@ -92,7 +92,7 @@ export const useAuthStore = defineStore('auth', () => { async function fetchUserInfo() { let userInfo: null | UserInfo = null; - userInfo = await getUserInfo(); + userInfo = await getUserInfoApi(); userStore.setUserInfo(userInfo); return userInfo; } diff --git a/docs/src/guide/essentials/server.md b/docs/src/guide/essentials/server.md index ab764f9c..5fe13967 100644 --- a/docs/src/guide/essentials/server.md +++ b/docs/src/guide/essentials/server.md @@ -117,7 +117,7 @@ VITE_GLOB_API_URL=https://mock-napi.vben.pro/api ```ts import { requestClient } from '#/api/request'; -export async function getUserInfo() { +export async function getUserInfoApi() { return requestClient.get('/user/info'); } ``` @@ -127,15 +127,15 @@ export async function getUserInfo() { ```ts import { requestClient } from '#/api/request'; -export async function saveUser(user: UserInfo) { +export async function saveUserApi(user: UserInfo) { return requestClient.post('/user', user); } -export async function saveUser(user: UserInfo) { +export async function saveUserApi(user: UserInfo) { return requestClient.put('/user', user); } -export async function saveUser(user: UserInfo) { +export async function saveUserApi(user: UserInfo) { const url = user.id ? `/user/${user.id}` : '/user/'; return requestClient.request(url, { data: user, @@ -150,7 +150,7 @@ export async function saveUser(user: UserInfo) { ```ts import { requestClient } from '#/api/request'; -export async function deleteUser(user: UserInfo) { +export async function deleteUserApi(user: UserInfo) { return requestClient.delete(`/user/${user.id}`, user); } ``` From a629262c9d1e5aaaf79536ed0b19c7f12db42969 Mon Sep 17 00:00:00 2001 From: jinmao88 <50581550+jinmao88@users.noreply.github.com> Date: Wed, 7 Aug 2024 15:43:04 +0800 Subject: [PATCH 2/9] =?UTF-8?q?chore:=20=E6=9B=B4=E6=96=B0=E7=A4=BE?= =?UTF-8?q?=E5=8C=BA=E4=BA=A4=E6=B5=81=E7=BE=A4=E4=BF=A1=E6=81=AF=EF=BC=8C?= =?UTF-8?q?=E5=8C=85=E6=8B=ACQQ=E9=A2=91=E9=81=93=E5=92=8CQQ=E7=BE=A4?= =?UTF-8?q?=E7=9A=84=E6=96=B0=E9=93=BE=E6=8E=A5=20(#4068)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- docs/src/commercial/community.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/src/commercial/community.md b/docs/src/commercial/community.md index 6eb27737..1c870ab7 100644 --- a/docs/src/commercial/community.md +++ b/docs/src/commercial/community.md @@ -2,8 +2,8 @@ 社区交流群主要是为了方便大家交流,提问,解答问题,分享经验等。偏自助方式,如果你有问题,可以通过以下方式加入社区交流群: -- [QQ频道](https://qun.qq.com/qqweb/qunpro/share?_wv=3&_wwv=128&appChannel=share&inviteCode=1Zp3KrdpaiB&jumpsource=shorturl#/pc):主要提供问题解答,分享经验等。 -- [QQ群](https://qm.qq.com/cgi-bin/qm/qr?_wv=1027&k=mjZmlhgVzzUxvdxllB6C1vHpX8O8QRL0&authKey=DBdFbBwERmfaKY95JvRWqLCJIRGJAmKyZbrpzZ41EKDMZ5SR6MfbjOBaaNRN73fr&noverify=0&group_code=4286109):主要使用者的交流群。 +- [QQ频道](https://pd.qq.com/s/16p8lvvob):推荐,主要提供问题解答,分享经验等。 +- QQ群:[1群(满)](https://qm.qq.com/q/YacMHPYAMu)、[2群](https://qm.qq.com/q/ajVKZvFICk),主要使用者的交流群。 - [Discord](https://discord.com/invite/VU62jTecad): 主要提供问题解答,分享经验等。 ## 微信群 From 861f39b519f33099aab29c4f2a42a036eb45555f Mon Sep 17 00:00:00 2001 From: jinmao88 <50581550+jinmao88@users.noreply.github.com> Date: Wed, 7 Aug 2024 17:27:05 +0800 Subject: [PATCH 3/9] =?UTF-8?q?chore:=20=E6=B7=BB=E5=8A=A03=E7=BE=A4?= =?UTF-8?q?=E9=93=BE=E6=8E=A5=20(#4069)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- docs/src/commercial/community.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/src/commercial/community.md b/docs/src/commercial/community.md index 1c870ab7..35fc4054 100644 --- a/docs/src/commercial/community.md +++ b/docs/src/commercial/community.md @@ -3,7 +3,7 @@ 社区交流群主要是为了方便大家交流,提问,解答问题,分享经验等。偏自助方式,如果你有问题,可以通过以下方式加入社区交流群: - [QQ频道](https://pd.qq.com/s/16p8lvvob):推荐,主要提供问题解答,分享经验等。 -- QQ群:[1群(满)](https://qm.qq.com/q/YacMHPYAMu)、[2群](https://qm.qq.com/q/ajVKZvFICk),主要使用者的交流群。 +- QQ群:[1群(满)](https://qm.qq.com/q/YacMHPYAMu)、[2群(满)](https://qm.qq.com/q/ajVKZvFICk)、[3群](https://qm.qq.com/q/36zdwThP2E),主要使用者的交流群。 - [Discord](https://discord.com/invite/VU62jTecad): 主要提供问题解答,分享经验等。 ## 微信群 From 1d38fb647e814ce4741d3c63cc9ace16f6955a50 Mon Sep 17 00:00:00 2001 From: Li Kui <90845831+likui628@users.noreply.github.com> Date: Wed, 7 Aug 2024 21:28:25 +0800 Subject: [PATCH 4/9] refactor: use @ant-design/fast-color instead (#4070) * refactor: Use @ant-design/fast-color instead * fix: test failed * chore: remove isValidColor All FastColor objects are valid. So isValid is always true. FastColor("not-a-color") -> `#000000` * refactor: rename directory `colorful` to `color` * fix: ci fail --- packages/@core/base/shared/build.config.ts | 2 +- packages/@core/base/shared/package.json | 10 +- .../src/{colorful => color}/convert.test.ts | 20 +- .../@core/base/shared/src/color/convert.ts | 38 + .../src/{colorful => color}/generator.ts | 5 +- .../shared/src/{colorful => color}/index.ts | 0 .../@core/base/shared/src/colorful/convert.ts | 73 - packages/@core/base/shared/src/index.ts | 2 +- .../src/components/menu-badge/menu-badge.vue | 6 +- .../effects/hooks/src/use-design-tokens.ts | 8 +- .../preferences/blocks/theme/builtin.vue | 12 +- packages/utils/src/index.ts | 2 +- pnpm-lock.yaml | 1773 ++++++++--------- 13 files changed, 871 insertions(+), 1080 deletions(-) rename packages/@core/base/shared/src/{colorful => color}/convert.test.ts (65%) create mode 100644 packages/@core/base/shared/src/color/convert.ts rename packages/@core/base/shared/src/{colorful => color}/generator.ts (85%) rename packages/@core/base/shared/src/{colorful => color}/index.ts (100%) delete mode 100644 packages/@core/base/shared/src/colorful/convert.ts diff --git a/packages/@core/base/shared/build.config.ts b/packages/@core/base/shared/build.config.ts index 79cc4a2b..4192eb26 100644 --- a/packages/@core/base/shared/build.config.ts +++ b/packages/@core/base/shared/build.config.ts @@ -7,7 +7,7 @@ export default defineBuildConfig({ 'src/index', 'src/constants/index', 'src/utils/index', - 'src/colorful/index', + 'src/color/index', 'src/cache/index', ], }); diff --git a/packages/@core/base/shared/package.json b/packages/@core/base/shared/package.json index bdeedb39..924a37c5 100644 --- a/packages/@core/base/shared/package.json +++ b/packages/@core/base/shared/package.json @@ -35,10 +35,10 @@ "development": "./src/utils/index.ts", "default": "./dist/utils/index.mjs" }, - "./colorful": { - "types": "./src/colorful/index.ts", - "development": "./src/colorful/index.ts", - "default": "./dist/colorful/index.mjs" + "./color": { + "types": "./src/color/index.ts", + "development": "./src/color/index.ts", + "default": "./dist/color/index.mjs" }, "./cache": { "types": "./src/cache/index.ts", @@ -55,7 +55,7 @@ } }, "dependencies": { - "@ctrl/tinycolor": "^4.1.0", + "@ant-design/fast-color": "^2.0.5", "@vue/shared": "^3.4.35", "clsx": "^2.1.1", "defu": "^6.1.4", diff --git a/packages/@core/base/shared/src/colorful/convert.test.ts b/packages/@core/base/shared/src/color/convert.test.ts similarity index 65% rename from packages/@core/base/shared/src/colorful/convert.test.ts rename to packages/@core/base/shared/src/color/convert.test.ts index 886bb739..bdd67e78 100644 --- a/packages/@core/base/shared/src/colorful/convert.test.ts +++ b/packages/@core/base/shared/src/color/convert.test.ts @@ -1,6 +1,6 @@ import { describe, expect, it } from 'vitest'; -import { convertToHsl, convertToHslCssVar, isValidColor } from './convert'; +import { convertToHsl, convertToHslCssVar, convertToRgb } from './convert'; describe('color conversion functions', () => { it('should correctly convert color to HSL format', () => { @@ -26,16 +26,16 @@ describe('color conversion functions', () => { const expectedHsl = '0 100% 50% / 0.5'; expect(convertToHslCssVar(color)).toEqual(expectedHsl); }); -}); -describe('isValidColor', () => { - it('isValidColor function', () => { - // 测试有效颜色 - expect(isValidColor('blue')).toBe(true); - expect(isValidColor('#000000')).toBe(true); + it('should correctly convert color to RGB CSS variable format', () => { + const color = 'hsl(284, 100%, 50%)'; + const expectedRgb = 'rgb(187,0,255)'; + expect(convertToRgb(color)).toEqual(expectedRgb); + }); - // 测试无效颜色 - expect(isValidColor('invalid color')).toBe(false); - expect(isValidColor()).toBe(false); + it('should correctly convert color with alpha to RGBA CSS variable format', () => { + const color = 'hsla(284, 100%, 50%, 0.92)'; + const expectedRgba = 'rgba(187,0,255,0.92)'; + expect(convertToRgb(color)).toEqual(expectedRgba); }); }); diff --git a/packages/@core/base/shared/src/color/convert.ts b/packages/@core/base/shared/src/color/convert.ts new file mode 100644 index 00000000..23bb7802 --- /dev/null +++ b/packages/@core/base/shared/src/color/convert.ts @@ -0,0 +1,38 @@ +import { FastColor } from '@ant-design/fast-color'; + +const Color = FastColor; + +/** + * 将颜色转换为HSL格式。 + * + * HSL是一种颜色模型,包括色相(Hue)、饱和度(Saturation)和亮度(Lightness)三个部分。 + * + * @param {string} color 输入的颜色。 + * @returns {string} HSL格式的颜色字符串。 + */ +function convertToHsl(color: string): string { + const { a, h, l, s } = new Color(color).toHsl(); + const hsl = `hsl(${Math.round(h)} ${Math.round(s * 100)}% ${Math.round(l * 100)}%)`; + return a < 1 ? `${hsl} ${a}` : hsl; +} + +/** + * 将颜色转换为HSL CSS变量。 + * + * 这个函数与convertToHsl函数类似,但是返回的字符串格式稍有不同, + * 以便可以作为CSS变量使用。 + * + * @param {string} color 输入的颜色。 + * @returns {string} 可以作为CSS变量使用的HSL格式的颜色字符串。 + */ +function convertToHslCssVar(color: string): string { + const { a, h, l, s } = new Color(color).toHsl(); + const hsl = `${Math.round(h)} ${Math.round(s * 100)}% ${Math.round(l * 100)}%`; + return a < 1 ? `${hsl} / ${a}` : hsl; +} + +function convertToRgb(color: string): string { + return new Color(color).toRgbString(); +} + +export { Color, convertToHsl, convertToHslCssVar, convertToRgb }; diff --git a/packages/@core/base/shared/src/colorful/generator.ts b/packages/@core/base/shared/src/color/generator.ts similarity index 85% rename from packages/@core/base/shared/src/colorful/generator.ts rename to packages/@core/base/shared/src/color/generator.ts index 547d111d..a03b4e00 100644 --- a/packages/@core/base/shared/src/colorful/generator.ts +++ b/packages/@core/base/shared/src/color/generator.ts @@ -1,7 +1,6 @@ -import { TinyColor } from '@ctrl/tinycolor'; import { getColors } from 'theme-colors'; -import { convertToHslCssVar } from './convert'; +import { Color, convertToHslCssVar } from './convert'; interface ColorItem { alias?: string; @@ -14,7 +13,7 @@ function generatorColorVariables(colorItems: ColorItem[]) { colorItems.forEach(({ alias, color, name }) => { if (color) { - const colorsMap = getColors(new TinyColor(color).toHexString()); + const colorsMap = getColors(new Color(color).toHexString()); let mainColor = colorsMap['500']; const colorKeys = Object.keys(colorsMap); diff --git a/packages/@core/base/shared/src/colorful/index.ts b/packages/@core/base/shared/src/color/index.ts similarity index 100% rename from packages/@core/base/shared/src/colorful/index.ts rename to packages/@core/base/shared/src/color/index.ts diff --git a/packages/@core/base/shared/src/colorful/convert.ts b/packages/@core/base/shared/src/colorful/convert.ts deleted file mode 100644 index f4fcc819..00000000 --- a/packages/@core/base/shared/src/colorful/convert.ts +++ /dev/null @@ -1,73 +0,0 @@ -import { TinyColor } from '@ctrl/tinycolor'; -/** - * 将颜色转换为HSL格式。 - * - * HSL是一种颜色模型,包括色相(Hue)、饱和度(Saturation)和亮度(Lightness)三个部分。 - * 这个函数使用TinyColor库将输入的颜色转换为HSL格式,并返回一个字符串。 - * - * @param {string} color 输入的颜色,可以是任何TinyColor支持的颜色格式。 - * @returns {string} HSL格式的颜色字符串。 - */ -function convertToHsl(color: string): string { - const { a, h, l, s } = new TinyColor(color).toHsl(); - const hsl = `hsl(${Math.round(h)} ${Math.round(s * 100)}% ${Math.round(l * 100)}%)`; - return a < 1 ? `${hsl} ${a}` : hsl; -} - -/** - * 将颜色转换为HSL CSS变量。 - * - * 这个函数与convertToHsl函数类似,但是返回的字符串格式稍有不同, - * 以便可以作为CSS变量使用。 - * - * @param {string} color 输入的颜色,可以是任何TinyColor支持的颜色格式。 - * @returns {string} 可以作为CSS变量使用的HSL格式的颜色字符串。 - */ -function convertToHslCssVar(color: string): string { - const { a, h, l, s } = new TinyColor(color).toHsl(); - const hsl = `${Math.round(h)} ${Math.round(s * 100)}% ${Math.round(l * 100)}%`; - return a < 1 ? `${hsl} / ${a}` : hsl; -} - -/** - * 检查颜色是否有效 - * @param {string} color - 待检查的颜色 - * 如果颜色有效返回true,否则返回false - */ -function isValidColor(color?: string) { - if (!color) { - return false; - } - return new TinyColor(color).isValid; -} -/** - * 将HLS字符串转换为RGB颜色字符串 - * - * 本函数接收一个表示HLS值的字符串,移除其中的度量单位, - * 并将其转换为TinyColor对象,以便进行颜色处理。 - * 如果转换后的颜色无效,则直接返回原始字符串; - * 否则,返回转换后的RGB颜色字符串 - * - * @param str 表示HLS颜色值的字符串,可能包含度量单位如'deg'、'grad'、'rad'或'turn' - * @returns 如果颜色值有效,则返回对应的RGB颜色字符串;如果无效,则返回原始字符串 - */ -function hlsStringToRGBString(str: string): string { - // 移除HLS字符串中的度量单位,以便正确解析 - const color = new TinyColor( - `hsl(${str.replaceAll(/deg|grad|rad|turn/g, '')})`, - ); - // 检查颜色是否有效,如果无效则直接返回原始字符串 - if (!color.isValid) { - return str; - } - // 返回转换后的RGB颜色字符串 - return color.toRgbString(); -} - -export { - convertToHsl, - convertToHslCssVar, - hlsStringToRGBString, - isValidColor, - TinyColor, -}; diff --git a/packages/@core/base/shared/src/index.ts b/packages/@core/base/shared/src/index.ts index e4667cc2..55bf8502 100644 --- a/packages/@core/base/shared/src/index.ts +++ b/packages/@core/base/shared/src/index.ts @@ -1,4 +1,4 @@ export * from './cache'; -export * from './colorful'; +export * from './color'; export * from './constants'; export * from './utils'; diff --git a/packages/@core/ui-kit/shadcn-ui/src/components/menu-badge/menu-badge.vue b/packages/@core/ui-kit/shadcn-ui/src/components/menu-badge/menu-badge.vue index 0f5259fd..fa1e2953 100644 --- a/packages/@core/ui-kit/shadcn-ui/src/components/menu-badge/menu-badge.vue +++ b/packages/@core/ui-kit/shadcn-ui/src/components/menu-badge/menu-badge.vue @@ -3,7 +3,7 @@ import type { MenuRecordBadgeRaw } from '@vben-core/typings'; import { computed } from 'vue'; -import { isValidColor } from '@vben-core/shared'; +import { convertToRgb } from '@vben-core/shared'; import BadgeDot from './menu-badge-dot.vue'; @@ -34,9 +34,9 @@ const badgeClass = computed(() => { }); const badgeStyle = computed(() => { - if (badgeClass.value && isValidColor(badgeClass.value)) { + if (badgeClass.value) { return { - backgroundColor: badgeClass.value, + backgroundColor: convertToRgb(badgeClass.value), }; } return {}; diff --git a/packages/effects/hooks/src/use-design-tokens.ts b/packages/effects/hooks/src/use-design-tokens.ts index b4719cd9..8cf4f922 100644 --- a/packages/effects/hooks/src/use-design-tokens.ts +++ b/packages/effects/hooks/src/use-design-tokens.ts @@ -1,7 +1,7 @@ import { reactive, watch } from 'vue'; import { preferences } from '@vben/preferences'; -import { hlsStringToRGBString, updateCSSVariables } from '@vben/utils'; +import { convertToRgb, updateCSSVariables } from '@vben/utils'; /** * 用于适配各个框架的设计系统 @@ -102,7 +102,7 @@ export function useNaiveDesignTokens() { const getCssVariableValue = (variable: string, isColor: boolean = true) => { const value = rootStyles.getPropertyValue(variable); - return isColor ? hlsStringToRGBString(value) : value; + return isColor ? convertToRgb(`hsl(${value})`) : value; }; watch( @@ -145,8 +145,6 @@ export function useNaiveDesignTokens() { commonTokens.invertedColor = getCssVariableValue('--background-deep'); commonTokens.borderRadius = getCssVariableValue('--radius', false); - - // antDesignTokens.colorBgMask = getCssVariableValue('--overlay'); }, { immediate: true }, ); @@ -160,7 +158,7 @@ export function useElementPlusDesignTokens() { const getCssVariableValue = (variable: string, isColor: boolean = true) => { const value = rootStyles.getPropertyValue(variable); - return isColor ? `hsl(${value})` : value; + return isColor ? convertToRgb(`hsl(${value})`) : value; }; watch( () => preferences.theme, diff --git a/packages/effects/layouts/src/widgets/preferences/blocks/theme/builtin.vue b/packages/effects/layouts/src/widgets/preferences/blocks/theme/builtin.vue index 3c94ca68..50f530cd 100644 --- a/packages/effects/layouts/src/widgets/preferences/blocks/theme/builtin.vue +++ b/packages/effects/layouts/src/widgets/preferences/blocks/theme/builtin.vue @@ -9,7 +9,7 @@ import { BUILT_IN_THEME_PRESETS, type BuiltinThemePreset, } from '@vben/preferences'; -import { convertToHsl, TinyColor } from '@vben/utils'; +import { Color, convertToHsl } from '@vben/utils'; defineOptions({ name: 'PreferenceBuiltinTheme', @@ -22,17 +22,11 @@ const modelValue = defineModel({ default: 'default' }); const themeColorPrimary = defineModel('themeColorPrimary'); const inputValue = computed(() => { - return new TinyColor(themeColorPrimary.value).toHexString(); + return new Color(themeColorPrimary.value || '').toHexString(); }); const builtinThemePresets = computed(() => { - return [ - // { - // color: 'hsl(231 98% 65%)', - // type: 'default', - // }, - ...BUILT_IN_THEME_PRESETS, - ]; + return [...BUILT_IN_THEME_PRESETS]; }); function typeView(name: BuiltinThemeType) { diff --git a/packages/utils/src/index.ts b/packages/utils/src/index.ts index 97a18e58..9bf575c3 100644 --- a/packages/utils/src/index.ts +++ b/packages/utils/src/index.ts @@ -1,3 +1,3 @@ export * from './helpers'; -export * from '@vben-core/shared/colorful'; +export * from '@vben-core/shared/color'; export * from '@vben-core/shared/utils'; diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 1be47301..47ca3a8c 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -60,7 +60,7 @@ importers: version: 2.4.6 autoprefixer: specifier: ^10.4.20 - version: 10.4.20(postcss@8.4.40) + version: 10.4.20(postcss@8.4.41) cross-env: specifier: ^7.0.3 version: 7.0.3 @@ -87,7 +87,7 @@ importers: version: 3.4.7 turbo: specifier: ^2.0.11 - version: 2.0.11 + version: 2.0.12 typescript: specifier: ^5.5.4 version: 5.5.4 @@ -156,22 +156,22 @@ importers: version: link:../../packages/utils '@vueuse/core': specifier: ^10.11.0 - version: 10.11.0(vue@3.4.35(typescript@5.5.4)) + version: 10.11.0(vue@3.4.36(typescript@5.5.4)) ant-design-vue: specifier: ^4.2.3 - version: 4.2.3(vue@3.4.35(typescript@5.5.4)) + version: 4.2.3(vue@3.4.36(typescript@5.5.4)) dayjs: specifier: ^1.11.12 version: 1.11.12 pinia: specifier: 2.2.0 - version: 2.2.0(typescript@5.5.4)(vue@3.4.35(typescript@5.5.4)) + version: 2.2.0(typescript@5.5.4)(vue@3.4.36(typescript@5.5.4)) vue: specifier: ^3.4.35 - version: 3.4.35(typescript@5.5.4) + version: 3.4.36(typescript@5.5.4) vue-router: specifier: ^4.4.2 - version: 4.4.2(vue@3.4.35(typescript@5.5.4)) + version: 4.4.3(vue@3.4.36(typescript@5.5.4)) apps/web-ele: dependencies: @@ -219,22 +219,22 @@ importers: version: link:../../packages/utils '@vueuse/core': specifier: ^10.11.0 - version: 10.11.0(vue@3.4.35(typescript@5.5.4)) + version: 10.11.0(vue@3.4.36(typescript@5.5.4)) dayjs: specifier: ^1.11.12 version: 1.11.12 element-plus: specifier: ^2.7.8 - version: 2.7.8(vue@3.4.35(typescript@5.5.4)) + version: 2.7.8(vue@3.4.36(typescript@5.5.4)) pinia: specifier: 2.2.0 - version: 2.2.0(typescript@5.5.4)(vue@3.4.35(typescript@5.5.4)) + version: 2.2.0(typescript@5.5.4)(vue@3.4.36(typescript@5.5.4)) vue: specifier: ^3.4.35 - version: 3.4.35(typescript@5.5.4) + version: 3.4.36(typescript@5.5.4) vue-router: specifier: ^4.4.2 - version: 4.4.2(vue@3.4.35(typescript@5.5.4)) + version: 4.4.3(vue@3.4.36(typescript@5.5.4)) devDependencies: unplugin-element-plus: specifier: ^0.8.0 @@ -286,19 +286,19 @@ importers: version: link:../../packages/utils '@vueuse/core': specifier: ^10.11.0 - version: 10.11.0(vue@3.4.35(typescript@5.5.4)) + version: 10.11.0(vue@3.4.36(typescript@5.5.4)) 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.36(typescript@5.5.4)) pinia: specifier: 2.2.0 - version: 2.2.0(typescript@5.5.4)(vue@3.4.35(typescript@5.5.4)) + version: 2.2.0(typescript@5.5.4)(vue@3.4.36(typescript@5.5.4)) vue: specifier: ^3.4.35 - version: 3.4.35(typescript@5.5.4) + version: 3.4.36(typescript@5.5.4) vue-router: specifier: ^4.4.2 - version: 4.4.2(vue@3.4.35(typescript@5.5.4)) + version: 4.4.3(vue@3.4.36(typescript@5.5.4)) docs: dependencies: @@ -311,16 +311,16 @@ importers: version: 0.5.0(vite-plugin-pwa@0.20.1(vite@5.3.5(@types/node@22.1.0)(sass@1.77.8)(terser@5.31.3))(workbox-build@7.1.1)(workbox-window@7.1.0)) vitepress: specifier: ^1.3.2 - version: 1.3.2(@algolia/client-search@4.24.0)(@types/node@22.1.0)(async-validator@4.2.5)(axios@1.7.3)(nprogress@0.2.0)(postcss@8.4.40)(qrcode@1.5.3)(sass@1.77.8)(search-insights@2.15.0)(sortablejs@1.15.2)(terser@5.31.3)(typescript@5.5.4) + version: 1.3.2(@algolia/client-search@4.24.0)(@types/node@22.1.0)(async-validator@4.2.5)(axios@1.7.3)(nprogress@0.2.0)(postcss@8.4.41)(qrcode@1.5.4)(sass@1.77.8)(search-insights@2.16.0)(sortablejs@1.15.2)(terser@5.31.3)(typescript@5.5.4) vue: specifier: ^3.4.35 - version: 3.4.35(typescript@5.5.4) + version: 3.4.36(typescript@5.5.4) internal/lint-configs/commitlint-config: dependencies: '@commitlint/cli': specifier: ^19.3.0 - version: 19.3.0(@types/node@22.1.0)(typescript@5.5.4) + version: 19.4.0(@types/node@22.1.0)(typescript@5.5.4) '@commitlint/config-conventional': specifier: ^19.2.2 version: 19.2.2 @@ -341,7 +341,7 @@ importers: dependencies: eslint-config-turbo: specifier: ^2.0.11 - version: 2.0.11(eslint@9.8.0) + version: 2.0.12(eslint@9.8.0) eslint-plugin-command: specifier: ^0.2.3 version: 0.2.3(eslint@9.8.0) @@ -436,13 +436,13 @@ importers: devDependencies: postcss: specifier: ^8.4.40 - version: 8.4.40 + version: 8.4.41 postcss-html: specifier: ^1.7.0 version: 1.7.0 postcss-scss: specifier: ^4.0.9 - version: 4.0.9(postcss@8.4.40) + version: 4.0.9(postcss@8.4.41) prettier: specifier: ^3.3.3 version: 3.3.3 @@ -454,7 +454,7 @@ importers: version: 14.0.1(stylelint@16.8.1(typescript@5.5.4)) stylelint-config-recommended-scss: specifier: ^14.1.0 - version: 14.1.0(postcss@8.4.40)(stylelint@16.8.1(typescript@5.5.4)) + version: 14.1.0(postcss@8.4.41)(stylelint@16.8.1(typescript@5.5.4)) stylelint-config-recommended-vue: specifier: ^1.5.0 version: 1.5.0(postcss-html@1.7.0)(stylelint@16.8.1(typescript@5.5.4)) @@ -521,28 +521,28 @@ importers: version: 1.1.2 '@tailwindcss/nesting': specifier: 0.0.0-insiders.565cd3e - version: 0.0.0-insiders.565cd3e(postcss@8.4.40) + version: 0.0.0-insiders.565cd3e(postcss@8.4.41) '@tailwindcss/typography': specifier: ^0.5.13 version: 0.5.13(tailwindcss@3.4.7) autoprefixer: specifier: ^10.4.20 - version: 10.4.20(postcss@8.4.40) + version: 10.4.20(postcss@8.4.41) cssnano: specifier: ^7.0.4 - version: 7.0.4(postcss@8.4.40) + version: 7.0.4(postcss@8.4.41) postcss: specifier: ^8.4.40 - version: 8.4.40 + version: 8.4.41 postcss-antd-fixes: specifier: ^0.2.0 - version: 0.2.0(postcss@8.4.40) + version: 0.2.0(postcss@8.4.41) postcss-import: specifier: ^16.1.0 - version: 16.1.0(postcss@8.4.40) + version: 16.1.0(postcss@8.4.41) postcss-preset-env: specifier: ^10.0.0 - version: 10.0.0(postcss@8.4.40) + version: 10.0.0(postcss@8.4.41) tailwindcss: specifier: ^3.4.7 version: 3.4.7 @@ -570,10 +570,10 @@ importers: dependencies: '@intlify/unplugin-vue-i18n': specifier: ^4.0.0 - version: 4.0.0(rollup@4.20.0)(vue-i18n@9.13.1(vue@3.4.35(typescript@5.5.4))) + version: 4.0.0(rollup@4.20.0)(vue-i18n@9.13.1(vue@3.4.36(typescript@5.5.4))) '@jspm/generator': specifier: ^2.1.2 - version: 2.1.2 + version: 2.1.3 cheerio: specifier: 1.0.0-rc.12 version: 1.0.0-rc.12 @@ -597,7 +597,7 @@ importers: version: 0.20.1(vite@5.3.5(@types/node@22.1.0)(sass@1.77.8)(terser@5.31.3))(workbox-build@7.1.1)(workbox-window@7.1.0) vite-plugin-vue-devtools: specifier: ^7.3.7 - version: 7.3.7(rollup@4.20.0)(vite@5.3.5(@types/node@22.1.0)(sass@1.77.8)(terser@5.31.3))(vue@3.4.35(typescript@5.5.4)) + version: 7.3.7(rollup@4.20.0)(vite@5.3.5(@types/node@22.1.0)(sass@1.77.8)(terser@5.31.3))(vue@3.4.36(typescript@5.5.4)) devDependencies: '@types/html-minifier-terser': specifier: ^7.0.2 @@ -607,10 +607,10 @@ importers: version: link:../node-utils '@vitejs/plugin-vue': specifier: ^5.1.2 - version: 5.1.2(vite@5.3.5(@types/node@22.1.0)(sass@1.77.8)(terser@5.31.3))(vue@3.4.35(typescript@5.5.4)) + version: 5.1.2(vite@5.3.5(@types/node@22.1.0)(sass@1.77.8)(terser@5.31.3))(vue@3.4.36(typescript@5.5.4)) '@vitejs/plugin-vue-jsx': specifier: ^4.0.0 - version: 4.0.0(vite@5.3.5(@types/node@22.1.0)(sass@1.77.8)(terser@5.31.3))(vue@3.4.35(typescript@5.5.4)) + version: 4.0.0(vite@5.3.5(@types/node@22.1.0)(sass@1.77.8)(terser@5.31.3))(vue@3.4.36(typescript@5.5.4)) dayjs: specifier: ^1.11.12 version: 1.11.12 @@ -645,22 +645,22 @@ importers: dependencies: '@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.36(typescript@5.5.4)) lucide-vue-next: specifier: ^0.424.0 - version: 0.424.0(vue@3.4.35(typescript@5.5.4)) + version: 0.424.0(vue@3.4.36(typescript@5.5.4)) vue: specifier: ^3.4.35 - version: 3.4.35(typescript@5.5.4) + version: 3.4.36(typescript@5.5.4) packages/@core/base/shared: dependencies: - '@ctrl/tinycolor': - specifier: ^4.1.0 - version: 4.1.0 + '@ant-design/fast-color': + specifier: ^2.0.5 + version: 2.0.6 '@vue/shared': specifier: ^3.4.35 - version: 3.4.35 + version: 3.4.36 clsx: specifier: ^2.1.1 version: 2.1.1 @@ -691,10 +691,10 @@ importers: dependencies: vue: specifier: ^3.4.35 - version: 3.4.35(typescript@5.5.4) + version: 3.4.36(typescript@5.5.4) vue-router: specifier: ^4.4.2 - version: 4.4.2(vue@3.4.35(typescript@5.5.4)) + version: 4.4.3(vue@3.4.36(typescript@5.5.4)) packages/@core/composables: dependencies: @@ -703,16 +703,16 @@ importers: version: link:../base/shared '@vueuse/core': specifier: ^10.11.0 - version: 10.11.0(vue@3.4.35(typescript@5.5.4)) + version: 10.11.0(vue@3.4.36(typescript@5.5.4)) radix-vue: specifier: ^1.9.2 - version: 1.9.2(vue@3.4.35(typescript@5.5.4)) + version: 1.9.3(vue@3.4.36(typescript@5.5.4)) sortablejs: specifier: ^1.15.2 version: 1.15.2 vue: specifier: ^3.4.35 - version: 3.4.35(typescript@5.5.4) + version: 3.4.36(typescript@5.5.4) devDependencies: '@types/sortablejs': specifier: ^1.15.8 @@ -728,10 +728,10 @@ importers: version: link:../base/typings '@vueuse/core': specifier: ^10.11.0 - version: 10.11.0(vue@3.4.35(typescript@5.5.4)) + version: 10.11.0(vue@3.4.36(typescript@5.5.4)) vue: specifier: ^3.4.35 - version: 3.4.35(typescript@5.5.4) + version: 3.4.36(typescript@5.5.4) packages/@core/ui-kit/layout-ui: dependencies: @@ -749,10 +749,10 @@ importers: version: link:../../base/typings '@vueuse/core': specifier: ^10.11.0 - version: 10.11.0(vue@3.4.35(typescript@5.5.4)) + version: 10.11.0(vue@3.4.36(typescript@5.5.4)) vue: specifier: ^3.4.35 - version: 3.4.35(typescript@5.5.4) + version: 3.4.36(typescript@5.5.4) packages/@core/ui-kit/menu-ui: dependencies: @@ -773,16 +773,16 @@ importers: version: link:../../base/typings '@vueuse/core': specifier: ^10.11.0 - version: 10.11.0(vue@3.4.35(typescript@5.5.4)) + version: 10.11.0(vue@3.4.36(typescript@5.5.4)) vue: specifier: ^3.4.35 - version: 3.4.35(typescript@5.5.4) + version: 3.4.36(typescript@5.5.4) packages/@core/ui-kit/shadcn-ui: dependencies: '@radix-icons/vue': specifier: ^1.0.0 - version: 1.0.0(vue@3.4.35(typescript@5.5.4)) + version: 1.0.0(vue@3.4.36(typescript@5.5.4)) '@vben-core/icons': specifier: workspace:* version: link:../../base/icons @@ -794,19 +794,19 @@ importers: version: link:../../base/typings '@vueuse/core': specifier: ^10.11.0 - version: 10.11.0(vue@3.4.35(typescript@5.5.4)) + version: 10.11.0(vue@3.4.36(typescript@5.5.4)) class-variance-authority: specifier: ^0.7.0 version: 0.7.0 lucide-vue-next: specifier: ^0.424.0 - version: 0.424.0(vue@3.4.35(typescript@5.5.4)) + version: 0.424.0(vue@3.4.36(typescript@5.5.4)) radix-vue: specifier: ^1.9.2 - version: 1.9.2(vue@3.4.35(typescript@5.5.4)) + version: 1.9.3(vue@3.4.36(typescript@5.5.4)) vue: specifier: ^3.4.35 - version: 3.4.35(typescript@5.5.4) + version: 3.4.36(typescript@5.5.4) packages/@core/ui-kit/tabs-ui: dependencies: @@ -824,7 +824,7 @@ importers: version: link:../../base/typings vue: specifier: ^3.4.35 - version: 3.4.35(typescript@5.5.4) + version: 3.4.36(typescript@5.5.4) packages/constants: dependencies: @@ -848,7 +848,7 @@ importers: version: link:../../utils vue: specifier: ^3.4.35 - version: 3.4.35(typescript@5.5.4) + version: 3.4.36(typescript@5.5.4) packages/effects/chart-ui: dependencies: @@ -857,13 +857,13 @@ importers: version: link:../../preferences '@vueuse/core': specifier: ^10.11.0 - version: 10.11.0(vue@3.4.35(typescript@5.5.4)) + version: 10.11.0(vue@3.4.36(typescript@5.5.4)) echarts: specifier: ^5.5.1 version: 5.5.1 vue: specifier: ^3.4.35 - version: 3.4.35(typescript@5.5.4) + version: 3.4.36(typescript@5.5.4) packages/effects/common-ui: dependencies: @@ -887,16 +887,16 @@ importers: version: link:../../types '@vueuse/integrations': specifier: ^10.11.0 - version: 10.11.0(async-validator@4.2.5)(axios@1.7.3)(focus-trap@7.5.4)(nprogress@0.2.0)(qrcode@1.5.3)(sortablejs@1.15.2)(vue@3.4.35(typescript@5.5.4)) + version: 10.11.0(async-validator@4.2.5)(axios@1.7.3)(focus-trap@7.5.4)(nprogress@0.2.0)(qrcode@1.5.4)(sortablejs@1.15.2)(vue@3.4.36(typescript@5.5.4)) qrcode: specifier: ^1.5.3 - version: 1.5.3 + version: 1.5.4 vue: specifier: ^3.4.35 - version: 3.4.35(typescript@5.5.4) + version: 3.4.36(typescript@5.5.4) vue-router: specifier: ^4.4.2 - version: 4.4.2(vue@3.4.35(typescript@5.5.4)) + version: 4.4.3(vue@3.4.36(typescript@5.5.4)) devDependencies: '@types/qrcode': specifier: ^1.5.5 @@ -921,10 +921,10 @@ importers: version: link:../../utils vue: specifier: ^3.4.35 - version: 3.4.35(typescript@5.5.4) + version: 3.4.36(typescript@5.5.4) vue-router: specifier: ^4.4.2 - version: 4.4.2(vue@3.4.35(typescript@5.5.4)) + version: 4.4.3(vue@3.4.36(typescript@5.5.4)) watermark-js-plus: specifier: ^1.5.2 version: 1.5.2 @@ -969,13 +969,13 @@ importers: version: link:../../utils '@vueuse/core': specifier: ^10.11.0 - version: 10.11.0(vue@3.4.35(typescript@5.5.4)) + version: 10.11.0(vue@3.4.36(typescript@5.5.4)) vue: specifier: ^3.4.35 - version: 3.4.35(typescript@5.5.4) + version: 3.4.36(typescript@5.5.4) vue-router: specifier: ^4.4.2 - version: 4.4.2(vue@3.4.35(typescript@5.5.4)) + version: 4.4.3(vue@3.4.36(typescript@5.5.4)) packages/effects/request: dependencies: @@ -1006,10 +1006,10 @@ importers: version: 9.13.1 vue: specifier: ^3.4.35 - version: 3.4.35(typescript@5.5.4) + version: 3.4.36(typescript@5.5.4) vue-i18n: specifier: ^9.13.1 - version: 9.13.1(vue@3.4.35(typescript@5.5.4)) + version: 9.13.1(vue@3.4.36(typescript@5.5.4)) packages/preferences: dependencies: @@ -1030,16 +1030,16 @@ importers: version: link:../@core/base/typings pinia: specifier: 2.2.0 - version: 2.2.0(typescript@5.5.4)(vue@3.4.35(typescript@5.5.4)) + version: 2.2.0(typescript@5.5.4)(vue@3.4.36(typescript@5.5.4)) pinia-plugin-persistedstate: specifier: ^3.2.1 - version: 3.2.1(pinia@2.2.0(typescript@5.5.4)(vue@3.4.35(typescript@5.5.4))) + version: 3.2.1(pinia@2.2.0(typescript@5.5.4)(vue@3.4.36(typescript@5.5.4))) vue: specifier: ^3.4.35 - version: 3.4.35(typescript@5.5.4) + version: 3.4.36(typescript@5.5.4) vue-router: specifier: ^4.4.2 - version: 4.4.2(vue@3.4.35(typescript@5.5.4)) + version: 4.4.3(vue@3.4.36(typescript@5.5.4)) packages/styles: dependencies: @@ -1054,10 +1054,10 @@ importers: version: link:../@core/base/typings vue: specifier: ^3.4.35 - version: 3.4.35(typescript@5.5.4) + version: 3.4.36(typescript@5.5.4) vue-router: specifier: ^4.4.2 - version: 4.4.2(vue@3.4.35(typescript@5.5.4)) + version: 4.4.3(vue@3.4.36(typescript@5.5.4)) packages/utils: dependencies: @@ -1069,7 +1069,7 @@ importers: version: link:../@core/base/typings vue-router: specifier: ^4.4.2 - version: 4.4.2(vue@3.4.35(typescript@5.5.4)) + version: 4.4.3(vue@3.4.36(typescript@5.5.4)) scripts/turbo-run: dependencies: @@ -1179,6 +1179,10 @@ packages: '@ant-design/colors@6.0.0': resolution: {integrity: sha512-qAZRvPzfdWHtfameEGP2Qvuf838NhergR35o+EuVyB5XvSA98xod5r4utvi4TJ3ywmevm290g9nsCG5MryrdWQ==} + '@ant-design/fast-color@2.0.6': + resolution: {integrity: sha512-y2217gk4NqL35giHl72o6Zzqji9O7vHh9YmhUVkPtAOpoTCH4uWxo/pr4VE8t0+ChEPs0qo4eJRC5Q1eXWo3vA==} + engines: {node: '>=8.x'} + '@ant-design/icons-svg@4.4.2': resolution: {integrity: sha512-vHbT+zJEVzllwP+CM+ul7reTEfBR0vgxFe7+lREAsAA7YGsYpboiq2sQNeQeRvh09GfQgs/GyFEvZpJ9cLXpXA==} @@ -1983,8 +1987,8 @@ packages: resolution: {integrity: sha512-YLPHc8yASwjNkmcDMQMY35yiWjoKAKnhUbPRszBRS0YgH+IXtsMp61j+yTcnCE3oO2DgP0U3iejLC8FTtKDC8Q==} engines: {node: '>=16.13'} - '@commitlint/cli@19.3.0': - resolution: {integrity: sha512-LgYWOwuDR7BSTQ9OLZ12m7F/qhNY+NpAyPBgo4YNMkACE7lGuUnuQq1yi9hz1KA4+3VqpOYl8H1rY/LYK43v7g==} + '@commitlint/cli@19.4.0': + resolution: {integrity: sha512-sJX4J9UioVwZHq7JWM9tjT5bgWYaIN3rC4FP7YwfEwBYiIO+wMyRttRvQLNkow0vCdM0D67r9NEWU0Ui03I4Eg==} engines: {node: '>=v18'} hasBin: true @@ -2016,8 +2020,8 @@ packages: resolution: {integrity: sha512-xrzMmz4JqwGyKQKTpFzlN0dx0TAiT7Ran1fqEBgEmEj+PU98crOFtysJgY+QdeSagx6EDRigQIXJVnfrI0ratA==} engines: {node: '>=v18'} - '@commitlint/load@19.2.0': - resolution: {integrity: sha512-XvxxLJTKqZojCxaBQ7u92qQLFMMZc4+p9qrIq/9kJDy8DOrEa7P1yx7Tjdc2u2JxIalqT4KOGraVgCE7eCYJyQ==} + '@commitlint/load@19.4.0': + resolution: {integrity: sha512-I4lCWaEZYQJ1y+Y+gdvbGAx9pYPavqZAZ3/7/8BpWh+QjscAn8AjsUpLV2PycBsEx7gupq5gM4BViV9xwTIJuw==} engines: {node: '>=v18'} '@commitlint/message@19.0.0': @@ -2028,8 +2032,8 @@ packages: resolution: {integrity: sha512-Il+tNyOb8VDxN3P6XoBBwWJtKKGzHlitEuXA5BP6ir/3loWlsSqDr5aecl6hZcC/spjq4pHqNh0qPlfeWu38QA==} engines: {node: '>=v18'} - '@commitlint/read@19.2.1': - resolution: {integrity: sha512-qETc4+PL0EUv7Q36lJbPG+NJiBOGg7SSC7B5BsPWOmei+Dyif80ErfWQ0qXoW9oCh7GTpTNRoaVhiI8RbhuaNw==} + '@commitlint/read@19.4.0': + resolution: {integrity: sha512-r95jLOEZzKDakXtnQub+zR3xjdnrl2XzerPwm7ch1/cc5JGq04tyaNpa6ty0CRCWdVrk4CZHhqHozb8yZwy2+g==} engines: {node: '>=v18'} '@commitlint/resolve-extends@19.1.0': @@ -2085,8 +2089,8 @@ packages: '@cspell/dict-bash@4.1.3': resolution: {integrity: sha512-tOdI3QVJDbQSwPjUkOiQFhYcu2eedmX/PtEpVWg0aFps/r6AyjUQINtTgpqMYnYuq8O1QUIQqnpx21aovcgZCw==} - '@cspell/dict-companies@3.1.3': - resolution: {integrity: sha512-qaAmfKtQLA7Sbe9zfFVpcwyG92cx6+EiWIpPURv11Ng2QMv2PKhYcterUJBooAvgqD0/qq+AsLN8MREloY5Mdw==} + '@cspell/dict-companies@3.1.4': + resolution: {integrity: sha512-y9e0amzEK36EiiKx3VAA+SHQJPpf2Qv5cCt5eTUSggpTkiFkCh6gRKQ97rVlrKh5GJrqinDwYIJtTsxuh2vy2Q==} '@cspell/dict-cpp@5.1.12': resolution: {integrity: sha512-6lXLOFIa+k/qBcu0bjaE/Kc6v3sh9VhsDOXD1Dalm3zgd0QIMjp5XBmkpSdCAK3pWCPV0Se7ysVLDfCea1BuXg==} @@ -2118,8 +2122,8 @@ packages: '@cspell/dict-elixir@4.0.3': resolution: {integrity: sha512-g+uKLWvOp9IEZvrIvBPTr/oaO6619uH/wyqypqvwpmnmpjcfi8+/hqZH8YNKt15oviK8k4CkINIqNhyndG9d9Q==} - '@cspell/dict-en-common-misspellings@2.0.3': - resolution: {integrity: sha512-8nF1z9nUiSgMyikL66HTbDO7jCGtB24TxKBasXIBwkBKMDZgA2M883iXdeByy6m1JJUcCGFkSftVYp2W0bUgjw==} + '@cspell/dict-en-common-misspellings@2.0.4': + resolution: {integrity: sha512-lvOiRjV/FG4pAGZL3PN2GCVHSTCE92cwhfLGGkOsQtxSmef6WCHfHwp9auafkBlX0yFQSKDfq6/TlpQbjbJBtQ==} '@cspell/dict-en-gb@1.1.33': resolution: {integrity: sha512-tKSSUf9BJEV+GJQAYGw5e+ouhEe2ZXE620S7BLKe3ZmpnjlNG9JqlnaBhkIMxKnNFkLY2BP/EARzw31AZnOv4g==} @@ -2199,8 +2203,8 @@ packages: '@cspell/dict-public-licenses@2.0.7': resolution: {integrity: sha512-KlBXuGcN3LE7tQi/GEqKiDewWGGuopiAD0zRK1QilOx5Co8XAvs044gk4MNIQftc8r0nHeUI+irJKLGcR36DIQ==} - '@cspell/dict-python@4.2.3': - resolution: {integrity: sha512-C1CPX9wwEGgcHv/p7KfjuIOp1G6KNyx5gWYweAd6/KPv+ZpeM1v572zFUTmpO8WDuAfKFf00nqYL8/GmCENWBw==} + '@cspell/dict-python@4.2.4': + resolution: {integrity: sha512-sCtLBqMreb+8zRW2bXvFsfSnRUVU6IFm4mT6Dc4xbz0YajprbaPPh/kOUTw5IJRP8Uh+FFb7Xp2iH03CNWRq/A==} '@cspell/dict-r@2.0.1': resolution: {integrity: sha512-KCmKaeYMLm2Ip79mlYPc8p+B2uzwBp4KMkzeLd5E6jUlCL93Y5Nvq68wV5fRLDRTf7N1LvofkVFWfDcednFOgA==} @@ -2214,11 +2218,11 @@ packages: '@cspell/dict-scala@5.0.3': resolution: {integrity: sha512-4yGb4AInT99rqprxVNT9TYb1YSpq58Owzq7zi3ZS5T0u899Y4VsxsBiOgHnQ/4W+ygi+sp+oqef8w8nABR2lkg==} - '@cspell/dict-software-terms@4.0.3': - resolution: {integrity: sha512-65QAVMc3YlcI7PcqWRY5ox53tTWC8aktUZdJYCVs4VDBPUCTSDnTSmSreeg4F5Z468clv9KF/S0PkxbLjgW72A==} + '@cspell/dict-software-terms@4.0.5': + resolution: {integrity: sha512-93knOtaQlWq1Zlz5LbjOl3P3hIiWbhd7kwGZPHVxCdD8+G3UEF9hivkpZ1miK/DzlV/Lcw2RoybOd91Xazc+dg==} - '@cspell/dict-sql@2.1.3': - resolution: {integrity: sha512-SEyTNKJrjqD6PAzZ9WpdSu6P7wgdNtGV2RV8Kpuw1x6bV+YsSptuClYG+JSdRExBTE6LwIe1bTklejUp3ZP8TQ==} + '@cspell/dict-sql@2.1.5': + resolution: {integrity: sha512-FmxanytHXss7GAWAXmgaxl3icTCW7YxlimyOSPNfm+njqeUDjw3kEv4mFNDDObBJv8Ec5AWCbUDkWIpkE3IpKg==} '@cspell/dict-svelte@1.0.2': resolution: {integrity: sha512-rPJmnn/GsDs0btNvrRBciOhngKV98yZ9SHmg8qI6HLS8hZKvcXc0LMsf9LLuMK1TmS2+WQFAan6qeqg6bBxL2Q==} @@ -3160,17 +3164,17 @@ packages: resolution: {integrity: sha512-vBZP4NlzfOlerQTnba4aqZoMhE/a9HY7HRqoOPaETQcSQuWEIyZMHGfVu6w9wGtGK5fED5qRs2DteVCjOH60sA==} engines: {node: '>=14'} - '@floating-ui/core@1.6.5': - resolution: {integrity: sha512-8GrTWmoFhm5BsMZOTHeGD2/0FLKLQQHvO/ZmQga4tKempYRLz8aqJGqXVuQgisnMObq2YZ2SgkwctN1LOOxcqA==} + '@floating-ui/core@1.6.7': + resolution: {integrity: sha512-yDzVT/Lm101nQ5TCVeK65LtdN7Tj4Qpr9RTXJ2vPFLqtLxwOrpoxAHAJI8J3yYWUc40J0BDBheaitK5SJmno2g==} - '@floating-ui/dom@1.6.8': - resolution: {integrity: sha512-kx62rP19VZ767Q653wsP1XZCGIirkE09E0QUGNYTM/ttbbQHqcGPdSfWFxUyyNLc/W6aoJRBajOSXhP6GXjC0Q==} + '@floating-ui/dom@1.6.10': + resolution: {integrity: sha512-fskgCFv8J8OamCmyun8MfjB1Olfn+uZKjOKZ0vhYF3gRmEUXcGOjxWL8bBr7i4kIuPZ2KD2S3EUIOxnjC8kl2A==} - '@floating-ui/utils@0.2.5': - resolution: {integrity: sha512-sTcG+QZ6fdEUObICavU+aB3Mp8HY4n14wYHdxK4fXjPmv3PXZZeY5RaguJmGyeH/CJQhX3fqKUtS4qc1LoHwhQ==} + '@floating-ui/utils@0.2.7': + resolution: {integrity: sha512-X8R8Oj771YRl/w+c1HqAC1szL8zWQRwFvgDwT129k9ACdBoud/+/rX9V0qiMl6LWUdP9voC2nDVZYPMQQsb6eA==} - '@floating-ui/vue@1.1.2': - resolution: {integrity: sha512-7pq8HfhVhxOpV6iIMKSslI51fwFYy8G0BF0GjhlhpmUhVwL8jCByvcjzTwEtRWFVRrGD/I9kLp6eUHKumiUTjw==} + '@floating-ui/vue@1.1.4': + resolution: {integrity: sha512-ammH7T3vyCx7pmm9OF19Wc42zrGnUw0QvLoidgypWsCLJMtGXEwY7paYIHO+K+oLC3mbWpzIHzeTVienYenlNg==} '@gar/promisify@1.1.3': resolution: {integrity: sha512-k2Ty1JcVojjJFwrg/ThKi2ujJ7XNLYaFGNB/bWT9wGR+oSMJHMa5w+CUq6p/pVrKeNNgA7pCqEcjSnHVoqJQFw==} @@ -3270,8 +3274,8 @@ packages: '@jridgewell/trace-mapping@0.3.25': resolution: {integrity: sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==} - '@jspm/generator@2.1.2': - resolution: {integrity: sha512-xc65/onT8tNbRq7yOw1o7BH3E9fm3Dhha98jikpML9XUd6YP6JuoymYM6AXrF1WxMGzaG0KslNNJDgo4GW2DZg==} + '@jspm/generator@2.1.3': + resolution: {integrity: sha512-LMpUk/rvM05ZYXv2shozxTkADBd6VHe5rsfWXl6g/f02ycaEh4JMYYhtIZ+O4x6iTRyZf3O3LOvgE8YItNSkKQ==} '@jspm/import-map@1.1.0': resolution: {integrity: sha512-vmk583YnMi4fmqeXbWIBiyzFu+vqVZ5VCoaa6H4xeSQy5E6JAWtmcq72OAMFTeSTqw7xxHQIJFq2OlHKdUWitQ==} @@ -3453,8 +3457,8 @@ packages: resolution: {integrity: sha512-YcPQ8a0jwYU9bTdJDpXjMi7Brhkr1mXsXrUJvjqM2mQDgkRiz8jFaQGOdaLxgjtUfQgZhKy/O3cG/YwmgKaxLA==} engines: {node: '>=12.22.0'} - '@pnpm/npm-conf@2.2.2': - resolution: {integrity: sha512-UA91GwWPhFExt3IizW6bOeY/pQ0BkuNwKjk9iQW9KqxluGCrg4VenZ0/L+2Y0+ZOtme72EVvg6v0zo3AMQRCeA==} + '@pnpm/npm-conf@2.3.0': + resolution: {integrity: sha512-DqrO+oXGR7HCuicNy6quk6ALJSDDPKI7RZz1bP5im8mSL8J2e+9w26LdkjuAfpAjOutYUJVbnXnx4IbTQeIgfw==} engines: {node: '>=12'} '@polka/url@1.0.0-next.25': @@ -3563,161 +3567,81 @@ packages: rollup: optional: true - '@rollup/rollup-android-arm-eabi@4.19.2': - resolution: {integrity: sha512-OHflWINKtoCFSpm/WmuQaWW4jeX+3Qt3XQDepkkiFTsoxFc5BpF3Z5aDxFZgBqRjO6ATP5+b1iilp4kGIZVWlA==} - cpu: [arm] - os: [android] - '@rollup/rollup-android-arm-eabi@4.20.0': resolution: {integrity: sha512-TSpWzflCc4VGAUJZlPpgAJE1+V60MePDQnBd7PPkpuEmOy8i87aL6tinFGKBFKuEDikYpig72QzdT3QPYIi+oA==} cpu: [arm] os: [android] - '@rollup/rollup-android-arm64@4.19.2': - resolution: {integrity: sha512-k0OC/b14rNzMLDOE6QMBCjDRm3fQOHAL8Ldc9bxEWvMo4Ty9RY6rWmGetNTWhPo+/+FNd1lsQYRd0/1OSix36A==} - cpu: [arm64] - os: [android] - '@rollup/rollup-android-arm64@4.20.0': resolution: {integrity: sha512-u00Ro/nok7oGzVuh/FMYfNoGqxU5CPWz1mxV85S2w9LxHR8OoMQBuSk+3BKVIDYgkpeOET5yXkx90OYFc+ytpQ==} cpu: [arm64] os: [android] - '@rollup/rollup-darwin-arm64@4.19.2': - resolution: {integrity: sha512-IIARRgWCNWMTeQH+kr/gFTHJccKzwEaI0YSvtqkEBPj7AshElFq89TyreKNFAGh5frLfDCbodnq+Ye3dqGKPBw==} - cpu: [arm64] - os: [darwin] - '@rollup/rollup-darwin-arm64@4.20.0': resolution: {integrity: sha512-uFVfvzvsdGtlSLuL0ZlvPJvl6ZmrH4CBwLGEFPe7hUmf7htGAN+aXo43R/V6LATyxlKVC/m6UsLb7jbG+LG39Q==} cpu: [arm64] os: [darwin] - '@rollup/rollup-darwin-x64@4.19.2': - resolution: {integrity: sha512-52udDMFDv54BTAdnw+KXNF45QCvcJOcYGl3vQkp4vARyrcdI/cXH8VXTEv/8QWfd6Fru8QQuw1b2uNersXOL0g==} - cpu: [x64] - os: [darwin] - '@rollup/rollup-darwin-x64@4.20.0': resolution: {integrity: sha512-xbrMDdlev53vNXexEa6l0LffojxhqDTBeL+VUxuuIXys4x6xyvbKq5XqTXBCEUA8ty8iEJblHvFaWRJTk/icAQ==} cpu: [x64] os: [darwin] - '@rollup/rollup-linux-arm-gnueabihf@4.19.2': - resolution: {integrity: sha512-r+SI2t8srMPYZeoa1w0o/AfoVt9akI1ihgazGYPQGRilVAkuzMGiTtexNZkrPkQsyFrvqq/ni8f3zOnHw4hUbA==} - cpu: [arm] - os: [linux] - '@rollup/rollup-linux-arm-gnueabihf@4.20.0': resolution: {integrity: sha512-jMYvxZwGmoHFBTbr12Xc6wOdc2xA5tF5F2q6t7Rcfab68TT0n+r7dgawD4qhPEvasDsVpQi+MgDzj2faOLsZjA==} cpu: [arm] os: [linux] - '@rollup/rollup-linux-arm-musleabihf@4.19.2': - resolution: {integrity: sha512-+tYiL4QVjtI3KliKBGtUU7yhw0GMcJJuB9mLTCEauHEsqfk49gtUBXGtGP3h1LW8MbaTY6rSFIQV1XOBps1gBA==} - cpu: [arm] - os: [linux] - '@rollup/rollup-linux-arm-musleabihf@4.20.0': resolution: {integrity: sha512-1asSTl4HKuIHIB1GcdFHNNZhxAYEdqML/MW4QmPS4G0ivbEcBr1JKlFLKsIRqjSwOBkdItn3/ZDlyvZ/N6KPlw==} cpu: [arm] os: [linux] - '@rollup/rollup-linux-arm64-gnu@4.19.2': - resolution: {integrity: sha512-OR5DcvZiYN75mXDNQQxlQPTv4D+uNCUsmSCSY2FolLf9W5I4DSoJyg7z9Ea3TjKfhPSGgMJiey1aWvlWuBzMtg==} - cpu: [arm64] - os: [linux] - '@rollup/rollup-linux-arm64-gnu@4.20.0': resolution: {integrity: sha512-COBb8Bkx56KldOYJfMf6wKeYJrtJ9vEgBRAOkfw6Ens0tnmzPqvlpjZiLgkhg6cA3DGzCmLmmd319pmHvKWWlQ==} cpu: [arm64] os: [linux] - '@rollup/rollup-linux-arm64-musl@4.19.2': - resolution: {integrity: sha512-Hw3jSfWdUSauEYFBSFIte6I8m6jOj+3vifLg8EU3lreWulAUpch4JBjDMtlKosrBzkr0kwKgL9iCfjA8L3geoA==} - cpu: [arm64] - os: [linux] - '@rollup/rollup-linux-arm64-musl@4.20.0': resolution: {integrity: sha512-+it+mBSyMslVQa8wSPvBx53fYuZK/oLTu5RJoXogjk6x7Q7sz1GNRsXWjn6SwyJm8E/oMjNVwPhmNdIjwP135Q==} cpu: [arm64] os: [linux] - '@rollup/rollup-linux-powerpc64le-gnu@4.19.2': - resolution: {integrity: sha512-rhjvoPBhBwVnJRq/+hi2Q3EMiVF538/o9dBuj9TVLclo9DuONqt5xfWSaE6MYiFKpo/lFPJ/iSI72rYWw5Hc7w==} - cpu: [ppc64] - os: [linux] - '@rollup/rollup-linux-powerpc64le-gnu@4.20.0': resolution: {integrity: sha512-yAMvqhPfGKsAxHN8I4+jE0CpLWD8cv4z7CK7BMmhjDuz606Q2tFKkWRY8bHR9JQXYcoLfopo5TTqzxgPUjUMfw==} cpu: [ppc64] os: [linux] - '@rollup/rollup-linux-riscv64-gnu@4.19.2': - resolution: {integrity: sha512-EAz6vjPwHHs2qOCnpQkw4xs14XJq84I81sDRGPEjKPFVPBw7fwvtwhVjcZR6SLydCv8zNK8YGFblKWd/vRmP8g==} - cpu: [riscv64] - os: [linux] - '@rollup/rollup-linux-riscv64-gnu@4.20.0': resolution: {integrity: sha512-qmuxFpfmi/2SUkAw95TtNq/w/I7Gpjurx609OOOV7U4vhvUhBcftcmXwl3rqAek+ADBwSjIC4IVNLiszoj3dPA==} cpu: [riscv64] os: [linux] - '@rollup/rollup-linux-s390x-gnu@4.19.2': - resolution: {integrity: sha512-IJSUX1xb8k/zN9j2I7B5Re6B0NNJDJ1+soezjNojhT8DEVeDNptq2jgycCOpRhyGj0+xBn7Cq+PK7Q+nd2hxLA==} - cpu: [s390x] - os: [linux] - '@rollup/rollup-linux-s390x-gnu@4.20.0': resolution: {integrity: sha512-I0BtGXddHSHjV1mqTNkgUZLnS3WtsqebAXv11D5BZE/gfw5KoyXSAXVqyJximQXNvNzUo4GKlCK/dIwXlz+jlg==} cpu: [s390x] os: [linux] - '@rollup/rollup-linux-x64-gnu@4.19.2': - resolution: {integrity: sha512-OgaToJ8jSxTpgGkZSkwKE+JQGihdcaqnyHEFOSAU45utQ+yLruE1dkonB2SDI8t375wOKgNn8pQvaWY9kPzxDQ==} - cpu: [x64] - os: [linux] - '@rollup/rollup-linux-x64-gnu@4.20.0': resolution: {integrity: sha512-y+eoL2I3iphUg9tN9GB6ku1FA8kOfmF4oUEWhztDJ4KXJy1agk/9+pejOuZkNFhRwHAOxMsBPLbXPd6mJiCwew==} cpu: [x64] os: [linux] - '@rollup/rollup-linux-x64-musl@4.19.2': - resolution: {integrity: sha512-5V3mPpWkB066XZZBgSd1lwozBk7tmOkKtquyCJ6T4LN3mzKENXyBwWNQn8d0Ci81hvlBw5RoFgleVpL6aScLYg==} - cpu: [x64] - os: [linux] - '@rollup/rollup-linux-x64-musl@4.20.0': resolution: {integrity: sha512-hM3nhW40kBNYUkZb/r9k2FKK+/MnKglX7UYd4ZUy5DJs8/sMsIbqWK2piZtVGE3kcXVNj3B2IrUYROJMMCikNg==} cpu: [x64] os: [linux] - '@rollup/rollup-win32-arm64-msvc@4.19.2': - resolution: {integrity: sha512-ayVstadfLeeXI9zUPiKRVT8qF55hm7hKa+0N1V6Vj+OTNFfKSoUxyZvzVvgtBxqSb5URQ8sK6fhwxr9/MLmxdA==} - cpu: [arm64] - os: [win32] - '@rollup/rollup-win32-arm64-msvc@4.20.0': resolution: {integrity: sha512-psegMvP+Ik/Bg7QRJbv8w8PAytPA7Uo8fpFjXyCRHWm6Nt42L+JtoqH8eDQ5hRP7/XW2UiIriy1Z46jf0Oa1kA==} cpu: [arm64] os: [win32] - '@rollup/rollup-win32-ia32-msvc@4.19.2': - resolution: {integrity: sha512-Mda7iG4fOLHNsPqjWSjANvNZYoW034yxgrndof0DwCy0D3FvTjeNo+HGE6oGWgvcLZNLlcp0hLEFcRs+UGsMLg==} - cpu: [ia32] - os: [win32] - '@rollup/rollup-win32-ia32-msvc@4.20.0': resolution: {integrity: sha512-GabekH3w4lgAJpVxkk7hUzUf2hICSQO0a/BLFA11/RMxQT92MabKAqyubzDZmMOC/hcJNlc+rrypzNzYl4Dx7A==} cpu: [ia32] os: [win32] - '@rollup/rollup-win32-x64-msvc@4.19.2': - resolution: {integrity: sha512-DPi0ubYhSow/00YqmG1jWm3qt1F8aXziHc/UNy8bo9cpCacqhuWu+iSq/fp2SyEQK7iYTZ60fBU9cat3MXTjIQ==} - cpu: [x64] - os: [win32] - '@rollup/rollup-win32-x64-msvc@4.20.0': resolution: {integrity: sha512-aJ1EJSuTdGnM6qbVC4B5DSmozPTqIag9fSzXRNNo+humQLG89XpPgdt16Ia56ORD7s+H8Pmyx44uczDQ0yDzpg==} cpu: [x64] @@ -3793,8 +3717,8 @@ packages: '@tanstack/virtual-core@3.8.4': resolution: {integrity: sha512-iO5Ujgw3O1yIxWDe9FgUPNkGjyT657b1WNX52u+Wv1DyBFEpdCdGkuVaky0M3hHFqNWjAmHWTn4wgj9rTr7ZQg==} - '@tanstack/vue-virtual@3.8.4': - resolution: {integrity: sha512-4Pq8odunHQPsTg2iE2yzWdzYed/8LySy2knxqJYkaNOQRXbqJ7O/Owpoon8ZM9L+jLL1faM5TVHV0eJxm68q8A==} + '@tanstack/vue-virtual@3.8.5': + resolution: {integrity: sha512-JBHw3xFUslYgrbvNlCYtTWwFo8zjzRs7c2rs6B4JKFXWyP5yHuoeivgQgeZ34t6O6lJTNqc/K4ccmmcmKqpMPA==} peerDependencies: vue: ^3.4.35 @@ -3840,8 +3764,8 @@ packages: '@types/html-minifier-terser@7.0.2': resolution: {integrity: sha512-mm2HqV22l8lFQh4r2oSsOEVea+m0qqxEmwpc9kC1p/XzmjLWrReR9D/GRs8Pex2NX/imyEH9c5IU/7tMBQCHOA==} - '@types/http-proxy@1.17.14': - resolution: {integrity: sha512-SSrD0c1OQzlFX7pGu1eXxSEjemej64aaNPRhhVYUGqXh0BtldAAx37MG8btcumvpgKyZp1F5Gn3JkktdxiFv6w==} + '@types/http-proxy@1.17.15': + resolution: {integrity: sha512-25g5atgiVNTIv0LBDTg1H74Hvayx0ajtJPLLcYE3whFv75J0pWNtOBzaXJQgDTmrX1bx5U9YC2w/n65BN1HwRQ==} '@types/jsdom@21.1.7': resolution: {integrity: sha512-yOriVnggzrnQ3a9OKOCxaVuSug3w3/SbOj5i7VwXWZEyUNl3bLF9V3MfxGbZKuwqJOQyRfqXyROBB1CoZLFWzA==} @@ -4097,17 +4021,17 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 - '@vue/compiler-core@3.4.35': - resolution: {integrity: sha512-gKp0zGoLnMYtw4uS/SJRRO7rsVggLjvot3mcctlMXunYNsX+aRJDqqw/lV5/gHK91nvaAAlWFgdVl020AW1Prg==} + '@vue/compiler-core@3.4.36': + resolution: {integrity: sha512-qBkndgpwFKdupmOPoiS10i7oFdN7a+4UNDlezD0GlQ1kuA1pNrscg9g12HnB5E8hrWSuEftRsbJhL1HI2zpJhg==} - '@vue/compiler-dom@3.4.35': - resolution: {integrity: sha512-pWIZRL76/oE/VMhdv/ovZfmuooEni6JPG1BFe7oLk5DZRo/ImydXijoZl/4kh2406boRQ7lxTYzbZEEXEhj9NQ==} + '@vue/compiler-dom@3.4.36': + resolution: {integrity: sha512-eEIjy4GwwZTFon/Y+WO8tRRNGqylaRlA79T1RLhUpkOzJ7EtZkkb8MurNfkqY6x6Qiu0R7ESspEF7GkPR/4yYg==} - '@vue/compiler-sfc@3.4.35': - resolution: {integrity: sha512-xacnRS/h/FCsjsMfxBkzjoNxyxEyKyZfBch/P4vkLRvYJwe5ChXmZZrj8Dsed/752H2Q3JE8kYu9Uyha9J6PgA==} + '@vue/compiler-sfc@3.4.36': + resolution: {integrity: sha512-rhuHu7qztt/rNH90dXPTzhB7hLQT2OC4s4GrPVqmzVgPY4XBlfWmcWzn4bIPEWNImt0CjO7kfHAf/1UXOtx3vw==} - '@vue/compiler-ssr@3.4.35': - resolution: {integrity: sha512-7iynB+0KB1AAJKk/biENTV5cRGHRdbdaD7Mx3nWcm1W8bVD6QmnH3B4AHhQQ1qZHhqFwzEzMwiytXm3PX1e60A==} + '@vue/compiler-ssr@3.4.36': + resolution: {integrity: sha512-Wt1zyheF0zVvRJyhY74uxQbnkXV2Le/JPOrAxooR4rFYKC7cFr+cRqW6RU3cM/bsTy7sdZ83IDuy/gLPSfPGng==} '@vue/compiler-vue2@2.7.16': resolution: {integrity: sha512-qYC3Psj9S/mfu9uVi5WvNZIzq+xnXMhOwbTFKKDD7b1lhpnn71jXSFdTQ+WsIEk0ONCd7VV2IMm7ONl6tbQ86A==} @@ -4137,22 +4061,22 @@ packages: typescript: optional: true - '@vue/reactivity@3.4.35': - resolution: {integrity: sha512-Ggtz7ZZHakriKioveJtPlStYardwQH6VCs9V13/4qjHSQb/teE30LVJNrbBVs4+aoYGtTQKJbTe4CWGxVZrvEw==} + '@vue/reactivity@3.4.36': + resolution: {integrity: sha512-wN1aoCwSoqrt1yt8wO0gc13QaC+Vk1o6AoSt584YHNnz6TGDhh1NCMUYgAnvp4HEIkLdGsaC1bvu/P+wpoDEXw==} - '@vue/runtime-core@3.4.35': - resolution: {integrity: sha512-D+BAjFoWwT5wtITpSxwqfWZiBClhBbR+bm0VQlWYFOadUUXFo+5wbe9ErXhLvwguPiLZdEF13QAWi2vP3ZD5tA==} + '@vue/runtime-core@3.4.36': + resolution: {integrity: sha512-9+TR14LAVEerZWLOm/N/sG2DVYhrH2bKgFrbH/FVt/Q8Jdw4OtdcGMRC6Tx8VAo0DA1eqAqrZaX0fbOaOxxZ4A==} - '@vue/runtime-dom@3.4.35': - resolution: {integrity: sha512-yGOlbos+MVhlS5NWBF2HDNgblG8e2MY3+GigHEyR/dREAluvI5tuUUgie3/9XeqhPE4LF0i2wjlduh5thnfOqw==} + '@vue/runtime-dom@3.4.36': + resolution: {integrity: sha512-2Qe2fKkLxgZBVvHrG0QMNLL4bsx7Ae88pyXebY2WnQYABpOnGYvA+axMbcF9QwM4yxnsv+aELbC0eiNVns7mGw==} - '@vue/server-renderer@3.4.35': - resolution: {integrity: sha512-iZ0e/u9mRE4T8tNhlo0tbA+gzVkgv8r5BX6s1kRbOZqfpq14qoIvCZ5gIgraOmYkMYrSEZgkkojFPr+Nyq/Mnw==} + '@vue/server-renderer@3.4.36': + resolution: {integrity: sha512-2XW90Rq8+Y7S1EIsAuubZVLm0gCU8HYb5mRAruFdwfC3XSOU5/YKePz29csFzsch8hXaY5UHh7ZMddmi1XTJEA==} peerDependencies: vue: ^3.4.35 - '@vue/shared@3.4.35': - resolution: {integrity: sha512-hvuhBYYDe+b1G8KHxsQ0diDqDMA8D9laxWZhNAjE83VZb5UDaXl9Xnz7cGdDSyiHM90qqI/CyGMcpBpiDy6VVQ==} + '@vue/shared@3.4.36': + resolution: {integrity: sha512-fdPLStwl1sDfYuUftBaUVn2pIrVFDASYerZSrlBvVBfylObPA1gtcWJHy5Ox8jLEJ524zBibss488Q3SZtU1uA==} '@vue/test-utils@2.4.6': resolution: {integrity: sha512-FMxEjOpYNYiFe0GkaHsnJPXFHxQ6m4t8vI/ElPGpMWxZKpmRvQ33OIrvRXemy6yha03RxhOlQuy+gZMC3CQSow==} @@ -4495,8 +4419,8 @@ packages: boolbase@1.0.0: resolution: {integrity: sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==} - boxen@8.0.0: - resolution: {integrity: sha512-Mzw0gi6A0zH9bVVLSuoyaPFbae4gv3luQkkt3FmVgA1g/oeKpqxFII39OuV58AiwcN2FR+rwlZhJ2mfggjEWKw==} + boxen@8.0.1: + resolution: {integrity: sha512-F3PH5k5juxom4xktynS7MoFY+NUWH5LC4CnH11YB8NPew+HLpmBLCybSAEyb2F+4pRXhuhWqFesoQd6DAyc2hw==} engines: {node: '>=18'} brace-expansion@1.1.11: @@ -4581,8 +4505,8 @@ packages: caniuse-api@3.0.0: resolution: {integrity: sha512-bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw==} - caniuse-lite@1.0.30001649: - resolution: {integrity: sha512-fJegqZZ0ZX8HOWr6rcafGr72+xcgJKI9oWfDW5DrD7ExUtgZC7a7R7ZYmZqplh7XDocFdGeIFn7roAxhOeYrPQ==} + caniuse-lite@1.0.30001650: + resolution: {integrity: sha512-fgEc7hP/LB7iicdXHUI9VsBsMZmUmlVJeQP2qqQW+3lkqVhbmjEU8zp+h5stWeilX+G7uXuIUIIlWlDw9jdt8g==} chai@5.1.1: resolution: {integrity: sha512-pT1ZgP8rPNqUgieVaEY+ryQr6Q4HXNg8Ei9UnLUrjN4IA7dvQC5JB+/kxVcPNDHyBcc/26CXPkbNzq3qwrOEKA==} @@ -4660,9 +4584,9 @@ packages: resolution: {integrity: sha512-LWAxzHqdHsAZlPlEyJ2Poz6AIs384mPeqLVCru2p0BrP9G/kVGuhNyZYClLO6cXlnuJjzC8xtsJIuMjKqLXoAw==} engines: {node: '>=8'} - cli-boxes@4.0.0: - resolution: {integrity: sha512-RU4tOq6V6/HggQwAumv7c8O2tuvg0gElkQ5FEdWULl4itMhvgqy1kWXq5oy3FbKOF65Ml8J4lxWbHDZcKaWLQA==} - engines: {node: '>=18.20'} + cli-boxes@3.0.0: + resolution: {integrity: sha512-/lzGpEWL/8PfI0BmBOPRwp0c/wFNX1RdUML3jK/RcSBA9T8mZDdQpqYBKtCFTOfQbwPqWEOpjqW+Fnayc0969g==} + engines: {node: '>=10'} cli-cursor@4.0.0: resolution: {integrity: sha512-VGtlMu3x/4DOtIUwEkRezxUZ2lBacNJCHash0N0WeZDBS+7Ux1dm3XWAgWYxLJFMMdOeXMHXorshEFhbMSGelg==} @@ -4839,14 +4763,11 @@ packages: resolution: {integrity: sha512-yCEafptTtb4bk7GLEQoM8KVJpxAfdBJYaXyzQEgQQQgYrZiDp8SJmGKlYza6CYjEDNstAdNdKA3UuoULlEbS6w==} engines: {node: '>=12.13'} - core-js-compat@3.37.1: - resolution: {integrity: sha512-9TNiImhKvQqSUkOvk/mMRZzOANTiEVC7WaBNhHcKM7x+/5E1l5NvsysR19zuDQScE8k+kfQXWRN3AtS/eOSHpg==} - core-js-compat@3.38.0: resolution: {integrity: sha512-75LAicdLa4OJVwFxFbQR3NdnZjNgX6ILpVcVzcC4T2smerB5lELMrJQQQoWV6TiuC/vlaFqgU2tKQx9w5s0e0A==} - core-js@3.37.1: - resolution: {integrity: sha512-Xn6qmxrQZyB0FFY8E3bgRXei3lWDJHhvI+u0q9TKIYM49G8pAr0FgnnrFRAmsbptZL1yxRADVXn+x5AGsbBfyw==} + core-js@3.38.0: + resolution: {integrity: sha512-XPpwqEodRljce9KswjZShh95qJ1URisBeKCjUdq27YdenkslVe7OO0ZJhlYXAChW7OhXaRLl8AAba7IBfoIHug==} core-util-is@1.0.3: resolution: {integrity: sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==} @@ -4881,8 +4802,8 @@ packages: resolution: {integrity: sha512-piICUB6ei4IlTv1+653yq5+KoqfBYmj9bw6LqXoOneTMDXk5nM1qt12mFW1caG3LlJXEKW1Bp0WggEmIfQB34g==} engines: {node: '>= 14'} - croner@8.1.0: - resolution: {integrity: sha512-sz990XOUPR8dG/r5BRKMBd15MYDDUu8oeSaxFD5DqvNgHSZw8Psd1s689/IGET7ezxRMiNlCIyGeY1Gvxp/MLg==} + croner@8.1.1: + resolution: {integrity: sha512-1VdUuRnQP4drdFkS8NKvDR1NBgevm8TOuflcaZEKsxw42CxonjW/2vkj1AKlinJb4ZLwBcuWF9GiPr7FQc6AQA==} engines: {node: '>=18.0'} cross-env@7.0.3: @@ -5322,8 +5243,8 @@ packages: engines: {node: '>=0.10.0'} hasBin: true - electron-to-chromium@1.5.4: - resolution: {integrity: sha512-orzA81VqLyIGUEA77YkVA1D+N+nNfl2isJVjjmOyrlxuooZ19ynb+dOlaDTqd/idKRS9lDCSBmtzM+kyCsMnkA==} + electron-to-chromium@1.5.5: + resolution: {integrity: sha512-QR7/A7ZkMS8tZuoftC/jfqNkZLQO779SSW3YuZHP4eXpj3EffGLFcB/Xu9AAZQzLccTiCV+EmUo3ha4mQ9wnlA==} element-plus@2.7.8: resolution: {integrity: sha512-h6dx2XihAbQaud0v+6O7Fy0b0G3YNplNVH7QnK3csTcvQd4y4raiyMRQpf9EKbRbTMdNrFsqAZrs9ok9DMcJHg==} @@ -5339,9 +5260,6 @@ packages: emoji-regex@9.2.2: resolution: {integrity: sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==} - encode-utf8@1.0.3: - resolution: {integrity: sha512-ucAnuBEhUK4boH2HjVYG5Q2mQyPorvv0u/ocS+zhdw0S8AlHYY+GOFhP1Gio5z4icpP2ivFSvhtFjQi8+T9ppw==} - encodeurl@1.0.2: resolution: {integrity: sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==} engines: {node: '>= 0.8'} @@ -5364,6 +5282,10 @@ packages: resolution: {integrity: sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==} engines: {node: '>=0.12'} + entities@5.0.0: + resolution: {integrity: sha512-BeJFvFRJddxobhvEdm5GqHzRV/X+ACeuw0/BuuxsCh1EUZcAIz8+kYmBp/LrQuloy6K1f3a0M7+IhmZ7QnkISA==} + engines: {node: '>=0.12'} + env-paths@2.2.1: resolution: {integrity: sha512-+h1lkLKhZMTYjog1VEpJNG7NZJWcuc2DDk/qsqSTRRCOXiLjeQ1d1/udrUGhqMxUgAlwKNZ0cf2uqan5GLuS2A==} engines: {node: '>=6'} @@ -5472,8 +5394,8 @@ packages: peerDependencies: eslint: '>=7.0.0' - eslint-config-turbo@2.0.11: - resolution: {integrity: sha512-hriQ+OQvKbtE1w7JH+w2X+Lh/9YPgnaNJmjrfhANWStFJTDa1NrJMCm2UaxHbDNKxFsr/mN9TTkVCRiTktIaqw==} + eslint-config-turbo@2.0.12: + resolution: {integrity: sha512-3PUzoyeJi2SjsTSjfWgTUIHK7kOqsapDEaOT7sCjFnZXvuhYLKxW37lysjq7+55abGGm0yQTXxNFLjrQKUORag==} peerDependencies: eslint: '>6.6.0' @@ -5564,8 +5486,8 @@ packages: peerDependencies: eslint: '>=8.44.0' - eslint-plugin-turbo@2.0.11: - resolution: {integrity: sha512-cM2KRlC6zh8Y5pOpiGTkBMp3/V4f4sEebSYcHjotfc4VQziPXuZtf/4Si4pd6l1FpmYfkgE+AReZsRfEfK17bw==} + eslint-plugin-turbo@2.0.12: + resolution: {integrity: sha512-vXWKer7F0RPTcVy1B+hFTEK4mlEOpouB8MCAFD3WW4C6t98wvuDCsIPjxIldpxg7CnwmRxALpNWgNVkU2LVVEQ==} peerDependencies: eslint: '>6.6.0' @@ -6549,6 +6471,10 @@ packages: resolution: {integrity: sha512-YtOli5Cmzy3q4dP26GraSOeAhqecewG04hoO8DY56CH4KJ9Fvv5qKWUCCo3HZob7esJQHCv6/+bnTy72xZZaVQ==} engines: {node: '>=12.0.0'} + jsdoc-type-pratt-parser@4.1.0: + resolution: {integrity: sha512-Hicd6JK5Njt2QB6XYFS7ok9e37O8AYk3jTcppG4YVQnYjOemymvTcmc7OWsmq/Qqj5TdRFO5/x/tIPmBeRtGHg==} + engines: {node: '>=12.0.0'} + jsdom@24.1.1: resolution: {integrity: sha512-5O1wWV99Jhq4DV7rCLIoZ/UIhyQeDR7wHVyZAHAshbrvZsLs+Xzz7gtwnlJTJDjleiTKh54F4dXrX70vJQTyJQ==} engines: {node: '>=18'} @@ -7446,8 +7372,8 @@ packages: peerDependencies: postcss: ^8.4 - postcss-calc@10.0.0: - resolution: {integrity: sha512-OmjhudoNTP0QleZCwl1i6NeBwN+5MZbY5ersLZz69mjJiDVv/p57RjRuKDkHeDWr4T+S97wQfsqRTNoDHB2e3g==} + postcss-calc@10.0.1: + resolution: {integrity: sha512-pp1Z3FxtxA+xHAoWXcOXgnBN1WPu4ZiJ5LWGjKyf9MMreagAsaTUtnqFK1y1sHhyJddAkYTPu6XSuLgb3oYCjw==} engines: {node: ^18.12 || ^20.9 || >=22.0} peerDependencies: postcss: ^8.4.38 @@ -7841,8 +7767,8 @@ packages: postcss-value-parser@4.2.0: resolution: {integrity: sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==} - postcss@8.4.40: - resolution: {integrity: sha512-YF2kKIUzAofPMpfH6hOi2cGnv/HrUlfucspc7pDyvv7kGdqXrfj8SCl/t8owkEgKEuu8ZcRjSOxFxVLqwChZ2Q==} + postcss@8.4.41: + resolution: {integrity: sha512-TesUflQ0WKZqAvg52PWL6kHgLKP6xB6heTOdoYM0Wt2UHyxNa4K25EZZMgKns3BH1RLVbZCREPpLY0rhnNoHVQ==} engines: {node: ^10 || ^12 || >=14} preact@10.23.1: @@ -7983,8 +7909,8 @@ packages: resolution: {integrity: sha512-FLpr4flz5xZTSJxSeaheeMKN/EDzMdK7b8PTOC6a5PYFKTucWbdqjgqaEyH0shFiSJrVB1+Qqi4Tk19ccU6Aug==} engines: {node: '>=12.20'} - qrcode@1.5.3: - resolution: {integrity: sha512-puyri6ApkEHYiVl4CFzo1tDkAZ+ATcnbJrJ6RiBM1Fhctdn/ix9MTE3hRph33omisEbC/2fcfemsseiKgBPKZg==} + qrcode@1.5.4: + resolution: {integrity: sha512-1ca71Zgiu6ORjHqFBDpnSMTR2ReToX4l1Au1VFLyVeBTFavzQnv5JxMFr3ukHVKpSrSA2MCk0lNJSykjUfz7Zg==} engines: {node: '>=10.13.0'} hasBin: true @@ -7997,8 +7923,8 @@ packages: queue-tick@1.0.1: resolution: {integrity: sha512-kJt5qhMxoszgU/62PLP1CJytzd2NKetjSRnyuj31fDd3Rlcz3fzlFdFLD1SItunPwyqEOkca6GbV612BWfaBag==} - radix-vue@1.9.2: - resolution: {integrity: sha512-XXwEMmXJmzcy9SebywbQdrZg8UE1jueqPMpxKK6NoquRC0CP4dvlBcuzp4lDWNSsqOgmkXa6CNbwEzdCX96umg==} + radix-vue@1.9.3: + resolution: {integrity: sha512-9pewcgzghM+B+FO1h9mMsZa/csVH6hElpN1sqmG4/qoeieiDG0i4nhMjS7p2UOz11EEdVm7eLandHSPyx7hYhg==} peerDependencies: vue: ^3.4.35 @@ -8216,11 +8142,6 @@ packages: engines: {node: '>=14.18.0', npm: '>=8.0.0'} hasBin: true - rollup@4.19.2: - resolution: {integrity: sha512-6/jgnN1svF9PjNYJ4ya3l+cqutg49vOZ4rVgsDKxdl+5gpGPnByFXWGyfH9YGx9i3nfBwSu1Iyu6vGwFFA0BdQ==} - engines: {node: '>=18.0.0', npm: '>=8.0.0'} - hasBin: true - rollup@4.20.0: resolution: {integrity: sha512-6rbWBChcnSGzIlXeIdNIZTopKYad8ZG8ajhl78lGRLsI2rX8IkaotQhVas2Ma+GPxJav19wrSzvRvuiv0YKzWw==} engines: {node: '>=18.0.0', npm: '>=8.0.0'} @@ -8283,8 +8204,8 @@ packages: scule@1.3.0: resolution: {integrity: sha512-6FtHJEvt+pVMIB9IBY+IcCJ6Z5f1iQnytgyfKMhDKgmzYG+TeH/wx1y3l27rshSbLiSanrR9ffZDrEsmjlQF2g==} - search-insights@2.15.0: - resolution: {integrity: sha512-ch2sPCUDD4sbPQdknVl9ALSi9H7VyoeVbsxznYz6QV55jJ8CI3EtwpO1i84keN4+hF5IeHWIeGvc08530JkVXQ==} + search-insights@2.16.0: + resolution: {integrity: sha512-6ukNTOkN2OvJ8SJRmWionpn39OHOov1rx72kyGDYk60CaGrDfmT8wXYzgKLW9VFk+dVVXlUmWQVvrkRvx/x3Mg==} seemly@0.3.8: resolution: {integrity: sha512-MW8Qs6vbzo0pHmDpFSYPna+lwpZ6Zk1ancbajw/7E8TKtHdV+1DfZZD+kKJEhG/cAoB/i+LiT+5msZOqj0DwRA==} @@ -8815,11 +8736,11 @@ packages: through@2.3.8: resolution: {integrity: sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg==} - tinybench@2.8.0: - resolution: {integrity: sha512-1/eK7zUnIklz4JUUlL+658n58XO2hHLQfSk1Zf2LKieUjxidN16eKFEoDEfjHc3ohofSSqK3X5yO6VGb6iW8Lw==} + tinybench@2.9.0: + resolution: {integrity: sha512-0+DUvqWMValLmha6lr4kD8iAMK1HzV0/aKnCtWb9v9641TnP/MFb7Pc2bxoxQjTXAErryXVgUOfv2YqNllqGeg==} - tinyglobby@0.2.0: - resolution: {integrity: sha512-+clyYQfAnNlt5a1x7CCQ6RLuTIztDfDAl6mAANvqRUlz6sVy5znCzJOhais8G6oyUyoeeaorLopO3HptVP8niA==} + tinyglobby@0.2.2: + resolution: {integrity: sha512-mZ2sDMaySvi1PkTp4lTo1In2zjU+cY8OvZsfwrDrx3YGRbXPX1/cbPwCR9zkm3O/Fz9Jo0F1HNgIQ1b8BepqyQ==} engines: {node: '>=12.0.0'} tinypool@1.0.0: @@ -8886,38 +8807,38 @@ packages: tslib@2.6.3: resolution: {integrity: sha512-xNvxJEOUiWPGhUuUdQgAJPKOOJfGnIyKySOc09XkKsgdUV/3E2zvwZYdejjmRgPCgcym1juLH3226yA7sEFJKQ==} - turbo-darwin-64@2.0.11: - resolution: {integrity: sha512-YlHEEhcm+jI1BSZoLugGHUWDfRXaNaQIv7tGQBfadYjo9kixBnqoTOU6s1ubOrQMID+lizZZQs79GXwqM6vohg==} + turbo-darwin-64@2.0.12: + resolution: {integrity: sha512-NAgfgbXxX/JScWQmmQnGbPuFZq7LIswHfcMk5JwyBXQM/xmklNOxxac7MnGGIOf19Z2f6S3qHy17VIj0SeGfnA==} cpu: [x64] os: [darwin] - turbo-darwin-arm64@2.0.11: - resolution: {integrity: sha512-K/YW+hWzRQ/wGmtffxllH4M1tgy8OlwgXODrIiAGzkSpZl9+pIsem/F86UULlhsIeavBYK/LS5+dzV3DPMjJ9w==} + turbo-darwin-arm64@2.0.12: + resolution: {integrity: sha512-cP02uer5KSJ+fXL+OfRRk5hnVjV0c60hxDgNcJxrZpfhun7HHoKDDR7w2xhQntiA45aC6ZZEXRqMKpj6GAmKbg==} cpu: [arm64] os: [darwin] - turbo-linux-64@2.0.11: - resolution: {integrity: sha512-mv8CwGP06UPweMh1Vlp6PI6OWnkuibxfIJ4Vlof7xqjohAaZU5FLqeOeHkjQflH/6YrCVuS9wrK0TFOu+meTtA==} + turbo-linux-64@2.0.12: + resolution: {integrity: sha512-+mQgGfg1eq5qF+wenK/FKJaNMNAo5DQLC4htQy+8osW+fx6U+8+6UlPQPaycAWDEqwOI7NwuqkeHfkEQLQUTyQ==} cpu: [x64] os: [linux] - turbo-linux-arm64@2.0.11: - resolution: {integrity: sha512-wLE5tl4oriTmHbuayc0ki0csaCplmVLj+uCWtecM/mfBuZgNS9ICNM9c4sB+Cfl5tlBBFeepqRNgvRvn8WeVZg==} + turbo-linux-arm64@2.0.12: + resolution: {integrity: sha512-KFyEZDXfPU1DK4zimxdCcqAcK7IIttX4mfsgB7NsSEOmH0dhHOih/YFYiyEDC1lTRx0C2RlzQ0Kjjdz48AN5Eg==} cpu: [arm64] os: [linux] - turbo-windows-64@2.0.11: - resolution: {integrity: sha512-tja3zvVCSWu3HizOoeQv0qDJ+GeWGWRFOOM6a8i3BYnXLgGKAaDZFcjwzgC50tWiAw4aowIVR4OouwIyRhLBaQ==} + turbo-windows-64@2.0.12: + resolution: {integrity: sha512-kJj4KCkZTkDTDCqsSw1m1dbO4WeoQq1mYUm/thXOH0OkeqYbSMt0EyoTcJOgKUDsrMnzZD2gPfYrlYHtV69lVA==} cpu: [x64] os: [win32] - turbo-windows-arm64@2.0.11: - resolution: {integrity: sha512-sYjXP6k94Bqh99R+y3M1Ks6LRIEZybMz+7enA8GKl6JJ2ZFaXxTnS6q+/2+ii1+rRwxohj5OBb4gxODcF8Jd4w==} + turbo-windows-arm64@2.0.12: + resolution: {integrity: sha512-TY3ROxguDilN2olCwcZMaePdW01Xhma0pZU7bNhsQEqca9RGAmsZBuzfGnTMcWPmv4tpnb/PlX1hrt1Hod/44Q==} cpu: [arm64] os: [win32] - turbo@2.0.11: - resolution: {integrity: sha512-imDlFFAvitbCm1JtDFJ6eG882qwxHUmVT2noPb3p2jq5o5DuXOchMbkVS9kUeC3/4WpY5N0GBZ3RvqNyjHZw1Q==} + turbo@2.0.12: + resolution: {integrity: sha512-8s2KwqjwQj7z8Z53SUZSKVkQOZ2/Sl4D2F440oaBY/k2lGju60dW6srEpnn8/RIDeICZmQn3pQHF79Jfnc5Skw==} hasBin: true type-check@0.4.0: @@ -9028,8 +8949,8 @@ packages: resolution: {integrity: sha512-lRfVq8fE8gz6QMBuDM6a+LO3IAzTi05H6gCVaUpir2E1Rwpo4ZUog45KpNXKC/Mn3Yb9UDuHumeFTo9iV/D9FQ==} engines: {node: '>=18'} - unimport@3.9.1: - resolution: {integrity: sha512-4gtacoNH6YPx2Aa5Xfyrf8pU2RdXjWUACb/eF7bH1AcZtqs+6ijbNB0M3BPENbtVjnCcg8tw9UJ1jQGbCzKA6g==} + unimport@3.10.0: + resolution: {integrity: sha512-/UvKRfWx3mNDWwWQhR62HsoM3wxHwYdTq8ellZzMOHnnw4Dp8tovgthyW7DjTrbjDL+i4idOp06voz2VKlvrLw==} unique-filename@1.1.1: resolution: {integrity: sha512-Vmp0jIp2ln35UTXuryvjzkjGdRyf9b2lTXuSYUiPmzRcl3FDtYqAwOnTJkAngD9SWhnoJzDbTKwaOrZ+STtxNQ==} @@ -9323,8 +9244,8 @@ packages: peerDependencies: vue: ^3.4.35 - vue-router@4.4.2: - resolution: {integrity: sha512-1qNybkn2L7QsLzaXs8nvlQmRKp8XF8DCxZys/Jr1JpQcHsKUxTKzTxCVA1G7NfBfwRIBgCJPoujOG5lHCCNUxw==} + vue-router@4.4.3: + resolution: {integrity: sha512-sv6wmNKx2j3aqJQDMxLFzs/u/mjA9Z5LCgy6BE0f7yFWMjrPLnS/sPNn8ARY/FXw6byV18EFutn5lTO6+UsV5A==} peerDependencies: vue: ^3.4.35 @@ -9340,8 +9261,8 @@ packages: peerDependencies: vue: ^3.4.35 - vue@3.4.35: - resolution: {integrity: sha512-+fl/GLmI4GPileHftVlCdB7fUL4aziPcqTudpTGXCT8s+iZWuOCeNEB5haX6Uz2IpRrbEXOgIFbe+XciCuGbNQ==} + vue@3.4.36: + resolution: {integrity: sha512-mIFvbLgjODfx3Iy1SrxOsiPpDb8Bo3EU+87ioimOZzZTOp15IEdAels70IjBOLO3ZFlLW5AhdwY4dWbXVQKYow==} peerDependencies: typescript: '*' peerDependenciesMeta: @@ -9632,19 +9553,19 @@ packages: snapshots: - '@algolia/autocomplete-core@1.9.3(@algolia/client-search@4.24.0)(algoliasearch@4.24.0)(search-insights@2.15.0)': + '@algolia/autocomplete-core@1.9.3(@algolia/client-search@4.24.0)(algoliasearch@4.24.0)(search-insights@2.16.0)': dependencies: - '@algolia/autocomplete-plugin-algolia-insights': 1.9.3(@algolia/client-search@4.24.0)(algoliasearch@4.24.0)(search-insights@2.15.0) + '@algolia/autocomplete-plugin-algolia-insights': 1.9.3(@algolia/client-search@4.24.0)(algoliasearch@4.24.0)(search-insights@2.16.0) '@algolia/autocomplete-shared': 1.9.3(@algolia/client-search@4.24.0)(algoliasearch@4.24.0) transitivePeerDependencies: - '@algolia/client-search' - algoliasearch - search-insights - '@algolia/autocomplete-plugin-algolia-insights@1.9.3(@algolia/client-search@4.24.0)(algoliasearch@4.24.0)(search-insights@2.15.0)': + '@algolia/autocomplete-plugin-algolia-insights@1.9.3(@algolia/client-search@4.24.0)(algoliasearch@4.24.0)(search-insights@2.16.0)': dependencies: '@algolia/autocomplete-shared': 1.9.3(@algolia/client-search@4.24.0)(algoliasearch@4.24.0) - search-insights: 2.15.0 + search-insights: 2.16.0 transitivePeerDependencies: - '@algolia/client-search' - algoliasearch @@ -9747,13 +9668,17 @@ snapshots: dependencies: '@ctrl/tinycolor': 4.1.0 + '@ant-design/fast-color@2.0.6': + dependencies: + '@babel/runtime': 7.25.0 + '@ant-design/icons-svg@4.4.2': {} - '@ant-design/icons-vue@7.0.1(vue@3.4.35(typescript@5.5.4))': + '@ant-design/icons-vue@7.0.1(vue@3.4.36(typescript@5.5.4))': dependencies: '@ant-design/colors': 6.0.0 '@ant-design/icons-svg': 4.4.2 - vue: 3.4.35(typescript@5.5.4) + vue: 3.4.36(typescript@5.5.4) '@antfu/utils@0.7.10': {} @@ -10829,12 +10754,12 @@ snapshots: dependencies: mime: 3.0.0 - '@commitlint/cli@19.3.0(@types/node@22.1.0)(typescript@5.5.4)': + '@commitlint/cli@19.4.0(@types/node@22.1.0)(typescript@5.5.4)': dependencies: '@commitlint/format': 19.3.0 '@commitlint/lint': 19.2.2 - '@commitlint/load': 19.2.0(@types/node@22.1.0)(typescript@5.5.4) - '@commitlint/read': 19.2.1 + '@commitlint/load': 19.4.0(@types/node@22.1.0)(typescript@5.5.4) + '@commitlint/read': 19.4.0 '@commitlint/types': 19.0.3 execa: 8.0.1 yargs: 17.7.2 @@ -10880,7 +10805,7 @@ snapshots: '@commitlint/rules': 19.0.3 '@commitlint/types': 19.0.3 - '@commitlint/load@19.2.0(@types/node@22.1.0)(typescript@5.5.4)': + '@commitlint/load@19.4.0(@types/node@22.1.0)(typescript@5.5.4)': dependencies: '@commitlint/config-validator': 19.0.3 '@commitlint/execute-rule': 19.0.0 @@ -10904,7 +10829,7 @@ snapshots: conventional-changelog-angular: 7.0.0 conventional-commits-parser: 5.0.0 - '@commitlint/read@19.2.1': + '@commitlint/read@19.4.0': dependencies: '@commitlint/top-level': 19.0.0 '@commitlint/types': 19.0.3 @@ -10945,7 +10870,7 @@ snapshots: '@cspell/dict-ada': 4.0.2 '@cspell/dict-aws': 4.0.3 '@cspell/dict-bash': 4.1.3 - '@cspell/dict-companies': 3.1.3 + '@cspell/dict-companies': 3.1.4 '@cspell/dict-cpp': 5.1.12 '@cspell/dict-cryptocurrencies': 5.0.0 '@cspell/dict-csharp': 4.0.2 @@ -10955,7 +10880,7 @@ snapshots: '@cspell/dict-docker': 1.1.7 '@cspell/dict-dotnet': 5.0.2 '@cspell/dict-elixir': 4.0.3 - '@cspell/dict-en-common-misspellings': 2.0.3 + '@cspell/dict-en-common-misspellings': 2.0.4 '@cspell/dict-en-gb': 1.1.33 '@cspell/dict-en_us': 4.3.23 '@cspell/dict-filetypes': 3.0.4 @@ -10982,13 +10907,13 @@ snapshots: '@cspell/dict-php': 4.0.8 '@cspell/dict-powershell': 5.0.5 '@cspell/dict-public-licenses': 2.0.7 - '@cspell/dict-python': 4.2.3 + '@cspell/dict-python': 4.2.4 '@cspell/dict-r': 2.0.1 '@cspell/dict-ruby': 5.0.2 '@cspell/dict-rust': 4.0.5 '@cspell/dict-scala': 5.0.3 - '@cspell/dict-software-terms': 4.0.3 - '@cspell/dict-sql': 2.1.3 + '@cspell/dict-software-terms': 4.0.5 + '@cspell/dict-sql': 2.1.5 '@cspell/dict-svelte': 1.0.2 '@cspell/dict-swift': 2.0.1 '@cspell/dict-terraform': 1.0.0 @@ -11015,7 +10940,7 @@ snapshots: '@cspell/dict-bash@4.1.3': {} - '@cspell/dict-companies@3.1.3': {} + '@cspell/dict-companies@3.1.4': {} '@cspell/dict-cpp@5.1.12': {} @@ -11037,7 +10962,7 @@ snapshots: '@cspell/dict-elixir@4.0.3': {} - '@cspell/dict-en-common-misspellings@2.0.3': {} + '@cspell/dict-en-common-misspellings@2.0.4': {} '@cspell/dict-en-gb@1.1.33': {} @@ -11091,7 +11016,7 @@ snapshots: '@cspell/dict-public-licenses@2.0.7': {} - '@cspell/dict-python@4.2.3': + '@cspell/dict-python@4.2.4': dependencies: '@cspell/dict-data-science': 2.0.1 @@ -11103,9 +11028,9 @@ snapshots: '@cspell/dict-scala@5.0.3': {} - '@cspell/dict-software-terms@4.0.3': {} + '@cspell/dict-software-terms@4.0.5': {} - '@cspell/dict-sql@2.1.3': {} + '@cspell/dict-sql@2.1.5': {} '@cspell/dict-svelte@1.0.2': {} @@ -11129,9 +11054,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.36(typescript@5.5.4))': dependencies: - vue: 3.4.35(typescript@5.5.4) + vue: 3.4.36(typescript@5.5.4) '@csstools/cascade-layer-name-parser@2.0.0(@csstools/css-parser-algorithms@3.0.0(@csstools/css-tokenizer@3.0.0))(@csstools/css-tokenizer@3.0.0)': dependencies: @@ -11174,201 +11099,201 @@ snapshots: '@csstools/css-parser-algorithms': 3.0.0(@csstools/css-tokenizer@3.0.0) '@csstools/css-tokenizer': 3.0.0 - '@csstools/postcss-cascade-layers@5.0.0(postcss@8.4.40)': + '@csstools/postcss-cascade-layers@5.0.0(postcss@8.4.41)': dependencies: '@csstools/selector-specificity': 4.0.0(postcss-selector-parser@6.1.1) - postcss: 8.4.40 + postcss: 8.4.41 postcss-selector-parser: 6.1.1 - '@csstools/postcss-color-function@4.0.0(postcss@8.4.40)': + '@csstools/postcss-color-function@4.0.0(postcss@8.4.41)': dependencies: '@csstools/css-color-parser': 3.0.0(@csstools/css-parser-algorithms@3.0.0(@csstools/css-tokenizer@3.0.0))(@csstools/css-tokenizer@3.0.0) '@csstools/css-parser-algorithms': 3.0.0(@csstools/css-tokenizer@3.0.0) '@csstools/css-tokenizer': 3.0.0 - '@csstools/postcss-progressive-custom-properties': 4.0.0(postcss@8.4.40) - '@csstools/utilities': 2.0.0(postcss@8.4.40) - postcss: 8.4.40 + '@csstools/postcss-progressive-custom-properties': 4.0.0(postcss@8.4.41) + '@csstools/utilities': 2.0.0(postcss@8.4.41) + postcss: 8.4.41 - '@csstools/postcss-color-mix-function@3.0.0(postcss@8.4.40)': + '@csstools/postcss-color-mix-function@3.0.0(postcss@8.4.41)': dependencies: '@csstools/css-color-parser': 3.0.0(@csstools/css-parser-algorithms@3.0.0(@csstools/css-tokenizer@3.0.0))(@csstools/css-tokenizer@3.0.0) '@csstools/css-parser-algorithms': 3.0.0(@csstools/css-tokenizer@3.0.0) '@csstools/css-tokenizer': 3.0.0 - '@csstools/postcss-progressive-custom-properties': 4.0.0(postcss@8.4.40) - '@csstools/utilities': 2.0.0(postcss@8.4.40) - postcss: 8.4.40 + '@csstools/postcss-progressive-custom-properties': 4.0.0(postcss@8.4.41) + '@csstools/utilities': 2.0.0(postcss@8.4.41) + postcss: 8.4.41 - '@csstools/postcss-content-alt-text@2.0.0(postcss@8.4.40)': + '@csstools/postcss-content-alt-text@2.0.0(postcss@8.4.41)': dependencies: '@csstools/css-parser-algorithms': 3.0.0(@csstools/css-tokenizer@3.0.0) '@csstools/css-tokenizer': 3.0.0 - '@csstools/postcss-progressive-custom-properties': 4.0.0(postcss@8.4.40) - '@csstools/utilities': 2.0.0(postcss@8.4.40) - postcss: 8.4.40 + '@csstools/postcss-progressive-custom-properties': 4.0.0(postcss@8.4.41) + '@csstools/utilities': 2.0.0(postcss@8.4.41) + postcss: 8.4.41 - '@csstools/postcss-exponential-functions@2.0.0(postcss@8.4.40)': + '@csstools/postcss-exponential-functions@2.0.0(postcss@8.4.41)': dependencies: '@csstools/css-calc': 2.0.0(@csstools/css-parser-algorithms@3.0.0(@csstools/css-tokenizer@3.0.0))(@csstools/css-tokenizer@3.0.0) '@csstools/css-parser-algorithms': 3.0.0(@csstools/css-tokenizer@3.0.0) '@csstools/css-tokenizer': 3.0.0 - postcss: 8.4.40 + postcss: 8.4.41 - '@csstools/postcss-font-format-keywords@4.0.0(postcss@8.4.40)': + '@csstools/postcss-font-format-keywords@4.0.0(postcss@8.4.41)': dependencies: - '@csstools/utilities': 2.0.0(postcss@8.4.40) - postcss: 8.4.40 + '@csstools/utilities': 2.0.0(postcss@8.4.41) + postcss: 8.4.41 postcss-value-parser: 4.2.0 - '@csstools/postcss-gamut-mapping@2.0.0(postcss@8.4.40)': + '@csstools/postcss-gamut-mapping@2.0.0(postcss@8.4.41)': dependencies: '@csstools/css-color-parser': 3.0.0(@csstools/css-parser-algorithms@3.0.0(@csstools/css-tokenizer@3.0.0))(@csstools/css-tokenizer@3.0.0) '@csstools/css-parser-algorithms': 3.0.0(@csstools/css-tokenizer@3.0.0) '@csstools/css-tokenizer': 3.0.0 - postcss: 8.4.40 + postcss: 8.4.41 - '@csstools/postcss-gradients-interpolation-method@5.0.0(postcss@8.4.40)': + '@csstools/postcss-gradients-interpolation-method@5.0.0(postcss@8.4.41)': dependencies: '@csstools/css-color-parser': 3.0.0(@csstools/css-parser-algorithms@3.0.0(@csstools/css-tokenizer@3.0.0))(@csstools/css-tokenizer@3.0.0) '@csstools/css-parser-algorithms': 3.0.0(@csstools/css-tokenizer@3.0.0) '@csstools/css-tokenizer': 3.0.0 - '@csstools/postcss-progressive-custom-properties': 4.0.0(postcss@8.4.40) - '@csstools/utilities': 2.0.0(postcss@8.4.40) - postcss: 8.4.40 + '@csstools/postcss-progressive-custom-properties': 4.0.0(postcss@8.4.41) + '@csstools/utilities': 2.0.0(postcss@8.4.41) + postcss: 8.4.41 - '@csstools/postcss-hwb-function@4.0.0(postcss@8.4.40)': + '@csstools/postcss-hwb-function@4.0.0(postcss@8.4.41)': dependencies: '@csstools/css-color-parser': 3.0.0(@csstools/css-parser-algorithms@3.0.0(@csstools/css-tokenizer@3.0.0))(@csstools/css-tokenizer@3.0.0) '@csstools/css-parser-algorithms': 3.0.0(@csstools/css-tokenizer@3.0.0) '@csstools/css-tokenizer': 3.0.0 - '@csstools/postcss-progressive-custom-properties': 4.0.0(postcss@8.4.40) - '@csstools/utilities': 2.0.0(postcss@8.4.40) - postcss: 8.4.40 + '@csstools/postcss-progressive-custom-properties': 4.0.0(postcss@8.4.41) + '@csstools/utilities': 2.0.0(postcss@8.4.41) + postcss: 8.4.41 - '@csstools/postcss-ic-unit@4.0.0(postcss@8.4.40)': + '@csstools/postcss-ic-unit@4.0.0(postcss@8.4.41)': dependencies: - '@csstools/postcss-progressive-custom-properties': 4.0.0(postcss@8.4.40) - '@csstools/utilities': 2.0.0(postcss@8.4.40) - postcss: 8.4.40 + '@csstools/postcss-progressive-custom-properties': 4.0.0(postcss@8.4.41) + '@csstools/utilities': 2.0.0(postcss@8.4.41) + postcss: 8.4.41 postcss-value-parser: 4.2.0 - '@csstools/postcss-initial@2.0.0(postcss@8.4.40)': + '@csstools/postcss-initial@2.0.0(postcss@8.4.41)': dependencies: - postcss: 8.4.40 + postcss: 8.4.41 - '@csstools/postcss-is-pseudo-class@5.0.0(postcss@8.4.40)': + '@csstools/postcss-is-pseudo-class@5.0.0(postcss@8.4.41)': dependencies: '@csstools/selector-specificity': 4.0.0(postcss-selector-parser@6.1.1) - postcss: 8.4.40 + postcss: 8.4.41 postcss-selector-parser: 6.1.1 - '@csstools/postcss-light-dark-function@2.0.0(postcss@8.4.40)': + '@csstools/postcss-light-dark-function@2.0.0(postcss@8.4.41)': dependencies: '@csstools/css-parser-algorithms': 3.0.0(@csstools/css-tokenizer@3.0.0) '@csstools/css-tokenizer': 3.0.0 - '@csstools/postcss-progressive-custom-properties': 4.0.0(postcss@8.4.40) - '@csstools/utilities': 2.0.0(postcss@8.4.40) - postcss: 8.4.40 + '@csstools/postcss-progressive-custom-properties': 4.0.0(postcss@8.4.41) + '@csstools/utilities': 2.0.0(postcss@8.4.41) + postcss: 8.4.41 - '@csstools/postcss-logical-float-and-clear@3.0.0(postcss@8.4.40)': + '@csstools/postcss-logical-float-and-clear@3.0.0(postcss@8.4.41)': dependencies: - postcss: 8.4.40 + postcss: 8.4.41 - '@csstools/postcss-logical-overflow@2.0.0(postcss@8.4.40)': + '@csstools/postcss-logical-overflow@2.0.0(postcss@8.4.41)': dependencies: - postcss: 8.4.40 + postcss: 8.4.41 - '@csstools/postcss-logical-overscroll-behavior@2.0.0(postcss@8.4.40)': + '@csstools/postcss-logical-overscroll-behavior@2.0.0(postcss@8.4.41)': dependencies: - postcss: 8.4.40 + postcss: 8.4.41 - '@csstools/postcss-logical-resize@3.0.0(postcss@8.4.40)': + '@csstools/postcss-logical-resize@3.0.0(postcss@8.4.41)': dependencies: - postcss: 8.4.40 + postcss: 8.4.41 postcss-value-parser: 4.2.0 - '@csstools/postcss-logical-viewport-units@3.0.0(postcss@8.4.40)': + '@csstools/postcss-logical-viewport-units@3.0.0(postcss@8.4.41)': dependencies: '@csstools/css-tokenizer': 3.0.0 - '@csstools/utilities': 2.0.0(postcss@8.4.40) - postcss: 8.4.40 + '@csstools/utilities': 2.0.0(postcss@8.4.41) + postcss: 8.4.41 - '@csstools/postcss-media-minmax@2.0.0(postcss@8.4.40)': + '@csstools/postcss-media-minmax@2.0.0(postcss@8.4.41)': dependencies: '@csstools/css-calc': 2.0.0(@csstools/css-parser-algorithms@3.0.0(@csstools/css-tokenizer@3.0.0))(@csstools/css-tokenizer@3.0.0) '@csstools/css-parser-algorithms': 3.0.0(@csstools/css-tokenizer@3.0.0) '@csstools/css-tokenizer': 3.0.0 '@csstools/media-query-list-parser': 3.0.0(@csstools/css-parser-algorithms@3.0.0(@csstools/css-tokenizer@3.0.0))(@csstools/css-tokenizer@3.0.0) - postcss: 8.4.40 + postcss: 8.4.41 - '@csstools/postcss-media-queries-aspect-ratio-number-values@3.0.0(postcss@8.4.40)': + '@csstools/postcss-media-queries-aspect-ratio-number-values@3.0.0(postcss@8.4.41)': dependencies: '@csstools/css-parser-algorithms': 3.0.0(@csstools/css-tokenizer@3.0.0) '@csstools/css-tokenizer': 3.0.0 '@csstools/media-query-list-parser': 3.0.0(@csstools/css-parser-algorithms@3.0.0(@csstools/css-tokenizer@3.0.0))(@csstools/css-tokenizer@3.0.0) - postcss: 8.4.40 + postcss: 8.4.41 - '@csstools/postcss-nested-calc@4.0.0(postcss@8.4.40)': + '@csstools/postcss-nested-calc@4.0.0(postcss@8.4.41)': dependencies: - '@csstools/utilities': 2.0.0(postcss@8.4.40) - postcss: 8.4.40 + '@csstools/utilities': 2.0.0(postcss@8.4.41) + postcss: 8.4.41 postcss-value-parser: 4.2.0 - '@csstools/postcss-normalize-display-values@4.0.0(postcss@8.4.40)': + '@csstools/postcss-normalize-display-values@4.0.0(postcss@8.4.41)': dependencies: - postcss: 8.4.40 + postcss: 8.4.41 postcss-value-parser: 4.2.0 - '@csstools/postcss-oklab-function@4.0.0(postcss@8.4.40)': + '@csstools/postcss-oklab-function@4.0.0(postcss@8.4.41)': dependencies: '@csstools/css-color-parser': 3.0.0(@csstools/css-parser-algorithms@3.0.0(@csstools/css-tokenizer@3.0.0))(@csstools/css-tokenizer@3.0.0) '@csstools/css-parser-algorithms': 3.0.0(@csstools/css-tokenizer@3.0.0) '@csstools/css-tokenizer': 3.0.0 - '@csstools/postcss-progressive-custom-properties': 4.0.0(postcss@8.4.40) - '@csstools/utilities': 2.0.0(postcss@8.4.40) - postcss: 8.4.40 + '@csstools/postcss-progressive-custom-properties': 4.0.0(postcss@8.4.41) + '@csstools/utilities': 2.0.0(postcss@8.4.41) + postcss: 8.4.41 - '@csstools/postcss-progressive-custom-properties@4.0.0(postcss@8.4.40)': + '@csstools/postcss-progressive-custom-properties@4.0.0(postcss@8.4.41)': dependencies: - postcss: 8.4.40 + postcss: 8.4.41 postcss-value-parser: 4.2.0 - '@csstools/postcss-relative-color-syntax@3.0.0(postcss@8.4.40)': + '@csstools/postcss-relative-color-syntax@3.0.0(postcss@8.4.41)': dependencies: '@csstools/css-color-parser': 3.0.0(@csstools/css-parser-algorithms@3.0.0(@csstools/css-tokenizer@3.0.0))(@csstools/css-tokenizer@3.0.0) '@csstools/css-parser-algorithms': 3.0.0(@csstools/css-tokenizer@3.0.0) '@csstools/css-tokenizer': 3.0.0 - '@csstools/postcss-progressive-custom-properties': 4.0.0(postcss@8.4.40) - '@csstools/utilities': 2.0.0(postcss@8.4.40) - postcss: 8.4.40 + '@csstools/postcss-progressive-custom-properties': 4.0.0(postcss@8.4.41) + '@csstools/utilities': 2.0.0(postcss@8.4.41) + postcss: 8.4.41 - '@csstools/postcss-scope-pseudo-class@4.0.0(postcss@8.4.40)': + '@csstools/postcss-scope-pseudo-class@4.0.0(postcss@8.4.41)': dependencies: - postcss: 8.4.40 + postcss: 8.4.41 postcss-selector-parser: 6.1.1 - '@csstools/postcss-stepped-value-functions@4.0.0(postcss@8.4.40)': + '@csstools/postcss-stepped-value-functions@4.0.0(postcss@8.4.41)': dependencies: '@csstools/css-calc': 2.0.0(@csstools/css-parser-algorithms@3.0.0(@csstools/css-tokenizer@3.0.0))(@csstools/css-tokenizer@3.0.0) '@csstools/css-parser-algorithms': 3.0.0(@csstools/css-tokenizer@3.0.0) '@csstools/css-tokenizer': 3.0.0 - postcss: 8.4.40 + postcss: 8.4.41 - '@csstools/postcss-text-decoration-shorthand@4.0.0(postcss@8.4.40)': + '@csstools/postcss-text-decoration-shorthand@4.0.0(postcss@8.4.41)': dependencies: '@csstools/color-helpers': 4.2.1 - postcss: 8.4.40 + postcss: 8.4.41 postcss-value-parser: 4.2.0 - '@csstools/postcss-trigonometric-functions@4.0.0(postcss@8.4.40)': + '@csstools/postcss-trigonometric-functions@4.0.0(postcss@8.4.41)': dependencies: '@csstools/css-calc': 2.0.0(@csstools/css-parser-algorithms@3.0.0(@csstools/css-tokenizer@3.0.0))(@csstools/css-tokenizer@3.0.0) '@csstools/css-parser-algorithms': 3.0.0(@csstools/css-tokenizer@3.0.0) '@csstools/css-tokenizer': 3.0.0 - postcss: 8.4.40 + postcss: 8.4.41 - '@csstools/postcss-unset-value@4.0.0(postcss@8.4.40)': + '@csstools/postcss-unset-value@4.0.0(postcss@8.4.41)': dependencies: - postcss: 8.4.40 + postcss: 8.4.41 '@csstools/selector-resolve-nested@2.0.0(postcss-selector-parser@6.1.1)': dependencies: @@ -11382,17 +11307,17 @@ snapshots: dependencies: postcss-selector-parser: 6.1.1 - '@csstools/utilities@2.0.0(postcss@8.4.40)': + '@csstools/utilities@2.0.0(postcss@8.4.41)': dependencies: - postcss: 8.4.40 + postcss: 8.4.41 '@ctrl/tinycolor@4.1.0': {} '@docsearch/css@3.6.1': {} - '@docsearch/js@3.6.1(@algolia/client-search@4.24.0)(search-insights@2.15.0)': + '@docsearch/js@3.6.1(@algolia/client-search@4.24.0)(search-insights@2.16.0)': dependencies: - '@docsearch/react': 3.6.1(@algolia/client-search@4.24.0)(search-insights@2.15.0) + '@docsearch/react': 3.6.1(@algolia/client-search@4.24.0)(search-insights@2.16.0) preact: 10.23.1 transitivePeerDependencies: - '@algolia/client-search' @@ -11401,22 +11326,22 @@ snapshots: - react-dom - search-insights - '@docsearch/react@3.6.1(@algolia/client-search@4.24.0)(search-insights@2.15.0)': + '@docsearch/react@3.6.1(@algolia/client-search@4.24.0)(search-insights@2.16.0)': dependencies: - '@algolia/autocomplete-core': 1.9.3(@algolia/client-search@4.24.0)(algoliasearch@4.24.0)(search-insights@2.15.0) + '@algolia/autocomplete-core': 1.9.3(@algolia/client-search@4.24.0)(algoliasearch@4.24.0)(search-insights@2.16.0) '@algolia/autocomplete-preset-algolia': 1.9.3(@algolia/client-search@4.24.0)(algoliasearch@4.24.0) '@docsearch/css': 3.6.1 algoliasearch: 4.24.0 optionalDependencies: - search-insights: 2.15.0 + search-insights: 2.16.0 transitivePeerDependencies: - '@algolia/client-search' '@dual-bundle/import-meta-resolve@4.1.0': {} - '@element-plus/icons-vue@2.3.1(vue@3.4.35(typescript@5.5.4))': + '@element-plus/icons-vue@2.3.1(vue@3.4.36(typescript@5.5.4))': dependencies: - vue: 3.4.35(typescript@5.5.4) + vue: 3.4.36(typescript@5.5.4) '@emotion/hash@0.8.0': {} @@ -11753,22 +11678,22 @@ snapshots: '@fastify/busboy@2.1.1': {} - '@floating-ui/core@1.6.5': + '@floating-ui/core@1.6.7': dependencies: - '@floating-ui/utils': 0.2.5 + '@floating-ui/utils': 0.2.7 - '@floating-ui/dom@1.6.8': + '@floating-ui/dom@1.6.10': dependencies: - '@floating-ui/core': 1.6.5 - '@floating-ui/utils': 0.2.5 + '@floating-ui/core': 1.6.7 + '@floating-ui/utils': 0.2.7 - '@floating-ui/utils@0.2.5': {} + '@floating-ui/utils@0.2.7': {} - '@floating-ui/vue@1.1.2(vue@3.4.35(typescript@5.5.4))': + '@floating-ui/vue@1.1.4(vue@3.4.36(typescript@5.5.4))': dependencies: - '@floating-ui/dom': 1.6.8 - '@floating-ui/utils': 0.2.5 - vue-demi: 0.14.10(vue@3.4.35(typescript@5.5.4)) + '@floating-ui/dom': 1.6.10 + '@floating-ui/utils': 0.2.7 + vue-demi: 0.14.10(vue@3.4.36(typescript@5.5.4)) transitivePeerDependencies: - '@vue/composition-api' - vue @@ -11790,10 +11715,10 @@ snapshots: '@iconify/types@2.0.0': {} - '@iconify/vue@4.1.2(vue@3.4.35(typescript@5.5.4))': + '@iconify/vue@4.1.2(vue@3.4.36(typescript@5.5.4))': dependencies: '@iconify/types': 2.0.0 - vue: 3.4.35(typescript@5.5.4) + vue: 3.4.36(typescript@5.5.4) '@internationalized/date@3.5.5': dependencies: @@ -11803,7 +11728,7 @@ snapshots: dependencies: '@swc/helpers': 0.5.12 - '@intlify/bundle-utils@8.0.0(vue-i18n@9.13.1(vue@3.4.35(typescript@5.5.4)))': + '@intlify/bundle-utils@8.0.0(vue-i18n@9.13.1(vue@3.4.36(typescript@5.5.4)))': dependencies: '@intlify/message-compiler': 9.13.1 '@intlify/shared': 9.13.1 @@ -11815,7 +11740,7 @@ snapshots: source-map-js: 1.2.0 yaml-eslint-parser: 1.2.3 optionalDependencies: - vue-i18n: 9.13.1(vue@3.4.35(typescript@5.5.4)) + vue-i18n: 9.13.1(vue@3.4.36(typescript@5.5.4)) '@intlify/core-base@9.13.1': dependencies: @@ -11829,12 +11754,12 @@ snapshots: '@intlify/shared@9.13.1': {} - '@intlify/unplugin-vue-i18n@4.0.0(rollup@4.20.0)(vue-i18n@9.13.1(vue@3.4.35(typescript@5.5.4)))': + '@intlify/unplugin-vue-i18n@4.0.0(rollup@4.20.0)(vue-i18n@9.13.1(vue@3.4.36(typescript@5.5.4)))': dependencies: - '@intlify/bundle-utils': 8.0.0(vue-i18n@9.13.1(vue@3.4.35(typescript@5.5.4))) + '@intlify/bundle-utils': 8.0.0(vue-i18n@9.13.1(vue@3.4.36(typescript@5.5.4))) '@intlify/shared': 9.13.1 '@rollup/pluginutils': 5.1.0(rollup@4.20.0) - '@vue/compiler-sfc': 3.4.35 + '@vue/compiler-sfc': 3.4.36 debug: 4.3.6 fast-glob: 3.3.2 js-yaml: 4.1.0 @@ -11844,7 +11769,7 @@ snapshots: source-map-js: 1.2.0 unplugin: 1.12.0 optionalDependencies: - vue-i18n: 9.13.1(vue@3.4.35(typescript@5.5.4)) + vue-i18n: 9.13.1(vue@3.4.36(typescript@5.5.4)) transitivePeerDependencies: - rollup - supports-color @@ -11882,7 +11807,7 @@ snapshots: '@jridgewell/resolve-uri': 3.1.2 '@jridgewell/sourcemap-codec': 1.5.0 - '@jspm/generator@2.1.2': + '@jspm/generator@2.1.3': dependencies: '@babel/core': 7.25.2 '@babel/plugin-syntax-import-attributes': 7.24.7(@babel/core@7.25.2) @@ -12092,7 +12017,7 @@ snapshots: dependencies: graceful-fs: 4.2.10 - '@pnpm/npm-conf@2.2.2': + '@pnpm/npm-conf@2.3.0': dependencies: '@pnpm/config.env-replace': 1.1.0 '@pnpm/network.ca-file': 1.0.2 @@ -12100,9 +12025,9 @@ snapshots: '@polka/url@1.0.0-next.25': {} - '@radix-icons/vue@1.0.0(vue@3.4.35(typescript@5.5.4))': + '@radix-icons/vue@1.0.0(vue@3.4.36(typescript@5.5.4))': dependencies: - vue: 3.4.35(typescript@5.5.4) + vue: 3.4.36(typescript@5.5.4) '@rollup/plugin-alias@5.1.0(rollup@3.29.4)': dependencies: @@ -12110,11 +12035,11 @@ snapshots: optionalDependencies: rollup: 3.29.4 - '@rollup/plugin-alias@5.1.0(rollup@4.19.2)': + '@rollup/plugin-alias@5.1.0(rollup@4.20.0)': dependencies: slash: 4.0.0 optionalDependencies: - rollup: 4.19.2 + rollup: 4.20.0 '@rollup/plugin-babel@5.3.1(@babel/core@7.25.2)(rollup@2.79.1)': dependencies: @@ -12136,24 +12061,24 @@ snapshots: optionalDependencies: rollup: 3.29.4 - '@rollup/plugin-commonjs@25.0.8(rollup@4.19.2)': + '@rollup/plugin-commonjs@25.0.8(rollup@4.20.0)': dependencies: - '@rollup/pluginutils': 5.1.0(rollup@4.19.2) + '@rollup/pluginutils': 5.1.0(rollup@4.20.0) commondir: 1.0.1 estree-walker: 2.0.2 glob: 8.1.0 is-reference: 1.2.1 magic-string: 0.30.11 optionalDependencies: - rollup: 4.19.2 + rollup: 4.20.0 - '@rollup/plugin-inject@5.0.5(rollup@4.19.2)': + '@rollup/plugin-inject@5.0.5(rollup@4.20.0)': dependencies: - '@rollup/pluginutils': 5.1.0(rollup@4.19.2) + '@rollup/pluginutils': 5.1.0(rollup@4.20.0) estree-walker: 2.0.2 magic-string: 0.30.11 optionalDependencies: - rollup: 4.19.2 + rollup: 4.20.0 '@rollup/plugin-json@6.1.0(rollup@3.29.4)': dependencies: @@ -12161,11 +12086,11 @@ snapshots: optionalDependencies: rollup: 3.29.4 - '@rollup/plugin-json@6.1.0(rollup@4.19.2)': + '@rollup/plugin-json@6.1.0(rollup@4.20.0)': dependencies: - '@rollup/pluginutils': 5.1.0(rollup@4.19.2) + '@rollup/pluginutils': 5.1.0(rollup@4.20.0) optionalDependencies: - rollup: 4.19.2 + rollup: 4.20.0 '@rollup/plugin-node-resolve@15.2.3(rollup@2.79.1)': dependencies: @@ -12189,16 +12114,16 @@ snapshots: optionalDependencies: rollup: 3.29.4 - '@rollup/plugin-node-resolve@15.2.3(rollup@4.19.2)': + '@rollup/plugin-node-resolve@15.2.3(rollup@4.20.0)': dependencies: - '@rollup/pluginutils': 5.1.0(rollup@4.19.2) + '@rollup/pluginutils': 5.1.0(rollup@4.20.0) '@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: 4.19.2 + rollup: 4.20.0 '@rollup/plugin-replace@2.4.2(rollup@2.79.1)': dependencies: @@ -12213,12 +12138,12 @@ snapshots: optionalDependencies: rollup: 3.29.4 - '@rollup/plugin-replace@5.0.7(rollup@4.19.2)': + '@rollup/plugin-replace@5.0.7(rollup@4.20.0)': dependencies: - '@rollup/pluginutils': 5.1.0(rollup@4.19.2) + '@rollup/pluginutils': 5.1.0(rollup@4.20.0) magic-string: 0.30.11 optionalDependencies: - rollup: 4.19.2 + rollup: 4.20.0 '@rollup/plugin-terser@0.4.4(rollup@2.79.1)': dependencies: @@ -12228,13 +12153,13 @@ snapshots: optionalDependencies: rollup: 2.79.1 - '@rollup/plugin-terser@0.4.4(rollup@4.19.2)': + '@rollup/plugin-terser@0.4.4(rollup@4.20.0)': dependencies: serialize-javascript: 6.0.2 smob: 1.5.0 terser: 5.31.3 optionalDependencies: - rollup: 4.19.2 + rollup: 4.20.0 '@rollup/pluginutils@3.1.0(rollup@2.79.1)': dependencies: @@ -12264,14 +12189,6 @@ snapshots: optionalDependencies: rollup: 3.29.4 - '@rollup/pluginutils@5.1.0(rollup@4.19.2)': - dependencies: - '@types/estree': 1.0.5 - estree-walker: 2.0.2 - picomatch: 2.3.1 - optionalDependencies: - rollup: 4.19.2 - '@rollup/pluginutils@5.1.0(rollup@4.20.0)': dependencies: '@types/estree': 1.0.5 @@ -12280,99 +12197,51 @@ snapshots: optionalDependencies: rollup: 4.20.0 - '@rollup/rollup-android-arm-eabi@4.19.2': - optional: true - '@rollup/rollup-android-arm-eabi@4.20.0': optional: true - '@rollup/rollup-android-arm64@4.19.2': - optional: true - '@rollup/rollup-android-arm64@4.20.0': optional: true - '@rollup/rollup-darwin-arm64@4.19.2': - optional: true - '@rollup/rollup-darwin-arm64@4.20.0': optional: true - '@rollup/rollup-darwin-x64@4.19.2': - optional: true - '@rollup/rollup-darwin-x64@4.20.0': optional: true - '@rollup/rollup-linux-arm-gnueabihf@4.19.2': - optional: true - '@rollup/rollup-linux-arm-gnueabihf@4.20.0': optional: true - '@rollup/rollup-linux-arm-musleabihf@4.19.2': - optional: true - '@rollup/rollup-linux-arm-musleabihf@4.20.0': optional: true - '@rollup/rollup-linux-arm64-gnu@4.19.2': - optional: true - '@rollup/rollup-linux-arm64-gnu@4.20.0': optional: true - '@rollup/rollup-linux-arm64-musl@4.19.2': - optional: true - '@rollup/rollup-linux-arm64-musl@4.20.0': optional: true - '@rollup/rollup-linux-powerpc64le-gnu@4.19.2': - optional: true - '@rollup/rollup-linux-powerpc64le-gnu@4.20.0': optional: true - '@rollup/rollup-linux-riscv64-gnu@4.19.2': - optional: true - '@rollup/rollup-linux-riscv64-gnu@4.20.0': optional: true - '@rollup/rollup-linux-s390x-gnu@4.19.2': - optional: true - '@rollup/rollup-linux-s390x-gnu@4.20.0': optional: true - '@rollup/rollup-linux-x64-gnu@4.19.2': - optional: true - '@rollup/rollup-linux-x64-gnu@4.20.0': optional: true - '@rollup/rollup-linux-x64-musl@4.19.2': - optional: true - '@rollup/rollup-linux-x64-musl@4.20.0': optional: true - '@rollup/rollup-win32-arm64-msvc@4.19.2': - optional: true - '@rollup/rollup-win32-arm64-msvc@4.20.0': optional: true - '@rollup/rollup-win32-ia32-msvc@4.19.2': - optional: true - '@rollup/rollup-win32-ia32-msvc@4.20.0': optional: true - '@rollup/rollup-win32-x64-msvc@4.19.2': - optional: true - '@rollup/rollup-win32-x64-msvc@4.20.0': optional: true @@ -12422,7 +12291,7 @@ snapshots: '@simonwep/pickr@1.8.2': dependencies: - core-js: 3.37.1 + core-js: 3.38.0 nanopop: 2.4.2 '@sindresorhus/merge-streams@2.3.0': {} @@ -12453,10 +12322,10 @@ snapshots: '@sxzz/popperjs-es@2.11.7': {} - '@tailwindcss/nesting@0.0.0-insiders.565cd3e(postcss@8.4.40)': + '@tailwindcss/nesting@0.0.0-insiders.565cd3e(postcss@8.4.41)': dependencies: - postcss: 8.4.40 - postcss-nested: 5.0.6(postcss@8.4.40) + postcss: 8.4.41 + postcss-nested: 5.0.6(postcss@8.4.41) '@tailwindcss/typography@0.5.13(tailwindcss@3.4.7)': dependencies: @@ -12468,10 +12337,10 @@ snapshots: '@tanstack/virtual-core@3.8.4': {} - '@tanstack/vue-virtual@3.8.4(vue@3.4.35(typescript@5.5.4))': + '@tanstack/vue-virtual@3.8.5(vue@3.4.36(typescript@5.5.4))': dependencies: '@tanstack/virtual-core': 3.8.4 - vue: 3.4.35(typescript@5.5.4) + vue: 3.4.36(typescript@5.5.4) '@tootallnate/once@1.1.2': {} @@ -12514,7 +12383,7 @@ snapshots: '@types/html-minifier-terser@7.0.2': {} - '@types/http-proxy@1.17.14': + '@types/http-proxy@1.17.15': dependencies: '@types/node': 22.1.0 @@ -12573,7 +12442,7 @@ snapshots: '@types/postcss-import@14.0.3': dependencies: - postcss: 8.4.40 + postcss: 8.4.41 '@types/ps-tree@1.1.6': {} @@ -12740,20 +12609,20 @@ snapshots: dependencies: vite-plugin-pwa: 0.20.1(vite@5.3.5(@types/node@22.1.0)(sass@1.77.8)(terser@5.31.3))(workbox-build@7.1.1)(workbox-window@7.1.0) - '@vitejs/plugin-vue-jsx@4.0.0(vite@5.3.5(@types/node@22.1.0)(sass@1.77.8)(terser@5.31.3))(vue@3.4.35(typescript@5.5.4))': + '@vitejs/plugin-vue-jsx@4.0.0(vite@5.3.5(@types/node@22.1.0)(sass@1.77.8)(terser@5.31.3))(vue@3.4.36(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.1.0)(sass@1.77.8)(terser@5.31.3) - vue: 3.4.35(typescript@5.5.4) + vue: 3.4.36(typescript@5.5.4) transitivePeerDependencies: - supports-color - '@vitejs/plugin-vue@5.1.2(vite@5.3.5(@types/node@22.1.0)(sass@1.77.8)(terser@5.31.3))(vue@3.4.35(typescript@5.5.4))': + '@vitejs/plugin-vue@5.1.2(vite@5.3.5(@types/node@22.1.0)(sass@1.77.8)(terser@5.31.3))(vue@3.4.36(typescript@5.5.4))': dependencies: vite: 5.3.5(@types/node@22.1.0)(sass@1.77.8)(terser@5.31.3) - vue: 3.4.35(typescript@5.5.4) + vue: 3.4.36(typescript@5.5.4) '@vitest/expect@2.0.5': dependencies: @@ -12839,37 +12708,37 @@ snapshots: '@babel/helper-module-imports': 7.22.15 '@babel/helper-plugin-utils': 7.24.8 '@babel/parser': 7.25.3 - '@vue/compiler-sfc': 3.4.35 + '@vue/compiler-sfc': 3.4.36 - '@vue/compiler-core@3.4.35': + '@vue/compiler-core@3.4.36': dependencies: '@babel/parser': 7.25.3 - '@vue/shared': 3.4.35 - entities: 4.5.0 + '@vue/shared': 3.4.36 + entities: 5.0.0 estree-walker: 2.0.2 source-map-js: 1.2.0 - '@vue/compiler-dom@3.4.35': + '@vue/compiler-dom@3.4.36': dependencies: - '@vue/compiler-core': 3.4.35 - '@vue/shared': 3.4.35 + '@vue/compiler-core': 3.4.36 + '@vue/shared': 3.4.36 - '@vue/compiler-sfc@3.4.35': + '@vue/compiler-sfc@3.4.36': dependencies: '@babel/parser': 7.25.3 - '@vue/compiler-core': 3.4.35 - '@vue/compiler-dom': 3.4.35 - '@vue/compiler-ssr': 3.4.35 - '@vue/shared': 3.4.35 + '@vue/compiler-core': 3.4.36 + '@vue/compiler-dom': 3.4.36 + '@vue/compiler-ssr': 3.4.36 + '@vue/shared': 3.4.36 estree-walker: 2.0.2 magic-string: 0.30.11 - postcss: 8.4.40 + postcss: 8.4.41 source-map-js: 1.2.0 - '@vue/compiler-ssr@3.4.35': + '@vue/compiler-ssr@3.4.36': dependencies: - '@vue/compiler-dom': 3.4.35 - '@vue/shared': 3.4.35 + '@vue/compiler-dom': 3.4.36 + '@vue/shared': 3.4.36 '@vue/compiler-vue2@2.7.16': dependencies: @@ -12882,7 +12751,7 @@ snapshots: dependencies: '@vue/devtools-kit': 7.3.7 - '@vue/devtools-core@7.3.7(vite@5.3.5(@types/node@22.1.0)(sass@1.77.8)(terser@5.31.3))(vue@3.4.35(typescript@5.5.4))': + '@vue/devtools-core@7.3.7(vite@5.3.5(@types/node@22.1.0)(sass@1.77.8)(terser@5.31.3))(vue@3.4.36(typescript@5.5.4))': dependencies: '@vue/devtools-kit': 7.3.7 '@vue/devtools-shared': 7.3.7 @@ -12890,7 +12759,7 @@ snapshots: nanoid: 3.3.7 pathe: 1.1.2 vite-hot-client: 0.2.3(vite@5.3.5(@types/node@22.1.0)(sass@1.77.8)(terser@5.31.3)) - vue: 3.4.35(typescript@5.5.4) + vue: 3.4.36(typescript@5.5.4) transitivePeerDependencies: - vite @@ -12911,9 +12780,9 @@ snapshots: '@vue/language-core@2.0.29(typescript@5.5.4)': dependencies: '@volar/language-core': 2.4.0-alpha.18 - '@vue/compiler-dom': 3.4.35 + '@vue/compiler-dom': 3.4.36 '@vue/compiler-vue2': 2.7.16 - '@vue/shared': 3.4.35 + '@vue/shared': 3.4.36 computeds: 0.0.1 minimatch: 9.0.5 muggle-string: 0.4.1 @@ -12921,66 +12790,66 @@ snapshots: optionalDependencies: typescript: 5.5.4 - '@vue/reactivity@3.4.35': + '@vue/reactivity@3.4.36': dependencies: - '@vue/shared': 3.4.35 + '@vue/shared': 3.4.36 - '@vue/runtime-core@3.4.35': + '@vue/runtime-core@3.4.36': dependencies: - '@vue/reactivity': 3.4.35 - '@vue/shared': 3.4.35 + '@vue/reactivity': 3.4.36 + '@vue/shared': 3.4.36 - '@vue/runtime-dom@3.4.35': + '@vue/runtime-dom@3.4.36': dependencies: - '@vue/reactivity': 3.4.35 - '@vue/runtime-core': 3.4.35 - '@vue/shared': 3.4.35 + '@vue/reactivity': 3.4.36 + '@vue/runtime-core': 3.4.36 + '@vue/shared': 3.4.36 csstype: 3.1.3 - '@vue/server-renderer@3.4.35(vue@3.4.35(typescript@5.5.4))': + '@vue/server-renderer@3.4.36(vue@3.4.36(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.36 + '@vue/shared': 3.4.36 + vue: 3.4.36(typescript@5.5.4) - '@vue/shared@3.4.35': {} + '@vue/shared@3.4.36': {} '@vue/test-utils@2.4.6': dependencies: js-beautify: 1.15.1 vue-component-type-helpers: 2.0.29 - '@vueuse/core@10.11.0(vue@3.4.35(typescript@5.5.4))': + '@vueuse/core@10.11.0(vue@3.4.36(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/shared': 10.11.0(vue@3.4.36(typescript@5.5.4)) + vue-demi: 0.14.10(vue@3.4.36(typescript@5.5.4)) transitivePeerDependencies: - '@vue/composition-api' - vue - '@vueuse/core@9.13.0(vue@3.4.35(typescript@5.5.4))': + '@vueuse/core@9.13.0(vue@3.4.36(typescript@5.5.4))': dependencies: '@types/web-bluetooth': 0.0.16 '@vueuse/metadata': 9.13.0 - '@vueuse/shared': 9.13.0(vue@3.4.35(typescript@5.5.4)) - vue-demi: 0.14.10(vue@3.4.35(typescript@5.5.4)) + '@vueuse/shared': 9.13.0(vue@3.4.36(typescript@5.5.4)) + vue-demi: 0.14.10(vue@3.4.36(typescript@5.5.4)) transitivePeerDependencies: - '@vue/composition-api' - vue - '@vueuse/integrations@10.11.0(async-validator@4.2.5)(axios@1.7.3)(focus-trap@7.5.4)(nprogress@0.2.0)(qrcode@1.5.3)(sortablejs@1.15.2)(vue@3.4.35(typescript@5.5.4))': + '@vueuse/integrations@10.11.0(async-validator@4.2.5)(axios@1.7.3)(focus-trap@7.5.4)(nprogress@0.2.0)(qrcode@1.5.4)(sortablejs@1.15.2)(vue@3.4.36(typescript@5.5.4))': dependencies: - '@vueuse/core': 10.11.0(vue@3.4.35(typescript@5.5.4)) - '@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/core': 10.11.0(vue@3.4.36(typescript@5.5.4)) + '@vueuse/shared': 10.11.0(vue@3.4.36(typescript@5.5.4)) + vue-demi: 0.14.10(vue@3.4.36(typescript@5.5.4)) optionalDependencies: async-validator: 4.2.5 axios: 1.7.3 focus-trap: 7.5.4 nprogress: 0.2.0 - qrcode: 1.5.3 + qrcode: 1.5.4 sortablejs: 1.15.2 transitivePeerDependencies: - '@vue/composition-api' @@ -12990,16 +12859,16 @@ snapshots: '@vueuse/metadata@9.13.0': {} - '@vueuse/shared@10.11.0(vue@3.4.35(typescript@5.5.4))': + '@vueuse/shared@10.11.0(vue@3.4.36(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.36(typescript@5.5.4)) transitivePeerDependencies: - '@vue/composition-api' - vue - '@vueuse/shared@9.13.0(vue@3.4.35(typescript@5.5.4))': + '@vueuse/shared@9.13.0(vue@3.4.36(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.36(typescript@5.5.4)) transitivePeerDependencies: - '@vue/composition-api' - vue @@ -13126,10 +12995,10 @@ snapshots: ansi-styles@6.2.1: {} - ant-design-vue@4.2.3(vue@3.4.35(typescript@5.5.4)): + ant-design-vue@4.2.3(vue@3.4.36(typescript@5.5.4)): dependencies: '@ant-design/colors': 6.0.0 - '@ant-design/icons-vue': 7.0.1(vue@3.4.35(typescript@5.5.4)) + '@ant-design/icons-vue': 7.0.1(vue@3.4.36(typescript@5.5.4)) '@babel/runtime': 7.25.0 '@ctrl/tinycolor': 4.1.0 '@emotion/hash': 0.9.2 @@ -13148,8 +13017,8 @@ snapshots: shallow-equal: 1.2.1 stylis: 4.3.2 throttle-debounce: 5.0.2 - vue: 3.4.35(typescript@5.5.4) - vue-types: 3.0.2(vue@3.4.35(typescript@5.5.4)) + vue: 3.4.36(typescript@5.5.4) + vue-types: 3.0.2(vue@3.4.36(typescript@5.5.4)) warning: 4.0.3 any-promise@1.3.0: {} @@ -13247,14 +13116,14 @@ snapshots: stubborn-fs: 1.2.5 when-exit: 2.1.3 - autoprefixer@10.4.20(postcss@8.4.40): + autoprefixer@10.4.20(postcss@8.4.41): dependencies: browserslist: 4.23.3 - caniuse-lite: 1.0.30001649 + caniuse-lite: 1.0.30001650 fraction.js: 4.3.7 normalize-range: 0.1.2 picocolors: 1.0.1 - postcss: 8.4.40 + postcss: 8.4.41 postcss-value-parser: 4.2.0 available-typed-arrays@1.0.7: @@ -13326,12 +13195,12 @@ snapshots: boolbase@1.0.0: {} - boxen@8.0.0: + boxen@8.0.1: dependencies: ansi-align: 3.0.1 camelcase: 8.0.0 chalk: 5.3.0 - cli-boxes: 4.0.0 + cli-boxes: 3.0.0 string-width: 7.2.0 type-fest: 4.23.0 widest-line: 5.0.0 @@ -13352,8 +13221,8 @@ snapshots: browserslist@4.23.3: dependencies: - caniuse-lite: 1.0.30001649 - electron-to-chromium: 1.5.4 + caniuse-lite: 1.0.30001650 + electron-to-chromium: 1.5.5 node-releases: 2.0.18 update-browserslist-db: 1.1.0(browserslist@4.23.3) @@ -13440,11 +13309,11 @@ snapshots: caniuse-api@3.0.0: dependencies: browserslist: 4.23.3 - caniuse-lite: 1.0.30001649 + caniuse-lite: 1.0.30001650 lodash.memoize: 4.1.2 lodash.uniq: 4.5.0 - caniuse-lite@1.0.30001649: {} + caniuse-lite@1.0.30001650: {} chai@5.1.1: dependencies: @@ -13515,7 +13384,7 @@ snapshots: circular-dependency-scanner@2.2.2: dependencies: '@ast-grep/napi': 0.21.4 - '@vue/compiler-sfc': 3.4.35 + '@vue/compiler-sfc': 3.4.36 commander: 12.1.0 get-tsconfig: 4.7.6 graph-cycles: 3.0.0 @@ -13549,7 +13418,7 @@ snapshots: parent-module: 2.0.0 resolve-from: 5.0.0 - cli-boxes@4.0.0: {} + cli-boxes@3.0.0: {} cli-cursor@4.0.0: dependencies: @@ -13712,15 +13581,11 @@ snapshots: dependencies: is-what: 4.1.16 - core-js-compat@3.37.1: - dependencies: - browserslist: 4.23.3 - core-js-compat@3.38.0: dependencies: browserslist: 4.23.3 - core-js@3.37.1: {} + core-js@3.38.0: {} core-util-is@1.0.3: {} @@ -13755,7 +13620,7 @@ snapshots: crc-32: 1.2.2 readable-stream: 4.5.2 - croner@8.1.0: {} + croner@8.1.1: {} cross-env@7.0.3: dependencies: @@ -13866,27 +13731,27 @@ snapshots: semver: 7.6.3 strip-ansi: 7.1.0 - css-blank-pseudo@7.0.0(postcss@8.4.40): + css-blank-pseudo@7.0.0(postcss@8.4.41): dependencies: - postcss: 8.4.40 + postcss: 8.4.41 postcss-selector-parser: 6.1.1 - css-declaration-sorter@7.2.0(postcss@8.4.40): + css-declaration-sorter@7.2.0(postcss@8.4.41): dependencies: - postcss: 8.4.40 + postcss: 8.4.41 css-functions-list@3.2.2: {} - css-has-pseudo@7.0.0(postcss@8.4.40): + css-has-pseudo@7.0.0(postcss@8.4.41): dependencies: '@csstools/selector-specificity': 4.0.0(postcss-selector-parser@6.1.1) - postcss: 8.4.40 + postcss: 8.4.41 postcss-selector-parser: 6.1.1 postcss-value-parser: 4.2.0 - css-prefers-color-scheme@10.0.0(postcss@8.4.40): + css-prefers-color-scheme@10.0.0(postcss@8.4.41): dependencies: - postcss: 8.4.40 + postcss: 8.4.41 css-render@0.15.14: dependencies: @@ -13925,49 +13790,49 @@ snapshots: cssesc@3.0.0: {} - cssnano-preset-default@7.0.4(postcss@8.4.40): + cssnano-preset-default@7.0.4(postcss@8.4.41): dependencies: browserslist: 4.23.3 - css-declaration-sorter: 7.2.0(postcss@8.4.40) - cssnano-utils: 5.0.0(postcss@8.4.40) - postcss: 8.4.40 - postcss-calc: 10.0.0(postcss@8.4.40) - postcss-colormin: 7.0.1(postcss@8.4.40) - postcss-convert-values: 7.0.2(postcss@8.4.40) - postcss-discard-comments: 7.0.1(postcss@8.4.40) - postcss-discard-duplicates: 7.0.0(postcss@8.4.40) - postcss-discard-empty: 7.0.0(postcss@8.4.40) - postcss-discard-overridden: 7.0.0(postcss@8.4.40) - postcss-merge-longhand: 7.0.2(postcss@8.4.40) - postcss-merge-rules: 7.0.2(postcss@8.4.40) - postcss-minify-font-values: 7.0.0(postcss@8.4.40) - postcss-minify-gradients: 7.0.0(postcss@8.4.40) - postcss-minify-params: 7.0.1(postcss@8.4.40) - postcss-minify-selectors: 7.0.2(postcss@8.4.40) - postcss-normalize-charset: 7.0.0(postcss@8.4.40) - postcss-normalize-display-values: 7.0.0(postcss@8.4.40) - postcss-normalize-positions: 7.0.0(postcss@8.4.40) - postcss-normalize-repeat-style: 7.0.0(postcss@8.4.40) - postcss-normalize-string: 7.0.0(postcss@8.4.40) - postcss-normalize-timing-functions: 7.0.0(postcss@8.4.40) - postcss-normalize-unicode: 7.0.1(postcss@8.4.40) - postcss-normalize-url: 7.0.0(postcss@8.4.40) - postcss-normalize-whitespace: 7.0.0(postcss@8.4.40) - postcss-ordered-values: 7.0.1(postcss@8.4.40) - postcss-reduce-initial: 7.0.1(postcss@8.4.40) - postcss-reduce-transforms: 7.0.0(postcss@8.4.40) - postcss-svgo: 7.0.1(postcss@8.4.40) - postcss-unique-selectors: 7.0.1(postcss@8.4.40) + css-declaration-sorter: 7.2.0(postcss@8.4.41) + cssnano-utils: 5.0.0(postcss@8.4.41) + postcss: 8.4.41 + postcss-calc: 10.0.1(postcss@8.4.41) + postcss-colormin: 7.0.1(postcss@8.4.41) + postcss-convert-values: 7.0.2(postcss@8.4.41) + postcss-discard-comments: 7.0.1(postcss@8.4.41) + postcss-discard-duplicates: 7.0.0(postcss@8.4.41) + postcss-discard-empty: 7.0.0(postcss@8.4.41) + postcss-discard-overridden: 7.0.0(postcss@8.4.41) + postcss-merge-longhand: 7.0.2(postcss@8.4.41) + postcss-merge-rules: 7.0.2(postcss@8.4.41) + postcss-minify-font-values: 7.0.0(postcss@8.4.41) + postcss-minify-gradients: 7.0.0(postcss@8.4.41) + postcss-minify-params: 7.0.1(postcss@8.4.41) + postcss-minify-selectors: 7.0.2(postcss@8.4.41) + postcss-normalize-charset: 7.0.0(postcss@8.4.41) + postcss-normalize-display-values: 7.0.0(postcss@8.4.41) + postcss-normalize-positions: 7.0.0(postcss@8.4.41) + postcss-normalize-repeat-style: 7.0.0(postcss@8.4.41) + postcss-normalize-string: 7.0.0(postcss@8.4.41) + postcss-normalize-timing-functions: 7.0.0(postcss@8.4.41) + postcss-normalize-unicode: 7.0.1(postcss@8.4.41) + postcss-normalize-url: 7.0.0(postcss@8.4.41) + postcss-normalize-whitespace: 7.0.0(postcss@8.4.41) + postcss-ordered-values: 7.0.1(postcss@8.4.41) + postcss-reduce-initial: 7.0.1(postcss@8.4.41) + postcss-reduce-transforms: 7.0.0(postcss@8.4.41) + postcss-svgo: 7.0.1(postcss@8.4.41) + postcss-unique-selectors: 7.0.1(postcss@8.4.41) - cssnano-utils@5.0.0(postcss@8.4.40): + cssnano-utils@5.0.0(postcss@8.4.41): dependencies: - postcss: 8.4.40 + postcss: 8.4.41 - cssnano@7.0.4(postcss@8.4.40): + cssnano@7.0.4(postcss@8.4.41): dependencies: - cssnano-preset-default: 7.0.4(postcss@8.4.40) + cssnano-preset-default: 7.0.4(postcss@8.4.41) lilconfig: 3.1.2 - postcss: 8.4.40 + postcss: 8.4.41 csso@5.0.5: dependencies: @@ -14087,7 +13952,7 @@ snapshots: dependencies: '@babel/parser': 7.25.3 '@babel/traverse': 7.25.3 - '@vue/compiler-sfc': 3.4.35 + '@vue/compiler-sfc': 3.4.36 callsite: 1.0.0 camelcase: 6.3.0 cosmiconfig: 7.1.0 @@ -14226,17 +14091,17 @@ snapshots: dependencies: jake: 10.9.2 - electron-to-chromium@1.5.4: {} + electron-to-chromium@1.5.5: {} - element-plus@2.7.8(vue@3.4.35(typescript@5.5.4)): + element-plus@2.7.8(vue@3.4.36(typescript@5.5.4)): dependencies: '@ctrl/tinycolor': 4.1.0 - '@element-plus/icons-vue': 2.3.1(vue@3.4.35(typescript@5.5.4)) - '@floating-ui/dom': 1.6.8 + '@element-plus/icons-vue': 2.3.1(vue@3.4.36(typescript@5.5.4)) + '@floating-ui/dom': 1.6.10 '@popperjs/core': '@sxzz/popperjs-es@2.11.7' '@types/lodash': 4.17.7 '@types/lodash-es': 4.17.12 - '@vueuse/core': 9.13.0(vue@3.4.35(typescript@5.5.4)) + '@vueuse/core': 9.13.0(vue@3.4.36(typescript@5.5.4)) async-validator: 4.2.5 dayjs: 1.11.12 escape-html: 1.0.3 @@ -14245,7 +14110,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.4.35(typescript@5.5.4) + vue: 3.4.36(typescript@5.5.4) transitivePeerDependencies: - '@vue/composition-api' @@ -14255,8 +14120,6 @@ snapshots: emoji-regex@9.2.2: {} - encode-utf8@1.0.3: {} - encodeurl@1.0.2: {} encoding@0.1.13: @@ -14278,6 +14141,8 @@ snapshots: entities@4.5.0: {} + entities@5.0.0: {} + env-paths@2.2.1: {} env-paths@3.0.0: {} @@ -14499,10 +14364,10 @@ snapshots: dependencies: eslint: 9.8.0 - eslint-config-turbo@2.0.11(eslint@9.8.0): + eslint-config-turbo@2.0.12(eslint@9.8.0): dependencies: eslint: 9.8.0 - eslint-plugin-turbo: 2.0.11(eslint@9.8.0) + eslint-plugin-turbo: 2.0.12(eslint@9.8.0) eslint-import-resolver-node@0.3.9: dependencies: @@ -14618,12 +14483,12 @@ snapshots: '@eslint-community/regexpp': 4.11.0 comment-parser: 1.4.1 eslint: 9.8.0 - jsdoc-type-pratt-parser: 4.0.0 + 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.0.11(eslint@9.8.0): + eslint-plugin-turbo@2.0.12(eslint@9.8.0): dependencies: dotenv: 16.0.3 eslint: 9.8.0 @@ -14634,7 +14499,7 @@ snapshots: '@eslint-community/eslint-utils': 4.4.0(eslint@9.8.0) ci-info: 4.0.0 clean-regexp: 1.0.0 - core-js-compat: 3.37.1 + core-js-compat: 3.38.0 eslint: 9.8.0 esquery: 1.6.0 globals: 15.9.0 @@ -15661,6 +15526,8 @@ snapshots: jsdoc-type-pratt-parser@4.0.0: {} + jsdoc-type-pratt-parser@4.1.0: {} + jsdom@24.1.1: dependencies: cssstyle: 4.0.1 @@ -15924,9 +15791,9 @@ snapshots: dependencies: yallist: 4.0.0 - lucide-vue-next@0.424.0(vue@3.4.35(typescript@5.5.4)): + lucide-vue-next@0.424.0(vue@3.4.36(typescript@5.5.4)): dependencies: - vue: 3.4.35(typescript@5.5.4) + vue: 3.4.36(typescript@5.5.4) magic-string@0.25.9: dependencies: @@ -16083,9 +15950,9 @@ snapshots: mkdist@1.5.4(sass@1.77.8)(typescript@5.5.4)(vue-tsc@2.0.29(typescript@5.5.4)): dependencies: - autoprefixer: 10.4.20(postcss@8.4.40) + autoprefixer: 10.4.20(postcss@8.4.41) citty: 0.1.6 - cssnano: 7.0.4(postcss@8.4.40) + cssnano: 7.0.4(postcss@8.4.41) defu: 6.1.4 esbuild: 0.23.0 fast-glob: 3.3.2 @@ -16093,8 +15960,8 @@ snapshots: mlly: 1.7.1 pathe: 1.1.2 pkg-types: 1.1.3 - postcss: 8.4.40 - postcss-nested: 6.2.0(postcss@8.4.40) + postcss: 8.4.41 + postcss-nested: 6.2.0(postcss@8.4.41) semver: 7.6.3 optionalDependencies: sass: 1.77.8 @@ -16134,10 +16001,10 @@ snapshots: object-assign: 4.1.1 thenify-all: 1.6.0 - naive-ui@2.39.0(vue@3.4.35(typescript@5.5.4)): + naive-ui@2.39.0(vue@3.4.36(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.36(typescript@5.5.4)) '@types/katex': 0.16.7 '@types/lodash': 4.17.7 '@types/lodash-es': 4.17.12 @@ -16152,10 +16019,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.36(typescript@5.5.4)) + vooks: 0.2.12(vue@3.4.36(typescript@5.5.4)) + vue: 3.4.36(typescript@5.5.4) + vueuc: 0.4.58(vue@3.4.36(typescript@5.5.4)) nanoid@3.3.7: {} @@ -16171,15 +16038,15 @@ snapshots: dependencies: '@cloudflare/kv-asset-handler': 0.3.4 '@netlify/functions': 2.8.1 - '@rollup/plugin-alias': 5.1.0(rollup@4.19.2) - '@rollup/plugin-commonjs': 25.0.8(rollup@4.19.2) - '@rollup/plugin-inject': 5.0.5(rollup@4.19.2) - '@rollup/plugin-json': 6.1.0(rollup@4.19.2) - '@rollup/plugin-node-resolve': 15.2.3(rollup@4.19.2) - '@rollup/plugin-replace': 5.0.7(rollup@4.19.2) - '@rollup/plugin-terser': 0.4.4(rollup@4.19.2) - '@rollup/pluginutils': 5.1.0(rollup@4.19.2) - '@types/http-proxy': 1.17.14 + '@rollup/plugin-alias': 5.1.0(rollup@4.20.0) + '@rollup/plugin-commonjs': 25.0.8(rollup@4.20.0) + '@rollup/plugin-inject': 5.0.5(rollup@4.20.0) + '@rollup/plugin-json': 6.1.0(rollup@4.20.0) + '@rollup/plugin-node-resolve': 15.2.3(rollup@4.20.0) + '@rollup/plugin-replace': 5.0.7(rollup@4.20.0) + '@rollup/plugin-terser': 0.4.4(rollup@4.20.0) + '@rollup/pluginutils': 5.1.0(rollup@4.20.0) + '@types/http-proxy': 1.17.15 '@vercel/nft': 0.26.5(encoding@0.1.13) archiver: 7.0.1 c12: 1.11.1 @@ -16188,7 +16055,7 @@ snapshots: citty: 0.1.6 consola: 3.2.3 cookie-es: 1.2.2 - croner: 8.1.0 + croner: 8.1.1 crossws: 0.2.4 db0: 0.1.4 defu: 6.1.4 @@ -16221,8 +16088,8 @@ snapshots: pkg-types: 1.1.3 pretty-bytes: 6.1.1 radix3: 1.1.2 - rollup: 4.19.2 - rollup-plugin-visualizer: 5.12.0(rollup@4.19.2) + rollup: 4.20.0 + rollup-plugin-visualizer: 5.12.0(rollup@4.20.0) scule: 1.3.0 semver: 7.6.3 serve-placeholder: 2.0.2 @@ -16232,7 +16099,7 @@ snapshots: uncrypto: 0.1.3 unctx: 2.3.1 unenv: 1.10.0 - unimport: 3.9.1(rollup@4.19.2) + unimport: 3.10.0(rollup@4.20.0) unstorage: 1.10.2(ioredis@5.4.1) unwasm: 0.3.9 transitivePeerDependencies: @@ -16586,15 +16453,15 @@ snapshots: pify@4.0.1: {} - pinia-plugin-persistedstate@3.2.1(pinia@2.2.0(typescript@5.5.4)(vue@3.4.35(typescript@5.5.4))): + pinia-plugin-persistedstate@3.2.1(pinia@2.2.0(typescript@5.5.4)(vue@3.4.36(typescript@5.5.4))): dependencies: - pinia: 2.2.0(typescript@5.5.4)(vue@3.4.35(typescript@5.5.4)) + pinia: 2.2.0(typescript@5.5.4)(vue@3.4.36(typescript@5.5.4)) - pinia@2.2.0(typescript@5.5.4)(vue@3.4.35(typescript@5.5.4)): + pinia@2.2.0(typescript@5.5.4)(vue@3.4.36(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.36(typescript@5.5.4) + vue-demi: 0.14.10(vue@3.4.36(typescript@5.5.4)) optionalDependencies: typescript: 5.5.4 @@ -16620,415 +16487,415 @@ snapshots: possible-typed-array-names@1.0.0: {} - postcss-antd-fixes@0.2.0(postcss@8.4.40): + postcss-antd-fixes@0.2.0(postcss@8.4.41): dependencies: - postcss: 8.4.40 + postcss: 8.4.41 - postcss-attribute-case-insensitive@7.0.0(postcss@8.4.40): + postcss-attribute-case-insensitive@7.0.0(postcss@8.4.41): dependencies: - postcss: 8.4.40 + postcss: 8.4.41 postcss-selector-parser: 6.1.1 - postcss-calc@10.0.0(postcss@8.4.40): + postcss-calc@10.0.1(postcss@8.4.41): dependencies: - postcss: 8.4.40 + postcss: 8.4.41 postcss-selector-parser: 6.1.1 postcss-value-parser: 4.2.0 - postcss-clamp@4.1.0(postcss@8.4.40): + postcss-clamp@4.1.0(postcss@8.4.41): dependencies: - postcss: 8.4.40 + postcss: 8.4.41 postcss-value-parser: 4.2.0 - postcss-color-functional-notation@7.0.0(postcss@8.4.40): + postcss-color-functional-notation@7.0.0(postcss@8.4.41): dependencies: '@csstools/css-color-parser': 3.0.0(@csstools/css-parser-algorithms@3.0.0(@csstools/css-tokenizer@3.0.0))(@csstools/css-tokenizer@3.0.0) '@csstools/css-parser-algorithms': 3.0.0(@csstools/css-tokenizer@3.0.0) '@csstools/css-tokenizer': 3.0.0 - '@csstools/postcss-progressive-custom-properties': 4.0.0(postcss@8.4.40) - '@csstools/utilities': 2.0.0(postcss@8.4.40) - postcss: 8.4.40 + '@csstools/postcss-progressive-custom-properties': 4.0.0(postcss@8.4.41) + '@csstools/utilities': 2.0.0(postcss@8.4.41) + postcss: 8.4.41 - postcss-color-hex-alpha@10.0.0(postcss@8.4.40): + postcss-color-hex-alpha@10.0.0(postcss@8.4.41): dependencies: - '@csstools/utilities': 2.0.0(postcss@8.4.40) - postcss: 8.4.40 + '@csstools/utilities': 2.0.0(postcss@8.4.41) + postcss: 8.4.41 postcss-value-parser: 4.2.0 - postcss-color-rebeccapurple@10.0.0(postcss@8.4.40): + postcss-color-rebeccapurple@10.0.0(postcss@8.4.41): dependencies: - '@csstools/utilities': 2.0.0(postcss@8.4.40) - postcss: 8.4.40 + '@csstools/utilities': 2.0.0(postcss@8.4.41) + postcss: 8.4.41 postcss-value-parser: 4.2.0 - postcss-colormin@7.0.1(postcss@8.4.40): + postcss-colormin@7.0.1(postcss@8.4.41): dependencies: browserslist: 4.23.3 caniuse-api: 3.0.0 colord: 2.9.3 - postcss: 8.4.40 + postcss: 8.4.41 postcss-value-parser: 4.2.0 - postcss-convert-values@7.0.2(postcss@8.4.40): + postcss-convert-values@7.0.2(postcss@8.4.41): dependencies: browserslist: 4.23.3 - postcss: 8.4.40 + postcss: 8.4.41 postcss-value-parser: 4.2.0 - postcss-custom-media@11.0.0(postcss@8.4.40): + postcss-custom-media@11.0.0(postcss@8.4.41): dependencies: '@csstools/cascade-layer-name-parser': 2.0.0(@csstools/css-parser-algorithms@3.0.0(@csstools/css-tokenizer@3.0.0))(@csstools/css-tokenizer@3.0.0) '@csstools/css-parser-algorithms': 3.0.0(@csstools/css-tokenizer@3.0.0) '@csstools/css-tokenizer': 3.0.0 '@csstools/media-query-list-parser': 3.0.0(@csstools/css-parser-algorithms@3.0.0(@csstools/css-tokenizer@3.0.0))(@csstools/css-tokenizer@3.0.0) - postcss: 8.4.40 + postcss: 8.4.41 - postcss-custom-properties@14.0.0(postcss@8.4.40): + postcss-custom-properties@14.0.0(postcss@8.4.41): dependencies: '@csstools/cascade-layer-name-parser': 2.0.0(@csstools/css-parser-algorithms@3.0.0(@csstools/css-tokenizer@3.0.0))(@csstools/css-tokenizer@3.0.0) '@csstools/css-parser-algorithms': 3.0.0(@csstools/css-tokenizer@3.0.0) '@csstools/css-tokenizer': 3.0.0 - '@csstools/utilities': 2.0.0(postcss@8.4.40) - postcss: 8.4.40 + '@csstools/utilities': 2.0.0(postcss@8.4.41) + postcss: 8.4.41 postcss-value-parser: 4.2.0 - postcss-custom-selectors@8.0.0(postcss@8.4.40): + postcss-custom-selectors@8.0.0(postcss@8.4.41): dependencies: '@csstools/cascade-layer-name-parser': 2.0.0(@csstools/css-parser-algorithms@3.0.0(@csstools/css-tokenizer@3.0.0))(@csstools/css-tokenizer@3.0.0) '@csstools/css-parser-algorithms': 3.0.0(@csstools/css-tokenizer@3.0.0) '@csstools/css-tokenizer': 3.0.0 - postcss: 8.4.40 + postcss: 8.4.41 postcss-selector-parser: 6.1.1 - postcss-dir-pseudo-class@9.0.0(postcss@8.4.40): + postcss-dir-pseudo-class@9.0.0(postcss@8.4.41): dependencies: - postcss: 8.4.40 + postcss: 8.4.41 postcss-selector-parser: 6.1.1 - postcss-discard-comments@7.0.1(postcss@8.4.40): + postcss-discard-comments@7.0.1(postcss@8.4.41): dependencies: - postcss: 8.4.40 + postcss: 8.4.41 postcss-selector-parser: 6.1.1 - postcss-discard-duplicates@7.0.0(postcss@8.4.40): + postcss-discard-duplicates@7.0.0(postcss@8.4.41): dependencies: - postcss: 8.4.40 + postcss: 8.4.41 - postcss-discard-empty@7.0.0(postcss@8.4.40): + postcss-discard-empty@7.0.0(postcss@8.4.41): dependencies: - postcss: 8.4.40 + postcss: 8.4.41 - postcss-discard-overridden@7.0.0(postcss@8.4.40): + postcss-discard-overridden@7.0.0(postcss@8.4.41): dependencies: - postcss: 8.4.40 + postcss: 8.4.41 - postcss-double-position-gradients@6.0.0(postcss@8.4.40): + postcss-double-position-gradients@6.0.0(postcss@8.4.41): dependencies: - '@csstools/postcss-progressive-custom-properties': 4.0.0(postcss@8.4.40) - '@csstools/utilities': 2.0.0(postcss@8.4.40) - postcss: 8.4.40 + '@csstools/postcss-progressive-custom-properties': 4.0.0(postcss@8.4.41) + '@csstools/utilities': 2.0.0(postcss@8.4.41) + postcss: 8.4.41 postcss-value-parser: 4.2.0 - postcss-focus-visible@10.0.0(postcss@8.4.40): + postcss-focus-visible@10.0.0(postcss@8.4.41): dependencies: - postcss: 8.4.40 + postcss: 8.4.41 postcss-selector-parser: 6.1.1 - postcss-focus-within@9.0.0(postcss@8.4.40): + postcss-focus-within@9.0.0(postcss@8.4.41): dependencies: - postcss: 8.4.40 + postcss: 8.4.41 postcss-selector-parser: 6.1.1 - postcss-font-variant@5.0.0(postcss@8.4.40): + postcss-font-variant@5.0.0(postcss@8.4.41): dependencies: - postcss: 8.4.40 + postcss: 8.4.41 - postcss-gap-properties@6.0.0(postcss@8.4.40): + postcss-gap-properties@6.0.0(postcss@8.4.41): dependencies: - postcss: 8.4.40 + postcss: 8.4.41 postcss-html@1.7.0: dependencies: htmlparser2: 8.0.2 js-tokens: 9.0.0 - postcss: 8.4.40 - postcss-safe-parser: 6.0.0(postcss@8.4.40) + postcss: 8.4.41 + postcss-safe-parser: 6.0.0(postcss@8.4.41) - postcss-image-set-function@7.0.0(postcss@8.4.40): + postcss-image-set-function@7.0.0(postcss@8.4.41): dependencies: - '@csstools/utilities': 2.0.0(postcss@8.4.40) - postcss: 8.4.40 + '@csstools/utilities': 2.0.0(postcss@8.4.41) + postcss: 8.4.41 postcss-value-parser: 4.2.0 - postcss-import@15.1.0(postcss@8.4.40): + postcss-import@15.1.0(postcss@8.4.41): dependencies: - postcss: 8.4.40 + postcss: 8.4.41 postcss-value-parser: 4.2.0 read-cache: 1.0.0 resolve: 1.22.8 - postcss-import@16.1.0(postcss@8.4.40): + postcss-import@16.1.0(postcss@8.4.41): dependencies: - postcss: 8.4.40 + postcss: 8.4.41 postcss-value-parser: 4.2.0 read-cache: 1.0.0 resolve: 1.22.8 - postcss-js@4.0.1(postcss@8.4.40): + postcss-js@4.0.1(postcss@8.4.41): dependencies: camelcase-css: 2.0.1 - postcss: 8.4.40 + postcss: 8.4.41 - postcss-lab-function@7.0.0(postcss@8.4.40): + postcss-lab-function@7.0.0(postcss@8.4.41): dependencies: '@csstools/css-color-parser': 3.0.0(@csstools/css-parser-algorithms@3.0.0(@csstools/css-tokenizer@3.0.0))(@csstools/css-tokenizer@3.0.0) '@csstools/css-parser-algorithms': 3.0.0(@csstools/css-tokenizer@3.0.0) '@csstools/css-tokenizer': 3.0.0 - '@csstools/postcss-progressive-custom-properties': 4.0.0(postcss@8.4.40) - '@csstools/utilities': 2.0.0(postcss@8.4.40) - postcss: 8.4.40 + '@csstools/postcss-progressive-custom-properties': 4.0.0(postcss@8.4.41) + '@csstools/utilities': 2.0.0(postcss@8.4.41) + postcss: 8.4.41 - postcss-load-config@4.0.2(postcss@8.4.40): + postcss-load-config@4.0.2(postcss@8.4.41): dependencies: lilconfig: 3.1.2 yaml: 2.5.0 optionalDependencies: - postcss: 8.4.40 + postcss: 8.4.41 - postcss-logical@8.0.0(postcss@8.4.40): + postcss-logical@8.0.0(postcss@8.4.41): dependencies: - postcss: 8.4.40 + postcss: 8.4.41 postcss-value-parser: 4.2.0 postcss-media-query-parser@0.2.3: {} - postcss-merge-longhand@7.0.2(postcss@8.4.40): + postcss-merge-longhand@7.0.2(postcss@8.4.41): dependencies: - postcss: 8.4.40 + postcss: 8.4.41 postcss-value-parser: 4.2.0 - stylehacks: 7.0.2(postcss@8.4.40) + stylehacks: 7.0.2(postcss@8.4.41) - postcss-merge-rules@7.0.2(postcss@8.4.40): + postcss-merge-rules@7.0.2(postcss@8.4.41): dependencies: browserslist: 4.23.3 caniuse-api: 3.0.0 - cssnano-utils: 5.0.0(postcss@8.4.40) - postcss: 8.4.40 + cssnano-utils: 5.0.0(postcss@8.4.41) + postcss: 8.4.41 postcss-selector-parser: 6.1.1 - postcss-minify-font-values@7.0.0(postcss@8.4.40): + postcss-minify-font-values@7.0.0(postcss@8.4.41): dependencies: - postcss: 8.4.40 + postcss: 8.4.41 postcss-value-parser: 4.2.0 - postcss-minify-gradients@7.0.0(postcss@8.4.40): + postcss-minify-gradients@7.0.0(postcss@8.4.41): dependencies: colord: 2.9.3 - cssnano-utils: 5.0.0(postcss@8.4.40) - postcss: 8.4.40 + cssnano-utils: 5.0.0(postcss@8.4.41) + postcss: 8.4.41 postcss-value-parser: 4.2.0 - postcss-minify-params@7.0.1(postcss@8.4.40): + postcss-minify-params@7.0.1(postcss@8.4.41): dependencies: browserslist: 4.23.3 - cssnano-utils: 5.0.0(postcss@8.4.40) - postcss: 8.4.40 + cssnano-utils: 5.0.0(postcss@8.4.41) + postcss: 8.4.41 postcss-value-parser: 4.2.0 - postcss-minify-selectors@7.0.2(postcss@8.4.40): + postcss-minify-selectors@7.0.2(postcss@8.4.41): dependencies: cssesc: 3.0.0 - postcss: 8.4.40 + postcss: 8.4.41 postcss-selector-parser: 6.1.1 - postcss-nested@5.0.6(postcss@8.4.40): + postcss-nested@5.0.6(postcss@8.4.41): dependencies: - postcss: 8.4.40 + postcss: 8.4.41 postcss-selector-parser: 6.1.1 - postcss-nested@6.2.0(postcss@8.4.40): + postcss-nested@6.2.0(postcss@8.4.41): dependencies: - postcss: 8.4.40 + postcss: 8.4.41 postcss-selector-parser: 6.1.1 - postcss-nesting@13.0.0(postcss@8.4.40): + postcss-nesting@13.0.0(postcss@8.4.41): dependencies: '@csstools/selector-resolve-nested': 2.0.0(postcss-selector-parser@6.1.1) '@csstools/selector-specificity': 4.0.0(postcss-selector-parser@6.1.1) - postcss: 8.4.40 + postcss: 8.4.41 postcss-selector-parser: 6.1.1 - postcss-normalize-charset@7.0.0(postcss@8.4.40): + postcss-normalize-charset@7.0.0(postcss@8.4.41): dependencies: - postcss: 8.4.40 + postcss: 8.4.41 - postcss-normalize-display-values@7.0.0(postcss@8.4.40): + postcss-normalize-display-values@7.0.0(postcss@8.4.41): dependencies: - postcss: 8.4.40 + postcss: 8.4.41 postcss-value-parser: 4.2.0 - postcss-normalize-positions@7.0.0(postcss@8.4.40): + postcss-normalize-positions@7.0.0(postcss@8.4.41): dependencies: - postcss: 8.4.40 + postcss: 8.4.41 postcss-value-parser: 4.2.0 - postcss-normalize-repeat-style@7.0.0(postcss@8.4.40): + postcss-normalize-repeat-style@7.0.0(postcss@8.4.41): dependencies: - postcss: 8.4.40 + postcss: 8.4.41 postcss-value-parser: 4.2.0 - postcss-normalize-string@7.0.0(postcss@8.4.40): + postcss-normalize-string@7.0.0(postcss@8.4.41): dependencies: - postcss: 8.4.40 + postcss: 8.4.41 postcss-value-parser: 4.2.0 - postcss-normalize-timing-functions@7.0.0(postcss@8.4.40): + postcss-normalize-timing-functions@7.0.0(postcss@8.4.41): dependencies: - postcss: 8.4.40 + postcss: 8.4.41 postcss-value-parser: 4.2.0 - postcss-normalize-unicode@7.0.1(postcss@8.4.40): + postcss-normalize-unicode@7.0.1(postcss@8.4.41): dependencies: browserslist: 4.23.3 - postcss: 8.4.40 + postcss: 8.4.41 postcss-value-parser: 4.2.0 - postcss-normalize-url@7.0.0(postcss@8.4.40): + postcss-normalize-url@7.0.0(postcss@8.4.41): dependencies: - postcss: 8.4.40 + postcss: 8.4.41 postcss-value-parser: 4.2.0 - postcss-normalize-whitespace@7.0.0(postcss@8.4.40): + postcss-normalize-whitespace@7.0.0(postcss@8.4.41): dependencies: - postcss: 8.4.40 + postcss: 8.4.41 postcss-value-parser: 4.2.0 - postcss-opacity-percentage@2.0.0(postcss@8.4.40): + postcss-opacity-percentage@2.0.0(postcss@8.4.41): dependencies: - postcss: 8.4.40 + postcss: 8.4.41 - postcss-ordered-values@7.0.1(postcss@8.4.40): + postcss-ordered-values@7.0.1(postcss@8.4.41): dependencies: - cssnano-utils: 5.0.0(postcss@8.4.40) - postcss: 8.4.40 + cssnano-utils: 5.0.0(postcss@8.4.41) + postcss: 8.4.41 postcss-value-parser: 4.2.0 - postcss-overflow-shorthand@6.0.0(postcss@8.4.40): + postcss-overflow-shorthand@6.0.0(postcss@8.4.41): dependencies: - postcss: 8.4.40 + postcss: 8.4.41 postcss-value-parser: 4.2.0 - postcss-page-break@3.0.4(postcss@8.4.40): + postcss-page-break@3.0.4(postcss@8.4.41): dependencies: - postcss: 8.4.40 + postcss: 8.4.41 - postcss-place@10.0.0(postcss@8.4.40): + postcss-place@10.0.0(postcss@8.4.41): dependencies: - postcss: 8.4.40 + postcss: 8.4.41 postcss-value-parser: 4.2.0 - postcss-preset-env@10.0.0(postcss@8.4.40): + postcss-preset-env@10.0.0(postcss@8.4.41): dependencies: - '@csstools/postcss-cascade-layers': 5.0.0(postcss@8.4.40) - '@csstools/postcss-color-function': 4.0.0(postcss@8.4.40) - '@csstools/postcss-color-mix-function': 3.0.0(postcss@8.4.40) - '@csstools/postcss-content-alt-text': 2.0.0(postcss@8.4.40) - '@csstools/postcss-exponential-functions': 2.0.0(postcss@8.4.40) - '@csstools/postcss-font-format-keywords': 4.0.0(postcss@8.4.40) - '@csstools/postcss-gamut-mapping': 2.0.0(postcss@8.4.40) - '@csstools/postcss-gradients-interpolation-method': 5.0.0(postcss@8.4.40) - '@csstools/postcss-hwb-function': 4.0.0(postcss@8.4.40) - '@csstools/postcss-ic-unit': 4.0.0(postcss@8.4.40) - '@csstools/postcss-initial': 2.0.0(postcss@8.4.40) - '@csstools/postcss-is-pseudo-class': 5.0.0(postcss@8.4.40) - '@csstools/postcss-light-dark-function': 2.0.0(postcss@8.4.40) - '@csstools/postcss-logical-float-and-clear': 3.0.0(postcss@8.4.40) - '@csstools/postcss-logical-overflow': 2.0.0(postcss@8.4.40) - '@csstools/postcss-logical-overscroll-behavior': 2.0.0(postcss@8.4.40) - '@csstools/postcss-logical-resize': 3.0.0(postcss@8.4.40) - '@csstools/postcss-logical-viewport-units': 3.0.0(postcss@8.4.40) - '@csstools/postcss-media-minmax': 2.0.0(postcss@8.4.40) - '@csstools/postcss-media-queries-aspect-ratio-number-values': 3.0.0(postcss@8.4.40) - '@csstools/postcss-nested-calc': 4.0.0(postcss@8.4.40) - '@csstools/postcss-normalize-display-values': 4.0.0(postcss@8.4.40) - '@csstools/postcss-oklab-function': 4.0.0(postcss@8.4.40) - '@csstools/postcss-progressive-custom-properties': 4.0.0(postcss@8.4.40) - '@csstools/postcss-relative-color-syntax': 3.0.0(postcss@8.4.40) - '@csstools/postcss-scope-pseudo-class': 4.0.0(postcss@8.4.40) - '@csstools/postcss-stepped-value-functions': 4.0.0(postcss@8.4.40) - '@csstools/postcss-text-decoration-shorthand': 4.0.0(postcss@8.4.40) - '@csstools/postcss-trigonometric-functions': 4.0.0(postcss@8.4.40) - '@csstools/postcss-unset-value': 4.0.0(postcss@8.4.40) - autoprefixer: 10.4.20(postcss@8.4.40) + '@csstools/postcss-cascade-layers': 5.0.0(postcss@8.4.41) + '@csstools/postcss-color-function': 4.0.0(postcss@8.4.41) + '@csstools/postcss-color-mix-function': 3.0.0(postcss@8.4.41) + '@csstools/postcss-content-alt-text': 2.0.0(postcss@8.4.41) + '@csstools/postcss-exponential-functions': 2.0.0(postcss@8.4.41) + '@csstools/postcss-font-format-keywords': 4.0.0(postcss@8.4.41) + '@csstools/postcss-gamut-mapping': 2.0.0(postcss@8.4.41) + '@csstools/postcss-gradients-interpolation-method': 5.0.0(postcss@8.4.41) + '@csstools/postcss-hwb-function': 4.0.0(postcss@8.4.41) + '@csstools/postcss-ic-unit': 4.0.0(postcss@8.4.41) + '@csstools/postcss-initial': 2.0.0(postcss@8.4.41) + '@csstools/postcss-is-pseudo-class': 5.0.0(postcss@8.4.41) + '@csstools/postcss-light-dark-function': 2.0.0(postcss@8.4.41) + '@csstools/postcss-logical-float-and-clear': 3.0.0(postcss@8.4.41) + '@csstools/postcss-logical-overflow': 2.0.0(postcss@8.4.41) + '@csstools/postcss-logical-overscroll-behavior': 2.0.0(postcss@8.4.41) + '@csstools/postcss-logical-resize': 3.0.0(postcss@8.4.41) + '@csstools/postcss-logical-viewport-units': 3.0.0(postcss@8.4.41) + '@csstools/postcss-media-minmax': 2.0.0(postcss@8.4.41) + '@csstools/postcss-media-queries-aspect-ratio-number-values': 3.0.0(postcss@8.4.41) + '@csstools/postcss-nested-calc': 4.0.0(postcss@8.4.41) + '@csstools/postcss-normalize-display-values': 4.0.0(postcss@8.4.41) + '@csstools/postcss-oklab-function': 4.0.0(postcss@8.4.41) + '@csstools/postcss-progressive-custom-properties': 4.0.0(postcss@8.4.41) + '@csstools/postcss-relative-color-syntax': 3.0.0(postcss@8.4.41) + '@csstools/postcss-scope-pseudo-class': 4.0.0(postcss@8.4.41) + '@csstools/postcss-stepped-value-functions': 4.0.0(postcss@8.4.41) + '@csstools/postcss-text-decoration-shorthand': 4.0.0(postcss@8.4.41) + '@csstools/postcss-trigonometric-functions': 4.0.0(postcss@8.4.41) + '@csstools/postcss-unset-value': 4.0.0(postcss@8.4.41) + autoprefixer: 10.4.20(postcss@8.4.41) browserslist: 4.23.3 - css-blank-pseudo: 7.0.0(postcss@8.4.40) - css-has-pseudo: 7.0.0(postcss@8.4.40) - css-prefers-color-scheme: 10.0.0(postcss@8.4.40) + css-blank-pseudo: 7.0.0(postcss@8.4.41) + css-has-pseudo: 7.0.0(postcss@8.4.41) + css-prefers-color-scheme: 10.0.0(postcss@8.4.41) cssdb: 8.1.0 - postcss: 8.4.40 - postcss-attribute-case-insensitive: 7.0.0(postcss@8.4.40) - postcss-clamp: 4.1.0(postcss@8.4.40) - postcss-color-functional-notation: 7.0.0(postcss@8.4.40) - postcss-color-hex-alpha: 10.0.0(postcss@8.4.40) - postcss-color-rebeccapurple: 10.0.0(postcss@8.4.40) - postcss-custom-media: 11.0.0(postcss@8.4.40) - postcss-custom-properties: 14.0.0(postcss@8.4.40) - postcss-custom-selectors: 8.0.0(postcss@8.4.40) - postcss-dir-pseudo-class: 9.0.0(postcss@8.4.40) - postcss-double-position-gradients: 6.0.0(postcss@8.4.40) - postcss-focus-visible: 10.0.0(postcss@8.4.40) - postcss-focus-within: 9.0.0(postcss@8.4.40) - postcss-font-variant: 5.0.0(postcss@8.4.40) - postcss-gap-properties: 6.0.0(postcss@8.4.40) - postcss-image-set-function: 7.0.0(postcss@8.4.40) - postcss-lab-function: 7.0.0(postcss@8.4.40) - postcss-logical: 8.0.0(postcss@8.4.40) - postcss-nesting: 13.0.0(postcss@8.4.40) - postcss-opacity-percentage: 2.0.0(postcss@8.4.40) - postcss-overflow-shorthand: 6.0.0(postcss@8.4.40) - postcss-page-break: 3.0.4(postcss@8.4.40) - postcss-place: 10.0.0(postcss@8.4.40) - postcss-pseudo-class-any-link: 10.0.0(postcss@8.4.40) - postcss-replace-overflow-wrap: 4.0.0(postcss@8.4.40) - postcss-selector-not: 8.0.0(postcss@8.4.40) + postcss: 8.4.41 + postcss-attribute-case-insensitive: 7.0.0(postcss@8.4.41) + postcss-clamp: 4.1.0(postcss@8.4.41) + postcss-color-functional-notation: 7.0.0(postcss@8.4.41) + postcss-color-hex-alpha: 10.0.0(postcss@8.4.41) + postcss-color-rebeccapurple: 10.0.0(postcss@8.4.41) + postcss-custom-media: 11.0.0(postcss@8.4.41) + postcss-custom-properties: 14.0.0(postcss@8.4.41) + postcss-custom-selectors: 8.0.0(postcss@8.4.41) + postcss-dir-pseudo-class: 9.0.0(postcss@8.4.41) + postcss-double-position-gradients: 6.0.0(postcss@8.4.41) + postcss-focus-visible: 10.0.0(postcss@8.4.41) + postcss-focus-within: 9.0.0(postcss@8.4.41) + postcss-font-variant: 5.0.0(postcss@8.4.41) + postcss-gap-properties: 6.0.0(postcss@8.4.41) + postcss-image-set-function: 7.0.0(postcss@8.4.41) + postcss-lab-function: 7.0.0(postcss@8.4.41) + postcss-logical: 8.0.0(postcss@8.4.41) + postcss-nesting: 13.0.0(postcss@8.4.41) + postcss-opacity-percentage: 2.0.0(postcss@8.4.41) + postcss-overflow-shorthand: 6.0.0(postcss@8.4.41) + postcss-page-break: 3.0.4(postcss@8.4.41) + postcss-place: 10.0.0(postcss@8.4.41) + postcss-pseudo-class-any-link: 10.0.0(postcss@8.4.41) + postcss-replace-overflow-wrap: 4.0.0(postcss@8.4.41) + postcss-selector-not: 8.0.0(postcss@8.4.41) - postcss-pseudo-class-any-link@10.0.0(postcss@8.4.40): + postcss-pseudo-class-any-link@10.0.0(postcss@8.4.41): dependencies: - postcss: 8.4.40 + postcss: 8.4.41 postcss-selector-parser: 6.1.1 - postcss-reduce-initial@7.0.1(postcss@8.4.40): + postcss-reduce-initial@7.0.1(postcss@8.4.41): dependencies: browserslist: 4.23.3 caniuse-api: 3.0.0 - postcss: 8.4.40 + postcss: 8.4.41 - postcss-reduce-transforms@7.0.0(postcss@8.4.40): + postcss-reduce-transforms@7.0.0(postcss@8.4.41): dependencies: - postcss: 8.4.40 + postcss: 8.4.41 postcss-value-parser: 4.2.0 - postcss-replace-overflow-wrap@4.0.0(postcss@8.4.40): + postcss-replace-overflow-wrap@4.0.0(postcss@8.4.41): dependencies: - postcss: 8.4.40 + postcss: 8.4.41 postcss-resolve-nested-selector@0.1.4: {} - postcss-safe-parser@6.0.0(postcss@8.4.40): + postcss-safe-parser@6.0.0(postcss@8.4.41): dependencies: - postcss: 8.4.40 + postcss: 8.4.41 - postcss-safe-parser@7.0.0(postcss@8.4.40): + postcss-safe-parser@7.0.0(postcss@8.4.41): dependencies: - postcss: 8.4.40 + postcss: 8.4.41 - postcss-scss@4.0.9(postcss@8.4.40): + postcss-scss@4.0.9(postcss@8.4.41): dependencies: - postcss: 8.4.40 + postcss: 8.4.41 - postcss-selector-not@8.0.0(postcss@8.4.40): + postcss-selector-not@8.0.0(postcss@8.4.41): dependencies: - postcss: 8.4.40 + postcss: 8.4.41 postcss-selector-parser: 6.1.1 postcss-selector-parser@6.0.10: @@ -17041,24 +16908,24 @@ snapshots: cssesc: 3.0.0 util-deprecate: 1.0.2 - postcss-sorting@8.0.2(postcss@8.4.40): + postcss-sorting@8.0.2(postcss@8.4.41): dependencies: - postcss: 8.4.40 + postcss: 8.4.41 - postcss-svgo@7.0.1(postcss@8.4.40): + postcss-svgo@7.0.1(postcss@8.4.41): dependencies: - postcss: 8.4.40 + postcss: 8.4.41 postcss-value-parser: 4.2.0 svgo: 3.3.2 - postcss-unique-selectors@7.0.1(postcss@8.4.40): + postcss-unique-selectors@7.0.1(postcss@8.4.41): dependencies: - postcss: 8.4.40 + postcss: 8.4.41 postcss-selector-parser: 6.1.1 postcss-value-parser@4.2.0: {} - postcss@8.4.40: + postcss@8.4.41: dependencies: nanoid: 3.3.7 picocolors: 1.0.1 @@ -17130,10 +16997,9 @@ snapshots: dependencies: escape-goat: 4.0.0 - qrcode@1.5.3: + qrcode@1.5.4: dependencies: dijkstrajs: 1.0.3 - encode-utf8: 1.0.3 pngjs: 5.0.0 yargs: 15.4.1 @@ -17143,20 +17009,20 @@ snapshots: queue-tick@1.0.1: {} - radix-vue@1.9.2(vue@3.4.35(typescript@5.5.4)): + radix-vue@1.9.3(vue@3.4.36(typescript@5.5.4)): dependencies: - '@floating-ui/dom': 1.6.8 - '@floating-ui/vue': 1.1.2(vue@3.4.35(typescript@5.5.4)) + '@floating-ui/dom': 1.6.10 + '@floating-ui/vue': 1.1.4(vue@3.4.36(typescript@5.5.4)) '@internationalized/date': 3.5.5 '@internationalized/number': 3.5.3 - '@tanstack/vue-virtual': 3.8.4(vue@3.4.35(typescript@5.5.4)) - '@vueuse/core': 10.11.0(vue@3.4.35(typescript@5.5.4)) - '@vueuse/shared': 10.11.0(vue@3.4.35(typescript@5.5.4)) + '@tanstack/vue-virtual': 3.8.5(vue@3.4.36(typescript@5.5.4)) + '@vueuse/core': 10.11.0(vue@3.4.36(typescript@5.5.4)) + '@vueuse/shared': 10.11.0(vue@3.4.36(typescript@5.5.4)) aria-hidden: 1.2.4 defu: 6.1.4 fast-deep-equal: 3.1.3 nanoid: 5.0.7 - vue: 3.4.35(typescript@5.5.4) + vue: 3.4.36(typescript@5.5.4) transitivePeerDependencies: - '@vue/composition-api' @@ -17283,7 +17149,7 @@ snapshots: registry-auth-token@5.0.2: dependencies: - '@pnpm/npm-conf': 2.2.2 + '@pnpm/npm-conf': 2.3.0 registry-url@6.0.1: dependencies: @@ -17365,15 +17231,6 @@ snapshots: optionalDependencies: '@babel/code-frame': 7.24.7 - rollup-plugin-visualizer@5.12.0(rollup@4.19.2): - dependencies: - open: 8.4.2 - picomatch: 2.3.1 - source-map: 0.7.4 - yargs: 17.7.2 - optionalDependencies: - rollup: 4.19.2 - rollup-plugin-visualizer@5.12.0(rollup@4.20.0): dependencies: open: 8.4.2 @@ -17391,28 +17248,6 @@ snapshots: optionalDependencies: fsevents: 2.3.3 - rollup@4.19.2: - dependencies: - '@types/estree': 1.0.5 - optionalDependencies: - '@rollup/rollup-android-arm-eabi': 4.19.2 - '@rollup/rollup-android-arm64': 4.19.2 - '@rollup/rollup-darwin-arm64': 4.19.2 - '@rollup/rollup-darwin-x64': 4.19.2 - '@rollup/rollup-linux-arm-gnueabihf': 4.19.2 - '@rollup/rollup-linux-arm-musleabihf': 4.19.2 - '@rollup/rollup-linux-arm64-gnu': 4.19.2 - '@rollup/rollup-linux-arm64-musl': 4.19.2 - '@rollup/rollup-linux-powerpc64le-gnu': 4.19.2 - '@rollup/rollup-linux-riscv64-gnu': 4.19.2 - '@rollup/rollup-linux-s390x-gnu': 4.19.2 - '@rollup/rollup-linux-x64-gnu': 4.19.2 - '@rollup/rollup-linux-x64-musl': 4.19.2 - '@rollup/rollup-win32-arm64-msvc': 4.19.2 - '@rollup/rollup-win32-ia32-msvc': 4.19.2 - '@rollup/rollup-win32-x64-msvc': 4.19.2 - fsevents: 2.3.3 - rollup@4.20.0: dependencies: '@types/estree': 1.0.5 @@ -17492,7 +17327,7 @@ snapshots: scule@1.3.0: {} - search-insights@2.15.0: {} + search-insights@2.16.0: {} seemly@0.3.8: {} @@ -17836,10 +17671,10 @@ snapshots: style-search@0.1.0: {} - stylehacks@7.0.2(postcss@8.4.40): + stylehacks@7.0.2(postcss@8.4.41): dependencies: browserslist: 4.23.3 - postcss: 8.4.40 + postcss: 8.4.41 postcss-selector-parser: 6.1.1 stylelint-config-html@1.1.0(postcss-html@1.7.0)(stylelint@16.8.1(typescript@5.5.4)): @@ -17852,14 +17687,14 @@ snapshots: stylelint: 16.8.1(typescript@5.5.4) stylelint-order: 6.0.4(stylelint@16.8.1(typescript@5.5.4)) - stylelint-config-recommended-scss@14.1.0(postcss@8.4.40)(stylelint@16.8.1(typescript@5.5.4)): + stylelint-config-recommended-scss@14.1.0(postcss@8.4.41)(stylelint@16.8.1(typescript@5.5.4)): dependencies: - postcss-scss: 4.0.9(postcss@8.4.40) + postcss-scss: 4.0.9(postcss@8.4.41) stylelint: 16.8.1(typescript@5.5.4) stylelint-config-recommended: 14.0.1(stylelint@16.8.1(typescript@5.5.4)) stylelint-scss: 6.5.0(stylelint@16.8.1(typescript@5.5.4)) optionalDependencies: - postcss: 8.4.40 + postcss: 8.4.41 stylelint-config-recommended-vue@1.5.0(postcss-html@1.7.0)(stylelint@16.8.1(typescript@5.5.4)): dependencies: @@ -17880,8 +17715,8 @@ snapshots: stylelint-order@6.0.4(stylelint@16.8.1(typescript@5.5.4)): dependencies: - postcss: 8.4.40 - postcss-sorting: 8.0.2(postcss@8.4.40) + postcss: 8.4.41 + postcss-sorting: 8.0.2(postcss@8.4.41) stylelint: 16.8.1(typescript@5.5.4) stylelint-prettier@5.0.2(prettier@3.3.3)(stylelint@16.8.1(typescript@5.5.4)): @@ -17930,9 +17765,9 @@ snapshots: micromatch: 4.0.7 normalize-path: 3.0.0 picocolors: 1.0.1 - postcss: 8.4.40 + postcss: 8.4.41 postcss-resolve-nested-selector: 0.1.4 - postcss-safe-parser: 7.0.0(postcss@8.4.40) + postcss-safe-parser: 7.0.0(postcss@8.4.41) postcss-selector-parser: 6.1.1 postcss-value-parser: 4.2.0 resolve-from: 5.0.0 @@ -18044,11 +17879,11 @@ snapshots: normalize-path: 3.0.0 object-hash: 3.0.0 picocolors: 1.0.1 - postcss: 8.4.40 - postcss-import: 15.1.0(postcss@8.4.40) - postcss-js: 4.0.1(postcss@8.4.40) - postcss-load-config: 4.0.2(postcss@8.4.40) - postcss-nested: 6.2.0(postcss@8.4.40) + postcss: 8.4.41 + postcss-import: 15.1.0(postcss@8.4.41) + postcss-js: 4.0.1(postcss@8.4.41) + postcss-load-config: 4.0.2(postcss@8.4.41) + postcss-nested: 6.2.0(postcss@8.4.41) postcss-selector-parser: 6.1.1 resolve: 1.22.8 sucrase: 3.35.0 @@ -18112,9 +17947,9 @@ snapshots: through@2.3.8: {} - tinybench@2.8.0: {} + tinybench@2.9.0: {} - tinyglobby@0.2.0: + tinyglobby@0.2.2: dependencies: fdir: 6.2.0(picomatch@4.0.2) picomatch: 4.0.2 @@ -18168,32 +18003,32 @@ snapshots: tslib@2.6.3: {} - turbo-darwin-64@2.0.11: + turbo-darwin-64@2.0.12: optional: true - turbo-darwin-arm64@2.0.11: + turbo-darwin-arm64@2.0.12: optional: true - turbo-linux-64@2.0.11: + turbo-linux-64@2.0.12: optional: true - turbo-linux-arm64@2.0.11: + turbo-linux-arm64@2.0.12: optional: true - turbo-windows-64@2.0.11: + turbo-windows-64@2.0.12: optional: true - turbo-windows-arm64@2.0.11: + turbo-windows-arm64@2.0.12: optional: true - turbo@2.0.11: + turbo@2.0.12: optionalDependencies: - turbo-darwin-64: 2.0.11 - turbo-darwin-arm64: 2.0.11 - turbo-linux-64: 2.0.11 - turbo-linux-arm64: 2.0.11 - turbo-windows-64: 2.0.11 - turbo-windows-arm64: 2.0.11 + turbo-darwin-64: 2.0.12 + turbo-darwin-arm64: 2.0.12 + turbo-linux-64: 2.0.12 + turbo-linux-arm64: 2.0.12 + turbo-windows-64: 2.0.12 + turbo-windows-arm64: 2.0.12 type-check@0.4.0: dependencies: @@ -18327,9 +18162,9 @@ snapshots: unicorn-magic@0.1.0: {} - unimport@3.9.1(rollup@4.19.2): + unimport@3.10.0(rollup@4.20.0): dependencies: - '@rollup/pluginutils': 5.1.0(rollup@4.19.2) + '@rollup/pluginutils': 5.1.0(rollup@4.20.0) acorn: 8.12.1 escape-string-regexp: 5.0.0 estree-walker: 3.0.3 @@ -18433,7 +18268,7 @@ snapshots: update-notifier@7.2.0: dependencies: - boxen: 8.0.0 + boxen: 8.0.1 chalk: 5.3.0 configstore: 7.0.0 import-lazy: 4.0.0 @@ -18466,10 +18301,10 @@ snapshots: spdx-correct: 3.2.0 spdx-expression-parse: 3.0.1 - vdirs@0.1.8(vue@3.4.35(typescript@5.5.4)): + vdirs@0.1.8(vue@3.4.36(typescript@5.5.4)): dependencies: evtd: 0.2.4 - vue: 3.4.35(typescript@5.5.4) + vue: 3.4.36(typescript@5.5.4) vite-hot-client@0.2.3(vite@5.3.5(@types/node@22.1.0)(sass@1.77.8)(terser@5.31.3)): dependencies: @@ -18564,16 +18399,16 @@ snapshots: dependencies: debug: 4.3.6 pretty-bytes: 6.1.1 - tinyglobby: 0.2.0 + tinyglobby: 0.2.2 vite: 5.3.5(@types/node@22.1.0)(sass@1.77.8)(terser@5.31.3) workbox-build: 7.1.1 workbox-window: 7.1.0 transitivePeerDependencies: - supports-color - vite-plugin-vue-devtools@7.3.7(rollup@4.20.0)(vite@5.3.5(@types/node@22.1.0)(sass@1.77.8)(terser@5.31.3))(vue@3.4.35(typescript@5.5.4)): + vite-plugin-vue-devtools@7.3.7(rollup@4.20.0)(vite@5.3.5(@types/node@22.1.0)(sass@1.77.8)(terser@5.31.3))(vue@3.4.36(typescript@5.5.4)): dependencies: - '@vue/devtools-core': 7.3.7(vite@5.3.5(@types/node@22.1.0)(sass@1.77.8)(terser@5.31.3))(vue@3.4.35(typescript@5.5.4)) + '@vue/devtools-core': 7.3.7(vite@5.3.5(@types/node@22.1.0)(sass@1.77.8)(terser@5.31.3))(vue@3.4.36(typescript@5.5.4)) '@vue/devtools-kit': 7.3.7 '@vue/devtools-shared': 7.3.7 execa: 8.0.1 @@ -18595,7 +18430,7 @@ snapshots: '@babel/plugin-syntax-import-meta': 7.10.4(@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) - '@vue/compiler-dom': 3.4.35 + '@vue/compiler-dom': 3.4.36 kolorist: 1.8.0 magic-string: 0.30.11 vite: 5.3.5(@types/node@22.1.0)(sass@1.77.8)(terser@5.31.3) @@ -18605,7 +18440,7 @@ snapshots: vite@5.3.5(@types/node@22.1.0)(sass@1.77.8)(terser@5.31.3): dependencies: esbuild: 0.21.5 - postcss: 8.4.40 + postcss: 8.4.41 rollup: 4.20.0 optionalDependencies: '@types/node': 22.1.0 @@ -18613,26 +18448,26 @@ snapshots: sass: 1.77.8 terser: 5.31.3 - vitepress@1.3.2(@algolia/client-search@4.24.0)(@types/node@22.1.0)(async-validator@4.2.5)(axios@1.7.3)(nprogress@0.2.0)(postcss@8.4.40)(qrcode@1.5.3)(sass@1.77.8)(search-insights@2.15.0)(sortablejs@1.15.2)(terser@5.31.3)(typescript@5.5.4): + vitepress@1.3.2(@algolia/client-search@4.24.0)(@types/node@22.1.0)(async-validator@4.2.5)(axios@1.7.3)(nprogress@0.2.0)(postcss@8.4.41)(qrcode@1.5.4)(sass@1.77.8)(search-insights@2.16.0)(sortablejs@1.15.2)(terser@5.31.3)(typescript@5.5.4): dependencies: '@docsearch/css': 3.6.1 - '@docsearch/js': 3.6.1(@algolia/client-search@4.24.0)(search-insights@2.15.0) + '@docsearch/js': 3.6.1(@algolia/client-search@4.24.0)(search-insights@2.16.0) '@shikijs/core': 1.12.1 '@shikijs/transformers': 1.12.1 '@types/markdown-it': 14.1.2 - '@vitejs/plugin-vue': 5.1.2(vite@5.3.5(@types/node@22.1.0)(sass@1.77.8)(terser@5.31.3))(vue@3.4.35(typescript@5.5.4)) + '@vitejs/plugin-vue': 5.1.2(vite@5.3.5(@types/node@22.1.0)(sass@1.77.8)(terser@5.31.3))(vue@3.4.36(typescript@5.5.4)) '@vue/devtools-api': 7.3.7 - '@vue/shared': 3.4.35 - '@vueuse/core': 10.11.0(vue@3.4.35(typescript@5.5.4)) - '@vueuse/integrations': 10.11.0(async-validator@4.2.5)(axios@1.7.3)(focus-trap@7.5.4)(nprogress@0.2.0)(qrcode@1.5.3)(sortablejs@1.15.2)(vue@3.4.35(typescript@5.5.4)) + '@vue/shared': 3.4.36 + '@vueuse/core': 10.11.0(vue@3.4.36(typescript@5.5.4)) + '@vueuse/integrations': 10.11.0(async-validator@4.2.5)(axios@1.7.3)(focus-trap@7.5.4)(nprogress@0.2.0)(qrcode@1.5.4)(sortablejs@1.15.2)(vue@3.4.36(typescript@5.5.4)) focus-trap: 7.5.4 mark.js: 8.11.1 minisearch: 7.1.0 shiki: 1.12.1 vite: 5.3.5(@types/node@22.1.0)(sass@1.77.8)(terser@5.31.3) - vue: 3.4.35(typescript@5.5.4) + vue: 3.4.36(typescript@5.5.4) optionalDependencies: - postcss: 8.4.40 + postcss: 8.4.41 transitivePeerDependencies: - '@algolia/client-search' - '@types/node' @@ -18675,7 +18510,7 @@ snapshots: magic-string: 0.30.11 pathe: 1.1.2 std-env: 3.7.0 - tinybench: 2.8.0 + tinybench: 2.9.0 tinypool: 1.0.0 tinyrainbow: 1.2.0 vite: 5.3.5(@types/node@22.1.0)(sass@1.77.8)(terser@5.31.3) @@ -18693,10 +18528,10 @@ snapshots: - supports-color - terser - vooks@0.2.12(vue@3.4.35(typescript@5.5.4)): + vooks@0.2.12(vue@3.4.36(typescript@5.5.4)): dependencies: evtd: 0.2.4 - vue: 3.4.35(typescript@5.5.4) + vue: 3.4.36(typescript@5.5.4) vscode-languageserver-textdocument@1.0.12: {} @@ -18704,9 +18539,9 @@ snapshots: vue-component-type-helpers@2.0.29: {} - vue-demi@0.14.10(vue@3.4.35(typescript@5.5.4)): + vue-demi@0.14.10(vue@3.4.36(typescript@5.5.4)): dependencies: - vue: 3.4.35(typescript@5.5.4) + vue: 3.4.36(typescript@5.5.4) vue-eslint-parser@9.4.3(eslint@9.8.0): dependencies: @@ -18721,17 +18556,17 @@ snapshots: transitivePeerDependencies: - supports-color - vue-i18n@9.13.1(vue@3.4.35(typescript@5.5.4)): + vue-i18n@9.13.1(vue@3.4.36(typescript@5.5.4)): dependencies: '@intlify/core-base': 9.13.1 '@intlify/shared': 9.13.1 '@vue/devtools-api': 6.6.3 - vue: 3.4.35(typescript@5.5.4) + vue: 3.4.36(typescript@5.5.4) - vue-router@4.4.2(vue@3.4.35(typescript@5.5.4)): + vue-router@4.4.3(vue@3.4.36(typescript@5.5.4)): dependencies: '@vue/devtools-api': 6.6.3 - vue: 3.4.35(typescript@5.5.4) + vue: 3.4.36(typescript@5.5.4) vue-tsc@2.0.29(typescript@5.5.4): dependencies: @@ -18740,31 +18575,31 @@ snapshots: semver: 7.6.3 typescript: 5.5.4 - vue-types@3.0.2(vue@3.4.35(typescript@5.5.4)): + vue-types@3.0.2(vue@3.4.36(typescript@5.5.4)): dependencies: is-plain-object: 3.0.1 - vue: 3.4.35(typescript@5.5.4) + vue: 3.4.36(typescript@5.5.4) - vue@3.4.35(typescript@5.5.4): + vue@3.4.36(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.36 + '@vue/compiler-sfc': 3.4.36 + '@vue/runtime-dom': 3.4.36 + '@vue/server-renderer': 3.4.36(vue@3.4.36(typescript@5.5.4)) + '@vue/shared': 3.4.36 optionalDependencies: typescript: 5.5.4 - vueuc@0.4.58(vue@3.4.35(typescript@5.5.4)): + vueuc@0.4.58(vue@3.4.36(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.36(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.36(typescript@5.5.4)) + vooks: 0.2.12(vue@3.4.36(typescript@5.5.4)) + vue: 3.4.36(typescript@5.5.4) w3c-xmlserializer@5.0.0: dependencies: From a27b1c40e54a795035d685a0f6183c2e6fa252ec Mon Sep 17 00:00:00 2001 From: Vben Date: Wed, 7 Aug 2024 22:01:45 +0800 Subject: [PATCH 5/9] fix: the failure of breadcrumb animation (#4073) --- .github/workflows/draft.yml | 1 + .vscode/settings.json | 4 +++- docs/src/guide/essentials/build.md | 4 ++-- internal/tsconfig/base.json | 1 + .../index.css => base/design/src/css/ui.css} | 15 --------------- packages/@core/base/design/src/index.ts | 1 + packages/@core/ui-kit/shadcn-ui/src/index.ts | 2 -- scripts/vsh/src/check-dep/index.ts | 2 +- 8 files changed, 9 insertions(+), 21 deletions(-) rename packages/@core/{ui-kit/shadcn-ui/src/styles/index.css => base/design/src/css/ui.css} (82%) diff --git a/.github/workflows/draft.yml b/.github/workflows/draft.yml index 700e3dc0..90853272 100644 --- a/.github/workflows/draft.yml +++ b/.github/workflows/draft.yml @@ -7,6 +7,7 @@ on: permissions: contents: read + pull-requests: write jobs: update_release_draft: diff --git a/.vscode/settings.json b/.vscode/settings.json index 5141a436..2f0e94b4 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -189,5 +189,7 @@ }, "commentTranslate.hover.enabled": false, "i18n-ally.keystyle": "nested", - "commentTranslate.multiLineMerge": true + "commentTranslate.multiLineMerge": true, + "vue.server.hybridMode": true, + "typescript.tsdk": "node_modules/typescript/lib" } diff --git a/docs/src/guide/essentials/build.md b/docs/src/guide/essentials/build.md index 3acde53f..8a506550 100644 --- a/docs/src/guide/essentials/build.md +++ b/docs/src/guide/essentials/build.md @@ -10,7 +10,7 @@ 项目开发完成之后,执行以下命令进行构建: -**注意:** 请在项目跟目录下执行以下命令 +**注意:** 请在项目根目录下执行以下命令 ```bash pnpm build @@ -24,7 +24,7 @@ pnpm build - 使用项目自定的命令进行预览(推荐) -**注意:** 请在项目跟目录下执行以下命令 +**注意:** 请在项目根目录下执行以下命令 ```bash pnpm preview diff --git a/internal/tsconfig/base.json b/internal/tsconfig/base.json index 1e45a784..82e35f31 100644 --- a/internal/tsconfig/base.json +++ b/internal/tsconfig/base.json @@ -13,6 +13,7 @@ "moduleResolution": "node", "resolveJsonModule": true, + "allowImportingTsExtensions": true, "strict": true, "strictNullChecks": true, diff --git a/packages/@core/ui-kit/shadcn-ui/src/styles/index.css b/packages/@core/base/design/src/css/ui.css similarity index 82% rename from packages/@core/ui-kit/shadcn-ui/src/styles/index.css rename to packages/@core/base/design/src/css/ui.css index f0605e4d..3a002f2a 100644 --- a/packages/@core/ui-kit/shadcn-ui/src/styles/index.css +++ b/packages/@core/base/design/src/css/ui.css @@ -34,21 +34,6 @@ transform: translateX(30px) skewX(-30deg); } -/* -.breadcrumb-transition-move, -.breadcrumb-transition-enter-active { - transition: all 0.5s cubic-bezier(0.76, 0, 0.24, 1); -} - -.breadcrumb-transition-leave-active { - display: none; -} - -.breadcrumb-transition-enter-from { - opacity: 0; - transform: translateX(-5px); -} */ - @keyframes slide-down { from { opacity: 0; diff --git a/packages/@core/base/design/src/index.ts b/packages/@core/base/design/src/index.ts index 7265f722..15e8b37b 100644 --- a/packages/@core/base/design/src/index.ts +++ b/packages/@core/base/design/src/index.ts @@ -1,6 +1,7 @@ import './css/global.css'; import './css/transition.css'; import './css/nprogress.css'; +import './css/ui.css'; import './design-tokens'; export {}; diff --git a/packages/@core/ui-kit/shadcn-ui/src/index.ts b/packages/@core/ui-kit/shadcn-ui/src/index.ts index b8aa14cf..49467109 100644 --- a/packages/@core/ui-kit/shadcn-ui/src/index.ts +++ b/packages/@core/ui-kit/shadcn-ui/src/index.ts @@ -1,4 +1,2 @@ -import './styles/index.css'; - export * from './components'; export { VisuallyHidden } from 'radix-vue'; diff --git a/scripts/vsh/src/check-dep/index.ts b/scripts/vsh/src/check-dep/index.ts index 3e2a4781..76262299 100644 --- a/scripts/vsh/src/check-dep/index.ts +++ b/scripts/vsh/src/check-dep/index.ts @@ -44,7 +44,7 @@ async function runDepcheck() { // 删除file:前缀的依赖提示,该依赖是本地依赖 Reflect.deleteProperty(unused.missing, 'file:'); Object.keys(unused.missing).forEach((key) => { - unused.missing[key] = unused.missing[key].filter( + unused.missing[key] = (unused.missing[key] || []).filter( (item: string) => !item.startsWith('/'), ); if (unused.missing[key].length === 0) { From 5f4d3f2bce8b2374a91ac857de4c5268a6ee4676 Mon Sep 17 00:00:00 2001 From: Vben Date: Wed, 7 Aug 2024 22:24:39 +0800 Subject: [PATCH 6/9] chore(deps): bump the non-breaking-changes group with 10 updates (#4074) --- .github/workflows/draft.yml | 6 + apps/web-antd/package.json | 4 +- apps/web-ele/package.json | 4 +- apps/web-naive/package.json | 4 +- docs/package.json | 2 +- .../commitlint-config/package.json | 2 +- .../lint-configs/eslint-config/package.json | 4 +- .../stylelint-config/package.json | 2 +- internal/tailwind-config/package.json | 2 +- internal/vite-config/package.json | 2 +- package.json | 6 +- packages/@core/base/icons/package.json | 2 +- packages/@core/base/shared/package.json | 4 +- packages/@core/base/typings/package.json | 4 +- packages/@core/composables/package.json | 4 +- packages/@core/preferences/package.json | 2 +- packages/@core/ui-kit/layout-ui/package.json | 2 +- packages/@core/ui-kit/menu-ui/package.json | 2 +- packages/@core/ui-kit/shadcn-ui/package.json | 4 +- packages/@core/ui-kit/tabs-ui/package.json | 2 +- packages/effects/access/package.json | 2 +- packages/effects/chart-ui/package.json | 2 +- packages/effects/common-ui/package.json | 6 +- packages/effects/hooks/package.json | 4 +- packages/effects/layouts/package.json | 4 +- packages/locales/package.json | 2 +- packages/stores/package.json | 4 +- packages/types/package.json | 4 +- packages/utils/package.json | 2 +- pnpm-lock.yaml | 163 ++++++++++-------- 30 files changed, 141 insertions(+), 116 deletions(-) diff --git a/.github/workflows/draft.yml b/.github/workflows/draft.yml index 90853272..a3334aa9 100644 --- a/.github/workflows/draft.yml +++ b/.github/workflows/draft.yml @@ -11,6 +11,12 @@ permissions: jobs: update_release_draft: + permissions: + # write permission is required to create a github release + contents: write + # write permission is required for autolabeler + # otherwise, read permission is required at least + pull-requests: write runs-on: ubuntu-latest steps: - uses: release-drafter/release-drafter@v6 diff --git a/apps/web-antd/package.json b/apps/web-antd/package.json index 6e6da999..beb0e188 100644 --- a/apps/web-antd/package.json +++ b/apps/web-antd/package.json @@ -44,7 +44,7 @@ "ant-design-vue": "^4.2.3", "dayjs": "^1.11.12", "pinia": "2.2.0", - "vue": "^3.4.35", - "vue-router": "^4.4.2" + "vue": "^3.4.36", + "vue-router": "^4.4.3" } } diff --git a/apps/web-ele/package.json b/apps/web-ele/package.json index c4e5e5da..2a369e20 100644 --- a/apps/web-ele/package.json +++ b/apps/web-ele/package.json @@ -44,8 +44,8 @@ "dayjs": "^1.11.12", "element-plus": "^2.7.8", "pinia": "2.2.0", - "vue": "^3.4.35", - "vue-router": "^4.4.2" + "vue": "^3.4.36", + "vue-router": "^4.4.3" }, "devDependencies": { "unplugin-element-plus": "^0.8.0" diff --git a/apps/web-naive/package.json b/apps/web-naive/package.json index 4d00d604..e228c73d 100644 --- a/apps/web-naive/package.json +++ b/apps/web-naive/package.json @@ -43,7 +43,7 @@ "@vueuse/core": "^10.11.0", "naive-ui": "^2.39.0", "pinia": "2.2.0", - "vue": "^3.4.35", - "vue-router": "^4.4.2" + "vue": "^3.4.36", + "vue-router": "^4.4.3" } } diff --git a/docs/package.json b/docs/package.json index fcc20e2d..f24fd01f 100644 --- a/docs/package.json +++ b/docs/package.json @@ -13,6 +13,6 @@ "devDependencies": { "@vite-pwa/vitepress": "^0.5.0", "vitepress": "^1.3.2", - "vue": "^3.4.35" + "vue": "^3.4.36" } } diff --git a/internal/lint-configs/commitlint-config/package.json b/internal/lint-configs/commitlint-config/package.json index 11ad6871..72cd2009 100644 --- a/internal/lint-configs/commitlint-config/package.json +++ b/internal/lint-configs/commitlint-config/package.json @@ -23,7 +23,7 @@ } }, "dependencies": { - "@commitlint/cli": "^19.3.0", + "@commitlint/cli": "^19.4.0", "@commitlint/config-conventional": "^19.2.2", "@vben/node-utils": "workspace:*", "commitlint-plugin-function-rules": "^4.0.0", diff --git a/internal/lint-configs/eslint-config/package.json b/internal/lint-configs/eslint-config/package.json index 429d9991..83a2739b 100644 --- a/internal/lint-configs/eslint-config/package.json +++ b/internal/lint-configs/eslint-config/package.json @@ -27,7 +27,7 @@ } }, "dependencies": { - "eslint-config-turbo": "^2.0.11", + "eslint-config-turbo": "^2.0.12", "eslint-plugin-command": "^0.2.3", "eslint-plugin-import-x": "^3.1.0" }, @@ -39,7 +39,7 @@ "eslint": "^9.8.0", "eslint-config-prettier": "^9.1.0", "eslint-plugin-eslint-comments": "^3.2.0", - "eslint-plugin-jsdoc": "^48.10.2", + "eslint-plugin-jsdoc": "^50.0.0", "eslint-plugin-jsonc": "^2.16.0", "eslint-plugin-n": "^17.10.2", "eslint-plugin-no-only-tests": "^3.1.0", diff --git a/internal/lint-configs/stylelint-config/package.json b/internal/lint-configs/stylelint-config/package.json index a68da3b6..48b7f4ad 100644 --- a/internal/lint-configs/stylelint-config/package.json +++ b/internal/lint-configs/stylelint-config/package.json @@ -28,7 +28,7 @@ "stylelint-scss": "^6.5.0" }, "devDependencies": { - "postcss": "^8.4.40", + "postcss": "^8.4.41", "postcss-html": "^1.7.0", "postcss-scss": "^4.0.9", "prettier": "^3.3.3", diff --git a/internal/tailwind-config/package.json b/internal/tailwind-config/package.json index 6d075bf4..fbdbb7d0 100644 --- a/internal/tailwind-config/package.json +++ b/internal/tailwind-config/package.json @@ -52,7 +52,7 @@ "@tailwindcss/typography": "^0.5.13", "autoprefixer": "^10.4.20", "cssnano": "^7.0.4", - "postcss": "^8.4.40", + "postcss": "^8.4.41", "postcss-antd-fixes": "^0.2.0", "postcss-import": "^16.1.0", "postcss-preset-env": "^10.0.0", diff --git a/internal/vite-config/package.json b/internal/vite-config/package.json index 27b8d5e7..0c8de7c2 100644 --- a/internal/vite-config/package.json +++ b/internal/vite-config/package.json @@ -28,7 +28,7 @@ }, "dependencies": { "@intlify/unplugin-vue-i18n": "^4.0.0", - "@jspm/generator": "^2.1.2", + "@jspm/generator": "^2.1.3", "cheerio": "1.0.0-rc.12", "get-port": "^7.1.0", "html-minifier-terser": "^7.2.0", diff --git a/package.json b/package.json index c88a1116..6c8ea588 100644 --- a/package.json +++ b/package.json @@ -72,14 +72,14 @@ "@vue/test-utils": "^2.4.6", "autoprefixer": "^10.4.20", "cross-env": "^7.0.3", - "cspell": "^8.13.0", + "cspell": "^8.13.1", "husky": "^9.1.4", "is-ci": "^3.0.1", "jsdom": "^24.1.1", "lint-staged": "^15.2.8", "rimraf": "^6.0.1", "tailwindcss": "^3.4.7", - "turbo": "^2.0.11", + "turbo": "^2.0.12", "typescript": "^5.5.4", "unbuild": "^2.0.0", "vite": "^5.3.5", @@ -100,7 +100,7 @@ "overrides": { "@ctrl/tinycolor": "^4.1.0", "clsx": "^2.1.1", - "vue": "^3.4.35" + "vue": "^3.4.36" }, "neverBuiltDependencies": [ "canvas", diff --git a/packages/@core/base/icons/package.json b/packages/@core/base/icons/package.json index b2b50d72..b0a74f98 100644 --- a/packages/@core/base/icons/package.json +++ b/packages/@core/base/icons/package.json @@ -36,6 +36,6 @@ "dependencies": { "@iconify/vue": "^4.1.2", "lucide-vue-next": "^0.424.0", - "vue": "^3.4.35" + "vue": "^3.4.36" } } diff --git a/packages/@core/base/shared/package.json b/packages/@core/base/shared/package.json index 924a37c5..2a9c7e40 100644 --- a/packages/@core/base/shared/package.json +++ b/packages/@core/base/shared/package.json @@ -55,8 +55,8 @@ } }, "dependencies": { - "@ant-design/fast-color": "^2.0.5", - "@vue/shared": "^3.4.35", + "@ant-design/fast-color": "^2.0.6", + "@vue/shared": "^3.4.36", "clsx": "^2.1.1", "defu": "^6.1.4", "lodash.clonedeep": "^4.5.0", diff --git a/packages/@core/base/typings/package.json b/packages/@core/base/typings/package.json index 4af313a2..966ebce3 100644 --- a/packages/@core/base/typings/package.json +++ b/packages/@core/base/typings/package.json @@ -38,7 +38,7 @@ } }, "dependencies": { - "vue": "^3.4.35", - "vue-router": "^4.4.2" + "vue": "^3.4.36", + "vue-router": "^4.4.3" } } diff --git a/packages/@core/composables/package.json b/packages/@core/composables/package.json index 7aea48cd..e43067d1 100644 --- a/packages/@core/composables/package.json +++ b/packages/@core/composables/package.json @@ -37,9 +37,9 @@ "dependencies": { "@vben-core/shared": "workspace:*", "@vueuse/core": "^10.11.0", - "radix-vue": "^1.9.2", + "radix-vue": "^1.9.3", "sortablejs": "^1.15.2", - "vue": "^3.4.35" + "vue": "^3.4.36" }, "devDependencies": { "@types/sortablejs": "^1.15.8" diff --git a/packages/@core/preferences/package.json b/packages/@core/preferences/package.json index 90979fbb..476e5008 100644 --- a/packages/@core/preferences/package.json +++ b/packages/@core/preferences/package.json @@ -32,6 +32,6 @@ "@vben-core/shared": "workspace:*", "@vben-core/typings": "workspace:*", "@vueuse/core": "^10.11.0", - "vue": "^3.4.35" + "vue": "^3.4.36" } } diff --git a/packages/@core/ui-kit/layout-ui/package.json b/packages/@core/ui-kit/layout-ui/package.json index ae718383..7ebaf167 100644 --- a/packages/@core/ui-kit/layout-ui/package.json +++ b/packages/@core/ui-kit/layout-ui/package.json @@ -42,6 +42,6 @@ "@vben-core/shadcn-ui": "workspace:*", "@vben-core/typings": "workspace:*", "@vueuse/core": "^10.11.0", - "vue": "^3.4.35" + "vue": "^3.4.36" } } diff --git a/packages/@core/ui-kit/menu-ui/package.json b/packages/@core/ui-kit/menu-ui/package.json index fe32be57..95a71afd 100644 --- a/packages/@core/ui-kit/menu-ui/package.json +++ b/packages/@core/ui-kit/menu-ui/package.json @@ -43,6 +43,6 @@ "@vben-core/shared": "workspace:*", "@vben-core/typings": "workspace:*", "@vueuse/core": "^10.11.0", - "vue": "^3.4.35" + "vue": "^3.4.36" } } diff --git a/packages/@core/ui-kit/shadcn-ui/package.json b/packages/@core/ui-kit/shadcn-ui/package.json index 596e3143..2a09c0ce 100644 --- a/packages/@core/ui-kit/shadcn-ui/package.json +++ b/packages/@core/ui-kit/shadcn-ui/package.json @@ -49,7 +49,7 @@ "@vueuse/core": "^10.11.0", "class-variance-authority": "^0.7.0", "lucide-vue-next": "^0.424.0", - "radix-vue": "^1.9.2", - "vue": "^3.4.35" + "radix-vue": "^1.9.3", + "vue": "^3.4.36" } } diff --git a/packages/@core/ui-kit/tabs-ui/package.json b/packages/@core/ui-kit/tabs-ui/package.json index d6414d24..762f1887 100644 --- a/packages/@core/ui-kit/tabs-ui/package.json +++ b/packages/@core/ui-kit/tabs-ui/package.json @@ -41,6 +41,6 @@ "@vben-core/icons": "workspace:*", "@vben-core/shadcn-ui": "workspace:*", "@vben-core/typings": "workspace:*", - "vue": "^3.4.35" + "vue": "^3.4.36" } } diff --git a/packages/effects/access/package.json b/packages/effects/access/package.json index 2ff5b9ab..24a3855f 100644 --- a/packages/effects/access/package.json +++ b/packages/effects/access/package.json @@ -24,6 +24,6 @@ "@vben/stores": "workspace:*", "@vben/types": "workspace:*", "@vben/utils": "workspace:*", - "vue": "^3.4.35" + "vue": "^3.4.36" } } diff --git a/packages/effects/chart-ui/package.json b/packages/effects/chart-ui/package.json index 3f3e1d58..28379e56 100644 --- a/packages/effects/chart-ui/package.json +++ b/packages/effects/chart-ui/package.json @@ -23,6 +23,6 @@ "@vben/preferences": "workspace:*", "@vueuse/core": "^10.11.0", "echarts": "^5.5.1", - "vue": "^3.4.35" + "vue": "^3.4.36" } } diff --git a/packages/effects/common-ui/package.json b/packages/effects/common-ui/package.json index e9bc317d..7145fa73 100644 --- a/packages/effects/common-ui/package.json +++ b/packages/effects/common-ui/package.json @@ -27,9 +27,9 @@ "@vben/locales": "workspace:*", "@vben/types": "workspace:*", "@vueuse/integrations": "^10.11.0", - "qrcode": "^1.5.3", - "vue": "^3.4.35", - "vue-router": "^4.4.2" + "qrcode": "^1.5.4", + "vue": "^3.4.36", + "vue-router": "^4.4.3" }, "devDependencies": { "@types/qrcode": "^1.5.5" diff --git a/packages/effects/hooks/package.json b/packages/effects/hooks/package.json index fc4ae5e7..d6bba55c 100644 --- a/packages/effects/hooks/package.json +++ b/packages/effects/hooks/package.json @@ -25,8 +25,8 @@ "@vben/stores": "workspace:*", "@vben/types": "workspace:*", "@vben/utils": "workspace:*", - "vue": "^3.4.35", - "vue-router": "^4.4.2", + "vue": "^3.4.36", + "vue-router": "^4.4.3", "watermark-js-plus": "^1.5.2" } } diff --git a/packages/effects/layouts/package.json b/packages/effects/layouts/package.json index 316a4016..d2641bb5 100644 --- a/packages/effects/layouts/package.json +++ b/packages/effects/layouts/package.json @@ -33,7 +33,7 @@ "@vben/types": "workspace:*", "@vben/utils": "workspace:*", "@vueuse/core": "^10.11.0", - "vue": "^3.4.35", - "vue-router": "^4.4.2" + "vue": "^3.4.36", + "vue-router": "^4.4.3" } } diff --git a/packages/locales/package.json b/packages/locales/package.json index 734f1efa..c5f4c38d 100644 --- a/packages/locales/package.json +++ b/packages/locales/package.json @@ -21,7 +21,7 @@ }, "dependencies": { "@intlify/core-base": "^9.13.1", - "vue": "^3.4.35", + "vue": "^3.4.36", "vue-i18n": "^9.13.1" } } diff --git a/packages/stores/package.json b/packages/stores/package.json index cb711149..5e2a3ff9 100644 --- a/packages/stores/package.json +++ b/packages/stores/package.json @@ -24,7 +24,7 @@ "@vben-core/typings": "workspace:*", "pinia": "2.2.0", "pinia-plugin-persistedstate": "^3.2.1", - "vue": "^3.4.35", - "vue-router": "^4.4.2" + "vue": "^3.4.36", + "vue-router": "^4.4.3" } } diff --git a/packages/types/package.json b/packages/types/package.json index e4287c11..79c93ae0 100644 --- a/packages/types/package.json +++ b/packages/types/package.json @@ -21,7 +21,7 @@ }, "dependencies": { "@vben-core/typings": "workspace:*", - "vue": "^3.4.35", - "vue-router": "^4.4.2" + "vue": "^3.4.36", + "vue-router": "^4.4.3" } } diff --git a/packages/utils/package.json b/packages/utils/package.json index cef9ed41..ac2e5ace 100644 --- a/packages/utils/package.json +++ b/packages/utils/package.json @@ -24,6 +24,6 @@ "dependencies": { "@vben-core/shared": "workspace:*", "@vben-core/typings": "workspace:*", - "vue-router": "^4.4.2" + "vue-router": "^4.4.3" } } diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 47ca3a8c..52bf3778 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -7,7 +7,7 @@ settings: overrides: '@ctrl/tinycolor': ^4.1.0 clsx: ^2.1.1 - vue: ^3.4.35 + vue: ^3.4.36 importers: @@ -65,7 +65,7 @@ importers: specifier: ^7.0.3 version: 7.0.3 cspell: - specifier: ^8.13.0 + specifier: ^8.13.1 version: 8.13.1 husky: specifier: ^9.1.4 @@ -86,7 +86,7 @@ importers: specifier: ^3.4.7 version: 3.4.7 turbo: - specifier: ^2.0.11 + specifier: ^2.0.12 version: 2.0.12 typescript: specifier: ^5.5.4 @@ -167,10 +167,10 @@ importers: specifier: 2.2.0 version: 2.2.0(typescript@5.5.4)(vue@3.4.36(typescript@5.5.4)) vue: - specifier: ^3.4.35 + specifier: ^3.4.36 version: 3.4.36(typescript@5.5.4) vue-router: - specifier: ^4.4.2 + specifier: ^4.4.3 version: 4.4.3(vue@3.4.36(typescript@5.5.4)) apps/web-ele: @@ -230,10 +230,10 @@ importers: specifier: 2.2.0 version: 2.2.0(typescript@5.5.4)(vue@3.4.36(typescript@5.5.4)) vue: - specifier: ^3.4.35 + specifier: ^3.4.36 version: 3.4.36(typescript@5.5.4) vue-router: - specifier: ^4.4.2 + specifier: ^4.4.3 version: 4.4.3(vue@3.4.36(typescript@5.5.4)) devDependencies: unplugin-element-plus: @@ -294,10 +294,10 @@ importers: specifier: 2.2.0 version: 2.2.0(typescript@5.5.4)(vue@3.4.36(typescript@5.5.4)) vue: - specifier: ^3.4.35 + specifier: ^3.4.36 version: 3.4.36(typescript@5.5.4) vue-router: - specifier: ^4.4.2 + specifier: ^4.4.3 version: 4.4.3(vue@3.4.36(typescript@5.5.4)) docs: @@ -313,13 +313,13 @@ importers: specifier: ^1.3.2 version: 1.3.2(@algolia/client-search@4.24.0)(@types/node@22.1.0)(async-validator@4.2.5)(axios@1.7.3)(nprogress@0.2.0)(postcss@8.4.41)(qrcode@1.5.4)(sass@1.77.8)(search-insights@2.16.0)(sortablejs@1.15.2)(terser@5.31.3)(typescript@5.5.4) vue: - specifier: ^3.4.35 + specifier: ^3.4.36 version: 3.4.36(typescript@5.5.4) internal/lint-configs/commitlint-config: dependencies: '@commitlint/cli': - specifier: ^19.3.0 + specifier: ^19.4.0 version: 19.4.0(@types/node@22.1.0)(typescript@5.5.4) '@commitlint/config-conventional': specifier: ^19.2.2 @@ -340,7 +340,7 @@ importers: internal/lint-configs/eslint-config: dependencies: eslint-config-turbo: - specifier: ^2.0.11 + specifier: ^2.0.12 version: 2.0.12(eslint@9.8.0) eslint-plugin-command: specifier: ^0.2.3 @@ -371,8 +371,8 @@ importers: specifier: ^3.2.0 version: 3.2.0(eslint@9.8.0) eslint-plugin-jsdoc: - specifier: ^48.10.2 - version: 48.11.0(eslint@9.8.0) + specifier: ^50.0.0 + version: 50.0.0(eslint@9.8.0) eslint-plugin-jsonc: specifier: ^2.16.0 version: 2.16.0(eslint@9.8.0) @@ -435,7 +435,7 @@ importers: version: 6.5.0(stylelint@16.8.1(typescript@5.5.4)) devDependencies: postcss: - specifier: ^8.4.40 + specifier: ^8.4.41 version: 8.4.41 postcss-html: specifier: ^1.7.0 @@ -532,7 +532,7 @@ importers: specifier: ^7.0.4 version: 7.0.4(postcss@8.4.41) postcss: - specifier: ^8.4.40 + specifier: ^8.4.41 version: 8.4.41 postcss-antd-fixes: specifier: ^0.2.0 @@ -572,7 +572,7 @@ importers: specifier: ^4.0.0 version: 4.0.0(rollup@4.20.0)(vue-i18n@9.13.1(vue@3.4.36(typescript@5.5.4))) '@jspm/generator': - specifier: ^2.1.2 + specifier: ^2.1.3 version: 2.1.3 cheerio: specifier: 1.0.0-rc.12 @@ -650,16 +650,16 @@ importers: specifier: ^0.424.0 version: 0.424.0(vue@3.4.36(typescript@5.5.4)) vue: - specifier: ^3.4.35 + specifier: ^3.4.36 version: 3.4.36(typescript@5.5.4) packages/@core/base/shared: dependencies: '@ant-design/fast-color': - specifier: ^2.0.5 + specifier: ^2.0.6 version: 2.0.6 '@vue/shared': - specifier: ^3.4.35 + specifier: ^3.4.36 version: 3.4.36 clsx: specifier: ^2.1.1 @@ -690,10 +690,10 @@ importers: packages/@core/base/typings: dependencies: vue: - specifier: ^3.4.35 + specifier: ^3.4.36 version: 3.4.36(typescript@5.5.4) vue-router: - specifier: ^4.4.2 + specifier: ^4.4.3 version: 4.4.3(vue@3.4.36(typescript@5.5.4)) packages/@core/composables: @@ -705,13 +705,13 @@ importers: specifier: ^10.11.0 version: 10.11.0(vue@3.4.36(typescript@5.5.4)) radix-vue: - specifier: ^1.9.2 + specifier: ^1.9.3 version: 1.9.3(vue@3.4.36(typescript@5.5.4)) sortablejs: specifier: ^1.15.2 version: 1.15.2 vue: - specifier: ^3.4.35 + specifier: ^3.4.36 version: 3.4.36(typescript@5.5.4) devDependencies: '@types/sortablejs': @@ -730,7 +730,7 @@ importers: specifier: ^10.11.0 version: 10.11.0(vue@3.4.36(typescript@5.5.4)) vue: - specifier: ^3.4.35 + specifier: ^3.4.36 version: 3.4.36(typescript@5.5.4) packages/@core/ui-kit/layout-ui: @@ -751,7 +751,7 @@ importers: specifier: ^10.11.0 version: 10.11.0(vue@3.4.36(typescript@5.5.4)) vue: - specifier: ^3.4.35 + specifier: ^3.4.36 version: 3.4.36(typescript@5.5.4) packages/@core/ui-kit/menu-ui: @@ -775,7 +775,7 @@ importers: specifier: ^10.11.0 version: 10.11.0(vue@3.4.36(typescript@5.5.4)) vue: - specifier: ^3.4.35 + specifier: ^3.4.36 version: 3.4.36(typescript@5.5.4) packages/@core/ui-kit/shadcn-ui: @@ -802,10 +802,10 @@ importers: specifier: ^0.424.0 version: 0.424.0(vue@3.4.36(typescript@5.5.4)) radix-vue: - specifier: ^1.9.2 + specifier: ^1.9.3 version: 1.9.3(vue@3.4.36(typescript@5.5.4)) vue: - specifier: ^3.4.35 + specifier: ^3.4.36 version: 3.4.36(typescript@5.5.4) packages/@core/ui-kit/tabs-ui: @@ -823,7 +823,7 @@ importers: specifier: workspace:* version: link:../../base/typings vue: - specifier: ^3.4.35 + specifier: ^3.4.36 version: 3.4.36(typescript@5.5.4) packages/constants: @@ -847,7 +847,7 @@ importers: specifier: workspace:* version: link:../../utils vue: - specifier: ^3.4.35 + specifier: ^3.4.36 version: 3.4.36(typescript@5.5.4) packages/effects/chart-ui: @@ -862,7 +862,7 @@ importers: specifier: ^5.5.1 version: 5.5.1 vue: - specifier: ^3.4.35 + specifier: ^3.4.36 version: 3.4.36(typescript@5.5.4) packages/effects/common-ui: @@ -889,13 +889,13 @@ importers: specifier: ^10.11.0 version: 10.11.0(async-validator@4.2.5)(axios@1.7.3)(focus-trap@7.5.4)(nprogress@0.2.0)(qrcode@1.5.4)(sortablejs@1.15.2)(vue@3.4.36(typescript@5.5.4)) qrcode: - specifier: ^1.5.3 + specifier: ^1.5.4 version: 1.5.4 vue: - specifier: ^3.4.35 + specifier: ^3.4.36 version: 3.4.36(typescript@5.5.4) vue-router: - specifier: ^4.4.2 + specifier: ^4.4.3 version: 4.4.3(vue@3.4.36(typescript@5.5.4)) devDependencies: '@types/qrcode': @@ -920,10 +920,10 @@ importers: specifier: workspace:* version: link:../../utils vue: - specifier: ^3.4.35 + specifier: ^3.4.36 version: 3.4.36(typescript@5.5.4) vue-router: - specifier: ^4.4.2 + specifier: ^4.4.3 version: 4.4.3(vue@3.4.36(typescript@5.5.4)) watermark-js-plus: specifier: ^1.5.2 @@ -971,10 +971,10 @@ importers: specifier: ^10.11.0 version: 10.11.0(vue@3.4.36(typescript@5.5.4)) vue: - specifier: ^3.4.35 + specifier: ^3.4.36 version: 3.4.36(typescript@5.5.4) vue-router: - specifier: ^4.4.2 + specifier: ^4.4.3 version: 4.4.3(vue@3.4.36(typescript@5.5.4)) packages/effects/request: @@ -1005,7 +1005,7 @@ importers: specifier: ^9.13.1 version: 9.13.1 vue: - specifier: ^3.4.35 + specifier: ^3.4.36 version: 3.4.36(typescript@5.5.4) vue-i18n: specifier: ^9.13.1 @@ -1035,10 +1035,10 @@ importers: specifier: ^3.2.1 version: 3.2.1(pinia@2.2.0(typescript@5.5.4)(vue@3.4.36(typescript@5.5.4))) vue: - specifier: ^3.4.35 + specifier: ^3.4.36 version: 3.4.36(typescript@5.5.4) vue-router: - specifier: ^4.4.2 + specifier: ^4.4.3 version: 4.4.3(vue@3.4.36(typescript@5.5.4)) packages/styles: @@ -1053,10 +1053,10 @@ importers: specifier: workspace:* version: link:../@core/base/typings vue: - specifier: ^3.4.35 + specifier: ^3.4.36 version: 3.4.36(typescript@5.5.4) vue-router: - specifier: ^4.4.2 + specifier: ^4.4.3 version: 4.4.3(vue@3.4.36(typescript@5.5.4)) packages/utils: @@ -1068,7 +1068,7 @@ importers: specifier: workspace:* version: link:../@core/base/typings vue-router: - specifier: ^4.4.2 + specifier: ^4.4.3 version: 4.4.3(vue@3.4.36(typescript@5.5.4)) scripts/turbo-run: @@ -1189,7 +1189,7 @@ packages: '@ant-design/icons-vue@7.0.1': resolution: {integrity: sha512-eCqY2unfZK6Fe02AwFlDHLfoyEFreP6rBwAZMIJ1LugmfMiVgwWDYlp1YsRugaPtICYOabV1iWxXdP12u9U43Q==} peerDependencies: - vue: ^3.4.35 + vue: ^3.4.36 '@antfu/utils@0.7.10': resolution: {integrity: sha512-+562v9k4aI80m1+VuMHehNJWLOFjBnXn3tdOitzD0il5b7smkSBal4+a3oKiQTbrwMmN/TBUMDvbdoWDehgOww==} @@ -1223,36 +1223,42 @@ packages: engines: {node: '>= 10'} cpu: [arm64] os: [linux] + libc: [glibc] '@ast-grep/napi-linux-arm64-gnu@0.22.6': resolution: {integrity: sha512-9PAqNJlAQfFm1RW0DVCM/S4gFHdppxUTWacB3qEeJZXgdLnoH0KGQa4z3Xo559SPYDKZy0VnY02mZ3XJ+v6/Vw==} engines: {node: '>= 10'} cpu: [arm64] os: [linux] + libc: [glibc] '@ast-grep/napi-linux-x64-gnu@0.21.4': resolution: {integrity: sha512-U7jl8RGpxKV+pjFstY0y5qD+D+wm9dXNO7NBbIOnETgTMizTFiUuQWT7SOlIklhcxxuXqWzfwhNN1qwI0tGNWw==} engines: {node: '>= 10'} cpu: [x64] os: [linux] + libc: [glibc] '@ast-grep/napi-linux-x64-gnu@0.22.6': resolution: {integrity: sha512-nZf+gxXVrZqvP1LN6HwzOMA4brF3umBXfMequQzv8S6HeJ4c34P23F0Tw8mHtQpVYP9PQWJUvt3LJQ8Xvd5Hiw==} engines: {node: '>= 10'} cpu: [x64] os: [linux] + libc: [glibc] '@ast-grep/napi-linux-x64-musl@0.21.4': resolution: {integrity: sha512-SOGR93kGomRR+Vh87+jXI3pJLR+J+dekCI8a4S22kGX9iAen8/+Ew++lFouDueKLyszmmhCrIk1WnJvYPuSFBw==} engines: {node: '>= 10'} cpu: [x64] os: [linux] + libc: [musl] '@ast-grep/napi-linux-x64-musl@0.22.6': resolution: {integrity: sha512-gcJeBMgJQf2pZZo0lgH0Vg4ycyujM7Am8VlomXhavC/dPpkddA1tiHSIC4fCNneLU1EqHITy3ALSmM4GLdsjBw==} engines: {node: '>= 10'} cpu: [x64] os: [linux] + libc: [musl] '@ast-grep/napi-win32-arm64-msvc@0.21.4': resolution: {integrity: sha512-ciGaTbkPjbCGqUyLwIPvcNeftNXjSG3cXE+5NiLThRbDhh2yUOE8YJkElUQcu0xQCdSlXnb4l/imEED/65jGfw==} @@ -2259,7 +2265,7 @@ packages: '@css-render/vue3-ssr@0.15.14': resolution: {integrity: sha512-//8027GSbxE9n3QlD73xFY6z4ZbHbvrOVB7AO6hsmrEzGbg+h2A09HboUyDgu+xsmj7JnvJD39Irt+2D0+iV8g==} peerDependencies: - vue: ^3.4.35 + vue: ^3.4.36 '@csstools/cascade-layer-name-parser@2.0.0': resolution: {integrity: sha512-9GEQIvTMrjXfYaVnw1+FteDX5yF65CZq4ttYP75O3CANQevaCJ9jVVTiZt9YTpjYIk8C1mmf52y2S4Hr/CaE/g==} @@ -2557,7 +2563,7 @@ packages: '@element-plus/icons-vue@2.3.1': resolution: {integrity: sha512-XxVUZv48RZAd87ucGS48jPf6pKu0yV5UCg9f4FFwtrYxXOwWuVJo6wOvSLKEoMQKjv8GsX/mhP6UsC1lRwbUWg==} peerDependencies: - vue: ^3.4.35 + vue: ^3.4.36 '@emotion/hash@0.8.0': resolution: {integrity: sha512-kBJtf7PH6aWwZ6fka3zQ0p6SBYzx4fl1LoZXE2RrnYST9Xljm7WfKJrU4g/Xr3Beg72MLrp1AWNUmuYJTL7Cow==} @@ -3199,7 +3205,7 @@ packages: '@iconify/vue@4.1.2': resolution: {integrity: sha512-CQnYqLiQD5LOAaXhBrmj1mdL2/NCJvwcC4jtW2Z8ukhThiFkLDkutarTOV2trfc9EXqUqRs0KqXOL9pZ/IyysA==} peerDependencies: - vue: ^3.4.35 + vue: ^3.4.36 '@internationalized/date@3.5.5': resolution: {integrity: sha512-H+CfYvOZ0LTJeeLOqm19E3uj/4YjrmOFtBufDHPfvtI80hFAMqtrp7oCACpe4Cil5l8S0Qu/9dYfZc/5lY8WQQ==} @@ -3285,7 +3291,6 @@ packages: '@ls-lint/ls-lint@2.2.3': resolution: {integrity: sha512-ekM12jNm/7O2I/hsRv9HvYkRdfrHpiV1epVuI2NP+eTIcEgdIdKkKCs9KgQydu/8R5YXTov9aHdOgplmCHLupw==} - cpu: [x64, arm64, s390x] os: [darwin, linux, win32] hasBin: true @@ -3388,30 +3393,35 @@ packages: engines: {node: '>= 10.0.0'} cpu: [arm] os: [linux] + libc: [glibc] '@parcel/watcher-linux-arm64-glibc@2.4.1': resolution: {integrity: sha512-BJ7mH985OADVLpbrzCLgrJ3TOpiZggE9FMblfO65PlOCdG++xJpKUJ0Aol74ZUIYfb8WsRlUdgrZxKkz3zXWYA==} engines: {node: '>= 10.0.0'} cpu: [arm64] os: [linux] + libc: [glibc] '@parcel/watcher-linux-arm64-musl@2.4.1': resolution: {integrity: sha512-p4Xb7JGq3MLgAfYhslU2SjoV9G0kI0Xry0kuxeG/41UfpjHGOhv7UoUDAz/jb1u2elbhazy4rRBL8PegPJFBhA==} engines: {node: '>= 10.0.0'} cpu: [arm64] os: [linux] + libc: [musl] '@parcel/watcher-linux-x64-glibc@2.4.1': resolution: {integrity: sha512-s9O3fByZ/2pyYDPoLM6zt92yu6P4E39a03zvO0qCHOTjxmt3GHRMLuRZEWhWLASTMSrrnVNWdVI/+pUElJBBBg==} engines: {node: '>= 10.0.0'} cpu: [x64] os: [linux] + libc: [glibc] '@parcel/watcher-linux-x64-musl@2.4.1': resolution: {integrity: sha512-L2nZTYR1myLNST0O632g0Dx9LyMNHrn6TOt76sYxWLdff3cB22/GZX2UPtJnaqQPdCRoszoY5rcOj4oMTtp5fQ==} engines: {node: '>= 10.0.0'} cpu: [x64] os: [linux] + libc: [musl] '@parcel/watcher-wasm@2.4.1': resolution: {integrity: sha512-/ZR0RxqxU/xxDGzbzosMjh4W6NdYFMqq2nvo2b8SLi7rsl/4jkL8S5stIikorNkdR50oVDvqb/3JT05WM+CRRA==} @@ -3467,7 +3477,7 @@ packages: '@radix-icons/vue@1.0.0': resolution: {integrity: sha512-gKWWk9tTK/laDRRNe5KLLR8A0qUwx4q4+DN8Fq48hJ904u78R82ayAO3TrxbNLgyn2D0h6rRiGdLzQWj7rPcvA==} peerDependencies: - vue: ^3.4.35 + vue: ^3.4.36 '@rollup/plugin-alias@5.1.0': resolution: {integrity: sha512-lpA3RZ9PdIG7qqhEfv79tBffNaoDuukFDrmhLqg9ifv99u/ehn+lOg30x2zmhf8AQqQUZaMk/B9fZraQ6/acDQ==} @@ -3591,46 +3601,55 @@ packages: resolution: {integrity: sha512-jMYvxZwGmoHFBTbr12Xc6wOdc2xA5tF5F2q6t7Rcfab68TT0n+r7dgawD4qhPEvasDsVpQi+MgDzj2faOLsZjA==} cpu: [arm] os: [linux] + libc: [glibc] '@rollup/rollup-linux-arm-musleabihf@4.20.0': resolution: {integrity: sha512-1asSTl4HKuIHIB1GcdFHNNZhxAYEdqML/MW4QmPS4G0ivbEcBr1JKlFLKsIRqjSwOBkdItn3/ZDlyvZ/N6KPlw==} cpu: [arm] os: [linux] + libc: [musl] '@rollup/rollup-linux-arm64-gnu@4.20.0': resolution: {integrity: sha512-COBb8Bkx56KldOYJfMf6wKeYJrtJ9vEgBRAOkfw6Ens0tnmzPqvlpjZiLgkhg6cA3DGzCmLmmd319pmHvKWWlQ==} cpu: [arm64] os: [linux] + libc: [glibc] '@rollup/rollup-linux-arm64-musl@4.20.0': resolution: {integrity: sha512-+it+mBSyMslVQa8wSPvBx53fYuZK/oLTu5RJoXogjk6x7Q7sz1GNRsXWjn6SwyJm8E/oMjNVwPhmNdIjwP135Q==} cpu: [arm64] os: [linux] + libc: [musl] '@rollup/rollup-linux-powerpc64le-gnu@4.20.0': resolution: {integrity: sha512-yAMvqhPfGKsAxHN8I4+jE0CpLWD8cv4z7CK7BMmhjDuz606Q2tFKkWRY8bHR9JQXYcoLfopo5TTqzxgPUjUMfw==} cpu: [ppc64] os: [linux] + libc: [glibc] '@rollup/rollup-linux-riscv64-gnu@4.20.0': resolution: {integrity: sha512-qmuxFpfmi/2SUkAw95TtNq/w/I7Gpjurx609OOOV7U4vhvUhBcftcmXwl3rqAek+ADBwSjIC4IVNLiszoj3dPA==} cpu: [riscv64] os: [linux] + libc: [glibc] '@rollup/rollup-linux-s390x-gnu@4.20.0': resolution: {integrity: sha512-I0BtGXddHSHjV1mqTNkgUZLnS3WtsqebAXv11D5BZE/gfw5KoyXSAXVqyJximQXNvNzUo4GKlCK/dIwXlz+jlg==} cpu: [s390x] os: [linux] + libc: [glibc] '@rollup/rollup-linux-x64-gnu@4.20.0': resolution: {integrity: sha512-y+eoL2I3iphUg9tN9GB6ku1FA8kOfmF4oUEWhztDJ4KXJy1agk/9+pejOuZkNFhRwHAOxMsBPLbXPd6mJiCwew==} cpu: [x64] os: [linux] + libc: [glibc] '@rollup/rollup-linux-x64-musl@4.20.0': resolution: {integrity: sha512-hM3nhW40kBNYUkZb/r9k2FKK+/MnKglX7UYd4ZUy5DJs8/sMsIbqWK2piZtVGE3kcXVNj3B2IrUYROJMMCikNg==} cpu: [x64] os: [linux] + libc: [musl] '@rollup/rollup-win32-arm64-msvc@4.20.0': resolution: {integrity: sha512-psegMvP+Ik/Bg7QRJbv8w8PAytPA7Uo8fpFjXyCRHWm6Nt42L+JtoqH8eDQ5hRP7/XW2UiIriy1Z46jf0Oa1kA==} @@ -3720,7 +3739,7 @@ packages: '@tanstack/vue-virtual@3.8.5': resolution: {integrity: sha512-JBHw3xFUslYgrbvNlCYtTWwFo8zjzRs7c2rs6B4JKFXWyP5yHuoeivgQgeZ34t6O6lJTNqc/K4ccmmcmKqpMPA==} peerDependencies: - vue: ^3.4.35 + vue: ^3.4.36 '@tootallnate/once@1.1.2': resolution: {integrity: sha512-RbzJvlNzmRq5c3O09UipeuXno4tA1FE6ikOjxZK0tuxVv3412l64l5t1W5pj4+rJq9vpkm/kwiR07aZXnsKPxw==} @@ -3960,14 +3979,14 @@ packages: engines: {node: ^18.0.0 || >=20.0.0} peerDependencies: vite: ^5.0.0 - vue: ^3.4.35 + vue: ^3.4.36 '@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 - vue: ^3.4.35 + vue: ^3.4.36 '@vitest/expect@2.0.5': resolution: {integrity: sha512-yHZtwuP7JZivj65Gxoi8upUN2OzHTi3zVfjwdpu2WrvCZPLwsJ2Ey5ILIPccoW23dd/zQBlJ4/dhi7DWNyXCpA==} @@ -4045,7 +4064,7 @@ packages: '@vue/devtools-core@7.3.7': resolution: {integrity: sha512-IapWbHUqvO6n+p5JFTCE5JyNjpsZ5IS1GYIRX0P7/SqYPgFCOdH0dG+u8PbBHYdnp+VPxHLO+GGZ/WBZFCZnsA==} peerDependencies: - vue: ^3.4.35 + vue: ^3.4.36 '@vue/devtools-kit@7.3.7': resolution: {integrity: sha512-ktHhhjI4CoUrwdSUF5b/MFfjrtAtK8r4vhOkFyRN5Yp9kdXTwsRBYcwarHuP+wFPKf4/KM7DVBj2ELO8SBwdsw==} @@ -4073,7 +4092,7 @@ packages: '@vue/server-renderer@3.4.36': resolution: {integrity: sha512-2XW90Rq8+Y7S1EIsAuubZVLm0gCU8HYb5mRAruFdwfC3XSOU5/YKePz29csFzsch8hXaY5UHh7ZMddmi1XTJEA==} peerDependencies: - vue: ^3.4.35 + vue: ^3.4.36 '@vue/shared@3.4.36': resolution: {integrity: sha512-fdPLStwl1sDfYuUftBaUVn2pIrVFDASYerZSrlBvVBfylObPA1gtcWJHy5Ox8jLEJ524zBibss488Q3SZtU1uA==} @@ -4252,7 +4271,7 @@ packages: resolution: {integrity: sha512-kqGyWvZtFlSInFP93Ow6wS8LzEsxxUgpI+ZY5jQQkuX8WAcqdwXCA7IcHMpECW6JB89DZMo2Bw85jUg2SjlgQA==} engines: {node: '>=12.22.0'} peerDependencies: - vue: ^3.4.35 + vue: ^3.4.36 any-promise@1.3.0: resolution: {integrity: sha512-7UvmKalWRt1wgjL1RrGxoSJW/0QZFIegpeGvZG9kjp8vrRu55XTHbwnqq2GpXm9uLbcuhxm3IqX9OB4MZR1b2A==} @@ -5249,7 +5268,7 @@ packages: element-plus@2.7.8: resolution: {integrity: sha512-h6dx2XihAbQaud0v+6O7Fy0b0G3YNplNVH7QnK3csTcvQd4y4raiyMRQpf9EKbRbTMdNrFsqAZrs9ok9DMcJHg==} peerDependencies: - vue: ^3.4.35 + vue: ^3.4.36 emoji-regex@10.3.0: resolution: {integrity: sha512-QpLs9D9v9kArv4lfDEgg1X/gN5XLnf/A6l9cs8SPZLRZR3ZkY9+kwIQTxm+fsSej5UMYGE8fdoaZVIBlqG0XTw==} @@ -5425,8 +5444,8 @@ packages: peerDependencies: eslint: ^8.56.0 || ^9.0.0-0 - eslint-plugin-jsdoc@48.11.0: - resolution: {integrity: sha512-d12JHJDPNo7IFwTOAItCeJY1hcqoIxE0lHA8infQByLilQ9xkqrRa6laWCnsuCrf+8rUnvxXY1XuTbibRBNylA==} + eslint-plugin-jsdoc@50.0.0: + resolution: {integrity: sha512-czyJ5F7/qY2LIhUD5Bl6q1CCZ8mjvfEA9HQN5nvIp/Pb8VLIlUNd+DMZdA2OKN74QQMS3pobC06hFqAOJyOv5Q==} engines: {node: '>=18'} peerDependencies: eslint: ^7.0.0 || ^8.0.0 || ^9.0.0 @@ -6725,7 +6744,7 @@ packages: lucide-vue-next@0.424.0: resolution: {integrity: sha512-RXOGJnqYcRFI48KcitDCfSz9wMtcx2tg7YfvtBX5f2aopaDwY2bABccFgjoapnpwPy1zser7zPS4CgBlp1/img==} peerDependencies: - vue: ^3.4.35 + vue: ^3.4.36 magic-string@0.25.9: resolution: {integrity: sha512-RmF0AsMzgt25qzqqLc1+MbHmhdx0ojF2Fvs4XnOqz2ZOBXzzkEwc/dJQZCYHAn7v1jbVOjAZfK8msRn4BxO4VQ==} @@ -6944,7 +6963,7 @@ packages: naive-ui@2.39.0: resolution: {integrity: sha512-5oUJzRG+rtLSH8eRU+fJvVYiQids2BxF9jp+fwGoAqHOptEINrBlgBu9uy+95RHE5FLJ7Q/z41o+qkoGnUrKxQ==} peerDependencies: - vue: ^3.4.35 + vue: ^3.4.36 nanoid@3.3.7: resolution: {integrity: sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g==} @@ -7328,7 +7347,7 @@ packages: peerDependencies: '@vue/composition-api': ^1.4.0 typescript: '>=4.4.4' - vue: ^3.4.35 + vue: ^3.4.36 peerDependenciesMeta: '@vue/composition-api': optional: true @@ -7926,7 +7945,7 @@ packages: radix-vue@1.9.3: resolution: {integrity: sha512-9pewcgzghM+B+FO1h9mMsZa/csVH6hElpN1sqmG4/qoeieiDG0i4nhMjS7p2UOz11EEdVm7eLandHSPyx7hYhg==} peerDependencies: - vue: ^3.4.35 + vue: ^3.4.36 radix3@1.1.2: resolution: {integrity: sha512-b484I/7b8rDEdSDKckSSBA8knMpcdsXudlE/LNL639wFoHKwLbEkQFZHWEYwDC0wa0FKUcCY+GAF73Z7wxNVFA==} @@ -9072,7 +9091,7 @@ packages: vdirs@0.1.8: resolution: {integrity: sha512-H9V1zGRLQZg9b+GdMk8MXDN2Lva0zx72MPahDKc30v+DtwKjfyOSXWRIX4t2mhDubM1H09gPhWeth/BJWPHGUw==} peerDependencies: - vue: ^3.4.35 + vue: ^3.4.36 vite-hot-client@0.2.3: resolution: {integrity: sha512-rOGAV7rUlUHX89fP2p2v0A2WWvV3QMX2UYq0fRqsWSvFvev4atHWqjwGoKaZT1VTKyLGk533ecu3eyd0o59CAg==} @@ -9210,7 +9229,7 @@ packages: vooks@0.2.12: resolution: {integrity: sha512-iox0I3RZzxtKlcgYaStQYKEzWWGAduMmq+jS7OrNdQo1FgGfPMubGL3uGHOU9n97NIvfFDBGnpSvkWyb/NSn/Q==} peerDependencies: - vue: ^3.4.35 + vue: ^3.4.36 vscode-languageserver-textdocument@1.0.12: resolution: {integrity: sha512-cxWNPesCnQCcMPeenjKKsOCKQZ/L6Tv19DTRIGuLWe32lyzWhihGVJ/rcckZXJxfdKCFvRLS3fpBIsV/ZGX4zA==} @@ -9227,7 +9246,7 @@ packages: hasBin: true peerDependencies: '@vue/composition-api': ^1.0.0-rc.1 - vue: ^3.4.35 + vue: ^3.4.36 peerDependenciesMeta: '@vue/composition-api': optional: true @@ -9242,12 +9261,12 @@ packages: resolution: {integrity: sha512-mh0GIxx0wPtPlcB1q4k277y0iKgo25xmDPWioVVYanjPufDBpvu5ySTjP5wOrSvlYQ2m1xI+CFhGdauv/61uQg==} engines: {node: '>= 16'} peerDependencies: - vue: ^3.4.35 + vue: ^3.4.36 vue-router@4.4.3: resolution: {integrity: sha512-sv6wmNKx2j3aqJQDMxLFzs/u/mjA9Z5LCgy6BE0f7yFWMjrPLnS/sPNn8ARY/FXw6byV18EFutn5lTO6+UsV5A==} peerDependencies: - vue: ^3.4.35 + vue: ^3.4.36 vue-tsc@2.0.29: resolution: {integrity: sha512-MHhsfyxO3mYShZCGYNziSbc63x7cQ5g9kvijV7dRe1TTXBRLxXyL0FnXWpUF1xII2mJ86mwYpYsUmMwkmerq7Q==} @@ -9259,7 +9278,7 @@ packages: resolution: {integrity: sha512-IwUC0Aq2zwaXqy74h4WCvFCUtoV0iSWr0snWnE9TnU18S66GAQyqQbRf2qfJtUuiFsBf6qp0MEwdonlwznlcrw==} engines: {node: '>=10.15.0'} peerDependencies: - vue: ^3.4.35 + vue: ^3.4.36 vue@3.4.36: resolution: {integrity: sha512-mIFvbLgjODfx3Iy1SrxOsiPpDb8Bo3EU+87ioimOZzZTOp15IEdAels70IjBOLO3ZFlLW5AhdwY4dWbXVQKYow==} @@ -9272,7 +9291,7 @@ packages: vueuc@0.4.58: resolution: {integrity: sha512-Wnj/N8WbPRSxSt+9ji1jtDHPzda5h2OH/0sFBhvdxDRuyCZbjGg3/cKMaKqEoe+dErTexG2R+i6Q8S/Toq1MYg==} peerDependencies: - vue: ^3.4.35 + vue: ^3.4.36 w3c-xmlserializer@5.0.0: resolution: {integrity: sha512-o8qghlI8NZHU1lLPrpi2+Uq7abh4GGPpYANlalzWxyWteJOCsr/P+oPBA49TOLu5FTZO4d3F9MnWJfiMo4BkmA==} @@ -14412,7 +14431,7 @@ snapshots: - supports-color - typescript - eslint-plugin-jsdoc@48.11.0(eslint@9.8.0): + eslint-plugin-jsdoc@50.0.0(eslint@9.8.0): dependencies: '@es-joy/jsdoccomment': 0.46.0 are-docs-informative: 0.0.2 From d41bd31fcd3510856efff8bde5c2d70c5a805768 Mon Sep 17 00:00:00 2001 From: Ikko Eltociear Ashimine Date: Wed, 7 Aug 2024 23:29:09 +0900 Subject: [PATCH 7/9] docs: add Japanese README (#4028) I created Japanese translated README. --- README.ja-JP.md | 146 ++++++++++++++++++++++++++++++++++++++++++++++++ README.md | 2 +- README.zh-CN.md | 2 +- 3 files changed, 148 insertions(+), 2 deletions(-) create mode 100644 README.ja-JP.md diff --git a/README.ja-JP.md b/README.ja-JP.md new file mode 100644 index 00000000..cd829976 --- /dev/null +++ b/README.ja-JP.md @@ -0,0 +1,146 @@ +
VbenAdmin Logo

+ +[![license](https://img.shields.io/github/license/anncwb/vue-vben-admin.svg)](LICENSE) + +

Vue Vben Admin

+
+ +**日本語** | [English](./README.md) | [中文](./README.zh-CN.md) + +## 紹介 + +Vue Vben Adminは、最新の`vue3`、`vite`、`TypeScript`などの主流技術を使用して開発された、無料でオープンソースの中・後端テンプレートです。すぐに使える中・後端のフロントエンドソリューションとして、学習の参考にもなります。 + +## アップグレード通知 + +これは最新バージョン5.0であり、以前のバージョンとは互換性がありません。新しいプロジェクトを開始する場合は、最新バージョンを使用することをお勧めします。古いバージョンを表示したい場合は、[v2ブランチ](https://github.com/vbenjs/vue-vben-admin/tree/v2)を使用してください。 + +## 特徴 + +- **最新技術スタック**: Vue 3やViteなどの最先端フロントエンド技術で開発 +- **TypeScript**: アプリケーション規模のJavaScriptのための言語 +- **テーマ**: 複数のテーマカラーが利用可能で、カスタマイズオプションも豊富 +- **国際化**: 完全な内蔵国際化サポート +- **権限管理**: 動的ルートベースの権限生成ソリューションを内蔵 + +## プレビュー + +- [Vben Admin](https://vben.pro/) - フルバージョンの中国語サイト + +テストアカウント: vben/123456 + +

+ VbenAdmin Logo + VbenAdmin Logo + VbenAdmin Logo +

+ +### Gitpodを使用 + +Gitpod(GitHub用の無料オンライン開発環境)でプロジェクトを開き、すぐにコーディングを開始します。 + +[![Open in Gitpod](https://gitpod.io/button/open-in-gitpod.svg)](https://gitpod.io/#https://github.com/vbenjs/vue-vben-admin) + +## ドキュメント + +[ドキュメント](https://doc.vben.pro/) + +## インストールと使用 + +- プロジェクトコードを取得 + +```bash +git clone https://github.com/vbenjs/vue-vben-admin.git +``` + +- 依存関係のインストール + +```bash +cd vue-vben-admin + +corepack enable + +pnpm install + +``` + +- 実行 + +```bash +pnpm dev +``` + +- ビルド + +```bash +pnpm build +``` + +## 変更ログ + +[CHANGELOG](./CHANGELOG.zh_CN.md) + +## 貢献方法 + +ご参加をお待ちしております![Issueを提出](https://github.com/anncwb/vue-vben-admin/issues/new/choose)するか、Pull Requestを送信してください。 + +**Pull Request:** + +1. コードをフォーク! +2. 自分のブランチを作成: `git checkout -b feat/xxxx` +3. 変更をコミット: `git commit -am 'feat(function): add xxxxx'` +4. ブランチをプッシュ: `git push origin feat/xxxx` +5. `pull request`を送信 + +## Git貢献提出規則 + +- 参考 [vue](https://github.com/vuejs/vue/blob/dev/.github/COMMIT_CONVENTION.md) 規則 ([Angular](https://github.com/conventional-changelog/conventional-changelog/tree/master/packages/conventional-changelog-angular)) + + - `feat` 新機能の追加 + - `fix` 問題/バグの修正 + - `style` コードスタイルに関連し、実行結果に影響しない + - `perf` 最適化/パフォーマンス向上 + - `refactor` リファクタリング + - `revert` 変更の取り消し + - `test` テスト関連 + - `docs` ドキュメント/注釈 + - `chore` 依存関係の更新/スキャフォールディング設定の変更など + - `ci` 継続的インテグレーション + - `types` 型定義ファイルの変更 + - `wip` 開発中 + +## ブラウザサポート + +ローカル開発には`Chrome 80+`ブラウザを推奨します + +モダンブラウザをサポートし、IEはサポートしません + +| [ Edge](http://godban.github.io/browsers-support-badges/)
IE | [ Edge](http://godban.github.io/browsers-support-badges/)
Edge | [Firefox](http://godban.github.io/browsers-support-badges/)
Firefox | [Chrome](http://godban.github.io/browsers-support-badges/)
Chrome | [Safari](http://godban.github.io/browsers-support-badges/)
Safari | +| :-: | :-: | :-: | :-: | :-: | +| サポートしない | 最新2バージョン | 最新2バージョン | 最新2バージョン | 最新2バージョン | + +## メンテナー + +[@Vben](https://github.com/anncwb) + +## 寄付 + +このプロジェクトが役に立つと思われた場合、作者にコーヒーを一杯おごってサポートを示すことができます! + +![donate](https://unpkg.com/@vbenjs/static-source@0.1.5/source/sponsor.png) + +Paypal Me + +## 貢献者 + + + + + +## Discord + +- [Github Discussions](https://github.com/anncwb/vue-vben-admin/discussions) + +## ライセンス + +[MIT © Vben-2020](./LICENSE) diff --git a/README.md b/README.md index c0161082..20370743 100644 --- a/README.md +++ b/README.md @@ -5,7 +5,7 @@

Vue Vben Admin

-**English** | [中文](./README.zh-CN.md) +**English** | [中文](./README.zh-CN.md) | [日本語](./README.ja-JP.md) ## Introduction diff --git a/README.zh-CN.md b/README.zh-CN.md index 17818240..57e38f9a 100644 --- a/README.zh-CN.md +++ b/README.zh-CN.md @@ -5,7 +5,7 @@

Vue Vben Admin

-**中文** | [English](./README.md) +**中文** | [English](./README.md) | [日本語](./README.ja-JP.md) ## 简介 From a9a14fd81a547acadc873c845ab9f830b1aa48a0 Mon Sep 17 00:00:00 2001 From: sea <45450994+warmthsea@users.noreply.github.com> Date: Wed, 7 Aug 2024 23:09:04 +0800 Subject: [PATCH 8/9] chore: update readme logo size [skip ci] (#4075) * chore: update readme logo size * Update README.md * Update README.md * Update README.md * Update README.zh-CN.md * Update README.ja-JP.md --- README.ja-JP.md | 2 +- README.md | 2 +- README.zh-CN.md | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.ja-JP.md b/README.ja-JP.md index cd829976..f794c792 100644 --- a/README.ja-JP.md +++ b/README.ja-JP.md @@ -1,4 +1,4 @@ -
VbenAdmin Logo

+
VbenAdmin Logo

[![license](https://img.shields.io/github/license/anncwb/vue-vben-admin.svg)](LICENSE) diff --git a/README.md b/README.md index 20370743..5ce954bc 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -
VbenAdmin Logo

+
VbenAdmin Logo

[![license](https://img.shields.io/github/license/anncwb/vue-vben-admin.svg)](LICENSE) diff --git a/README.zh-CN.md b/README.zh-CN.md index 57e38f9a..9137ef6e 100644 --- a/README.zh-CN.md +++ b/README.zh-CN.md @@ -1,4 +1,4 @@ -
VbenAdmin Logo

+
VbenAdmin Logo

[![license](https://img.shields.io/github/license/anncwb/vue-vben-admin.svg)](LICENSE) From 8ffc853b86fc0342b2fef60976fe8b26d7d47758 Mon Sep 17 00:00:00 2001 From: Li Kui <90845831+likui628@users.noreply.github.com> Date: Thu, 8 Aug 2024 05:46:14 +0800 Subject: [PATCH 9/9] chore: switch back to `@ctrl/tinycolor` (#4077) * chore: switch back to `@ctrl/tinycolor` * fix: ci --- packages/@core/base/shared/package.json | 2 +- .../base/shared/src/color/convert.test.ts | 4 +-- .../@core/base/shared/src/color/convert.ts | 22 +++++++----- .../@core/base/shared/src/color/generator.ts | 4 +-- .../preferences/blocks/theme/builtin.vue | 4 +-- .../widgets/preferences/preferences-sheet.vue | 6 ---- pnpm-lock.yaml | 34 ++----------------- 7 files changed, 24 insertions(+), 52 deletions(-) diff --git a/packages/@core/base/shared/package.json b/packages/@core/base/shared/package.json index 2a9c7e40..26015965 100644 --- a/packages/@core/base/shared/package.json +++ b/packages/@core/base/shared/package.json @@ -55,7 +55,7 @@ } }, "dependencies": { - "@ant-design/fast-color": "^2.0.6", + "@ctrl/tinycolor": "^4.1.0", "@vue/shared": "^3.4.36", "clsx": "^2.1.1", "defu": "^6.1.4", diff --git a/packages/@core/base/shared/src/color/convert.test.ts b/packages/@core/base/shared/src/color/convert.test.ts index bdd67e78..f7251888 100644 --- a/packages/@core/base/shared/src/color/convert.test.ts +++ b/packages/@core/base/shared/src/color/convert.test.ts @@ -29,13 +29,13 @@ describe('color conversion functions', () => { it('should correctly convert color to RGB CSS variable format', () => { const color = 'hsl(284, 100%, 50%)'; - const expectedRgb = 'rgb(187,0,255)'; + const expectedRgb = 'rgb(187, 0, 255)'; expect(convertToRgb(color)).toEqual(expectedRgb); }); it('should correctly convert color with alpha to RGBA CSS variable format', () => { const color = 'hsla(284, 100%, 50%, 0.92)'; - const expectedRgba = 'rgba(187,0,255,0.92)'; + const expectedRgba = 'rgba(187, 0, 255, 0.92)'; expect(convertToRgb(color)).toEqual(expectedRgba); }); }); diff --git a/packages/@core/base/shared/src/color/convert.ts b/packages/@core/base/shared/src/color/convert.ts index 23bb7802..5303a6b6 100644 --- a/packages/@core/base/shared/src/color/convert.ts +++ b/packages/@core/base/shared/src/color/convert.ts @@ -1,6 +1,4 @@ -import { FastColor } from '@ant-design/fast-color'; - -const Color = FastColor; +import { TinyColor } from '@ctrl/tinycolor'; /** * 将颜色转换为HSL格式。 @@ -11,7 +9,7 @@ const Color = FastColor; * @returns {string} HSL格式的颜色字符串。 */ function convertToHsl(color: string): string { - const { a, h, l, s } = new Color(color).toHsl(); + const { a, h, l, s } = new TinyColor(color).toHsl(); const hsl = `hsl(${Math.round(h)} ${Math.round(s * 100)}% ${Math.round(l * 100)}%)`; return a < 1 ? `${hsl} ${a}` : hsl; } @@ -26,13 +24,21 @@ function convertToHsl(color: string): string { * @returns {string} 可以作为CSS变量使用的HSL格式的颜色字符串。 */ function convertToHslCssVar(color: string): string { - const { a, h, l, s } = new Color(color).toHsl(); + const { a, h, l, s } = new TinyColor(color).toHsl(); const hsl = `${Math.round(h)} ${Math.round(s * 100)}% ${Math.round(l * 100)}%`; return a < 1 ? `${hsl} / ${a}` : hsl; } -function convertToRgb(color: string): string { - return new Color(color).toRgbString(); +/** + * 将颜色转换为RGB颜色字符串 + * TinyColor无法处理hsl内包含'deg'、'grad'、'rad'或'turn'的字符串 + * 比如 hsl(231deg 98% 65%)将被解析为rgb(0, 0, 0) + * 这里在转换之前先将这些单位去掉 + * @param str 表示HLS颜色值的字符串 + * @returns 如果颜色值有效,则返回对应的RGB颜色字符串;如果无效,则返回rgb(0, 0, 0) + */ +function convertToRgb(str: string): string { + return new TinyColor(str.replaceAll(/deg|grad|rad|turn/g, '')).toRgbString(); } -export { Color, convertToHsl, convertToHslCssVar, convertToRgb }; +export { convertToHsl, convertToHslCssVar, convertToRgb, TinyColor }; diff --git a/packages/@core/base/shared/src/color/generator.ts b/packages/@core/base/shared/src/color/generator.ts index a03b4e00..c7a5cbb2 100644 --- a/packages/@core/base/shared/src/color/generator.ts +++ b/packages/@core/base/shared/src/color/generator.ts @@ -1,6 +1,6 @@ import { getColors } from 'theme-colors'; -import { Color, convertToHslCssVar } from './convert'; +import { convertToHslCssVar, TinyColor } from './convert'; interface ColorItem { alias?: string; @@ -13,7 +13,7 @@ function generatorColorVariables(colorItems: ColorItem[]) { colorItems.forEach(({ alias, color, name }) => { if (color) { - const colorsMap = getColors(new Color(color).toHexString()); + const colorsMap = getColors(new TinyColor(color).toHexString()); let mainColor = colorsMap['500']; const colorKeys = Object.keys(colorsMap); diff --git a/packages/effects/layouts/src/widgets/preferences/blocks/theme/builtin.vue b/packages/effects/layouts/src/widgets/preferences/blocks/theme/builtin.vue index 50f530cd..52d65de1 100644 --- a/packages/effects/layouts/src/widgets/preferences/blocks/theme/builtin.vue +++ b/packages/effects/layouts/src/widgets/preferences/blocks/theme/builtin.vue @@ -9,7 +9,7 @@ import { BUILT_IN_THEME_PRESETS, type BuiltinThemePreset, } from '@vben/preferences'; -import { Color, convertToHsl } from '@vben/utils'; +import { convertToHsl, TinyColor } from '@vben/utils'; defineOptions({ name: 'PreferenceBuiltinTheme', @@ -22,7 +22,7 @@ const modelValue = defineModel({ default: 'default' }); const themeColorPrimary = defineModel('themeColorPrimary'); const inputValue = computed(() => { - return new Color(themeColorPrimary.value || '').toHexString(); + return new TinyColor(themeColorPrimary.value || '').toHexString(); }); const builtinThemePresets = computed(() => { diff --git a/packages/effects/layouts/src/widgets/preferences/preferences-sheet.vue b/packages/effects/layouts/src/widgets/preferences/preferences-sheet.vue index c2c87dd1..057f436f 100644 --- a/packages/effects/layouts/src/widgets/preferences/preferences-sheet.vue +++ b/packages/effects/layouts/src/widgets/preferences/preferences-sheet.vue @@ -277,12 +277,6 @@ async function handleReset() { v-model:theme-semi-dark-menu="themeSemiDarkMenu" /> - =8.x'} - '@ant-design/icons-svg@4.4.2': resolution: {integrity: sha512-vHbT+zJEVzllwP+CM+ul7reTEfBR0vgxFe7+lREAsAA7YGsYpboiq2sQNeQeRvh09GfQgs/GyFEvZpJ9cLXpXA==} @@ -1223,42 +1219,36 @@ packages: engines: {node: '>= 10'} cpu: [arm64] os: [linux] - libc: [glibc] '@ast-grep/napi-linux-arm64-gnu@0.22.6': resolution: {integrity: sha512-9PAqNJlAQfFm1RW0DVCM/S4gFHdppxUTWacB3qEeJZXgdLnoH0KGQa4z3Xo559SPYDKZy0VnY02mZ3XJ+v6/Vw==} engines: {node: '>= 10'} cpu: [arm64] os: [linux] - libc: [glibc] '@ast-grep/napi-linux-x64-gnu@0.21.4': resolution: {integrity: sha512-U7jl8RGpxKV+pjFstY0y5qD+D+wm9dXNO7NBbIOnETgTMizTFiUuQWT7SOlIklhcxxuXqWzfwhNN1qwI0tGNWw==} engines: {node: '>= 10'} cpu: [x64] os: [linux] - libc: [glibc] '@ast-grep/napi-linux-x64-gnu@0.22.6': resolution: {integrity: sha512-nZf+gxXVrZqvP1LN6HwzOMA4brF3umBXfMequQzv8S6HeJ4c34P23F0Tw8mHtQpVYP9PQWJUvt3LJQ8Xvd5Hiw==} engines: {node: '>= 10'} cpu: [x64] os: [linux] - libc: [glibc] '@ast-grep/napi-linux-x64-musl@0.21.4': resolution: {integrity: sha512-SOGR93kGomRR+Vh87+jXI3pJLR+J+dekCI8a4S22kGX9iAen8/+Ew++lFouDueKLyszmmhCrIk1WnJvYPuSFBw==} engines: {node: '>= 10'} cpu: [x64] os: [linux] - libc: [musl] '@ast-grep/napi-linux-x64-musl@0.22.6': resolution: {integrity: sha512-gcJeBMgJQf2pZZo0lgH0Vg4ycyujM7Am8VlomXhavC/dPpkddA1tiHSIC4fCNneLU1EqHITy3ALSmM4GLdsjBw==} engines: {node: '>= 10'} cpu: [x64] os: [linux] - libc: [musl] '@ast-grep/napi-win32-arm64-msvc@0.21.4': resolution: {integrity: sha512-ciGaTbkPjbCGqUyLwIPvcNeftNXjSG3cXE+5NiLThRbDhh2yUOE8YJkElUQcu0xQCdSlXnb4l/imEED/65jGfw==} @@ -3393,35 +3383,30 @@ packages: engines: {node: '>= 10.0.0'} cpu: [arm] os: [linux] - libc: [glibc] '@parcel/watcher-linux-arm64-glibc@2.4.1': resolution: {integrity: sha512-BJ7mH985OADVLpbrzCLgrJ3TOpiZggE9FMblfO65PlOCdG++xJpKUJ0Aol74ZUIYfb8WsRlUdgrZxKkz3zXWYA==} engines: {node: '>= 10.0.0'} cpu: [arm64] os: [linux] - libc: [glibc] '@parcel/watcher-linux-arm64-musl@2.4.1': resolution: {integrity: sha512-p4Xb7JGq3MLgAfYhslU2SjoV9G0kI0Xry0kuxeG/41UfpjHGOhv7UoUDAz/jb1u2elbhazy4rRBL8PegPJFBhA==} engines: {node: '>= 10.0.0'} cpu: [arm64] os: [linux] - libc: [musl] '@parcel/watcher-linux-x64-glibc@2.4.1': resolution: {integrity: sha512-s9O3fByZ/2pyYDPoLM6zt92yu6P4E39a03zvO0qCHOTjxmt3GHRMLuRZEWhWLASTMSrrnVNWdVI/+pUElJBBBg==} engines: {node: '>= 10.0.0'} cpu: [x64] os: [linux] - libc: [glibc] '@parcel/watcher-linux-x64-musl@2.4.1': resolution: {integrity: sha512-L2nZTYR1myLNST0O632g0Dx9LyMNHrn6TOt76sYxWLdff3cB22/GZX2UPtJnaqQPdCRoszoY5rcOj4oMTtp5fQ==} engines: {node: '>= 10.0.0'} cpu: [x64] os: [linux] - libc: [musl] '@parcel/watcher-wasm@2.4.1': resolution: {integrity: sha512-/ZR0RxqxU/xxDGzbzosMjh4W6NdYFMqq2nvo2b8SLi7rsl/4jkL8S5stIikorNkdR50oVDvqb/3JT05WM+CRRA==} @@ -3601,55 +3586,46 @@ packages: resolution: {integrity: sha512-jMYvxZwGmoHFBTbr12Xc6wOdc2xA5tF5F2q6t7Rcfab68TT0n+r7dgawD4qhPEvasDsVpQi+MgDzj2faOLsZjA==} cpu: [arm] os: [linux] - libc: [glibc] '@rollup/rollup-linux-arm-musleabihf@4.20.0': resolution: {integrity: sha512-1asSTl4HKuIHIB1GcdFHNNZhxAYEdqML/MW4QmPS4G0ivbEcBr1JKlFLKsIRqjSwOBkdItn3/ZDlyvZ/N6KPlw==} cpu: [arm] os: [linux] - libc: [musl] '@rollup/rollup-linux-arm64-gnu@4.20.0': resolution: {integrity: sha512-COBb8Bkx56KldOYJfMf6wKeYJrtJ9vEgBRAOkfw6Ens0tnmzPqvlpjZiLgkhg6cA3DGzCmLmmd319pmHvKWWlQ==} cpu: [arm64] os: [linux] - libc: [glibc] '@rollup/rollup-linux-arm64-musl@4.20.0': resolution: {integrity: sha512-+it+mBSyMslVQa8wSPvBx53fYuZK/oLTu5RJoXogjk6x7Q7sz1GNRsXWjn6SwyJm8E/oMjNVwPhmNdIjwP135Q==} cpu: [arm64] os: [linux] - libc: [musl] '@rollup/rollup-linux-powerpc64le-gnu@4.20.0': resolution: {integrity: sha512-yAMvqhPfGKsAxHN8I4+jE0CpLWD8cv4z7CK7BMmhjDuz606Q2tFKkWRY8bHR9JQXYcoLfopo5TTqzxgPUjUMfw==} cpu: [ppc64] os: [linux] - libc: [glibc] '@rollup/rollup-linux-riscv64-gnu@4.20.0': resolution: {integrity: sha512-qmuxFpfmi/2SUkAw95TtNq/w/I7Gpjurx609OOOV7U4vhvUhBcftcmXwl3rqAek+ADBwSjIC4IVNLiszoj3dPA==} cpu: [riscv64] os: [linux] - libc: [glibc] '@rollup/rollup-linux-s390x-gnu@4.20.0': resolution: {integrity: sha512-I0BtGXddHSHjV1mqTNkgUZLnS3WtsqebAXv11D5BZE/gfw5KoyXSAXVqyJximQXNvNzUo4GKlCK/dIwXlz+jlg==} cpu: [s390x] os: [linux] - libc: [glibc] '@rollup/rollup-linux-x64-gnu@4.20.0': resolution: {integrity: sha512-y+eoL2I3iphUg9tN9GB6ku1FA8kOfmF4oUEWhztDJ4KXJy1agk/9+pejOuZkNFhRwHAOxMsBPLbXPd6mJiCwew==} cpu: [x64] os: [linux] - libc: [glibc] '@rollup/rollup-linux-x64-musl@4.20.0': resolution: {integrity: sha512-hM3nhW40kBNYUkZb/r9k2FKK+/MnKglX7UYd4ZUy5DJs8/sMsIbqWK2piZtVGE3kcXVNj3B2IrUYROJMMCikNg==} cpu: [x64] os: [linux] - libc: [musl] '@rollup/rollup-win32-arm64-msvc@4.20.0': resolution: {integrity: sha512-psegMvP+Ik/Bg7QRJbv8w8PAytPA7Uo8fpFjXyCRHWm6Nt42L+JtoqH8eDQ5hRP7/XW2UiIriy1Z46jf0Oa1kA==} @@ -9687,10 +9663,6 @@ snapshots: dependencies: '@ctrl/tinycolor': 4.1.0 - '@ant-design/fast-color@2.0.6': - dependencies: - '@babel/runtime': 7.25.0 - '@ant-design/icons-svg@4.4.2': {} '@ant-design/icons-vue@7.0.1(vue@3.4.36(typescript@5.5.4))':