@ -276,7 +276,7 @@ BI.Editor = BI.inherit(BI.Single, {
}
if (!this.disabledError && BI.isKey(errorText)) {
BI.Bubbles[b ? "show" : "hide"](this.getName(), errorText, this, {
adjustYOffset: o.simple ? 1 : 2,
adjustYOffset: BI.isKey(o.adjustYOffset) ? o.adjustYOffset : (o.simple ? 1 : 2),
});
this._checkToolTip();
@ -11,6 +11,7 @@ export declare class Editor extends Single {
watermark?: string;
errorText?: string | ((v: string) => string);
autocomplete?: string;
adjustYOffset?: number;
} & Single['props']
static EVENT_CHANGE: string;