cometchat-visual-builder-no-code 1.0.20-authtest20 → 1.0.20-authtest21

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.
@@ -8,6 +8,7 @@ interface CometChatAppProps {
8
8
  /** Show or hide group action messages (optional). */
9
9
  showGroupActionMessages?: boolean;
10
10
  autoOpenFirstItem?: boolean;
11
+ defaultActiveTab?: 'chats' | 'calls' | 'users' | 'groups';
11
12
  }
12
13
  /**
13
14
  * Main application component for the CometChat Builder.
@@ -15,5 +16,5 @@ interface CometChatAppProps {
15
16
  * @param {CometChatAppProps} props - The component props.
16
17
  * @returns {JSX.Element} The rendered CometChatApp component.
17
18
  */
18
- declare function CometChatApp({ user, group, showGroupActionMessages, autoOpenFirstItem }: CometChatAppProps): import("react/jsx-runtime").JSX.Element;
19
+ declare function CometChatApp({ user, group, showGroupActionMessages, autoOpenFirstItem, defaultActiveTab, }: CometChatAppProps): import("react/jsx-runtime").JSX.Element;
19
20
  export default CometChatApp;
@@ -14,6 +14,7 @@ export interface CometChatSettingsInterface {
14
14
  conversationAndAdvancedSearch?: boolean;
15
15
  moderation?: boolean;
16
16
  quotedReplies?: boolean;
17
+ markAsUnread?: boolean;
17
18
  };
18
19
  deeperUserEngagement: {
19
20
  mentions: boolean;
@@ -10,7 +10,8 @@ interface CometChatHomeProps {
10
10
  defaultGroup?: CometChat.Group;
11
11
  showGroupActionMessages?: boolean;
12
12
  autoOpenFirstItem?: boolean;
13
+ defaultActiveTab?: 'chats' | 'calls' | 'users' | 'groups';
13
14
  }
14
- declare function CometChatHome({ defaultUser, defaultGroup, showGroupActionMessages, autoOpenFirstItem, }: CometChatHomeProps): import("react/jsx-runtime").JSX.Element | null;
15
+ declare function CometChatHome({ defaultUser, defaultGroup, showGroupActionMessages, autoOpenFirstItem, defaultActiveTab, }: CometChatHomeProps): import("react/jsx-runtime").JSX.Element | null;
15
16
  declare const MemoizedCometChatHome: React.MemoExoticComponent<typeof CometChatHome>;
16
17
  export { MemoizedCometChatHome as CometChatHome };
@@ -35,6 +35,7 @@ export interface CometChatSettingsInterface {
35
35
  conversationAndAdvancedSearch?: boolean;
36
36
  moderation?: boolean;
37
37
  quotedReplies?: boolean;
38
+ markAsUnread?: boolean;
38
39
  };
39
40
  deeperUserEngagement: {
40
41
  mentions: boolean;
package/package.json CHANGED
@@ -1,20 +1,20 @@
1
1
  {
2
2
  "name": "cometchat-visual-builder-no-code",
3
- "version": "1.0.20-authtest20",
3
+ "version": "1.0.20-authtest21",
4
4
  "description": "CometChat Widget Builder No-Code Integration",
5
5
  "cometChatCustomConfig": {
6
- "prodVersion": "1.0.24",
6
+ "prodVersion": "1.0.26",
7
7
  "devStagingVersion": "1.0.20-authtest7",
8
8
  "prodName": "@cometchat/chat-embed",
9
9
  "devName": "cometchat-visual-builder-no-code",
10
10
  "name": "cometchat-visual-builder-react-no-code",
11
- "version": "1.0.24",
11
+ "version": "1.0.26",
12
12
  "production": true
13
13
  },
14
14
  "author": "CometChat",
15
15
  "dependencies": {
16
16
  "@cometchat/calls-sdk-javascript": "4.2.2",
17
- "@cometchat/chat-uikit-react": "6.3.5",
17
+ "@cometchat/chat-uikit-react": "6.3.7",
18
18
  "react": "18.2.0",
19
19
  "react-dom": "18.2.0",
20
20
  "react-frame-component": "^5.2.7",