loading indicator for table designer (#17407)

* loading indicator for table designer

* fix layering error

* bug fix
This commit is contained in:
Alan Ren
2021-10-20 12:54:23 -07:00
committed by GitHub
parent 328ed83cb9
commit c89aa26c0a
7 changed files with 165 additions and 12 deletions

View File

@@ -176,4 +176,13 @@ export class InputBox extends vsInputBox {
super.width = width;
this.element.style.width = 'fit-content';
}
public override get value() {
return super.value;
}
public override set value(newValue: string) {
this._lastLoseFocusValue = newValue;
super.value = newValue;
}
}