@evercam/ui 0.0.63-preview-disable-input-when-message-being-generated-ec5f1ea6d → 0.0.63-preview-disable-input-when-message-being-generated-81aa2573f
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/chat/EChat.vue.d.ts +0 -3
- package/dist/index.d.ts +0 -3
- package/dist/index.mjs +244 -251
- package/dist/index.mjs.map +1 -1
- package/dist/index.umd.js +1 -1
- package/dist/index.umd.js.map +1 -1
- package/dist/style.css +1 -1
- package/dist/web-types.json +1 -1
- package/package.json +1 -1
|
@@ -6,16 +6,13 @@ declare const _default: import("vue/types/vue").ExtendedVue<Vue<Record<string, a
|
|
|
6
6
|
headerHeight: number;
|
|
7
7
|
bodyHeight: number;
|
|
8
8
|
footerHeight: number;
|
|
9
|
-
isWriting: boolean;
|
|
10
9
|
}, {
|
|
11
10
|
sendMessage(): void;
|
|
12
|
-
onAnimationEnd(value: boolean): void;
|
|
13
11
|
isUserMessage(message: ChatMessage): boolean;
|
|
14
12
|
getMessageContent(message: ChatMessage): string | string[];
|
|
15
13
|
updateChatBodyHeight(): void;
|
|
16
14
|
isAvatarVisible(message: ChatMessage): boolean;
|
|
17
15
|
}, {
|
|
18
|
-
isInputDisabled: boolean;
|
|
19
16
|
ChatMessageRole: typeof ChatMessageRole;
|
|
20
17
|
userInitials: string;
|
|
21
18
|
chatBodyStyle: Record<string, unknown>;
|
package/dist/index.d.ts
CHANGED
|
@@ -1102,16 +1102,13 @@ export declare const components: {
|
|
|
1102
1102
|
headerHeight: number;
|
|
1103
1103
|
bodyHeight: number;
|
|
1104
1104
|
footerHeight: number;
|
|
1105
|
-
isWriting: boolean;
|
|
1106
1105
|
}, {
|
|
1107
1106
|
sendMessage(): void;
|
|
1108
|
-
onAnimationEnd(value: boolean): void;
|
|
1109
1107
|
isUserMessage(message: import('./types').ChatMessage): boolean;
|
|
1110
1108
|
getMessageContent(message: import('./types').ChatMessage): string | string[];
|
|
1111
1109
|
updateChatBodyHeight(): void;
|
|
1112
1110
|
isAvatarVisible(message: import('./types').ChatMessage): boolean;
|
|
1113
1111
|
}, {
|
|
1114
|
-
isInputDisabled: boolean;
|
|
1115
1112
|
ChatMessageRole: typeof import('./types').ChatMessageRole;
|
|
1116
1113
|
userInitials: string;
|
|
1117
1114
|
chatBodyStyle: Record<string, unknown>;
|