Vanessa 2023-10-01 17:05:06 +08:00
parent 6e475e1857
commit b981fa08a0
14 changed files with 53 additions and 22 deletions

View file

@ -62,6 +62,7 @@ type TAVCol =
| "email"
| "phone"
| "mAsset"
| "template"
type THintSource = "search" | "av" | "hint";
type TAVFilterOperator =
"="
@ -929,6 +930,7 @@ interface IModels {
}
interface IMenu {
iconClass?: string,
label?: string,
click?: (element: HTMLElement, event: MouseEvent) => boolean | void | Promise<boolean | void>
type?: "separator" | "submenu" | "readonly",
@ -1071,6 +1073,10 @@ interface IAVCellValue {
email?: {
content: string
}
template?: {
content: string
renderedContent?:string
}
date?: IAVCellDateValue
}