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.
- package/dist/assets/svg/file_unsupported.b41e3b866e02440acd76.svg +3 -0
- package/dist/main.js +1 -1
- package/dist/src/CometChat/CometChatApp.d.ts +2 -1
- package/dist/src/CometChat/CometChatSettings.d.ts +1 -0
- package/dist/src/CometChat/components/CometChatHome/CometChatHome.d.ts +2 -1
- package/dist/src/CometChat/context/CometChatContext.d.ts +1 -0
- package/package.json +4 -4
|
@@ -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;
|
|
@@ -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 };
|
package/package.json
CHANGED
|
@@ -1,20 +1,20 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "cometchat-visual-builder-no-code",
|
|
3
|
-
"version": "1.0.20-
|
|
3
|
+
"version": "1.0.20-authtest21",
|
|
4
4
|
"description": "CometChat Widget Builder No-Code Integration",
|
|
5
5
|
"cometChatCustomConfig": {
|
|
6
|
-
"prodVersion": "1.0.
|
|
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.
|
|
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.
|
|
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",
|