@blueking/chat-x 0.0.3-beta.3 → 0.0.3-beta.4
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/components/ai-buttons/scroll-btn/scroll-btn.vue.d.ts +9 -4
- package/dist/components/chat-message/message-container/message-container.vue.d.ts +10 -4
- package/dist/index.css +1 -1
- package/dist/index.js +235 -192
- package/dist/index.js.map +1 -1
- package/dist/lang/lang.d.ts +2 -1
- package/package.json +1 -1
|
@@ -1,14 +1,19 @@
|
|
|
1
1
|
type __VLS_Props = {
|
|
2
2
|
disabled?: boolean;
|
|
3
|
+
loading?: boolean;
|
|
3
4
|
title?: string;
|
|
4
5
|
};
|
|
5
|
-
declare var
|
|
6
|
+
declare var __VLS_7: {}, __VLS_9: {};
|
|
6
7
|
type __VLS_Slots = {} & {
|
|
7
|
-
icon?: (props: typeof
|
|
8
|
+
icon?: (props: typeof __VLS_7) => any;
|
|
8
9
|
} & {
|
|
9
|
-
title?: (props: typeof
|
|
10
|
+
title?: (props: typeof __VLS_9) => any;
|
|
10
11
|
};
|
|
11
|
-
declare const __VLS_base: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}
|
|
12
|
+
declare const __VLS_base: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
|
|
13
|
+
click: (event: MouseEvent) => any;
|
|
14
|
+
}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{
|
|
15
|
+
onClick?: ((event: MouseEvent) => any) | undefined;
|
|
16
|
+
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
12
17
|
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
|
13
18
|
declare const _default: typeof __VLS_export;
|
|
14
19
|
export default _default;
|
|
@@ -31,12 +31,13 @@ type __VLS_Props = {
|
|
|
31
31
|
onAgentAction?: AgentActionCallback;
|
|
32
32
|
onAgentFeedback?: AgentFeedbackCallback;
|
|
33
33
|
onUserAction?: UserActionCallback;
|
|
34
|
+
stopLoading?: boolean;
|
|
34
35
|
} & {
|
|
35
36
|
onUserInputConfirm?: (message: Message, content: UserMessage['content'], docSchema: TagSchema) => Promise<void>;
|
|
36
37
|
onUserShortcutConfirm?: (message: Message, formModel: Record<string, unknown>) => Promise<void>;
|
|
37
38
|
};
|
|
38
39
|
type __VLS_ModelProps = {
|
|
39
|
-
'
|
|
40
|
+
'selectedUserMessages'?: Message[];
|
|
40
41
|
};
|
|
41
42
|
type __VLS_PublicProps = __VLS_Props & __VLS_ModelProps;
|
|
42
43
|
declare var __VLS_9: {
|
|
@@ -12368,14 +12369,19 @@ declare var __VLS_9: {
|
|
|
12368
12369
|
type __VLS_Slots = {} & {
|
|
12369
12370
|
default?: (props: typeof __VLS_9) => any;
|
|
12370
12371
|
};
|
|
12371
|
-
declare const __VLS_base: import("vue").DefineComponent<__VLS_PublicProps, {
|
|
12372
|
-
|
|
12372
|
+
declare const __VLS_base: import("vue").DefineComponent<__VLS_PublicProps, {
|
|
12373
|
+
selectAll: () => void;
|
|
12374
|
+
deselectAll: () => void;
|
|
12375
|
+
isAllSelected: import("vue").ComputedRef<boolean>;
|
|
12376
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
12377
|
+
"update:selectedUserMessages": (value: Message[] | undefined) => any;
|
|
12373
12378
|
} & {
|
|
12374
12379
|
stopStreaming: () => any;
|
|
12375
12380
|
}, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
|
|
12376
12381
|
onStopStreaming?: (() => any) | undefined;
|
|
12377
|
-
"onUpdate:
|
|
12382
|
+
"onUpdate:selectedUserMessages"?: ((value: Message[] | undefined) => any) | undefined;
|
|
12378
12383
|
}>, {
|
|
12384
|
+
stopLoading: boolean;
|
|
12379
12385
|
enableSelection: boolean;
|
|
12380
12386
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
12381
12387
|
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|