feat: add zone tooltip #367

This commit is contained in:
Hufe921
2023-12-22 21:34:48 +08:00
parent 57fdcb8b81
commit 095414fbe6
16 changed files with 183 additions and 2 deletions
+4
View File
@@ -96,5 +96,9 @@ interface ILang {
pageBreak: {
displayName: string
}
zone: {
headerTip: string
footerTip: string
}
}
```
+1
View File
@@ -67,6 +67,7 @@ interface IEditorOption {
placeholder?: IPlaceholder // 编辑器空白占位文本
group?: IGroup // 成组配置。{opacity?:number; backgroundColor?:string; activeOpacity?:number; activeBackgroundColor?:string; disabled?:boolean}
pageBreak?: IPageBreak // 分页符配置。{font?:string; fontSize?:number; lineDash?:number[];}
zone?: IZoneOption // 编辑器区域配置。{tipDisabled?:boolean;}
}
```