@vc-shell/framework 2.4.0-pr290.ccaa553 → 2.4.0-pr292.5ff2800
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/dist/ai-agent/index.js +2 -2
- package/dist/chunks/{VcAiAgentPanel.vue_vue_type_script_setup_true_lang-Cm_izaFs.js → VcAiAgentPanel.vue_vue_type_script_setup_true_lang-AGljCkDc.js} +375 -366
- package/dist/chunks/VcAiAgentPanel.vue_vue_type_script_setup_true_lang-AGljCkDc.js.map +1 -0
- package/dist/chunks/{VcScheduler.vue_vue_type_script_setup_true_lang-CbGnJDiN.js → VcScheduler.vue_vue_type_script_setup_true_lang-BJ-Srwxo.js} +3062 -3034
- package/dist/chunks/{VcScheduler.vue_vue_type_script_setup_true_lang-CbGnJDiN.js.map → VcScheduler.vue_vue_type_script_setup_true_lang-BJ-Srwxo.js.map} +1 -1
- package/dist/chunks/{index-C-SEYj46.js → index-DuNGRQBR.js} +1 -1
- package/dist/chunks/{index-C-SEYj46.js.map → index-DuNGRQBR.js.map} +1 -1
- package/dist/core/plugins/ai-agent/services/ai-agent-service.d.ts.map +1 -1
- package/dist/core/plugins/ai-agent/services/message-transport.d.ts +2 -0
- package/dist/core/plugins/ai-agent/services/message-transport.d.ts.map +1 -1
- package/dist/core/plugins/ai-agent/types.d.ts +1 -1
- package/dist/core/plugins/ai-agent/types.d.ts.map +1 -1
- package/dist/framework.js +9 -9
- package/dist/index.css +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/dist/ui/components/organisms/vc-scheduler/VcScheduler.vue.d.ts.map +1 -1
- package/dist/ui/components/organisms/vc-scheduler/_internal/month/MonthEventBar.vue.d.ts.map +1 -1
- package/dist/ui/components/organisms/vc-scheduler/_internal/month/MonthMorePopover.vue.d.ts.map +1 -1
- package/dist/ui/components/organisms/vc-scheduler/_internal/month/MonthWeekRow.vue.d.ts.map +1 -1
- package/dist/ui/components/organisms/vc-scheduler/_internal/views/SchedulerTimelineView.vue.d.ts.map +1 -1
- package/dist/ui/components/organisms/vc-scheduler/composables/useTimelineTimeGrid.d.ts +2 -0
- package/dist/ui/components/organisms/vc-scheduler/composables/useTimelineTimeGrid.d.ts.map +1 -1
- package/dist/ui/index.js +1 -1
- package/package.json +4 -4
- package/dist/chunks/VcAiAgentPanel.vue_vue_type_script_setup_true_lang-Cm_izaFs.js.map +0 -1
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { inject as c, computed as b, watch as m, onUnmounted as _ } from "vue";
|
|
2
2
|
import { A as v, B as y, c as p } from "./VcAiAgentPanel.vue_vue_type_style_index_0_lang-DrGobYkj.js";
|
|
3
|
-
import { D as C, A as x } from "./VcAiAgentPanel.vue_vue_type_script_setup_true_lang-
|
|
3
|
+
import { D as C, A as x } from "./VcAiAgentPanel.vue_vue_type_script_setup_true_lang-AGljCkDc.js";
|
|
4
4
|
const s = p("use-ai-agent-context");
|
|
5
5
|
function D(e) {
|
|
6
6
|
return Array.isArray(e.value);
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index-
|
|
1
|
+
{"version":3,"file":"index-DuNGRQBR.js","sources":["../../core/plugins/ai-agent/composables/useAiAgentContext.ts","../../core/plugins/ai-agent/index.ts"],"sourcesContent":["import { inject, computed, watch, onUnmounted, type Ref } from \"vue\";\nimport { AiAgentServiceKey } from \"@framework/injection-keys\";\nimport { BladeDescriptorKey } from \"@core/blade-navigation/types\";\nimport type { IAiAgentServiceInternal } from \"@core/plugins/ai-agent/services/ai-agent-service\";\nimport type { UseAiAgentContextOptions, AiAgentContextType } from \"@core/plugins/ai-agent/types\";\nimport { createLogger } from \"@core/utilities\";\n\nconst logger = createLogger(\"use-ai-agent-context\");\n\n/**\n * Checks if the ref value is an array\n */\nfunction isArrayRef<T>(dataRef: Ref<T> | Ref<T[]>): dataRef is Ref<T[]> {\n return Array.isArray(dataRef.value);\n}\n\n/**\n * Normalizes any ref value to an array for sending to the AI agent\n */\nfunction normalizeToArray<T>(value: T | T[]): T[] {\n if (Array.isArray(value)) {\n return value;\n }\n return value != null ? [value] : [];\n}\n\n/**\n * Composable for binding blade data to AI agent context.\n *\n * Sends data updates to the AI agent when dataRef changes and normalizes\n * single objects to arrays for the agent protocol.\n *\n * @example List blade (array of selected items)\n * ```typescript\n * const { selectedItems } = useTableSelection<Offer>();\n *\n * useAiAgentContext({ dataRef: selectedItems });\n * ```\n *\n * @example Details blade (single object - automatically wrapped in array)\n * ```typescript\n * const offer = ref<Offer>({});\n *\n * useAiAgentContext({ dataRef: offer });\n * ```\n *\n * @example With custom suggestions\n * ```typescript\n * useAiAgentContext({\n * dataRef: offer,\n * suggestions: [\n * {\n * id: \"translate\",\n * title: \"Translate description\",\n * icon: \"translation\",\n * iconColor: \"#FF4A4A\",\n * prompt: \"Translate the offer description to English\"\n * },\n * ],\n * });\n * ```\n */\nexport function useAiAgentContext<\n T extends {\n id?: string | undefined;\n objectType?: string | undefined;\n name?: string | undefined;\n },\n>(options: UseAiAgentContextOptions<T>): void {\n const { dataRef, suggestions } = options;\n\n // Try to get the service (may not be available if plugin not installed)\n const service = inject(AiAgentServiceKey) as IAiAgentServiceInternal | undefined;\n\n // Get current blade descriptor to identify which blade this context belongs to\n const bladeDescriptor = inject(BladeDescriptorKey, null);\n const bladeId = computed(() => bladeDescriptor?.value?.id);\n\n // If service is not available, nothing to bind\n if (!service) {\n logger.debug(\"AiAgentService not available, context binding disabled\");\n return;\n }\n\n // Determine context type based on dataRef type\n // Array ref = list blade (multiple selected items)\n // Single object ref = details blade (single item being edited)\n const detectedContextType: AiAgentContextType = isArrayRef(dataRef) ? \"list\" : \"details\";\n\n // Set context data in service (items, contextType, and suggestions)\n // Always sends an array to the service, normalizing single objects\n // Context is bound to specific blade ID\n const updateContextData = () => {\n const raw = normalizeToArray(dataRef.value);\n const items =\n detectedContextType === \"details\"\n ? raw.map((item) => ({ ...item }))\n : raw.map((item) => ({ id: item.id, objectType: item.objectType, name: item.name }));\n service._setContextData(items, detectedContextType, suggestions, bladeId.value);\n logger.debug(`Context updated: ${items.length} items, type: ${detectedContextType}, blade: ${bladeId.value}`);\n };\n\n // Watch dataRef for changes and update context\n const stopWatch = watch(dataRef, updateContextData, { deep: true, immediate: true });\n\n // Cleanup on unmount\n onUnmounted(() => {\n stopWatch();\n // Clear context for this specific blade when component unmounts\n service._setContextData([], \"list\", undefined, bladeId.value);\n logger.debug(`Context cleared on unmount for blade: ${bladeId.value}`);\n });\n}\n","import type { App } from \"vue\";\r\nimport type { IAiAgentConfig } from \"@core/plugins/ai-agent/types\";\r\nimport { DEFAULT_AI_AGENT_CONFIG, AI_AGENT_URL_ENV_KEY } from \"@core/plugins/ai-agent/constants\";\r\nimport { createLogger } from \"@core/utilities\";\r\n\r\nconst logger = createLogger(\"ai-agent-plugin\");\r\n\r\n/**\r\n * Options for the AI Agent Plugin\r\n */\r\nexport interface AiAgentPluginOptions {\r\n /**\r\n * AI Agent configuration.\r\n * URL can also be set via APP_AI_AGENT_URL environment variable.\r\n */\r\n config?: Partial<IAiAgentConfig>;\r\n\r\n /**\r\n * Whether to add the AI button to all blade toolbars automatically.\r\n * Default: true\r\n */\r\n addGlobalToolbarButton?: boolean;\r\n}\r\n\r\n/**\r\n * Vue plugin for AI Agent integration.\r\n *\r\n * @example\r\n * ```typescript\r\n * import { createApp } from \"vue\";\r\n * import { aiAgentPlugin } from \"@vc-shell/framework\";\r\n *\r\n * const app = createApp(App);\r\n *\r\n * // Install with options\r\n * app.use(aiAgentPlugin, {\r\n * config: {\r\n * title: \"AI Assistant\",\r\n * width: 400,\r\n * },\r\n * addGlobalToolbarButton: true,\r\n * });\r\n * ```\r\n */\r\nexport const aiAgentPlugin = {\r\n install(app: App, options: AiAgentPluginOptions = {}) {\r\n const { config = {}, addGlobalToolbarButton = true } = options;\r\n\r\n // Get URL from environment variable if not provided\r\n let url = config.url || \"\";\r\n if (!url && typeof import.meta !== \"undefined\" && import.meta.env) {\r\n url = import.meta.env[AI_AGENT_URL_ENV_KEY] || \"\";\r\n }\r\n\r\n // Skip installation if no URL configured\r\n if (!url) {\r\n logger.info(\r\n \"AI Agent plugin skipped: no URL configured. Set APP_AI_AGENT_URL env variable or pass config.url option.\",\r\n );\r\n return;\r\n }\r\n\r\n // Merge config with defaults\r\n const finalConfig: IAiAgentConfig = {\r\n ...DEFAULT_AI_AGENT_CONFIG,\r\n ...config,\r\n url,\r\n };\r\n\r\n // Store config in app global properties for access during service creation\r\n app.config.globalProperties.$aiAgentConfig = finalConfig;\r\n app.provide(\"aiAgentConfig\", finalConfig);\r\n app.provide(\"aiAgentAddGlobalToolbarButton\", addGlobalToolbarButton);\r\n\r\n logger.info(`AI Agent plugin installed. URL: ${url}, addGlobalToolbarButton: ${addGlobalToolbarButton}`);\r\n },\r\n};\r\n\r\n// Re-export all types\r\nexport * from \"@core/plugins/ai-agent/types\";\r\nexport * from \"@core/plugins/ai-agent/constants\";\r\n\r\n// Re-export composables\r\nexport {\r\n useAiAgent,\r\n provideAiAgentService,\r\n createAiAgentToolbarButton,\r\n} from \"@core/plugins/ai-agent/composables/useAiAgent\";\r\nexport type { UseAiAgentReturn, ProvideAiAgentServiceOptions } from \"@core/plugins/ai-agent/composables/useAiAgent\";\r\n\r\nexport { useAiAgentContext } from \"@core/plugins/ai-agent/composables/useAiAgentContext\";\r\n\r\n// Re-export components\r\nexport { VcAiAgentPanel } from \"@core/plugins/ai-agent/components\";\r\n\r\n// Re-export service types\r\nexport type {\r\n IAiAgentServiceInternal,\r\n CreateAiAgentServiceOptions,\r\n} from \"@core/plugins/ai-agent/services/ai-agent-service\";\r\n"],"names":["logger","createLogger","isArrayRef","dataRef","normalizeToArray","value","useAiAgentContext","options","suggestions","service","inject","AiAgentServiceKey","bladeDescriptor","BladeDescriptorKey","bladeId","computed","detectedContextType","stopWatch","watch","raw","items","item","onUnmounted","aiAgentPlugin","app","config","addGlobalToolbarButton","url","__vite_import_meta_env__","AI_AGENT_URL_ENV_KEY","finalConfig","DEFAULT_AI_AGENT_CONFIG"],"mappings":";;;AAOA,MAAMA,IAASC,EAAa,sBAAsB;AAKlD,SAASC,EAAcC,GAAiD;AACtE,SAAO,MAAM,QAAQA,EAAQ,KAAK;AACpC;AAKA,SAASC,EAAoBC,GAAqB;AAChD,SAAI,MAAM,QAAQA,CAAK,IACdA,IAEFA,KAAS,OAAO,CAACA,CAAK,IAAI,CAAA;AACnC;AAsCO,SAASC,EAMdC,GAA4C;AAC5C,QAAM,EAAE,SAAAJ,GAAS,aAAAK,EAAA,IAAgBD,GAG3BE,IAAUC,EAAOC,CAAiB,GAGlCC,IAAkBF,EAAOG,GAAoB,IAAI,GACjDC,IAAUC,EAAS,MAAMH,GAAiB,OAAO,EAAE;AAGzD,MAAI,CAACH,GAAS;AACZT,IAAAA,EAAO,MAAM,wDAAwD;AACrE;AAAA,EACF;AAKA,QAAMgB,IAA0Cd,EAAWC,CAAO,IAAI,SAAS,WAgBzEc,IAAYC,EAAMf,GAXE,MAAM;AAC9B,UAAMgB,IAAMf,EAAiBD,EAAQ,KAAK,GACpCiB,IACJJ,MAAwB,YACpBG,EAAI,IAAI,CAACE,OAAU,EAAE,GAAGA,IAAO,IAC/BF,EAAI,IAAI,CAACE,OAAU,EAAE,IAAIA,EAAK,IAAI,YAAYA,EAAK,YAAY,MAAMA,EAAK,KAAA,EAAO;AACvF,IAAAZ,EAAQ,gBAAgBW,GAAOJ,GAAqBR,GAAaM,EAAQ,KAAK,GAC9Ed,EAAO,MAAM,oBAAoBoB,EAAM,MAAM,iBAAiBJ,CAAmB,YAAYF,EAAQ,KAAK,EAAE;AAAA,EAC9G,GAGoD,EAAE,MAAM,IAAM,WAAW,IAAM;AAGnF,EAAAQ,EAAY,MAAM;AAChB,IAAAL,EAAA,GAEAR,EAAQ,gBAAgB,CAAA,GAAI,QAAQ,QAAWK,EAAQ,KAAK,GAC5Dd,EAAO,MAAM,yCAAyCc,EAAQ,KAAK,EAAE;AAAA,EACvE,CAAC;AACH;6EC3GMd,IAASC,EAAa,iBAAiB,GAuChCsB,IAAgB;AAAA,EAC3B,QAAQC,GAAUjB,IAAgC,IAAI;AACpD,UAAM,EAAE,QAAAkB,IAAS,CAAA,GAAI,wBAAAC,IAAyB,OAASnB;AAGvD,QAAIoB,IAAMF,EAAO,OAAO;AAMxB,QALI,CAACE,KAAO,OAAO,cAAgB,OAAeC,MAChDD,IAAMC,EAAgBC,CAAoB,KAAK,KAI7C,CAACF,GAAK;AACR,MAAA3B,EAAO;AAAA,QACL;AAAA,MAAA;AAEF;AAAA,IACF;AAGA,UAAM8B,IAA8B;AAAA,MAClC,GAAGC;AAAA,MACH,GAAGN;AAAA,MACH,KAAAE;AAAA,IAAA;AAIF,IAAAH,EAAI,OAAO,iBAAiB,iBAAiBM,GAC7CN,EAAI,QAAQ,iBAAiBM,CAAW,GACxCN,EAAI,QAAQ,iCAAiCE,CAAsB,GAEnE1B,EAAO,KAAK,mCAAmC2B,CAAG,6BAA6BD,CAAsB,EAAE;AAAA,EACzG;AACF;"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ai-agent-service.d.ts","sourceRoot":"","sources":["../../../../../core/plugins/ai-agent/services/ai-agent-service.ts"],"names":[],"mappings":"AAAA,OAAO,EAAwB,KAAK,UAAU,EAAE,MAAM,KAAK,CAAC;AAE5D,OAAO,KAAK,EACV,eAAe,EACf,cAAc,EAGd,WAAW,EACX,kBAAkB,EAClB,oBAAoB,EACpB,mBAAmB,EACpB,MAAM,8BAA8B,CAAC;AAQtC;;GAEG;AACH,MAAM,WAAW,2BAA2B;IAC1C,+CAA+C;IAC/C,UAAU,EAAE,MAAM,mBAAmB,GAAG,SAAS,CAAC;IAClD,4CAA4C;IAC5C,WAAW,EAAE,MAAM,oBAAoB,GAAG,IAAI,CAAC;IAC/C,kCAAkC;IAClC,YAAY,EAAE,MAAM,MAAM,CAAC;IAC3B,+DAA+D;IAC/D,WAAW,CAAC,EAAE,MAAM,OAAO,CAAC,MAAM,GAAG,IAAI,CAAC,CAAC;IAC3C,oCAAoC;IACpC,eAAe,CAAC,EAAE,CAAC,SAAS,EAAE,MAAM,EAAE,KAAK,CAAC,EAAE,MAAM,EAAE,OAAO,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,KAAK,IAAI,CAAC;IACjG,4BAA4B;IAC5B,aAAa,CAAC,EAAE,OAAO,CAAC,cAAc,CAAC,CAAC;IACxC,2EAA2E;IAC3E,UAAU,CAAC,EAAE,OAAO,CAAC;CACtB;AAED;;GAEG;AACH,MAAM,WAAW,uBAAwB,SAAQ,eAAe;IAC9D,yDAAyD;IACzD,SAAS,EAAE,UAAU,CAAC,iBAAiB,GAAG,IAAI,CAAC,CAAC;IAChD,qDAAqD;IACrD,aAAa,EAAE,CAAC,MAAM,EAAE,iBAAiB,GAAG,IAAI,KAAK,IAAI,CAAC;IAC1D,6CAA6C;IAC7C,eAAe,EAAE,MAAM,IAAI,CAAC;IAC5B,4CAA4C;IAC5C,cAAc,EAAE,MAAM,IAAI,CAAC;IAC3B,oEAAoE;IACpE,eAAe,EAAE,CACf,KAAK,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,EAAE,EAChC,IAAI,EAAE,kBAAkB,EACxB,WAAW,CAAC,EAAE,WAAW,EAAE,EAC3B,OAAO,CAAC,EAAE,MAAM,KACb,IAAI,CAAC;CACX;AAED;;GAEG;AACH,wBAAgB,oBAAoB,CAAC,OAAO,EAAE,2BAA2B,GAAG,uBAAuB,
|
|
1
|
+
{"version":3,"file":"ai-agent-service.d.ts","sourceRoot":"","sources":["../../../../../core/plugins/ai-agent/services/ai-agent-service.ts"],"names":[],"mappings":"AAAA,OAAO,EAAwB,KAAK,UAAU,EAAE,MAAM,KAAK,CAAC;AAE5D,OAAO,KAAK,EACV,eAAe,EACf,cAAc,EAGd,WAAW,EACX,kBAAkB,EAClB,oBAAoB,EACpB,mBAAmB,EACpB,MAAM,8BAA8B,CAAC;AAQtC;;GAEG;AACH,MAAM,WAAW,2BAA2B;IAC1C,+CAA+C;IAC/C,UAAU,EAAE,MAAM,mBAAmB,GAAG,SAAS,CAAC;IAClD,4CAA4C;IAC5C,WAAW,EAAE,MAAM,oBAAoB,GAAG,IAAI,CAAC;IAC/C,kCAAkC;IAClC,YAAY,EAAE,MAAM,MAAM,CAAC;IAC3B,+DAA+D;IAC/D,WAAW,CAAC,EAAE,MAAM,OAAO,CAAC,MAAM,GAAG,IAAI,CAAC,CAAC;IAC3C,oCAAoC;IACpC,eAAe,CAAC,EAAE,CAAC,SAAS,EAAE,MAAM,EAAE,KAAK,CAAC,EAAE,MAAM,EAAE,OAAO,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,KAAK,IAAI,CAAC;IACjG,4BAA4B;IAC5B,aAAa,CAAC,EAAE,OAAO,CAAC,cAAc,CAAC,CAAC;IACxC,2EAA2E;IAC3E,UAAU,CAAC,EAAE,OAAO,CAAC;CACtB;AAED;;GAEG;AACH,MAAM,WAAW,uBAAwB,SAAQ,eAAe;IAC9D,yDAAyD;IACzD,SAAS,EAAE,UAAU,CAAC,iBAAiB,GAAG,IAAI,CAAC,CAAC;IAChD,qDAAqD;IACrD,aAAa,EAAE,CAAC,MAAM,EAAE,iBAAiB,GAAG,IAAI,KAAK,IAAI,CAAC;IAC1D,6CAA6C;IAC7C,eAAe,EAAE,MAAM,IAAI,CAAC;IAC5B,4CAA4C;IAC5C,cAAc,EAAE,MAAM,IAAI,CAAC;IAC3B,oEAAoE;IACpE,eAAe,EAAE,CACf,KAAK,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,EAAE,EAChC,IAAI,EAAE,kBAAkB,EACxB,WAAW,CAAC,EAAE,WAAW,EAAE,EAC3B,OAAO,CAAC,EAAE,MAAM,KACb,IAAI,CAAC;CACX;AAED;;GAEG;AACH,wBAAgB,oBAAoB,CAAC,OAAO,EAAE,2BAA2B,GAAG,uBAAuB,CA0JlG"}
|
|
@@ -4,6 +4,8 @@ export interface MessageTransportOptions {
|
|
|
4
4
|
getConfig: () => IAiAgentConfig;
|
|
5
5
|
isEmbedded: boolean;
|
|
6
6
|
navigateToBlade?: (bladeName: string, param?: string, options?: Record<string, unknown>) => void;
|
|
7
|
+
/** Invoked on a CLOSE_PANEL message — the chatbot's only way to close the panel it has focus in. */
|
|
8
|
+
closePanel?: () => void;
|
|
7
9
|
}
|
|
8
10
|
export interface MessageTransport {
|
|
9
11
|
iframeRef: ShallowRef<HTMLIFrameElement | null>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"message-transport.d.ts","sourceRoot":"","sources":["../../../../../core/plugins/ai-agent/services/message-transport.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,GAAG,EAAc,KAAK,UAAU,EAAE,MAAM,KAAK,CAAC;AAEvD,OAAO,KAAK,EACV,cAAc,EACd,eAAe,EAIhB,MAAM,8BAA8B,CAAC;AAItC,MAAM,WAAW,uBAAuB;IACtC,SAAS,EAAE,MAAM,cAAc,CAAC;IAChC,UAAU,EAAE,OAAO,CAAC;IACpB,eAAe,CAAC,EAAE,CAAC,SAAS,EAAE,MAAM,EAAE,KAAK,CAAC,EAAE,MAAM,EAAE,OAAO,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,KAAK,IAAI,CAAC;
|
|
1
|
+
{"version":3,"file":"message-transport.d.ts","sourceRoot":"","sources":["../../../../../core/plugins/ai-agent/services/message-transport.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,GAAG,EAAc,KAAK,UAAU,EAAE,MAAM,KAAK,CAAC;AAEvD,OAAO,KAAK,EACV,cAAc,EACd,eAAe,EAIhB,MAAM,8BAA8B,CAAC;AAItC,MAAM,WAAW,uBAAuB;IACtC,SAAS,EAAE,MAAM,cAAc,CAAC;IAChC,UAAU,EAAE,OAAO,CAAC;IACpB,eAAe,CAAC,EAAE,CAAC,SAAS,EAAE,MAAM,EAAE,KAAK,CAAC,EAAE,MAAM,EAAE,OAAO,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,KAAK,IAAI,CAAC;IACjG,oGAAoG;IACpG,UAAU,CAAC,EAAE,MAAM,IAAI,CAAC;CACzB;AAED,MAAM,WAAW,gBAAgB;IAC/B,SAAS,EAAE,UAAU,CAAC,iBAAiB,GAAG,IAAI,CAAC,CAAC;IAChD,kBAAkB,EAAE,UAAU,CAAC,OAAO,GAAG,CAAC,OAAO,CAAC,CAAC,CAAC;IACpD,oBAAoB,EAAE,UAAU,CAAC,OAAO,GAAG,CAAC,OAAO,CAAC,CAAC,CAAC;IACtD,YAAY,EAAE,CAAC,MAAM,EAAE,iBAAiB,GAAG,IAAI,KAAK,IAAI,CAAC;IACzD,YAAY,EAAE,CAAC,OAAO,EAAE;QAAE,IAAI,EAAE,MAAM,CAAC;QAAC,OAAO,CAAC,EAAE,OAAO,CAAA;KAAE,KAAK,IAAI,CAAC;IACrE,YAAY,EAAE,CAAC,OAAO,EAAE;QAAE,IAAI,EAAE,MAAM,CAAC;QAAC,OAAO,CAAC,EAAE,OAAO,CAAA;KAAE,KAAK,IAAI,CAAC;IACrE,cAAc,EAAE,MAAM,IAAI,CAAC;IAC3B,aAAa,EAAE,MAAM,IAAI,CAAC;IAC1B,WAAW,EAAE,CAAC,OAAO,EAAE,MAAM,IAAI,KAAK,MAAM,IAAI,CAAC;IACjD,SAAS,EAAE,CAAC,OAAO,EAAE,CAAC,KAAK,EAAE,eAAe,KAAK,IAAI,KAAK,MAAM,IAAI,CAAC;CACtE;AAED,wBAAgB,sBAAsB,CAAC,OAAO,EAAE,uBAAuB,GAAG,gBAAgB,CAoLzF"}
|
|
@@ -142,7 +142,7 @@ export type ShellToChatMessageType = "INIT_CONTEXT" | "UPDATE_CONTEXT";
|
|
|
142
142
|
/**
|
|
143
143
|
* Message types sent from Chatbot to Shell
|
|
144
144
|
*/
|
|
145
|
-
export type ChatToShellMessageType = "CHAT_READY" | "NAVIGATE_TO_APP" | "EXPAND_IN_CHAT" | "SHOW_MORE";
|
|
145
|
+
export type ChatToShellMessageType = "CHAT_READY" | "NAVIGATE_TO_APP" | "EXPAND_IN_CHAT" | "SHOW_MORE" | "CLOSE_PANEL";
|
|
146
146
|
/**
|
|
147
147
|
* Combined message types
|
|
148
148
|
*/
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../../core/plugins/ai-agent/types.ts"],"names":[],"mappings":"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
|
|
1
|
+
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../../core/plugins/ai-agent/types.ts"],"names":[],"mappings":"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"}
|
package/dist/framework.js
CHANGED
|
@@ -2,16 +2,16 @@ import { b as Da, c as ya } from "./chunks/vendor-vueuse-core-BFa9je5E.js";
|
|
|
2
2
|
import { t as at, v as oe, w as q, x as X, _ as $, y as be, z as Ba, I as bt, d as K, b as pe, l as Ma, A as ka, C as Va, D as Ua, V as Ee, E as Fa, F as Wa, G as Ha, H as Ga, J as xa, K as $a, L as Ka, M as za, N as qa } from "./chunks/VcScheduler.vue_vue_type_style_index_0_lang-BSvjI-39.js";
|
|
3
3
|
import { O as xl, B as $l, P as Kl, Q as zl, R as ql, S as Yl, T as jl, U as Zl, W as Xl, a as Jl, c as Ql, e as eu, f as tu, g as au, h as nu, i as su, j as ou, X as ru, Y as iu, Z as lu, $ as uu, a0 as du, a1 as cu, a2 as Eu, a3 as fu, a4 as mu, a5 as gu, a6 as Su, a7 as Au, a8 as pu, a9 as Tu, aa as hu, ab as Lu, p as Ou, ac as Ru, ad as _u, ae as Iu, af as vu, ag as wu, ah as Cu, ai as bu, aj as Pu, ak as Nu, al as Du, am as yu, u as Bu, k as Mu, r as ku, an as Vu, m as Uu, n as Fu, ao as Wu, o as Hu, ap as Gu, aq as xu, ar as $u } from "./chunks/VcScheduler.vue_vue_type_style_index_0_lang-BSvjI-39.js";
|
|
4
4
|
import { getCurrentScope as Pt, onScopeDispose as Nt, computed as w, inject as Q, watch as ne, defineComponent as G, openBlock as C, createBlock as D, createSlots as Oe, withCtx as p, renderSlot as Y, createElementVNode as V, normalizeClass as Ya, createElementBlock as H, Fragment as se, createVNode as _, unref as r, createTextVNode as k, toDisplayString as y, shallowReactive as ja, ref as b, readonly as Je, onMounted as Re, onBeforeMount as Za, onBeforeUnmount as Xa, onUnmounted as Ja, provide as Dt, toValue as yt, isRef as Bt, normalizeStyle as Mt, createCommentVNode as z, withDirectives as Qa, withModifiers as We, reactive as le, createApp as en, nextTick as Pe, renderList as Ue, withKeys as nt, mergeProps as ie, getCurrentInstance as tn, warn as an, h as te, toRaw as nn } from "vue";
|
|
5
|
-
import { b5 as me, b6 as sn, b7 as on, b8 as kt, b9 as He, ba as rn, bb as ln, ao as un, bc as Ge, bd as dn, be as cn, bf as Vt, Q as Ut, $ as En, a8 as ge, aa as st, a6 as xe, aB as fn, a0 as mn, av as gn, N as _e, ag as Ft, P as Sn, bg as An, aC as dt, bh as pn, bi as Tn } from "./chunks/VcScheduler.vue_vue_type_script_setup_true_lang-
|
|
6
|
-
import { _ as zu, a as qu, b as Yu, c as ju, d as Zu, e as Xu, f as Ju, g as Qu, h as ed, i as td, j as ad, bj as nd, bk as sd, C as od, bl as rd, bm as id, bn as ld, k as ud, bo as dd, bp as cd, S as Ed, bq as fd, br as md, l as gd, m as Sd, n as Ad, o as pd, p as Td, q as hd, T as Ld, r as Od, s as Rd, t as _d, u as Id, v as vd, w as wd, x as Cd, bs as bd, bt as Pd, V as Nd, y as Dd, z as yd, A as Bd, B as Md, D as kd, E as Vd, F as Ud, G as Fd, H as Wd, I as Hd, J as Gd, K as xd, L as $d, M as Kd, O as zd, bu as qd, bu as Yd, bv as jd, R as Zd, U as Xd, W as Jd, X as Qd, Y as ec, Z as tc, a1 as ac, a2 as nc, a3 as sc, a4 as oc, a5 as rc, a7 as ic, a9 as lc, ab as uc, ac as dc, ad as cc, ae as Ec, af as fc, ah as mc, ai as gc, aj as Sc, ak as Ac, al as pc, am as Tc, an as hc, ap as Lc, aq as Oc, ar as Rc, as as _c, at as Ic, au as vc, aw as wc, ax as Cc, ay as bc, az as Pc, aA as Nc, aD as Dc, aE as yc, bw as Bc, aF as Mc, bx as kc, by as Vc, bz as Uc, bA as Fc, bB as Wc, bC as Hc, bD as Gc, bE as xc, bF as $c, bG as Kc, bH as zc, bI as qc, bJ as Yc, bK as jc, bL as Zc, bM as Xc, bN as Jc, aG as Qc, aH as eE, aI as tE, bO as aE, aJ as nE, aK as sE, bP as oE, bQ as rE, aL as iE, aM as lE, aN as uE, aO as dE, bR as cE, aP as EE, aQ as fE, aR as mE, bS as gE, aS as SE, bT as AE, aT as pE, aU as TE, aV as hE, bU as LE, aW as OE, aX as RE, aY as _E, aZ as IE, a_ as vE, a$ as wE, b0 as CE, b1 as bE, b2 as PE, b3 as NE, b4 as DE, aF as yE } from "./chunks/VcScheduler.vue_vue_type_script_setup_true_lang-
|
|
5
|
+
import { b5 as me, b6 as sn, b7 as on, b8 as kt, b9 as He, ba as rn, bb as ln, ao as un, bc as Ge, bd as dn, be as cn, bf as Vt, Q as Ut, $ as En, a8 as ge, aa as st, a6 as xe, aB as fn, a0 as mn, av as gn, N as _e, ag as Ft, P as Sn, bg as An, aC as dt, bh as pn, bi as Tn } from "./chunks/VcScheduler.vue_vue_type_script_setup_true_lang-BJ-Srwxo.js";
|
|
6
|
+
import { _ as zu, a as qu, b as Yu, c as ju, d as Zu, e as Xu, f as Ju, g as Qu, h as ed, i as td, j as ad, bj as nd, bk as sd, C as od, bl as rd, bm as id, bn as ld, k as ud, bo as dd, bp as cd, S as Ed, bq as fd, br as md, l as gd, m as Sd, n as Ad, o as pd, p as Td, q as hd, T as Ld, r as Od, s as Rd, t as _d, u as Id, v as vd, w as wd, x as Cd, bs as bd, bt as Pd, V as Nd, y as Dd, z as yd, A as Bd, B as Md, D as kd, E as Vd, F as Ud, G as Fd, H as Wd, I as Hd, J as Gd, K as xd, L as $d, M as Kd, O as zd, bu as qd, bu as Yd, bv as jd, R as Zd, U as Xd, W as Jd, X as Qd, Y as ec, Z as tc, a1 as ac, a2 as nc, a3 as sc, a4 as oc, a5 as rc, a7 as ic, a9 as lc, ab as uc, ac as dc, ad as cc, ae as Ec, af as fc, ah as mc, ai as gc, aj as Sc, ak as Ac, al as pc, am as Tc, an as hc, ap as Lc, aq as Oc, ar as Rc, as as _c, at as Ic, au as vc, aw as wc, ax as Cc, ay as bc, az as Pc, aA as Nc, aD as Dc, aE as yc, bw as Bc, aF as Mc, bx as kc, by as Vc, bz as Uc, bA as Fc, bB as Wc, bC as Hc, bD as Gc, bE as xc, bF as $c, bG as Kc, bH as zc, bI as qc, bJ as Yc, bK as jc, bL as Zc, bM as Xc, bN as Jc, aG as Qc, aH as eE, aI as tE, bO as aE, aJ as nE, aK as sE, bP as oE, bQ as rE, aL as iE, aM as lE, aN as uE, aO as dE, bR as cE, aP as EE, aQ as fE, aR as mE, bS as gE, aS as SE, bT as AE, aT as pE, aU as TE, aV as hE, bU as LE, aW as OE, aX as RE, aY as _E, aZ as IE, a_ as vE, a$ as wE, b0 as CE, b1 as bE, b2 as PE, b3 as NE, b4 as DE, aF as yE } from "./chunks/VcScheduler.vue_vue_type_script_setup_true_lang-BJ-Srwxo.js";
|
|
7
7
|
import { _ as hn } from "./chunks/vendor-cypress-signalr-mock-itnm2wpA.js";
|
|
8
8
|
import { c as U, b as Ln, d as On, i as Wt, S as Rn, W as Ht, B as Gt, h as _n, j as xt, m as In, k as $t, l as vn, _ as wn, L as Cn, I as bn, n as Pn, o as Nn, p as Dn, q as yn, r as Bn, T as Mn, s as kn, t as Vn, v as Un, N as Fn } from "./chunks/VcAiAgentPanel.vue_vue_type_style_index_0_lang-DrGobYkj.js";
|
|
9
9
|
import { A as ME, w as kE, x as VE, y as UE, z as FE, C as WE, D as HE, F as GE, G as xE, H as $E, e as KE, f as zE, J as qE, K as YE, O as jE, P as ZE, Q as XE, R as JE, U as QE, V as ef, X as tf, Y as af, Z as nf, E as sf, $ as of, a0 as rf, a1 as lf, a2 as uf, a3 as df, a4 as cf, a5 as Ef, a6 as ff, M as mf, a7 as gf, a8 as Sf, a9 as Af, aa as pf, ab as Tf, ac as hf, ad as Lf, ae as Of, a as Rf, af as _f, ag as If, ah as vf, ai as wf, u as Cf, g as bf } from "./chunks/VcAiAgentPanel.vue_vue_type_style_index_0_lang-DrGobYkj.js";
|
|
10
10
|
import { H as Wn, L as Hn } from "./chunks/vendor-microsoft-signalr-Bgpbb4fW.js";
|
|
11
|
-
import { a as Gn } from "./chunks/index-
|
|
12
|
-
import { u as Nf } from "./chunks/index-
|
|
13
|
-
import { p as xn, b as $n, a as Kn, s as zn, d as qn, e as Yn, f as jn, g as ot, h as Zn, i as Xn, j as Jn, k as Qn, l as es, m as ts } from "./chunks/VcAiAgentPanel.vue_vue_type_script_setup_true_lang-
|
|
14
|
-
import { A as yf, D as Bf, E as Mf, H as kf, _ as Vf, c as Uf, n as Ff, o as Wf, q as Hf, r as Gf, t as xf, v as $f, u as Kf, w as zf, x as qf, y as Yf } from "./chunks/VcAiAgentPanel.vue_vue_type_script_setup_true_lang-
|
|
11
|
+
import { a as Gn } from "./chunks/index-DuNGRQBR.js";
|
|
12
|
+
import { u as Nf } from "./chunks/index-DuNGRQBR.js";
|
|
13
|
+
import { p as xn, b as $n, a as Kn, s as zn, d as qn, e as Yn, f as jn, g as ot, h as Zn, i as Xn, j as Jn, k as Qn, l as es, m as ts } from "./chunks/VcAiAgentPanel.vue_vue_type_script_setup_true_lang-AGljCkDc.js";
|
|
14
|
+
import { A as yf, D as Bf, E as Mf, H as kf, _ as Vf, c as Uf, n as Ff, o as Wf, q as Hf, r as Gf, t as xf, v as $f, u as Kf, w as zf, x as qf, y as Yf } from "./chunks/VcAiAgentPanel.vue_vue_type_script_setup_true_lang-AGljCkDc.js";
|
|
15
15
|
import "./chunks/ExtensionPoint.vue_vue_type_style_index_0_lang-B1R06zHa.js";
|
|
16
16
|
import "./chunks/vendor-dompurify-DpIUMBYC.js";
|
|
17
17
|
import { u as ue } from "./chunks/vendor-vue-i18n-LO-EJStU.js";
|
|
@@ -2067,12 +2067,12 @@ function Ho() {
|
|
|
2067
2067
|
hasNotification: (t) => e.hasNotification(t)
|
|
2068
2068
|
});
|
|
2069
2069
|
}
|
|
2070
|
-
const Go = "2.4.0-
|
|
2070
|
+
const Go = "2.4.0-pr292.5ff2800";
|
|
2071
2071
|
function xo() {
|
|
2072
2072
|
return {
|
|
2073
2073
|
version: Go,
|
|
2074
|
-
buildDate: "2026-08-
|
|
2075
|
-
gitHash: "
|
|
2074
|
+
buildDate: "2026-08-12T14:58:56.757Z",
|
|
2075
|
+
gitHash: "5ff2800a9"
|
|
2076
2076
|
};
|
|
2077
2077
|
}
|
|
2078
2078
|
function $o(e = xo()) {
|