@cometchat/chat-uikit-angular 4.1.1 → 4.3.0
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/Calls/CallingExtensionDecorator.d.ts +1 -1
- package/CometChatConversations/cometchat-conversations/cometchat-conversations.component.d.ts +32 -26
- package/CometChatDetails/cometchat-details/cometchat-details.component.d.ts +3 -3
- package/CometChatGroupMembers/cometchat-group-members/cometchat-group-members.component.d.ts +24 -14
- package/CometChatMessageBubble/cometchat-message-bubble/cometchat-message-bubble.component.d.ts +3 -2
- package/CometChatMessageComposer/cometchat-message-composer/cometchat-message-composer.component.d.ts +84 -5
- package/CometChatMessageComposer/cometchat-message-composer.module.d.ts +2 -1
- package/CometChatMessageList/cometchat-message-list/cometchat-message-list.component.d.ts +258 -51
- package/CometChatMessages/cometchat-messages/cometchat-messages.component.d.ts +1 -0
- package/CometChatThreadedMessages/cometchat-threaded-messages/cometchat-threaded-messages.component.d.ts +7 -0
- package/CometChatUserMemberWrapper/cometchat-user-member-wrapper.component.d.ts +41 -0
- package/CometChatUserMemberWrapper/cometchat-user-member-wrapper.module.d.ts +11 -0
- package/CometChatUsers/cometchat-users/cometchat-users.component.d.ts +22 -12
- package/Extensions/CollaborativeDocument/CollaborativeDocumentExtensionDecorator.d.ts +1 -1
- package/Extensions/CollaborativeWhiteboard/CollaborativeWhiteboardExtensionDecorator.d.ts +1 -1
- package/Extensions/PollsExtension/PollsExtensionDecorator.d.ts +1 -1
- package/Extensions/Stickers/StickersExtensionDecorator.d.ts +3 -3
- package/Extensions/TextModerator/TextModeratorExtensionDecorator.d.ts +1 -1
- package/README.md +7 -8
- package/Shared/CometChatUIkit/CometChatUIKit.d.ts +8 -1
- package/Shared/Framework/DataSource.d.ts +11 -3
- package/Shared/Framework/DataSourceDecorator.d.ts +11 -3
- package/Shared/Utils/MessageUtils.d.ts +100 -2
- package/Shared/Views/AIAssistBotMessageList/aiassist-bot-message-list/aiassist-bot-message-list.component.d.ts +2 -2
- package/assets/InfoSimpleIcon.svg +4 -0
- package/assets/empty-slot.svg +14 -0
- package/assets/message-delivered.svg +4 -3
- package/assets/message-read.svg +4 -3
- package/assets/threadIndicatorIcon.svg +11 -0
- package/esm2020/Calls/CallingExtensionDecorator.mjs +26 -13
- package/esm2020/CometChatAddMembers/cometchat-add-members/cometchat-add-members.component.mjs +1 -1
- package/esm2020/CometChatContacts/cometchat-contacts/cometchat-contacts.component.mjs +3 -3
- package/esm2020/CometChatConversations/cometchat-conversations/cometchat-conversations.component.mjs +286 -130
- package/esm2020/CometChatConversationsWithMessages/cometchat-conversations-with-messages/cometchat-conversations-with-messages.component.mjs +3 -4
- package/esm2020/CometChatDetails/cometchat-details/cometchat-details.component.mjs +6 -8
- package/esm2020/CometChatGroupMembers/cometchat-group-members/cometchat-group-members.component.mjs +155 -58
- package/esm2020/CometChatGroupsWithMessages/cometchat-groups-with-messages/cometchat-groups-with-messages.component.mjs +3 -3
- package/esm2020/CometChatMessageBubble/cometchat-message-bubble/cometchat-message-bubble.component.mjs +11 -5
- package/esm2020/CometChatMessageComposer/cometchat-message-composer/cometchat-message-composer.component.mjs +354 -64
- package/esm2020/CometChatMessageComposer/cometchat-message-composer.module.mjs +5 -4
- package/esm2020/CometChatMessageHeader/cometchat-message-header/cometchat-message-header.component.mjs +3 -3
- package/esm2020/CometChatMessageInformation/cometchat-message-information/cometchat-message-information.component.mjs +2 -2
- package/esm2020/CometChatMessageList/cometchat-message-list/cometchat-message-list.component.mjs +947 -317
- package/esm2020/CometChatMessages/cometchat-messages/cometchat-messages.component.mjs +10 -4
- package/esm2020/CometChatThreadedMessages/cometchat-threaded-messages/cometchat-threaded-messages.component.mjs +52 -3
- package/esm2020/CometChatTransferOwnership/cometchat-transfer-ownership/cometchat-transfer-ownership.component.mjs +1 -1
- package/esm2020/CometChatUserMemberWrapper/cometchat-user-member-wrapper.component.mjs +75 -0
- package/esm2020/CometChatUserMemberWrapper/cometchat-user-member-wrapper.module.mjs +21 -0
- package/esm2020/CometChatUsers/cometchat-users/cometchat-users.component.mjs +114 -36
- package/esm2020/CometChatUsersWithMessages/cometchat-users-with-messages/cometchat-users-with-messages.component.mjs +1 -1
- package/esm2020/Extensions/CollaborativeDocument/CollaborativeDocumentExtensionDecorator.mjs +18 -13
- package/esm2020/Extensions/CollaborativeWhiteboard/CollaborativeWhiteboardExtensionDecorator.mjs +19 -13
- package/esm2020/Extensions/PollsExtension/PollsExtensionDecorator.mjs +10 -8
- package/esm2020/Extensions/Stickers/StickersExtensionDecorator.mjs +22 -18
- package/esm2020/Extensions/TextModerator/TextModeratorExtensionDecorator.mjs +62 -7
- package/esm2020/Shared/CometChatUIkit/CometChatUIKit.mjs +51 -3
- package/esm2020/Shared/Framework/DataSource.mjs +1 -1
- package/esm2020/Shared/Framework/DataSourceDecorator.mjs +27 -3
- package/esm2020/Shared/Utils/MessageUtils.mjs +261 -10
- package/esm2020/Shared/Views/AIAssistBotMessageList/aiassist-bot-message-list/aiassist-bot-message-list.component.mjs +5 -4
- package/esm2020/public-api.mjs +4 -4
- package/fesm2015/cometchat-chat-uikit-angular.mjs +3941 -2204
- package/fesm2015/cometchat-chat-uikit-angular.mjs.map +1 -1
- package/fesm2020/cometchat-chat-uikit-angular.mjs +4542 -2786
- package/fesm2020/cometchat-chat-uikit-angular.mjs.map +1 -1
- package/package.json +6 -6
- package/public-api.d.ts +3 -3
- package/Extensions/Reactions/ReactionExtension.d.ts +0 -5
- package/Extensions/Reactions/ReactionExtensionDecorator.d.ts +0 -9
- package/esm2020/Extensions/Reactions/ReactionExtension.mjs +0 -12
- package/esm2020/Extensions/Reactions/ReactionExtensionDecorator.mjs +0 -31
|
@@ -12,5 +12,5 @@ export declare class CallingExtensionDecorator extends DataSourceDecorator {
|
|
|
12
12
|
getAllMessageTemplates(): CometChatMessageTemplate[];
|
|
13
13
|
getDirectCallTemplate(): CometChatMessageTemplate;
|
|
14
14
|
getDefaultCallTemplate(): CometChatMessageTemplate[];
|
|
15
|
-
getLastConversationMessage(conversation: CometChat.Conversation, loggedInUser: CometChat.User): string;
|
|
15
|
+
getLastConversationMessage(conversation: CometChat.Conversation, loggedInUser: CometChat.User, additionalParams?: any): string;
|
|
16
16
|
}
|
package/CometChatConversations/cometchat-conversations/cometchat-conversations.component.d.ts
CHANGED
|
@@ -1,31 +1,33 @@
|
|
|
1
|
-
import
|
|
2
|
-
import { AvatarStyle, BackdropStyle, BadgeStyle, ConfirmDialogStyle, DateStyle, ListItemStyle, ReceiptStyle } from
|
|
3
|
-
import {
|
|
4
|
-
import {
|
|
1
|
+
import "@cometchat/uikit-elements";
|
|
2
|
+
import { AvatarStyle, BackdropStyle, BadgeStyle, ConfirmDialogStyle, DateStyle, ListItemStyle, ReceiptStyle } from "@cometchat/uikit-elements";
|
|
3
|
+
import { DomSanitizer, SafeHtml } from "@angular/platform-browser";
|
|
4
|
+
import { BaseStyle, CometChatTextFormatter, ConversationsStyle, ListStyle } from "@cometchat/uikit-shared";
|
|
5
|
+
import { CometChatOption, DatePatterns, SelectionMode, States, TitleAlignment } from "@cometchat/uikit-resources";
|
|
5
6
|
import { ChangeDetectorRef, NgZone, OnChanges, OnInit, SimpleChanges, TemplateRef } from "@angular/core";
|
|
6
7
|
import { CometChat } from "@cometchat/chat-sdk-javascript";
|
|
7
8
|
import { CometChatThemeService } from "../../CometChatTheme.service";
|
|
8
9
|
import { Subscription } from "rxjs";
|
|
9
10
|
import * as i0 from "@angular/core";
|
|
10
11
|
/**
|
|
11
|
-
*
|
|
12
|
-
* CometChatConversation is a wrapper component consists of CometChatListBaseComponent and ConversationListComponent.
|
|
13
|
-
*
|
|
14
|
-
* @version 1.0.0
|
|
15
|
-
* @author CometChatTeam
|
|
16
|
-
* @copyright © 2022 CometChat Inc.
|
|
17
|
-
*
|
|
18
|
-
*/
|
|
12
|
+
*
|
|
13
|
+
* CometChatConversation is a wrapper component consists of CometChatListBaseComponent and ConversationListComponent.
|
|
14
|
+
*
|
|
15
|
+
* @version 1.0.0
|
|
16
|
+
* @author CometChatTeam
|
|
17
|
+
* @copyright © 2022 CometChat Inc.
|
|
18
|
+
*
|
|
19
|
+
*/
|
|
19
20
|
export declare class CometChatConversationsComponent implements OnInit, OnChanges {
|
|
20
21
|
private ngZone;
|
|
21
22
|
private ref;
|
|
22
23
|
private themeService;
|
|
24
|
+
private sanitizer;
|
|
23
25
|
/**
|
|
24
|
-
|
|
25
|
-
|
|
26
|
+
* This properties will come from Parent.
|
|
27
|
+
*/
|
|
26
28
|
subtitleView: TemplateRef<any>;
|
|
27
29
|
title: string;
|
|
28
|
-
options: ((
|
|
30
|
+
options: ((conversation: CometChat.Conversation) => CometChatOption[]) | null;
|
|
29
31
|
searchPlaceHolder: string;
|
|
30
32
|
disableUsersPresence: boolean;
|
|
31
33
|
disableReceipt: boolean;
|
|
@@ -92,6 +94,7 @@ export declare class CometChatConversationsComponent implements OnInit, OnChange
|
|
|
92
94
|
onMediaMessageReceived: Subscription;
|
|
93
95
|
onCustomMessageReceived: Subscription;
|
|
94
96
|
onFormMessageReceived: Subscription;
|
|
97
|
+
onSchedulerMessageReceived: Subscription;
|
|
95
98
|
onCardMessageReceived: Subscription;
|
|
96
99
|
onCustomInteractiveMessageReceived: Subscription;
|
|
97
100
|
onMessagesRead: Subscription;
|
|
@@ -145,6 +148,7 @@ export declare class CometChatConversationsComponent implements OnInit, OnChange
|
|
|
145
148
|
userListenerId: string;
|
|
146
149
|
groupListenerId: string;
|
|
147
150
|
groupToUpdate: CometChat.Group | {};
|
|
151
|
+
safeHtml: SafeHtml;
|
|
148
152
|
enablePolls: boolean;
|
|
149
153
|
enableStickers: boolean;
|
|
150
154
|
enableWhiteboard: boolean;
|
|
@@ -159,16 +163,18 @@ export declare class CometChatConversationsComponent implements OnInit, OnChange
|
|
|
159
163
|
chatSearch: boolean;
|
|
160
164
|
requestBuilder: CometChat.ConversationsRequest;
|
|
161
165
|
/**
|
|
162
|
-
|
|
163
|
-
|
|
166
|
+
* Properties for internal use
|
|
167
|
+
*/
|
|
164
168
|
localize: (str: string) => any;
|
|
165
169
|
/**
|
|
166
|
-
|
|
167
|
-
|
|
170
|
+
* This properties will come from Parent.
|
|
171
|
+
*/
|
|
168
172
|
loggedInUser: CometChat.User | null;
|
|
173
|
+
disableMentions: boolean;
|
|
174
|
+
textFormatters?: Array<CometChatTextFormatter>;
|
|
169
175
|
/**
|
|
170
|
-
|
|
171
|
-
|
|
176
|
+
* Properties for internal use
|
|
177
|
+
*/
|
|
172
178
|
/**
|
|
173
179
|
* passing this callback to menuList component on delete click
|
|
174
180
|
* @param {CometChat.Conversation} conversation
|
|
@@ -178,11 +184,11 @@ export declare class CometChatConversationsComponent implements OnInit, OnChange
|
|
|
178
184
|
onConversationSelected(conversation: CometChat.Conversation, event: any): void;
|
|
179
185
|
setStatusIndicatorStyle: (conversation: CometChat.Conversation) => any;
|
|
180
186
|
/**
|
|
181
|
-
|
|
182
|
-
|
|
187
|
+
* @param {CometChat.Conversation} conversation
|
|
188
|
+
*/
|
|
183
189
|
checkStatusType(conversation: CometChat.Conversation): any;
|
|
184
190
|
getExtensionData(messageObject: CometChat.BaseMessage): any;
|
|
185
|
-
setSubtitle: (conversationObject: CometChat.Conversation) =>
|
|
191
|
+
setSubtitle: (conversationObject: CometChat.Conversation) => SafeHtml;
|
|
186
192
|
checkGroupType(conversation: CometChat.Conversation): string;
|
|
187
193
|
onCancelClick: () => void;
|
|
188
194
|
getMessageReceipt: (conversation: CometChat.Conversation) => import("@cometchat/uikit-shared/dist/Utils/MessageReceiptUtils").receipts;
|
|
@@ -191,7 +197,7 @@ export declare class CometChatConversationsComponent implements OnInit, OnChange
|
|
|
191
197
|
background: string;
|
|
192
198
|
border: string;
|
|
193
199
|
};
|
|
194
|
-
constructor(ngZone: NgZone, ref: ChangeDetectorRef, themeService: CometChatThemeService);
|
|
200
|
+
constructor(ngZone: NgZone, ref: ChangeDetectorRef, themeService: CometChatThemeService, sanitizer: DomSanitizer);
|
|
195
201
|
ngOnInit(): void;
|
|
196
202
|
attachConnectionListeners(): void;
|
|
197
203
|
updateConversationObject(conversation: CometChat.Conversation): void;
|
|
@@ -348,5 +354,5 @@ export declare class CometChatConversationsComponent implements OnInit, OnChange
|
|
|
348
354
|
textColor: string | undefined;
|
|
349
355
|
};
|
|
350
356
|
static ɵfac: i0.ɵɵFactoryDeclaration<CometChatConversationsComponent, never>;
|
|
351
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<CometChatConversationsComponent, "cometchat-conversations", never, { "subtitleView": "subtitleView"; "title": "title"; "options": "options"; "searchPlaceHolder": "searchPlaceHolder"; "disableUsersPresence": "disableUsersPresence"; "disableReceipt": "disableReceipt"; "disableTyping": "disableTyping"; "deliveredIcon": "deliveredIcon"; "readIcon": "readIcon"; "errorIcon": "errorIcon"; "datePattern": "datePattern"; "onError": "onError"; "sentIcon": "sentIcon"; "privateGroupIcon": "privateGroupIcon"; "protectedGroupIcon": "protectedGroupIcon"; "customSoundForMessages": "customSoundForMessages"; "activeConversation": "activeConversation"; "searchIconURL": "searchIconURL"; "hideSearch": "hideSearch"; "conversationsRequestBuilder": "conversationsRequestBuilder"; "emptyStateView": "emptyStateView"; "onSelect": "onSelect"; "loadingIconURL": "loadingIconURL"; "errorStateView": "errorStateView"; "loadingStateView": "loadingStateView"; "emptyStateText": "emptyStateText"; "errorStateText": "errorStateText"; "titleAlignment": "titleAlignment"; "listItemView": "listItemView"; "menu": "menu"; "hideSeparator": "hideSeparator"; "searchPlaceholder": "searchPlaceholder"; "hideError": "hideError"; "selectionMode": "selectionMode"; "disableSoundForMessages": "disableSoundForMessages"; "confirmDialogTitle": "confirmDialogTitle"; "confirmButtonText": "confirmButtonText"; "cancelButtonText": "cancelButtonText"; "confirmDialogMessage": "confirmDialogMessage"; "onItemClick": "onItemClick"; "deleteConversationDialogStyle": "deleteConversationDialogStyle"; "backdropStyle": "backdropStyle"; "badgeStyle": "badgeStyle"; "dateStyle": "dateStyle"; "conversationsStyle": "conversationsStyle"; "listItemStyle": "listItemStyle"; "statusIndicatorStyle": "statusIndicatorStyle"; "typingIndicatorText": "typingIndicatorText"; "threadIndicatorText": "threadIndicatorText"; "avatarStyle": "avatarStyle"; "receiptStyle": "receiptStyle"; "loggedInUser": "loggedInUser"; }, {}, never, never>;
|
|
357
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CometChatConversationsComponent, "cometchat-conversations", never, { "subtitleView": "subtitleView"; "title": "title"; "options": "options"; "searchPlaceHolder": "searchPlaceHolder"; "disableUsersPresence": "disableUsersPresence"; "disableReceipt": "disableReceipt"; "disableTyping": "disableTyping"; "deliveredIcon": "deliveredIcon"; "readIcon": "readIcon"; "errorIcon": "errorIcon"; "datePattern": "datePattern"; "onError": "onError"; "sentIcon": "sentIcon"; "privateGroupIcon": "privateGroupIcon"; "protectedGroupIcon": "protectedGroupIcon"; "customSoundForMessages": "customSoundForMessages"; "activeConversation": "activeConversation"; "searchIconURL": "searchIconURL"; "hideSearch": "hideSearch"; "conversationsRequestBuilder": "conversationsRequestBuilder"; "emptyStateView": "emptyStateView"; "onSelect": "onSelect"; "loadingIconURL": "loadingIconURL"; "errorStateView": "errorStateView"; "loadingStateView": "loadingStateView"; "emptyStateText": "emptyStateText"; "errorStateText": "errorStateText"; "titleAlignment": "titleAlignment"; "listItemView": "listItemView"; "menu": "menu"; "hideSeparator": "hideSeparator"; "searchPlaceholder": "searchPlaceholder"; "hideError": "hideError"; "selectionMode": "selectionMode"; "disableSoundForMessages": "disableSoundForMessages"; "confirmDialogTitle": "confirmDialogTitle"; "confirmButtonText": "confirmButtonText"; "cancelButtonText": "cancelButtonText"; "confirmDialogMessage": "confirmDialogMessage"; "onItemClick": "onItemClick"; "deleteConversationDialogStyle": "deleteConversationDialogStyle"; "backdropStyle": "backdropStyle"; "badgeStyle": "badgeStyle"; "dateStyle": "dateStyle"; "conversationsStyle": "conversationsStyle"; "listItemStyle": "listItemStyle"; "statusIndicatorStyle": "statusIndicatorStyle"; "typingIndicatorText": "typingIndicatorText"; "threadIndicatorText": "threadIndicatorText"; "avatarStyle": "avatarStyle"; "receiptStyle": "receiptStyle"; "loggedInUser": "loggedInUser"; "disableMentions": "disableMentions"; "textFormatters": "textFormatters"; }, {}, never, never>;
|
|
352
358
|
}
|
|
@@ -26,7 +26,7 @@ export declare class CometChatDetailsComponent implements OnInit, OnChanges {
|
|
|
26
26
|
hideProfile: boolean;
|
|
27
27
|
subtitleView: TemplateRef<any>;
|
|
28
28
|
customProfileView: TemplateRef<any>;
|
|
29
|
-
data
|
|
29
|
+
data?: CometChatDetailsTemplate[];
|
|
30
30
|
disableUsersPresence: boolean;
|
|
31
31
|
privateGroupIcon: string;
|
|
32
32
|
protectedGroupIcon: string;
|
|
@@ -132,8 +132,8 @@ export declare class CometChatDetailsComponent implements OnInit, OnChanges {
|
|
|
132
132
|
*/
|
|
133
133
|
getGroupIcon: (group: CometChat.Group) => string | null | undefined;
|
|
134
134
|
/**
|
|
135
|
-
|
|
136
|
-
|
|
135
|
+
* @param {CometChat.Group} group
|
|
136
|
+
*/
|
|
137
137
|
getStatusIndicatorColor(group: CometChat.Group): any;
|
|
138
138
|
getTemplateOptions: (template: CometChatDetailsTemplate) => CometChatDetailsOption[];
|
|
139
139
|
setThemeStyle(): void;
|
package/CometChatGroupMembers/cometchat-group-members/cometchat-group-members.component.d.ts
CHANGED
|
@@ -1,19 +1,19 @@
|
|
|
1
1
|
import { OnInit, ChangeDetectorRef, TemplateRef, OnChanges, SimpleChanges } from "@angular/core";
|
|
2
2
|
import { CometChat } from "@cometchat/chat-sdk-javascript";
|
|
3
|
-
import { AvatarStyle, ListItemStyle, ChangeScopeStyle, MenuListStyle, BackdropStyle } from
|
|
3
|
+
import { AvatarStyle, ListItemStyle, ChangeScopeStyle, MenuListStyle, BackdropStyle } from "@cometchat/uikit-elements";
|
|
4
4
|
import { GroupMembersStyle, ListStyle } from "@cometchat/uikit-shared";
|
|
5
|
-
import { CometChatOption, SelectionMode, States, TitleAlignment } from
|
|
5
|
+
import { CometChatOption, SelectionMode, States, TitleAlignment, UserPresencePlacement } from "@cometchat/uikit-resources";
|
|
6
6
|
import { CometChatThemeService } from "../../CometChatTheme.service";
|
|
7
7
|
import * as i0 from "@angular/core";
|
|
8
8
|
/**
|
|
9
|
-
*
|
|
10
|
-
* CometChatGroupMembersComponent is used to render list of group members
|
|
11
|
-
*
|
|
12
|
-
* @version 1.0.0
|
|
13
|
-
* @author CometChatTeam
|
|
14
|
-
* @copyright © 2022 CometChat Inc.
|
|
15
|
-
*
|
|
16
|
-
*/
|
|
9
|
+
*
|
|
10
|
+
* CometChatGroupMembersComponent is used to render list of group members
|
|
11
|
+
*
|
|
12
|
+
* @version 1.0.0
|
|
13
|
+
* @author CometChatTeam
|
|
14
|
+
* @copyright © 2022 CometChat Inc.
|
|
15
|
+
*
|
|
16
|
+
*/
|
|
17
17
|
export declare class CometChatGroupMembersComponent implements OnInit, OnChanges {
|
|
18
18
|
private ref;
|
|
19
19
|
private themeService;
|
|
@@ -26,7 +26,7 @@ export declare class CometChatGroupMembersComponent implements OnInit, OnChanges
|
|
|
26
26
|
menu: TemplateRef<any>;
|
|
27
27
|
options: ((member: CometChat.GroupMember) => CometChatOption[]) | null;
|
|
28
28
|
backButtonIconURL: string;
|
|
29
|
-
closeButtonIconURL: string;
|
|
29
|
+
closeButtonIconURL: string | undefined;
|
|
30
30
|
showBackButton: boolean;
|
|
31
31
|
hideSeparator: boolean;
|
|
32
32
|
selectionMode: SelectionMode;
|
|
@@ -34,7 +34,7 @@ export declare class CometChatGroupMembersComponent implements OnInit, OnChanges
|
|
|
34
34
|
searchIconURL: string;
|
|
35
35
|
hideSearch: boolean;
|
|
36
36
|
title: string;
|
|
37
|
-
onError
|
|
37
|
+
onError?: ((error: CometChat.CometChatException) => void) | null;
|
|
38
38
|
backdropStyle: BackdropStyle;
|
|
39
39
|
onBack: () => void;
|
|
40
40
|
onClose: () => void;
|
|
@@ -53,6 +53,10 @@ export declare class CometChatGroupMembersComponent implements OnInit, OnChanges
|
|
|
53
53
|
groupMembersStyle: GroupMembersStyle;
|
|
54
54
|
groupScopeStyle: ChangeScopeStyle;
|
|
55
55
|
listItemStyle: ListItemStyle;
|
|
56
|
+
onItemClick: (user: CometChat.GroupMember) => void;
|
|
57
|
+
onEmpty?: () => void;
|
|
58
|
+
userPresencePlacement: UserPresencePlacement;
|
|
59
|
+
disableLoadingState: boolean;
|
|
56
60
|
listStyle: ListStyle;
|
|
57
61
|
menuListStyle: MenuListStyle;
|
|
58
62
|
modalStyle: any;
|
|
@@ -74,14 +78,20 @@ export declare class CometChatGroupMembersComponent implements OnInit, OnChanges
|
|
|
74
78
|
membersListenerId: string;
|
|
75
79
|
loggedInUser: CometChat.User | null;
|
|
76
80
|
changeScope: boolean;
|
|
81
|
+
fetchingGroups: boolean;
|
|
82
|
+
fetchTimeOut: any;
|
|
83
|
+
previousSearchKeyword: string;
|
|
77
84
|
constructor(ref: ChangeDetectorRef, themeService: CometChatThemeService);
|
|
78
|
-
ngOnChanges(changes: SimpleChanges): void;
|
|
79
85
|
memberScope: any[];
|
|
80
86
|
membersList: CometChat.GroupMember[];
|
|
81
87
|
closeClicked(): void;
|
|
82
88
|
backClicked(): void;
|
|
89
|
+
onClick: (groupMember: CometChat.GroupMember) => void;
|
|
83
90
|
onMemberSelected(member: CometChat.GroupMember, event: any): void;
|
|
84
91
|
ngOnInit(): void;
|
|
92
|
+
ngOnChanges(changes: SimpleChanges): void;
|
|
93
|
+
searchKeyWordUpdated: () => void;
|
|
94
|
+
searchForGroupMembers: () => void;
|
|
85
95
|
ngOnDestroy(): void;
|
|
86
96
|
/**
|
|
87
97
|
* @param {CometChat.GroupMember} member
|
|
@@ -143,5 +153,5 @@ export declare class CometChatGroupMembersComponent implements OnInit, OnChanges
|
|
|
143
153
|
textColor: string | undefined;
|
|
144
154
|
};
|
|
145
155
|
static ɵfac: i0.ɵɵFactoryDeclaration<CometChatGroupMembersComponent, never>;
|
|
146
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<CometChatGroupMembersComponent, "cometchat-group-members", never, { "groupMemberRequestBuilder": "groupMemberRequestBuilder"; "searchRequestBuilder": "searchRequestBuilder"; "subtitleView": "subtitleView"; "listItemView": "listItemView"; "tailView": "tailView"; "disableUsersPresence": "disableUsersPresence"; "menu": "menu"; "options": "options"; "backButtonIconURL": "backButtonIconURL"; "closeButtonIconURL": "closeButtonIconURL"; "showBackButton": "showBackButton"; "hideSeparator": "hideSeparator"; "selectionMode": "selectionMode"; "searchPlaceholder": "searchPlaceholder"; "searchIconURL": "searchIconURL"; "hideSearch": "hideSearch"; "title": "title"; "onError": "onError"; "backdropStyle": "backdropStyle"; "onBack": "onBack"; "onClose": "onClose"; "onSelect": "onSelect"; "group": "group"; "emptyStateView": "emptyStateView"; "errorStateView": "errorStateView"; "loadingIconURL": "loadingIconURL"; "loadingStateView": "loadingStateView"; "emptyStateText": "emptyStateText"; "errorStateText": "errorStateText"; "titleAlignment": "titleAlignment"; "dropdownIconURL": "dropdownIconURL"; "statusIndicatorStyle": "statusIndicatorStyle"; "avatarStyle": "avatarStyle"; "groupMembersStyle": "groupMembersStyle"; "groupScopeStyle": "groupScopeStyle"; "listItemStyle": "listItemStyle"; }, {}, never, never>;
|
|
156
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CometChatGroupMembersComponent, "cometchat-group-members", never, { "groupMemberRequestBuilder": "groupMemberRequestBuilder"; "searchRequestBuilder": "searchRequestBuilder"; "subtitleView": "subtitleView"; "listItemView": "listItemView"; "tailView": "tailView"; "disableUsersPresence": "disableUsersPresence"; "menu": "menu"; "options": "options"; "backButtonIconURL": "backButtonIconURL"; "closeButtonIconURL": "closeButtonIconURL"; "showBackButton": "showBackButton"; "hideSeparator": "hideSeparator"; "selectionMode": "selectionMode"; "searchPlaceholder": "searchPlaceholder"; "searchIconURL": "searchIconURL"; "hideSearch": "hideSearch"; "title": "title"; "onError": "onError"; "backdropStyle": "backdropStyle"; "onBack": "onBack"; "onClose": "onClose"; "onSelect": "onSelect"; "group": "group"; "emptyStateView": "emptyStateView"; "errorStateView": "errorStateView"; "loadingIconURL": "loadingIconURL"; "loadingStateView": "loadingStateView"; "emptyStateText": "emptyStateText"; "errorStateText": "errorStateText"; "titleAlignment": "titleAlignment"; "dropdownIconURL": "dropdownIconURL"; "statusIndicatorStyle": "statusIndicatorStyle"; "avatarStyle": "avatarStyle"; "groupMembersStyle": "groupMembersStyle"; "groupScopeStyle": "groupScopeStyle"; "listItemStyle": "listItemStyle"; "onItemClick": "onItemClick"; "onEmpty": "onEmpty"; "userPresencePlacement": "userPresencePlacement"; "disableLoadingState": "disableLoadingState"; "searchKeyword": "searchKeyword"; }, {}, never, never>;
|
|
147
157
|
}
|
package/CometChatMessageBubble/cometchat-message-bubble/cometchat-message-bubble.component.d.ts
CHANGED
|
@@ -10,7 +10,7 @@ export declare class CometChatMessageBubbleComponent implements OnInit, OnChange
|
|
|
10
10
|
messageBubbleStyle: BaseStyle;
|
|
11
11
|
alignment: MessageBubbleAlignment;
|
|
12
12
|
options: CometChatMessageOption[];
|
|
13
|
-
id
|
|
13
|
+
id?: number | string;
|
|
14
14
|
leadingView: TemplateRef<any> | null;
|
|
15
15
|
headerView: TemplateRef<any> | null;
|
|
16
16
|
replyView: TemplateRef<any> | null;
|
|
@@ -18,6 +18,7 @@ export declare class CometChatMessageBubbleComponent implements OnInit, OnChange
|
|
|
18
18
|
threadView: TemplateRef<any> | null;
|
|
19
19
|
footerView: TemplateRef<any> | null;
|
|
20
20
|
bottomView: TemplateRef<any> | null;
|
|
21
|
+
statusInfoView: TemplateRef<any> | null;
|
|
21
22
|
optionsStyle: MenuListStyle;
|
|
22
23
|
moreIconURL: string;
|
|
23
24
|
topMenuSize: number;
|
|
@@ -58,5 +59,5 @@ export declare class CometChatMessageBubbleComponent implements OnInit, OnChange
|
|
|
58
59
|
alignItems: string;
|
|
59
60
|
};
|
|
60
61
|
static ɵfac: i0.ɵɵFactoryDeclaration<CometChatMessageBubbleComponent, never>;
|
|
61
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<CometChatMessageBubbleComponent, "cometchat-message-bubble", never, { "messageBubbleStyle": "messageBubbleStyle"; "alignment": "alignment"; "options": "options"; "id": "id"; "leadingView": "leadingView"; "headerView": "headerView"; "replyView": "replyView"; "contentView": "contentView"; "threadView": "threadView"; "footerView": "footerView"; "bottomView": "bottomView"; "moreIconURL": "moreIconURL"; "topMenuSize": "topMenuSize"; }, {}, never, never>;
|
|
62
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CometChatMessageBubbleComponent, "cometchat-message-bubble", never, { "messageBubbleStyle": "messageBubbleStyle"; "alignment": "alignment"; "options": "options"; "id": "id"; "leadingView": "leadingView"; "headerView": "headerView"; "replyView": "replyView"; "contentView": "contentView"; "threadView": "threadView"; "footerView": "footerView"; "bottomView": "bottomView"; "statusInfoView": "statusInfoView"; "moreIconURL": "moreIconURL"; "topMenuSize": "topMenuSize"; }, {}, never, never>;
|
|
62
63
|
}
|
|
@@ -1,8 +1,9 @@
|
|
|
1
1
|
import { OnInit, ElementRef, ChangeDetectorRef, OnChanges, SimpleChanges, TemplateRef, EventEmitter } from "@angular/core";
|
|
2
|
+
import { CometChat } from "@cometchat/chat-sdk-javascript";
|
|
2
3
|
import { EmojiKeyboardStyle, PopoverStyle, ActionSheetStyle, PreviewStyle, MediaRecorderStyle, BackdropStyle } from "@cometchat/uikit-elements";
|
|
3
4
|
import { Subscription } from "rxjs";
|
|
4
|
-
import { localize, CometChatMessageComposerAction, AuxiliaryButtonAlignment, Placement, CometChatActionsView, States } from "@cometchat/uikit-resources";
|
|
5
|
-
import { MessageComposerStyle, StickersConfiguration, StickersStyle, CreatePollStyle, ComposerId, SmartRepliesStyle, AIOptionsStyle } from "@cometchat/uikit-shared";
|
|
5
|
+
import { localize, CometChatMessageComposerAction, AuxiliaryButtonAlignment, Placement, CometChatActionsView, States, UserMemberListType } from "@cometchat/uikit-resources";
|
|
6
|
+
import { MessageComposerStyle, StickersConfiguration, StickersStyle, CreatePollStyle, ComposerId, SmartRepliesStyle, AIOptionsStyle, CometChatMentionsTextFormatter, CometChatTextFormatter, UserMentionStyle, UserMemberWrapperConfiguration } from "@cometchat/uikit-shared";
|
|
6
7
|
import { CometChatThemeService } from "../../CometChatTheme.service";
|
|
7
8
|
import "@cometchat/uikit-shared";
|
|
8
9
|
import "@cometchat/uikit-elements";
|
|
@@ -26,6 +27,7 @@ export declare class CometChatMessageComposerComponent implements OnInit, OnChan
|
|
|
26
27
|
stickerButtonRef: ElementRef;
|
|
27
28
|
mediaRecordedRef: ElementRef;
|
|
28
29
|
aiButtonRef: ElementRef;
|
|
30
|
+
userMemberWrapperRef: ElementRef;
|
|
29
31
|
user: CometChat.User;
|
|
30
32
|
group: CometChat.Group;
|
|
31
33
|
disableSoundForMessages: boolean;
|
|
@@ -45,6 +47,9 @@ export declare class CometChatMessageComposerComponent implements OnInit, OnChan
|
|
|
45
47
|
hideLiveReaction: boolean;
|
|
46
48
|
LiveReactionIconURL: string;
|
|
47
49
|
backButtonIconURL: string;
|
|
50
|
+
mentionsWarningText?: string;
|
|
51
|
+
mentionsWarningStyle?: any;
|
|
52
|
+
InfoSimpleIcon: string;
|
|
48
53
|
messageComposerStyle: MessageComposerStyle;
|
|
49
54
|
onSendButtonClick: ((message: CometChat.BaseMessage) => void) | undefined;
|
|
50
55
|
onError: ((error: CometChat.CometChatException) => void) | null;
|
|
@@ -61,10 +66,23 @@ export declare class CometChatMessageComposerComponent implements OnInit, OnChan
|
|
|
61
66
|
voiceRecordingStopIconURL: string;
|
|
62
67
|
voiceRecordingSubmitIconURL: string;
|
|
63
68
|
childEvent: EventEmitter<void>;
|
|
69
|
+
userMemberWrapperConfiguration: UserMemberWrapperConfiguration;
|
|
70
|
+
userMemberListType: UserMemberListType;
|
|
71
|
+
disableMentions?: boolean;
|
|
72
|
+
textFormatters?: Array<CometChatTextFormatter>;
|
|
64
73
|
composerId: ComposerId;
|
|
74
|
+
mentionsFormatterInstanceId: string;
|
|
65
75
|
composerActions: CometChatMessageComposerAction[];
|
|
66
76
|
states: typeof States;
|
|
77
|
+
mentionsSearchTerm: string;
|
|
78
|
+
showListForMentions: boolean;
|
|
79
|
+
mentionsSearchCount: number;
|
|
80
|
+
lastEmptySearchTerm?: string;
|
|
67
81
|
smartReplyState: States;
|
|
82
|
+
showMentionsCountWarning: boolean;
|
|
83
|
+
groupMembersRequestBuilder: CometChat.GroupMembersRequestBuilder;
|
|
84
|
+
usersRequestBuilder: CometChat.UsersRequestBuilder;
|
|
85
|
+
ccShowMentionsCountWarning: Subscription;
|
|
68
86
|
loadingStateText: string;
|
|
69
87
|
errorStateText: string;
|
|
70
88
|
emptyStateText: string;
|
|
@@ -83,10 +101,14 @@ export declare class CometChatMessageComposerComponent implements OnInit, OnChan
|
|
|
83
101
|
editPreviewObject: CometChat.TextMessage;
|
|
84
102
|
ccMessageEdit: Subscription;
|
|
85
103
|
ccComposeMessage: Subscription;
|
|
104
|
+
textFormatterList: Array<CometChatTextFormatter>;
|
|
105
|
+
mentionsTextFormatterInstance: CometChatMentionsTextFormatter;
|
|
106
|
+
mentionedUsers: Array<CometChat.User | CometChat.GroupMember>;
|
|
86
107
|
acceptHandlers: any;
|
|
87
108
|
enableStickerKeyboard: boolean;
|
|
88
109
|
toggleMediaRecorded: boolean;
|
|
89
110
|
showAiBotList: boolean;
|
|
111
|
+
mentionsTypeSetByUser: boolean;
|
|
90
112
|
stickerConfiguration: {
|
|
91
113
|
id?: string;
|
|
92
114
|
configuration?: StickersConfiguration;
|
|
@@ -103,7 +125,7 @@ export declare class CometChatMessageComposerComponent implements OnInit, OnChan
|
|
|
103
125
|
mediaRecorderButtonStyle: any;
|
|
104
126
|
emojiKeyboardStyle: EmojiKeyboardStyle;
|
|
105
127
|
stickerKeyboardStyle: StickersStyle;
|
|
106
|
-
|
|
128
|
+
textInputStyle: any;
|
|
107
129
|
previewStyle: PreviewStyle;
|
|
108
130
|
createPollStyle: CreatePollStyle;
|
|
109
131
|
storeTypingInterval: any;
|
|
@@ -120,13 +142,16 @@ export declare class CometChatMessageComposerComponent implements OnInit, OnChan
|
|
|
120
142
|
attachmentButtonStyle: any;
|
|
121
143
|
auxilaryPlacement: Placement;
|
|
122
144
|
messageSending: boolean;
|
|
123
|
-
messageToBeEdited: CometChat.TextMessage;
|
|
145
|
+
messageToBeEdited: CometChat.TextMessage | null;
|
|
146
|
+
editPreviewText: string | null;
|
|
124
147
|
showSendButton: boolean;
|
|
125
148
|
showEmojiKeyboard: boolean;
|
|
126
149
|
isAiEnabled: boolean;
|
|
127
150
|
smartReplies: string[];
|
|
128
151
|
loggedInUser: CometChat.User | null;
|
|
152
|
+
mentionStyleLocal: UserMentionStyle;
|
|
129
153
|
sendMessageOnEnter: (event: any) => void;
|
|
154
|
+
disableSendButton(): void;
|
|
130
155
|
messageInputChanged: (event: any) => void;
|
|
131
156
|
appendEmoji: (event: any) => void;
|
|
132
157
|
sendReaction(): void;
|
|
@@ -140,11 +165,20 @@ export declare class CometChatMessageComposerComponent implements OnInit, OnChan
|
|
|
140
165
|
addAttachmentCallback(): void;
|
|
141
166
|
subscribeToEvents(): void;
|
|
142
167
|
openEditPreview(): void;
|
|
168
|
+
/**
|
|
169
|
+
* Adds @ for every mention the message by matching uid
|
|
170
|
+
*
|
|
171
|
+
* @param {string} message
|
|
172
|
+
* @returns {void}
|
|
173
|
+
*/
|
|
174
|
+
checkForMentions(message: CometChat.TextMessage): string;
|
|
143
175
|
unsubscribeToEvents(): void;
|
|
144
176
|
closeModals(): void;
|
|
145
177
|
constructor(ref: ChangeDetectorRef, themeService: CometChatThemeService);
|
|
146
178
|
callConversationSummaryMethod(): void;
|
|
147
179
|
ngOnChanges(changes: SimpleChanges): void;
|
|
180
|
+
userOrGroupChanged(changes: SimpleChanges): void;
|
|
181
|
+
ngOnDestroy(): void;
|
|
148
182
|
customSendMethod(message: String): void;
|
|
149
183
|
/**
|
|
150
184
|
* @param {String=""} textMsg
|
|
@@ -201,12 +235,23 @@ export declare class CometChatMessageComposerComponent implements OnInit, OnChan
|
|
|
201
235
|
closePopovers(): void;
|
|
202
236
|
getComposerId(): ComposerId;
|
|
203
237
|
ngOnInit(): void;
|
|
238
|
+
/**
|
|
239
|
+
* Check for developer provided instance of MentionsTextFormatter
|
|
240
|
+
* If not provided, add default
|
|
241
|
+
* If provided, check if style is provided via configuration, then add style.
|
|
242
|
+
*/
|
|
243
|
+
initializeMentionsFormatter: () => void;
|
|
244
|
+
getMentionsStyle: () => UserMentionStyle;
|
|
204
245
|
getSmartReplies: () => Promise<unknown>;
|
|
205
246
|
enableAiFeatures(): void;
|
|
206
247
|
showAiBotMessageListMethod: (action: any) => void;
|
|
207
248
|
sendReply: (event: any) => void;
|
|
208
249
|
composerWrapperStyle(): {
|
|
250
|
+
height: string | undefined;
|
|
251
|
+
width: string | undefined;
|
|
209
252
|
background: string | undefined;
|
|
253
|
+
border: string | undefined;
|
|
254
|
+
borderRadius: string | undefined;
|
|
210
255
|
};
|
|
211
256
|
setTheme(): void;
|
|
212
257
|
setComposerStyle(): void;
|
|
@@ -219,8 +264,42 @@ export declare class CometChatMessageComposerComponent implements OnInit, OnChan
|
|
|
219
264
|
background: string;
|
|
220
265
|
buttonIconTint: string | undefined;
|
|
221
266
|
};
|
|
267
|
+
/**
|
|
268
|
+
* Accepts search term from mentionsTextFormatter and opens the mentions select list
|
|
269
|
+
*
|
|
270
|
+
* @param {string} searchTerm
|
|
271
|
+
* @returns {void}
|
|
272
|
+
*/
|
|
273
|
+
searchMentions: (searchTerm: string) => void;
|
|
274
|
+
/**
|
|
275
|
+
* Called when clicking a user from the mentions list.
|
|
276
|
+
* Add the user to mentions text formatter instance and then call rerender to style the mention
|
|
277
|
+
* within message input.
|
|
278
|
+
*
|
|
279
|
+
* @param {CometChat.User} user
|
|
280
|
+
*/
|
|
281
|
+
defaultMentionsItemClickHandler: (user: CometChat.User | CometChat.GroupMember) => void;
|
|
282
|
+
/**
|
|
283
|
+
* Close mentions list if search returns empty list
|
|
284
|
+
*/
|
|
285
|
+
defaultOnEmptyForMentions: () => void;
|
|
286
|
+
getMentionInfoIconStyle: () => {
|
|
287
|
+
height: string;
|
|
288
|
+
width: string;
|
|
289
|
+
buttonTextFont: string;
|
|
290
|
+
buttonTextColor: string | undefined;
|
|
291
|
+
borderRadius: string;
|
|
292
|
+
border: string;
|
|
293
|
+
buttonIconTint: string | undefined;
|
|
294
|
+
padding: string;
|
|
295
|
+
iconHeight: string;
|
|
296
|
+
iconWidth: string;
|
|
297
|
+
iconBackground: string;
|
|
298
|
+
gap: string;
|
|
299
|
+
};
|
|
300
|
+
handleClickOutside: (event: any) => void;
|
|
222
301
|
static ɵfac: i0.ɵɵFactoryDeclaration<CometChatMessageComposerComponent, never>;
|
|
223
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<CometChatMessageComposerComponent, "cometchat-message-composer", never, { "user": "user"; "group": "group"; "disableSoundForMessages": "disableSoundForMessages"; "customSoundForMessage": "customSoundForMessage"; "disableTypingEvents": "disableTypingEvents"; "text": "text"; "placeholderText": "placeholderText"; "headerView": "headerView"; "onTextChange": "onTextChange"; "attachmentIconURL": "attachmentIconURL"; "attachmentOptions": "attachmentOptions"; "secondaryButtonView": "secondaryButtonView"; "auxilaryButtonView": "auxilaryButtonView"; "auxiliaryButtonsAlignment": "auxiliaryButtonsAlignment"; "sendButtonView": "sendButtonView"; "parentMessageId": "parentMessageId"; "hideLiveReaction": "hideLiveReaction"; "LiveReactionIconURL": "LiveReactionIconURL"; "backButtonIconURL": "backButtonIconURL"; "messageComposerStyle": "messageComposerStyle"; "onSendButtonClick": "onSendButtonClick"; "onError": "onError"; "backdropStyle": "backdropStyle"; "actionSheetStyle": "actionSheetStyle"; "aiActionSheetStyle": "aiActionSheetStyle"; "hideVoiceRecording": "hideVoiceRecording"; "mediaRecorderStyle": "mediaRecorderStyle"; "aiOptionsStyle": "aiOptionsStyle"; "aiIconURL": "aiIconURL"; "voiceRecordingIconURL": "voiceRecordingIconURL"; "voiceRecordingCloseIconURL": "voiceRecordingCloseIconURL"; "voiceRecordingStartIconURL": "voiceRecordingStartIconURL"; "voiceRecordingStopIconURL": "voiceRecordingStopIconURL"; "voiceRecordingSubmitIconURL": "voiceRecordingSubmitIconURL"; }, { "childEvent": "childEvent"; }, never, never>;
|
|
302
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CometChatMessageComposerComponent, "cometchat-message-composer", never, { "user": "user"; "group": "group"; "disableSoundForMessages": "disableSoundForMessages"; "customSoundForMessage": "customSoundForMessage"; "disableTypingEvents": "disableTypingEvents"; "text": "text"; "placeholderText": "placeholderText"; "headerView": "headerView"; "onTextChange": "onTextChange"; "attachmentIconURL": "attachmentIconURL"; "attachmentOptions": "attachmentOptions"; "secondaryButtonView": "secondaryButtonView"; "auxilaryButtonView": "auxilaryButtonView"; "auxiliaryButtonsAlignment": "auxiliaryButtonsAlignment"; "sendButtonView": "sendButtonView"; "parentMessageId": "parentMessageId"; "hideLiveReaction": "hideLiveReaction"; "LiveReactionIconURL": "LiveReactionIconURL"; "backButtonIconURL": "backButtonIconURL"; "mentionsWarningText": "mentionsWarningText"; "mentionsWarningStyle": "mentionsWarningStyle"; "messageComposerStyle": "messageComposerStyle"; "onSendButtonClick": "onSendButtonClick"; "onError": "onError"; "backdropStyle": "backdropStyle"; "actionSheetStyle": "actionSheetStyle"; "aiActionSheetStyle": "aiActionSheetStyle"; "hideVoiceRecording": "hideVoiceRecording"; "mediaRecorderStyle": "mediaRecorderStyle"; "aiOptionsStyle": "aiOptionsStyle"; "aiIconURL": "aiIconURL"; "voiceRecordingIconURL": "voiceRecordingIconURL"; "voiceRecordingCloseIconURL": "voiceRecordingCloseIconURL"; "voiceRecordingStartIconURL": "voiceRecordingStartIconURL"; "voiceRecordingStopIconURL": "voiceRecordingStopIconURL"; "voiceRecordingSubmitIconURL": "voiceRecordingSubmitIconURL"; "userMemberWrapperConfiguration": "userMemberWrapperConfiguration"; "disableMentions": "disableMentions"; "textFormatters": "textFormatters"; }, { "childEvent": "childEvent"; }, never, never>;
|
|
224
303
|
}
|
|
225
304
|
export interface Buttons {
|
|
226
305
|
title: string;
|
|
@@ -3,8 +3,9 @@ import * as i0 from "@angular/core";
|
|
|
3
3
|
import * as i1 from "./cometchat-message-composer/cometchat-message-composer.component";
|
|
4
4
|
import * as i2 from "@angular/common";
|
|
5
5
|
import * as i3 from "../Shared/Views/AIAssistBotMessageList/aiassist-bot-message-list.module";
|
|
6
|
+
import * as i4 from "../CometChatUserMemberWrapper/cometchat-user-member-wrapper.module";
|
|
6
7
|
export declare class CometChatMessageComposer {
|
|
7
8
|
static ɵfac: i0.ɵɵFactoryDeclaration<CometChatMessageComposer, never>;
|
|
8
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<CometChatMessageComposer, [typeof i1.CometChatMessageComposerComponent], [typeof i2.CommonModule, typeof i3.AIAssistBotMessageList], [typeof i1.CometChatMessageComposerComponent]>;
|
|
9
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<CometChatMessageComposer, [typeof i1.CometChatMessageComposerComponent], [typeof i2.CommonModule, typeof i3.AIAssistBotMessageList, typeof i4.CometChatUserMemberWrapper], [typeof i1.CometChatMessageComposerComponent]>;
|
|
9
10
|
static ɵinj: i0.ɵɵInjectorDeclaration<CometChatMessageComposer>;
|
|
10
11
|
}
|