You can add a variable that controls the selected value. For example selectedType, then, use ngIf to hide or show the elements.
In the .component.ts
selectedType = 'opentype';
onChange(event) {
this.selectedType = event.target.value;
}
In the html
Application Name is required!