@cometchat/chat-uikit-angular 4.0.0-beta.1.2 → 4.0.0-beta.1.4
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/CometChatCallDetails/cometchat-call-details/cometchat-call-details.component.d.ts +139 -0
- package/Calls/CometChatCallDetails/cometchat-call-details.module.d.ts +10 -0
- package/Calls/CometChatCallHistory/cometchat-call-history/cometchat-call-history.component.d.ts +125 -0
- package/Calls/CometChatCallHistory/cometchat-call-history.module.d.ts +10 -0
- package/Calls/CometChatCallHistoryWithDetails/cometchat-call-history-with-details/cometchat-call-history-with-details.component.d.ts +59 -0
- package/Calls/CometChatCallHistoryWithDetails/cometchat-call-history-with-details.module.d.ts +12 -0
- package/Extensions/Stickers/StickersExtensionDecorator.d.ts +1 -1
- package/Shared/Views/CometChatTabs/cometchat-tabs/cometchat-tabs.component.d.ts +53 -0
- package/Shared/Views/CometChatTabs/cometchat-tabs.module.d.ts +12 -0
- package/esm2020/Calls/CometChatCallDetails/cometchat-call-details/cometchat-call-details.component.mjs +452 -0
- package/esm2020/Calls/CometChatCallDetails/cometchat-call-details.module.mjs +31 -0
- package/esm2020/Calls/CometChatCallHistory/cometchat-call-history/cometchat-call-history.component.mjs +397 -0
- package/esm2020/Calls/CometChatCallHistory/cometchat-call-history.module.mjs +28 -0
- package/esm2020/Calls/CometChatCallHistoryWithDetails/cometchat-call-history-with-details/cometchat-call-history-with-details.component.mjs +143 -0
- package/esm2020/Calls/CometChatCallHistoryWithDetails/cometchat-call-history-with-details.module.mjs +39 -0
- package/esm2020/Shared/Views/CometChatTabs/cometchat-tabs/cometchat-tabs.component.mjs +88 -0
- package/esm2020/Shared/Views/CometChatTabs/cometchat-tabs.module.mjs +39 -0
- package/esm2020/public-api.mjs +3 -1
- package/fesm2015/cometchat-chat-uikit-angular.mjs +1161 -3
- package/fesm2015/cometchat-chat-uikit-angular.mjs.map +1 -1
- package/fesm2020/cometchat-chat-uikit-angular.mjs +1155 -3
- package/fesm2020/cometchat-chat-uikit-angular.mjs.map +1 -1
- package/package.json +4 -4
- package/public-api.d.ts +2 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cometchat/chat-uikit-angular",
|
|
3
|
-
"version": "v4.0.0-beta.1.
|
|
3
|
+
"version": "v4.0.0-beta.1.4",
|
|
4
4
|
"keywords": [
|
|
5
5
|
"CometChat",
|
|
6
6
|
"chat",
|
|
@@ -21,9 +21,9 @@
|
|
|
21
21
|
],
|
|
22
22
|
"peerDependencies": {
|
|
23
23
|
"@cometchat-pro/chat": "3.0.12",
|
|
24
|
-
"@cometchat/uikit-elements": "1.0.0-beta.1.
|
|
25
|
-
"@cometchat/uikit-resources": "1.0.0-beta.1.
|
|
26
|
-
"@cometchat/uikit-shared": "1.0.0-beta.1.
|
|
24
|
+
"@cometchat/uikit-elements": "^1.0.0-beta.1.10",
|
|
25
|
+
"@cometchat/uikit-resources": "^1.0.0-beta.1.10",
|
|
26
|
+
"@cometchat/uikit-shared": "^1.0.0-beta.1.10"
|
|
27
27
|
},
|
|
28
28
|
"module": "fesm2015/cometchat-chat-uikit-angular.mjs",
|
|
29
29
|
"es2020": "fesm2020/cometchat-chat-uikit-angular.mjs",
|
package/public-api.d.ts
CHANGED
|
@@ -77,3 +77,5 @@ export { CometChatUsersComponent } from './CometChatUsers/cometchat-users/cometc
|
|
|
77
77
|
export { CometChatUsers } from './CometChatUsers/cometchat-users.module';
|
|
78
78
|
export { CometChatUsersWithMessagesComponent } from './CometChatUsersWithMessages/cometchat-users-with-messages/cometchat-users-with-messages.component';
|
|
79
79
|
export { CometChatUsersWithMessages } from './CometChatUsersWithMessages/cometchat-users-with-messages.module';
|
|
80
|
+
export { CometChatTabsComponent } from './Shared/Views/CometChatTabs/cometchat-tabs/cometchat-tabs.component';
|
|
81
|
+
export { CometChatTabs } from './Shared/Views/CometChatTabs/cometchat-tabs.module';
|