tuikit-atomicx-vue3 4.5.0 → 4.5.2
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/{MessageInput.vue_vue_type_script_setup_true_lang-jPzZ5INK.js → MessageInput.vue_vue_type_script_setup_true_lang-3RVYOdkv.js} +38 -38
- package/dist/{PopoverTrigger-L8abAry7.js → PopoverPortal-DV6zFXcf.js} +91 -136
- package/dist/PopoverTrigger-DIjW4PKa.js +54 -0
- package/dist/{PopperContent-XdhqL8Y2.js → PopperContent-D__dbwpA.js} +6 -6
- package/dist/{Teleport-CSEuZbpM.js → Teleport-98QrIYDI.js} +280 -270
- package/dist/baseComp/Modal/Modal.js +3 -3
- package/dist/components/AudioSettingPanel/index.js +14 -14
- package/dist/components/BarrageInput/EmojiPicker/EmojiPicker.js +10 -9
- package/dist/components/BarrageInput/TextEditor/CharacterCountExtension.js +1 -1
- package/dist/components/BarrageInput/TextEditor/EditorCore.js +16 -15
- package/dist/components/ConversationList/ConversationActions/ConversationActions.js +53 -50
- package/dist/components/ConversationList/ConversationActions/ConversationActions.vue.d.ts +2 -0
- package/dist/components/ConversationList/ConversationCreate/ConversationCreate.js +25 -25
- package/dist/components/ConversationList/ConversationList.vue.d.ts +16 -0
- package/dist/components/ConversationList/ConversationPreview/ConversationPreview.vue.d.ts +16 -0
- package/dist/components/ConversationList/ConversationPreview/ConversationPreviewAbstract.js +62 -40
- package/dist/components/ConversationList/ConversationPreview/ConversationPreviewTimestamp.js +28 -26
- package/dist/components/ConversationList/ConversationPreview/ConversationPreviewTitle.js +27 -23
- package/dist/components/ConversationList/ConversationPreview/ConversationPreviewTitle.vue.d.ts +1 -1
- package/dist/components/ConversationList/ConversationPreview/ConversationPreviewUI.js +81 -70
- package/dist/components/ConversationList/ConversationPreview/ConversationPreviewUI.vue.d.ts +4 -0
- package/dist/components/ConversationList/ConversationPreview/ConversationPreviewUnread.js +33 -31
- package/dist/components/ConversationList/ConversationPreview/utils.d.ts +2 -2
- package/dist/components/ConversationList/ConversationPreview/utils.js +81 -35
- package/dist/components/ConversationList/i18n/en-US.d.ts +11 -1
- package/dist/components/ConversationList/i18n/en-US.js +12 -2
- package/dist/components/ConversationList/i18n/zh-CN.d.ts +11 -1
- package/dist/components/ConversationList/i18n/zh-CN.js +12 -2
- package/dist/components/ConversationList/index.d.ts +48 -0
- package/dist/components/MessageInput/AttachmentPicker/index.js +10 -9
- package/dist/components/MessageInput/EmojiPicker/EmojiPicker.js +17 -16
- package/dist/components/MessageInput/MessageInput.js +1 -1
- package/dist/components/MessageInput/QuotedMessagePreview/index.js +35 -35
- package/dist/components/MessageInput/TextEditor/EditorCore.d.ts +13 -12
- package/dist/components/MessageInput/TextEditor/EditorCore.js +54 -89
- package/dist/components/MessageInput/TextEditor/extensions/MentionSuggestion.js +229 -0
- package/dist/components/MessageInput/TextEditor/extensions/MentionSuggestion.vue.d.ts +15 -0
- package/dist/components/MessageInput/TextEditor/extensions/characterCountExtension.js +1 -1
- package/dist/components/MessageInput/TextEditor/extensions/emojiExtension.d.ts +1 -0
- package/dist/components/MessageInput/TextEditor/extensions/emojiExtension.js +22 -0
- package/dist/components/MessageInput/TextEditor/extensions/enterKeyExtension.d.ts +3 -0
- package/dist/components/MessageInput/TextEditor/extensions/enterKeyExtension.js +15 -0
- package/dist/components/MessageInput/TextEditor/extensions/imageExtension.js +2 -2
- package/dist/components/MessageInput/TextEditor/extensions/index.d.ts +8 -0
- package/dist/components/MessageInput/TextEditor/extensions/index.js +12 -0
- package/dist/components/MessageInput/TextEditor/extensions/mentionExtension.d.ts +5 -0
- package/dist/components/MessageInput/TextEditor/extensions/mentionExtension.js +330 -0
- package/dist/components/MessageInput/TextEditor/index.js +62 -62
- package/dist/components/MessageInput/i18n/en-US.d.ts +3 -0
- package/dist/components/MessageInput/i18n/en-US.js +4 -1
- package/dist/components/MessageInput/i18n/index.d.ts +6 -0
- package/dist/components/MessageInput/i18n/zh-CN.d.ts +3 -0
- package/dist/components/MessageInput/i18n/zh-CN.js +4 -1
- package/dist/components/MessageInput/index.js +1 -1
- package/dist/components/MessageList/Message/ImageMessage/ImageMessage.js +119 -89
- package/dist/components/MessageList/Message/ImageMessage/ImagePreview.js +142 -0
- package/dist/components/MessageList/Message/ImageMessage/ImagePreview.vue.d.ts +20 -0
- package/dist/components/MessageList/Message/Message.vue.d.ts +8 -0
- package/dist/components/MessageList/Message/MessageLayout/MessageActionDropdown/MessageActionDropdown.js +3 -3
- package/dist/components/MessageList/Message/MessageLayout/MessageLayout.js +69 -58
- package/dist/components/MessageList/Message/MessageLayout/MessageLayout.vue.d.ts +8 -0
- package/dist/components/MessageList/Message/MessageLayout/MessageMeta/MessageMeta.js +37 -28
- package/dist/components/MessageList/Message/index.js +8 -4
- package/dist/components/MessageList/MessageList.js +109 -91
- package/dist/components/MessageList/MessageList.vue.d.ts +1 -1
- package/dist/components/MessageList/index.d.ts +21 -3
- package/dist/components/ScheduleRoomPanel/RoomDetail.js +22 -22
- package/dist/components/ScheduleRoomPanel/RoomEdit.js +1 -1
- package/dist/components/ScheduleRoomPanel/RoomShare.js +4 -4
- package/dist/components/ScheduleRoomPanel/ScheduleRoomPanel.js +1 -1
- package/dist/components/ScheduleRoomPanel/ScheduledRoomList.js +1 -1
- package/dist/components/Search/SearchResults/SearchResultsItem/Message/Message.js +6 -6
- package/dist/components/Search/SearchResults/SearchResultsItem/Message/Message.vue.d.ts +1 -1
- package/dist/components/UIKitModal/chatErrorModal/chatErrorModal.d.ts +72 -0
- package/dist/components/UIKitModal/chatErrorModal/chatErrorModal.js +95 -0
- package/dist/components/UIKitModal/chatErrorModal/i18n/en-US/index.d.ts +40 -0
- package/dist/components/UIKitModal/chatErrorModal/i18n/en-US/index.js +51 -0
- package/dist/components/UIKitModal/chatErrorModal/i18n/index.d.ts +4 -0
- package/dist/components/UIKitModal/chatErrorModal/i18n/index.js +6 -0
- package/dist/components/UIKitModal/chatErrorModal/i18n/zh-CN/index.d.ts +40 -0
- package/dist/components/UIKitModal/chatErrorModal/i18n/zh-CN/index.js +51 -0
- package/dist/components/UIKitModal/chatErrorModal/index.d.ts +3 -0
- package/dist/components/UIKitModal/chatErrorModal/index.js +11 -0
- package/dist/components/VideoSettingPanel/index.js +1 -1
- package/dist/hooks/useReadReceipt/useReadReceipt.js +44 -41
- package/dist/index-CTthrJb2.js +1461 -0
- package/dist/index-DXC5bPY4.js +2174 -0
- package/dist/{index-Do-2CngU.js → index-DuAffztD.js} +115 -142
- package/dist/{index-7vNB_Vx8.js → index-hHVD-MG2.js} +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +150 -149
- package/dist/states/GroupSettingState/GroupSettingState.js +109 -102
- package/dist/states/LoginState.js +43 -43
- package/dist/states/MessageActionState/MessageActionState.js +83 -223
- package/dist/states/MessageInputState/MessageInputState.js +111 -82
- package/dist/states/MessageInputState/type.d.ts +36 -10
- package/dist/states/MessageInputState/utils.d.ts +1 -5
- package/dist/states/MessageListState/MessageListState.d.ts +1 -1
- package/dist/states/MessageListState/MessageListState.js +26 -23
- package/dist/states/RoomParticipantState/index.js +83 -24
- package/dist/states/RoomParticipantState/participantEventManager.d.ts +2 -2
- package/dist/states/RoomParticipantState/participantEventManager.js +217 -205
- package/dist/states/RoomParticipantState/participantManager.d.ts +4 -0
- package/dist/states/RoomParticipantState/participantManager.js +159 -127
- package/dist/states/RoomState/callManager.d.ts +3 -3
- package/dist/states/RoomState/callManager.js +20 -20
- package/dist/states/RoomState/common.d.ts +3 -2
- package/dist/states/RoomState/common.js +34 -24
- package/dist/states/RoomState/roomManager.d.ts +0 -1
- package/dist/states/RoomState/roomManager.js +21 -27
- package/dist/states/RoomState/scheduleManager.js +2 -2
- package/dist/styles/index.css +1 -1
- package/dist/{chat/index.d.ts → subEntry/chat/chat.d.ts} +2160 -2087
- package/dist/subEntry/chat/chat.js +89 -0
- package/dist/subEntry/chat/index.d.ts +11 -0
- package/dist/subEntry/chat/index.js +81 -0
- package/dist/{chat → subEntry/chat}/server.js +4 -4
- package/dist/subEntry/live/index.js +46 -45
- package/dist/subEntry/room/index.js +39 -38
- package/dist/types/beauty.d.ts +20 -0
- package/dist/types/index.js +37 -36
- package/dist/types/participant.d.ts +2 -0
- package/dist/types/room.d.ts +45 -1
- package/dist/types/room.js +4 -3
- package/dist/{useId-CtirfF0W.js → useId-B1VwPJLm.js} +1 -1
- package/dist/utils/call.js +77 -71
- package/dist/{utils-DaB7eSu5.js → utils-BU8IkP_V.js} +1 -1
- package/package.json +8 -7
- package/src/components/AudioSettingPanel/index.vue +4 -5
- package/src/components/ConversationList/ConversationActions/ConversationActions.vue +7 -1
- package/src/components/ConversationList/ConversationCreate/ConversationCreate.vue +5 -1
- package/src/components/ConversationList/ConversationList.vue +0 -1
- package/src/components/ConversationList/ConversationPreview/ConversationPreview.scss +10 -2
- package/src/components/ConversationList/ConversationPreview/ConversationPreviewAbstract.vue +32 -1
- package/src/components/ConversationList/ConversationPreview/ConversationPreviewTitle.vue +3 -2
- package/src/components/ConversationList/ConversationPreview/ConversationPreviewUI.vue +15 -0
- package/src/components/ConversationList/ConversationPreview/utils.ts +98 -28
- package/src/components/ConversationList/i18n/en-US.ts +11 -1
- package/src/components/ConversationList/i18n/zh-CN.ts +11 -1
- package/src/components/MessageInput/MessageInput.module.scss +1 -0
- package/src/components/MessageInput/QuotedMessagePreview/QuotedMessagePreview.vue +19 -22
- package/src/components/MessageInput/TextEditor/Editor.scss +25 -0
- package/src/components/MessageInput/TextEditor/EditorCore.ts +79 -99
- package/src/components/MessageInput/TextEditor/TextEditor.vue +64 -68
- package/src/components/MessageInput/TextEditor/extensions/MentionSuggestion.vue +449 -0
- package/src/components/MessageInput/TextEditor/extensions/emojiExtension.ts +22 -0
- package/src/components/MessageInput/TextEditor/extensions/enterKeyExtension.ts +22 -0
- package/src/components/MessageInput/TextEditor/extensions/index.ts +8 -0
- package/src/components/MessageInput/TextEditor/extensions/mentionExtension.ts +87 -0
- package/src/components/MessageInput/i18n/en-US.ts +3 -0
- package/src/components/MessageInput/i18n/zh-CN.ts +3 -0
- package/src/components/MessageList/Message/ImageMessage/ImageMessage.vue +49 -0
- package/src/components/MessageList/Message/ImageMessage/ImagePreview.vue +344 -0
- package/src/components/MessageList/Message/Message.vue +6 -0
- package/src/components/MessageList/Message/MessageLayout/MessageLayout.vue +8 -1
- package/src/components/MessageList/Message/MessageLayout/MessageMeta/MessageMeta.vue +12 -3
- package/src/components/MessageList/MessageList.vue +50 -14
- package/src/components/ScheduleRoomPanel/RoomDetail.vue +1 -0
- package/src/components/ScheduleRoomPanel/RoomEdit.vue +2 -1
- package/src/components/ScheduleRoomPanel/RoomShare.vue +1 -0
- package/src/components/ScheduleRoomPanel/ScheduleRoomPanel.vue +1 -0
- package/src/components/ScheduleRoomPanel/ScheduledRoomList.vue +1 -0
- package/src/components/Search/SearchResults/SearchResultsItem/Message/Message.vue +30 -31
- package/src/components/UIKitModal/chatErrorModal/chatErrorModal.ts +205 -0
- package/src/components/UIKitModal/chatErrorModal/i18n/en-US/index.ts +56 -0
- package/src/components/UIKitModal/chatErrorModal/i18n/index.ts +4 -0
- package/src/components/UIKitModal/chatErrorModal/i18n/zh-CN/index.ts +56 -0
- package/src/components/UIKitModal/chatErrorModal/index.ts +16 -0
- package/src/components/VideoSettingPanel/index.vue +1 -0
- package/src/hooks/useReadReceipt/useReadReceipt.ts +5 -4
- package/src/index.ts +1 -1
- package/src/{chat/index.ts → subEntry/chat/chat.ts} +25 -18
- package/src/subEntry/chat/index.ts +13 -0
- package/src/{chat → subEntry/chat}/server.ts +3 -3
- package/src/types/beauty.ts +20 -0
- package/src/types/participant.ts +3 -0
- package/src/types/room.ts +49 -1
- package/src/utils/call.ts +8 -0
- package/dist/chat/index.js +0 -59
- package/dist/index-ZILx4LYk.js +0 -4826
- package/dist/states/SearchState.d.ts +0 -314
- /package/dist/{chat → subEntry/chat}/server.d.ts +0 -0
package/dist/index.d.ts
CHANGED
package/dist/index.js
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import './styles/index.css';
|
|
2
|
-
import { AttachmentPicker as o, AudioCallPicker as r, ChatSetting as a, ContactInfo as i, ContactList as s, ContactListItem as n, ConversationActions as p, ConversationList as m, ConversationListContent as u, ConversationListHeader as T, ConversationPreview as f, ConversationPreviewUI as c, ConversationSearch as
|
|
2
|
+
import { AttachmentPicker as o, AudioCallPicker as r, ChatSetting as a, ContactInfo as i, ContactList as s, ContactListItem as n, ConversationActions as p, ConversationList as m, ConversationListContent as u, ConversationListHeader as T, ConversationPreview as f, ConversationPreviewUI as c, ConversationSearch as l, EmojiPicker as S, FilePicker as x, ImagePicker as R, Message as v, MessageAdvanced as d, MessageInput as C, MessageList as L, Search as U, SearchAdvanced as I, SearchBar as y, SearchResultItem as A, SearchResults as M, UserAdvanced as P, VideoCallPicker as g, VideoPicker as E, View as V, useC2CSettingState as B, useContactListState as k, useConversationListState as D, useGroupSettingState as _, useMessageActionState as G, useMessageActions as O, useMessageInputState as h, useMessageListState as F, useSearchState as w } from "./subEntry/chat/chat.js";
|
|
3
3
|
import { addI18n as Q } from "./i18n/index.js";
|
|
4
4
|
import { useLoginState as N } from "./states/LoginState.js";
|
|
5
|
-
import { useUIKitModalState as
|
|
5
|
+
import { useUIKitModalState as j } from "./states/UIKitModalState/UIKitModalState.js";
|
|
6
6
|
import { default as W } from "./components/Avatar/Avatar.js";
|
|
7
7
|
import { DEFAULT_GROUP_AVATAR_AVCHATROOM as J, DEFAULT_GROUP_AVATAR_COMMON as X, DEFAULT_GROUP_AVATAR_MEETING as Y, DEFAULT_GROUP_AVATAR_PUBLIC as Z, DEFAULT_GROUP_AVATAR_WORK as $, DEFAULT_USER_AVATAR as ee } from "./components/Avatar/constants/avatar.js";
|
|
8
8
|
import { UserPicker as oe } from "./components/UserPicker/index.js";
|
|
@@ -11,85 +11,86 @@ import { useRoomModal as se } from "./components/UIKitModal/useRoomModal/index.j
|
|
|
11
11
|
import { useDeviceState as pe } from "./states/DeviceState/DeviceState.js";
|
|
12
12
|
import { useRoomEngine as ue } from "./hooks/useRoomEngine.js";
|
|
13
13
|
import { AudioSettingPanel as fe } from "./components/AudioSettingPanel/index.js";
|
|
14
|
-
import { VideoSettingPanel as
|
|
15
|
-
import {
|
|
16
|
-
import {
|
|
17
|
-
import {
|
|
18
|
-
import {
|
|
19
|
-
import {
|
|
20
|
-
import {
|
|
21
|
-
import {
|
|
22
|
-
import {
|
|
23
|
-
import {
|
|
24
|
-
import {
|
|
25
|
-
import {
|
|
26
|
-
import {
|
|
27
|
-
import {
|
|
28
|
-
import {
|
|
29
|
-
import {
|
|
30
|
-
import {
|
|
31
|
-
import {
|
|
32
|
-
import {
|
|
33
|
-
import {
|
|
34
|
-
import {
|
|
35
|
-
import {
|
|
36
|
-
import {
|
|
37
|
-
import {
|
|
38
|
-
import {
|
|
39
|
-
import {
|
|
40
|
-
import {
|
|
41
|
-
import {
|
|
42
|
-
import {
|
|
43
|
-
import {
|
|
44
|
-
import {
|
|
45
|
-
import {
|
|
46
|
-
import {
|
|
47
|
-
import {
|
|
48
|
-
import {
|
|
49
|
-
import {
|
|
50
|
-
import {
|
|
51
|
-
import {
|
|
52
|
-
import {
|
|
53
|
-
import {
|
|
54
|
-
import {
|
|
55
|
-
import { TRTCRole as uo, TUIAudioQuality as To, TUIAudioRoute as fo, TUICaptureSourceType as co, TUIChangeReason as
|
|
56
|
-
import { LiveEndedReason as No, LiveKickedOutReason as bo, LiveListEvent as
|
|
14
|
+
import { VideoSettingPanel as le } from "./components/VideoSettingPanel/index.js";
|
|
15
|
+
import { QuoteTypeEnum as xe, TranslationStatusEnum as Re, VoiceToTextStatusEnum as ve } from "./types/message.js";
|
|
16
|
+
import { VariantType as Ce, defaultTypeLabels as Le } from "./types/search.js";
|
|
17
|
+
import { ConversationType as Ie, MessageType as ye, SearchType as Ae } from "./types/engine.js";
|
|
18
|
+
import { CreateConvTypes as Pe, GroupLabelTypes as ge, GroupType as Ee, PageStateTypes as Ve, PlaceHolderTypes as Be } from "./types/conversation.js";
|
|
19
|
+
import { ContactItemType as De, GroupApplicationType as _e } from "./types/contact.js";
|
|
20
|
+
import { CallMediaType as Oe } from "./types/call.js";
|
|
21
|
+
import { GroupInviteType as Fe, GroupMemberRole as we, GroupPermission as He } from "./states/GroupSettingState/types.js";
|
|
22
|
+
import { useBarrageState as Ke } from "./states/BarrageState/BarrageState.js";
|
|
23
|
+
import { useBattleState as be } from "./states/BattleState/BattleState.js";
|
|
24
|
+
import { useCoGuestState as qe } from "./states/CoGuestState.js";
|
|
25
|
+
import { useCoHostState as ze } from "./states/CoHostState/CoHostState.js";
|
|
26
|
+
import { useLiveAudienceState as Xe } from "./states/LiveAudienceState.js";
|
|
27
|
+
import { useLiveListState as Ze } from "./states/LiveListState/LiveListState.js";
|
|
28
|
+
import { useLiveMonitorState as et } from "./states/LiveMonitorState/index.js";
|
|
29
|
+
import { useLiveSeatState as ot } from "./states/LiveSeatState/index.js";
|
|
30
|
+
import { useVideoMixerState as at } from "./states/VideoMixerState/VideoMixerState.js";
|
|
31
|
+
import { BarrageInput as st } from "./components/BarrageInput/index.js";
|
|
32
|
+
import { BarrageList as pt } from "./components/BarrageList/index.js";
|
|
33
|
+
import { CameraButton as ut } from "./components/CameraButton/index.js";
|
|
34
|
+
import { CoGuestPanel as ft } from "./components/CoGuestPanel/index.js";
|
|
35
|
+
import { CoHostPanel as lt } from "./components/CoHostPanel/index.js";
|
|
36
|
+
import { LiveAudienceList as xt } from "./components/LiveAudienceList/index.js";
|
|
37
|
+
import { LiveList as vt } from "./components/LiveList/index.js";
|
|
38
|
+
import { default as Ct } from "./components/LiveMonitorView/LiveMonitorView.js";
|
|
39
|
+
import { LiveScenePanel as Ut } from "./components/LiveScenePanel/index.js";
|
|
40
|
+
import { LiveCoreView as yt, LiveView as At } from "./components/LiveView/index.js";
|
|
41
|
+
import { MicButton as Pt } from "./components/MicButton/index.js";
|
|
42
|
+
import { StreamMixer as Et } from "./components/StreamMixer/index.js";
|
|
43
|
+
import { useASRState as Bt } from "./states/ASRState/ASRState.js";
|
|
44
|
+
import { useFreeBeautyState as Dt } from "./states/FreeBeautyState/FreeBeautyState.js";
|
|
45
|
+
import { useRoomParticipantState as Gt } from "./states/RoomParticipantState/index.js";
|
|
46
|
+
import { useRoomState as ht } from "./states/RoomState/index.js";
|
|
47
|
+
import { useVirtualBackgroundState as wt } from "./states/VirtualBackgroundState/VirtualBackgroundState.js";
|
|
48
|
+
import { RoomParticipantList as Qt } from "./components/RoomParticipantList/index.js";
|
|
49
|
+
import { RoomParticipantView as Nt } from "./components/RoomParticipantView/index.js";
|
|
50
|
+
import { RoomView as jt } from "./components/RoomView/index.js";
|
|
51
|
+
import { ScheduleRoomPanel as Wt, ScheduledRoomList as zt } from "./components/ScheduleRoomPanel/index.js";
|
|
52
|
+
import { VirtualBackgroundPanel as Xt } from "./components/VirtualBackgroundPanel/index.js";
|
|
53
|
+
import { FreeBeautyPanel as Zt } from "./components/FreeBeautyPanel/index.js";
|
|
54
|
+
import { AudioRoute as eo, DeviceError as to, DevicePermission as oo, DeviceStatus as ro, DeviceType as ao, MediaSettingDisplayMode as io, MirrorType as so, NetworkQuality as no, VideoQuality as po } from "./types/device.js";
|
|
55
|
+
import { TRTCRole as uo, TUIAudioQuality as To, TUIAudioRoute as fo, TUICaptureSourceType as co, TUIChangeReason as lo, TUIConferenceCancelReason as So, TUIConferenceInvitationManagerEvents as xo, TUIConferenceListManagerEvents as Ro, TUIConferenceStatus as vo, TUIErrorCode as Co, TUIInvitationCode as Lo, TUIInvitationRejectedReason as Uo, TUIInvitationStatus as Io, TUIKickedOutOfRoomReason as yo, TUILiveLayoutManagerEvents as Ao, TUILiveListManagerEvents as Mo, TUILiveModifyFlag as Po, TUIMediaDevice as go, TUIMediaDeviceState as Eo, TUIMediaDeviceType as Vo, TUINetworkQuality as Bo, TUIRequestAction as ko, TUIRequestCallbackType as Do, TUIResolutionMode as _o, TUIRole as Go, TUIRoomDismissedReason as Oo, TUIRoomEvents as ho, TUIRoomType as Fo, TUISeatMode as wo, TUIVideoQuality as Ho, TUIVideoStreamType as Qo } from "./types/types.js";
|
|
56
|
+
import { LiveEndedReason as No, LiveKickedOutReason as bo, LiveListEvent as jo, LiveOrientation as qo, LiveType as Wo } from "./types/live.js";
|
|
57
57
|
import { StreamPlayMode as Jo, StreamPlayQuality as Xo } from "./types/stream.js";
|
|
58
58
|
import { LiveAudienceEvent as Zo } from "./types/audience.js";
|
|
59
59
|
import { DeviceControlPolicy as er, LiveSeatEvent as tr, MoveSeatPolicy as or, Role as rr } from "./types/seat.js";
|
|
60
60
|
import { MonitorDeviceStatus as ir } from "./types/monitor.js";
|
|
61
61
|
import { GuestEvent as nr, HostEvent as pr, NoResponseReason as mr } from "./types/coGuest.js";
|
|
62
62
|
import { CoHostEvent as Tr, CoHostLayoutTemplate as fr, CoHostStatus as cr } from "./types/coHost.js";
|
|
63
|
-
import { BattleEndedReason as
|
|
64
|
-
import { BarrageType as
|
|
65
|
-
import {
|
|
66
|
-
import { FillMode as
|
|
67
|
-
import { TRTCBeautyStyle as
|
|
68
|
-
import { VirtualBackgroundEvent as
|
|
69
|
-
import { BattleStatus as
|
|
63
|
+
import { BattleEndedReason as Sr, BattleEvent as xr } from "./types/battle.js";
|
|
64
|
+
import { BarrageType as vr } from "./types/barrage.js";
|
|
65
|
+
import { CallRejectReason as Cr, RoomCallResult as Lr, RoomCallStatus as Ur, RoomEvent as Ir, RoomStatus as yr } from "./types/room.js";
|
|
66
|
+
import { FillMode as Mr, KickedOutOfRoomReason as Pr, RoomLayoutTemplate as gr, RoomParticipantEvent as Er, RoomParticipantRole as Vr, RoomParticipantStatus as Br, VideoStreamType as kr } from "./types/participant.js";
|
|
67
|
+
import { TRTCBeautyStyle as _r } from "./types/beauty.js";
|
|
68
|
+
import { VirtualBackgroundEvent as Or, VirtualBackgroundType as hr } from "./types/virtualBackground.js";
|
|
69
|
+
import { BattleStatus as wr, ConnectionStatus as Hr, RequestType as Qr, SeatStatus as Kr, StreamPlayStatus as Nr, UserAction as br, UserRoomStatus as jr } from "./types/user.js";
|
|
70
70
|
export {
|
|
71
71
|
o as AttachmentPicker,
|
|
72
72
|
r as AudioCallPicker,
|
|
73
|
-
|
|
73
|
+
eo as AudioRoute,
|
|
74
74
|
fe as AudioSettingPanel,
|
|
75
75
|
W as Avatar,
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
76
|
+
st as BarrageInput,
|
|
77
|
+
pt as BarrageList,
|
|
78
|
+
vr as BarrageType,
|
|
79
|
+
Sr as BattleEndedReason,
|
|
80
80
|
xr as BattleEvent,
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
81
|
+
wr as BattleStatus,
|
|
82
|
+
Oe as CallMediaType,
|
|
83
|
+
Cr as CallRejectReason,
|
|
84
|
+
ut as CameraButton,
|
|
84
85
|
a as ChatSetting,
|
|
85
|
-
|
|
86
|
+
ft as CoGuestPanel,
|
|
86
87
|
Tr as CoHostEvent,
|
|
87
88
|
fr as CoHostLayoutTemplate,
|
|
88
|
-
|
|
89
|
+
lt as CoHostPanel,
|
|
89
90
|
cr as CoHostStatus,
|
|
90
|
-
|
|
91
|
+
Hr as ConnectionStatus,
|
|
91
92
|
i as ContactInfo,
|
|
92
|
-
|
|
93
|
+
De as ContactItemType,
|
|
93
94
|
s as ContactList,
|
|
94
95
|
n as ContactListItem,
|
|
95
96
|
p as ConversationActions,
|
|
@@ -98,9 +99,9 @@ export {
|
|
|
98
99
|
T as ConversationListHeader,
|
|
99
100
|
f as ConversationPreview,
|
|
100
101
|
c as ConversationPreviewUI,
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
102
|
+
l as ConversationSearch,
|
|
103
|
+
Ie as ConversationType,
|
|
104
|
+
Pe as CreateConvTypes,
|
|
104
105
|
J as DEFAULT_GROUP_AVATAR_AVCHATROOM,
|
|
105
106
|
X as DEFAULT_GROUP_AVATAR_COMMON,
|
|
106
107
|
Y as DEFAULT_GROUP_AVATAR_MEETING,
|
|
@@ -108,88 +109,88 @@ export {
|
|
|
108
109
|
$ as DEFAULT_GROUP_AVATAR_WORK,
|
|
109
110
|
ee as DEFAULT_USER_AVATAR,
|
|
110
111
|
er as DeviceControlPolicy,
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
112
|
+
to as DeviceError,
|
|
113
|
+
oo as DevicePermission,
|
|
114
|
+
ro as DeviceStatus,
|
|
115
|
+
ao as DeviceType,
|
|
116
|
+
S as EmojiPicker,
|
|
116
117
|
x as FilePicker,
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
118
|
+
Mr as FillMode,
|
|
119
|
+
Zt as FreeBeautyPanel,
|
|
120
|
+
_e as GroupApplicationType,
|
|
121
|
+
Fe as GroupInviteType,
|
|
122
|
+
ge as GroupLabelTypes,
|
|
123
|
+
we as GroupMemberRole,
|
|
124
|
+
He as GroupPermission,
|
|
125
|
+
Ee as GroupType,
|
|
125
126
|
nr as GuestEvent,
|
|
126
127
|
pr as HostEvent,
|
|
127
|
-
|
|
128
|
-
|
|
128
|
+
R as ImagePicker,
|
|
129
|
+
Pr as KickedOutOfRoomReason,
|
|
129
130
|
Zo as LiveAudienceEvent,
|
|
130
|
-
|
|
131
|
-
|
|
131
|
+
xt as LiveAudienceList,
|
|
132
|
+
yt as LiveCoreView,
|
|
132
133
|
No as LiveEndedReason,
|
|
133
134
|
bo as LiveKickedOutReason,
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
135
|
+
vt as LiveList,
|
|
136
|
+
jo as LiveListEvent,
|
|
137
|
+
Ct as LiveMonitorView,
|
|
138
|
+
qo as LiveOrientation,
|
|
139
|
+
Ut as LiveScenePanel,
|
|
139
140
|
tr as LiveSeatEvent,
|
|
140
141
|
Wo as LiveType,
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
142
|
+
At as LiveView,
|
|
143
|
+
io as MediaSettingDisplayMode,
|
|
144
|
+
v as Message,
|
|
144
145
|
d as MessageAdvanced,
|
|
145
146
|
C as MessageInput,
|
|
146
147
|
L as MessageList,
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
148
|
+
ye as MessageType,
|
|
149
|
+
Pt as MicButton,
|
|
150
|
+
so as MirrorType,
|
|
150
151
|
ir as MonitorDeviceStatus,
|
|
151
152
|
or as MoveSeatPolicy,
|
|
152
|
-
|
|
153
|
+
no as NetworkQuality,
|
|
153
154
|
mr as NoResponseReason,
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
155
|
+
Ve as PageStateTypes,
|
|
156
|
+
Be as PlaceHolderTypes,
|
|
157
|
+
xe as QuoteTypeEnum,
|
|
158
|
+
Qr as RequestType,
|
|
158
159
|
rr as Role,
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
160
|
+
Lr as RoomCallResult,
|
|
161
|
+
Ur as RoomCallStatus,
|
|
162
|
+
Ir as RoomEvent,
|
|
163
|
+
gr as RoomLayoutTemplate,
|
|
164
|
+
Er as RoomParticipantEvent,
|
|
165
|
+
Qt as RoomParticipantList,
|
|
166
|
+
Vr as RoomParticipantRole,
|
|
167
|
+
Br as RoomParticipantStatus,
|
|
168
|
+
Nt as RoomParticipantView,
|
|
169
|
+
yr as RoomStatus,
|
|
170
|
+
jt as RoomView,
|
|
171
|
+
Wt as ScheduleRoomPanel,
|
|
172
|
+
zt as ScheduledRoomList,
|
|
172
173
|
U as Search,
|
|
173
174
|
I as SearchAdvanced,
|
|
174
175
|
y as SearchBar,
|
|
175
176
|
A as SearchResultItem,
|
|
176
177
|
M as SearchResults,
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
178
|
+
Ae as SearchType,
|
|
179
|
+
Kr as SeatStatus,
|
|
180
|
+
Et as StreamMixer,
|
|
180
181
|
Jo as StreamPlayMode,
|
|
181
182
|
Xo as StreamPlayQuality,
|
|
182
|
-
|
|
183
|
-
|
|
183
|
+
Nr as StreamPlayStatus,
|
|
184
|
+
_r as TRTCBeautyStyle,
|
|
184
185
|
uo as TRTCRole,
|
|
185
186
|
To as TUIAudioQuality,
|
|
186
187
|
fo as TUIAudioRoute,
|
|
187
188
|
co as TUICaptureSourceType,
|
|
188
|
-
|
|
189
|
-
|
|
189
|
+
lo as TUIChangeReason,
|
|
190
|
+
So as TUIConferenceCancelReason,
|
|
190
191
|
xo as TUIConferenceInvitationManagerEvents,
|
|
191
|
-
|
|
192
|
-
|
|
192
|
+
Ro as TUIConferenceListManagerEvents,
|
|
193
|
+
vo as TUIConferenceStatus,
|
|
193
194
|
Co as TUIErrorCode,
|
|
194
195
|
Lo as TUIInvitationCode,
|
|
195
196
|
Uo as TUIInvitationRejectedReason,
|
|
@@ -212,40 +213,40 @@ export {
|
|
|
212
213
|
wo as TUISeatMode,
|
|
213
214
|
Ho as TUIVideoQuality,
|
|
214
215
|
Qo as TUIVideoStreamType,
|
|
215
|
-
|
|
216
|
+
Re as TranslationStatusEnum,
|
|
216
217
|
ae as UIKitModal,
|
|
217
|
-
|
|
218
|
+
br as UserAction,
|
|
218
219
|
P as UserAdvanced,
|
|
219
220
|
oe as UserPicker,
|
|
220
|
-
|
|
221
|
-
|
|
221
|
+
jr as UserRoomStatus,
|
|
222
|
+
Ce as VariantType,
|
|
222
223
|
g as VideoCallPicker,
|
|
223
224
|
E as VideoPicker,
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
225
|
+
po as VideoQuality,
|
|
226
|
+
le as VideoSettingPanel,
|
|
227
|
+
kr as VideoStreamType,
|
|
227
228
|
V as View,
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
229
|
+
Or as VirtualBackgroundEvent,
|
|
230
|
+
Xt as VirtualBackgroundPanel,
|
|
231
|
+
hr as VirtualBackgroundType,
|
|
232
|
+
ve as VoiceToTextStatusEnum,
|
|
232
233
|
Q as addI18n,
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
234
|
+
Le as defaultTypeLabels,
|
|
235
|
+
Bt as useASRState,
|
|
236
|
+
Ke as useBarrageState,
|
|
237
|
+
be as useBattleState,
|
|
237
238
|
B as useC2CSettingState,
|
|
238
|
-
|
|
239
|
-
|
|
239
|
+
qe as useCoGuestState,
|
|
240
|
+
ze as useCoHostState,
|
|
240
241
|
k as useContactListState,
|
|
241
242
|
D as useConversationListState,
|
|
242
243
|
pe as useDeviceState,
|
|
243
|
-
|
|
244
|
+
Dt as useFreeBeautyState,
|
|
244
245
|
_ as useGroupSettingState,
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
246
|
+
Xe as useLiveAudienceState,
|
|
247
|
+
Ze as useLiveListState,
|
|
248
|
+
et as useLiveMonitorState,
|
|
249
|
+
ot as useLiveSeatState,
|
|
249
250
|
N as useLoginState,
|
|
250
251
|
G as useMessageActionState,
|
|
251
252
|
O as useMessageActions,
|
|
@@ -253,10 +254,10 @@ export {
|
|
|
253
254
|
F as useMessageListState,
|
|
254
255
|
ue as useRoomEngine,
|
|
255
256
|
se as useRoomModal,
|
|
256
|
-
|
|
257
|
-
|
|
257
|
+
Gt as useRoomParticipantState,
|
|
258
|
+
ht as useRoomState,
|
|
258
259
|
w as useSearchState,
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
260
|
+
j as useUIKitModalState,
|
|
261
|
+
at as useVideoMixerState,
|
|
262
|
+
wt as useVirtualBackgroundState
|
|
262
263
|
};
|