fmode-ng 0.0.28 → 0.0.30
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/esm2022/lib/aigc/avatar/comp-avatar-role-video/comp-avatar-role-video.component.mjs +1 -1
- package/esm2022/lib/aigc/chat/chat-panel/chat-panel.component.mjs +10 -0
- package/esm2022/lib/aigc/chat/index.mjs +1 -1
- package/esm2022/lib/aigc/voice/fmode-voice.service.mjs +1 -1
- package/fesm2022/fmode-ng.mjs +1 -1
- package/fesm2022/fmode-ng.mjs.map +1 -1
- package/lib/aigc/chat/chat-panel/chat-panel.component.d.ts +23 -0
- package/lib/aigc/chat/index.d.ts +1 -0
- package/lib/user/comp-user-avatar/comp-user-avatar.component.d.ts +1 -1
- package/package.json +1 -1
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import { AfterViewInit, ElementRef, OnInit } from '@angular/core';
|
|
2
|
+
import { ActivatedRoute, Router } from '@angular/router';
|
|
3
|
+
import { FmodeChat } from '../../service-fmai/service-chat';
|
|
4
|
+
import { ChatService } from '../../service-fmai/service-chat';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
6
|
+
export declare class ChatPanelComponent implements OnInit, AfterViewInit {
|
|
7
|
+
private route;
|
|
8
|
+
private router;
|
|
9
|
+
private chatServ;
|
|
10
|
+
chatId: string;
|
|
11
|
+
maskId: any;
|
|
12
|
+
roleId: string;
|
|
13
|
+
fmodeChat: FmodeChat;
|
|
14
|
+
constructor(route: ActivatedRoute, router: Router, chatServ: ChatService);
|
|
15
|
+
contentComp: ElementRef;
|
|
16
|
+
listenDivChange(): void;
|
|
17
|
+
scrollToBottom(comp: ElementRef): void;
|
|
18
|
+
ngAfterViewInit(): void;
|
|
19
|
+
ngOnInit(): void;
|
|
20
|
+
loadMask(): void;
|
|
21
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ChatPanelComponent, never>;
|
|
22
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ChatPanelComponent, "app-chat-panel", never, { "chatId": { "alias": "chatId"; "required": false; }; "maskId": { "alias": "maskId"; "required": false; }; "roleId": { "alias": "roleId"; "required": false; }; }, {}, never, never, true, never>;
|
|
23
|
+
}
|
package/lib/aigc/chat/index.d.ts
CHANGED
|
@@ -12,7 +12,7 @@ export declare class CompUserAvatarComponent implements OnInit {
|
|
|
12
12
|
ngOnInit(): void;
|
|
13
13
|
ngOnChanges(): void;
|
|
14
14
|
refresh(): Promise<void>;
|
|
15
|
-
getType(): "
|
|
15
|
+
getType(): "avatar" | "text" | "icon";
|
|
16
16
|
static ɵfac: i0.ɵɵFactoryDeclaration<CompUserAvatarComponent, never>;
|
|
17
17
|
static ɵcmp: i0.ɵɵComponentDeclaration<CompUserAvatarComponent, "app-comp-user-avatar", never, { "user": { "alias": "user"; "required": false; }; }, {}, never, never, true, never>;
|
|
18
18
|
}
|