4fcc92a381
2. 合同模板对比接入monaco editor的效果。 3. 添加交叉评查的案卷类型的数据查询。 fix: 1. 修复文档列表的打开模态框蒙板层显示效果。
49 lines
797 B
TypeScript
49 lines
797 B
TypeScript
/**
|
|
* Collabora 功能模块统一导出
|
|
*
|
|
* @encoding UTF-8
|
|
*/
|
|
|
|
|
|
// 高亮,已经封装好了
|
|
export { highlightText } from './Highlightselecttext';
|
|
|
|
// 导航/跳转功能
|
|
export {
|
|
unoScrollToTop
|
|
} from './navigation';
|
|
|
|
// 缩放功能
|
|
export {
|
|
unoZoomIn,
|
|
unoZoomOut,
|
|
unoSetZoom
|
|
} from './zoom';
|
|
|
|
// 页数信息
|
|
export {
|
|
requestPageInfo,
|
|
type PageInfo
|
|
} from './pageInfo';
|
|
|
|
// 自定义页面跳转功能
|
|
export {
|
|
customGotoPage,
|
|
type GotoPageResponse
|
|
} from './gotoPage';
|
|
|
|
// 搜索替换功能
|
|
export {
|
|
unoSearchNext,
|
|
unoSearchPrevious,
|
|
unoReplaceCurrent,
|
|
unoReplaceAll,
|
|
unoSearchAndReplace,
|
|
unoCancelSearch,
|
|
replaceTextInPage,
|
|
SearchCommand,
|
|
type SearchOptions,
|
|
type ReplaceOptions,
|
|
} from './SearchandReplace';
|
|
|