@cometchat/chat-uikit-react 6.0.0 → 6.0.1
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 +2 -1
- package/dist/index.js +2 -2
- package/dist/index.js.map +1 -1
- package/dist/styles/CometChatAudioBubble.css +1 -0
- package/dist/styles/CometChatOutgoingCall.css +1 -1
- package/dist/styles/components/CometChatAudioBubble.css +1 -0
- package/dist/styles/components/CometChatOutgoingCall.css +1 -1
- package/dist/types/resources/CometChatLocalize/cometchat-localize.d.ts +1 -0
- package/dist/types/utils/MessagesDataSource.d.ts +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -456,6 +456,7 @@ declare class CometChatLocalize {
|
|
|
456
456
|
* @returns {string} Localized string.
|
|
457
457
|
*/
|
|
458
458
|
static getLocalizedString: (str: string) => any;
|
|
459
|
+
private static getDefaultTimeZone;
|
|
459
460
|
/**
|
|
460
461
|
* Initializes localization settings (v2).
|
|
461
462
|
* @param {LocalizationSettings} settings - Localization settings.
|
|
@@ -1290,7 +1291,7 @@ declare class MessagesDataSource implements DataSource {
|
|
|
1290
1291
|
getVideoMessageOptions(loggedInUser: CometChat$1.User, messageObject: CometChat$1.BaseMessage, group?: CometChat$1.Group, additionalParams?: Object | undefined): Array<CometChatActionsIcon | CometChatActionsView>;
|
|
1291
1292
|
getAudioMessageOptions(loggedInUser: CometChat$1.User, messageObject: CometChat$1.BaseMessage, group?: CometChat$1.Group, additionalParams?: Object | undefined): Array<CometChatActionsIcon | CometChatActionsView>;
|
|
1292
1293
|
getFileMessageOptions(loggedInUser: CometChat$1.User, messageObject: CometChat$1.BaseMessage, group?: CometChat$1.Group, additionalParams?: Object | undefined): Array<CometChatActionsIcon | CometChatActionsView>;
|
|
1293
|
-
getReceiptClass(status?: number): "
|
|
1294
|
+
getReceiptClass(status?: number): "error" | "wait" | "read" | "delivered" | "sent" | undefined;
|
|
1294
1295
|
/**
|
|
1295
1296
|
* Function to get receipt for message bubble
|
|
1296
1297
|
* @param {CometChat.BaseMessage} item - The message bubble for which the receipt needs to be fetched
|