@cometchat/chat-uikit-angular 4.3.13 → 4.3.15
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/CometChatCallLogDetails/cometchat-call-log-details/cometchat-call-log-details.component.d.ts +21 -4
- package/CometChatAddMembers/cometchat-add-members/cometchat-add-members.component.d.ts +5 -1
- package/CometChatConversations/cometchat-conversations/cometchat-conversations.component.d.ts +4 -1
- package/CometChatGroupMembers/cometchat-group-members/cometchat-group-members.component.d.ts +4 -0
- package/CometChatMessageComposer/cometchat-message-composer/cometchat-message-composer.component.d.ts +3 -1
- package/CometChatMessageHeader/cometchat-message-header/cometchat-message-header.component.d.ts +6 -0
- package/CometChatMessageInformation/cometchat-message-information/cometchat-message-information.component.d.ts +3 -0
- package/CometChatMessageList/cometchat-message-list/cometchat-message-list.component.d.ts +4 -1
- package/CometChatThreadedMessages/cometchat-threaded-messages/cometchat-threaded-messages.component.d.ts +6 -2
- package/CometChatUsers/cometchat-users/cometchat-users.component.d.ts +4 -0
- package/Shared/Utils/MessageUtils.d.ts +6 -0
- package/esm2020/Calls/CometChatCallLogDetails/cometchat-call-log-details/cometchat-call-log-details.component.mjs +31 -9
- package/esm2020/Calls/CometChatCallLogsWithDetails/cometchat-call-logs-with-details/cometchat-call-logs-with-details.component.mjs +3 -3
- package/esm2020/CometChatAddMembers/cometchat-add-members/cometchat-add-members.component.mjs +9 -3
- package/esm2020/CometChatBannedMembers/cometchat-banned-members/cometchat-banned-members.component.mjs +16 -21
- package/esm2020/CometChatConversations/cometchat-conversations/cometchat-conversations.component.mjs +77 -54
- package/esm2020/CometChatDetails/cometchat-details/cometchat-details.component.mjs +23 -5
- package/esm2020/CometChatGroupMembers/cometchat-group-members/cometchat-group-members.component.mjs +24 -13
- package/esm2020/CometChatGroups/cometchat-groups/cometchat-groups.component.mjs +3 -3
- package/esm2020/CometChatMessageComposer/cometchat-message-composer/cometchat-message-composer.component.mjs +28 -12
- package/esm2020/CometChatMessageHeader/cometchat-message-header/cometchat-message-header.component.mjs +54 -19
- package/esm2020/CometChatMessageInformation/cometchat-message-information/cometchat-message-information.component.mjs +19 -3
- package/esm2020/CometChatMessageList/cometchat-message-list/cometchat-message-list.component.mjs +30 -21
- package/esm2020/CometChatMessages/cometchat-messages/cometchat-messages.component.mjs +6 -3
- package/esm2020/CometChatThreadedMessages/cometchat-threaded-messages/cometchat-threaded-messages.component.mjs +29 -11
- package/esm2020/CometChatUsers/cometchat-users/cometchat-users.component.mjs +19 -12
- package/esm2020/CometChatUsersWithMessages/cometchat-users-with-messages/cometchat-users-with-messages.component.mjs +3 -3
- package/esm2020/Shared/CometChatUIkit/CometChatUIKit.mjs +2 -2
- package/esm2020/Shared/Utils/MessageUtils.mjs +15 -1
- package/fesm2015/cometchat-chat-uikit-angular.mjs +394 -200
- package/fesm2015/cometchat-chat-uikit-angular.mjs.map +1 -1
- package/fesm2020/cometchat-chat-uikit-angular.mjs +364 -176
- package/fesm2020/cometchat-chat-uikit-angular.mjs.map +1 -1
- package/package.json +5 -5
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cometchat/chat-uikit-angular",
|
|
3
|
-
"version": "4.3.
|
|
3
|
+
"version": "4.3.15",
|
|
4
4
|
"license": "https://www.cometchat.com/legal-terms-of-service",
|
|
5
5
|
"homepage": "https://www.cometchat.com",
|
|
6
6
|
"repository": "https://github.com/cometchat/cometchat-uikit-angular",
|
|
@@ -24,10 +24,10 @@
|
|
|
24
24
|
],
|
|
25
25
|
"description": "Ready-to-use Chat UI Components for Angular (JavaScript/Web)",
|
|
26
26
|
"peerDependencies": {
|
|
27
|
-
"@cometchat/chat-sdk-javascript": "^4.0.
|
|
28
|
-
"@cometchat/uikit-elements": "~4.3.
|
|
29
|
-
"@cometchat/uikit-resources": "~4.3.
|
|
30
|
-
"@cometchat/uikit-shared": "~4.3.
|
|
27
|
+
"@cometchat/chat-sdk-javascript": "^4.0.9",
|
|
28
|
+
"@cometchat/uikit-elements": "~4.3.14",
|
|
29
|
+
"@cometchat/uikit-resources": "~4.3.11",
|
|
30
|
+
"@cometchat/uikit-shared": "~4.3.16"
|
|
31
31
|
},
|
|
32
32
|
"module": "fesm2015/cometchat-chat-uikit-angular.mjs",
|
|
33
33
|
"es2020": "fesm2020/cometchat-chat-uikit-angular.mjs",
|