diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml
index 08ff80b7..ffffc48e 100644
--- a/.github/workflows/deploy.yml
+++ b/.github/workflows/deploy.yml
@@ -27,7 +27,7 @@ jobs:
uses: ./.github/actions/setup-node
- name: Build
- run: pnpm run build
+ run: pnpm build:play && pnpm build:docs
- name: Sync Playground files
uses: SamKirkland/FTP-Deploy-Action@v4.3.5
@@ -66,7 +66,7 @@ jobs:
uses: ./.github/actions/setup-node
- name: Build
- run: pnpm run build
+ run: pnpm run build:antd
- name: Sync files
uses: SamKirkland/FTP-Deploy-Action@v4.3.5
@@ -97,7 +97,7 @@ jobs:
uses: ./.github/actions/setup-node
- name: Build
- run: pnpm run build
+ run: pnpm run build:ele
- name: Sync files
uses: SamKirkland/FTP-Deploy-Action@v4.3.5
@@ -128,7 +128,7 @@ jobs:
uses: ./.github/actions/setup-node
- name: Build
- run: pnpm run build
+ run: pnpm run build:naive
- name: Sync files
uses: SamKirkland/FTP-Deploy-Action@v4.3.5
diff --git a/README.ja-JP.md b/README.ja-JP.md
index db51cad8..a4e9de0a 100644
--- a/README.ja-JP.md
+++ b/README.ja-JP.md
@@ -78,7 +78,7 @@ pnpm build
## 変更ログ
-[CHANGELOG](https://github.com/vbenjs/vue-vben-admin/releases/latest)
+[CHANGELOG](https://github.com/vbenjs/vue-vben-admin/releases)
## 貢献方法
diff --git a/README.md b/README.md
index 7427a930..5540234a 100644
--- a/README.md
+++ b/README.md
@@ -77,7 +77,7 @@ pnpm build
## Change Log
-[CHANGELOG](https://github.com/vbenjs/vue-vben-admin/releases/latest)
+[CHANGELOG](https://github.com/vbenjs/vue-vben-admin/releases)
## How to contribute
diff --git a/README.zh-CN.md b/README.zh-CN.md
index e9c97680..bcda0087 100644
--- a/README.zh-CN.md
+++ b/README.zh-CN.md
@@ -128,7 +128,7 @@ pnpm build
## 更新日志
-[CHANGELOG](https://github.com/vbenjs/vue-vben-admin/releases/latest)
+[CHANGELOG](https://github.com/vbenjs/vue-vben-admin/releases)
## Contributor
diff --git a/apps/backend-mock/package.json b/apps/backend-mock/package.json
index 5a45611b..3baef435 100644
--- a/apps/backend-mock/package.json
+++ b/apps/backend-mock/package.json
@@ -6,8 +6,8 @@
"license": "MIT",
"author": "",
"scripts": {
- "start": "nitro dev",
- "build": "nitro build"
+ "build": "nitro build",
+ "start": "nitro dev"
},
"dependencies": {
"nitropack": "^2.9.7"
diff --git a/apps/web-antd/package.json b/apps/web-antd/package.json
index e64c3aa2..05bea828 100644
--- a/apps/web-antd/package.json
+++ b/apps/web-antd/package.json
@@ -48,7 +48,7 @@
"jsencrypt": "^3.3.2",
"lodash-es": "^4.17.21",
"pinia": "2.2.2",
- "vue": "^3.4.37",
+ "vue": "^3.4.38",
"vue-router": "^4.4.3"
},
"devDependencies": {
diff --git a/apps/web-antd/src/router/routes/modules/vben.ts b/apps/web-antd/src/router/routes/modules/vben.ts
index 48e38fb2..f1a836fb 100644
--- a/apps/web-antd/src/router/routes/modules/vben.ts
+++ b/apps/web-antd/src/router/routes/modules/vben.ts
@@ -26,7 +26,7 @@ const routes: RouteRecordRaw[] = [
{
name: 'VbenAbout',
path: '/vben-admin/about',
- component: () => import('#/views/_core/vben/about/index.vue'),
+ component: () => import('#/views/_core/about/index.vue'),
meta: {
icon: 'lucide:copyright',
title: $t('page.vben.about'),
diff --git a/apps/web-antd/src/views/_core/vben/about/index.vue b/apps/web-antd/src/views/_core/about/index.vue
similarity index 100%
rename from apps/web-antd/src/views/_core/vben/about/index.vue
rename to apps/web-antd/src/views/_core/about/index.vue
diff --git a/apps/web-ele/package.json b/apps/web-ele/package.json
index f16e39ba..1a50ae74 100644
--- a/apps/web-ele/package.json
+++ b/apps/web-ele/package.json
@@ -44,7 +44,7 @@
"dayjs": "^1.11.12",
"element-plus": "^2.8.0",
"pinia": "2.2.2",
- "vue": "^3.4.37",
+ "vue": "^3.4.38",
"vue-router": "^4.4.3"
},
"devDependencies": {
diff --git a/apps/web-ele/src/router/routes/modules/vben.ts b/apps/web-ele/src/router/routes/modules/vben.ts
index 3a8f2e94..fab1905d 100644
--- a/apps/web-ele/src/router/routes/modules/vben.ts
+++ b/apps/web-ele/src/router/routes/modules/vben.ts
@@ -26,7 +26,7 @@ const routes: RouteRecordRaw[] = [
{
name: 'VbenAbout',
path: '/vben-admin/about',
- component: () => import('#/views/_core/vben/about/index.vue'),
+ component: () => import('#/views/_core/about/index.vue'),
meta: {
icon: 'lucide:copyright',
title: $t('page.vben.about'),
diff --git a/apps/web-ele/src/views/_core/vben/about/index.vue b/apps/web-ele/src/views/_core/about/index.vue
similarity index 100%
rename from apps/web-ele/src/views/_core/vben/about/index.vue
rename to apps/web-ele/src/views/_core/about/index.vue
diff --git a/apps/web-naive/package.json b/apps/web-naive/package.json
index a4e73e0c..e27ab25b 100644
--- a/apps/web-naive/package.json
+++ b/apps/web-naive/package.json
@@ -43,7 +43,7 @@
"@vueuse/core": "^11.0.0",
"naive-ui": "^2.39.0",
"pinia": "2.2.2",
- "vue": "^3.4.37",
+ "vue": "^3.4.38",
"vue-router": "^4.4.3"
}
}
diff --git a/apps/web-naive/src/router/routes/modules/vben.ts b/apps/web-naive/src/router/routes/modules/vben.ts
index 0b1273df..4f067498 100644
--- a/apps/web-naive/src/router/routes/modules/vben.ts
+++ b/apps/web-naive/src/router/routes/modules/vben.ts
@@ -26,7 +26,7 @@ const routes: RouteRecordRaw[] = [
{
name: 'VbenAbout',
path: '/vben-admin/about',
- component: () => import('#/views/_core/vben/about/index.vue'),
+ component: () => import('#/views/_core/about/index.vue'),
meta: {
icon: 'lucide:copyright',
title: $t('page.vben.about'),
diff --git a/apps/web-naive/src/views/_core/vben/about/index.vue b/apps/web-naive/src/views/_core/about/index.vue
similarity index 100%
rename from apps/web-naive/src/views/_core/vben/about/index.vue
rename to apps/web-naive/src/views/_core/about/index.vue
diff --git a/docs/.vitepress/config.mts b/docs/.vitepress/config.mts
index 6dfb2de9..25a49448 100644
--- a/docs/.vitepress/config.mts
+++ b/docs/.vitepress/config.mts
@@ -13,7 +13,7 @@ import { version } from '../../package.json';
export default withPwa(
defineConfigWithTheme({
- description: 'Vben Admin& 企业级管理系统框架',
+ description: 'Vben Admin & 企业级管理系统框架',
head: head(),
lang: 'zh',
pwa: pwa(),
@@ -284,6 +284,7 @@ function sidebarGuide(): DefaultTheme.SidebarItem[] {
{
text: '深入',
items: [
+ { link: 'in-depth/login', text: '登录' },
// { link: 'in-depth/layout', text: '布局' },
{ link: 'in-depth/theme', text: '主题' },
{ link: 'in-depth/access', text: '权限' },
diff --git a/docs/package.json b/docs/package.json
index e7b2882d..5f74efbc 100644
--- a/docs/package.json
+++ b/docs/package.json
@@ -13,7 +13,7 @@
"devDependencies": {
"@nolebase/vitepress-plugin-git-changelog": "^2.4.0",
"@vite-pwa/vitepress": "^0.5.0",
- "vitepress": "^1.3.2",
- "vue": "^3.4.37"
+ "vitepress": "^1.3.3",
+ "vue": "^3.4.38"
}
}
diff --git a/docs/src/guide/essentials/development.md b/docs/src/guide/essentials/development.md
index 4b92b10f..ff731a2d 100644
--- a/docs/src/guide/essentials/development.md
+++ b/docs/src/guide/essentials/development.md
@@ -52,8 +52,18 @@ npm 脚本是项目常见的配置,用于执行一些常见的任务,比如
"build": "cross-env NODE_OPTIONS=--max-old-space-size=8192 turbo build",
// 构建项目并分析
"build:analyze": "turbo build:analyze",
- // 构建docker镜像
+ // 构建本地 docker 镜像
"build:docker": "./build-local-docker-image.sh",
+ // 单独构建 web-antd 应用
+ "build:antd": "pnpm run build --filter=@vben/web-antd",
+ // 单独构建文档
+ "build:docs": "pnpm run build --filter=@vben/docs",
+ // 单独构建 web-ele 应用
+ "build:ele": "pnpm run build --filter=@vben/web-ele",
+ // 单独构建 web-naive 应用
+ "build:naive": "pnpm run build --filter=@vben/naive",
+ // 单独构建 playground 应用
+ "build:play": "pnpm run build --filter=@vben/playground",
// changeset 版本管理
"changeset": "pnpm exec changeset",
// 检查项目各种问题
@@ -78,10 +88,10 @@ npm 脚本是项目常见的配置,用于执行一些常见的任务,比如
"dev:docs": "pnpm -F @vben/docs run dev",
// 启动web-ele应用
"dev:ele": "pnpm -F @vben/web-ele run dev",
- // 启动演示应用
- "dev:play": "pnpm -F @vben/playground run dev",
// 启动web-naive应用
"dev:naive": "pnpm -F @vben/web-naive run dev",
+ // 启动演示应用
+ "dev:play": "pnpm -F @vben/playground run dev",
// 格式化代码
"format": "vsh lint --format",
// lint 代码
diff --git a/docs/src/guide/essentials/route.md b/docs/src/guide/essentials/route.md
index 10893fc3..29fa298b 100644
--- a/docs/src/guide/essentials/route.md
+++ b/docs/src/guide/essentials/route.md
@@ -64,7 +64,7 @@ const routes: RouteRecordRaw[] = [
{
name: 'VbenAbout',
path: '/vben-admin/about',
- component: () => import('#/views/_core/vben/about/index.vue'),
+ component: () => import('#/views/_core/about/index.vue'),
meta: {
badgeType: 'dot',
badgeVariants: 'destructive',
diff --git a/docs/src/guide/in-depth/login.md b/docs/src/guide/in-depth/login.md
new file mode 100644
index 00000000..8155b9bf
--- /dev/null
+++ b/docs/src/guide/in-depth/login.md
@@ -0,0 +1,131 @@
+# 登录
+
+本文介绍如何去改造自己的应用程序登录页。
+
+## 登录页面调整
+
+如果你想调整登录页面的标题、描述和图标以及工具栏,你可以通过配置 `AuthPageLayout` 组件的 `props` 参数来实现。
+
+
+
+只需要在应用下的 `src/router/routes/core.ts` 内,配置`AuthPageLayout`的 `props`参数即可:
+
+```ts {4-8}
+ {
+ component: AuthPageLayout,
+ props: {
+ sloganImage: "xxx/xxx.png",
+ pageTitle: "开箱即用的大型中后台管理系统",
+ pageDescription: "工程化、高性能、跨组件库的前端模版",
+ toolbar: true,
+ toolbarList: () => ['color', 'language', 'layout', 'theme'],
+ }
+ // ...
+ },
+```
+
+::: tip
+
+如果这些配置不能满足你的需求,你可以自行实现登录页面。直接实现自己的 `AuthPageLayout`即可。
+
+:::
+
+## 登录表单调整
+
+如果你想调整登录表单的相关内容,你可以在应用下的 `src/views/_core/authentication/login.vue` 内,配置`AuthenticationLogin` 组件参数即可:
+
+```vue
+
+```
+
+::: details AuthenticationLogin 组件参数
+
+```ts
+{
+ /**
+ * @zh_CN 验证码登录路径
+ */
+ codeLoginPath?: string;
+ /**
+ * @zh_CN 忘记密码路径
+ */
+ forgetPasswordPath?: string;
+
+ /**
+ * @zh_CN 是否处于加载处理状态
+ */
+ loading?: boolean;
+
+ /**
+ * @zh_CN 密码占位符
+ */
+ passwordPlaceholder?: string;
+
+ /**
+ * @zh_CN 二维码登录路径
+ */
+ qrCodeLoginPath?: string;
+
+ /**
+ * @zh_CN 注册路径
+ */
+ registerPath?: string;
+
+ /**
+ * @zh_CN 是否显示验证码登录
+ */
+ showCodeLogin?: boolean;
+ /**
+ * @zh_CN 是否显示忘记密码
+ */
+ showForgetPassword?: boolean;
+
+ /**
+ * @zh_CN 是否显示二维码登录
+ */
+ showQrcodeLogin?: boolean;
+
+ /**
+ * @zh_CN 是否显示注册按钮
+ */
+ showRegister?: boolean;
+
+ /**
+ * @zh_CN 是否显示记住账号
+ */
+ showRememberMe?: boolean;
+
+ /**
+ * @zh_CN 是否显示第三方登录
+ */
+ showThirdPartyLogin?: boolean;
+
+ /**
+ * @zh_CN 登录框子标题
+ */
+ subTitle?: string;
+
+ /**
+ * @zh_CN 登录框标题
+ */
+ title?: string;
+
+ /**
+ * @zh_CN 用户名占位符
+ */
+ usernamePlaceholder?: string;
+}
+```
+
+:::
+
+::: tip
+
+如果这些配置不能满足你的需求,你可以自行实现登录表单及相关登录逻辑。
+
+:::
diff --git a/docs/src/guide/introduction/thin.md b/docs/src/guide/introduction/thin.md
index 818227e9..422a520d 100644
--- a/docs/src/guide/introduction/thin.md
+++ b/docs/src/guide/introduction/thin.md
@@ -28,12 +28,7 @@ apps/web-native
## Mock 服务精简
-如果你不需要`Mock`服务,你可以直接删除`apps/backend-mock`文件夹。同时在你的应用下`.env.development`文件中删除`VITE_NITRO_MOCK`变量。
-
-```bash
-# 是否开启 Nitro Mock服务,true 为开启,false 为关闭
-VITE_NITRO_MOCK=false
-```
+如果你不需要`Mock`服务,你可以直接删除`apps/backend-mock`文件夹即可。
## 安装依赖
diff --git a/docs/src/public/guide/login.png b/docs/src/public/guide/login.png
new file mode 100644
index 00000000..3774b0bd
Binary files /dev/null and b/docs/src/public/guide/login.png differ
diff --git a/internal/tailwind-config/package.json b/internal/tailwind-config/package.json
index c161447b..4d90c637 100644
--- a/internal/tailwind-config/package.json
+++ b/internal/tailwind-config/package.json
@@ -46,7 +46,7 @@
"tailwindcss": "^3.4.3"
},
"dependencies": {
- "@iconify/json": "^2.2.237",
+ "@iconify/json": "^2.2.238",
"@iconify/tailwind": "^1.1.2",
"@tailwindcss/nesting": "0.0.0-insiders.565cd3e",
"@tailwindcss/typography": "^0.5.14",
diff --git a/internal/vite-config/src/plugins/nitro-mock.ts b/internal/vite-config/src/plugins/nitro-mock.ts
index 99e8c06e..60d7327d 100644
--- a/internal/vite-config/src/plugins/nitro-mock.ts
+++ b/internal/vite-config/src/plugins/nitro-mock.ts
@@ -23,7 +23,9 @@ export const viteNitroMockPlugin = ({
const pkg = await getPackage(mockServerPackage);
if (!pkg) {
- consola.error(`Package ${mockServerPackage} not found.`);
+ consola.log(
+ `Package ${mockServerPackage} not found. Skip mock server.`,
+ );
return;
}
diff --git a/package.json b/package.json
index 96550659..e834a6da 100644
--- a/package.json
+++ b/package.json
@@ -29,6 +29,11 @@
"build": "cross-env NODE_OPTIONS=--max-old-space-size=8192 turbo build",
"build:analyze": "turbo build:analyze",
"build:docker": "./build-local-docker-image.sh",
+ "build:antd": "pnpm run build --filter=@vben/web-antd",
+ "build:docs": "pnpm run build --filter=@vben/docs",
+ "build:ele": "pnpm run build --filter=@vben/web-ele",
+ "build:naive": "pnpm run build --filter=@vben/web-naive",
+ "build:play": "pnpm run build --filter=@vben/playground",
"changeset": "pnpm exec changeset",
"check": "pnpm run check:circular && pnpm run check:dep && pnpm run check:type && pnpm check:cspell",
"check:circular": "vsh check-circular",
@@ -41,8 +46,8 @@
"dev:antd": "pnpm -F @vben/web-antd run dev",
"dev:docs": "pnpm -F @vben/docs run dev",
"dev:ele": "pnpm -F @vben/web-ele run dev",
- "dev:play": "pnpm -F @vben/playground run dev",
"dev:naive": "pnpm -F @vben/web-naive run dev",
+ "dev:play": "pnpm -F @vben/playground run dev",
"format": "vsh lint --format",
"lint": "vsh lint",
"postinstall": "turbo run stub",
@@ -60,7 +65,7 @@
"@changesets/cli": "^2.27.7",
"@ls-lint/ls-lint": "^2.2.3",
"@types/jsdom": "^21.1.7",
- "@types/node": "^22.3.0",
+ "@types/node": "^22.4.0",
"@vben/commitlint-config": "workspace:*",
"@vben/eslint-config": "workspace:*",
"@vben/prettier-config": "workspace:*",
@@ -75,7 +80,7 @@
"@vue/test-utils": "^2.4.6",
"autoprefixer": "^10.4.20",
"cross-env": "^7.0.3",
- "cspell": "^8.13.3",
+ "cspell": "^8.14.1",
"husky": "^9.1.4",
"is-ci": "^3.0.1",
"jsdom": "^24.1.1",
@@ -87,7 +92,7 @@
"unbuild": "^2.0.0",
"vite": "^5.4.1",
"vitest": "^2.0.5",
- "vue": "^3.4.37",
+ "vue": "^3.4.38",
"vue-tsc": "^2.0.29"
},
"engines": {
@@ -105,7 +110,7 @@
"@ctrl/tinycolor": "4.1.0",
"clsx": "2.1.1",
"pinia": "2.2.2",
- "vue": "3.4.37"
+ "vue": "3.4.38"
},
"neverBuiltDependencies": [
"canvas",
diff --git a/packages/@core/base/icons/package.json b/packages/@core/base/icons/package.json
index 44d43335..dbc8a6e2 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.428.0",
- "vue": "^3.4.37"
+ "vue": "^3.4.38"
}
}
diff --git a/packages/@core/base/icons/src/create-icon.ts b/packages/@core/base/icons/src/create-icon.ts
index f108023f..2c40045b 100644
--- a/packages/@core/base/icons/src/create-icon.ts
+++ b/packages/@core/base/icons/src/create-icon.ts
@@ -4,7 +4,7 @@ import { Icon } from '@iconify/vue';
function createIconifyIcon(icon: string) {
return defineComponent({
- name: `SvgIcon-${icon}`,
+ name: `Icon-${icon}`,
setup(props, { attrs }) {
return () => h(Icon, { icon, ...props, ...attrs });
},
diff --git a/packages/@core/base/icons/src/index.ts b/packages/@core/base/icons/src/index.ts
index b373567d..d533cd58 100644
--- a/packages/@core/base/icons/src/index.ts
+++ b/packages/@core/base/icons/src/index.ts
@@ -1,5 +1,4 @@
export * from './create-icon';
export * from './lucide';
-export * from './mdi';
export * from '@iconify/vue';
diff --git a/packages/@core/base/icons/src/lucide.ts b/packages/@core/base/icons/src/lucide.ts
index 1f14f32c..02d96f17 100644
--- a/packages/@core/base/icons/src/lucide.ts
+++ b/packages/@core/base/icons/src/lucide.ts
@@ -1,7 +1,9 @@
export {
ArrowDown,
ArrowLeft,
+ ArrowLeftFromLine as MdiMenuOpen,
ArrowLeftToLine,
+ ArrowRightFromLine as MdiMenuClose,
ArrowRightLeft,
ArrowRightToLine,
ArrowUp,
@@ -11,10 +13,12 @@ export {
ChevronDown,
ChevronLeft,
ChevronRight,
+ ChevronsLeft,
+ ChevronsRight,
CircleHelp,
Copy,
CornerDownLeft,
- Disc3 as IconDefault,
+ Disc as IconDefault,
Ellipsis,
ExternalLink,
Eye,
@@ -36,6 +40,8 @@ export {
Palette,
PanelLeft,
PanelRight,
+ Pin,
+ PinOff,
RotateCw,
Search,
SearchX,
diff --git a/packages/@core/base/icons/src/mdi.ts b/packages/@core/base/icons/src/mdi.ts
deleted file mode 100644
index 781845a9..00000000
--- a/packages/@core/base/icons/src/mdi.ts
+++ /dev/null
@@ -1,29 +0,0 @@
-import { createIconifyIcon } from './create-icon';
-
-export const MdiKeyboardEsc = createIconifyIcon('mdi:keyboard-esc');
-
-export const MdiWechat = createIconifyIcon('mdi:wechat');
-
-export const MdiGithub = createIconifyIcon('mdi:github');
-
-export const MdiGoogle = createIconifyIcon('mdi:google');
-
-export const MdiQqchat = createIconifyIcon('mdi:qqchat');
-
-export const MdiPin = createIconifyIcon('mdi:pin');
-
-export const MdiPinOff = createIconifyIcon('mdi:pin-off');
-
-export const MdiMenuClose = createIconifyIcon('mdi:menu-close');
-
-export const MdiMenuOpen = createIconifyIcon('mdi:menu-open');
-
-export const EosSystem = createIconifyIcon('eos-icons:system-group');
-// 缓存监控使用
-export const RedisIcon = createIconifyIcon('logos:redis');
-export const CommandLineIcon = createIconifyIcon(
- 'flat-color-icons:command-line',
-);
-export const MemoryIcon = createIconifyIcon('la:memory');
-
-export const GiteeIcon = createIconifyIcon('simple-icons:gitee');
diff --git a/packages/@core/base/shared/build.config.ts b/packages/@core/base/shared/build.config.ts
index 4192eb26..cd8b6c5c 100644
--- a/packages/@core/base/shared/build.config.ts
+++ b/packages/@core/base/shared/build.config.ts
@@ -5,6 +5,7 @@ export default defineBuildConfig({
declaration: true,
entries: [
'src/index',
+ 'src/store',
'src/constants/index',
'src/utils/index',
'src/color/index',
diff --git a/packages/@core/base/shared/package.json b/packages/@core/base/shared/package.json
index cc4d490f..a75b15ff 100644
--- a/packages/@core/base/shared/package.json
+++ b/packages/@core/base/shared/package.json
@@ -44,6 +44,11 @@
"types": "./src/cache/index.ts",
"development": "./src/cache/index.ts",
"default": "./dist/cache/index.mjs"
+ },
+ "./store": {
+ "types": "./src/store.ts",
+ "development": "./src/store.ts",
+ "default": "./dist/store.mjs"
}
},
"publishConfig": {
@@ -56,7 +61,8 @@
},
"dependencies": {
"@ctrl/tinycolor": "^4.1.0",
- "@vue/shared": "^3.4.37",
+ "@tanstack/vue-store": "^0.5.5",
+ "@vue/shared": "^3.4.38",
"clsx": "^2.1.1",
"defu": "^6.1.4",
"lodash.clonedeep": "^4.5.0",
diff --git a/packages/@core/base/shared/src/index.ts b/packages/@core/base/shared/src/index.ts
index 55bf8502..3ec6612f 100644
--- a/packages/@core/base/shared/src/index.ts
+++ b/packages/@core/base/shared/src/index.ts
@@ -1,4 +1,5 @@
export * from './cache';
export * from './color';
export * from './constants';
+export * from './store';
export * from './utils';
diff --git a/packages/@core/base/shared/src/store.ts b/packages/@core/base/shared/src/store.ts
new file mode 100644
index 00000000..4b03afb0
--- /dev/null
+++ b/packages/@core/base/shared/src/store.ts
@@ -0,0 +1 @@
+export * from '@tanstack/vue-store';
diff --git a/packages/@core/base/typings/package.json b/packages/@core/base/typings/package.json
index 47d2d78c..590e874d 100644
--- a/packages/@core/base/typings/package.json
+++ b/packages/@core/base/typings/package.json
@@ -38,7 +38,7 @@
}
},
"dependencies": {
- "vue": "^3.4.37",
+ "vue": "^3.4.38",
"vue-router": "^4.4.3"
}
}
diff --git a/packages/@core/composables/package.json b/packages/@core/composables/package.json
index e8485016..6e18264f 100644
--- a/packages/@core/composables/package.json
+++ b/packages/@core/composables/package.json
@@ -39,7 +39,7 @@
"@vueuse/core": "^11.0.0",
"radix-vue": "^1.9.4",
"sortablejs": "^1.15.2",
- "vue": "^3.4.37"
+ "vue": "^3.4.38"
},
"devDependencies": {
"@types/sortablejs": "^1.15.8"
diff --git a/packages/@core/preferences/package.json b/packages/@core/preferences/package.json
index 2e043696..8b7cee1c 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": "^11.0.0",
- "vue": "^3.4.37"
+ "vue": "^3.4.38"
}
}
diff --git a/packages/@core/preferences/src/preferences.ts b/packages/@core/preferences/src/preferences.ts
index f164a6b9..4670c07c 100644
--- a/packages/@core/preferences/src/preferences.ts
+++ b/packages/@core/preferences/src/preferences.ts
@@ -116,7 +116,6 @@ class PreferenceManager {
this.updatePreferences({
theme: { mode: isDark ? 'dark' : 'light' },
});
- // updateCSSVariables(this.state);
});
}
diff --git a/packages/@core/ui-kit/layout-ui/package.json b/packages/@core/ui-kit/layout-ui/package.json
index c0dd5f63..1e65d4c6 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": "^11.0.0",
- "vue": "^3.4.37"
+ "vue": "^3.4.38"
}
}
diff --git a/packages/@core/ui-kit/layout-ui/src/components/layout-content.vue b/packages/@core/ui-kit/layout-ui/src/components/layout-content.vue
index ab1d4d7f..1dd0c548 100644
--- a/packages/@core/ui-kit/layout-ui/src/components/layout-content.vue
+++ b/packages/@core/ui-kit/layout-ui/src/components/layout-content.vue
@@ -54,7 +54,6 @@ const style = computed((): CSSProperties => {
-
diff --git a/packages/@core/ui-kit/layout-ui/src/components/widgets/sidebar-collapse-button.vue b/packages/@core/ui-kit/layout-ui/src/components/widgets/sidebar-collapse-button.vue
index 6f5f7e26..8092c0d1 100644
--- a/packages/@core/ui-kit/layout-ui/src/components/widgets/sidebar-collapse-button.vue
+++ b/packages/@core/ui-kit/layout-ui/src/components/widgets/sidebar-collapse-button.vue
@@ -1,5 +1,5 @@
diff --git a/packages/effects/layouts/src/basic/layout.vue b/packages/effects/layouts/src/basic/layout.vue
index 82abc6b5..f575ca5a 100644
--- a/packages/effects/layouts/src/basic/layout.vue
+++ b/packages/effects/layouts/src/basic/layout.vue
@@ -139,7 +139,7 @@ watch(
async (val) => {
if (val) {
await updateWatermark({
- content: `${preferences.app.name} 用户名: ${userStore.userInfo?.username}`,
+ content: `${userStore.userInfo?.username}`,
});
}
},
diff --git a/packages/effects/layouts/src/basic/tabbar/use-tab-view-scroll.ts b/packages/effects/layouts/src/basic/tabbar/use-tab-view-scroll.ts
deleted file mode 100644
index 571b1152..00000000
--- a/packages/effects/layouts/src/basic/tabbar/use-tab-view-scroll.ts
+++ /dev/null
@@ -1,50 +0,0 @@
-import { ref } from 'vue';
-
-type El = HTMLElement | null | undefined;
-
-export function useTabViewScroll(scrollDistance: number = 150) {
- const scrollbarEl = ref(null);
- const scrollViewportEl = ref(null);
-
- function setScrollBarEl(el: El) {
- scrollbarEl.value = el;
- }
-
- function setScrollViewEl(el: El) {
- scrollViewportEl.value = el;
- }
-
- function getScrollClientWidth() {
- if (!scrollbarEl.value || !scrollViewportEl.value) return {};
-
- const scrollbarWidth = scrollbarEl.value.clientWidth;
- const scrollViewWidth = scrollViewportEl.value.clientWidth;
-
- return {
- scrollbarWidth,
- scrollViewWidth,
- };
- }
-
- function scrollDirection(
- direction: 'left' | 'right',
- distance: number = scrollDistance,
- ) {
- const { scrollbarWidth, scrollViewWidth } = getScrollClientWidth();
-
- if (!scrollbarWidth || !scrollViewWidth) return;
-
- if (scrollbarWidth > scrollViewWidth) return;
-
- scrollViewportEl.value?.scrollBy({
- behavior: 'smooth',
- left: direction === 'left' ? -distance : +distance,
- });
- }
-
- return {
- scrollDirection,
- setScrollBarEl,
- setScrollViewEl,
- };
-}
diff --git a/packages/effects/layouts/src/basic/tabbar/use-tabbar.ts b/packages/effects/layouts/src/basic/tabbar/use-tabbar.ts
index aef64052..52b32dc4 100644
--- a/packages/effects/layouts/src/basic/tabbar/use-tabbar.ts
+++ b/packages/effects/layouts/src/basic/tabbar/use-tabbar.ts
@@ -13,9 +13,9 @@ import {
ExternalLink,
FoldHorizontal,
Fullscreen,
- MdiPin,
- MdiPinOff,
Minimize2,
+ Pin,
+ PinOff,
RotateCw,
X,
} from '@vben/icons';
@@ -135,7 +135,7 @@ export function useTabbar() {
handler: async () => {
await toggleTabPin(tab);
},
- icon: affixTab ? MdiPinOff : MdiPin,
+ icon: affixTab ? PinOff : Pin,
key: 'affix',
text: affixTab
? $t('preferences.tabbar.contextMenu.unpin')
diff --git a/packages/effects/layouts/src/iframe/iframe-view.vue b/packages/effects/layouts/src/iframe/iframe-view.vue
index c3d43d0b..7b8b46cb 100644
--- a/packages/effects/layouts/src/iframe/iframe-view.vue
+++ b/packages/effects/layouts/src/iframe/iframe-view.vue
@@ -1,6 +1,3 @@
-
diff --git a/packages/icons/src/iconify/index.ts b/packages/icons/src/iconify/index.ts
index 503f28ee..a0985ac1 100644
--- a/packages/icons/src/iconify/index.ts
+++ b/packages/icons/src/iconify/index.ts
@@ -1,5 +1,13 @@
-// import { createIconifyIcon } from '@vben-core/icons';
+import { createIconifyIcon } from '@vben-core/icons';
export * from '@vben-core/icons';
-// export const MdiKeyboardEsc = createIconifyIcon('mdi:keyboard-esc');
+export const MdiKeyboardEsc = createIconifyIcon('mdi:keyboard-esc');
+
+export const MdiWechat = createIconifyIcon('mdi:wechat');
+
+export const MdiGithub = createIconifyIcon('mdi:github');
+
+export const MdiGoogle = createIconifyIcon('mdi:google');
+
+export const MdiQqchat = createIconifyIcon('mdi:qqchat');
diff --git a/packages/locales/package.json b/packages/locales/package.json
index 48d5c565..bbef4237 100644
--- a/packages/locales/package.json
+++ b/packages/locales/package.json
@@ -20,8 +20,8 @@
}
},
"dependencies": {
- "@intlify/core-base": "^9.13.1",
- "vue": "^3.4.37",
- "vue-i18n": "^9.13.1"
+ "@intlify/core-base": "^9.14.0",
+ "vue": "^3.4.38",
+ "vue-i18n": "^9.14.0"
}
}
diff --git a/packages/stores/package.json b/packages/stores/package.json
index e634dbd9..2d2f8154 100644
--- a/packages/stores/package.json
+++ b/packages/stores/package.json
@@ -24,7 +24,7 @@
"@vben-core/typings": "workspace:*",
"pinia": "2.2.2",
"pinia-plugin-persistedstate": "^3.2.1",
- "vue": "^3.4.37",
+ "vue": "^3.4.38",
"vue-router": "^4.4.3"
}
}
diff --git a/packages/types/package.json b/packages/types/package.json
index f75ec214..92c1aaf6 100644
--- a/packages/types/package.json
+++ b/packages/types/package.json
@@ -21,7 +21,7 @@
},
"dependencies": {
"@vben-core/typings": "workspace:*",
- "vue": "^3.4.37",
+ "vue": "^3.4.38",
"vue-router": "^4.4.3"
}
}
diff --git a/playground/package.json b/playground/package.json
index d69602b6..617e01c0 100644
--- a/playground/package.json
+++ b/playground/package.json
@@ -44,7 +44,7 @@
"ant-design-vue": "^4.2.3",
"dayjs": "^1.11.12",
"pinia": "2.2.2",
- "vue": "^3.4.37",
+ "vue": "^3.4.38",
"vue-router": "^4.4.3"
}
}
diff --git a/playground/src/router/routes/modules/vben.ts b/playground/src/router/routes/modules/vben.ts
index 4dd75629..1519a4a2 100644
--- a/playground/src/router/routes/modules/vben.ts
+++ b/playground/src/router/routes/modules/vben.ts
@@ -27,7 +27,7 @@ const routes: RouteRecordRaw[] = [
{
name: 'VbenAbout',
path: '/vben-admin/about',
- component: () => import('#/views/_core/vben/about/index.vue'),
+ component: () => import('#/views/_core/about/index.vue'),
meta: {
icon: 'lucide:copyright',
title: $t('page.vben.about'),
diff --git a/playground/src/views/_core/vben/about/index.vue b/playground/src/views/_core/about/index.vue
similarity index 100%
rename from playground/src/views/_core/vben/about/index.vue
rename to playground/src/views/_core/about/index.vue
diff --git a/playground/src/views/examples/ellipsis/index.vue b/playground/src/views/examples/ellipsis/index.vue
index 4f3b67ed..d2e31d9f 100644
--- a/playground/src/views/examples/ellipsis/index.vue
+++ b/playground/src/views/examples/ellipsis/index.vue
@@ -16,7 +16,7 @@ const text = ref(longText);
title="文本省略示例"
>
- {{ text }}
+ {{ text }}
diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml
index 717cd1fe..65e2f823 100644
--- a/pnpm-lock.yaml
+++ b/pnpm-lock.yaml
@@ -8,7 +8,7 @@ overrides:
'@ctrl/tinycolor': 4.1.0
clsx: 2.1.1
pinia: 2.2.2
- vue: 3.4.37
+ vue: 3.4.38
importers:
@@ -27,8 +27,8 @@ importers:
specifier: ^21.1.7
version: 21.1.7
'@types/node':
- specifier: ^22.3.0
- version: 22.3.0
+ specifier: ^22.4.0
+ version: 22.4.0
'@vben/commitlint-config':
specifier: workspace:*
version: link:internal/lint-configs/commitlint-config
@@ -58,10 +58,10 @@ importers:
version: link:scripts/vsh
'@vitejs/plugin-vue':
specifier: ^5.1.2
- version: 5.1.2(vite@5.4.1(@types/node@22.3.0)(less@4.2.0)(sass@1.77.8)(terser@5.31.6))(vue@3.4.37(typescript@5.5.4))
+ version: 5.1.2(vite@5.4.1(@types/node@22.4.0)(less@4.2.0)(sass@1.77.8)(terser@5.31.6))(vue@3.4.38(typescript@5.5.4))
'@vitejs/plugin-vue-jsx':
specifier: ^4.0.1
- version: 4.0.1(vite@5.4.1(@types/node@22.3.0)(less@4.2.0)(sass@1.77.8)(terser@5.31.6))(vue@3.4.37(typescript@5.5.4))
+ version: 4.0.1(vite@5.4.1(@types/node@22.4.0)(less@4.2.0)(sass@1.77.8)(terser@5.31.6))(vue@3.4.38(typescript@5.5.4))
'@vue/test-utils':
specifier: ^2.4.6
version: 2.4.6
@@ -72,8 +72,8 @@ importers:
specifier: ^7.0.3
version: 7.0.3
cspell:
- specifier: ^8.13.3
- version: 8.13.3
+ specifier: ^8.14.1
+ version: 8.14.1
husky:
specifier: ^9.1.4
version: 9.1.4
@@ -103,13 +103,13 @@ importers:
version: 2.0.0(sass@1.77.8)(typescript@5.5.4)(vue-tsc@2.0.29(typescript@5.5.4))
vite:
specifier: ^5.4.1
- version: 5.4.1(@types/node@22.3.0)(less@4.2.0)(sass@1.77.8)(terser@5.31.6)
+ version: 5.4.1(@types/node@22.4.0)(less@4.2.0)(sass@1.77.8)(terser@5.31.6)
vitest:
specifier: ^2.0.5
- version: 2.0.5(@types/node@22.3.0)(jsdom@24.1.1)(less@4.2.0)(sass@1.77.8)(terser@5.31.6)
+ version: 2.0.5(@types/node@22.4.0)(jsdom@24.1.1)(less@4.2.0)(sass@1.77.8)(terser@5.31.6)
vue:
- specifier: 3.4.37
- version: 3.4.37(typescript@5.5.4)
+ specifier: 3.4.38
+ version: 3.4.38(typescript@5.5.4)
vue-tsc:
specifier: ^2.0.29
version: 2.0.29(typescript@5.5.4)
@@ -166,9 +166,10 @@ importers:
version: link:../../packages/utils
'@vueuse/core':
specifier: ^11.0.0
- version: 11.0.0(vue@3.4.37(typescript@5.5.4))
+ version: 11.0.0(vue@3.4.38(typescript@5.5.4))
ant-design-vue:
specifier: ^4.2.3
+<<<<<<< HEAD
<<<<<<< HEAD
version: 4.2.3(vue@3.4.36(typescript@5.5.4))
crypto-js:
@@ -177,6 +178,9 @@ importers:
=======
version: 4.2.3(vue@3.4.37(typescript@5.5.4))
>>>>>>> ca164b0f9b974eecf5ce7ca8a5338b5989e37e8b
+=======
+ version: 4.2.3(vue@3.4.38(typescript@5.5.4))
+>>>>>>> f8485e886185079291f88c88a6623f721193b20f
dayjs:
specifier: ^1.11.12
version: 1.11.12
@@ -191,12 +195,13 @@ importers:
version: 4.17.21
pinia:
specifier: 2.2.2
- version: 2.2.2(typescript@5.5.4)(vue@3.4.37(typescript@5.5.4))
+ version: 2.2.2(typescript@5.5.4)(vue@3.4.38(typescript@5.5.4))
vue:
- specifier: 3.4.37
- version: 3.4.37(typescript@5.5.4)
+ specifier: 3.4.38
+ version: 3.4.38(typescript@5.5.4)
vue-router:
specifier: ^4.4.3
+<<<<<<< HEAD
<<<<<<< HEAD
version: 4.4.3(vue@3.4.36(typescript@5.5.4))
devDependencies:
@@ -212,6 +217,9 @@ importers:
=======
version: 4.4.3(vue@3.4.37(typescript@5.5.4))
>>>>>>> ca164b0f9b974eecf5ce7ca8a5338b5989e37e8b
+=======
+ version: 4.4.3(vue@3.4.38(typescript@5.5.4))
+>>>>>>> f8485e886185079291f88c88a6623f721193b20f
apps/web-ele:
dependencies:
@@ -259,22 +267,22 @@ importers:
version: link:../../packages/utils
'@vueuse/core':
specifier: ^11.0.0
- version: 11.0.0(vue@3.4.37(typescript@5.5.4))
+ version: 11.0.0(vue@3.4.38(typescript@5.5.4))
dayjs:
specifier: ^1.11.12
version: 1.11.12
element-plus:
specifier: ^2.8.0
- version: 2.8.0(vue@3.4.37(typescript@5.5.4))
+ version: 2.8.0(vue@3.4.38(typescript@5.5.4))
pinia:
specifier: 2.2.2
- version: 2.2.2(typescript@5.5.4)(vue@3.4.37(typescript@5.5.4))
+ version: 2.2.2(typescript@5.5.4)(vue@3.4.38(typescript@5.5.4))
vue:
- specifier: 3.4.37
- version: 3.4.37(typescript@5.5.4)
+ specifier: 3.4.38
+ version: 3.4.38(typescript@5.5.4)
vue-router:
specifier: ^4.4.3
- version: 4.4.3(vue@3.4.37(typescript@5.5.4))
+ version: 4.4.3(vue@3.4.38(typescript@5.5.4))
devDependencies:
unplugin-element-plus:
specifier: ^0.8.0
@@ -326,19 +334,19 @@ importers:
version: link:../../packages/utils
'@vueuse/core':
specifier: ^11.0.0
- version: 11.0.0(vue@3.4.37(typescript@5.5.4))
+ version: 11.0.0(vue@3.4.38(typescript@5.5.4))
naive-ui:
specifier: ^2.39.0
- version: 2.39.0(vue@3.4.37(typescript@5.5.4))
+ version: 2.39.0(vue@3.4.38(typescript@5.5.4))
pinia:
specifier: 2.2.2
- version: 2.2.2(typescript@5.5.4)(vue@3.4.37(typescript@5.5.4))
+ version: 2.2.2(typescript@5.5.4)(vue@3.4.38(typescript@5.5.4))
vue:
- specifier: 3.4.37
- version: 3.4.37(typescript@5.5.4)
+ specifier: 3.4.38
+ version: 3.4.38(typescript@5.5.4)
vue-router:
specifier: ^4.4.3
- version: 4.4.3(vue@3.4.37(typescript@5.5.4))
+ version: 4.4.3(vue@3.4.38(typescript@5.5.4))
docs:
dependencies:
@@ -348,22 +356,22 @@ importers:
devDependencies:
'@nolebase/vitepress-plugin-git-changelog':
specifier: ^2.4.0
- version: 2.4.0(@algolia/client-search@4.24.0)(@types/node@22.3.0)(async-validator@4.2.5)(axios@1.7.4)(nprogress@0.2.0)(postcss@8.4.41)(qrcode@1.5.4)(sass@1.77.8)(search-insights@2.16.3)(sortablejs@1.15.2)(terser@5.31.6)(typescript@5.5.4)
+ version: 2.4.0(@algolia/client-search@4.24.0)(@types/node@22.4.0)(async-validator@4.2.5)(axios@1.7.4)(nprogress@0.2.0)(postcss@8.4.41)(qrcode@1.5.4)(sass@1.77.8)(search-insights@2.16.3)(sortablejs@1.15.2)(terser@5.31.6)(typescript@5.5.4)
'@vite-pwa/vitepress':
specifier: ^0.5.0
- version: 0.5.0(vite-plugin-pwa@0.20.1(vite@5.4.1(@types/node@22.3.0)(less@4.2.0)(sass@1.77.8)(terser@5.31.6))(workbox-build@7.1.1)(workbox-window@7.1.0))
+ version: 0.5.0(vite-plugin-pwa@0.20.1(vite@5.4.1(@types/node@22.4.0)(less@4.2.0)(sass@1.77.8)(terser@5.31.6))(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.3.0)(async-validator@4.2.5)(axios@1.7.4)(less@4.2.0)(nprogress@0.2.0)(postcss@8.4.41)(qrcode@1.5.4)(sass@1.77.8)(search-insights@2.16.3)(sortablejs@1.15.2)(terser@5.31.6)(typescript@5.5.4)
+ specifier: ^1.3.3
+ version: 1.3.3(@algolia/client-search@4.24.0)(@types/node@22.4.0)(async-validator@4.2.5)(axios@1.7.4)(less@4.2.0)(nprogress@0.2.0)(postcss@8.4.41)(qrcode@1.5.4)(sass@1.77.8)(search-insights@2.16.3)(sortablejs@1.15.2)(terser@5.31.6)(typescript@5.5.4)
vue:
- specifier: 3.4.37
- version: 3.4.37(typescript@5.5.4)
+ specifier: 3.4.38
+ version: 3.4.38(typescript@5.5.4)
internal/lint-configs/commitlint-config:
dependencies:
'@commitlint/cli':
specifier: ^19.4.0
- version: 19.4.0(@types/node@22.3.0)(typescript@5.5.4)
+ version: 19.4.0(@types/node@22.4.0)(typescript@5.5.4)
'@commitlint/config-conventional':
specifier: ^19.2.2
version: 19.2.2
@@ -442,7 +450,7 @@ importers:
version: 4.1.3(@typescript-eslint/eslint-plugin@8.1.0(@typescript-eslint/parser@8.1.0(eslint@9.9.0(jiti@1.21.6))(typescript@5.5.4))(eslint@9.9.0(jiti@1.21.6))(typescript@5.5.4))(eslint@9.9.0(jiti@1.21.6))
eslint-plugin-vitest:
specifier: ^0.5.4
- version: 0.5.4(@typescript-eslint/eslint-plugin@8.1.0(@typescript-eslint/parser@8.1.0(eslint@9.9.0(jiti@1.21.6))(typescript@5.5.4))(eslint@9.9.0(jiti@1.21.6))(typescript@5.5.4))(eslint@9.9.0(jiti@1.21.6))(typescript@5.5.4)(vitest@2.0.5(@types/node@22.3.0)(jsdom@24.1.1)(less@4.2.0)(sass@1.77.8)(terser@5.31.6))
+ version: 0.5.4(@typescript-eslint/eslint-plugin@8.1.0(@typescript-eslint/parser@8.1.0(eslint@9.9.0(jiti@1.21.6))(typescript@5.5.4))(eslint@9.9.0(jiti@1.21.6))(typescript@5.5.4))(eslint@9.9.0(jiti@1.21.6))(typescript@5.5.4)(vitest@2.0.5(@types/node@22.4.0)(jsdom@24.1.1)(less@4.2.0)(sass@1.77.8)(terser@5.31.6))
eslint-plugin-vue:
specifier: ^9.27.0
version: 9.27.0(eslint@9.9.0(jiti@1.21.6))
@@ -557,8 +565,8 @@ importers:
internal/tailwind-config:
dependencies:
'@iconify/json':
- specifier: ^2.2.237
- version: 2.2.237
+ specifier: ^2.2.238
+ version: 2.2.238
'@iconify/tailwind':
specifier: ^1.1.2
version: 1.1.2
@@ -607,13 +615,13 @@ importers:
version: link:../../packages/types
vite:
specifier: ^5.4.1
- version: 5.4.1(@types/node@22.3.0)(less@4.2.0)(sass@1.77.8)(terser@5.31.6)
+ version: 5.4.1(@types/node@22.4.0)(less@4.2.0)(sass@1.77.8)(terser@5.31.6)
internal/vite-config:
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.37(typescript@5.5.4)))
+ version: 4.0.0(rollup@4.20.0)(vue-i18n@9.14.0(vue@3.4.38(typescript@5.5.4)))
'@jspm/generator':
specifier: ^2.1.3
version: 2.1.3
@@ -634,13 +642,13 @@ importers:
version: 2.0.2
vite-plugin-lib-inject-css:
specifier: ^2.1.1
- version: 2.1.1(vite@5.4.1(@types/node@22.3.0)(less@4.2.0)(sass@1.77.8)(terser@5.31.6))
+ version: 2.1.1(vite@5.4.1(@types/node@22.4.0)(less@4.2.0)(sass@1.77.8)(terser@5.31.6))
vite-plugin-pwa:
specifier: ^0.20.1
- version: 0.20.1(vite@5.4.1(@types/node@22.3.0)(less@4.2.0)(sass@1.77.8)(terser@5.31.6))(workbox-build@7.1.1)(workbox-window@7.1.0)
+ version: 0.20.1(vite@5.4.1(@types/node@22.4.0)(less@4.2.0)(sass@1.77.8)(terser@5.31.6))(workbox-build@7.1.1)(workbox-window@7.1.0)
vite-plugin-vue-devtools:
specifier: ^7.3.8
- version: 7.3.8(rollup@4.20.0)(vite@5.4.1(@types/node@22.3.0)(less@4.2.0)(sass@1.77.8)(terser@5.31.6))(vue@3.4.37(typescript@5.5.4))
+ version: 7.3.8(rollup@4.20.0)(vite@5.4.1(@types/node@22.4.0)(less@4.2.0)(sass@1.77.8)(terser@5.31.6))(vue@3.4.38(typescript@5.5.4))
devDependencies:
'@types/html-minifier-terser':
specifier: ^7.0.2
@@ -650,10 +658,10 @@ importers:
version: link:../node-utils
'@vitejs/plugin-vue':
specifier: ^5.1.2
- version: 5.1.2(vite@5.4.1(@types/node@22.3.0)(less@4.2.0)(sass@1.77.8)(terser@5.31.6))(vue@3.4.37(typescript@5.5.4))
+ version: 5.1.2(vite@5.4.1(@types/node@22.4.0)(less@4.2.0)(sass@1.77.8)(terser@5.31.6))(vue@3.4.38(typescript@5.5.4))
'@vitejs/plugin-vue-jsx':
specifier: ^4.0.1
- version: 4.0.1(vite@5.4.1(@types/node@22.3.0)(less@4.2.0)(sass@1.77.8)(terser@5.31.6))(vue@3.4.37(typescript@5.5.4))
+ version: 4.0.1(vite@5.4.1(@types/node@22.4.0)(less@4.2.0)(sass@1.77.8)(terser@5.31.6))(vue@3.4.38(typescript@5.5.4))
dayjs:
specifier: ^1.11.12
version: 1.11.12
@@ -671,16 +679,16 @@ importers:
version: 1.77.8
vite:
specifier: ^5.4.1
- version: 5.4.1(@types/node@22.3.0)(less@4.2.0)(sass@1.77.8)(terser@5.31.6)
+ version: 5.4.1(@types/node@22.4.0)(less@4.2.0)(sass@1.77.8)(terser@5.31.6)
vite-plugin-compression:
specifier: ^0.5.1
- version: 0.5.1(vite@5.4.1(@types/node@22.3.0)(less@4.2.0)(sass@1.77.8)(terser@5.31.6))
+ version: 0.5.1(vite@5.4.1(@types/node@22.4.0)(less@4.2.0)(sass@1.77.8)(terser@5.31.6))
vite-plugin-dts:
specifier: 4.0.3
- version: 4.0.3(@types/node@22.3.0)(rollup@4.20.0)(typescript@5.5.4)(vite@5.4.1(@types/node@22.3.0)(less@4.2.0)(sass@1.77.8)(terser@5.31.6))
+ version: 4.0.3(@types/node@22.4.0)(rollup@4.20.0)(typescript@5.5.4)(vite@5.4.1(@types/node@22.4.0)(less@4.2.0)(sass@1.77.8)(terser@5.31.6))
vite-plugin-html:
specifier: ^3.2.2
- version: 3.2.2(vite@5.4.1(@types/node@22.3.0)(less@4.2.0)(sass@1.77.8)(terser@5.31.6))
+ version: 3.2.2(vite@5.4.1(@types/node@22.4.0)(less@4.2.0)(sass@1.77.8)(terser@5.31.6))
packages/@core/base/design: {}
@@ -688,21 +696,24 @@ importers:
dependencies:
'@iconify/vue':
specifier: ^4.1.2
- version: 4.1.2(vue@3.4.37(typescript@5.5.4))
+ version: 4.1.2(vue@3.4.38(typescript@5.5.4))
lucide-vue-next:
specifier: ^0.428.0
- version: 0.428.0(vue@3.4.37(typescript@5.5.4))
+ version: 0.428.0(vue@3.4.38(typescript@5.5.4))
vue:
- specifier: 3.4.37
- version: 3.4.37(typescript@5.5.4)
+ specifier: 3.4.38
+ version: 3.4.38(typescript@5.5.4)
packages/@core/base/shared:
dependencies:
'@ctrl/tinycolor':
specifier: 4.1.0
version: 4.1.0
+ '@tanstack/vue-store':
+ specifier: ^0.5.5
+ version: 0.5.5(vue@3.4.38(typescript@5.5.4))
'@vue/shared':
- specifier: ^3.4.37
+ specifier: ^3.4.38
version: 3.4.38
clsx:
specifier: 2.1.1
@@ -733,11 +744,11 @@ importers:
packages/@core/base/typings:
dependencies:
vue:
- specifier: 3.4.37
- version: 3.4.37(typescript@5.5.4)
+ specifier: 3.4.38
+ version: 3.4.38(typescript@5.5.4)
vue-router:
specifier: ^4.4.3
- version: 4.4.3(vue@3.4.37(typescript@5.5.4))
+ version: 4.4.3(vue@3.4.38(typescript@5.5.4))
packages/@core/composables:
dependencies:
@@ -746,16 +757,16 @@ importers:
version: link:../base/shared
'@vueuse/core':
specifier: ^11.0.0
- version: 11.0.0(vue@3.4.37(typescript@5.5.4))
+ version: 11.0.0(vue@3.4.38(typescript@5.5.4))
radix-vue:
specifier: ^1.9.4
- version: 1.9.4(vue@3.4.37(typescript@5.5.4))
+ version: 1.9.4(vue@3.4.38(typescript@5.5.4))
sortablejs:
specifier: ^1.15.2
version: 1.15.2
vue:
- specifier: 3.4.37
- version: 3.4.37(typescript@5.5.4)
+ specifier: 3.4.38
+ version: 3.4.38(typescript@5.5.4)
devDependencies:
'@types/sortablejs':
specifier: ^1.15.8
@@ -771,10 +782,10 @@ importers:
version: link:../base/typings
'@vueuse/core':
specifier: ^11.0.0
- version: 11.0.0(vue@3.4.37(typescript@5.5.4))
+ version: 11.0.0(vue@3.4.38(typescript@5.5.4))
vue:
- specifier: 3.4.37
- version: 3.4.37(typescript@5.5.4)
+ specifier: 3.4.38
+ version: 3.4.38(typescript@5.5.4)
packages/@core/ui-kit/layout-ui:
dependencies:
@@ -792,10 +803,10 @@ importers:
version: link:../../base/typings
'@vueuse/core':
specifier: ^11.0.0
- version: 11.0.0(vue@3.4.37(typescript@5.5.4))
+ version: 11.0.0(vue@3.4.38(typescript@5.5.4))
vue:
- specifier: 3.4.37
- version: 3.4.37(typescript@5.5.4)
+ specifier: 3.4.38
+ version: 3.4.38(typescript@5.5.4)
packages/@core/ui-kit/menu-ui:
dependencies:
@@ -816,16 +827,16 @@ importers:
version: link:../../base/typings
'@vueuse/core':
specifier: ^11.0.0
- version: 11.0.0(vue@3.4.37(typescript@5.5.4))
+ version: 11.0.0(vue@3.4.38(typescript@5.5.4))
vue:
- specifier: 3.4.37
- version: 3.4.37(typescript@5.5.4)
+ specifier: 3.4.38
+ version: 3.4.38(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.37(typescript@5.5.4))
+ version: 1.0.0(vue@3.4.38(typescript@5.5.4))
'@vben-core/icons':
specifier: workspace:*
version: link:../../base/icons
@@ -837,19 +848,19 @@ importers:
version: link:../../base/typings
'@vueuse/core':
specifier: ^11.0.0
- version: 11.0.0(vue@3.4.37(typescript@5.5.4))
+ version: 11.0.0(vue@3.4.38(typescript@5.5.4))
class-variance-authority:
specifier: ^0.7.0
version: 0.7.0
lucide-vue-next:
specifier: ^0.428.0
- version: 0.428.0(vue@3.4.37(typescript@5.5.4))
+ version: 0.428.0(vue@3.4.38(typescript@5.5.4))
radix-vue:
specifier: ^1.9.4
- version: 1.9.4(vue@3.4.37(typescript@5.5.4))
+ version: 1.9.4(vue@3.4.38(typescript@5.5.4))
vue:
- specifier: 3.4.37
- version: 3.4.37(typescript@5.5.4)
+ specifier: 3.4.38
+ version: 3.4.38(typescript@5.5.4)
packages/@core/ui-kit/tabs-ui:
dependencies:
@@ -867,10 +878,10 @@ importers:
version: link:../../base/typings
'@vueuse/core':
specifier: ^11.0.0
- version: 11.0.0(vue@3.4.37(typescript@5.5.4))
+ version: 11.0.0(vue@3.4.38(typescript@5.5.4))
vue:
- specifier: 3.4.37
- version: 3.4.37(typescript@5.5.4)
+ specifier: 3.4.38
+ version: 3.4.38(typescript@5.5.4)
packages/constants:
dependencies:
@@ -893,8 +904,8 @@ importers:
specifier: workspace:*
version: link:../../utils
vue:
- specifier: 3.4.37
- version: 3.4.37(typescript@5.5.4)
+ specifier: 3.4.38
+ version: 3.4.38(typescript@5.5.4)
packages/effects/chart-ui:
dependencies:
@@ -903,13 +914,13 @@ importers:
version: link:../../preferences
'@vueuse/core':
specifier: ^11.0.0
- version: 11.0.0(vue@3.4.37(typescript@5.5.4))
+ version: 11.0.0(vue@3.4.38(typescript@5.5.4))
echarts:
specifier: ^5.5.1
version: 5.5.1
vue:
- specifier: 3.4.37
- version: 3.4.37(typescript@5.5.4)
+ specifier: 3.4.38
+ version: 3.4.38(typescript@5.5.4)
packages/effects/common-ui:
dependencies:
@@ -933,16 +944,16 @@ importers:
version: link:../../types
'@vueuse/integrations':
specifier: ^11.0.0
- version: 11.0.0(async-validator@4.2.5)(axios@1.7.4)(focus-trap@7.5.4)(nprogress@0.2.0)(qrcode@1.5.4)(sortablejs@1.15.2)(vue@3.4.37(typescript@5.5.4))
+ version: 11.0.0(async-validator@4.2.5)(axios@1.7.4)(focus-trap@7.5.4)(nprogress@0.2.0)(qrcode@1.5.4)(sortablejs@1.15.2)(vue@3.4.38(typescript@5.5.4))
qrcode:
specifier: ^1.5.4
version: 1.5.4
vue:
- specifier: 3.4.37
- version: 3.4.37(typescript@5.5.4)
+ specifier: 3.4.38
+ version: 3.4.38(typescript@5.5.4)
vue-router:
specifier: ^4.4.3
- version: 4.4.3(vue@3.4.37(typescript@5.5.4))
+ version: 4.4.3(vue@3.4.38(typescript@5.5.4))
devDependencies:
'@types/qrcode':
specifier: ^1.5.5
@@ -966,11 +977,11 @@ importers:
specifier: workspace:*
version: link:../../utils
vue:
- specifier: 3.4.37
- version: 3.4.37(typescript@5.5.4)
+ specifier: 3.4.38
+ version: 3.4.38(typescript@5.5.4)
vue-router:
specifier: ^4.4.3
- version: 4.4.3(vue@3.4.37(typescript@5.5.4))
+ version: 4.4.3(vue@3.4.38(typescript@5.5.4))
watermark-js-plus:
specifier: ^1.5.3
version: 1.5.3
@@ -1015,13 +1026,13 @@ importers:
version: link:../../utils
'@vueuse/core':
specifier: ^11.0.0
- version: 11.0.0(vue@3.4.37(typescript@5.5.4))
+ version: 11.0.0(vue@3.4.38(typescript@5.5.4))
vue:
- specifier: 3.4.37
- version: 3.4.37(typescript@5.5.4)
+ specifier: 3.4.38
+ version: 3.4.38(typescript@5.5.4)
vue-router:
specifier: ^4.4.3
- version: 4.4.3(vue@3.4.37(typescript@5.5.4))
+ version: 4.4.3(vue@3.4.38(typescript@5.5.4))
packages/effects/request:
dependencies:
@@ -1048,14 +1059,14 @@ importers:
packages/locales:
dependencies:
'@intlify/core-base':
- specifier: ^9.13.1
- version: 9.13.1
+ specifier: ^9.14.0
+ version: 9.14.0
vue:
- specifier: 3.4.37
- version: 3.4.37(typescript@5.5.4)
+ specifier: 3.4.38
+ version: 3.4.38(typescript@5.5.4)
vue-i18n:
- specifier: ^9.13.1
- version: 9.13.1(vue@3.4.37(typescript@5.5.4))
+ specifier: ^9.14.0
+ version: 9.14.0(vue@3.4.38(typescript@5.5.4))
packages/preferences:
dependencies:
@@ -1076,16 +1087,16 @@ importers:
version: link:../@core/base/typings
pinia:
specifier: 2.2.2
- version: 2.2.2(typescript@5.5.4)(vue@3.4.37(typescript@5.5.4))
+ version: 2.2.2(typescript@5.5.4)(vue@3.4.38(typescript@5.5.4))
pinia-plugin-persistedstate:
specifier: ^3.2.1
- version: 3.2.1(pinia@2.2.2(typescript@5.5.4)(vue@3.4.37(typescript@5.5.4)))
+ version: 3.2.1(pinia@2.2.2(typescript@5.5.4)(vue@3.4.38(typescript@5.5.4)))
vue:
- specifier: 3.4.37
- version: 3.4.37(typescript@5.5.4)
+ specifier: 3.4.38
+ version: 3.4.38(typescript@5.5.4)
vue-router:
specifier: ^4.4.3
- version: 4.4.3(vue@3.4.37(typescript@5.5.4))
+ version: 4.4.3(vue@3.4.38(typescript@5.5.4))
packages/styles:
dependencies:
@@ -1099,11 +1110,11 @@ importers:
specifier: workspace:*
version: link:../@core/base/typings
vue:
- specifier: 3.4.37
- version: 3.4.37(typescript@5.5.4)
+ specifier: 3.4.38
+ version: 3.4.38(typescript@5.5.4)
vue-router:
specifier: ^4.4.3
- version: 4.4.3(vue@3.4.37(typescript@5.5.4))
+ version: 4.4.3(vue@3.4.38(typescript@5.5.4))
packages/utils:
dependencies:
@@ -1115,7 +1126,7 @@ importers:
version: link:../@core/base/typings
vue-router:
specifier: ^4.4.3
- version: 4.4.3(vue@3.4.37(typescript@5.5.4))
+ version: 4.4.3(vue@3.4.38(typescript@5.5.4))
playground:
dependencies:
@@ -1163,22 +1174,22 @@ importers:
version: link:../packages/utils
'@vueuse/core':
specifier: ^11.0.0
- version: 11.0.0(vue@3.4.37(typescript@5.5.4))
+ version: 11.0.0(vue@3.4.38(typescript@5.5.4))
ant-design-vue:
specifier: ^4.2.3
- version: 4.2.3(vue@3.4.37(typescript@5.5.4))
+ version: 4.2.3(vue@3.4.38(typescript@5.5.4))
dayjs:
specifier: ^1.11.12
version: 1.11.12
pinia:
specifier: 2.2.2
- version: 2.2.2(typescript@5.5.4)(vue@3.4.37(typescript@5.5.4))
+ version: 2.2.2(typescript@5.5.4)(vue@3.4.38(typescript@5.5.4))
vue:
- specifier: 3.4.37
- version: 3.4.37(typescript@5.5.4)
+ specifier: 3.4.38
+ version: 3.4.38(typescript@5.5.4)
vue-router:
specifier: ^4.4.3
- version: 4.4.3(vue@3.4.37(typescript@5.5.4))
+ version: 4.4.3(vue@3.4.38(typescript@5.5.4))
scripts/turbo-run:
dependencies:
@@ -1294,7 +1305,7 @@ packages:
'@ant-design/icons-vue@7.0.1':
resolution: {integrity: sha512-eCqY2unfZK6Fe02AwFlDHLfoyEFreP6rBwAZMIJ1LugmfMiVgwWDYlp1YsRugaPtICYOabV1iWxXdP12u9U43Q==}
peerDependencies:
- vue: 3.4.37
+ vue: 3.4.38
'@antfu/utils@0.7.10':
resolution: {integrity: sha512-+562v9k4aI80m1+VuMHehNJWLOFjBnXn3tdOitzD0il5b7smkSBal4+a3oKiQTbrwMmN/TBUMDvbdoWDehgOww==}
@@ -2167,28 +2178,28 @@ packages:
resolution: {integrity: sha512-tpyc+7i6bPG9mvaBbtKUeghfyZSDgWquIDfMgqYtTbmZ9Y9VzEm2je9EYcQ0aoz5o7NvGS+rcDec93yO08MHYA==}
engines: {node: '>=v18'}
- '@cspell/cspell-bundled-dicts@8.13.3':
- resolution: {integrity: sha512-OfCxUBMyayxKyeDaUZG3LQpiyH8MFUbg9nbIZCGh2x8U6N0fHaP9uR6R+gPzdi/bJp32Kr+RC/Yebojd+AQCGA==}
+ '@cspell/cspell-bundled-dicts@8.14.1':
+ resolution: {integrity: sha512-yM5cDCbkGttCWBQuSseECHGFF2h1RpX/ZI1I+evuFBW+eYMJm2JeNLDFyuAu7TzCsNtA+PZMs3ctqIP9xg9hHg==}
engines: {node: '>=18'}
- '@cspell/cspell-json-reporter@8.13.3':
- resolution: {integrity: sha512-QrHxWkm0cfD+rTjFOxm5lpE4+wBANDzMIM8NOeQC6v8Dc1L8PUkm6hF6CsEv2tKmuwvdVr+jy6GilDMkPXalCg==}
+ '@cspell/cspell-json-reporter@8.14.1':
+ resolution: {integrity: sha512-eJpgmocT+DY+uy9+sHCz6Ir8YVg7b/hnf5N7dITHlI8dnzgoScTZG2nZhVhJozrgb44B1dZuJzVR1DBLKgZY8A==}
engines: {node: '>=18'}
- '@cspell/cspell-pipe@8.13.3':
- resolution: {integrity: sha512-6a9Zd+fDltgXoJ0fosWqEMx0UdXBXZ7iakhslMNPRmv7GhVAoHBoIXzMVilOE4kYT2Mh/9NM/QW/NbNEpneZIQ==}
+ '@cspell/cspell-pipe@8.14.1':
+ resolution: {integrity: sha512-KSFu/yyoJekezT9Ex5vgyI0a9tpRVXV4KEfOfL1gH/xbWBTiYx+RyEWEefebMxlMp7tdJiNI7HI0vvJ6YdUdsA==}
engines: {node: '>=18'}
- '@cspell/cspell-resolver@8.13.3':
- resolution: {integrity: sha512-vlwtMTEWsPPtWfktzT75eGQ0n+0M+9kN+89eSvUUYdCfvY9XAS6z+bTmhS2ULJgntgWtX6gUjABQK0PYYVedOg==}
+ '@cspell/cspell-resolver@8.14.1':
+ resolution: {integrity: sha512-MMr3L1yrhITH8eG0fvXNEMo94g4MGSIeHzKKvq40fr39Oox/1MBxYAbWiI2NQ/Bxnbq854SY8pfwTSKjyNEGig==}
engines: {node: '>=18'}
- '@cspell/cspell-service-bus@8.13.3':
- resolution: {integrity: sha512-mFkeWXwGQSDxRiN6Kez77GaMNGNgG7T6o9UE42jyXEgf/bLJTpefbUy4fY5pU3p2mA0eoMzmnJX8l+TC5YJpbA==}
+ '@cspell/cspell-service-bus@8.14.1':
+ resolution: {integrity: sha512-uKrrCLvEkmAPB4vjUw9GM+B3TV2VsWpV6L3wkcQ9+zn9iPYgYk2WkvSHlOunnZ4u1TzcTdd88ZQtMjati3DLCg==}
engines: {node: '>=18'}
- '@cspell/cspell-types@8.13.3':
- resolution: {integrity: sha512-lA5GbhLOL6FlKCWNMbooRFgNGfTsM6NJnHz60+EEN7XD9OgpFc7w+MBcK4aHsVCxcrIvnejIc8xQDqPnrdmN3w==}
+ '@cspell/cspell-types@8.14.1':
+ resolution: {integrity: sha512-E7tgF6867gsjttITAXF+8nS4BjZ4JQW4Gbrse1RP7jdW7y1biXipBfZxngsEbnR209MrZAnSobS40m9ih7gWfQ==}
engines: {node: '>=18'}
'@cspell/dict-ada@4.0.2':
@@ -2350,16 +2361,20 @@ packages:
'@cspell/dict-vue@3.0.0':
resolution: {integrity: sha512-niiEMPWPV9IeRBRzZ0TBZmNnkK3olkOPYxC1Ny2AX4TGlYRajcW0WUtoSHmvvjZNfWLSg2L6ruiBeuPSbjnG6A==}
- '@cspell/dynamic-import@8.13.3':
- resolution: {integrity: sha512-YN83CFWnMkt9B0q0RBadfEoptUaDRqBikh8b91MOQ0haEnUo6t57j4jAaLnbIEP4ynzMhgruWFKpIC/QaEtCuA==}
+ '@cspell/dynamic-import@8.14.1':
+ resolution: {integrity: sha512-zGnymwieuFigqz839cKCF9JB90nUm50SMqopWClMl4LFOpqpuCucn/Slh4CLGu2vri4iqCvRweDxZCsi/5qYiw==}
engines: {node: '>=18.0'}
- '@cspell/strong-weak-map@8.13.3':
- resolution: {integrity: sha512-/QYUEthesPuDarOHa6kcWKJmVq0HIotjPrmAWQ5QpH+dDik1Qin4G/9QdnWX75ueR4DC4WFjBNBU14C4TVSwHQ==}
+ '@cspell/filetypes@8.14.1':
+ resolution: {integrity: sha512-jOcTFzHJ3c1uTZLm3BvLrZ8TakXLIimsFGwvk/qTA1EYgUPC2a0TypGCxR0NCHmpMlZvfAT5iAksDIiCHq1yjg==}
engines: {node: '>=18'}
- '@cspell/url@8.13.3':
- resolution: {integrity: sha512-hsxoTnZHwtdR2x9QEE6yfDBB1LUwAj67o1GyKTvI8A2OE/AfzAttirZs+9sxgOGWoBdTOxM9sMLtqB3SxtDB3A==}
+ '@cspell/strong-weak-map@8.14.1':
+ resolution: {integrity: sha512-idQVm12vzQHLMpV4ETDFBPpSP7TTf0hRrdsY5i/La6uzZE05b5QxadfInNtbKV/Tf2OpjV3dygALOo2932xChw==}
+ engines: {node: '>=18'}
+
+ '@cspell/url@8.14.1':
+ resolution: {integrity: sha512-K8TSiDti+mhuITezwr0fpmD756Y52cbJdxAgoXioL3Ri6ZoyQyhyhsJFeE6kNZLq24KwddZa8WJaY7hHKylygg==}
engines: {node: '>=18.0'}
'@css-render/plugin-bem@0.15.14':
@@ -2370,7 +2385,7 @@ packages:
'@css-render/vue3-ssr@0.15.14':
resolution: {integrity: sha512-//8027GSbxE9n3QlD73xFY6z4ZbHbvrOVB7AO6hsmrEzGbg+h2A09HboUyDgu+xsmj7JnvJD39Irt+2D0+iV8g==}
peerDependencies:
- vue: 3.4.37
+ vue: 3.4.38
'@csstools/cascade-layer-name-parser@2.0.0':
resolution: {integrity: sha512-9GEQIvTMrjXfYaVnw1+FteDX5yF65CZq4ttYP75O3CANQevaCJ9jVVTiZt9YTpjYIk8C1mmf52y2S4Hr/CaE/g==}
@@ -2662,7 +2677,7 @@ packages:
'@element-plus/icons-vue@2.3.1':
resolution: {integrity: sha512-XxVUZv48RZAd87ucGS48jPf6pKu0yV5UCg9f4FFwtrYxXOwWuVJo6wOvSLKEoMQKjv8GsX/mhP6UsC1lRwbUWg==}
peerDependencies:
- vue: 3.4.37
+ vue: 3.4.38
'@emotion/hash@0.8.0':
resolution: {integrity: sha512-kBJtf7PH6aWwZ6fka3zQ0p6SBYzx4fl1LoZXE2RrnYST9Xljm7WfKJrU4g/Xr3Beg72MLrp1AWNUmuYJTL7Cow==}
@@ -2699,8 +2714,8 @@ packages:
cpu: [ppc64]
os: [aix]
- '@esbuild/aix-ppc64@0.23.0':
- resolution: {integrity: sha512-3sG8Zwa5fMcA9bgqB8AfWPQ+HFke6uD3h1s3RIwUNK8EG7a4buxvuFTs3j1IMs2NXAk9F30C/FF4vxRgQCcmoQ==}
+ '@esbuild/aix-ppc64@0.23.1':
+ resolution: {integrity: sha512-6VhYk1diRqrhBAqpJEdjASR/+WVRtfjpqKuNw11cLiaWpAT/Uu+nokB+UJnevzy/P9C/ty6AOe0dwueMrGh/iQ==}
engines: {node: '>=18'}
cpu: [ppc64]
os: [aix]
@@ -2723,8 +2738,8 @@ packages:
cpu: [arm64]
os: [android]
- '@esbuild/android-arm64@0.23.0':
- resolution: {integrity: sha512-EuHFUYkAVfU4qBdyivULuu03FhJO4IJN9PGuABGrFy4vUuzk91P2d+npxHcFdpUnfYKy0PuV+n6bKIpHOB3prQ==}
+ '@esbuild/android-arm64@0.23.1':
+ resolution: {integrity: sha512-xw50ipykXcLstLeWH7WRdQuysJqejuAGPd30vd1i5zSyKK3WE+ijzHmLKxdiCMtH1pHz78rOg0BKSYOSB/2Khw==}
engines: {node: '>=18'}
cpu: [arm64]
os: [android]
@@ -2747,8 +2762,8 @@ packages:
cpu: [arm]
os: [android]
- '@esbuild/android-arm@0.23.0':
- resolution: {integrity: sha512-+KuOHTKKyIKgEEqKbGTK8W7mPp+hKinbMBeEnNzjJGyFcWsfrXjSTNluJHCY1RqhxFurdD8uNXQDei7qDlR6+g==}
+ '@esbuild/android-arm@0.23.1':
+ resolution: {integrity: sha512-uz6/tEy2IFm9RYOyvKl88zdzZfwEfKZmnX9Cj1BHjeSGNuGLuMD1kR8y5bteYmwqKm1tj8m4cb/aKEorr6fHWQ==}
engines: {node: '>=18'}
cpu: [arm]
os: [android]
@@ -2771,8 +2786,8 @@ packages:
cpu: [x64]
os: [android]
- '@esbuild/android-x64@0.23.0':
- resolution: {integrity: sha512-WRrmKidLoKDl56LsbBMhzTTBxrsVwTKdNbKDalbEZr0tcsBgCLbEtoNthOW6PX942YiYq8HzEnb4yWQMLQuipQ==}
+ '@esbuild/android-x64@0.23.1':
+ resolution: {integrity: sha512-nlN9B69St9BwUoB+jkyU090bru8L0NA3yFvAd7k8dNsVH8bi9a8cUAUSEcEEgTp2z3dbEDGJGfP6VUnkQnlReg==}
engines: {node: '>=18'}
cpu: [x64]
os: [android]
@@ -2795,8 +2810,8 @@ packages:
cpu: [arm64]
os: [darwin]
- '@esbuild/darwin-arm64@0.23.0':
- resolution: {integrity: sha512-YLntie/IdS31H54Ogdn+v50NuoWF5BDkEUFpiOChVa9UnKpftgwzZRrI4J132ETIi+D8n6xh9IviFV3eXdxfow==}
+ '@esbuild/darwin-arm64@0.23.1':
+ resolution: {integrity: sha512-YsS2e3Wtgnw7Wq53XXBLcV6JhRsEq8hkfg91ESVadIrzr9wO6jJDMZnCQbHm1Guc5t/CdDiFSSfWP58FNuvT3Q==}
engines: {node: '>=18'}
cpu: [arm64]
os: [darwin]
@@ -2819,8 +2834,8 @@ packages:
cpu: [x64]
os: [darwin]
- '@esbuild/darwin-x64@0.23.0':
- resolution: {integrity: sha512-IMQ6eme4AfznElesHUPDZ+teuGwoRmVuuixu7sv92ZkdQcPbsNHzutd+rAfaBKo8YK3IrBEi9SLLKWJdEvJniQ==}
+ '@esbuild/darwin-x64@0.23.1':
+ resolution: {integrity: sha512-aClqdgTDVPSEGgoCS8QDG37Gu8yc9lTHNAQlsztQ6ENetKEO//b8y31MMu2ZaPbn4kVsIABzVLXYLhCGekGDqw==}
engines: {node: '>=18'}
cpu: [x64]
os: [darwin]
@@ -2843,8 +2858,8 @@ packages:
cpu: [arm64]
os: [freebsd]
- '@esbuild/freebsd-arm64@0.23.0':
- resolution: {integrity: sha512-0muYWCng5vqaxobq6LB3YNtevDFSAZGlgtLoAc81PjUfiFz36n4KMpwhtAd4he8ToSI3TGyuhyx5xmiWNYZFyw==}
+ '@esbuild/freebsd-arm64@0.23.1':
+ resolution: {integrity: sha512-h1k6yS8/pN/NHlMl5+v4XPfikhJulk4G+tKGFIOwURBSFzE8bixw1ebjluLOjfwtLqY0kewfjLSrO6tN2MgIhA==}
engines: {node: '>=18'}
cpu: [arm64]
os: [freebsd]
@@ -2867,8 +2882,8 @@ packages:
cpu: [x64]
os: [freebsd]
- '@esbuild/freebsd-x64@0.23.0':
- resolution: {integrity: sha512-XKDVu8IsD0/q3foBzsXGt/KjD/yTKBCIwOHE1XwiXmrRwrX6Hbnd5Eqn/WvDekddK21tfszBSrE/WMaZh+1buQ==}
+ '@esbuild/freebsd-x64@0.23.1':
+ resolution: {integrity: sha512-lK1eJeyk1ZX8UklqFd/3A60UuZ/6UVfGT2LuGo3Wp4/z7eRTRYY+0xOu2kpClP+vMTi9wKOfXi2vjUpO1Ro76g==}
engines: {node: '>=18'}
cpu: [x64]
os: [freebsd]
@@ -2891,8 +2906,8 @@ packages:
cpu: [arm64]
os: [linux]
- '@esbuild/linux-arm64@0.23.0':
- resolution: {integrity: sha512-j1t5iG8jE7BhonbsEg5d9qOYcVZv/Rv6tghaXM/Ug9xahM0nX/H2gfu6X6z11QRTMT6+aywOMA8TDkhPo8aCGw==}
+ '@esbuild/linux-arm64@0.23.1':
+ resolution: {integrity: sha512-/93bf2yxencYDnItMYV/v116zff6UyTjo4EtEQjUBeGiVpMmffDNUyD9UN2zV+V3LRV3/on4xdZ26NKzn6754g==}
engines: {node: '>=18'}
cpu: [arm64]
os: [linux]
@@ -2915,8 +2930,8 @@ packages:
cpu: [arm]
os: [linux]
- '@esbuild/linux-arm@0.23.0':
- resolution: {integrity: sha512-SEELSTEtOFu5LPykzA395Mc+54RMg1EUgXP+iw2SJ72+ooMwVsgfuwXo5Fn0wXNgWZsTVHwY2cg4Vi/bOD88qw==}
+ '@esbuild/linux-arm@0.23.1':
+ resolution: {integrity: sha512-CXXkzgn+dXAPs3WBwE+Kvnrf4WECwBdfjfeYHpMeVxWE0EceB6vhWGShs6wi0IYEqMSIzdOF1XjQ/Mkm5d7ZdQ==}
engines: {node: '>=18'}
cpu: [arm]
os: [linux]
@@ -2939,8 +2954,8 @@ packages:
cpu: [ia32]
os: [linux]
- '@esbuild/linux-ia32@0.23.0':
- resolution: {integrity: sha512-P7O5Tkh2NbgIm2R6x1zGJJsnacDzTFcRWZyTTMgFdVit6E98LTxO+v8LCCLWRvPrjdzXHx9FEOA8oAZPyApWUA==}
+ '@esbuild/linux-ia32@0.23.1':
+ resolution: {integrity: sha512-VTN4EuOHwXEkXzX5nTvVY4s7E/Krz7COC8xkftbbKRYAl96vPiUssGkeMELQMOnLOJ8k3BY1+ZY52tttZnHcXQ==}
engines: {node: '>=18'}
cpu: [ia32]
os: [linux]
@@ -2963,8 +2978,8 @@ packages:
cpu: [loong64]
os: [linux]
- '@esbuild/linux-loong64@0.23.0':
- resolution: {integrity: sha512-InQwepswq6urikQiIC/kkx412fqUZudBO4SYKu0N+tGhXRWUqAx+Q+341tFV6QdBifpjYgUndV1hhMq3WeJi7A==}
+ '@esbuild/linux-loong64@0.23.1':
+ resolution: {integrity: sha512-Vx09LzEoBa5zDnieH8LSMRToj7ir/Jeq0Gu6qJ/1GcBq9GkfoEAoXvLiW1U9J1qE/Y/Oyaq33w5p2ZWrNNHNEw==}
engines: {node: '>=18'}
cpu: [loong64]
os: [linux]
@@ -2987,8 +3002,8 @@ packages:
cpu: [mips64el]
os: [linux]
- '@esbuild/linux-mips64el@0.23.0':
- resolution: {integrity: sha512-J9rflLtqdYrxHv2FqXE2i1ELgNjT+JFURt/uDMoPQLcjWQA5wDKgQA4t/dTqGa88ZVECKaD0TctwsUfHbVoi4w==}
+ '@esbuild/linux-mips64el@0.23.1':
+ resolution: {integrity: sha512-nrFzzMQ7W4WRLNUOU5dlWAqa6yVeI0P78WKGUo7lg2HShq/yx+UYkeNSE0SSfSure0SqgnsxPvmAUu/vu0E+3Q==}
engines: {node: '>=18'}
cpu: [mips64el]
os: [linux]
@@ -3011,8 +3026,8 @@ packages:
cpu: [ppc64]
os: [linux]
- '@esbuild/linux-ppc64@0.23.0':
- resolution: {integrity: sha512-cShCXtEOVc5GxU0fM+dsFD10qZ5UpcQ8AM22bYj0u/yaAykWnqXJDpd77ublcX6vdDsWLuweeuSNZk4yUxZwtw==}
+ '@esbuild/linux-ppc64@0.23.1':
+ resolution: {integrity: sha512-dKN8fgVqd0vUIjxuJI6P/9SSSe/mB9rvA98CSH2sJnlZ/OCZWO1DJvxj8jvKTfYUdGfcq2dDxoKaC6bHuTlgcw==}
engines: {node: '>=18'}
cpu: [ppc64]
os: [linux]
@@ -3035,8 +3050,8 @@ packages:
cpu: [riscv64]
os: [linux]
- '@esbuild/linux-riscv64@0.23.0':
- resolution: {integrity: sha512-HEtaN7Y5UB4tZPeQmgz/UhzoEyYftbMXrBCUjINGjh3uil+rB/QzzpMshz3cNUxqXN7Vr93zzVtpIDL99t9aRw==}
+ '@esbuild/linux-riscv64@0.23.1':
+ resolution: {integrity: sha512-5AV4Pzp80fhHL83JM6LoA6pTQVWgB1HovMBsLQ9OZWLDqVY8MVobBXNSmAJi//Csh6tcY7e7Lny2Hg1tElMjIA==}
engines: {node: '>=18'}
cpu: [riscv64]
os: [linux]
@@ -3059,8 +3074,8 @@ packages:
cpu: [s390x]
os: [linux]
- '@esbuild/linux-s390x@0.23.0':
- resolution: {integrity: sha512-WDi3+NVAuyjg/Wxi+o5KPqRbZY0QhI9TjrEEm+8dmpY9Xir8+HE/HNx2JoLckhKbFopW0RdO2D72w8trZOV+Wg==}
+ '@esbuild/linux-s390x@0.23.1':
+ resolution: {integrity: sha512-9ygs73tuFCe6f6m/Tb+9LtYxWR4c9yg7zjt2cYkjDbDpV/xVn+68cQxMXCjUpYwEkze2RcU/rMnfIXNRFmSoDw==}
engines: {node: '>=18'}
cpu: [s390x]
os: [linux]
@@ -3083,8 +3098,8 @@ packages:
cpu: [x64]
os: [linux]
- '@esbuild/linux-x64@0.23.0':
- resolution: {integrity: sha512-a3pMQhUEJkITgAw6e0bWA+F+vFtCciMjW/LPtoj99MhVt+Mfb6bbL9hu2wmTZgNd994qTAEw+U/r6k3qHWWaOQ==}
+ '@esbuild/linux-x64@0.23.1':
+ resolution: {integrity: sha512-EV6+ovTsEXCPAp58g2dD68LxoP/wK5pRvgy0J/HxPGB009omFPv3Yet0HiaqvrIrgPTBuC6wCH1LTOY91EO5hQ==}
engines: {node: '>=18'}
cpu: [x64]
os: [linux]
@@ -3107,14 +3122,14 @@ packages:
cpu: [x64]
os: [netbsd]
- '@esbuild/netbsd-x64@0.23.0':
- resolution: {integrity: sha512-cRK+YDem7lFTs2Q5nEv/HHc4LnrfBCbH5+JHu6wm2eP+d8OZNoSMYgPZJq78vqQ9g+9+nMuIsAO7skzphRXHyw==}
+ '@esbuild/netbsd-x64@0.23.1':
+ resolution: {integrity: sha512-aevEkCNu7KlPRpYLjwmdcuNz6bDFiE7Z8XC4CPqExjTvrHugh28QzUXVOZtiYghciKUacNktqxdpymplil1beA==}
engines: {node: '>=18'}
cpu: [x64]
os: [netbsd]
- '@esbuild/openbsd-arm64@0.23.0':
- resolution: {integrity: sha512-suXjq53gERueVWu0OKxzWqk7NxiUWSUlrxoZK7usiF50C6ipColGR5qie2496iKGYNLhDZkPxBI3erbnYkU0rQ==}
+ '@esbuild/openbsd-arm64@0.23.1':
+ resolution: {integrity: sha512-3x37szhLexNA4bXhLrCC/LImN/YtWis6WXr1VESlfVtVeoFJBRINPJ3f0a/6LV8zpikqoUg4hyXw0sFBt5Cr+Q==}
engines: {node: '>=18'}
cpu: [arm64]
os: [openbsd]
@@ -3137,8 +3152,8 @@ packages:
cpu: [x64]
os: [openbsd]
- '@esbuild/openbsd-x64@0.23.0':
- resolution: {integrity: sha512-6p3nHpby0DM/v15IFKMjAaayFhqnXV52aEmv1whZHX56pdkK+MEaLoQWj+H42ssFarP1PcomVhbsR4pkz09qBg==}
+ '@esbuild/openbsd-x64@0.23.1':
+ resolution: {integrity: sha512-aY2gMmKmPhxfU+0EdnN+XNtGbjfQgwZj43k8G3fyrDM/UdZww6xrWxmDkuz2eCZchqVeABjV5BpildOrUbBTqA==}
engines: {node: '>=18'}
cpu: [x64]
os: [openbsd]
@@ -3161,8 +3176,8 @@ packages:
cpu: [x64]
os: [sunos]
- '@esbuild/sunos-x64@0.23.0':
- resolution: {integrity: sha512-BFelBGfrBwk6LVrmFzCq1u1dZbG4zy/Kp93w2+y83Q5UGYF1d8sCzeLI9NXjKyujjBBniQa8R8PzLFAUrSM9OA==}
+ '@esbuild/sunos-x64@0.23.1':
+ resolution: {integrity: sha512-RBRT2gqEl0IKQABT4XTj78tpk9v7ehp+mazn2HbUeZl1YMdaGAQqhapjGTCe7uw7y0frDi4gS0uHzhvpFuI1sA==}
engines: {node: '>=18'}
cpu: [x64]
os: [sunos]
@@ -3185,8 +3200,8 @@ packages:
cpu: [arm64]
os: [win32]
- '@esbuild/win32-arm64@0.23.0':
- resolution: {integrity: sha512-lY6AC8p4Cnb7xYHuIxQ6iYPe6MfO2CC43XXKo9nBXDb35krYt7KGhQnOkRGar5psxYkircpCqfbNDB4uJbS2jQ==}
+ '@esbuild/win32-arm64@0.23.1':
+ resolution: {integrity: sha512-4O+gPR5rEBe2FpKOVyiJ7wNDPA8nGzDuJ6gN4okSA1gEOYZ67N8JPk58tkWtdtPeLz7lBnY6I5L3jdsr3S+A6A==}
engines: {node: '>=18'}
cpu: [arm64]
os: [win32]
@@ -3209,8 +3224,8 @@ packages:
cpu: [ia32]
os: [win32]
- '@esbuild/win32-ia32@0.23.0':
- resolution: {integrity: sha512-7L1bHlOTcO4ByvI7OXVI5pNN6HSu6pUQq9yodga8izeuB1KcT2UkHaH6118QJwopExPn0rMHIseCTx1CRo/uNA==}
+ '@esbuild/win32-ia32@0.23.1':
+ resolution: {integrity: sha512-BcaL0Vn6QwCwre3Y717nVHZbAa4UBEigzFm6VdsVdT/MbZ38xoj1X9HPkZhbmaBGUD1W8vxAfffbDe8bA6AKnQ==}
engines: {node: '>=18'}
cpu: [ia32]
os: [win32]
@@ -3233,8 +3248,8 @@ packages:
cpu: [x64]
os: [win32]
- '@esbuild/win32-x64@0.23.0':
- resolution: {integrity: sha512-Arm+WgUFLUATuoxCJcahGuk6Yj9Pzxd6l11Zb/2aAuv5kWWvvfhLFo2fni4uSK5vzlUdCGZ/BdV5tH8klj8p8g==}
+ '@esbuild/win32-x64@0.23.1':
+ resolution: {integrity: sha512-BHpFFeslkWrXWyUPnbKm+xYYVYruCinGcftSBaa8zoF9hZO4BcSCFUvHVTtzpIY6YzUnYtuEhZ+C9iEXjxnasg==}
engines: {node: '>=18'}
cpu: [x64]
os: [win32]
@@ -3295,8 +3310,8 @@ packages:
'@iconify-json/octicon@1.1.57':
resolution: {integrity: sha512-ruzC4/zCOHoYP7nY9aGg7Pc8K9l+w1m03kHfhJgJwqHwqcLJWK8Bm+ZoINLupvQbB6GX5q11LATSX+0U/aOUpA==}
- '@iconify/json@2.2.237':
- resolution: {integrity: sha512-lMK5I9JX90L2LR18Lz6C5XrivxxAGejdJvFQI7TQkj03WcaxRJlciPbQb6z4nX+DS1T6k591ZQ2/hyRVbjqrgA==}
+ '@iconify/json@2.2.238':
+ resolution: {integrity: sha512-wtsUtPGeHH4Jy0Z+oIKyD9ldrFISAEzfGs1SM+PthhHRywDDiZsP2iVn6d2Vzn03wVTB7b8882zoztWWPl1ZmA==}
'@iconify/tailwind@1.1.2':
resolution: {integrity: sha512-ZgToKxxd7zF5T9NXPnY9APRF06ZjFF21H/bINzcbKTdeJzLrNLIoVaoePIUbWVQ2HAac5cAYEHPZO8ILSUe3bQ==}
@@ -3307,7 +3322,7 @@ packages:
'@iconify/vue@4.1.2':
resolution: {integrity: sha512-CQnYqLiQD5LOAaXhBrmj1mdL2/NCJvwcC4jtW2Z8ukhThiFkLDkutarTOV2trfc9EXqUqRs0KqXOL9pZ/IyysA==}
peerDependencies:
- vue: 3.4.37
+ vue: 3.4.38
'@internationalized/date@3.5.5':
resolution: {integrity: sha512-H+CfYvOZ0LTJeeLOqm19E3uj/4YjrmOFtBufDHPfvtI80hFAMqtrp7oCACpe4Cil5l8S0Qu/9dYfZc/5lY8WQQ==}
@@ -3327,16 +3342,16 @@ packages:
vue-i18n:
optional: true
- '@intlify/core-base@9.13.1':
- resolution: {integrity: sha512-+bcQRkJO9pcX8d0gel9ZNfrzU22sZFSA0WVhfXrf5jdJOS24a+Bp8pozuS9sBI9Hk/tGz83pgKfmqcn/Ci7/8w==}
+ '@intlify/core-base@9.14.0':
+ resolution: {integrity: sha512-zJn0imh9HIsZZUtt9v8T16PeVstPv6bP2YzlrYJwoF8F30gs4brZBwW2KK6EI5WYKFi3NeqX6+UU4gniz5TkGg==}
engines: {node: '>= 16'}
- '@intlify/message-compiler@9.13.1':
- resolution: {integrity: sha512-SKsVa4ajYGBVm7sHMXd5qX70O2XXjm55zdZB3VeMFCvQyvLew/dLvq3MqnaIsTMF1VkkOb9Ttr6tHcMlyPDL9w==}
+ '@intlify/message-compiler@9.14.0':
+ resolution: {integrity: sha512-sXNsoMI0YsipSXW8SR75drmVK56tnJHoYbPXUv2Cf9lz6FzvwsosFm6JtC1oQZI/kU+n7qx0qRrEWkeYFTgETA==}
engines: {node: '>= 16'}
- '@intlify/shared@9.13.1':
- resolution: {integrity: sha512-u3b6BKGhE6j/JeRU6C/RL2FgyJfy6LakbtfeVF8fJXURpZZTzfh3e05J0bu0XPw447Q6/WUp3C4ajv4TMS4YsQ==}
+ '@intlify/shared@9.14.0':
+ resolution: {integrity: sha512-r+N8KRQL7LgN1TMTs1A2svfuAU0J94Wu9wWdJVJqYsoMMLIeJxrPjazihfHpmJqfgZq0ah3Y9Q4pgWV2O90Fyg==}
engines: {node: '>= 16'}
'@intlify/unplugin-vue-i18n@4.0.0':
@@ -3586,7 +3601,7 @@ packages:
'@radix-icons/vue@1.0.0':
resolution: {integrity: sha512-gKWWk9tTK/laDRRNe5KLLR8A0qUwx4q4+DN8Fq48hJ904u78R82ayAO3TrxbNLgyn2D0h6rRiGdLzQWj7rPcvA==}
peerDependencies:
- vue: 3.4.37
+ vue: 3.4.38
'@rollup/plugin-alias@5.1.0':
resolution: {integrity: sha512-lpA3RZ9PdIG7qqhEfv79tBffNaoDuukFDrmhLqg9ifv99u/ehn+lOg30x2zmhf8AQqQUZaMk/B9fZraQ6/acDQ==}
@@ -3800,11 +3815,11 @@ packages:
'@sec-ant/readable-stream@0.4.1':
resolution: {integrity: sha512-831qok9r2t8AlxLko40y2ebgSDhenenCatLVeW/uBtnHPyhHOvG0C7TvfgecV+wHzIm5KUICgzmVpWS+IMEAeg==}
- '@shikijs/core@1.13.0':
- resolution: {integrity: sha512-Mj5NVfbAXcD1GnwOTSPl8hBn/T8UDpfFQTptp+p41n/CbUcJtOq98WaRD7Lz3hCglYotUTHUWtzu3JhK6XlkAA==}
+ '@shikijs/core@1.14.1':
+ resolution: {integrity: sha512-KyHIIpKNaT20FtFPFjCQB5WVSTpLR/n+jQXhWHWVUMm9MaOaG9BGOG0MSyt7yA4+Lm+4c9rTc03tt3nYzeYSfw==}
- '@shikijs/transformers@1.13.0':
- resolution: {integrity: sha512-51aLIT6a93rVGoTxl2+p6hb7ILbTA4p/unoibEAjnPMzHto4cqxhuHyDVgtQur5ANpGsL3ihSGKaZDrpcWH8vQ==}
+ '@shikijs/transformers@1.14.1':
+ resolution: {integrity: sha512-JJqL8QBVCJh3L61jqqEXgFq1cTycwjcGj7aSmqOEsbxnETM9hRlaB74QuXvY/fVJNjbNt8nvWo0VwAXKvMSLRg==}
'@simonwep/pickr@1.8.2':
resolution: {integrity: sha512-/l5w8BIkrpP6n1xsetx9MWPWlU6OblN5YgZZphxan0Tq4BByTCETL6lyIeY8lagalS2Nbt4F2W034KHLIiunKA==}
@@ -3842,13 +3857,25 @@ packages:
peerDependencies:
tailwindcss: '>=3.0.0 || insiders'
+ '@tanstack/store@0.5.5':
+ resolution: {integrity: sha512-EOSrgdDAJExbvRZEQ/Xhh9iZchXpMN+ga1Bnk8Nmygzs8TfiE6hbzThF+Pr2G19uHL6+DTDTHhJ8VQiOd7l4tA==}
+
'@tanstack/virtual-core@3.9.0':
resolution: {integrity: sha512-Saga7/QRGej/IDCVP5BgJ1oDqlDT2d9rQyoflS3fgMS8ntJ8JGw/LBqK2GorHa06+VrNFc0tGz65XQHJQJetFQ==}
+ '@tanstack/vue-store@0.5.5':
+ resolution: {integrity: sha512-j+CDrxVhtQQNOjWzLmCqJeDwmmTAQGvEaNbLr1uPJ9rxJITodJtFNdBFj7l+Nd5o34v2ayEv64Ugh6+1BtuGNg==}
+ peerDependencies:
+ '@vue/composition-api': ^1.2.1
+ vue: 3.4.38
+ peerDependenciesMeta:
+ '@vue/composition-api':
+ optional: true
+
'@tanstack/vue-virtual@3.9.0':
resolution: {integrity: sha512-MVJhQh57OR3wg2pWL/25IN1/nITFNnpFaz4gOvRCqnxhsH0WRePBBKvixOaFTgiyYfmrjFbb4d0nRMTvsjZZdQ==}
peerDependencies:
- vue: 3.4.37
+ vue: 3.4.38
'@tootallnate/once@1.1.2':
resolution: {integrity: sha512-RbzJvlNzmRq5c3O09UipeuXno4tA1FE6ikOjxZK0tuxVv3412l64l5t1W5pj4+rJq9vpkm/kwiR07aZXnsKPxw==}
@@ -3940,8 +3967,8 @@ packages:
'@types/node@18.19.44':
resolution: {integrity: sha512-ZsbGerYg72WMXUIE9fYxtvfzLEuq6q8mKERdWFnqTmOvudMxnz+CBNRoOwJ2kNpFOncrKjT1hZwxjlFgQ9qvQA==}
- '@types/node@22.3.0':
- resolution: {integrity: sha512-nrWpWVaDZuaVc5X84xJ0vNrLvomM205oQyLsRt7OHNZbSHslcWsvgFR7O7hire2ZonjLrWBbedmotmIlJDVd6g==}
+ '@types/node@22.4.0':
+ resolution: {integrity: sha512-49AbMDwYUz7EXxKU/r7mXOsxwFr4BYbvB7tWYxVuLdb2ibd30ijjXINSMAHiEEZk5PCRBmW1gUeisn2VMKt3cQ==}
'@types/normalize-package-data@2.4.4':
resolution: {integrity: sha512-37i+OaWTh9qeK4LSHPsyRC7NahnGotNuZvjLSgcPzblpHB3rrCJxAOgI5gCdKm7coonsaX1Of0ILiTcnZjbfxA==}
@@ -4091,14 +4118,14 @@ packages:
engines: {node: ^18.0.0 || >=20.0.0}
peerDependencies:
vite: ^5.0.0
- vue: 3.4.37
+ vue: 3.4.38
'@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.37
+ vue: 3.4.38
'@vitest/expect@2.0.5':
resolution: {integrity: sha512-yHZtwuP7JZivj65Gxoi8upUN2OzHTi3zVfjwdpu2WrvCZPLwsJ2Ey5ILIPccoW23dd/zQBlJ4/dhi7DWNyXCpA==}
@@ -4152,27 +4179,15 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@vue/compiler-core@3.4.37':
- resolution: {integrity: sha512-ZDDT/KiLKuCRXyzWecNzC5vTcubGz4LECAtfGPENpo0nrmqJHwuWtRLxk/Sb9RAKtR9iFflFycbkjkY+W/PZUQ==}
-
'@vue/compiler-core@3.4.38':
resolution: {integrity: sha512-8IQOTCWnLFqfHzOGm9+P8OPSEDukgg3Huc92qSG49if/xI2SAwLHQO2qaPQbjCWPBcQoO1WYfXfTACUrWV3c5A==}
- '@vue/compiler-dom@3.4.37':
- resolution: {integrity: sha512-rIiSmL3YrntvgYV84rekAtU/xfogMUJIclUMeIKEtVBFngOL3IeZHhsH3UaFEgB5iFGpj6IW+8YuM/2Up+vVag==}
-
'@vue/compiler-dom@3.4.38':
resolution: {integrity: sha512-Osc/c7ABsHXTsETLgykcOwIxFktHfGSUDkb05V61rocEfsFDcjDLH/IHJSNJP+/Sv9KeN2Lx1V6McZzlSb9EhQ==}
- '@vue/compiler-sfc@3.4.37':
- resolution: {integrity: sha512-vCfetdas40Wk9aK/WWf8XcVESffsbNkBQwS5t13Y/PcfqKfIwJX2gF+82th6dOpnpbptNMlMjAny80li7TaCIg==}
-
'@vue/compiler-sfc@3.4.38':
resolution: {integrity: sha512-s5QfZ+9PzPh3T5H4hsQDJtI8x7zdJaew/dCGgqZ2630XdzaZ3AD8xGZfBqpT8oaD/p2eedd+pL8tD5vvt5ZYJQ==}
- '@vue/compiler-ssr@3.4.37':
- resolution: {integrity: sha512-TyAgYBWrHlFrt4qpdACh8e9Ms6C/AZQ6A6xLJaWrCL8GCX5DxMzxyeFAEMfU/VFr4tylHm+a2NpfJpcd7+20XA==}
-
'@vue/compiler-ssr@3.4.38':
resolution: {integrity: sha512-YXznKFQ8dxYpAz9zLuVvfcXhc31FSPFDcqr0kyujbOwNhlmaNvL2QfIy+RZeJgSn5Fk54CWoEUeW+NVBAogGaw==}
@@ -4188,7 +4203,7 @@ packages:
'@vue/devtools-core@7.3.8':
resolution: {integrity: sha512-mEwsR7GMklWuPOBH/++DiJe0GWqQ0syDtWP0HhU8m9tebs5zQtujMXrgu+cgBAKquJAWnBz0PwNzBgBD2P+M9A==}
peerDependencies:
- vue: 3.4.37
+ vue: 3.4.38
'@vue/devtools-kit@7.3.8':
resolution: {integrity: sha512-HYy3MQP1nZ6GbE4vrgJ/UB+MvZnhYmEwCa/UafrEpdpwa+jNCkz1ZdUrC5I7LpkH1ShREEV2/pZlAQdBj+ncLQ==}
@@ -4204,22 +4219,19 @@ packages:
typescript:
optional: true
- '@vue/reactivity@3.4.37':
- resolution: {integrity: sha512-UmdKXGx0BZ5kkxPqQr3PK3tElz6adTey4307NzZ3whZu19i5VavYal7u2FfOmAzlcDVgE8+X0HZ2LxLb/jgbYw==}
+ '@vue/reactivity@3.4.38':
+ resolution: {integrity: sha512-4vl4wMMVniLsSYYeldAKzbk72+D3hUnkw9z8lDeJacTxAkXeDAP1uE9xr2+aKIN0ipOL8EG2GPouVTH6yF7Gnw==}
- '@vue/runtime-core@3.4.37':
- resolution: {integrity: sha512-MNjrVoLV/sirHZoD7QAilU1Ifs7m/KJv4/84QVbE6nyAZGQNVOa1HGxaOzp9YqCG+GpLt1hNDC4RbH+KtanV7w==}
+ '@vue/runtime-core@3.4.38':
+ resolution: {integrity: sha512-21z3wA99EABtuf+O3IhdxP0iHgkBs1vuoCAsCKLVJPEjpVqvblwBnTj42vzHRlWDCyxu9ptDm7sI2ZMcWrQqlA==}
- '@vue/runtime-dom@3.4.37':
- resolution: {integrity: sha512-Mg2EwgGZqtwKrqdL/FKMF2NEaOHuH+Ks9TQn3DHKyX//hQTYOun+7Tqp1eo0P4Ds+SjltZshOSRq6VsU0baaNg==}
+ '@vue/runtime-dom@3.4.38':
+ resolution: {integrity: sha512-afZzmUreU7vKwKsV17H1NDThEEmdYI+GCAK/KY1U957Ig2NATPVjCROv61R19fjZNzMmiU03n79OMnXyJVN0UA==}
- '@vue/server-renderer@3.4.37':
- resolution: {integrity: sha512-jZ5FAHDR2KBq2FsRUJW6GKDOAG9lUTX8aBEGq4Vf6B/35I9fPce66BornuwmqmKgfiSlecwuOb6oeoamYMohkg==}
+ '@vue/server-renderer@3.4.38':
+ resolution: {integrity: sha512-NggOTr82FbPEkkUvBm4fTGcwUY8UuTsnWC/L2YZBmvaQ4C4Jl/Ao4HHTB+l7WnFCt5M/dN3l0XLuyjzswGYVCA==}
peerDependencies:
- vue: 3.4.37
-
- '@vue/shared@3.4.37':
- resolution: {integrity: sha512-nIh8P2fc3DflG8+5Uw8PT/1i17ccFn0xxN/5oE9RfV5SVnd7G0XEFRwakrnNFE/jlS95fpGXDVG5zDETS26nmg==}
+ vue: 3.4.38
'@vue/shared@3.4.38':
resolution: {integrity: sha512-q0xCiLkuWWQLzVrecPb0RMsNWyxICOjPrcrwxTUEHb1fsnvni4dcuyG7RT/Ie7VPTvnjzIaWzRMUBsrqNj/hhw==}
@@ -4236,47 +4248,6 @@ packages:
'@vueuse/core@9.13.0':
resolution: {integrity: sha512-pujnclbeHWxxPRqXWmdkKV5OX4Wk4YeK7wusHqRwU0Q7EFusHoqNA/aPhB6KCh9hEqJkLAJo7bb0Lh9b+OIVzw==}
- '@vueuse/integrations@10.11.1':
- resolution: {integrity: sha512-Y5hCGBguN+vuVYTZmdd/IMXLOdfS60zAmDmFYc4BKBcMUPZH1n4tdyDECCPjXm0bNT3ZRUy1xzTLGaUje8Xyaw==}
- peerDependencies:
- async-validator: ^4
- axios: ^1
- change-case: ^4
- drauu: ^0.3
- focus-trap: ^7
- fuse.js: ^6
- idb-keyval: ^6
- jwt-decode: ^3
- nprogress: ^0.2
- qrcode: ^1.5
- sortablejs: ^1
- universal-cookie: ^6
- peerDependenciesMeta:
- async-validator:
- optional: true
- axios:
- optional: true
- change-case:
- optional: true
- drauu:
- optional: true
- focus-trap:
- optional: true
- fuse.js:
- optional: true
- idb-keyval:
- optional: true
- jwt-decode:
- optional: true
- nprogress:
- optional: true
- qrcode:
- optional: true
- sortablejs:
- optional: true
- universal-cookie:
- optional: true
-
'@vueuse/integrations@11.0.0':
resolution: {integrity: sha512-B95nBX4B2q2ZETBDldrKARM/fYXBHfwdo44UbHBq4bUTi25lrlc8MwAZGqEoRvdV4ND9T6O1Rb9e4kaCJFXnqw==}
peerDependencies:
@@ -4448,7 +4419,7 @@ packages:
resolution: {integrity: sha512-kqGyWvZtFlSInFP93Ow6wS8LzEsxxUgpI+ZY5jQQkuX8WAcqdwXCA7IcHMpECW6JB89DZMo2Bw85jUg2SjlgQA==}
engines: {node: '>=12.22.0'}
peerDependencies:
- vue: 3.4.37
+ vue: 3.4.38
any-promise@1.3.0:
resolution: {integrity: sha512-7UvmKalWRt1wgjL1RrGxoSJW/0QZFIegpeGvZG9kjp8vrRu55XTHbwnqq2GpXm9uLbcuhxm3IqX9OB4MZR1b2A==}
@@ -5032,42 +5003,42 @@ packages:
resolution: {integrity: sha512-v1plID3y9r/lPhviJ1wrXpLeyUIGAZ2SHNYTEapm7/8A9nLPoyvVp3RK/EPFqn5kEznyWgYZNsRtYYIWbuG8KA==}
engines: {node: '>=8'}
- cspell-config-lib@8.13.3:
- resolution: {integrity: sha512-dzVdar8Kenwxho0PnUxOxwjUvyFYn6Q9mQAMHcQNXQrvo32bdpoF+oNtWC/5FfrQgUgyl19CVQ607bRigYWoOQ==}
+ cspell-config-lib@8.14.1:
+ resolution: {integrity: sha512-660v4G+3AikdGfSri09YGx7enR4RWPIPLiFKA+3F+CY2lj16l4bh7B/aNfU9oYRDvCcWBCik53AyOne/bSuPVg==}
engines: {node: '>=18'}
- cspell-dictionary@8.13.3:
- resolution: {integrity: sha512-DQ3Tee7LIoy+9Mu52ht32O/MNBZ6i4iUeSTY2sMDDwogno3361BLRyfEjyiYNo3Fqf0Pcnt5MqY2DqIhrF/H/Q==}
+ cspell-dictionary@8.14.1:
+ resolution: {integrity: sha512-+QI3RLzfA4bkKEa5H9OQx2cPN+f5mXx8zbmccoJXxgjUi3fWmNGz4LPHnNQQ7pWXxQ2V81UXDwd7qRN9qkzISQ==}
engines: {node: '>=18'}
- cspell-gitignore@8.13.3:
- resolution: {integrity: sha512-0OZXuP33CXV4P95ySHGNqhq3VR5RaLwpyo0nGvLHOjPm3mCsQSjURLBKHvyQ3r2M7LWsGV1Xc81FfTx30FBZLg==}
+ cspell-gitignore@8.14.1:
+ resolution: {integrity: sha512-f/3rZqHKTFOB37Ey8b7eIQwom4w+wKKzr1sEsoEdLsWyRAd7HdSXkDG6O0S3RYvUYoiXZM9HQsQY695CVhq2wQ==}
engines: {node: '>=18'}
hasBin: true
- cspell-glob@8.13.3:
- resolution: {integrity: sha512-+jGIMYyKDLmoOJIxNPXRdI7utcvw+9FMSmj1ApIdEff5dCkehi0gtzK4H7orXGYEvRdKQvfaXiyduVi79rXsZQ==}
+ cspell-glob@8.14.1:
+ resolution: {integrity: sha512-562ZbkBikXlB3JEGlGsi+3Xa4aghc2nqW1DLhcyXId/eunuJuUIqDGeexHkRwb0yBkq1we8O67hJtC3W0ih5GQ==}
engines: {node: '>=18'}
- cspell-grammar@8.13.3:
- resolution: {integrity: sha512-xPSgKk9HY5EsI8lkMPC9hiZCeAUs+RY/IVliUBW1xEicAJhP4RZIGRdIwtDNNJGwKfNXazjqYhcS4LS0q7xPAQ==}
+ cspell-grammar@8.14.1:
+ resolution: {integrity: sha512-q4soR+FDU7Z3Z2gxl9dYP8qtrunH32aozhIGx6kkLWKWSy/jk2HaWdDp2MkpsQUURXLKMJ6PBZfpzR9Mxz3KqA==}
engines: {node: '>=18'}
hasBin: true
- cspell-io@8.13.3:
- resolution: {integrity: sha512-AeMIkz7+4VuJaPKO/v1pUpyUSOOTyLOAfzeTRRAXEt+KRKOUe36MyUmBMza6gzNcX2yD04VgJukRL408TY9ntw==}
+ cspell-io@8.14.1:
+ resolution: {integrity: sha512-BQvFFzlPXu0RrBecjryZI6EwegpCeph7CnNoWlBUlO/T6kJiB6uG674n/LyenOImnLRrLUbRt1yZcPxziFHNlA==}
engines: {node: '>=18'}
- cspell-lib@8.13.3:
- resolution: {integrity: sha512-aEqxIILeqDtNoCa47/oSl5c926b50ue3PobYs4usn0Ymf0434RopCP+DCGsF7BPtog4j4XWnEmvkcJs57DYWDg==}
+ cspell-lib@8.14.1:
+ resolution: {integrity: sha512-wVZVVezge8ubq+zOED1V6EEtrJQZPNJcpNPDnc7ZXwnWiQxREWvQkuBa60EvAezPImxYdVDr8Y0dIS8yLd9WJg==}
engines: {node: '>=18'}
- cspell-trie-lib@8.13.3:
- resolution: {integrity: sha512-Z0iLGi9HI+Vf+WhVVeru6dYgQdtaYCKWRlc1SayLfAZhw9BcjrXL8KTXDfAfv/lUgnRu6xwP1isLlDNZECsKVQ==}
+ cspell-trie-lib@8.14.1:
+ resolution: {integrity: sha512-2B5pnRHgYHFtdE4N1a0oWCYI1pZVeD1kvcst77ySe520Rg/U18aIET3UzsvN97EDwQ6Y23tHoVsXha0PxD1xfw==}
engines: {node: '>=18'}
- cspell@8.13.3:
- resolution: {integrity: sha512-2wv4Eby7g8wDB553fI8IoZjyitoKrD2kmtdeoYUN2EjVs3RMpIOver3fL+0VaFAaN0uLfAoeAAIB5xJEakvZYQ==}
+ cspell@8.14.1:
+ resolution: {integrity: sha512-UwjSLwt3RR8sP1dtjVbLimc8CpziOlVXH0yXb7/nWyMi3wEPWaV3o0VSTtRHRoaYHAjVzNlXDT6kiSr6RqyPog==}
engines: {node: '>=18'}
hasBin: true
@@ -5448,13 +5419,13 @@ packages:
engines: {node: '>=0.10.0'}
hasBin: true
- electron-to-chromium@1.5.9:
- resolution: {integrity: sha512-HfkT8ndXR0SEkU8gBQQM3rz035bpE/hxkZ1YIt4KJPEFES68HfIU6LzKukH0H794Lm83WJtkSAMfEToxCs15VA==}
+ electron-to-chromium@1.5.11:
+ resolution: {integrity: sha512-R1CccCDYqndR25CaXFd6hp/u9RaaMcftMkphmvuepXr5b1vfLkRml6aWVeBhXJ7rbevHkKEMJtz8XqPf7ffmew==}
element-plus@2.8.0:
resolution: {integrity: sha512-7ngapVlVlQAjocVqD4MUKvKXlBneT9DSDk2mmBOSLRFWNm/HLDT15ozmsvUBfy18sajnyUeSIHTtINE8gfrGMg==}
peerDependencies:
- vue: 3.4.37
+ vue: 3.4.38
emoji-regex@10.3.0:
resolution: {integrity: sha512-QpLs9D9v9kArv4lfDEgg1X/gN5XLnf/A6l9cs8SPZLRZR3ZkY9+kwIQTxm+fsSej5UMYGE8fdoaZVIBlqG0XTw==}
@@ -5490,10 +5461,6 @@ 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'}
@@ -5564,8 +5531,8 @@ packages:
engines: {node: '>=12'}
hasBin: true
- esbuild@0.23.0:
- resolution: {integrity: sha512-1lvV17H2bMYda/WaFb2jLPeHU3zml2k4/yagNMG8Q/YtfMjCwEUZa2eXXMgZTVSL5q1n4H7sQ0X6CdJDqqeCFA==}
+ esbuild@0.23.1:
+ resolution: {integrity: sha512-VVNz/9Sa0bs5SELtn3f7qhJCDPCF5oMEl5cO9/SSinpE9hbPVvxbd572HH5AKiP7WD8INO53GgfDDhRjkylHEg==}
engines: {node: '>=18'}
hasBin: true
@@ -6800,8 +6767,8 @@ packages:
kolorist@1.8.0:
resolution: {integrity: sha512-Y+60/zizpJ3HRH8DCss+q95yr6145JXZo46OTpFvDZWLfRCE4qChOyk1b26nMaNpfHHgxagk9dXT5OP0Tfe+dQ==}
- ky@1.6.0:
- resolution: {integrity: sha512-MG7hlH26oShC4Lysk5TYzXshHLfEY52IJ0ofOeCsifquqTymbXCSTx+g4rXO30XYxoM6Y1ed5pNnpULe9Rx19A==}
+ ky@1.7.0:
+ resolution: {integrity: sha512-g+S6ZMESSMuxrrbcDioBKSjBj8Xvam2WmLso+q1Ub7TTYCGS68XbSEM+eA3VSTmXJfR1uQjsTooC2tCsC3bW6g==}
engines: {node: '>=18'}
latest-version@9.0.0:
@@ -6971,7 +6938,7 @@ packages:
lucide-vue-next@0.428.0:
resolution: {integrity: sha512-of9GJGus9VKGIUOp3yQ0uQtNv+8MRLaso8H4OiDzI6+T7TeMRXTzqVOLhnyg9fdXUnYuwE9Xm1zD1nfQ7oFPmg==}
peerDependencies:
- vue: 3.4.37
+ vue: 3.4.38
magic-string@0.25.9:
resolution: {integrity: sha512-RmF0AsMzgt25qzqqLc1+MbHmhdx0ojF2Fvs4XnOqz2ZOBXzzkEwc/dJQZCYHAn7v1jbVOjAZfK8msRn4BxO4VQ==}
@@ -7194,7 +7161,7 @@ packages:
naive-ui@2.39.0:
resolution: {integrity: sha512-5oUJzRG+rtLSH8eRU+fJvVYiQids2BxF9jp+fwGoAqHOptEINrBlgBu9uy+95RHE5FLJ7Q/z41o+qkoGnUrKxQ==}
peerDependencies:
- vue: 3.4.37
+ vue: 3.4.38
nanoid@3.3.7:
resolution: {integrity: sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g==}
@@ -7590,7 +7557,7 @@ packages:
peerDependencies:
'@vue/composition-api': ^1.4.0
typescript: '>=4.4.4'
- vue: 3.4.37
+ vue: 3.4.38
peerDependenciesMeta:
'@vue/composition-api':
optional: true
@@ -7634,8 +7601,8 @@ packages:
peerDependencies:
postcss: ^8.4
- postcss-calc@10.0.1:
- resolution: {integrity: sha512-pp1Z3FxtxA+xHAoWXcOXgnBN1WPu4ZiJ5LWGjKyf9MMreagAsaTUtnqFK1y1sHhyJddAkYTPu6XSuLgb3oYCjw==}
+ postcss-calc@10.0.2:
+ resolution: {integrity: sha512-DT/Wwm6fCKgpYVI7ZEWuPJ4az8hiEHtCUeYjZXqU7Ou4QqYh1Df2yCQ7Ca6N7xqKPFkxN3fhf+u9KSoOCJNAjg==}
engines: {node: ^18.12 || ^20.9 || >=22.0}
peerDependencies:
postcss: ^8.4.38
@@ -8194,7 +8161,7 @@ packages:
radix-vue@1.9.4:
resolution: {integrity: sha512-d950wxB+MVVU6L9h39OsNzAdk2BiGDDfhXJiHsksPAIK5pCR8W4U0RB0WLQEdjmmL9p1aXOYm4FBDq0oIo2G/w==}
peerDependencies:
- vue: 3.4.37
+ vue: 3.4.38
radix3@1.1.2:
resolution: {integrity: sha512-b484I/7b8rDEdSDKckSSBA8knMpcdsXudlE/LNL639wFoHKwLbEkQFZHWEYwDC0wa0FKUcCY+GAF73Z7wxNVFA==}
@@ -8557,8 +8524,8 @@ packages:
resolution: {integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==}
engines: {node: '>=8'}
- shiki@1.13.0:
- resolution: {integrity: sha512-e0dWfnONbEv6xl7FJy3XIhsVHQ/65XHDZl92+6H9+4xWjfdo7pmkqG7Kg47KWtDiEtzM5Z+oEfb4vtRvoZ/X9w==}
+ shiki@1.14.1:
+ resolution: {integrity: sha512-FujAN40NEejeXdzPt+3sZ3F2dx1U24BY2XTY01+MG8mbxCiA2XukXdcbyMyLAHJ/1AUUnQd1tZlvIjefWWEJeA==}
short-tree@3.0.0:
resolution: {integrity: sha512-Yd9NFs/o9QSoH4/wTjxk4Xe0+CIzitDRN1Qg7iBeTSejKjlCg/3PbgiRwDUVuaIxD0RRdv7Iz9jKr7e0HljtUg==}
@@ -9144,8 +9111,8 @@ packages:
resolution: {integrity: sha512-tLq3bSNx+xSpwvAJnzrK0Ep5CLNWjvFTOp71URMaAEWBfRb9nnJiBoUe0tF8bI4ZFO3omgBR6NvnbzVUT3Ly4g==}
engines: {node: '>=14.16'}
- type-fest@4.24.0:
- resolution: {integrity: sha512-spAaHzc6qre0TlZQQ2aA/nGMe+2Z/wyGk5Z+Ru2VUfdNwT6kWO6TjevOlpebsATEG1EIQ2sOiDszud3lO5mt/Q==}
+ type-fest@4.25.0:
+ resolution: {integrity: sha512-bRkIGlXsnGBRBQRAY56UXBm//9qH4bmJfFvq83gSz41N282df+fjy8ofcEgc1sM8geNt5cl6mC2g9Fht1cs8Aw==}
engines: {node: '>=16'}
typed-array-buffer@1.0.2:
@@ -9198,8 +9165,8 @@ packages:
undici-types@5.26.5:
resolution: {integrity: sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA==}
- undici-types@6.18.2:
- resolution: {integrity: sha512-5ruQbENj95yDYJNS3TvcaxPMshV7aizdv/hWYjGIKoANWKjhWNBsr2YEuYZKodQulB1b8l7ILOuDQep3afowQQ==}
+ undici-types@6.19.6:
+ resolution: {integrity: sha512-e/vggGopEfTKSvj4ihnOLTsqhrKRN3LeO6qSN/GxohhuRv8qH9bNQ4B8W7e/vFL+0XTnmHPB4/kegunZGA4Org==}
undici@5.28.4:
resolution: {integrity: sha512-72RFADWFqKmUb2hmmvNODKL3p9hcB6Gt2DOQMis1SEBaV6a4MH8soBvzg+95CYhCKPFedut2JY9bMfrDl9D23g==}
@@ -9373,7 +9340,7 @@ packages:
vdirs@0.1.8:
resolution: {integrity: sha512-H9V1zGRLQZg9b+GdMk8MXDN2Lva0zx72MPahDKc30v+DtwKjfyOSXWRIX4t2mhDubM1H09gPhWeth/BJWPHGUw==}
peerDependencies:
- vue: 3.4.37
+ vue: 3.4.38
vite-hot-client@0.2.3:
resolution: {integrity: sha512-rOGAV7rUlUHX89fP2p2v0A2WWvV3QMX2UYq0fRqsWSvFvev4atHWqjwGoKaZT1VTKyLGk533ecu3eyd0o59CAg==}
@@ -9474,8 +9441,8 @@ packages:
terser:
optional: true
- vitepress@1.3.2:
- resolution: {integrity: sha512-6gvecsCuR6b1Cid4w19KQiQ02qkpgzFRqiG0v1ZBekGkrZCzsxdDD5y4WH82HRXAOhU4iZIpzA1CsWqs719rqA==}
+ vitepress@1.3.3:
+ resolution: {integrity: sha512-6UzEw/wZ41S/CATby7ea7UlffvRER/uekxgN6hbEvSys9ukmLOKsz87Ehq9yOx1Rwiw+Sj97yjpivP8w1sUmng==}
hasBin: true
peerDependencies:
markdown-it-mathjax3: ^4
@@ -9514,7 +9481,7 @@ packages:
vooks@0.2.12:
resolution: {integrity: sha512-iox0I3RZzxtKlcgYaStQYKEzWWGAduMmq+jS7OrNdQo1FgGfPMubGL3uGHOU9n97NIvfFDBGnpSvkWyb/NSn/Q==}
peerDependencies:
- vue: 3.4.37
+ vue: 3.4.38
vscode-languageserver-textdocument@1.0.12:
resolution: {integrity: sha512-cxWNPesCnQCcMPeenjKKsOCKQZ/L6Tv19DTRIGuLWe32lyzWhihGVJ/rcckZXJxfdKCFvRLS3fpBIsV/ZGX4zA==}
@@ -9531,7 +9498,7 @@ packages:
hasBin: true
peerDependencies:
'@vue/composition-api': ^1.0.0-rc.1
- vue: 3.4.37
+ vue: 3.4.38
peerDependenciesMeta:
'@vue/composition-api':
optional: true
@@ -9542,16 +9509,16 @@ packages:
peerDependencies:
eslint: '>=6.0.0'
- vue-i18n@9.13.1:
- resolution: {integrity: sha512-mh0GIxx0wPtPlcB1q4k277y0iKgo25xmDPWioVVYanjPufDBpvu5ySTjP5wOrSvlYQ2m1xI+CFhGdauv/61uQg==}
+ vue-i18n@9.14.0:
+ resolution: {integrity: sha512-LxmpRuCt2rI8gqU+kxeflRZMQn4D5+4M3oP3PWZdowW/ePJraHqhF7p4CuaME52mUxdw3Mmy2yAUKgfZYgCRjA==}
engines: {node: '>= 16'}
peerDependencies:
- vue: 3.4.37
+ vue: 3.4.38
vue-router@4.4.3:
resolution: {integrity: sha512-sv6wmNKx2j3aqJQDMxLFzs/u/mjA9Z5LCgy6BE0f7yFWMjrPLnS/sPNn8ARY/FXw6byV18EFutn5lTO6+UsV5A==}
peerDependencies:
- vue: 3.4.37
+ vue: 3.4.38
vue-tsc@2.0.29:
resolution: {integrity: sha512-MHhsfyxO3mYShZCGYNziSbc63x7cQ5g9kvijV7dRe1TTXBRLxXyL0FnXWpUF1xII2mJ86mwYpYsUmMwkmerq7Q==}
@@ -9563,10 +9530,10 @@ packages:
resolution: {integrity: sha512-IwUC0Aq2zwaXqy74h4WCvFCUtoV0iSWr0snWnE9TnU18S66GAQyqQbRf2qfJtUuiFsBf6qp0MEwdonlwznlcrw==}
engines: {node: '>=10.15.0'}
peerDependencies:
- vue: 3.4.37
+ vue: 3.4.38
- vue@3.4.37:
- resolution: {integrity: sha512-3vXvNfkKTBsSJ7JP+LyR7GBuwQuckbWvuwAid3xbqK9ppsKt/DUvfqgZ48fgOLEfpy1IacL5f8QhUVl77RaI7A==}
+ vue@3.4.38:
+ resolution: {integrity: sha512-f0ZgN+mZ5KFgVv9wz0f4OgVKukoXtS3nwET4c2vLBGQR50aI8G0cqbFtLlX9Yiyg3LFGBitruPHt2PxwTduJEw==}
peerDependencies:
typescript: '*'
peerDependenciesMeta:
@@ -9576,7 +9543,7 @@ packages:
vueuc@0.4.58:
resolution: {integrity: sha512-Wnj/N8WbPRSxSt+9ji1jtDHPzda5h2OH/0sFBhvdxDRuyCZbjGg3/cKMaKqEoe+dErTexG2R+i6Q8S/Toq1MYg==}
peerDependencies:
- vue: 3.4.37
+ vue: 3.4.38
w3c-xmlserializer@5.0.0:
resolution: {integrity: sha512-o8qghlI8NZHU1lLPrpi2+Uq7abh4GGPpYANlalzWxyWteJOCsr/P+oPBA49TOLu5FTZO4d3F9MnWJfiMo4BkmA==}
@@ -9974,11 +9941,11 @@ snapshots:
'@ant-design/icons-svg@4.4.2': {}
- '@ant-design/icons-vue@7.0.1(vue@3.4.37(typescript@5.5.4))':
+ '@ant-design/icons-vue@7.0.1(vue@3.4.38(typescript@5.5.4))':
dependencies:
'@ant-design/colors': 6.0.0
'@ant-design/icons-svg': 4.4.2
- vue: 3.4.37(typescript@5.5.4)
+ vue: 3.4.38(typescript@5.5.4)
'@antfu/utils@0.7.10': {}
@@ -11054,11 +11021,11 @@ snapshots:
dependencies:
mime: 3.0.0
- '@commitlint/cli@19.4.0(@types/node@22.3.0)(typescript@5.5.4)':
+ '@commitlint/cli@19.4.0(@types/node@22.4.0)(typescript@5.5.4)':
dependencies:
'@commitlint/format': 19.3.0
'@commitlint/lint': 19.2.2
- '@commitlint/load': 19.4.0(@types/node@22.3.0)(typescript@5.5.4)
+ '@commitlint/load': 19.4.0(@types/node@22.4.0)(typescript@5.5.4)
'@commitlint/read': 19.4.0
'@commitlint/types': 19.0.3
execa: 8.0.1
@@ -11105,7 +11072,7 @@ snapshots:
'@commitlint/rules': 19.0.3
'@commitlint/types': 19.0.3
- '@commitlint/load@19.4.0(@types/node@22.3.0)(typescript@5.5.4)':
+ '@commitlint/load@19.4.0(@types/node@22.4.0)(typescript@5.5.4)':
dependencies:
'@commitlint/config-validator': 19.0.3
'@commitlint/execute-rule': 19.0.0
@@ -11113,7 +11080,7 @@ snapshots:
'@commitlint/types': 19.0.3
chalk: 5.3.0
cosmiconfig: 9.0.0(typescript@5.5.4)
- cosmiconfig-typescript-loader: 5.0.0(@types/node@22.3.0)(cosmiconfig@9.0.0(typescript@5.5.4))(typescript@5.5.4)
+ cosmiconfig-typescript-loader: 5.0.0(@types/node@22.4.0)(cosmiconfig@9.0.0(typescript@5.5.4))(typescript@5.5.4)
lodash.isplainobject: 4.0.6
lodash.merge: 4.6.2
lodash.uniq: 4.5.0
@@ -11165,7 +11132,7 @@ snapshots:
'@types/conventional-commits-parser': 5.0.0
chalk: 5.3.0
- '@cspell/cspell-bundled-dicts@8.13.3':
+ '@cspell/cspell-bundled-dicts@8.14.1':
dependencies:
'@cspell/dict-ada': 4.0.2
'@cspell/dict-aws': 4.0.3
@@ -11220,19 +11187,19 @@ snapshots:
'@cspell/dict-typescript': 3.1.6
'@cspell/dict-vue': 3.0.0
- '@cspell/cspell-json-reporter@8.13.3':
+ '@cspell/cspell-json-reporter@8.14.1':
dependencies:
- '@cspell/cspell-types': 8.13.3
+ '@cspell/cspell-types': 8.14.1
- '@cspell/cspell-pipe@8.13.3': {}
+ '@cspell/cspell-pipe@8.14.1': {}
- '@cspell/cspell-resolver@8.13.3':
+ '@cspell/cspell-resolver@8.14.1':
dependencies:
global-directory: 4.0.1
- '@cspell/cspell-service-bus@8.13.3': {}
+ '@cspell/cspell-service-bus@8.14.1': {}
- '@cspell/cspell-types@8.13.3': {}
+ '@cspell/cspell-types@8.14.1': {}
'@cspell/dict-ada@4.0.2': {}
@@ -11342,21 +11309,23 @@ snapshots:
'@cspell/dict-vue@3.0.0': {}
- '@cspell/dynamic-import@8.13.3':
+ '@cspell/dynamic-import@8.14.1':
dependencies:
import-meta-resolve: 4.1.0
- '@cspell/strong-weak-map@8.13.3': {}
+ '@cspell/filetypes@8.14.1': {}
- '@cspell/url@8.13.3': {}
+ '@cspell/strong-weak-map@8.14.1': {}
+
+ '@cspell/url@8.14.1': {}
'@css-render/plugin-bem@0.15.14(css-render@0.15.14)':
dependencies:
css-render: 0.15.14
- '@css-render/vue3-ssr@0.15.14(vue@3.4.37(typescript@5.5.4))':
+ '@css-render/vue3-ssr@0.15.14(vue@3.4.38(typescript@5.5.4))':
dependencies:
- vue: 3.4.37(typescript@5.5.4)
+ vue: 3.4.38(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:
@@ -11635,9 +11604,9 @@ snapshots:
'@dual-bundle/import-meta-resolve@4.1.0': {}
- '@element-plus/icons-vue@2.3.1(vue@3.4.37(typescript@5.5.4))':
+ '@element-plus/icons-vue@2.3.1(vue@3.4.38(typescript@5.5.4))':
dependencies:
- vue: 3.4.37(typescript@5.5.4)
+ vue: 3.4.38(typescript@5.5.4)
'@emotion/hash@0.8.0': {}
@@ -11669,7 +11638,7 @@ snapshots:
'@esbuild/aix-ppc64@0.21.5':
optional: true
- '@esbuild/aix-ppc64@0.23.0':
+ '@esbuild/aix-ppc64@0.23.1':
optional: true
'@esbuild/android-arm64@0.19.12':
@@ -11681,7 +11650,7 @@ snapshots:
'@esbuild/android-arm64@0.21.5':
optional: true
- '@esbuild/android-arm64@0.23.0':
+ '@esbuild/android-arm64@0.23.1':
optional: true
'@esbuild/android-arm@0.19.12':
@@ -11693,7 +11662,7 @@ snapshots:
'@esbuild/android-arm@0.21.5':
optional: true
- '@esbuild/android-arm@0.23.0':
+ '@esbuild/android-arm@0.23.1':
optional: true
'@esbuild/android-x64@0.19.12':
@@ -11705,7 +11674,7 @@ snapshots:
'@esbuild/android-x64@0.21.5':
optional: true
- '@esbuild/android-x64@0.23.0':
+ '@esbuild/android-x64@0.23.1':
optional: true
'@esbuild/darwin-arm64@0.19.12':
@@ -11717,7 +11686,7 @@ snapshots:
'@esbuild/darwin-arm64@0.21.5':
optional: true
- '@esbuild/darwin-arm64@0.23.0':
+ '@esbuild/darwin-arm64@0.23.1':
optional: true
'@esbuild/darwin-x64@0.19.12':
@@ -11729,7 +11698,7 @@ snapshots:
'@esbuild/darwin-x64@0.21.5':
optional: true
- '@esbuild/darwin-x64@0.23.0':
+ '@esbuild/darwin-x64@0.23.1':
optional: true
'@esbuild/freebsd-arm64@0.19.12':
@@ -11741,7 +11710,7 @@ snapshots:
'@esbuild/freebsd-arm64@0.21.5':
optional: true
- '@esbuild/freebsd-arm64@0.23.0':
+ '@esbuild/freebsd-arm64@0.23.1':
optional: true
'@esbuild/freebsd-x64@0.19.12':
@@ -11753,7 +11722,7 @@ snapshots:
'@esbuild/freebsd-x64@0.21.5':
optional: true
- '@esbuild/freebsd-x64@0.23.0':
+ '@esbuild/freebsd-x64@0.23.1':
optional: true
'@esbuild/linux-arm64@0.19.12':
@@ -11765,7 +11734,7 @@ snapshots:
'@esbuild/linux-arm64@0.21.5':
optional: true
- '@esbuild/linux-arm64@0.23.0':
+ '@esbuild/linux-arm64@0.23.1':
optional: true
'@esbuild/linux-arm@0.19.12':
@@ -11777,7 +11746,7 @@ snapshots:
'@esbuild/linux-arm@0.21.5':
optional: true
- '@esbuild/linux-arm@0.23.0':
+ '@esbuild/linux-arm@0.23.1':
optional: true
'@esbuild/linux-ia32@0.19.12':
@@ -11789,7 +11758,7 @@ snapshots:
'@esbuild/linux-ia32@0.21.5':
optional: true
- '@esbuild/linux-ia32@0.23.0':
+ '@esbuild/linux-ia32@0.23.1':
optional: true
'@esbuild/linux-loong64@0.19.12':
@@ -11801,7 +11770,7 @@ snapshots:
'@esbuild/linux-loong64@0.21.5':
optional: true
- '@esbuild/linux-loong64@0.23.0':
+ '@esbuild/linux-loong64@0.23.1':
optional: true
'@esbuild/linux-mips64el@0.19.12':
@@ -11813,7 +11782,7 @@ snapshots:
'@esbuild/linux-mips64el@0.21.5':
optional: true
- '@esbuild/linux-mips64el@0.23.0':
+ '@esbuild/linux-mips64el@0.23.1':
optional: true
'@esbuild/linux-ppc64@0.19.12':
@@ -11825,7 +11794,7 @@ snapshots:
'@esbuild/linux-ppc64@0.21.5':
optional: true
- '@esbuild/linux-ppc64@0.23.0':
+ '@esbuild/linux-ppc64@0.23.1':
optional: true
'@esbuild/linux-riscv64@0.19.12':
@@ -11837,7 +11806,7 @@ snapshots:
'@esbuild/linux-riscv64@0.21.5':
optional: true
- '@esbuild/linux-riscv64@0.23.0':
+ '@esbuild/linux-riscv64@0.23.1':
optional: true
'@esbuild/linux-s390x@0.19.12':
@@ -11849,7 +11818,7 @@ snapshots:
'@esbuild/linux-s390x@0.21.5':
optional: true
- '@esbuild/linux-s390x@0.23.0':
+ '@esbuild/linux-s390x@0.23.1':
optional: true
'@esbuild/linux-x64@0.19.12':
@@ -11861,7 +11830,7 @@ snapshots:
'@esbuild/linux-x64@0.21.5':
optional: true
- '@esbuild/linux-x64@0.23.0':
+ '@esbuild/linux-x64@0.23.1':
optional: true
'@esbuild/netbsd-x64@0.19.12':
@@ -11873,10 +11842,10 @@ snapshots:
'@esbuild/netbsd-x64@0.21.5':
optional: true
- '@esbuild/netbsd-x64@0.23.0':
+ '@esbuild/netbsd-x64@0.23.1':
optional: true
- '@esbuild/openbsd-arm64@0.23.0':
+ '@esbuild/openbsd-arm64@0.23.1':
optional: true
'@esbuild/openbsd-x64@0.19.12':
@@ -11888,7 +11857,7 @@ snapshots:
'@esbuild/openbsd-x64@0.21.5':
optional: true
- '@esbuild/openbsd-x64@0.23.0':
+ '@esbuild/openbsd-x64@0.23.1':
optional: true
'@esbuild/sunos-x64@0.19.12':
@@ -11900,7 +11869,7 @@ snapshots:
'@esbuild/sunos-x64@0.21.5':
optional: true
- '@esbuild/sunos-x64@0.23.0':
+ '@esbuild/sunos-x64@0.23.1':
optional: true
'@esbuild/win32-arm64@0.19.12':
@@ -11912,7 +11881,7 @@ snapshots:
'@esbuild/win32-arm64@0.21.5':
optional: true
- '@esbuild/win32-arm64@0.23.0':
+ '@esbuild/win32-arm64@0.23.1':
optional: true
'@esbuild/win32-ia32@0.19.12':
@@ -11924,7 +11893,7 @@ snapshots:
'@esbuild/win32-ia32@0.21.5':
optional: true
- '@esbuild/win32-ia32@0.23.0':
+ '@esbuild/win32-ia32@0.23.1':
optional: true
'@esbuild/win32-x64@0.19.12':
@@ -11936,7 +11905,7 @@ snapshots:
'@esbuild/win32-x64@0.21.5':
optional: true
- '@esbuild/win32-x64@0.23.0':
+ '@esbuild/win32-x64@0.23.1':
optional: true
'@eslint-community/eslint-utils@4.4.0(eslint@9.9.0(jiti@1.21.6))':
@@ -11985,11 +11954,11 @@ snapshots:
'@floating-ui/utils@0.2.7': {}
- '@floating-ui/vue@1.1.4(vue@3.4.37(typescript@5.5.4))':
+ '@floating-ui/vue@1.1.4(vue@3.4.38(typescript@5.5.4))':
dependencies:
'@floating-ui/dom': 1.6.10
'@floating-ui/utils': 0.2.7
- vue-demi: 0.14.10(vue@3.4.37(typescript@5.5.4))
+ vue-demi: 0.14.10(vue@3.4.38(typescript@5.5.4))
transitivePeerDependencies:
- '@vue/composition-api'
- vue
@@ -12004,7 +11973,7 @@ snapshots:
dependencies:
'@iconify/types': 2.0.0
- '@iconify/json@2.2.237':
+ '@iconify/json@2.2.238':
dependencies:
'@iconify/types': 2.0.0
pathe: 1.1.2
@@ -12015,10 +11984,10 @@ snapshots:
'@iconify/types@2.0.0': {}
- '@iconify/vue@4.1.2(vue@3.4.37(typescript@5.5.4))':
+ '@iconify/vue@4.1.2(vue@3.4.38(typescript@5.5.4))':
dependencies:
'@iconify/types': 2.0.0
- vue: 3.4.37(typescript@5.5.4)
+ vue: 3.4.38(typescript@5.5.4)
'@internationalized/date@3.5.5':
dependencies:
@@ -12028,10 +11997,10 @@ snapshots:
dependencies:
'@swc/helpers': 0.5.12
- '@intlify/bundle-utils@8.0.0(vue-i18n@9.13.1(vue@3.4.37(typescript@5.5.4)))':
+ '@intlify/bundle-utils@8.0.0(vue-i18n@9.14.0(vue@3.4.38(typescript@5.5.4)))':
dependencies:
- '@intlify/message-compiler': 9.13.1
- '@intlify/shared': 9.13.1
+ '@intlify/message-compiler': 9.14.0
+ '@intlify/shared': 9.14.0
acorn: 8.12.1
escodegen: 2.1.0
estree-walker: 2.0.2
@@ -12040,24 +12009,24 @@ snapshots:
source-map-js: 1.2.0
yaml-eslint-parser: 1.2.3
optionalDependencies:
- vue-i18n: 9.13.1(vue@3.4.37(typescript@5.5.4))
+ vue-i18n: 9.14.0(vue@3.4.38(typescript@5.5.4))
- '@intlify/core-base@9.13.1':
+ '@intlify/core-base@9.14.0':
dependencies:
- '@intlify/message-compiler': 9.13.1
- '@intlify/shared': 9.13.1
+ '@intlify/message-compiler': 9.14.0
+ '@intlify/shared': 9.14.0
- '@intlify/message-compiler@9.13.1':
+ '@intlify/message-compiler@9.14.0':
dependencies:
- '@intlify/shared': 9.13.1
+ '@intlify/shared': 9.14.0
source-map-js: 1.2.0
- '@intlify/shared@9.13.1': {}
+ '@intlify/shared@9.14.0': {}
- '@intlify/unplugin-vue-i18n@4.0.0(rollup@4.20.0)(vue-i18n@9.13.1(vue@3.4.37(typescript@5.5.4)))':
+ '@intlify/unplugin-vue-i18n@4.0.0(rollup@4.20.0)(vue-i18n@9.14.0(vue@3.4.38(typescript@5.5.4)))':
dependencies:
- '@intlify/bundle-utils': 8.0.0(vue-i18n@9.13.1(vue@3.4.37(typescript@5.5.4)))
- '@intlify/shared': 9.13.1
+ '@intlify/bundle-utils': 8.0.0(vue-i18n@9.14.0(vue@3.4.38(typescript@5.5.4)))
+ '@intlify/shared': 9.14.0
'@rollup/pluginutils': 5.1.0(rollup@4.20.0)
'@vue/compiler-sfc': 3.4.38
debug: 4.3.6
@@ -12069,7 +12038,7 @@ snapshots:
source-map-js: 1.2.0
unplugin: 1.12.2
optionalDependencies:
- vue-i18n: 9.13.1(vue@3.4.37(typescript@5.5.4))
+ vue-i18n: 9.14.0(vue@3.4.38(typescript@5.5.4))
transitivePeerDependencies:
- rollup
- supports-color
@@ -12172,23 +12141,23 @@ snapshots:
- encoding
- supports-color
- '@microsoft/api-extractor-model@7.29.4(@types/node@22.3.0)':
+ '@microsoft/api-extractor-model@7.29.4(@types/node@22.4.0)':
dependencies:
'@microsoft/tsdoc': 0.15.0
'@microsoft/tsdoc-config': 0.17.0
- '@rushstack/node-core-library': 5.5.1(@types/node@22.3.0)
+ '@rushstack/node-core-library': 5.5.1(@types/node@22.4.0)
transitivePeerDependencies:
- '@types/node'
- '@microsoft/api-extractor@7.47.4(@types/node@22.3.0)':
+ '@microsoft/api-extractor@7.47.4(@types/node@22.4.0)':
dependencies:
- '@microsoft/api-extractor-model': 7.29.4(@types/node@22.3.0)
+ '@microsoft/api-extractor-model': 7.29.4(@types/node@22.4.0)
'@microsoft/tsdoc': 0.15.0
'@microsoft/tsdoc-config': 0.17.0
- '@rushstack/node-core-library': 5.5.1(@types/node@22.3.0)
+ '@rushstack/node-core-library': 5.5.1(@types/node@22.4.0)
'@rushstack/rig-package': 0.5.3
- '@rushstack/terminal': 0.13.3(@types/node@22.3.0)
- '@rushstack/ts-command-line': 4.22.3(@types/node@22.3.0)
+ '@rushstack/terminal': 0.13.3(@types/node@22.4.0)
+ '@rushstack/ts-command-line': 4.22.3(@types/node@22.4.0)
lodash: 4.17.21
minimatch: 3.0.8
resolve: 1.22.8
@@ -12230,12 +12199,12 @@ snapshots:
'@nodelib/fs.scandir': 2.1.5
fastq: 1.17.1
- '@nolebase/ui@2.4.0(@algolia/client-search@4.24.0)(@types/node@22.3.0)(async-validator@4.2.5)(axios@1.7.4)(nprogress@0.2.0)(postcss@8.4.41)(qrcode@1.5.4)(sass@1.77.8)(search-insights@2.16.3)(sortablejs@1.15.2)(terser@5.31.6)(typescript@5.5.4)':
+ '@nolebase/ui@2.4.0(@algolia/client-search@4.24.0)(@types/node@22.4.0)(async-validator@4.2.5)(axios@1.7.4)(nprogress@0.2.0)(postcss@8.4.41)(qrcode@1.5.4)(sass@1.77.8)(search-insights@2.16.3)(sortablejs@1.15.2)(terser@5.31.6)(typescript@5.5.4)':
dependencies:
'@iconify-json/octicon': 1.1.57
less: 4.2.0
- vitepress: 1.3.2(@algolia/client-search@4.24.0)(@types/node@22.3.0)(async-validator@4.2.5)(axios@1.7.4)(less@4.2.0)(nprogress@0.2.0)(postcss@8.4.41)(qrcode@1.5.4)(sass@1.77.8)(search-insights@2.16.3)(sortablejs@1.15.2)(terser@5.31.6)(typescript@5.5.4)
- vue: 3.4.37(typescript@5.5.4)
+ vitepress: 1.3.3(@algolia/client-search@4.24.0)(@types/node@22.4.0)(async-validator@4.2.5)(axios@1.7.4)(less@4.2.0)(nprogress@0.2.0)(postcss@8.4.41)(qrcode@1.5.4)(sass@1.77.8)(search-insights@2.16.3)(sortablejs@1.15.2)(terser@5.31.6)(typescript@5.5.4)
+ vue: 3.4.38(typescript@5.5.4)
transitivePeerDependencies:
- '@algolia/client-search'
- '@types/node'
@@ -12265,10 +12234,10 @@ snapshots:
- typescript
- universal-cookie
- '@nolebase/vitepress-plugin-git-changelog@2.4.0(@algolia/client-search@4.24.0)(@types/node@22.3.0)(async-validator@4.2.5)(axios@1.7.4)(nprogress@0.2.0)(postcss@8.4.41)(qrcode@1.5.4)(sass@1.77.8)(search-insights@2.16.3)(sortablejs@1.15.2)(terser@5.31.6)(typescript@5.5.4)':
+ '@nolebase/vitepress-plugin-git-changelog@2.4.0(@algolia/client-search@4.24.0)(@types/node@22.4.0)(async-validator@4.2.5)(axios@1.7.4)(nprogress@0.2.0)(postcss@8.4.41)(qrcode@1.5.4)(sass@1.77.8)(search-insights@2.16.3)(sortablejs@1.15.2)(terser@5.31.6)(typescript@5.5.4)':
dependencies:
'@iconify-json/octicon': 1.1.57
- '@nolebase/ui': 2.4.0(@algolia/client-search@4.24.0)(@types/node@22.3.0)(async-validator@4.2.5)(axios@1.7.4)(nprogress@0.2.0)(postcss@8.4.41)(qrcode@1.5.4)(sass@1.77.8)(search-insights@2.16.3)(sortablejs@1.15.2)(terser@5.31.6)(typescript@5.5.4)
+ '@nolebase/ui': 2.4.0(@algolia/client-search@4.24.0)(@types/node@22.4.0)(async-validator@4.2.5)(axios@1.7.4)(nprogress@0.2.0)(postcss@8.4.41)(qrcode@1.5.4)(sass@1.77.8)(search-insights@2.16.3)(sortablejs@1.15.2)(terser@5.31.6)(typescript@5.5.4)
colorette: 2.0.20
date-fns: 3.6.0
defu: 6.1.4
@@ -12278,7 +12247,7 @@ snapshots:
gray-matter: 4.0.3
less: 4.2.0
uncrypto: 0.1.3
- vitepress: 1.3.2(@algolia/client-search@4.24.0)(@types/node@22.3.0)(async-validator@4.2.5)(axios@1.7.4)(less@4.2.0)(nprogress@0.2.0)(postcss@8.4.41)(qrcode@1.5.4)(sass@1.77.8)(search-insights@2.16.3)(sortablejs@1.15.2)(terser@5.31.6)(typescript@5.5.4)
+ vitepress: 1.3.3(@algolia/client-search@4.24.0)(@types/node@22.4.0)(async-validator@4.2.5)(axios@1.7.4)(less@4.2.0)(nprogress@0.2.0)(postcss@8.4.41)(qrcode@1.5.4)(sass@1.77.8)(search-insights@2.16.3)(sortablejs@1.15.2)(terser@5.31.6)(typescript@5.5.4)
transitivePeerDependencies:
- '@algolia/client-search'
- '@types/node'
@@ -12400,9 +12369,9 @@ snapshots:
'@polka/url@1.0.0-next.25': {}
- '@radix-icons/vue@1.0.0(vue@3.4.37(typescript@5.5.4))':
+ '@radix-icons/vue@1.0.0(vue@3.4.38(typescript@5.5.4))':
dependencies:
- vue: 3.4.37(typescript@5.5.4)
+ vue: 3.4.38(typescript@5.5.4)
'@rollup/plugin-alias@5.1.0(rollup@3.29.4)':
dependencies:
@@ -12620,7 +12589,7 @@ snapshots:
'@rollup/rollup-win32-x64-msvc@4.20.0':
optional: true
- '@rushstack/node-core-library@5.5.1(@types/node@22.3.0)':
+ '@rushstack/node-core-library@5.5.1(@types/node@22.4.0)':
dependencies:
ajv: 8.13.0
ajv-draft-04: 1.0.0(ajv@8.13.0)
@@ -12631,23 +12600,23 @@ snapshots:
resolve: 1.22.8
semver: 7.5.4
optionalDependencies:
- '@types/node': 22.3.0
+ '@types/node': 22.4.0
'@rushstack/rig-package@0.5.3':
dependencies:
resolve: 1.22.8
strip-json-comments: 3.1.1
- '@rushstack/terminal@0.13.3(@types/node@22.3.0)':
+ '@rushstack/terminal@0.13.3(@types/node@22.4.0)':
dependencies:
- '@rushstack/node-core-library': 5.5.1(@types/node@22.3.0)
+ '@rushstack/node-core-library': 5.5.1(@types/node@22.4.0)
supports-color: 8.1.1
optionalDependencies:
- '@types/node': 22.3.0
+ '@types/node': 22.4.0
- '@rushstack/ts-command-line@4.22.3(@types/node@22.3.0)':
+ '@rushstack/ts-command-line@4.22.3(@types/node@22.4.0)':
dependencies:
- '@rushstack/terminal': 0.13.3(@types/node@22.3.0)
+ '@rushstack/terminal': 0.13.3(@types/node@22.4.0)
'@types/argparse': 1.0.38
argparse: 1.0.10
string-argv: 0.3.2
@@ -12656,13 +12625,13 @@ snapshots:
'@sec-ant/readable-stream@0.4.1': {}
- '@shikijs/core@1.13.0':
+ '@shikijs/core@1.14.1':
dependencies:
'@types/hast': 3.0.4
- '@shikijs/transformers@1.13.0':
+ '@shikijs/transformers@1.14.1':
dependencies:
- shiki: 1.13.0
+ shiki: 1.14.1
'@simonwep/pickr@1.8.2':
dependencies:
@@ -12710,12 +12679,20 @@ snapshots:
postcss-selector-parser: 6.0.10
tailwindcss: 3.4.10
+ '@tanstack/store@0.5.5': {}
+
'@tanstack/virtual-core@3.9.0': {}
- '@tanstack/vue-virtual@3.9.0(vue@3.4.37(typescript@5.5.4))':
+ '@tanstack/vue-store@0.5.5(vue@3.4.38(typescript@5.5.4))':
+ dependencies:
+ '@tanstack/store': 0.5.5
+ vue: 3.4.38(typescript@5.5.4)
+ vue-demi: 0.14.10(vue@3.4.38(typescript@5.5.4))
+
+ '@tanstack/vue-virtual@3.9.0(vue@3.4.38(typescript@5.5.4))':
dependencies:
'@tanstack/virtual-core': 3.9.0
- vue: 3.4.37(typescript@5.5.4)
+ vue: 3.4.38(typescript@5.5.4)
'@tootallnate/once@1.1.2': {}
@@ -12731,7 +12708,7 @@ snapshots:
'@types/conventional-commits-parser@5.0.0':
dependencies:
- '@types/node': 22.3.0
+ '@types/node': 22.4.0
'@types/crypto-js@4.2.2': {}
@@ -12752,7 +12729,7 @@ snapshots:
'@types/fs-extra@11.0.4':
dependencies:
'@types/jsonfile': 6.1.4
- '@types/node': 22.3.0
+ '@types/node': 22.4.0
'@types/hast@3.0.4':
dependencies:
@@ -12762,11 +12739,11 @@ snapshots:
'@types/http-proxy@1.17.15':
dependencies:
- '@types/node': 22.3.0
+ '@types/node': 22.4.0
'@types/jsdom@21.1.7':
dependencies:
- '@types/node': 22.3.0
+ '@types/node': 22.4.0
'@types/tough-cookie': 4.0.5
parse5: 7.1.2
@@ -12774,7 +12751,7 @@ snapshots:
'@types/jsonfile@6.1.4':
dependencies:
- '@types/node': 22.3.0
+ '@types/node': 22.4.0
'@types/katex@0.16.7': {}
@@ -12807,9 +12784,9 @@ snapshots:
dependencies:
undici-types: 5.26.5
- '@types/node@22.3.0':
+ '@types/node@22.4.0':
dependencies:
- undici-types: 6.18.2
+ undici-types: 6.19.6
'@types/normalize-package-data@2.4.4': {}
@@ -12825,7 +12802,7 @@ snapshots:
'@types/qrcode@1.5.5':
dependencies:
- '@types/node': 22.3.0
+ '@types/node': 22.4.0
'@types/resolve@1.20.2': {}
@@ -12982,24 +12959,24 @@ snapshots:
- encoding
- supports-color
- '@vite-pwa/vitepress@0.5.0(vite-plugin-pwa@0.20.1(vite@5.4.1(@types/node@22.3.0)(less@4.2.0)(sass@1.77.8)(terser@5.31.6))(workbox-build@7.1.1)(workbox-window@7.1.0))':
+ '@vite-pwa/vitepress@0.5.0(vite-plugin-pwa@0.20.1(vite@5.4.1(@types/node@22.4.0)(less@4.2.0)(sass@1.77.8)(terser@5.31.6))(workbox-build@7.1.1)(workbox-window@7.1.0))':
dependencies:
- vite-plugin-pwa: 0.20.1(vite@5.4.1(@types/node@22.3.0)(less@4.2.0)(sass@1.77.8)(terser@5.31.6))(workbox-build@7.1.1)(workbox-window@7.1.0)
+ vite-plugin-pwa: 0.20.1(vite@5.4.1(@types/node@22.4.0)(less@4.2.0)(sass@1.77.8)(terser@5.31.6))(workbox-build@7.1.1)(workbox-window@7.1.0)
- '@vitejs/plugin-vue-jsx@4.0.1(vite@5.4.1(@types/node@22.3.0)(less@4.2.0)(sass@1.77.8)(terser@5.31.6))(vue@3.4.37(typescript@5.5.4))':
+ '@vitejs/plugin-vue-jsx@4.0.1(vite@5.4.1(@types/node@22.4.0)(less@4.2.0)(sass@1.77.8)(terser@5.31.6))(vue@3.4.38(typescript@5.5.4))':
dependencies:
'@babel/core': 7.25.2
'@babel/plugin-transform-typescript': 7.25.2(@babel/core@7.25.2)
'@vue/babel-plugin-jsx': 1.2.2(@babel/core@7.25.2)
- vite: 5.4.1(@types/node@22.3.0)(less@4.2.0)(sass@1.77.8)(terser@5.31.6)
- vue: 3.4.37(typescript@5.5.4)
+ vite: 5.4.1(@types/node@22.4.0)(less@4.2.0)(sass@1.77.8)(terser@5.31.6)
+ vue: 3.4.38(typescript@5.5.4)
transitivePeerDependencies:
- supports-color
- '@vitejs/plugin-vue@5.1.2(vite@5.4.1(@types/node@22.3.0)(less@4.2.0)(sass@1.77.8)(terser@5.31.6))(vue@3.4.37(typescript@5.5.4))':
+ '@vitejs/plugin-vue@5.1.2(vite@5.4.1(@types/node@22.4.0)(less@4.2.0)(sass@1.77.8)(terser@5.31.6))(vue@3.4.38(typescript@5.5.4))':
dependencies:
- vite: 5.4.1(@types/node@22.3.0)(less@4.2.0)(sass@1.77.8)(terser@5.31.6)
- vue: 3.4.37(typescript@5.5.4)
+ vite: 5.4.1(@types/node@22.4.0)(less@4.2.0)(sass@1.77.8)(terser@5.31.6)
+ vue: 3.4.38(typescript@5.5.4)
'@vitest/expect@2.0.5':
dependencies:
@@ -13087,14 +13064,6 @@ snapshots:
'@babel/parser': 7.25.3
'@vue/compiler-sfc': 3.4.38
- '@vue/compiler-core@3.4.37':
- dependencies:
- '@babel/parser': 7.25.3
- '@vue/shared': 3.4.37
- entities: 5.0.0
- estree-walker: 2.0.2
- source-map-js: 1.2.0
-
'@vue/compiler-core@3.4.38':
dependencies:
'@babel/parser': 7.25.3
@@ -13103,28 +13072,11 @@ snapshots:
estree-walker: 2.0.2
source-map-js: 1.2.0
- '@vue/compiler-dom@3.4.37':
- dependencies:
- '@vue/compiler-core': 3.4.37
- '@vue/shared': 3.4.37
-
'@vue/compiler-dom@3.4.38':
dependencies:
'@vue/compiler-core': 3.4.38
'@vue/shared': 3.4.38
- '@vue/compiler-sfc@3.4.37':
- dependencies:
- '@babel/parser': 7.25.3
- '@vue/compiler-core': 3.4.37
- '@vue/compiler-dom': 3.4.37
- '@vue/compiler-ssr': 3.4.37
- '@vue/shared': 3.4.37
- estree-walker: 2.0.2
- magic-string: 0.30.11
- postcss: 8.4.41
- source-map-js: 1.2.0
-
'@vue/compiler-sfc@3.4.38':
dependencies:
'@babel/parser': 7.25.3
@@ -13137,11 +13089,6 @@ snapshots:
postcss: 8.4.41
source-map-js: 1.2.0
- '@vue/compiler-ssr@3.4.37':
- dependencies:
- '@vue/compiler-dom': 3.4.37
- '@vue/shared': 3.4.37
-
'@vue/compiler-ssr@3.4.38':
dependencies:
'@vue/compiler-dom': 3.4.38
@@ -13158,15 +13105,15 @@ snapshots:
dependencies:
'@vue/devtools-kit': 7.3.8
- '@vue/devtools-core@7.3.8(vite@5.4.1(@types/node@22.3.0)(less@4.2.0)(sass@1.77.8)(terser@5.31.6))(vue@3.4.37(typescript@5.5.4))':
+ '@vue/devtools-core@7.3.8(vite@5.4.1(@types/node@22.4.0)(less@4.2.0)(sass@1.77.8)(terser@5.31.6))(vue@3.4.38(typescript@5.5.4))':
dependencies:
'@vue/devtools-kit': 7.3.8
'@vue/devtools-shared': 7.3.8
mitt: 3.0.1
nanoid: 3.3.7
pathe: 1.1.2
- vite-hot-client: 0.2.3(vite@5.4.1(@types/node@22.3.0)(less@4.2.0)(sass@1.77.8)(terser@5.31.6))
- vue: 3.4.37(typescript@5.5.4)
+ vite-hot-client: 0.2.3(vite@5.4.1(@types/node@22.4.0)(less@4.2.0)(sass@1.77.8)(terser@5.31.6))
+ vue: 3.4.38(typescript@5.5.4)
transitivePeerDependencies:
- vite
@@ -13197,29 +13144,27 @@ snapshots:
optionalDependencies:
typescript: 5.5.4
- '@vue/reactivity@3.4.37':
+ '@vue/reactivity@3.4.38':
dependencies:
- '@vue/shared': 3.4.37
+ '@vue/shared': 3.4.38
- '@vue/runtime-core@3.4.37':
+ '@vue/runtime-core@3.4.38':
dependencies:
- '@vue/reactivity': 3.4.37
- '@vue/shared': 3.4.37
+ '@vue/reactivity': 3.4.38
+ '@vue/shared': 3.4.38
- '@vue/runtime-dom@3.4.37':
+ '@vue/runtime-dom@3.4.38':
dependencies:
- '@vue/reactivity': 3.4.37
- '@vue/runtime-core': 3.4.37
- '@vue/shared': 3.4.37
+ '@vue/reactivity': 3.4.38
+ '@vue/runtime-core': 3.4.38
+ '@vue/shared': 3.4.38
csstype: 3.1.3
- '@vue/server-renderer@3.4.37(vue@3.4.37(typescript@5.5.4))':
+ '@vue/server-renderer@3.4.38(vue@3.4.38(typescript@5.5.4))':
dependencies:
- '@vue/compiler-ssr': 3.4.37
- '@vue/shared': 3.4.37
- vue: 3.4.37(typescript@5.5.4)
-
- '@vue/shared@3.4.37': {}
+ '@vue/compiler-ssr': 3.4.38
+ '@vue/shared': 3.4.38
+ vue: 3.4.38(typescript@5.5.4)
'@vue/shared@3.4.38': {}
@@ -13228,57 +13173,41 @@ snapshots:
js-beautify: 1.15.1
vue-component-type-helpers: 2.0.29
- '@vueuse/core@10.11.1(vue@3.4.37(typescript@5.5.4))':
+ '@vueuse/core@10.11.1(vue@3.4.38(typescript@5.5.4))':
dependencies:
'@types/web-bluetooth': 0.0.20
'@vueuse/metadata': 10.11.1
- '@vueuse/shared': 10.11.1(vue@3.4.37(typescript@5.5.4))
- vue-demi: 0.14.10(vue@3.4.37(typescript@5.5.4))
+ '@vueuse/shared': 10.11.1(vue@3.4.38(typescript@5.5.4))
+ vue-demi: 0.14.10(vue@3.4.38(typescript@5.5.4))
transitivePeerDependencies:
- '@vue/composition-api'
- vue
- '@vueuse/core@11.0.0(vue@3.4.37(typescript@5.5.4))':
+ '@vueuse/core@11.0.0(vue@3.4.38(typescript@5.5.4))':
dependencies:
'@types/web-bluetooth': 0.0.20
'@vueuse/metadata': 11.0.0
- '@vueuse/shared': 11.0.0(vue@3.4.37(typescript@5.5.4))
- vue-demi: 0.14.10(vue@3.4.37(typescript@5.5.4))
+ '@vueuse/shared': 11.0.0(vue@3.4.38(typescript@5.5.4))
+ vue-demi: 0.14.10(vue@3.4.38(typescript@5.5.4))
transitivePeerDependencies:
- '@vue/composition-api'
- vue
- '@vueuse/core@9.13.0(vue@3.4.37(typescript@5.5.4))':
+ '@vueuse/core@9.13.0(vue@3.4.38(typescript@5.5.4))':
dependencies:
'@types/web-bluetooth': 0.0.16
'@vueuse/metadata': 9.13.0
- '@vueuse/shared': 9.13.0(vue@3.4.37(typescript@5.5.4))
- vue-demi: 0.14.10(vue@3.4.37(typescript@5.5.4))
+ '@vueuse/shared': 9.13.0(vue@3.4.38(typescript@5.5.4))
+ vue-demi: 0.14.10(vue@3.4.38(typescript@5.5.4))
transitivePeerDependencies:
- '@vue/composition-api'
- vue
- '@vueuse/integrations@10.11.1(async-validator@4.2.5)(axios@1.7.4)(focus-trap@7.5.4)(nprogress@0.2.0)(qrcode@1.5.4)(sortablejs@1.15.2)(vue@3.4.37(typescript@5.5.4))':
+ '@vueuse/integrations@11.0.0(async-validator@4.2.5)(axios@1.7.4)(focus-trap@7.5.4)(nprogress@0.2.0)(qrcode@1.5.4)(sortablejs@1.15.2)(vue@3.4.38(typescript@5.5.4))':
dependencies:
- '@vueuse/core': 10.11.1(vue@3.4.37(typescript@5.5.4))
- '@vueuse/shared': 10.11.1(vue@3.4.37(typescript@5.5.4))
- vue-demi: 0.14.10(vue@3.4.37(typescript@5.5.4))
- optionalDependencies:
- async-validator: 4.2.5
- axios: 1.7.4
- focus-trap: 7.5.4
- nprogress: 0.2.0
- qrcode: 1.5.4
- sortablejs: 1.15.2
- transitivePeerDependencies:
- - '@vue/composition-api'
- - vue
-
- '@vueuse/integrations@11.0.0(async-validator@4.2.5)(axios@1.7.4)(focus-trap@7.5.4)(nprogress@0.2.0)(qrcode@1.5.4)(sortablejs@1.15.2)(vue@3.4.37(typescript@5.5.4))':
- dependencies:
- '@vueuse/core': 11.0.0(vue@3.4.37(typescript@5.5.4))
- '@vueuse/shared': 11.0.0(vue@3.4.37(typescript@5.5.4))
- vue-demi: 0.14.10(vue@3.4.37(typescript@5.5.4))
+ '@vueuse/core': 11.0.0(vue@3.4.38(typescript@5.5.4))
+ '@vueuse/shared': 11.0.0(vue@3.4.38(typescript@5.5.4))
+ vue-demi: 0.14.10(vue@3.4.38(typescript@5.5.4))
optionalDependencies:
async-validator: 4.2.5
axios: 1.7.4
@@ -13296,23 +13225,23 @@ snapshots:
'@vueuse/metadata@9.13.0': {}
- '@vueuse/shared@10.11.1(vue@3.4.37(typescript@5.5.4))':
+ '@vueuse/shared@10.11.1(vue@3.4.38(typescript@5.5.4))':
dependencies:
- vue-demi: 0.14.10(vue@3.4.37(typescript@5.5.4))
+ vue-demi: 0.14.10(vue@3.4.38(typescript@5.5.4))
transitivePeerDependencies:
- '@vue/composition-api'
- vue
- '@vueuse/shared@11.0.0(vue@3.4.37(typescript@5.5.4))':
+ '@vueuse/shared@11.0.0(vue@3.4.38(typescript@5.5.4))':
dependencies:
- vue-demi: 0.14.10(vue@3.4.37(typescript@5.5.4))
+ vue-demi: 0.14.10(vue@3.4.38(typescript@5.5.4))
transitivePeerDependencies:
- '@vue/composition-api'
- vue
- '@vueuse/shared@9.13.0(vue@3.4.37(typescript@5.5.4))':
+ '@vueuse/shared@9.13.0(vue@3.4.38(typescript@5.5.4))':
dependencies:
- vue-demi: 0.14.10(vue@3.4.37(typescript@5.5.4))
+ vue-demi: 0.14.10(vue@3.4.38(typescript@5.5.4))
transitivePeerDependencies:
- '@vue/composition-api'
- vue
@@ -13439,10 +13368,10 @@ snapshots:
ansi-styles@6.2.1: {}
- ant-design-vue@4.2.3(vue@3.4.37(typescript@5.5.4)):
+ ant-design-vue@4.2.3(vue@3.4.38(typescript@5.5.4)):
dependencies:
'@ant-design/colors': 6.0.0
- '@ant-design/icons-vue': 7.0.1(vue@3.4.37(typescript@5.5.4))
+ '@ant-design/icons-vue': 7.0.1(vue@3.4.38(typescript@5.5.4))
'@babel/runtime': 7.25.0
'@ctrl/tinycolor': 4.1.0
'@emotion/hash': 0.9.2
@@ -13461,8 +13390,8 @@ snapshots:
shallow-equal: 1.2.1
stylis: 4.3.2
throttle-debounce: 5.0.2
- vue: 3.4.37(typescript@5.5.4)
- vue-types: 3.0.2(vue@3.4.37(typescript@5.5.4))
+ vue: 3.4.38(typescript@5.5.4)
+ vue-types: 3.0.2(vue@3.4.38(typescript@5.5.4))
warning: 4.0.3
any-promise@1.3.0: {}
@@ -13646,7 +13575,7 @@ snapshots:
chalk: 5.3.0
cli-boxes: 3.0.0
string-width: 7.2.0
- type-fest: 4.24.0
+ type-fest: 4.25.0
widest-line: 5.0.0
wrap-ansi: 9.0.0
@@ -13666,7 +13595,7 @@ snapshots:
browserslist@4.23.3:
dependencies:
caniuse-lite: 1.0.30001651
- electron-to-chromium: 1.5.9
+ electron-to-chromium: 1.5.11
node-releases: 2.0.18
update-browserslist-db: 1.1.0(browserslist@4.23.3)
@@ -14041,9 +13970,9 @@ snapshots:
core-util-is@1.0.3: {}
- cosmiconfig-typescript-loader@5.0.0(@types/node@22.3.0)(cosmiconfig@9.0.0(typescript@5.5.4))(typescript@5.5.4):
+ cosmiconfig-typescript-loader@5.0.0(@types/node@22.4.0)(cosmiconfig@9.0.0(typescript@5.5.4))(typescript@5.5.4):
dependencies:
- '@types/node': 22.3.0
+ '@types/node': 22.4.0
cosmiconfig: 9.0.0(typescript@5.5.4)
jiti: 1.21.6
typescript: 5.5.4
@@ -14096,58 +14025,59 @@ snapshots:
crypto-random-string@2.0.0: {}
- cspell-config-lib@8.13.3:
+ cspell-config-lib@8.14.1:
dependencies:
- '@cspell/cspell-types': 8.13.3
+ '@cspell/cspell-types': 8.14.1
comment-json: 4.2.5
yaml: 2.5.0
- cspell-dictionary@8.13.3:
+ cspell-dictionary@8.14.1:
dependencies:
- '@cspell/cspell-pipe': 8.13.3
- '@cspell/cspell-types': 8.13.3
- cspell-trie-lib: 8.13.3
+ '@cspell/cspell-pipe': 8.14.1
+ '@cspell/cspell-types': 8.14.1
+ cspell-trie-lib: 8.14.1
fast-equals: 5.0.1
- cspell-gitignore@8.13.3:
+ cspell-gitignore@8.14.1:
dependencies:
- '@cspell/url': 8.13.3
- cspell-glob: 8.13.3
- cspell-io: 8.13.3
+ '@cspell/url': 8.14.1
+ cspell-glob: 8.14.1
+ cspell-io: 8.14.1
find-up-simple: 1.0.0
- cspell-glob@8.13.3:
+ cspell-glob@8.14.1:
dependencies:
- '@cspell/url': 8.13.3
+ '@cspell/url': 8.14.1
micromatch: 4.0.7
- cspell-grammar@8.13.3:
+ cspell-grammar@8.14.1:
dependencies:
- '@cspell/cspell-pipe': 8.13.3
- '@cspell/cspell-types': 8.13.3
+ '@cspell/cspell-pipe': 8.14.1
+ '@cspell/cspell-types': 8.14.1
- cspell-io@8.13.3:
+ cspell-io@8.14.1:
dependencies:
- '@cspell/cspell-service-bus': 8.13.3
- '@cspell/url': 8.13.3
+ '@cspell/cspell-service-bus': 8.14.1
+ '@cspell/url': 8.14.1
- cspell-lib@8.13.3:
+ cspell-lib@8.14.1:
dependencies:
- '@cspell/cspell-bundled-dicts': 8.13.3
- '@cspell/cspell-pipe': 8.13.3
- '@cspell/cspell-resolver': 8.13.3
- '@cspell/cspell-types': 8.13.3
- '@cspell/dynamic-import': 8.13.3
- '@cspell/strong-weak-map': 8.13.3
- '@cspell/url': 8.13.3
+ '@cspell/cspell-bundled-dicts': 8.14.1
+ '@cspell/cspell-pipe': 8.14.1
+ '@cspell/cspell-resolver': 8.14.1
+ '@cspell/cspell-types': 8.14.1
+ '@cspell/dynamic-import': 8.14.1
+ '@cspell/filetypes': 8.14.1
+ '@cspell/strong-weak-map': 8.14.1
+ '@cspell/url': 8.14.1
clear-module: 4.1.2
comment-json: 4.2.5
- cspell-config-lib: 8.13.3
- cspell-dictionary: 8.13.3
- cspell-glob: 8.13.3
- cspell-grammar: 8.13.3
- cspell-io: 8.13.3
- cspell-trie-lib: 8.13.3
+ cspell-config-lib: 8.14.1
+ cspell-dictionary: 8.14.1
+ cspell-glob: 8.14.1
+ cspell-grammar: 8.14.1
+ cspell-io: 8.14.1
+ cspell-trie-lib: 8.14.1
env-paths: 3.0.0
fast-equals: 5.0.1
gensequence: 7.0.0
@@ -14157,27 +14087,27 @@ snapshots:
vscode-uri: 3.0.8
xdg-basedir: 5.1.0
- cspell-trie-lib@8.13.3:
+ cspell-trie-lib@8.14.1:
dependencies:
- '@cspell/cspell-pipe': 8.13.3
- '@cspell/cspell-types': 8.13.3
+ '@cspell/cspell-pipe': 8.14.1
+ '@cspell/cspell-types': 8.14.1
gensequence: 7.0.0
- cspell@8.13.3:
+ cspell@8.14.1:
dependencies:
- '@cspell/cspell-json-reporter': 8.13.3
- '@cspell/cspell-pipe': 8.13.3
- '@cspell/cspell-types': 8.13.3
- '@cspell/dynamic-import': 8.13.3
- '@cspell/url': 8.13.3
+ '@cspell/cspell-json-reporter': 8.14.1
+ '@cspell/cspell-pipe': 8.14.1
+ '@cspell/cspell-types': 8.14.1
+ '@cspell/dynamic-import': 8.14.1
+ '@cspell/url': 8.14.1
chalk: 5.3.0
chalk-template: 1.1.0
commander: 12.1.0
- cspell-dictionary: 8.13.3
- cspell-gitignore: 8.13.3
- cspell-glob: 8.13.3
- cspell-io: 8.13.3
- cspell-lib: 8.13.3
+ cspell-dictionary: 8.14.1
+ cspell-gitignore: 8.14.1
+ cspell-glob: 8.14.1
+ cspell-io: 8.14.1
+ cspell-lib: 8.14.1
fast-glob: 3.3.2
fast-json-stable-stringify: 2.1.0
file-entry-cache: 9.0.0
@@ -14250,7 +14180,7 @@ snapshots:
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-calc: 10.0.2(postcss@8.4.41)
postcss-colormin: 7.0.2(postcss@8.4.41)
postcss-convert-values: 7.0.3(postcss@8.4.41)
postcss-discard-comments: 7.0.2(postcss@8.4.41)
@@ -14515,7 +14445,7 @@ snapshots:
dot-prop@9.0.0:
dependencies:
- type-fest: 4.24.0
+ type-fest: 4.25.0
dotenv-expand@8.0.3: {}
@@ -14547,17 +14477,17 @@ snapshots:
dependencies:
jake: 10.9.2
- electron-to-chromium@1.5.9: {}
+ electron-to-chromium@1.5.11: {}
- element-plus@2.8.0(vue@3.4.37(typescript@5.5.4)):
+ element-plus@2.8.0(vue@3.4.38(typescript@5.5.4)):
dependencies:
'@ctrl/tinycolor': 4.1.0
- '@element-plus/icons-vue': 2.3.1(vue@3.4.37(typescript@5.5.4))
+ '@element-plus/icons-vue': 2.3.1(vue@3.4.38(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.37(typescript@5.5.4))
+ '@vueuse/core': 9.13.0(vue@3.4.38(typescript@5.5.4))
async-validator: 4.2.5
dayjs: 1.11.12
escape-html: 1.0.3
@@ -14566,7 +14496,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.37(typescript@5.5.4)
+ vue: 3.4.38(typescript@5.5.4)
transitivePeerDependencies:
- '@vue/composition-api'
@@ -14602,8 +14532,6 @@ snapshots:
entities@4.5.0: {}
- entities@5.0.0: {}
-
env-paths@2.2.1: {}
env-paths@3.0.0: {}
@@ -14776,32 +14704,32 @@ snapshots:
'@esbuild/win32-ia32': 0.21.5
'@esbuild/win32-x64': 0.21.5
- esbuild@0.23.0:
+ esbuild@0.23.1:
optionalDependencies:
- '@esbuild/aix-ppc64': 0.23.0
- '@esbuild/android-arm': 0.23.0
- '@esbuild/android-arm64': 0.23.0
- '@esbuild/android-x64': 0.23.0
- '@esbuild/darwin-arm64': 0.23.0
- '@esbuild/darwin-x64': 0.23.0
- '@esbuild/freebsd-arm64': 0.23.0
- '@esbuild/freebsd-x64': 0.23.0
- '@esbuild/linux-arm': 0.23.0
- '@esbuild/linux-arm64': 0.23.0
- '@esbuild/linux-ia32': 0.23.0
- '@esbuild/linux-loong64': 0.23.0
- '@esbuild/linux-mips64el': 0.23.0
- '@esbuild/linux-ppc64': 0.23.0
- '@esbuild/linux-riscv64': 0.23.0
- '@esbuild/linux-s390x': 0.23.0
- '@esbuild/linux-x64': 0.23.0
- '@esbuild/netbsd-x64': 0.23.0
- '@esbuild/openbsd-arm64': 0.23.0
- '@esbuild/openbsd-x64': 0.23.0
- '@esbuild/sunos-x64': 0.23.0
- '@esbuild/win32-arm64': 0.23.0
- '@esbuild/win32-ia32': 0.23.0
- '@esbuild/win32-x64': 0.23.0
+ '@esbuild/aix-ppc64': 0.23.1
+ '@esbuild/android-arm': 0.23.1
+ '@esbuild/android-arm64': 0.23.1
+ '@esbuild/android-x64': 0.23.1
+ '@esbuild/darwin-arm64': 0.23.1
+ '@esbuild/darwin-x64': 0.23.1
+ '@esbuild/freebsd-arm64': 0.23.1
+ '@esbuild/freebsd-x64': 0.23.1
+ '@esbuild/linux-arm': 0.23.1
+ '@esbuild/linux-arm64': 0.23.1
+ '@esbuild/linux-ia32': 0.23.1
+ '@esbuild/linux-loong64': 0.23.1
+ '@esbuild/linux-mips64el': 0.23.1
+ '@esbuild/linux-ppc64': 0.23.1
+ '@esbuild/linux-riscv64': 0.23.1
+ '@esbuild/linux-s390x': 0.23.1
+ '@esbuild/linux-x64': 0.23.1
+ '@esbuild/netbsd-x64': 0.23.1
+ '@esbuild/openbsd-arm64': 0.23.1
+ '@esbuild/openbsd-x64': 0.23.1
+ '@esbuild/sunos-x64': 0.23.1
+ '@esbuild/win32-arm64': 0.23.1
+ '@esbuild/win32-ia32': 0.23.1
+ '@esbuild/win32-x64': 0.23.1
escalade@3.1.2: {}
@@ -14987,13 +14915,13 @@ snapshots:
optionalDependencies:
'@typescript-eslint/eslint-plugin': 8.1.0(@typescript-eslint/parser@8.1.0(eslint@9.9.0(jiti@1.21.6))(typescript@5.5.4))(eslint@9.9.0(jiti@1.21.6))(typescript@5.5.4)
- eslint-plugin-vitest@0.5.4(@typescript-eslint/eslint-plugin@8.1.0(@typescript-eslint/parser@8.1.0(eslint@9.9.0(jiti@1.21.6))(typescript@5.5.4))(eslint@9.9.0(jiti@1.21.6))(typescript@5.5.4))(eslint@9.9.0(jiti@1.21.6))(typescript@5.5.4)(vitest@2.0.5(@types/node@22.3.0)(jsdom@24.1.1)(less@4.2.0)(sass@1.77.8)(terser@5.31.6)):
+ eslint-plugin-vitest@0.5.4(@typescript-eslint/eslint-plugin@8.1.0(@typescript-eslint/parser@8.1.0(eslint@9.9.0(jiti@1.21.6))(typescript@5.5.4))(eslint@9.9.0(jiti@1.21.6))(typescript@5.5.4))(eslint@9.9.0(jiti@1.21.6))(typescript@5.5.4)(vitest@2.0.5(@types/node@22.4.0)(jsdom@24.1.1)(less@4.2.0)(sass@1.77.8)(terser@5.31.6)):
dependencies:
'@typescript-eslint/utils': 7.18.0(eslint@9.9.0(jiti@1.21.6))(typescript@5.5.4)
eslint: 9.9.0(jiti@1.21.6)
optionalDependencies:
'@typescript-eslint/eslint-plugin': 8.1.0(@typescript-eslint/parser@8.1.0(eslint@9.9.0(jiti@1.21.6))(typescript@5.5.4))(eslint@9.9.0(jiti@1.21.6))(typescript@5.5.4)
- vitest: 2.0.5(@types/node@22.3.0)(jsdom@24.1.1)(less@4.2.0)(sass@1.77.8)(terser@5.31.6)
+ vitest: 2.0.5(@types/node@22.4.0)(jsdom@24.1.1)(less@4.2.0)(sass@1.77.8)(terser@5.31.6)
transitivePeerDependencies:
- supports-color
- typescript
@@ -16105,7 +16033,7 @@ snapshots:
kolorist@1.8.0: {}
- ky@1.6.0: {}
+ ky@1.7.0: {}
latest-version@9.0.0:
dependencies:
@@ -16299,9 +16227,9 @@ snapshots:
dependencies:
yallist: 4.0.0
- lucide-vue-next@0.428.0(vue@3.4.37(typescript@5.5.4)):
+ lucide-vue-next@0.428.0(vue@3.4.38(typescript@5.5.4)):
dependencies:
- vue: 3.4.37(typescript@5.5.4)
+ vue: 3.4.38(typescript@5.5.4)
magic-string@0.25.9:
dependencies:
@@ -16468,7 +16396,7 @@ snapshots:
citty: 0.1.6
cssnano: 7.0.5(postcss@8.4.41)
defu: 6.1.4
- esbuild: 0.23.0
+ esbuild: 0.23.1
fast-glob: 3.3.2
jiti: 1.21.6
mlly: 1.7.1
@@ -16515,10 +16443,10 @@ snapshots:
object-assign: 4.1.1
thenify-all: 1.6.0
- naive-ui@2.39.0(vue@3.4.37(typescript@5.5.4)):
+ naive-ui@2.39.0(vue@3.4.38(typescript@5.5.4)):
dependencies:
'@css-render/plugin-bem': 0.15.14(css-render@0.15.14)
- '@css-render/vue3-ssr': 0.15.14(vue@3.4.37(typescript@5.5.4))
+ '@css-render/vue3-ssr': 0.15.14(vue@3.4.38(typescript@5.5.4))
'@types/katex': 0.16.7
'@types/lodash': 4.17.7
'@types/lodash-es': 4.17.12
@@ -16533,10 +16461,10 @@ snapshots:
lodash-es: 4.17.21
seemly: 0.3.8
treemate: 0.3.11
- vdirs: 0.1.8(vue@3.4.37(typescript@5.5.4))
- vooks: 0.2.12(vue@3.4.37(typescript@5.5.4))
- vue: 3.4.37(typescript@5.5.4)
- vueuc: 0.4.58(vue@3.4.37(typescript@5.5.4))
+ vdirs: 0.1.8(vue@3.4.38(typescript@5.5.4))
+ vooks: 0.2.12(vue@3.4.38(typescript@5.5.4))
+ vue: 3.4.38(typescript@5.5.4)
+ vueuc: 0.4.58(vue@3.4.38(typescript@5.5.4))
nanoid@3.3.7: {}
@@ -16871,7 +16799,7 @@ snapshots:
package-json@10.0.1:
dependencies:
- ky: 1.6.0
+ ky: 1.7.0
registry-auth-token: 5.0.2
registry-url: 6.0.1
semver: 7.6.3
@@ -16979,15 +16907,15 @@ snapshots:
pify@4.0.1: {}
- pinia-plugin-persistedstate@3.2.1(pinia@2.2.2(typescript@5.5.4)(vue@3.4.37(typescript@5.5.4))):
+ pinia-plugin-persistedstate@3.2.1(pinia@2.2.2(typescript@5.5.4)(vue@3.4.38(typescript@5.5.4))):
dependencies:
- pinia: 2.2.2(typescript@5.5.4)(vue@3.4.37(typescript@5.5.4))
+ pinia: 2.2.2(typescript@5.5.4)(vue@3.4.38(typescript@5.5.4))
- pinia@2.2.2(typescript@5.5.4)(vue@3.4.37(typescript@5.5.4)):
+ pinia@2.2.2(typescript@5.5.4)(vue@3.4.38(typescript@5.5.4)):
dependencies:
'@vue/devtools-api': 6.6.3
- vue: 3.4.37(typescript@5.5.4)
- vue-demi: 0.14.10(vue@3.4.37(typescript@5.5.4))
+ vue: 3.4.38(typescript@5.5.4)
+ vue-demi: 0.14.10(vue@3.4.38(typescript@5.5.4))
optionalDependencies:
typescript: 5.5.4
@@ -17022,7 +16950,7 @@ snapshots:
postcss: 8.4.41
postcss-selector-parser: 6.1.2
- postcss-calc@10.0.1(postcss@8.4.41):
+ postcss-calc@10.0.2(postcss@8.4.41):
dependencies:
postcss: 8.4.41
postcss-selector-parser: 6.1.2
@@ -17538,20 +17466,20 @@ snapshots:
queue-tick@1.0.1: {}
- radix-vue@1.9.4(vue@3.4.37(typescript@5.5.4)):
+ radix-vue@1.9.4(vue@3.4.38(typescript@5.5.4)):
dependencies:
'@floating-ui/dom': 1.6.10
- '@floating-ui/vue': 1.1.4(vue@3.4.37(typescript@5.5.4))
+ '@floating-ui/vue': 1.1.4(vue@3.4.38(typescript@5.5.4))
'@internationalized/date': 3.5.5
'@internationalized/number': 3.5.3
- '@tanstack/vue-virtual': 3.9.0(vue@3.4.37(typescript@5.5.4))
- '@vueuse/core': 10.11.1(vue@3.4.37(typescript@5.5.4))
- '@vueuse/shared': 10.11.1(vue@3.4.37(typescript@5.5.4))
+ '@tanstack/vue-virtual': 3.9.0(vue@3.4.38(typescript@5.5.4))
+ '@vueuse/core': 10.11.1(vue@3.4.38(typescript@5.5.4))
+ '@vueuse/shared': 10.11.1(vue@3.4.38(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.37(typescript@5.5.4)
+ vue: 3.4.38(typescript@5.5.4)
transitivePeerDependencies:
- '@vue/composition-api'
@@ -17953,9 +17881,9 @@ snapshots:
shebang-regex@3.0.0: {}
- shiki@1.13.0:
+ shiki@1.14.1:
dependencies:
- '@shikijs/core': 1.13.0
+ '@shikijs/core': 1.14.1
'@types/hast': 3.0.4
short-tree@3.0.0:
@@ -18583,7 +18511,7 @@ snapshots:
type-fest@3.13.1: {}
- type-fest@4.24.0: {}
+ type-fest@4.25.0: {}
typed-array-buffer@1.0.2:
dependencies:
@@ -18674,7 +18602,7 @@ snapshots:
undici-types@5.26.5: {}
- undici-types@6.18.2: {}
+ undici-types@6.19.6: {}
undici@5.28.4:
dependencies:
@@ -18865,22 +18793,22 @@ snapshots:
spdx-correct: 3.2.0
spdx-expression-parse: 3.0.1
- vdirs@0.1.8(vue@3.4.37(typescript@5.5.4)):
+ vdirs@0.1.8(vue@3.4.38(typescript@5.5.4)):
dependencies:
evtd: 0.2.4
- vue: 3.4.37(typescript@5.5.4)
+ vue: 3.4.38(typescript@5.5.4)
- vite-hot-client@0.2.3(vite@5.4.1(@types/node@22.3.0)(less@4.2.0)(sass@1.77.8)(terser@5.31.6)):
+ vite-hot-client@0.2.3(vite@5.4.1(@types/node@22.4.0)(less@4.2.0)(sass@1.77.8)(terser@5.31.6)):
dependencies:
- vite: 5.4.1(@types/node@22.3.0)(less@4.2.0)(sass@1.77.8)(terser@5.31.6)
+ vite: 5.4.1(@types/node@22.4.0)(less@4.2.0)(sass@1.77.8)(terser@5.31.6)
- vite-node@2.0.5(@types/node@22.3.0)(less@4.2.0)(sass@1.77.8)(terser@5.31.6):
+ vite-node@2.0.5(@types/node@22.4.0)(less@4.2.0)(sass@1.77.8)(terser@5.31.6):
dependencies:
cac: 6.7.14
debug: 4.3.6
pathe: 1.1.2
tinyrainbow: 1.2.0
- vite: 5.4.1(@types/node@22.3.0)(less@4.2.0)(sass@1.77.8)(terser@5.31.6)
+ vite: 5.4.1(@types/node@22.4.0)(less@4.2.0)(sass@1.77.8)(terser@5.31.6)
transitivePeerDependencies:
- '@types/node'
- less
@@ -18892,18 +18820,18 @@ snapshots:
- supports-color
- terser
- vite-plugin-compression@0.5.1(vite@5.4.1(@types/node@22.3.0)(less@4.2.0)(sass@1.77.8)(terser@5.31.6)):
+ vite-plugin-compression@0.5.1(vite@5.4.1(@types/node@22.4.0)(less@4.2.0)(sass@1.77.8)(terser@5.31.6)):
dependencies:
chalk: 4.1.2
debug: 4.3.6
fs-extra: 10.1.0
- vite: 5.4.1(@types/node@22.3.0)(less@4.2.0)(sass@1.77.8)(terser@5.31.6)
+ vite: 5.4.1(@types/node@22.4.0)(less@4.2.0)(sass@1.77.8)(terser@5.31.6)
transitivePeerDependencies:
- supports-color
- vite-plugin-dts@4.0.3(@types/node@22.3.0)(rollup@4.20.0)(typescript@5.5.4)(vite@5.4.1(@types/node@22.3.0)(less@4.2.0)(sass@1.77.8)(terser@5.31.6)):
+ vite-plugin-dts@4.0.3(@types/node@22.4.0)(rollup@4.20.0)(typescript@5.5.4)(vite@5.4.1(@types/node@22.4.0)(less@4.2.0)(sass@1.77.8)(terser@5.31.6)):
dependencies:
- '@microsoft/api-extractor': 7.47.4(@types/node@22.3.0)
+ '@microsoft/api-extractor': 7.47.4(@types/node@22.4.0)
'@rollup/pluginutils': 5.1.0(rollup@4.20.0)
'@volar/typescript': 2.3.4
'@vue/language-core': 2.0.29(typescript@5.5.4)
@@ -18915,13 +18843,13 @@ snapshots:
typescript: 5.5.4
vue-tsc: 2.0.29(typescript@5.5.4)
optionalDependencies:
- vite: 5.4.1(@types/node@22.3.0)(less@4.2.0)(sass@1.77.8)(terser@5.31.6)
+ vite: 5.4.1(@types/node@22.4.0)(less@4.2.0)(sass@1.77.8)(terser@5.31.6)
transitivePeerDependencies:
- '@types/node'
- rollup
- supports-color
- vite-plugin-html@3.2.2(vite@5.4.1(@types/node@22.3.0)(less@4.2.0)(sass@1.77.8)(terser@5.31.6)):
+ vite-plugin-html@3.2.2(vite@5.4.1(@types/node@22.4.0)(less@4.2.0)(sass@1.77.8)(terser@5.31.6)):
dependencies:
'@rollup/pluginutils': 4.2.1
colorette: 2.0.20
@@ -18935,9 +18863,9 @@ snapshots:
html-minifier-terser: 6.1.0
node-html-parser: 5.4.2
pathe: 0.2.0
- vite: 5.4.1(@types/node@22.3.0)(less@4.2.0)(sass@1.77.8)(terser@5.31.6)
+ vite: 5.4.1(@types/node@22.4.0)(less@4.2.0)(sass@1.77.8)(terser@5.31.6)
- vite-plugin-inspect@0.8.5(rollup@4.20.0)(vite@5.4.1(@types/node@22.3.0)(less@4.2.0)(sass@1.77.8)(terser@5.31.6)):
+ vite-plugin-inspect@0.8.5(rollup@4.20.0)(vite@5.4.1(@types/node@22.4.0)(less@4.2.0)(sass@1.77.8)(terser@5.31.6)):
dependencies:
'@antfu/utils': 0.7.10
'@rollup/pluginutils': 5.1.0(rollup@4.20.0)
@@ -18948,46 +18876,46 @@ snapshots:
perfect-debounce: 1.0.0
picocolors: 1.0.1
sirv: 2.0.4
- vite: 5.4.1(@types/node@22.3.0)(less@4.2.0)(sass@1.77.8)(terser@5.31.6)
+ vite: 5.4.1(@types/node@22.4.0)(less@4.2.0)(sass@1.77.8)(terser@5.31.6)
transitivePeerDependencies:
- rollup
- supports-color
- vite-plugin-lib-inject-css@2.1.1(vite@5.4.1(@types/node@22.3.0)(less@4.2.0)(sass@1.77.8)(terser@5.31.6)):
+ vite-plugin-lib-inject-css@2.1.1(vite@5.4.1(@types/node@22.4.0)(less@4.2.0)(sass@1.77.8)(terser@5.31.6)):
dependencies:
'@ast-grep/napi': 0.22.6
magic-string: 0.30.11
picocolors: 1.0.1
- vite: 5.4.1(@types/node@22.3.0)(less@4.2.0)(sass@1.77.8)(terser@5.31.6)
+ vite: 5.4.1(@types/node@22.4.0)(less@4.2.0)(sass@1.77.8)(terser@5.31.6)
- vite-plugin-pwa@0.20.1(vite@5.4.1(@types/node@22.3.0)(less@4.2.0)(sass@1.77.8)(terser@5.31.6))(workbox-build@7.1.1)(workbox-window@7.1.0):
+ vite-plugin-pwa@0.20.1(vite@5.4.1(@types/node@22.4.0)(less@4.2.0)(sass@1.77.8)(terser@5.31.6))(workbox-build@7.1.1)(workbox-window@7.1.0):
dependencies:
debug: 4.3.6
pretty-bytes: 6.1.1
tinyglobby: 0.2.2
- vite: 5.4.1(@types/node@22.3.0)(less@4.2.0)(sass@1.77.8)(terser@5.31.6)
+ vite: 5.4.1(@types/node@22.4.0)(less@4.2.0)(sass@1.77.8)(terser@5.31.6)
workbox-build: 7.1.1
workbox-window: 7.1.0
transitivePeerDependencies:
- supports-color
- vite-plugin-vue-devtools@7.3.8(rollup@4.20.0)(vite@5.4.1(@types/node@22.3.0)(less@4.2.0)(sass@1.77.8)(terser@5.31.6))(vue@3.4.37(typescript@5.5.4)):
+ vite-plugin-vue-devtools@7.3.8(rollup@4.20.0)(vite@5.4.1(@types/node@22.4.0)(less@4.2.0)(sass@1.77.8)(terser@5.31.6))(vue@3.4.38(typescript@5.5.4)):
dependencies:
- '@vue/devtools-core': 7.3.8(vite@5.4.1(@types/node@22.3.0)(less@4.2.0)(sass@1.77.8)(terser@5.31.6))(vue@3.4.37(typescript@5.5.4))
+ '@vue/devtools-core': 7.3.8(vite@5.4.1(@types/node@22.4.0)(less@4.2.0)(sass@1.77.8)(terser@5.31.6))(vue@3.4.38(typescript@5.5.4))
'@vue/devtools-kit': 7.3.8
'@vue/devtools-shared': 7.3.8
execa: 8.0.1
sirv: 2.0.4
- vite: 5.4.1(@types/node@22.3.0)(less@4.2.0)(sass@1.77.8)(terser@5.31.6)
- vite-plugin-inspect: 0.8.5(rollup@4.20.0)(vite@5.4.1(@types/node@22.3.0)(less@4.2.0)(sass@1.77.8)(terser@5.31.6))
- vite-plugin-vue-inspector: 5.1.3(vite@5.4.1(@types/node@22.3.0)(less@4.2.0)(sass@1.77.8)(terser@5.31.6))
+ vite: 5.4.1(@types/node@22.4.0)(less@4.2.0)(sass@1.77.8)(terser@5.31.6)
+ vite-plugin-inspect: 0.8.5(rollup@4.20.0)(vite@5.4.1(@types/node@22.4.0)(less@4.2.0)(sass@1.77.8)(terser@5.31.6))
+ vite-plugin-vue-inspector: 5.1.3(vite@5.4.1(@types/node@22.4.0)(less@4.2.0)(sass@1.77.8)(terser@5.31.6))
transitivePeerDependencies:
- '@nuxt/kit'
- rollup
- supports-color
- vue
- vite-plugin-vue-inspector@5.1.3(vite@5.4.1(@types/node@22.3.0)(less@4.2.0)(sass@1.77.8)(terser@5.31.6)):
+ vite-plugin-vue-inspector@5.1.3(vite@5.4.1(@types/node@22.4.0)(less@4.2.0)(sass@1.77.8)(terser@5.31.6)):
dependencies:
'@babel/core': 7.25.2
'@babel/plugin-proposal-decorators': 7.24.7(@babel/core@7.25.2)
@@ -18998,40 +18926,40 @@ snapshots:
'@vue/compiler-dom': 3.4.38
kolorist: 1.8.0
magic-string: 0.30.11
- vite: 5.4.1(@types/node@22.3.0)(less@4.2.0)(sass@1.77.8)(terser@5.31.6)
+ vite: 5.4.1(@types/node@22.4.0)(less@4.2.0)(sass@1.77.8)(terser@5.31.6)
transitivePeerDependencies:
- supports-color
- vite@5.4.1(@types/node@22.3.0)(less@4.2.0)(sass@1.77.8)(terser@5.31.6):
+ vite@5.4.1(@types/node@22.4.0)(less@4.2.0)(sass@1.77.8)(terser@5.31.6):
dependencies:
esbuild: 0.21.5
postcss: 8.4.41
rollup: 4.20.0
optionalDependencies:
- '@types/node': 22.3.0
+ '@types/node': 22.4.0
fsevents: 2.3.3
less: 4.2.0
sass: 1.77.8
terser: 5.31.6
- vitepress@1.3.2(@algolia/client-search@4.24.0)(@types/node@22.3.0)(async-validator@4.2.5)(axios@1.7.4)(less@4.2.0)(nprogress@0.2.0)(postcss@8.4.41)(qrcode@1.5.4)(sass@1.77.8)(search-insights@2.16.3)(sortablejs@1.15.2)(terser@5.31.6)(typescript@5.5.4):
+ vitepress@1.3.3(@algolia/client-search@4.24.0)(@types/node@22.4.0)(async-validator@4.2.5)(axios@1.7.4)(less@4.2.0)(nprogress@0.2.0)(postcss@8.4.41)(qrcode@1.5.4)(sass@1.77.8)(search-insights@2.16.3)(sortablejs@1.15.2)(terser@5.31.6)(typescript@5.5.4):
dependencies:
'@docsearch/css': 3.6.1
'@docsearch/js': 3.6.1(@algolia/client-search@4.24.0)(search-insights@2.16.3)
- '@shikijs/core': 1.13.0
- '@shikijs/transformers': 1.13.0
+ '@shikijs/core': 1.14.1
+ '@shikijs/transformers': 1.14.1
'@types/markdown-it': 14.1.2
- '@vitejs/plugin-vue': 5.1.2(vite@5.4.1(@types/node@22.3.0)(less@4.2.0)(sass@1.77.8)(terser@5.31.6))(vue@3.4.37(typescript@5.5.4))
+ '@vitejs/plugin-vue': 5.1.2(vite@5.4.1(@types/node@22.4.0)(less@4.2.0)(sass@1.77.8)(terser@5.31.6))(vue@3.4.38(typescript@5.5.4))
'@vue/devtools-api': 7.3.8
'@vue/shared': 3.4.38
- '@vueuse/core': 10.11.1(vue@3.4.37(typescript@5.5.4))
- '@vueuse/integrations': 10.11.1(async-validator@4.2.5)(axios@1.7.4)(focus-trap@7.5.4)(nprogress@0.2.0)(qrcode@1.5.4)(sortablejs@1.15.2)(vue@3.4.37(typescript@5.5.4))
+ '@vueuse/core': 11.0.0(vue@3.4.38(typescript@5.5.4))
+ '@vueuse/integrations': 11.0.0(async-validator@4.2.5)(axios@1.7.4)(focus-trap@7.5.4)(nprogress@0.2.0)(qrcode@1.5.4)(sortablejs@1.15.2)(vue@3.4.38(typescript@5.5.4))
focus-trap: 7.5.4
mark.js: 8.11.1
minisearch: 7.1.0
- shiki: 1.13.0
- vite: 5.4.1(@types/node@22.3.0)(less@4.2.0)(sass@1.77.8)(terser@5.31.6)
- vue: 3.4.37(typescript@5.5.4)
+ shiki: 1.14.1
+ vite: 5.4.1(@types/node@22.4.0)(less@4.2.0)(sass@1.77.8)(terser@5.31.6)
+ vue: 3.4.38(typescript@5.5.4)
optionalDependencies:
postcss: 8.4.41
transitivePeerDependencies:
@@ -19062,7 +18990,7 @@ snapshots:
- typescript
- universal-cookie
- vitest@2.0.5(@types/node@22.3.0)(jsdom@24.1.1)(less@4.2.0)(sass@1.77.8)(terser@5.31.6):
+ vitest@2.0.5(@types/node@22.4.0)(jsdom@24.1.1)(less@4.2.0)(sass@1.77.8)(terser@5.31.6):
dependencies:
'@ampproject/remapping': 2.3.0
'@vitest/expect': 2.0.5
@@ -19080,11 +19008,11 @@ snapshots:
tinybench: 2.9.0
tinypool: 1.0.0
tinyrainbow: 1.2.0
- vite: 5.4.1(@types/node@22.3.0)(less@4.2.0)(sass@1.77.8)(terser@5.31.6)
- vite-node: 2.0.5(@types/node@22.3.0)(less@4.2.0)(sass@1.77.8)(terser@5.31.6)
+ vite: 5.4.1(@types/node@22.4.0)(less@4.2.0)(sass@1.77.8)(terser@5.31.6)
+ vite-node: 2.0.5(@types/node@22.4.0)(less@4.2.0)(sass@1.77.8)(terser@5.31.6)
why-is-node-running: 2.3.0
optionalDependencies:
- '@types/node': 22.3.0
+ '@types/node': 22.4.0
jsdom: 24.1.1
transitivePeerDependencies:
- less
@@ -19096,10 +19024,10 @@ snapshots:
- supports-color
- terser
- vooks@0.2.12(vue@3.4.37(typescript@5.5.4)):
+ vooks@0.2.12(vue@3.4.38(typescript@5.5.4)):
dependencies:
evtd: 0.2.4
- vue: 3.4.37(typescript@5.5.4)
+ vue: 3.4.38(typescript@5.5.4)
vscode-languageserver-textdocument@1.0.12: {}
@@ -19107,9 +19035,9 @@ snapshots:
vue-component-type-helpers@2.0.29: {}
- vue-demi@0.14.10(vue@3.4.37(typescript@5.5.4)):
+ vue-demi@0.14.10(vue@3.4.38(typescript@5.5.4)):
dependencies:
- vue: 3.4.37(typescript@5.5.4)
+ vue: 3.4.38(typescript@5.5.4)
vue-eslint-parser@9.4.3(eslint@9.9.0(jiti@1.21.6)):
dependencies:
@@ -19124,17 +19052,17 @@ snapshots:
transitivePeerDependencies:
- supports-color
- vue-i18n@9.13.1(vue@3.4.37(typescript@5.5.4)):
+ vue-i18n@9.14.0(vue@3.4.38(typescript@5.5.4)):
dependencies:
- '@intlify/core-base': 9.13.1
- '@intlify/shared': 9.13.1
+ '@intlify/core-base': 9.14.0
+ '@intlify/shared': 9.14.0
'@vue/devtools-api': 6.6.3
- vue: 3.4.37(typescript@5.5.4)
+ vue: 3.4.38(typescript@5.5.4)
- vue-router@4.4.3(vue@3.4.37(typescript@5.5.4)):
+ vue-router@4.4.3(vue@3.4.38(typescript@5.5.4)):
dependencies:
'@vue/devtools-api': 6.6.3
- vue: 3.4.37(typescript@5.5.4)
+ vue: 3.4.38(typescript@5.5.4)
vue-tsc@2.0.29(typescript@5.5.4):
dependencies:
@@ -19143,31 +19071,31 @@ snapshots:
semver: 7.6.3
typescript: 5.5.4
- vue-types@3.0.2(vue@3.4.37(typescript@5.5.4)):
+ vue-types@3.0.2(vue@3.4.38(typescript@5.5.4)):
dependencies:
is-plain-object: 3.0.1
- vue: 3.4.37(typescript@5.5.4)
+ vue: 3.4.38(typescript@5.5.4)
- vue@3.4.37(typescript@5.5.4):
+ vue@3.4.38(typescript@5.5.4):
dependencies:
- '@vue/compiler-dom': 3.4.37
- '@vue/compiler-sfc': 3.4.37
- '@vue/runtime-dom': 3.4.37
- '@vue/server-renderer': 3.4.37(vue@3.4.37(typescript@5.5.4))
- '@vue/shared': 3.4.37
+ '@vue/compiler-dom': 3.4.38
+ '@vue/compiler-sfc': 3.4.38
+ '@vue/runtime-dom': 3.4.38
+ '@vue/server-renderer': 3.4.38(vue@3.4.38(typescript@5.5.4))
+ '@vue/shared': 3.4.38
optionalDependencies:
typescript: 5.5.4
- vueuc@0.4.58(vue@3.4.37(typescript@5.5.4)):
+ vueuc@0.4.58(vue@3.4.38(typescript@5.5.4)):
dependencies:
- '@css-render/vue3-ssr': 0.15.14(vue@3.4.37(typescript@5.5.4))
+ '@css-render/vue3-ssr': 0.15.14(vue@3.4.38(typescript@5.5.4))
'@juggle/resize-observer': 3.4.0
css-render: 0.15.14
evtd: 0.2.4
seemly: 0.3.8
- vdirs: 0.1.8(vue@3.4.37(typescript@5.5.4))
- vooks: 0.2.12(vue@3.4.37(typescript@5.5.4))
- vue: 3.4.37(typescript@5.5.4)
+ vdirs: 0.1.8(vue@3.4.38(typescript@5.5.4))
+ vooks: 0.2.12(vue@3.4.38(typescript@5.5.4))
+ vue: 3.4.38(typescript@5.5.4)
w3c-xmlserializer@5.0.0:
dependencies: