@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 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