@cometchat/chat-uikit-react 6.2.3 → 6.2.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 +5 -0
- package/dist/index.js +2 -2
- package/dist/index.js.map +1 -1
- package/dist/styles/CometChatAIAssistantChat.css +4 -5
- package/dist/styles/CometChatAIAssistantChatHistory.css +6 -2
- package/dist/styles/CometChatAIAssistantMessageBubble.css +95 -15
- package/dist/styles/CometChatConversations.css +3 -1
- package/dist/styles/CometChatStreamMessageBubble.css +105 -17
- package/dist/styles/components/CometChatAIAssistantChat.css +4 -5
- package/dist/styles/components/CometChatAIAssistantChatHistory.css +6 -2
- package/dist/styles/components/CometChatAIAssistantMessageBubble.css +95 -15
- package/dist/styles/components/CometChatConversations.css +3 -1
- package/dist/styles/components/CometChatStreamMessageBubble.css +105 -17
- package/dist/types/components/CometChatAIAssistantChatHistory/CometChatAIAssistantChatHistory.d.ts +5 -0
- package/dist/types/components/CometChatConversations/CometChatConversations.d.ts +3 -0
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -6796,6 +6796,11 @@ interface CometChatAIAssistantChatHistoryProps {
|
|
|
6796
6796
|
* Callback function triggered when clicked on new chat button
|
|
6797
6797
|
*/
|
|
6798
6798
|
onNewChatClicked?: ((id?: number) => void) | undefined;
|
|
6799
|
+
/**
|
|
6800
|
+
* Hides new chat button.
|
|
6801
|
+
* @default false
|
|
6802
|
+
*/
|
|
6803
|
+
hideNewChat?: boolean;
|
|
6799
6804
|
}
|
|
6800
6805
|
declare const CometChatAIAssistantChatHistory: (props: CometChatAIAssistantChatHistoryProps) => react_jsx_runtime.JSX.Element;
|
|
6801
6806
|
|