迁移聊天动作选择入口

This commit is contained in:
2026-04-25 19:52:03 +08:00
parent 17d1885efc
commit f0269c7c17
3 changed files with 33 additions and 14 deletions
+4 -2
View File
@@ -67,7 +67,7 @@ export { bindDailySignInControls } from "./chat-room/daily-sign-in.js";
export { bindEarnPanelControls, createEarnPanelData } from "./chat-room/earn-panel.js";
export { applyFontSize, bindChatFontSizeControl, CHAT_FONT_SIZE_STORAGE_KEY, restoreChatFontSize } from "./chat-room/font-size.js";
export { bindChatImageUploadControl } from "./chat-room/image-upload.js";
export { bindChatComposerControls } from "./chat-room/composer.js";
export { bindChatComposerControls, setChatComposerAction } from "./chat-room/composer.js";
export { bindChatToast } from "./chat-room/toast.js";
export { bindFriendPanelControls, closeFriendPanel, friendSearch, loadFriends, openFriendPanel, quickFriendAction } from "./chat-room/friend-panel.js";
export { bindFriendNotificationControls, setupBannerNotification, setupFriendNotification, showFriendBanner } from "./chat-room/friend-notifications.js";
@@ -269,7 +269,7 @@ import { bindDailySignInControls } from "./chat-room/daily-sign-in.js";
import { bindEarnPanelControls, createEarnPanelData } from "./chat-room/earn-panel.js";
import { applyFontSize, bindChatFontSizeControl, CHAT_FONT_SIZE_STORAGE_KEY, restoreChatFontSize } from "./chat-room/font-size.js";
import { bindChatImageUploadControl } from "./chat-room/image-upload.js";
import { bindChatComposerControls } from "./chat-room/composer.js";
import { bindChatComposerControls, setChatComposerAction } from "./chat-room/composer.js";
import { bindChatToast } from "./chat-room/toast.js";
import { bindFriendPanelControls, closeFriendPanel, friendSearch, loadFriends, openFriendPanel, quickFriendAction } from "./chat-room/friend-panel.js";
import { bindFriendNotificationControls, setupBannerNotification, setupFriendNotification, showFriendBanner } from "./chat-room/friend-notifications.js";
@@ -489,6 +489,7 @@ if (typeof window !== "undefined") {
bindChatFontSizeControl,
bindChatImageUploadControl,
bindChatComposerControls,
setChatComposerAction,
bindChatToast,
bindFriendPanelControls,
bindFriendNotificationControls,
@@ -702,6 +703,7 @@ if (typeof window !== "undefined") {
window.isExpiredChatImageMessage = isExpiredChatImageMessage;
window.localClearScreen = localClearScreen;
window.normalizeSafeChatUrl = normalizeSafeChatUrl;
window.setAction = setChatComposerAction;
window.syncAutoScrollControls = syncAutoScrollControls;
window.openChatImageLightbox = openChatImageLightbox;
window.closeFriendPanel = closeFriendPanel;