@cometchat/chat-uikit-angular 4.3.15 → 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/CometChatConversations/cometchat-conversations/cometchat-conversations.component.d.ts +7 -1
- 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 +9 -2
- package/CometChatUsers/cometchat-users/cometchat-users.component.d.ts +4 -1
- package/esm2020/CometChatConversations/cometchat-conversations/cometchat-conversations.component.mjs +18 -15
- package/esm2020/CometChatConversationsWithMessages/cometchat-conversations-with-messages/cometchat-conversations-with-messages.component.mjs +9 -9
- 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 +24 -11
- 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 +53 -30
- package/esm2020/CometChatMessages/cometchat-messages/cometchat-messages.component.mjs +3 -3
- package/esm2020/CometChatThreadedMessages/cometchat-threaded-messages/cometchat-threaded-messages.component.mjs +3 -3
- package/esm2020/CometChatUsers/cometchat-users/cometchat-users.component.mjs +15 -5
- package/esm2020/Shared/CometChatUIkit/CometChatUIKit.mjs +2 -2
- package/fesm2015/cometchat-chat-uikit-angular.mjs +255 -138
- package/fesm2015/cometchat-chat-uikit-angular.mjs.map +1 -1
- package/fesm2020/cometchat-chat-uikit-angular.mjs +248 -130
- 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.17",
|
|
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.10",
|
|
28
|
+
"@cometchat/uikit-elements": "~4.3.16",
|
|
29
|
+
"@cometchat/uikit-resources": "~4.3.12",
|
|
30
|
+
"@cometchat/uikit-shared": "~4.3.18"
|
|
31
31
|
},
|
|
32
32
|
"module": "fesm2015/cometchat-chat-uikit-angular.mjs",
|
|
33
33
|
"es2020": "fesm2020/cometchat-chat-uikit-angular.mjs",
|