mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-01-15 01:25:36 -05:00
added 'fireOnTextChange' field to azdata.proposed.d.ts (#4341)
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user