Angular 18 upgrade (cont). Spring Flo 0.14.0

This commit is contained in:
aboyko
2025-01-17 17:01:31 -05:00
parent 8f469541cd
commit 02c50d2140
7 changed files with 25 additions and 24897 deletions

View File

@@ -26,11 +26,11 @@
<select *ngSwitchCase="types.SELECT" class="df-property-control" [id]="model.id"
[formControlName]="model.id" [(ngModel)]="model.value">
<option *ngFor="let o of model['options']" [ngValue]="o.value">{{o.name}}</option>
<option *ngFor="let o of selectControlModel.options" [ngValue]="o.value">{{o.name}}</option>
</select>
<code-editor *ngSwitchCase="types.CODE" class="df-property-control" [id]="model.id"
[formControlName]="model.id" [language]="model['language']" [(ngModel)]="model.value" [line-numbers]="true"
[formControlName]="model.id" [language]="codeControlModel.language" [(ngModel)]="model.value" [line-numbers]="true"
scrollbar-style="simple" [placeholder]="model.defaultValue || 'Enter code snippet...'" [overview-ruler]="true">
</code-editor>