From 6dcd949531fb4f013432e6368003d6df3a8c8943 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?=E2=80=9Cchenhuachun=E2=80=9D?= <“samchen08@163.com”>
Date: Wed, 3 Dec 2025 16:21:26 +0800
Subject: [PATCH 01/11] =?UTF-8?q?fix:=20=F0=9F=90=9B=20=E5=85=83=E6=95=B0?=
=?UTF-8?q?=E6=8D=AE=E8=AF=86=E5=88=AB=E7=B1=BB=E5=9E=8B=E8=AF=86=E5=88=AB?=
=?UTF-8?q?=E9=94=99=E8=AF=AF?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
packages/designer/src/components/hooks/useAI.ts | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/packages/designer/src/components/hooks/useAI.ts b/packages/designer/src/components/hooks/useAI.ts
index acd584b84..9abd6c01d 100644
--- a/packages/designer/src/components/hooks/useAI.ts
+++ b/packages/designer/src/components/hooks/useAI.ts
@@ -199,7 +199,7 @@ export function useAI() {
data[0].type = currentTopic.value.type;
}
if (currentTopic.value.dataType) {
- data[0].type = currentTopic.value.dataType;
+ data[0].dataType = currentTopic.value.dataType;
}
}
chats.value = res.data;
--
Gitee
From 196233b1f8012166a636e88861ff3f7e6383465c Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?=E2=80=9Cchenhuachun=E2=80=9D?= <“samchen08@163.com”>
Date: Wed, 3 Dec 2025 16:57:40 +0800
Subject: [PATCH 02/11] =?UTF-8?q?feat:=20=E2=9C=A8=20=E5=88=87=E6=8D=A2?=
=?UTF-8?q?=E9=A3=8E=E6=A0=BC=E6=8C=89=E9=92=AE=E6=9B=B4=E6=94=B9=E5=88=B0?=
=?UTF-8?q?=E7=8A=B6=E6=80=81=E6=A0=8F=E6=98=BE=E7=A4=BA?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
.../designer/src/components/regions/apps.vue | 18 ---------
.../designer/src/components/widgets/index.ts | 4 +-
.../src/components/widgets/themer/index.vue | 37 +++++++++++++++++++
.../designer/src/managers/built-in/widgets.ts | 6 +++
4 files changed, 46 insertions(+), 19 deletions(-)
create mode 100644 packages/designer/src/components/widgets/themer/index.vue
diff --git a/packages/designer/src/components/regions/apps.vue b/packages/designer/src/components/regions/apps.vue
index c83fca787..8b7e687cd 100644
--- a/packages/designer/src/components/regions/apps.vue
+++ b/packages/designer/src/components/regions/apps.vue
@@ -19,7 +19,6 @@
:icon="widget.icon"
:label="widget.label"
@click="handleClickOtherItem(widget)">
-
@@ -39,7 +38,6 @@
// @ts-ignore
import { computed, ref, KeepAlive, watch, h, markRaw } from 'vue';
import { createDialog } from '@vtj/ui';
- import { Sunny, Moon } from '@vtj/icons';
import { WidgetWrapper } from '../../wrappers';
import { useEngine, RegionType, type AppWidget } from '../../framework';
import { Icon } from '../shared';
@@ -67,18 +65,6 @@
});
});
- const switchThemeProps = computed(() => {
- return engine.state.dark
- ? {
- icon: markRaw(Sunny),
- label: '切换到明亮风格'
- }
- : {
- icon: markRaw(Moon),
- label: '切换到暗黑风格'
- };
- });
-
const defaultWidget = panelWidgets.value[props.index];
const active = ref
(defaultWidget);
const open = ref(defaultWidget);
@@ -114,10 +100,6 @@
open.value = widget;
};
- const toggleTheme = () => {
- engine.state.dark = !engine.state.dark;
- };
-
defineOptions({
name: 'AppsRegion',
inheritAttrs: false
diff --git a/packages/designer/src/components/widgets/index.ts b/packages/designer/src/components/widgets/index.ts
index 254164cd6..f54ca4935 100644
--- a/packages/designer/src/components/widgets/index.ts
+++ b/packages/designer/src/components/widgets/index.ts
@@ -35,6 +35,7 @@ import Globals from './globals/index.vue';
import I18n from './i18n/index.vue';
import Hotkeys from './hotkeys/index.vue';
import Devtools from './devtools/index.vue';
+import Themer from './themer/index.vue';
export const widgets = {
Logo,
@@ -73,5 +74,6 @@ export const widgets = {
Globals,
I18n,
Hotkeys,
- Devtools
+ Devtools,
+ Themer
};
diff --git a/packages/designer/src/components/widgets/themer/index.vue b/packages/designer/src/components/widgets/themer/index.vue
new file mode 100644
index 000000000..eeb3c0458
--- /dev/null
+++ b/packages/designer/src/components/widgets/themer/index.vue
@@ -0,0 +1,37 @@
+
+
+
+
+
diff --git a/packages/designer/src/managers/built-in/widgets.ts b/packages/designer/src/managers/built-in/widgets.ts
index ce44d96f8..120da0185 100644
--- a/packages/designer/src/managers/built-in/widgets.ts
+++ b/packages/designer/src/managers/built-in/widgets.ts
@@ -325,5 +325,11 @@ export const builtInWidgets: Array = [
region: 'Status',
component: widgets.Hotkeys,
group: WidgetGroup.Right
+ },
+ {
+ name: 'Themer',
+ region: 'Status',
+ component: widgets.Themer,
+ group: WidgetGroup.Right
}
];
--
Gitee
From 2e8b711f0960c5dbacae2d20a2d44e40dbfd059e Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?=E2=80=9Cchenhuachun=E2=80=9D?= <“samchen08@163.com”>
Date: Thu, 4 Dec 2025 09:39:55 +0800
Subject: [PATCH 03/11] =?UTF-8?q?feat:=20=E2=9C=A8=20createApi=20=E6=94=AF?=
=?UTF-8?q?=E6=8C=81=E8=AE=BE=E7=BD=AErequest=20=E5=AE=9E=E4=BE=8B?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
packages/utils/src/request.ts | 11 +++++++----
1 file changed, 7 insertions(+), 4 deletions(-)
diff --git a/packages/utils/src/request.ts b/packages/utils/src/request.ts
index 26c6dd533..ed7e4da62 100644
--- a/packages/utils/src/request.ts
+++ b/packages/utils/src/request.ts
@@ -509,21 +509,24 @@ export const request: IStaticRequest = createRequest({
}
});
-export function createApi(config: string | IRequestConfig) {
+export function createApi(
+ config: string | IRequestConfig,
+ req: IStaticRequest = request
+) {
const _conifg: IRequestConfig =
typeof config === 'string' ? { url: config } : config;
return (data?: D, opts?: IRequestConfig) =>
- request.send(merge({}, _conifg, opts || {}, { data }));
+ req.send(merge({}, _conifg, opts || {}, { data }));
}
export interface IApiMap {
[name: string]: string | IRequestConfig;
}
-export function createApis(map: IApiMap) {
+export function createApis(map: IApiMap, req: IStaticRequest = request) {
const apis: Record> = {};
for (const [name, opts] of Object.entries(map)) {
- apis[name] = createApi(opts);
+ apis[name] = createApi(opts, req);
}
return apis;
}
--
Gitee
From 49376c55824d4b015ea02422c5dec127815c3e6b Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?=E2=80=9Cchenhuachun=E2=80=9D?= <“samchen08@163.com”>
Date: Mon, 8 Dec 2025 08:17:12 +0800
Subject: [PATCH 04/11] =?UTF-8?q?docs:=20=E2=9C=8F=EF=B8=8F=20=20doc?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
docs/src/wiki/ai/index.md | 287 +++++++++++++++++++++++++++++++++++---
1 file changed, 268 insertions(+), 19 deletions(-)
diff --git a/docs/src/wiki/ai/index.md b/docs/src/wiki/ai/index.md
index 162a8db73..10e78b4f4 100644
--- a/docs/src/wiki/ai/index.md
+++ b/docs/src/wiki/ai/index.md
@@ -1,42 +1,171 @@
# AI 集成架构
-本文档详细介绍了 VTJ 平台中 AI 驱动的代码生成与设计辅助功能。AI 子系统与 VTJ 核心引擎深度集成,支持通过自然语言提示、图像上传和元数据文件生成 Vue 组件和页面。有关底层处理机制,请参阅**核心架构文档**;关于可视化设计实现,请参考**设计器与渲染器文档**。
+本文档详细介绍了 VTJ(Visual Template JavaScript)平台中 AI 驱动的代码生成与设计辅助功能。AI 子系统与 VTJ 核心引擎深度集成,支持通过自然语言提示、图像上传和结构化元数据文件生成 Vue 单文件组件(SFC)和完整页面。
+
+## 文档概述
+
+VTJ 的 AI 集成旨在提升前端开发效率,将自然语言描述、设计稿或结构化数据快速转换为可运行的 Vue 代码。系统采用模块化设计,确保生成的代码符合项目规范且易于维护。
+
+### 相关文档
+
+- **核心架构文档**:了解 VTJ 底层处理机制和引擎设计
+- **设计器与渲染器文档**:查看可视化设计实现细节
+- **API 参考文档**:获取完整的接口定义和使用示例
## AI 系统架构
-VTJ 的 AI 集成采用分层架构设计,各层协同工作实现用户输入到可执行 Vue 代码的转换:
+VTJ 的 AI 集成采用分层架构设计,各层协同工作实现从用户输入到可执行 Vue 代码的完整转换流程。这种设计确保了系统的可扩展性、可维护性和高性能。

-**AI 集成架构层次:**
+### 架构层次详解
+
+**AI 集成架构包含以下四个核心层次:**
+
+1. **接口层(Interface Layer)**
+ - **职责**:收集并标准化用户输入,包括文本、图像和 JSON 数据
+ - **关键组件**:`ChatInput`、`ImageInput`、`JsonInput` 组件
+ - **输入验证**:对上传文件进行格式、大小和安全性检查
+ - **数据预处理**:将原始输入转换为 AI 模型可处理的标准化格式
+
+2. **逻辑控制层(Logic Control Layer)**
+ - **职责**:管理应用状态、协调 API 通信、处理异常情况
+ - **状态管理**:基于状态机的对话流程控制(INITIAL → STREAMING → COMPLETED/ERROR)
+ - **API 网关**:统一管理与外部 AI 服务的通信,支持负载均衡和故障转移
+ - **错误处理**:捕获并处理网络异常、API 限流、认证失败等场景
-1. **接口层**:负责收集用户输入(文本、图像、JSON)
-2. **逻辑控制层**:管理状态机、API 通信和错误处理
-3. **AI 处理层**:执行自然语言理解、图像识别和代码生成
-4. **引擎集成层**:将生成的代码与 VTJ 核心引擎对接
+3. **AI 处理层(AI Processing Layer)**
+ - **职责**:执行自然语言理解、计算机视觉分析和代码生成
+ - **模型集成**:支持多种 AI 模型(如 GPT、Claude、本地模型等)
+ - **上下文管理**:维护对话历史、项目配置和用户偏好
+ - **代码生成**:基于上下文生成符合 Vue 3 和 TypeScript 最佳实践的代码
+
+4. **引擎集成层(Engine Integration Layer)**
+ - **职责**:将 AI 生成的代码无缝集成到 VTJ 核心引擎
+ - **代码转换**:将 Vue SFC 转换为 VTJ DSL 中间表示
+ - **变更应用**:通过增量更新机制将生成代码应用到当前项目
+ - **渲染同步**:确保 UI 实时反映代码变更,提供即时反馈
+
+### 数据流与通信机制
+
+各层之间通过明确定义的接口进行通信,采用事件驱动架构确保松耦合:
+
+- **向上通信**:使用回调函数和 Promise 处理异步操作
+- **向下通信**:通过方法调用传递处理结果
+- **横向通信**:基于事件总线实现组件间通信
## AI 输入处理机制
-VTJ 支持三种输入模式,每种模式针对不同的开发场景:
+VTJ 支持三种输入模式,每种模式针对不同的开发场景和用户需求。系统根据输入类型自动选择最合适的处理管线,确保生成代码的质量和准确性。
+
+### 输入模式对比
+
+| 输入类型 | 前端组件 | 支持格式 | 最大文件大小 | 典型应用场景 | 处理延迟 |
+| ------------ | ---------- | ----------------- | ------------ | ------------------------- | ----------- |
+| 自然语言文本 | ChatInput | 纯文本 | 无限制 | 功能需求描述、代码优化 | 低 (1-3秒) |
+| 设计图像 | ImageInput | .png, .jpg, .jpeg | 10MB | 界面原型、设计稿转代码 | 中 (3-10秒) |
+| 结构化元数据 | JsonInput | .json | 5MB | Figma/Sketch 设计文件导出 | 低 (1-5秒) |
+
+**选择建议:**
-| 输入类型 | 前端组件 | 支持格式 | 典型应用场景 |
-| ------------ | ---------- | ----------------- | ------------------------- |
-| 自然语言文本 | ChatInput | 纯文本 | 功能需求描述、代码优化 |
-| 设计图像 | ImageInput | .png, .jpg, .jpeg | 界面原型、设计稿转代码 |
-| 结构化元数据 | JsonInput | .json | Figma/Sketch 设计文件导出 |
+- **快速原型**:使用自然语言文本描述需求
+- **设计稿实现**:上传设计图像获取精确布局
+- **设计系统集成**:使用结构化 JSON 保持设计一致性
### 文本输入处理流程
-文本输入通过 AISendData 接口处理自然语言提示,处理流程如下:
+文本输入通过 `AISendData` 接口处理自然语言提示,将用户需求转换为高质量的 Vue 代码。处理流程如下:

-**处理流程:**
+#### 详细处理步骤
+
+**1. 上下文提取**
+
+```typescript
+// 上下文提取示例
+interface ProjectContext {
+ currentDSL: DSLDefinition; // 当前 DSL 定义
+ vueComponents: VueComponent[]; // 现有 Vue 组件
+ styleConfig: StyleConfig; // 样式配置
+ dependencies: string[]; // 项目依赖
+ userPreferences: UserPrefs; // 用户偏好设置
+}
+
+function extractContext(blockId: string): ProjectContext {
+ // 从引擎中提取当前块的相关上下文
+ return {
+ currentDSL: engine.getCurrentDSL(blockId),
+ vueComponents: engine.getComponentsInScope(blockId),
+ styleConfig: styleSystem.getConfig(),
+ dependencies: packageManager.getDependencies(),
+ userPreferences: userConfig.getPreferences()
+ };
+}
+```
+
+**2. 提示词构建**
+
+- **系统提示**:定义 AI 角色和任务目标
+- **用户提示**:包含用户原始输入和提取的上下文
+- **格式约束**:指定输出格式(Vue 3 + TypeScript + Composition API)
+- **质量要求**:强调代码可读性、性能和可维护性
+
+**3. AI 代码生成**
+
+- **模型调用**:通过配置的 AI 服务生成代码
+- **温度控制**:平衡创造性和确定性(默认 temperature=0.7)
+- **最大长度**:限制生成内容长度,避免过长响应
+- **重试机制**:网络失败时自动重试(最多3次)
+
+**4. 代码验证与解析**
+
+```typescript
+// 代码验证逻辑
+function validateGeneratedCode(vueCode: string): ValidationResult {
+ const result: ValidationResult = {
+ isValid: false,
+ errors: [],
+ warnings: [],
+ parsedAST: null
+ };
+
+ try {
+ // 语法检查
+ const ast = parseVueSFC(vueCode);
+
+ // 组件命名规范检查
+ if (!isPascalCase(ast.componentName)) {
+ result.warnings.push('组件名称建议使用 PascalCase 格式');
+ }
+
+ // 样式作用域检查
+ if (ast.styles.some((style) => !style.scoped)) {
+ result.warnings.push('建议为组件样式添加 scoped 属性');
+ }
+
+ // 依赖检查
+ const missingDeps = checkDependencies(ast.imports);
+ if (missingDeps.length > 0) {
+ result.errors.push(`缺少依赖: ${missingDeps.join(', ')}`);
+ }
-1. 提取当前项目上下文(包括 DSL 定义和 Vue 源码)
-2. 构建包含完整上下文的提示词
-3. 通过 AI 模型生成 Vue SFC 代码
-4. 解析并验证生成代码的有效性
+ result.isValid = result.errors.length === 0;
+ result.parsedAST = ast;
+ } catch (error) {
+ result.errors.push(`语法解析错误: ${error.message}`);
+ }
+
+ return result;
+}
+```
+
+#### 性能优化
+
+- **上下文缓存**:频繁访问的上下文数据缓存 5 分钟
+- **提示词模板**:预编译提示词模板,减少运行时开销
+- **流式响应**:支持边生成边返回,提升用户体验
+- **并发控制**:限制同时处理的请求数量,避免资源耗尽
### 图像输入处理流程
@@ -204,3 +333,123 @@ function handleAutoApply(generatedCode) {
| 用户取消操作 | onCancelChat 事件处理 | 清理中间状态,释放资源 |
错误处理系统提供上下文感知的恢复建议,支持用户迭代优化 AI 生成的代码。
+
+## 配置与最佳实践
+
+### AI 服务配置
+
+VTJ 支持多种 AI 服务提供商,您可以根据需求进行配置:
+
+```typescript
+// AI 配置示例 (config/ai.config.ts)
+export const aiConfig = {
+ // OpenAI 配置
+ openai: {
+ apiKey: process.env.OPENAI_API_KEY,
+ model: 'gpt-4-turbo-preview',
+ temperature: 0.7,
+ maxTokens: 4000,
+ timeout: 30000 // 30秒超时
+ },
+
+ // 本地模型配置
+ local: {
+ endpoint: 'http://localhost:11434/api/generate',
+ model: 'codellama:13b',
+ temperature: 0.5,
+ contextWindow: 4096
+ },
+
+ // 图像识别配置
+ vision: {
+ provider: 'google-vision',
+ apiKey: process.env.GOOGLE_VISION_API_KEY,
+ features: ['TEXT_DETECTION', 'LABEL_DETECTION', 'OBJECT_LOCALIZATION']
+ },
+
+ // 通用设置
+ general: {
+ autoApply: true, // 自动应用验证通过的代码
+ enableStreaming: true, // 启用流式响应
+ maxRetries: 3, // 最大重试次数
+ cacheDuration: 300000 // 缓存持续时间 (5分钟)
+ }
+};
+```
+
+### 性能优化建议
+
+1. **上下文管理**
+ - 定期清理过期的对话历史
+ - 使用增量更新减少上下文大小
+ - 启用上下文压缩(移除重复信息)
+
+2. **提示词工程**
+ - 为常见任务创建模板提示词
+ - 使用少样本学习(few-shot learning)提供示例
+ - 明确指定输出格式和约束条件
+
+3. **错误处理策略**
+ - 实现指数退避重试机制
+ - 设置合理的超时时间
+ - 提供用户友好的错误信息
+
+### 安全注意事项
+
+1. **API 密钥管理**
+ - 使用环境变量存储敏感信息
+ - 定期轮换 API 密钥
+ - 实施访问控制和速率限制
+
+2. **输入验证**
+ - 验证上传文件的类型和大小
+ - 扫描恶意内容
+ - 实施内容过滤策略
+
+3. **输出审查**
+ - 检查生成代码的安全性
+ - 验证第三方依赖的安全性
+ - 实施代码沙箱执行环境
+
+### 监控与日志
+
+建议启用以下监控指标:
+
+- **成功率**:AI 请求成功比例
+- **响应时间**:从输入到代码生成的平均时间
+- **代码质量**:生成代码的验证通过率
+- **用户满意度**:用户对生成代码的反馈评分
+
+```typescript
+// 监控指标收集示例
+interface AIMetrics {
+ requestId: string;
+ inputType: 'text' | 'image' | 'json';
+ processingTime: number;
+ success: boolean;
+ errorCode?: string;
+ validationResult: ValidationResult;
+ userFeedback?: number; // 1-5 评分
+}
+```
+
+## 总结
+
+VTJ 的 AI 集成架构提供了一个强大而灵活的平台,将自然语言、设计图像和结构化数据转换为高质量的 Vue 代码。通过分层架构设计、实时流处理、严格的代码验证和全面的错误处理,系统确保了生成代码的可靠性、安全性和性能。
+
+### 核心优势
+
+1. **多模态输入**:支持文本、图像和 JSON 多种输入方式
+2. **实时交互**:基于 SSE 的流式响应提供即时反馈
+3. **高质量输出**:严格的验证机制确保代码符合项目规范
+4. **可扩展架构**:模块化设计支持多种 AI 模型和服务提供商
+5. **开发者友好**:提供交互式审查、自动应用等增强功能
+
+### 未来发展方向
+
+1. **多模型支持**:集成更多开源和专有 AI 模型
+2. **代码优化**:自动优化生成代码的性能和可访问性
+3. **团队协作**:支持多人协作和代码评审工作流
+4. **自定义训练**:允许用户基于项目代码训练专属模型
+
+通过持续优化和改进,VTJ 的 AI 集成将继续提升前端开发效率,帮助开发者更快地将创意转化为可运行的代码。
--
Gitee
From 0535a247d0f80c4bd0148e8efdc154b4e863feb7 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?=E2=80=9Cchenhuachun=E2=80=9D?= <“samchen08@163.com”>
Date: Mon, 8 Dec 2025 17:15:35 +0800
Subject: [PATCH 05/11] =?UTF-8?q?feat:=20=E2=9C=A8=20AI=E9=85=8D=E7=BD=AE?=
=?UTF-8?q?=E6=94=AF=E6=8C=81=20orderLink=20=E5=92=8C=20tokenLink?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
packages/designer/src/components/widgets/ai/pay-tip.vue | 9 ++++++++-
packages/designer/src/framework/openapi.ts | 2 ++
2 files changed, 10 insertions(+), 1 deletion(-)
diff --git a/packages/designer/src/components/widgets/ai/pay-tip.vue b/packages/designer/src/components/widgets/ai/pay-tip.vue
index b787fd357..b3854585a 100644
--- a/packages/designer/src/components/widgets/ai/pay-tip.vue
+++ b/packages/designer/src/components/widgets/ai/pay-tip.vue
@@ -23,7 +23,7 @@
或
-
+
免费获取额度
@@ -134,9 +134,16 @@
const orderData = ref(null);
const orderLink = computed(() => {
+ if (props.settings?.orderLink) {
+ return `${props.settings?.orderLink}?id=${orderData.value?.id}`;
+ }
return `${props.remote || REMOTE}/page/a3wwnb20?id=${orderData.value?.id}`;
});
+ const tokenLink = computed(() => {
+ return props.settings?.tokenLink || GET_TOKENS_LINK;
+ });
+
watch(
() => props.settings,
(v) => {
diff --git a/packages/designer/src/framework/openapi.ts b/packages/designer/src/framework/openapi.ts
index 64008f704..ad94e5891 100644
--- a/packages/designer/src/framework/openapi.ts
+++ b/packages/designer/src/framework/openapi.ts
@@ -111,6 +111,8 @@ export interface Settings {
invited: boolean;
paid: boolean;
free: boolean;
+ orderLink?: string;
+ tokenLink?: string;
}
export interface CompletionChunk {
--
Gitee
From d6f4fe29f598b46ada459dd113d8c283d916765f Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?=E2=80=9Cchenhuachun=E2=80=9D?= <“samchen08@163.com”>
Date: Tue, 9 Dec 2025 16:56:46 +0800
Subject: [PATCH 06/11] =?UTF-8?q?fix:=20=F0=9F=90=9B=20=E6=94=AF=E4=BB=98?=
=?UTF-8?q?=E6=88=90=E5=8A=9F=E6=8F=90=E7=A4=BA?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
packages/designer/src/components/widgets/ai/pay-tip.vue | 6 ++++--
1 file changed, 4 insertions(+), 2 deletions(-)
diff --git a/packages/designer/src/components/widgets/ai/pay-tip.vue b/packages/designer/src/components/widgets/ai/pay-tip.vue
index b3854585a..427dbbc92 100644
--- a/packages/designer/src/components/widgets/ai/pay-tip.vue
+++ b/packages/designer/src/components/widgets/ai/pay-tip.vue
@@ -181,11 +181,13 @@
const res = await props.getOrder(orderData.value?.id);
const data = res?.data;
if (data.status === 'Completed') {
- await alert('订单已经支付成功,你权限已经开通!').catch(() => null);
+ await alert('订单已经支付成功,你权限已经开通!', {
+ type: 'success'
+ }).catch(() => null);
location.reload();
} else {
await alert('您的订单状态还没更新,支付后请与客服联系!', {
- type: 'success',
+ type: 'warning',
confirmButtonText: '再等等'
}).catch(() => null);
}
--
Gitee
From 49859a2d394d8477683584cb7f48bdbbc9563b77 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?=E2=80=9Cchenhuachun=E2=80=9D?= <“samchen08@163.com”>
Date: Thu, 11 Dec 2025 08:20:58 +0800
Subject: [PATCH 07/11] =?UTF-8?q?chore:=20=F0=9F=9A=80=20=E6=9B=B4?=
=?UTF-8?q?=E6=96=B0=E4=BE=9D=E8=B5=96?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
apps/extension/package.json | 2 +-
apps/material/package.json | 2 +-
packages/cli/package.json | 2 +-
packages/materials/package.json | 2 +-
packages/parser/package.json | 2 +-
packages/ui/package.json | 2 +-
pnpm-lock.yaml | 1328 ++++++++++++++++---------------
7 files changed, 681 insertions(+), 659 deletions(-)
diff --git a/apps/extension/package.json b/apps/extension/package.json
index 26f0b4d07..043291923 100644
--- a/apps/extension/package.json
+++ b/apps/extension/package.json
@@ -10,7 +10,7 @@
},
"dependencies": {
"@vueuse/core": "~14.1.0",
- "element-plus": "~2.11.0"
+ "element-plus": "~2.12.0"
},
"devDependencies": {
"@vtj/cli": "workspace:~",
diff --git a/apps/material/package.json b/apps/material/package.json
index 41687c1f0..9bf65cdb1 100644
--- a/apps/material/package.json
+++ b/apps/material/package.json
@@ -12,7 +12,7 @@
},
"dependencies": {
"@vueuse/core": "~14.1.0",
- "element-plus": "~2.11.0"
+ "element-plus": "~2.12.0"
},
"devDependencies": {
"@vtj/cli": "workspace:~",
diff --git a/packages/cli/package.json b/packages/cli/package.json
index cd3841663..805b97ebf 100644
--- a/packages/cli/package.json
+++ b/packages/cli/package.json
@@ -55,7 +55,7 @@
"memfs": "~4.51.0",
"rollup-plugin-external-globals": "~0.13.0",
"rollup-plugin-visualizer": "~5.14.0",
- "sass": "~1.94.2",
+ "sass": "~1.95.1",
"serve-static": "~1.16.0",
"terser": "~5.44.0",
"typescript": "~5.9.0",
diff --git a/packages/materials/package.json b/packages/materials/package.json
index 97fe8dc9b..01f340c37 100644
--- a/packages/materials/package.json
+++ b/packages/materials/package.json
@@ -53,7 +53,7 @@
"@vueuse/core": "~14.1.0",
"ant-design-vue": "~4.2.0",
"echarts": "~5.6.0",
- "element-plus": "~2.11.0",
+ "element-plus": "~2.12.0",
"hotkeys-js": "~3.13.15",
"pinia": "~3.0.0",
"vant": "~4.9.10",
diff --git a/packages/parser/package.json b/packages/parser/package.json
index 33e8c72f7..1c87ec8ee 100644
--- a/packages/parser/package.json
+++ b/packages/parser/package.json
@@ -38,7 +38,7 @@
"@vue/compiler-sfc": "~3.5.13",
"htmlparser2": "~10.0.0",
"postcss": "~8.5.0",
- "sass": "~1.94.0"
+ "sass": "~1.95.1"
},
"devDependencies": {
"@vtj/cli": "workspace:~"
diff --git a/packages/ui/package.json b/packages/ui/package.json
index 1789c15c5..6cd0f6e1d 100644
--- a/packages/ui/package.json
+++ b/packages/ui/package.json
@@ -34,7 +34,7 @@
"@vtj/icons": "workspace:~",
"@vtj/utils": "workspace:~",
"@vueuse/core": "~14.1.0",
- "element-plus": "~2.11.0",
+ "element-plus": "~2.12.0",
"sortablejs": "~1.15.6",
"vxe-table": "~4.6.17",
"vxe-table-plugin-menus": "~4.0.3"
diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml
index ff51998fb..f308c891f 100644
--- a/pnpm-lock.yaml
+++ b/pnpm-lock.yaml
@@ -10,7 +10,7 @@ importers:
devDependencies:
'@commitlint/cli':
specifier: ~19.8.0
- version: 19.8.1(@types/node@24.10.1)(typescript@5.9.3)
+ version: 19.8.1(@types/node@24.10.3)(typescript@5.9.3)
'@commitlint/config-conventional':
specifier: ~19.8.0
version: 19.8.1
@@ -31,7 +31,7 @@ importers:
version: 26.1.0
lerna:
specifier: ~8.2.0
- version: 8.2.4(@types/node@24.10.1)(encoding@0.1.13)
+ version: 8.2.4(@types/node@24.10.3)(encoding@0.1.13)
mime:
specifier: ~4.1.0
version: 4.1.0
@@ -46,13 +46,13 @@ importers:
version: 10.13.1
ts-node:
specifier: ~10.9.2
- version: 10.9.2(@types/node@24.10.1)(typescript@5.9.3)
+ version: 10.9.2(@types/node@24.10.3)(typescript@5.9.3)
typedoc:
specifier: ~0.28.3
- version: 0.28.14(typescript@5.9.3)
+ version: 0.28.15(typescript@5.9.3)
typedoc-plugin-markdown:
specifier: ~4.8.0
- version: 4.8.1(typedoc@0.28.14(typescript@5.9.3))
+ version: 4.8.1(typedoc@0.28.15(typescript@5.9.3))
typescript:
specifier: ~5.9.0
version: 5.9.3
@@ -109,8 +109,8 @@ importers:
specifier: ~14.1.0
version: 14.1.0(vue@3.5.25(typescript@5.9.3))
element-plus:
- specifier: ~2.11.0
- version: 2.11.9(vue@3.5.25(typescript@5.9.3))
+ specifier: ~2.12.0
+ version: 2.12.0(vue@3.5.25(typescript@5.9.3))
devDependencies:
'@vtj/cli':
specifier: workspace:~
@@ -178,8 +178,8 @@ importers:
specifier: ~14.1.0
version: 14.1.0(vue@3.5.25(typescript@5.9.3))
element-plus:
- specifier: ~2.11.0
- version: 2.11.9(vue@3.5.25(typescript@5.9.3))
+ specifier: ~2.12.0
+ version: 2.12.0(vue@3.5.25(typescript@5.9.3))
devDependencies:
'@vtj/cli':
specifier: workspace:~
@@ -235,43 +235,43 @@ importers:
dependencies:
'@dcloudio/uni-app':
specifier: 3.0.0-4070620250821001
- version: 3.0.0-4070620250821001(@dcloudio/types@3.4.28)(@vueuse/core@14.1.0(vue@3.5.25(typescript@5.9.3)))(postcss@8.5.6)(rollup@4.53.3)(ts-node@10.9.2(@types/node@24.10.1)(typescript@5.9.3))(vue@3.5.25(typescript@5.9.3))
+ version: 3.0.0-4070620250821001(@dcloudio/types@3.4.28)(@vueuse/core@14.1.0(vue@3.5.25(typescript@5.9.3)))(postcss@8.5.6)(rollup@4.53.3)(ts-node@10.9.2(@types/node@24.10.3)(typescript@5.9.3))(vue@3.5.25(typescript@5.9.3))
'@dcloudio/uni-app-plus':
specifier: 3.0.0-4070620250821001
- version: 3.0.0-4070620250821001(@vueuse/core@14.1.0(vue@3.5.25(typescript@5.9.3)))(postcss@8.5.6)(rollup@4.53.3)(ts-node@10.9.2(@types/node@24.10.1)(typescript@5.9.3))(vite@6.3.7(@types/node@24.10.1)(jiti@2.6.1)(sass@1.94.2)(terser@5.44.1)(yaml@2.8.1))(vue@3.5.25(typescript@5.9.3))
+ version: 3.0.0-4070620250821001(@vueuse/core@14.1.0(vue@3.5.25(typescript@5.9.3)))(postcss@8.5.6)(rollup@4.53.3)(ts-node@10.9.2(@types/node@24.10.3)(typescript@5.9.3))(vite@6.3.7(@types/node@24.10.3)(jiti@2.6.1)(sass@1.95.1)(terser@5.44.1)(yaml@2.8.2))(vue@3.5.25(typescript@5.9.3))
'@dcloudio/uni-components':
specifier: 3.0.0-4070620250821001
- version: 3.0.0-4070620250821001(@vueuse/core@14.1.0(vue@3.5.25(typescript@5.9.3)))(postcss@8.5.6)(rollup@4.53.3)(ts-node@10.9.2(@types/node@24.10.1)(typescript@5.9.3))(vue@3.5.25(typescript@5.9.3))
+ version: 3.0.0-4070620250821001(@vueuse/core@14.1.0(vue@3.5.25(typescript@5.9.3)))(postcss@8.5.6)(rollup@4.53.3)(ts-node@10.9.2(@types/node@24.10.3)(typescript@5.9.3))(vue@3.5.25(typescript@5.9.3))
'@dcloudio/uni-h5':
specifier: 3.0.0-4070620250821001
- version: 3.0.0-4070620250821001(@vueuse/core@14.1.0(vue@3.5.25(typescript@5.9.3)))(postcss@8.5.6)(rollup@4.53.3)(ts-node@10.9.2(@types/node@24.10.1)(typescript@5.9.3))(vue@3.5.25(typescript@5.9.3))
+ version: 3.0.0-4070620250821001(@vueuse/core@14.1.0(vue@3.5.25(typescript@5.9.3)))(postcss@8.5.6)(rollup@4.53.3)(ts-node@10.9.2(@types/node@24.10.3)(typescript@5.9.3))(vue@3.5.25(typescript@5.9.3))
'@dcloudio/uni-mp-alipay':
specifier: 3.0.0-4070620250821001
- version: 3.0.0-4070620250821001(@vueuse/core@14.1.0(vue@3.5.25(typescript@5.9.3)))(postcss@8.5.6)(rollup@4.53.3)(ts-node@10.9.2(@types/node@24.10.1)(typescript@5.9.3))(vue@3.5.25(typescript@5.9.3))
+ version: 3.0.0-4070620250821001(@vueuse/core@14.1.0(vue@3.5.25(typescript@5.9.3)))(postcss@8.5.6)(rollup@4.53.3)(ts-node@10.9.2(@types/node@24.10.3)(typescript@5.9.3))(vue@3.5.25(typescript@5.9.3))
'@dcloudio/uni-mp-baidu':
specifier: 3.0.0-4070620250821001
- version: 3.0.0-4070620250821001(@dcloudio/types@3.4.28)(@vueuse/core@14.1.0(vue@3.5.25(typescript@5.9.3)))(postcss@8.5.6)(rollup@4.53.3)(ts-node@10.9.2(@types/node@24.10.1)(typescript@5.9.3))(vue@3.5.25(typescript@5.9.3))
+ version: 3.0.0-4070620250821001(@dcloudio/types@3.4.28)(@vueuse/core@14.1.0(vue@3.5.25(typescript@5.9.3)))(postcss@8.5.6)(rollup@4.53.3)(ts-node@10.9.2(@types/node@24.10.3)(typescript@5.9.3))(vue@3.5.25(typescript@5.9.3))
'@dcloudio/uni-mp-jd':
specifier: 3.0.0-4070620250821001
- version: 3.0.0-4070620250821001(@vueuse/core@14.1.0(vue@3.5.25(typescript@5.9.3)))(postcss@8.5.6)(rollup@4.53.3)(ts-node@10.9.2(@types/node@24.10.1)(typescript@5.9.3))(vue@3.5.25(typescript@5.9.3))
+ version: 3.0.0-4070620250821001(@vueuse/core@14.1.0(vue@3.5.25(typescript@5.9.3)))(postcss@8.5.6)(rollup@4.53.3)(ts-node@10.9.2(@types/node@24.10.3)(typescript@5.9.3))(vue@3.5.25(typescript@5.9.3))
'@dcloudio/uni-mp-kuaishou':
specifier: 3.0.0-4070620250821001
- version: 3.0.0-4070620250821001(@vueuse/core@14.1.0(vue@3.5.25(typescript@5.9.3)))(postcss@8.5.6)(rollup@4.53.3)(ts-node@10.9.2(@types/node@24.10.1)(typescript@5.9.3))(vue@3.5.25(typescript@5.9.3))
+ version: 3.0.0-4070620250821001(@vueuse/core@14.1.0(vue@3.5.25(typescript@5.9.3)))(postcss@8.5.6)(rollup@4.53.3)(ts-node@10.9.2(@types/node@24.10.3)(typescript@5.9.3))(vue@3.5.25(typescript@5.9.3))
'@dcloudio/uni-mp-lark':
specifier: 3.0.0-4070620250821001
- version: 3.0.0-4070620250821001(@vueuse/core@14.1.0(vue@3.5.25(typescript@5.9.3)))(postcss@8.5.6)(rollup@4.53.3)(ts-node@10.9.2(@types/node@24.10.1)(typescript@5.9.3))(vue@3.5.25(typescript@5.9.3))
+ version: 3.0.0-4070620250821001(@vueuse/core@14.1.0(vue@3.5.25(typescript@5.9.3)))(postcss@8.5.6)(rollup@4.53.3)(ts-node@10.9.2(@types/node@24.10.3)(typescript@5.9.3))(vue@3.5.25(typescript@5.9.3))
'@dcloudio/uni-mp-qq':
specifier: 3.0.0-4070620250821001
- version: 3.0.0-4070620250821001(@vueuse/core@14.1.0(vue@3.5.25(typescript@5.9.3)))(postcss@8.5.6)(rollup@4.53.3)(ts-node@10.9.2(@types/node@24.10.1)(typescript@5.9.3))(vue@3.5.25(typescript@5.9.3))
+ version: 3.0.0-4070620250821001(@vueuse/core@14.1.0(vue@3.5.25(typescript@5.9.3)))(postcss@8.5.6)(rollup@4.53.3)(ts-node@10.9.2(@types/node@24.10.3)(typescript@5.9.3))(vue@3.5.25(typescript@5.9.3))
'@dcloudio/uni-mp-toutiao':
specifier: 3.0.0-4070620250821001
- version: 3.0.0-4070620250821001(@vueuse/core@14.1.0(vue@3.5.25(typescript@5.9.3)))(postcss@8.5.6)(rollup@4.53.3)(ts-node@10.9.2(@types/node@24.10.1)(typescript@5.9.3))(vue@3.5.25(typescript@5.9.3))
+ version: 3.0.0-4070620250821001(@vueuse/core@14.1.0(vue@3.5.25(typescript@5.9.3)))(postcss@8.5.6)(rollup@4.53.3)(ts-node@10.9.2(@types/node@24.10.3)(typescript@5.9.3))(vue@3.5.25(typescript@5.9.3))
'@dcloudio/uni-mp-weixin':
specifier: 3.0.0-4070620250821001
- version: 3.0.0-4070620250821001(@vueuse/core@14.1.0(vue@3.5.25(typescript@5.9.3)))(postcss@8.5.6)(rollup@4.53.3)(ts-node@10.9.2(@types/node@24.10.1)(typescript@5.9.3))(vue@3.5.25(typescript@5.9.3))
+ version: 3.0.0-4070620250821001(@vueuse/core@14.1.0(vue@3.5.25(typescript@5.9.3)))(postcss@8.5.6)(rollup@4.53.3)(ts-node@10.9.2(@types/node@24.10.3)(typescript@5.9.3))(vue@3.5.25(typescript@5.9.3))
'@dcloudio/uni-quickapp-webview':
specifier: 3.0.0-4070620250821001
- version: 3.0.0-4070620250821001(@vueuse/core@14.1.0(vue@3.5.25(typescript@5.9.3)))(postcss@8.5.6)(rollup@4.53.3)(ts-node@10.9.2(@types/node@24.10.1)(typescript@5.9.3))(vue@3.5.25(typescript@5.9.3))
+ version: 3.0.0-4070620250821001(@vueuse/core@14.1.0(vue@3.5.25(typescript@5.9.3)))(postcss@8.5.6)(rollup@4.53.3)(ts-node@10.9.2(@types/node@24.10.3)(typescript@5.9.3))(vue@3.5.25(typescript@5.9.3))
'@dcloudio/uni-ui':
specifier: ~1.5.3
version: 1.5.11
@@ -293,16 +293,16 @@ importers:
version: 3.4.28
'@dcloudio/uni-automator':
specifier: 3.0.0-4070620250821001
- version: 3.0.0-4070620250821001(@vueuse/core@14.1.0(vue@3.5.25(typescript@5.9.3)))(jest-environment-node@27.5.1)(jest@27.0.4(ts-node@10.9.2(@types/node@24.10.1)(typescript@5.9.3)))(postcss@8.5.6)(rollup@4.53.3)(ts-node@10.9.2(@types/node@24.10.1)(typescript@5.9.3))(vue@3.5.25(typescript@5.9.3))
+ version: 3.0.0-4070620250821001(@vueuse/core@14.1.0(vue@3.5.25(typescript@5.9.3)))(jest-environment-node@27.5.1)(jest@27.0.4(ts-node@10.9.2(@types/node@24.10.3)(typescript@5.9.3)))(postcss@8.5.6)(rollup@4.53.3)(ts-node@10.9.2(@types/node@24.10.3)(typescript@5.9.3))(vue@3.5.25(typescript@5.9.3))
'@dcloudio/uni-cli-shared':
specifier: 3.0.0-4070620250821001
- version: 3.0.0-4070620250821001(@vueuse/core@14.1.0(vue@3.5.25(typescript@5.9.3)))(postcss@8.5.6)(rollup@4.53.3)(ts-node@10.9.2(@types/node@24.10.1)(typescript@5.9.3))(vue@3.5.25(typescript@5.9.3))
+ version: 3.0.0-4070620250821001(@vueuse/core@14.1.0(vue@3.5.25(typescript@5.9.3)))(postcss@8.5.6)(rollup@4.53.3)(ts-node@10.9.2(@types/node@24.10.3)(typescript@5.9.3))(vue@3.5.25(typescript@5.9.3))
'@dcloudio/uni-stacktracey':
specifier: 3.0.0-4070620250821001
version: 3.0.0-4070620250821001
'@dcloudio/vite-plugin-uni':
specifier: 3.0.0-4070620250821001
- version: 3.0.0-4070620250821001(@vueuse/core@14.1.0(vue@3.5.25(typescript@5.9.3)))(postcss@8.5.6)(rollup@4.53.3)(ts-node@10.9.2(@types/node@24.10.1)(typescript@5.9.3))(vite@6.3.7(@types/node@24.10.1)(jiti@2.6.1)(sass@1.94.2)(terser@5.44.1)(yaml@2.8.1))(vue@3.5.25(typescript@5.9.3))
+ version: 3.0.0-4070620250821001(@vueuse/core@14.1.0(vue@3.5.25(typescript@5.9.3)))(postcss@8.5.6)(rollup@4.53.3)(ts-node@10.9.2(@types/node@24.10.3)(typescript@5.9.3))(vite@6.3.7(@types/node@24.10.3)(jiti@2.6.1)(sass@1.95.1)(terser@5.44.1)(yaml@2.8.2))(vue@3.5.25(typescript@5.9.3))
'@rolldown/pluginutils':
specifier: 1.0.0-beta.9
version: 1.0.0-beta.9
@@ -326,7 +326,7 @@ importers:
version: 3.5.25
miniprogram-api-typings:
specifier: ~4.1.0
- version: 4.1.0
+ version: 4.1.1
create-vtj:
dependencies:
@@ -354,7 +354,7 @@ importers:
version: 2.4.9
unbuild:
specifier: ~2.0.0
- version: 2.0.0(sass@1.94.2)(typescript@5.9.3)(vue-tsc@2.2.12(typescript@5.9.3))
+ version: 2.0.0(sass@1.95.1)(typescript@5.9.3)(vue-tsc@2.2.12(typescript@5.9.3))
dev:
dependencies:
@@ -409,10 +409,10 @@ importers:
dependencies:
'@vitepress-demo-preview/component':
specifier: ~2.3.0
- version: 2.3.2(vitepress@1.6.4(@algolia/client-search@5.45.0)(@types/node@24.10.1)(async-validator@4.2.5)(axios@1.13.2)(postcss@8.5.6)(qrcode@1.5.4)(sass@1.94.2)(search-insights@2.17.3)(sortablejs@1.15.6)(terser@5.44.1)(typescript@5.9.3))(vue@3.5.25(typescript@5.9.3))
+ version: 2.3.2(vitepress@1.6.4(@algolia/client-search@5.46.0)(@types/node@24.10.3)(async-validator@4.2.5)(axios@1.13.2)(postcss@8.5.6)(qrcode@1.5.4)(sass@1.95.1)(search-insights@2.17.3)(sortablejs@1.15.6)(terser@5.44.1)(typescript@5.9.3))(vue@3.5.25(typescript@5.9.3))
'@vitepress-demo-preview/plugin':
specifier: ~1.4.0
- version: 1.4.1(markdown-it-container@3.0.0)(vitepress@1.6.4(@algolia/client-search@5.45.0)(@types/node@24.10.1)(async-validator@4.2.5)(axios@1.13.2)(postcss@8.5.6)(qrcode@1.5.4)(sass@1.94.2)(search-insights@2.17.3)(sortablejs@1.15.6)(terser@5.44.1)(typescript@5.9.3))(vue@3.5.25(typescript@5.9.3))
+ version: 1.4.1(markdown-it-container@3.0.0)(vitepress@1.6.4(@algolia/client-search@5.46.0)(@types/node@24.10.3)(async-validator@4.2.5)(axios@1.13.2)(postcss@8.5.6)(qrcode@1.5.4)(sass@1.95.1)(search-insights@2.17.3)(sortablejs@1.15.6)(terser@5.44.1)(typescript@5.9.3))(vue@3.5.25(typescript@5.9.3))
'@vtj/icons':
specifier: workspace:*
version: link:../packages/icons
@@ -443,7 +443,7 @@ importers:
version: link:../packages/cli
vitepress:
specifier: ^1.4.0
- version: 1.6.4(@algolia/client-search@5.45.0)(@types/node@24.10.1)(async-validator@4.2.5)(axios@1.13.2)(postcss@8.5.6)(qrcode@1.5.4)(sass@1.94.2)(search-insights@2.17.3)(sortablejs@1.15.6)(terser@5.44.1)(typescript@5.9.3)
+ version: 1.6.4(@algolia/client-search@5.46.0)(@types/node@24.10.3)(async-validator@4.2.5)(axios@1.13.2)(postcss@8.5.6)(qrcode@1.5.4)(sass@1.95.1)(search-insights@2.17.3)(sortablejs@1.15.6)(terser@5.44.1)(typescript@5.9.3)
packages/base:
devDependencies:
@@ -482,7 +482,7 @@ importers:
version: 6.2.2
unbuild:
specifier: ~2.0.0
- version: 2.0.0(sass@1.94.2)(typescript@5.9.3)(vue-tsc@2.2.12(typescript@5.9.3))
+ version: 2.0.0(sass@1.95.1)(typescript@5.9.3)(vue-tsc@2.2.12(typescript@5.9.3))
packages/charts:
dependencies:
@@ -525,25 +525,25 @@ importers:
version: 1.19.6
'@types/node':
specifier: ~24.10.1
- version: 24.10.1
+ version: 24.10.3
'@types/serve-static':
specifier: ~1.15.5
version: 1.15.10
'@vitejs/plugin-basic-ssl':
specifier: ~2.1.0
- version: 2.1.0(vite@6.3.7(@types/node@24.10.1)(jiti@2.6.1)(sass@1.94.2)(terser@5.44.1)(yaml@2.8.1))
+ version: 2.1.0(vite@6.3.7(@types/node@24.10.3)(jiti@2.6.1)(sass@1.95.1)(terser@5.44.1)(yaml@2.8.2))
'@vitejs/plugin-legacy':
specifier: ~6.1.0
- version: 6.1.1(terser@5.44.1)(vite@6.3.7(@types/node@24.10.1)(jiti@2.6.1)(sass@1.94.2)(terser@5.44.1)(yaml@2.8.1))
+ version: 6.1.1(terser@5.44.1)(vite@6.3.7(@types/node@24.10.3)(jiti@2.6.1)(sass@1.95.1)(terser@5.44.1)(yaml@2.8.2))
'@vitejs/plugin-vue':
specifier: ~5.2.0
- version: 5.2.4(vite@6.3.7(@types/node@24.10.1)(jiti@2.6.1)(sass@1.94.2)(terser@5.44.1)(yaml@2.8.1))(vue@3.5.25(typescript@5.9.3))
+ version: 5.2.4(vite@6.3.7(@types/node@24.10.3)(jiti@2.6.1)(sass@1.95.1)(terser@5.44.1)(yaml@2.8.2))(vue@3.5.25(typescript@5.9.3))
'@vitejs/plugin-vue-jsx':
specifier: ~4.2.0
- version: 4.2.0(vite@6.3.7(@types/node@24.10.1)(jiti@2.6.1)(sass@1.94.2)(terser@5.44.1)(yaml@2.8.1))(vue@3.5.25(typescript@5.9.3))
+ version: 4.2.0(vite@6.3.7(@types/node@24.10.3)(jiti@2.6.1)(sass@1.95.1)(terser@5.44.1)(yaml@2.8.2))(vue@3.5.25(typescript@5.9.3))
'@vitest/coverage-v8':
specifier: ~3.2.0
- version: 3.2.4(vitest@3.2.4(@types/node@24.10.1)(jiti@2.6.1)(jsdom@26.1.0)(sass@1.94.2)(terser@5.44.1)(yaml@2.8.1))
+ version: 3.2.4(vitest@3.2.4(@types/node@24.10.3)(jiti@2.6.1)(jsdom@26.1.0)(sass@1.95.1)(terser@5.44.1)(yaml@2.8.2))
'@vtj/node':
specifier: workspace:~
version: link:../node
@@ -552,7 +552,7 @@ importers:
version: 2.4.6
body-parser:
specifier: ~1.20.2
- version: 1.20.3
+ version: 1.20.4
cross-env:
specifier: ~7.0.3
version: 7.0.3
@@ -561,7 +561,7 @@ importers:
version: 26.1.0
memfs:
specifier: ~4.51.0
- version: 4.51.0
+ version: 4.51.1
rollup-plugin-external-globals:
specifier: ~0.13.0
version: 0.13.0(rollup@4.53.3)
@@ -569,8 +569,8 @@ importers:
specifier: ~5.14.0
version: 5.14.0(rollup@4.53.3)
sass:
- specifier: ~1.94.2
- version: 1.94.2
+ specifier: ~1.95.1
+ version: 1.95.1
serve-static:
specifier: ~1.16.0
version: 1.16.2
@@ -582,25 +582,25 @@ importers:
version: 5.9.3
unbuild:
specifier: ~2.0.0
- version: 2.0.0(sass@1.94.2)(typescript@5.9.3)(vue-tsc@2.2.12(typescript@5.9.3))
+ version: 2.0.0(sass@1.95.1)(typescript@5.9.3)(vue-tsc@2.2.12(typescript@5.9.3))
unplugin-element-plus:
specifier: ~0.9.0
version: 0.9.1
vite:
specifier: ~6.3.0
- version: 6.3.7(@types/node@24.10.1)(jiti@2.6.1)(sass@1.94.2)(terser@5.44.1)(yaml@2.8.1)
+ version: 6.3.7(@types/node@24.10.3)(jiti@2.6.1)(sass@1.95.1)(terser@5.44.1)(yaml@2.8.2)
vite-plugin-cdn-import:
specifier: ~1.0.1
- version: 1.0.1(rollup@4.53.3)(vite@6.3.7(@types/node@24.10.1)(jiti@2.6.1)(sass@1.94.2)(terser@5.44.1)(yaml@2.8.1))
+ version: 1.0.1(rollup@4.53.3)(vite@6.3.7(@types/node@24.10.3)(jiti@2.6.1)(sass@1.95.1)(terser@5.44.1)(yaml@2.8.2))
vite-plugin-dts:
specifier: ~4.5.0
- version: 4.5.4(@types/node@24.10.1)(rollup@4.53.3)(typescript@5.9.3)(vite@6.3.7(@types/node@24.10.1)(jiti@2.6.1)(sass@1.94.2)(terser@5.44.1)(yaml@2.8.1))
+ version: 4.5.4(@types/node@24.10.3)(rollup@4.53.3)(typescript@5.9.3)(vite@6.3.7(@types/node@24.10.3)(jiti@2.6.1)(sass@1.95.1)(terser@5.44.1)(yaml@2.8.2))
vite-plugin-node-polyfills:
specifier: ~0.24.0
- version: 0.24.0(rollup@4.53.3)(vite@6.3.7(@types/node@24.10.1)(jiti@2.6.1)(sass@1.94.2)(terser@5.44.1)(yaml@2.8.1))
+ version: 0.24.0(rollup@4.53.3)(vite@6.3.7(@types/node@24.10.3)(jiti@2.6.1)(sass@1.95.1)(terser@5.44.1)(yaml@2.8.2))
vitest:
specifier: ~3.2.3
- version: 3.2.4(@types/node@24.10.1)(jiti@2.6.1)(jsdom@26.1.0)(sass@1.94.2)(terser@5.44.1)(yaml@2.8.1)
+ version: 3.2.4(@types/node@24.10.3)(jiti@2.6.1)(jsdom@26.1.0)(sass@1.95.1)(terser@5.44.1)(yaml@2.8.2)
vue-tsc:
specifier: ~2.2.0
version: 2.2.12(typescript@5.9.3)
@@ -653,7 +653,7 @@ importers:
version: link:../utils
'@vue/devtools-core':
specifier: ~8.0.2
- version: 8.0.5(vite@6.3.7(@types/node@24.10.1)(jiti@2.6.1)(sass@1.94.2)(terser@5.44.1)(yaml@2.8.1))(vue@3.5.25(typescript@5.9.3))
+ version: 8.0.5(vite@6.3.7(@types/node@24.10.3)(jiti@2.6.1)(sass@1.95.1)(terser@5.44.1)(yaml@2.8.2))(vue@3.5.25(typescript@5.9.3))
'@vue/devtools-kit':
specifier: ~8.0.2
version: 8.0.5
@@ -734,19 +734,19 @@ importers:
version: link:../cli
unbuild:
specifier: ~2.0.0
- version: 2.0.0(sass@1.94.2)(typescript@5.9.3)(vue-tsc@2.2.12(typescript@5.9.3))
+ version: 2.0.0(sass@1.95.1)(typescript@5.9.3)(vue-tsc@2.2.12(typescript@5.9.3))
vite:
specifier: ~6.3.0
- version: 6.3.7(@types/node@24.10.1)(jiti@2.6.1)(sass@1.94.2)(terser@5.44.1)(yaml@2.8.1)
+ version: 6.3.7(@types/node@24.10.3)(jiti@2.6.1)(sass@1.95.1)(terser@5.44.1)(yaml@2.8.2)
packages/materials:
devDependencies:
'@dcloudio/uni-app':
specifier: 3.0.0-4070620250821001
- version: 3.0.0-4070620250821001(@dcloudio/types@3.4.28)(@vueuse/core@14.1.0(vue@3.5.25(typescript@5.9.3)))(postcss@8.5.6)(rollup@4.53.3)(ts-node@10.9.2(@types/node@24.10.1)(typescript@5.9.3))(vue@3.5.25(typescript@5.9.3))
+ version: 3.0.0-4070620250821001(@dcloudio/types@3.4.28)(@vueuse/core@14.1.0(vue@3.5.25(typescript@5.9.3)))(postcss@8.5.6)(rollup@4.53.3)(ts-node@10.9.2(@types/node@24.10.3)(typescript@5.9.3))(vue@3.5.25(typescript@5.9.3))
'@dcloudio/uni-h5':
specifier: 3.0.0-4070620250821001
- version: 3.0.0-4070620250821001(@vueuse/core@14.1.0(vue@3.5.25(typescript@5.9.3)))(postcss@8.5.6)(rollup@4.53.3)(ts-node@10.9.2(@types/node@24.10.1)(typescript@5.9.3))(vue@3.5.25(typescript@5.9.3))
+ version: 3.0.0-4070620250821001(@vueuse/core@14.1.0(vue@3.5.25(typescript@5.9.3)))(postcss@8.5.6)(rollup@4.53.3)(ts-node@10.9.2(@types/node@24.10.3)(typescript@5.9.3))(vue@3.5.25(typescript@5.9.3))
'@dcloudio/uni-h5-vue':
specifier: 3.0.0-4070620250821001
version: 3.0.0-4070620250821001(vue@3.5.25(typescript@5.9.3))
@@ -781,8 +781,8 @@ importers:
specifier: ~5.6.0
version: 5.6.0
element-plus:
- specifier: ~2.11.0
- version: 2.11.9(vue@3.5.25(typescript@5.9.3))
+ specifier: ~2.12.0
+ version: 2.12.0(vue@3.5.25(typescript@5.9.3))
hotkeys-js:
specifier: ~3.13.15
version: 3.13.15
@@ -819,10 +819,10 @@ importers:
devDependencies:
unbuild:
specifier: ~2.0.0
- version: 2.0.0(sass@1.94.2)(typescript@5.9.3)(vue-tsc@2.2.12(typescript@5.9.3))
+ version: 2.0.0(sass@1.95.1)(typescript@5.9.3)(vue-tsc@2.2.12(typescript@5.9.3))
vitest:
specifier: ~3.2.3
- version: 3.2.4(@types/node@24.10.1)(jiti@2.6.1)(jsdom@26.1.0)(sass@1.94.2)(terser@5.44.1)(yaml@2.8.1)
+ version: 3.2.4(@types/node@24.10.3)(jiti@2.6.1)(jsdom@26.1.0)(sass@1.95.1)(terser@5.44.1)(yaml@2.8.2)
packages/parser:
dependencies:
@@ -860,8 +860,8 @@ importers:
specifier: ~8.5.0
version: 8.5.6
sass:
- specifier: ~1.94.0
- version: 1.94.2
+ specifier: ~1.95.1
+ version: 1.95.1
devDependencies:
'@vtj/cli':
specifier: workspace:~
@@ -904,8 +904,8 @@ importers:
specifier: ~14.1.0
version: 14.1.0(vue@3.5.25(typescript@5.9.3))
element-plus:
- specifier: ~2.11.0
- version: 2.11.9(vue@3.5.25(typescript@5.9.3))
+ specifier: ~2.12.0
+ version: 2.12.0(vue@3.5.25(typescript@5.9.3))
sortablejs:
specifier: ~1.15.6
version: 1.15.6
@@ -952,19 +952,19 @@ importers:
devDependencies:
'@dcloudio/uni-app':
specifier: 3.0.0-4070620250821001
- version: 3.0.0-4070620250821001(@dcloudio/types@3.4.28)(@vueuse/core@14.1.0(vue@3.5.25(typescript@5.9.3)))(postcss@8.5.6)(rollup@4.53.3)(ts-node@10.9.2(@types/node@24.10.1)(typescript@5.9.3))(vue@3.5.25(typescript@5.9.3))
+ version: 3.0.0-4070620250821001(@dcloudio/types@3.4.28)(@vueuse/core@14.1.0(vue@3.5.25(typescript@5.9.3)))(postcss@8.5.6)(rollup@4.53.3)(ts-node@10.9.2(@types/node@24.10.3)(typescript@5.9.3))(vue@3.5.25(typescript@5.9.3))
'@dcloudio/uni-app-vue':
specifier: 3.0.0-4070620250821001
version: 3.0.0-4070620250821001
'@dcloudio/uni-components':
specifier: 3.0.0-4070620250821001
- version: 3.0.0-4070620250821001(@vueuse/core@14.1.0(vue@3.5.25(typescript@5.9.3)))(postcss@8.5.6)(rollup@4.53.3)(ts-node@10.9.2(@types/node@24.10.1)(typescript@5.9.3))(vue@3.5.25(typescript@5.9.3))
+ version: 3.0.0-4070620250821001(@vueuse/core@14.1.0(vue@3.5.25(typescript@5.9.3)))(postcss@8.5.6)(rollup@4.53.3)(ts-node@10.9.2(@types/node@24.10.3)(typescript@5.9.3))(vue@3.5.25(typescript@5.9.3))
'@dcloudio/uni-h5':
specifier: 3.0.0-4070620250821001
- version: 3.0.0-4070620250821001(@vueuse/core@14.1.0(vue@3.5.25(typescript@5.9.3)))(postcss@8.5.6)(rollup@4.53.3)(ts-node@10.9.2(@types/node@24.10.1)(typescript@5.9.3))(vue@3.5.25(typescript@5.9.3))
+ version: 3.0.0-4070620250821001(@vueuse/core@14.1.0(vue@3.5.25(typescript@5.9.3)))(postcss@8.5.6)(rollup@4.53.3)(ts-node@10.9.2(@types/node@24.10.3)(typescript@5.9.3))(vue@3.5.25(typescript@5.9.3))
'@dcloudio/vite-plugin-uni':
specifier: 3.0.0-4070620250821001
- version: 3.0.0-4070620250821001(@vueuse/core@14.1.0(vue@3.5.25(typescript@5.9.3)))(postcss@8.5.6)(rollup@4.53.3)(ts-node@10.9.2(@types/node@24.10.1)(typescript@5.9.3))(vite@6.3.7(@types/node@24.10.1)(jiti@2.6.1)(sass@1.94.2)(terser@5.44.1)(yaml@2.8.1))(vue@3.5.25(typescript@5.9.3))
+ version: 3.0.0-4070620250821001(@vueuse/core@14.1.0(vue@3.5.25(typescript@5.9.3)))(postcss@8.5.6)(rollup@4.53.3)(ts-node@10.9.2(@types/node@24.10.3)(typescript@5.9.3))(vite@6.3.7(@types/node@24.10.3)(jiti@2.6.1)(sass@1.95.1)(terser@5.44.1)(yaml@2.8.2))(vue@3.5.25(typescript@5.9.3))
'@vtj/cli':
specifier: workspace:~
version: link:../cli
@@ -1054,7 +1054,7 @@ importers:
version: link:../../packages/utils
vite-plugin-vue-devtools:
specifier: ~8.0.2
- version: 8.0.5(vite@6.3.7(@types/node@24.10.1)(jiti@2.6.1)(sass@1.94.2)(terser@5.44.1)(yaml@2.8.1))(vue@3.5.25(typescript@5.9.3))
+ version: 8.0.5(vite@6.3.7(@types/node@24.10.3)(jiti@2.6.1)(sass@1.95.1)(terser@5.44.1)(yaml@2.8.2))(vue@3.5.25(typescript@5.9.3))
vue:
specifier: ~3.5.5
version: 3.5.25(typescript@5.9.3)
@@ -1133,8 +1133,8 @@ importers:
packages:
- '@algolia/abtesting@1.11.0':
- resolution: {integrity: sha512-a7oQ8dwiyoyVmzLY0FcuBqyqcNSq78qlcOtHmNBumRlHCSnXDcuoYGBGPN1F6n8JoGhviDDsIaF/oQrzTzs6Lg==}
+ '@algolia/abtesting@1.12.0':
+ resolution: {integrity: sha512-EfW0bfxjPs+C7ANkJDw2TATntfBKsFiy7APh+KO0pQ8A6HYa5I0NjFuCGCXWfzzzLXNZta3QUl3n5Kmm6aJo9Q==}
engines: {node: '>= 14.0.0'}
'@algolia/autocomplete-core@1.17.7':
@@ -1157,56 +1157,56 @@ packages:
'@algolia/client-search': '>= 4.9.1 < 6'
algoliasearch: '>= 4.9.1 < 6'
- '@algolia/client-abtesting@5.45.0':
- resolution: {integrity: sha512-WTW0VZA8xHMbzuQD5b3f41ovKZ0MNTIXkWfm0F2PU+XGcLxmxX15UqODzF2sWab0vSbi3URM1xLhJx+bXbd1eQ==}
+ '@algolia/client-abtesting@5.46.0':
+ resolution: {integrity: sha512-eG5xV8rujK4ZIHXrRshvv9O13NmU/k42Rnd3w43iKH5RaQ2zWuZO6Q7XjaoJjAFVCsJWqRbXzbYyPGrbF3wGNg==}
engines: {node: '>= 14.0.0'}
- '@algolia/client-analytics@5.45.0':
- resolution: {integrity: sha512-I3g7VtvG/QJOH3tQO7E7zWTwBfK/nIQXShFLR8RvPgWburZ626JNj332M3wHCYcaAMivN9WJG66S2JNXhm6+Xg==}
+ '@algolia/client-analytics@5.46.0':
+ resolution: {integrity: sha512-AYh2uL8IUW9eZrbbT+wZElyb7QkkeV3US2NEKY7doqMlyPWE8lErNfkVN1NvZdVcY4/SVic5GDbeDz2ft8YIiQ==}
engines: {node: '>= 14.0.0'}
- '@algolia/client-common@5.45.0':
- resolution: {integrity: sha512-/nTqm1tLiPtbUr+8kHKyFiCOfhRfgC+JxLvOCq471gFZZOlsh6VtFRiKI60/zGmHTojFC6B0mD80PB7KeK94og==}
+ '@algolia/client-common@5.46.0':
+ resolution: {integrity: sha512-0emZTaYOeI9WzJi0TcNd2k3SxiN6DZfdWc2x2gHt855Jl9jPUOzfVTL6gTvCCrOlT4McvpDGg5nGO+9doEjjig==}
engines: {node: '>= 14.0.0'}
- '@algolia/client-insights@5.45.0':
- resolution: {integrity: sha512-suQTx/1bRL1g/K2hRtbK3ANmbzaZCi13487sxxmqok+alBDKKw0/TI73ZiHjjFXM2NV52inwwcmW4fUR45206Q==}
+ '@algolia/client-insights@5.46.0':
+ resolution: {integrity: sha512-wrBJ8fE+M0TDG1As4DDmwPn2TXajrvmvAN72Qwpuv8e2JOKNohF7+JxBoF70ZLlvP1A1EiH8DBu+JpfhBbNphQ==}
engines: {node: '>= 14.0.0'}
- '@algolia/client-personalization@5.45.0':
- resolution: {integrity: sha512-CId/dbjpzI3eoUhPU6rt/z4GrRsDesqFISEMOwrqWNSrf4FJhiUIzN42Ac+Gzg69uC0RnzRYy60K1y4Na5VSMw==}
+ '@algolia/client-personalization@5.46.0':
+ resolution: {integrity: sha512-LnkeX4p0ENt0DoftDJJDzQQJig/sFQmD1eQifl/iSjhUOGUIKC/7VTeXRcKtQB78naS8njUAwpzFvxy1CDDXDQ==}
engines: {node: '>= 14.0.0'}
- '@algolia/client-query-suggestions@5.45.0':
- resolution: {integrity: sha512-tjbBKfA8fjAiFtvl9g/MpIPiD6pf3fj7rirVfh1eMIUi8ybHP4ovDzIaE216vHuRXoePQVCkMd2CokKvYq1CLw==}
+ '@algolia/client-query-suggestions@5.46.0':
+ resolution: {integrity: sha512-aF9tc4ex/smypXw+W3lBPB1jjKoaGHpZezTqofvDOI/oK1dR2sdTpFpK2Ru+7IRzYgwtRqHF3znmTlyoNs9dpA==}
engines: {node: '>= 14.0.0'}
- '@algolia/client-search@5.45.0':
- resolution: {integrity: sha512-nxuCid+Nszs4xqwIMDw11pRJPes2c+Th1yup/+LtpjFH8QWXkr3SirNYSD3OXAeM060HgWWPLA8/Fxk+vwxQOA==}
+ '@algolia/client-search@5.46.0':
+ resolution: {integrity: sha512-22SHEEVNjZfFWkFks3P6HilkR3rS7a6GjnCIqR22Zz4HNxdfT0FG+RE7efTcFVfLUkTTMQQybvaUcwMrHXYa7Q==}
engines: {node: '>= 14.0.0'}
- '@algolia/ingestion@1.45.0':
- resolution: {integrity: sha512-t+1doBzhkQTeOOjLHMlm4slmXBhvgtEGQhOmNpMPTnIgWOyZyESWdm+XD984qM4Ej1i9FRh8VttOGrdGnAjAng==}
+ '@algolia/ingestion@1.46.0':
+ resolution: {integrity: sha512-2LT0/Z+/sFwEpZLH6V17WSZ81JX2uPjgvv5eNlxgU7rPyup4NXXfuMbtCJ+6uc4RO/LQpEJd3Li59ke3wtyAsA==}
engines: {node: '>= 14.0.0'}
- '@algolia/monitoring@1.45.0':
- resolution: {integrity: sha512-IaX3ZX1A/0wlgWZue+1BNWlq5xtJgsRo7uUk/aSiYD7lPbJ7dFuZ+yTLFLKgbl4O0QcyHTj1/mSBj9ryF1Lizg==}
+ '@algolia/monitoring@1.46.0':
+ resolution: {integrity: sha512-uivZ9wSWZ8mz2ZU0dgDvQwvVZV8XBv6lYBXf8UtkQF3u7WeTqBPeU8ZoeTyLpf0jAXCYOvc1mAVmK0xPLuEwOQ==}
engines: {node: '>= 14.0.0'}
- '@algolia/recommend@5.45.0':
- resolution: {integrity: sha512-1jeMLoOhkgezCCPsOqkScwYzAAc1Jr5T2hisZl0s32D94ZV7d1OHozBukgOjf8Dw+6Hgi6j52jlAdUWTtkX9Mg==}
+ '@algolia/recommend@5.46.0':
+ resolution: {integrity: sha512-O2BB8DuySuddgOAbhyH4jsGbL+KyDGpzJRtkDZkv091OMomqIA78emhhMhX9d/nIRrzS1wNLWB/ix7Hb2eV5rg==}
engines: {node: '>= 14.0.0'}
- '@algolia/requester-browser-xhr@5.45.0':
- resolution: {integrity: sha512-46FIoUkQ9N7wq4/YkHS5/W9Yjm4Ab+q5kfbahdyMpkBPJ7IBlwuNEGnWUZIQ6JfUZuJVojRujPRHMihX4awUMg==}
+ '@algolia/requester-browser-xhr@5.46.0':
+ resolution: {integrity: sha512-eW6xyHCyYrJD0Kjk9Mz33gQ40LfWiEA51JJTVfJy3yeoRSw/NXhAL81Pljpa0qslTs6+LO/5DYPZddct6HvISQ==}
engines: {node: '>= 14.0.0'}
- '@algolia/requester-fetch@5.45.0':
- resolution: {integrity: sha512-XFTSAtCwy4HdBhSReN2rhSyH/nZOM3q3qe5ERG2FLbYId62heIlJBGVyAPRbltRwNlotlydbvSJ+SQ0ruWC2cw==}
+ '@algolia/requester-fetch@5.46.0':
+ resolution: {integrity: sha512-Vn2+TukMGHy4PIxmdvP667tN/MhS7MPT8EEvEhS6JyFLPx3weLcxSa1F9gVvrfHWCUJhLWoMVJVB2PT8YfRGcw==}
engines: {node: '>= 14.0.0'}
- '@algolia/requester-node-http@5.45.0':
- resolution: {integrity: sha512-8mTg6lHx5i44raCU52APsu0EqMsdm4+7Hch/e4ZsYZw0hzwkuaMFh826ngnkYf9XOl58nHoou63aZ874m8AbpQ==}
+ '@algolia/requester-node-http@5.46.0':
+ resolution: {integrity: sha512-xaqXyna5yBZ+r1SJ9my/DM6vfTqJg9FJgVydRJ0lnO+D5NhqGW/qaRG/iBGKr/d4fho34el6WakV7BqJvrl/HQ==}
engines: {node: '>= 14.0.0'}
'@ampproject/remapping@2.3.0':
@@ -2828,15 +2828,15 @@ packages:
'@flypeng/tool@5.7.5':
resolution: {integrity: sha512-3/TMouPSQiKcvV4sL/Jog20codkmEObYr0Pn4xJl6J+XEyb1rN/HqaQve2Kv5GhsbBC4s7YSlGcmOCC9CgH9aA==}
- '@gerrit0/mini-shiki@3.17.0':
- resolution: {integrity: sha512-Bpf6WuFar20ZXL6qU6VpVl4bVQfyyYiX+6O4xrns4nkU3Mr8paeupDbS1HENpcLOYj7pN4Rkd/yCaPA0vQwKww==}
+ '@gerrit0/mini-shiki@3.19.0':
+ resolution: {integrity: sha512-ZSlWfLvr8Nl0T4iA3FF/8VH8HivYF82xQts2DY0tJxZd4wtXJ8AA0nmdW9lmO4hlrh3f9xNwEPtOgqETPqKwDA==}
'@hutson/parse-repository-url@3.0.2':
resolution: {integrity: sha512-H9XAx3hc0BQHY6l+IFSWHDySypcXsvsuLhgYLUGywmJ5pswRVQJUHpOsobnLYp2ZUaUlKiKDrgWWhosOwAEM8Q==}
engines: {node: '>=6.9.0'}
- '@iconify-json/simple-icons@1.2.60':
- resolution: {integrity: sha512-KlwLBKCdMCqfySdkAA+jehdUx6VSjnj6lvzQKus7HjkPSQ6QP58d6xiptkIp0jd/Hw3PW2++nRuGvCvSYaF0Mg==}
+ '@iconify-json/simple-icons@1.2.62':
+ resolution: {integrity: sha512-GpWQ294d4lraB3D2eBSSMROh1x9uKgpmyereLlGzVQjGZ7lbeFzby2ywXxyp4vEODmTDyf1/4WcOYs/yH4rJ5Q==}
'@iconify/types@2.0.0':
resolution: {integrity: sha512-+wluvCrRhXrhyOmRDJ3q8mux9JkKy5SJ/v8ol2tu4FVjyYvtEzkc/3pK15ET6RKg4b4w4BmTk1+gsCUhf21Ykg==}
@@ -3198,11 +3198,11 @@ packages:
resolution: {integrity: sha512-A8AlzetnS2WIuhijdAzKUyFpR5YbLLfV3luQ4lzBgIBgRfuoBDZeF+RSZPhra+7A6/zTUlrbhKZIOi/MNhqgvQ==}
engines: {node: '>=18.0.0'}
- '@microsoft/api-extractor-model@7.32.1':
- resolution: {integrity: sha512-u4yJytMYiUAnhcNQcZDTh/tVtlrzKlyKrQnLOV+4Qr/5gV+cpufWzCYAB1Q23URFqD6z2RoL2UYncM9xJVGNKA==}
+ '@microsoft/api-extractor-model@7.32.2':
+ resolution: {integrity: sha512-Ussc25rAalc+4JJs9HNQE7TuO9y6jpYQX9nWD1DhqUzYPBr3Lr7O9intf+ZY8kD5HnIqeIRJX7ccCT0QyBy2Ww==}
- '@microsoft/api-extractor@7.55.1':
- resolution: {integrity: sha512-l8Z+8qrLkZFM3HM95Dbpqs6G39fpCa7O5p8A7AkA6hSevxkgwsOlLrEuPv0ADOyj5dI1Af5WVDiwpKG/ya5G3w==}
+ '@microsoft/api-extractor@7.55.2':
+ resolution: {integrity: sha512-1jlWO4qmgqYoVUcyh+oXYRztZde/pAi7cSVzBz/rc+S7CoVzDasy8QE13dx6sLG4VRo8SfkkLbFORR6tBw4uGQ==}
hasBin: true
'@microsoft/tsdoc-config@0.18.0':
@@ -3692,8 +3692,8 @@ packages:
cpu: [x64]
os: [win32]
- '@rushstack/node-core-library@5.19.0':
- resolution: {integrity: sha512-BxAopbeWBvNJ6VGiUL+5lbJXywTdsnMeOS8j57Cn/xY10r6sV/gbsTlfYKjzVCUBZATX2eRzJHSMCchsMTGN6A==}
+ '@rushstack/node-core-library@5.19.1':
+ resolution: {integrity: sha512-ESpb2Tajlatgbmzzukg6zyAhH+sICqJR2CNXNhXcEbz6UGCQfrKCtkxOpJTftWc8RGouroHG0Nud1SJAszvpmA==}
peerDependencies:
'@types/node': '*'
peerDependenciesMeta:
@@ -3711,16 +3711,16 @@ packages:
'@rushstack/rig-package@0.6.0':
resolution: {integrity: sha512-ZQmfzsLE2+Y91GF15c65L/slMRVhF6Hycq04D4TwtdGaUAbIXXg9c5pKA5KFU7M4QMaihoobp9JJYpYcaY3zOw==}
- '@rushstack/terminal@0.19.4':
- resolution: {integrity: sha512-f4XQk02CrKfrMgyOfhYd3qWI944dLC21S4I/LUhrlAP23GTMDNG6EK5effQtFkISwUKCgD9vMBrJZaPSUquxWQ==}
+ '@rushstack/terminal@0.19.5':
+ resolution: {integrity: sha512-6k5tpdB88G0K7QrH/3yfKO84HK9ggftfUZ51p7fePyCE7+RLLHkWZbID9OFWbXuna+eeCFE7AkKnRMHMxNbz7Q==}
peerDependencies:
'@types/node': '*'
peerDependenciesMeta:
'@types/node':
optional: true
- '@rushstack/ts-command-line@5.1.4':
- resolution: {integrity: sha512-H0I6VdJ6sOUbktDFpP2VW5N29w8v4hRoNZOQz02vtEi6ZTYL1Ju8u+TcFiFawUDrUsx/5MQTUhd79uwZZVwVlA==}
+ '@rushstack/ts-command-line@5.1.5':
+ resolution: {integrity: sha512-YmrFTFUdHXblYSa+Xc9OO9FsL/XFcckZy0ycQ6q7VSBsVs5P0uD9vcges5Q9vctGlVdu27w+Ct6IuJ458V0cTQ==}
'@shikijs/core@2.5.0':
resolution: {integrity: sha512-uu/8RExTKtavlpH7XqnVYBrfBkUc20ngXiX9NSrBhOVZYv/7XQRKUyhtkeflY5QsxC0GbJThCerruZfsUaSldg==}
@@ -3731,20 +3731,20 @@ packages:
'@shikijs/engine-oniguruma@2.5.0':
resolution: {integrity: sha512-pGd1wRATzbo/uatrCIILlAdFVKdxImWJGQ5rFiB5VZi2ve5xj3Ax9jny8QvkaV93btQEwR/rSz5ERFpC5mKNIw==}
- '@shikijs/engine-oniguruma@3.17.0':
- resolution: {integrity: sha512-flSbHZAiOZDNTrEbULY8DLWavu/TyVu/E7RChpLB4WvKX4iHMfj80C6Hi3TjIWaQtHOW0KC6kzMcuB5TO1hZ8Q==}
+ '@shikijs/engine-oniguruma@3.19.0':
+ resolution: {integrity: sha512-1hRxtYIJfJSZeM5ivbUXv9hcJP3PWRo5prG/V2sWwiubUKTa+7P62d2qxCW8jiVFX4pgRHhnHNp+qeR7Xl+6kg==}
'@shikijs/langs@2.5.0':
resolution: {integrity: sha512-Qfrrt5OsNH5R+5tJ/3uYBBZv3SuGmnRPejV9IlIbFH3HTGLDlkqgHymAlzklVmKBjAaVmkPkyikAV/sQ1wSL+w==}
- '@shikijs/langs@3.17.0':
- resolution: {integrity: sha512-icmur2n5Ojb+HAiQu6NEcIIJ8oWDFGGEpiqSCe43539Sabpx7Y829WR3QuUW2zjTM4l6V8Sazgb3rrHO2orEAw==}
+ '@shikijs/langs@3.19.0':
+ resolution: {integrity: sha512-dBMFzzg1QiXqCVQ5ONc0z2ebyoi5BKz+MtfByLm0o5/nbUu3Iz8uaTCa5uzGiscQKm7lVShfZHU1+OG3t5hgwg==}
'@shikijs/themes@2.5.0':
resolution: {integrity: sha512-wGrk+R8tJnO0VMzmUExHR+QdSaPUl/NKs+a4cQQRWyoc3YFbUzuLEi/KWK1hj+8BfHRKm2jNhhJck1dfstJpiw==}
- '@shikijs/themes@3.17.0':
- resolution: {integrity: sha512-/xEizMHLBmMHwtx4JuOkRf3zwhWD2bmG5BRr0IPjpcWpaq4C3mYEuTk/USAEglN0qPrTwEHwKVpSu/y2jhferA==}
+ '@shikijs/themes@3.19.0':
+ resolution: {integrity: sha512-H36qw+oh91Y0s6OlFfdSuQ0Ld+5CgB/VE6gNPK+Hk4VRbVG/XQgkjnt4KzfnnoO6tZPtKJKHPjwebOCfjd6F8A==}
'@shikijs/transformers@2.5.0':
resolution: {integrity: sha512-SI494W5X60CaUwgi8u4q4m4s3YAFSxln3tzNjOSYqq54wlVgz0/NbbXEb3mdLbqMBztcmS7bVTaEd2w0qMmfeg==}
@@ -3752,8 +3752,8 @@ packages:
'@shikijs/types@2.5.0':
resolution: {integrity: sha512-ygl5yhxki9ZLNuNpPitBWvcy9fsSKKaRuO4BAlMyagszQidxcpLAr0qiW/q43DtSIDxO6hEbtYLiFZNXO/hdGw==}
- '@shikijs/types@3.17.0':
- resolution: {integrity: sha512-wjLVfutYWVUnxAjsWEob98xgyaGv0dTEnMZDruU5mRjVN7szcGOfgO+997W2yR6odp+1PtSBNeSITRRTfUzK/g==}
+ '@shikijs/types@3.19.0':
+ resolution: {integrity: sha512-Z2hdeEQlzuntf/BZpFG8a+Fsw9UVXdML7w0o3TgSXV3yNESGon+bs9ITkQb3Ki7zxoXOOu5oJWqZ2uto06V9iQ==}
'@shikijs/vscode-textmate@10.0.2':
resolution: {integrity: sha512-83yeghZ2xxin3Nj8z1NMd/NCuca+gsYXswywDy5bHvwlWL8tpTQmzGeUuHd9FC3E/SBEMvzJRwWEOz5gGes9Qg==}
@@ -3920,8 +3920,8 @@ packages:
'@types/mockjs@1.0.10':
resolution: {integrity: sha512-SXgrhajHG7boLv6oU93CcmdDm0HYRiceuz6b+7z+/2lCJPTWDv0V5YiwFHT2ejE4bQqgSXQiVPQYPWv7LGsK1g==}
- '@types/node@24.10.1':
- resolution: {integrity: sha512-GNWcUTRBgIRJD5zj+Tq0fKOJ5XZajIiBroOF0yvj2bSU1WvNdYS/dn9UxwsujGW4JX06dnHyjV2y9rRaybH0iQ==}
+ '@types/node@24.10.3':
+ resolution: {integrity: sha512-gqkrWUsS8hcm0r44yn7/xZeV1ERva/nLgrLxFRUGb7aoNMIJfZJ3AC261zDQuOAKC7MiXai1WCpYc48jAHoShQ==}
'@types/normalize-package-data@2.4.4':
resolution: {integrity: sha512-37i+OaWTh9qeK4LSHPsyRC7NahnGotNuZvjLSgcPzblpHB3rrCJxAOgI5gCdKm7coonsaX1Of0ILiTcnZjbfxA==}
@@ -4097,40 +4097,40 @@ packages:
'@volar/language-core@2.4.15':
resolution: {integrity: sha512-3VHw+QZU0ZG9IuQmzT68IyN4hZNd9GchGPhbD9+pa8CVv7rnoOZwo7T8weIbrRmihqy3ATpdfXFnqRrfPVK6CA==}
- '@volar/language-core@2.4.26':
- resolution: {integrity: sha512-hH0SMitMxnB43OZpyF1IFPS9bgb2I3bpCh76m2WEK7BE0A0EzpYsRp0CCH2xNKshr7kacU5TQBLYn4zj7CG60A==}
+ '@volar/language-core@2.4.27':
+ resolution: {integrity: sha512-DjmjBWZ4tJKxfNC1F6HyYERNHPYS7L7OPFyCrestykNdUZMFYzI9WTyvwPcaNaHlrEUwESHYsfEw3isInncZxQ==}
'@volar/source-map@2.4.15':
resolution: {integrity: sha512-CPbMWlUN6hVZJYGcU/GSoHu4EnCHiLaXI9n8c9la6RaI9W5JHX+NqG+GSQcB0JdC2FIBLdZJwGsfKyBB71VlTg==}
- '@volar/source-map@2.4.26':
- resolution: {integrity: sha512-JJw0Tt/kSFsIRmgTQF4JSt81AUSI1aEye5Zl65EeZ8H35JHnTvFGmpDOBn5iOxd48fyGE+ZvZBp5FcgAy/1Qhw==}
+ '@volar/source-map@2.4.27':
+ resolution: {integrity: sha512-ynlcBReMgOZj2i6po+qVswtDUeeBRCTgDurjMGShbm8WYZgJ0PA4RmtebBJ0BCYol1qPv3GQF6jK7C9qoVc7lg==}
'@volar/typescript@2.4.15':
resolution: {integrity: sha512-2aZ8i0cqPGjXb4BhkMsPYDkkuc2ZQ6yOpqwAuNwUoncELqoy5fRgOQtLR9gB0g902iS0NAkvpIzs27geVyVdPg==}
- '@volar/typescript@2.4.26':
- resolution: {integrity: sha512-N87ecLD48Sp6zV9zID/5yuS1+5foj0DfuYGdQ6KHj/IbKvyKv1zNX6VCmnKYwtmHadEO6mFc2EKISiu3RDPAvA==}
+ '@volar/typescript@2.4.27':
+ resolution: {integrity: sha512-eWaYCcl/uAPInSK2Lze6IqVWaBu/itVqR5InXcHXFyles4zO++Mglt3oxdgj75BDcv1Knr9Y93nowS8U3wqhxg==}
- '@vtj/base@0.12.3':
- resolution: {integrity: sha512-mLGIMzDVTGlMG8DCq7lLsIaxkjOUQQf14o7bg8ISsoc5te4/E+y95trIHE8ZX9HydI3uYqsuOWFa3gLgGTnlog==}
+ '@vtj/base@0.12.4':
+ resolution: {integrity: sha512-dT0kWnp1zLhgFqYncVgHp2kE7xjJfNHWV71+DN2YkWxSU5XPTHAPhsfZnvSoPc5KFvSHYCXyuNaLVZwJqOyGVA==}
'@vtj/example-ui@0.2.0':
resolution: {integrity: sha512-51LsGrfxTm/KKzKRIKuIPj5qaqs7P3KcMiGNzvbXxFkhbxZWAzsk39eNQ5o5a2FVq7SmZ66OXBefbBpy61gzgQ==}
engines: {node: '>=16.0.0'}
- '@vtj/icons@0.13.34':
- resolution: {integrity: sha512-5v3crM41LSHZRz3hAq0mKchDXk9Ui/4diMY2ZDIyTtk4VwIxF55IwcIzq6S+d05l6iVmvjNlZ72NnXKLE+P5EA==}
+ '@vtj/icons@0.13.35':
+ resolution: {integrity: sha512-n8fdByL6yvkUjYtC/3sAHadwtLiktys5EhKOJfiaQCjZJX/NZB31xriaEGHvMAZTIsvI4jI4+gzapmcAbruc2Q==}
'@vtj/plugin-ckeditor@0.2.5':
resolution: {integrity: sha512-moAcU4LhruhiNnIuviK/QBfHPH+nyNHS4iDLQocOrVbFn8RWEj8C4nBESscFU1hOBLaeAAc7aYQJCBEkfOnyQA==}
- '@vtj/ui@0.13.34':
- resolution: {integrity: sha512-BvzxE55Eoeboscsp5nkkKf7WU4EnP6ypJTrSHdV8v4H2fTUatyfRR2XzlLG9KBGMxXJcw5KkSmq8AnE+hFsM6Q==}
+ '@vtj/ui@0.13.35':
+ resolution: {integrity: sha512-2RqcyGAHkGrAgGqfUVRnkNlH10/BSw3lWYGQQJUMxjLqG4b/Bky4QslEAoVEgfyi9cbPPuiwPM2+JDs3kldU4Q==}
engines: {node: '>=16.0.0'}
- '@vtj/utils@0.13.34':
- resolution: {integrity: sha512-Sxcn+oJe4mSZY9fI+0Z1wrICJxSE5d3uYURRZHPtcxR54ghQPG/TQW7FV3ZVUlr0Xij7URRnsyCt4eKkdSCdCg==}
+ '@vtj/utils@0.13.35':
+ resolution: {integrity: sha512-LVd18Fhws7iPMtZS/+XUZlwz8jHD3Wlw1mzppvha7y/oREh45sOJkFA+sy5D8EaLj6gOfUOmtfsqEFP6QLtSDg==}
'@vue/babel-helper-vue-transform-on@1.5.0':
resolution: {integrity: sha512-0dAYkerNhhHutHZ34JtTl2czVQHUNWv6xEbkdF5W+Yrv5pCWsqjeORdOgbtW2I9gWlt+wBmVn+ttqN9ZxR5tzA==}
@@ -4249,11 +4249,6 @@ packages:
'@vueuse/core@12.8.2':
resolution: {integrity: sha512-HbvCmZdzAu3VGi/pWYm5Ut+Kd9mn1ZHnn4L5G8kOQTPs/IwIAmJoBrmYk2ckLArgMXZj0AW3n5CAejLUO+PhdQ==}
- '@vueuse/core@13.9.0':
- resolution: {integrity: sha512-ts3regBQyURfCE2BcytLqzm8+MmLlo5Ln/KLoxDVcsZ2gzIwVNnQpQOL/UKV8alUqjSZOlpFZcRNsLRqj+OzyA==}
- peerDependencies:
- vue: ^3.5.0
-
'@vueuse/core@14.1.0':
resolution: {integrity: sha512-rgBinKs07hAYyPF834mDTigH7BtPqvZ3Pryuzt1SD/lg5wEcWqvwzXXYGEDb2/cP0Sj5zSvHl3WkmMELr5kfWw==}
peerDependencies:
@@ -4306,9 +4301,6 @@ packages:
'@vueuse/metadata@12.8.2':
resolution: {integrity: sha512-rAyLGEuoBJ/Il5AmFHiziCPdQzRt88VxR+Y/A/QhJ1EWtWqPBBAxTAFaSkviwEuOEZNtW8pvkPgoCZQ+HxqW1A==}
- '@vueuse/metadata@13.9.0':
- resolution: {integrity: sha512-1AFRvuiGphfF7yWixZa0KwjYH8ulyjDCC0aFgrGRz8+P4kvDFSdXLVfTk5xAN9wEuD1J6z4/myMoYbnHoX07zg==}
-
'@vueuse/metadata@14.1.0':
resolution: {integrity: sha512-7hK4g015rWn2PhKcZ99NyT+ZD9sbwm7SGvp7k+k+rKGWnLjS/oQozoIZzWfCewSUeBmnJkIb+CNr7Zc/EyRnnA==}
@@ -4318,11 +4310,6 @@ packages:
'@vueuse/shared@12.8.2':
resolution: {integrity: sha512-dznP38YzxZoNloI0qpEfpkms8knDtaoQ6Y/sfS0L7Yki4zh40LFHEhur0odJC6xTHG5dxWVPiUWBXn+wCG2s5w==}
- '@vueuse/shared@13.9.0':
- resolution: {integrity: sha512-e89uuTLMh0U5cZ9iDpEI2senqPGfbPRTHM/0AaQkcxnpqjkZqDYP8rpfm7edOz8s+pOCOROEy1PIveSW8+fL5g==}
- peerDependencies:
- vue: ^3.5.0
-
'@vueuse/shared@14.1.0':
resolution: {integrity: sha512-EcKxtYvn6gx1F8z9J5/rsg3+lTQnvOruQd8fUecW99DCK04BkWD7z5KQ/wTAx+DazyoEE9dJt/zV8OIEQbM6kw==}
peerDependencies:
@@ -4427,8 +4414,8 @@ packages:
ajv@8.17.1:
resolution: {integrity: sha512-B/gBuNg5SiMTrPkC+A2+cW0RszwxYmn6VYxB/inlBStS5nx6xHIt/ehKRhIMhqusl7a8LjQoZnjCs5vhwxOQ1g==}
- algoliasearch@5.45.0:
- resolution: {integrity: sha512-wrj4FGr14heLOYkBKV3Fbq5ZBGuIFeDJkTilYq/G+hH1CSlQBtYvG2X1j67flwv0fUeQJwnWxxRIunSemAZirA==}
+ algoliasearch@5.46.0:
+ resolution: {integrity: sha512-7ML6fa2K93FIfifG3GMWhDEwT5qQzPTmoHKCTvhzGEwdbQ4n0yYUWZlLYT75WllTGJCJtNUI0C1ybN4BCegqvg==}
engines: {node: '>= 14.0.0'}
alien-signals@0.4.14:
@@ -4615,8 +4602,8 @@ packages:
resolution: {integrity: sha512-ir1UPr3dkwexU7FdV8qBBbNDRUhMmIekYMFZfi+C/sLNnRESKPl23nB9b2pltqfOQNnGzsDdId90AEtG5tCx4A==}
engines: {node: '>=6.0.0'}
- baseline-browser-mapping@2.8.32:
- resolution: {integrity: sha512-OPz5aBThlyLFgxyhdwf/s2+8ab3OvT7AdTNvKHBwpXomIYeXqpUUuT8LrdtxZSsWJ4R4CU1un4XGh5Ez3nlTpw==}
+ baseline-browser-mapping@2.9.6:
+ resolution: {integrity: sha512-v9BVVpOTLB59C9E7aSnmIF8h7qRsFpx+A2nugVMTszEOMcfjlZMsXRm4LF23I3Z9AJxc8ANpIvzbzONoX9VJlg==}
hasBin: true
bcrypt-pbkdf@1.0.2:
@@ -4633,8 +4620,8 @@ packages:
resolution: {integrity: sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==}
engines: {node: '>=8'}
- birpc@2.8.0:
- resolution: {integrity: sha512-Bz2a4qD/5GRhiHSwj30c/8kC8QGj12nNDwz3D4ErQ4Xhy35dsSDvF+RA/tWpjyU0pdGtSDiEk6B5fBGE1qNVhw==}
+ birpc@2.9.0:
+ resolution: {integrity: sha512-KrayHS5pBi69Xi9JmvoqrIgYGDkD6mcSe/i6YKi3w5kekCLzrX4+nawcXqrj2tIp50Kw/mT/s3p+GVK0A0sKxw==}
bl@4.1.0:
resolution: {integrity: sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==}
@@ -4648,8 +4635,8 @@ packages:
bn.js@5.2.2:
resolution: {integrity: sha512-v2YAxEmKaBLahNwE1mjp4WON6huMNeuDvagFZW+ASCuA/ku0bXR9hSMw0XpiqMoA3+rmnyck/tPRSFQkoC9Cuw==}
- body-parser@1.20.3:
- resolution: {integrity: sha512-7rAxByjUMqQ3/bHJy7D6OGXvx/MMc4IqBn/X0fcM1QUcAItpZrBEYhWGem+tzXH90c+G01ypMcYJBO9Y30203g==}
+ body-parser@1.20.4:
+ resolution: {integrity: sha512-ZTgYYLMOXY9qKU/57FAo8F+HA2dGX7bqGc71txDRC1rS4frdFI5R7NhluHxH6M0YItAP0sHB4uqAOcYKxO6uGA==}
engines: {node: '>= 0.8', npm: 1.2.8000 || >= 1.4.16}
boolbase@1.0.0:
@@ -4701,8 +4688,8 @@ packages:
peerDependencies:
browserslist: '*'
- browserslist@4.28.0:
- resolution: {integrity: sha512-tbydkR/CxfMwelN0vwdP/pLkDwyAASZ+VfWm4EOwlB6SWhx1sYnWLqo8N5j0rAzPfzfRaxt0mM/4wPU/Su84RQ==}
+ browserslist@4.28.1:
+ resolution: {integrity: sha512-ZC5Bd0LgJXgwGqUknZY/vkUQ04r8NXnJZ3yYi4vDmSiZmC/pdSN0NbNRPxZpbtO4uAfDUAFffO8IZoM3Gj8IkA==}
engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7}
hasBin: true
@@ -4784,8 +4771,8 @@ packages:
caniuse-api@3.0.0:
resolution: {integrity: sha512-bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw==}
- caniuse-lite@1.0.30001757:
- resolution: {integrity: sha512-r0nnL/I28Zi/yjk1el6ilj27tKcdjLsNqAOZr0yVjWPrSQyHgKI2INaEWw21bAQSv2LXRt1XuCS/GomNpWOxsQ==}
+ caniuse-lite@1.0.30001760:
+ resolution: {integrity: sha512-7AAMPcueWELt1p3mi13HR/LHH0TJLT11cnwDJEs3xA4+CK/PLKeO9Kl1oru24htkyUKtkGCvAx4ohB0Ttry8Dw==}
ccount@2.0.1:
resolution: {integrity: sha512-eyrF0jiFpY+3drT6383f1qhkbGsLSifNAjA61IUjZjmLCWjItY6LB9ft9YhoDgwfmclB2zhu51Lc7+95b8NRAg==}
@@ -5046,11 +5033,11 @@ packages:
convert-source-map@2.0.0:
resolution: {integrity: sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==}
- cookie-signature@1.0.6:
- resolution: {integrity: sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ==}
+ cookie-signature@1.0.7:
+ resolution: {integrity: sha512-NXdYc3dLr47pBkpUCHtKSwIOQXLVn8dZEuywboCOJY/osA0wFSLlSawr3KN8qXJEyX66FcONTH8EIlVuK0yyFA==}
- cookie@0.7.1:
- resolution: {integrity: sha512-6DnInpx7SJ2AK3+CTUE/ZM0vWTUboZCegxhC2xiIydHR9jNuTAASBrfEpHhiGOZw/nX51bHt6YQl8jsGo4y/0w==}
+ cookie@0.7.2:
+ resolution: {integrity: sha512-yki5XnKuf750l50uGTllt6kKILY4nQ1eNIQatoXEByZ5dWgnKqbnqmTrBE5B4N7lrMJKQ2ytWMiTO2o0v6Ew/w==}
engines: {node: '>= 0.6'}
copy-anything@4.0.5:
@@ -5443,14 +5430,19 @@ packages:
engines: {node: '>=0.10.0'}
hasBin: true
- electron-to-chromium@1.5.262:
- resolution: {integrity: sha512-NlAsMteRHek05jRUxUR0a5jpjYq9ykk6+kO0yRaMi5moe7u0fVIOeQ3Y30A8dIiWFBNUoQGi1ljb1i5VtS9WQQ==}
+ electron-to-chromium@1.5.267:
+ resolution: {integrity: sha512-0Drusm6MVRXSOJpGbaSVgcQsuB4hEkMpHXaVstcPmhu5LIedxs1xNK/nIxmQIU/RPC0+1/o0AVZfBTkTNJOdUw==}
element-plus@2.11.9:
resolution: {integrity: sha512-yTckX+fMGDGiBHVL1gpwfmjEc8P8OwuyU5ZX3f4FhMy2OdC2Y+OwQYWUXmuB+jFMukuSdnGYXYgHq6muBjSxTg==}
peerDependencies:
vue: ^3.2.0
+ element-plus@2.12.0:
+ resolution: {integrity: sha512-M9YLSn2np9OnqrSKWsiXvGe3qnF8pd94+TScsHj1aTMCD+nSEvucXermf807qNt6hOP040le0e5Aft7E9ZfHmA==}
+ peerDependencies:
+ vue: ^3.2.0
+
elliptic@6.6.1:
resolution: {integrity: sha512-RaddvvMatK2LJHqFJ+YA4WysVN5Ita9E35botqIYspQ4TkRAlCicdzKOjlyv/1Za5RyTNn7di//eEV0uTAfe3g==}
@@ -5630,8 +5622,8 @@ packages:
resolution: {integrity: sha512-Zk/eNKV2zbjpKzrsQ+n1G6poVbErQxJ0LBOJXaKZ1EViLzH+hrLu9cdXI4zw9dBQJslwBEpbQ2P1oS7nDxs6jQ==}
engines: {node: '>= 0.8.0'}
- expect-type@1.2.2:
- resolution: {integrity: sha512-JhFGDVJ7tmDJItKhYgJCGLOWjuK9vPxiXoUFLwLDc99NlmklilbiQJwoctZtt13+xMw91MCk/REan6MWHqDjyA==}
+ expect-type@1.3.0:
+ resolution: {integrity: sha512-knvyeauYhqjOYvQ66MznSMs83wmHrCycNEN6Ao+2AeYEfxUIkuiVxdEa1qlGEPK+We3n0THiDciYSsCcgW/DoA==}
engines: {node: '>=12.0.0'}
expect@27.5.1:
@@ -5641,8 +5633,8 @@ packages:
exponential-backoff@3.1.3:
resolution: {integrity: sha512-ZgEeZXj30q+I0EN+CbSSpIyPaJ5HVQD18Z1m+u1FXbAeT94mr1zw50q4q6jiiC447Nl/YTcIYSAftiGqetwXCA==}
- express@4.21.2:
- resolution: {integrity: sha512-28HqgMZAmih1Czt9ny7qr6ek2qddF4FclbMzwhCREB6OFfH+rXAnuNCwo1/wFvrtbgsQDb4kSbX9de9lFbrXnA==}
+ express@4.22.1:
+ resolution: {integrity: sha512-F2X8g9P1X7uCPZMA3MVf9wcTqlyNp7IhH5qPCI0izhaOIYXaW9L535tGA3qmjRzpH+bZczqq7hVKxTR4NWnu+g==}
engines: {node: '>= 0.10.0'}
exsolve@1.0.8:
@@ -5694,8 +5686,8 @@ packages:
resolution: {integrity: sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==}
engines: {node: '>=8'}
- finalhandler@1.3.1:
- resolution: {integrity: sha512-6BN9trH7bp3qvnrRyzsBz+g3lZxTNZTbVO2EV1CS0WIcDbawYVdYvGflME/9QP0h0pYlCDBCTjYa9nZzMDpyxQ==}
+ finalhandler@1.3.2:
+ resolution: {integrity: sha512-aA4RyPcd3badbdABGDuTXCMTtOneUCAYH/gxoYRTZlIJdF0YPWuGqiAsIrhNnnqdXGswYk6dGujem4w80UJFhg==}
engines: {node: '>= 0.8'}
find-up@2.1.0:
@@ -6033,6 +6025,10 @@ packages:
resolution: {integrity: sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==}
engines: {node: '>= 0.8'}
+ http-errors@2.0.1:
+ resolution: {integrity: sha512-4FbRdAX+bSdmo4AUFuS0WNiPz8NgFt+r8ThgNWmlrjQjt1Q7ZR9+zTlce2859x4KSXrwIsaeTqDoKQmtP8pLmQ==}
+ engines: {node: '>= 0.8'}
+
http-proxy-agent@4.0.1:
resolution: {integrity: sha512-k0zdNgqWTGA6aeIRVpvfVob4fL52dTfaehylg0Y4UvSySvOq/Y+BOyPrgpUrA7HylqvU8vIZGsRuXmspskV0Tg==}
engines: {node: '>= 6'}
@@ -6888,8 +6884,8 @@ packages:
resolution: {integrity: sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ==}
engines: {node: '>= 0.6'}
- memfs@4.51.0:
- resolution: {integrity: sha512-4zngfkVM/GpIhC8YazOsM6E8hoB33NP0BCESPOA6z7qaL6umPJNqkO8CNYaLV2FB2MV6H1O3x2luHHOSqppv+A==}
+ memfs@4.51.1:
+ resolution: {integrity: sha512-Eyt3XrufitN2ZL9c/uIRMyDwXanLI88h/L3MoWqNY747ha3dMR9dWqp8cRT5ntjZ0U1TNuq4U91ZXK0sMBjYOQ==}
memoize-one@6.0.0:
resolution: {integrity: sha512-rkpe71W0N0c0Xz6QD0eJETuWAJGnJ9afsl1srmwPrI+yBCkge5EycXXbYRyvL29zZVUWQCY7InPRCv3GDXuZNw==}
@@ -7059,8 +7055,8 @@ packages:
resolution: {integrity: sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==}
engines: {node: '>=16 || 14 >=14.17'}
- miniprogram-api-typings@4.1.0:
- resolution: {integrity: sha512-4RBsz27nBKyRkVGoNkRaPx24/KeJBw3zaaIlXDR8s/WBh2PbcUAc+q7wLLbp7Qsmb3bLzzUu7tqAti+B06kmjg==}
+ miniprogram-api-typings@4.1.1:
+ resolution: {integrity: sha512-f9kyjdVsgwFcUfMeaSgYciVLszpJ9oBk/jvrJYVP7SNHmrRyjoZ6mP/TjFw1RyrD+4Uq8KMmenO5VClUdYo3LQ==}
minisearch@7.2.0:
resolution: {integrity: sha512-dqT2XBYUOZOiC5t2HRnwADjhNS2cecp9u+TJRiJ1Qp/f5qjkeT5APcGPjHw+bz89Ms8Jp+cG4AlE+QZ/QnDglg==}
@@ -7137,8 +7133,8 @@ packages:
resolution: {integrity: sha512-avsJQhyd+680gKXyG/sQc0nXaC6rBkPOfyHYcFb9+hdkqQkR9bdnkJ0AMZhke0oesPqIO+mFFJ+IdBc7mst4IA==}
engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
- nan@2.23.1:
- resolution: {integrity: sha512-r7bBUGKzlqk8oPBDYxt6Z0aEdF1G1rwlMcLk8LCOMbOzf0mG+JUfUzG4fIMWwHWP0iyaLWEQZJmtB7nOHEm/qw==}
+ nan@2.24.0:
+ resolution: {integrity: sha512-Vpf9qnVW1RaDkoNKFUvfxqAbtI8ncb8OJlqZ9wwpXzWPEsvsB1nvdUi6oYrHIkQ1Y/tMDnr1h4nczS0VB9Xykg==}
nanoid@3.3.11:
resolution: {integrity: sha512-N8SpfPUnUp1bK+PMYW8qSWdl9U+wwNWI4QKxOYDy9JAro3WMX7p2OeVRF9v+347pnakNevPmiHhNmZ2HbFA76w==}
@@ -7271,8 +7267,8 @@ packages:
numeral@2.0.6:
resolution: {integrity: sha512-qaKRmtYPZ5qdw4jWJD6bxEf1FJEqllJrwxCLIm0sQU/A7v2/czigzOb+C2uSiFsa9lBUzeH7M1oK+Q+OLxL3kA==}
- nwsapi@2.2.22:
- resolution: {integrity: sha512-ujSMe1OWVn55euT1ihwCI1ZcAaAU3nxUiDwfDQldc51ZXaB9m2AyOn6/jh1BLe2t/G8xd6uKG1UBF2aZJeg2SQ==}
+ nwsapi@2.2.23:
+ resolution: {integrity: sha512-7wfH4sLbt4M0gCDzGE6vzQBo0bfTKjU7Sfpqy/7gs1qBfYz2vEJH6vXcBKpO3+6Yu1telwd0t9HpyOoLEQQbIQ==}
nx@20.8.3:
resolution: {integrity: sha512-8w815WSMWar3A/LFzwtmEY+E8cVW62lMiFuPDXje+C8O8hFndfvscP56QHNMn2Zdhz3q0+BZUe+se4Em1BKYdA==}
@@ -7857,8 +7853,8 @@ packages:
resolution: {integrity: sha512-3Ybi1tAuwAP9s0r1UQ2J4n5Y0G05bJkpUIO0/bI9MhwmD70S5aTWbXGBwxHrelT+XM1k6dM0pk+SwNkpTRN7Pg==}
engines: {node: ^10 || ^12 || >=14}
- preact@10.27.2:
- resolution: {integrity: sha512-5SYSgFKSyhCbk6SrXyMpqjb5+MQBgfvEKE/OC+PujcY34sOpqtr+0AZQtPYx5IA6VxynQ7rUPCtKzyovpj9Bpg==}
+ preact@10.28.0:
+ resolution: {integrity: sha512-rytDAoiXr3+t6OIP3WGlDd0ouCUG1iCWzkcY3++Nreuoi17y6T5i/zRhe6uYfoVcxq6YU+sBtJouuRDsq8vvqA==}
prettier@3.6.2:
resolution: {integrity: sha512-I7AIg5boAr5R0FFtJ6rCfD+LFsWHp81dolrFD8S79U9tb8Az2nGrJncnMSnys+bpQJfRUzqs9hnA81OAA3hCuQ==}
@@ -7966,10 +7962,6 @@ packages:
engines: {node: '>=10.13.0'}
hasBin: true
- qs@6.13.0:
- resolution: {integrity: sha512-+38qI9SOr8tfZ4QmJNplMUxqjbe7LKvvZgWdExBOmd+egZTtjLB67Gu0HRX3u/XOq7UU2Nx6nsjvS16Z9uwfpg==}
- engines: {node: '>=0.6'}
-
qs@6.14.0:
resolution: {integrity: sha512-YWWTjgABSKcvs/nWBi9PycY/JiPJqOD4JA6o9Sej2AtvSGarXxKC3OQSk4pAarbdQlKAh5D4FCQkJNkW+GAn3w==}
engines: {node: '>=0.6'}
@@ -8001,8 +7993,8 @@ packages:
resolution: {integrity: sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==}
engines: {node: '>= 0.6'}
- raw-body@2.5.2:
- resolution: {integrity: sha512-8zGqypfENjCIqGhgXToC8aB2r7YrBX+AQAfIPs/Mlk+BtPTztOvTS01NRW/3Eh60J+a48lt8qsCzirQ6loCVfA==}
+ raw-body@2.5.3:
+ resolution: {integrity: sha512-s4VSOf6yN0rvbRZGxs8Om5CWj6seneMwK3oDb4lWDH0UPhWcxwOWw5+qk24bxq87szX1ydrwylIOp2uG1ojUpA==}
engines: {node: '>= 0.8'}
react-is@17.0.2:
@@ -8061,9 +8053,6 @@ packages:
resolution: {integrity: sha512-6tDA8g98We0zd0GvVeMT9arEOnTw9qM03L9cJXaCjrip1OO764RDBLBfrB4cwzNGDj5OA5ioymC9GkizgWJDUg==}
engines: {node: '>=8'}
- reflect-metadata@0.2.2:
- resolution: {integrity: sha512-urBwgfrvVP/eAyXx4hluJivBKzuEbSQs9rKWCrCkbSxNv8mxPcUZKeuoF3Uy4mJl3Lwprp6yy5/39VWigZ4K6Q==}
-
regenerate-unicode-properties@10.2.2:
resolution: {integrity: sha512-m03P+zhBeQd1RGnYxrGyDAPpWX/epKirLrp8e3qevZdVkKtnCrjjWczIbYc8+xd6vcTStVlqfycTx1KR4LOr0g==}
engines: {node: '>=4'}
@@ -8083,8 +8072,8 @@ packages:
regex-utilities@2.3.0:
resolution: {integrity: sha512-8VhliFJAWRaUiVvREIiW2NXXTmHs4vMNnSzuJVhscgmGav3g9VDxLrQndI3dZZVVdp0ZO/5v0xmX516/7M9cng==}
- regex@6.0.1:
- resolution: {integrity: sha512-uorlqlzAKjKQZ5P+kTJr3eeJGSVroLKoHmquUj4zHWuR+hEyNqlXsSKlYYF5F4NI6nl7tWCs0apKJ0lmfsXAPA==}
+ regex@6.1.0:
+ resolution: {integrity: sha512-6VwtthbV4o/7+OaAF9I5L5V3llLEsoPyq9P1JVXkedTP33c7MfCG0/5NOPcSJn0TzXcG9YUrR0gQSWioew3LDg==}
regexpu-core@6.4.0:
resolution: {integrity: sha512-0ghuzq67LI9bLXpOX/ISfve/Mq33a4aFRzoQYhnnok1JOFpmE/A2TBGkNVenOGEeSBCjIiWcc6MVOG5HEQv0sA==}
@@ -8241,8 +8230,8 @@ packages:
safer-buffer@2.1.2:
resolution: {integrity: sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==}
- sass@1.94.2:
- resolution: {integrity: sha512-N+7WK20/wOr7CzA2snJcUSSNTCzeCGUTFY3OgeQP3mZ1aj9NMQ0mSTXwlrnd89j33zzQJGqIN52GIOmYrfq46A==}
+ sass@1.95.1:
+ resolution: {integrity: sha512-uPoDh5NIEZV4Dp5GBodkmNY9tSQfXY02pmCcUo+FR1P+x953HGkpw+vV28D4IqYB6f8webZtwoSaZaiPtpTeMg==}
engines: {node: '>=14.0.0'}
hasBin: true
@@ -8296,6 +8285,10 @@ packages:
resolution: {integrity: sha512-dW41u5VfLXu8SJh5bwRmyYUbAoSB3c9uQh6L8h/KtsFREPWpbX1lrljJo186Jc4nmci/sGUZ9a0a0J2zgfq2hw==}
engines: {node: '>= 0.8.0'}
+ send@0.19.1:
+ resolution: {integrity: sha512-p4rRk4f23ynFEfcD9LA0xRYngj+IyGiEYyqqOak8kaN0TvNmuxC2dcVeBn62GpCeR2CpWqyHCNScTP91QbAVFg==}
+ engines: {node: '>= 0.8.0'}
+
serve-static@1.16.2:
resolution: {integrity: sha512-VqpjJZKadQB/PEbEwvFdO43Ax5dFBZ2UECszz8bQ7pi7wt//PWe1P6MN7eCnjsatYtBT6EuiClbjSWP2WrIoTw==}
engines: {node: '>= 0.8.0'}
@@ -8477,6 +8470,10 @@ packages:
resolution: {integrity: sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==}
engines: {node: '>= 0.8'}
+ statuses@2.0.2:
+ resolution: {integrity: sha512-DvEy55V3DB7uknRo+4iOGT5fP1slR8wQohVdknigZPMpMstaKJQWhwiYBACJE3Ul2pTnATihhBYnRhZQHGBiRw==}
+ engines: {node: '>= 0.8'}
+
std-env@3.10.0:
resolution: {integrity: sha512-5GS12FdOZNliM5mAOxFRg7Ir0pWz8MdpYm6AY6VPkGpbA7ZzmbzNcBJQ0GPvvyWgcY7QAhCgf9Uy89I03faLkg==}
@@ -8843,8 +8840,8 @@ packages:
peerDependencies:
typedoc: 0.28.x
- typedoc@0.28.14:
- resolution: {integrity: sha512-ftJYPvpVfQvFzpkoSfHLkJybdA/geDJ8BGQt/ZnkkhnBYoYW6lBgPQXu6vqLxO4X75dA55hX8Af847H5KXlEFA==}
+ typedoc@0.28.15:
+ resolution: {integrity: sha512-mw2/2vTL7MlT+BVo43lOsufkkd2CJO4zeOSuWQQsiXoV2VuEn7f6IZp2jsUDPmBMABpgR0R5jlcJ2OGEFYmkyg==}
engines: {node: '>= 18', pnpm: '>= 10'}
hasBin: true
peerDependencies:
@@ -8987,8 +8984,8 @@ packages:
resolution: {integrity: sha512-1uEe95xksV1O0CYKXo8vQvN1JEbtJp7lb7C5U9HMsIp6IVwntkH/oNUzyVNQSd4S1sYk2FpSSW44FqMc8qee5w==}
engines: {node: '>=4'}
- update-browserslist-db@1.1.4:
- resolution: {integrity: sha512-q0SPT4xyU84saUX+tomz1WLkxUbuaJnR1xWt17M7fJtEJigJeWUNGUqrauFXsHnqev9y9JTRGwk13tFBuKby4A==}
+ update-browserslist-db@1.2.2:
+ resolution: {integrity: sha512-E85pfNzMQ9jpKkA7+TJAi4TJN+tBCuWh5rUcS/sv6cFi+1q9LYDwDI5dpUL0u/73EElyQ8d3TEaeW4sPedBqYA==}
hasBin: true
peerDependencies:
browserslist: '>= 4.21.0'
@@ -9439,8 +9436,8 @@ packages:
resolution: {integrity: sha512-h3Fbisa2nKGPxCpm89Hk33lBLsnaGBvctQopaBSOW/uIs6FTe1ATyAnKFJrzVs9vpGdsTe73WF3V4lIsk4Gacw==}
engines: {node: '>=18'}
- xe-utils@3.7.9:
- resolution: {integrity: sha512-LWH6M7g+TKX8P2fqGxDPgJQygiULhbMtpmfxTMxJTUjuUv9y2+I45UCcVLh5AnmJSxDV1xTxsq7G5P9Eid06JQ==}
+ xe-utils@3.8.0:
+ resolution: {integrity: sha512-eziNd3IyxzUBAZByQhNuxcd9UUKN2yqR0w2zjPMtXWzzM3GFg6ztjRH76aSfxIZCco1o53TX3uJ7EY3jNpVo/A==}
xhr@2.6.0:
resolution: {integrity: sha512-/eCGLb5rxjx5e3mF1A7s+pLlR6CGyqWN91fv1JgER5mVWg1MZmlhBvy9kjcsOdRk8RrIujotWyJamfyrp+WIcA==}
@@ -9498,8 +9495,8 @@ packages:
resolution: {integrity: sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==}
engines: {node: '>= 6'}
- yaml@2.8.1:
- resolution: {integrity: sha512-lcYcMxX2PO9XMGvAJkJ3OsNMw+/7FKes7/hgerGUYWIoWu5j/+YQqcZr5JnPZWzOsEBgMbSbiSTn/dv/69Mkpw==}
+ yaml@2.8.2:
+ resolution: {integrity: sha512-mplynKqc1C2hTVYxd0PU2xQAc22TI1vShAYGksCCfxbn/dFwnHTNi1bvYsBTkhdUNtGIf5xNOg938rrSSYvS9A==}
engines: {node: '>= 14.6'}
hasBin: true
@@ -9547,117 +9544,117 @@ packages:
snapshots:
- '@algolia/abtesting@1.11.0':
+ '@algolia/abtesting@1.12.0':
dependencies:
- '@algolia/client-common': 5.45.0
- '@algolia/requester-browser-xhr': 5.45.0
- '@algolia/requester-fetch': 5.45.0
- '@algolia/requester-node-http': 5.45.0
+ '@algolia/client-common': 5.46.0
+ '@algolia/requester-browser-xhr': 5.46.0
+ '@algolia/requester-fetch': 5.46.0
+ '@algolia/requester-node-http': 5.46.0
- '@algolia/autocomplete-core@1.17.7(@algolia/client-search@5.45.0)(algoliasearch@5.45.0)(search-insights@2.17.3)':
+ '@algolia/autocomplete-core@1.17.7(@algolia/client-search@5.46.0)(algoliasearch@5.46.0)(search-insights@2.17.3)':
dependencies:
- '@algolia/autocomplete-plugin-algolia-insights': 1.17.7(@algolia/client-search@5.45.0)(algoliasearch@5.45.0)(search-insights@2.17.3)
- '@algolia/autocomplete-shared': 1.17.7(@algolia/client-search@5.45.0)(algoliasearch@5.45.0)
+ '@algolia/autocomplete-plugin-algolia-insights': 1.17.7(@algolia/client-search@5.46.0)(algoliasearch@5.46.0)(search-insights@2.17.3)
+ '@algolia/autocomplete-shared': 1.17.7(@algolia/client-search@5.46.0)(algoliasearch@5.46.0)
transitivePeerDependencies:
- '@algolia/client-search'
- algoliasearch
- search-insights
- '@algolia/autocomplete-plugin-algolia-insights@1.17.7(@algolia/client-search@5.45.0)(algoliasearch@5.45.0)(search-insights@2.17.3)':
+ '@algolia/autocomplete-plugin-algolia-insights@1.17.7(@algolia/client-search@5.46.0)(algoliasearch@5.46.0)(search-insights@2.17.3)':
dependencies:
- '@algolia/autocomplete-shared': 1.17.7(@algolia/client-search@5.45.0)(algoliasearch@5.45.0)
+ '@algolia/autocomplete-shared': 1.17.7(@algolia/client-search@5.46.0)(algoliasearch@5.46.0)
search-insights: 2.17.3
transitivePeerDependencies:
- '@algolia/client-search'
- algoliasearch
- '@algolia/autocomplete-preset-algolia@1.17.7(@algolia/client-search@5.45.0)(algoliasearch@5.45.0)':
+ '@algolia/autocomplete-preset-algolia@1.17.7(@algolia/client-search@5.46.0)(algoliasearch@5.46.0)':
dependencies:
- '@algolia/autocomplete-shared': 1.17.7(@algolia/client-search@5.45.0)(algoliasearch@5.45.0)
- '@algolia/client-search': 5.45.0
- algoliasearch: 5.45.0
+ '@algolia/autocomplete-shared': 1.17.7(@algolia/client-search@5.46.0)(algoliasearch@5.46.0)
+ '@algolia/client-search': 5.46.0
+ algoliasearch: 5.46.0
- '@algolia/autocomplete-shared@1.17.7(@algolia/client-search@5.45.0)(algoliasearch@5.45.0)':
+ '@algolia/autocomplete-shared@1.17.7(@algolia/client-search@5.46.0)(algoliasearch@5.46.0)':
dependencies:
- '@algolia/client-search': 5.45.0
- algoliasearch: 5.45.0
+ '@algolia/client-search': 5.46.0
+ algoliasearch: 5.46.0
- '@algolia/client-abtesting@5.45.0':
+ '@algolia/client-abtesting@5.46.0':
dependencies:
- '@algolia/client-common': 5.45.0
- '@algolia/requester-browser-xhr': 5.45.0
- '@algolia/requester-fetch': 5.45.0
- '@algolia/requester-node-http': 5.45.0
+ '@algolia/client-common': 5.46.0
+ '@algolia/requester-browser-xhr': 5.46.0
+ '@algolia/requester-fetch': 5.46.0
+ '@algolia/requester-node-http': 5.46.0
- '@algolia/client-analytics@5.45.0':
+ '@algolia/client-analytics@5.46.0':
dependencies:
- '@algolia/client-common': 5.45.0
- '@algolia/requester-browser-xhr': 5.45.0
- '@algolia/requester-fetch': 5.45.0
- '@algolia/requester-node-http': 5.45.0
+ '@algolia/client-common': 5.46.0
+ '@algolia/requester-browser-xhr': 5.46.0
+ '@algolia/requester-fetch': 5.46.0
+ '@algolia/requester-node-http': 5.46.0
- '@algolia/client-common@5.45.0': {}
+ '@algolia/client-common@5.46.0': {}
- '@algolia/client-insights@5.45.0':
+ '@algolia/client-insights@5.46.0':
dependencies:
- '@algolia/client-common': 5.45.0
- '@algolia/requester-browser-xhr': 5.45.0
- '@algolia/requester-fetch': 5.45.0
- '@algolia/requester-node-http': 5.45.0
+ '@algolia/client-common': 5.46.0
+ '@algolia/requester-browser-xhr': 5.46.0
+ '@algolia/requester-fetch': 5.46.0
+ '@algolia/requester-node-http': 5.46.0
- '@algolia/client-personalization@5.45.0':
+ '@algolia/client-personalization@5.46.0':
dependencies:
- '@algolia/client-common': 5.45.0
- '@algolia/requester-browser-xhr': 5.45.0
- '@algolia/requester-fetch': 5.45.0
- '@algolia/requester-node-http': 5.45.0
+ '@algolia/client-common': 5.46.0
+ '@algolia/requester-browser-xhr': 5.46.0
+ '@algolia/requester-fetch': 5.46.0
+ '@algolia/requester-node-http': 5.46.0
- '@algolia/client-query-suggestions@5.45.0':
+ '@algolia/client-query-suggestions@5.46.0':
dependencies:
- '@algolia/client-common': 5.45.0
- '@algolia/requester-browser-xhr': 5.45.0
- '@algolia/requester-fetch': 5.45.0
- '@algolia/requester-node-http': 5.45.0
+ '@algolia/client-common': 5.46.0
+ '@algolia/requester-browser-xhr': 5.46.0
+ '@algolia/requester-fetch': 5.46.0
+ '@algolia/requester-node-http': 5.46.0
- '@algolia/client-search@5.45.0':
+ '@algolia/client-search@5.46.0':
dependencies:
- '@algolia/client-common': 5.45.0
- '@algolia/requester-browser-xhr': 5.45.0
- '@algolia/requester-fetch': 5.45.0
- '@algolia/requester-node-http': 5.45.0
+ '@algolia/client-common': 5.46.0
+ '@algolia/requester-browser-xhr': 5.46.0
+ '@algolia/requester-fetch': 5.46.0
+ '@algolia/requester-node-http': 5.46.0
- '@algolia/ingestion@1.45.0':
+ '@algolia/ingestion@1.46.0':
dependencies:
- '@algolia/client-common': 5.45.0
- '@algolia/requester-browser-xhr': 5.45.0
- '@algolia/requester-fetch': 5.45.0
- '@algolia/requester-node-http': 5.45.0
+ '@algolia/client-common': 5.46.0
+ '@algolia/requester-browser-xhr': 5.46.0
+ '@algolia/requester-fetch': 5.46.0
+ '@algolia/requester-node-http': 5.46.0
- '@algolia/monitoring@1.45.0':
+ '@algolia/monitoring@1.46.0':
dependencies:
- '@algolia/client-common': 5.45.0
- '@algolia/requester-browser-xhr': 5.45.0
- '@algolia/requester-fetch': 5.45.0
- '@algolia/requester-node-http': 5.45.0
+ '@algolia/client-common': 5.46.0
+ '@algolia/requester-browser-xhr': 5.46.0
+ '@algolia/requester-fetch': 5.46.0
+ '@algolia/requester-node-http': 5.46.0
- '@algolia/recommend@5.45.0':
+ '@algolia/recommend@5.46.0':
dependencies:
- '@algolia/client-common': 5.45.0
- '@algolia/requester-browser-xhr': 5.45.0
- '@algolia/requester-fetch': 5.45.0
- '@algolia/requester-node-http': 5.45.0
+ '@algolia/client-common': 5.46.0
+ '@algolia/requester-browser-xhr': 5.46.0
+ '@algolia/requester-fetch': 5.46.0
+ '@algolia/requester-node-http': 5.46.0
- '@algolia/requester-browser-xhr@5.45.0':
+ '@algolia/requester-browser-xhr@5.46.0':
dependencies:
- '@algolia/client-common': 5.45.0
+ '@algolia/client-common': 5.46.0
- '@algolia/requester-fetch@5.45.0':
+ '@algolia/requester-fetch@5.46.0':
dependencies:
- '@algolia/client-common': 5.45.0
+ '@algolia/client-common': 5.46.0
- '@algolia/requester-node-http@5.45.0':
+ '@algolia/requester-node-http@5.46.0':
dependencies:
- '@algolia/client-common': 5.45.0
+ '@algolia/client-common': 5.46.0
'@ampproject/remapping@2.3.0':
dependencies:
@@ -9728,7 +9725,7 @@ snapshots:
dependencies:
'@babel/compat-data': 7.28.5
'@babel/helper-validator-option': 7.27.1
- browserslist: 4.28.0
+ browserslist: 4.28.1
lru-cache: 5.1.1
semver: 6.3.1
@@ -10449,11 +10446,11 @@ snapshots:
'@bcoe/v8-coverage@1.0.2': {}
- '@commitlint/cli@19.8.1(@types/node@24.10.1)(typescript@5.9.3)':
+ '@commitlint/cli@19.8.1(@types/node@24.10.3)(typescript@5.9.3)':
dependencies:
'@commitlint/format': 19.8.1
'@commitlint/lint': 19.8.1
- '@commitlint/load': 19.8.1(@types/node@24.10.1)(typescript@5.9.3)
+ '@commitlint/load': 19.8.1(@types/node@24.10.3)(typescript@5.9.3)
'@commitlint/read': 19.8.1
'@commitlint/types': 19.8.1
tinyexec: 1.0.2
@@ -10500,7 +10497,7 @@ snapshots:
'@commitlint/rules': 19.8.1
'@commitlint/types': 19.8.1
- '@commitlint/load@19.8.1(@types/node@24.10.1)(typescript@5.9.3)':
+ '@commitlint/load@19.8.1(@types/node@24.10.3)(typescript@5.9.3)':
dependencies:
'@commitlint/config-validator': 19.8.1
'@commitlint/execute-rule': 19.8.1
@@ -10508,7 +10505,7 @@ snapshots:
'@commitlint/types': 19.8.1
chalk: 5.6.2
cosmiconfig: 9.0.0(typescript@5.9.3)
- cosmiconfig-typescript-loader: 6.2.0(@types/node@24.10.1)(cosmiconfig@9.0.0(typescript@5.9.3))(typescript@5.9.3)
+ cosmiconfig-typescript-loader: 6.2.0(@types/node@24.10.3)(cosmiconfig@9.0.0(typescript@5.9.3))(typescript@5.9.3)
lodash.isplainobject: 4.0.6
lodash.merge: 4.6.2
lodash.uniq: 4.5.0
@@ -10587,10 +10584,10 @@ snapshots:
'@dcloudio/types@3.4.28': {}
- '@dcloudio/uni-app-plus@3.0.0-4070620250821001(@vueuse/core@14.1.0(vue@3.5.25(typescript@5.9.3)))(postcss@8.5.6)(rollup@4.53.3)(ts-node@10.9.2(@types/node@24.10.1)(typescript@5.9.3))(vite@6.3.7(@types/node@24.10.1)(jiti@2.6.1)(sass@1.94.2)(terser@5.44.1)(yaml@2.8.1))(vue@3.5.25(typescript@5.9.3))':
+ '@dcloudio/uni-app-plus@3.0.0-4070620250821001(@vueuse/core@14.1.0(vue@3.5.25(typescript@5.9.3)))(postcss@8.5.6)(rollup@4.53.3)(ts-node@10.9.2(@types/node@24.10.3)(typescript@5.9.3))(vite@6.3.7(@types/node@24.10.3)(jiti@2.6.1)(sass@1.95.1)(terser@5.44.1)(yaml@2.8.2))(vue@3.5.25(typescript@5.9.3))':
dependencies:
- '@dcloudio/uni-app-uts': 3.0.0-4070620250821001(@vueuse/core@14.1.0(vue@3.5.25(typescript@5.9.3)))(postcss@8.5.6)(rollup@4.53.3)(ts-node@10.9.2(@types/node@24.10.1)(typescript@5.9.3))(vue@3.5.25(typescript@5.9.3))
- '@dcloudio/uni-app-vite': 3.0.0-4070620250821001(@vueuse/core@14.1.0(vue@3.5.25(typescript@5.9.3)))(postcss@8.5.6)(rollup@4.53.3)(ts-node@10.9.2(@types/node@24.10.1)(typescript@5.9.3))(vite@6.3.7(@types/node@24.10.1)(jiti@2.6.1)(sass@1.94.2)(terser@5.44.1)(yaml@2.8.1))(vue@3.5.25(typescript@5.9.3))
+ '@dcloudio/uni-app-uts': 3.0.0-4070620250821001(@vueuse/core@14.1.0(vue@3.5.25(typescript@5.9.3)))(postcss@8.5.6)(rollup@4.53.3)(ts-node@10.9.2(@types/node@24.10.3)(typescript@5.9.3))(vue@3.5.25(typescript@5.9.3))
+ '@dcloudio/uni-app-vite': 3.0.0-4070620250821001(@vueuse/core@14.1.0(vue@3.5.25(typescript@5.9.3)))(postcss@8.5.6)(rollup@4.53.3)(ts-node@10.9.2(@types/node@24.10.3)(typescript@5.9.3))(vite@6.3.7(@types/node@24.10.3)(jiti@2.6.1)(sass@1.95.1)(terser@5.44.1)(yaml@2.8.2))(vue@3.5.25(typescript@5.9.3))
'@dcloudio/uni-app-vue': 3.0.0-4070620250821001
debug: 4.4.3(supports-color@5.5.0)
fs-extra: 10.1.0
@@ -10606,12 +10603,12 @@ snapshots:
- vite
- vue
- '@dcloudio/uni-app-uts@3.0.0-4070620250821001(@vueuse/core@14.1.0(vue@3.5.25(typescript@5.9.3)))(postcss@8.5.6)(rollup@4.53.3)(ts-node@10.9.2(@types/node@24.10.1)(typescript@5.9.3))(vue@3.5.25(typescript@5.9.3))':
+ '@dcloudio/uni-app-uts@3.0.0-4070620250821001(@vueuse/core@14.1.0(vue@3.5.25(typescript@5.9.3)))(postcss@8.5.6)(rollup@4.53.3)(ts-node@10.9.2(@types/node@24.10.3)(typescript@5.9.3))(vue@3.5.25(typescript@5.9.3))':
dependencies:
'@babel/parser': 7.28.5
'@babel/types': 7.28.5
- '@dcloudio/uni-cli-shared': 3.0.0-4070620250821001(@vueuse/core@14.1.0(vue@3.5.25(typescript@5.9.3)))(postcss@8.5.6)(rollup@4.53.3)(ts-node@10.9.2(@types/node@24.10.1)(typescript@5.9.3))(vue@3.5.25(typescript@5.9.3))
- '@dcloudio/uni-console': 3.0.0-4070620250821001(@vueuse/core@14.1.0(vue@3.5.25(typescript@5.9.3)))(postcss@8.5.6)(rollup@4.53.3)(ts-node@10.9.2(@types/node@24.10.1)(typescript@5.9.3))(vue@3.5.25(typescript@5.9.3))
+ '@dcloudio/uni-cli-shared': 3.0.0-4070620250821001(@vueuse/core@14.1.0(vue@3.5.25(typescript@5.9.3)))(postcss@8.5.6)(rollup@4.53.3)(ts-node@10.9.2(@types/node@24.10.3)(typescript@5.9.3))(vue@3.5.25(typescript@5.9.3))
+ '@dcloudio/uni-console': 3.0.0-4070620250821001(@vueuse/core@14.1.0(vue@3.5.25(typescript@5.9.3)))(postcss@8.5.6)(rollup@4.53.3)(ts-node@10.9.2(@types/node@24.10.3)(typescript@5.9.3))(vue@3.5.25(typescript@5.9.3))
'@dcloudio/uni-i18n': 3.0.0-4070620250821001
'@dcloudio/uni-nvue-styler': 3.0.0-4070620250821001
'@dcloudio/uni-shared': 3.0.0-4070620250821001
@@ -10641,14 +10638,14 @@ snapshots:
- ts-node
- vue
- '@dcloudio/uni-app-vite@3.0.0-4070620250821001(@vueuse/core@14.1.0(vue@3.5.25(typescript@5.9.3)))(postcss@8.5.6)(rollup@4.53.3)(ts-node@10.9.2(@types/node@24.10.1)(typescript@5.9.3))(vite@6.3.7(@types/node@24.10.1)(jiti@2.6.1)(sass@1.94.2)(terser@5.44.1)(yaml@2.8.1))(vue@3.5.25(typescript@5.9.3))':
+ '@dcloudio/uni-app-vite@3.0.0-4070620250821001(@vueuse/core@14.1.0(vue@3.5.25(typescript@5.9.3)))(postcss@8.5.6)(rollup@4.53.3)(ts-node@10.9.2(@types/node@24.10.3)(typescript@5.9.3))(vite@6.3.7(@types/node@24.10.3)(jiti@2.6.1)(sass@1.95.1)(terser@5.44.1)(yaml@2.8.2))(vue@3.5.25(typescript@5.9.3))':
dependencies:
- '@dcloudio/uni-cli-shared': 3.0.0-4070620250821001(@vueuse/core@14.1.0(vue@3.5.25(typescript@5.9.3)))(postcss@8.5.6)(rollup@4.53.3)(ts-node@10.9.2(@types/node@24.10.1)(typescript@5.9.3))(vue@3.5.25(typescript@5.9.3))
+ '@dcloudio/uni-cli-shared': 3.0.0-4070620250821001(@vueuse/core@14.1.0(vue@3.5.25(typescript@5.9.3)))(postcss@8.5.6)(rollup@4.53.3)(ts-node@10.9.2(@types/node@24.10.3)(typescript@5.9.3))(vue@3.5.25(typescript@5.9.3))
'@dcloudio/uni-i18n': 3.0.0-4070620250821001
'@dcloudio/uni-nvue-styler': 3.0.0-4070620250821001
'@dcloudio/uni-shared': 3.0.0-4070620250821001
'@rollup/pluginutils': 5.3.0(rollup@4.53.3)
- '@vitejs/plugin-vue': 5.1.0(vite@6.3.7(@types/node@24.10.1)(jiti@2.6.1)(sass@1.94.2)(terser@5.44.1)(yaml@2.8.1))(vue@3.5.25(typescript@5.9.3))
+ '@vitejs/plugin-vue': 5.1.0(vite@6.3.7(@types/node@24.10.3)(jiti@2.6.1)(sass@1.95.1)(terser@5.44.1)(yaml@2.8.2))(vue@3.5.25(typescript@5.9.3))
'@vue/compiler-dom': 3.4.21
'@vue/compiler-sfc': 3.4.21
debug: 4.4.3(supports-color@5.5.0)
@@ -10666,16 +10663,16 @@ snapshots:
'@dcloudio/uni-app-vue@3.0.0-4070620250821001': {}
- '@dcloudio/uni-app@3.0.0-4070620250821001(@dcloudio/types@3.4.28)(@vueuse/core@14.1.0(vue@3.5.25(typescript@5.9.3)))(postcss@8.5.6)(rollup@4.53.3)(ts-node@10.9.2(@types/node@24.10.1)(typescript@5.9.3))(vue@3.5.25(typescript@5.9.3))':
+ '@dcloudio/uni-app@3.0.0-4070620250821001(@dcloudio/types@3.4.28)(@vueuse/core@14.1.0(vue@3.5.25(typescript@5.9.3)))(postcss@8.5.6)(rollup@4.53.3)(ts-node@10.9.2(@types/node@24.10.3)(typescript@5.9.3))(vue@3.5.25(typescript@5.9.3))':
dependencies:
'@dcloudio/types': 3.4.28
- '@dcloudio/uni-cloud': 3.0.0-4070620250821001(@vueuse/core@14.1.0(vue@3.5.25(typescript@5.9.3)))(postcss@8.5.6)(rollup@4.53.3)(ts-node@10.9.2(@types/node@24.10.1)(typescript@5.9.3))(vue@3.5.25(typescript@5.9.3))
- '@dcloudio/uni-components': 3.0.0-4070620250821001(@vueuse/core@14.1.0(vue@3.5.25(typescript@5.9.3)))(postcss@8.5.6)(rollup@4.53.3)(ts-node@10.9.2(@types/node@24.10.1)(typescript@5.9.3))(vue@3.5.25(typescript@5.9.3))
- '@dcloudio/uni-console': 3.0.0-4070620250821001(@vueuse/core@14.1.0(vue@3.5.25(typescript@5.9.3)))(postcss@8.5.6)(rollup@4.53.3)(ts-node@10.9.2(@types/node@24.10.1)(typescript@5.9.3))(vue@3.5.25(typescript@5.9.3))
+ '@dcloudio/uni-cloud': 3.0.0-4070620250821001(@vueuse/core@14.1.0(vue@3.5.25(typescript@5.9.3)))(postcss@8.5.6)(rollup@4.53.3)(ts-node@10.9.2(@types/node@24.10.3)(typescript@5.9.3))(vue@3.5.25(typescript@5.9.3))
+ '@dcloudio/uni-components': 3.0.0-4070620250821001(@vueuse/core@14.1.0(vue@3.5.25(typescript@5.9.3)))(postcss@8.5.6)(rollup@4.53.3)(ts-node@10.9.2(@types/node@24.10.3)(typescript@5.9.3))(vue@3.5.25(typescript@5.9.3))
+ '@dcloudio/uni-console': 3.0.0-4070620250821001(@vueuse/core@14.1.0(vue@3.5.25(typescript@5.9.3)))(postcss@8.5.6)(rollup@4.53.3)(ts-node@10.9.2(@types/node@24.10.3)(typescript@5.9.3))(vue@3.5.25(typescript@5.9.3))
'@dcloudio/uni-i18n': 3.0.0-4070620250821001
- '@dcloudio/uni-push': 3.0.0-4070620250821001(@vueuse/core@14.1.0(vue@3.5.25(typescript@5.9.3)))(postcss@8.5.6)(rollup@4.53.3)(ts-node@10.9.2(@types/node@24.10.1)(typescript@5.9.3))(vue@3.5.25(typescript@5.9.3))
+ '@dcloudio/uni-push': 3.0.0-4070620250821001(@vueuse/core@14.1.0(vue@3.5.25(typescript@5.9.3)))(postcss@8.5.6)(rollup@4.53.3)(ts-node@10.9.2(@types/node@24.10.3)(typescript@5.9.3))(vue@3.5.25(typescript@5.9.3))
'@dcloudio/uni-shared': 3.0.0-4070620250821001
- '@dcloudio/uni-stat': 3.0.0-4070620250821001(@vueuse/core@14.1.0(vue@3.5.25(typescript@5.9.3)))(postcss@8.5.6)(rollup@4.53.3)(ts-node@10.9.2(@types/node@24.10.1)(typescript@5.9.3))(vue@3.5.25(typescript@5.9.3))
+ '@dcloudio/uni-stat': 3.0.0-4070620250821001(@vueuse/core@14.1.0(vue@3.5.25(typescript@5.9.3)))(postcss@8.5.6)(rollup@4.53.3)(ts-node@10.9.2(@types/node@24.10.3)(typescript@5.9.3))(vue@3.5.25(typescript@5.9.3))
'@vue/shared': 3.4.21
transitivePeerDependencies:
- '@nuxt/kit'
@@ -10686,15 +10683,15 @@ snapshots:
- ts-node
- vue
- '@dcloudio/uni-automator@3.0.0-4070620250821001(@vueuse/core@14.1.0(vue@3.5.25(typescript@5.9.3)))(jest-environment-node@27.5.1)(jest@27.0.4(ts-node@10.9.2(@types/node@24.10.1)(typescript@5.9.3)))(postcss@8.5.6)(rollup@4.53.3)(ts-node@10.9.2(@types/node@24.10.1)(typescript@5.9.3))(vue@3.5.25(typescript@5.9.3))':
+ '@dcloudio/uni-automator@3.0.0-4070620250821001(@vueuse/core@14.1.0(vue@3.5.25(typescript@5.9.3)))(jest-environment-node@27.5.1)(jest@27.0.4(ts-node@10.9.2(@types/node@24.10.3)(typescript@5.9.3)))(postcss@8.5.6)(rollup@4.53.3)(ts-node@10.9.2(@types/node@24.10.3)(typescript@5.9.3))(vue@3.5.25(typescript@5.9.3))':
dependencies:
- '@dcloudio/uni-cli-shared': 3.0.0-4070620250821001(@vueuse/core@14.1.0(vue@3.5.25(typescript@5.9.3)))(postcss@8.5.6)(rollup@4.53.3)(ts-node@10.9.2(@types/node@24.10.1)(typescript@5.9.3))(vue@3.5.25(typescript@5.9.3))
+ '@dcloudio/uni-cli-shared': 3.0.0-4070620250821001(@vueuse/core@14.1.0(vue@3.5.25(typescript@5.9.3)))(postcss@8.5.6)(rollup@4.53.3)(ts-node@10.9.2(@types/node@24.10.3)(typescript@5.9.3))(vue@3.5.25(typescript@5.9.3))
address: 1.2.2
cross-env: 7.0.3
debug: 4.4.3(supports-color@5.5.0)
default-gateway: 6.0.3
fs-extra: 10.1.0
- jest: 27.0.4(ts-node@10.9.2(@types/node@24.10.1)(typescript@5.9.3))
+ jest: 27.0.4(ts-node@10.9.2(@types/node@24.10.3)(typescript@5.9.3))
jest-environment-node: 27.5.1
jsonc-parser: 3.3.1
licia: 1.48.0
@@ -10713,7 +10710,7 @@ snapshots:
- utf-8-validate
- vue
- '@dcloudio/uni-cli-shared@3.0.0-4070620250821001(@vueuse/core@14.1.0(vue@3.5.25(typescript@5.9.3)))(postcss@8.5.6)(rollup@4.53.3)(ts-node@10.9.2(@types/node@24.10.1)(typescript@5.9.3))(vue@3.5.25(typescript@5.9.3))':
+ '@dcloudio/uni-cli-shared@3.0.0-4070620250821001(@vueuse/core@14.1.0(vue@3.5.25(typescript@5.9.3)))(postcss@8.5.6)(rollup@4.53.3)(ts-node@10.9.2(@types/node@24.10.3)(typescript@5.9.3))(vue@3.5.25(typescript@5.9.3))':
dependencies:
'@ampproject/remapping': 2.3.0
'@babel/code-frame': 7.27.1
@@ -10755,7 +10752,7 @@ snapshots:
os-locale-s-fix: 1.0.8-fix-1
picocolors: 1.1.1
postcss-import: 14.1.0(postcss@8.5.6)
- postcss-load-config: 3.1.4(postcss@8.5.6)(ts-node@10.9.2(@types/node@24.10.1)(typescript@5.9.3))
+ postcss-load-config: 3.1.4(postcss@8.5.6)(ts-node@10.9.2(@types/node@24.10.3)(typescript@5.9.3))
postcss-modules: 4.3.1(postcss@8.5.6)
postcss-selector-parser: 6.1.2
resolve: 1.22.11
@@ -10773,9 +10770,9 @@ snapshots:
- ts-node
- vue
- '@dcloudio/uni-cloud@3.0.0-4070620250821001(@vueuse/core@14.1.0(vue@3.5.25(typescript@5.9.3)))(postcss@8.5.6)(rollup@4.53.3)(ts-node@10.9.2(@types/node@24.10.1)(typescript@5.9.3))(vue@3.5.25(typescript@5.9.3))':
+ '@dcloudio/uni-cloud@3.0.0-4070620250821001(@vueuse/core@14.1.0(vue@3.5.25(typescript@5.9.3)))(postcss@8.5.6)(rollup@4.53.3)(ts-node@10.9.2(@types/node@24.10.3)(typescript@5.9.3))(vue@3.5.25(typescript@5.9.3))':
dependencies:
- '@dcloudio/uni-cli-shared': 3.0.0-4070620250821001(@vueuse/core@14.1.0(vue@3.5.25(typescript@5.9.3)))(postcss@8.5.6)(rollup@4.53.3)(ts-node@10.9.2(@types/node@24.10.1)(typescript@5.9.3))(vue@3.5.25(typescript@5.9.3))
+ '@dcloudio/uni-cli-shared': 3.0.0-4070620250821001(@vueuse/core@14.1.0(vue@3.5.25(typescript@5.9.3)))(postcss@8.5.6)(rollup@4.53.3)(ts-node@10.9.2(@types/node@24.10.3)(typescript@5.9.3))(vue@3.5.25(typescript@5.9.3))
'@dcloudio/uni-i18n': 3.0.0-4070620250821001
'@dcloudio/uni-shared': 3.0.0-4070620250821001
'@vue/shared': 3.4.21
@@ -10789,10 +10786,10 @@ snapshots:
- ts-node
- vue
- '@dcloudio/uni-components@3.0.0-4070620250821001(@vueuse/core@14.1.0(vue@3.5.25(typescript@5.9.3)))(postcss@8.5.6)(rollup@4.53.3)(ts-node@10.9.2(@types/node@24.10.1)(typescript@5.9.3))(vue@3.5.25(typescript@5.9.3))':
+ '@dcloudio/uni-components@3.0.0-4070620250821001(@vueuse/core@14.1.0(vue@3.5.25(typescript@5.9.3)))(postcss@8.5.6)(rollup@4.53.3)(ts-node@10.9.2(@types/node@24.10.3)(typescript@5.9.3))(vue@3.5.25(typescript@5.9.3))':
dependencies:
- '@dcloudio/uni-cloud': 3.0.0-4070620250821001(@vueuse/core@14.1.0(vue@3.5.25(typescript@5.9.3)))(postcss@8.5.6)(rollup@4.53.3)(ts-node@10.9.2(@types/node@24.10.1)(typescript@5.9.3))(vue@3.5.25(typescript@5.9.3))
- '@dcloudio/uni-h5': 3.0.0-4070620250821001(@vueuse/core@14.1.0(vue@3.5.25(typescript@5.9.3)))(postcss@8.5.6)(rollup@4.53.3)(ts-node@10.9.2(@types/node@24.10.1)(typescript@5.9.3))(vue@3.5.25(typescript@5.9.3))
+ '@dcloudio/uni-cloud': 3.0.0-4070620250821001(@vueuse/core@14.1.0(vue@3.5.25(typescript@5.9.3)))(postcss@8.5.6)(rollup@4.53.3)(ts-node@10.9.2(@types/node@24.10.3)(typescript@5.9.3))(vue@3.5.25(typescript@5.9.3))
+ '@dcloudio/uni-h5': 3.0.0-4070620250821001(@vueuse/core@14.1.0(vue@3.5.25(typescript@5.9.3)))(postcss@8.5.6)(rollup@4.53.3)(ts-node@10.9.2(@types/node@24.10.3)(typescript@5.9.3))(vue@3.5.25(typescript@5.9.3))
'@dcloudio/uni-i18n': 3.0.0-4070620250821001
transitivePeerDependencies:
- '@nuxt/kit'
@@ -10803,9 +10800,9 @@ snapshots:
- ts-node
- vue
- '@dcloudio/uni-console@3.0.0-4070620250821001(@vueuse/core@14.1.0(vue@3.5.25(typescript@5.9.3)))(postcss@8.5.6)(rollup@4.53.3)(ts-node@10.9.2(@types/node@24.10.1)(typescript@5.9.3))(vue@3.5.25(typescript@5.9.3))':
+ '@dcloudio/uni-console@3.0.0-4070620250821001(@vueuse/core@14.1.0(vue@3.5.25(typescript@5.9.3)))(postcss@8.5.6)(rollup@4.53.3)(ts-node@10.9.2(@types/node@24.10.3)(typescript@5.9.3))(vue@3.5.25(typescript@5.9.3))':
dependencies:
- '@dcloudio/uni-cli-shared': 3.0.0-4070620250821001(@vueuse/core@14.1.0(vue@3.5.25(typescript@5.9.3)))(postcss@8.5.6)(rollup@4.53.3)(ts-node@10.9.2(@types/node@24.10.1)(typescript@5.9.3))(vue@3.5.25(typescript@5.9.3))
+ '@dcloudio/uni-cli-shared': 3.0.0-4070620250821001(@vueuse/core@14.1.0(vue@3.5.25(typescript@5.9.3)))(postcss@8.5.6)(rollup@4.53.3)(ts-node@10.9.2(@types/node@24.10.3)(typescript@5.9.3))(vue@3.5.25(typescript@5.9.3))
fs-extra: 10.1.0
transitivePeerDependencies:
- '@nuxt/kit'
@@ -10816,9 +10813,9 @@ snapshots:
- ts-node
- vue
- '@dcloudio/uni-h5-vite@3.0.0-4070620250821001(@vueuse/core@14.1.0(vue@3.5.25(typescript@5.9.3)))(postcss@8.5.6)(rollup@4.53.3)(ts-node@10.9.2(@types/node@24.10.1)(typescript@5.9.3))(vue@3.5.25(typescript@5.9.3))':
+ '@dcloudio/uni-h5-vite@3.0.0-4070620250821001(@vueuse/core@14.1.0(vue@3.5.25(typescript@5.9.3)))(postcss@8.5.6)(rollup@4.53.3)(ts-node@10.9.2(@types/node@24.10.3)(typescript@5.9.3))(vue@3.5.25(typescript@5.9.3))':
dependencies:
- '@dcloudio/uni-cli-shared': 3.0.0-4070620250821001(@vueuse/core@14.1.0(vue@3.5.25(typescript@5.9.3)))(postcss@8.5.6)(rollup@4.53.3)(ts-node@10.9.2(@types/node@24.10.1)(typescript@5.9.3))(vue@3.5.25(typescript@5.9.3))
+ '@dcloudio/uni-cli-shared': 3.0.0-4070620250821001(@vueuse/core@14.1.0(vue@3.5.25(typescript@5.9.3)))(postcss@8.5.6)(rollup@4.53.3)(ts-node@10.9.2(@types/node@24.10.3)(typescript@5.9.3))(vue@3.5.25(typescript@5.9.3))
'@dcloudio/uni-shared': 3.0.0-4070620250821001
'@rollup/pluginutils': 5.3.0(rollup@4.53.3)
'@vue/compiler-dom': 3.4.21
@@ -10845,9 +10842,9 @@ snapshots:
transitivePeerDependencies:
- vue
- '@dcloudio/uni-h5@3.0.0-4070620250821001(@vueuse/core@14.1.0(vue@3.5.25(typescript@5.9.3)))(postcss@8.5.6)(rollup@4.53.3)(ts-node@10.9.2(@types/node@24.10.1)(typescript@5.9.3))(vue@3.5.25(typescript@5.9.3))':
+ '@dcloudio/uni-h5@3.0.0-4070620250821001(@vueuse/core@14.1.0(vue@3.5.25(typescript@5.9.3)))(postcss@8.5.6)(rollup@4.53.3)(ts-node@10.9.2(@types/node@24.10.3)(typescript@5.9.3))(vue@3.5.25(typescript@5.9.3))':
dependencies:
- '@dcloudio/uni-h5-vite': 3.0.0-4070620250821001(@vueuse/core@14.1.0(vue@3.5.25(typescript@5.9.3)))(postcss@8.5.6)(rollup@4.53.3)(ts-node@10.9.2(@types/node@24.10.1)(typescript@5.9.3))(vue@3.5.25(typescript@5.9.3))
+ '@dcloudio/uni-h5-vite': 3.0.0-4070620250821001(@vueuse/core@14.1.0(vue@3.5.25(typescript@5.9.3)))(postcss@8.5.6)(rollup@4.53.3)(ts-node@10.9.2(@types/node@24.10.3)(typescript@5.9.3))(vue@3.5.25(typescript@5.9.3))
'@dcloudio/uni-h5-vue': 3.0.0-4070620250821001(vue@3.5.25(typescript@5.9.3))
'@dcloudio/uni-i18n': 3.0.0-4070620250821001
'@dcloudio/uni-shared': 3.0.0-4070620250821001
@@ -10870,10 +10867,10 @@ snapshots:
'@dcloudio/uni-i18n@3.0.0-4070620250821001': {}
- '@dcloudio/uni-mp-alipay@3.0.0-4070620250821001(@vueuse/core@14.1.0(vue@3.5.25(typescript@5.9.3)))(postcss@8.5.6)(rollup@4.53.3)(ts-node@10.9.2(@types/node@24.10.1)(typescript@5.9.3))(vue@3.5.25(typescript@5.9.3))':
+ '@dcloudio/uni-mp-alipay@3.0.0-4070620250821001(@vueuse/core@14.1.0(vue@3.5.25(typescript@5.9.3)))(postcss@8.5.6)(rollup@4.53.3)(ts-node@10.9.2(@types/node@24.10.3)(typescript@5.9.3))(vue@3.5.25(typescript@5.9.3))':
dependencies:
- '@dcloudio/uni-cli-shared': 3.0.0-4070620250821001(@vueuse/core@14.1.0(vue@3.5.25(typescript@5.9.3)))(postcss@8.5.6)(rollup@4.53.3)(ts-node@10.9.2(@types/node@24.10.1)(typescript@5.9.3))(vue@3.5.25(typescript@5.9.3))
- '@dcloudio/uni-mp-vite': 3.0.0-4070620250821001(@vueuse/core@14.1.0(vue@3.5.25(typescript@5.9.3)))(postcss@8.5.6)(rollup@4.53.3)(ts-node@10.9.2(@types/node@24.10.1)(typescript@5.9.3))(vue@3.5.25(typescript@5.9.3))
+ '@dcloudio/uni-cli-shared': 3.0.0-4070620250821001(@vueuse/core@14.1.0(vue@3.5.25(typescript@5.9.3)))(postcss@8.5.6)(rollup@4.53.3)(ts-node@10.9.2(@types/node@24.10.3)(typescript@5.9.3))(vue@3.5.25(typescript@5.9.3))
+ '@dcloudio/uni-mp-vite': 3.0.0-4070620250821001(@vueuse/core@14.1.0(vue@3.5.25(typescript@5.9.3)))(postcss@8.5.6)(rollup@4.53.3)(ts-node@10.9.2(@types/node@24.10.3)(typescript@5.9.3))(vue@3.5.25(typescript@5.9.3))
'@dcloudio/uni-mp-vue': 3.0.0-4070620250821001
'@dcloudio/uni-shared': 3.0.0-4070620250821001
'@vue/compiler-core': 3.4.21
@@ -10887,14 +10884,14 @@ snapshots:
- ts-node
- vue
- '@dcloudio/uni-mp-baidu@3.0.0-4070620250821001(@dcloudio/types@3.4.28)(@vueuse/core@14.1.0(vue@3.5.25(typescript@5.9.3)))(postcss@8.5.6)(rollup@4.53.3)(ts-node@10.9.2(@types/node@24.10.1)(typescript@5.9.3))(vue@3.5.25(typescript@5.9.3))':
+ '@dcloudio/uni-mp-baidu@3.0.0-4070620250821001(@dcloudio/types@3.4.28)(@vueuse/core@14.1.0(vue@3.5.25(typescript@5.9.3)))(postcss@8.5.6)(rollup@4.53.3)(ts-node@10.9.2(@types/node@24.10.3)(typescript@5.9.3))(vue@3.5.25(typescript@5.9.3))':
dependencies:
- '@dcloudio/uni-app': 3.0.0-4070620250821001(@dcloudio/types@3.4.28)(@vueuse/core@14.1.0(vue@3.5.25(typescript@5.9.3)))(postcss@8.5.6)(rollup@4.53.3)(ts-node@10.9.2(@types/node@24.10.1)(typescript@5.9.3))(vue@3.5.25(typescript@5.9.3))
- '@dcloudio/uni-cli-shared': 3.0.0-4070620250821001(@vueuse/core@14.1.0(vue@3.5.25(typescript@5.9.3)))(postcss@8.5.6)(rollup@4.53.3)(ts-node@10.9.2(@types/node@24.10.1)(typescript@5.9.3))(vue@3.5.25(typescript@5.9.3))
- '@dcloudio/uni-mp-compiler': 3.0.0-4070620250821001(@vueuse/core@14.1.0(vue@3.5.25(typescript@5.9.3)))(postcss@8.5.6)(rollup@4.53.3)(ts-node@10.9.2(@types/node@24.10.1)(typescript@5.9.3))(vue@3.5.25(typescript@5.9.3))
- '@dcloudio/uni-mp-vite': 3.0.0-4070620250821001(@vueuse/core@14.1.0(vue@3.5.25(typescript@5.9.3)))(postcss@8.5.6)(rollup@4.53.3)(ts-node@10.9.2(@types/node@24.10.1)(typescript@5.9.3))(vue@3.5.25(typescript@5.9.3))
+ '@dcloudio/uni-app': 3.0.0-4070620250821001(@dcloudio/types@3.4.28)(@vueuse/core@14.1.0(vue@3.5.25(typescript@5.9.3)))(postcss@8.5.6)(rollup@4.53.3)(ts-node@10.9.2(@types/node@24.10.3)(typescript@5.9.3))(vue@3.5.25(typescript@5.9.3))
+ '@dcloudio/uni-cli-shared': 3.0.0-4070620250821001(@vueuse/core@14.1.0(vue@3.5.25(typescript@5.9.3)))(postcss@8.5.6)(rollup@4.53.3)(ts-node@10.9.2(@types/node@24.10.3)(typescript@5.9.3))(vue@3.5.25(typescript@5.9.3))
+ '@dcloudio/uni-mp-compiler': 3.0.0-4070620250821001(@vueuse/core@14.1.0(vue@3.5.25(typescript@5.9.3)))(postcss@8.5.6)(rollup@4.53.3)(ts-node@10.9.2(@types/node@24.10.3)(typescript@5.9.3))(vue@3.5.25(typescript@5.9.3))
+ '@dcloudio/uni-mp-vite': 3.0.0-4070620250821001(@vueuse/core@14.1.0(vue@3.5.25(typescript@5.9.3)))(postcss@8.5.6)(rollup@4.53.3)(ts-node@10.9.2(@types/node@24.10.3)(typescript@5.9.3))(vue@3.5.25(typescript@5.9.3))
'@dcloudio/uni-mp-vue': 3.0.0-4070620250821001
- '@dcloudio/uni-mp-weixin': 3.0.0-4070620250821001(@vueuse/core@14.1.0(vue@3.5.25(typescript@5.9.3)))(postcss@8.5.6)(rollup@4.53.3)(ts-node@10.9.2(@types/node@24.10.1)(typescript@5.9.3))(vue@3.5.25(typescript@5.9.3))
+ '@dcloudio/uni-mp-weixin': 3.0.0-4070620250821001(@vueuse/core@14.1.0(vue@3.5.25(typescript@5.9.3)))(postcss@8.5.6)(rollup@4.53.3)(ts-node@10.9.2(@types/node@24.10.3)(typescript@5.9.3))(vue@3.5.25(typescript@5.9.3))
'@dcloudio/uni-shared': 3.0.0-4070620250821001
'@vue/compiler-core': 3.4.21
'@vue/shared': 3.4.21
@@ -10916,12 +10913,12 @@ snapshots:
- utf-8-validate
- vue
- '@dcloudio/uni-mp-compiler@3.0.0-4070620250821001(@vueuse/core@14.1.0(vue@3.5.25(typescript@5.9.3)))(postcss@8.5.6)(rollup@4.53.3)(ts-node@10.9.2(@types/node@24.10.1)(typescript@5.9.3))(vue@3.5.25(typescript@5.9.3))':
+ '@dcloudio/uni-mp-compiler@3.0.0-4070620250821001(@vueuse/core@14.1.0(vue@3.5.25(typescript@5.9.3)))(postcss@8.5.6)(rollup@4.53.3)(ts-node@10.9.2(@types/node@24.10.3)(typescript@5.9.3))(vue@3.5.25(typescript@5.9.3))':
dependencies:
'@babel/generator': 7.28.5
'@babel/parser': 7.28.5
'@babel/types': 7.28.5
- '@dcloudio/uni-cli-shared': 3.0.0-4070620250821001(@vueuse/core@14.1.0(vue@3.5.25(typescript@5.9.3)))(postcss@8.5.6)(rollup@4.53.3)(ts-node@10.9.2(@types/node@24.10.1)(typescript@5.9.3))(vue@3.5.25(typescript@5.9.3))
+ '@dcloudio/uni-cli-shared': 3.0.0-4070620250821001(@vueuse/core@14.1.0(vue@3.5.25(typescript@5.9.3)))(postcss@8.5.6)(rollup@4.53.3)(ts-node@10.9.2(@types/node@24.10.3)(typescript@5.9.3))(vue@3.5.25(typescript@5.9.3))
'@dcloudio/uni-shared': 3.0.0-4070620250821001
'@vue/compiler-core': 3.4.21
'@vue/compiler-dom': 3.4.21
@@ -10936,11 +10933,11 @@ snapshots:
- ts-node
- vue
- '@dcloudio/uni-mp-jd@3.0.0-4070620250821001(@vueuse/core@14.1.0(vue@3.5.25(typescript@5.9.3)))(postcss@8.5.6)(rollup@4.53.3)(ts-node@10.9.2(@types/node@24.10.1)(typescript@5.9.3))(vue@3.5.25(typescript@5.9.3))':
+ '@dcloudio/uni-mp-jd@3.0.0-4070620250821001(@vueuse/core@14.1.0(vue@3.5.25(typescript@5.9.3)))(postcss@8.5.6)(rollup@4.53.3)(ts-node@10.9.2(@types/node@24.10.3)(typescript@5.9.3))(vue@3.5.25(typescript@5.9.3))':
dependencies:
- '@dcloudio/uni-cli-shared': 3.0.0-4070620250821001(@vueuse/core@14.1.0(vue@3.5.25(typescript@5.9.3)))(postcss@8.5.6)(rollup@4.53.3)(ts-node@10.9.2(@types/node@24.10.1)(typescript@5.9.3))(vue@3.5.25(typescript@5.9.3))
- '@dcloudio/uni-mp-compiler': 3.0.0-4070620250821001(@vueuse/core@14.1.0(vue@3.5.25(typescript@5.9.3)))(postcss@8.5.6)(rollup@4.53.3)(ts-node@10.9.2(@types/node@24.10.1)(typescript@5.9.3))(vue@3.5.25(typescript@5.9.3))
- '@dcloudio/uni-mp-vite': 3.0.0-4070620250821001(@vueuse/core@14.1.0(vue@3.5.25(typescript@5.9.3)))(postcss@8.5.6)(rollup@4.53.3)(ts-node@10.9.2(@types/node@24.10.1)(typescript@5.9.3))(vue@3.5.25(typescript@5.9.3))
+ '@dcloudio/uni-cli-shared': 3.0.0-4070620250821001(@vueuse/core@14.1.0(vue@3.5.25(typescript@5.9.3)))(postcss@8.5.6)(rollup@4.53.3)(ts-node@10.9.2(@types/node@24.10.3)(typescript@5.9.3))(vue@3.5.25(typescript@5.9.3))
+ '@dcloudio/uni-mp-compiler': 3.0.0-4070620250821001(@vueuse/core@14.1.0(vue@3.5.25(typescript@5.9.3)))(postcss@8.5.6)(rollup@4.53.3)(ts-node@10.9.2(@types/node@24.10.3)(typescript@5.9.3))(vue@3.5.25(typescript@5.9.3))
+ '@dcloudio/uni-mp-vite': 3.0.0-4070620250821001(@vueuse/core@14.1.0(vue@3.5.25(typescript@5.9.3)))(postcss@8.5.6)(rollup@4.53.3)(ts-node@10.9.2(@types/node@24.10.3)(typescript@5.9.3))(vue@3.5.25(typescript@5.9.3))
'@dcloudio/uni-mp-vue': 3.0.0-4070620250821001
'@dcloudio/uni-shared': 3.0.0-4070620250821001
'@vue/shared': 3.4.21
@@ -10953,13 +10950,13 @@ snapshots:
- ts-node
- vue
- '@dcloudio/uni-mp-kuaishou@3.0.0-4070620250821001(@vueuse/core@14.1.0(vue@3.5.25(typescript@5.9.3)))(postcss@8.5.6)(rollup@4.53.3)(ts-node@10.9.2(@types/node@24.10.1)(typescript@5.9.3))(vue@3.5.25(typescript@5.9.3))':
+ '@dcloudio/uni-mp-kuaishou@3.0.0-4070620250821001(@vueuse/core@14.1.0(vue@3.5.25(typescript@5.9.3)))(postcss@8.5.6)(rollup@4.53.3)(ts-node@10.9.2(@types/node@24.10.3)(typescript@5.9.3))(vue@3.5.25(typescript@5.9.3))':
dependencies:
- '@dcloudio/uni-cli-shared': 3.0.0-4070620250821001(@vueuse/core@14.1.0(vue@3.5.25(typescript@5.9.3)))(postcss@8.5.6)(rollup@4.53.3)(ts-node@10.9.2(@types/node@24.10.1)(typescript@5.9.3))(vue@3.5.25(typescript@5.9.3))
- '@dcloudio/uni-mp-compiler': 3.0.0-4070620250821001(@vueuse/core@14.1.0(vue@3.5.25(typescript@5.9.3)))(postcss@8.5.6)(rollup@4.53.3)(ts-node@10.9.2(@types/node@24.10.1)(typescript@5.9.3))(vue@3.5.25(typescript@5.9.3))
- '@dcloudio/uni-mp-vite': 3.0.0-4070620250821001(@vueuse/core@14.1.0(vue@3.5.25(typescript@5.9.3)))(postcss@8.5.6)(rollup@4.53.3)(ts-node@10.9.2(@types/node@24.10.1)(typescript@5.9.3))(vue@3.5.25(typescript@5.9.3))
+ '@dcloudio/uni-cli-shared': 3.0.0-4070620250821001(@vueuse/core@14.1.0(vue@3.5.25(typescript@5.9.3)))(postcss@8.5.6)(rollup@4.53.3)(ts-node@10.9.2(@types/node@24.10.3)(typescript@5.9.3))(vue@3.5.25(typescript@5.9.3))
+ '@dcloudio/uni-mp-compiler': 3.0.0-4070620250821001(@vueuse/core@14.1.0(vue@3.5.25(typescript@5.9.3)))(postcss@8.5.6)(rollup@4.53.3)(ts-node@10.9.2(@types/node@24.10.3)(typescript@5.9.3))(vue@3.5.25(typescript@5.9.3))
+ '@dcloudio/uni-mp-vite': 3.0.0-4070620250821001(@vueuse/core@14.1.0(vue@3.5.25(typescript@5.9.3)))(postcss@8.5.6)(rollup@4.53.3)(ts-node@10.9.2(@types/node@24.10.3)(typescript@5.9.3))(vue@3.5.25(typescript@5.9.3))
'@dcloudio/uni-mp-vue': 3.0.0-4070620250821001
- '@dcloudio/uni-mp-weixin': 3.0.0-4070620250821001(@vueuse/core@14.1.0(vue@3.5.25(typescript@5.9.3)))(postcss@8.5.6)(rollup@4.53.3)(ts-node@10.9.2(@types/node@24.10.1)(typescript@5.9.3))(vue@3.5.25(typescript@5.9.3))
+ '@dcloudio/uni-mp-weixin': 3.0.0-4070620250821001(@vueuse/core@14.1.0(vue@3.5.25(typescript@5.9.3)))(postcss@8.5.6)(rollup@4.53.3)(ts-node@10.9.2(@types/node@24.10.3)(typescript@5.9.3))(vue@3.5.25(typescript@5.9.3))
'@dcloudio/uni-shared': 3.0.0-4070620250821001
'@vue/compiler-core': 3.4.21
'@vue/shared': 3.4.21
@@ -10975,12 +10972,12 @@ snapshots:
- utf-8-validate
- vue
- '@dcloudio/uni-mp-lark@3.0.0-4070620250821001(@vueuse/core@14.1.0(vue@3.5.25(typescript@5.9.3)))(postcss@8.5.6)(rollup@4.53.3)(ts-node@10.9.2(@types/node@24.10.1)(typescript@5.9.3))(vue@3.5.25(typescript@5.9.3))':
+ '@dcloudio/uni-mp-lark@3.0.0-4070620250821001(@vueuse/core@14.1.0(vue@3.5.25(typescript@5.9.3)))(postcss@8.5.6)(rollup@4.53.3)(ts-node@10.9.2(@types/node@24.10.3)(typescript@5.9.3))(vue@3.5.25(typescript@5.9.3))':
dependencies:
- '@dcloudio/uni-cli-shared': 3.0.0-4070620250821001(@vueuse/core@14.1.0(vue@3.5.25(typescript@5.9.3)))(postcss@8.5.6)(rollup@4.53.3)(ts-node@10.9.2(@types/node@24.10.1)(typescript@5.9.3))(vue@3.5.25(typescript@5.9.3))
- '@dcloudio/uni-mp-compiler': 3.0.0-4070620250821001(@vueuse/core@14.1.0(vue@3.5.25(typescript@5.9.3)))(postcss@8.5.6)(rollup@4.53.3)(ts-node@10.9.2(@types/node@24.10.1)(typescript@5.9.3))(vue@3.5.25(typescript@5.9.3))
- '@dcloudio/uni-mp-toutiao': 3.0.0-4070620250821001(@vueuse/core@14.1.0(vue@3.5.25(typescript@5.9.3)))(postcss@8.5.6)(rollup@4.53.3)(ts-node@10.9.2(@types/node@24.10.1)(typescript@5.9.3))(vue@3.5.25(typescript@5.9.3))
- '@dcloudio/uni-mp-vite': 3.0.0-4070620250821001(@vueuse/core@14.1.0(vue@3.5.25(typescript@5.9.3)))(postcss@8.5.6)(rollup@4.53.3)(ts-node@10.9.2(@types/node@24.10.1)(typescript@5.9.3))(vue@3.5.25(typescript@5.9.3))
+ '@dcloudio/uni-cli-shared': 3.0.0-4070620250821001(@vueuse/core@14.1.0(vue@3.5.25(typescript@5.9.3)))(postcss@8.5.6)(rollup@4.53.3)(ts-node@10.9.2(@types/node@24.10.3)(typescript@5.9.3))(vue@3.5.25(typescript@5.9.3))
+ '@dcloudio/uni-mp-compiler': 3.0.0-4070620250821001(@vueuse/core@14.1.0(vue@3.5.25(typescript@5.9.3)))(postcss@8.5.6)(rollup@4.53.3)(ts-node@10.9.2(@types/node@24.10.3)(typescript@5.9.3))(vue@3.5.25(typescript@5.9.3))
+ '@dcloudio/uni-mp-toutiao': 3.0.0-4070620250821001(@vueuse/core@14.1.0(vue@3.5.25(typescript@5.9.3)))(postcss@8.5.6)(rollup@4.53.3)(ts-node@10.9.2(@types/node@24.10.3)(typescript@5.9.3))(vue@3.5.25(typescript@5.9.3))
+ '@dcloudio/uni-mp-vite': 3.0.0-4070620250821001(@vueuse/core@14.1.0(vue@3.5.25(typescript@5.9.3)))(postcss@8.5.6)(rollup@4.53.3)(ts-node@10.9.2(@types/node@24.10.3)(typescript@5.9.3))(vue@3.5.25(typescript@5.9.3))
'@dcloudio/uni-mp-vue': 3.0.0-4070620250821001
'@dcloudio/uni-shared': 3.0.0-4070620250821001
'@vue/compiler-core': 3.4.21
@@ -10994,10 +10991,10 @@ snapshots:
- ts-node
- vue
- '@dcloudio/uni-mp-qq@3.0.0-4070620250821001(@vueuse/core@14.1.0(vue@3.5.25(typescript@5.9.3)))(postcss@8.5.6)(rollup@4.53.3)(ts-node@10.9.2(@types/node@24.10.1)(typescript@5.9.3))(vue@3.5.25(typescript@5.9.3))':
+ '@dcloudio/uni-mp-qq@3.0.0-4070620250821001(@vueuse/core@14.1.0(vue@3.5.25(typescript@5.9.3)))(postcss@8.5.6)(rollup@4.53.3)(ts-node@10.9.2(@types/node@24.10.3)(typescript@5.9.3))(vue@3.5.25(typescript@5.9.3))':
dependencies:
- '@dcloudio/uni-cli-shared': 3.0.0-4070620250821001(@vueuse/core@14.1.0(vue@3.5.25(typescript@5.9.3)))(postcss@8.5.6)(rollup@4.53.3)(ts-node@10.9.2(@types/node@24.10.1)(typescript@5.9.3))(vue@3.5.25(typescript@5.9.3))
- '@dcloudio/uni-mp-vite': 3.0.0-4070620250821001(@vueuse/core@14.1.0(vue@3.5.25(typescript@5.9.3)))(postcss@8.5.6)(rollup@4.53.3)(ts-node@10.9.2(@types/node@24.10.1)(typescript@5.9.3))(vue@3.5.25(typescript@5.9.3))
+ '@dcloudio/uni-cli-shared': 3.0.0-4070620250821001(@vueuse/core@14.1.0(vue@3.5.25(typescript@5.9.3)))(postcss@8.5.6)(rollup@4.53.3)(ts-node@10.9.2(@types/node@24.10.3)(typescript@5.9.3))(vue@3.5.25(typescript@5.9.3))
+ '@dcloudio/uni-mp-vite': 3.0.0-4070620250821001(@vueuse/core@14.1.0(vue@3.5.25(typescript@5.9.3)))(postcss@8.5.6)(rollup@4.53.3)(ts-node@10.9.2(@types/node@24.10.3)(typescript@5.9.3))(vue@3.5.25(typescript@5.9.3))
'@dcloudio/uni-mp-vue': 3.0.0-4070620250821001
'@dcloudio/uni-shared': 3.0.0-4070620250821001
'@vue/shared': 3.4.21
@@ -11011,11 +11008,11 @@ snapshots:
- ts-node
- vue
- '@dcloudio/uni-mp-toutiao@3.0.0-4070620250821001(@vueuse/core@14.1.0(vue@3.5.25(typescript@5.9.3)))(postcss@8.5.6)(rollup@4.53.3)(ts-node@10.9.2(@types/node@24.10.1)(typescript@5.9.3))(vue@3.5.25(typescript@5.9.3))':
+ '@dcloudio/uni-mp-toutiao@3.0.0-4070620250821001(@vueuse/core@14.1.0(vue@3.5.25(typescript@5.9.3)))(postcss@8.5.6)(rollup@4.53.3)(ts-node@10.9.2(@types/node@24.10.3)(typescript@5.9.3))(vue@3.5.25(typescript@5.9.3))':
dependencies:
- '@dcloudio/uni-cli-shared': 3.0.0-4070620250821001(@vueuse/core@14.1.0(vue@3.5.25(typescript@5.9.3)))(postcss@8.5.6)(rollup@4.53.3)(ts-node@10.9.2(@types/node@24.10.1)(typescript@5.9.3))(vue@3.5.25(typescript@5.9.3))
- '@dcloudio/uni-mp-compiler': 3.0.0-4070620250821001(@vueuse/core@14.1.0(vue@3.5.25(typescript@5.9.3)))(postcss@8.5.6)(rollup@4.53.3)(ts-node@10.9.2(@types/node@24.10.1)(typescript@5.9.3))(vue@3.5.25(typescript@5.9.3))
- '@dcloudio/uni-mp-vite': 3.0.0-4070620250821001(@vueuse/core@14.1.0(vue@3.5.25(typescript@5.9.3)))(postcss@8.5.6)(rollup@4.53.3)(ts-node@10.9.2(@types/node@24.10.1)(typescript@5.9.3))(vue@3.5.25(typescript@5.9.3))
+ '@dcloudio/uni-cli-shared': 3.0.0-4070620250821001(@vueuse/core@14.1.0(vue@3.5.25(typescript@5.9.3)))(postcss@8.5.6)(rollup@4.53.3)(ts-node@10.9.2(@types/node@24.10.3)(typescript@5.9.3))(vue@3.5.25(typescript@5.9.3))
+ '@dcloudio/uni-mp-compiler': 3.0.0-4070620250821001(@vueuse/core@14.1.0(vue@3.5.25(typescript@5.9.3)))(postcss@8.5.6)(rollup@4.53.3)(ts-node@10.9.2(@types/node@24.10.3)(typescript@5.9.3))(vue@3.5.25(typescript@5.9.3))
+ '@dcloudio/uni-mp-vite': 3.0.0-4070620250821001(@vueuse/core@14.1.0(vue@3.5.25(typescript@5.9.3)))(postcss@8.5.6)(rollup@4.53.3)(ts-node@10.9.2(@types/node@24.10.3)(typescript@5.9.3))(vue@3.5.25(typescript@5.9.3))
'@dcloudio/uni-mp-vue': 3.0.0-4070620250821001
'@dcloudio/uni-shared': 3.0.0-4070620250821001
'@vue/compiler-core': 3.4.21
@@ -11029,11 +11026,11 @@ snapshots:
- ts-node
- vue
- '@dcloudio/uni-mp-vite@3.0.0-4070620250821001(@vueuse/core@14.1.0(vue@3.5.25(typescript@5.9.3)))(postcss@8.5.6)(rollup@4.53.3)(ts-node@10.9.2(@types/node@24.10.1)(typescript@5.9.3))(vue@3.5.25(typescript@5.9.3))':
+ '@dcloudio/uni-mp-vite@3.0.0-4070620250821001(@vueuse/core@14.1.0(vue@3.5.25(typescript@5.9.3)))(postcss@8.5.6)(rollup@4.53.3)(ts-node@10.9.2(@types/node@24.10.3)(typescript@5.9.3))(vue@3.5.25(typescript@5.9.3))':
dependencies:
- '@dcloudio/uni-cli-shared': 3.0.0-4070620250821001(@vueuse/core@14.1.0(vue@3.5.25(typescript@5.9.3)))(postcss@8.5.6)(rollup@4.53.3)(ts-node@10.9.2(@types/node@24.10.1)(typescript@5.9.3))(vue@3.5.25(typescript@5.9.3))
+ '@dcloudio/uni-cli-shared': 3.0.0-4070620250821001(@vueuse/core@14.1.0(vue@3.5.25(typescript@5.9.3)))(postcss@8.5.6)(rollup@4.53.3)(ts-node@10.9.2(@types/node@24.10.3)(typescript@5.9.3))(vue@3.5.25(typescript@5.9.3))
'@dcloudio/uni-i18n': 3.0.0-4070620250821001
- '@dcloudio/uni-mp-compiler': 3.0.0-4070620250821001(@vueuse/core@14.1.0(vue@3.5.25(typescript@5.9.3)))(postcss@8.5.6)(rollup@4.53.3)(ts-node@10.9.2(@types/node@24.10.1)(typescript@5.9.3))(vue@3.5.25(typescript@5.9.3))
+ '@dcloudio/uni-mp-compiler': 3.0.0-4070620250821001(@vueuse/core@14.1.0(vue@3.5.25(typescript@5.9.3)))(postcss@8.5.6)(rollup@4.53.3)(ts-node@10.9.2(@types/node@24.10.3)(typescript@5.9.3))(vue@3.5.25(typescript@5.9.3))
'@dcloudio/uni-mp-vue': 3.0.0-4070620250821001
'@dcloudio/uni-shared': 3.0.0-4070620250821001
'@vue/compiler-dom': 3.4.21
@@ -11054,10 +11051,10 @@ snapshots:
'@dcloudio/uni-shared': 3.0.0-4070620250821001
'@vue/shared': 3.4.21
- '@dcloudio/uni-mp-weixin@3.0.0-4070620250821001(@vueuse/core@14.1.0(vue@3.5.25(typescript@5.9.3)))(postcss@8.5.6)(rollup@4.53.3)(ts-node@10.9.2(@types/node@24.10.1)(typescript@5.9.3))(vue@3.5.25(typescript@5.9.3))':
+ '@dcloudio/uni-mp-weixin@3.0.0-4070620250821001(@vueuse/core@14.1.0(vue@3.5.25(typescript@5.9.3)))(postcss@8.5.6)(rollup@4.53.3)(ts-node@10.9.2(@types/node@24.10.3)(typescript@5.9.3))(vue@3.5.25(typescript@5.9.3))':
dependencies:
- '@dcloudio/uni-cli-shared': 3.0.0-4070620250821001(@vueuse/core@14.1.0(vue@3.5.25(typescript@5.9.3)))(postcss@8.5.6)(rollup@4.53.3)(ts-node@10.9.2(@types/node@24.10.1)(typescript@5.9.3))(vue@3.5.25(typescript@5.9.3))
- '@dcloudio/uni-mp-vite': 3.0.0-4070620250821001(@vueuse/core@14.1.0(vue@3.5.25(typescript@5.9.3)))(postcss@8.5.6)(rollup@4.53.3)(ts-node@10.9.2(@types/node@24.10.1)(typescript@5.9.3))(vue@3.5.25(typescript@5.9.3))
+ '@dcloudio/uni-cli-shared': 3.0.0-4070620250821001(@vueuse/core@14.1.0(vue@3.5.25(typescript@5.9.3)))(postcss@8.5.6)(rollup@4.53.3)(ts-node@10.9.2(@types/node@24.10.3)(typescript@5.9.3))(vue@3.5.25(typescript@5.9.3))
+ '@dcloudio/uni-mp-vite': 3.0.0-4070620250821001(@vueuse/core@14.1.0(vue@3.5.25(typescript@5.9.3)))(postcss@8.5.6)(rollup@4.53.3)(ts-node@10.9.2(@types/node@24.10.3)(typescript@5.9.3))(vue@3.5.25(typescript@5.9.3))
'@dcloudio/uni-mp-vue': 3.0.0-4070620250821001
'@dcloudio/uni-shared': 3.0.0-4070620250821001
'@vue/shared': 3.4.21
@@ -11083,9 +11080,9 @@ snapshots:
parse-css-font: 4.0.0
postcss: 8.5.6
- '@dcloudio/uni-push@3.0.0-4070620250821001(@vueuse/core@14.1.0(vue@3.5.25(typescript@5.9.3)))(postcss@8.5.6)(rollup@4.53.3)(ts-node@10.9.2(@types/node@24.10.1)(typescript@5.9.3))(vue@3.5.25(typescript@5.9.3))':
+ '@dcloudio/uni-push@3.0.0-4070620250821001(@vueuse/core@14.1.0(vue@3.5.25(typescript@5.9.3)))(postcss@8.5.6)(rollup@4.53.3)(ts-node@10.9.2(@types/node@24.10.3)(typescript@5.9.3))(vue@3.5.25(typescript@5.9.3))':
dependencies:
- '@dcloudio/uni-cli-shared': 3.0.0-4070620250821001(@vueuse/core@14.1.0(vue@3.5.25(typescript@5.9.3)))(postcss@8.5.6)(rollup@4.53.3)(ts-node@10.9.2(@types/node@24.10.1)(typescript@5.9.3))(vue@3.5.25(typescript@5.9.3))
+ '@dcloudio/uni-cli-shared': 3.0.0-4070620250821001(@vueuse/core@14.1.0(vue@3.5.25(typescript@5.9.3)))(postcss@8.5.6)(rollup@4.53.3)(ts-node@10.9.2(@types/node@24.10.3)(typescript@5.9.3))(vue@3.5.25(typescript@5.9.3))
transitivePeerDependencies:
- '@nuxt/kit'
- '@vueuse/core'
@@ -11095,10 +11092,10 @@ snapshots:
- ts-node
- vue
- '@dcloudio/uni-quickapp-webview@3.0.0-4070620250821001(@vueuse/core@14.1.0(vue@3.5.25(typescript@5.9.3)))(postcss@8.5.6)(rollup@4.53.3)(ts-node@10.9.2(@types/node@24.10.1)(typescript@5.9.3))(vue@3.5.25(typescript@5.9.3))':
+ '@dcloudio/uni-quickapp-webview@3.0.0-4070620250821001(@vueuse/core@14.1.0(vue@3.5.25(typescript@5.9.3)))(postcss@8.5.6)(rollup@4.53.3)(ts-node@10.9.2(@types/node@24.10.3)(typescript@5.9.3))(vue@3.5.25(typescript@5.9.3))':
dependencies:
- '@dcloudio/uni-cli-shared': 3.0.0-4070620250821001(@vueuse/core@14.1.0(vue@3.5.25(typescript@5.9.3)))(postcss@8.5.6)(rollup@4.53.3)(ts-node@10.9.2(@types/node@24.10.1)(typescript@5.9.3))(vue@3.5.25(typescript@5.9.3))
- '@dcloudio/uni-mp-vite': 3.0.0-4070620250821001(@vueuse/core@14.1.0(vue@3.5.25(typescript@5.9.3)))(postcss@8.5.6)(rollup@4.53.3)(ts-node@10.9.2(@types/node@24.10.1)(typescript@5.9.3))(vue@3.5.25(typescript@5.9.3))
+ '@dcloudio/uni-cli-shared': 3.0.0-4070620250821001(@vueuse/core@14.1.0(vue@3.5.25(typescript@5.9.3)))(postcss@8.5.6)(rollup@4.53.3)(ts-node@10.9.2(@types/node@24.10.3)(typescript@5.9.3))(vue@3.5.25(typescript@5.9.3))
+ '@dcloudio/uni-mp-vite': 3.0.0-4070620250821001(@vueuse/core@14.1.0(vue@3.5.25(typescript@5.9.3)))(postcss@8.5.6)(rollup@4.53.3)(ts-node@10.9.2(@types/node@24.10.3)(typescript@5.9.3))(vue@3.5.25(typescript@5.9.3))
'@dcloudio/uni-mp-vue': 3.0.0-4070620250821001
'@dcloudio/uni-shared': 3.0.0-4070620250821001
'@vue/shared': 3.4.21
@@ -11117,9 +11114,9 @@ snapshots:
'@dcloudio/uni-stacktracey@3.0.0-4070620250821001': {}
- '@dcloudio/uni-stat@3.0.0-4070620250821001(@vueuse/core@14.1.0(vue@3.5.25(typescript@5.9.3)))(postcss@8.5.6)(rollup@4.53.3)(ts-node@10.9.2(@types/node@24.10.1)(typescript@5.9.3))(vue@3.5.25(typescript@5.9.3))':
+ '@dcloudio/uni-stat@3.0.0-4070620250821001(@vueuse/core@14.1.0(vue@3.5.25(typescript@5.9.3)))(postcss@8.5.6)(rollup@4.53.3)(ts-node@10.9.2(@types/node@24.10.3)(typescript@5.9.3))(vue@3.5.25(typescript@5.9.3))':
dependencies:
- '@dcloudio/uni-cli-shared': 3.0.0-4070620250821001(@vueuse/core@14.1.0(vue@3.5.25(typescript@5.9.3)))(postcss@8.5.6)(rollup@4.53.3)(ts-node@10.9.2(@types/node@24.10.1)(typescript@5.9.3))(vue@3.5.25(typescript@5.9.3))
+ '@dcloudio/uni-cli-shared': 3.0.0-4070620250821001(@vueuse/core@14.1.0(vue@3.5.25(typescript@5.9.3)))(postcss@8.5.6)(rollup@4.53.3)(ts-node@10.9.2(@types/node@24.10.3)(typescript@5.9.3))(vue@3.5.25(typescript@5.9.3))
'@dcloudio/uni-shared': 3.0.0-4070620250821001
debug: 4.4.3(supports-color@5.5.0)
transitivePeerDependencies:
@@ -11133,17 +11130,17 @@ snapshots:
'@dcloudio/uni-ui@1.5.11': {}
- '@dcloudio/vite-plugin-uni@3.0.0-4070620250821001(@vueuse/core@14.1.0(vue@3.5.25(typescript@5.9.3)))(postcss@8.5.6)(rollup@4.53.3)(ts-node@10.9.2(@types/node@24.10.1)(typescript@5.9.3))(vite@6.3.7(@types/node@24.10.1)(jiti@2.6.1)(sass@1.94.2)(terser@5.44.1)(yaml@2.8.1))(vue@3.5.25(typescript@5.9.3))':
+ '@dcloudio/vite-plugin-uni@3.0.0-4070620250821001(@vueuse/core@14.1.0(vue@3.5.25(typescript@5.9.3)))(postcss@8.5.6)(rollup@4.53.3)(ts-node@10.9.2(@types/node@24.10.3)(typescript@5.9.3))(vite@6.3.7(@types/node@24.10.3)(jiti@2.6.1)(sass@1.95.1)(terser@5.44.1)(yaml@2.8.2))(vue@3.5.25(typescript@5.9.3))':
dependencies:
'@babel/core': 7.28.5
'@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.28.5)
'@babel/plugin-transform-typescript': 7.28.5(@babel/core@7.28.5)
- '@dcloudio/uni-cli-shared': 3.0.0-4070620250821001(@vueuse/core@14.1.0(vue@3.5.25(typescript@5.9.3)))(postcss@8.5.6)(rollup@4.53.3)(ts-node@10.9.2(@types/node@24.10.1)(typescript@5.9.3))(vue@3.5.25(typescript@5.9.3))
+ '@dcloudio/uni-cli-shared': 3.0.0-4070620250821001(@vueuse/core@14.1.0(vue@3.5.25(typescript@5.9.3)))(postcss@8.5.6)(rollup@4.53.3)(ts-node@10.9.2(@types/node@24.10.3)(typescript@5.9.3))(vue@3.5.25(typescript@5.9.3))
'@dcloudio/uni-shared': 3.0.0-4070620250821001
'@rollup/pluginutils': 5.3.0(rollup@4.53.3)
- '@vitejs/plugin-legacy': 5.3.2(terser@5.44.1)(vite@6.3.7(@types/node@24.10.1)(jiti@2.6.1)(sass@1.94.2)(terser@5.44.1)(yaml@2.8.1))
- '@vitejs/plugin-vue': 5.1.0(vite@6.3.7(@types/node@24.10.1)(jiti@2.6.1)(sass@1.94.2)(terser@5.44.1)(yaml@2.8.1))(vue@3.5.25(typescript@5.9.3))
- '@vitejs/plugin-vue-jsx': 3.1.0(vite@6.3.7(@types/node@24.10.1)(jiti@2.6.1)(sass@1.94.2)(terser@5.44.1)(yaml@2.8.1))(vue@3.5.25(typescript@5.9.3))
+ '@vitejs/plugin-legacy': 5.3.2(terser@5.44.1)(vite@6.3.7(@types/node@24.10.3)(jiti@2.6.1)(sass@1.95.1)(terser@5.44.1)(yaml@2.8.2))
+ '@vitejs/plugin-vue': 5.1.0(vite@6.3.7(@types/node@24.10.3)(jiti@2.6.1)(sass@1.95.1)(terser@5.44.1)(yaml@2.8.2))(vue@3.5.25(typescript@5.9.3))
+ '@vitejs/plugin-vue-jsx': 3.1.0(vite@6.3.7(@types/node@24.10.3)(jiti@2.6.1)(sass@1.95.1)(terser@5.44.1)(yaml@2.8.2))(vue@3.5.25(typescript@5.9.3))
'@vue/compiler-core': 3.4.21
'@vue/compiler-dom': 3.4.21
'@vue/compiler-sfc': 3.4.21
@@ -11151,7 +11148,7 @@ snapshots:
cac: 6.7.9
debug: 4.4.3(supports-color@5.5.0)
estree-walker: 2.0.2
- express: 4.21.2
+ express: 4.22.1
fast-glob: 3.3.3
fs-extra: 10.1.0
hash-sum: 2.0.0
@@ -11160,7 +11157,7 @@ snapshots:
picocolors: 1.1.1
terser: 5.44.1
unplugin-auto-import: 19.1.0(@vueuse/core@14.1.0(vue@3.5.25(typescript@5.9.3)))
- vite: 6.3.7(@types/node@24.10.1)(jiti@2.6.1)(sass@1.94.2)(terser@5.44.1)(yaml@2.8.1)
+ vite: 6.3.7(@types/node@24.10.3)(jiti@2.6.1)(sass@1.95.1)(terser@5.44.1)(yaml@2.8.2)
transitivePeerDependencies:
- '@nuxt/kit'
- '@vueuse/core'
@@ -11172,10 +11169,10 @@ snapshots:
'@docsearch/css@3.8.2': {}
- '@docsearch/js@3.8.2(@algolia/client-search@5.45.0)(search-insights@2.17.3)':
+ '@docsearch/js@3.8.2(@algolia/client-search@5.46.0)(search-insights@2.17.3)':
dependencies:
- '@docsearch/react': 3.8.2(@algolia/client-search@5.45.0)(search-insights@2.17.3)
- preact: 10.27.2
+ '@docsearch/react': 3.8.2(@algolia/client-search@5.46.0)(search-insights@2.17.3)
+ preact: 10.28.0
transitivePeerDependencies:
- '@algolia/client-search'
- '@types/react'
@@ -11183,12 +11180,12 @@ snapshots:
- react-dom
- search-insights
- '@docsearch/react@3.8.2(@algolia/client-search@5.45.0)(search-insights@2.17.3)':
+ '@docsearch/react@3.8.2(@algolia/client-search@5.46.0)(search-insights@2.17.3)':
dependencies:
- '@algolia/autocomplete-core': 1.17.7(@algolia/client-search@5.45.0)(algoliasearch@5.45.0)(search-insights@2.17.3)
- '@algolia/autocomplete-preset-algolia': 1.17.7(@algolia/client-search@5.45.0)(algoliasearch@5.45.0)
+ '@algolia/autocomplete-core': 1.17.7(@algolia/client-search@5.46.0)(algoliasearch@5.46.0)(search-insights@2.17.3)
+ '@algolia/autocomplete-preset-algolia': 1.17.7(@algolia/client-search@5.46.0)(algoliasearch@5.46.0)
'@docsearch/css': 3.8.2
- algoliasearch: 5.45.0
+ algoliasearch: 5.46.0
optionalDependencies:
search-insights: 2.17.3
transitivePeerDependencies:
@@ -11592,28 +11589,28 @@ snapshots:
html-to-image: 1.11.13
lodash: 4.17.21
- '@gerrit0/mini-shiki@3.17.0':
+ '@gerrit0/mini-shiki@3.19.0':
dependencies:
- '@shikijs/engine-oniguruma': 3.17.0
- '@shikijs/langs': 3.17.0
- '@shikijs/themes': 3.17.0
- '@shikijs/types': 3.17.0
+ '@shikijs/engine-oniguruma': 3.19.0
+ '@shikijs/langs': 3.19.0
+ '@shikijs/themes': 3.19.0
+ '@shikijs/types': 3.19.0
'@shikijs/vscode-textmate': 10.0.2
'@hutson/parse-repository-url@3.0.2': {}
- '@iconify-json/simple-icons@1.2.60':
+ '@iconify-json/simple-icons@1.2.62':
dependencies:
'@iconify/types': 2.0.0
'@iconify/types@2.0.0': {}
- '@inquirer/external-editor@1.0.3(@types/node@24.10.1)':
+ '@inquirer/external-editor@1.0.3(@types/node@24.10.3)':
dependencies:
chardet: 2.1.1
iconv-lite: 0.7.0
optionalDependencies:
- '@types/node': 24.10.1
+ '@types/node': 24.10.3
'@intlify/core-base@11.2.2':
dependencies:
@@ -11692,27 +11689,27 @@ snapshots:
'@jest/console@27.5.1':
dependencies:
'@jest/types': 27.5.1
- '@types/node': 24.10.1
+ '@types/node': 24.10.3
chalk: 4.1.2
jest-message-util: 27.5.1
jest-util: 27.5.1
slash: 3.0.0
- '@jest/core@27.5.1(ts-node@10.9.2(@types/node@24.10.1)(typescript@5.9.3))':
+ '@jest/core@27.5.1(ts-node@10.9.2(@types/node@24.10.3)(typescript@5.9.3))':
dependencies:
'@jest/console': 27.5.1
'@jest/reporters': 27.5.1
'@jest/test-result': 27.5.1
'@jest/transform': 27.5.1
'@jest/types': 27.5.1
- '@types/node': 24.10.1
+ '@types/node': 24.10.3
ansi-escapes: 4.3.2
chalk: 4.1.2
emittery: 0.8.1
exit: 0.1.2
graceful-fs: 4.2.11
jest-changed-files: 27.5.1
- jest-config: 27.5.1(ts-node@10.9.2(@types/node@24.10.1)(typescript@5.9.3))
+ jest-config: 27.5.1(ts-node@10.9.2(@types/node@24.10.3)(typescript@5.9.3))
jest-haste-map: 27.5.1
jest-message-util: 27.5.1
jest-regex-util: 27.5.1
@@ -11739,14 +11736,14 @@ snapshots:
dependencies:
'@jest/fake-timers': 27.5.1
'@jest/types': 27.5.1
- '@types/node': 24.10.1
+ '@types/node': 24.10.3
jest-mock: 27.5.1
'@jest/fake-timers@27.5.1':
dependencies:
'@jest/types': 27.5.1
'@sinonjs/fake-timers': 8.1.0
- '@types/node': 24.10.1
+ '@types/node': 24.10.3
jest-message-util: 27.5.1
jest-mock: 27.5.1
jest-util: 27.5.1
@@ -11764,7 +11761,7 @@ snapshots:
'@jest/test-result': 27.5.1
'@jest/transform': 27.5.1
'@jest/types': 27.5.1
- '@types/node': 24.10.1
+ '@types/node': 24.10.3
chalk: 4.1.2
collect-v8-coverage: 1.0.3
exit: 0.1.2
@@ -11837,7 +11834,7 @@ snapshots:
dependencies:
'@types/istanbul-lib-coverage': 2.0.6
'@types/istanbul-reports': 3.0.4
- '@types/node': 24.10.1
+ '@types/node': 24.10.3
'@types/yargs': 16.0.11
chalk: 4.1.2
@@ -12185,7 +12182,7 @@ snapshots:
'@jsonjoy.com/codegen': 1.0.0(tslib@2.8.1)
tslib: 2.8.1
- '@lerna/create@8.2.4(@types/node@24.10.1)(encoding@0.1.13)(typescript@5.9.3)':
+ '@lerna/create@8.2.4(@types/node@24.10.3)(encoding@0.1.13)(typescript@5.9.3)':
dependencies:
'@npmcli/arborist': 7.5.4
'@npmcli/package-json': 5.2.0
@@ -12214,7 +12211,7 @@ snapshots:
has-unicode: 2.0.1
ini: 1.3.8
init-package-json: 6.0.3
- inquirer: 8.2.7(@types/node@24.10.1)
+ inquirer: 8.2.7(@types/node@24.10.3)
is-ci: 3.0.1
is-stream: 2.0.0
js-yaml: 4.1.0
@@ -12267,23 +12264,23 @@ snapshots:
- supports-color
- typescript
- '@microsoft/api-extractor-model@7.32.1(@types/node@24.10.1)':
+ '@microsoft/api-extractor-model@7.32.2(@types/node@24.10.3)':
dependencies:
'@microsoft/tsdoc': 0.16.0
'@microsoft/tsdoc-config': 0.18.0
- '@rushstack/node-core-library': 5.19.0(@types/node@24.10.1)
+ '@rushstack/node-core-library': 5.19.1(@types/node@24.10.3)
transitivePeerDependencies:
- '@types/node'
- '@microsoft/api-extractor@7.55.1(@types/node@24.10.1)':
+ '@microsoft/api-extractor@7.55.2(@types/node@24.10.3)':
dependencies:
- '@microsoft/api-extractor-model': 7.32.1(@types/node@24.10.1)
+ '@microsoft/api-extractor-model': 7.32.2(@types/node@24.10.3)
'@microsoft/tsdoc': 0.16.0
'@microsoft/tsdoc-config': 0.18.0
- '@rushstack/node-core-library': 5.19.0(@types/node@24.10.1)
+ '@rushstack/node-core-library': 5.19.1(@types/node@24.10.3)
'@rushstack/rig-package': 0.6.0
- '@rushstack/terminal': 0.19.4(@types/node@24.10.1)
- '@rushstack/ts-command-line': 5.1.4(@types/node@24.10.1)
+ '@rushstack/terminal': 0.19.5(@types/node@24.10.3)
+ '@rushstack/ts-command-line': 5.1.5(@types/node@24.10.3)
diff: 8.0.2
lodash: 4.17.21
minimatch: 10.0.3
@@ -12773,7 +12770,7 @@ snapshots:
'@rollup/rollup-win32-x64-msvc@4.53.3':
optional: true
- '@rushstack/node-core-library@5.19.0(@types/node@24.10.1)':
+ '@rushstack/node-core-library@5.19.1(@types/node@24.10.3)':
dependencies:
ajv: 8.13.0
ajv-draft-04: 1.0.0(ajv@8.13.0)
@@ -12784,28 +12781,28 @@ snapshots:
resolve: 1.22.11
semver: 7.5.4
optionalDependencies:
- '@types/node': 24.10.1
+ '@types/node': 24.10.3
- '@rushstack/problem-matcher@0.1.1(@types/node@24.10.1)':
+ '@rushstack/problem-matcher@0.1.1(@types/node@24.10.3)':
optionalDependencies:
- '@types/node': 24.10.1
+ '@types/node': 24.10.3
'@rushstack/rig-package@0.6.0':
dependencies:
resolve: 1.22.11
strip-json-comments: 3.1.1
- '@rushstack/terminal@0.19.4(@types/node@24.10.1)':
+ '@rushstack/terminal@0.19.5(@types/node@24.10.3)':
dependencies:
- '@rushstack/node-core-library': 5.19.0(@types/node@24.10.1)
- '@rushstack/problem-matcher': 0.1.1(@types/node@24.10.1)
+ '@rushstack/node-core-library': 5.19.1(@types/node@24.10.3)
+ '@rushstack/problem-matcher': 0.1.1(@types/node@24.10.3)
supports-color: 8.1.1
optionalDependencies:
- '@types/node': 24.10.1
+ '@types/node': 24.10.3
- '@rushstack/ts-command-line@5.1.4(@types/node@24.10.1)':
+ '@rushstack/ts-command-line@5.1.5(@types/node@24.10.3)':
dependencies:
- '@rushstack/terminal': 0.19.4(@types/node@24.10.1)
+ '@rushstack/terminal': 0.19.5(@types/node@24.10.3)
'@types/argparse': 1.0.38
argparse: 1.0.10
string-argv: 0.3.2
@@ -12832,26 +12829,26 @@ snapshots:
'@shikijs/types': 2.5.0
'@shikijs/vscode-textmate': 10.0.2
- '@shikijs/engine-oniguruma@3.17.0':
+ '@shikijs/engine-oniguruma@3.19.0':
dependencies:
- '@shikijs/types': 3.17.0
+ '@shikijs/types': 3.19.0
'@shikijs/vscode-textmate': 10.0.2
'@shikijs/langs@2.5.0':
dependencies:
'@shikijs/types': 2.5.0
- '@shikijs/langs@3.17.0':
+ '@shikijs/langs@3.19.0':
dependencies:
- '@shikijs/types': 3.17.0
+ '@shikijs/types': 3.19.0
'@shikijs/themes@2.5.0':
dependencies:
'@shikijs/types': 2.5.0
- '@shikijs/themes@3.17.0':
+ '@shikijs/themes@3.19.0':
dependencies:
- '@shikijs/types': 3.17.0
+ '@shikijs/types': 3.19.0
'@shikijs/transformers@2.5.0':
dependencies:
@@ -12863,7 +12860,7 @@ snapshots:
'@shikijs/vscode-textmate': 10.0.2
'@types/hast': 3.0.4
- '@shikijs/types@3.17.0':
+ '@shikijs/types@3.19.0':
dependencies:
'@shikijs/vscode-textmate': 10.0.2
'@types/hast': 3.0.4
@@ -12966,7 +12963,7 @@ snapshots:
'@types/body-parser@1.19.6':
dependencies:
'@types/connect': 3.4.38
- '@types/node': 24.10.1
+ '@types/node': 24.10.3
'@types/chai@5.2.3':
dependencies:
@@ -12975,11 +12972,11 @@ snapshots:
'@types/connect@3.4.38':
dependencies:
- '@types/node': 24.10.1
+ '@types/node': 24.10.3
'@types/conventional-commits-parser@5.0.2':
dependencies:
- '@types/node': 24.10.1
+ '@types/node': 24.10.3
'@types/crypto-js@4.2.2': {}
@@ -12989,16 +12986,16 @@ snapshots:
'@types/formidable@3.4.6':
dependencies:
- '@types/node': 24.10.1
+ '@types/node': 24.10.3
'@types/fs-extra@11.0.4':
dependencies:
'@types/jsonfile': 6.1.4
- '@types/node': 24.10.1
+ '@types/node': 24.10.3
'@types/graceful-fs@4.1.9':
dependencies:
- '@types/node': 24.10.1
+ '@types/node': 24.10.3
'@types/hast@3.0.4':
dependencies:
@@ -13020,7 +13017,7 @@ snapshots:
'@types/jsonfile@6.1.4':
dependencies:
- '@types/node': 24.10.1
+ '@types/node': 24.10.3
'@types/linkify-it@5.0.0': {}
@@ -13049,7 +13046,7 @@ snapshots:
'@types/mockjs@1.0.10': {}
- '@types/node@24.10.1':
+ '@types/node@24.10.3':
dependencies:
undici-types: 7.16.0
@@ -13061,24 +13058,24 @@ snapshots:
'@types/prompts@2.4.9':
dependencies:
- '@types/node': 24.10.1
+ '@types/node': 24.10.3
kleur: 3.0.3
'@types/qrcode@1.5.6':
dependencies:
- '@types/node': 24.10.1
+ '@types/node': 24.10.3
'@types/resolve@1.20.2': {}
'@types/send@0.17.6':
dependencies:
'@types/mime': 1.3.5
- '@types/node': 24.10.1
+ '@types/node': 24.10.3
'@types/serve-static@1.15.10':
dependencies:
'@types/http-errors': 2.0.5
- '@types/node': 24.10.1
+ '@types/node': 24.10.3
'@types/send': 0.17.6
'@types/sortablejs@1.15.9': {}
@@ -13119,90 +13116,90 @@ snapshots:
dependencies:
vue: 3.5.25(typescript@5.9.3)
- '@vitejs/plugin-basic-ssl@2.1.0(vite@6.3.7(@types/node@24.10.1)(jiti@2.6.1)(sass@1.94.2)(terser@5.44.1)(yaml@2.8.1))':
+ '@vitejs/plugin-basic-ssl@2.1.0(vite@6.3.7(@types/node@24.10.3)(jiti@2.6.1)(sass@1.95.1)(terser@5.44.1)(yaml@2.8.2))':
dependencies:
- vite: 6.3.7(@types/node@24.10.1)(jiti@2.6.1)(sass@1.94.2)(terser@5.44.1)(yaml@2.8.1)
+ vite: 6.3.7(@types/node@24.10.3)(jiti@2.6.1)(sass@1.95.1)(terser@5.44.1)(yaml@2.8.2)
- '@vitejs/plugin-legacy@5.3.2(terser@5.44.1)(vite@6.3.7(@types/node@24.10.1)(jiti@2.6.1)(sass@1.94.2)(terser@5.44.1)(yaml@2.8.1))':
+ '@vitejs/plugin-legacy@5.3.2(terser@5.44.1)(vite@6.3.7(@types/node@24.10.3)(jiti@2.6.1)(sass@1.95.1)(terser@5.44.1)(yaml@2.8.2))':
dependencies:
'@babel/core': 7.28.5
'@babel/preset-env': 7.28.5(@babel/core@7.28.5)
- browserslist: 4.28.0
- browserslist-to-esbuild: 2.1.1(browserslist@4.28.0)
+ browserslist: 4.28.1
+ browserslist-to-esbuild: 2.1.1(browserslist@4.28.1)
core-js: 3.47.0
magic-string: 0.30.21
regenerator-runtime: 0.14.1
systemjs: 6.15.1
terser: 5.44.1
- vite: 6.3.7(@types/node@24.10.1)(jiti@2.6.1)(sass@1.94.2)(terser@5.44.1)(yaml@2.8.1)
+ vite: 6.3.7(@types/node@24.10.3)(jiti@2.6.1)(sass@1.95.1)(terser@5.44.1)(yaml@2.8.2)
transitivePeerDependencies:
- supports-color
- '@vitejs/plugin-legacy@6.1.1(terser@5.44.1)(vite@6.3.7(@types/node@24.10.1)(jiti@2.6.1)(sass@1.94.2)(terser@5.44.1)(yaml@2.8.1))':
+ '@vitejs/plugin-legacy@6.1.1(terser@5.44.1)(vite@6.3.7(@types/node@24.10.3)(jiti@2.6.1)(sass@1.95.1)(terser@5.44.1)(yaml@2.8.2))':
dependencies:
'@babel/core': 7.28.5
'@babel/preset-env': 7.28.5(@babel/core@7.28.5)
- browserslist: 4.28.0
- browserslist-to-esbuild: 2.1.1(browserslist@4.28.0)
+ browserslist: 4.28.1
+ browserslist-to-esbuild: 2.1.1(browserslist@4.28.1)
core-js: 3.47.0
magic-string: 0.30.21
regenerator-runtime: 0.14.1
systemjs: 6.15.1
terser: 5.44.1
- vite: 6.3.7(@types/node@24.10.1)(jiti@2.6.1)(sass@1.94.2)(terser@5.44.1)(yaml@2.8.1)
+ vite: 6.3.7(@types/node@24.10.3)(jiti@2.6.1)(sass@1.95.1)(terser@5.44.1)(yaml@2.8.2)
transitivePeerDependencies:
- supports-color
- '@vitejs/plugin-vue-jsx@3.1.0(vite@6.3.7(@types/node@24.10.1)(jiti@2.6.1)(sass@1.94.2)(terser@5.44.1)(yaml@2.8.1))(vue@3.5.25(typescript@5.9.3))':
+ '@vitejs/plugin-vue-jsx@3.1.0(vite@6.3.7(@types/node@24.10.3)(jiti@2.6.1)(sass@1.95.1)(terser@5.44.1)(yaml@2.8.2))(vue@3.5.25(typescript@5.9.3))':
dependencies:
'@babel/core': 7.28.5
'@babel/plugin-transform-typescript': 7.28.5(@babel/core@7.28.5)
'@vue/babel-plugin-jsx': 1.5.0(@babel/core@7.28.5)
- vite: 6.3.7(@types/node@24.10.1)(jiti@2.6.1)(sass@1.94.2)(terser@5.44.1)(yaml@2.8.1)
+ vite: 6.3.7(@types/node@24.10.3)(jiti@2.6.1)(sass@1.95.1)(terser@5.44.1)(yaml@2.8.2)
vue: 3.5.25(typescript@5.9.3)
transitivePeerDependencies:
- supports-color
- '@vitejs/plugin-vue-jsx@4.2.0(vite@6.3.7(@types/node@24.10.1)(jiti@2.6.1)(sass@1.94.2)(terser@5.44.1)(yaml@2.8.1))(vue@3.5.25(typescript@5.9.3))':
+ '@vitejs/plugin-vue-jsx@4.2.0(vite@6.3.7(@types/node@24.10.3)(jiti@2.6.1)(sass@1.95.1)(terser@5.44.1)(yaml@2.8.2))(vue@3.5.25(typescript@5.9.3))':
dependencies:
'@babel/core': 7.28.5
'@babel/plugin-transform-typescript': 7.28.5(@babel/core@7.28.5)
'@rolldown/pluginutils': 1.0.0-beta.9
'@vue/babel-plugin-jsx': 1.5.0(@babel/core@7.28.5)
- vite: 6.3.7(@types/node@24.10.1)(jiti@2.6.1)(sass@1.94.2)(terser@5.44.1)(yaml@2.8.1)
+ vite: 6.3.7(@types/node@24.10.3)(jiti@2.6.1)(sass@1.95.1)(terser@5.44.1)(yaml@2.8.2)
vue: 3.5.25(typescript@5.9.3)
transitivePeerDependencies:
- supports-color
- '@vitejs/plugin-vue@5.1.0(vite@6.3.7(@types/node@24.10.1)(jiti@2.6.1)(sass@1.94.2)(terser@5.44.1)(yaml@2.8.1))(vue@3.5.25(typescript@5.9.3))':
+ '@vitejs/plugin-vue@5.1.0(vite@6.3.7(@types/node@24.10.3)(jiti@2.6.1)(sass@1.95.1)(terser@5.44.1)(yaml@2.8.2))(vue@3.5.25(typescript@5.9.3))':
dependencies:
- vite: 6.3.7(@types/node@24.10.1)(jiti@2.6.1)(sass@1.94.2)(terser@5.44.1)(yaml@2.8.1)
+ vite: 6.3.7(@types/node@24.10.3)(jiti@2.6.1)(sass@1.95.1)(terser@5.44.1)(yaml@2.8.2)
vue: 3.5.25(typescript@5.9.3)
- '@vitejs/plugin-vue@5.2.4(vite@5.4.21(@types/node@24.10.1)(sass@1.94.2)(terser@5.44.1))(vue@3.5.25(typescript@5.9.3))':
+ '@vitejs/plugin-vue@5.2.4(vite@5.4.21(@types/node@24.10.3)(sass@1.95.1)(terser@5.44.1))(vue@3.5.25(typescript@5.9.3))':
dependencies:
- vite: 5.4.21(@types/node@24.10.1)(sass@1.94.2)(terser@5.44.1)
+ vite: 5.4.21(@types/node@24.10.3)(sass@1.95.1)(terser@5.44.1)
vue: 3.5.25(typescript@5.9.3)
- '@vitejs/plugin-vue@5.2.4(vite@6.3.7(@types/node@24.10.1)(jiti@2.6.1)(sass@1.94.2)(terser@5.44.1)(yaml@2.8.1))(vue@3.5.25(typescript@5.9.3))':
+ '@vitejs/plugin-vue@5.2.4(vite@6.3.7(@types/node@24.10.3)(jiti@2.6.1)(sass@1.95.1)(terser@5.44.1)(yaml@2.8.2))(vue@3.5.25(typescript@5.9.3))':
dependencies:
- vite: 6.3.7(@types/node@24.10.1)(jiti@2.6.1)(sass@1.94.2)(terser@5.44.1)(yaml@2.8.1)
+ vite: 6.3.7(@types/node@24.10.3)(jiti@2.6.1)(sass@1.95.1)(terser@5.44.1)(yaml@2.8.2)
vue: 3.5.25(typescript@5.9.3)
- '@vitepress-demo-preview/component@2.3.2(vitepress@1.6.4(@algolia/client-search@5.45.0)(@types/node@24.10.1)(async-validator@4.2.5)(axios@1.13.2)(postcss@8.5.6)(qrcode@1.5.4)(sass@1.94.2)(search-insights@2.17.3)(sortablejs@1.15.6)(terser@5.44.1)(typescript@5.9.3))(vue@3.5.25(typescript@5.9.3))':
+ '@vitepress-demo-preview/component@2.3.2(vitepress@1.6.4(@algolia/client-search@5.46.0)(@types/node@24.10.3)(async-validator@4.2.5)(axios@1.13.2)(postcss@8.5.6)(qrcode@1.5.4)(sass@1.95.1)(search-insights@2.17.3)(sortablejs@1.15.6)(terser@5.44.1)(typescript@5.9.3))(vue@3.5.25(typescript@5.9.3))':
dependencies:
- vitepress: 1.6.4(@algolia/client-search@5.45.0)(@types/node@24.10.1)(async-validator@4.2.5)(axios@1.13.2)(postcss@8.5.6)(qrcode@1.5.4)(sass@1.94.2)(search-insights@2.17.3)(sortablejs@1.15.6)(terser@5.44.1)(typescript@5.9.3)
+ vitepress: 1.6.4(@algolia/client-search@5.46.0)(@types/node@24.10.3)(async-validator@4.2.5)(axios@1.13.2)(postcss@8.5.6)(qrcode@1.5.4)(sass@1.95.1)(search-insights@2.17.3)(sortablejs@1.15.6)(terser@5.44.1)(typescript@5.9.3)
vue: 3.5.25(typescript@5.9.3)
- '@vitepress-demo-preview/plugin@1.4.1(markdown-it-container@3.0.0)(vitepress@1.6.4(@algolia/client-search@5.45.0)(@types/node@24.10.1)(async-validator@4.2.5)(axios@1.13.2)(postcss@8.5.6)(qrcode@1.5.4)(sass@1.94.2)(search-insights@2.17.3)(sortablejs@1.15.6)(terser@5.44.1)(typescript@5.9.3))(vue@3.5.25(typescript@5.9.3))':
+ '@vitepress-demo-preview/plugin@1.4.1(markdown-it-container@3.0.0)(vitepress@1.6.4(@algolia/client-search@5.46.0)(@types/node@24.10.3)(async-validator@4.2.5)(axios@1.13.2)(postcss@8.5.6)(qrcode@1.5.4)(sass@1.95.1)(search-insights@2.17.3)(sortablejs@1.15.6)(terser@5.44.1)(typescript@5.9.3))(vue@3.5.25(typescript@5.9.3))':
dependencies:
'@flypeng/tool': 5.7.5
markdown-it: 14.1.0
markdown-it-container: 3.0.0
- vitepress: 1.6.4(@algolia/client-search@5.45.0)(@types/node@24.10.1)(async-validator@4.2.5)(axios@1.13.2)(postcss@8.5.6)(qrcode@1.5.4)(sass@1.94.2)(search-insights@2.17.3)(sortablejs@1.15.6)(terser@5.44.1)(typescript@5.9.3)
+ vitepress: 1.6.4(@algolia/client-search@5.46.0)(@types/node@24.10.3)(async-validator@4.2.5)(axios@1.13.2)(postcss@8.5.6)(qrcode@1.5.4)(sass@1.95.1)(search-insights@2.17.3)(sortablejs@1.15.6)(terser@5.44.1)(typescript@5.9.3)
vue: 3.5.25(typescript@5.9.3)
- '@vitest/coverage-v8@3.2.4(vitest@3.2.4(@types/node@24.10.1)(jiti@2.6.1)(jsdom@26.1.0)(sass@1.94.2)(terser@5.44.1)(yaml@2.8.1))':
+ '@vitest/coverage-v8@3.2.4(vitest@3.2.4(@types/node@24.10.3)(jiti@2.6.1)(jsdom@26.1.0)(sass@1.95.1)(terser@5.44.1)(yaml@2.8.2))':
dependencies:
'@ampproject/remapping': 2.3.0
'@bcoe/v8-coverage': 1.0.2
@@ -13217,7 +13214,7 @@ snapshots:
std-env: 3.10.0
test-exclude: 7.0.1
tinyrainbow: 2.0.0
- vitest: 3.2.4(@types/node@24.10.1)(jiti@2.6.1)(jsdom@26.1.0)(sass@1.94.2)(terser@5.44.1)(yaml@2.8.1)
+ vitest: 3.2.4(@types/node@24.10.3)(jiti@2.6.1)(jsdom@26.1.0)(sass@1.95.1)(terser@5.44.1)(yaml@2.8.2)
transitivePeerDependencies:
- supports-color
@@ -13229,13 +13226,13 @@ snapshots:
chai: 5.3.3
tinyrainbow: 2.0.0
- '@vitest/mocker@3.2.4(vite@6.3.7(@types/node@24.10.1)(jiti@2.6.1)(sass@1.94.2)(terser@5.44.1)(yaml@2.8.1))':
+ '@vitest/mocker@3.2.4(vite@6.3.7(@types/node@24.10.3)(jiti@2.6.1)(sass@1.95.1)(terser@5.44.1)(yaml@2.8.2))':
dependencies:
'@vitest/spy': 3.2.4
estree-walker: 3.0.3
magic-string: 0.30.21
optionalDependencies:
- vite: 6.3.7(@types/node@24.10.1)(jiti@2.6.1)(sass@1.94.2)(terser@5.44.1)(yaml@2.8.1)
+ vite: 6.3.7(@types/node@24.10.3)(jiti@2.6.1)(sass@1.95.1)(terser@5.44.1)(yaml@2.8.2)
'@vitest/pretty-format@3.2.4':
dependencies:
@@ -13267,13 +13264,13 @@ snapshots:
dependencies:
'@volar/source-map': 2.4.15
- '@volar/language-core@2.4.26':
+ '@volar/language-core@2.4.27':
dependencies:
- '@volar/source-map': 2.4.26
+ '@volar/source-map': 2.4.27
'@volar/source-map@2.4.15': {}
- '@volar/source-map@2.4.26': {}
+ '@volar/source-map@2.4.27': {}
'@volar/typescript@2.4.15':
dependencies:
@@ -13281,21 +13278,17 @@ snapshots:
path-browserify: 1.0.1
vscode-uri: 3.1.0
- '@volar/typescript@2.4.26':
+ '@volar/typescript@2.4.27':
dependencies:
- '@volar/language-core': 2.4.26
+ '@volar/language-core': 2.4.27
path-browserify: 1.0.1
vscode-uri: 3.1.0
- '@vtj/base@0.12.3':
- dependencies:
- '@types/lodash-es': 4.17.12
- '@types/numeral': 2.0.5
- reflect-metadata: 0.2.2
+ '@vtj/base@0.12.4': {}
'@vtj/example-ui@0.2.0': {}
- '@vtj/icons@0.13.34(vue@3.5.25(typescript@5.9.3))':
+ '@vtj/icons@0.13.35(vue@3.5.25(typescript@5.9.3))':
dependencies:
'@element-plus/icons-vue': 2.3.2(vue@3.5.25(typescript@5.9.3))
transitivePeerDependencies:
@@ -13303,18 +13296,18 @@ snapshots:
'@vtj/plugin-ckeditor@0.2.5(vue@3.5.25(typescript@5.9.3))':
dependencies:
- '@vtj/icons': 0.13.34(vue@3.5.25(typescript@5.9.3))
- '@vtj/ui': 0.13.34(vue@3.5.25(typescript@5.9.3))
- '@vtj/utils': 0.13.34
+ '@vtj/icons': 0.13.35(vue@3.5.25(typescript@5.9.3))
+ '@vtj/ui': 0.13.35(vue@3.5.25(typescript@5.9.3))
+ '@vtj/utils': 0.13.35
transitivePeerDependencies:
- '@vue/composition-api'
- vue
- '@vtj/ui@0.13.34(vue@3.5.25(typescript@5.9.3))':
+ '@vtj/ui@0.13.35(vue@3.5.25(typescript@5.9.3))':
dependencies:
- '@vtj/icons': 0.13.34(vue@3.5.25(typescript@5.9.3))
- '@vtj/utils': 0.13.34
- '@vueuse/core': 13.9.0(vue@3.5.25(typescript@5.9.3))
+ '@vtj/icons': 0.13.35(vue@3.5.25(typescript@5.9.3))
+ '@vtj/utils': 0.13.35
+ '@vueuse/core': 14.1.0(vue@3.5.25(typescript@5.9.3))
element-plus: 2.11.9(vue@3.5.25(typescript@5.9.3))
sortablejs: 1.15.6
vxe-table: 4.6.25(vue@3.5.25(typescript@5.9.3))
@@ -13323,9 +13316,9 @@ snapshots:
- '@vue/composition-api'
- vue
- '@vtj/utils@0.13.34':
+ '@vtj/utils@0.13.35':
dependencies:
- '@vtj/base': 0.12.3
+ '@vtj/base': 0.12.4
'@vue/babel-helper-vue-transform-on@1.5.0': {}
@@ -13429,14 +13422,14 @@ snapshots:
dependencies:
'@vue/devtools-kit': 7.7.9
- '@vue/devtools-core@8.0.5(vite@6.3.7(@types/node@24.10.1)(jiti@2.6.1)(sass@1.94.2)(terser@5.44.1)(yaml@2.8.1))(vue@3.5.25(typescript@5.9.3))':
+ '@vue/devtools-core@8.0.5(vite@6.3.7(@types/node@24.10.3)(jiti@2.6.1)(sass@1.95.1)(terser@5.44.1)(yaml@2.8.2))(vue@3.5.25(typescript@5.9.3))':
dependencies:
'@vue/devtools-kit': 8.0.5
'@vue/devtools-shared': 8.0.5
mitt: 3.0.1
nanoid: 5.1.6
pathe: 2.0.3
- vite-hot-client: 2.1.0(vite@6.3.7(@types/node@24.10.1)(jiti@2.6.1)(sass@1.94.2)(terser@5.44.1)(yaml@2.8.1))
+ vite-hot-client: 2.1.0(vite@6.3.7(@types/node@24.10.3)(jiti@2.6.1)(sass@1.95.1)(terser@5.44.1)(yaml@2.8.2))
vue: 3.5.25(typescript@5.9.3)
transitivePeerDependencies:
- vite
@@ -13444,7 +13437,7 @@ snapshots:
'@vue/devtools-kit@7.7.9':
dependencies:
'@vue/devtools-shared': 7.7.9
- birpc: 2.8.0
+ birpc: 2.9.0
hookable: 5.5.3
mitt: 3.0.1
perfect-debounce: 1.0.0
@@ -13454,7 +13447,7 @@ snapshots:
'@vue/devtools-kit@8.0.5':
dependencies:
'@vue/devtools-shared': 8.0.5
- birpc: 2.8.0
+ birpc: 2.9.0
hookable: 5.5.3
mitt: 3.0.1
perfect-debounce: 2.0.0
@@ -13471,7 +13464,7 @@ snapshots:
'@vue/language-core@2.2.0(typescript@5.9.3)':
dependencies:
- '@volar/language-core': 2.4.26
+ '@volar/language-core': 2.4.27
'@vue/compiler-dom': 3.5.25
'@vue/compiler-vue2': 2.7.16
'@vue/shared': 3.5.25
@@ -13541,13 +13534,6 @@ snapshots:
transitivePeerDependencies:
- typescript
- '@vueuse/core@13.9.0(vue@3.5.25(typescript@5.9.3))':
- dependencies:
- '@types/web-bluetooth': 0.0.21
- '@vueuse/metadata': 13.9.0
- '@vueuse/shared': 13.9.0(vue@3.5.25(typescript@5.9.3))
- vue: 3.5.25(typescript@5.9.3)
-
'@vueuse/core@14.1.0(vue@3.5.25(typescript@5.9.3))':
dependencies:
'@types/web-bluetooth': 0.0.21
@@ -13581,8 +13567,6 @@ snapshots:
'@vueuse/metadata@12.8.2': {}
- '@vueuse/metadata@13.9.0': {}
-
'@vueuse/metadata@14.1.0': {}
'@vueuse/metadata@9.13.0': {}
@@ -13593,10 +13577,6 @@ snapshots:
transitivePeerDependencies:
- typescript
- '@vueuse/shared@13.9.0(vue@3.5.25(typescript@5.9.3))':
- dependencies:
- vue: 3.5.25(typescript@5.9.3)
-
'@vueuse/shared@14.1.0(vue@3.5.25(typescript@5.9.3))':
dependencies:
vue: 3.5.25(typescript@5.9.3)
@@ -13696,22 +13676,22 @@ snapshots:
json-schema-traverse: 1.0.0
require-from-string: 2.0.2
- algoliasearch@5.45.0:
- dependencies:
- '@algolia/abtesting': 1.11.0
- '@algolia/client-abtesting': 5.45.0
- '@algolia/client-analytics': 5.45.0
- '@algolia/client-common': 5.45.0
- '@algolia/client-insights': 5.45.0
- '@algolia/client-personalization': 5.45.0
- '@algolia/client-query-suggestions': 5.45.0
- '@algolia/client-search': 5.45.0
- '@algolia/ingestion': 1.45.0
- '@algolia/monitoring': 1.45.0
- '@algolia/recommend': 5.45.0
- '@algolia/requester-browser-xhr': 5.45.0
- '@algolia/requester-fetch': 5.45.0
- '@algolia/requester-node-http': 5.45.0
+ algoliasearch@5.46.0:
+ dependencies:
+ '@algolia/abtesting': 1.12.0
+ '@algolia/client-abtesting': 5.46.0
+ '@algolia/client-analytics': 5.46.0
+ '@algolia/client-common': 5.46.0
+ '@algolia/client-insights': 5.46.0
+ '@algolia/client-personalization': 5.46.0
+ '@algolia/client-query-suggestions': 5.46.0
+ '@algolia/client-search': 5.46.0
+ '@algolia/ingestion': 1.46.0
+ '@algolia/monitoring': 1.46.0
+ '@algolia/recommend': 5.46.0
+ '@algolia/requester-browser-xhr': 5.46.0
+ '@algolia/requester-fetch': 5.46.0
+ '@algolia/requester-node-http': 5.46.0
alien-signals@0.4.14: {}
@@ -13830,8 +13810,8 @@ snapshots:
autoprefixer@10.4.22(postcss@8.5.6):
dependencies:
- browserslist: 4.28.0
- caniuse-lite: 1.0.30001757
+ browserslist: 4.28.1
+ caniuse-lite: 1.0.30001760
fraction.js: 5.3.4
normalize-range: 0.1.2
picocolors: 1.1.1
@@ -13938,7 +13918,7 @@ snapshots:
base64url@3.0.1: {}
- baseline-browser-mapping@2.8.32: {}
+ baseline-browser-mapping@2.9.6: {}
bcrypt-pbkdf@1.0.2:
dependencies:
@@ -13955,7 +13935,7 @@ snapshots:
binary-extensions@2.3.0: {}
- birpc@2.8.0: {}
+ birpc@2.9.0: {}
bl@4.1.0:
dependencies:
@@ -13969,18 +13949,18 @@ snapshots:
bn.js@5.2.2: {}
- body-parser@1.20.3:
+ body-parser@1.20.4:
dependencies:
bytes: 3.1.2
content-type: 1.0.5
debug: 2.6.9
depd: 2.0.0
destroy: 1.2.0
- http-errors: 2.0.0
+ http-errors: 2.0.1
iconv-lite: 0.4.24
on-finished: 2.4.1
- qs: 6.13.0
- raw-body: 2.5.2
+ qs: 6.14.0
+ raw-body: 2.5.3
type-is: 1.6.18
unpipe: 1.0.0
transitivePeerDependencies:
@@ -14053,18 +14033,18 @@ snapshots:
dependencies:
pako: 1.0.11
- browserslist-to-esbuild@2.1.1(browserslist@4.28.0):
+ browserslist-to-esbuild@2.1.1(browserslist@4.28.1):
dependencies:
- browserslist: 4.28.0
+ browserslist: 4.28.1
meow: 13.2.0
- browserslist@4.28.0:
+ browserslist@4.28.1:
dependencies:
- baseline-browser-mapping: 2.8.32
- caniuse-lite: 1.0.30001757
- electron-to-chromium: 1.5.262
+ baseline-browser-mapping: 2.9.6
+ caniuse-lite: 1.0.30001760
+ electron-to-chromium: 1.5.267
node-releases: 2.0.27
- update-browserslist-db: 1.1.4(browserslist@4.28.0)
+ update-browserslist-db: 1.2.2(browserslist@4.28.1)
bser@2.1.1:
dependencies:
@@ -14144,12 +14124,12 @@ snapshots:
caniuse-api@3.0.0:
dependencies:
- browserslist: 4.28.0
- caniuse-lite: 1.0.30001757
+ browserslist: 4.28.1
+ caniuse-lite: 1.0.30001760
lodash.memoize: 4.1.2
lodash.uniq: 4.5.0
- caniuse-lite@1.0.30001757: {}
+ caniuse-lite@1.0.30001760: {}
ccount@2.0.1: {}
@@ -14410,9 +14390,9 @@ snapshots:
convert-source-map@2.0.0: {}
- cookie-signature@1.0.6: {}
+ cookie-signature@1.0.7: {}
- cookie@0.7.1: {}
+ cookie@0.7.2: {}
copy-anything@4.0.5:
dependencies:
@@ -14420,15 +14400,15 @@ snapshots:
core-js-compat@3.47.0:
dependencies:
- browserslist: 4.28.0
+ browserslist: 4.28.1
core-js@3.47.0: {}
core-util-is@1.0.3: {}
- cosmiconfig-typescript-loader@6.2.0(@types/node@24.10.1)(cosmiconfig@9.0.0(typescript@5.9.3))(typescript@5.9.3):
+ cosmiconfig-typescript-loader@6.2.0(@types/node@24.10.3)(cosmiconfig@9.0.0(typescript@5.9.3))(typescript@5.9.3):
dependencies:
- '@types/node': 24.10.1
+ '@types/node': 24.10.3
cosmiconfig: 9.0.0(typescript@5.9.3)
jiti: 2.6.1
typescript: 5.9.3
@@ -14445,7 +14425,7 @@ snapshots:
cpu-features@0.0.10:
dependencies:
buildcheck: 0.0.7
- nan: 2.23.1
+ nan: 2.24.0
optional: true
create-ecdh@4.0.4:
@@ -14543,7 +14523,7 @@ snapshots:
cssnano-preset-default@7.0.10(postcss@8.5.6):
dependencies:
- browserslist: 4.28.0
+ browserslist: 4.28.1
css-declaration-sorter: 7.3.0(postcss@8.5.6)
cssnano-utils: 5.0.1(postcss@8.5.6)
postcss: 8.5.6
@@ -14804,7 +14784,7 @@ snapshots:
dependencies:
jake: 10.9.4
- electron-to-chromium@1.5.262: {}
+ electron-to-chromium@1.5.267: {}
element-plus@2.11.9(vue@3.5.25(typescript@5.9.3)):
dependencies:
@@ -14826,6 +14806,26 @@ snapshots:
transitivePeerDependencies:
- '@vue/composition-api'
+ element-plus@2.12.0(vue@3.5.25(typescript@5.9.3)):
+ dependencies:
+ '@ctrl/tinycolor': 3.6.1
+ '@element-plus/icons-vue': 2.3.2(vue@3.5.25(typescript@5.9.3))
+ '@floating-ui/dom': 1.7.4
+ '@popperjs/core': '@sxzz/popperjs-es@2.11.7'
+ '@types/lodash': 4.17.21
+ '@types/lodash-es': 4.17.12
+ '@vueuse/core': 9.13.0(vue@3.5.25(typescript@5.9.3))
+ async-validator: 4.2.5
+ dayjs: 1.11.19
+ lodash: 4.17.21
+ lodash-es: 4.17.21
+ lodash-unified: 1.0.3(@types/lodash-es@4.17.12)(lodash-es@4.17.21)(lodash@4.17.21)
+ memoize-one: 6.0.0
+ normalize-wheel-es: 1.2.0
+ vue: 3.5.25(typescript@5.9.3)
+ transitivePeerDependencies:
+ - '@vue/composition-api'
+
elliptic@6.6.1:
dependencies:
bn.js: 4.12.2
@@ -15100,7 +15100,7 @@ snapshots:
exit@0.1.2: {}
- expect-type@1.2.2: {}
+ expect-type@1.3.0: {}
expect@27.5.1:
dependencies:
@@ -15111,36 +15111,36 @@ snapshots:
exponential-backoff@3.1.3: {}
- express@4.21.2:
+ express@4.22.1:
dependencies:
accepts: 1.3.8
array-flatten: 1.1.1
- body-parser: 1.20.3
+ body-parser: 1.20.4
content-disposition: 0.5.4
content-type: 1.0.5
- cookie: 0.7.1
- cookie-signature: 1.0.6
+ cookie: 0.7.2
+ cookie-signature: 1.0.7
debug: 2.6.9
depd: 2.0.0
encodeurl: 2.0.0
escape-html: 1.0.3
etag: 1.8.1
- finalhandler: 1.3.1
+ finalhandler: 1.3.2
fresh: 0.5.2
- http-errors: 2.0.0
+ http-errors: 2.0.1
merge-descriptors: 1.0.3
methods: 1.1.2
on-finished: 2.4.1
parseurl: 1.3.3
path-to-regexp: 0.1.12
proxy-addr: 2.0.7
- qs: 6.13.0
+ qs: 6.14.0
range-parser: 1.2.1
safe-buffer: 5.2.1
- send: 0.19.0
+ send: 0.19.1
serve-static: 1.16.2
setprototypeof: 1.2.0
- statuses: 2.0.1
+ statuses: 2.0.2
type-is: 1.6.18
utils-merge: 1.0.1
vary: 1.1.2
@@ -15191,14 +15191,14 @@ snapshots:
dependencies:
to-regex-range: 5.0.1
- finalhandler@1.3.1:
+ finalhandler@1.3.2:
dependencies:
debug: 2.6.9
encodeurl: 2.0.0
escape-html: 1.0.3
on-finished: 2.4.1
parseurl: 1.3.3
- statuses: 2.0.1
+ statuses: 2.0.2
unpipe: 1.0.0
transitivePeerDependencies:
- supports-color
@@ -15575,6 +15575,14 @@ snapshots:
statuses: 2.0.1
toidentifier: 1.0.1
+ http-errors@2.0.1:
+ dependencies:
+ depd: 2.0.0
+ inherits: 2.0.4
+ setprototypeof: 1.2.0
+ statuses: 2.0.2
+ toidentifier: 1.0.1
+
http-proxy-agent@4.0.1:
dependencies:
'@tootallnate/once': 1.1.2
@@ -15690,9 +15698,9 @@ snapshots:
transitivePeerDependencies:
- bluebird
- inquirer@8.2.7(@types/node@24.10.1):
+ inquirer@8.2.7(@types/node@24.10.3):
dependencies:
- '@inquirer/external-editor': 1.0.3(@types/node@24.10.1)
+ '@inquirer/external-editor': 1.0.3(@types/node@24.10.3)
ansi-escapes: 4.3.2
chalk: 4.1.2
cli-cursor: 3.1.0
@@ -15915,7 +15923,7 @@ snapshots:
'@jest/environment': 27.5.1
'@jest/test-result': 27.5.1
'@jest/types': 27.5.1
- '@types/node': 24.10.1
+ '@types/node': 24.10.3
chalk: 4.1.2
co: 4.6.0
dedent: 0.7.0
@@ -15934,16 +15942,16 @@ snapshots:
transitivePeerDependencies:
- supports-color
- jest-cli@27.5.1(ts-node@10.9.2(@types/node@24.10.1)(typescript@5.9.3)):
+ jest-cli@27.5.1(ts-node@10.9.2(@types/node@24.10.3)(typescript@5.9.3)):
dependencies:
- '@jest/core': 27.5.1(ts-node@10.9.2(@types/node@24.10.1)(typescript@5.9.3))
+ '@jest/core': 27.5.1(ts-node@10.9.2(@types/node@24.10.3)(typescript@5.9.3))
'@jest/test-result': 27.5.1
'@jest/types': 27.5.1
chalk: 4.1.2
exit: 0.1.2
graceful-fs: 4.2.11
import-local: 3.2.0
- jest-config: 27.5.1(ts-node@10.9.2(@types/node@24.10.1)(typescript@5.9.3))
+ jest-config: 27.5.1(ts-node@10.9.2(@types/node@24.10.3)(typescript@5.9.3))
jest-util: 27.5.1
jest-validate: 27.5.1
prompts: 2.4.2
@@ -15955,7 +15963,7 @@ snapshots:
- ts-node
- utf-8-validate
- jest-config@27.5.1(ts-node@10.9.2(@types/node@24.10.1)(typescript@5.9.3)):
+ jest-config@27.5.1(ts-node@10.9.2(@types/node@24.10.3)(typescript@5.9.3)):
dependencies:
'@babel/core': 7.28.5
'@jest/test-sequencer': 27.5.1
@@ -15982,7 +15990,7 @@ snapshots:
slash: 3.0.0
strip-json-comments: 3.1.1
optionalDependencies:
- ts-node: 10.9.2(@types/node@24.10.1)(typescript@5.9.3)
+ ts-node: 10.9.2(@types/node@24.10.3)(typescript@5.9.3)
transitivePeerDependencies:
- bufferutil
- canvas
@@ -16020,7 +16028,7 @@ snapshots:
'@jest/environment': 27.5.1
'@jest/fake-timers': 27.5.1
'@jest/types': 27.5.1
- '@types/node': 24.10.1
+ '@types/node': 24.10.3
jest-mock: 27.5.1
jest-util: 27.5.1
jsdom: 16.7.0
@@ -16035,7 +16043,7 @@ snapshots:
'@jest/environment': 27.5.1
'@jest/fake-timers': 27.5.1
'@jest/types': 27.5.1
- '@types/node': 24.10.1
+ '@types/node': 24.10.3
jest-mock: 27.5.1
jest-util: 27.5.1
@@ -16047,7 +16055,7 @@ snapshots:
dependencies:
'@jest/types': 27.5.1
'@types/graceful-fs': 4.1.9
- '@types/node': 24.10.1
+ '@types/node': 24.10.3
anymatch: 3.1.3
fb-watchman: 2.0.2
graceful-fs: 4.2.11
@@ -16066,7 +16074,7 @@ snapshots:
'@jest/source-map': 27.5.1
'@jest/test-result': 27.5.1
'@jest/types': 27.5.1
- '@types/node': 24.10.1
+ '@types/node': 24.10.3
chalk: 4.1.2
co: 4.6.0
expect: 27.5.1
@@ -16109,7 +16117,7 @@ snapshots:
jest-mock@27.5.1:
dependencies:
'@jest/types': 27.5.1
- '@types/node': 24.10.1
+ '@types/node': 24.10.3
jest-pnp-resolver@1.2.3(jest-resolve@27.5.1):
optionalDependencies:
@@ -16145,7 +16153,7 @@ snapshots:
'@jest/test-result': 27.5.1
'@jest/transform': 27.5.1
'@jest/types': 27.5.1
- '@types/node': 24.10.1
+ '@types/node': 24.10.3
chalk: 4.1.2
emittery: 0.8.1
graceful-fs: 4.2.11
@@ -16196,7 +16204,7 @@ snapshots:
jest-serializer@27.5.1:
dependencies:
- '@types/node': 24.10.1
+ '@types/node': 24.10.3
graceful-fs: 4.2.11
jest-snapshot@27.5.1:
@@ -16229,7 +16237,7 @@ snapshots:
jest-util@27.5.1:
dependencies:
'@jest/types': 27.5.1
- '@types/node': 24.10.1
+ '@types/node': 24.10.3
chalk: 4.1.2
ci-info: 3.9.0
graceful-fs: 4.2.11
@@ -16248,7 +16256,7 @@ snapshots:
dependencies:
'@jest/test-result': 27.5.1
'@jest/types': 27.5.1
- '@types/node': 24.10.1
+ '@types/node': 24.10.3
ansi-escapes: 4.3.2
chalk: 4.1.2
jest-util: 27.5.1
@@ -16256,15 +16264,15 @@ snapshots:
jest-worker@27.5.1:
dependencies:
- '@types/node': 24.10.1
+ '@types/node': 24.10.3
merge-stream: 2.0.0
supports-color: 8.1.1
- jest@27.0.4(ts-node@10.9.2(@types/node@24.10.1)(typescript@5.9.3)):
+ jest@27.0.4(ts-node@10.9.2(@types/node@24.10.3)(typescript@5.9.3)):
dependencies:
- '@jest/core': 27.5.1(ts-node@10.9.2(@types/node@24.10.1)(typescript@5.9.3))
+ '@jest/core': 27.5.1(ts-node@10.9.2(@types/node@24.10.3)(typescript@5.9.3))
import-local: 3.2.0
- jest-cli: 27.5.1(ts-node@10.9.2(@types/node@24.10.1)(typescript@5.9.3))
+ jest-cli: 27.5.1(ts-node@10.9.2(@types/node@24.10.3)(typescript@5.9.3))
transitivePeerDependencies:
- bufferutil
- canvas
@@ -16330,7 +16338,7 @@ snapshots:
http-proxy-agent: 4.0.1
https-proxy-agent: 5.0.1
is-potential-custom-element-name: 1.0.1
- nwsapi: 2.2.22
+ nwsapi: 2.2.23
parse5: 6.0.1
saxes: 5.0.1
symbol-tree: 3.2.4
@@ -16357,7 +16365,7 @@ snapshots:
http-proxy-agent: 7.0.2
https-proxy-agent: 7.0.6
is-potential-custom-element-name: 1.0.1
- nwsapi: 2.2.22
+ nwsapi: 2.2.23
parse5: 7.3.0
rrweb-cssom: 0.8.0
saxes: 6.0.0
@@ -16421,9 +16429,9 @@ snapshots:
dependencies:
invert-kv: 3.0.1
- lerna@8.2.4(@types/node@24.10.1)(encoding@0.1.13):
+ lerna@8.2.4(@types/node@24.10.3)(encoding@0.1.13):
dependencies:
- '@lerna/create': 8.2.4(@types/node@24.10.1)(encoding@0.1.13)(typescript@5.9.3)
+ '@lerna/create': 8.2.4(@types/node@24.10.3)(encoding@0.1.13)(typescript@5.9.3)
'@npmcli/arborist': 7.5.4
'@npmcli/package-json': 5.2.0
'@npmcli/run-script': 8.1.0
@@ -16455,7 +16463,7 @@ snapshots:
import-local: 3.1.0
ini: 1.3.8
init-package-json: 6.0.3
- inquirer: 8.2.7(@types/node@24.10.1)
+ inquirer: 8.2.7(@types/node@24.10.3)
is-ci: 3.0.1
is-stream: 2.0.0
jest-diff: 29.7.0
@@ -16642,7 +16650,7 @@ snapshots:
log-symbols@4.1.0:
dependencies:
- chalk: 4.1.0
+ chalk: 4.1.2
is-unicode-supported: 0.1.0
loose-envify@1.4.0:
@@ -16762,7 +16770,7 @@ snapshots:
media-typer@0.3.0: {}
- memfs@4.51.0:
+ memfs@4.51.1:
dependencies:
'@jsonjoy.com/json-pack': 1.21.0(tslib@2.8.1)
'@jsonjoy.com/util': 1.9.0(tslib@2.8.1)
@@ -16926,7 +16934,7 @@ snapshots:
minipass@7.1.2: {}
- miniprogram-api-typings@4.1.0: {}
+ miniprogram-api-typings@4.1.1: {}
minisearch@7.2.0: {}
@@ -16943,7 +16951,7 @@ snapshots:
mkdirp@1.0.4: {}
- mkdist@1.6.0(sass@1.94.2)(typescript@5.9.3)(vue-tsc@2.2.12(typescript@5.9.3)):
+ mkdist@1.6.0(sass@1.95.1)(typescript@5.9.3)(vue-tsc@2.2.12(typescript@5.9.3)):
dependencies:
autoprefixer: 10.4.22(postcss@8.5.6)
citty: 0.1.6
@@ -16959,7 +16967,7 @@ snapshots:
semver: 7.7.3
tinyglobby: 0.2.15
optionalDependencies:
- sass: 1.94.2
+ sass: 1.95.1
typescript: 5.9.3
vue-tsc: 2.2.12(typescript@5.9.3)
@@ -17000,7 +17008,7 @@ snapshots:
mute-stream@1.0.0: {}
- nan@2.23.1:
+ nan@2.24.0:
optional: true
nanoid@3.3.11: {}
@@ -17180,7 +17188,7 @@ snapshots:
numeral@2.0.6: {}
- nwsapi@2.2.22: {}
+ nwsapi@2.2.23: {}
nx@20.8.3:
dependencies:
@@ -17215,7 +17223,7 @@ snapshots:
tmp: 0.2.5
tsconfig-paths: 4.2.0
tslib: 2.8.1
- yaml: 2.8.1
+ yaml: 2.8.2
yargs: 17.7.2
yargs-parser: 21.1.1
optionalDependencies:
@@ -17269,7 +17277,7 @@ snapshots:
oniguruma-to-es@3.1.1:
dependencies:
emoji-regex-xs: 1.0.0
- regex: 6.0.1
+ regex: 6.1.0
regex-recursion: 6.0.2
open@10.2.0:
@@ -17588,7 +17596,7 @@ snapshots:
postcss-colormin@7.0.5(postcss@8.5.6):
dependencies:
- browserslist: 4.28.0
+ browserslist: 4.28.1
caniuse-api: 3.0.0
colord: 2.9.3
postcss: 8.5.6
@@ -17596,7 +17604,7 @@ snapshots:
postcss-convert-values@7.0.8(postcss@8.5.6):
dependencies:
- browserslist: 4.28.0
+ browserslist: 4.28.1
postcss: 8.5.6
postcss-value-parser: 4.2.0
@@ -17624,13 +17632,13 @@ snapshots:
read-cache: 1.0.0
resolve: 1.22.11
- postcss-load-config@3.1.4(postcss@8.5.6)(ts-node@10.9.2(@types/node@24.10.1)(typescript@5.9.3)):
+ postcss-load-config@3.1.4(postcss@8.5.6)(ts-node@10.9.2(@types/node@24.10.3)(typescript@5.9.3)):
dependencies:
lilconfig: 2.1.0
yaml: 1.10.2
optionalDependencies:
postcss: 8.5.6
- ts-node: 10.9.2(@types/node@24.10.1)(typescript@5.9.3)
+ ts-node: 10.9.2(@types/node@24.10.3)(typescript@5.9.3)
postcss-merge-longhand@7.0.5(postcss@8.5.6):
dependencies:
@@ -17640,7 +17648,7 @@ snapshots:
postcss-merge-rules@7.0.7(postcss@8.5.6):
dependencies:
- browserslist: 4.28.0
+ browserslist: 4.28.1
caniuse-api: 3.0.0
cssnano-utils: 5.0.1(postcss@8.5.6)
postcss: 8.5.6
@@ -17660,7 +17668,7 @@ snapshots:
postcss-minify-params@7.0.5(postcss@8.5.6):
dependencies:
- browserslist: 4.28.0
+ browserslist: 4.28.1
cssnano-utils: 5.0.1(postcss@8.5.6)
postcss: 8.5.6
postcss-value-parser: 4.2.0
@@ -17740,7 +17748,7 @@ snapshots:
postcss-normalize-unicode@7.0.5(postcss@8.5.6):
dependencies:
- browserslist: 4.28.0
+ browserslist: 4.28.1
postcss: 8.5.6
postcss-value-parser: 4.2.0
@@ -17762,7 +17770,7 @@ snapshots:
postcss-reduce-initial@7.0.5(postcss@8.5.6):
dependencies:
- browserslist: 4.28.0
+ browserslist: 4.28.1
caniuse-api: 3.0.0
postcss: 8.5.6
@@ -17800,7 +17808,7 @@ snapshots:
picocolors: 1.1.1
source-map-js: 1.2.1
- preact@10.27.2: {}
+ preact@10.28.0: {}
prettier@3.6.2: {}
@@ -17890,10 +17898,6 @@ snapshots:
pngjs: 5.0.0
yargs: 15.4.1
- qs@6.13.0:
- dependencies:
- side-channel: 1.1.0
-
qs@6.14.0:
dependencies:
side-channel: 1.1.0
@@ -17919,10 +17923,10 @@ snapshots:
range-parser@1.2.1: {}
- raw-body@2.5.2:
+ raw-body@2.5.3:
dependencies:
bytes: 3.1.2
- http-errors: 2.0.0
+ http-errors: 2.0.1
iconv-lite: 0.4.24
unpipe: 1.0.0
@@ -17996,8 +18000,6 @@ snapshots:
indent-string: 4.0.0
strip-indent: 3.0.0
- reflect-metadata@0.2.2: {}
-
regenerate-unicode-properties@10.2.2:
dependencies:
regenerate: 1.4.2
@@ -18014,7 +18016,7 @@ snapshots:
regex-utilities@2.3.0: {}
- regex@6.0.1:
+ regex@6.1.0:
dependencies:
regex-utilities: 2.3.0
@@ -18178,7 +18180,7 @@ snapshots:
safer-buffer@2.1.2: {}
- sass@1.94.2:
+ sass@1.95.1:
dependencies:
chokidar: 4.0.3
immutable: 5.1.4
@@ -18238,6 +18240,24 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ send@0.19.1:
+ dependencies:
+ debug: 2.6.9
+ depd: 2.0.0
+ destroy: 1.2.0
+ encodeurl: 2.0.0
+ escape-html: 1.0.3
+ etag: 1.8.1
+ fresh: 0.5.2
+ http-errors: 2.0.0
+ mime: 1.6.0
+ ms: 2.1.3
+ on-finished: 2.4.1
+ range-parser: 1.2.1
+ statuses: 2.0.1
+ transitivePeerDependencies:
+ - supports-color
+
serve-static@1.16.2:
dependencies:
encodeurl: 2.0.0
@@ -18424,7 +18444,7 @@ snapshots:
bcrypt-pbkdf: 1.0.2
optionalDependencies:
cpu-features: 0.0.10
- nan: 2.23.1
+ nan: 2.24.0
ssri@10.0.6:
dependencies:
@@ -18438,6 +18458,8 @@ snapshots:
statuses@2.0.1: {}
+ statuses@2.0.2: {}
+
std-env@3.10.0: {}
stream-browserify@3.0.0:
@@ -18512,7 +18534,7 @@ snapshots:
stylehacks@7.0.7(postcss@8.5.6):
dependencies:
- browserslist: 4.28.0
+ browserslist: 4.28.1
postcss: 8.5.6
postcss-selector-parser: 7.1.1
@@ -18712,14 +18734,14 @@ snapshots:
trim-newlines@3.0.1: {}
- ts-node@10.9.2(@types/node@24.10.1)(typescript@5.9.3):
+ ts-node@10.9.2(@types/node@24.10.3)(typescript@5.9.3):
dependencies:
'@cspotcode/source-map-support': 0.8.1
'@tsconfig/node10': 1.0.12
'@tsconfig/node12': 1.0.11
'@tsconfig/node14': 1.0.3
'@tsconfig/node16': 1.0.4
- '@types/node': 24.10.1
+ '@types/node': 24.10.3
acorn: 8.15.0
acorn-walk: 8.3.4
arg: 4.1.3
@@ -18781,18 +18803,18 @@ snapshots:
typedarray@0.0.6: {}
- typedoc-plugin-markdown@4.8.1(typedoc@0.28.14(typescript@5.9.3)):
+ typedoc-plugin-markdown@4.8.1(typedoc@0.28.15(typescript@5.9.3)):
dependencies:
- typedoc: 0.28.14(typescript@5.9.3)
+ typedoc: 0.28.15(typescript@5.9.3)
- typedoc@0.28.14(typescript@5.9.3):
+ typedoc@0.28.15(typescript@5.9.3):
dependencies:
- '@gerrit0/mini-shiki': 3.17.0
+ '@gerrit0/mini-shiki': 3.19.0
lunr: 2.3.9
markdown-it: 14.1.0
minimatch: 9.0.5
typescript: 5.9.3
- yaml: 2.8.1
+ yaml: 2.8.2
typescript@5.8.2: {}
@@ -18805,7 +18827,7 @@ snapshots:
uglify-js@3.19.3:
optional: true
- unbuild@2.0.0(sass@1.94.2)(typescript@5.9.3)(vue-tsc@2.2.12(typescript@5.9.3)):
+ unbuild@2.0.0(sass@1.95.1)(typescript@5.9.3)(vue-tsc@2.2.12(typescript@5.9.3)):
dependencies:
'@rollup/plugin-alias': 5.1.1(rollup@3.29.5)
'@rollup/plugin-commonjs': 25.0.8(rollup@3.29.5)
@@ -18822,7 +18844,7 @@ snapshots:
hookable: 5.5.3
jiti: 1.21.7
magic-string: 0.30.21
- mkdist: 1.6.0(sass@1.94.2)(typescript@5.9.3)(vue-tsc@2.2.12(typescript@5.9.3))
+ mkdist: 1.6.0(sass@1.95.1)(typescript@5.9.3)(vue-tsc@2.2.12(typescript@5.9.3))
mlly: 1.8.0
pathe: 1.1.2
pkg-types: 1.3.1
@@ -18963,9 +18985,9 @@ snapshots:
upath@2.0.1: {}
- update-browserslist-db@1.1.4(browserslist@4.28.0):
+ update-browserslist-db@1.2.2(browserslist@4.28.1):
dependencies:
- browserslist: 4.28.0
+ browserslist: 4.28.1
escalade: 3.2.0
picocolors: 1.1.1
@@ -19039,23 +19061,23 @@ snapshots:
'@types/unist': 3.0.3
vfile-message: 4.0.3
- vite-dev-rpc@1.1.0(vite@6.3.7(@types/node@24.10.1)(jiti@2.6.1)(sass@1.94.2)(terser@5.44.1)(yaml@2.8.1)):
+ vite-dev-rpc@1.1.0(vite@6.3.7(@types/node@24.10.3)(jiti@2.6.1)(sass@1.95.1)(terser@5.44.1)(yaml@2.8.2)):
dependencies:
- birpc: 2.8.0
- vite: 6.3.7(@types/node@24.10.1)(jiti@2.6.1)(sass@1.94.2)(terser@5.44.1)(yaml@2.8.1)
- vite-hot-client: 2.1.0(vite@6.3.7(@types/node@24.10.1)(jiti@2.6.1)(sass@1.94.2)(terser@5.44.1)(yaml@2.8.1))
+ birpc: 2.9.0
+ vite: 6.3.7(@types/node@24.10.3)(jiti@2.6.1)(sass@1.95.1)(terser@5.44.1)(yaml@2.8.2)
+ vite-hot-client: 2.1.0(vite@6.3.7(@types/node@24.10.3)(jiti@2.6.1)(sass@1.95.1)(terser@5.44.1)(yaml@2.8.2))
- vite-hot-client@2.1.0(vite@6.3.7(@types/node@24.10.1)(jiti@2.6.1)(sass@1.94.2)(terser@5.44.1)(yaml@2.8.1)):
+ vite-hot-client@2.1.0(vite@6.3.7(@types/node@24.10.3)(jiti@2.6.1)(sass@1.95.1)(terser@5.44.1)(yaml@2.8.2)):
dependencies:
- vite: 6.3.7(@types/node@24.10.1)(jiti@2.6.1)(sass@1.94.2)(terser@5.44.1)(yaml@2.8.1)
+ vite: 6.3.7(@types/node@24.10.3)(jiti@2.6.1)(sass@1.95.1)(terser@5.44.1)(yaml@2.8.2)
- vite-node@3.2.4(@types/node@24.10.1)(jiti@2.6.1)(sass@1.94.2)(terser@5.44.1)(yaml@2.8.1):
+ vite-node@3.2.4(@types/node@24.10.3)(jiti@2.6.1)(sass@1.95.1)(terser@5.44.1)(yaml@2.8.2):
dependencies:
cac: 6.7.14
debug: 4.4.3(supports-color@5.5.0)
es-module-lexer: 1.7.0
pathe: 2.0.3
- vite: 6.3.7(@types/node@24.10.1)(jiti@2.6.1)(sass@1.94.2)(terser@5.44.1)(yaml@2.8.1)
+ vite: 6.3.7(@types/node@24.10.3)(jiti@2.6.1)(sass@1.95.1)(terser@5.44.1)(yaml@2.8.2)
transitivePeerDependencies:
- '@types/node'
- jiti
@@ -19070,19 +19092,19 @@ snapshots:
- tsx
- yaml
- vite-plugin-cdn-import@1.0.1(rollup@4.53.3)(vite@6.3.7(@types/node@24.10.1)(jiti@2.6.1)(sass@1.94.2)(terser@5.44.1)(yaml@2.8.1)):
+ vite-plugin-cdn-import@1.0.1(rollup@4.53.3)(vite@6.3.7(@types/node@24.10.3)(jiti@2.6.1)(sass@1.95.1)(terser@5.44.1)(yaml@2.8.2)):
dependencies:
rollup-plugin-external-globals: 0.10.0(rollup@4.53.3)
- vite-plugin-externals: 0.6.2(vite@6.3.7(@types/node@24.10.1)(jiti@2.6.1)(sass@1.94.2)(terser@5.44.1)(yaml@2.8.1))
+ vite-plugin-externals: 0.6.2(vite@6.3.7(@types/node@24.10.3)(jiti@2.6.1)(sass@1.95.1)(terser@5.44.1)(yaml@2.8.2))
transitivePeerDependencies:
- rollup
- vite
- vite-plugin-dts@4.5.4(@types/node@24.10.1)(rollup@4.53.3)(typescript@5.9.3)(vite@6.3.7(@types/node@24.10.1)(jiti@2.6.1)(sass@1.94.2)(terser@5.44.1)(yaml@2.8.1)):
+ vite-plugin-dts@4.5.4(@types/node@24.10.3)(rollup@4.53.3)(typescript@5.9.3)(vite@6.3.7(@types/node@24.10.3)(jiti@2.6.1)(sass@1.95.1)(terser@5.44.1)(yaml@2.8.2)):
dependencies:
- '@microsoft/api-extractor': 7.55.1(@types/node@24.10.1)
+ '@microsoft/api-extractor': 7.55.2(@types/node@24.10.3)
'@rollup/pluginutils': 5.3.0(rollup@4.53.3)
- '@volar/typescript': 2.4.26
+ '@volar/typescript': 2.4.27
'@vue/language-core': 2.2.0(typescript@5.9.3)
compare-versions: 6.1.1
debug: 4.4.3(supports-color@5.5.0)
@@ -19091,21 +19113,21 @@ snapshots:
magic-string: 0.30.21
typescript: 5.9.3
optionalDependencies:
- vite: 6.3.7(@types/node@24.10.1)(jiti@2.6.1)(sass@1.94.2)(terser@5.44.1)(yaml@2.8.1)
+ vite: 6.3.7(@types/node@24.10.3)(jiti@2.6.1)(sass@1.95.1)(terser@5.44.1)(yaml@2.8.2)
transitivePeerDependencies:
- '@types/node'
- rollup
- supports-color
- vite-plugin-externals@0.6.2(vite@6.3.7(@types/node@24.10.1)(jiti@2.6.1)(sass@1.94.2)(terser@5.44.1)(yaml@2.8.1)):
+ vite-plugin-externals@0.6.2(vite@6.3.7(@types/node@24.10.3)(jiti@2.6.1)(sass@1.95.1)(terser@5.44.1)(yaml@2.8.2)):
dependencies:
acorn: 8.15.0
es-module-lexer: 0.4.1
fs-extra: 10.1.0
magic-string: 0.25.9
- vite: 6.3.7(@types/node@24.10.1)(jiti@2.6.1)(sass@1.94.2)(terser@5.44.1)(yaml@2.8.1)
+ vite: 6.3.7(@types/node@24.10.3)(jiti@2.6.1)(sass@1.95.1)(terser@5.44.1)(yaml@2.8.2)
- vite-plugin-inspect@11.3.3(vite@6.3.7(@types/node@24.10.1)(jiti@2.6.1)(sass@1.94.2)(terser@5.44.1)(yaml@2.8.1)):
+ vite-plugin-inspect@11.3.3(vite@6.3.7(@types/node@24.10.3)(jiti@2.6.1)(sass@1.95.1)(terser@5.44.1)(yaml@2.8.2)):
dependencies:
ansis: 4.2.0
debug: 4.4.3(supports-color@5.5.0)
@@ -19115,34 +19137,34 @@ snapshots:
perfect-debounce: 2.0.0
sirv: 3.0.2
unplugin-utils: 0.3.1
- vite: 6.3.7(@types/node@24.10.1)(jiti@2.6.1)(sass@1.94.2)(terser@5.44.1)(yaml@2.8.1)
- vite-dev-rpc: 1.1.0(vite@6.3.7(@types/node@24.10.1)(jiti@2.6.1)(sass@1.94.2)(terser@5.44.1)(yaml@2.8.1))
+ vite: 6.3.7(@types/node@24.10.3)(jiti@2.6.1)(sass@1.95.1)(terser@5.44.1)(yaml@2.8.2)
+ vite-dev-rpc: 1.1.0(vite@6.3.7(@types/node@24.10.3)(jiti@2.6.1)(sass@1.95.1)(terser@5.44.1)(yaml@2.8.2))
transitivePeerDependencies:
- supports-color
- vite-plugin-node-polyfills@0.24.0(rollup@4.53.3)(vite@6.3.7(@types/node@24.10.1)(jiti@2.6.1)(sass@1.94.2)(terser@5.44.1)(yaml@2.8.1)):
+ vite-plugin-node-polyfills@0.24.0(rollup@4.53.3)(vite@6.3.7(@types/node@24.10.3)(jiti@2.6.1)(sass@1.95.1)(terser@5.44.1)(yaml@2.8.2)):
dependencies:
'@rollup/plugin-inject': 5.0.5(rollup@4.53.3)
node-stdlib-browser: 1.3.1
- vite: 6.3.7(@types/node@24.10.1)(jiti@2.6.1)(sass@1.94.2)(terser@5.44.1)(yaml@2.8.1)
+ vite: 6.3.7(@types/node@24.10.3)(jiti@2.6.1)(sass@1.95.1)(terser@5.44.1)(yaml@2.8.2)
transitivePeerDependencies:
- rollup
- vite-plugin-vue-devtools@8.0.5(vite@6.3.7(@types/node@24.10.1)(jiti@2.6.1)(sass@1.94.2)(terser@5.44.1)(yaml@2.8.1))(vue@3.5.25(typescript@5.9.3)):
+ vite-plugin-vue-devtools@8.0.5(vite@6.3.7(@types/node@24.10.3)(jiti@2.6.1)(sass@1.95.1)(terser@5.44.1)(yaml@2.8.2))(vue@3.5.25(typescript@5.9.3)):
dependencies:
- '@vue/devtools-core': 8.0.5(vite@6.3.7(@types/node@24.10.1)(jiti@2.6.1)(sass@1.94.2)(terser@5.44.1)(yaml@2.8.1))(vue@3.5.25(typescript@5.9.3))
+ '@vue/devtools-core': 8.0.5(vite@6.3.7(@types/node@24.10.3)(jiti@2.6.1)(sass@1.95.1)(terser@5.44.1)(yaml@2.8.2))(vue@3.5.25(typescript@5.9.3))
'@vue/devtools-kit': 8.0.5
'@vue/devtools-shared': 8.0.5
sirv: 3.0.2
- vite: 6.3.7(@types/node@24.10.1)(jiti@2.6.1)(sass@1.94.2)(terser@5.44.1)(yaml@2.8.1)
- vite-plugin-inspect: 11.3.3(vite@6.3.7(@types/node@24.10.1)(jiti@2.6.1)(sass@1.94.2)(terser@5.44.1)(yaml@2.8.1))
- vite-plugin-vue-inspector: 5.3.2(vite@6.3.7(@types/node@24.10.1)(jiti@2.6.1)(sass@1.94.2)(terser@5.44.1)(yaml@2.8.1))
+ vite: 6.3.7(@types/node@24.10.3)(jiti@2.6.1)(sass@1.95.1)(terser@5.44.1)(yaml@2.8.2)
+ vite-plugin-inspect: 11.3.3(vite@6.3.7(@types/node@24.10.3)(jiti@2.6.1)(sass@1.95.1)(terser@5.44.1)(yaml@2.8.2))
+ vite-plugin-vue-inspector: 5.3.2(vite@6.3.7(@types/node@24.10.3)(jiti@2.6.1)(sass@1.95.1)(terser@5.44.1)(yaml@2.8.2))
transitivePeerDependencies:
- '@nuxt/kit'
- supports-color
- vue
- vite-plugin-vue-inspector@5.3.2(vite@6.3.7(@types/node@24.10.1)(jiti@2.6.1)(sass@1.94.2)(terser@5.44.1)(yaml@2.8.1)):
+ vite-plugin-vue-inspector@5.3.2(vite@6.3.7(@types/node@24.10.3)(jiti@2.6.1)(sass@1.95.1)(terser@5.44.1)(yaml@2.8.2)):
dependencies:
'@babel/core': 7.28.5
'@babel/plugin-proposal-decorators': 7.28.0(@babel/core@7.28.5)
@@ -19153,22 +19175,22 @@ snapshots:
'@vue/compiler-dom': 3.5.25
kolorist: 1.8.0
magic-string: 0.30.21
- vite: 6.3.7(@types/node@24.10.1)(jiti@2.6.1)(sass@1.94.2)(terser@5.44.1)(yaml@2.8.1)
+ vite: 6.3.7(@types/node@24.10.3)(jiti@2.6.1)(sass@1.95.1)(terser@5.44.1)(yaml@2.8.2)
transitivePeerDependencies:
- supports-color
- vite@5.4.21(@types/node@24.10.1)(sass@1.94.2)(terser@5.44.1):
+ vite@5.4.21(@types/node@24.10.3)(sass@1.95.1)(terser@5.44.1):
dependencies:
esbuild: 0.21.5
postcss: 8.5.6
rollup: 4.53.3
optionalDependencies:
- '@types/node': 24.10.1
+ '@types/node': 24.10.3
fsevents: 2.3.3
- sass: 1.94.2
+ sass: 1.95.1
terser: 5.44.1
- vite@6.3.7(@types/node@24.10.1)(jiti@2.6.1)(sass@1.94.2)(terser@5.44.1)(yaml@2.8.1):
+ vite@6.3.7(@types/node@24.10.3)(jiti@2.6.1)(sass@1.95.1)(terser@5.44.1)(yaml@2.8.2):
dependencies:
esbuild: 0.25.12
fdir: 6.5.0(picomatch@4.0.3)
@@ -19177,23 +19199,23 @@ snapshots:
rollup: 4.53.3
tinyglobby: 0.2.15
optionalDependencies:
- '@types/node': 24.10.1
+ '@types/node': 24.10.3
fsevents: 2.3.3
jiti: 2.6.1
- sass: 1.94.2
+ sass: 1.95.1
terser: 5.44.1
- yaml: 2.8.1
+ yaml: 2.8.2
- vitepress@1.6.4(@algolia/client-search@5.45.0)(@types/node@24.10.1)(async-validator@4.2.5)(axios@1.13.2)(postcss@8.5.6)(qrcode@1.5.4)(sass@1.94.2)(search-insights@2.17.3)(sortablejs@1.15.6)(terser@5.44.1)(typescript@5.9.3):
+ vitepress@1.6.4(@algolia/client-search@5.46.0)(@types/node@24.10.3)(async-validator@4.2.5)(axios@1.13.2)(postcss@8.5.6)(qrcode@1.5.4)(sass@1.95.1)(search-insights@2.17.3)(sortablejs@1.15.6)(terser@5.44.1)(typescript@5.9.3):
dependencies:
'@docsearch/css': 3.8.2
- '@docsearch/js': 3.8.2(@algolia/client-search@5.45.0)(search-insights@2.17.3)
- '@iconify-json/simple-icons': 1.2.60
+ '@docsearch/js': 3.8.2(@algolia/client-search@5.46.0)(search-insights@2.17.3)
+ '@iconify-json/simple-icons': 1.2.62
'@shikijs/core': 2.5.0
'@shikijs/transformers': 2.5.0
'@shikijs/types': 2.5.0
'@types/markdown-it': 14.1.2
- '@vitejs/plugin-vue': 5.2.4(vite@5.4.21(@types/node@24.10.1)(sass@1.94.2)(terser@5.44.1))(vue@3.5.25(typescript@5.9.3))
+ '@vitejs/plugin-vue': 5.2.4(vite@5.4.21(@types/node@24.10.3)(sass@1.95.1)(terser@5.44.1))(vue@3.5.25(typescript@5.9.3))
'@vue/devtools-api': 7.7.9
'@vue/shared': 3.5.25
'@vueuse/core': 12.8.2(typescript@5.9.3)
@@ -19202,7 +19224,7 @@ snapshots:
mark.js: 8.11.1
minisearch: 7.2.0
shiki: 2.5.0
- vite: 5.4.21(@types/node@24.10.1)(sass@1.94.2)(terser@5.44.1)
+ vite: 5.4.21(@types/node@24.10.3)(sass@1.95.1)(terser@5.44.1)
vue: 3.5.25(typescript@5.9.3)
optionalDependencies:
postcss: 8.5.6
@@ -19233,11 +19255,11 @@ snapshots:
- typescript
- universal-cookie
- vitest@3.2.4(@types/node@24.10.1)(jiti@2.6.1)(jsdom@26.1.0)(sass@1.94.2)(terser@5.44.1)(yaml@2.8.1):
+ vitest@3.2.4(@types/node@24.10.3)(jiti@2.6.1)(jsdom@26.1.0)(sass@1.95.1)(terser@5.44.1)(yaml@2.8.2):
dependencies:
'@types/chai': 5.2.3
'@vitest/expect': 3.2.4
- '@vitest/mocker': 3.2.4(vite@6.3.7(@types/node@24.10.1)(jiti@2.6.1)(sass@1.94.2)(terser@5.44.1)(yaml@2.8.1))
+ '@vitest/mocker': 3.2.4(vite@6.3.7(@types/node@24.10.3)(jiti@2.6.1)(sass@1.95.1)(terser@5.44.1)(yaml@2.8.2))
'@vitest/pretty-format': 3.2.4
'@vitest/runner': 3.2.4
'@vitest/snapshot': 3.2.4
@@ -19245,7 +19267,7 @@ snapshots:
'@vitest/utils': 3.2.4
chai: 5.3.3
debug: 4.4.3(supports-color@5.5.0)
- expect-type: 1.2.2
+ expect-type: 1.3.0
magic-string: 0.30.21
pathe: 2.0.3
picomatch: 4.0.3
@@ -19255,11 +19277,11 @@ snapshots:
tinyglobby: 0.2.15
tinypool: 1.1.1
tinyrainbow: 2.0.0
- vite: 6.3.7(@types/node@24.10.1)(jiti@2.6.1)(sass@1.94.2)(terser@5.44.1)(yaml@2.8.1)
- vite-node: 3.2.4(@types/node@24.10.1)(jiti@2.6.1)(sass@1.94.2)(terser@5.44.1)(yaml@2.8.1)
+ vite: 6.3.7(@types/node@24.10.3)(jiti@2.6.1)(sass@1.95.1)(terser@5.44.1)(yaml@2.8.2)
+ vite-node: 3.2.4(@types/node@24.10.3)(jiti@2.6.1)(sass@1.95.1)(terser@5.44.1)(yaml@2.8.2)
why-is-node-running: 2.3.0
optionalDependencies:
- '@types/node': 24.10.1
+ '@types/node': 24.10.3
jsdom: 26.1.0
transitivePeerDependencies:
- jiti
@@ -19326,7 +19348,7 @@ snapshots:
dependencies:
dom-zindex: 1.0.6
vue: 3.5.25(typescript@5.9.3)
- xe-utils: 3.7.9
+ xe-utils: 3.8.0
w3c-hr-time@1.0.2:
dependencies:
@@ -19484,7 +19506,7 @@ snapshots:
dependencies:
is-wsl: 3.1.0
- xe-utils@3.7.9: {}
+ xe-utils@3.8.0: {}
xhr@2.6.0:
dependencies:
@@ -19529,7 +19551,7 @@ snapshots:
yaml@1.10.2: {}
- yaml@2.8.1: {}
+ yaml@2.8.2: {}
yargs-parser@18.1.3:
dependencies:
--
Gitee
From b7e276e97ba3c7239044733a2f3ffbd61c20fdc4 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?=E2=80=9Cchenhuachun=E2=80=9D?= <“samchen08@163.com”>
Date: Thu, 11 Dec 2025 08:29:11 +0800
Subject: [PATCH 08/11] =?UTF-8?q?docs:=20=E2=9C=8F=EF=B8=8F=20=20docs?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
docs/.vitepress/sidebar/service.ts | 4 +
docs/src/service/wiki/analysis.md | 123 +++++++++++++++++++++++++++++
2 files changed, 127 insertions(+)
create mode 100644 docs/src/service/wiki/analysis.md
diff --git a/docs/.vitepress/sidebar/service.ts b/docs/.vitepress/sidebar/service.ts
index a9266e946..3481e5da7 100644
--- a/docs/.vitepress/sidebar/service.ts
+++ b/docs/.vitepress/sidebar/service.ts
@@ -29,6 +29,10 @@ export default [
{
text: '架构概述',
link: '/wiki/2'
+ },
+ {
+ text: '竞品分析',
+ link: '/wiki/analysis'
}
]
}
diff --git a/docs/src/service/wiki/analysis.md b/docs/src/service/wiki/analysis.md
new file mode 100644
index 000000000..bc32e54cf
--- /dev/null
+++ b/docs/src/service/wiki/analysis.md
@@ -0,0 +1,123 @@
+# VTJ.PRO 竞品分析
+
+VTJ.PRO 作为一款 AI 驱动的 Vue3 低代码开发平台,其竞品主要分布在四个维度: **Vue 生态低代码平台**、 **全栈低代码平台**、 **AI 赋能低代码工具**和 **垂直领域低代码解决方案**。下面是对主要竞品的详细分析:
+
+## 一、Vue 生态低代码平台(核心竞品)
+
+### 1. TinyEngine
+
+- **核心定位**:企业级低代码开发平台,基于 Vue 和 Vue Router
+- **技术特点**:提供丰富组件库、API 管理和主题系统,支持布局插件
+- **与 VTJ 差异**:单向代码生成,无双向转换能力;AI 辅助较弱;自由度低于 VTJ
+- **适用场景**:企业级 Web 应用,后台管理系统
+
+### 2. Amis(百度)
+
+- **核心定位**:JSON 配置驱动的页面生成框架
+- **技术特点**:通过 JSON 配置快速生成后台页面,无需编写前端代码
+- **与 VTJ 差异**:无代码生成能力,仅通过 JSON 配置输出页面;不支持源码反向解析;自由度低
+- **适用场景**:标准化中后台系统(CRUD、表单、报表),快速原型设计
+
+### 3. JVS 低代码平台
+
+- **核心定位**:基于 Spring Cloud+Vue3 架构的企业级低代码平台
+- **技术特点**:结合微服务与配置化理念,支持源码交付
+- **与 VTJ 差异**:后端 Java 为主,前端 Vue3;无双向代码转换;AI 能力有限
+- **适用场景**:企业级应用开发,微服务架构系统
+
+### 4. LowCodeEngine(阿里巴巴)
+
+- **核心定位**:微内核 + 插件式企业级引擎
+- **技术特点**:支持 React/Vue/Rax 多框架渲染,插件机制驱动
+- **与 VTJ 差异**:定位为低代码基础设施,需自行构建上层应用;无 AI 深度集成
+- **适用场景**:大型企业自建低代码平台,高度定制化需求
+
+## 二、全栈低代码平台(广泛竞争)
+
+### 1. 网易 CodeWave
+
+- **核心定位**:全栈可视化开发平台,自研 NASL 语言
+- **技术特点**:全栈可视化,强大源码交付能力,支持信创适配
+- **与 VTJ 差异**:全栈开发(含后端),VTJ 专注前端;CodeWave 非完全开源
+- **适用场景**:企业级应用,复杂业务系统,信创项目
+
+### 2. OutSystems(国际头部)
+
+- **核心定位**:全栈低代码平台标杆,企业级应用开发
+- **技术特点**:可视化开发,强大性能与集成能力,支持云部署
+- **与 VTJ 差异**:商业闭源,价格较高;无双向代码自由;前端非 Vue 技术栈
+- **适用场景**:大型企业数字化转型,复杂 enterprise applications
+
+### 3. Mendix(西门子旗下)
+
+- **核心定位**:模型驱动的敏捷低代码平台
+- **技术特点**:业务与 IT 协同,ERP 集成能力强,支持复杂流程
+- **与 VTJ 差异**:商业软件,价格昂贵;模型驱动而非代码导向;无 Vue 生态
+- **适用场景**:制造业,ERP 系统,大型企业流程管控
+
+### 4. 金蝶云・苍穹
+
+- **核心定位**:ERP 协同型低代码平台
+- **技术特点**:财务领域专业能力,与金蝶 ERP 深度集成
+- **与 VTJ 差异**:专注企业 ERP 领域,VTJ 更通用;非 Vue 技术栈;商业收费
+- **适用场景**:财务系统,制造业 ERP,企业资源管理
+
+## 三、AI 赋能低代码工具(差异化竞争)
+
+### 1. JeecgBoot
+
+- **核心定位**:AI 驱动的开源低代码平台
+- **技术特点**:代码生成,智能辅助开发,支持多种数据库
+- **与 VTJ 差异**:后端 Java 为主,前端支持 Vue;AI 能力较浅,无双向转换
+- **适用场景**:Java 技术栈企业,快速 CRUD 应用开发
+
+### 2. 得帆云
+
+- **核心定位**:"AI + 集成" 双能力低代码平台
+- **技术特点**:接入 DeepSeek、文心一言等多模型,支持 200 + 系统集成
+- **与 VTJ 差异**:全栈开发,VTJ 专注前端;商业产品,非完全开源
+- **适用场景**:异构系统集成,集团化企业应用
+
+### 3. JeeLowCode
+
+- **核心定位**:AI 辅助的低代码开发平台
+- **技术特点**:代码生成,可视化设计,支持源码导出
+- **与 VTJ 差异**:无双向代码转换;AI 能力有限;非 Vue3 技术栈
+- **适用场景**:中小型企业应用,快速原型开发
+
+## 四、其他相关低代码工具
+
+### 1. HBuilderX + uni-app
+
+- **核心定位**:跨端开发平台(小程序、App、Web)
+- **技术特点**:Vue 语法,一次开发多端部署,强大的原生集成能力
+- **与 VTJ 差异**:非低代码平台,需手动编码;无可视化设计器;无 AI 辅助
+- **适用场景**:移动应用,小程序开发,跨平台项目
+
+### 2. iView Admin Pro / Ant Design Pro
+
+- **核心定位**:Vue 组件化开发框架,管理系统模板
+- **技术特点**:预构建 UI 组件库,完整的后台布局,基于 Vue+TypeScript
+- **与 VTJ 差异**:非低代码平台,需手动编码;无可视化设计和 AI 能力
+- **适用场景**:中后台系统,管理界面开发,基于 Vue 技术栈的项目
+
+## 五、VTJ.PRO 的差异化竞争优势
+
+| 对比维度 | VTJ.PRO | 主要竞品差异 |
+| ---------------- | ------------------------------------------------------------------ | -------------------------------------------- |
+| **双向代码自由** | ✅ 可视化设计与 Vue 源码无缝互转 | 多数竞品仅单向生成代码,源码控制权弱 |
+| **AI 深度集成** | 接入 Gemini 3.0、Qwen3-Coder-Plus 等大模型,支持文生代码、图生代码 | 部分竞品有 AI 辅助,但深度和广度不及 VTJ |
+| **开源策略** | 完全开源,无商业版 / 社区版之分 | 多数竞品为商业产品或部分开源 |
+| **技术栈** | Vue 3 + TypeScript + Vite,深度适配 Vue 生态 | 竞品技术栈多样,Vue 生态支持参差不齐 |
+| **适用场景** | 复杂企业级应用,对代码质量和自主性要求高的项目 | 各竞品侧重不同领域,VTJ 更通用且前端能力突出 |
+
+## 总结
+
+VTJ.PRO 的核心竞争力在于 **双向代码自由** 和 **AI 深度赋能** 两大差异化优势,尤其适合 Vue 技术栈团队和对源码控制权要求高的项目。在选择竞品时,可根据以下维度考量:
+
+- **Vue 开发者首选**:VTJ.PRO > TinyEngine > Amis
+- **全栈开发需求**:CodeWave > OutSystems > 得帆云
+- **AI 能力要求**:VTJ.PRO > 得帆云 > JeecgBoot
+- **源码控制权**:VTJ.PRO > JVS > MyApps
+
+> 注意:低代码市场竞争激烈且技术迭代迅速,本文信息基于 2025 年 12 月的市场数据,各平台功能可能持续更新。
--
Gitee
From c440f16f132951f68dd2f5ffb496d11ddc0c411b Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?=E2=80=9Cchenhuachun=E2=80=9D?= <“samchen08@163.com”>
Date: Thu, 11 Dec 2025 08:33:51 +0800
Subject: [PATCH 09/11] =?UTF-8?q?build:=20=F0=9F=93=A6=20release?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
- vtj-project-app@0.13.36
- vtj-extension@0.13.36
- vtj-project-h5@0.13.36
- vtj-project-library@0.12.16
- vtj-material@0.13.36
- vtj-plugin@0.13.36
- vtj-project-uniapp@0.13.36
- dev-web@0.13.36
- @vtj/docs@0.13.36
- @vtj/charts@0.13.36
- @vtj/cli@0.12.16
- @vtj/coder@0.13.36
- @vtj/core@0.13.36
- @vtj/designer@0.13.36
- @vtj/icons@0.13.36
- @vtj/local@0.13.36
- @vtj/materials@0.13.36
- @vtj/parser@0.13.36
- @vtj/renderer@0.13.36
- @vtj/ui@0.13.36
- @vtj/uni@0.13.36
- @vtj/utils@0.13.36
- @vtj/h5@0.13.36
- @vtj/pro@0.13.36
- @vtj/pro-uni@0.13.36
- @vtj/uni-app@0.13.36
- @vtj/web@0.13.36
---
apps/app/CHANGELOG.md | 8 ++++++++
apps/app/package.json | 2 +-
apps/extension/CHANGELOG.md | 8 ++++++++
apps/extension/package.json | 2 +-
apps/h5/CHANGELOG.md | 8 ++++++++
apps/h5/package.json | 2 +-
apps/library/CHANGELOG.md | 8 ++++++++
apps/library/package.json | 2 +-
apps/material/CHANGELOG.md | 8 ++++++++
apps/material/package.json | 2 +-
apps/plugin/CHANGELOG.md | 8 ++++++++
apps/plugin/package.json | 2 +-
apps/uniapp/CHANGELOG.md | 8 ++++++++
apps/uniapp/package.json | 2 +-
dev/CHANGELOG.md | 8 ++++++++
dev/package.json | 2 +-
docs/CHANGELOG.md | 8 ++++++++
docs/package.json | 2 +-
packages/charts/CHANGELOG.md | 8 ++++++++
packages/charts/package.json | 2 +-
packages/cli/CHANGELOG.md | 8 ++++++++
packages/cli/package.json | 2 +-
packages/coder/CHANGELOG.md | 8 ++++++++
packages/coder/package.json | 2 +-
packages/core/CHANGELOG.md | 8 ++++++++
packages/core/package.json | 2 +-
packages/designer/CHANGELOG.md | 18 ++++++++++++++++++
packages/designer/package.json | 2 +-
packages/icons/CHANGELOG.md | 8 ++++++++
packages/icons/package.json | 2 +-
packages/local/CHANGELOG.md | 8 ++++++++
packages/local/package.json | 2 +-
packages/materials/CHANGELOG.md | 8 ++++++++
packages/materials/package.json | 2 +-
packages/parser/CHANGELOG.md | 8 ++++++++
packages/parser/package.json | 2 +-
packages/renderer/CHANGELOG.md | 8 ++++++++
packages/renderer/package.json | 2 +-
packages/ui/CHANGELOG.md | 8 ++++++++
packages/ui/package.json | 2 +-
packages/uni/CHANGELOG.md | 8 ++++++++
packages/uni/package.json | 2 +-
packages/utils/CHANGELOG.md | 11 +++++++++++
packages/utils/package.json | 2 +-
platforms/h5/CHANGELOG.md | 8 ++++++++
platforms/h5/package.json | 2 +-
platforms/pro-uni/CHANGELOG.md | 8 ++++++++
platforms/pro-uni/package.json | 2 +-
platforms/pro/CHANGELOG.md | 8 ++++++++
platforms/pro/package.json | 2 +-
platforms/uni-app/CHANGELOG.md | 8 ++++++++
platforms/uni-app/package.json | 2 +-
platforms/web/CHANGELOG.md | 8 ++++++++
platforms/web/package.json | 2 +-
54 files changed, 256 insertions(+), 27 deletions(-)
diff --git a/apps/app/CHANGELOG.md b/apps/app/CHANGELOG.md
index cb8db3c55..6fb3d4eb2 100644
--- a/apps/app/CHANGELOG.md
+++ b/apps/app/CHANGELOG.md
@@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [0.13.36](https://github.com/samchen08/vtj.pro/compare/vtj-project-app@0.13.35...vtj-project-app@0.13.36) (2025-12-11)
+
+**Note:** Version bump only for package vtj-project-app
+
+
+
+
+
## [0.13.35](https://github.com/samchen08/vtj.pro/compare/vtj-project-app@0.13.34...vtj-project-app@0.13.35) (2025-11-29)
diff --git a/apps/app/package.json b/apps/app/package.json
index 4cb61f35d..38dbec960 100644
--- a/apps/app/package.json
+++ b/apps/app/package.json
@@ -2,7 +2,7 @@
"name": "vtj-project-app",
"description": "项目示例",
"private": true,
- "version": "0.13.35",
+ "version": "0.13.36",
"type": "module",
"scripts": {
"setup": "pnpm install --unsafe-perm --registry=https://registry.npmmirror.com",
diff --git a/apps/extension/CHANGELOG.md b/apps/extension/CHANGELOG.md
index d612ee2cc..de6ada0b9 100644
--- a/apps/extension/CHANGELOG.md
+++ b/apps/extension/CHANGELOG.md
@@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [0.13.36](https://github.com/samchen08/vtj.pro/compare/vtj-extension@0.13.35...vtj-extension@0.13.36) (2025-12-11)
+
+**Note:** Version bump only for package vtj-extension
+
+
+
+
+
## [0.13.35](https://github.com/samchen08/vtj.pro/compare/vtj-extension@0.13.34...vtj-extension@0.13.35) (2025-11-29)
diff --git a/apps/extension/package.json b/apps/extension/package.json
index 043291923..d9f548de3 100644
--- a/apps/extension/package.json
+++ b/apps/extension/package.json
@@ -1,7 +1,7 @@
{
"name": "vtj-extension",
"private": true,
- "version": "0.13.35",
+ "version": "0.13.36",
"type": "module",
"scripts": {
"setup": "pnpm install --unsafe-perm --registry=https://registry.npmmirror.com",
diff --git a/apps/h5/CHANGELOG.md b/apps/h5/CHANGELOG.md
index 1d45c1297..fedaebda5 100644
--- a/apps/h5/CHANGELOG.md
+++ b/apps/h5/CHANGELOG.md
@@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [0.13.36](https://github.com/samchen08/vtj.pro/compare/vtj-project-h5@0.13.35...vtj-project-h5@0.13.36) (2025-12-11)
+
+**Note:** Version bump only for package vtj-project-h5
+
+
+
+
+
## [0.13.35](https://github.com/samchen08/vtj.pro/compare/vtj-project-h5@0.13.34...vtj-project-h5@0.13.35) (2025-11-29)
diff --git a/apps/h5/package.json b/apps/h5/package.json
index 831d7ecfb..5cf07e4c3 100644
--- a/apps/h5/package.json
+++ b/apps/h5/package.json
@@ -2,7 +2,7 @@
"name": "vtj-project-h5",
"description": "H5项目示例",
"private": true,
- "version": "0.13.35",
+ "version": "0.13.36",
"type": "module",
"scripts": {
"setup": "pnpm install --unsafe-perm --registry=https://registry.npmmirror.com",
diff --git a/apps/library/CHANGELOG.md b/apps/library/CHANGELOG.md
index 83485655b..6f1b5dece 100644
--- a/apps/library/CHANGELOG.md
+++ b/apps/library/CHANGELOG.md
@@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [0.12.16](https://github.com/samchen08/vtj.pro/compare/vtj-project-library@0.12.15...vtj-project-library@0.12.16) (2025-12-11)
+
+**Note:** Version bump only for package vtj-project-library
+
+
+
+
+
## [0.12.15](https://github.com/samchen08/vtj.pro/compare/vtj-project-library@0.12.14...vtj-project-library@0.12.15) (2025-11-29)
**Note:** Version bump only for package vtj-project-library
diff --git a/apps/library/package.json b/apps/library/package.json
index 62a5d4eee..5ea256d87 100644
--- a/apps/library/package.json
+++ b/apps/library/package.json
@@ -1,7 +1,7 @@
{
"name": "vtj-project-library",
"private": true,
- "version": "0.12.15",
+ "version": "0.12.16",
"type": "module",
"scripts": {
"build": "vue-tsc && vite build",
diff --git a/apps/material/CHANGELOG.md b/apps/material/CHANGELOG.md
index 8fc35f5ef..17246ebc5 100644
--- a/apps/material/CHANGELOG.md
+++ b/apps/material/CHANGELOG.md
@@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [0.13.36](https://github.com/samchen08/vtj.pro/compare/vtj-material@0.13.35...vtj-material@0.13.36) (2025-12-11)
+
+**Note:** Version bump only for package vtj-material
+
+
+
+
+
## [0.13.35](https://github.com/samchen08/vtj.pro/compare/vtj-material@0.13.34...vtj-material@0.13.35) (2025-11-29)
diff --git a/apps/material/package.json b/apps/material/package.json
index 9bf65cdb1..519ae29a5 100644
--- a/apps/material/package.json
+++ b/apps/material/package.json
@@ -1,7 +1,7 @@
{
"name": "vtj-material",
"private": true,
- "version": "0.13.35",
+ "version": "0.13.36",
"type": "module",
"scripts": {
"setup": "pnpm install --unsafe-perm --registry=https://registry.npmmirror.com",
diff --git a/apps/plugin/CHANGELOG.md b/apps/plugin/CHANGELOG.md
index 010c3f96c..7ef0ed674 100644
--- a/apps/plugin/CHANGELOG.md
+++ b/apps/plugin/CHANGELOG.md
@@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [0.13.36](https://github.com/samchen08/vtj.pro/compare/vtj-plugin@0.13.35...vtj-plugin@0.13.36) (2025-12-11)
+
+**Note:** Version bump only for package vtj-plugin
+
+
+
+
+
## [0.13.35](https://github.com/samchen08/vtj.pro/compare/vtj-plugin@0.13.34...vtj-plugin@0.13.35) (2025-11-29)
diff --git a/apps/plugin/package.json b/apps/plugin/package.json
index 294161a59..f78d0f0fa 100644
--- a/apps/plugin/package.json
+++ b/apps/plugin/package.json
@@ -1,7 +1,7 @@
{
"name": "vtj-plugin",
"private": true,
- "version": "0.13.35",
+ "version": "0.13.36",
"type": "module",
"scripts": {
"setup": "pnpm install --unsafe-perm --registry=https://registry.npmmirror.com",
diff --git a/apps/uniapp/CHANGELOG.md b/apps/uniapp/CHANGELOG.md
index 2a32f8924..9ea57de96 100644
--- a/apps/uniapp/CHANGELOG.md
+++ b/apps/uniapp/CHANGELOG.md
@@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [0.13.36](https://github.com/samchen08/vtj.pro/compare/vtj-project-uniapp@0.13.35...vtj-project-uniapp@0.13.36) (2025-12-11)
+
+**Note:** Version bump only for package vtj-project-uniapp
+
+
+
+
+
## [0.13.35](https://github.com/samchen08/vtj.pro/compare/vtj-project-uniapp@0.13.34...vtj-project-uniapp@0.13.35) (2025-11-29)
diff --git a/apps/uniapp/package.json b/apps/uniapp/package.json
index c37b1bcb2..f2b10923d 100644
--- a/apps/uniapp/package.json
+++ b/apps/uniapp/package.json
@@ -1,6 +1,6 @@
{
"name": "vtj-project-uniapp",
- "version": "0.13.35",
+ "version": "0.13.36",
"private": true,
"scripts": {
"dev:app": "uni -p app",
diff --git a/dev/CHANGELOG.md b/dev/CHANGELOG.md
index cf6542455..bca739cda 100644
--- a/dev/CHANGELOG.md
+++ b/dev/CHANGELOG.md
@@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [0.13.36](https://github.com/samchen08/vtj.pro/compare/dev-web@0.13.35...dev-web@0.13.36) (2025-12-11)
+
+**Note:** Version bump only for package dev-web
+
+
+
+
+
## [0.13.35](https://github.com/samchen08/vtj.pro/compare/dev-web@0.13.34...dev-web@0.13.35) (2025-11-29)
diff --git a/dev/package.json b/dev/package.json
index 705dc18e4..4356d02ce 100644
--- a/dev/package.json
+++ b/dev/package.json
@@ -1,7 +1,7 @@
{
"name": "dev-web",
"private": true,
- "version": "0.13.35",
+ "version": "0.13.36",
"type": "module",
"scripts": {
"dev": "cross-env ENV_TYPE=local vite --force",
diff --git a/docs/CHANGELOG.md b/docs/CHANGELOG.md
index 359f4fc1a..d7e83658c 100644
--- a/docs/CHANGELOG.md
+++ b/docs/CHANGELOG.md
@@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [0.13.36](https://github.com/samchen08/vtj.pro/compare/@vtj/docs@0.13.35...@vtj/docs@0.13.36) (2025-12-11)
+
+**Note:** Version bump only for package @vtj/docs
+
+
+
+
+
## [0.13.35](https://github.com/samchen08/vtj.pro/compare/@vtj/docs@0.13.34...@vtj/docs@0.13.35) (2025-11-29)
diff --git a/docs/package.json b/docs/package.json
index 0acb4c9c1..c2142136b 100644
--- a/docs/package.json
+++ b/docs/package.json
@@ -1,7 +1,7 @@
{
"name": "@vtj/docs",
"private": true,
- "version": "0.13.35",
+ "version": "0.13.36",
"type": "module",
"scripts": {
"docs:dev": "vitepress dev",
diff --git a/packages/charts/CHANGELOG.md b/packages/charts/CHANGELOG.md
index 8950fae8a..fc980e012 100644
--- a/packages/charts/CHANGELOG.md
+++ b/packages/charts/CHANGELOG.md
@@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [0.13.36](https://gitee.com/newgateway/vtj/compare/@vtj/charts@0.13.35...@vtj/charts@0.13.36) (2025-12-11)
+
+**Note:** Version bump only for package @vtj/charts
+
+
+
+
+
## [0.13.35](https://gitee.com/newgateway/vtj/compare/@vtj/charts@0.13.34...@vtj/charts@0.13.35) (2025-11-29)
diff --git a/packages/charts/package.json b/packages/charts/package.json
index 2e9b50aa5..bbb9723d4 100644
--- a/packages/charts/package.json
+++ b/packages/charts/package.json
@@ -1,7 +1,7 @@
{
"name": "@vtj/charts",
"private": false,
- "version": "0.13.35",
+ "version": "0.13.36",
"type": "module",
"keywords": [
"低代码引擎",
diff --git a/packages/cli/CHANGELOG.md b/packages/cli/CHANGELOG.md
index ea796b708..7d500d79e 100644
--- a/packages/cli/CHANGELOG.md
+++ b/packages/cli/CHANGELOG.md
@@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [0.12.16](https://gitee.com/newgateway/vtj/compare/@vtj/cli@0.12.15...@vtj/cli@0.12.16) (2025-12-11)
+
+**Note:** Version bump only for package @vtj/cli
+
+
+
+
+
## [0.12.15](https://gitee.com/newgateway/vtj/compare/@vtj/cli@0.12.14...@vtj/cli@0.12.15) (2025-11-29)
diff --git a/packages/cli/package.json b/packages/cli/package.json
index 805b97ebf..ff2675e8c 100644
--- a/packages/cli/package.json
+++ b/packages/cli/package.json
@@ -1,7 +1,7 @@
{
"name": "@vtj/cli",
"private": false,
- "version": "0.12.15",
+ "version": "0.12.16",
"type": "module",
"keywords": [
"AI+低代码",
diff --git a/packages/coder/CHANGELOG.md b/packages/coder/CHANGELOG.md
index 9657a69c2..924879fb7 100644
--- a/packages/coder/CHANGELOG.md
+++ b/packages/coder/CHANGELOG.md
@@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [0.13.36](https://gitee.com/newgateway/vtj/compare/@vtj/coder@0.13.35...@vtj/coder@0.13.36) (2025-12-11)
+
+**Note:** Version bump only for package @vtj/coder
+
+
+
+
+
## [0.13.35](https://gitee.com/newgateway/vtj/compare/@vtj/coder@0.13.34...@vtj/coder@0.13.35) (2025-11-29)
diff --git a/packages/coder/package.json b/packages/coder/package.json
index 0b4755616..9b57c5629 100644
--- a/packages/coder/package.json
+++ b/packages/coder/package.json
@@ -1,7 +1,7 @@
{
"name": "@vtj/coder",
"private": false,
- "version": "0.13.35",
+ "version": "0.13.36",
"type": "module",
"keywords": [
"低代码引擎",
diff --git a/packages/core/CHANGELOG.md b/packages/core/CHANGELOG.md
index 5f4cfa0ff..eda7e6d42 100644
--- a/packages/core/CHANGELOG.md
+++ b/packages/core/CHANGELOG.md
@@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [0.13.36](https://gitee.com/newgateway/vtj/compare/@vtj/core@0.13.35...@vtj/core@0.13.36) (2025-12-11)
+
+**Note:** Version bump only for package @vtj/core
+
+
+
+
+
## [0.13.35](https://gitee.com/newgateway/vtj/compare/@vtj/core@0.13.34...@vtj/core@0.13.35) (2025-11-29)
**Note:** Version bump only for package @vtj/core
diff --git a/packages/core/package.json b/packages/core/package.json
index a65a98452..7cae2ea4a 100644
--- a/packages/core/package.json
+++ b/packages/core/package.json
@@ -1,7 +1,7 @@
{
"name": "@vtj/core",
"private": false,
- "version": "0.13.35",
+ "version": "0.13.36",
"type": "module",
"keywords": [
"低代码引擎",
diff --git a/packages/designer/CHANGELOG.md b/packages/designer/CHANGELOG.md
index 99b4a7ee1..3756da2e2 100644
--- a/packages/designer/CHANGELOG.md
+++ b/packages/designer/CHANGELOG.md
@@ -3,6 +3,24 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [0.13.36](https://gitee.com/newgateway/vtj/compare/@vtj/designer@0.13.35...@vtj/designer@0.13.36) (2025-12-11)
+
+
+### Bug Fixes
+
+* 🐛 元数据识别类型识别错误 ([6dcd949](https://gitee.com/newgateway/vtj/commits/6dcd949531fb4f013432e6368003d6df3a8c8943))
+* 🐛 支付成功提示 ([d6f4fe2](https://gitee.com/newgateway/vtj/commits/d6f4fe29f598b46ada459dd113d8c283d916765f))
+
+
+### Features
+
+* ✨ 切换风格按钮更改到状态栏显示 ([196233b](https://gitee.com/newgateway/vtj/commits/196233b1f8012166a636e88861ff3f7e6383465c))
+* ✨ AI配置支持 orderLink 和 tokenLink ([0535a24](https://gitee.com/newgateway/vtj/commits/0535a247d0f80c4bd0148e8efdc154b4e863feb7))
+
+
+
+
+
## [0.13.35](https://gitee.com/newgateway/vtj/compare/@vtj/designer@0.13.34...@vtj/designer@0.13.35) (2025-11-29)
diff --git a/packages/designer/package.json b/packages/designer/package.json
index fb07c5e1c..fa0785327 100644
--- a/packages/designer/package.json
+++ b/packages/designer/package.json
@@ -1,7 +1,7 @@
{
"name": "@vtj/designer",
"private": false,
- "version": "0.13.35",
+ "version": "0.13.36",
"type": "module",
"keywords": [
"低代码引擎",
diff --git a/packages/icons/CHANGELOG.md b/packages/icons/CHANGELOG.md
index b432caee9..632d42a24 100644
--- a/packages/icons/CHANGELOG.md
+++ b/packages/icons/CHANGELOG.md
@@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [0.13.36](https://gitee.com/newgateway/vtj/compare/@vtj/icons@0.13.35...@vtj/icons@0.13.36) (2025-12-11)
+
+**Note:** Version bump only for package @vtj/icons
+
+
+
+
+
## [0.13.35](https://gitee.com/newgateway/vtj/compare/@vtj/icons@0.13.34...@vtj/icons@0.13.35) (2025-11-29)
diff --git a/packages/icons/package.json b/packages/icons/package.json
index 56a14aa00..19b3f2dcf 100644
--- a/packages/icons/package.json
+++ b/packages/icons/package.json
@@ -1,7 +1,7 @@
{
"name": "@vtj/icons",
"private": false,
- "version": "0.13.35",
+ "version": "0.13.36",
"type": "module",
"keywords": [
"低代码引擎",
diff --git a/packages/local/CHANGELOG.md b/packages/local/CHANGELOG.md
index c50701b35..81d15af37 100644
--- a/packages/local/CHANGELOG.md
+++ b/packages/local/CHANGELOG.md
@@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [0.13.36](https://gitee.com/newgateway/vtj/compare/@vtj/local@0.13.35...@vtj/local@0.13.36) (2025-12-11)
+
+**Note:** Version bump only for package @vtj/local
+
+
+
+
+
## [0.13.35](https://gitee.com/newgateway/vtj/compare/@vtj/local@0.13.34...@vtj/local@0.13.35) (2025-11-29)
**Note:** Version bump only for package @vtj/local
diff --git a/packages/local/package.json b/packages/local/package.json
index 63dd87a0e..07b8bdffc 100644
--- a/packages/local/package.json
+++ b/packages/local/package.json
@@ -1,7 +1,7 @@
{
"name": "@vtj/local",
"private": false,
- "version": "0.13.35",
+ "version": "0.13.36",
"type": "module",
"keywords": [
"低代码引擎",
diff --git a/packages/materials/CHANGELOG.md b/packages/materials/CHANGELOG.md
index 29602c447..6e21c05c6 100644
--- a/packages/materials/CHANGELOG.md
+++ b/packages/materials/CHANGELOG.md
@@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [0.13.36](https://gitee.com/newgateway/vtj/compare/@vtj/materials@0.13.35...@vtj/materials@0.13.36) (2025-12-11)
+
+**Note:** Version bump only for package @vtj/materials
+
+
+
+
+
## [0.13.35](https://gitee.com/newgateway/vtj/compare/@vtj/materials@0.13.34...@vtj/materials@0.13.35) (2025-11-29)
diff --git a/packages/materials/package.json b/packages/materials/package.json
index 01f340c37..fbc498395 100644
--- a/packages/materials/package.json
+++ b/packages/materials/package.json
@@ -1,7 +1,7 @@
{
"name": "@vtj/materials",
"private": false,
- "version": "0.13.35",
+ "version": "0.13.36",
"type": "module",
"keywords": [
"低代码引擎",
diff --git a/packages/parser/CHANGELOG.md b/packages/parser/CHANGELOG.md
index b576c440a..e6da5a869 100644
--- a/packages/parser/CHANGELOG.md
+++ b/packages/parser/CHANGELOG.md
@@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [0.13.36](https://gitee.com/newgateway/vtj/compare/@vtj/parser@0.13.35...@vtj/parser@0.13.36) (2025-12-11)
+
+**Note:** Version bump only for package @vtj/parser
+
+
+
+
+
## [0.13.35](https://gitee.com/newgateway/vtj/compare/@vtj/parser@0.13.34...@vtj/parser@0.13.35) (2025-11-29)
diff --git a/packages/parser/package.json b/packages/parser/package.json
index 1c87ec8ee..36aec2a43 100644
--- a/packages/parser/package.json
+++ b/packages/parser/package.json
@@ -1,7 +1,7 @@
{
"name": "@vtj/parser",
"private": false,
- "version": "0.13.35",
+ "version": "0.13.36",
"type": "module",
"keywords": [
"低代码引擎",
diff --git a/packages/renderer/CHANGELOG.md b/packages/renderer/CHANGELOG.md
index 986f65ac8..e00749049 100644
--- a/packages/renderer/CHANGELOG.md
+++ b/packages/renderer/CHANGELOG.md
@@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [0.13.36](https://gitee.com/newgateway/vtj/compare/@vtj/renderer@0.13.35...@vtj/renderer@0.13.36) (2025-12-11)
+
+**Note:** Version bump only for package @vtj/renderer
+
+
+
+
+
## [0.13.35](https://gitee.com/newgateway/vtj/compare/@vtj/renderer@0.13.34...@vtj/renderer@0.13.35) (2025-11-29)
diff --git a/packages/renderer/package.json b/packages/renderer/package.json
index 7cc4207a1..c7f3fac0e 100644
--- a/packages/renderer/package.json
+++ b/packages/renderer/package.json
@@ -1,7 +1,7 @@
{
"name": "@vtj/renderer",
"private": false,
- "version": "0.13.35",
+ "version": "0.13.36",
"type": "module",
"keywords": [
"低代码引擎",
diff --git a/packages/ui/CHANGELOG.md b/packages/ui/CHANGELOG.md
index ada13f12f..e630d1340 100644
--- a/packages/ui/CHANGELOG.md
+++ b/packages/ui/CHANGELOG.md
@@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [0.13.36](https://gitee.com/newgateway/vtj/compare/@vtj/ui@0.13.35...@vtj/ui@0.13.36) (2025-12-11)
+
+**Note:** Version bump only for package @vtj/ui
+
+
+
+
+
## [0.13.35](https://gitee.com/newgateway/vtj/compare/@vtj/ui@0.13.34...@vtj/ui@0.13.35) (2025-11-29)
diff --git a/packages/ui/package.json b/packages/ui/package.json
index 6cd0f6e1d..69536ae59 100644
--- a/packages/ui/package.json
+++ b/packages/ui/package.json
@@ -1,7 +1,7 @@
{
"name": "@vtj/ui",
"private": false,
- "version": "0.13.35",
+ "version": "0.13.36",
"type": "module",
"keywords": [
"低代码引擎",
diff --git a/packages/uni/CHANGELOG.md b/packages/uni/CHANGELOG.md
index 8c854b7c9..13d0d0e6e 100644
--- a/packages/uni/CHANGELOG.md
+++ b/packages/uni/CHANGELOG.md
@@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [0.13.36](https://gitee.com/newgateway/vtj/compare/@vtj/uni@0.13.35...@vtj/uni@0.13.36) (2025-12-11)
+
+**Note:** Version bump only for package @vtj/uni
+
+
+
+
+
## [0.13.35](https://gitee.com/newgateway/vtj/compare/@vtj/uni@0.13.34...@vtj/uni@0.13.35) (2025-11-29)
diff --git a/packages/uni/package.json b/packages/uni/package.json
index 9ba00af9b..352290e37 100644
--- a/packages/uni/package.json
+++ b/packages/uni/package.json
@@ -1,7 +1,7 @@
{
"name": "@vtj/uni",
"private": false,
- "version": "0.13.35",
+ "version": "0.13.36",
"type": "module",
"sideEffects": false,
"keywords": [
diff --git a/packages/utils/CHANGELOG.md b/packages/utils/CHANGELOG.md
index fbd1b88e3..a938a3416 100644
--- a/packages/utils/CHANGELOG.md
+++ b/packages/utils/CHANGELOG.md
@@ -3,6 +3,17 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [0.13.36](https://gitee.com/newgateway/vtj/compare/@vtj/utils@0.13.35...@vtj/utils@0.13.36) (2025-12-11)
+
+
+### Features
+
+* ✨ createApi 支持设置request 实例 ([2e8b711](https://gitee.com/newgateway/vtj/commits/2e8b711f0960c5dbacae2d20a2d44e40dbfd059e))
+
+
+
+
+
## [0.13.35](https://gitee.com/newgateway/vtj/compare/@vtj/utils@0.13.34...@vtj/utils@0.13.35) (2025-11-29)
diff --git a/packages/utils/package.json b/packages/utils/package.json
index ace9be8a0..5bb387187 100644
--- a/packages/utils/package.json
+++ b/packages/utils/package.json
@@ -1,7 +1,7 @@
{
"name": "@vtj/utils",
"private": false,
- "version": "0.13.35",
+ "version": "0.13.36",
"type": "module",
"keywords": [
"低代码引擎",
diff --git a/platforms/h5/CHANGELOG.md b/platforms/h5/CHANGELOG.md
index 3bd6f4566..99449edfd 100644
--- a/platforms/h5/CHANGELOG.md
+++ b/platforms/h5/CHANGELOG.md
@@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [0.13.36](https://gitee.com/newgateway/vtj/compare/@vtj/h5@0.13.35...@vtj/h5@0.13.36) (2025-12-11)
+
+**Note:** Version bump only for package @vtj/h5
+
+
+
+
+
## [0.13.35](https://gitee.com/newgateway/vtj/compare/@vtj/h5@0.13.34...@vtj/h5@0.13.35) (2025-11-29)
**Note:** Version bump only for package @vtj/h5
diff --git a/platforms/h5/package.json b/platforms/h5/package.json
index 03260ed4c..0bb7035f1 100644
--- a/platforms/h5/package.json
+++ b/platforms/h5/package.json
@@ -1,7 +1,7 @@
{
"name": "@vtj/h5",
"private": false,
- "version": "0.13.35",
+ "version": "0.13.36",
"type": "module",
"sideEffects": false,
"keywords": [
diff --git a/platforms/pro-uni/CHANGELOG.md b/platforms/pro-uni/CHANGELOG.md
index 563009c06..800f22827 100644
--- a/platforms/pro-uni/CHANGELOG.md
+++ b/platforms/pro-uni/CHANGELOG.md
@@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [0.13.36](https://github.com/samchen08/vtj.pro/compare/@vtj/pro-uni@0.13.35...@vtj/pro-uni@0.13.36) (2025-12-11)
+
+**Note:** Version bump only for package @vtj/pro-uni
+
+
+
+
+
## [0.13.35](https://github.com/samchen08/vtj.pro/compare/@vtj/pro-uni@0.13.34...@vtj/pro-uni@0.13.35) (2025-11-29)
diff --git a/platforms/pro-uni/package.json b/platforms/pro-uni/package.json
index c7965fcc9..96fa3f60d 100644
--- a/platforms/pro-uni/package.json
+++ b/platforms/pro-uni/package.json
@@ -2,7 +2,7 @@
"name": "@vtj/pro-uni",
"description": "VTJ.PRO",
"private": true,
- "version": "0.13.35",
+ "version": "0.13.36",
"type": "module",
"scripts": {
"dev": "cross-env ENV_TYPE=local vite",
diff --git a/platforms/pro/CHANGELOG.md b/platforms/pro/CHANGELOG.md
index 42e2b7f38..c80d93873 100644
--- a/platforms/pro/CHANGELOG.md
+++ b/platforms/pro/CHANGELOG.md
@@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [0.13.36](https://gitee.com/newgateway/vtj/compare/@vtj/pro@0.13.35...@vtj/pro@0.13.36) (2025-12-11)
+
+**Note:** Version bump only for package @vtj/pro
+
+
+
+
+
## [0.13.35](https://gitee.com/newgateway/vtj/compare/@vtj/pro@0.13.34...@vtj/pro@0.13.35) (2025-11-29)
diff --git a/platforms/pro/package.json b/platforms/pro/package.json
index 0bcf0e1db..22680c60b 100644
--- a/platforms/pro/package.json
+++ b/platforms/pro/package.json
@@ -1,7 +1,7 @@
{
"name": "@vtj/pro",
"private": false,
- "version": "0.13.35",
+ "version": "0.13.36",
"keywords": [
"低代码引擎",
"LowCode Engine",
diff --git a/platforms/uni-app/CHANGELOG.md b/platforms/uni-app/CHANGELOG.md
index 5be0bedd1..42420357b 100644
--- a/platforms/uni-app/CHANGELOG.md
+++ b/platforms/uni-app/CHANGELOG.md
@@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [0.13.36](https://gitee.com/newgateway/vtj/compare/@vtj/uni-app@0.13.35...@vtj/uni-app@0.13.36) (2025-12-11)
+
+**Note:** Version bump only for package @vtj/uni-app
+
+
+
+
+
## [0.13.35](https://gitee.com/newgateway/vtj/compare/@vtj/uni-app@0.13.34...@vtj/uni-app@0.13.35) (2025-11-29)
**Note:** Version bump only for package @vtj/uni-app
diff --git a/platforms/uni-app/package.json b/platforms/uni-app/package.json
index 00c160c56..acc1f2c97 100644
--- a/platforms/uni-app/package.json
+++ b/platforms/uni-app/package.json
@@ -1,7 +1,7 @@
{
"name": "@vtj/uni-app",
"private": false,
- "version": "0.13.35",
+ "version": "0.13.36",
"type": "module",
"sideEffects": false,
"keywords": [
diff --git a/platforms/web/CHANGELOG.md b/platforms/web/CHANGELOG.md
index e4c8ad01f..c17a1098b 100644
--- a/platforms/web/CHANGELOG.md
+++ b/platforms/web/CHANGELOG.md
@@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [0.13.36](https://gitee.com/newgateway/vtj/compare/@vtj/web@0.13.35...@vtj/web@0.13.36) (2025-12-11)
+
+**Note:** Version bump only for package @vtj/web
+
+
+
+
+
## [0.13.35](https://gitee.com/newgateway/vtj/compare/@vtj/web@0.13.34...@vtj/web@0.13.35) (2025-11-29)
diff --git a/platforms/web/package.json b/platforms/web/package.json
index cd585b54c..4dc1b064d 100644
--- a/platforms/web/package.json
+++ b/platforms/web/package.json
@@ -1,7 +1,7 @@
{
"name": "@vtj/web",
"private": false,
- "version": "0.13.35",
+ "version": "0.13.36",
"type": "module",
"sideEffects": false,
"keywords": [
--
Gitee
From 1957963b517ed3c7192bfbc9a8b2080ae43940e3 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?=E2=80=9Cchenhuachun=E2=80=9D?= <“samchen08@163.com”>
Date: Thu, 11 Dec 2025 08:35:15 +0800
Subject: [PATCH 10/11] =?UTF-8?q?ci:=20=F0=9F=91=B7commit?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
packages/charts/src/version.ts | 4 ++--
packages/coder/src/version.ts | 4 ++--
packages/core/src/version.ts | 4 ++--
packages/designer/src/version.ts | 4 ++--
packages/icons/src/version.ts | 4 ++--
packages/materials/src/version.ts | 4 ++--
packages/parser/src/version.ts | 4 ++--
packages/renderer/src/version.ts | 4 ++--
packages/ui/src/version.ts | 4 ++--
packages/uni/src/version.ts | 4 ++--
packages/utils/src/version.ts | 4 ++--
11 files changed, 22 insertions(+), 22 deletions(-)
diff --git a/packages/charts/src/version.ts b/packages/charts/src/version.ts
index b7092b035..5dbd1d0c3 100644
--- a/packages/charts/src/version.ts
+++ b/packages/charts/src/version.ts
@@ -2,7 +2,7 @@
* Copyright (c) 2025, VTJ.PRO All rights reserved.
* @name @vtj/charts
* @author CHC chenhuachun1549@dingtalk.com
- * @version 0.13.35
+ * @version 0.13.36
* @license MIT License
*/
-export const version = '0.13.35';
\ No newline at end of file
+export const version = '0.13.36';
\ No newline at end of file
diff --git a/packages/coder/src/version.ts b/packages/coder/src/version.ts
index 22d1c81b7..8a3a8c6ad 100644
--- a/packages/coder/src/version.ts
+++ b/packages/coder/src/version.ts
@@ -2,7 +2,7 @@
* Copyright (c) 2025, VTJ.PRO All rights reserved.
* @name @vtj/coder
* @author CHC chenhuachun1549@dingtalk.com
- * @version 0.13.35
+ * @version 0.13.36
* @license MIT License
*/
-export const version = '0.13.35';
\ No newline at end of file
+export const version = '0.13.36';
\ No newline at end of file
diff --git a/packages/core/src/version.ts b/packages/core/src/version.ts
index 0bef21de3..97362c1ec 100644
--- a/packages/core/src/version.ts
+++ b/packages/core/src/version.ts
@@ -2,7 +2,7 @@
* Copyright (c) 2025, VTJ.PRO All rights reserved.
* @name @vtj/core
* @author CHC chenhuachun1549@dingtalk.com
- * @version 0.13.35
+ * @version 0.13.36
* @license MIT License
*/
-export const version = '0.13.35';
\ No newline at end of file
+export const version = '0.13.36';
\ No newline at end of file
diff --git a/packages/designer/src/version.ts b/packages/designer/src/version.ts
index 9d15d2b9f..216791394 100644
--- a/packages/designer/src/version.ts
+++ b/packages/designer/src/version.ts
@@ -2,7 +2,7 @@
* Copyright (c) 2025, VTJ.PRO All rights reserved.
* @name @vtj/designer
* @author CHC chenhuachun1549@dingtalk.com
- * @version 0.13.35
+ * @version 0.13.36
* @license MIT License
*/
-export const version = '0.13.35';
\ No newline at end of file
+export const version = '0.13.36';
\ No newline at end of file
diff --git a/packages/icons/src/version.ts b/packages/icons/src/version.ts
index 777997d2e..e6f829178 100644
--- a/packages/icons/src/version.ts
+++ b/packages/icons/src/version.ts
@@ -2,7 +2,7 @@
* Copyright (c) 2025, VTJ.PRO All rights reserved.
* @name @vtj/icons
* @author CHC chenhuachun1549@dingtalk.com
- * @version 0.13.35
+ * @version 0.13.36
* @license MIT License
*/
-export const version = '0.13.35';
\ No newline at end of file
+export const version = '0.13.36';
\ No newline at end of file
diff --git a/packages/materials/src/version.ts b/packages/materials/src/version.ts
index 22cf516c1..1f4172a71 100644
--- a/packages/materials/src/version.ts
+++ b/packages/materials/src/version.ts
@@ -2,7 +2,7 @@
* Copyright (c) 2025, VTJ.PRO All rights reserved.
* @name @vtj/materials
* @author CHC chenhuachun1549@dingtalk.com
- * @version 0.13.35
+ * @version 0.13.36
* @license MIT License
*/
-export const version = '0.13.35';
\ No newline at end of file
+export const version = '0.13.36';
\ No newline at end of file
diff --git a/packages/parser/src/version.ts b/packages/parser/src/version.ts
index bd8c45976..ecef8ec29 100644
--- a/packages/parser/src/version.ts
+++ b/packages/parser/src/version.ts
@@ -2,7 +2,7 @@
* Copyright (c) 2025, VTJ.PRO All rights reserved.
* @name @vtj/parser
* @author CHC chenhuachun1549@dingtalk.com
- * @version 0.13.35
+ * @version 0.13.36
* @license MIT License
*/
-export const version = '0.13.35';
\ No newline at end of file
+export const version = '0.13.36';
\ No newline at end of file
diff --git a/packages/renderer/src/version.ts b/packages/renderer/src/version.ts
index a4c593db2..d491281af 100644
--- a/packages/renderer/src/version.ts
+++ b/packages/renderer/src/version.ts
@@ -2,7 +2,7 @@
* Copyright (c) 2025, VTJ.PRO All rights reserved.
* @name @vtj/renderer
* @author CHC chenhuachun1549@dingtalk.com
- * @version 0.13.35
+ * @version 0.13.36
* @license MIT License
*/
-export const version = '0.13.35';
\ No newline at end of file
+export const version = '0.13.36';
\ No newline at end of file
diff --git a/packages/ui/src/version.ts b/packages/ui/src/version.ts
index 76d3fdc40..95d4ab600 100644
--- a/packages/ui/src/version.ts
+++ b/packages/ui/src/version.ts
@@ -2,7 +2,7 @@
* Copyright (c) 2025, VTJ.PRO All rights reserved.
* @name @vtj/ui
* @author CHC chenhuachun1549@dingtalk.com
- * @version 0.13.35
+ * @version 0.13.36
* @license MIT License
*/
-export const version = '0.13.35';
\ No newline at end of file
+export const version = '0.13.36';
\ No newline at end of file
diff --git a/packages/uni/src/version.ts b/packages/uni/src/version.ts
index 831103a0e..98fc119a1 100644
--- a/packages/uni/src/version.ts
+++ b/packages/uni/src/version.ts
@@ -2,7 +2,7 @@
* Copyright (c) 2025, VTJ.PRO All rights reserved.
* @name @vtj/uni
* @author CHC chenhuachun1549@dingtalk.com
- * @version 0.13.35
+ * @version 0.13.36
* @license MIT License
*/
-export const version = '0.13.35';
\ No newline at end of file
+export const version = '0.13.36';
\ No newline at end of file
diff --git a/packages/utils/src/version.ts b/packages/utils/src/version.ts
index 9eb846034..832f7ab9f 100644
--- a/packages/utils/src/version.ts
+++ b/packages/utils/src/version.ts
@@ -2,7 +2,7 @@
* Copyright (c) 2025, VTJ.PRO All rights reserved.
* @name @vtj/utils
* @author CHC chenhuachun1549@dingtalk.com
- * @version 0.13.35
+ * @version 0.13.36
* @license MIT License
*/
-export const version = '0.13.35';
\ No newline at end of file
+export const version = '0.13.36';
\ No newline at end of file
--
Gitee
From 29140e311452dbbc486876b30a6070f6b1ac52cf Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?=E2=80=9Cchenhuachun=E2=80=9D?= <“samchen08@163.com”>
Date: Thu, 11 Dec 2025 08:55:05 +0800
Subject: [PATCH 11/11] =?UTF-8?q?ci:=20=F0=9F=91=B7commit?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
.gitignore | 2 ++
.npmrc | 2 +-
2 files changed, 3 insertions(+), 1 deletion(-)
diff --git a/.gitignore b/.gitignore
index af5ce5df5..41fe05e9e 100644
--- a/.gitignore
+++ b/.gitignore
@@ -33,6 +33,8 @@ package-lock.json
.hbuildx
.vtj
+npmrc.md
+
# packages
/packages/*/temp/
/packages/*/types/
diff --git a/.npmrc b/.npmrc
index 9ffb55c0c..087e5d762 100644
--- a/.npmrc
+++ b/.npmrc
@@ -4,4 +4,4 @@ node-linker = hoisted
puppeteer_download_host=https://npmmirror.com/mirrors
# proxy=http://127.0.0.1:7890
# https-proxy=http://127.0.0.1:7890
-# registry=https://registry.npmmirror.com
+# registry=https://registry.npmmirror.com
\ No newline at end of file
--
Gitee