@cometchat/chat-uikit-angular 4.3.10 → 4.3.12
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/CometChatGroupMembers/cometchat-group-members/cometchat-group-members.component.d.ts +3 -3
- package/CometChatMessageComposer/cometchat-message-composer/cometchat-message-composer.component.d.ts +2 -2
- package/CometChatMessages/cometchat-messages/cometchat-messages.component.d.ts +4 -4
- package/esm2020/CometChatConversations/cometchat-conversations/cometchat-conversations.component.mjs +3 -3
- package/esm2020/CometChatGroupMembers/cometchat-group-members/cometchat-group-members.component.mjs +9 -6
- package/esm2020/CometChatMessageComposer/cometchat-message-composer/cometchat-message-composer.component.mjs +29 -21
- package/esm2020/CometChatMessages/cometchat-messages/cometchat-messages.component.mjs +6 -6
- package/esm2020/Shared/CometChatUIkit/CometChatUIKit.mjs +2 -2
- package/fesm2015/cometchat-chat-uikit-angular.mjs +35 -27
- package/fesm2015/cometchat-chat-uikit-angular.mjs.map +1 -1
- package/fesm2020/cometchat-chat-uikit-angular.mjs +35 -25
- package/fesm2020/cometchat-chat-uikit-angular.mjs.map +1 -1
- package/package.json +4 -4
package/CometChatGroupMembers/cometchat-group-members/cometchat-group-members.component.d.ts
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import { CometChat } from "@cometchat/chat-sdk-javascript";
|
|
3
|
-
import { AvatarStyle, ListItemStyle, ChangeScopeStyle, MenuListStyle, BackdropStyle } from "@cometchat/uikit-elements";
|
|
1
|
+
import { AvatarStyle, BackdropStyle, ChangeScopeStyle, ListItemStyle, MenuListStyle } from "@cometchat/uikit-elements";
|
|
4
2
|
import { GroupMembersStyle, ListStyle } from "@cometchat/uikit-shared";
|
|
3
|
+
import { ChangeDetectorRef, OnChanges, OnInit, SimpleChanges, TemplateRef } from "@angular/core";
|
|
5
4
|
import { CometChatOption, SelectionMode, States, TitleAlignment, UserPresencePlacement } from "@cometchat/uikit-resources";
|
|
5
|
+
import { CometChat } from "@cometchat/chat-sdk-javascript";
|
|
6
6
|
import { CometChatThemeService } from "../../CometChatTheme.service";
|
|
7
7
|
import * as i0 from "@angular/core";
|
|
8
8
|
/**
|
|
@@ -2,7 +2,7 @@ import "@cometchat/uikit-shared";
|
|
|
2
2
|
import "@cometchat/uikit-elements";
|
|
3
3
|
import { AIOptionsStyle, CometChatMentionsFormatter, CometChatTextFormatter, ComposerId, CreatePollStyle, MessageComposerStyle, SmartRepliesStyle, StickersConfiguration, StickersStyle, UserMemberWrapperConfiguration, UserMentionStyle } from "@cometchat/uikit-shared";
|
|
4
4
|
import { ActionSheetStyle, BackdropStyle, EmojiKeyboardStyle, MediaRecorderStyle, PopoverStyle, PreviewStyle } from "@cometchat/uikit-elements";
|
|
5
|
-
import { AuxiliaryButtonAlignment, CometChatActionsView, CometChatMessageComposerAction, Placement, States, UserMemberListType, localize } from "@cometchat/uikit-resources";
|
|
5
|
+
import { AuxiliaryButtonAlignment, CometChatActionsView, CometChatMessageComposerAction, Placement, PreviewMessageMode, States, UserMemberListType, localize } from "@cometchat/uikit-resources";
|
|
6
6
|
import { ChangeDetectorRef, ElementRef, EventEmitter, OnChanges, OnInit, SimpleChanges, TemplateRef } from "@angular/core";
|
|
7
7
|
import { CometChat } from "@cometchat/chat-sdk-javascript";
|
|
8
8
|
import { CometChatThemeService } from "../../CometChatTheme.service";
|
|
@@ -51,7 +51,7 @@ export declare class CometChatMessageComposerComponent implements OnInit, OnChan
|
|
|
51
51
|
mentionsWarningStyle?: any;
|
|
52
52
|
InfoSimpleIcon: string;
|
|
53
53
|
messageComposerStyle: MessageComposerStyle;
|
|
54
|
-
onSendButtonClick: ((message: CometChat.BaseMessage) => void) | undefined;
|
|
54
|
+
onSendButtonClick: ((message: CometChat.BaseMessage, previewMessageMode?: PreviewMessageMode) => void) | undefined;
|
|
55
55
|
onError: ((error: CometChat.CometChatException) => void) | null;
|
|
56
56
|
backdropStyle: BackdropStyle;
|
|
57
57
|
actionSheetStyle: ActionSheetStyle;
|
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
import {
|
|
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 {
|
|
8
|
+
import { Subscription } from "rxjs";
|
|
9
9
|
import * as i0 from "@angular/core";
|
|
10
10
|
/**
|
|
11
11
|
*
|