@cometchat/chat-uikit-angular 4.3.0 → 4.3.2
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/CometChatContacts/cometchat-contacts/cometchat-contacts.component.d.ts +1 -0
- package/CometChatConversations/cometchat-conversations/cometchat-conversations.component.d.ts +3 -1
- package/CometChatConversationsWithMessages/cometchat-conversations-with-messages/cometchat-conversations-with-messages.component.d.ts +4 -1
- package/CometChatDetails/cometchat-details/cometchat-details.component.d.ts +1 -2
- package/CometChatMessageComposer/cometchat-message-composer/cometchat-message-composer.component.d.ts +2 -2
- package/CometChatMessageList/cometchat-message-list/cometchat-message-list.component.d.ts +4 -0
- package/Shared/Framework/DataSource.d.ts +3 -3
- package/Shared/Framework/DataSourceDecorator.d.ts +3 -3
- package/Shared/Utils/MessageUtils.d.ts +3 -3
- package/esm2020/Calls/CometChatCallButtons/cometchat-call-buttons/cometchat-call-buttons.component.mjs +12 -8
- package/esm2020/Calls/CometChatCallLogs/cometchat-call-logs/cometchat-call-logs.component.mjs +10 -6
- package/esm2020/CometChatContacts/cometchat-contacts/cometchat-contacts.component.mjs +5 -4
- package/esm2020/CometChatConversations/cometchat-conversations/cometchat-conversations.component.mjs +46 -15
- package/esm2020/CometChatConversationsWithMessages/cometchat-conversations-with-messages/cometchat-conversations-with-messages.component.mjs +38 -9
- package/esm2020/CometChatDetails/cometchat-details/cometchat-details.component.mjs +11 -25
- package/esm2020/CometChatMessageComposer/cometchat-message-composer/cometchat-message-composer.component.mjs +11 -7
- package/esm2020/CometChatMessageList/cometchat-message-list/cometchat-message-list.component.mjs +205 -46
- package/esm2020/CometChatUsers/cometchat-users/cometchat-users.component.mjs +2 -2
- package/esm2020/Extensions/TextModerator/TextModeratorExtensionDecorator.mjs +3 -3
- package/esm2020/Shared/CometChatUIkit/CometChatUIKit.mjs +39 -7
- package/esm2020/Shared/Framework/DataSource.mjs +1 -1
- package/esm2020/Shared/Framework/DataSourceDecorator.mjs +1 -1
- package/esm2020/Shared/Utils/MessageUtils.mjs +35 -33
- package/examples/sample-app/README.md +46 -0
- package/fesm2015/cometchat-chat-uikit-angular.mjs +405 -146
- package/fesm2015/cometchat-chat-uikit-angular.mjs.map +1 -1
- package/fesm2020/cometchat-chat-uikit-angular.mjs +401 -149
- package/fesm2020/cometchat-chat-uikit-angular.mjs.map +1 -1
- package/package.json +6 -6
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cometchat/chat-uikit-angular",
|
|
3
|
-
"version": "4.3.
|
|
4
|
-
"license": "
|
|
3
|
+
"version": "4.3.2",
|
|
4
|
+
"license": "https://www.cometchat.com/legal-terms-of-service",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"CometChat",
|
|
7
7
|
"chat",
|
|
@@ -22,9 +22,9 @@
|
|
|
22
22
|
],
|
|
23
23
|
"peerDependencies": {
|
|
24
24
|
"@cometchat/chat-sdk-javascript": "^4.0.4",
|
|
25
|
-
"@cometchat/uikit-elements": "~4.3.
|
|
26
|
-
"@cometchat/uikit-resources": "~4.3.
|
|
27
|
-
"@cometchat/uikit-shared": "~4.3.
|
|
25
|
+
"@cometchat/uikit-elements": "~4.3.4",
|
|
26
|
+
"@cometchat/uikit-resources": "~4.3.3",
|
|
27
|
+
"@cometchat/uikit-shared": "~4.3.4"
|
|
28
28
|
},
|
|
29
29
|
"module": "fesm2015/cometchat-chat-uikit-angular.mjs",
|
|
30
30
|
"es2020": "fesm2020/cometchat-chat-uikit-angular.mjs",
|
|
@@ -49,4 +49,4 @@
|
|
|
49
49
|
"dependencies": {
|
|
50
50
|
"tslib": "^2.3.0"
|
|
51
51
|
}
|
|
52
|
-
}
|
|
52
|
+
}
|