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 // Placeholder text
group?: IGroup // Group option. {opacity?:number; backgroundColor?:string; activeOpacity?:number; activeBackgroundColor?:string; disabled?:boolean}
pageBreak?: IPageBreak // PageBreak option。{font?:string; fontSize?:number; lineDash?:number[];}
zone?: IZoneOption // Zone option。{tipDisabled?:boolean;}
}
```