@cometchat/chat-uikit-react 6.2.5 → 6.3.0
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/assets/warning-small.svg +0 -0
- package/dist/index.d.ts +118 -52
- package/dist/index.js +2 -2
- package/dist/index.js.map +1 -1
- package/dist/styles/CometChatAIAssistantChat.css +1 -0
- package/dist/styles/CometChatAIAssistantMessageBubble.css +32 -6
- package/dist/styles/CometChatConversations.css +2 -2
- package/dist/styles/CometChatMessageBubble.css +5 -0
- package/dist/styles/CometChatMessageHeader.css +1 -1
- package/dist/styles/CometChatMessageList.css +4 -1
- package/dist/styles/CometChatMessagePreview.css +275 -0
- package/dist/styles/CometChatStreamMessageBubble.css +48 -6
- package/dist/styles/components/CometChatAIAssistantChat.css +1 -0
- package/dist/styles/components/CometChatAIAssistantMessageBubble.css +32 -6
- package/dist/styles/components/CometChatConversations.css +2 -2
- package/dist/styles/components/CometChatMessageBubble.css +5 -0
- package/dist/styles/components/CometChatMessageHeader.css +1 -1
- package/dist/styles/components/CometChatMessageList.css +4 -1
- package/dist/styles/components/CometChatMessagePreview.css +275 -0
- package/dist/styles/components/CometChatStreamMessageBubble.css +48 -6
- package/dist/styles/components/index.css +5 -0
- package/dist/styles/index.css +5 -0
- package/dist/types/components/BaseComponents/CometChatFullScreenViewer/CometChatFullScreenViewer.d.ts +1 -1
- package/dist/types/components/BaseComponents/CometChatMessagePreview/CometChatMessagePreview.d.ts +30 -0
- package/dist/types/components/CometChatAIAssistantChat/CometChatAIAssistantChat.d.ts +2 -0
- package/dist/types/components/CometChatMessageComposer/CometChatMessageComposer.d.ts +7 -0
- package/dist/types/components/CometChatMessageComposer/useCometChatMessageComposer.d.ts +1 -0
- package/dist/types/components/CometChatMessageList/CometChatMessageList.d.ts +20 -15
- package/dist/types/components/CometChatMessageList/useCometChatMessageList.d.ts +1 -1
- package/dist/types/components/Extensions/Polls/CreatePolls.d.ts +4 -0
- package/dist/types/components/Extensions/Polls/PollsExtensionDecorator.d.ts +2 -0
- package/dist/types/components/Extensions/Stickers/StickersExtensionDecorator.d.ts +3 -3
- package/dist/types/events/CometChatMessageEvents.d.ts +1 -0
- package/dist/types/index.d.ts +1 -0
- package/dist/types/modals/CometChatMessageTemplate.d.ts +5 -0
- package/dist/types/utils/DataSource.d.ts +4 -1
- package/dist/types/utils/DataSourceDecorator.d.ts +4 -1
- package/dist/types/utils/MessagesDataSource.d.ts +19 -1
- package/package.json +2 -2
|
File without changes
|
package/dist/index.d.ts
CHANGED
|
@@ -1268,6 +1268,11 @@ declare class CometChatMessageTemplate {
|
|
|
1268
1268
|
* @type {(message:CometChat.BaseMessage,alignment:MessageBubbleAlignment)=> Element | JSX.Element | null}
|
|
1269
1269
|
*/
|
|
1270
1270
|
headerView: ((message: CometChat.BaseMessage, alignment: MessageBubbleAlignment) => Element | JSX$1.Element | null) | null;
|
|
1271
|
+
/**
|
|
1272
|
+
* Custom component to customize the reply view section for each message bubble.
|
|
1273
|
+
* @type {(message:CometChat.BaseMessage,alignment:MessageBubbleAlignment)=> Element | JSX.Element | null}
|
|
1274
|
+
*/
|
|
1275
|
+
replyView: ((message: CometChat.BaseMessage, alignment?: MessageBubbleAlignment, onReplyViewClicked?: (messageToReply: CometChat.BaseMessage) => void, textFormatters?: CometChatTextFormatter[]) => Element | JSX$1.Element | null) | null;
|
|
1271
1276
|
/**
|
|
1272
1277
|
* Custom component to customize the footer section for each message bubble.
|
|
1273
1278
|
* By default, it displays the reactions.
|
|
@@ -1381,6 +1386,7 @@ type ComposerId = {
|
|
|
1381
1386
|
*/
|
|
1382
1387
|
interface additionalParamsOptions {
|
|
1383
1388
|
hideReplyInThreadOption?: boolean;
|
|
1389
|
+
hideReplyOption?: boolean;
|
|
1384
1390
|
hideTranslateMessageOption?: boolean;
|
|
1385
1391
|
hideReactionOption?: boolean;
|
|
1386
1392
|
hideEditMessageOption?: boolean;
|
|
@@ -1394,6 +1400,7 @@ declare class MessagesDataSource implements DataSource {
|
|
|
1394
1400
|
getDeleteOption(): CometChatActionsIcon;
|
|
1395
1401
|
getReactionOption(): CometChatActionsView;
|
|
1396
1402
|
getReplyInThreadOption(): CometChatActionsIcon;
|
|
1403
|
+
getReplyOption(): CometChatActionsIcon;
|
|
1397
1404
|
getSendMessagePrivatelyOption(): CometChatActionsIcon;
|
|
1398
1405
|
getCopyOption(): CometChatActionsIcon;
|
|
1399
1406
|
getMessageInfoOption(): CometChatActionsIcon;
|
|
@@ -1435,6 +1442,7 @@ declare class MessagesDataSource implements DataSource {
|
|
|
1435
1442
|
getBubbleStatusInfoDate: (item: CometChat.BaseMessage, messageSentAtDateTimeFormat?: CalendarObject) => JSX$1.Element | null;
|
|
1436
1443
|
getStatusInfoView: (_messageObject: CometChat.BaseMessage, _alignment: MessageBubbleAlignment, hideReceipts?: boolean, messageSentAtDateTimeFormat?: CalendarObject, showError?: boolean) => react_jsx_runtime.JSX.Element | null;
|
|
1437
1444
|
getBottomView(_messageObject: CometChat.BaseMessage, _alignment: MessageBubbleAlignment): null;
|
|
1445
|
+
getReplyView(_messageObject: CometChat.BaseMessage, _alignment: MessageBubbleAlignment, onReplyPreviewClick?: (messageToReply: CometChat.BaseMessage) => void, textFormatters?: CometChatTextFormatter[]): react_jsx_runtime.JSX.Element | null;
|
|
1438
1446
|
getTextMessageTemplate(additionalConfigurations?: additionalParams): CometChatMessageTemplate;
|
|
1439
1447
|
getAgentAssistantMessageBubble(message: CometChat.AIAssistantMessage): react_jsx_runtime.JSX.Element;
|
|
1440
1448
|
getToolArgumentsMessageBubble(message: CometChat.AIToolArgumentMessage): react_jsx_runtime.JSX.Element;
|
|
@@ -1461,9 +1469,9 @@ declare class MessagesDataSource implements DataSource {
|
|
|
1461
1469
|
getAllMessageCategories(additionalConfigurations?: {
|
|
1462
1470
|
hideGroupActionMessages?: boolean;
|
|
1463
1471
|
}): Array<string>;
|
|
1464
|
-
getStickerButton(id: ComposerId, user?: CometChat.User, group?: CometChat.Group): JSX$1.Element | undefined;
|
|
1472
|
+
getStickerButton(id: ComposerId, user?: CometChat.User, group?: CometChat.Group, messageToReply?: CometChat.BaseMessage | null, closeReplyPreview?: () => void): JSX$1.Element | undefined;
|
|
1465
1473
|
getId(): string;
|
|
1466
|
-
getTextMessageContentView(message: CometChat.TextMessage, _alignment: MessageBubbleAlignment, additionalConfigurations?: additionalParams):
|
|
1474
|
+
getTextMessageContentView(message: CometChat.TextMessage, _alignment: MessageBubbleAlignment, additionalConfigurations?: additionalParams): JSX$1.Element | Element;
|
|
1467
1475
|
getAudioMessageContentView(message: CometChat.MediaMessage, _alignment: MessageBubbleAlignment): Element | JSX$1.Element;
|
|
1468
1476
|
getFileMessageContentView(message: CometChat.MediaMessage, _alignment: MessageBubbleAlignment): Element | JSX$1.Element;
|
|
1469
1477
|
getImageMessageContentView(message: CometChat.MediaMessage, _alignment: MessageBubbleAlignment): Element | JSX$1.Element;
|
|
@@ -1494,6 +1502,21 @@ declare class MessagesDataSource implements DataSource {
|
|
|
1494
1502
|
fileAttachmentOption(): CometChatMessageComposerAction;
|
|
1495
1503
|
getAttachmentOptions(id: ComposerId, additionalConfigurations?: any): Array<CometChatMessageComposerAction>;
|
|
1496
1504
|
getLastConversationMessage(conversation: CometChat.Conversation, loggedInUser: CometChat.User, additionalConfigurations: additionalParams): string;
|
|
1505
|
+
/**
|
|
1506
|
+
* Helper method to get subtitle JSX element for message preview
|
|
1507
|
+
* @param message - The message object
|
|
1508
|
+
* @param textFormatters - Text formatters to apply
|
|
1509
|
+
* @param _alignment - Alignment of the message bubble
|
|
1510
|
+
* @returns JSX element for subtitle or null
|
|
1511
|
+
*/
|
|
1512
|
+
getMessagePreviewSubtitle(message: CometChat.BaseMessage, textFormatters?: CometChatTextFormatter[], _alignment?: MessageBubbleAlignment): JSX$1.Element | null;
|
|
1513
|
+
/**
|
|
1514
|
+
* Helper method to get title JSX element for message preview
|
|
1515
|
+
* @param message - The message object
|
|
1516
|
+
* @param _alignment - Alignment of the message bubble
|
|
1517
|
+
* @returns JSX element for subtitle or null
|
|
1518
|
+
*/
|
|
1519
|
+
getMessagePreviewTitle(message: CometChat.BaseMessage, _alignment?: MessageBubbleAlignment): JSX$1.Element | null;
|
|
1497
1520
|
getAuxiliaryHeaderMenu(user?: CometChat.User, group?: CometChat.Group, additionalConfigurations?: any): Element[] | JSX$1.Element[];
|
|
1498
1521
|
/**
|
|
1499
1522
|
* Adds styled @ for every mention in the text by matching uid
|
|
@@ -2006,12 +2029,15 @@ declare abstract class DataSource {
|
|
|
2006
2029
|
abstract getAudioMessageOptions(loggedInUser: CometChat.User, messageObject: CometChat.BaseMessage, group?: CometChat.Group, additionalParams?: Object | undefined): Array<CometChatActionsIcon | CometChatActionsView>;
|
|
2007
2030
|
abstract getFileMessageOptions(loggedInUser: CometChat.User, messageObject: CometChat.BaseMessage, group?: CometChat.Group, additionalParams?: Object | undefined): Array<CometChatActionsIcon | CometChatActionsView>;
|
|
2008
2031
|
abstract getBottomView(message: CometChat.BaseMessage, alignment: MessageBubbleAlignment): Element | JSX$1.Element | null;
|
|
2032
|
+
abstract getReplyView(message: CometChat.BaseMessage, alignment?: MessageBubbleAlignment, onReplyPreviewClick?: (messageToReply: CometChat.BaseMessage) => void, textFormatters?: CometChatTextFormatter[]): Element | JSX$1.Element | null;
|
|
2009
2033
|
abstract getStatusInfoView(message: CometChat.BaseMessage, alignment: MessageBubbleAlignment, hideReceipts?: boolean, messageSentAtDateTimeFormat?: CalendarObject, showError?: boolean): Element | JSX$1.Element | null;
|
|
2010
2034
|
abstract getTextMessageContentView(message: CometChat.TextMessage, alignment: MessageBubbleAlignment, otherParams: Object | undefined): Element | JSX$1.Element;
|
|
2011
2035
|
abstract getImageMessageContentView(message: CometChat.MediaMessage, alignment: MessageBubbleAlignment): Element | JSX$1.Element;
|
|
2012
2036
|
abstract getVideoMessageContentView(message: CometChat.MediaMessage, alignment: MessageBubbleAlignment): Element | JSX$1.Element;
|
|
2013
2037
|
abstract getAudioMessageContentView(message: CometChat.MediaMessage, alignment: MessageBubbleAlignment): Element | JSX$1.Element;
|
|
2014
2038
|
abstract getFileMessageContentView(message: CometChat.MediaMessage, alignment: MessageBubbleAlignment): Element | JSX$1.Element;
|
|
2039
|
+
abstract getMessagePreviewSubtitle(message: CometChat.BaseMessage, textFormatters?: CometChatTextFormatter[], _alignment?: MessageBubbleAlignment): JSX$1.Element | null;
|
|
2040
|
+
abstract getMessagePreviewTitle(message: CometChat.BaseMessage, _alignment?: MessageBubbleAlignment): JSX$1.Element | null;
|
|
2015
2041
|
abstract getAgentAssistantMessageTemplate(additionalConfigurations?: Object | undefined): CometChatMessageTemplate;
|
|
2016
2042
|
abstract getToolArgumentsMessageTemplate(additionalConfigurations?: Object | undefined): CometChatMessageTemplate;
|
|
2017
2043
|
abstract getToolResultsMessageTemplate(additionalConfigurations?: Object | undefined): CometChatMessageTemplate;
|
|
@@ -2029,7 +2055,7 @@ declare abstract class DataSource {
|
|
|
2029
2055
|
abstract getAttachmentOptions(id: ComposerId, additionalConfigurations?: any): CometChatMessageComposerAction[];
|
|
2030
2056
|
abstract getAllMessageTypes(): Array<string>;
|
|
2031
2057
|
abstract getAllMessageCategories(additionalConfigurations?: Object | undefined): Array<string>;
|
|
2032
|
-
abstract getStickerButton(id: ComposerId, user?: CometChat.User, group?: CometChat.Group): JSX$1.Element | undefined;
|
|
2058
|
+
abstract getStickerButton(id: ComposerId, user?: CometChat.User, group?: CometChat.Group, messageToReply?: CometChat.BaseMessage | null, closeReplyPreview?: () => void): JSX$1.Element | undefined;
|
|
2033
2059
|
abstract getId(): string;
|
|
2034
2060
|
abstract getDeleteMessageBubble(messageObject: CometChat.BaseMessage, text?: string, alignment?: MessageBubbleAlignment): Element | JSX$1.Element;
|
|
2035
2061
|
abstract getGroupActionBubble(message: CometChat.BaseMessage): Element | JSX$1.Element;
|
|
@@ -2217,13 +2243,16 @@ declare abstract class DataSourceDecorator implements DataSource {
|
|
|
2217
2243
|
getVideoMessageOptions(loggedInUser: CometChat.User, messageObject: CometChat.BaseMessage, group?: CometChat.Group, additionalParams?: Object | undefined): Array<CometChatActionsIcon | CometChatActionsView>;
|
|
2218
2244
|
getAudioMessageOptions(loggedInUser: CometChat.User, messageObject: CometChat.BaseMessage, group?: CometChat.Group, additionalParams?: Object | undefined): Array<CometChatActionsIcon | CometChatActionsView>;
|
|
2219
2245
|
getFileMessageOptions(loggedInUser: CometChat.User, messageObject: CometChat.BaseMessage, group?: CometChat.Group, additionalParams?: Object | undefined): Array<CometChatActionsIcon | CometChatActionsView>;
|
|
2220
|
-
getStatusInfoView(message: CometChat.BaseMessage, alignment: MessageBubbleAlignment, hideReceipts?: boolean, messageSentAtDateTimeFormat?: CalendarObject, showError?: boolean):
|
|
2221
|
-
getBottomView(message: CometChat.BaseMessage, alignment: MessageBubbleAlignment):
|
|
2222
|
-
|
|
2223
|
-
|
|
2224
|
-
|
|
2225
|
-
|
|
2226
|
-
|
|
2246
|
+
getStatusInfoView(message: CometChat.BaseMessage, alignment: MessageBubbleAlignment, hideReceipts?: boolean, messageSentAtDateTimeFormat?: CalendarObject, showError?: boolean): JSX$1.Element | Element | null;
|
|
2247
|
+
getBottomView(message: CometChat.BaseMessage, alignment: MessageBubbleAlignment): JSX$1.Element | Element | null;
|
|
2248
|
+
getReplyView(message: CometChat.BaseMessage, alignment: MessageBubbleAlignment, onReplyPreviewClick?: (messageToReply: CometChat.BaseMessage) => void, textFormatters?: CometChatTextFormatter[]): JSX$1.Element | Element | null;
|
|
2249
|
+
getMessagePreviewSubtitle(message: CometChat.BaseMessage, textFormatters?: CometChatTextFormatter[], _alignment?: MessageBubbleAlignment): JSX$1.Element | null;
|
|
2250
|
+
getMessagePreviewTitle(message: CometChat.BaseMessage, _alignment?: MessageBubbleAlignment): JSX$1.Element | null;
|
|
2251
|
+
getTextMessageContentView(message: CometChat.TextMessage, alignment: MessageBubbleAlignment, additionalConfigurations?: Object | undefined): JSX$1.Element | Element;
|
|
2252
|
+
getImageMessageContentView(message: CometChat.MediaMessage, alignment: MessageBubbleAlignment): JSX$1.Element | Element;
|
|
2253
|
+
getVideoMessageContentView(message: CometChat.MediaMessage, alignment: MessageBubbleAlignment): JSX$1.Element | Element;
|
|
2254
|
+
getAudioMessageContentView(message: CometChat.MediaMessage, alignment: MessageBubbleAlignment): JSX$1.Element | Element;
|
|
2255
|
+
getFileMessageContentView(message: CometChat.MediaMessage, alignment: MessageBubbleAlignment): JSX$1.Element | Element;
|
|
2227
2256
|
getTextMessageTemplate(additionalConfigurations?: Object | undefined): CometChatMessageTemplate;
|
|
2228
2257
|
getAgentAssistantMessageTemplate(additionalConfigurations?: Object | undefined): CometChatMessageTemplate;
|
|
2229
2258
|
getToolArgumentsMessageTemplate(additionalConfigurations?: Object | undefined): CometChatMessageTemplate;
|
|
@@ -2241,34 +2270,34 @@ declare abstract class DataSourceDecorator implements DataSource {
|
|
|
2241
2270
|
getAttachmentOptions(id: ComposerId, additionalConfigurations?: any): CometChatMessageComposerAction[];
|
|
2242
2271
|
getAllMessageTypes(): string[];
|
|
2243
2272
|
getAllMessageCategories(additionalConfigurations?: Object | undefined): string[];
|
|
2244
|
-
getStickerButton(id: ComposerId, user?: CometChat.User, group?: CometChat.Group): JSX$1.Element | undefined;
|
|
2273
|
+
getStickerButton(id: ComposerId, user?: CometChat.User, group?: CometChat.Group, messageToReply?: CometChat.BaseMessage | null, closeReplyPreview?: () => void): JSX$1.Element | undefined;
|
|
2245
2274
|
getId(): string;
|
|
2246
|
-
getDeleteMessageBubble(messageObject: CometChat.BaseMessage, text?: string, alignment?: MessageBubbleAlignment):
|
|
2247
|
-
getGroupActionBubble(message: CometChat.BaseMessage):
|
|
2248
|
-
getTextMessageBubble(messageText: string, message: CometChat.TextMessage, alignment: MessageBubbleAlignment, additionalConfigurations?: Object | undefined):
|
|
2249
|
-
getAgentAssistantMessageBubble(message: CometChat.AIAssistantMessage, alignment: MessageBubbleAlignment, additionalConfigurations?: Object | undefined):
|
|
2250
|
-
getToolArgumentsMessageBubble(message: CometChat.AIToolArgumentMessage, alignment: MessageBubbleAlignment, additionalConfigurations?: Object | undefined):
|
|
2251
|
-
getToolResultsMessageBubble(message: CometChat.AIToolResultMessage, alignment: MessageBubbleAlignment, additionalConfigurations?: Object | undefined):
|
|
2252
|
-
getStreamMessageBubble(message: CometChat.CustomMessage, alignment: MessageBubbleAlignment, additionalConfigurations?: Object | undefined):
|
|
2253
|
-
getVideoMessageBubble(videoUrl: string, message: CometChat.MediaMessage, thumbnailUrl?: string, onClick?: Function, alignment?: MessageBubbleAlignment):
|
|
2254
|
-
getImageMessageBubble(imageUrl: string, placeholderImage: string, message: CometChat.MediaMessage, onClick?: Function, alignment?: MessageBubbleAlignment):
|
|
2255
|
-
getAudioMessageBubble(audioUrl: string, message: CometChat.MediaMessage, title?: string, alignment?: MessageBubbleAlignment):
|
|
2256
|
-
getFileMessageBubble(fileUrl: string, message: CometChat.MediaMessage, title?: string, alignment?: MessageBubbleAlignment):
|
|
2275
|
+
getDeleteMessageBubble(messageObject: CometChat.BaseMessage, text?: string, alignment?: MessageBubbleAlignment): JSX$1.Element | Element;
|
|
2276
|
+
getGroupActionBubble(message: CometChat.BaseMessage): JSX$1.Element | Element;
|
|
2277
|
+
getTextMessageBubble(messageText: string, message: CometChat.TextMessage, alignment: MessageBubbleAlignment, additionalConfigurations?: Object | undefined): JSX$1.Element | Element;
|
|
2278
|
+
getAgentAssistantMessageBubble(message: CometChat.AIAssistantMessage, alignment: MessageBubbleAlignment, additionalConfigurations?: Object | undefined): JSX$1.Element | Element;
|
|
2279
|
+
getToolArgumentsMessageBubble(message: CometChat.AIToolArgumentMessage, alignment: MessageBubbleAlignment, additionalConfigurations?: Object | undefined): JSX$1.Element | Element;
|
|
2280
|
+
getToolResultsMessageBubble(message: CometChat.AIToolResultMessage, alignment: MessageBubbleAlignment, additionalConfigurations?: Object | undefined): JSX$1.Element | Element;
|
|
2281
|
+
getStreamMessageBubble(message: CometChat.CustomMessage, alignment: MessageBubbleAlignment, additionalConfigurations?: Object | undefined): JSX$1.Element | Element;
|
|
2282
|
+
getVideoMessageBubble(videoUrl: string, message: CometChat.MediaMessage, thumbnailUrl?: string, onClick?: Function, alignment?: MessageBubbleAlignment): JSX$1.Element | Element;
|
|
2283
|
+
getImageMessageBubble(imageUrl: string, placeholderImage: string, message: CometChat.MediaMessage, onClick?: Function, alignment?: MessageBubbleAlignment): JSX$1.Element | Element;
|
|
2284
|
+
getAudioMessageBubble(audioUrl: string, message: CometChat.MediaMessage, title?: string, alignment?: MessageBubbleAlignment): JSX$1.Element | Element;
|
|
2285
|
+
getFileMessageBubble(fileUrl: string, message: CometChat.MediaMessage, title?: string, alignment?: MessageBubbleAlignment): JSX$1.Element | Element;
|
|
2257
2286
|
getLastConversationMessage(conversation: CometChat.Conversation, loggedInUser: CometChat.User, additionalConfigurations?: additionalParams): string;
|
|
2258
2287
|
getAuxiliaryHeaderMenu(user?: CometChat.User, group?: CometChat.Group, additionalConfigurations?: any): Element[] | JSX$1.Element[];
|
|
2259
2288
|
getAllTextFormatters(formatterParams: additionalParams): CometChatTextFormatter[];
|
|
2260
2289
|
getMentionsTextFormatter(params?: Object): CometChatMentionsFormatter;
|
|
2261
2290
|
getUrlTextFormatter(params?: Object): CometChatUrlsFormatter;
|
|
2262
2291
|
getMentionsFormattedText(message: CometChat.TextMessage, subtitle: string, additionalConfigurations: Object): string;
|
|
2263
|
-
getFormMessageContentView(message: CometChat.InteractiveMessage, alignment: MessageBubbleAlignment):
|
|
2264
|
-
getSchedulerMessageContentView(message: CometChat.InteractiveMessage, alignment: MessageBubbleAlignment):
|
|
2265
|
-
getCardMessageContentView(message: CometChat.InteractiveMessage, alignment: MessageBubbleAlignment):
|
|
2292
|
+
getFormMessageContentView(message: CometChat.InteractiveMessage, alignment: MessageBubbleAlignment): JSX$1.Element | Element;
|
|
2293
|
+
getSchedulerMessageContentView(message: CometChat.InteractiveMessage, alignment: MessageBubbleAlignment): JSX$1.Element | Element;
|
|
2294
|
+
getCardMessageContentView(message: CometChat.InteractiveMessage, alignment: MessageBubbleAlignment): JSX$1.Element | Element;
|
|
2266
2295
|
getFormMessageTemplate(): CometChatMessageTemplate;
|
|
2267
2296
|
getSchedulerMessageTemplate(): CometChatMessageTemplate;
|
|
2268
2297
|
getCardMessageTemplate(): CometChatMessageTemplate;
|
|
2269
|
-
getFormMessageBubble(message: CometChat.InteractiveMessage, alignment: MessageBubbleAlignment):
|
|
2270
|
-
getSchedulerMessageBubble(message: CometChat.InteractiveMessage, alignment: MessageBubbleAlignment):
|
|
2271
|
-
getCardMessageBubble(message: CometChat.InteractiveMessage, alignment: MessageBubbleAlignment):
|
|
2298
|
+
getFormMessageBubble(message: CometChat.InteractiveMessage, alignment: MessageBubbleAlignment): JSX$1.Element | Element;
|
|
2299
|
+
getSchedulerMessageBubble(message: CometChat.InteractiveMessage, alignment: MessageBubbleAlignment): JSX$1.Element | Element;
|
|
2300
|
+
getCardMessageBubble(message: CometChat.InteractiveMessage, alignment: MessageBubbleAlignment): JSX$1.Element | Element;
|
|
2272
2301
|
}
|
|
2273
2302
|
|
|
2274
2303
|
interface ListProps<T> {
|
|
@@ -2823,7 +2852,7 @@ declare class LinkPreviewExtensionDecorator extends DataSourceDecorator {
|
|
|
2823
2852
|
* @param {any} [additionalConfigurations] - Additional configurations for formatting.
|
|
2824
2853
|
* @returns {JSX.Element} The JSX element representing the message content view.
|
|
2825
2854
|
*/
|
|
2826
|
-
getTextMessageContentView(message: CometChat.TextMessage, alignment: MessageBubbleAlignment, additionalConfigurations?: any): Element |
|
|
2855
|
+
getTextMessageContentView(message: CometChat.TextMessage, alignment: MessageBubbleAlignment, additionalConfigurations?: any): react_jsx_runtime.JSX.Element | Element;
|
|
2827
2856
|
/**
|
|
2828
2857
|
* Retrieves the style for the link preview wrapper.
|
|
2829
2858
|
* @returns {object} The style object for the link preview wrapper.
|
|
@@ -2917,7 +2946,7 @@ declare class MessageTranslationExtensionDecorator extends DataSourceDecorator {
|
|
|
2917
2946
|
* @param {any} [additionalConfigurations] - Optional additional configurations for the content view.
|
|
2918
2947
|
* @returns {JSX.Element} The content view for the text message.
|
|
2919
2948
|
*/
|
|
2920
|
-
getTextMessageContentView(message: CometChat.TextMessage, alignment: MessageBubbleAlignment, additionalConfigurations?: any): Element |
|
|
2949
|
+
getTextMessageContentView(message: CometChat.TextMessage, alignment: MessageBubbleAlignment, additionalConfigurations?: any): react_jsx_runtime.JSX.Element | Element;
|
|
2921
2950
|
/**
|
|
2922
2951
|
* Checks if an option with the specified ID already exists in the options list.
|
|
2923
2952
|
*
|
|
@@ -2972,6 +3001,8 @@ declare class PollsExtensionDecorator extends DataSourceDecorator {
|
|
|
2972
3001
|
configuration?: PollsConfiguration;
|
|
2973
3002
|
/** The data source used by this decorator. */
|
|
2974
3003
|
newDataSource: DataSource;
|
|
3004
|
+
/** The message that is being replied to. */
|
|
3005
|
+
replyToMessage: CometChat.BaseMessage | undefined;
|
|
2975
3006
|
/**
|
|
2976
3007
|
* Constructs a PollsExtensionDecorator instance.
|
|
2977
3008
|
* @param dataSource - The data source to decorate.
|
|
@@ -3149,7 +3180,7 @@ declare class StickersExtensionDecorator extends DataSourceDecorator {
|
|
|
3149
3180
|
* @param group - Optional group object.
|
|
3150
3181
|
* @returns An array of auxiliary options.
|
|
3151
3182
|
*/
|
|
3152
|
-
getStickerButton(id: ComposerId, user?: CometChat.User, group?: CometChat.Group): react_jsx_runtime.JSX.Element;
|
|
3183
|
+
getStickerButton(id: ComposerId, user?: CometChat.User, group?: CometChat.Group, messageToReply?: CometChat.BaseMessage | null, closeReplyPreview?: () => void): react_jsx_runtime.JSX.Element;
|
|
3153
3184
|
/**
|
|
3154
3185
|
* Creates the sticker auxiliary button component.
|
|
3155
3186
|
* @param id - A map containing relevant IDs.
|
|
@@ -3158,12 +3189,12 @@ declare class StickersExtensionDecorator extends DataSourceDecorator {
|
|
|
3158
3189
|
* @param group - Optional group object.
|
|
3159
3190
|
* @returns The JSX element for the sticker auxiliary button.
|
|
3160
3191
|
*/
|
|
3161
|
-
getStickerAuxiliaryButton: (id: ComposerId, user?: CometChat.User, group?: CometChat.Group) => react_jsx_runtime.JSX.Element;
|
|
3192
|
+
getStickerAuxiliaryButton: (id: ComposerId, user?: CometChat.User, group?: CometChat.Group, messageToReply?: CometChat.BaseMessage | null, onReplyPreviewClose?: () => void) => react_jsx_runtime.JSX.Element;
|
|
3162
3193
|
/**
|
|
3163
3194
|
* Sends a sticker message.
|
|
3164
3195
|
* @param event - The event object containing sticker details.
|
|
3165
3196
|
*/
|
|
3166
|
-
sendSticker(event: any, closeSticker: Function, id: ComposerId): void;
|
|
3197
|
+
sendSticker(event: any, closeSticker: Function, id: ComposerId, messageToReply?: CometChat.BaseMessage | null, onReplyPreviewClose?: () => void): void;
|
|
3167
3198
|
/**
|
|
3168
3199
|
* Sends a sticker message.
|
|
3169
3200
|
* @param event - The event object containing sticker details.
|
|
@@ -3260,7 +3291,7 @@ declare class ThumbnailGenerationExtensionDecorator extends DataSourceDecorator
|
|
|
3260
3291
|
* @param {ImageBubbleStyle} [style] - Optional style for the image bubble.
|
|
3261
3292
|
* @returns {React.ReactNode} The rendered image message bubble.
|
|
3262
3293
|
*/
|
|
3263
|
-
getImageMessageBubble(imageUrl: string, placeholderImage: string, message: CometChat.MediaMessage, onClick?: Function):
|
|
3294
|
+
getImageMessageBubble(imageUrl: string, placeholderImage: string, message: CometChat.MediaMessage, onClick?: Function): React.JSX.Element | Element;
|
|
3264
3295
|
/**
|
|
3265
3296
|
* Provides the video message bubble with support for thumbnail generation.
|
|
3266
3297
|
* It checks for a thumbnail URL in the message metadata and uses it if available.
|
|
@@ -3271,7 +3302,7 @@ declare class ThumbnailGenerationExtensionDecorator extends DataSourceDecorator
|
|
|
3271
3302
|
* @param {Function} [onClick] - Optional click event handler.
|
|
3272
3303
|
* @returns {React.ReactNode} The rendered video message bubble.
|
|
3273
3304
|
*/
|
|
3274
|
-
getVideoMessageBubble(videoUrl: string, message: CometChat.MediaMessage, thumbnailUrl?: string, onClick?: Function):
|
|
3305
|
+
getVideoMessageBubble(videoUrl: string, message: CometChat.MediaMessage, thumbnailUrl?: string, onClick?: Function): React.JSX.Element | Element;
|
|
3275
3306
|
}
|
|
3276
3307
|
|
|
3277
3308
|
declare class CallingExtensionDecorator extends DataSourceDecorator {
|
|
@@ -4338,6 +4369,11 @@ interface MessageListProps {
|
|
|
4338
4369
|
* @default false
|
|
4339
4370
|
*/
|
|
4340
4371
|
hideReplyInThreadOption?: boolean;
|
|
4372
|
+
/**
|
|
4373
|
+
* Hides the reply option for a message.
|
|
4374
|
+
* @default false
|
|
4375
|
+
*/
|
|
4376
|
+
hideReplyOption?: boolean;
|
|
4341
4377
|
/**
|
|
4342
4378
|
* Hides the option to translate messages.
|
|
4343
4379
|
* @default false
|
|
@@ -4436,10 +4472,10 @@ interface MessageListProps {
|
|
|
4436
4472
|
*/
|
|
4437
4473
|
customSoundForMessages?: string;
|
|
4438
4474
|
/**
|
|
4439
|
-
|
|
4440
|
-
|
|
4441
|
-
|
|
4442
|
-
|
|
4475
|
+
* Specifies the keywords in incoming messages that will trigger Smart Replies.
|
|
4476
|
+
* If set to an empty array [], Smart Replies will be generated for all messages.
|
|
4477
|
+
* @default ['what', 'when', 'why', 'who', 'where', 'how', '?']
|
|
4478
|
+
*/
|
|
4443
4479
|
smartRepliesKeywords?: string[];
|
|
4444
4480
|
/**
|
|
4445
4481
|
* Specifies the delay in milliseconds before Smart Replies are displayed.
|
|
@@ -4495,20 +4531,20 @@ interface MessageListProps {
|
|
|
4495
4531
|
*/
|
|
4496
4532
|
footerView?: JSX$1.Element;
|
|
4497
4533
|
/**
|
|
4498
|
-
|
|
4499
|
-
|
|
4534
|
+
* Format for the date separators in the message list.
|
|
4535
|
+
*/
|
|
4500
4536
|
separatorDateTimeFormat?: CalendarObject;
|
|
4501
4537
|
/**
|
|
4502
|
-
|
|
4503
|
-
|
|
4538
|
+
* Format for sticky date headers displayed in the message list.
|
|
4539
|
+
*/
|
|
4504
4540
|
stickyDateTimeFormat?: CalendarObject;
|
|
4505
4541
|
/**
|
|
4506
|
-
|
|
4507
|
-
|
|
4542
|
+
* Format for the timestamp displayed next to messages.
|
|
4543
|
+
*/
|
|
4508
4544
|
messageSentAtDateTimeFormat?: CalendarObject;
|
|
4509
4545
|
/**
|
|
4510
|
-
|
|
4511
|
-
|
|
4546
|
+
* Format for timestamps displayed in message details (e.g., delivery or read time).
|
|
4547
|
+
*/
|
|
4512
4548
|
messageInfoDateTimeFormat?: CalendarObject;
|
|
4513
4549
|
/**
|
|
4514
4550
|
* ID of the message to automatically scroll to when the message list loads.
|
|
@@ -4517,9 +4553,9 @@ interface MessageListProps {
|
|
|
4517
4553
|
*/
|
|
4518
4554
|
goToMessageId?: string;
|
|
4519
4555
|
/**
|
|
4520
|
-
|
|
4521
|
-
|
|
4522
|
-
|
|
4556
|
+
* Controls the visibility of the scrollbar in the list.
|
|
4557
|
+
* @defaultValue `false`
|
|
4558
|
+
*/
|
|
4523
4559
|
showScrollbar?: boolean;
|
|
4524
4560
|
/**
|
|
4525
4561
|
* Toggles AI Agent functionality.
|
|
@@ -5066,6 +5102,7 @@ interface IGroupLeft {
|
|
|
5066
5102
|
declare class CometChatMessageEvents {
|
|
5067
5103
|
static ccMessageSent: Subject<IMessages>;
|
|
5068
5104
|
static ccMessageEdited: Subject<IMessages>;
|
|
5105
|
+
static ccReplyToMessage: Subject<IMessages>;
|
|
5069
5106
|
static ccMessageTranslated: Subject<IMessages>;
|
|
5070
5107
|
static ccMessageRead: Subject<CometChat.BaseMessage>;
|
|
5071
5108
|
static ccMessageDeleted: Subject<CometChat.BaseMessage>;
|
|
@@ -5424,7 +5461,7 @@ interface FullScreenViewerProps {
|
|
|
5424
5461
|
/**
|
|
5425
5462
|
* The media message containing the image.
|
|
5426
5463
|
*/
|
|
5427
|
-
message: CometChat.
|
|
5464
|
+
message: CometChat.BaseMessage;
|
|
5428
5465
|
/**
|
|
5429
5466
|
* Format for timestamps associated with images in the message list.
|
|
5430
5467
|
*/
|
|
@@ -5545,6 +5582,34 @@ interface DeleteBubbleProps {
|
|
|
5545
5582
|
*/
|
|
5546
5583
|
declare const CometChatDeleteBubble: (props: DeleteBubbleProps) => react_jsx_runtime.JSX.Element;
|
|
5547
5584
|
|
|
5585
|
+
/**
|
|
5586
|
+
* Interface for the props used in the CometChatMessagePreview component.
|
|
5587
|
+
*/
|
|
5588
|
+
interface CometChatMessagePreviewProps {
|
|
5589
|
+
/** The title to display in the preview, defaults to "Edit Message"*/
|
|
5590
|
+
previewTitle?: JSX.Element | null;
|
|
5591
|
+
/** To hide the close icon in the preview */
|
|
5592
|
+
hideCloseButton?: boolean;
|
|
5593
|
+
/** The subtitle to display in the preview, can be left empty. */
|
|
5594
|
+
previewSubtitle?: JSX.Element | null;
|
|
5595
|
+
/** Callback function that triggers when the close button is clicked. */
|
|
5596
|
+
onClose?: () => void;
|
|
5597
|
+
/** Message object replying to */
|
|
5598
|
+
message?: CometChat.BaseMessage;
|
|
5599
|
+
/** Moderation status of the message that is being replied */
|
|
5600
|
+
isMessageModerated?: boolean;
|
|
5601
|
+
/** Text formatters for message bubble */
|
|
5602
|
+
textFormatters?: CometChatTextFormatter[];
|
|
5603
|
+
}
|
|
5604
|
+
/**
|
|
5605
|
+
* CometChatMessagePreview Component
|
|
5606
|
+
*
|
|
5607
|
+
* A React component that displays a preview of a message that is being replied with a title and subtitle.
|
|
5608
|
+
* @param {CometChatMessagePreviewProps} props - The props for the component.
|
|
5609
|
+
* @returns {JSX.Element} A JSX element displaying the edit preview UI.
|
|
5610
|
+
*/
|
|
5611
|
+
declare const CometChatMessagePreview: FC<CometChatMessagePreviewProps>;
|
|
5612
|
+
|
|
5548
5613
|
interface ReactionInfoProps {
|
|
5549
5614
|
messageObject: CometChat.BaseMessage;
|
|
5550
5615
|
reaction: string;
|
|
@@ -6695,6 +6760,7 @@ interface AIAssistantChatProps {
|
|
|
6695
6760
|
user: CometChat.User;
|
|
6696
6761
|
onBackButtonClicked?: () => void;
|
|
6697
6762
|
onCloseButtonClicked?: () => void;
|
|
6763
|
+
onSendButtonClick?: (message: CometChat.BaseMessage, previewMessageMode?: PreviewMessageMode) => void;
|
|
6698
6764
|
showBackButton?: boolean;
|
|
6699
6765
|
showCloseButton?: boolean;
|
|
6700
6766
|
headerItemView?: React__default.JSX.Element;
|
|
@@ -6804,5 +6870,5 @@ interface CometChatAIAssistantChatHistoryProps {
|
|
|
6804
6870
|
}
|
|
6805
6871
|
declare const CometChatAIAssistantChatHistory: (props: CometChatAIAssistantChatHistoryProps) => react_jsx_runtime.JSX.Element;
|
|
6806
6872
|
|
|
6807
|
-
export { AuxiliaryButtonAlignment, ButtonAction, CalendarObject, CallButtonConfiguration, CallWorkflow, CallingConfiguration, CallingDetailsUtils, CallingExtension, CallingExtensionDecorator, ChatConfigurator, ChatSdkEventInitializer, CollaborativeDocumentConfiguration, CollaborativeDocumentExtension, CollaborativeDocumentExtensionDecorator, CollaborativeWhiteBoardExtensionDecorator, CollaborativeWhiteboardConfiguration, CollaborativeWhiteboardExtension, CometChatAIAssistantChat, CometChatAIAssistantChatHistory, CometChatAIAssistantMessageBubble, CometChatAIAssistantTools, CometChatActionBubble, CometChatActionSheet, CometChatActions, CometChatActionsIcon, CometChatActionsView, CometChatAudioBubble, CometChatAvatar, CometChatButton, CometChatCallBubble, CometChatCallButtons, CometChatCallEvents, CometChatCallLogs, CometChatChangeScope, CometChatCheckbox, CometChatConfirmDialog, CometChatContextMenu, CometChatConversationEvents, CometChatConversations, CometChatDate, CometChatDeleteBubble, CometChatDocumentBubble, CometChatDropDown, CometChatEditPreview, CometChatEmojiKeyboard, CometChatErrorView, CometChatFileBubble, CometChatFrameProvider, 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, CometChatSearch, CometChatSearchBar, CometChatSearchFilter, CometChatSearchScope, CometChatStreamMessageBubble, CometChatTextBubble, CometChatTextFormatter, CometChatTextHighlightFormatter, 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, createMessageCopy, currentAudioPlayer, currentMediaPlayer, decodeHTML, downloadRecordingFromURL, fireClickEvent, formatDateFromTimestamp, getAIAssistantTools, getCommonDateFormat, getLocalizedString, getStreamSpeed, getThemeMode, getThemeVariable, handleWebsocketMessage, hasLink, hasValidConversationSearchCriteria, hasValidMessageSearchCriteria, isDarkMode, isMessageSentByMe, isMissedCall, isMobileDevice, isMonthDifferent, isSafari, isSentByMe, isURL, messageStream, processFileForAudio, sanitizeCalendarObject, sanitizeHtml, sanitizeHtmlStringToFragment, sanitizeToSpanOnly, setAIAssistantTools, setStreamSpeed, startStreamingMessage, stopStreamingMessage, streamingState$, useCometChatErrorHandler, useCometChatFrameContext, useDebouncedCallback, useRefSync, useStateRef, verifyCallUser };
|
|
6873
|
+
export { AuxiliaryButtonAlignment, ButtonAction, CalendarObject, CallButtonConfiguration, CallWorkflow, CallingConfiguration, CallingDetailsUtils, CallingExtension, CallingExtensionDecorator, ChatConfigurator, ChatSdkEventInitializer, CollaborativeDocumentConfiguration, CollaborativeDocumentExtension, CollaborativeDocumentExtensionDecorator, CollaborativeWhiteBoardExtensionDecorator, CollaborativeWhiteboardConfiguration, CollaborativeWhiteboardExtension, CometChatAIAssistantChat, CometChatAIAssistantChatHistory, CometChatAIAssistantMessageBubble, CometChatAIAssistantTools, CometChatActionBubble, CometChatActionSheet, CometChatActions, CometChatActionsIcon, CometChatActionsView, CometChatAudioBubble, CometChatAvatar, CometChatButton, CometChatCallBubble, CometChatCallButtons, CometChatCallEvents, CometChatCallLogs, CometChatChangeScope, CometChatCheckbox, CometChatConfirmDialog, CometChatContextMenu, CometChatConversationEvents, CometChatConversations, CometChatDate, CometChatDeleteBubble, CometChatDocumentBubble, CometChatDropDown, CometChatEditPreview, CometChatEmojiKeyboard, CometChatErrorView, CometChatFileBubble, CometChatFrameProvider, CometChatFullScreenViewer, CometChatGroupEvents, CometChatGroupMembers, CometChatGroups, CometChatImageBubble, CometChatIncomingCall, CometChatList, CometChatListItem, CometChatLocalize, CometChatMediaRecorder, CometChatMentionsFormatter, CometChatMessageBubble, CometChatMessageComposer, CometChatMessageComposerAction, CometChatMessageEvents, CometChatMessageHeader, CometChatMessageInformation, CometChatMessageList, CometChatMessageOption, CometChatMessagePreview, CometChatMessageTemplate, CometChatOngoingCall, CometChatOption, CometChatOutgoingCall, CometChatPopover, CometChatRadioButton, CometChatReactionInfo, CometChatReactionList, CometChatReactions, CometChatSearch, CometChatSearchBar, CometChatSearchFilter, CometChatSearchScope, CometChatStreamMessageBubble, CometChatTextBubble, CometChatTextFormatter, CometChatTextHighlightFormatter, 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, createMessageCopy, currentAudioPlayer, currentMediaPlayer, decodeHTML, downloadRecordingFromURL, fireClickEvent, formatDateFromTimestamp, getAIAssistantTools, getCommonDateFormat, getLocalizedString, getStreamSpeed, getThemeMode, getThemeVariable, handleWebsocketMessage, hasLink, hasValidConversationSearchCriteria, hasValidMessageSearchCriteria, isDarkMode, isMessageSentByMe, isMissedCall, isMobileDevice, isMonthDifferent, isSafari, isSentByMe, isURL, messageStream, processFileForAudio, sanitizeCalendarObject, sanitizeHtml, sanitizeHtmlStringToFragment, sanitizeToSpanOnly, setAIAssistantTools, setStreamSpeed, startStreamingMessage, stopStreamingMessage, streamingState$, useCometChatErrorHandler, useCometChatFrameContext, useDebouncedCallback, useRefSync, useStateRef, verifyCallUser };
|
|
6808
6874
|
export type { IActiveChatChanged, IDialog, IGroupLeft, IGroupMemberAdded, IGroupMemberJoined, IGroupMemberKickedBanned, IGroupMemberScopeChanged, IGroupMemberUnBanned, IMentionsCountWarning, IMessages, IModal, IMouseEvent, IOpenChat, IOwnershipChanged, IPanel, IShowOngoingCall, IStreamData, LocalizationSettings, PollOptions };
|