cardoctor-call-chat 1.0.4 → 1.0.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.mts +3 -1
- package/dist/index.d.ts +3 -1
- package/dist/index.js +9 -0
- package/dist/index.mjs +8 -0
- package/package.json +1 -1
- package/src/cometchat/list-group.tsx +7 -0
- package/src/index.ts +2 -1
package/dist/index.d.mts
CHANGED
@@ -19,4 +19,6 @@ interface IListGroup {
|
|
19
19
|
}
|
20
20
|
declare const ListGroup: React.MemoExoticComponent<({ tag, limit, setSelectGroup }: IListGroup) => react_jsx_runtime.JSX.Element>;
|
21
21
|
|
22
|
-
|
22
|
+
declare const ListGroupDemo: () => react_jsx_runtime.JSX.Element;
|
23
|
+
|
24
|
+
export { ListGroup, ListGroupDemo, useCallChatInit };
|
package/dist/index.d.ts
CHANGED
@@ -19,4 +19,6 @@ interface IListGroup {
|
|
19
19
|
}
|
20
20
|
declare const ListGroup: React.MemoExoticComponent<({ tag, limit, setSelectGroup }: IListGroup) => react_jsx_runtime.JSX.Element>;
|
21
21
|
|
22
|
-
|
22
|
+
declare const ListGroupDemo: () => react_jsx_runtime.JSX.Element;
|
23
|
+
|
24
|
+
export { ListGroup, ListGroupDemo, useCallChatInit };
|
package/dist/index.js
CHANGED
@@ -9555,6 +9555,7 @@ var require_CometChat = __commonJS({
|
|
9555
9555
|
var index_exports = {};
|
9556
9556
|
__export(index_exports, {
|
9557
9557
|
ListGroup: () => ListGroup,
|
9558
|
+
ListGroupDemo: () => ListGroupDemo,
|
9558
9559
|
useCallChatInit: () => useCallChatInit
|
9559
9560
|
});
|
9560
9561
|
module.exports = __toCommonJS(index_exports);
|
@@ -9655,8 +9656,16 @@ var ListGroup = import_react2.default.memo(({
|
|
9655
9656
|
}
|
9656
9657
|
);
|
9657
9658
|
});
|
9659
|
+
|
9660
|
+
// src/cometchat/list-group.tsx
|
9661
|
+
var import_chat_uikit_react4 = require("@cometchat/chat-uikit-react");
|
9662
|
+
var import_jsx_runtime2 = require("react/jsx-runtime");
|
9663
|
+
var ListGroupDemo = () => {
|
9664
|
+
return /* @__PURE__ */ (0, import_jsx_runtime2.jsx)(import_chat_uikit_react4.CometChatGroups, {});
|
9665
|
+
};
|
9658
9666
|
// Annotate the CommonJS export names for ESM import in node:
|
9659
9667
|
0 && (module.exports = {
|
9660
9668
|
ListGroup,
|
9669
|
+
ListGroupDemo,
|
9661
9670
|
useCallChatInit
|
9662
9671
|
});
|
package/dist/index.mjs
CHANGED
@@ -9641,7 +9641,15 @@ var ListGroup = React.memo(({
|
|
9641
9641
|
}
|
9642
9642
|
);
|
9643
9643
|
});
|
9644
|
+
|
9645
|
+
// src/cometchat/list-group.tsx
|
9646
|
+
import { CometChatGroups as CometChatGroups2 } from "@cometchat/chat-uikit-react";
|
9647
|
+
import { jsx as jsx2 } from "react/jsx-runtime";
|
9648
|
+
var ListGroupDemo = () => {
|
9649
|
+
return /* @__PURE__ */ jsx2(CometChatGroups2, {});
|
9650
|
+
};
|
9644
9651
|
export {
|
9645
9652
|
ListGroup,
|
9653
|
+
ListGroupDemo,
|
9646
9654
|
useCallChatInit
|
9647
9655
|
};
|
package/package.json
CHANGED
package/src/index.ts
CHANGED