fix keyboard focus issues (#16206)

This commit is contained in:
Alan Ren
2021-07-16 13:27:15 -07:00
committed by GitHub
parent 3847271e67
commit eed792f3db
19 changed files with 69 additions and 86 deletions

View File

@@ -56,6 +56,10 @@ export abstract class ComponentBase<TPropertyBag extends azdata.ComponentPropert
this.modelStore.registerComponent(this);
this._validations.push(() => this.modelStore.validate(this));
}
this.fireEvent({
eventType: ComponentEventType.onComponentLoaded,
args: undefined
});
}
abstract ngAfterViewInit(): void;