@cometchat/chat-uikit-angular 4.3.17 → 4.3.19
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/CometChatCallButtons/cometchat-call-buttons/cometchat-call-buttons.component.d.ts +5 -5
- package/Calls/CometChatIncomingCall/cometchat-incoming-call/cometchat-incoming-call.component.d.ts +3 -2
- package/CometChatConversationsWithMessages/cometchat-conversations-with-messages/cometchat-conversations-with-messages.component.d.ts +1 -0
- package/CometChatGroupsWithMessages/cometchat-groups-with-messages/cometchat-groups-with-messages.component.d.ts +1 -0
- package/CometChatMessageComposer/cometchat-message-composer/cometchat-message-composer.component.d.ts +8 -1
- package/CometChatUsersWithMessages/cometchat-users-with-messages/cometchat-users-with-messages.component.d.ts +1 -0
- package/Shared/CometChatUIkit/CometChatUIKit.d.ts +6 -1
- package/esm2020/Calls/CometChatCallButtons/cometchat-call-buttons/cometchat-call-buttons.component.mjs +14 -16
- package/esm2020/Calls/CometChatCallLogsWithDetails/cometchat-call-logs-with-details/cometchat-call-logs-with-details.component.mjs +8 -3
- package/esm2020/Calls/CometChatIncomingCall/cometchat-incoming-call/cometchat-incoming-call.component.mjs +15 -11
- package/esm2020/CometChatContacts/cometchat-contacts/cometchat-contacts.component.mjs +2 -2
- package/esm2020/CometChatConversations/cometchat-conversations/cometchat-conversations.component.mjs +2 -2
- package/esm2020/CometChatConversationsWithMessages/cometchat-conversations-with-messages/cometchat-conversations-with-messages.component.mjs +11 -5
- package/esm2020/CometChatGroupsWithMessages/cometchat-groups-with-messages/cometchat-groups-with-messages.component.mjs +10 -4
- package/esm2020/CometChatMessageComposer/cometchat-message-composer/cometchat-message-composer.component.mjs +52 -6
- package/esm2020/CometChatMessageList/cometchat-message-list/cometchat-message-list.component.mjs +37 -38
- package/esm2020/CometChatMessages/cometchat-messages/cometchat-messages.component.mjs +1 -1
- package/esm2020/CometChatThreadedMessages/cometchat-threaded-messages/cometchat-threaded-messages.component.mjs +1 -1
- package/esm2020/CometChatUsers/cometchat-users/cometchat-users.component.mjs +2 -1
- package/esm2020/CometChatUsersWithMessages/cometchat-users-with-messages/cometchat-users-with-messages.component.mjs +9 -3
- package/esm2020/Shared/CometChatUIkit/CometChatUIKit.mjs +13 -3
- package/fesm2015/cometchat-chat-uikit-angular.mjs +170 -85
- package/fesm2015/cometchat-chat-uikit-angular.mjs.map +1 -1
- package/fesm2020/cometchat-chat-uikit-angular.mjs +164 -83
- package/fesm2020/cometchat-chat-uikit-angular.mjs.map +1 -1
- package/package.json +4 -4
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.19",
|
|
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",
|
|
@@ -25,9 +25,9 @@
|
|
|
25
25
|
"description": "Ready-to-use Chat UI Components for Angular (JavaScript/Web)",
|
|
26
26
|
"peerDependencies": {
|
|
27
27
|
"@cometchat/chat-sdk-javascript": "^4.0.10",
|
|
28
|
-
"@cometchat/uikit-elements": "~4.3.
|
|
29
|
-
"@cometchat/uikit-resources": "~4.3.
|
|
30
|
-
"@cometchat/uikit-shared": "~4.3.
|
|
28
|
+
"@cometchat/uikit-elements": "~4.3.18",
|
|
29
|
+
"@cometchat/uikit-resources": "~4.3.14",
|
|
30
|
+
"@cometchat/uikit-shared": "~4.3.21"
|
|
31
31
|
},
|
|
32
32
|
"module": "fesm2015/cometchat-chat-uikit-angular.mjs",
|
|
33
33
|
"es2020": "fesm2020/cometchat-chat-uikit-angular.mjs",
|