mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-05-12 17:04:57 +00:00
* move download-zip to its own folder * json dialog * update docs * update test * disable e2e test * json widget for the Form * remove deprecated test * fix tests, update display text name
14 lines
489 B
HTML
14 lines
489 B
HTML
<h1 mat-dialog-title>{{ title | translate }}</h1>
|
|
<mat-dialog-content>
|
|
<textarea [(ngModel)]="value" [attr.readonly]="!editable"></textarea>
|
|
</mat-dialog-content>
|
|
|
|
<mat-dialog-actions align="end">
|
|
<button mat-button mat-dialog-close cdkFocusInitial>
|
|
{{ 'CORE.DIALOG.EDIT_JSON.CLOSE' | translate }}
|
|
</button>
|
|
<button *ngIf="editable" mat-button [mat-dialog-close]="value">
|
|
{{ 'CORE.DIALOG.EDIT_JSON.UPDATE' | translate }}
|
|
</button>
|
|
</mat-dialog-actions>
|