@cometchat/chat-uikit-angular 4.0.0-beta.1.1 → 4.0.0-beta.1.3

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.
Files changed (72) hide show
  1. package/Calls/CometChatCallButtons/cometchat-call-buttons/cometchat-call-buttons.component.d.ts +5 -2
  2. package/Calls/CometChatCallDetails/cometchat-call-details/cometchat-call-details.component.d.ts +139 -0
  3. package/Calls/CometChatCallDetails/cometchat-call-details.module.d.ts +10 -0
  4. package/Calls/CometChatCallHistory/cometchat-call-history/cometchat-call-history.component.d.ts +125 -0
  5. package/Calls/CometChatCallHistory/cometchat-call-history.module.d.ts +10 -0
  6. package/Calls/CometChatCallHistoryWithDetails/cometchat-call-history-with-details/cometchat-call-history-with-details.component.d.ts +59 -0
  7. package/Calls/CometChatCallHistoryWithDetails/cometchat-call-history-with-details.module.d.ts +12 -0
  8. package/Calls/CometChatIncomingCall/cometchat-incoming-call/cometchat-incoming-call.component.d.ts +0 -1
  9. package/Calls/CometChatOngoingCall/cometchat-ongoing-call/cometchat-ongoing-call.component.d.ts +4 -0
  10. package/CometChatAddMembers/cometchat-add-members/cometchat-add-members.component.d.ts +6 -4
  11. package/CometChatBannedMembers/cometchat-banned-members/cometchat-banned-members.component.d.ts +12 -2
  12. package/CometChatConversationsWithMessages/cometchat-conversations-with-messages/cometchat-conversations-with-messages.component.d.ts +1 -1
  13. package/CometChatDetails/cometchat-details/cometchat-details.component.d.ts +18 -10
  14. package/CometChatGroupMembers/cometchat-group-members/cometchat-group-members.component.d.ts +1 -1
  15. package/CometChatGroups/cometchat-groups/cometchat-groups.component.d.ts +1 -1
  16. package/CometChatGroupsWithMessages/cometchat-groups-with-messages/cometchat-groups-with-messages.component.d.ts +1 -1
  17. package/CometChatMessageComposer/cometchat-message-composer/cometchat-message-composer.component.d.ts +5 -8
  18. package/CometChatMessageHeader/cometchat-message-header/cometchat-message-header.component.d.ts +1 -1
  19. package/CometChatMessageList/cometchat-message-list/cometchat-message-list.component.d.ts +4 -1
  20. package/CometChatMessages/cometchat-messages/cometchat-messages.component.d.ts +1 -1
  21. package/CometChatThreadedMessages/cometchat-threaded-messages/cometchat-threaded-messages.component.d.ts +1 -1
  22. package/CometChatTransferOwnership/cometchat-transfer-ownership/cometchat-transfer-ownership.component.d.ts +1 -1
  23. package/CometChatUsers/cometchat-users/cometchat-users.component.d.ts +1 -1
  24. package/CometChatUsersWithMessages/cometchat-users-with-messages/cometchat-users-with-messages.component.d.ts +1 -1
  25. package/Extensions/SmartReplies/SmartRepliesExtensionDecorator.d.ts +1 -1
  26. package/Extensions/Stickers/StickersExtensionDecorator.d.ts +2 -1
  27. package/Shared/CometChatUIkit/CometChatUIKit.d.ts +5 -1
  28. package/Shared/Utils/ComeChatException.d.ts +2 -0
  29. package/Shared/Views/CometChatTabs/cometchat-tabs/cometchat-tabs.component.d.ts +53 -0
  30. package/Shared/Views/CometChatTabs/cometchat-tabs.module.d.ts +12 -0
  31. package/esm2020/Calls/CometChatCallButtons/cometchat-call-buttons/cometchat-call-buttons.component.mjs +13 -6
  32. package/esm2020/Calls/CometChatCallDetails/cometchat-call-details/cometchat-call-details.component.mjs +452 -0
  33. package/esm2020/Calls/CometChatCallDetails/cometchat-call-details.module.mjs +31 -0
  34. package/esm2020/Calls/CometChatCallHistory/cometchat-call-history/cometchat-call-history.component.mjs +397 -0
  35. package/esm2020/Calls/CometChatCallHistory/cometchat-call-history.module.mjs +28 -0
  36. package/esm2020/Calls/CometChatCallHistoryWithDetails/cometchat-call-history-with-details/cometchat-call-history-with-details.component.mjs +143 -0
  37. package/esm2020/Calls/CometChatCallHistoryWithDetails/cometchat-call-history-with-details.module.mjs +39 -0
  38. package/esm2020/Calls/CometChatIncomingCall/cometchat-incoming-call/cometchat-incoming-call.component.mjs +1 -24
  39. package/esm2020/Calls/CometChatOngoingCall/cometchat-ongoing-call/cometchat-ongoing-call.component.mjs +25 -7
  40. package/esm2020/Calls/CometChatOutgoingCall/cometchat-outgoing-call/cometchat-outgoing-call.component.mjs +6 -16
  41. package/esm2020/CometChatAddMembers/cometchat-add-members/cometchat-add-members.component.mjs +9 -3
  42. package/esm2020/CometChatBannedMembers/cometchat-banned-members/cometchat-banned-members.component.mjs +77 -9
  43. package/esm2020/CometChatConversations/cometchat-conversations/cometchat-conversations.component.mjs +17 -13
  44. package/esm2020/CometChatConversationsWithMessages/cometchat-conversations-with-messages/cometchat-conversations-with-messages.component.mjs +3 -1
  45. package/esm2020/CometChatDetails/cometchat-details/cometchat-details.component.mjs +111 -55
  46. package/esm2020/CometChatGroupMembers/cometchat-group-members/cometchat-group-members.component.mjs +8 -3
  47. package/esm2020/CometChatGroups/cometchat-groups/cometchat-groups.component.mjs +10 -25
  48. package/esm2020/CometChatGroupsWithMessages/cometchat-groups-with-messages/cometchat-groups-with-messages.component.mjs +3 -1
  49. package/esm2020/CometChatList/cometchat-list.component.mjs +2 -2
  50. package/esm2020/CometChatMessageComposer/cometchat-message-composer/cometchat-message-composer.component.mjs +42 -15
  51. package/esm2020/CometChatMessageHeader/cometchat-message-header/cometchat-message-header.component.mjs +7 -4
  52. package/esm2020/CometChatMessageList/cometchat-message-list/cometchat-message-list.component.mjs +68 -55
  53. package/esm2020/CometChatMessages/cometchat-messages/cometchat-messages.component.mjs +5 -4
  54. package/esm2020/CometChatThreadedMessages/cometchat-threaded-messages/cometchat-threaded-messages.component.mjs +6 -5
  55. package/esm2020/CometChatTransferOwnership/cometchat-transfer-ownership/cometchat-transfer-ownership.component.mjs +1 -1
  56. package/esm2020/CometChatUsers/cometchat-users/cometchat-users.component.mjs +9 -23
  57. package/esm2020/CometChatUsersWithMessages/cometchat-users-with-messages/cometchat-users-with-messages.component.mjs +3 -1
  58. package/esm2020/Extensions/CollaborativeDocument/CollaborativeDocumentExtensionDecorator.mjs +1 -1
  59. package/esm2020/Extensions/CollaborativeWhiteboard/CollaborativeWhiteboardExtensionDecorator.mjs +1 -1
  60. package/esm2020/Extensions/SmartReplies/SmartRepliesExtensionDecorator.mjs +1 -1
  61. package/esm2020/Extensions/Stickers/StickersExtensionDecorator.mjs +3 -2
  62. package/esm2020/Shared/CometChatUIkit/CometChatUIKit.mjs +41 -25
  63. package/esm2020/Shared/Utils/ComeChatException.mjs +10 -0
  64. package/esm2020/Shared/Views/CometChatTabs/cometchat-tabs/cometchat-tabs.component.mjs +88 -0
  65. package/esm2020/Shared/Views/CometChatTabs/cometchat-tabs.module.mjs +39 -0
  66. package/esm2020/public-api.mjs +4 -2
  67. package/fesm2015/cometchat-chat-uikit-angular.mjs +1609 -285
  68. package/fesm2015/cometchat-chat-uikit-angular.mjs.map +1 -1
  69. package/fesm2020/cometchat-chat-uikit-angular.mjs +1600 -285
  70. package/fesm2020/cometchat-chat-uikit-angular.mjs.map +1 -1
  71. package/package.json +3 -3
  72. package/public-api.d.ts +3 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cometchat/chat-uikit-angular",
3
- "version": "v4.0.0-beta.1.1",
3
+ "version": "v4.0.0-beta.1.3",
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.0",
24
+ "@cometchat/uikit-elements": "1.0.0-beta.1.1",
25
25
  "@cometchat/uikit-resources": "1.0.0-beta.1.0",
26
- "@cometchat/uikit-shared": "1.0.0-beta.1.0"
26
+ "@cometchat/uikit-shared": "1.0.0-beta.1.1"
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
@@ -1,7 +1,7 @@
1
1
  export { CometChatUIKitConstants, DatePatterns, TabAlignment, IconButtonAlignment, DocumentIconAlignment, Placement, AuxiliaryButtonAlignment, MessageStatus, MessageBubbleAlignment, MessageListAlignment, Receipts, TitleAlignment, SelectionMode, States, TimestampAlignment, CometChatMessageComposerAction, CometChatTabItem, CometChatLocalize, CometChatTheme, CometChatPalette, CometChatTypography, localize, CometChatDetailsTemplate, CometChatDetailsOption, CometChatOption, CometChatMessageTemplate, CometChatMessageOption } from '@cometchat/uikit-resources';
2
2
  import { fontHelper } from '@cometchat/uikit-resources';
3
3
  export { fontHelper };
4
- export { ConversationUtils, DetailsUtils, GroupMemberUtils, MessageReceiptUtils, ConversationsConfiguration, CreateGroupConfiguration, DetailsConfiguration, GroupsConfiguration, JoinGroupConfiguration, MessageComposerConfiguration, MessageHeaderConfiguration, MessageListConfiguration, MessagesConfiguration, UsersConfiguration, ThreadedMessagesConfiguration, MessageBubbleConfiguration, AddMembersConfiguration, BannedMembersConfiguration, GroupMembersConfiguration, TransferOwnershipConfiguration, PollsConstants, SmartRepliesConstants, SmartRepliesConfiguration, StickersConstants, StickersConfiguration, MessageTranslationConstants, MessageTranslationConfiguration, CollaborativeWhiteboardConfiguration, CollaborativeDocumentConstants, CollaborativeDocumentConfiguration, CollaborativeWhiteboardConstants, ReactionsConstants, ImageModerationConfiguration, ImageModerationConstants, ThumbnailGenerationConstants, LinkPreviewConstants, CallingDetailsUtils, CallHistoryConfiguration, OutgoingCallConfiguration, CallButtonsConfiguration, CallscreenConfiguration, CallDetailsConfiguration } from '@cometchat/uikit-shared';
4
+ export { ConversationUtils, DetailsUtils, GroupMemberUtils, MessageReceiptUtils, ConversationsConfiguration, CreateGroupConfiguration, DetailsConfiguration, GroupsConfiguration, JoinGroupConfiguration, MessageComposerConfiguration, MessageHeaderConfiguration, MessageListConfiguration, MessagesConfiguration, UsersConfiguration, ThreadedMessagesConfiguration, MessageBubbleConfiguration, AddMembersConfiguration, BannedMembersConfiguration, GroupMembersConfiguration, TransferOwnershipConfiguration, PollsConstants, SmartRepliesConstants, SmartRepliesConfiguration, StickersConstants, StickersConfiguration, MessageTranslationConstants, MessageTranslationConfiguration, CollaborativeWhiteboardConfiguration, CollaborativeDocumentConstants, CollaborativeDocumentConfiguration, CollaborativeWhiteboardConstants, ReactionsConstants, ImageModerationConfiguration, ImageModerationConstants, ThumbnailGenerationConstants, LinkPreviewConstants, CallingDetailsUtils, CallHistoryConfiguration, OutgoingCallConfiguration, CallButtonsConfiguration, CallScreenConfiguration, CallDetailsConfiguration, ComposerId } from '@cometchat/uikit-shared';
5
5
  export { CometChatUIKit } from './Shared/CometChatUIkit/CometChatUIKit';
6
6
  export { ChatConfigurator } from './Shared/Framework/ChatConfigurator';
7
7
  export { DataSource } from './Shared/Framework/DataSource';
@@ -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';