Skip to content

Commit 75ec4c5

Browse files
updated ui kit version to 4.3.16
1 parent 912170b commit 75ec4c5

File tree

115 files changed

+307
-124
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

115 files changed

+307
-124
lines changed

CometChatConversations/cometchat-conversations/cometchat-conversations.component.d.ts

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,13 @@ export declare class CometChatConversationsComponent implements OnInit, OnChange
3030
options: ((conversation: CometChat.Conversation) => CometChatOption[]) | null;
3131
searchPlaceHolder: string;
3232
disableUsersPresence: boolean;
33+
/**
34+
* @deprecated
35+
*
36+
* This property is deprecated as of version 4.3.16 due to newer property 'hideReceipt'. It will be removed in subsequent versions.
37+
*/
3338
disableReceipt: boolean;
39+
hideReceipt: boolean;
3440
disableTyping: boolean;
3541
deliveredIcon: string;
3642
readIcon: string;
@@ -374,5 +380,5 @@ export declare class CometChatConversationsComponent implements OnInit, OnChange
374380
textColor: string | undefined;
375381
};
376382
static ɵfac: i0.ɵɵFactoryDeclaration<CometChatConversationsComponent, never>;
377-
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"; "passwordGroupIcon": "passwordGroupIcon"; "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>;
383+
static ɵcmp: i0.ɵɵComponentDeclaration<CometChatConversationsComponent, "cometchat-conversations", never, { "subtitleView": "subtitleView"; "title": "title"; "options": "options"; "searchPlaceHolder": "searchPlaceHolder"; "disableUsersPresence": "disableUsersPresence"; "disableReceipt": "disableReceipt"; "hideReceipt": "hideReceipt"; "disableTyping": "disableTyping"; "deliveredIcon": "deliveredIcon"; "readIcon": "readIcon"; "errorIcon": "errorIcon"; "datePattern": "datePattern"; "onError": "onError"; "sentIcon": "sentIcon"; "privateGroupIcon": "privateGroupIcon"; "protectedGroupIcon": "protectedGroupIcon"; "passwordGroupIcon": "passwordGroupIcon"; "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>;
378384
}

CometChatMessageList/cometchat-message-list/cometchat-message-list.component.d.ts

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,13 @@ export declare class CometChatMessageListComponent implements OnInit, OnDestroy,
4949
loadingIconURL: string;
5050
user: CometChat.User;
5151
group: CometChat.Group;
52+
/**
53+
* @deprecated
54+
*
55+
* This property is deprecated as of version 4.3.16 due to newer property 'hideReceipt'. It will be removed in subsequent versions.
56+
*/
5257
disableReceipt: boolean;
58+
hideReceipt: boolean;
5359
disableSoundForMessages: boolean;
5460
customSoundForMessages: string;
5561
readIcon: string;
@@ -649,6 +655,7 @@ export declare class CometChatMessageListComponent implements OnInit, OnDestroy,
649655
closeSmartReply: () => void;
650656
closeConversationSummary: () => void;
651657
showStatusInfo(message: CometChat.BaseMessage): boolean;
658+
shouldShowMessage(message: CometChat.BaseMessage, disableReceipt: boolean, hideReceipt: boolean): boolean;
652659
sendReply: (event: any) => void;
653660
sendConversationStarter: (event: any) => void;
654661
fetchConversationStarter(): void;
@@ -802,5 +809,5 @@ export declare class CometChatMessageListComponent implements OnInit, OnDestroy,
802809
justifyContent: string;
803810
};
804811
static ɵfac: i0.ɵɵFactoryDeclaration<CometChatMessageListComponent, never>;
805-
static ɵcmp: i0.ɵɵComponentDeclaration<CometChatMessageListComponent, "cometchat-message-list", never, { "hideError": "hideError"; "hideDateSeparator": "hideDateSeparator"; "errorStateView": "errorStateView"; "loadingStateView": "loadingStateView"; "emptyStateView": "emptyStateView"; "errorStateText": "errorStateText"; "emptyStateText": "emptyStateText"; "loadingIconURL": "loadingIconURL"; "user": "user"; "group": "group"; "disableReceipt": "disableReceipt"; "disableSoundForMessages": "disableSoundForMessages"; "customSoundForMessages": "customSoundForMessages"; "readIcon": "readIcon"; "deliveredIcon": "deliveredIcon"; "sentIcon": "sentIcon"; "waitIcon": "waitIcon"; "errorIcon": "errorIcon"; "aiErrorIcon": "aiErrorIcon"; "aiEmptyIcon": "aiEmptyIcon"; "alignment": "alignment"; "showAvatar": "showAvatar"; "datePattern": "datePattern"; "timestampAlignment": "timestampAlignment"; "DateSeparatorPattern": "DateSeparatorPattern"; "templates": "templates"; "messagesRequestBuilder": "messagesRequestBuilder"; "newMessageIndicatorText": "newMessageIndicatorText"; "scrollToBottomOnNewMessages": "scrollToBottomOnNewMessages"; "thresholdValue": "thresholdValue"; "unreadMessageThreshold": "unreadMessageThreshold"; "reactionsConfiguration": "reactionsConfiguration"; "disableReactions": "disableReactions"; "emojiKeyboardStyle": "emojiKeyboardStyle"; "apiConfiguration": "apiConfiguration"; "onThreadRepliesClick": "onThreadRepliesClick"; "headerView": "headerView"; "footerView": "footerView"; "parentMessageId": "parentMessageId"; "threadIndicatorIcon": "threadIndicatorIcon"; "avatarStyle": "avatarStyle"; "backdropStyle": "backdropStyle"; "dateSeparatorStyle": "dateSeparatorStyle"; "messageListStyle": "messageListStyle"; "onError": "onError"; "messageInformationConfiguration": "messageInformationConfiguration"; "disableMentions": "disableMentions"; "textFormatters": "textFormatters"; }, {}, never, never>;
812+
static ɵcmp: i0.ɵɵComponentDeclaration<CometChatMessageListComponent, "cometchat-message-list", never, { "hideError": "hideError"; "hideDateSeparator": "hideDateSeparator"; "errorStateView": "errorStateView"; "loadingStateView": "loadingStateView"; "emptyStateView": "emptyStateView"; "errorStateText": "errorStateText"; "emptyStateText": "emptyStateText"; "loadingIconURL": "loadingIconURL"; "user": "user"; "group": "group"; "disableReceipt": "disableReceipt"; "hideReceipt": "hideReceipt"; "disableSoundForMessages": "disableSoundForMessages"; "customSoundForMessages": "customSoundForMessages"; "readIcon": "readIcon"; "deliveredIcon": "deliveredIcon"; "sentIcon": "sentIcon"; "waitIcon": "waitIcon"; "errorIcon": "errorIcon"; "aiErrorIcon": "aiErrorIcon"; "aiEmptyIcon": "aiEmptyIcon"; "alignment": "alignment"; "showAvatar": "showAvatar"; "datePattern": "datePattern"; "timestampAlignment": "timestampAlignment"; "DateSeparatorPattern": "DateSeparatorPattern"; "templates": "templates"; "messagesRequestBuilder": "messagesRequestBuilder"; "newMessageIndicatorText": "newMessageIndicatorText"; "scrollToBottomOnNewMessages": "scrollToBottomOnNewMessages"; "thresholdValue": "thresholdValue"; "unreadMessageThreshold": "unreadMessageThreshold"; "reactionsConfiguration": "reactionsConfiguration"; "disableReactions": "disableReactions"; "emojiKeyboardStyle": "emojiKeyboardStyle"; "apiConfiguration": "apiConfiguration"; "onThreadRepliesClick": "onThreadRepliesClick"; "headerView": "headerView"; "footerView": "footerView"; "parentMessageId": "parentMessageId"; "threadIndicatorIcon": "threadIndicatorIcon"; "avatarStyle": "avatarStyle"; "backdropStyle": "backdropStyle"; "dateSeparatorStyle": "dateSeparatorStyle"; "messageListStyle": "messageListStyle"; "onError": "onError"; "messageInformationConfiguration": "messageInformationConfiguration"; "disableMentions": "disableMentions"; "textFormatters": "textFormatters"; }, {}, never, never>;
806813
}

CometChatUsers/cometchat-users/cometchat-users.component.d.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,9 @@ export declare class CometChatUsersComponent implements OnInit {
6262
connectionListenerId: string;
6363
previousSearchKeyword: string;
6464
isWebsocketReconnected: boolean;
65+
selectedUsers: {
66+
[uid: string]: CometChat.User;
67+
};
6568
/**
6669
* Events
6770
*/
@@ -78,7 +81,7 @@ export declare class CometChatUsersComponent implements OnInit {
7881
subscribeToEvents(): void;
7982
unsubscribeToEvents(): void;
8083
ngOnDestroy(): void;
81-
isUserSelected(user: CometChat.User): boolean;
84+
isUserSelected(user: CometChat.User): true | import("@cometchat/chat-sdk-javascript").User;
8285
/**
8386
* @param {CometChat.User} user
8487
*/

assets/._.DS_Store

-4 KB
Binary file not shown.

assets/._.gitkeep

-4 KB
Binary file not shown.

assets/._Audio-Call.svg

-4 KB
Binary file not shown.

assets/._Audio-Call2x.svg

-4 KB
Binary file not shown.

assets/._Copy.svg

-4 KB
Binary file not shown.

assets/._Grid-layout.svg

-4 KB
Binary file not shown.

assets/._Heart.svg

-4 KB
Binary file not shown.

assets/._Imagemoderation.svg

-4 KB
Binary file not shown.

assets/._Info.svg

-4 KB
Binary file not shown.

assets/._Locked.svg

-4 KB
Binary file not shown.

assets/[email protected]

-4 KB
Binary file not shown.

assets/._Plus.svg

-4 KB
Binary file not shown.

assets/._Private.svg

-4 KB
Binary file not shown.

assets/._Reactionsicon.svg

-4 KB
Binary file not shown.

assets/[email protected]

-4 KB
Binary file not shown.

assets/._Send.svg

-4 KB
Binary file not shown.

assets/._Spinner.svg

-4 KB
Binary file not shown.

assets/._Stickers.svg

-4 KB
Binary file not shown.

assets/._Stipop.svg

-4 KB
Binary file not shown.

assets/._Video-call.svg

-4 KB
Binary file not shown.

assets/._Video-call2x.svg

-4 KB
Binary file not shown.

assets/._activity.svg

-4 KB
Binary file not shown.

assets/._addreaction.svg

-4 KB
Binary file not shown.

assets/._animals.svg

-4 KB
Binary file not shown.

assets/._attachment-file.svg

-4 KB
Binary file not shown.

assets/._audio-file.svg

-4 KB
Binary file not shown.

assets/._back.png

-4 KB
Binary file not shown.

assets/._backbutton.svg

-4 KB
Binary file not shown.

assets/._call.svg

-4 KB
Binary file not shown.

assets/._chats.svg

-4 KB
Binary file not shown.

assets/._checkmark.svg

-4 KB
Binary file not shown.

assets/._close.svg

-4 KB
Binary file not shown.

assets/._close2x.svg

-4 KB
Binary file not shown.

assets/._collaborativedocument.svg

-4 KB
Binary file not shown.

assets/._collaborativewhiteboard.svg

-4 KB
Binary file not shown.

assets/._create-button.svg

-4 KB
Binary file not shown.

assets/._declaration.d.ts

-4 KB
Binary file not shown.

assets/._delete.svg

-4 KB
Binary file not shown.

assets/._deleteicon.svg

-4 KB
Binary file not shown.

assets/._down-arrow.svg

-4 KB
Binary file not shown.

assets/._download.svg

-4 KB
Binary file not shown.

assets/._editicon.svg

-4 KB
Binary file not shown.

assets/._emoji.svg

-4 KB
Binary file not shown.

assets/._file-upload.svg

-4 KB
Binary file not shown.

assets/._flags.svg

-4 KB
Binary file not shown.

assets/._food.svg

-4 KB
Binary file not shown.

assets/._group.svg

-4 KB
Binary file not shown.

assets/._heart-reaction.png

-4 KB
Binary file not shown.

assets/._heart.png

-4 KB
Binary file not shown.

assets/._image.svg

-4 KB
Binary file not shown.

assets/._incomingcall.wav

-4 KB
Binary file not shown.

assets/._increase-size.svg

-4 KB
Binary file not shown.

assets/._location.svg

-4 KB
Binary file not shown.

assets/._message-delivered.png

-4 KB
Binary file not shown.

assets/._message-delivered.svg

-4 KB
Binary file not shown.

assets/._message-privately.svg

-4 KB
Binary file not shown.

assets/._message-read.png

-4 KB
Binary file not shown.

assets/._message-read.svg

-4 KB
Binary file not shown.

assets/._message-sent.png

-4 KB
Binary file not shown.

assets/._message-sent.svg

-4 KB
Binary file not shown.

assets/._mic.svg

-4 KB
Binary file not shown.

assets/._moreicon.svg

-4 KB
Binary file not shown.

assets/._new-chat.svg

-4 KB
Binary file not shown.

assets/._objects.svg

-4 KB
Binary file not shown.

assets/._open-thread.svg

-4 KB
Binary file not shown.

assets/._password-protected-group.svg

-4 KB
Binary file not shown.

assets/._pause-icon.svg

-4 KB
Binary file not shown.

assets/._photolibrary.svg

-4 KB
Binary file not shown.

assets/._placeholder.png

-4 KB
Binary file not shown.

assets/._play-icon.svg

-4 KB
Binary file not shown.

assets/._plus-rotated.svg

-4 KB
Binary file not shown.

assets/._polls.svg

-4 KB
Binary file not shown.

assets/._privacy.svg

-4 KB
Binary file not shown.

assets/._private-group.svg

-4 KB
Binary file not shown.

assets/._public.svg

-4 KB
Binary file not shown.

assets/._record-icon.svg

-4 KB
Binary file not shown.

assets/._reduce-size.svg

-4 KB
Binary file not shown.

assets/._right-arrow.svg

-4 KB
Binary file not shown.

assets/._search.png

-4 KB
Binary file not shown.

assets/._search.svg

-4 KB
Binary file not shown.

assets/._side-arrow.svg

-4 KB
Binary file not shown.

assets/._smileys.svg

-4 KB
Binary file not shown.

assets/._start-chat.svg

-4 KB
Binary file not shown.

assets/._start-conversation.svg

-4 KB
Binary file not shown.

assets/._stop.svg

-4 KB
Binary file not shown.

assets/._symbols.svg

-4 KB
Binary file not shown.

assets/._thread-arrow.svg

-4 KB
Binary file not shown.

assets/._thread-icon.svg

-4 KB
Binary file not shown.

assets/._threadicon.svg

-4 KB
Binary file not shown.

assets/._translation.svg

-4 KB
Binary file not shown.

assets/._travel.svg

-4 KB
Binary file not shown.

assets/._unsafe-content.svg

-4 KB
Binary file not shown.

assets/._user.svg

-4 KB
Binary file not shown.

assets/._video-upload.svg

-4 KB
Binary file not shown.

assets/._video.svg

-4 KB
Binary file not shown.

assets/._wait.png

-4 KB
Binary file not shown.

assets/._wait.svg

-4 KB
Binary file not shown.

assets/._warning-small.png

-4 KB
Binary file not shown.

assets/._warning-small.svg

-4 KB
Binary file not shown.

0 commit comments

Comments
 (0)