cnhis-design-vue 3.3.1-beta.4 → 3.3.1-beta.44

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.
Files changed (255) hide show
  1. package/README.md +87 -87
  2. package/es/components/ai-chat/index.d.ts +394 -43
  3. package/es/components/ai-chat/src/Index.vue.d.ts +394 -43
  4. package/es/components/ai-chat/src/Index.vue2.js +1 -1
  5. package/es/components/ai-chat/src/api/index.d.ts +8 -0
  6. package/es/components/ai-chat/src/api/index.js +1 -0
  7. package/es/components/ai-chat/src/components/ChatAudio.vue.d.ts +38 -0
  8. package/es/components/ai-chat/src/components/ChatAudio.vue.js +1 -0
  9. package/es/components/ai-chat/src/components/ChatAudio.vue2.js +1 -0
  10. package/es/components/ai-chat/src/components/ChatBI.vue.d.ts +2 -2
  11. package/es/components/ai-chat/src/components/ChatBI.vue2.js +1 -1
  12. package/es/components/ai-chat/src/components/ChatCard.js +1 -1
  13. package/es/components/ai-chat/src/components/ChatFooter.vue.d.ts +75 -31
  14. package/es/components/ai-chat/src/components/ChatFooter.vue2.js +1 -1
  15. package/es/components/ai-chat/src/components/ChatMain.d.ts +1 -7
  16. package/es/components/ai-chat/src/components/ChatMain.js +1 -1
  17. package/es/components/ai-chat/src/components/ChatMainDefault.d.ts +2 -0
  18. package/es/components/ai-chat/src/components/ChatMainDefault.js +1 -0
  19. package/es/components/ai-chat/src/components/ChatPatient.vue.d.ts +2 -2
  20. package/es/components/ai-chat/src/components/ChatPatient.vue2.js +1 -1
  21. package/es/components/ai-chat/src/components/ChatPrompt.vue.d.ts +2 -2
  22. package/es/components/ai-chat/src/components/ChatPrompt.vue2.js +1 -1
  23. package/es/components/ai-chat/src/components/ChatRight.vue.d.ts +57 -0
  24. package/es/components/ai-chat/src/components/ChatRight.vue.js +1 -0
  25. package/es/components/ai-chat/src/components/ChatRight.vue2.js +1 -0
  26. package/es/components/ai-chat/src/components/card/JsonCard.d.ts +25 -0
  27. package/es/components/ai-chat/src/components/card/JsonCard.js +1 -0
  28. package/es/components/ai-chat/src/components/message-render/CardRender.d.ts +16 -0
  29. package/es/components/ai-chat/src/components/message-render/CardRender.js +1 -0
  30. package/es/components/ai-chat/src/components/message-render/FormRender.d.ts +16 -0
  31. package/es/components/ai-chat/src/components/message-render/FormRender.js +1 -0
  32. package/es/components/ai-chat/src/components/mobile/MobileChatAudio.vue.d.ts +36 -0
  33. package/es/components/ai-chat/src/components/mobile/MobileChatAudio.vue.js +1 -0
  34. package/es/components/ai-chat/src/components/mobile/MobileChatAudio.vue2.js +1 -0
  35. package/es/components/ai-chat/src/components/mobile/MobileChatFooter.vue.d.ts +105 -0
  36. package/es/components/ai-chat/src/components/mobile/MobileChatFooter.vue.js +1 -0
  37. package/es/components/ai-chat/src/components/mobile/MobileChatFooter.vue2.js +1 -0
  38. package/es/components/ai-chat/src/components/svgs/AddIcon.vue.js +1 -0
  39. package/es/components/ai-chat/src/components/svgs/AudioIcon.vue.js +1 -0
  40. package/es/components/ai-chat/src/components/svgs/KeyboardIcon.vue.js +1 -0
  41. package/es/components/ai-chat/src/components/svgs/MicroPhone.vue.js +1 -0
  42. package/es/components/ai-chat/src/hooks/index.d.ts +2 -0
  43. package/es/components/ai-chat/src/hooks/index.js +1 -0
  44. package/es/components/ai-chat/src/hooks/useChartAudioContext.d.ts +18 -0
  45. package/es/components/ai-chat/src/hooks/useChartAudioContext.js +1 -0
  46. package/es/components/ai-chat/src/hooks/useData.d.ts +77 -0
  47. package/es/components/ai-chat/src/hooks/useData.js +1 -0
  48. package/es/components/ai-chat/src/hooks/useFooterContext.d.ts +38 -0
  49. package/es/components/ai-chat/src/hooks/useFooterContext.js +1 -0
  50. package/es/components/ai-chat/src/hooks/useProgram.d.ts +14 -0
  51. package/es/components/ai-chat/src/hooks/useProgram.js +1 -0
  52. package/es/components/ai-chat/src/hooks/useSSE.d.ts +9 -0
  53. package/es/components/ai-chat/src/hooks/useSSE.js +1 -0
  54. package/es/components/ai-chat/src/hooks/useWebsocket.d.ts +4 -0
  55. package/es/components/ai-chat/src/hooks/useWebsocket.js +1 -0
  56. package/es/components/ai-chat/src/types/index.d.ts +1 -3
  57. package/es/components/ai-chat/src/types/index.js +1 -1
  58. package/es/components/ai-chat/src/utils/index.d.ts +6 -0
  59. package/es/components/ai-chat/src/utils/index.js +1 -1
  60. package/es/components/ai-chat/style/index.css +1 -1
  61. package/es/components/audio-sdk/index.d.ts +274 -2
  62. package/es/components/audio-sdk/index.js +1 -1
  63. package/es/components/audio-sdk/src/Index.vue.d.ts +274 -0
  64. package/es/components/audio-sdk/src/Index.vue.js +1 -0
  65. package/es/components/audio-sdk/src/Index.vue2.js +1 -0
  66. package/es/components/audio-sdk/src/audioSDK.d.ts +60 -28
  67. package/es/components/audio-sdk/src/audioSDK.js +1 -1
  68. package/es/components/audio-sdk/src/components/form.vue.d.ts +51 -0
  69. package/es/components/audio-sdk/src/components/recording-modal.vue.d.ts +100 -0
  70. package/es/components/audio-sdk/src/components/recording-modal.vue.js +1 -0
  71. package/es/components/audio-sdk/src/components/recording-modal.vue2.js +1 -0
  72. package/es/components/audio-sdk/src/components/recording.vue.d.ts +53 -4
  73. package/es/components/audio-sdk/src/components/recording.vue2.js +1 -1
  74. package/es/components/audio-sdk/src/utils/index.d.ts +7 -0
  75. package/es/components/audio-sdk/src/utils/index.js +1 -0
  76. package/es/components/audio-sdk/src/utils/recordingModal.d.ts +7 -3
  77. package/es/components/audio-sdk/src/utils/recordingModal.js +1 -1
  78. package/es/components/audio-sdk/style/index.css +1 -1
  79. package/es/components/button-print/index.d.ts +30 -0
  80. package/es/components/button-print/src/ButtonPrint.vue.d.ts +30 -0
  81. package/es/components/button-print/src/ButtonPrint.vue2.js +1 -1
  82. package/es/components/button-print/src/components/NewPrintComponent.vue.d.ts +9 -0
  83. package/es/components/button-print/src/components/NewPrintComponent.vue2.js +1 -1
  84. package/es/components/button-print/src/components/OldPrintComponent.vue.d.ts +9 -0
  85. package/es/components/button-print/src/components/OldPrintComponent.vue2.js +1 -1
  86. package/es/components/button-print/src/utils/print.d.ts +2 -2
  87. package/es/components/button-print/src/utils/print.js +1 -1
  88. package/es/components/calendar/index.d.ts +126 -3
  89. package/es/components/calendar/src/Calendar.vue.d.ts +126 -2
  90. package/es/components/card-reader-sdk/src/cardReaderSDK.d.ts +4 -8
  91. package/es/components/card-reader-sdk/src/cardReaderSDK.js +1 -1
  92. package/es/components/card-render/src/components/Button.vue.d.ts +3 -0
  93. package/es/components/card-render/src/components/Button.vue2.js +1 -1
  94. package/es/components/card-render/src/components/ScaleView.vue.d.ts +39 -0
  95. package/es/components/card-render/src/components/ScaleView.vue.js +1 -0
  96. package/es/components/card-render/src/components/ScaleView.vue2.js +1 -0
  97. package/es/components/card-render/src/components/Table.vue.d.ts +104 -0
  98. package/es/components/card-render/src/components/Table.vue.js +1 -0
  99. package/es/components/card-render/src/components/Table.vue2.js +1 -0
  100. package/es/components/card-render/src/components/Text.vue.d.ts +1 -0
  101. package/es/components/card-render/src/components/Text.vue2.js +1 -1
  102. package/es/components/card-render/src/components/index.d.ts +162 -23
  103. package/es/components/card-render/src/components/index.js +1 -1
  104. package/es/components/card-render/src/constants/index.d.ts +4 -1
  105. package/es/components/card-render/src/constants/index.js +1 -1
  106. package/es/components/card-render/style/index.css +1 -1
  107. package/es/components/classification/src/components/table-modal/index.vue.d.ts +3 -0
  108. package/es/components/editor/src/Editor.js +1 -1
  109. package/es/components/editor/style/index.css +1 -0
  110. package/es/components/fabric-chart/index.d.ts +6 -2
  111. package/es/components/fabric-chart/src/FabricChart.vue.d.ts +6 -2
  112. package/es/components/fabric-chart/src/FabricChart.vue2.js +1 -1
  113. package/es/components/fabric-chart/src/hooks/temperature/useTemperatureChart.js +1 -1
  114. package/es/components/field-set/src/FieldColor.vue.d.ts +1 -1
  115. package/es/components/field-set/src/FieldFilter.vue.d.ts +1 -1
  116. package/es/components/field-set/src/FieldSet.vue.d.ts +1 -1
  117. package/es/components/field-set/src/components/table-row.vue.d.ts +1 -1
  118. package/es/components/form-config/index.d.ts +40 -10
  119. package/es/components/form-config/src/FormConfig.vue.d.ts +40 -10
  120. package/es/components/form-config/src/components/FormConfigEdit.vue.d.ts +32 -8
  121. package/es/components/form-config/src/components/FormConfigEventSetting.vue.d.ts +8 -2
  122. package/es/components/form-render/src/components/renderer/date.d.ts +2 -2
  123. package/es/components/form-render/src/components/renderer/formItem.d.ts +2 -0
  124. package/es/components/form-render/src/components/renderer/formItem.js +1 -1
  125. package/es/components/form-render/src/components/renderer/levelSearchCascader/index.d.ts +9 -0
  126. package/es/components/form-render/src/components/renderer/levelSearchCascader/index.js +1 -1
  127. package/es/components/form-render/src/components/renderer/lineBar/FormCollapse.vue.d.ts +12 -1
  128. package/es/components/form-render/src/components/renderer/lineBar/index.d.ts +12 -1
  129. package/es/components/form-render/src/components/renderer/searchCascade.js +1 -1
  130. package/es/components/form-render/src/components/renderer/select.js +1 -1
  131. package/es/components/form-render/src/components/tooltipMessage.vue.d.ts +12 -1
  132. package/es/components/form-render/src/components/tooltipMessage.vue2.js +1 -1
  133. package/es/components/form-render/src/hooks/useBusinessBinding.js +1 -1
  134. package/es/components/form-render/src/hooks/useFieldListAdaptor.js +1 -1
  135. package/es/components/form-render/src/hooks/useLowCodeReactions.js +1 -1
  136. package/es/components/form-render/src/types/fieldItem.d.ts +9 -3
  137. package/es/components/guide/src/renderer.d.ts +2 -2
  138. package/es/components/iho-chat/index.d.ts +206 -4
  139. package/es/components/iho-chat/src/Index.vue.d.ts +206 -4
  140. package/es/components/iho-chat/src/api/index.d.ts +1 -0
  141. package/es/components/iho-chat/src/api/index.js +1 -1
  142. package/es/components/iho-chat/src/components/ChatAdd.vue.d.ts +8 -0
  143. package/es/components/iho-chat/src/components/ChatAdd.vue2.js +1 -1
  144. package/es/components/iho-chat/src/components/ChatFile.vue.d.ts +11 -3
  145. package/es/components/iho-chat/src/components/ChatFile.vue2.js +1 -1
  146. package/es/components/iho-chat/src/components/ChatFooter.vue.d.ts +7 -0
  147. package/es/components/iho-chat/src/components/ChatFooter.vue2.js +1 -1
  148. package/es/components/iho-chat/src/components/ChatHeader.vue.d.ts +96 -2
  149. package/es/components/iho-chat/src/components/ChatMain.vue.d.ts +77 -0
  150. package/es/components/iho-chat/src/components/ChatMain.vue2.js +1 -1
  151. package/es/components/iho-chat/src/components/ChatRecord.vue.d.ts +71 -1
  152. package/es/components/iho-chat/src/components/ChatRecord.vue2.js +1 -1
  153. package/es/components/iho-chat/src/components/ChatSearch.vue.d.ts +8 -2
  154. package/es/components/iho-chat/src/components/ChatSearch.vue2.js +1 -1
  155. package/es/components/iho-chat/src/components/ChatSet.vue.d.ts +10 -0
  156. package/es/components/iho-chat/src/components/ChatSet.vue2.js +1 -1
  157. package/es/components/iho-chat/src/components/MessageMergeForward.vue.d.ts +70 -1
  158. package/es/components/iho-chat/src/components/MessageMergeForward.vue2.js +1 -1
  159. package/es/components/iho-chat/src/components/MultipleVideo.vue.d.ts +7 -0
  160. package/es/components/iho-chat/src/components/PersonProfile.vue.d.ts +3 -0
  161. package/es/components/iho-chat/src/components/PersonProfile.vue2.js +1 -1
  162. package/es/components/iho-chat/src/components/SiderList.vue.d.ts +3 -1
  163. package/es/components/iho-chat/src/components/SiderList.vue2.js +1 -1
  164. package/es/components/iho-chat/src/constants/index.d.ts +9 -2
  165. package/es/components/iho-chat/src/constants/index.js +1 -1
  166. package/es/components/iho-chat/src/hooks/useSearchPatientList.d.ts +11 -0
  167. package/es/components/iho-chat/src/hooks/useSearchPatientList.js +1 -0
  168. package/es/components/iho-chat/src/utils/chatSock.js +1 -1
  169. package/es/components/iho-chat/src/utils/index.d.ts +6 -0
  170. package/es/components/iho-chat/src/utils/index.js +1 -1
  171. package/es/components/iho-chat/style/index.css +1 -1
  172. package/es/components/iho-table/index.d.ts +3 -0
  173. package/es/components/iho-table/index.js +1 -1
  174. package/es/components/iho-table/src/IhoTable.vue2.js +1 -1
  175. package/es/components/iho-table/src/hooks/tapHooks/index.d.ts +1 -1
  176. package/es/components/iho-table/src/hooks/tapHooks/index.js +1 -1
  177. package/es/components/iho-table/src/hooks/tapHooks/useDataHooks.d.ts +3 -3
  178. package/es/components/iho-table/src/hooks/tapHooks/useDataHooks.js +1 -1
  179. package/es/components/iho-table/src/hooks/useTablePlugin.js +1 -1
  180. package/es/components/iho-table/src/plugins/filterRenderPlugin/index.js +1 -1
  181. package/es/components/iho-table/src/plugins/headerPlugin/index.d.ts +1 -1
  182. package/es/components/iho-table/src/plugins/headerPlugin/index.js +1 -1
  183. package/es/components/iho-table/src/plugins/highLightSetPlugin.js +1 -1
  184. package/es/components/iho-table/src/plugins/index.d.ts +79 -3
  185. package/es/components/iho-table/src/plugins/index.js +1 -1
  186. package/es/components/iho-table/src/plugins/rendererPlugins/editableWidgets/selectRendererPlugin/index.js +1 -1
  187. package/es/components/iho-table/src/plugins/rendererPlugins/editableWidgets/separateRendererPlugin/index.js +1 -1
  188. package/es/components/iho-table/src/plugins/stickyFixedPlugin.js +1 -1
  189. package/es/components/iho-table/src/plugins/varialbleHeightPlugin.js +1 -1
  190. package/es/components/iho-table/src/plugins/verticalTablePlugin/src/utils.js +1 -1
  191. package/es/components/iho-table/src/types/pluginType.d.ts +2 -2
  192. package/es/components/iho-table/src/utils/index.js +1 -1
  193. package/es/components/index.css +1 -1
  194. package/es/components/index.d.ts +2 -1
  195. package/es/components/index.js +1 -1
  196. package/es/components/scale-view/index.d.ts +17 -3
  197. package/es/components/scale-view/src/ScaleView.vue.d.ts +17 -3
  198. package/es/components/scale-view/src/ScaleView.vue2.js +1 -1
  199. package/es/components/scale-view/src/components/EvaluateCountdown.vue.d.ts +1 -1
  200. package/es/components/scale-view/src/hooks/scaleview-computed.js +1 -1
  201. package/es/components/scale-view/src/hooks/scaleview-init.d.ts +3 -1
  202. package/es/components/scale-view/src/hooks/scaleview-init.js +1 -1
  203. package/es/components/scale-view/src/hooks/scaleview-props.d.ts +4 -0
  204. package/es/components/scale-view/src/hooks/scaleview-props.js +1 -1
  205. package/es/components/scale-view/src/hooks/use-component.d.ts +1 -2189
  206. package/es/components/shortcut-provider/src/ShortcutProvider.vue2.js +1 -1
  207. package/es/components/shortcut-setter/index.d.ts +8 -2
  208. package/es/components/shortcut-setter/src/ShortcutSetter.vue.d.ts +8 -2
  209. package/es/components/steps-wheel/index.d.ts +18 -0
  210. package/es/components/steps-wheel/src/StepsWheel.vue.d.ts +18 -0
  211. package/es/components/steps-wheel/src/StepsWheel.vue2.js +1 -1
  212. package/es/env.d.ts +25 -25
  213. package/es/shared/assets/img/ai__avatar.png.js +1 -1
  214. package/es/shared/assets/img/defaultCover/10review_successful.png.js +1 -1
  215. package/es/shared/assets/img/defaultCover/11review_fail.png.js +1 -1
  216. package/es/shared/assets/img/defaultCover/12no_setting.png.js +1 -1
  217. package/es/shared/assets/img/defaultCover/13no_menu_setting.png.js +1 -1
  218. package/es/shared/assets/img/defaultCover/14no_call_setting.png.js +1 -1
  219. package/es/shared/assets/img/defaultCover/15no_use_tag.png.js +1 -1
  220. package/es/shared/assets/img/defaultCover/16no_table_data.png.js +1 -1
  221. package/es/shared/assets/img/defaultCover/1location.png.js +1 -1
  222. package/es/shared/assets/img/defaultCover/2notfound.png.js +1 -1
  223. package/es/shared/assets/img/defaultCover/3loading.png.js +1 -1
  224. package/es/shared/assets/img/defaultCover/4no_permission.png.js +1 -1
  225. package/es/shared/assets/img/defaultCover/5no_data.png.js +1 -1
  226. package/es/shared/assets/img/defaultCover/6no_network.png.js +1 -1
  227. package/es/shared/assets/img/defaultCover/7no_doctor.png.js +1 -1
  228. package/es/shared/assets/img/defaultCover/8system_error.png.js +1 -1
  229. package/es/shared/assets/img/defaultCover/9system_upgrade.png.js +1 -1
  230. package/es/shared/assets/img/failure.png.js +1 -1
  231. package/es/shared/assets/img/file-emr.png.js +1 -0
  232. package/es/shared/assets/img/file.png.js +1 -0
  233. package/es/shared/assets/img/logo.png.js +1 -1
  234. package/es/shared/assets/img/no-permission.png.js +1 -1
  235. package/es/shared/assets/img/nodata.png.js +1 -1
  236. package/es/shared/assets/img/notfound.png.js +1 -1
  237. package/es/shared/assets/img/qr.png.js +1 -1
  238. package/es/shared/assets/img/success.png.js +1 -1
  239. package/es/shared/assets/img/table_style_2.png.js +1 -1
  240. package/es/shared/assets/img/use.png.js +1 -0
  241. package/es/shared/assets/img/video.png.js +1 -1
  242. package/es/shared/assets/img/video_default_cover.png.js +1 -1
  243. package/es/shared/assets/img/xb_big.png.js +1 -1
  244. package/es/shared/assets/img/xb_small.png.js +1 -1
  245. package/es/shared/hooks/useLevelSearchCascader.d.ts +1 -0
  246. package/es/shared/hooks/useLevelSearchCascader.js +1 -1
  247. package/es/shared/package.json.js +1 -1
  248. package/package.json +5 -3
  249. package/es/components/bpmn-workflow/src/BpmnWorkflow.d.ts +0 -0
  250. package/es/components/bpmn-workflow/types/BpmnViewer.d.ts +0 -1
  251. package/es/components/bpmn-workflow/types/ModelingModule.d.ts +0 -1
  252. package/es/components/bpmn-workflow/types/MoveCanvasModule.d.ts +0 -1
  253. package/es/shared/components/VueDraggable/src/vuedraggable.d.ts +0 -86
  254. package/es/shared/utils/fabricjs/index.d.ts +0 -6823
  255. package/es/shared/utils/tapable/index.d.ts +0 -139
@@ -327,6 +327,8 @@ declare const IhoChat: SFCWithInstall<import("vue").DefineComponent<{
327
327
  beforeUnmount(el: any): void;
328
328
  };
329
329
  formatTime: typeof import("./src/utils").formatTime;
330
+ isDoctorRole: typeof import("./src/utils").isDoctorRole;
331
+ getRoleName: typeof import("./src/utils").getRoleName;
330
332
  STATUS: typeof import("./src/constants").STATUS;
331
333
  CDatePicker: SFCWithInstall<import("vue").DefineComponent<{
332
334
  updateUnchangedValue: {
@@ -750,6 +752,7 @@ declare const IhoChat: SFCWithInstall<import("vue").DefineComponent<{
750
752
  remark: import("vue").Ref<string>;
751
753
  currentTab: import("vue").Ref<import("../../shared/types").AnyObject[]>;
752
754
  breadcrumbList: import("vue").Ref<import("../../shared/types").AnyObject[]>;
755
+ breadcrumbRef: import("vue").Ref<any>;
753
756
  userList: import("vue").Ref<import("../../shared/types").AnyObject[]>;
754
757
  handleInput: () => void;
755
758
  _disabledIds: import("vue").ComputedRef<any[]>;
@@ -758,18 +761,21 @@ declare const IhoChat: SFCWithInstall<import("vue").DefineComponent<{
758
761
  name: any;
759
762
  avatar: any;
760
763
  chatType: any;
764
+ roleInfo: any;
761
765
  }[]>;
762
766
  friends: import("vue").ComputedRef<{
763
767
  id: any;
764
768
  name: any;
765
769
  avatar: any;
766
770
  chatType: any;
771
+ roleInfo: any;
767
772
  }[]>;
768
773
  groups: import("vue").ComputedRef<{
769
774
  id: any;
770
775
  name: any;
771
776
  avatar: any;
772
777
  chatType: any;
778
+ roleInfo: any;
773
779
  }[]>;
774
780
  checkedIds: import("vue").ComputedRef<any[]>;
775
781
  btnDisabled: import("vue").ComputedRef<boolean>;
@@ -778,6 +784,7 @@ declare const IhoChat: SFCWithInstall<import("vue").DefineComponent<{
778
784
  currentTabKey: import("vue").ComputedRef<any>;
779
785
  showAllCheckbox: import("vue").ComputedRef<boolean>;
780
786
  getOrgList: () => Promise<void>;
787
+ handleSearchInput: () => void;
781
788
  setUserTotal: (tree: import("../../shared/types").AnyObject[]) => void;
782
789
  getDisabled: (id: string | number) => boolean;
783
790
  handleClickCheckbox: (option: import("../../shared/types").AnyObject) => Promise<void>;
@@ -807,6 +814,8 @@ declare const IhoChat: SFCWithInstall<import("vue").DefineComponent<{
807
814
  ChevronBackOutline: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, import("vue").EmitsOptions, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
808
815
  ChevronForwardOutline: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, import("vue").EmitsOptions, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
809
816
  last: <T>(array: import("lodash").List<T> | null | undefined) => T | undefined;
817
+ isDoctorRole: typeof import("./src/utils").isDoctorRole;
818
+ getRoleName: typeof import("./src/utils").getRoleName;
810
819
  }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "comfirm"[], "comfirm", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
811
820
  title: {
812
821
  type: StringConstructor;
@@ -840,6 +849,8 @@ declare const IhoChat: SFCWithInstall<import("vue").DefineComponent<{
840
849
  mode: string;
841
850
  disabledIds: string[];
842
851
  }>;
852
+ isDoctorRole: typeof import("./src/utils").isDoctorRole;
853
+ getRoleName: typeof import("./src/utils").getRoleName;
843
854
  }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
844
855
  ChatFile: import("vue").DefineComponent<{
845
856
  type: {
@@ -912,8 +923,6 @@ declare const IhoChat: SFCWithInstall<import("vue").DefineComponent<{
912
923
  }[];
913
924
  resetAndSearch: () => void;
914
925
  title: import("vue").ComputedRef<"聊天图片" | "聊天文件">;
915
- getDetail: (item: import("../../shared/types").AnyObject) => string;
916
- getFileType: (item: import("../../shared/types").AnyObject) => any;
917
926
  NModal: any;
918
927
  NImageGroup: any;
919
928
  NImage: any;
@@ -924,6 +933,9 @@ declare const IhoChat: SFCWithInstall<import("vue").DefineComponent<{
924
933
  OpenOutline: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, import("vue").EmitsOptions, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
925
934
  DownloadOutline: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, import("vue").EmitsOptions, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
926
935
  downloadFile: typeof import("./src/utils").downloadFile;
936
+ getFileDetails: typeof import("./src/utils").getFileDetails;
937
+ getFileType: typeof import("./src/utils").getFileType;
938
+ getDetail: typeof import("./src/utils").getDetail;
927
939
  ChatAdd: import("vue").DefineComponent<{
928
940
  title: {
929
941
  type: StringConstructor;
@@ -1021,6 +1033,7 @@ declare const IhoChat: SFCWithInstall<import("vue").DefineComponent<{
1021
1033
  remark: import("vue").Ref<string>;
1022
1034
  currentTab: import("vue").Ref<import("../../shared/types").AnyObject[]>;
1023
1035
  breadcrumbList: import("vue").Ref<import("../../shared/types").AnyObject[]>;
1036
+ breadcrumbRef: import("vue").Ref<any>;
1024
1037
  userList: import("vue").Ref<import("../../shared/types").AnyObject[]>;
1025
1038
  handleInput: () => void;
1026
1039
  _disabledIds: import("vue").ComputedRef<any[]>;
@@ -1029,18 +1042,21 @@ declare const IhoChat: SFCWithInstall<import("vue").DefineComponent<{
1029
1042
  name: any;
1030
1043
  avatar: any;
1031
1044
  chatType: any;
1045
+ roleInfo: any;
1032
1046
  }[]>;
1033
1047
  friends: import("vue").ComputedRef<{
1034
1048
  id: any;
1035
1049
  name: any;
1036
1050
  avatar: any;
1037
1051
  chatType: any;
1052
+ roleInfo: any;
1038
1053
  }[]>;
1039
1054
  groups: import("vue").ComputedRef<{
1040
1055
  id: any;
1041
1056
  name: any;
1042
1057
  avatar: any;
1043
1058
  chatType: any;
1059
+ roleInfo: any;
1044
1060
  }[]>;
1045
1061
  checkedIds: import("vue").ComputedRef<any[]>;
1046
1062
  btnDisabled: import("vue").ComputedRef<boolean>;
@@ -1049,6 +1065,7 @@ declare const IhoChat: SFCWithInstall<import("vue").DefineComponent<{
1049
1065
  currentTabKey: import("vue").ComputedRef<any>;
1050
1066
  showAllCheckbox: import("vue").ComputedRef<boolean>;
1051
1067
  getOrgList: () => Promise<void>;
1068
+ handleSearchInput: () => void;
1052
1069
  setUserTotal: (tree: import("../../shared/types").AnyObject[]) => void;
1053
1070
  getDisabled: (id: string | number) => boolean;
1054
1071
  handleClickCheckbox: (option: import("../../shared/types").AnyObject) => Promise<void>;
@@ -1078,6 +1095,8 @@ declare const IhoChat: SFCWithInstall<import("vue").DefineComponent<{
1078
1095
  ChevronBackOutline: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, import("vue").EmitsOptions, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
1079
1096
  ChevronForwardOutline: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, import("vue").EmitsOptions, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
1080
1097
  last: <T>(array: import("lodash").List<T> | null | undefined) => T | undefined;
1098
+ isDoctorRole: typeof import("./src/utils").isDoctorRole;
1099
+ getRoleName: typeof import("./src/utils").getRoleName;
1081
1100
  }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "comfirm"[], "comfirm", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
1082
1101
  title: {
1083
1102
  type: StringConstructor;
@@ -1166,6 +1185,7 @@ declare const IhoChat: SFCWithInstall<import("vue").DefineComponent<{
1166
1185
  };
1167
1186
  isForward: boolean;
1168
1187
  };
1188
+ cssVars: import("vue").ComputedRef<import("../../shared/types").AnyObject>;
1169
1189
  recordRef: import("vue").Ref<any>;
1170
1190
  recordList: import("vue").Ref<import("../../shared/types").AnyObject[]>;
1171
1191
  keyword: import("vue").Ref<any>;
@@ -1190,10 +1210,13 @@ declare const IhoChat: SFCWithInstall<import("vue").DefineComponent<{
1190
1210
  NModal: any;
1191
1211
  NTag: any;
1192
1212
  NInput: any;
1213
+ NIcon: any;
1193
1214
  NSelect: any;
1194
1215
  NAvatar: any;
1195
1216
  NPopover: any;
1196
1217
  NInputGroup: any;
1218
+ CallOutline: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, import("vue").EmitsOptions, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
1219
+ VideocamOutline: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, import("vue").EmitsOptions, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
1197
1220
  DatePicker: SFCWithInstall<import("vue").DefineComponent<{
1198
1221
  updateUnchangedValue: {
1199
1222
  type: BooleanConstructor;
@@ -1323,12 +1346,78 @@ declare const IhoChat: SFCWithInstall<import("vue").DefineComponent<{
1323
1346
  to: string | false | HTMLElement;
1324
1347
  holidays: Date[];
1325
1348
  }>>;
1349
+ isArray: {
1350
+ (value?: any): value is any[];
1351
+ <T_1>(value?: any): value is any[];
1352
+ };
1326
1353
  formatTime: typeof import("./src/utils").formatTime;
1354
+ isDoctorRole: typeof import("./src/utils").isDoctorRole;
1355
+ getRoleName: typeof import("./src/utils").getRoleName;
1356
+ getFileDetails: typeof import("./src/utils").getFileDetails;
1357
+ getFileType: typeof import("./src/utils").getFileType;
1358
+ getDetail: typeof import("./src/utils").getDetail;
1359
+ showAudioAndVideoRecord: typeof import("./src/utils").showAudioAndVideoRecord;
1360
+ getForwardTitle: typeof import("./src/utils").getForwardTitle;
1361
+ simplifyMessage: typeof import("./src/utils").simplifyMessage;
1327
1362
  MESSAGE_TYPE: typeof import("./src/constants").MESSAGE_TYPE;
1328
1363
  emojis: {
1329
1364
  default: string[][];
1330
1365
  findEmoji(name: string): any;
1331
1366
  };
1367
+ MessageEvent: import("vue").DefineComponent<{
1368
+ data: {
1369
+ type: import("vue").PropType<import("../../shared/types").AnyObject>;
1370
+ required: true;
1371
+ };
1372
+ }, {
1373
+ props: Readonly<import("@vue/shared").LooseRequired<Readonly<import("vue").ExtractPropTypes<{
1374
+ data: {
1375
+ type: import("vue").PropType<import("../../shared/types").AnyObject>;
1376
+ required: true;
1377
+ };
1378
+ }>> & {}>>;
1379
+ state: {
1380
+ orgId: string | number;
1381
+ currentSessionItem: import("../../shared/types").AnyObject;
1382
+ id: string;
1383
+ userInfo: import("../../shared/types").AnyObject;
1384
+ msgList: import("../../shared/types").AnyObject[];
1385
+ currentMsg: import("../../shared/types").AnyObject;
1386
+ isAppendMsg: boolean;
1387
+ sessionList: import("../../shared/types").AnyObject[];
1388
+ isChangeSession: boolean;
1389
+ updateSessionItem: import("../../shared/types").AnyObject;
1390
+ isUpdateSession: boolean;
1391
+ currentReferenceMsg: import("../../shared/types").AnyObject | null;
1392
+ currentReEditMsg: import("../../shared/types").AnyObject | null;
1393
+ showVideo: boolean;
1394
+ currentAVMsg: import("../../shared/types").AnyObject;
1395
+ currentGroupUser: import("../../shared/types").AnyObject[];
1396
+ showMultipleVideo: boolean;
1397
+ userDetail: {
1398
+ show: boolean;
1399
+ position: {
1400
+ x: number;
1401
+ y: number;
1402
+ };
1403
+ userId: string;
1404
+ info: import("../../shared/types").AnyObject | null;
1405
+ };
1406
+ isForward: boolean;
1407
+ };
1408
+ setUserDetail: (event: MouseEvent, userDetail: import("../../shared/types").AnyObject) => void;
1409
+ inviter: import("vue").Ref<any>;
1410
+ invitee: import("vue").Ref<any[]>;
1411
+ isValidJSON: (str: string) => boolean;
1412
+ getTask: (_id: string | number, arrRes: import("../../shared/types").AnyObject[]) => () => Promise<unknown>;
1413
+ getEventContent: (data: import("../../shared/types").AnyObject) => Promise<void>;
1414
+ NButton: any;
1415
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
1416
+ data: {
1417
+ type: import("vue").PropType<import("../../shared/types").AnyObject>;
1418
+ required: true;
1419
+ };
1420
+ }>>, {}>;
1332
1421
  }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
1333
1422
  visible: {
1334
1423
  type: BooleanConstructor;
@@ -1433,6 +1522,7 @@ declare const IhoChat: SFCWithInstall<import("vue").DefineComponent<{
1433
1522
  remark: import("vue").Ref<string>;
1434
1523
  currentTab: import("vue").Ref<import("../../shared/types").AnyObject[]>;
1435
1524
  breadcrumbList: import("vue").Ref<import("../../shared/types").AnyObject[]>;
1525
+ breadcrumbRef: import("vue").Ref<any>;
1436
1526
  userList: import("vue").Ref<import("../../shared/types").AnyObject[]>;
1437
1527
  handleInput: () => void;
1438
1528
  _disabledIds: import("vue").ComputedRef<any[]>;
@@ -1441,18 +1531,21 @@ declare const IhoChat: SFCWithInstall<import("vue").DefineComponent<{
1441
1531
  name: any;
1442
1532
  avatar: any;
1443
1533
  chatType: any;
1534
+ roleInfo: any;
1444
1535
  }[]>;
1445
1536
  friends: import("vue").ComputedRef<{
1446
1537
  id: any;
1447
1538
  name: any;
1448
1539
  avatar: any;
1449
1540
  chatType: any;
1541
+ roleInfo: any;
1450
1542
  }[]>;
1451
1543
  groups: import("vue").ComputedRef<{
1452
1544
  id: any;
1453
1545
  name: any;
1454
1546
  avatar: any;
1455
1547
  chatType: any;
1548
+ roleInfo: any;
1456
1549
  }[]>;
1457
1550
  checkedIds: import("vue").ComputedRef<any[]>;
1458
1551
  btnDisabled: import("vue").ComputedRef<boolean>;
@@ -1461,6 +1554,7 @@ declare const IhoChat: SFCWithInstall<import("vue").DefineComponent<{
1461
1554
  currentTabKey: import("vue").ComputedRef<any>;
1462
1555
  showAllCheckbox: import("vue").ComputedRef<boolean>;
1463
1556
  getOrgList: () => Promise<void>;
1557
+ handleSearchInput: () => void;
1464
1558
  setUserTotal: (tree: import("../../shared/types").AnyObject[]) => void;
1465
1559
  getDisabled: (id: string | number) => boolean;
1466
1560
  handleClickCheckbox: (option: import("../../shared/types").AnyObject) => Promise<void>;
@@ -1490,6 +1584,8 @@ declare const IhoChat: SFCWithInstall<import("vue").DefineComponent<{
1490
1584
  ChevronBackOutline: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, import("vue").EmitsOptions, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
1491
1585
  ChevronForwardOutline: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, import("vue").EmitsOptions, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
1492
1586
  last: <T>(array: import("lodash").List<T> | null | undefined) => T | undefined;
1587
+ isDoctorRole: typeof import("./src/utils").isDoctorRole;
1588
+ getRoleName: typeof import("./src/utils").getRoleName;
1493
1589
  }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "comfirm"[], "comfirm", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
1494
1590
  title: {
1495
1591
  type: StringConstructor;
@@ -1594,6 +1690,7 @@ declare const IhoChat: SFCWithInstall<import("vue").DefineComponent<{
1594
1690
  renderToolbar: ({ nodes }: import("naive-ui").ImageRenderToolbarProps) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
1595
1691
  [key: string]: any;
1596
1692
  }>[];
1693
+ formatImage: (obj: string | import("../../shared/types").AnyObject, type: string) => any;
1597
1694
  getHistoryRecord: () => Promise<void>;
1598
1695
  handleSelectLabel: (event: MouseEvent, msgId: string) => void;
1599
1696
  handleContextmenu: (event: MouseEvent, msgId: string) => Promise<void>;
@@ -1798,17 +1895,86 @@ declare const IhoChat: SFCWithInstall<import("vue").DefineComponent<{
1798
1895
  };
1799
1896
  isForward: boolean;
1800
1897
  };
1898
+ cssVars: import("vue").ComputedRef<import("../../shared/types").AnyObject>;
1801
1899
  msgItem: import("vue").ComputedRef<import("../../shared/types").AnyObject>;
1802
1900
  msgList: import("vue").ComputedRef<any>;
1803
1901
  NModal: any;
1804
1902
  NAvatar: any;
1903
+ NIcon: any;
1904
+ isArray: {
1905
+ (value?: any): value is any[];
1906
+ <T_1>(value?: any): value is any[];
1907
+ };
1805
1908
  formatTime: typeof import("./src/utils").formatTime;
1806
1909
  getForwardTitle: typeof import("./src/utils").getForwardTitle;
1910
+ isDoctorRole: typeof import("./src/utils").isDoctorRole;
1911
+ getRoleName: typeof import("./src/utils").getRoleName;
1912
+ getFileDetails: typeof import("./src/utils").getFileDetails;
1913
+ getFileType: typeof import("./src/utils").getFileType;
1914
+ getDetail: typeof import("./src/utils").getDetail;
1915
+ showAudioAndVideoRecord: typeof import("./src/utils").showAudioAndVideoRecord;
1916
+ simplifyMessage: typeof import("./src/utils").simplifyMessage;
1807
1917
  MESSAGE_TYPE: typeof import("./src/constants").MESSAGE_TYPE;
1808
1918
  emojis: {
1809
1919
  default: string[][];
1810
1920
  findEmoji(name: string): any;
1811
1921
  };
1922
+ MessageEvent: import("vue").DefineComponent<{
1923
+ data: {
1924
+ type: import("vue").PropType<import("../../shared/types").AnyObject>;
1925
+ required: true;
1926
+ };
1927
+ }, {
1928
+ props: Readonly<import("@vue/shared").LooseRequired<Readonly<import("vue").ExtractPropTypes<{
1929
+ data: {
1930
+ type: import("vue").PropType<import("../../shared/types").AnyObject>;
1931
+ required: true;
1932
+ };
1933
+ }>> & {}>>;
1934
+ state: {
1935
+ orgId: string | number;
1936
+ currentSessionItem: import("../../shared/types").AnyObject;
1937
+ id: string;
1938
+ userInfo: import("../../shared/types").AnyObject;
1939
+ msgList: import("../../shared/types").AnyObject[];
1940
+ currentMsg: import("../../shared/types").AnyObject;
1941
+ isAppendMsg: boolean;
1942
+ sessionList: import("../../shared/types").AnyObject[];
1943
+ isChangeSession: boolean;
1944
+ updateSessionItem: import("../../shared/types").AnyObject;
1945
+ isUpdateSession: boolean;
1946
+ currentReferenceMsg: import("../../shared/types").AnyObject | null;
1947
+ currentReEditMsg: import("../../shared/types").AnyObject | null;
1948
+ showVideo: boolean;
1949
+ currentAVMsg: import("../../shared/types").AnyObject;
1950
+ currentGroupUser: import("../../shared/types").AnyObject[];
1951
+ showMultipleVideo: boolean;
1952
+ userDetail: {
1953
+ show: boolean;
1954
+ position: {
1955
+ x: number;
1956
+ y: number;
1957
+ };
1958
+ userId: string;
1959
+ info: import("../../shared/types").AnyObject | null;
1960
+ };
1961
+ isForward: boolean;
1962
+ };
1963
+ setUserDetail: (event: MouseEvent, userDetail: import("../../shared/types").AnyObject) => void;
1964
+ inviter: import("vue").Ref<any>;
1965
+ invitee: import("vue").Ref<any[]>;
1966
+ isValidJSON: (str: string) => boolean;
1967
+ getTask: (_id: string | number, arrRes: import("../../shared/types").AnyObject[]) => () => Promise<unknown>;
1968
+ getEventContent: (data: import("../../shared/types").AnyObject) => Promise<void>;
1969
+ NButton: any;
1970
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
1971
+ data: {
1972
+ type: import("vue").PropType<import("../../shared/types").AnyObject>;
1973
+ required: true;
1974
+ };
1975
+ }>>, {}>;
1976
+ CallOutline: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, import("vue").EmitsOptions, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
1977
+ VideocamOutline: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, import("vue").EmitsOptions, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
1812
1978
  }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
1813
1979
  id: {
1814
1980
  type: StringConstructor;
@@ -2005,6 +2171,7 @@ declare const IhoChat: SFCWithInstall<import("vue").DefineComponent<{
2005
2171
  remark: import("vue").Ref<string>;
2006
2172
  currentTab: import("vue").Ref<import("../../shared/types").AnyObject[]>;
2007
2173
  breadcrumbList: import("vue").Ref<import("../../shared/types").AnyObject[]>;
2174
+ breadcrumbRef: import("vue").Ref<any>;
2008
2175
  userList: import("vue").Ref<import("../../shared/types").AnyObject[]>;
2009
2176
  handleInput: () => void;
2010
2177
  _disabledIds: import("vue").ComputedRef<any[]>;
@@ -2013,18 +2180,21 @@ declare const IhoChat: SFCWithInstall<import("vue").DefineComponent<{
2013
2180
  name: any;
2014
2181
  avatar: any;
2015
2182
  chatType: any;
2183
+ roleInfo: any;
2016
2184
  }[]>;
2017
2185
  friends: import("vue").ComputedRef<{
2018
2186
  id: any;
2019
2187
  name: any;
2020
2188
  avatar: any;
2021
2189
  chatType: any;
2190
+ roleInfo: any;
2022
2191
  }[]>;
2023
2192
  groups: import("vue").ComputedRef<{
2024
2193
  id: any;
2025
2194
  name: any;
2026
2195
  avatar: any;
2027
2196
  chatType: any;
2197
+ roleInfo: any;
2028
2198
  }[]>;
2029
2199
  checkedIds: import("vue").ComputedRef<any[]>;
2030
2200
  btnDisabled: import("vue").ComputedRef<boolean>;
@@ -2033,6 +2203,7 @@ declare const IhoChat: SFCWithInstall<import("vue").DefineComponent<{
2033
2203
  currentTabKey: import("vue").ComputedRef<any>;
2034
2204
  showAllCheckbox: import("vue").ComputedRef<boolean>;
2035
2205
  getOrgList: () => Promise<void>;
2206
+ handleSearchInput: () => void;
2036
2207
  setUserTotal: (tree: import("../../shared/types").AnyObject[]) => void;
2037
2208
  getDisabled: (id: string | number) => boolean;
2038
2209
  handleClickCheckbox: (option: import("../../shared/types").AnyObject) => Promise<void>;
@@ -2062,6 +2233,8 @@ declare const IhoChat: SFCWithInstall<import("vue").DefineComponent<{
2062
2233
  ChevronBackOutline: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, import("vue").EmitsOptions, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
2063
2234
  ChevronForwardOutline: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, import("vue").EmitsOptions, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
2064
2235
  last: <T>(array: import("lodash").List<T> | null | undefined) => T | undefined;
2236
+ isDoctorRole: typeof import("./src/utils").isDoctorRole;
2237
+ getRoleName: typeof import("./src/utils").getRoleName;
2065
2238
  }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "comfirm"[], "comfirm", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
2066
2239
  title: {
2067
2240
  type: StringConstructor;
@@ -2277,6 +2450,7 @@ declare const IhoChat: SFCWithInstall<import("vue").DefineComponent<{
2277
2450
  remark: import("vue").Ref<string>;
2278
2451
  currentTab: import("vue").Ref<import("../../shared/types").AnyObject[]>;
2279
2452
  breadcrumbList: import("vue").Ref<import("../../shared/types").AnyObject[]>;
2453
+ breadcrumbRef: import("vue").Ref<any>;
2280
2454
  userList: import("vue").Ref<import("../../shared/types").AnyObject[]>;
2281
2455
  handleInput: () => void;
2282
2456
  _disabledIds: import("vue").ComputedRef<any[]>;
@@ -2285,18 +2459,21 @@ declare const IhoChat: SFCWithInstall<import("vue").DefineComponent<{
2285
2459
  name: any;
2286
2460
  avatar: any;
2287
2461
  chatType: any;
2462
+ roleInfo: any;
2288
2463
  }[]>;
2289
2464
  friends: import("vue").ComputedRef<{
2290
2465
  id: any;
2291
2466
  name: any;
2292
2467
  avatar: any;
2293
2468
  chatType: any;
2469
+ roleInfo: any;
2294
2470
  }[]>;
2295
2471
  groups: import("vue").ComputedRef<{
2296
2472
  id: any;
2297
2473
  name: any;
2298
2474
  avatar: any;
2299
2475
  chatType: any;
2476
+ roleInfo: any;
2300
2477
  }[]>;
2301
2478
  checkedIds: import("vue").ComputedRef<any[]>;
2302
2479
  btnDisabled: import("vue").ComputedRef<boolean>;
@@ -2305,6 +2482,7 @@ declare const IhoChat: SFCWithInstall<import("vue").DefineComponent<{
2305
2482
  currentTabKey: import("vue").ComputedRef<any>;
2306
2483
  showAllCheckbox: import("vue").ComputedRef<boolean>;
2307
2484
  getOrgList: () => Promise<void>;
2485
+ handleSearchInput: () => void;
2308
2486
  setUserTotal: (tree: import("../../shared/types").AnyObject[]) => void;
2309
2487
  getDisabled: (id: string | number) => boolean;
2310
2488
  handleClickCheckbox: (option: import("../../shared/types").AnyObject) => Promise<void>;
@@ -2334,6 +2512,8 @@ declare const IhoChat: SFCWithInstall<import("vue").DefineComponent<{
2334
2512
  ChevronBackOutline: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, import("vue").EmitsOptions, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
2335
2513
  ChevronForwardOutline: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, import("vue").EmitsOptions, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
2336
2514
  last: <T>(array: import("lodash").List<T> | null | undefined) => T | undefined;
2515
+ isDoctorRole: typeof import("./src/utils").isDoctorRole;
2516
+ getRoleName: typeof import("./src/utils").getRoleName;
2337
2517
  }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "comfirm"[], "comfirm", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
2338
2518
  title: {
2339
2519
  type: StringConstructor;
@@ -2379,7 +2559,8 @@ declare const IhoChat: SFCWithInstall<import("vue").DefineComponent<{
2379
2559
  simplifyMessage: typeof import("./src/utils").simplifyMessage;
2380
2560
  }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
2381
2561
  ChatSearch: import("vue").DefineComponent<{}, {
2382
- listRef: import("vue").Ref<any>;
2562
+ userListRef: import("vue").Ref<any>;
2563
+ patientListRef: import("vue").Ref<any>;
2383
2564
  inputRef: import("vue").Ref<any>;
2384
2565
  showSearch: import("vue").Ref<boolean>;
2385
2566
  keyword: import("vue").Ref<string>;
@@ -2416,14 +2597,19 @@ declare const IhoChat: SFCWithInstall<import("vue").DefineComponent<{
2416
2597
  openSession: (session: string | import("../../shared/types").AnyObject) => Promise<void>;
2417
2598
  userList: import("vue").Ref<import("../../shared/types").AnyObject[]>;
2418
2599
  handleInput: () => void;
2600
+ patientList: import("vue").Ref<import("../../shared/types").AnyObject[]>;
2601
+ handlePatientInput: () => void;
2419
2602
  currentTabValue: import("vue").Ref<string>;
2420
2603
  currentIndex: import("vue").Ref<number>;
2421
2604
  groupList: import("vue").ComputedRef<import("../../shared/types").AnyObject[]>;
2422
- showNoData: import("vue").ComputedRef<boolean>;
2605
+ showNoUserData: import("vue").ComputedRef<boolean>;
2606
+ showNoPatientData: import("vue").ComputedRef<boolean>;
2423
2607
  showAllNoData: import("vue").ComputedRef<boolean>;
2424
2608
  showGroupNoData: import("vue").ComputedRef<boolean>;
2609
+ userStartIndex: import("vue").ComputedRef<number>;
2425
2610
  groupStartIndex: import("vue").ComputedRef<number>;
2426
2611
  currentList: import("vue").ComputedRef<import("../../shared/types").AnyObject[]>;
2612
+ handleSearchInput: () => void;
2427
2613
  handleKeyDown: (event: KeyboardEvent) => void;
2428
2614
  addSession: (id: string) => Promise<void>;
2429
2615
  handleTabChange: () => void;
@@ -2604,6 +2790,7 @@ declare const IhoChat: SFCWithInstall<import("vue").DefineComponent<{
2604
2790
  remark: import("vue").Ref<string>;
2605
2791
  currentTab: import("vue").Ref<import("../../shared/types").AnyObject[]>;
2606
2792
  breadcrumbList: import("vue").Ref<import("../../shared/types").AnyObject[]>;
2793
+ breadcrumbRef: import("vue").Ref<any>;
2607
2794
  userList: import("vue").Ref<import("../../shared/types").AnyObject[]>;
2608
2795
  handleInput: () => void;
2609
2796
  _disabledIds: import("vue").ComputedRef<any[]>;
@@ -2612,18 +2799,21 @@ declare const IhoChat: SFCWithInstall<import("vue").DefineComponent<{
2612
2799
  name: any;
2613
2800
  avatar: any;
2614
2801
  chatType: any;
2802
+ roleInfo: any;
2615
2803
  }[]>;
2616
2804
  friends: import("vue").ComputedRef<{
2617
2805
  id: any;
2618
2806
  name: any;
2619
2807
  avatar: any;
2620
2808
  chatType: any;
2809
+ roleInfo: any;
2621
2810
  }[]>;
2622
2811
  groups: import("vue").ComputedRef<{
2623
2812
  id: any;
2624
2813
  name: any;
2625
2814
  avatar: any;
2626
2815
  chatType: any;
2816
+ roleInfo: any;
2627
2817
  }[]>;
2628
2818
  checkedIds: import("vue").ComputedRef<any[]>;
2629
2819
  btnDisabled: import("vue").ComputedRef<boolean>;
@@ -2632,6 +2822,7 @@ declare const IhoChat: SFCWithInstall<import("vue").DefineComponent<{
2632
2822
  currentTabKey: import("vue").ComputedRef<any>;
2633
2823
  showAllCheckbox: import("vue").ComputedRef<boolean>;
2634
2824
  getOrgList: () => Promise<void>;
2825
+ handleSearchInput: () => void;
2635
2826
  setUserTotal: (tree: import("../../shared/types").AnyObject[]) => void;
2636
2827
  getDisabled: (id: string | number) => boolean;
2637
2828
  handleClickCheckbox: (option: import("../../shared/types").AnyObject) => Promise<void>;
@@ -2661,6 +2852,8 @@ declare const IhoChat: SFCWithInstall<import("vue").DefineComponent<{
2661
2852
  ChevronBackOutline: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, import("vue").EmitsOptions, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
2662
2853
  ChevronForwardOutline: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, import("vue").EmitsOptions, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
2663
2854
  last: <T>(array: import("lodash").List<T> | null | undefined) => T | undefined;
2855
+ isDoctorRole: typeof import("./src/utils").isDoctorRole;
2856
+ getRoleName: typeof import("./src/utils").getRoleName;
2664
2857
  }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "comfirm"[], "comfirm", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
2665
2858
  title: {
2666
2859
  type: StringConstructor;
@@ -2967,6 +3160,7 @@ declare const IhoChat: SFCWithInstall<import("vue").DefineComponent<{
2967
3160
  remark: import("vue").Ref<string>;
2968
3161
  currentTab: import("vue").Ref<import("../../shared/types").AnyObject[]>;
2969
3162
  breadcrumbList: import("vue").Ref<import("../../shared/types").AnyObject[]>;
3163
+ breadcrumbRef: import("vue").Ref<any>;
2970
3164
  userList: import("vue").Ref<import("../../shared/types").AnyObject[]>;
2971
3165
  handleInput: () => void;
2972
3166
  _disabledIds: import("vue").ComputedRef<any[]>;
@@ -2975,18 +3169,21 @@ declare const IhoChat: SFCWithInstall<import("vue").DefineComponent<{
2975
3169
  name: any;
2976
3170
  avatar: any;
2977
3171
  chatType: any;
3172
+ roleInfo: any;
2978
3173
  }[]>;
2979
3174
  friends: import("vue").ComputedRef<{
2980
3175
  id: any;
2981
3176
  name: any;
2982
3177
  avatar: any;
2983
3178
  chatType: any;
3179
+ roleInfo: any;
2984
3180
  }[]>;
2985
3181
  groups: import("vue").ComputedRef<{
2986
3182
  id: any;
2987
3183
  name: any;
2988
3184
  avatar: any;
2989
3185
  chatType: any;
3186
+ roleInfo: any;
2990
3187
  }[]>;
2991
3188
  checkedIds: import("vue").ComputedRef<any[]>;
2992
3189
  btnDisabled: import("vue").ComputedRef<boolean>;
@@ -2995,6 +3192,7 @@ declare const IhoChat: SFCWithInstall<import("vue").DefineComponent<{
2995
3192
  currentTabKey: import("vue").ComputedRef<any>;
2996
3193
  showAllCheckbox: import("vue").ComputedRef<boolean>;
2997
3194
  getOrgList: () => Promise<void>;
3195
+ handleSearchInput: () => void;
2998
3196
  setUserTotal: (tree: import("../../shared/types").AnyObject[]) => void;
2999
3197
  getDisabled: (id: string | number) => boolean;
3000
3198
  handleClickCheckbox: (option: import("../../shared/types").AnyObject) => Promise<void>;
@@ -3024,6 +3222,8 @@ declare const IhoChat: SFCWithInstall<import("vue").DefineComponent<{
3024
3222
  ChevronBackOutline: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, import("vue").EmitsOptions, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
3025
3223
  ChevronForwardOutline: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, import("vue").EmitsOptions, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
3026
3224
  last: <T>(array: import("lodash").List<T> | null | undefined) => T | undefined;
3225
+ isDoctorRole: typeof import("./src/utils").isDoctorRole;
3226
+ getRoleName: typeof import("./src/utils").getRoleName;
3027
3227
  }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "comfirm"[], "comfirm", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
3028
3228
  title: {
3029
3229
  type: StringConstructor;
@@ -3123,6 +3323,8 @@ declare const IhoChat: SFCWithInstall<import("vue").DefineComponent<{
3123
3323
  Close: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, import("vue").EmitsOptions, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
3124
3324
  EyeOutline: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, import("vue").EmitsOptions, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
3125
3325
  EyeOffOutline: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, import("vue").EmitsOptions, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
3326
+ isDoctorRole: typeof import("./src/utils").isDoctorRole;
3327
+ getRoleName: typeof import("./src/utils").getRoleName;
3126
3328
  }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
3127
3329
  }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("template-click" | "unread-message-update" | "session-change" | "session-close")[], "template-click" | "unread-message-update" | "session-change" | "session-close", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
3128
3330
  token: {