This commit is contained in:
Vanessa 2023-07-28 20:16:32 +08:00
parent 119314ba02
commit ebc2111fe8
7 changed files with 78 additions and 29 deletions

View file

@ -46,6 +46,7 @@ type TEventBus = "ws-main" |
"input-search" |
"loaded-protyle"
type TAVCol = "text" | "date" | "number" | "relation" | "rollup" | "select" | "block" | "mSelect"
type THintSource = "search" | "av" | "hint";
type TAVFilterOperator =
"="
| "!="

View file

@ -345,7 +345,7 @@ interface IHintData {
interface IHintExtend {
key: string;
hint?(value: string, protyle: IProtyle): IHintData[];
hint?(value: string, protyle: IProtyle, source: THintSource): IHintData[];
}
/** @link https://ld246.com/article/1549638745630#options-hint */