@fses/workbench-app 0.2.12 → 0.2.14
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/WORKBENCH-CLOSURE.json +12 -12
- package/dist/{Workspace-DpiZ5Yap.js → Workspace-BJlQDkH9.js} +5574 -5483
- package/dist/canvas/api/index.js +1 -1
- package/dist/{canvasFacade-B0oy__da.js → canvasFacade-B2EHgdqA.js} +1 -1
- package/dist/{cardFactory-CoDF-zsR.js → cardFactory-BK3CA-Gn.js} +240 -189
- package/dist/config/workbenchAppConfig.d.ts +5 -0
- package/dist/extensions/index.js +1 -1
- package/dist/fses-workbench-app.js +52 -51
- package/dist/{index-BsT_8HEV.js → index-CBS49_nQ.js} +256 -281
- package/dist/internal/personal-workbench/fde-skill-cards/runtime/fdeSkillTemplatePageTypes.d.ts +8 -0
- package/dist/internal/personal-workbench/lib/deepAgentApi.d.ts +14 -3
- package/dist/internal/personal-workbench/lib/deepAgentQueueState.d.ts +6 -0
- package/dist/internal/personal-workbench/lib/echartsTemplateAssets.d.ts +25 -0
- package/dist/internal/personal-workbench/lib/workbenchCardRecommendationReturnItemUpsert.d.ts +1 -0
- package/dist/internal/personal-workbench/lib/workbenchChatPendingTurn.d.ts +1 -1
- package/dist/runtime/deep-agent/deepAgentProcessGroups.d.ts +7 -0
- package/dist/runtime/index.js +1 -1
- package/dist/style.css +1 -1
- package/dist/{useWorkbenchRuntime-Ct0HRmOA.js → useWorkbenchRuntime-DLf_FgC7.js} +6305 -6211
- package/dist/version.d.ts +1 -1
- package/dist/{workbenchCustomComponentRegistry-6GHzavdM.js → workbenchCustomComponentRegistry-Bt94Lgko.js} +1 -1
- package/node_modules/@fses/ai-chat/dist/components/FsesAiChat.vue.d.ts +2 -0
- package/node_modules/@fses/ai-chat/dist/composables/useSystemEChartsIcon.d.ts +19 -2
- package/node_modules/@fses/ai-chat/dist/fses-ai-chat.js +4816 -4789
- package/node_modules/@fses/ai-chat/dist/fses-ai-chat.umd.cjs +16 -16
- package/node_modules/@fses/ai-chat/dist/plugin.d.ts +7 -2
- package/node_modules/@fses/ai-chat/dist/style.css +1 -1
- package/node_modules/@fses/ai-chat/package.json +3 -3
- package/node_modules/@fses/workbench-card/package.json +1 -1
- package/package.json +3 -3
|
@@ -1,7 +1,12 @@
|
|
|
1
|
-
import { type App, type InjectionKey } from 'vue';
|
|
1
|
+
import { type App, type InjectionKey, type Ref } from 'vue';
|
|
2
2
|
import type { UseChatOptions } from './composables/types';
|
|
3
|
-
export type FsesAiChatPluginOptions = Pick<UseChatOptions, 'apiBaseUrl' | 'headers' | 'onError' | 'enableChartCards' | 'transport'
|
|
3
|
+
export type FsesAiChatPluginOptions = Pick<UseChatOptions, 'apiBaseUrl' | 'headers' | 'onError' | 'enableChartCards' | 'transport'> & {
|
|
4
|
+
/** 系统 ECharts 模板静态资产 CDN base URL,未配置时推荐区图标使用同源 public path */
|
|
5
|
+
systemEchartsTemplateCdnBaseUrl?: string;
|
|
6
|
+
};
|
|
4
7
|
export declare const FSES_AI_CHAT_CONFIG_KEY: InjectionKey<FsesAiChatPluginOptions>;
|
|
8
|
+
/** 推荐区系统 ECharts 图标 CDN base URL 注入键,由 FsesAiChat 归一化后 provide 给子组件 */
|
|
9
|
+
export declare const SYSTEM_ECHARTS_TEMPLATE_CDN_BASE_URL_KEY: InjectionKey<Readonly<Ref<string>>>;
|
|
5
10
|
export declare const FsesAiChatPlugin: {
|
|
6
11
|
install(app: App, options: FsesAiChatPluginOptions): void;
|
|
7
12
|
};
|