In a regular HTML file we can do as in html to have a privilege to check the checkbox by clicking anywhere on label, even by setting the checkbox input display to none
<label for="check">
<input id="check" type="checkbox">
</label>
Why same is not working in Angular? I'm interested how I can do same in Angular 5+.