@cometchat/chat-uikit-angular 4.3.16 → 4.3.17
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/CometChatDetails/cometchat-details/cometchat-details.component.d.ts +2 -0
- package/CometChatGroups/cometchat-groups/cometchat-groups.component.d.ts +1 -0
- package/CometChatMessageHeader/cometchat-message-header/cometchat-message-header.component.d.ts +1 -0
- package/CometChatMessageInformation/cometchat-message-information/cometchat-message-information.component.d.ts +0 -2
- package/CometChatMessageList/cometchat-message-list/cometchat-message-list.component.d.ts +1 -1
- package/esm2020/CometChatConversations/cometchat-conversations/cometchat-conversations.component.mjs +2 -11
- package/esm2020/CometChatDetails/cometchat-details/cometchat-details.component.mjs +20 -4
- package/esm2020/CometChatGroups/cometchat-groups/cometchat-groups.component.mjs +89 -23
- package/esm2020/CometChatGroupsWithMessages/cometchat-groups-with-messages/cometchat-groups-with-messages.component.mjs +3 -3
- package/esm2020/CometChatMessageComposer/cometchat-message-composer/cometchat-message-composer.component.mjs +2 -1
- package/esm2020/CometChatMessageHeader/cometchat-message-header/cometchat-message-header.component.mjs +21 -32
- package/esm2020/CometChatMessageInformation/cometchat-message-information/cometchat-message-information.component.mjs +1 -3
- package/esm2020/CometChatMessageList/cometchat-message-list/cometchat-message-list.component.mjs +27 -25
- package/esm2020/Shared/CometChatUIkit/CometChatUIKit.mjs +2 -2
- package/examples/sample-app/README.md +4 -8
- package/fesm2015/cometchat-chat-uikit-angular.mjs +163 -103
- package/fesm2015/cometchat-chat-uikit-angular.mjs.map +1 -1
- package/fesm2020/cometchat-chat-uikit-angular.mjs +158 -95
- package/fesm2020/cometchat-chat-uikit-angular.mjs.map +1 -1
- package/package.json +5 -5
|
@@ -86,6 +86,7 @@ export declare class CometChatDetailsComponent implements OnInit, OnChanges {
|
|
|
86
86
|
getCustomOptionView(option: CometChatDetailsOption): any;
|
|
87
87
|
subtitleText: string;
|
|
88
88
|
userListenerId: string;
|
|
89
|
+
membersListenerId: string;
|
|
89
90
|
constructor(ref: ChangeDetectorRef, themeService: CometChatThemeService);
|
|
90
91
|
ngOnChanges(changes: SimpleChanges): void;
|
|
91
92
|
getTemplate(): void;
|
|
@@ -123,6 +124,7 @@ export declare class CometChatDetailsComponent implements OnInit, OnChanges {
|
|
|
123
124
|
viewMembers: () => void;
|
|
124
125
|
addMembers: () => void;
|
|
125
126
|
bannedMembers: () => void;
|
|
127
|
+
onBackForAddMembers: () => void;
|
|
126
128
|
leaveGroup(): void;
|
|
127
129
|
showDeleteDialog(): void;
|
|
128
130
|
deleteGroup(): void;
|
|
@@ -94,6 +94,7 @@ export declare class CometChatGroupsComponent implements OnInit, OnChanges {
|
|
|
94
94
|
getGroupIcon: (group: CometChat.Group) => string | null | undefined;
|
|
95
95
|
fetchNewUsers(): void;
|
|
96
96
|
attachConnectionListeners(): void;
|
|
97
|
+
findGroupIndex: (groupToFind: CometChat.Group) => number;
|
|
97
98
|
attachListeners(): void;
|
|
98
99
|
removeListener(): void;
|
|
99
100
|
fetchNextGroupList: (state?: States) => void;
|
package/CometChatMessageHeader/cometchat-message-header/cometchat-message-header.component.d.ts
CHANGED
|
@@ -78,6 +78,7 @@ export declare class CometChatMessageHeaderComponent implements OnInit, OnChange
|
|
|
78
78
|
getSubtitleView(): any;
|
|
79
79
|
checkGroupType(): string;
|
|
80
80
|
updateUserStatus(user: CometChat.User): void;
|
|
81
|
+
handleGroupEvent: (group: CometChat.Group, user: CometChat.User, hasJoined: boolean, newScope?: import("@cometchat/chat-sdk-javascript").GroupMemberScope | undefined) => void;
|
|
81
82
|
attachListeners(): void;
|
|
82
83
|
removeListener(): void;
|
|
83
84
|
ngOnDestroy(): void;
|
|
@@ -39,8 +39,6 @@ export declare class CometChatMessageInformationComponent implements OnInit, OnC
|
|
|
39
39
|
errorStateView: TemplateRef<any>;
|
|
40
40
|
onMessagesDelivered: Subscription;
|
|
41
41
|
onMessagesRead: Subscription;
|
|
42
|
-
onMessagesReadByAll: Subscription;
|
|
43
|
-
onMessagesDeliveredToAll: Subscription;
|
|
44
42
|
receipts: CometChat.MessageReceipt[];
|
|
45
43
|
receiptStyle: ReceiptStyle;
|
|
46
44
|
isUserType: boolean;
|
|
@@ -515,7 +515,7 @@ export declare class CometChatMessageListComponent implements OnInit, OnDestroy,
|
|
|
515
515
|
reInitializeMessageList(): void;
|
|
516
516
|
reInitializeMessageBuilder: () => void;
|
|
517
517
|
getMessageReceipt(message: CometChat.BaseMessage): import("@cometchat/uikit-shared/dist/Utils/MessageReceiptUtils").receipts;
|
|
518
|
-
messageReadAndDelivered(message: CometChat.MessageReceipt): void;
|
|
518
|
+
messageReadAndDelivered(message: CometChat.MessageReceipt, isGroupReceipt?: boolean): void;
|
|
519
519
|
/**
|
|
520
520
|
* @param {CometChat.BaseMessage} readMessage
|
|
521
521
|
*/
|