tuikit-atomicx-vue3 6.2.0 → 6.2.1

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 (121) hide show
  1. package/dist/_internal/atomicxcore-core.d.ts +8 -8
  2. package/dist/chat-store/composables/useContactStore.js +1 -1
  3. package/dist/chat-store/composables/useConversationGroupStore.js +1 -1
  4. package/dist/chat-store/composables/useConversationListStore.js +1 -1
  5. package/dist/chat-store/composables/useGroupMemberStore.js +1 -1
  6. package/dist/chat-store/composables/useGroupStore.js +1 -1
  7. package/dist/chat-store/composables/useLoginStore.js +1 -1
  8. package/dist/chat-store/composables/useMessageActionStore.js +1 -1
  9. package/dist/chat-store/composables/useMessageInputStore.js +1 -1
  10. package/dist/chat-store/composables/useMessageListStore.js +1 -1
  11. package/dist/chat-store/composables/useSearchStore.js +1 -1
  12. package/dist/chat-store/context/useChatContext.js +1 -1
  13. package/dist/components/ChatSetting/C2CChatSetting/C2CChatSetting.js +1 -1
  14. package/dist/components/ChatSetting/ChatSetting.js +1 -1
  15. package/dist/components/ChatSetting/GroupChatSetting/GroupActions/GroupActions.js +1 -1
  16. package/dist/components/ChatSetting/GroupChatSetting/GroupChatSetting.js +1 -1
  17. package/dist/components/ChatSetting/GroupChatSetting/GroupInfo/GroupInfo.js +1 -1
  18. package/dist/components/ChatSetting/GroupChatSetting/GroupManagement/GroupManagement.js +1 -1
  19. package/dist/components/ChatSetting/GroupChatSetting/GroupMembers/GroupMembers.js +1 -1
  20. package/dist/components/ChatSetting/GroupChatSetting/PersonalSettings/PersonalSettings.js +1 -1
  21. package/dist/components/ChatSetting/i18n/en-US.js +0 -1
  22. package/dist/components/ChatSetting/i18n/zh-CN.js +0 -1
  23. package/dist/components/ContactList/ContactInfo/FriendApplicationInfo/FriendApplicationInfo.js +1 -1
  24. package/dist/components/ContactList/ContactInfo/GroupInfo/GroupInfo.js +1 -1
  25. package/dist/components/ContactList/ContactInfo/SearchGroupInfo/SearchGroupInfo.js +1 -1
  26. package/dist/components/ContactList/ContactList.js +1 -1
  27. package/dist/components/ContactList/ContactListItem/FriendApplicationItem/FriendApplicationItem.js +1 -1
  28. package/dist/components/ConversationList/ConversationActions/ConversationActions.js +1 -1
  29. package/dist/components/ConversationList/ConversationCreate/ConversationCreate.js +1 -1
  30. package/dist/components/ConversationList/ConversationCreate/ConversationGroupTypeInfo/type.js +1 -1
  31. package/dist/components/ConversationList/ConversationList.js +1 -1
  32. package/dist/components/ConversationList/ConversationPreview/ConversationPreviewAbstract.js +1 -1
  33. package/dist/components/ConversationList/ConversationPreview/ConversationPreviewUI.js +1 -1
  34. package/dist/components/ConversationList/ConversationPreview/ConversationPreviewUnread.js +1 -1
  35. package/dist/components/ConversationList/ConversationPreview/utils.js +1 -1
  36. package/dist/components/ConversationList/ConversationSearch/ConversationSearch.js +1 -1
  37. package/dist/components/ConversationList/hooks/useConversationCreate.js +1 -1
  38. package/dist/components/MessageInput/AudioCallPicker/AudioCallPicker.js +1 -1
  39. package/dist/components/MessageInput/QuickConferencePicker/QuickConferencePicker.js +1 -1
  40. package/dist/components/MessageInput/QuotedMessagePreview/index.js +1 -1
  41. package/dist/components/MessageInput/TextEditor/index.js +163 -89
  42. package/dist/components/MessageInput/VideoCallPicker/VideoCallPicker.js +1 -1
  43. package/dist/components/MessageList/Message/AudioMessage/AudioMessage.js +7 -7
  44. package/dist/components/MessageList/Message/CustomMessage/CallMessage/CallMessage.js +1 -1
  45. package/dist/components/MessageList/Message/CustomMessage/CustomMessage.js +20 -20
  46. package/dist/components/MessageList/Message/FileMessage/FileMessage.js +23 -23
  47. package/dist/components/MessageList/Message/GroupTipMessage/index.js +1 -1
  48. package/dist/components/MessageList/Message/ImageMessage/ImageMessage.js +20 -20
  49. package/dist/components/MessageList/Message/Message.vue.d.ts +5 -0
  50. package/dist/components/MessageList/Message/MessageLayout/MessageBubble/MessageBubble.js +1 -1
  51. package/dist/components/MessageList/Message/MessageLayout/MessageLayout.js +110 -100
  52. package/dist/components/MessageList/Message/MessageLayout/MessageLayout.vue.d.ts +5 -0
  53. package/dist/components/MessageList/Message/MessageLayout/MessageMeta/MessageStatusIcon.js +1 -1
  54. package/dist/components/MessageList/Message/RecalledMessage/RecalledMessage.js +1 -1
  55. package/dist/components/MessageList/Message/TextMessage/TextMessage.js +1 -1
  56. package/dist/components/MessageList/Message/VideoMessage/VideoMessage.js +14 -14
  57. package/dist/components/MessageList/Message/index.js +5 -3
  58. package/dist/components/MessageList/MessageList.js +142 -126
  59. package/dist/components/MessageList/MessageList.vue.d.ts +5 -0
  60. package/dist/components/MessageList/i18n/en-US.d.ts +1 -0
  61. package/dist/components/MessageList/i18n/en-US.js +1 -0
  62. package/dist/components/MessageList/i18n/index.d.ts +2 -0
  63. package/dist/components/MessageList/i18n/zh-CN.d.ts +1 -0
  64. package/dist/components/MessageList/i18n/zh-CN.js +1 -0
  65. package/dist/components/MessageList/index.d.ts +18 -0
  66. package/dist/components/Search/Search.js +1 -1
  67. package/dist/components/Search/SearchAdvanced/UserAdvanced/UserAdvanced.js +1 -1
  68. package/dist/components/Search/SearchResults/SearchResultsItem/Conversation/Conversation.js +1 -1
  69. package/dist/components/Search/SearchResults/SearchResultsItem/Message/Message.js +21 -21
  70. package/dist/components/Search/SearchResults/SearchResultsItem/User/User.js +1 -1
  71. package/dist/context/useChatUIState.d.ts +8 -0
  72. package/dist/context/useChatUIState.js +88 -45
  73. package/dist/hooks/useMessageActions.js +1 -1
  74. package/dist/hooks/useOfflinePushInfo/utils.js +1 -1
  75. package/dist/hooks/useReadReceipt/useReadReceipt.js +29 -31
  76. package/dist/{index-BqLIloNy.js → index-DEKODZ4s.js} +2766 -2752
  77. package/dist/index.js +1 -1
  78. package/dist/report/MetricsKey.d.ts +18 -18
  79. package/dist/report/MetricsKey.js +1 -1
  80. package/dist/styles/index.css +1 -1
  81. package/dist/subEntry/chat/chat.js +1 -1
  82. package/dist/subEntry/chat/index.js +1 -1
  83. package/dist/subEntry/live/index.js +1 -1
  84. package/dist/subEntry/room/index.js +1 -1
  85. package/dist/types/chatSetting.js +1 -1
  86. package/dist/types/groupSetting.js +1 -1
  87. package/dist/types/index.js +1 -1
  88. package/dist/types/messageInput.d.ts +2 -2
  89. package/dist/utils/call.js +1 -1
  90. package/dist/utils/chatTypingStatus.d.ts +12 -0
  91. package/dist/utils/chatTypingStatus.js +48 -0
  92. package/dist/utils/conversationDraft.d.ts +10 -0
  93. package/dist/utils/conversationDraft.js +111 -0
  94. package/dist/utils/conversationDraftStorage.d.ts +4 -0
  95. package/dist/utils/conversationDraftStorage.js +84 -0
  96. package/dist/utils/messageInput.d.ts +60 -0
  97. package/dist/utils/messageInput.js +132 -0
  98. package/dist/utils/resolveGroupTipMessage.js +1 -1
  99. package/package.json +2 -2
  100. package/src/components/ChatSetting/i18n/en-US.ts +0 -1
  101. package/src/components/ChatSetting/i18n/zh-CN.ts +0 -1
  102. package/src/components/MessageInput/TextEditor/TextEditor.vue +121 -25
  103. package/src/components/MessageList/Message/AudioMessage/AudioMessage.vue +1 -1
  104. package/src/components/MessageList/Message/CustomMessage/CustomMessage.vue +4 -10
  105. package/src/components/MessageList/Message/FileMessage/FileMessage.vue +2 -2
  106. package/src/components/MessageList/Message/ImageMessage/ImageMessage.vue +2 -2
  107. package/src/components/MessageList/Message/Message.vue +4 -0
  108. package/src/components/MessageList/Message/MessageLayout/MessageLayout.vue +14 -2
  109. package/src/components/MessageList/Message/VideoMessage/VideoMessage.vue +2 -2
  110. package/src/components/MessageList/MessageList.vue +88 -30
  111. package/src/components/MessageList/i18n/en-US.ts +1 -0
  112. package/src/components/MessageList/i18n/zh-CN.ts +1 -0
  113. package/src/components/Search/SearchResults/SearchResultsItem/Message/Message.vue +4 -4
  114. package/src/context/useChatUIState.ts +91 -3
  115. package/src/hooks/useReadReceipt/useReadReceipt.ts +3 -2
  116. package/src/report/MetricsKey.ts +18 -19
  117. package/src/types/messageInput.ts +2 -2
  118. package/src/utils/chatTypingStatus.ts +64 -0
  119. package/src/utils/conversationDraft.ts +189 -0
  120. package/src/utils/conversationDraftStorage.ts +148 -0
  121. package/src/utils/messageInput.ts +186 -0
@@ -213,28 +213,28 @@ interface ImageMessagePayload {
213
213
  originalImageHeight: number;
214
214
  originalImageSize: number;
215
215
  originalImagePath?: string;
216
- originalImageUrl?: string;
216
+ originalImageURL?: string;
217
217
  largeImagePath?: string;
218
- largeImageUrl?: string;
218
+ largeImageURL?: string;
219
219
  thumbImagePath?: string;
220
- thumbImageUrl?: string;
220
+ thumbImageURL?: string;
221
221
  }
222
222
  interface VideoMessagePayload {
223
223
  videoSnapshotWidth: number;
224
224
  videoSnapshotHeight: number;
225
225
  videoSnapshotPath?: string;
226
- videoSnapshotUrl?: string;
226
+ videoSnapshotURL?: string;
227
227
  videoType?: string;
228
228
  videoSize: number;
229
229
  videoDuration: number;
230
230
  videoPath?: string;
231
- videoUrl?: string;
231
+ videoURL?: string;
232
232
  }
233
233
  interface AudioMessagePayload {
234
234
  audioSize: number;
235
235
  audioDuration: number;
236
236
  audioPath?: string;
237
- audioUrl?: string;
237
+ audioURL?: string;
238
238
  asrLanguage?: string;
239
239
  asrText?: string;
240
240
  }
@@ -242,7 +242,7 @@ interface FileMessagePayload {
242
242
  fileName?: string;
243
243
  fileSize: number;
244
244
  filePath?: string;
245
- fileUrl?: string;
245
+ fileURL?: string;
246
246
  }
247
247
  interface FaceMessagePayload {
248
248
  faceIndex: number;
@@ -712,7 +712,7 @@ type SendMessagePayload = {
712
712
  type: 'customMessage';
713
713
  customData: string;
714
714
  description?: string;
715
- extension?: string;
715
+ extensionInfo?: string;
716
716
  } | {
717
717
  type: 'imageMessage';
718
718
  file: File | HTMLInputElement;
@@ -1,4 +1,4 @@
1
- import { m as e } from "../../index-BqLIloNy.js";
1
+ import { m as e } from "../../index-DEKODZ4s.js";
2
2
  import { createSingletonComposable as o } from "../internal/createSingletonComposable.js";
3
3
  const t = o(
4
4
  e,
@@ -1,4 +1,4 @@
1
- import { n as r } from "../../index-BqLIloNy.js";
1
+ import { n as r } from "../../index-DEKODZ4s.js";
2
2
  import { createSingletonComposable as e } from "../internal/createSingletonComposable.js";
3
3
  const o = e(
4
4
  r,
@@ -1,4 +1,4 @@
1
- import { o as t } from "../../index-BqLIloNy.js";
1
+ import { o as t } from "../../index-DEKODZ4s.js";
2
2
  import { createInstanceComposable as n } from "../internal/createInstanceComposable.js";
3
3
  const o = n(
4
4
  (e) => t.create(e),
@@ -1,4 +1,4 @@
1
- import { p as o } from "../../index-BqLIloNy.js";
1
+ import { p as o } from "../../index-DEKODZ4s.js";
2
2
  import { createInstanceComposable as t } from "../internal/createInstanceComposable.js";
3
3
  const r = t(
4
4
  (e) => {
@@ -1,4 +1,4 @@
1
- import { q as t } from "../../index-BqLIloNy.js";
1
+ import { q as t } from "../../index-DEKODZ4s.js";
2
2
  import { createSingletonComposable as e } from "../internal/createSingletonComposable.js";
3
3
  const o = e(
4
4
  t,
@@ -1,4 +1,4 @@
1
- import { L as t } from "../../index-BqLIloNy.js";
1
+ import { L as t } from "../../index-DEKODZ4s.js";
2
2
  import { createSingletonComposable as e } from "../internal/createSingletonComposable.js";
3
3
  const o = e(
4
4
  t,
@@ -1,4 +1,4 @@
1
- import { r } from "../../index-BqLIloNy.js";
1
+ import { r } from "../../index-DEKODZ4s.js";
2
2
  import { createInstanceComposable as s } from "../internal/createInstanceComposable.js";
3
3
  const o = s(
4
4
  (e) => {
@@ -1,5 +1,5 @@
1
1
  import { getCurrentScope as o, onScopeDispose as r, computed as n } from "vue";
2
- import { s as a } from "../../index-BqLIloNy.js";
2
+ import { s as a } from "../../index-DEKODZ4s.js";
3
3
  function s(t) {
4
4
  const e = a.create(t);
5
5
  return o() && r(() => e.destroy()), {
@@ -1,4 +1,4 @@
1
- import { t as a } from "../../index-BqLIloNy.js";
1
+ import { t as a } from "../../index-DEKODZ4s.js";
2
2
  import { createInstanceComposable as t } from "../internal/createInstanceComposable.js";
3
3
  const s = t(
4
4
  (e) => {
@@ -1,4 +1,4 @@
1
- import { u as r } from "../../index-BqLIloNy.js";
1
+ import { u as r } from "../../index-DEKODZ4s.js";
2
2
  import { createInstanceComposable as o } from "../internal/createInstanceComposable.js";
3
3
  const e = o(
4
4
  () => r.create(),
@@ -1,5 +1,5 @@
1
1
  import { shallowRef as r, onScopeDispose as i, computed as a } from "vue";
2
- import { v as l } from "../../index-BqLIloNy.js";
2
+ import { v as l } from "../../index-DEKODZ4s.js";
3
3
  function d(t = "default") {
4
4
  const o = l(t), e = o.getSnapshot(), s = r(e), n = o.subscribe(() => {
5
5
  s.value = o.getSnapshot();
@@ -1,5 +1,5 @@
1
1
  import { defineComponent as H, inject as j, computed as s, ref as K, openBlock as o, createElementBlock as y, Fragment as L, createVNode as i, unref as t, createElementVNode as l, toDisplayString as f, createBlock as g, createCommentVNode as c, withCtx as D, createTextVNode as W } from "vue";
2
- import { R as k } from "../../../index-BqLIloNy.js";
2
+ import { R as k } from "../../../index-DEKODZ4s.js";
3
3
  import { useUIKit as q, IconCopy as z, TUIButton as A, TUIDialog as G, TUIToast as m } from "@tencentcloud/uikit-base-component-vue3";
4
4
  import u from "../Divider/Divider.js";
5
5
  import p from "../SettingItem/SettingItem.js";
@@ -1,5 +1,5 @@
1
1
  import { defineComponent as v, provide as f, computed as l, unref as t, openBlock as e, createElementBlock as p, createElementVNode as _, toDisplayString as g, createVNode as k, createBlock as m, createCommentVNode as y } from "vue";
2
- import { j as s } from "../../index-BqLIloNy.js";
2
+ import { j as s } from "../../index-DEKODZ4s.js";
3
3
  import { useUIKit as S, IconClose1 as x } from "@tencentcloud/uikit-base-component-vue3";
4
4
  import B from "./C2CChatSetting/C2CChatSetting.js";
5
5
  import G from "./GroupChatSetting/GroupChatSetting.js";
@@ -1,5 +1,5 @@
1
1
  import { defineComponent as K, inject as $, computed as s, ref as c, openBlock as n, createElementBlock as J, createBlock as v, unref as r, withCtx as l, createTextVNode as y, toDisplayString as f, createCommentVNode as d, createVNode as g, createElementVNode as q, normalizeClass as X } from "vue";
2
- import { L as Y } from "../../../../index-BqLIloNy.js";
2
+ import { L as Y } from "../../../../index-DEKODZ4s.js";
3
3
  import { useUIKit as Z, TUIButton as S, TUIDialog as h, TUIToast as o } from "@tencentcloud/uikit-base-component-vue3";
4
4
  import { hasGroupPermission as b, GroupPermission as T } from "../../../../types/groupSetting.js";
5
5
  import { UserPicker as ee } from "../../../UserPicker/index.js";
@@ -1,5 +1,5 @@
1
1
  import { defineComponent as he, inject as Ce, onMounted as ye, computed as u, ref as m, watch as U, provide as Se, openBlock as g, createElementBlock as x, Fragment as E, createVNode as l, unref as a, createBlock as k, normalizeClass as ke, withCtx as W, createElementVNode as M, toDisplayString as J, createCommentVNode as I } from "vue";
2
- import { L as Ie, m as be, e as w, h as b, g as L } from "../../../index-BqLIloNy.js";
2
+ import { L as Ie, m as be, e as w, h as b, g as L } from "../../../index-DEKODZ4s.js";
3
3
  import { useUIKit as De, IconCopy as Ge, TUIDialog as Re, TUIToast as s } from "@tencentcloud/uikit-base-component-vue3";
4
4
  import { View as Ue } from "../../../baseComp/View/index.js";
5
5
  import { hasGroupPermission as N, GroupPermission as O } from "../../../types/groupSetting.js";
@@ -1,5 +1,5 @@
1
1
  import { defineComponent as A, inject as L, computed as n, openBlock as v, createBlock as C, unref as o, normalizeClass as M, withCtx as u, createVNode as r, createTextVNode as y, toDisplayString as S, createCommentVNode as z } from "vue";
2
- import { h as c } from "../../../../index-BqLIloNy.js";
2
+ import { h as c } from "../../../../index-DEKODZ4s.js";
3
3
  import { useUIKit as F, IconCopy as B, TUIToast as s } from "@tencentcloud/uikit-base-component-vue3";
4
4
  import { View as l } from "../../../../baseComp/View/index.js";
5
5
  import { hasGroupPermission as I, GroupPermission as G } from "../../../../types/groupSetting.js";
@@ -1,5 +1,5 @@
1
1
  import { defineComponent as X, inject as L, computed as u, ref as p, openBlock as _, createBlock as f, unref as r, normalizeClass as Y, withCtx as k, createVNode as g, createElementVNode as x, toDisplayString as G, createCommentVNode as h } from "vue";
2
- import { L as Z, g as o } from "../../../../index-BqLIloNy.js";
2
+ import { L as Z, g as o } from "../../../../index-DEKODZ4s.js";
3
3
  import { useUIKit as ee, IconArrowStrokeBack as te, TUIDialog as ae, TUIToast as C } from "@tencentcloud/uikit-base-component-vue3";
4
4
  import { View as y } from "../../../../baseComp/View/index.js";
5
5
  import { GroupPermission as D, hasGroupPermission as re } from "../../../../types/groupSetting.js";
@@ -1,5 +1,5 @@
1
1
  import { defineComponent as X, inject as q, computed as n, ref as y, onMounted as J, onUnmounted as Q, watch as Y, openBlock as a, createElementBlock as u, normalizeClass as h, createElementVNode as r, createTextVNode as Z, toDisplayString as g, createCommentVNode as c, createBlock as ee, unref as m, Fragment as D, renderList as G, withDirectives as te, createVNode as R, vShow as oe } from "vue";
2
- import { g as B } from "../../../../index-BqLIloNy.js";
2
+ import { g as B } from "../../../../index-DEKODZ4s.js";
3
3
  import { useUIKit as ne, IconArrowStrokeRight as se, IconPlus as le, IconMinus as re } from "@tencentcloud/uikit-base-component-vue3";
4
4
  import { hasGroupPermission as ae, GroupPermission as ue } from "../../../../types/groupSetting.js";
5
5
  import ie from "../../../Avatar/Avatar.js";
@@ -1,5 +1,5 @@
1
1
  import { defineComponent as y, inject as k, computed as d, openBlock as i, createElementBlock as w, createBlock as l, unref as o, createCommentVNode as c, normalizeClass as B } from "vue";
2
- import { R as u } from "../../../../index-BqLIloNy.js";
2
+ import { R as u } from "../../../../index-DEKODZ4s.js";
3
3
  import { useUIKit as I } from "@tencentcloud/uikit-base-component-vue3";
4
4
  import P from "../../Divider/Divider.js";
5
5
  import m from "../../SettingItem/SettingItem.js";
@@ -91,7 +91,6 @@ const e = {
91
91
  quit_group_success: "Successfully left the group",
92
92
  quit_group_failed: "Failed to leave the group",
93
93
  dismiss_group_failed: "Failed to dismiss the group",
94
- dismiss_group_failed: "Failed to dismiss the group",
95
94
  // GroupManagement
96
95
  group_management: "Group Management",
97
96
  set_admin: "Set Admin",
@@ -91,7 +91,6 @@ const e = {
91
91
  quit_group_success: "已退出群聊",
92
92
  quit_group_failed: "退出群聊失败",
93
93
  dismiss_group_failed: "解散群聊失败",
94
- dismiss_group_failed: "解散群聊失败",
95
94
  // GroupManagement
96
95
  group_management: "群管理",
97
96
  set_admin: "设置管理员",
@@ -1,5 +1,5 @@
1
1
  import { defineComponent as j, computed as l, openBlock as d, createElementBlock as f, createElementVNode as t, toDisplayString as o, unref as a, createVNode as _, withCtx as y, createTextVNode as C, createCommentVNode as v, normalizeClass as N } from "vue";
2
- import { F as u } from "../../../../index-BqLIloNy.js";
2
+ import { F as u } from "../../../../index-DEKODZ4s.js";
3
3
  import { useUIKit as z, TUIButton as F } from "@tencentcloud/uikit-base-component-vue3";
4
4
  import B from "../../../Avatar/Avatar.js";
5
5
  import { ContactStore as L } from "../../../../chat-store/composables/useContactStore.js";
@@ -1,5 +1,5 @@
1
1
  import { defineComponent as N, ref as B, computed as _, openBlock as l, createElementBlock as G, createElementVNode as r, toDisplayString as s, unref as e, createVNode as f, withCtx as m, createTextVNode as v, createBlock as I, createCommentVNode as y } from "vue";
2
- import { h as i, g as T } from "../../../../index-BqLIloNy.js";
2
+ import { h as i, g as T } from "../../../../index-DEKODZ4s.js";
3
3
  import { useUIKit as E, TUIButton as C, TUIDialog as $ } from "@tencentcloud/uikit-base-component-vue3";
4
4
  import q from "../../../Avatar/Avatar.js";
5
5
  import { useGroupStore as z } from "../../../../chat-store/composables/useGroupStore.js";
@@ -1,6 +1,6 @@
1
1
  import { defineComponent as x, ref as p, computed as f, openBlock as _, createElementBlock as d, createElementVNode as t, toDisplayString as e, unref as a, createVNode as v, normalizeClass as A, withDirectives as N, vModelText as b, withCtx as j, createTextVNode as D, createCommentVNode as M } from "vue";
2
2
  import { useUIKit as V, TUIButton as E } from "@tencentcloud/uikit-base-component-vue3";
3
- import { h as r } from "../../../../index-BqLIloNy.js";
3
+ import { h as r } from "../../../../index-DEKODZ4s.js";
4
4
  import B from "../../../Avatar/Avatar.js";
5
5
  import { TEXTAREA_LENGTH_LIMIT as I } from "../../constants/const.js";
6
6
  import { useGroupStore as L } from "../../../../chat-store/composables/useGroupStore.js";
@@ -1,5 +1,5 @@
1
1
  import { defineComponent as ut, watch as F, computed as R, watchEffect as pt, ref as mt, openBlock as i, createElementBlock as s, createElementVNode as p, createBlock as A, resolveDynamicComponent as k, unref as C, createCommentVNode as D, Fragment as I, renderList as U, withKeys as M, createVNode as Ct, normalizeClass as _t, toDisplayString as y } from "vue";
2
- import { C as ht } from "../../index-BqLIloNy.js";
2
+ import { C as ht } from "../../index-DEKODZ4s.js";
3
3
  import { useUIKit as vt, IconArrowStrokeSelectDown as yt } from "@tencentcloud/uikit-base-component-vue3";
4
4
  import { ContactItemType as n } from "../../types/contact.js";
5
5
  import { UNREAD_COUNT_LIMIT as ft } from "./constants/const.js";
@@ -1,5 +1,5 @@
1
1
  import { defineComponent as C, computed as l, openBlock as d, createElementBlock as m, withKeys as _, normalizeClass as h, createElementVNode as a, createVNode as f, unref as t, toDisplayString as c, withModifiers as k, withCtx as F, createTextVNode as w, createCommentVNode as x } from "vue";
2
- import { F as A } from "../../../../index-BqLIloNy.js";
2
+ import { F as A } from "../../../../index-DEKODZ4s.js";
3
3
  import { useUIKit as T, TUIButton as U } from "@tencentcloud/uikit-base-component-vue3";
4
4
  import N from "../../../Avatar/Avatar.js";
5
5
  import { ContactStore as V } from "../../../../chat-store/composables/useContactStore.js";
@@ -1,5 +1,5 @@
1
1
  import { defineComponent as L, inject as j, ref as U, computed as F, watch as y, openBlock as r, createElementBlock as l, normalizeStyle as H, normalizeClass as v, unref as u, withModifiers as K, Fragment as I, renderList as g, toDisplayString as N, createBlock as G, withCtx as D, createElementVNode as J, createVNode as Q } from "vue";
2
- import { c as _, R as p } from "../../../index-BqLIloNy.js";
2
+ import { c as _, R as p } from "../../../index-DEKODZ4s.js";
3
3
  import { useUIKit as W, TUIDropdown as X, IconEllipsis as Y } from "@tencentcloud/uikit-base-component-vue3";
4
4
  import { useChatContext as Z } from "../../../chat-store/context/useChatContext.js";
5
5
  import { isH5 as k } from "../../../utils/env.js";
@@ -1,5 +1,5 @@
1
1
  import { defineComponent as ae, inject as re, ref as p, computed as L, openBlock as R, createElementBlock as ne, normalizeClass as se, unref as E, createVNode as x, withCtx as ie, createBlock as b } from "vue";
2
- import { h as _ } from "../../../index-BqLIloNy.js";
2
+ import { h as _ } from "../../../index-DEKODZ4s.js";
3
3
  import { useUIKit as le, TUIDialog as ce, TUIToast as f } from "@tencentcloud/uikit-base-component-vue3";
4
4
  import ue from "../../../states/LoginState/index.js";
5
5
  import { PageStateTypes as t, CreateConvTypes as Ce } from "../../../types/conversation.js";
@@ -1,4 +1,4 @@
1
- import { h as e } from "../../../../index-BqLIloNy.js";
1
+ import { h as e } from "../../../../index-DEKODZ4s.js";
2
2
  const o = [
3
3
  { type: e.Work, name: "Work", des: "Users can join the group only via invitation by existing members. The invitation does not need to be agreed by the invitee or approved by the group owner. See the documentation for details." },
4
4
  { type: e.Public, name: "Public", des: "After a public group is created, the group owner can designate group admins. To join the group, a user needs to search the group ID and send a request, which needs to be approved by the group owner or an admin before the user can join the group. See the documentation for details." },
@@ -1,7 +1,7 @@
1
1
  import { defineComponent as K, provide as Q, ref as s, computed as l, watch as A, openBlock as n, createElementBlock as k, normalizeStyle as R, normalizeClass as B, unref as c, createBlock as i, resolveDynamicComponent as v, withCtx as F, createCommentVNode as m, Fragment as W, renderList as X } from "vue";
2
2
  import Y from "../Avatar/Avatar.js";
3
3
  import { useConversation as Z } from "./hooks/useConversation.js";
4
- import { c as _ } from "../../index-BqLIloNy.js";
4
+ import { c as _ } from "../../index-DEKODZ4s.js";
5
5
  import ee from "./ConversationActions/ConversationActions.js";
6
6
  import te from "./ConversationSearch/ConversationSearch.js";
7
7
  import oe from "./ConversationCreate/ConversationCreate.js";
@@ -1,5 +1,5 @@
1
1
  import { defineComponent as d, computed as s, openBlock as _, createElementBlock as i, normalizeClass as c, Fragment as l, createElementVNode as b, toDisplayString as a, unref as p, createTextVNode as m, createCommentVNode as z } from "vue";
2
- import { d as v } from "../../../index-BqLIloNy.js";
2
+ import { d as v } from "../../../index-DEKODZ4s.js";
3
3
  import { useUIKit as j } from "@tencentcloud/uikit-base-component-vue3";
4
4
  import { getLatestMessagePreview as y } from "./utils.js";
5
5
  import { JSONStringToParse as T } from "../../../utils/json.js";
@@ -1,5 +1,5 @@
1
1
  import { defineComponent as p, inject as F, computed as L, ref as P, watch as q, openBlock as o, createElementBlock as f, createElementVNode as v, mergeProps as m, unref as a, renderSlot as G, normalizeClass as r, createBlock as i, resolveDynamicComponent as s, createCommentVNode as u, createVNode as J } from "vue";
2
- import { c as K, R as O } from "../../../index-BqLIloNy.js";
2
+ import { c as K, R as O } from "../../../index-DEKODZ4s.js";
3
3
  import { IconMute as Q } from "@tencentcloud/uikit-base-component-vue3";
4
4
  import W from "../../Avatar/Avatar.js";
5
5
  import X from "./ConversationPreviewAbstract.js";
@@ -1,5 +1,5 @@
1
1
  import { defineComponent as u, computed as v, openBlock as n, createElementBlock as r, normalizeClass as t, createBlock as d, unref as l, toDisplayString as h, createCommentVNode as m } from "vue";
2
- import { R as p, c as z } from "../../../index-BqLIloNy.js";
2
+ import { R as p, c as z } from "../../../index-DEKODZ4s.js";
3
3
  import { IconMute as f } from "@tencentcloud/uikit-base-component-vue3";
4
4
  import { _ as j } from "../../../_plugin-vue_export-helper-CHgC5LLL.js";
5
5
  const y = /* @__PURE__ */ u({
@@ -1,4 +1,4 @@
1
- import { i as u, k as t, j as T } from "../../../index-BqLIloNy.js";
1
+ import { i as u, k as t, j as T } from "../../../index-DEKODZ4s.js";
2
2
  import { transformTextWithEmojiKeyToName as C } from "../../../utils/emoji.js";
3
3
  import { isCallMessage as d, parseCallMessageText as I, isCreateGroupMessage as g } from "../../../utils/call.js";
4
4
  import { resolveGroupTipMessage as k } from "../../../utils/resolveGroupTipMessage.js";
@@ -1,7 +1,7 @@
1
1
  import { defineComponent as W, ref as f, inject as X, provide as Z, openBlock as C, createElementBlock as j, normalizeStyle as ee, normalizeClass as S, createElementVNode as q, createBlock as B, resolveDynamicComponent as D, unref as n, createCommentVNode as E, h as ae, createVNode as re, withCtx as K, nextTick as N } from "vue";
2
2
  import { useUIKit as se, TUIDialog as te, TUIToast as p } from "@tencentcloud/uikit-base-component-vue3";
3
3
  import { SearchBar as I, Search as T } from "../../Search/index.js";
4
- import { j as oe } from "../../../index-BqLIloNy.js";
4
+ import { j as oe } from "../../../index-DEKODZ4s.js";
5
5
  import { useSearchStore as ne } from "../../../chat-store/composables/useSearchStore.js";
6
6
  import { useChatContext as ce } from "../../../chat-store/context/useChatContext.js";
7
7
  import { useGroupStore as le } from "../../../chat-store/composables/useGroupStore.js";
@@ -1,4 +1,4 @@
1
- import { h as A } from "../../../index-BqLIloNy.js";
1
+ import { h as A } from "../../../index-DEKODZ4s.js";
2
2
  import { DEFAULT_GROUP_AVATAR_COMMON as r, DEFAULT_GROUP_AVATAR_AVCHATROOM as t, DEFAULT_GROUP_AVATAR_MEETING as _, DEFAULT_GROUP_AVATAR_PUBLIC as o, DEFAULT_GROUP_AVATAR_WORK as a } from "../../Avatar/constants/avatar.js";
3
3
  const R = (e) => {
4
4
  switch (e) {
@@ -1,5 +1,5 @@
1
1
  import { defineComponent as N, useCssModule as O, inject as V, ref as C, computed as m, openBlock as $, createBlock as j, unref as o, withCtx as v, createElementVNode as K, normalizeClass as I, renderSlot as W, createVNode as f } from "vue";
2
- import { j as X } from "../../../index-BqLIloNy.js";
2
+ import { j as X } from "../../../index-DEKODZ4s.js";
3
3
  import { useUIKit as Y, IconCall1 as q, TUIDialog as F } from "@tencentcloud/uikit-base-component-vue3";
4
4
  import { c as H } from "../../../index-D5t0xoAZ.js";
5
5
  import { View as J } from "../../../baseComp/View/index.js";
@@ -5,7 +5,7 @@ import { View as L } from "../../../baseComp/View/index.js";
5
5
  import O from "../../../states/LoginState/index.js";
6
6
  import B from "../../../states/RoomParticipantState/index.js";
7
7
  import { useRoomState as F } from "../../../states/RoomState/index.js";
8
- import { w as $, S as G } from "../../../index-BqLIloNy.js";
8
+ import { w as $, S as G } from "../../../index-DEKODZ4s.js";
9
9
  import { useChatContext as K } from "../../../chat-store/context/useChatContext.js";
10
10
  import { _ as W } from "../../../_plugin-vue_export-helper-CHgC5LLL.js";
11
11
  const H = /* @__PURE__ */ b({
@@ -1,6 +1,6 @@
1
1
  import { defineComponent as w, inject as q, onUnmounted as f, watch as y, unref as e, openBlock as I, createElementBlock as M, normalizeClass as _, createElementVNode as n, toDisplayString as m, createVNode as h, createCommentVNode as C } from "vue";
2
2
  import { useUIKit as x, IconClose as k } from "@tencentcloud/uikit-base-component-vue3";
3
- import { k as a } from "../../../index-BqLIloNy.js";
3
+ import { k as a } from "../../../index-DEKODZ4s.js";
4
4
  import { useChatUIState as b } from "../../../context/useChatUIState.js";
5
5
  import { transformTextWithEmojiKeyToName as T } from "../../../utils/emoji.js";
6
6
  const N = "_quoted__message__preview_10l68_1", Q = "_quoted__message__preview__body_10l68_11", V = "_quoted__message__preview__content_10l68_19", E = "_quoted__message__preview__close_10l68_52", t = {