@blueking/chat-x 0.0.3-beta.4 → 0.0.3-beta.7
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/ag-ui/types/constants.d.ts +2 -0
- package/dist/ag-ui/types/contents.d.ts +29 -4
- package/dist/ag-ui/types/messages.d.ts +3 -3
- package/dist/common/constants.d.ts +4 -0
- package/dist/components/ai-shortcut/shortcut-render/shortcut-render.vue.d.ts +4 -0
- package/dist/components/chat-content/activity-layout/activity-layout.vue.d.ts +29 -0
- package/dist/components/chat-content/flow-agent-content/detail-section.vue.d.ts +16 -0
- package/dist/components/chat-content/flow-agent-content/flow-agent-content.vue.d.ts +17 -0
- package/dist/components/chat-content/flow-agent-content/flow-agent-node-detail.vue.d.ts +22 -0
- package/dist/components/chat-content/flow-agent-content/simple-table.vue.d.ts +12 -0
- package/dist/components/chat-content/knowledge-rag-content/knowledge-rag-content.vue.d.ts +17 -0
- package/dist/components/chat-content/reference-doc-content/reference-doc-content.vue.d.ts +15 -0
- package/dist/components/chat-input/chat-input.vue.d.ts +5 -0
- package/dist/components/chat-message/message-container/message-container.vue.d.ts +22 -12344
- package/dist/components/execution-summary/execution-summary.vue.d.ts +13 -0
- package/dist/components/highlight-keyword/highlight-keyword.d.ts +15 -0
- package/dist/components/index.d.ts +6 -1
- package/dist/components/message-loading/message-loading.vue.d.ts +33 -0
- package/dist/components/selection-footer/selection-footer.vue.d.ts +19 -0
- package/dist/composables/index.d.ts +2 -0
- package/dist/composables/use-common.d.ts +23 -0
- package/dist/composables/use-custom-tab.d.ts +31 -0
- package/dist/composables/use-message-group.d.ts +37039 -0
- package/dist/icons/ai.d.ts +3 -0
- package/dist/icons/execution.d.ts +18 -0
- package/dist/icons/index.d.ts +1 -0
- package/dist/index.css +1 -1
- package/dist/index.js +10958 -9456
- package/dist/index.js.map +1 -1
- package/dist/lang/lang.d.ts +11 -1
- package/dist/types/custom.d.ts +60 -0
- package/dist/types/index.d.ts +1 -0
- package/dist/types/tool.d.ts +1 -1
- package/dist/utils/utils.d.ts +2 -1
- package/package.json +23 -9
package/dist/icons/ai.d.ts
CHANGED
|
@@ -1,3 +1,6 @@
|
|
|
1
1
|
export declare const AIBluekingIcon: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
2
2
|
[key: string]: any;
|
|
3
3
|
}>;
|
|
4
|
+
export declare const AIBluekingBannerIcon: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
5
|
+
[key: string]: any;
|
|
6
|
+
}>;
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
export declare const BkFlowSuccessIcon: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
2
|
+
[key: string]: any;
|
|
3
|
+
}>;
|
|
4
|
+
export declare const BkFlowFailedIcon: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
5
|
+
[key: string]: any;
|
|
6
|
+
}>;
|
|
7
|
+
export declare const BkFlowSuspendedIcon: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
8
|
+
[key: string]: any;
|
|
9
|
+
}>;
|
|
10
|
+
export declare const ExecutionIcon: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
11
|
+
[key: string]: any;
|
|
12
|
+
}>;
|
|
13
|
+
export declare const NodeOutputIcon: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
14
|
+
[key: string]: any;
|
|
15
|
+
}>;
|
|
16
|
+
export declare const NodeTabIcon: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
17
|
+
[key: string]: any;
|
|
18
|
+
}>;
|