Build infrastructure and Angular 15 upgrade

This commit is contained in:
aboyko
2023-02-28 19:22:33 -05:00
parent aa27ebeb3f
commit edfcdb2b02
101 changed files with 8009 additions and 25625 deletions

View File

@@ -0,0 +1,12 @@
<div *ngIf="propertiesGroupModel && !propertiesGroupModel.isLoading" class="properties-group-container"
[formGroup]="form">
<div
*ngIf="propertiesGroupModel.getControlsModels().length > 0 && controlModelsToDisplay.length === 0; else propertiesList"
class="no-matches-label">No results found.
</div>
</div>
<ng-template #propertiesList>
<df-property *ngFor="let model of controlModelsToDisplay" [model]="model" [form]="form"
class="property-row"></df-property>
</ng-template>