From e2414c12383c3f05f0d8e4df8c035cd08f38fbe2 Mon Sep 17 00:00:00 2001 From: ShineKOT <1917095344@qq.com> Date: Wed, 14 May 2025 09:46:25 +0800 Subject: [PATCH 1/2] =?UTF-8?q?fix:=20=E4=BF=AE=E5=A4=8DAI=E4=BB=A3?= =?UTF-8?q?=E7=A0=81=E7=BC=96=E8=BE=91=E5=99=A8=E5=BC=82=E5=B8=B8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../src/module/custom-language-theme/custom-language-theme.ts | 2 +- packages/ai-code/src/monaco-editor/monaco-editor.tsx | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/ai-code/src/module/custom-language-theme/custom-language-theme.ts b/packages/ai-code/src/module/custom-language-theme/custom-language-theme.ts index 4a3e1e9e..d552579c 100644 --- a/packages/ai-code/src/module/custom-language-theme/custom-language-theme.ts +++ b/packages/ai-code/src/module/custom-language-theme/custom-language-theme.ts @@ -14,7 +14,7 @@ export class CustomLanguageTheme { * @type {string} * @memberof CustomTheme */ - themeName: string = ''; + themeName: string = 'vs-dark'; /** * Creates an instance of CompletionItem. diff --git a/packages/ai-code/src/monaco-editor/monaco-editor.tsx b/packages/ai-code/src/monaco-editor/monaco-editor.tsx index 4c1b1e67..dc095f79 100644 --- a/packages/ai-code/src/monaco-editor/monaco-editor.tsx +++ b/packages/ai-code/src/monaco-editor/monaco-editor.tsx @@ -185,7 +185,7 @@ export const IBizAICode = defineComponent({ ); if (result.ok && result.data) data = result.data; } catch (error) { - ibiz.message.error(error as string); + ibiz.log.warn(error as string); } } return data; -- Gitee From f87f797e71fa22965d456796cb65f4d70b5da6d6 Mon Sep 17 00:00:00 2001 From: ShineKOT <1917095344@qq.com> Date: Wed, 14 May 2025 09:47:19 +0800 Subject: [PATCH 2/2] =?UTF-8?q?feat:=20=E6=9B=B4=E6=96=B0=E4=BE=9D?= =?UTF-8?q?=E8=B5=96?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- packages/model-design/package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/model-design/package.json b/packages/model-design/package.json index 5b59352c..1b9869b9 100644 --- a/packages/model-design/package.json +++ b/packages/model-design/package.json @@ -33,7 +33,7 @@ "publish:npm": "npm run build && npm publish --access public --registry=http://172.16.240.221:8081/repository/local/" }, "dependencies": { - "@ibiz-template-plugin/runtime-model": "0.2.1", + "@ibiz-template-plugin/runtime-model": "0.2.2", "@ibiz-template/core": "0.7.39-alpha.2", "@ibiz-template/model-helper": "0.7.39-alpha.2", "@ibiz-template/runtime": "0.7.39-alpha.2", -- Gitee