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
|
@@ -292,6 +292,7 @@ declare const ConversationList: import('vue').DefineComponent<import('vue').Extr
|
|
|
292
292
|
click: (e: Event, key?: string | undefined, conversation?: import('../..').ConversationModel | undefined) => void;
|
|
293
293
|
close: () => void;
|
|
294
294
|
markConversationUnread: (conversation: import('../..').ConversationModel, e?: Event | undefined) => void;
|
|
295
|
+
dropdownVisibleChange: (visible: boolean) => void;
|
|
295
296
|
conversationPin: (conversation: import('../..').ConversationModel, e?: Event | undefined) => void;
|
|
296
297
|
conversationMute: (conversation: import('../..').ConversationModel, e?: Event | undefined) => void;
|
|
297
298
|
conversationDelete: (conversation: import('../..').ConversationModel, e?: Event | undefined) => void;
|
|
@@ -353,6 +354,7 @@ declare const ConversationList: import('vue').DefineComponent<import('vue').Extr
|
|
|
353
354
|
onClick?: ((e: Event, key?: string | undefined, conversation?: import('../..').ConversationModel | undefined) => any) | undefined;
|
|
354
355
|
onClose?: (() => any) | undefined;
|
|
355
356
|
onMarkConversationUnread?: ((conversation: import('../..').ConversationModel, e?: Event | undefined) => any) | undefined;
|
|
357
|
+
onDropdownVisibleChange?: ((visible: boolean) => any) | undefined;
|
|
356
358
|
onConversationPin?: ((conversation: import('../..').ConversationModel, e?: Event | undefined) => any) | undefined;
|
|
357
359
|
onConversationMute?: ((conversation: import('../..').ConversationModel, e?: Event | undefined) => any) | undefined;
|
|
358
360
|
onConversationDelete?: ((conversation: import('../..').ConversationModel, e?: Event | undefined) => any) | undefined;
|
|
@@ -627,6 +629,7 @@ declare const ConversationList: import('vue').DefineComponent<import('vue').Extr
|
|
|
627
629
|
click: (e: Event, key?: string | undefined, conversation?: import('../..').ConversationModel | undefined) => void;
|
|
628
630
|
close: () => void;
|
|
629
631
|
markConversationUnread: (conversation: import('../..').ConversationModel, e?: Event | undefined) => void;
|
|
632
|
+
dropdownVisibleChange: (visible: boolean) => void;
|
|
630
633
|
conversationPin: (conversation: import('../..').ConversationModel, e?: Event | undefined) => void;
|
|
631
634
|
conversationMute: (conversation: import('../..').ConversationModel, e?: Event | undefined) => void;
|
|
632
635
|
conversationDelete: (conversation: import('../..').ConversationModel, e?: Event | undefined) => void;
|
|
@@ -688,6 +691,7 @@ declare const ConversationList: import('vue').DefineComponent<import('vue').Extr
|
|
|
688
691
|
onClick?: ((e: Event, key?: string | undefined, conversation?: import('../..').ConversationModel | undefined) => any) | undefined;
|
|
689
692
|
onClose?: (() => any) | undefined;
|
|
690
693
|
onMarkConversationUnread?: ((conversation: import('../..').ConversationModel, e?: Event | undefined) => any) | undefined;
|
|
694
|
+
onDropdownVisibleChange?: ((visible: boolean) => any) | undefined;
|
|
691
695
|
onConversationPin?: ((conversation: import('../..').ConversationModel, e?: Event | undefined) => any) | undefined;
|
|
692
696
|
onConversationMute?: ((conversation: import('../..').ConversationModel, e?: Event | undefined) => any) | undefined;
|
|
693
697
|
onConversationDelete?: ((conversation: import('../..').ConversationModel, e?: Event | undefined) => any) | undefined;
|
|
@@ -957,6 +961,7 @@ declare const ConversationList: import('vue').DefineComponent<import('vue').Extr
|
|
|
957
961
|
click: (e: Event, key?: string | undefined, conversation?: import('../..').ConversationModel | undefined) => void;
|
|
958
962
|
close: () => void;
|
|
959
963
|
markConversationUnread: (conversation: import('../..').ConversationModel, e?: Event | undefined) => void;
|
|
964
|
+
dropdownVisibleChange: (visible: boolean) => void;
|
|
960
965
|
conversationPin: (conversation: import('../..').ConversationModel, e?: Event | undefined) => void;
|
|
961
966
|
conversationMute: (conversation: import('../..').ConversationModel, e?: Event | undefined) => void;
|
|
962
967
|
conversationDelete: (conversation: import('../..').ConversationModel, e?: Event | undefined) => void;
|
|
@@ -1018,6 +1023,7 @@ declare const ConversationList: import('vue').DefineComponent<import('vue').Extr
|
|
|
1018
1023
|
onClick?: ((e: Event, key?: string | undefined, conversation?: import('../..').ConversationModel | undefined) => any) | undefined;
|
|
1019
1024
|
onClose?: (() => any) | undefined;
|
|
1020
1025
|
onMarkConversationUnread?: ((conversation: import('../..').ConversationModel, e?: Event | undefined) => any) | undefined;
|
|
1026
|
+
onDropdownVisibleChange?: ((visible: boolean) => any) | undefined;
|
|
1021
1027
|
onConversationPin?: ((conversation: import('../..').ConversationModel, e?: Event | undefined) => any) | undefined;
|
|
1022
1028
|
onConversationMute?: ((conversation: import('../..').ConversationModel, e?: Event | undefined) => any) | undefined;
|
|
1023
1029
|
onConversationDelete?: ((conversation: import('../..').ConversationModel, e?: Event | undefined) => any) | undefined;
|
|
@@ -1184,6 +1190,7 @@ declare const ConversationList: import('vue').DefineComponent<import('vue').Extr
|
|
|
1184
1190
|
click: (e: Event, key?: string | undefined, conversation?: import('../..').ConversationModel | undefined) => void;
|
|
1185
1191
|
close: () => void;
|
|
1186
1192
|
markConversationUnread: (conversation: import('../..').ConversationModel, e?: Event | undefined) => void;
|
|
1193
|
+
dropdownVisibleChange: (visible: boolean) => void;
|
|
1187
1194
|
conversationPin: (conversation: import('../..').ConversationModel, e?: Event | undefined) => void;
|
|
1188
1195
|
conversationMute: (conversation: import('../..').ConversationModel, e?: Event | undefined) => void;
|
|
1189
1196
|
conversationDelete: (conversation: import('../..').ConversationModel, e?: Event | undefined) => void;
|
|
@@ -1245,6 +1252,7 @@ declare const ConversationList: import('vue').DefineComponent<import('vue').Extr
|
|
|
1245
1252
|
onClick?: ((e: Event, key?: string | undefined, conversation?: import('../..').ConversationModel | undefined) => any) | undefined;
|
|
1246
1253
|
onClose?: (() => any) | undefined;
|
|
1247
1254
|
onMarkConversationUnread?: ((conversation: import('../..').ConversationModel, e?: Event | undefined) => any) | undefined;
|
|
1255
|
+
onDropdownVisibleChange?: ((visible: boolean) => any) | undefined;
|
|
1248
1256
|
onConversationPin?: ((conversation: import('../..').ConversationModel, e?: Event | undefined) => any) | undefined;
|
|
1249
1257
|
onConversationMute?: ((conversation: import('../..').ConversationModel, e?: Event | undefined) => any) | undefined;
|
|
1250
1258
|
onConversationDelete?: ((conversation: import('../..').ConversationModel, e?: Event | undefined) => any) | undefined;
|
|
@@ -3967,6 +3975,7 @@ declare const ConversationList: import('vue').DefineComponent<import('vue').Extr
|
|
|
3967
3975
|
click: (e: Event, key?: string | undefined, conversation?: import('../..').ConversationModel | undefined) => void;
|
|
3968
3976
|
close: () => void;
|
|
3969
3977
|
markConversationUnread: (conversation: import('../..').ConversationModel, e?: Event | undefined) => void;
|
|
3978
|
+
dropdownVisibleChange: (visible: boolean) => void;
|
|
3970
3979
|
conversationPin: (conversation: import('../..').ConversationModel, e?: Event | undefined) => void;
|
|
3971
3980
|
conversationMute: (conversation: import('../..').ConversationModel, e?: Event | undefined) => void;
|
|
3972
3981
|
conversationDelete: (conversation: import('../..').ConversationModel, e?: Event | undefined) => void;
|
|
@@ -4028,6 +4037,7 @@ declare const ConversationList: import('vue').DefineComponent<import('vue').Extr
|
|
|
4028
4037
|
onClick?: ((e: Event, key?: string | undefined, conversation?: import('../..').ConversationModel | undefined) => any) | undefined;
|
|
4029
4038
|
onClose?: (() => any) | undefined;
|
|
4030
4039
|
onMarkConversationUnread?: ((conversation: import('../..').ConversationModel, e?: Event | undefined) => any) | undefined;
|
|
4040
|
+
onDropdownVisibleChange?: ((visible: boolean) => any) | undefined;
|
|
4031
4041
|
onConversationPin?: ((conversation: import('../..').ConversationModel, e?: Event | undefined) => any) | undefined;
|
|
4032
4042
|
onConversationMute?: ((conversation: import('../..').ConversationModel, e?: Event | undefined) => any) | undefined;
|
|
4033
4043
|
onConversationDelete?: ((conversation: import('../..').ConversationModel, e?: Event | undefined) => any) | undefined;
|
|
@@ -4302,6 +4312,7 @@ declare const ConversationList: import('vue').DefineComponent<import('vue').Extr
|
|
|
4302
4312
|
click: (e: Event, key?: string | undefined, conversation?: import('../..').ConversationModel | undefined) => void;
|
|
4303
4313
|
close: () => void;
|
|
4304
4314
|
markConversationUnread: (conversation: import('../..').ConversationModel, e?: Event | undefined) => void;
|
|
4315
|
+
dropdownVisibleChange: (visible: boolean) => void;
|
|
4305
4316
|
conversationPin: (conversation: import('../..').ConversationModel, e?: Event | undefined) => void;
|
|
4306
4317
|
conversationMute: (conversation: import('../..').ConversationModel, e?: Event | undefined) => void;
|
|
4307
4318
|
conversationDelete: (conversation: import('../..').ConversationModel, e?: Event | undefined) => void;
|
|
@@ -4363,6 +4374,7 @@ declare const ConversationList: import('vue').DefineComponent<import('vue').Extr
|
|
|
4363
4374
|
onClick?: ((e: Event, key?: string | undefined, conversation?: import('../..').ConversationModel | undefined) => any) | undefined;
|
|
4364
4375
|
onClose?: (() => any) | undefined;
|
|
4365
4376
|
onMarkConversationUnread?: ((conversation: import('../..').ConversationModel, e?: Event | undefined) => any) | undefined;
|
|
4377
|
+
onDropdownVisibleChange?: ((visible: boolean) => any) | undefined;
|
|
4366
4378
|
onConversationPin?: ((conversation: import('../..').ConversationModel, e?: Event | undefined) => any) | undefined;
|
|
4367
4379
|
onConversationMute?: ((conversation: import('../..').ConversationModel, e?: Event | undefined) => any) | undefined;
|
|
4368
4380
|
onConversationDelete?: ((conversation: import('../..').ConversationModel, e?: Event | undefined) => any) | undefined;
|
|
@@ -4632,6 +4644,7 @@ declare const ConversationList: import('vue').DefineComponent<import('vue').Extr
|
|
|
4632
4644
|
click: (e: Event, key?: string | undefined, conversation?: import('../..').ConversationModel | undefined) => void;
|
|
4633
4645
|
close: () => void;
|
|
4634
4646
|
markConversationUnread: (conversation: import('../..').ConversationModel, e?: Event | undefined) => void;
|
|
4647
|
+
dropdownVisibleChange: (visible: boolean) => void;
|
|
4635
4648
|
conversationPin: (conversation: import('../..').ConversationModel, e?: Event | undefined) => void;
|
|
4636
4649
|
conversationMute: (conversation: import('../..').ConversationModel, e?: Event | undefined) => void;
|
|
4637
4650
|
conversationDelete: (conversation: import('../..').ConversationModel, e?: Event | undefined) => void;
|
|
@@ -4693,6 +4706,7 @@ declare const ConversationList: import('vue').DefineComponent<import('vue').Extr
|
|
|
4693
4706
|
onClick?: ((e: Event, key?: string | undefined, conversation?: import('../..').ConversationModel | undefined) => any) | undefined;
|
|
4694
4707
|
onClose?: (() => any) | undefined;
|
|
4695
4708
|
onMarkConversationUnread?: ((conversation: import('../..').ConversationModel, e?: Event | undefined) => any) | undefined;
|
|
4709
|
+
onDropdownVisibleChange?: ((visible: boolean) => any) | undefined;
|
|
4696
4710
|
onConversationPin?: ((conversation: import('../..').ConversationModel, e?: Event | undefined) => any) | undefined;
|
|
4697
4711
|
onConversationMute?: ((conversation: import('../..').ConversationModel, e?: Event | undefined) => any) | undefined;
|
|
4698
4712
|
onConversationDelete?: ((conversation: import('../..').ConversationModel, e?: Event | undefined) => any) | undefined;
|
|
@@ -4859,6 +4873,7 @@ declare const ConversationList: import('vue').DefineComponent<import('vue').Extr
|
|
|
4859
4873
|
click: (e: Event, key?: string | undefined, conversation?: import('../..').ConversationModel | undefined) => void;
|
|
4860
4874
|
close: () => void;
|
|
4861
4875
|
markConversationUnread: (conversation: import('../..').ConversationModel, e?: Event | undefined) => void;
|
|
4876
|
+
dropdownVisibleChange: (visible: boolean) => void;
|
|
4862
4877
|
conversationPin: (conversation: import('../..').ConversationModel, e?: Event | undefined) => void;
|
|
4863
4878
|
conversationMute: (conversation: import('../..').ConversationModel, e?: Event | undefined) => void;
|
|
4864
4879
|
conversationDelete: (conversation: import('../..').ConversationModel, e?: Event | undefined) => void;
|
|
@@ -4920,6 +4935,7 @@ declare const ConversationList: import('vue').DefineComponent<import('vue').Extr
|
|
|
4920
4935
|
onClick?: ((e: Event, key?: string | undefined, conversation?: import('../..').ConversationModel | undefined) => any) | undefined;
|
|
4921
4936
|
onClose?: (() => any) | undefined;
|
|
4922
4937
|
onMarkConversationUnread?: ((conversation: import('../..').ConversationModel, e?: Event | undefined) => any) | undefined;
|
|
4938
|
+
onDropdownVisibleChange?: ((visible: boolean) => any) | undefined;
|
|
4923
4939
|
onConversationPin?: ((conversation: import('../..').ConversationModel, e?: Event | undefined) => any) | undefined;
|
|
4924
4940
|
onConversationMute?: ((conversation: import('../..').ConversationModel, e?: Event | undefined) => any) | undefined;
|
|
4925
4941
|
onConversationDelete?: ((conversation: import('../..').ConversationModel, e?: Event | undefined) => any) | undefined;
|
|
@@ -7421,6 +7437,7 @@ declare const ConversationActions: import('vue').DefineComponent<import('vue').E
|
|
|
7421
7437
|
click: (e: Event, key?: string | undefined, conversation?: import('../..').ConversationModel | undefined) => void;
|
|
7422
7438
|
close: () => void;
|
|
7423
7439
|
markConversationUnread: (conversation: import('../..').ConversationModel, e?: Event | undefined) => void;
|
|
7440
|
+
dropdownVisibleChange: (visible: boolean) => void;
|
|
7424
7441
|
conversationPin: (conversation: import('../..').ConversationModel, e?: Event | undefined) => void;
|
|
7425
7442
|
conversationMute: (conversation: import('../..').ConversationModel, e?: Event | undefined) => void;
|
|
7426
7443
|
conversationDelete: (conversation: import('../..').ConversationModel, e?: Event | undefined) => void;
|
|
@@ -7482,6 +7499,7 @@ declare const ConversationActions: import('vue').DefineComponent<import('vue').E
|
|
|
7482
7499
|
onClick?: ((e: Event, key?: string | undefined, conversation?: import('../..').ConversationModel | undefined) => any) | undefined;
|
|
7483
7500
|
onClose?: (() => any) | undefined;
|
|
7484
7501
|
onMarkConversationUnread?: ((conversation: import('../..').ConversationModel, e?: Event | undefined) => any) | undefined;
|
|
7502
|
+
onDropdownVisibleChange?: ((visible: boolean) => any) | undefined;
|
|
7485
7503
|
onConversationPin?: ((conversation: import('../..').ConversationModel, e?: Event | undefined) => any) | undefined;
|
|
7486
7504
|
onConversationMute?: ((conversation: import('../..').ConversationModel, e?: Event | undefined) => any) | undefined;
|
|
7487
7505
|
onConversationDelete?: ((conversation: import('../..').ConversationModel, e?: Event | undefined) => any) | undefined;
|
|
@@ -8120,6 +8138,7 @@ declare const ConversationPreview: {
|
|
|
8120
8138
|
click: (e: Event, key?: string | undefined, conversation?: import('../..').ConversationModel | undefined) => void;
|
|
8121
8139
|
close: () => void;
|
|
8122
8140
|
markConversationUnread: (conversation: import('../..').ConversationModel, e?: Event | undefined) => void;
|
|
8141
|
+
dropdownVisibleChange: (visible: boolean) => void;
|
|
8123
8142
|
conversationPin: (conversation: import('../..').ConversationModel, e?: Event | undefined) => void;
|
|
8124
8143
|
conversationMute: (conversation: import('../..').ConversationModel, e?: Event | undefined) => void;
|
|
8125
8144
|
conversationDelete: (conversation: import('../..').ConversationModel, e?: Event | undefined) => void;
|
|
@@ -8181,6 +8200,7 @@ declare const ConversationPreview: {
|
|
|
8181
8200
|
onClick?: ((e: Event, key?: string | undefined, conversation?: import('../..').ConversationModel | undefined) => any) | undefined;
|
|
8182
8201
|
onClose?: (() => any) | undefined;
|
|
8183
8202
|
onMarkConversationUnread?: ((conversation: import('../..').ConversationModel, e?: Event | undefined) => any) | undefined;
|
|
8203
|
+
onDropdownVisibleChange?: ((visible: boolean) => any) | undefined;
|
|
8184
8204
|
onConversationPin?: ((conversation: import('../..').ConversationModel, e?: Event | undefined) => any) | undefined;
|
|
8185
8205
|
onConversationMute?: ((conversation: import('../..').ConversationModel, e?: Event | undefined) => any) | undefined;
|
|
8186
8206
|
onConversationDelete?: ((conversation: import('../..').ConversationModel, e?: Event | undefined) => any) | undefined;
|
|
@@ -8455,6 +8475,7 @@ declare const ConversationPreview: {
|
|
|
8455
8475
|
click: (e: Event, key?: string | undefined, conversation?: import('../..').ConversationModel | undefined) => void;
|
|
8456
8476
|
close: () => void;
|
|
8457
8477
|
markConversationUnread: (conversation: import('../..').ConversationModel, e?: Event | undefined) => void;
|
|
8478
|
+
dropdownVisibleChange: (visible: boolean) => void;
|
|
8458
8479
|
conversationPin: (conversation: import('../..').ConversationModel, e?: Event | undefined) => void;
|
|
8459
8480
|
conversationMute: (conversation: import('../..').ConversationModel, e?: Event | undefined) => void;
|
|
8460
8481
|
conversationDelete: (conversation: import('../..').ConversationModel, e?: Event | undefined) => void;
|
|
@@ -8516,6 +8537,7 @@ declare const ConversationPreview: {
|
|
|
8516
8537
|
onClick?: ((e: Event, key?: string | undefined, conversation?: import('../..').ConversationModel | undefined) => any) | undefined;
|
|
8517
8538
|
onClose?: (() => any) | undefined;
|
|
8518
8539
|
onMarkConversationUnread?: ((conversation: import('../..').ConversationModel, e?: Event | undefined) => any) | undefined;
|
|
8540
|
+
onDropdownVisibleChange?: ((visible: boolean) => any) | undefined;
|
|
8519
8541
|
onConversationPin?: ((conversation: import('../..').ConversationModel, e?: Event | undefined) => any) | undefined;
|
|
8520
8542
|
onConversationMute?: ((conversation: import('../..').ConversationModel, e?: Event | undefined) => any) | undefined;
|
|
8521
8543
|
onConversationDelete?: ((conversation: import('../..').ConversationModel, e?: Event | undefined) => any) | undefined;
|
|
@@ -8785,6 +8807,7 @@ declare const ConversationPreview: {
|
|
|
8785
8807
|
click: (e: Event, key?: string | undefined, conversation?: import('../..').ConversationModel | undefined) => void;
|
|
8786
8808
|
close: () => void;
|
|
8787
8809
|
markConversationUnread: (conversation: import('../..').ConversationModel, e?: Event | undefined) => void;
|
|
8810
|
+
dropdownVisibleChange: (visible: boolean) => void;
|
|
8788
8811
|
conversationPin: (conversation: import('../..').ConversationModel, e?: Event | undefined) => void;
|
|
8789
8812
|
conversationMute: (conversation: import('../..').ConversationModel, e?: Event | undefined) => void;
|
|
8790
8813
|
conversationDelete: (conversation: import('../..').ConversationModel, e?: Event | undefined) => void;
|
|
@@ -8846,6 +8869,7 @@ declare const ConversationPreview: {
|
|
|
8846
8869
|
onClick?: ((e: Event, key?: string | undefined, conversation?: import('../..').ConversationModel | undefined) => any) | undefined;
|
|
8847
8870
|
onClose?: (() => any) | undefined;
|
|
8848
8871
|
onMarkConversationUnread?: ((conversation: import('../..').ConversationModel, e?: Event | undefined) => any) | undefined;
|
|
8872
|
+
onDropdownVisibleChange?: ((visible: boolean) => any) | undefined;
|
|
8849
8873
|
onConversationPin?: ((conversation: import('../..').ConversationModel, e?: Event | undefined) => any) | undefined;
|
|
8850
8874
|
onConversationMute?: ((conversation: import('../..').ConversationModel, e?: Event | undefined) => any) | undefined;
|
|
8851
8875
|
onConversationDelete?: ((conversation: import('../..').ConversationModel, e?: Event | undefined) => any) | undefined;
|
|
@@ -9008,6 +9032,7 @@ declare const ConversationPreview: {
|
|
|
9008
9032
|
click: (e: Event, key?: string | undefined, conversation?: import('../..').ConversationModel | undefined) => void;
|
|
9009
9033
|
close: () => void;
|
|
9010
9034
|
markConversationUnread: (conversation: import('../..').ConversationModel, e?: Event | undefined) => void;
|
|
9035
|
+
dropdownVisibleChange: (visible: boolean) => void;
|
|
9011
9036
|
conversationPin: (conversation: import('../..').ConversationModel, e?: Event | undefined) => void;
|
|
9012
9037
|
conversationMute: (conversation: import('../..').ConversationModel, e?: Event | undefined) => void;
|
|
9013
9038
|
conversationDelete: (conversation: import('../..').ConversationModel, e?: Event | undefined) => void;
|
|
@@ -9069,6 +9094,7 @@ declare const ConversationPreview: {
|
|
|
9069
9094
|
onClick?: ((e: Event, key?: string | undefined, conversation?: import('../..').ConversationModel | undefined) => any) | undefined;
|
|
9070
9095
|
onClose?: (() => any) | undefined;
|
|
9071
9096
|
onMarkConversationUnread?: ((conversation: import('../..').ConversationModel, e?: Event | undefined) => any) | undefined;
|
|
9097
|
+
onDropdownVisibleChange?: ((visible: boolean) => any) | undefined;
|
|
9072
9098
|
onConversationPin?: ((conversation: import('../..').ConversationModel, e?: Event | undefined) => any) | undefined;
|
|
9073
9099
|
onConversationMute?: ((conversation: import('../..').ConversationModel, e?: Event | undefined) => any) | undefined;
|
|
9074
9100
|
onConversationDelete?: ((conversation: import('../..').ConversationModel, e?: Event | undefined) => any) | undefined;
|
|
@@ -9410,6 +9436,7 @@ declare const ConversationPreview: {
|
|
|
9410
9436
|
click: (e: Event, key?: string | undefined, conversation?: import('../..').ConversationModel | undefined) => void;
|
|
9411
9437
|
close: () => void;
|
|
9412
9438
|
markConversationUnread: (conversation: import('../..').ConversationModel, e?: Event | undefined) => void;
|
|
9439
|
+
dropdownVisibleChange: (visible: boolean) => void;
|
|
9413
9440
|
conversationPin: (conversation: import('../..').ConversationModel, e?: Event | undefined) => void;
|
|
9414
9441
|
conversationMute: (conversation: import('../..').ConversationModel, e?: Event | undefined) => void;
|
|
9415
9442
|
conversationDelete: (conversation: import('../..').ConversationModel, e?: Event | undefined) => void;
|
|
@@ -9471,6 +9498,7 @@ declare const ConversationPreview: {
|
|
|
9471
9498
|
onClick?: ((e: Event, key?: string | undefined, conversation?: import('../..').ConversationModel | undefined) => any) | undefined;
|
|
9472
9499
|
onClose?: (() => any) | undefined;
|
|
9473
9500
|
onMarkConversationUnread?: ((conversation: import('../..').ConversationModel, e?: Event | undefined) => any) | undefined;
|
|
9501
|
+
onDropdownVisibleChange?: ((visible: boolean) => any) | undefined;
|
|
9474
9502
|
onConversationPin?: ((conversation: import('../..').ConversationModel, e?: Event | undefined) => any) | undefined;
|
|
9475
9503
|
onConversationMute?: ((conversation: import('../..').ConversationModel, e?: Event | undefined) => any) | undefined;
|
|
9476
9504
|
onConversationDelete?: ((conversation: import('../..').ConversationModel, e?: Event | undefined) => any) | undefined;
|
|
@@ -9745,6 +9773,7 @@ declare const ConversationPreview: {
|
|
|
9745
9773
|
click: (e: Event, key?: string | undefined, conversation?: import('../..').ConversationModel | undefined) => void;
|
|
9746
9774
|
close: () => void;
|
|
9747
9775
|
markConversationUnread: (conversation: import('../..').ConversationModel, e?: Event | undefined) => void;
|
|
9776
|
+
dropdownVisibleChange: (visible: boolean) => void;
|
|
9748
9777
|
conversationPin: (conversation: import('../..').ConversationModel, e?: Event | undefined) => void;
|
|
9749
9778
|
conversationMute: (conversation: import('../..').ConversationModel, e?: Event | undefined) => void;
|
|
9750
9779
|
conversationDelete: (conversation: import('../..').ConversationModel, e?: Event | undefined) => void;
|
|
@@ -9806,6 +9835,7 @@ declare const ConversationPreview: {
|
|
|
9806
9835
|
onClick?: ((e: Event, key?: string | undefined, conversation?: import('../..').ConversationModel | undefined) => any) | undefined;
|
|
9807
9836
|
onClose?: (() => any) | undefined;
|
|
9808
9837
|
onMarkConversationUnread?: ((conversation: import('../..').ConversationModel, e?: Event | undefined) => any) | undefined;
|
|
9838
|
+
onDropdownVisibleChange?: ((visible: boolean) => any) | undefined;
|
|
9809
9839
|
onConversationPin?: ((conversation: import('../..').ConversationModel, e?: Event | undefined) => any) | undefined;
|
|
9810
9840
|
onConversationMute?: ((conversation: import('../..').ConversationModel, e?: Event | undefined) => any) | undefined;
|
|
9811
9841
|
onConversationDelete?: ((conversation: import('../..').ConversationModel, e?: Event | undefined) => any) | undefined;
|
|
@@ -10075,6 +10105,7 @@ declare const ConversationPreview: {
|
|
|
10075
10105
|
click: (e: Event, key?: string | undefined, conversation?: import('../..').ConversationModel | undefined) => void;
|
|
10076
10106
|
close: () => void;
|
|
10077
10107
|
markConversationUnread: (conversation: import('../..').ConversationModel, e?: Event | undefined) => void;
|
|
10108
|
+
dropdownVisibleChange: (visible: boolean) => void;
|
|
10078
10109
|
conversationPin: (conversation: import('../..').ConversationModel, e?: Event | undefined) => void;
|
|
10079
10110
|
conversationMute: (conversation: import('../..').ConversationModel, e?: Event | undefined) => void;
|
|
10080
10111
|
conversationDelete: (conversation: import('../..').ConversationModel, e?: Event | undefined) => void;
|
|
@@ -10136,6 +10167,7 @@ declare const ConversationPreview: {
|
|
|
10136
10167
|
onClick?: ((e: Event, key?: string | undefined, conversation?: import('../..').ConversationModel | undefined) => any) | undefined;
|
|
10137
10168
|
onClose?: (() => any) | undefined;
|
|
10138
10169
|
onMarkConversationUnread?: ((conversation: import('../..').ConversationModel, e?: Event | undefined) => any) | undefined;
|
|
10170
|
+
onDropdownVisibleChange?: ((visible: boolean) => any) | undefined;
|
|
10139
10171
|
onConversationPin?: ((conversation: import('../..').ConversationModel, e?: Event | undefined) => any) | undefined;
|
|
10140
10172
|
onConversationMute?: ((conversation: import('../..').ConversationModel, e?: Event | undefined) => any) | undefined;
|
|
10141
10173
|
onConversationDelete?: ((conversation: import('../..').ConversationModel, e?: Event | undefined) => any) | undefined;
|
|
@@ -10298,6 +10330,7 @@ declare const ConversationPreview: {
|
|
|
10298
10330
|
click: (e: Event, key?: string | undefined, conversation?: import('../..').ConversationModel | undefined) => void;
|
|
10299
10331
|
close: () => void;
|
|
10300
10332
|
markConversationUnread: (conversation: import('../..').ConversationModel, e?: Event | undefined) => void;
|
|
10333
|
+
dropdownVisibleChange: (visible: boolean) => void;
|
|
10301
10334
|
conversationPin: (conversation: import('../..').ConversationModel, e?: Event | undefined) => void;
|
|
10302
10335
|
conversationMute: (conversation: import('../..').ConversationModel, e?: Event | undefined) => void;
|
|
10303
10336
|
conversationDelete: (conversation: import('../..').ConversationModel, e?: Event | undefined) => void;
|
|
@@ -10359,6 +10392,7 @@ declare const ConversationPreview: {
|
|
|
10359
10392
|
onClick?: ((e: Event, key?: string | undefined, conversation?: import('../..').ConversationModel | undefined) => any) | undefined;
|
|
10360
10393
|
onClose?: (() => any) | undefined;
|
|
10361
10394
|
onMarkConversationUnread?: ((conversation: import('../..').ConversationModel, e?: Event | undefined) => any) | undefined;
|
|
10395
|
+
onDropdownVisibleChange?: ((visible: boolean) => any) | undefined;
|
|
10362
10396
|
onConversationPin?: ((conversation: import('../..').ConversationModel, e?: Event | undefined) => any) | undefined;
|
|
10363
10397
|
onConversationMute?: ((conversation: import('../..').ConversationModel, e?: Event | undefined) => any) | undefined;
|
|
10364
10398
|
onConversationDelete?: ((conversation: import('../..').ConversationModel, e?: Event | undefined) => any) | undefined;
|
|
@@ -10695,6 +10729,7 @@ declare const ConversationPreview: {
|
|
|
10695
10729
|
click: (e: Event, key?: string | undefined, conversation?: import('../..').ConversationModel | undefined) => void;
|
|
10696
10730
|
close: () => void;
|
|
10697
10731
|
markConversationUnread: (conversation: import('../..').ConversationModel, e?: Event | undefined) => void;
|
|
10732
|
+
dropdownVisibleChange: (visible: boolean) => void;
|
|
10698
10733
|
conversationPin: (conversation: import('../..').ConversationModel, e?: Event | undefined) => void;
|
|
10699
10734
|
conversationMute: (conversation: import('../..').ConversationModel, e?: Event | undefined) => void;
|
|
10700
10735
|
conversationDelete: (conversation: import('../..').ConversationModel, e?: Event | undefined) => void;
|
|
@@ -10756,6 +10791,7 @@ declare const ConversationPreview: {
|
|
|
10756
10791
|
onClick?: ((e: Event, key?: string | undefined, conversation?: import('../..').ConversationModel | undefined) => any) | undefined;
|
|
10757
10792
|
onClose?: (() => any) | undefined;
|
|
10758
10793
|
onMarkConversationUnread?: ((conversation: import('../..').ConversationModel, e?: Event | undefined) => any) | undefined;
|
|
10794
|
+
onDropdownVisibleChange?: ((visible: boolean) => any) | undefined;
|
|
10759
10795
|
onConversationPin?: ((conversation: import('../..').ConversationModel, e?: Event | undefined) => any) | undefined;
|
|
10760
10796
|
onConversationMute?: ((conversation: import('../..').ConversationModel, e?: Event | undefined) => any) | undefined;
|
|
10761
10797
|
onConversationDelete?: ((conversation: import('../..').ConversationModel, e?: Event | undefined) => any) | undefined;
|
|
@@ -11030,6 +11066,7 @@ declare const ConversationPreview: {
|
|
|
11030
11066
|
click: (e: Event, key?: string | undefined, conversation?: import('../..').ConversationModel | undefined) => void;
|
|
11031
11067
|
close: () => void;
|
|
11032
11068
|
markConversationUnread: (conversation: import('../..').ConversationModel, e?: Event | undefined) => void;
|
|
11069
|
+
dropdownVisibleChange: (visible: boolean) => void;
|
|
11033
11070
|
conversationPin: (conversation: import('../..').ConversationModel, e?: Event | undefined) => void;
|
|
11034
11071
|
conversationMute: (conversation: import('../..').ConversationModel, e?: Event | undefined) => void;
|
|
11035
11072
|
conversationDelete: (conversation: import('../..').ConversationModel, e?: Event | undefined) => void;
|
|
@@ -11091,6 +11128,7 @@ declare const ConversationPreview: {
|
|
|
11091
11128
|
onClick?: ((e: Event, key?: string | undefined, conversation?: import('../..').ConversationModel | undefined) => any) | undefined;
|
|
11092
11129
|
onClose?: (() => any) | undefined;
|
|
11093
11130
|
onMarkConversationUnread?: ((conversation: import('../..').ConversationModel, e?: Event | undefined) => any) | undefined;
|
|
11131
|
+
onDropdownVisibleChange?: ((visible: boolean) => any) | undefined;
|
|
11094
11132
|
onConversationPin?: ((conversation: import('../..').ConversationModel, e?: Event | undefined) => any) | undefined;
|
|
11095
11133
|
onConversationMute?: ((conversation: import('../..').ConversationModel, e?: Event | undefined) => any) | undefined;
|
|
11096
11134
|
onConversationDelete?: ((conversation: import('../..').ConversationModel, e?: Event | undefined) => any) | undefined;
|
|
@@ -11360,6 +11398,7 @@ declare const ConversationPreview: {
|
|
|
11360
11398
|
click: (e: Event, key?: string | undefined, conversation?: import('../..').ConversationModel | undefined) => void;
|
|
11361
11399
|
close: () => void;
|
|
11362
11400
|
markConversationUnread: (conversation: import('../..').ConversationModel, e?: Event | undefined) => void;
|
|
11401
|
+
dropdownVisibleChange: (visible: boolean) => void;
|
|
11363
11402
|
conversationPin: (conversation: import('../..').ConversationModel, e?: Event | undefined) => void;
|
|
11364
11403
|
conversationMute: (conversation: import('../..').ConversationModel, e?: Event | undefined) => void;
|
|
11365
11404
|
conversationDelete: (conversation: import('../..').ConversationModel, e?: Event | undefined) => void;
|
|
@@ -11421,6 +11460,7 @@ declare const ConversationPreview: {
|
|
|
11421
11460
|
onClick?: ((e: Event, key?: string | undefined, conversation?: import('../..').ConversationModel | undefined) => any) | undefined;
|
|
11422
11461
|
onClose?: (() => any) | undefined;
|
|
11423
11462
|
onMarkConversationUnread?: ((conversation: import('../..').ConversationModel, e?: Event | undefined) => any) | undefined;
|
|
11463
|
+
onDropdownVisibleChange?: ((visible: boolean) => any) | undefined;
|
|
11424
11464
|
onConversationPin?: ((conversation: import('../..').ConversationModel, e?: Event | undefined) => any) | undefined;
|
|
11425
11465
|
onConversationMute?: ((conversation: import('../..').ConversationModel, e?: Event | undefined) => any) | undefined;
|
|
11426
11466
|
onConversationDelete?: ((conversation: import('../..').ConversationModel, e?: Event | undefined) => any) | undefined;
|
|
@@ -11583,6 +11623,7 @@ declare const ConversationPreview: {
|
|
|
11583
11623
|
click: (e: Event, key?: string | undefined, conversation?: import('../..').ConversationModel | undefined) => void;
|
|
11584
11624
|
close: () => void;
|
|
11585
11625
|
markConversationUnread: (conversation: import('../..').ConversationModel, e?: Event | undefined) => void;
|
|
11626
|
+
dropdownVisibleChange: (visible: boolean) => void;
|
|
11586
11627
|
conversationPin: (conversation: import('../..').ConversationModel, e?: Event | undefined) => void;
|
|
11587
11628
|
conversationMute: (conversation: import('../..').ConversationModel, e?: Event | undefined) => void;
|
|
11588
11629
|
conversationDelete: (conversation: import('../..').ConversationModel, e?: Event | undefined) => void;
|
|
@@ -11644,6 +11685,7 @@ declare const ConversationPreview: {
|
|
|
11644
11685
|
onClick?: ((e: Event, key?: string | undefined, conversation?: import('../..').ConversationModel | undefined) => any) | undefined;
|
|
11645
11686
|
onClose?: (() => any) | undefined;
|
|
11646
11687
|
onMarkConversationUnread?: ((conversation: import('../..').ConversationModel, e?: Event | undefined) => any) | undefined;
|
|
11688
|
+
onDropdownVisibleChange?: ((visible: boolean) => any) | undefined;
|
|
11647
11689
|
onConversationPin?: ((conversation: import('../..').ConversationModel, e?: Event | undefined) => any) | undefined;
|
|
11648
11690
|
onConversationMute?: ((conversation: import('../..').ConversationModel, e?: Event | undefined) => any) | undefined;
|
|
11649
11691
|
onConversationDelete?: ((conversation: import('../..').ConversationModel, e?: Event | undefined) => any) | undefined;
|
|
@@ -11870,6 +11912,7 @@ declare const ConversationPreviewUI: {
|
|
|
11870
11912
|
click: (e: Event, key?: string | undefined, conversation?: import('../..').ConversationModel | undefined) => void;
|
|
11871
11913
|
close: () => void;
|
|
11872
11914
|
markConversationUnread: (conversation: import('../..').ConversationModel, e?: Event | undefined) => void;
|
|
11915
|
+
dropdownVisibleChange: (visible: boolean) => void;
|
|
11873
11916
|
conversationPin: (conversation: import('../..').ConversationModel, e?: Event | undefined) => void;
|
|
11874
11917
|
conversationMute: (conversation: import('../..').ConversationModel, e?: Event | undefined) => void;
|
|
11875
11918
|
conversationDelete: (conversation: import('../..').ConversationModel, e?: Event | undefined) => void;
|
|
@@ -11931,6 +11974,7 @@ declare const ConversationPreviewUI: {
|
|
|
11931
11974
|
onClick?: ((e: Event, key?: string | undefined, conversation?: import('../..').ConversationModel | undefined) => any) | undefined;
|
|
11932
11975
|
onClose?: (() => any) | undefined;
|
|
11933
11976
|
onMarkConversationUnread?: ((conversation: import('../..').ConversationModel, e?: Event | undefined) => any) | undefined;
|
|
11977
|
+
onDropdownVisibleChange?: ((visible: boolean) => any) | undefined;
|
|
11934
11978
|
onConversationPin?: ((conversation: import('../..').ConversationModel, e?: Event | undefined) => any) | undefined;
|
|
11935
11979
|
onConversationMute?: ((conversation: import('../..').ConversationModel, e?: Event | undefined) => any) | undefined;
|
|
11936
11980
|
onConversationDelete?: ((conversation: import('../..').ConversationModel, e?: Event | undefined) => any) | undefined;
|
|
@@ -12205,6 +12249,7 @@ declare const ConversationPreviewUI: {
|
|
|
12205
12249
|
click: (e: Event, key?: string | undefined, conversation?: import('../..').ConversationModel | undefined) => void;
|
|
12206
12250
|
close: () => void;
|
|
12207
12251
|
markConversationUnread: (conversation: import('../..').ConversationModel, e?: Event | undefined) => void;
|
|
12252
|
+
dropdownVisibleChange: (visible: boolean) => void;
|
|
12208
12253
|
conversationPin: (conversation: import('../..').ConversationModel, e?: Event | undefined) => void;
|
|
12209
12254
|
conversationMute: (conversation: import('../..').ConversationModel, e?: Event | undefined) => void;
|
|
12210
12255
|
conversationDelete: (conversation: import('../..').ConversationModel, e?: Event | undefined) => void;
|
|
@@ -12266,6 +12311,7 @@ declare const ConversationPreviewUI: {
|
|
|
12266
12311
|
onClick?: ((e: Event, key?: string | undefined, conversation?: import('../..').ConversationModel | undefined) => any) | undefined;
|
|
12267
12312
|
onClose?: (() => any) | undefined;
|
|
12268
12313
|
onMarkConversationUnread?: ((conversation: import('../..').ConversationModel, e?: Event | undefined) => any) | undefined;
|
|
12314
|
+
onDropdownVisibleChange?: ((visible: boolean) => any) | undefined;
|
|
12269
12315
|
onConversationPin?: ((conversation: import('../..').ConversationModel, e?: Event | undefined) => any) | undefined;
|
|
12270
12316
|
onConversationMute?: ((conversation: import('../..').ConversationModel, e?: Event | undefined) => any) | undefined;
|
|
12271
12317
|
onConversationDelete?: ((conversation: import('../..').ConversationModel, e?: Event | undefined) => any) | undefined;
|
|
@@ -12535,6 +12581,7 @@ declare const ConversationPreviewUI: {
|
|
|
12535
12581
|
click: (e: Event, key?: string | undefined, conversation?: import('../..').ConversationModel | undefined) => void;
|
|
12536
12582
|
close: () => void;
|
|
12537
12583
|
markConversationUnread: (conversation: import('../..').ConversationModel, e?: Event | undefined) => void;
|
|
12584
|
+
dropdownVisibleChange: (visible: boolean) => void;
|
|
12538
12585
|
conversationPin: (conversation: import('../..').ConversationModel, e?: Event | undefined) => void;
|
|
12539
12586
|
conversationMute: (conversation: import('../..').ConversationModel, e?: Event | undefined) => void;
|
|
12540
12587
|
conversationDelete: (conversation: import('../..').ConversationModel, e?: Event | undefined) => void;
|
|
@@ -12596,6 +12643,7 @@ declare const ConversationPreviewUI: {
|
|
|
12596
12643
|
onClick?: ((e: Event, key?: string | undefined, conversation?: import('../..').ConversationModel | undefined) => any) | undefined;
|
|
12597
12644
|
onClose?: (() => any) | undefined;
|
|
12598
12645
|
onMarkConversationUnread?: ((conversation: import('../..').ConversationModel, e?: Event | undefined) => any) | undefined;
|
|
12646
|
+
onDropdownVisibleChange?: ((visible: boolean) => any) | undefined;
|
|
12599
12647
|
onConversationPin?: ((conversation: import('../..').ConversationModel, e?: Event | undefined) => any) | undefined;
|
|
12600
12648
|
onConversationMute?: ((conversation: import('../..').ConversationModel, e?: Event | undefined) => any) | undefined;
|
|
12601
12649
|
onConversationDelete?: ((conversation: import('../..').ConversationModel, e?: Event | undefined) => any) | undefined;
|
|
@@ -1,6 +1,7 @@
|
|
|
1
|
-
import { defineComponent as E, computed as k, createElementBlock as o, openBlock as t, normalizeClass as n, unref as e, createBlock as s, withCtx as r, createVNode as c, renderSlot as b, createElementVNode as I, Fragment as f, renderList as
|
|
1
|
+
import { defineComponent as E, computed as k, createElementBlock as o, openBlock as t, normalizeClass as n, unref as e, createBlock as s, withCtx as r, createVNode as c, renderSlot as b, createElementVNode as I, Fragment as f, renderList as P, resolveDynamicComponent as h, mergeProps as C } from "vue";
|
|
2
2
|
import { useUIKit as D, IconPlus as q } from "@tencentcloud/uikit-base-component-vue3";
|
|
3
|
-
import { P as A, a as x, b as L
|
|
3
|
+
import { P as A, a as x, b as L } from "../../../PopoverPortal-DV6zFXcf.js";
|
|
4
|
+
import { P as N } from "../../../PopoverTrigger-DIjW4PKa.js";
|
|
4
5
|
import S from "./FilePicker.js";
|
|
5
6
|
import V from "./ImagePicker.js";
|
|
6
7
|
import z from "./VideoPicker.js";
|
|
@@ -11,7 +12,7 @@ const p = {
|
|
|
11
12
|
"attachment-picker--expanded": "_attachment-picker--expanded_1bduq_19",
|
|
12
13
|
"attachment-picker__item": "_attachment-picker__item_1bduq_24",
|
|
13
14
|
"attachment-picker__item-icon": "_attachment-picker__item-icon_1bduq_48"
|
|
14
|
-
},
|
|
15
|
+
}, K = /* @__PURE__ */ E({
|
|
15
16
|
__name: "AttachmentPicker",
|
|
16
17
|
props: {
|
|
17
18
|
attachmentPickerMode: { default: "collapsed" }
|
|
@@ -36,7 +37,7 @@ const p = {
|
|
|
36
37
|
}, [
|
|
37
38
|
i.value ? (t(), s(e(A), { key: 0 }, {
|
|
38
39
|
default: r(() => [
|
|
39
|
-
c(e(
|
|
40
|
+
c(e(N), { as: "div" }, {
|
|
40
41
|
default: r(() => [
|
|
41
42
|
b(m.$slots, "default", {}, () => [
|
|
42
43
|
c(e(q), {
|
|
@@ -47,9 +48,9 @@ const p = {
|
|
|
47
48
|
]),
|
|
48
49
|
_: 3
|
|
49
50
|
}),
|
|
50
|
-
c(e(
|
|
51
|
+
c(e(x), null, {
|
|
51
52
|
default: r(() => [
|
|
52
|
-
c(e(
|
|
53
|
+
c(e(L), {
|
|
53
54
|
side: "top",
|
|
54
55
|
align: "start",
|
|
55
56
|
"side-offset": 5
|
|
@@ -58,7 +59,7 @@ const p = {
|
|
|
58
59
|
I("div", {
|
|
59
60
|
class: n(e(p)["attachment-picker__popup"])
|
|
60
61
|
}, [
|
|
61
|
-
(t(!0), o(f, null,
|
|
62
|
+
(t(!0), o(f, null, P(u.value, (a, l) => (t(), s(h(a.Component), C({ key: l }, { ref_for: !0 }, a.props), null, 16))), 128))
|
|
62
63
|
], 2)
|
|
63
64
|
]),
|
|
64
65
|
_: 1
|
|
@@ -72,13 +73,13 @@ const p = {
|
|
|
72
73
|
key: 1,
|
|
73
74
|
class: n(e(p)["attachment-picker--expanded"])
|
|
74
75
|
}, [
|
|
75
|
-
(t(!0), o(f, null,
|
|
76
|
+
(t(!0), o(f, null, P(u.value, (a, l) => (t(), s(h(a.Component), C({ key: l }, { ref_for: !0 }, a.props), null, 16))), 128))
|
|
76
77
|
], 2))
|
|
77
78
|
], 2));
|
|
78
79
|
}
|
|
79
80
|
});
|
|
80
81
|
export {
|
|
81
|
-
|
|
82
|
+
K as AttachmentPicker,
|
|
82
83
|
S as FilePicker,
|
|
83
84
|
V as ImagePicker,
|
|
84
85
|
z as VideoPicker
|
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
import { defineComponent as g, ref as C, useCssModule as E, onMounted as P, createBlock as h, openBlock as _, unref as e, withCtx as s, createVNode as i, createElementVNode as n, mergeProps as x, renderSlot as M, normalizeClass as a, createElementBlock as u, Fragment as I, renderList as $ } from "vue";
|
|
2
2
|
import { useUIKit as z, IconEmoji as B } from "@tencentcloud/uikit-base-component-vue3";
|
|
3
3
|
import { c as O } from "../../../index-DPczIrgX.js";
|
|
4
|
-
import { P as T, a as y, b as S
|
|
4
|
+
import { P as T, a as y, b as S } from "../../../PopoverPortal-DV6zFXcf.js";
|
|
5
|
+
import { P as U } from "../../../PopoverTrigger-DIjW4PKa.js";
|
|
5
6
|
import { View as w } from "../../../baseComp/View/index.js";
|
|
6
7
|
import { emojiUrlMap as c, emojiBaseUrl as m } from "../../../constants/emoji.js";
|
|
7
8
|
import { transformTextWithEmojiKeyToName as N } from "../../../utils/emoji.js";
|
|
@@ -18,7 +19,7 @@ const J = ["onClick"], L = ["src", "alt"], R = /* @__PURE__ */ g({
|
|
|
18
19
|
disabled: { type: Boolean, default: !1 }
|
|
19
20
|
},
|
|
20
21
|
setup(f) {
|
|
21
|
-
const
|
|
22
|
+
const r = f, d = C(!1), o = E(), { t: k } = z(), { insertContent: j } = V();
|
|
22
23
|
P(() => {
|
|
23
24
|
Object.values(c).forEach((t) => {
|
|
24
25
|
const p = new Image();
|
|
@@ -26,7 +27,7 @@ const J = ["onClick"], L = ["src", "alt"], R = /* @__PURE__ */ g({
|
|
|
26
27
|
});
|
|
27
28
|
});
|
|
28
29
|
const b = (t) => {
|
|
29
|
-
|
|
30
|
+
r.disabled || (d.value = t);
|
|
30
31
|
};
|
|
31
32
|
function v(t) {
|
|
32
33
|
t && j([
|
|
@@ -47,9 +48,9 @@ const J = ["onClick"], L = ["src", "alt"], R = /* @__PURE__ */ g({
|
|
|
47
48
|
"onUpdate:open": b
|
|
48
49
|
}, {
|
|
49
50
|
default: s(() => [
|
|
50
|
-
i(e(
|
|
51
|
+
i(e(U), {
|
|
51
52
|
as: "div",
|
|
52
|
-
disabled:
|
|
53
|
+
disabled: r.disabled
|
|
53
54
|
}, {
|
|
54
55
|
default: s(() => [
|
|
55
56
|
n("div", x({
|
|
@@ -57,23 +58,23 @@ const J = ["onClick"], L = ["src", "alt"], R = /* @__PURE__ */ g({
|
|
|
57
58
|
class: e(O)(
|
|
58
59
|
e(o)["emoji-picker__button"],
|
|
59
60
|
{
|
|
60
|
-
[e(o).disabled]:
|
|
61
|
+
[e(o).disabled]: r.disabled
|
|
61
62
|
}
|
|
62
63
|
)
|
|
63
64
|
}, t.$attrs), [
|
|
64
65
|
M(t.$slots, "default", {}, () => [
|
|
65
66
|
i(e(B), {
|
|
66
67
|
class: a(e(o)["emoji-picker__icon"]),
|
|
67
|
-
size:
|
|
68
|
+
size: r.iconSize
|
|
68
69
|
}, null, 8, ["class", "size"])
|
|
69
70
|
])
|
|
70
71
|
], 16)
|
|
71
72
|
]),
|
|
72
73
|
_: 3
|
|
73
74
|
}, 8, ["disabled"]),
|
|
74
|
-
i(e(
|
|
75
|
+
i(e(y), null, {
|
|
75
76
|
default: s(() => [
|
|
76
|
-
i(e(
|
|
77
|
+
i(e(S), {
|
|
77
78
|
side: "top",
|
|
78
79
|
align: "start",
|
|
79
80
|
"side-offset": 5
|
|
@@ -83,15 +84,15 @@ const J = ["onClick"], L = ["src", "alt"], R = /* @__PURE__ */ g({
|
|
|
83
84
|
n("div", {
|
|
84
85
|
class: a(e(o)["emoji-picker__list"])
|
|
85
86
|
}, [
|
|
86
|
-
(_(!0), u(I, null, $(Object.keys(e(c)), (
|
|
87
|
-
key:
|
|
87
|
+
(_(!0), u(I, null, $(Object.keys(e(c)), (l) => (_(), u("div", {
|
|
88
|
+
key: l,
|
|
88
89
|
class: a(e(o)["emoji-picker__list-item"]),
|
|
89
|
-
onClick: (G) => v(
|
|
90
|
+
onClick: (G) => v(l)
|
|
90
91
|
}, [
|
|
91
92
|
n("img", {
|
|
92
93
|
class: a(e(o)["emoji-picker__list-item"]),
|
|
93
|
-
src: e(m) + e(c)[
|
|
94
|
-
alt: e(k)(`Emoji.${
|
|
94
|
+
src: e(m) + e(c)[l],
|
|
95
|
+
alt: e(k)(`Emoji.${l}`)
|
|
95
96
|
}, null, 10, L)
|
|
96
97
|
], 10, J))), 128))
|
|
97
98
|
], 2)
|
|
@@ -117,7 +118,7 @@ const J = ["onClick"], L = ["src", "alt"], R = /* @__PURE__ */ g({
|
|
|
117
118
|
"emoji-picker__list-item": "_emoji-picker__list-item_kxj4t_36"
|
|
118
119
|
}, D = {
|
|
119
120
|
$style: q
|
|
120
|
-
},
|
|
121
|
+
}, re = /* @__PURE__ */ F(R, [["__cssModules", D]]);
|
|
121
122
|
export {
|
|
122
|
-
|
|
123
|
+
re as default
|
|
123
124
|
};
|