mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-01-16 09:35:36 -05:00
fix input box issues (#15587)
This commit is contained in:
@@ -1074,6 +1074,14 @@ class InputBoxWrapper extends ComponentWrapper implements azdata.InputBoxCompone
|
||||
this.setProperty('validationErrorMessage', v);
|
||||
}
|
||||
|
||||
public get maxLength(): number | undefined {
|
||||
return this.properties['maxLength'];
|
||||
}
|
||||
|
||||
public set maxLength(v: number | undefined) {
|
||||
this.setProperty('maxLength', v);
|
||||
}
|
||||
|
||||
public get onTextChanged(): vscode.Event<any> {
|
||||
let emitter = this._emitterMap.get(ComponentEventType.onDidChange);
|
||||
return emitter && emitter.event;
|
||||
|
||||
Reference in New Issue
Block a user