|
|
@@ -1,11 +1,23 @@
|
|
|
<ng-container *ngIf="stringModel !== undefined; else complexModel">
|
|
|
- <app-service-check-string [model]="stringModel" [sortVisible]="sortVisible" (sort)="sort.emit($event)"></app-service-check-string>
|
|
|
+ <app-service-check-string
|
|
|
+ [model]="stringModel"
|
|
|
+ [sortVisible]="sortVisible"
|
|
|
+ (sort)="sort.emit($event)"
|
|
|
+ (remove)="remove.emit()"></app-service-check-string>
|
|
|
</ng-container>
|
|
|
<ng-template #complexModel>
|
|
|
<ng-container *ngIf="conjunction; else disjunctModel">
|
|
|
- <app-service-check-conjunction [model]="conjunction" [sortVisible]="sortVisible" (sort)="sort.emit($event)"></app-service-check-conjunction>
|
|
|
+ <app-service-check-conjunction
|
|
|
+ [model]="conjunction"
|
|
|
+ [sortVisible]="sortVisible"
|
|
|
+ (sort)="sort.emit($event)"
|
|
|
+ (remove)="remove.emit()"></app-service-check-conjunction>
|
|
|
</ng-container>
|
|
|
<ng-template #disjunctModel>
|
|
|
- <app-service-check-disjunction [model]="disjunction" [sortVisible]="sortVisible" (sort)="sort.emit($event)"></app-service-check-disjunction>
|
|
|
+ <app-service-check-disjunction
|
|
|
+ [model]="disjunction"
|
|
|
+ [sortVisible]="sortVisible"
|
|
|
+ (sort)="sort.emit($event)"
|
|
|
+ (remove)="remove.emit()"></app-service-check-disjunction>
|
|
|
</ng-template>
|
|
|
</ng-template>
|