The structure directive is just a sugar syntax of <template>. Such as: <div *ngIf="name.length > 2"> This is something... </div> Equal to: <template [ngIf]="name.length > 2"> <div> There are somoethi…
For example you have a component, which take a trasclude input element: <au-fa-input id="password-field" icon="lock" > <input placeholder="Password" class="test-class"> </au-fa-input> There is many…