@cometchat/chat-uikit-angular 4.3.11 → 4.3.13

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 (18) hide show
  1. package/CometChatConversations/cometchat-conversations/cometchat-conversations.component.d.ts +1 -1
  2. package/CometChatMessageHeader/cometchat-message-header/cometchat-message-header.component.d.ts +1 -1
  3. package/CometChatMessageList/cometchat-message-list/cometchat-message-list.component.d.ts +1 -1
  4. package/CometChatMessages/cometchat-messages/cometchat-messages.component.d.ts +5 -4
  5. package/esm2020/CometChatConversations/cometchat-conversations/cometchat-conversations.component.mjs +5 -4
  6. package/esm2020/CometChatConversationsWithMessages/cometchat-conversations-with-messages/cometchat-conversations-with-messages.component.mjs +25 -9
  7. package/esm2020/CometChatDetails/cometchat-details/cometchat-details.component.mjs +4 -1
  8. package/esm2020/CometChatGroupsWithMessages/cometchat-groups-with-messages/cometchat-groups-with-messages.component.mjs +25 -3
  9. package/esm2020/CometChatMessageComposer/cometchat-message-composer/cometchat-message-composer.component.mjs +23 -4
  10. package/esm2020/CometChatMessageHeader/cometchat-message-header/cometchat-message-header.component.mjs +28 -24
  11. package/esm2020/CometChatMessageList/cometchat-message-list/cometchat-message-list.component.mjs +5 -7
  12. package/esm2020/CometChatMessages/cometchat-messages/cometchat-messages.component.mjs +18 -8
  13. package/esm2020/Shared/CometChatUIkit/CometChatUIKit.mjs +2 -2
  14. package/fesm2015/cometchat-chat-uikit-angular.mjs +125 -49
  15. package/fesm2015/cometchat-chat-uikit-angular.mjs.map +1 -1
  16. package/fesm2020/cometchat-chat-uikit-angular.mjs +122 -49
  17. package/fesm2020/cometchat-chat-uikit-angular.mjs.map +1 -1
  18. package/package.json +3 -3
@@ -1,9 +1,9 @@
1
1
  import "@cometchat/uikit-elements";
2
2
  import { AvatarStyle, BackdropStyle, BadgeStyle, ConfirmDialogStyle, DateStyle, ListItemStyle, ReceiptStyle } from "@cometchat/uikit-elements";
3
- import { DomSanitizer, SafeHtml } from "@angular/platform-browser";
4
3
  import { BaseStyle, CometChatTextFormatter, ConversationsStyle, ListStyle } from "@cometchat/uikit-shared";
5
4
  import { CometChatOption, DatePatterns, SelectionMode, States, TitleAlignment } from "@cometchat/uikit-resources";
6
5
  import { ChangeDetectorRef, NgZone, OnChanges, OnInit, SimpleChanges, TemplateRef } from "@angular/core";
6
+ import { DomSanitizer, SafeHtml } from "@angular/platform-browser";
7
7
  import { CometChat } from "@cometchat/chat-sdk-javascript";
8
8
  import { CometChatThemeService } from "../../CometChatTheme.service";
9
9
  import { Subscription } from "rxjs";
@@ -63,7 +63,7 @@ export declare class CometChatMessageHeaderComponent implements OnInit, OnChange
63
63
  setListItemStyle(): void;
64
64
  setAvatarStyle(): void;
65
65
  setStatusStyle(): void;
66
- setHeadersStyle(): void;
66
+ getHeadersStyle(): MessageHeaderStyle;
67
67
  statusColor: any;
68
68
  backButtonStyle: any;
69
69
  checkStatusType: () => any;
@@ -694,7 +694,7 @@ export declare class CometChatMessageListComponent implements OnInit, OnDestroy,
694
694
  textFont: string | undefined;
695
695
  textColor: string | undefined;
696
696
  };
697
- loadingStyle: () => {
697
+ loadingStyle: {
698
698
  iconTint: string | undefined;
699
699
  };
700
700
  conversationStarterLoader: () => {
@@ -1,11 +1,11 @@
1
- import { OnInit, OnChanges, SimpleChanges, ChangeDetectorRef, TemplateRef, ElementRef, EventEmitter } from "@angular/core";
1
+ import { AvatarStyle, BaseStyle, ListItemStyle } from "@cometchat/uikit-elements";
2
+ import { CallButtonsStyle, DetailsConfiguration, MessageComposerConfiguration, MessageComposerStyle, MessageHeaderConfiguration, MessageHeaderStyle, MessageListConfiguration, MessagesStyle, ThreadedMessagesConfiguration } from "@cometchat/uikit-shared";
3
+ import { ChangeDetectorRef, ElementRef, EventEmitter, OnChanges, OnInit, SimpleChanges, TemplateRef } from "@angular/core";
2
4
  import { CometChat } from "@cometchat/chat-sdk-javascript";
3
5
  import { CometChatMessageComposerComponent } from "../../CometChatMessageComposer/cometchat-message-composer/cometchat-message-composer.component";
4
6
  import { CometChatMessageListComponent } from "../../CometChatMessageList/cometchat-message-list/cometchat-message-list.component";
5
- import { ListItemStyle, AvatarStyle, BaseStyle } from "@cometchat/uikit-elements";
6
- import { Subscription } from "rxjs";
7
7
  import { CometChatThemeService } from "../../CometChatTheme.service";
8
- import { MessageHeaderConfiguration, MessageListConfiguration, MessageComposerConfiguration, ThreadedMessagesConfiguration, DetailsConfiguration, MessagesStyle, MessageComposerStyle, MessageHeaderStyle, CallButtonsStyle } from "@cometchat/uikit-shared";
8
+ import { Subscription } from "rxjs";
9
9
  import * as i0 from "@angular/core";
10
10
  /**
11
11
  *
@@ -77,6 +77,7 @@ export declare class CometChatMessagesComponent implements OnInit, OnChanges {
77
77
  infoIconStyle: string;
78
78
  detailsButtonStyle: any;
79
79
  enableCalling: boolean;
80
+ liveReactionStyle: BaseStyle;
80
81
  ccLiveReaction: Subscription;
81
82
  ccGroupDeleted: Subscription;
82
83
  ccGroupLeft: Subscription;