fmode-ng 0.0.26 → 0.0.27
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-talk/comp-avatar-talk.component.mjs +1 -1
- package/esm2022/lib/aigc/chat/chat-list/chat-list.component.mjs +10 -0
- package/esm2022/lib/aigc/chat/chat-list/index.mjs +10 -0
- package/esm2022/lib/aigc/chat/index.mjs +10 -0
- package/esm2022/lib/aigc/index.mjs +1 -1
- package/esm2022/lib/map/comp-poi-picker/comp-poi-picker.component.mjs +1 -1
- package/esm2022/lib/map/page-plan-route/page-plan-route.component.mjs +1 -1
- package/esm2022/lib/storage/comp-hwobs-manager/hwobs-manager.component.mjs +1 -1
- package/fesm2022/fmode-ng.mjs +1 -1
- package/fesm2022/fmode-ng.mjs.map +1 -1
- package/lib/aigc/chat/chat-list/chat-list.component.d.ts +33 -0
- package/lib/aigc/chat/chat-list/index.d.ts +1 -0
- package/lib/aigc/chat/index.d.ts +1 -0
- package/lib/aigc/index.d.ts +1 -0
- package/package.json +1 -1
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
import { AlertController, NavController } from '@ionic/angular/standalone';
|
|
2
|
+
import { ChatService } from "../../service-fmai/service-chat/chat.service";
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class ChatListComponent {
|
|
5
|
+
chatServ: ChatService;
|
|
6
|
+
private alertCtrl;
|
|
7
|
+
private navCtrl;
|
|
8
|
+
chatList: Array<any>;
|
|
9
|
+
constructor(chatServ: ChatService, alertCtrl: AlertController, navCtrl: NavController);
|
|
10
|
+
onItemClick: Function;
|
|
11
|
+
/** 默认头像*/
|
|
12
|
+
avatar: string;
|
|
13
|
+
goSession(chat: any): Promise<void>;
|
|
14
|
+
isPreventGo: boolean;
|
|
15
|
+
/**
|
|
16
|
+
* 修改图标的功能组件
|
|
17
|
+
* @param Id 会话Id
|
|
18
|
+
*/
|
|
19
|
+
presentEditTitle(chatSession: Parse.Object, chat: any, event: Event): Promise<void>;
|
|
20
|
+
/**
|
|
21
|
+
* 删除图标的功能组件
|
|
22
|
+
* @param Id 会话Id
|
|
23
|
+
*/
|
|
24
|
+
presentDeleteTItle(chatSession: Parse.Object, chat: any, event: Event): Promise<void>;
|
|
25
|
+
/**
|
|
26
|
+
* 绘画标题超出字数的部分用省略号代替
|
|
27
|
+
* @param str 被执行的文本
|
|
28
|
+
* @returns
|
|
29
|
+
*/
|
|
30
|
+
truncateString(str: String): string | String;
|
|
31
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ChatListComponent, never>;
|
|
32
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ChatListComponent, "app-chat-list", never, { "onItemClick": { "alias": "onItemClick"; "required": false; }; }, {}, never, never, true, never>;
|
|
33
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from "./chat-list.component";
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from "./chat-list";
|
package/lib/aigc/index.d.ts
CHANGED