tuikit-atomicx-vue3 3.4.1 → 3.5.0-beta.7
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/.eslintrc.cjs +1 -0
- package/dist/{MessageInput.vue_vue_type_script_setup_true_lang-D1G-LitO.js → MessageInput.vue_vue_type_script_setup_true_lang-jPzZ5INK.js} +38 -36
- package/dist/baseComp/Modal/Modal.js +431 -23
- package/dist/chat/index.d.ts +68 -53
- package/dist/chat/server.js +15 -15
- package/dist/components/AudioSetting/AudioMediaControl.js +39 -41
- package/dist/components/AudioSetting/AudioSettingTab.js +10 -10
- package/dist/components/AudioSetting/MicrophoneSelect.js +8 -8
- package/dist/components/AudioSetting/SpeakerSelect.js +9 -9
- package/dist/components/AudioSettingPanel/i18n/en-US/index.d.ts +1 -0
- package/dist/components/AudioSettingPanel/i18n/en-US/index.js +2 -1
- package/dist/components/AudioSettingPanel/i18n/zh-CN/index.d.ts +1 -0
- package/dist/components/AudioSettingPanel/i18n/zh-CN/index.js +2 -1
- package/dist/components/AudioSettingPanel/index.js +81 -73
- package/dist/components/BarrageInput/BarrageInputH5.js +9 -9
- package/dist/components/BarrageInput/EmojiPicker/EmojiPicker.js +3 -3
- package/dist/components/BarrageInput/MessageInputState.d.ts +28 -0
- package/dist/components/BarrageInput/MessageInputState.js +82 -0
- package/dist/components/BarrageInput/TextEditor/CharacterCountExtension.js +1 -1
- package/dist/components/BarrageInput/TextEditor/EditorCore.js +5 -4
- package/dist/components/BarrageInput/TextEditor/index.js +7 -7
- package/dist/components/BarrageInput/type.d.ts +17 -0
- package/dist/components/BarrageInput/type.js +4 -0
- package/dist/components/BarrageInput/utils.d.ts +30 -0
- package/dist/components/BarrageInput/utils.js +41 -0
- package/dist/components/BarrageList/BarrageList.js +80 -110
- package/dist/components/BarrageList/BarrageList.vue.d.ts +0 -29
- package/dist/components/BarrageList/BarrageListH5.js +95 -122
- package/dist/components/BarrageList/BarrageListH5.vue.d.ts +0 -29
- package/dist/components/BarrageList/BarrageListState.d.ts +58 -0
- package/dist/components/BarrageList/BarrageListState.js +106 -0
- package/dist/components/BarrageList/Message/MessageLayout/MessageBubble/MessageBubble.js +16 -24
- package/dist/components/BarrageList/Message/MessageLayout/MessageBubble/MessageBubble.vue.d.ts +5 -5
- package/dist/components/BarrageList/Message/MessageLayout/MessageLayout.js +48 -73
- package/dist/components/BarrageList/Message/MessageLayout/MessageLayout.vue.d.ts +5 -7
- package/dist/components/BarrageList/Message/TextMessage/TextMessage.js +70 -76
- package/dist/components/BarrageList/Message/TextMessage/TextMessage.vue.d.ts +6 -6
- package/dist/components/BarrageList/Message/TextMessage/emoji.d.ts +5 -0
- package/dist/components/BarrageList/Message/TextMessage/emoji.js +134 -0
- package/dist/components/BarrageList/index.d.ts +0 -36
- package/dist/components/CameraButton/index.js +18 -19
- package/dist/components/ChatSetting/GroupChatSetting/GroupChatSetting.js +2 -1
- package/dist/components/CoGuestPanel/CoGuestPanel.js +60 -60
- package/dist/components/CoHostPanel/BattlePanel.js +25 -25
- package/dist/components/CoHostPanel/CoHostPanel.js +60 -55
- package/dist/components/CoHostPanel/ConfigSettingPanel.js +49 -55
- package/dist/components/CoHostPanel/ConnectionPanel.js +129 -120
- package/dist/components/CoHostPanel/RecommendHostList.js +39 -36
- package/dist/components/CoHostPanel/constants.d.ts +3 -0
- package/dist/components/CoHostPanel/constants.js +6 -0
- package/dist/components/CoHostPanel/i18n/en-US/index.d.ts +1 -0
- package/dist/components/CoHostPanel/i18n/en-US/index.js +2 -1
- package/dist/components/CoHostPanel/i18n/zh-CN/index.d.ts +1 -0
- package/dist/components/CoHostPanel/i18n/zh-CN/index.js +3 -2
- package/dist/components/ContactList/ContactInfo/BlacklistInfo/BlacklistInfo.js +6 -6
- package/dist/components/ContactList/ContactInfo/ContactInfo.js +1 -1
- package/dist/components/ContactList/ContactInfo/FriendApplicationInfo/FriendApplicationInfo.js +1 -1
- package/dist/components/ContactList/ContactInfo/FriendInfo/FriendInfo.js +9 -9
- package/dist/components/ContactList/ContactInfo/GroupApplicationInfo/GroupApplicationInfo.js +1 -1
- package/dist/components/ContactList/ContactInfo/GroupInfo/GroupInfo.js +4 -4
- package/dist/components/ContactList/ContactInfo/SearchGroupInfo/SearchGroupInfo.js +8 -8
- package/dist/components/ContactList/ContactInfo/SearchUserInfo/SearchUserInfo.js +7 -7
- package/dist/components/ContactList/ContactList.js +7 -7
- package/dist/components/ContactList/ContactListItem/BlacklistItem/BlacklistItem.js +8 -8
- package/dist/components/ContactList/ContactListItem/FriendApplicationItem/FriendApplicationItem.js +5 -5
- package/dist/components/ContactList/ContactListItem/FriendItem/FriendItem.js +5 -5
- package/dist/components/ContactList/ContactListItem/GroupApplicationItem/GroupApplicationItem.js +1 -1
- package/dist/components/ContactList/ContactListItem/GroupItem/GroupItem.js +1 -1
- package/dist/components/ContactList/ContactSearch/ContactSearch.js +6 -6
- package/dist/components/ConversationList/ConversationActions/ConversationActions.js +49 -51
- package/dist/components/ConversationList/ConversationCreate/ConversationCreate.js +9 -9
- package/dist/components/ConversationList/ConversationList.js +4 -4
- package/dist/components/ConversationList/ConversationList.vue.d.ts +10 -10
- package/dist/components/ConversationList/ConversationPreview/ConversationPreview.vue.d.ts +10 -10
- package/dist/components/ConversationList/ConversationPreview/ConversationPreviewTimestamp.js +31 -29
- package/dist/components/ConversationList/ConversationPreview/ConversationPreviewUI.js +20 -20
- package/dist/components/ConversationList/ConversationPreview/ConversationPreviewUI.vue.d.ts +2 -2
- package/dist/components/ConversationList/ConversationPreview/index.js +1 -1
- package/dist/components/ConversationList/index.d.ts +30 -30
- package/dist/components/LiveAudienceList/LiveAudienceList.js +44 -45
- package/dist/components/LiveAudienceList/LiveAudienceListH5.js +7 -7
- package/dist/components/LiveAudienceList/UserActionMenu.js +57 -64
- package/dist/components/LiveList/LiveList.js +23 -23
- package/dist/components/LiveList/LiveListH5.js +38 -38
- package/dist/components/LiveScenePanel/CameraSettingDialog.js +10 -10
- package/dist/components/LiveScenePanel/MaterialItem.js +15 -15
- package/dist/components/LiveScenePanel/index.js +4 -4
- package/dist/components/{LiveCoreView → LiveView}/CoreViewDecorate/BattleDecorate.js +58 -58
- package/dist/components/{LiveCoreView → LiveView}/CoreViewDecorate/BattleUserDecorate.js +56 -49
- package/dist/components/{LiveCoreView → LiveView}/CoreViewDecorate/CoHostDecorate.js +6 -6
- package/dist/components/{LiveCoreView → LiveView}/CoreViewDecorate/LiveCoreDecorate.js +1 -1
- package/dist/components/{LiveCoreView → LiveView}/DefaultStreamViewUI.js +46 -43
- package/dist/components/LiveView/PlayerControl/AudioControl.js +133 -0
- package/dist/components/{LiveCoreView → LiveView}/PlayerControl/AudioControl.vue.d.ts +10 -6
- package/dist/components/LiveView/PlayerControl/MultiResolution.js +73 -0
- package/dist/components/LiveView/PlayerControl/PlayerControl.js +168 -0
- package/dist/components/{LiveCoreView → LiveView}/PlayerControl/PlayerControlState.d.ts +2 -2
- package/dist/components/LiveView/PlayerControl/PlayerControlState.js +222 -0
- package/dist/components/{LiveCoreView → LiveView}/PlayerControl/utils/domHelpers.d.ts +8 -1
- package/dist/components/LiveView/PlayerControl/utils/domHelpers.js +132 -0
- package/dist/components/{LiveCoreView/i18n/zh-CN → LiveView/i18n/en-US}/index.d.ts +3 -2
- package/dist/components/{LiveCoreView → LiveView}/i18n/en-US/index.js +4 -3
- package/dist/components/{LiveCoreView/i18n/en-US → LiveView/i18n/zh-CN}/index.d.ts +3 -2
- package/dist/components/{LiveCoreView → LiveView}/i18n/zh-CN/index.js +4 -3
- package/dist/components/LiveView/index.d.ts +79 -0
- package/dist/components/{LiveCoreView → LiveView}/index.js +44 -42
- package/dist/components/MessageInput/AudioCallPicker/AudioCallPicker.js +63 -65
- package/dist/components/MessageInput/EmojiPicker/EmojiPicker.js +88 -84
- package/dist/components/MessageInput/MessageInput.js +1 -1
- package/dist/components/MessageInput/MessageInput.vue.d.ts +5 -2
- package/dist/components/MessageInput/TextEditor/EditorCore.d.ts +3 -1
- package/dist/components/MessageInput/TextEditor/EditorCore.js +51 -63
- package/dist/components/MessageInput/TextEditor/TextEditor.vue.d.ts +6 -2
- package/dist/components/MessageInput/TextEditor/extensions/characterCountExtension.d.ts +19 -0
- package/dist/components/MessageInput/TextEditor/extensions/characterCountExtension.js +74 -0
- package/dist/components/MessageInput/TextEditor/extensions/imageExtension.d.ts +2 -0
- package/dist/components/MessageInput/TextEditor/extensions/imageExtension.js +62 -0
- package/dist/components/MessageInput/TextEditor/index.js +45 -35
- package/dist/components/MessageInput/VideoCallPicker/VideoCallPicker.js +67 -69
- package/dist/components/MessageInput/i18n/index.d.ts +4 -0
- package/dist/components/MessageInput/i18n/zh-CN.d.ts +4 -0
- package/dist/components/MessageInput/i18n/zh-CN.js +5 -1
- package/dist/components/MessageInput/index.d.ts +36 -6
- package/dist/components/MessageInput/index.js +1 -1
- package/dist/components/MessageList/Message/AudioMessage/WaveForm.js +24 -34
- package/dist/components/MessageList/Message/CustomMessage/CallMessage/CallMessage.js +29 -28
- package/dist/components/MessageList/Message/GroupTipMessage/index.js +13 -13
- package/dist/components/MessageList/Message/Message.vue.d.ts +1 -1
- package/dist/components/MessageList/Message/MessageLayout/MessageLayout.js +63 -69
- package/dist/components/MessageList/Message/VideoMessage/VideoMessage.js +48 -53
- package/dist/components/MessageList/Message/VideoMessage/VideoMessage.vue.d.ts +8 -8
- package/dist/components/MessageList/MessageList.js +8 -6
- package/dist/components/MessageList/MessageList.vue.d.ts +2 -2
- package/dist/components/MessageList/i18n/en-US.d.ts +65 -1
- package/dist/components/MessageList/i18n/en-US.js +66 -2
- package/dist/components/MessageList/i18n/index.d.ts +128 -0
- package/dist/components/MessageList/i18n/index.js +6 -6
- package/dist/components/MessageList/i18n/zh-CN.d.ts +65 -1
- package/dist/components/MessageList/i18n/zh-CN.js +64 -0
- package/dist/components/MessageList/index.d.ts +20 -20
- package/dist/components/MicButton/index.js +11 -11
- package/dist/components/Search/SearchAdvanced/DateRangePicker/DateRangePicker.js +172 -174
- package/dist/components/Search/SearchAdvanced/MessageAdvanced/MessageAdvanced.js +58 -60
- package/dist/components/Search/SearchAdvanced/SearchAdvanced.js +28 -30
- package/dist/components/Search/SearchAdvanced/SearchTab/SearchTab.js +22 -24
- package/dist/components/Search/SearchAdvanced/Slider/Slider.js +26 -28
- package/dist/components/Search/SearchAdvanced/UserAdvanced/UserAdvanced.js +133 -135
- package/dist/components/Search/SearchBar/SearchBar.js +56 -58
- package/dist/components/StreamMixer/LocalMixer/MixerControl.js +12 -12
- package/dist/components/StreamMixer/LocalMixer/index.js +66 -63
- package/dist/components/StreamMixer/index.js +6 -6
- package/dist/components/StreamView/Layout/CustomLayout.js +8 -8
- package/dist/components/StreamView/Layout/FloatLayout.js +124 -127
- package/dist/components/StreamView/Layout/GridLayout.js +5 -5
- package/dist/components/StreamView/index.js +25 -33
- package/dist/components/StreamView/manager/mediaManager.js +54 -60
- package/dist/components/UIKitModal/UIKitModal.d.ts +7 -0
- package/dist/components/UIKitModal/UIKitModal.js +156 -0
- package/dist/components/UIKitModal/index.d.ts +1 -0
- package/dist/components/UIKitModal/index.js +4 -0
- package/dist/components/{BarrageList/Message/RecalledMessage/RecalledMessage.vue.d.ts → UIKitModal/index.vue.d.ts} +24 -14
- package/dist/components/UIKitModal/type.d.ts +21 -0
- package/dist/components/UIKitModal/type.js +1 -0
- package/dist/components/UserPicker/UserPicker.js +1 -2
- package/dist/components/UserPicker/components/SelectedPanel/SelectedPanel.js +19 -18
- package/dist/components/UserPicker/hooks/useSearchFilter.d.ts +2 -2
- package/dist/components/UserPicker/hooks/useSearchFilter.js +39 -31
- package/dist/components/UserPicker/i18n/en-US.d.ts +1 -0
- package/dist/components/UserPicker/i18n/en-US.js +2 -1
- package/dist/components/UserPicker/i18n/index.d.ts +2 -0
- package/dist/components/UserPicker/i18n/zh-CN.d.ts +1 -0
- package/dist/components/UserPicker/i18n/zh-CN.js +2 -1
- package/dist/components/UserPicker/index.d.ts +2 -2
- package/dist/components/UserPicker/type.d.ts +1 -1
- package/dist/components/VideoSetting/CameraSelect.js +8 -8
- package/dist/components/VideoSetting/VideoMediaControl.js +10 -10
- package/dist/components/VideoSetting/VideoPreview.js +9 -9
- package/dist/components/VideoSetting/VideoProfile.js +6 -6
- package/dist/components/VideoSetting/VideoSettingTab.js +40 -39
- package/dist/components/VideoSettingPanel/CameraSelect.js +8 -8
- package/dist/components/VideoSettingPanel/VideoPreview.js +1 -1
- package/dist/components/VideoSettingPanel/VideoProfile.js +18 -18
- package/dist/hooks/useAudioControl.d.ts +3 -3
- package/dist/hooks/useAudioControl.js +32 -30
- package/dist/hooks/useRoomEngine.js +6 -6
- package/dist/index-B_-9wgM4.js +64 -0
- package/dist/{index-D-KJvDvy.js → index-DMfTuy0v.js} +574 -631
- package/dist/{index-D88ja_7_.js → index-DV6o6s43.js} +1691 -1660
- package/dist/index.d.ts +3 -1
- package/dist/index.js +180 -156
- package/dist/report/MetricsKey.d.ts +16 -0
- package/dist/report/MetricsKey.js +4 -0
- package/dist/report/dataReport.d.ts +12 -0
- package/dist/report/dataReport.js +45 -0
- package/dist/report/index.d.ts +4 -0
- package/dist/report/index.js +6 -0
- package/dist/rtc/index.d.ts +6 -81
- package/dist/rtc/index.js +53 -52
- package/dist/rtc/server.js +45 -40
- package/dist/states/BarrageState/BarrageState.d.ts +74 -0
- package/dist/states/BarrageState/BarrageState.js +80 -0
- package/dist/states/BarrageState/index.d.ts +1 -0
- package/dist/states/BarrageState/index.js +5 -0
- package/dist/states/{BattleState.d.ts → BattleState/BattleState.d.ts} +10 -11
- package/dist/states/BattleState/BattleState.js +203 -0
- package/dist/states/BattleState/index.d.ts +1 -0
- package/dist/states/BattleState/index.js +4 -0
- package/dist/states/CoGuestState.d.ts +24 -94
- package/dist/states/CoGuestState.js +297 -189
- package/dist/states/CoHostState/CoHostState.d.ts +2 -2
- package/dist/states/CoHostState/CoHostState.js +135 -131
- package/dist/states/{DeviceState.d.ts → DeviceState/DeviceState.d.ts} +25 -13
- package/dist/states/DeviceState/DeviceState.js +314 -0
- package/dist/states/DeviceState/index.d.ts +1 -0
- package/dist/states/DeviceState/index.js +4 -0
- package/dist/states/LiveAudienceState.d.ts +3 -1
- package/dist/states/LiveAudienceState.js +106 -63
- package/dist/states/{LiveState/index.d.ts → LiveListState/LiveListState.d.ts} +13 -8
- package/dist/states/LiveListState/LiveListState.js +285 -0
- package/dist/states/LiveListState/index.d.ts +1 -0
- package/dist/states/LiveListState/index.js +4 -0
- package/dist/states/LiveMonitorState/api/http.js +147 -129
- package/dist/states/LiveMonitorState/index.js +67 -62
- package/dist/states/LiveMonitorState/player/adapters/trtc.js +6 -6
- package/dist/states/LiveSeatState/index.d.ts +46 -11
- package/dist/states/LiveSeatState/index.js +34 -15
- package/dist/states/LiveSeatState/seatEventManager.d.ts +2 -0
- package/dist/states/LiveSeatState/seatEventManager.js +63 -42
- package/dist/states/LiveSeatState/seatManager.d.ts +34 -5
- package/dist/states/LiveSeatState/seatManager.js +131 -29
- package/dist/states/LiveSeatState/store.d.ts +5 -5
- package/dist/states/LiveSeatState/store.js +12 -10
- package/dist/states/LiveSeatState/usePlayStream/RTCStreamManager.js +1 -1
- package/dist/states/LiveSeatState/usePlayStream/RTCStreamPlayer.js +1 -1
- package/dist/states/LiveSeatState/usePlayStream/index.js +30 -28
- package/dist/states/LoginState.d.ts +23 -0
- package/dist/states/MessageInputState/MessageInputState.d.ts +41 -7
- package/dist/states/MessageInputState/MessageInputState.js +60 -59
- package/dist/states/MessageInputState/utils.d.ts +8 -1
- package/dist/states/MessageInputState/utils.js +30 -10
- package/dist/states/SeatStore.js +82 -83
- package/dist/states/UIKitModalState/UIKitModalState.d.ts +17 -0
- package/dist/states/UIKitModalState/UIKitModalState.js +63 -0
- package/dist/states/UIKitModalState/index.d.ts +1 -0
- package/dist/states/UIKitModalState/index.js +4 -0
- package/dist/states/{VideoMixerState.d.ts → VideoMixerState/VideoMixerState.d.ts} +1 -1
- package/dist/states/VideoMixerState/VideoMixerState.js +269 -0
- package/dist/states/VideoMixerState/index.d.ts +1 -0
- package/dist/states/VideoMixerState/index.js +4 -0
- package/dist/styles/index.css +1 -1
- package/dist/types/audience.d.ts +21 -0
- package/dist/types/audience.js +4 -1
- package/dist/types/battle.d.ts +75 -3
- package/dist/types/battle.js +5 -1
- package/dist/types/coGuest.d.ts +72 -5
- package/dist/types/coGuest.js +4 -2
- package/dist/types/device.d.ts +38 -17
- package/dist/types/device.js +10 -8
- package/dist/types/index.d.ts +2 -2
- package/dist/types/index.js +96 -80
- package/dist/types/live.d.ts +36 -21
- package/dist/types/live.js +6 -4
- package/dist/types/seat.d.ts +23 -4
- package/dist/types/seat.js +7 -1
- package/dist/utils/call.d.ts +1 -1
- package/dist/utils/call.js +78 -79
- package/dist/utils/eventCenter.d.ts +88 -0
- package/dist/utils/eventCenter.js +161 -0
- package/package.json +4 -3
- package/src/chat/server.ts +0 -1
- package/src/components/AudioSetting/AudioMediaControl.vue +1 -3
- package/src/components/AudioSetting/AudioSettingTab.vue +1 -2
- package/src/components/AudioSetting/MicrophoneSelect.vue +1 -2
- package/src/components/AudioSetting/SpeakerSelect.vue +1 -2
- package/src/components/AudioSettingPanel/i18n/en-US/index.ts +1 -0
- package/src/components/AudioSettingPanel/i18n/zh-CN/index.ts +1 -0
- package/src/components/AudioSettingPanel/index.vue +4 -2
- package/src/components/BarrageInput/BarrageInputH5.vue +1 -1
- package/src/components/BarrageInput/EmojiPicker/EmojiPicker.vue +1 -1
- package/src/components/BarrageInput/MessageInputState.ts +160 -0
- package/src/components/BarrageInput/TextEditor/TextEditor.vue +1 -1
- package/src/components/BarrageInput/type.ts +26 -0
- package/src/components/BarrageInput/utils.ts +45 -0
- package/src/components/BarrageList/BarrageList.vue +61 -117
- package/src/components/BarrageList/BarrageListH5.vue +75 -159
- package/src/components/BarrageList/BarrageListState.ts +223 -0
- package/src/components/BarrageList/Message/MessageLayout/MessageBubble/MessageBubble.vue +8 -55
- package/src/components/BarrageList/Message/MessageLayout/MessageLayout.vue +19 -44
- package/src/components/BarrageList/Message/TextMessage/TextMessage.vue +69 -96
- package/src/components/BarrageList/Message/TextMessage/emoji.ts +132 -0
- package/src/components/CameraButton/index.vue +0 -1
- package/src/components/ChatSetting/GroupChatSetting/GroupChatSetting.vue +5 -0
- package/src/components/CoGuestPanel/CoGuestPanel.vue +16 -91
- package/src/components/CoHostPanel/BattlePanel.vue +4 -7
- package/src/components/CoHostPanel/CoHostPanel.vue +11 -3
- package/src/components/CoHostPanel/ConfigSettingPanel.vue +2 -8
- package/src/components/CoHostPanel/ConnectionPanel.vue +41 -37
- package/src/components/CoHostPanel/RecommendHostList.vue +12 -13
- package/src/components/CoHostPanel/constants.ts +3 -0
- package/src/components/CoHostPanel/i18n/en-US/index.ts +1 -0
- package/src/components/CoHostPanel/i18n/zh-CN/index.ts +2 -1
- package/src/components/ContactList/ContactInfo/BlacklistInfo/BlacklistInfo.vue +1 -1
- package/src/components/ContactList/ContactInfo/ContactInfo.vue +1 -1
- package/src/components/ContactList/ContactInfo/FriendApplicationInfo/FriendApplicationInfo.vue +1 -1
- package/src/components/ContactList/ContactInfo/FriendInfo/FriendInfo.vue +1 -1
- package/src/components/ContactList/ContactInfo/GroupApplicationInfo/GroupApplicationInfo.vue +1 -1
- package/src/components/ContactList/ContactInfo/GroupInfo/GroupInfo.vue +1 -1
- package/src/components/ContactList/ContactInfo/SearchGroupInfo/SearchGroupInfo.vue +1 -1
- package/src/components/ContactList/ContactInfo/SearchUserInfo/SearchUserInfo.vue +1 -1
- package/src/components/ContactList/ContactList.vue +1 -1
- package/src/components/ContactList/ContactListItem/BlacklistItem/BlacklistItem.vue +1 -1
- package/src/components/ContactList/ContactListItem/FriendApplicationItem/FriendApplicationItem.vue +1 -1
- package/src/components/ContactList/ContactListItem/FriendItem/FriendItem.vue +1 -1
- package/src/components/ContactList/ContactListItem/GroupApplicationItem/GroupApplicationItem.vue +1 -1
- package/src/components/ContactList/ContactListItem/GroupItem/GroupItem.vue +1 -1
- package/src/components/ContactList/ContactSearch/ContactSearch.vue +1 -1
- package/src/components/ConversationList/ConversationActions/ConversationActions.vue +2 -8
- package/src/components/ConversationList/ConversationCreate/ConversationCreate.vue +2 -2
- package/src/components/ConversationList/ConversationCreate/ConversationCreateButton/ConversationCreateButton.vue +1 -1
- package/src/components/ConversationList/ConversationCreate/ConversationCreateGroupDetail/ConversationCreateGroupDetail.vue +1 -1
- package/src/components/ConversationList/ConversationCreate/ConversationCreateUserSelectList/ConversationCreateUserSelectList.vue +1 -1
- package/src/components/ConversationList/ConversationCreate/ConversationGroupTypeInfo/ConversationGroupTypeInfo.vue +1 -1
- package/src/components/ConversationList/ConversationList.vue +2 -2
- package/src/components/ConversationList/ConversationListContent/ConversationListContent.vue +1 -1
- package/src/components/ConversationList/ConversationListHeader/ConversationListHeader.vue +1 -1
- package/src/components/ConversationList/ConversationPlaceHolder/ConversationPlaceHolder.vue +1 -1
- package/src/components/ConversationList/ConversationPreview/ConversationPreview.vue +1 -1
- package/src/components/ConversationList/ConversationPreview/ConversationPreviewAbstract.vue +1 -1
- package/src/components/ConversationList/ConversationPreview/ConversationPreviewTimestamp.vue +4 -4
- package/src/components/ConversationList/ConversationPreview/ConversationPreviewTitle.vue +1 -1
- package/src/components/ConversationList/ConversationPreview/ConversationPreviewUI.vue +3 -3
- package/src/components/ConversationList/ConversationPreview/ConversationPreviewUnread.vue +1 -1
- package/src/components/ConversationList/ConversationSearch/ConversationSearch.vue +1 -1
- package/src/components/LiveAudienceList/LiveAudienceList.vue +4 -5
- package/src/components/LiveAudienceList/LiveAudienceListH5.vue +2 -2
- package/src/components/LiveAudienceList/UserActionMenu.vue +7 -48
- package/src/components/LiveList/LiveList.vue +5 -5
- package/src/components/LiveList/LiveListH5.vue +6 -6
- package/src/components/LiveScenePanel/index.vue +2 -2
- package/src/components/{LiveCoreView → LiveView}/CoreViewDecorate/BattleDecorate.vue +10 -15
- package/src/components/{LiveCoreView → LiveView}/CoreViewDecorate/BattleUserDecorate.vue +30 -31
- package/src/components/{LiveCoreView → LiveView}/DefaultStreamViewUI.vue +5 -3
- package/src/components/{LiveCoreView → LiveView}/PlayerControl/AudioControl.vue +72 -80
- package/src/components/{LiveCoreView → LiveView}/PlayerControl/MultiResolution.vue +30 -21
- package/src/components/{LiveCoreView → LiveView}/PlayerControl/PlayerControl.vue +26 -42
- package/src/components/LiveView/PlayerControl/PlayerControlState.ts +516 -0
- package/src/components/{LiveCoreView → LiveView}/PlayerControl/utils/domHelpers.ts +68 -4
- package/src/components/{LiveCoreView → LiveView}/i18n/en-US/index.ts +3 -2
- package/src/components/{LiveCoreView → LiveView}/i18n/zh-CN/index.ts +3 -2
- package/src/components/{LiveCoreView → LiveView}/index.ts +5 -2
- package/src/components/{LiveCoreView → LiveView}/index.vue +4 -3
- package/src/components/MessageInput/AudioCallPicker/AudioCallPicker.vue +8 -6
- package/src/components/MessageInput/EmojiPicker/EmojiPicker.vue +7 -3
- package/src/components/MessageInput/MessageInput.module.scss +1 -0
- package/src/components/MessageInput/MessageInput.vue +3 -1
- package/src/components/MessageInput/TextEditor/EditorCore.ts +17 -28
- package/src/components/MessageInput/TextEditor/TextEditor.vue +24 -4
- package/src/components/MessageInput/TextEditor/extensions/characterCountExtension.ts +159 -0
- package/src/components/MessageInput/TextEditor/extensions/imageExtension.ts +79 -0
- package/src/components/MessageInput/VideoCallPicker/VideoCallPicker.vue +8 -6
- package/src/components/MessageInput/i18n/zh-CN.ts +4 -0
- package/src/components/MessageInput/types.d.ts +1 -0
- package/src/components/MessageList/Message/AudioMessage/WaveForm.vue +20 -37
- package/src/components/MessageList/Message/CustomMessage/CallMessage/CallMessage.vue +5 -3
- package/src/components/MessageList/Message/GroupTipMessage/GroupTipMessage.vue +5 -4
- package/src/components/MessageList/Message/Message.vue +1 -1
- package/src/components/MessageList/Message/MessageLayout/MessageLayout.vue +8 -8
- package/src/components/MessageList/Message/VideoMessage/VideoMessage.vue +46 -43
- package/src/components/MessageList/Message/VideoMessage/index.ts +1 -1
- package/src/components/MessageList/MessageList.vue +2 -0
- package/src/components/MessageList/i18n/en-US.ts +66 -0
- package/src/components/MessageList/i18n/index.ts +4 -4
- package/src/components/MessageList/i18n/zh-CN.ts +66 -0
- package/src/components/MicButton/index.vue +3 -3
- package/src/components/Search/Search.vue +1 -1
- package/src/components/Search/SearchAdvanced/DateRangePicker/DateRangePicker.scss +1 -4
- package/src/components/Search/SearchAdvanced/DateRangePicker/DateRangePicker.vue +1 -1
- package/src/components/Search/SearchAdvanced/MessageAdvanced/MessageAdvanced.scss +1 -4
- package/src/components/Search/SearchAdvanced/MessageAdvanced/MessageAdvanced.vue +1 -1
- package/src/components/Search/SearchAdvanced/SearchAdvanced.scss +1 -4
- package/src/components/Search/SearchAdvanced/SearchAdvanced.vue +1 -1
- package/src/components/Search/SearchAdvanced/SearchTab/SearchTab.scss +1 -4
- package/src/components/Search/SearchAdvanced/SearchTab/SearchTab.vue +1 -1
- package/src/components/Search/SearchAdvanced/Slider/Slider.scss +1 -4
- package/src/components/Search/SearchAdvanced/Slider/Slider.vue +1 -1
- package/src/components/Search/SearchAdvanced/UserAdvanced/UserAdvanced.scss +1 -4
- package/src/components/Search/SearchAdvanced/UserAdvanced/UserAdvanced.vue +1 -1
- package/src/components/Search/SearchBar/SearchBar.scss +3 -6
- package/src/components/Search/SearchBar/SearchBar.vue +1 -1
- package/src/components/Search/SearchResults/EmptyResult/EmptyResult.vue +1 -1
- package/src/components/Search/SearchResults/Loading/Loading.vue +1 -1
- package/src/components/Search/SearchResults/SearchResults.vue +1 -1
- package/src/components/Search/SearchResults/SearchResultsItem/Conversation/Conversation.vue +1 -1
- package/src/components/Search/SearchResults/SearchResultsItem/Group/Group.vue +1 -1
- package/src/components/Search/SearchResults/SearchResultsItem/Message/Message.vue +1 -1
- package/src/components/Search/SearchResults/SearchResultsItem/SearchResultsItem.vue +1 -1
- package/src/components/Search/SearchResults/SearchResultsItem/User/User.vue +1 -1
- package/src/components/StreamMixer/LocalMixer/index.vue +6 -8
- package/src/components/StreamMixer/index.vue +1 -1
- package/src/components/StreamView/Layout/CustomLayout.vue +2 -2
- package/src/components/StreamView/Layout/FloatLayout.vue +88 -83
- package/src/components/StreamView/index.vue +28 -14
- package/src/components/StreamView/manager/mediaManager.ts +38 -42
- package/src/components/UIKitModal/UIKitModal.ts +71 -0
- package/src/components/UIKitModal/index.scss +134 -0
- package/src/components/UIKitModal/index.ts +1 -0
- package/src/components/UIKitModal/index.vue +160 -0
- package/src/components/UIKitModal/type.ts +24 -0
- package/src/components/UserPicker/UserPicker.vue +1 -1
- package/src/components/UserPicker/components/SelectedPanel/SelectedPanel.vue +1 -0
- package/src/components/UserPicker/hooks/useSearchFilter.ts +27 -18
- package/src/components/UserPicker/i18n/en-US.ts +1 -0
- package/src/components/UserPicker/i18n/zh-CN.ts +1 -0
- package/src/components/UserPicker/type.ts +1 -1
- package/src/components/VideoSetting/CameraSelect.vue +1 -2
- package/src/components/VideoSetting/VideoMediaControl.vue +1 -1
- package/src/components/VideoSetting/VideoPreview.vue +1 -2
- package/src/components/VideoSetting/VideoProfile.vue +1 -1
- package/src/components/VideoSetting/VideoSettingTab.vue +9 -5
- package/src/components/VideoSettingPanel/CameraSelect.vue +1 -2
- package/src/components/VideoSettingPanel/VideoProfile.vue +7 -7
- package/src/hooks/useAudioControl.ts +17 -4
- package/src/hooks/useRoomEngine.ts +1 -1
- package/src/index.ts +3 -0
- package/src/report/MetricsKey.ts +16 -0
- package/src/report/dataReport.ts +55 -0
- package/src/report/index.ts +7 -0
- package/src/rtc/index.ts +8 -10
- package/src/rtc/server.ts +4 -0
- package/src/types/audience.ts +27 -1
- package/src/types/battle.ts +87 -4
- package/src/types/coGuest.ts +87 -5
- package/src/types/device.ts +41 -16
- package/src/types/index.ts +2 -2
- package/src/types/live.ts +41 -22
- package/src/types/seat.ts +28 -4
- package/src/utils/call.ts +26 -27
- package/src/utils/eventCenter.ts +249 -0
- package/dist/DialogPortal-CvJcEAsn.js +0 -417
- package/dist/components/BarrageList/Message/FaceMessage/FaceMessage.js +0 -23
- package/dist/components/BarrageList/Message/FaceMessage/FaceMessage.vue.d.ts +0 -30
- package/dist/components/BarrageList/Message/FaceMessage/index.d.ts +0 -3
- package/dist/components/BarrageList/Message/FaceMessage/index.js +0 -4
- package/dist/components/BarrageList/Message/GroupTipMessage/GroupTipMessage.js +0 -4
- package/dist/components/BarrageList/Message/GroupTipMessage/GroupTipMessage.vue.d.ts +0 -16
- package/dist/components/BarrageList/Message/GroupTipMessage/index.d.ts +0 -3
- package/dist/components/BarrageList/Message/GroupTipMessage/index.js +0 -25
- package/dist/components/BarrageList/Message/ImageMessage/ImageMessage.js +0 -71
- package/dist/components/BarrageList/Message/ImageMessage/ImageMessage.vue.d.ts +0 -34
- package/dist/components/BarrageList/Message/ImageMessage/index.d.ts +0 -3
- package/dist/components/BarrageList/Message/ImageMessage/index.js +0 -4
- package/dist/components/BarrageList/Message/MergerMessage/MergerMessage.js +0 -9
- package/dist/components/BarrageList/Message/MergerMessage/MergerMessage.vue.d.ts +0 -2
- package/dist/components/BarrageList/Message/MergerMessage/index.d.ts +0 -3
- package/dist/components/BarrageList/Message/MergerMessage/index.js +0 -4
- package/dist/components/BarrageList/Message/MessageLayout/MessageMeta/MessageMeta.js +0 -40
- package/dist/components/BarrageList/Message/MessageLayout/MessageMeta/MessageMeta.vue.d.ts +0 -54
- package/dist/components/BarrageList/Message/MessageLayout/MessageMeta/MessageStatusIcon.js +0 -26
- package/dist/components/BarrageList/Message/MessageLayout/MessageMeta/MessageStatusIcon.vue.d.ts +0 -15
- package/dist/components/BarrageList/Message/MessageLayout/MessageMeta/index.d.ts +0 -3
- package/dist/components/BarrageList/Message/MessageLayout/MessageMeta/index.js +0 -4
- package/dist/components/BarrageList/Message/RecalledMessage/RecalledMessage.js +0 -41
- package/dist/components/BarrageList/Message/RecalledMessage/index.d.ts +0 -3
- package/dist/components/BarrageList/Message/RecalledMessage/index.js +0 -4
- package/dist/components/BarrageList/MessageForward/ForwardListItem.js +0 -45
- package/dist/components/BarrageList/MessageForward/ForwardListItem.vue.d.ts +0 -17
- package/dist/components/BarrageList/MessageForward/MessageForward.js +0 -203
- package/dist/components/BarrageList/MessageForward/MessageForward.vue.d.ts +0 -2
- package/dist/components/BarrageList/MessageForward/index.d.ts +0 -3
- package/dist/components/BarrageList/MessageForward/index.js +0 -4
- package/dist/components/LiveCoreView/PlayerControl/AudioControl.js +0 -129
- package/dist/components/LiveCoreView/PlayerControl/MultiResolution.js +0 -78
- package/dist/components/LiveCoreView/PlayerControl/PlayerControl.js +0 -168
- package/dist/components/LiveCoreView/PlayerControl/PlayerControlState.js +0 -267
- package/dist/components/LiveCoreView/PlayerControl/utils/domHelpers.js +0 -99
- package/dist/components/LiveCoreView/index.d.ts +0 -4
- package/dist/components/StreamView/Layout/MixLayout.js +0 -89
- package/dist/components/StreamView/Layout/MixLayout.vue.d.ts +0 -31
- package/dist/states/BarrageListState/BarrageListState.d.ts +0 -26
- package/dist/states/BarrageListState/BarrageListState.js +0 -122
- package/dist/states/BarrageListState/index.d.ts +0 -1
- package/dist/states/BarrageListState/index.js +0 -4
- package/dist/states/BattleState.js +0 -117
- package/dist/states/DeviceState.js +0 -296
- package/dist/states/LiveState/index.js +0 -254
- package/dist/states/VideoMixerState.js +0 -260
- package/src/components/BarrageList/Message/FaceMessage/FaceMessage.vue +0 -43
- package/src/components/BarrageList/Message/FaceMessage/index.ts +0 -3
- package/src/components/BarrageList/Message/GroupTipMessage/GroupTipMessage.vue +0 -55
- package/src/components/BarrageList/Message/GroupTipMessage/index.ts +0 -3
- package/src/components/BarrageList/Message/ImageMessage/ImageMessage.vue +0 -181
- package/src/components/BarrageList/Message/ImageMessage/index.ts +0 -3
- package/src/components/BarrageList/Message/MergerMessage/MergerMessage.vue +0 -6
- package/src/components/BarrageList/Message/MergerMessage/index.ts +0 -3
- package/src/components/BarrageList/Message/MessageLayout/MessageMeta/MessageMeta.vue +0 -70
- package/src/components/BarrageList/Message/MessageLayout/MessageMeta/MessageStatusIcon.vue +0 -40
- package/src/components/BarrageList/Message/MessageLayout/MessageMeta/index.ts +0 -3
- package/src/components/BarrageList/Message/RecalledMessage/RecalledMessage.vue +0 -82
- package/src/components/BarrageList/Message/RecalledMessage/index.ts +0 -3
- package/src/components/BarrageList/MessageForward/ForwardListItem.vue +0 -67
- package/src/components/BarrageList/MessageForward/MessageForward.vue +0 -388
- package/src/components/BarrageList/MessageForward/index.ts +0 -3
- package/src/components/LiveCoreView/PlayerControl/PlayerControlState.ts +0 -718
- package/src/components/StreamView/Layout/MixLayout.vue +0 -144
- /package/dist/components/{LiveCoreView → LiveView}/CoreViewDecorate/BattleDecorate.vue.d.ts +0 -0
- /package/dist/components/{LiveCoreView → LiveView}/CoreViewDecorate/BattleUserDecorate.vue.d.ts +0 -0
- /package/dist/components/{LiveCoreView → LiveView}/CoreViewDecorate/CoHostDecorate.vue.d.ts +0 -0
- /package/dist/components/{LiveCoreView → LiveView}/CoreViewDecorate/LiveCoreDecorate.vue.d.ts +0 -0
- /package/dist/components/{LiveCoreView → LiveView}/DefaultStreamViewUI.vue.d.ts +0 -0
- /package/dist/components/{LiveCoreView → LiveView}/PlayerControl/MultiResolution.vue.d.ts +0 -0
- /package/dist/components/{LiveCoreView → LiveView}/PlayerControl/PlayerControl.vue.d.ts +0 -0
- /package/dist/components/{LiveCoreView → LiveView}/PlayerControl/index.d.ts +0 -0
- /package/dist/components/{LiveCoreView → LiveView}/PlayerControl/index.js +0 -0
- /package/dist/components/{LiveCoreView → LiveView}/PlayerControl/utils/deviceDetection.d.ts +0 -0
- /package/dist/components/{LiveCoreView → LiveView}/PlayerControl/utils/deviceDetection.js +0 -0
- /package/dist/components/{LiveCoreView → LiveView}/PlayerControl/utils/fullscreenManager.d.ts +0 -0
- /package/dist/components/{LiveCoreView → LiveView}/PlayerControl/utils/fullscreenManager.js +0 -0
- /package/dist/components/{LiveCoreView → LiveView}/i18n/index.d.ts +0 -0
- /package/dist/components/{LiveCoreView → LiveView}/i18n/index.js +0 -0
- /package/dist/components/{LiveCoreView → LiveView}/index.vue.d.ts +0 -0
- /package/src/components/{LiveCoreView → LiveView}/CoreViewDecorate/CoHostDecorate.vue +0 -0
- /package/src/components/{LiveCoreView → LiveView}/CoreViewDecorate/LiveCoreDecorate.vue +0 -0
- /package/src/components/{LiveCoreView → LiveView}/PlayerControl/PlayerControl.module.scss +0 -0
- /package/src/components/{LiveCoreView → LiveView}/PlayerControl/index.ts +0 -0
- /package/src/components/{LiveCoreView → LiveView}/PlayerControl/utils/deviceDetection.ts +0 -0
- /package/src/components/{LiveCoreView → LiveView}/PlayerControl/utils/fullscreenManager.ts +0 -0
- /package/src/components/{LiveCoreView → LiveView}/assets/img/defeat.png +0 -0
- /package/src/components/{LiveCoreView → LiveView}/assets/img/draw.png +0 -0
- /package/src/components/{LiveCoreView → LiveView}/assets/img/victory.png +0 -0
- /package/src/components/{LiveCoreView → LiveView}/assets/svg/BattleOrdinaryBadge.svg +0 -0
- /package/src/components/{LiveCoreView → LiveView}/assets/svg/BattleTopBadge.svg +0 -0
- /package/src/components/{LiveCoreView → LiveView}/assets/svg/blueBkg.svg +0 -0
- /package/src/components/{LiveCoreView → LiveView}/assets/svg/redBkg.svg +0 -0
- /package/src/components/{LiveCoreView → LiveView}/assets/svg/s.svg +0 -0
- /package/src/components/{LiveCoreView → LiveView}/assets/svg/v.svg +0 -0
- /package/src/components/{LiveCoreView → LiveView}/i18n/index.ts +0 -0
|
@@ -1,83 +1,83 @@
|
|
|
1
|
-
import { defineComponent as x, ref as S, onMounted as ee, onUnmounted as ae, watch as re, computed as L, createElementBlock as h, openBlock as u, normalizeClass as r, createElementVNode as n, createCommentVNode as
|
|
1
|
+
import { defineComponent as x, ref as S, onMounted as ee, onUnmounted as ae, watch as re, computed as L, createElementBlock as h, openBlock as u, normalizeClass as r, createElementVNode as n, createCommentVNode as p, unref as s, toDisplayString as l, Fragment as N, renderList as O, createVNode as w, withCtx as P, createTextVNode as Y } from "vue";
|
|
2
2
|
import C from "@tencentcloud/chat-uikit-engine";
|
|
3
|
-
import { useUIKit as ne, TUIButton as V, IconSetting as
|
|
3
|
+
import { useUIKit as ne, TUIButton as V, IconSetting as ce, IconBack as se } from "@tencentcloud/uikit-base-component-vue3";
|
|
4
4
|
import { SearchType as b } from "../../../../types/engine.js";
|
|
5
5
|
import de from "../Slider/Slider.js";
|
|
6
6
|
import { isH5 as g } from "../../../../utils/env.js";
|
|
7
|
-
import { _ as
|
|
8
|
-
const
|
|
7
|
+
import { _ as te } from "../../../../_plugin-vue_export-helper-CHgC5LLL.js";
|
|
8
|
+
const le = ["onClick"], ie = ["value"], _e = ["value"], oe = ["onClick"], ve = /* @__PURE__ */ x({
|
|
9
9
|
__name: "UserAdvanced",
|
|
10
10
|
props: {
|
|
11
11
|
advancedParams: {},
|
|
12
12
|
onAdvancedParamsChange: { type: Function }
|
|
13
13
|
},
|
|
14
14
|
setup(z) {
|
|
15
|
-
const
|
|
16
|
-
const a = /* @__PURE__ */ new Date(),
|
|
17
|
-
let
|
|
18
|
-
const
|
|
19
|
-
return (
|
|
20
|
-
},
|
|
15
|
+
const o = z, { t } = ne(), $ = (e) => {
|
|
16
|
+
const a = /* @__PURE__ */ new Date(), _ = new Date(Math.floor(e / 1e4), Math.floor(e % 1e4 / 100) - 1, e % 100);
|
|
17
|
+
let c = a.getFullYear() - _.getFullYear();
|
|
18
|
+
const A = a.getMonth() - _.getMonth();
|
|
19
|
+
return (A < 0 || A === 0 && a.getDate() < _.getDate()) && (c -= 1), c;
|
|
20
|
+
}, U = (e) => {
|
|
21
21
|
if (!e)
|
|
22
22
|
return;
|
|
23
23
|
const a = /* @__PURE__ */ new Date();
|
|
24
24
|
return (a.getFullYear() - e) * 1e4 + (a.getMonth() + 1) * 100 + a.getDate();
|
|
25
|
-
},
|
|
25
|
+
}, i = S({}), v = S(!1), f = S(!1), E = S(!1), d = S({
|
|
26
26
|
min: void 0,
|
|
27
27
|
max: void 0
|
|
28
|
-
}),
|
|
28
|
+
}), m = S("不限"), k = S(), B = S(), D = [
|
|
29
29
|
{
|
|
30
30
|
value: "不限",
|
|
31
|
-
label:
|
|
31
|
+
label: t("Search.filter.gender.any")
|
|
32
32
|
},
|
|
33
33
|
{
|
|
34
34
|
value: C.TYPES.GENDER_MALE,
|
|
35
|
-
label:
|
|
35
|
+
label: t("Search.filter.gender.male")
|
|
36
36
|
},
|
|
37
37
|
{
|
|
38
38
|
value: C.TYPES.GENDER_FEMALE,
|
|
39
|
-
label:
|
|
39
|
+
label: t("Search.filter.gender.female")
|
|
40
40
|
}
|
|
41
41
|
], R = (e) => {
|
|
42
|
-
k.value && !k.value.contains(e.target) && (v.value = !1), B.value && !B.value.contains(e.target) && (
|
|
42
|
+
k.value && !k.value.contains(e.target) && (v.value = !1), B.value && !B.value.contains(e.target) && (f.value = !1);
|
|
43
43
|
};
|
|
44
44
|
ee(() => {
|
|
45
45
|
document.addEventListener("mousedown", R);
|
|
46
46
|
}), ae(() => {
|
|
47
47
|
document.removeEventListener("mousedown", R);
|
|
48
48
|
}), re(
|
|
49
|
-
() =>
|
|
49
|
+
() => o.advancedParams,
|
|
50
50
|
(e) => {
|
|
51
51
|
const a = (e == null ? void 0 : e.get(b.USER)) || {};
|
|
52
|
-
|
|
53
|
-
...
|
|
52
|
+
i.value = {
|
|
53
|
+
...i.value,
|
|
54
54
|
...a
|
|
55
|
-
},
|
|
56
|
-
min: a != null && a.maxBirthday ?
|
|
57
|
-
max: a != null && a.miniBirthday ?
|
|
55
|
+
}, m.value = (a == null ? void 0 : a.gender) || "不限", d.value = {
|
|
56
|
+
min: a != null && a.maxBirthday ? $(a == null ? void 0 : a.maxBirthday) : void 0,
|
|
57
|
+
max: a != null && a.miniBirthday ? $(a == null ? void 0 : a.miniBirthday) : void 0
|
|
58
58
|
};
|
|
59
59
|
},
|
|
60
60
|
{ immediate: !0 }
|
|
61
61
|
);
|
|
62
62
|
const H = (e) => {
|
|
63
|
-
if (
|
|
64
|
-
const a = new Map(
|
|
63
|
+
if (o.onAdvancedParamsChange) {
|
|
64
|
+
const a = new Map(o.advancedParams || []);
|
|
65
65
|
a.set(b.USER, {
|
|
66
|
-
...
|
|
66
|
+
...i.value,
|
|
67
67
|
gender: e === "不限" ? void 0 : e
|
|
68
|
-
}),
|
|
68
|
+
}), o.onAdvancedParamsChange(a);
|
|
69
69
|
}
|
|
70
70
|
v.value = !1;
|
|
71
71
|
}, K = (e) => {
|
|
72
|
-
if (
|
|
73
|
-
const a = new Map(
|
|
72
|
+
if (o.onAdvancedParamsChange) {
|
|
73
|
+
const a = new Map(o.advancedParams || []);
|
|
74
74
|
a.set(b.USER, {
|
|
75
|
-
...
|
|
76
|
-
miniBirthday:
|
|
77
|
-
maxBirthday:
|
|
78
|
-
}),
|
|
75
|
+
...i.value,
|
|
76
|
+
miniBirthday: U(e.max),
|
|
77
|
+
maxBirthday: U(e.min)
|
|
78
|
+
}), o.onAdvancedParamsChange(a);
|
|
79
79
|
}
|
|
80
|
-
|
|
80
|
+
f.value = !1;
|
|
81
81
|
}, T = (e, a) => {
|
|
82
82
|
if (a === "")
|
|
83
83
|
d.value = {
|
|
@@ -85,10 +85,10 @@ const ce = ["onClick"], oe = ["value"], ie = ["value"], _e = ["onClick"], ve = /
|
|
|
85
85
|
[e]: void 0
|
|
86
86
|
};
|
|
87
87
|
else {
|
|
88
|
-
const
|
|
88
|
+
const _ = Math.max(0, Math.min(99, parseInt(a, 10) || 0));
|
|
89
89
|
d.value = {
|
|
90
90
|
...d.value,
|
|
91
|
-
[e]:
|
|
91
|
+
[e]: _
|
|
92
92
|
};
|
|
93
93
|
}
|
|
94
94
|
}, y = () => {
|
|
@@ -97,48 +97,48 @@ const ce = ["onClick"], oe = ["value"], ie = ["value"], _e = ["onClick"], ve = /
|
|
|
97
97
|
const { min: e, max: a } = d.value;
|
|
98
98
|
K({ min: e, max: a });
|
|
99
99
|
}, q = () => {
|
|
100
|
-
var
|
|
100
|
+
var c, A, I;
|
|
101
101
|
y();
|
|
102
|
-
const e = ((
|
|
103
|
-
if (!(e && a &&
|
|
104
|
-
const F = new Map(
|
|
102
|
+
const e = ((c = i.value) == null ? void 0 : c.gender) === m.value, a = ((A = i.value) == null ? void 0 : A.miniBirthday) === U(d.value.max), _ = ((I = i.value) == null ? void 0 : I.maxBirthday) === U(d.value.min);
|
|
103
|
+
if (!(e && a && _) && o.onAdvancedParamsChange) {
|
|
104
|
+
const F = new Map(o.advancedParams || []);
|
|
105
105
|
F.set(b.USER, {
|
|
106
|
-
...
|
|
107
|
-
gender:
|
|
108
|
-
miniBirthday: d.value.max !== 99 ?
|
|
109
|
-
maxBirthday: d.value.min !== 0 ?
|
|
110
|
-
}),
|
|
106
|
+
...i.value,
|
|
107
|
+
gender: m.value === "不限" ? void 0 : m.value,
|
|
108
|
+
miniBirthday: d.value.max !== 99 ? U(d.value.max) : void 0,
|
|
109
|
+
maxBirthday: d.value.min !== 0 ? U(d.value.min) : void 0
|
|
110
|
+
}), o.onAdvancedParamsChange(F);
|
|
111
111
|
}
|
|
112
112
|
}, J = (e) => {
|
|
113
|
-
|
|
113
|
+
m.value = e, v.value = !1;
|
|
114
114
|
}, M = (e) => {
|
|
115
|
-
v.value = e, e && (
|
|
115
|
+
v.value = e, e && (f.value = !1);
|
|
116
116
|
}, Q = (e) => {
|
|
117
|
-
|
|
117
|
+
f.value = e, e && (v.value = !1);
|
|
118
118
|
}, W = (e) => {
|
|
119
119
|
d.value = e;
|
|
120
120
|
}, X = L(
|
|
121
121
|
() => {
|
|
122
122
|
var e;
|
|
123
|
-
return (e =
|
|
123
|
+
return (e = i.value) != null && e.maxBirthday ? $(i.value.maxBirthday) : void 0;
|
|
124
124
|
}
|
|
125
125
|
), Z = L(
|
|
126
126
|
() => {
|
|
127
127
|
var e;
|
|
128
|
-
return (e =
|
|
128
|
+
return (e = i.value) != null && e.miniBirthday ? $(i.value.miniBirthday) : void 0;
|
|
129
129
|
}
|
|
130
130
|
), G = (e) => {
|
|
131
131
|
switch (e) {
|
|
132
132
|
case C.TYPES.GENDER_MALE:
|
|
133
|
-
return
|
|
133
|
+
return t("Search.filter.gender.male");
|
|
134
134
|
case C.TYPES.GENDER_FEMALE:
|
|
135
|
-
return
|
|
135
|
+
return t("Search.filter.gender.female");
|
|
136
136
|
default:
|
|
137
|
-
return
|
|
137
|
+
return t("Search.filter.gender.any");
|
|
138
138
|
}
|
|
139
139
|
};
|
|
140
140
|
return (e, a) => {
|
|
141
|
-
var
|
|
141
|
+
var _;
|
|
142
142
|
return u(), h("div", {
|
|
143
143
|
class: r(e.$style.SearchUserAdvanced)
|
|
144
144
|
}, [
|
|
@@ -147,30 +147,30 @@ const ce = ["onClick"], oe = ["value"], ie = ["value"], _e = ["onClick"], ve = /
|
|
|
147
147
|
}, [
|
|
148
148
|
n("div", {
|
|
149
149
|
class: r(e.$style["SearchUserAdvanced__filter-select"]),
|
|
150
|
-
onClick: a[0] || (a[0] = (
|
|
150
|
+
onClick: a[0] || (a[0] = (c) => s(g) ? y() : M(!v.value))
|
|
151
151
|
}, [
|
|
152
152
|
n("span", {
|
|
153
153
|
class: r(e.$style["SearchUserAdvanced__filter-label"])
|
|
154
|
-
},
|
|
154
|
+
}, l(s(t)("Search.filter.gender")) + ": ", 3),
|
|
155
155
|
n("span", {
|
|
156
156
|
class: r(e.$style["SearchUserAdvanced__filter-value"])
|
|
157
|
-
},
|
|
157
|
+
}, l(G(((_ = i.value) == null ? void 0 : _.gender) || s(t)("Search.filter.gender.any"))), 3),
|
|
158
158
|
n("span", {
|
|
159
159
|
class: r([e.$style.SearchUserAdvanced__arrow, { [e.$style["SearchUserAdvanced__arrow--up"]]: v.value }])
|
|
160
160
|
}, " ▼ ", 2)
|
|
161
161
|
], 2),
|
|
162
|
-
!
|
|
162
|
+
!s(g) && v.value ? (u(), h("div", {
|
|
163
163
|
key: 0,
|
|
164
164
|
ref_key: "genderRef",
|
|
165
165
|
ref: k,
|
|
166
166
|
class: r(e.$style.SearchUserAdvanced__dropdown)
|
|
167
167
|
}, [
|
|
168
|
-
(u(), h(N, null, O(D, (
|
|
169
|
-
key:
|
|
168
|
+
(u(), h(N, null, O(D, (c) => n("div", {
|
|
169
|
+
key: c.value,
|
|
170
170
|
class: r(e.$style.SearchUserAdvanced__option),
|
|
171
|
-
onClick: (
|
|
172
|
-
}, c
|
|
173
|
-
], 2)) :
|
|
171
|
+
onClick: (A) => H(c.value)
|
|
172
|
+
}, l(c.label), 11, le)), 64))
|
|
173
|
+
], 2)) : p("", !0)
|
|
174
174
|
], 2),
|
|
175
175
|
n("div", {
|
|
176
176
|
ref_key: "ageRef",
|
|
@@ -179,20 +179,20 @@ const ce = ["onClick"], oe = ["value"], ie = ["value"], _e = ["onClick"], ve = /
|
|
|
179
179
|
}, [
|
|
180
180
|
n("div", {
|
|
181
181
|
class: r(e.$style["SearchUserAdvanced__filter-select"]),
|
|
182
|
-
onClick: a[1] || (a[1] = (
|
|
182
|
+
onClick: a[1] || (a[1] = (c) => s(g) ? y() : Q(!f.value))
|
|
183
183
|
}, [
|
|
184
184
|
n("span", {
|
|
185
185
|
class: r(e.$style["SearchUserAdvanced__filter-label"])
|
|
186
|
-
},
|
|
186
|
+
}, l(s(t)("Search.filter.age")) + ": ", 3),
|
|
187
187
|
n("span", {
|
|
188
188
|
class: r(e.$style["SearchUserAdvanced__filter-value"])
|
|
189
|
-
},
|
|
190
|
-
|
|
189
|
+
}, l(`${X.value || "0"}-${Z.value || "99"} ${s(t)("Search.filter.age.yearsOld")}`), 3),
|
|
190
|
+
s(g) ? p("", !0) : (u(), h("span", {
|
|
191
191
|
key: 0,
|
|
192
|
-
class: r([e.$style.SearchUserAdvanced__arrow, { [e.$style["SearchUserAdvanced__arrow--up"]]:
|
|
192
|
+
class: r([e.$style.SearchUserAdvanced__arrow, { [e.$style["SearchUserAdvanced__arrow--up"]]: f.value }])
|
|
193
193
|
}, " ▼ ", 2))
|
|
194
194
|
], 2),
|
|
195
|
-
!
|
|
195
|
+
!s(g) && f.value ? (u(), h("div", {
|
|
196
196
|
key: 0,
|
|
197
197
|
class: r(e.$style.SearchUserAdvanced__dropdown)
|
|
198
198
|
}, [
|
|
@@ -206,8 +206,8 @@ const ce = ["onClick"], oe = ["value"], ie = ["value"], _e = ["onClick"], ve = /
|
|
|
206
206
|
value: d.value.min ?? "",
|
|
207
207
|
placeholder: "0",
|
|
208
208
|
class: r(e.$style["SearchUserAdvanced__age-input"]),
|
|
209
|
-
onInput: a[2] || (a[2] = (
|
|
210
|
-
}, null, 42,
|
|
209
|
+
onInput: a[2] || (a[2] = (c) => T("min", c.target.value))
|
|
210
|
+
}, null, 42, ie),
|
|
211
211
|
a[7] || (a[7] = n("span", null, "-", -1)),
|
|
212
212
|
n("input", {
|
|
213
213
|
type: "number",
|
|
@@ -216,33 +216,33 @@ const ce = ["onClick"], oe = ["value"], ie = ["value"], _e = ["onClick"], ve = /
|
|
|
216
216
|
value: d.value.max ?? "",
|
|
217
217
|
placeholder: "99",
|
|
218
218
|
class: r(e.$style["SearchUserAdvanced__age-input"]),
|
|
219
|
-
onInput: a[3] || (a[3] = (
|
|
220
|
-
}, null, 42,
|
|
221
|
-
n("span", null,
|
|
222
|
-
|
|
219
|
+
onInput: a[3] || (a[3] = (c) => T("max", c.target.value))
|
|
220
|
+
}, null, 42, _e),
|
|
221
|
+
n("span", null, l(s(t)("Search.filter.age.yearsOld")), 1),
|
|
222
|
+
w(s(V), {
|
|
223
223
|
class: r(e.$style["SearchUserAdvanced__confirm-button"]),
|
|
224
224
|
onClick: j
|
|
225
225
|
}, {
|
|
226
226
|
default: P(() => [
|
|
227
|
-
Y(
|
|
227
|
+
Y(l(s(t)("Search.action.confirm")), 1)
|
|
228
228
|
]),
|
|
229
229
|
_: 1
|
|
230
230
|
}, 8, ["class"])
|
|
231
231
|
], 2)
|
|
232
|
-
], 2)) :
|
|
232
|
+
], 2)) : p("", !0)
|
|
233
233
|
], 2),
|
|
234
|
-
|
|
234
|
+
s(g) ? (u(), h("div", {
|
|
235
235
|
key: 0,
|
|
236
236
|
class: r(e.$style["SearchUserAdvanced__filter-row-right"]),
|
|
237
237
|
onClick: y
|
|
238
238
|
}, [
|
|
239
|
-
|
|
239
|
+
w(s(ce), {
|
|
240
240
|
class: r(e.$style["SearchUserAdvanced__filter-icon"])
|
|
241
241
|
}, null, 8, ["class"]),
|
|
242
242
|
n("span", {
|
|
243
243
|
class: r(e.$style["SearchUserAdvanced__filter-text"])
|
|
244
|
-
},
|
|
245
|
-
], 2)) :
|
|
244
|
+
}, l(s(t)("Search.filter.title")), 3)
|
|
245
|
+
], 2)) : p("", !0),
|
|
246
246
|
E.value ? (u(), h("div", {
|
|
247
247
|
key: 1,
|
|
248
248
|
class: r(e.$style["SearchUserAdvanced__filter-page"])
|
|
@@ -254,26 +254,26 @@ const ce = ["onClick"], oe = ["value"], ie = ["value"], _e = ["onClick"], ve = /
|
|
|
254
254
|
class: r(e.$style["SearchUserAdvanced__back-button"]),
|
|
255
255
|
onClick: y
|
|
256
256
|
}, [
|
|
257
|
-
|
|
257
|
+
w(s(se), { size: "24" })
|
|
258
258
|
], 2),
|
|
259
259
|
n("div", {
|
|
260
260
|
class: r(e.$style["SearchUserAdvanced__header-title"])
|
|
261
|
-
},
|
|
261
|
+
}, l(s(t)("Search.filter.title")), 3)
|
|
262
262
|
], 2),
|
|
263
263
|
n("div", {
|
|
264
264
|
class: r(e.$style["SearchUserAdvanced__filter-page-main"])
|
|
265
265
|
}, [
|
|
266
266
|
n("div", {
|
|
267
267
|
class: r([e.$style["SearchUserAdvanced__filter-page-row"], e.$style["SearchUserAdvanced__bottom-line"]]),
|
|
268
|
-
onClick: a[4] || (a[4] = (
|
|
268
|
+
onClick: a[4] || (a[4] = (c) => M(!0))
|
|
269
269
|
}, [
|
|
270
270
|
n("span", {
|
|
271
271
|
class: r(e.$style["SearchUserAdvanced__filter-page-label"])
|
|
272
|
-
},
|
|
272
|
+
}, l(s(t)("Search.filter.gender")), 3),
|
|
273
273
|
n("div", {
|
|
274
274
|
class: r(e.$style["SearchUserAdvanced__filter-page-value"])
|
|
275
275
|
}, [
|
|
276
|
-
n("span", null,
|
|
276
|
+
n("span", null, l(G(m.value)), 1),
|
|
277
277
|
n("span", {
|
|
278
278
|
class: r(e.$style.SearchUserAdvanced__arrow)
|
|
279
279
|
}, ">", 2)
|
|
@@ -288,92 +288,90 @@ const ce = ["onClick"], oe = ["value"], ie = ["value"], _e = ["onClick"], ve = /
|
|
|
288
288
|
ref: k,
|
|
289
289
|
class: r(e.$style["SearchUserAdvanced__action-sheet-panel"])
|
|
290
290
|
}, [
|
|
291
|
-
(u(), h(N, null, O(D, (
|
|
292
|
-
key:
|
|
291
|
+
(u(), h(N, null, O(D, (c) => n("div", {
|
|
292
|
+
key: c.value,
|
|
293
293
|
class: r(e.$style["SearchUserAdvanced__action-sheet-option"]),
|
|
294
|
-
onClick: (
|
|
295
|
-
}, c
|
|
294
|
+
onClick: (A) => J(c.value)
|
|
295
|
+
}, l(c.label), 11, oe)), 64)),
|
|
296
296
|
n("div", {
|
|
297
297
|
class: r(e.$style["SearchUserAdvanced__action-sheet-cancel"]),
|
|
298
|
-
onClick: a[5] || (a[5] = (
|
|
299
|
-
},
|
|
298
|
+
onClick: a[5] || (a[5] = (c) => M(!1))
|
|
299
|
+
}, l(s(t)("Search.action.cancel")), 3)
|
|
300
300
|
], 2)
|
|
301
|
-
], 2)) :
|
|
301
|
+
], 2)) : p("", !0),
|
|
302
302
|
n("div", {
|
|
303
303
|
class: r(e.$style["SearchUserAdvanced__filter-page-row"])
|
|
304
304
|
}, [
|
|
305
305
|
n("span", {
|
|
306
306
|
class: r(e.$style["SearchUserAdvanced__filter-page-label"])
|
|
307
|
-
},
|
|
307
|
+
}, l(s(t)("Search.filter.age")), 3),
|
|
308
308
|
n("div", {
|
|
309
309
|
class: r(e.$style["SearchUserAdvanced__filter-page-value"])
|
|
310
310
|
}, [
|
|
311
|
-
n("span", null,
|
|
311
|
+
n("span", null, l(`${d.value.min ?? 0}-${d.value.max ?? 99}`), 1)
|
|
312
312
|
], 2)
|
|
313
313
|
], 2),
|
|
314
|
-
|
|
314
|
+
w(s(de), {
|
|
315
315
|
value: [d.value.min ?? 0, d.value.max ?? 99],
|
|
316
316
|
min: 0,
|
|
317
317
|
max: 99,
|
|
318
|
-
onChange: a[6] || (a[6] = (
|
|
318
|
+
onChange: a[6] || (a[6] = (c) => W({ min: c[0], max: c[1] }))
|
|
319
319
|
}, null, 8, ["value"])
|
|
320
320
|
], 2),
|
|
321
321
|
n("div", {
|
|
322
322
|
class: r(e.$style["SearchUserAdvanced__filter-page-footer"])
|
|
323
323
|
}, [
|
|
324
|
-
|
|
324
|
+
w(s(V), {
|
|
325
325
|
class: r(e.$style["SearchUserAdvanced__filter-confirm-button"]),
|
|
326
326
|
onClick: q
|
|
327
327
|
}, {
|
|
328
328
|
default: P(() => [
|
|
329
|
-
Y(
|
|
329
|
+
Y(l(s(t)("Search.action.confirm")), 1)
|
|
330
330
|
]),
|
|
331
331
|
_: 1
|
|
332
332
|
}, 8, ["class"])
|
|
333
333
|
], 2)
|
|
334
|
-
], 2)) :
|
|
334
|
+
], 2)) : p("", !0)
|
|
335
335
|
], 2);
|
|
336
336
|
};
|
|
337
337
|
}
|
|
338
|
-
}), he = "
|
|
339
|
-
"tui-theme-dark": "_tui-theme-dark_spt9o_2",
|
|
340
|
-
"tui-theme-light": "_tui-theme-light_spt9o_140",
|
|
338
|
+
}), he = "_SearchUserAdvanced_1c2w8_1", ue = "_SearchUserAdvanced__arrow_1c2w8_32", Se = "_SearchUserAdvanced__dropdown_1c2w8_42", fe = "_SearchUserAdvanced__option_1c2w8_54", Ae = {
|
|
341
339
|
SearchUserAdvanced: he,
|
|
342
|
-
"SearchUserAdvanced__filter-row": "_SearchUserAdvanced__filter-
|
|
343
|
-
"SearchUserAdvanced__filter-select": "_SearchUserAdvanced__filter-
|
|
344
|
-
"SearchUserAdvanced__filter-label": "_SearchUserAdvanced__filter-
|
|
345
|
-
"SearchUserAdvanced__filter-value": "_SearchUserAdvanced__filter-
|
|
340
|
+
"SearchUserAdvanced__filter-row": "_SearchUserAdvanced__filter-row_1c2w8_8",
|
|
341
|
+
"SearchUserAdvanced__filter-select": "_SearchUserAdvanced__filter-select_1c2w8_12",
|
|
342
|
+
"SearchUserAdvanced__filter-label": "_SearchUserAdvanced__filter-label_1c2w8_21",
|
|
343
|
+
"SearchUserAdvanced__filter-value": "_SearchUserAdvanced__filter-value_1c2w8_26",
|
|
346
344
|
SearchUserAdvanced__arrow: ue,
|
|
347
|
-
"SearchUserAdvanced__arrow--up": "_SearchUserAdvanced__arrow--
|
|
345
|
+
"SearchUserAdvanced__arrow--up": "_SearchUserAdvanced__arrow--up_1c2w8_38",
|
|
348
346
|
SearchUserAdvanced__dropdown: Se,
|
|
349
|
-
SearchUserAdvanced__option:
|
|
350
|
-
"SearchUserAdvanced__age-inputs": "_SearchUserAdvanced__age-
|
|
351
|
-
"SearchUserAdvanced__age-input": "_SearchUserAdvanced__age-
|
|
352
|
-
"SearchUserAdvanced__confirm-button": "_SearchUserAdvanced__confirm-
|
|
353
|
-
"SearchUserAdvanced__action-sheet-mask": "_SearchUserAdvanced__action-sheet-
|
|
354
|
-
"SearchUserAdvanced__action-sheet-panel": "_SearchUserAdvanced__action-sheet-
|
|
355
|
-
"SearchUserAdvanced-slideUp": "_SearchUserAdvanced-
|
|
356
|
-
"SearchUserAdvanced__action-sheet-option": "_SearchUserAdvanced__action-sheet-
|
|
357
|
-
"SearchUserAdvanced__action-sheet-cancel": "_SearchUserAdvanced__action-sheet-
|
|
358
|
-
"SearchUserAdvanced__action-sheet-confirm": "_SearchUserAdvanced__action-sheet-
|
|
359
|
-
"SearchUserAdvanced__filter-row-right": "_SearchUserAdvanced__filter-row-
|
|
360
|
-
"SearchUserAdvanced__filter-icon": "_SearchUserAdvanced__filter-
|
|
361
|
-
"SearchUserAdvanced__filter-text": "_SearchUserAdvanced__filter-
|
|
362
|
-
"SearchUserAdvanced__age-inputs-sheet": "_SearchUserAdvanced__age-inputs-
|
|
363
|
-
"SearchUserAdvanced__filter-page": "_SearchUserAdvanced__filter-
|
|
364
|
-
"SearchUserAdvanced__filter-page-header": "_SearchUserAdvanced__filter-page-
|
|
365
|
-
"SearchUserAdvanced__back-button": "_SearchUserAdvanced__back-
|
|
366
|
-
"SearchUserAdvanced__header-title": "_SearchUserAdvanced__header-
|
|
367
|
-
"SearchUserAdvanced__filter-page-main": "_SearchUserAdvanced__filter-page-
|
|
368
|
-
"SearchUserAdvanced__bottom-line": "_SearchUserAdvanced__bottom-
|
|
369
|
-
"SearchUserAdvanced__filter-page-row": "_SearchUserAdvanced__filter-page-
|
|
370
|
-
"SearchUserAdvanced__filter-page-label": "_SearchUserAdvanced__filter-page-
|
|
371
|
-
"SearchUserAdvanced__filter-page-value": "_SearchUserAdvanced__filter-page-
|
|
372
|
-
"SearchUserAdvanced__filter-page-footer": "_SearchUserAdvanced__filter-page-
|
|
373
|
-
"SearchUserAdvanced__filter-confirm-button": "_SearchUserAdvanced__filter-confirm-
|
|
374
|
-
},
|
|
375
|
-
$style:
|
|
376
|
-
}, Ce = /* @__PURE__ */
|
|
347
|
+
SearchUserAdvanced__option: fe,
|
|
348
|
+
"SearchUserAdvanced__age-inputs": "_SearchUserAdvanced__age-inputs_1c2w8_67",
|
|
349
|
+
"SearchUserAdvanced__age-input": "_SearchUserAdvanced__age-input_1c2w8_67",
|
|
350
|
+
"SearchUserAdvanced__confirm-button": "_SearchUserAdvanced__confirm-button_1c2w8_108",
|
|
351
|
+
"SearchUserAdvanced__action-sheet-mask": "_SearchUserAdvanced__action-sheet-mask_1c2w8_127",
|
|
352
|
+
"SearchUserAdvanced__action-sheet-panel": "_SearchUserAdvanced__action-sheet-panel_1c2w8_140",
|
|
353
|
+
"SearchUserAdvanced-slideUp": "_SearchUserAdvanced-slideUp_1c2w8_1",
|
|
354
|
+
"SearchUserAdvanced__action-sheet-option": "_SearchUserAdvanced__action-sheet-option_1c2w8_157",
|
|
355
|
+
"SearchUserAdvanced__action-sheet-cancel": "_SearchUserAdvanced__action-sheet-cancel_1c2w8_171",
|
|
356
|
+
"SearchUserAdvanced__action-sheet-confirm": "_SearchUserAdvanced__action-sheet-confirm_1c2w8_180",
|
|
357
|
+
"SearchUserAdvanced__filter-row-right": "_SearchUserAdvanced__filter-row-right_1c2w8_189",
|
|
358
|
+
"SearchUserAdvanced__filter-icon": "_SearchUserAdvanced__filter-icon_1c2w8_196",
|
|
359
|
+
"SearchUserAdvanced__filter-text": "_SearchUserAdvanced__filter-text_1c2w8_200",
|
|
360
|
+
"SearchUserAdvanced__age-inputs-sheet": "_SearchUserAdvanced__age-inputs-sheet_1c2w8_205",
|
|
361
|
+
"SearchUserAdvanced__filter-page": "_SearchUserAdvanced__filter-page_1c2w8_213",
|
|
362
|
+
"SearchUserAdvanced__filter-page-header": "_SearchUserAdvanced__filter-page-header_1c2w8_226",
|
|
363
|
+
"SearchUserAdvanced__back-button": "_SearchUserAdvanced__back-button_1c2w8_233",
|
|
364
|
+
"SearchUserAdvanced__header-title": "_SearchUserAdvanced__header-title_1c2w8_240",
|
|
365
|
+
"SearchUserAdvanced__filter-page-main": "_SearchUserAdvanced__filter-page-main_1c2w8_249",
|
|
366
|
+
"SearchUserAdvanced__bottom-line": "_SearchUserAdvanced__bottom-line_1c2w8_258",
|
|
367
|
+
"SearchUserAdvanced__filter-page-row": "_SearchUserAdvanced__filter-page-row_1c2w8_262",
|
|
368
|
+
"SearchUserAdvanced__filter-page-label": "_SearchUserAdvanced__filter-page-label_1c2w8_270",
|
|
369
|
+
"SearchUserAdvanced__filter-page-value": "_SearchUserAdvanced__filter-page-value_1c2w8_275",
|
|
370
|
+
"SearchUserAdvanced__filter-page-footer": "_SearchUserAdvanced__filter-page-footer_1c2w8_283",
|
|
371
|
+
"SearchUserAdvanced__filter-confirm-button": "_SearchUserAdvanced__filter-confirm-button_1c2w8_288"
|
|
372
|
+
}, Ue = {
|
|
373
|
+
$style: Ae
|
|
374
|
+
}, Ce = /* @__PURE__ */ te(ve, [["__cssModules", Ue]]);
|
|
377
375
|
export {
|
|
378
376
|
Ce as default
|
|
379
377
|
};
|