@cometchat/chat-uikit-react 5.0.3 → 5.0.4
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 +279 -265
- 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 +278 -264
- package/dist/types/utils/MessagesDataSource.d.ts +1 -1
- package/package.json +2 -3
|
@@ -41,7 +41,7 @@ export declare class MessagesDataSource implements DataSource {
|
|
|
41
41
|
getVideoMessageOptions(loggedInUser: CometChat.User, messageObject: CometChat.BaseMessage, group?: CometChat.Group, additionalParams?: Object | undefined): Array<CometChatActionsIcon | CometChatActionsView>;
|
|
42
42
|
getAudioMessageOptions(loggedInUser: CometChat.User, messageObject: CometChat.BaseMessage, group?: CometChat.Group, additionalParams?: Object | undefined): Array<CometChatActionsIcon | CometChatActionsView>;
|
|
43
43
|
getFileMessageOptions(loggedInUser: CometChat.User, messageObject: CometChat.BaseMessage, group?: CometChat.Group, additionalParams?: Object | undefined): Array<CometChatActionsIcon | CometChatActionsView>;
|
|
44
|
-
getReceiptClass(status?: number): "
|
|
44
|
+
getReceiptClass(status?: number): "error" | "wait" | "read" | "delivered" | "sent" | undefined;
|
|
45
45
|
/**
|
|
46
46
|
* Function to get receipt for message bubble
|
|
47
47
|
* @param {CometChat.BaseMessage} item - The message bubble for which the receipt needs to be fetched
|
package/package.json
CHANGED
|
@@ -1,12 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cometchat/chat-uikit-react",
|
|
3
|
-
"version": "5.0.
|
|
3
|
+
"version": "5.0.4",
|
|
4
4
|
"description": "Ready-to-use Chat UI Components for React(Javascript/Web)",
|
|
5
5
|
"author": "CometChat",
|
|
6
6
|
"dependencies": {
|
|
7
7
|
"@cometchat/chat-sdk-javascript": "^4.0.10",
|
|
8
8
|
"@rollup/plugin-json": "^6.1.0",
|
|
9
|
-
"postcss": "^8.5.2",
|
|
10
9
|
"rxjs": "^7.8.1"
|
|
11
10
|
},
|
|
12
11
|
"scripts": {
|
|
@@ -68,4 +67,4 @@
|
|
|
68
67
|
"bugs": {
|
|
69
68
|
"url": "https://help.cometchat.com/hc/en-us"
|
|
70
69
|
}
|
|
71
|
-
}
|
|
70
|
+
}
|