added 'fireOnTextChange' field to azdata.proposed.d.ts (#4341)

This commit is contained in:
Gene Lee
2019-03-07 16:03:50 -08:00
committed by GitHub
parent 96a976d826
commit 36e5bbb752
4 changed files with 14 additions and 1 deletions

View File

@@ -1072,6 +1072,13 @@ class DropDownWrapper extends ComponentWrapper implements azdata.DropDownCompone
this.setProperty('editable', v);
}
public get fireOnTextChange(): boolean {
return this.properties['fireOnTextChange'];
}
public set fireOnTextChange(v: boolean) {
this.setProperty('fireOnTextChange', v);
}
public get onValueChanged(): vscode.Event<any> {
let emitter = this._emitterMap.get(ComponentEventType.onDidChange);
return emitter && emitter.event;