feat:完成Collabora初步集成(返回顶部、文档页数获取)

This commit is contained in:
PingChuan
2025-11-25 10:56:47 +08:00
parent 31614374a7
commit 272c3e8dce
14 changed files with 583 additions and 208 deletions
+34
View File
@@ -0,0 +1,34 @@
/**
* Collabora 功能模块统一导出
*
* @encoding UTF-8
*/
// 搜索功能
export { unoSearchText } from './search';
// 替换功能
export { unoReplaceText } from './replace';
// 高亮功能
export { unoHighlightText, unoRemoveHighlight, unoEscape } from './highlight';
// 导航/跳转功能
export {
unoScrollToTop,
unoGotoPage,
unoFirstPage,
unoLastPage,
} from './navigation';
// 缩放功能
export { unoZoomPlus, unoZoomMinus, unoSetZoom } from './zoom';
// 文档操作
export { unoSave } from './document';
// 页数信息
export {
requestPageInfo,
type PageInfo,
} from './pageInfo';