23 lines
589 B
HTML
23 lines
589 B
HTML
|
|
<div class="flex items-stretch gap-2">
|
||
|
|
<div class="shrink-0 flex items-center">
|
||
|
|
@if (editMode()) {
|
||
|
|
<ng-container [ngTemplateOutlet]="field"></ng-container>
|
||
|
|
} @else {
|
||
|
|
<ng-container [ngTemplateOutlet]="data"></ng-container>
|
||
|
|
}
|
||
|
|
</div>
|
||
|
|
<div class="relative shrink-0">
|
||
|
|
<div class="static end-0 top-0">
|
||
|
|
<button
|
||
|
|
pButton
|
||
|
|
size="small"
|
||
|
|
type="button"
|
||
|
|
[icon]="'pi ' + (editMode() ? 'pi-times' : 'pi-pencil')"
|
||
|
|
text
|
||
|
|
severity="secondary"
|
||
|
|
(click)="toggleEditMode()"
|
||
|
|
></button>
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
</div>
|