UNPKG

angular-jsf-components

Version:
20 lines (19 loc) 592 B
<ng-container *ngIf="rendered"> <ng-template #content> <ng-content></ng-content> </ng-template> <ng-container *ngIf="layout === 'block'"> <div [class]="styleClass" [id]="id" [ngStyle]="style"> <ng-container [ngTemplateOutlet]="content"></ng-container> </div> </ng-container> <ng-container *ngIf="layout !== 'block'"> <span [class]="styleClass" [id]="id" [ngStyle]="style"> <ng-container [ngTemplateOutlet]="content"></ng-container> </span> </ng-container> </ng-container>