@cometchat/chat-uikit-react 6.2.1 → 6.2.2
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 +4 -0
- package/dist/index.js +2 -2
- package/dist/index.js.map +1 -1
- package/dist/styles/CometChatAIAssistantChatHistory.css +100 -1
- package/dist/styles/CometChatConversations.css +4 -1
- package/dist/styles/components/CometChatAIAssistantChatHistory.css +100 -1
- package/dist/styles/components/CometChatConversations.css +4 -1
- package/dist/types/components/CometChatAIAssistantChatHistory/CometChatAIAssistantChatHistory.d.ts +4 -0
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -6792,6 +6792,10 @@ interface CometChatAIAssistantChatHistoryProps {
|
|
|
6792
6792
|
* Callback function triggered when clicked on a message
|
|
6793
6793
|
*/
|
|
6794
6794
|
onMessageClicked?: ((message: CometChat.BaseMessage) => void) | undefined;
|
|
6795
|
+
/**
|
|
6796
|
+
* Callback function triggered when clicked on new chat button
|
|
6797
|
+
*/
|
|
6798
|
+
onNewChatClicked?: ((id?: number) => void) | undefined;
|
|
6795
6799
|
}
|
|
6796
6800
|
declare const CometChatAIAssistantChatHistory: (props: CometChatAIAssistantChatHistoryProps) => react_jsx_runtime.JSX.Element;
|
|
6797
6801
|
|