@cometchat/chat-uikit-react 6.0.3 → 6.0.5
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/dist/index.d.ts +55 -54
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/styles/CometChatAudioBubble.css +4 -4
- package/dist/styles/CometChatConversationSummary.css +2 -2
- package/dist/styles/CometChatEditPreview.css +3 -0
- package/dist/styles/CometChatFileBubble.css +4 -4
- package/dist/styles/CometChatFullScreenViewer.css +2 -2
- package/dist/styles/CometChatMessageComposer.css +8 -1
- package/dist/styles/CometChatMessageInformation.css +2 -2
- package/dist/styles/CometChatMessageList.css +26 -18
- package/dist/styles/CometChatPopover.css +19 -0
- package/dist/styles/CometChatReactionInfo.css +0 -15
- package/dist/styles/CometChatReactionList.css +1 -1
- package/dist/styles/CometChatSmartReplies.css +2 -2
- package/dist/styles/CreatePolls.css +8 -1
- package/dist/styles/StickersKeyboard.css +2 -2
- package/dist/styles/components/CometChatAudioBubble.css +4 -4
- package/dist/styles/components/CometChatConversationSummary.css +2 -2
- package/dist/styles/components/CometChatEditPreview.css +3 -0
- package/dist/styles/components/CometChatFileBubble.css +4 -4
- package/dist/styles/components/CometChatFullScreenViewer.css +2 -2
- package/dist/styles/components/CometChatMessageComposer.css +8 -1
- package/dist/styles/components/CometChatMessageInformation.css +2 -2
- package/dist/styles/components/CometChatMessageList.css +26 -18
- package/dist/styles/components/CometChatPopover.css +19 -0
- package/dist/styles/components/CometChatReactionInfo.css +0 -15
- package/dist/styles/components/CometChatReactionList.css +1 -1
- package/dist/styles/components/CometChatSmartReplies.css +2 -2
- package/dist/styles/components/CreatePolls.css +8 -1
- package/dist/styles/components/StickersKeyboard.css +2 -2
- package/dist/types/components/BaseComponents/CometChatPopover/CometChatPopover.d.ts +1 -0
- package/dist/types/components/CometChatMessageComposer/useCometChatMessageComposer.d.ts +1 -0
- package/dist/types/components/CometChatMessageInformation/CometChatMessageInformation.d.ts +15 -0
- package/dist/types/components/CometChatThreadHeader/CometChatThreadHeader.d.ts +10 -0
- package/dist/types/events/CometChatUIEvents.d.ts +2 -0
- package/dist/types/modals/CometChatMessageTemplate.d.ts +3 -2
- package/dist/types/utils/DataSource.d.ts +1 -1
- package/dist/types/utils/DataSourceDecorator.d.ts +1 -1
- package/dist/types/utils/MessageReceiptUtils.d.ts +3 -30
- package/dist/types/utils/MessageUtils.d.ts +4 -3
- package/dist/types/utils/MessagesDataSource.d.ts +2 -2
- package/dist/types/utils/Storage.d.ts +3 -0
- package/dist/types/utils/util.d.ts +1 -0
- package/package.json +6 -2
package/dist/index.d.ts
CHANGED
|
@@ -1113,6 +1113,18 @@ declare class CometChatMessageOption extends CometChatOption {
|
|
|
1113
1113
|
});
|
|
1114
1114
|
}
|
|
1115
1115
|
|
|
1116
|
+
/**
|
|
1117
|
+
* Class that handles the text formatting for URLs in CometChat.
|
|
1118
|
+
* CometChatUrlsFormatter is a child class of CometChatTextFormatter.
|
|
1119
|
+
* It extends the functionality of text formatting to specifically handle URLs.
|
|
1120
|
+
* It is used in extension decorators like link preview, message translation, and dataSource utils.
|
|
1121
|
+
*/
|
|
1122
|
+
declare class CometChatUrlsFormatter extends CometChatTextFormatter {
|
|
1123
|
+
constructor(regexPatterns: Array<RegExp>);
|
|
1124
|
+
protected onRegexMatch(inputText?: string | null): string;
|
|
1125
|
+
registerEventListeners(element: HTMLElement, classList: DOMTokenList): HTMLElement;
|
|
1126
|
+
}
|
|
1127
|
+
|
|
1116
1128
|
/**
|
|
1117
1129
|
* CometChatMessageTemplate is a pre-defined structure for creating message views
|
|
1118
1130
|
* that can be used as a starting point or blueprint for creating message views,
|
|
@@ -1131,7 +1143,7 @@ declare class CometChatMessageTemplate {
|
|
|
1131
1143
|
* and Video bubble based on the type of the message.
|
|
1132
1144
|
* @type {(message:CometChat.BaseMessage,alignment:MessageBubbleAlignment)=> Element | JSX.Element | null}
|
|
1133
1145
|
*/
|
|
1134
|
-
contentView: ((message: CometChat.BaseMessage, alignment: MessageBubbleAlignment) => Element | JSX.Element | null) | null;
|
|
1146
|
+
contentView: ((message: CometChat.BaseMessage, alignment: MessageBubbleAlignment, textFormatters?: CometChatTextFormatter[]) => Element | JSX.Element | null) | null;
|
|
1135
1147
|
/**
|
|
1136
1148
|
* Custom component to customize the complete message bubble.
|
|
1137
1149
|
* By default, headerView, contentView and footerView collectively form a message bubble.
|
|
@@ -1160,7 +1172,7 @@ declare class CometChatMessageTemplate {
|
|
|
1160
1172
|
* By default, it displays the receipt and the timestamp.
|
|
1161
1173
|
* @type {(message:CometChat.BaseMessage,alignment:MessageBubbleAlignment)=> Element | JSX.Element | null}
|
|
1162
1174
|
*/
|
|
1163
|
-
statusInfoView: ((message: CometChat.BaseMessage, alignment: MessageBubbleAlignment,
|
|
1175
|
+
statusInfoView: ((message: CometChat.BaseMessage, alignment: MessageBubbleAlignment, hideReceipts?: boolean, messageSentAtDateTimeFormat?: CalendarObject) => Element | JSX.Element | null) | null;
|
|
1164
1176
|
/**
|
|
1165
1177
|
* List of available actions that any user can perform on a message, like reacting,
|
|
1166
1178
|
* editing or deleting a message.
|
|
@@ -1246,18 +1258,6 @@ declare class ConversationUtils {
|
|
|
1246
1258
|
static getLastMessageCall(conversation: CometChat.Conversation): any;
|
|
1247
1259
|
}
|
|
1248
1260
|
|
|
1249
|
-
/**
|
|
1250
|
-
* Class that handles the text formatting for URLs in CometChat.
|
|
1251
|
-
* CometChatUrlsFormatter is a child class of CometChatTextFormatter.
|
|
1252
|
-
* It extends the functionality of text formatting to specifically handle URLs.
|
|
1253
|
-
* It is used in extension decorators like link preview, message translation, and dataSource utils.
|
|
1254
|
-
*/
|
|
1255
|
-
declare class CometChatUrlsFormatter extends CometChatTextFormatter {
|
|
1256
|
-
constructor(regexPatterns: Array<RegExp>);
|
|
1257
|
-
protected onRegexMatch(inputText?: string | null): string;
|
|
1258
|
-
registerEventListeners(element: HTMLElement, classList: DOMTokenList): HTMLElement;
|
|
1259
|
-
}
|
|
1260
|
-
|
|
1261
1261
|
type ComposerId = {
|
|
1262
1262
|
parentMessageId: number | null;
|
|
1263
1263
|
user: string | null;
|
|
@@ -1298,7 +1298,7 @@ declare class MessagesDataSource implements DataSource {
|
|
|
1298
1298
|
* @param {CometChat.BaseMessage} item - The message bubble for which the receipt needs to be fetched
|
|
1299
1299
|
* @returns {JSX.Element | null} Returns JSX.Element for receipt of a message bubble or null
|
|
1300
1300
|
*/
|
|
1301
|
-
getBubbleStatusInfoReceipt: (item: CometChat$1.BaseMessage,
|
|
1301
|
+
getBubbleStatusInfoReceipt: (item: CometChat$1.BaseMessage, hideReceipts?: boolean) => JSX.Element | null;
|
|
1302
1302
|
/**
|
|
1303
1303
|
* Function for displaying the timestamp next to messages.
|
|
1304
1304
|
* @returns CalendarObject
|
|
@@ -1321,7 +1321,7 @@ declare class MessagesDataSource implements DataSource {
|
|
|
1321
1321
|
* @returns {JSX.Element | null} Returns JSX.Element for status and date of a message bubble or null
|
|
1322
1322
|
*/
|
|
1323
1323
|
getBubbleStatusInfoDate: (item: CometChat$1.BaseMessage, messageSentAtDateTimeFormat?: CalendarObject) => JSX.Element | null;
|
|
1324
|
-
getStatusInfoView: (_messageObject: CometChat$1.BaseMessage, _alignment: MessageBubbleAlignment,
|
|
1324
|
+
getStatusInfoView: (_messageObject: CometChat$1.BaseMessage, _alignment: MessageBubbleAlignment, hideReceipts?: boolean, messageSentAtDateTimeFormat?: CalendarObject) => react_jsx_runtime.JSX.Element | null;
|
|
1325
1325
|
getBottomView(_messageObject: CometChat$1.BaseMessage, _alignment: MessageBubbleAlignment): null;
|
|
1326
1326
|
getTextMessageTemplate(additionalConfigurations?: additionalParams): CometChatMessageTemplate;
|
|
1327
1327
|
getAudioMessageTemplate(): CometChatMessageTemplate;
|
|
@@ -1885,7 +1885,7 @@ declare abstract class DataSource {
|
|
|
1885
1885
|
abstract getAudioMessageOptions(loggedInUser: CometChat.User, messageObject: CometChat.BaseMessage, group?: CometChat.Group, additionalParams?: Object | undefined): Array<CometChatActionsIcon | CometChatActionsView>;
|
|
1886
1886
|
abstract getFileMessageOptions(loggedInUser: CometChat.User, messageObject: CometChat.BaseMessage, group?: CometChat.Group, additionalParams?: Object | undefined): Array<CometChatActionsIcon | CometChatActionsView>;
|
|
1887
1887
|
abstract getBottomView(message: CometChat.BaseMessage, alignment: MessageBubbleAlignment): Element | JSX.Element | null;
|
|
1888
|
-
abstract getStatusInfoView(message: CometChat.BaseMessage, alignment: MessageBubbleAlignment,
|
|
1888
|
+
abstract getStatusInfoView(message: CometChat.BaseMessage, alignment: MessageBubbleAlignment, hideReceipts?: boolean, messageSentAtDateTimeFormat?: CalendarObject): Element | JSX.Element | null;
|
|
1889
1889
|
abstract getTextMessageContentView(message: CometChat.TextMessage, alignment: MessageBubbleAlignment, otherParams: Object | undefined): Element | JSX.Element;
|
|
1890
1890
|
abstract getImageMessageContentView(message: CometChat.MediaMessage, alignment: MessageBubbleAlignment): Element | JSX.Element;
|
|
1891
1891
|
abstract getVideoMessageContentView(message: CometChat.MediaMessage, alignment: MessageBubbleAlignment): Element | JSX.Element;
|
|
@@ -2088,7 +2088,7 @@ declare abstract class DataSourceDecorator implements DataSource {
|
|
|
2088
2088
|
getVideoMessageOptions(loggedInUser: CometChat.User, messageObject: CometChat.BaseMessage, group?: CometChat.Group, additionalParams?: Object | undefined): Array<CometChatActionsIcon | CometChatActionsView>;
|
|
2089
2089
|
getAudioMessageOptions(loggedInUser: CometChat.User, messageObject: CometChat.BaseMessage, group?: CometChat.Group, additionalParams?: Object | undefined): Array<CometChatActionsIcon | CometChatActionsView>;
|
|
2090
2090
|
getFileMessageOptions(loggedInUser: CometChat.User, messageObject: CometChat.BaseMessage, group?: CometChat.Group, additionalParams?: Object | undefined): Array<CometChatActionsIcon | CometChatActionsView>;
|
|
2091
|
-
getStatusInfoView(message: CometChat.BaseMessage, alignment: MessageBubbleAlignment,
|
|
2091
|
+
getStatusInfoView(message: CometChat.BaseMessage, alignment: MessageBubbleAlignment, hideReceipts?: boolean, messageSentAtDateTimeFormat?: CalendarObject): JSX.Element | Element | null;
|
|
2092
2092
|
getBottomView(message: CometChat.BaseMessage, alignment: MessageBubbleAlignment): JSX.Element | Element | null;
|
|
2093
2093
|
getTextMessageContentView(message: CometChat.TextMessage, alignment: MessageBubbleAlignment, additionalConfigurations?: Object | undefined): JSX.Element | Element;
|
|
2094
2094
|
getImageMessageContentView(message: CometChat.MediaMessage, alignment: MessageBubbleAlignment): JSX.Element | Element;
|
|
@@ -2654,7 +2654,7 @@ declare class LinkPreviewExtensionDecorator extends DataSourceDecorator {
|
|
|
2654
2654
|
* @param {any} [additionalConfigurations] - Additional configurations for formatting.
|
|
2655
2655
|
* @returns {JSX.Element} The JSX element representing the message content view.
|
|
2656
2656
|
*/
|
|
2657
|
-
getTextMessageContentView(message: CometChat.TextMessage, alignment: MessageBubbleAlignment, additionalConfigurations?: any): JSX.Element | Element;
|
|
2657
|
+
getTextMessageContentView(message: CometChat.TextMessage, alignment: MessageBubbleAlignment, additionalConfigurations?: any): react_jsx_runtime.JSX.Element | Element;
|
|
2658
2658
|
/**
|
|
2659
2659
|
* Retrieves the style for the link preview wrapper.
|
|
2660
2660
|
* @returns {object} The style object for the link preview wrapper.
|
|
@@ -2748,7 +2748,7 @@ declare class MessageTranslationExtensionDecorator extends DataSourceDecorator {
|
|
|
2748
2748
|
* @param {any} [additionalConfigurations] - Optional additional configurations for the content view.
|
|
2749
2749
|
* @returns {JSX.Element} The content view for the text message.
|
|
2750
2750
|
*/
|
|
2751
|
-
getTextMessageContentView(message: CometChat.TextMessage, alignment: MessageBubbleAlignment, additionalConfigurations?: any): JSX.Element | Element;
|
|
2751
|
+
getTextMessageContentView(message: CometChat.TextMessage, alignment: MessageBubbleAlignment, additionalConfigurations?: any): react_jsx_runtime.JSX.Element | Element;
|
|
2752
2752
|
/**
|
|
2753
2753
|
* Checks if an option with the specified ID already exists in the options list.
|
|
2754
2754
|
*
|
|
@@ -4449,6 +4449,19 @@ interface MessageInformationProps {
|
|
|
4449
4449
|
* Format for the timestamp displayed next to messages.
|
|
4450
4450
|
*/
|
|
4451
4451
|
messageSentAtDateTimeFormat?: CalendarObject;
|
|
4452
|
+
/**
|
|
4453
|
+
* Template for customizing the appearance of the message.
|
|
4454
|
+
*/
|
|
4455
|
+
template?: CometChatMessageTemplate;
|
|
4456
|
+
/**
|
|
4457
|
+
* Hides the visibility of receipt in the Message Information.
|
|
4458
|
+
* @default false
|
|
4459
|
+
*/
|
|
4460
|
+
hideReceipts?: boolean;
|
|
4461
|
+
/**
|
|
4462
|
+
* Array of text formatters for custom styling or formatting of message text bubbles.
|
|
4463
|
+
*/
|
|
4464
|
+
textFormatters?: CometChatTextFormatter[];
|
|
4452
4465
|
}
|
|
4453
4466
|
declare const CometChatMessageInformation: (props: MessageInformationProps) => react_jsx_runtime.JSX.Element;
|
|
4454
4467
|
|
|
@@ -4641,12 +4654,14 @@ interface IOpenChat {
|
|
|
4641
4654
|
}
|
|
4642
4655
|
interface IShowOngoingCall {
|
|
4643
4656
|
child: any;
|
|
4657
|
+
message?: CometChat.CustomMessage;
|
|
4644
4658
|
}
|
|
4645
4659
|
interface IPanel {
|
|
4646
4660
|
child?: any;
|
|
4647
4661
|
configuration?: any;
|
|
4648
4662
|
message?: CometChat.BaseMessage;
|
|
4649
4663
|
position?: PanelAlignment;
|
|
4664
|
+
composerId?: ComposerId;
|
|
4650
4665
|
}
|
|
4651
4666
|
interface IModal {
|
|
4652
4667
|
child?: any;
|
|
@@ -5051,6 +5066,7 @@ interface PopoverProps {
|
|
|
5051
5066
|
disableBackgroundInteraction?: boolean;
|
|
5052
5067
|
useParentContainer?: boolean;
|
|
5053
5068
|
useParentHeight?: boolean;
|
|
5069
|
+
showTooltip?: boolean;
|
|
5054
5070
|
}
|
|
5055
5071
|
declare const CometChatPopover: React.ForwardRefExoticComponent<PopoverProps & React.RefAttributes<{
|
|
5056
5072
|
openPopover: () => void;
|
|
@@ -5342,37 +5358,9 @@ declare class MessageReceiptUtils {
|
|
|
5342
5358
|
* the corresponding receipt icon.
|
|
5343
5359
|
*
|
|
5344
5360
|
* @param {CometChat.BaseMessage} messageObject - The message object for which to get the receipt status.
|
|
5345
|
-
* @returns {
|
|
5346
|
-
*/
|
|
5347
|
-
static getReceiptStatus: (messageObject: CometChat.BaseMessage) => receipts;
|
|
5348
|
-
}
|
|
5349
|
-
/**
|
|
5350
|
-
* Enum representing different receipt statuses for a message.
|
|
5351
|
-
*
|
|
5352
|
-
* @readonly
|
|
5353
|
-
* @enum {number}
|
|
5354
|
-
*/
|
|
5355
|
-
declare enum receipts {
|
|
5356
|
-
/**
|
|
5357
|
-
* Status indicating that the message is waiting to be processed.
|
|
5358
|
-
*/
|
|
5359
|
-
wait = 0,
|
|
5360
|
-
/**
|
|
5361
|
-
* Status indicating that the message has been sent.
|
|
5362
|
-
*/
|
|
5363
|
-
sent = 1,
|
|
5364
|
-
/**
|
|
5365
|
-
* Status indicating that the message has been delivered.
|
|
5366
|
-
*/
|
|
5367
|
-
delivered = 2,
|
|
5368
|
-
/**
|
|
5369
|
-
* Status indicating that the message has been read.
|
|
5370
|
-
*/
|
|
5371
|
-
read = 3,
|
|
5372
|
-
/**
|
|
5373
|
-
* Status indicating that an error occurred with the message.
|
|
5361
|
+
* @returns {Receipts} - The receipt status icon.
|
|
5374
5362
|
*/
|
|
5375
|
-
|
|
5363
|
+
static getReceiptStatus: (messageObject: CometChat.BaseMessage) => Receipts;
|
|
5376
5364
|
}
|
|
5377
5365
|
|
|
5378
5366
|
/**
|
|
@@ -5387,7 +5375,7 @@ declare class MessageUtils {
|
|
|
5387
5375
|
* @param {CometChatMessageTemplate} template - The message template to use for rendering the content view.
|
|
5388
5376
|
* @returns {object | null} - The content view for the message, or null if not found.
|
|
5389
5377
|
*/
|
|
5390
|
-
getContentView(message: CometChat.BaseMessage, template: CometChatMessageTemplate, alignment?: MessageBubbleAlignment): any;
|
|
5378
|
+
getContentView(message: CometChat.BaseMessage, template: CometChatMessageTemplate, alignment?: MessageBubbleAlignment, textFormatters?: CometChatTextFormatter[]): any;
|
|
5391
5379
|
/**
|
|
5392
5380
|
* Retrieves the content view for a message based on the provided template.
|
|
5393
5381
|
*
|
|
@@ -5395,7 +5383,7 @@ declare class MessageUtils {
|
|
|
5395
5383
|
* @param {CometChatMessageTemplate} template - The message template to use for rendering the content view.
|
|
5396
5384
|
* @returns {object | null} - The content view for the message, or null if not found.
|
|
5397
5385
|
*/
|
|
5398
|
-
getStatusInfoView(message: CometChat.BaseMessage, template: CometChatMessageTemplate, alignment?: MessageBubbleAlignment, messageSentAtDateTimeFormat?: CalendarObject): any;
|
|
5386
|
+
getStatusInfoView(message: CometChat.BaseMessage, template: CometChatMessageTemplate, alignment?: MessageBubbleAlignment, messageSentAtDateTimeFormat?: CalendarObject, hideReceipts?: boolean): any;
|
|
5399
5387
|
/**
|
|
5400
5388
|
* Retrieves the bubble wrapper for a message based on the provided template.
|
|
5401
5389
|
*
|
|
@@ -5413,7 +5401,7 @@ declare class MessageUtils {
|
|
|
5413
5401
|
* @param {MessageBubbleAlignment} alignment - The alignment of the message bubble (left or right).
|
|
5414
5402
|
* @returns {JSX.Element} - The message bubble component.
|
|
5415
5403
|
*/
|
|
5416
|
-
getMessageBubble(baseMessage: CometChat.BaseMessage, template: CometChatMessageTemplate, alignment: MessageBubbleAlignment, messageSentAtDateTimeFormat?: CalendarObject): any;
|
|
5404
|
+
getMessageBubble(baseMessage: CometChat.BaseMessage, template: CometChatMessageTemplate, alignment: MessageBubbleAlignment, messageSentAtDateTimeFormat?: CalendarObject, hideReceipts?: boolean, textFormatters?: CometChatTextFormatter[]): any;
|
|
5417
5405
|
/**
|
|
5418
5406
|
*
|
|
5419
5407
|
* @param {(CometChat.User | CometChat.GroupMember | any)} user
|
|
@@ -5810,12 +5798,16 @@ declare function sanitizeCalendarObject(calendarObject?: CalendarObject): {
|
|
|
5810
5798
|
[k: string]: any;
|
|
5811
5799
|
};
|
|
5812
5800
|
declare function fireClickEvent(): void;
|
|
5801
|
+
declare const decodeHTML: (input: string) => string;
|
|
5813
5802
|
|
|
5814
5803
|
/**
|
|
5815
5804
|
* Utility class for managing local storage with change detection capabilities.
|
|
5816
5805
|
* It is used in CometChatIncomingCall component.
|
|
5817
5806
|
*/
|
|
5818
5807
|
declare class StorageUtils {
|
|
5808
|
+
private static isWindowListenerAttached;
|
|
5809
|
+
private static storageKeyToRemove;
|
|
5810
|
+
private static handleBeforeUnload;
|
|
5819
5811
|
/**
|
|
5820
5812
|
* Attaches a callback function to the `storage` event, which is triggered when storage changes occur.
|
|
5821
5813
|
* @param {EventListenerOrEventListenerObject} callback - The function to be called when the storage event is fired. This function will receive the storage event as an argument.
|
|
@@ -5891,6 +5883,15 @@ interface CometChatThreadHeaderProps {
|
|
|
5891
5883
|
* Format for the timestamp displayed next to messages.
|
|
5892
5884
|
*/
|
|
5893
5885
|
messageSentAtDateTimeFormat?: CalendarObject;
|
|
5886
|
+
/**
|
|
5887
|
+
* Hides the visibility of receipt in the Thread Header.
|
|
5888
|
+
* @default false
|
|
5889
|
+
*/
|
|
5890
|
+
hideReceipts?: boolean;
|
|
5891
|
+
/**
|
|
5892
|
+
* Array of text formatters for custom styling or formatting of message text bubbles.
|
|
5893
|
+
*/
|
|
5894
|
+
textFormatters?: CometChatTextFormatter[];
|
|
5894
5895
|
}
|
|
5895
5896
|
declare const CometChatThreadHeader: (props: CometChatThreadHeaderProps) => react_jsx_runtime.JSX.Element;
|
|
5896
5897
|
|
|
@@ -6034,5 +6035,5 @@ declare function useRefSync<T>(value: T): React__default.MutableRefObject<T>;
|
|
|
6034
6035
|
declare function useStateRef<T>(initialValue: T): [T, (node: T) => void];
|
|
6035
6036
|
declare function useCometChatErrorHandler(onError?: ((error: CometChat.CometChatException) => void) | null): (error: unknown, source?: string) => void;
|
|
6036
6037
|
|
|
6037
|
-
export { AuxiliaryButtonAlignment, ButtonAction, CalendarObject, CallButtonConfiguration, CallWorkflow, CallingConfiguration, CallingDetailsUtils, CallingExtension, CallingExtensionDecorator, ChatConfigurator, ChatSdkEventInitializer, CollaborativeDocumentConfiguration, CollaborativeDocumentExtension, CollaborativeDocumentExtensionDecorator, CollaborativeWhiteBoardExtensionDecorator, CollaborativeWhiteboardConfiguration, CollaborativeWhiteboardExtension, CometChatActionBubble, CometChatActionSheet, CometChatActions, CometChatActionsIcon, CometChatActionsView, CometChatAudioBubble, CometChatAvatar, CometChatButton, CometChatCallBubble, CometChatCallButtons, CometChatCallEvents, CometChatCallLogs, CometChatChangeScope, CometChatCheckbox, CometChatConfirmDialog, CometChatContextMenu, CometChatConversationEvents, CometChatConversations, CometChatDate, CometChatDeleteBubble, CometChatDocumentBubble, CometChatDropDown, CometChatEditPreview, CometChatEmojiKeyboard, CometChatFileBubble, CometChatFullScreenViewer, CometChatGroupEvents, CometChatGroupMembers, CometChatGroups, CometChatImageBubble, CometChatIncomingCall, CometChatList, CometChatListItem, CometChatLocalize, CometChatMediaRecorder, CometChatMentionsFormatter, CometChatMessageBubble, CometChatMessageComposer, CometChatMessageComposerAction, CometChatMessageEvents, CometChatMessageHeader, CometChatMessageInformation, CometChatMessageList, CometChatMessageOption, CometChatMessageTemplate, CometChatOngoingCall, CometChatOption, CometChatOutgoingCall, CometChatPopover, CometChatRadioButton, CometChatReactionInfo, CometChatReactionList, CometChatReactions, CometChatSearchBar, CometChatTextBubble, CometChatTextFormatter, CometChatThreadHeader, CometChatToast, CometChatUIEvents, CometChatUIKit, CometChatUIKitCalls, CometChatUIKitConstants, CometChatUIKitLoginListener, CometChatUIKitUtility, CometChatUrlsFormatter, CometChatUserEvents, CometChatUserMemberWrapper, CometChatUsers, CometChatUtilityConstants, CometChatVideoBubble, ConversationUtils, DataSource, DataSourceDecorator, DateTimePickerMode, DocumentIconAlignment, ElementType, EnterKeyBehavior, ExtensionsDataSource, GroupMemberUtils, HTTPSRequestMethods, IconButtonAlignment, LabelAlignment, LinkPreviewExtension, LinkPreviewExtensionDecorator, MentionsTargetElement, MentionsVisibility, MessageBubbleAlignment, MessageListAlignment, MessageReceiptUtils, MessageStatus, MessageTranslationExtension, MessageTranslationExtensionDecorator, MessageUtils, MessagesDataSource, MouseEventSource, OutgoingCallConfiguration, PanelAlignment, Placement$1 as Placement, PollsConfiguration, PollsExtension, PollsExtensionDecorator, PreviewMessageMode, Receipts, RecordingType, SelectionMode, States, StickersExtension, StickersExtensionDecorator, StorageUtils, TabAlignment, TabsVisibility, ThumbnailGenerationExtension, ThumbnailGenerationExtensionDecorator, TimestampAlignment, TitleAlignment, UIKitSettings, UIKitSettingsBuilder, UserMemberListType, closeCurrentMediaPlayer, convertMinutesToHoursMinutesSeconds, convertSecondsToHoursMinutesSeconds, currentAudioPlayer, currentMediaPlayer, downloadRecordingFromURL, fireClickEvent, formatDateFromTimestamp, getLocalizedString, getThemeMode, getThemeVariable, isMessageSentByMe, isMissedCall, isMobileDevice, isSafari, isSentByMe, isURL, processFileForAudio, sanitizeCalendarObject, sanitizeHtml, useCometChatErrorHandler, useRefSync, useStateRef, verifyCallUser };
|
|
6038
|
+
export { AuxiliaryButtonAlignment, ButtonAction, CalendarObject, CallButtonConfiguration, CallWorkflow, CallingConfiguration, CallingDetailsUtils, CallingExtension, CallingExtensionDecorator, ChatConfigurator, ChatSdkEventInitializer, CollaborativeDocumentConfiguration, CollaborativeDocumentExtension, CollaborativeDocumentExtensionDecorator, CollaborativeWhiteBoardExtensionDecorator, CollaborativeWhiteboardConfiguration, CollaborativeWhiteboardExtension, CometChatActionBubble, CometChatActionSheet, CometChatActions, CometChatActionsIcon, CometChatActionsView, CometChatAudioBubble, CometChatAvatar, CometChatButton, CometChatCallBubble, CometChatCallButtons, CometChatCallEvents, CometChatCallLogs, CometChatChangeScope, CometChatCheckbox, CometChatConfirmDialog, CometChatContextMenu, CometChatConversationEvents, CometChatConversations, CometChatDate, CometChatDeleteBubble, CometChatDocumentBubble, CometChatDropDown, CometChatEditPreview, CometChatEmojiKeyboard, CometChatFileBubble, CometChatFullScreenViewer, CometChatGroupEvents, CometChatGroupMembers, CometChatGroups, CometChatImageBubble, CometChatIncomingCall, CometChatList, CometChatListItem, CometChatLocalize, CometChatMediaRecorder, CometChatMentionsFormatter, CometChatMessageBubble, CometChatMessageComposer, CometChatMessageComposerAction, CometChatMessageEvents, CometChatMessageHeader, CometChatMessageInformation, CometChatMessageList, CometChatMessageOption, CometChatMessageTemplate, CometChatOngoingCall, CometChatOption, CometChatOutgoingCall, CometChatPopover, CometChatRadioButton, CometChatReactionInfo, CometChatReactionList, CometChatReactions, CometChatSearchBar, CometChatTextBubble, CometChatTextFormatter, CometChatThreadHeader, CometChatToast, CometChatUIEvents, CometChatUIKit, CometChatUIKitCalls, CometChatUIKitConstants, CometChatUIKitLoginListener, CometChatUIKitUtility, CometChatUrlsFormatter, CometChatUserEvents, CometChatUserMemberWrapper, CometChatUsers, CometChatUtilityConstants, CometChatVideoBubble, ConversationUtils, DataSource, DataSourceDecorator, DateTimePickerMode, DocumentIconAlignment, ElementType, EnterKeyBehavior, ExtensionsDataSource, GroupMemberUtils, HTTPSRequestMethods, IconButtonAlignment, LabelAlignment, LinkPreviewExtension, LinkPreviewExtensionDecorator, MentionsTargetElement, MentionsVisibility, MessageBubbleAlignment, MessageListAlignment, MessageReceiptUtils, MessageStatus, MessageTranslationExtension, MessageTranslationExtensionDecorator, MessageUtils, MessagesDataSource, MouseEventSource, OutgoingCallConfiguration, PanelAlignment, Placement$1 as Placement, PollsConfiguration, PollsExtension, PollsExtensionDecorator, PreviewMessageMode, Receipts, RecordingType, SelectionMode, States, StickersExtension, StickersExtensionDecorator, StorageUtils, TabAlignment, TabsVisibility, ThumbnailGenerationExtension, ThumbnailGenerationExtensionDecorator, TimestampAlignment, TitleAlignment, UIKitSettings, UIKitSettingsBuilder, UserMemberListType, closeCurrentMediaPlayer, convertMinutesToHoursMinutesSeconds, convertSecondsToHoursMinutesSeconds, currentAudioPlayer, currentMediaPlayer, decodeHTML, downloadRecordingFromURL, fireClickEvent, formatDateFromTimestamp, getLocalizedString, getThemeMode, getThemeVariable, isMessageSentByMe, isMissedCall, isMobileDevice, isSafari, isSentByMe, isURL, processFileForAudio, sanitizeCalendarObject, sanitizeHtml, useCometChatErrorHandler, useRefSync, useStateRef, verifyCallUser };
|
|
6038
6039
|
export type { IActiveChatChanged, IDialog, IGroupLeft, IGroupMemberAdded, IGroupMemberJoined, IGroupMemberKickedBanned, IGroupMemberScopeChanged, IGroupMemberUnBanned, IMentionsCountWarning, IMessages, IModal, IMouseEvent, IOpenChat, IOwnershipChanged, IPanel, IShowOngoingCall, LocalizationSettings, PollOptions };
|