import type { PopsPanelContentConfig } from "@whitesev/pops/dist/types/src/components/panel/types/index.js"; import { UISwitch } from "@components/setting/components/ui-switch"; export const SettingUIHome: PopsPanelContentConfig = { id: "weibo-panel-config-card-article", title: "首页", views: [ { text: "功能", type: "container", views: [ UISwitch("新增超话Tab", "weibo-home-addSupertalkTab", false, void 0, "在首页添加超话Tab,方便快速查看超话"), UISwitch( "新增【新标签页打开】按钮", "weibo-home-addOpenBlankBtn", false, void 0, "在每个card下面的按钮区域添加该按钮,方便快速在新标签页中打开" ), ], }, { text: "网络拦截", type: "container", views: [ UISwitch("过滤掉信息流广告", "weibo-request-blockArticleAds", true, void 0, '夹杂在文章中间的"微博广告"'), ], }, { text: "屏蔽", type: "container", views: [UISwitch("屏蔽消息数量", "weibo-home-blockMessageCount", false, void 0, "即登录后右上角的消息提示数")], }, ], };