[ADF-4894] Json editor dialog (#5082)

* 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
This commit is contained in:
Denys Vuika
2019-09-20 07:26:37 +01:00
committed by GitHub
parent c15807a013
commit 90b2cee70d
31 changed files with 357 additions and 127 deletions

View File

@@ -0,0 +1,13 @@
<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>