@vc-shell/framework 2.4.0-pr295.d5bed36 → 2.4.0-pr296.cd94f75
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-DKRyBR_M.js → VcAiAgentPanel.vue_vue_type_script_setup_true_lang-bvyt-Rtf.js} +375 -366
- package/dist/chunks/VcAiAgentPanel.vue_vue_type_script_setup_true_lang-bvyt-Rtf.js.map +1 -0
- package/dist/chunks/{VcScheduler.vue_vue_type_script_setup_true_lang-D73V_F2S.js → VcScheduler.vue_vue_type_script_setup_true_lang-CKYQL237.js} +4 -1
- package/dist/chunks/VcScheduler.vue_vue_type_script_setup_true_lang-CKYQL237.js.map +1 -0
- package/dist/chunks/{index-Cp8w9Q3q.js → index-DYMV0pFy.js} +1 -1
- package/dist/chunks/{index-Cp8w9Q3q.js.map → index-DYMV0pFy.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 +17 -9
- package/dist/framework.js.map +1 -1
- package/dist/shell/auth/ChangePasswordPage/components/change-password/ChangePassword.vue.d.ts.map +1 -1
- package/dist/shell/auth/InvitePage/components/invite/Invite.vue.d.ts.map +1 -1
- package/dist/shell/auth/ResetPasswordPage/components/reset-password/ResetPassword.vue.d.ts.map +1 -1
- package/dist/shell/components/change-password/change-password.vue.d.ts.map +1 -1
- package/dist/tsconfig.tsbuildinfo +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-DKRyBR_M.js.map +0 -1
- package/dist/chunks/VcScheduler.vue_vue_type_script_setup_true_lang-D73V_F2S.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-CZdY18Hq.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-bvyt-Rtf.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-DYMV0pFy.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 nt, v as oe, w as q, x as X, _ as $, y as be, z as Ba, I as Pt, 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-BTg4PjTB.js";
|
|
3
3
|
import { O as $l, B as Kl, P as zl, Q as ql, R as Yl, S as jl, T as Zl, U as Xl, W as Jl, a as Ql, c as eu, e as tu, f as au, g as nu, h as su, i as ou, j as ru, X as iu, Y as lu, Z as uu, $ as du, a0 as cu, a1 as Eu, a2 as fu, a3 as mu, a4 as gu, a5 as Su, a6 as Au, a7 as pu, a8 as Tu, a9 as hu, aa as Lu, ab as Ou, p as Ru, ac as _u, ad as Iu, ae as vu, af as wu, ag as Cu, ah as bu, ai as Pu, aj as Nu, ak as Du, al as yu, am as Bu, u as Mu, k as ku, r as Vu, an as Uu, m as Fu, n as Wu, ao as Hu, o as Gu, ap as xu, aq as $u, ar as Ku } from "./chunks/VcScheduler.vue_vue_type_style_index_0_lang-BTg4PjTB.js";
|
|
4
4
|
import { getCurrentScope as Nt, onScopeDispose as Dt, 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 B, shallowReactive as ja, ref as b, readonly as Je, onMounted as Re, onBeforeMount as Za, onBeforeUnmount as Xa, onUnmounted as Ja, provide as yt, toValue as Bt, isRef as Mt, normalizeStyle as kt, createCommentVNode as z, withDirectives as Qa, withModifiers as We, reactive as le, createApp as en, nextTick as Pe, renderList as Ue, withKeys as st, 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 Vt, b9 as He, ba as rn, bb as ln, ao as un, bc as Ge, bd as dn, be as cn, bf as Ut, Q as Ft, $ as En, a8 as ge, aa as ot, a6 as xe, aB as fn, a0 as mn, av as gn, N as _e, ag as Wt, P as Sn, bg as An, aC as ct, bh as pn, bi as Tn } from "./chunks/VcScheduler.vue_vue_type_script_setup_true_lang-
|
|
6
|
-
import { _ as qu, a as Yu, b as ju, c as Zu, d as Xu, e as Ju, f as Qu, g as ed, h as td, i as ad, j as nd, bj as sd, bk as od, C as rd, bl as id, bm as ld, bn as ud, k as dd, bo as cd, bp as Ed, S as fd, bq as md, br as gd, l as Sd, m as Ad, n as pd, o as Td, p as hd, q as Ld, T as Od, r as Rd, s as _d, t as Id, u as vd, v as wd, w as Cd, x as bd, bs as Pd, bt as Nd, V as Dd, y as yd, z as Bd, A as Md, B as kd, D as Vd, E as Ud, F as Fd, G as Wd, H as Hd, I as Gd, J as xd, K as $d, L as Kd, M as zd, O as qd, bu as Yd, bu as jd, bv as Zd, R as Xd, U as Jd, W as Qd, X as ec, Y as tc, Z as ac, a1 as nc, a2 as sc, a3 as oc, a4 as rc, a5 as ic, a7 as lc, a9 as uc, ab as dc, ac as cc, ad as Ec, ae as fc, af as mc, ah as gc, ai as Sc, aj as Ac, ak as pc, al as Tc, am as hc, an as Lc, ap as Oc, aq as Rc, ar as _c, as as Ic, at as vc, au as wc, aw as Cc, ax as bc, ay as Pc, az as Nc, aA as Dc, aD as yc, aE as Bc, bw as Mc, aF as kc, bx as Vc, by as Uc, bz as Fc, bA as Wc, bB as Hc, bC as Gc, bD as xc, bE as $c, bF as Kc, bG as zc, bH as qc, bI as Yc, bJ as jc, bK as Zc, bL as Xc, bM as Jc, bN as Qc, aG as eE, aH as tE, aI as aE, bO as nE, aJ as sE, aK as oE, bP as rE, bQ as iE, aL as lE, aM as uE, aN as dE, aO as cE, bR as EE, aP as fE, aQ as mE, aR as gE, bS as SE, aS as AE, bT as pE, aT as TE, aU as hE, aV as LE, bU as OE, aW as RE, aX as _E, aY as IE, aZ as vE, a_ as wE, a$ as CE, b0 as bE, b1 as PE, b2 as NE, b3 as DE, b4 as yE, aF as BE } from "./chunks/VcScheduler.vue_vue_type_script_setup_true_lang-
|
|
5
|
+
import { b5 as me, b6 as sn, b7 as on, b8 as Vt, b9 as He, ba as rn, bb as ln, ao as un, bc as Ge, bd as dn, be as cn, bf as Ut, Q as Ft, $ as En, a8 as ge, aa as ot, a6 as xe, aB as fn, a0 as mn, av as gn, N as _e, ag as Wt, P as Sn, bg as An, aC as ct, bh as pn, bi as Tn } from "./chunks/VcScheduler.vue_vue_type_script_setup_true_lang-CKYQL237.js";
|
|
6
|
+
import { _ as qu, a as Yu, b as ju, c as Zu, d as Xu, e as Ju, f as Qu, g as ed, h as td, i as ad, j as nd, bj as sd, bk as od, C as rd, bl as id, bm as ld, bn as ud, k as dd, bo as cd, bp as Ed, S as fd, bq as md, br as gd, l as Sd, m as Ad, n as pd, o as Td, p as hd, q as Ld, T as Od, r as Rd, s as _d, t as Id, u as vd, v as wd, w as Cd, x as bd, bs as Pd, bt as Nd, V as Dd, y as yd, z as Bd, A as Md, B as kd, D as Vd, E as Ud, F as Fd, G as Wd, H as Hd, I as Gd, J as xd, K as $d, L as Kd, M as zd, O as qd, bu as Yd, bu as jd, bv as Zd, R as Xd, U as Jd, W as Qd, X as ec, Y as tc, Z as ac, a1 as nc, a2 as sc, a3 as oc, a4 as rc, a5 as ic, a7 as lc, a9 as uc, ab as dc, ac as cc, ad as Ec, ae as fc, af as mc, ah as gc, ai as Sc, aj as Ac, ak as pc, al as Tc, am as hc, an as Lc, ap as Oc, aq as Rc, ar as _c, as as Ic, at as vc, au as wc, aw as Cc, ax as bc, ay as Pc, az as Nc, aA as Dc, aD as yc, aE as Bc, bw as Mc, aF as kc, bx as Vc, by as Uc, bz as Fc, bA as Wc, bB as Hc, bC as Gc, bD as xc, bE as $c, bF as Kc, bG as zc, bH as qc, bI as Yc, bJ as jc, bK as Zc, bL as Xc, bM as Jc, bN as Qc, aG as eE, aH as tE, aI as aE, bO as nE, aJ as sE, aK as oE, bP as rE, bQ as iE, aL as lE, aM as uE, aN as dE, aO as cE, bR as EE, aP as fE, aQ as mE, aR as gE, bS as SE, aS as AE, bT as pE, aT as TE, aU as hE, aV as LE, bU as OE, aW as RE, aX as _E, aY as IE, aZ as vE, a_ as wE, a$ as CE, b0 as bE, b1 as PE, b2 as NE, b3 as DE, b4 as yE, aF as BE } from "./chunks/VcScheduler.vue_vue_type_script_setup_true_lang-CKYQL237.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 Qe, S as Rn, W as Ht, B as Gt, h as _n, j as xt, m as In, k as vn, l as $t, n as wn, _ as Cn, L as bn, I as Pn, o as Nn, p as Dn, q as yn, r as Bn, s as Mn, T as kn, t as Vn, v as Un, w as Fn, N as Wn } from "./chunks/VcAiAgentPanel.vue_vue_type_style_index_0_lang-CZdY18Hq.js";
|
|
9
9
|
import { A 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, J as KE, e as zE, f 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, $ as sf, E as of, a0 as rf, a1 as lf, a2 as uf, a3 as df, a4 as cf, a5 as Ef, a6 as ff, a7 as mf, M as gf, a8 as Sf, a9 as Af, aa as pf, ab as Tf, ac as hf, ad as Lf, ae as Of, af as Rf, a as _f, ag as If, ah as vf, ai as wf, aj as Cf, u as bf, g as Pf } from "./chunks/VcAiAgentPanel.vue_vue_type_style_index_0_lang-CZdY18Hq.js";
|
|
10
10
|
import { H as Hn, L as Gn } from "./chunks/vendor-microsoft-signalr-Bgpbb4fW.js";
|
|
11
|
-
import { a as xn } from "./chunks/index-
|
|
12
|
-
import { u as Df } from "./chunks/index-
|
|
13
|
-
import { p as $n, b as Kn, a as zn, s as qn, d as Yn, e as jn, f as Zn, g as rt, h as Xn, i as Jn, j as Qn, k as es, l as ts, m as as } from "./chunks/VcAiAgentPanel.vue_vue_type_script_setup_true_lang-
|
|
14
|
-
import { A as Bf, D as Mf, E as kf, H as Vf, _ as Uf, c as Ff, n as Wf, o as Hf, q as Gf, r as xf, t as $f, v as Kf, u as zf, w as qf, x as Yf, y as jf } from "./chunks/VcAiAgentPanel.vue_vue_type_script_setup_true_lang-
|
|
11
|
+
import { a as xn } from "./chunks/index-DYMV0pFy.js";
|
|
12
|
+
import { u as Df } from "./chunks/index-DYMV0pFy.js";
|
|
13
|
+
import { p as $n, b as Kn, a as zn, s as qn, d as Yn, e as jn, f as Zn, g as rt, h as Xn, i as Jn, j as Qn, k as es, l as ts, m as as } from "./chunks/VcAiAgentPanel.vue_vue_type_script_setup_true_lang-bvyt-Rtf.js";
|
|
14
|
+
import { A as Bf, D as Mf, E as kf, H as Vf, _ as Uf, c as Ff, n as Wf, o as Hf, q as Gf, r as xf, t as $f, v as Kf, u as zf, w as qf, x as Yf, y as jf } from "./chunks/VcAiAgentPanel.vue_vue_type_script_setup_true_lang-bvyt-Rtf.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";
|
|
@@ -2069,12 +2069,12 @@ function Go() {
|
|
|
2069
2069
|
hasNotification: (t) => e.hasNotification(t)
|
|
2070
2070
|
});
|
|
2071
2071
|
}
|
|
2072
|
-
const xo = "2.4.0-
|
|
2072
|
+
const xo = "2.4.0-pr296.cd94f75";
|
|
2073
2073
|
function $o() {
|
|
2074
2074
|
return {
|
|
2075
2075
|
version: xo,
|
|
2076
|
-
buildDate: "2026-08-
|
|
2077
|
-
gitHash: "
|
|
2076
|
+
buildDate: "2026-08-13T12:58:58.163Z",
|
|
2077
|
+
gitHash: "cd94f7544"
|
|
2078
2078
|
};
|
|
2079
2079
|
}
|
|
2080
2080
|
function Ko(e = $o()) {
|
|
@@ -2546,6 +2546,7 @@ const er = {
|
|
|
2546
2546
|
label: r(d)("PASSWORDRESET.FIELDS.PASSWORD.LABEL"),
|
|
2547
2547
|
placeholder: r(d)("PASSWORDRESET.FIELDS.PASSWORD.PLACEHOLDER"),
|
|
2548
2548
|
type: "password",
|
|
2549
|
+
autocomplete: "new-password",
|
|
2549
2550
|
disabled: !f.tokenIsValid,
|
|
2550
2551
|
required: "",
|
|
2551
2552
|
error: !!y.length,
|
|
@@ -2575,6 +2576,7 @@ const er = {
|
|
|
2575
2576
|
placeholder: r(d)("PASSWORDRESET.FIELDS.CONFIRM_PASSWORD.PLACEHOLDER"),
|
|
2576
2577
|
disabled: !f.tokenIsValid,
|
|
2577
2578
|
type: "password",
|
|
2579
|
+
autocomplete: "new-password",
|
|
2578
2580
|
required: "",
|
|
2579
2581
|
error: !!y.length,
|
|
2580
2582
|
"error-message": h,
|
|
@@ -2661,6 +2663,7 @@ const er = {
|
|
|
2661
2663
|
label: r(d)("INVITATION.FIELDS.EMAIL.LABEL"),
|
|
2662
2664
|
"model-value": e.userName,
|
|
2663
2665
|
name: "username",
|
|
2666
|
+
autocomplete: "username",
|
|
2664
2667
|
disabled: ""
|
|
2665
2668
|
}, null, 8, ["label", "model-value"]),
|
|
2666
2669
|
_(r(Z), {
|
|
@@ -2683,6 +2686,7 @@ const er = {
|
|
|
2683
2686
|
label: r(d)("INVITATION.FIELDS.PASSWORD.LABEL"),
|
|
2684
2687
|
placeholder: r(d)("INVITATION.FIELDS.PASSWORD.PLACEHOLDER"),
|
|
2685
2688
|
type: "password",
|
|
2689
|
+
autocomplete: "new-password",
|
|
2686
2690
|
disabled: !c.tokenIsValid,
|
|
2687
2691
|
error: !!m.length,
|
|
2688
2692
|
"error-message": N,
|
|
@@ -2712,6 +2716,7 @@ const er = {
|
|
|
2712
2716
|
placeholder: r(d)("INVITATION.FIELDS.CONFIRM_PASSWORD.PLACEHOLDER"),
|
|
2713
2717
|
disabled: !c.tokenIsValid,
|
|
2714
2718
|
type: "password",
|
|
2719
|
+
autocomplete: "new-password",
|
|
2715
2720
|
error: !!m.length,
|
|
2716
2721
|
"error-message": N,
|
|
2717
2722
|
required: "",
|
|
@@ -2828,6 +2833,7 @@ const er = {
|
|
|
2828
2833
|
label: r(a)("COMPONENTS.CHANGE_PASSWORD.CURRENT_PASSWORD.LABEL"),
|
|
2829
2834
|
placeholder: r(a)("COMPONENTS.CHANGE_PASSWORD.CURRENT_PASSWORD.PLACEHOLDER"),
|
|
2830
2835
|
type: "password",
|
|
2836
|
+
autocomplete: "current-password",
|
|
2831
2837
|
required: "",
|
|
2832
2838
|
error: !!y.length,
|
|
2833
2839
|
"error-message": N
|
|
@@ -2853,6 +2859,7 @@ const er = {
|
|
|
2853
2859
|
label: r(a)("COMPONENTS.CHANGE_PASSWORD.NEW_PASSWORD.LABEL"),
|
|
2854
2860
|
placeholder: r(a)("COMPONENTS.CHANGE_PASSWORD.NEW_PASSWORD.PLACEHOLDER"),
|
|
2855
2861
|
type: "password",
|
|
2862
|
+
autocomplete: "new-password",
|
|
2856
2863
|
required: "",
|
|
2857
2864
|
error: !!y.length,
|
|
2858
2865
|
"error-message": N
|
|
@@ -2878,6 +2885,7 @@ const er = {
|
|
|
2878
2885
|
label: r(a)("COMPONENTS.CHANGE_PASSWORD.CONFIRM_PASSWORD.LABEL"),
|
|
2879
2886
|
placeholder: r(a)("COMPONENTS.CHANGE_PASSWORD.CONFIRM_PASSWORD.PLACEHOLDER"),
|
|
2880
2887
|
type: "password",
|
|
2888
|
+
autocomplete: "new-password",
|
|
2881
2889
|
required: "",
|
|
2882
2890
|
error: !!y.length,
|
|
2883
2891
|
"error-message": N
|