cardoctor-call-chat 1.0.2 → 1.0.4
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.mts +11 -1
- package/dist/index.d.ts +11 -1
- package/dist/index.js +9535 -0
- package/dist/index.mjs +9546 -0
- package/package.json +1 -1
- package/src/cometchat/components/compose.tsx +11 -0
- package/src/cometchat/components/header.tsx +10 -0
- package/src/cometchat/components/index.ts +4 -0
- package/src/cometchat/components/list.tsx +25 -0
- package/src/cometchat/components/message.tsx +11 -0
- package/src/index.ts +2 -1
package/dist/index.d.mts
CHANGED
@@ -1,3 +1,6 @@
|
|
1
|
+
import * as react_jsx_runtime from 'react/jsx-runtime';
|
2
|
+
import React from 'react';
|
3
|
+
|
1
4
|
interface ChatInitState {
|
2
5
|
user: any | null;
|
3
6
|
loading: boolean;
|
@@ -9,4 +12,11 @@ interface IPros {
|
|
9
12
|
}
|
10
13
|
declare function useCallChatInit(props: IPros): ChatInitState;
|
11
14
|
|
12
|
-
|
15
|
+
interface IListGroup {
|
16
|
+
tag?: string[];
|
17
|
+
limit?: number;
|
18
|
+
setSelectGroup: any;
|
19
|
+
}
|
20
|
+
declare const ListGroup: React.MemoExoticComponent<({ tag, limit, setSelectGroup }: IListGroup) => react_jsx_runtime.JSX.Element>;
|
21
|
+
|
22
|
+
export { ListGroup, useCallChatInit };
|
package/dist/index.d.ts
CHANGED
@@ -1,3 +1,6 @@
|
|
1
|
+
import * as react_jsx_runtime from 'react/jsx-runtime';
|
2
|
+
import React from 'react';
|
3
|
+
|
1
4
|
interface ChatInitState {
|
2
5
|
user: any | null;
|
3
6
|
loading: boolean;
|
@@ -9,4 +12,11 @@ interface IPros {
|
|
9
12
|
}
|
10
13
|
declare function useCallChatInit(props: IPros): ChatInitState;
|
11
14
|
|
12
|
-
|
15
|
+
interface IListGroup {
|
16
|
+
tag?: string[];
|
17
|
+
limit?: number;
|
18
|
+
setSelectGroup: any;
|
19
|
+
}
|
20
|
+
declare const ListGroup: React.MemoExoticComponent<({ tag, limit, setSelectGroup }: IListGroup) => react_jsx_runtime.JSX.Element>;
|
21
|
+
|
22
|
+
export { ListGroup, useCallChatInit };
|