feat(变量节点): 添加变量赋值类型定义并优化节点菜单

refactor: 简化json-schema类型导入
chore: 更新依赖并调整tsconfig配置
This commit is contained in:
2025-09-15 01:07:54 +08:00
parent b0963e5e37
commit 17de176609
6 changed files with 29 additions and 7 deletions

View File

@ -3,7 +3,7 @@
* SPDX-License-Identifier: MIT
*/
import type { IJsonSchema, IBasicJsonSchema } from '@flowgram.ai/form-materials';
import type { IJsonSchema } from '@flowgram.ai/form-materials';
export type BasicType = IBasicJsonSchema;
export type BasicType = IJsonSchema;
export type JsonSchema = IJsonSchema;