mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-07-31 17:38:48 +00:00
[ACS-5761] Demo Shell pages cleanup (#8802)
remove the content that is not covered by e2e testing, preparation steps for the demo shell decommissioning
This commit is contained in:
@@ -4,10 +4,8 @@
|
||||
<adf-form #adfForm [form]="form" [data]="restoredData" [showValidationIcon]="showValidationIcon">
|
||||
</adf-form>
|
||||
</div>
|
||||
<button mat-button (click)="store()" color="primary">{{'FORM-LIST.STORE' | translate }}</button>
|
||||
<button mat-button (click)="restore()" color="primary">{{'FORM-LIST.RESTORE' | translate }}</button>
|
||||
<button mat-button (click)="store()">Store</button>
|
||||
<button mat-button (click)="restore()">Restore</button>
|
||||
<section class="app-form-list-margin">
|
||||
<mat-slide-toggle color="primary" [(ngModel)]="showValidationIcon">
|
||||
Show Validation Icon
|
||||
</mat-slide-toggle>
|
||||
<mat-slide-toggle [(ngModel)]="showValidationIcon">Show Validation Icon</mat-slide-toggle>
|
||||
</section>
|
||||
|
@@ -2,33 +2,23 @@
|
||||
<mat-accordion>
|
||||
<mat-expansion-panel>
|
||||
<mat-expansion-panel-header>
|
||||
<mat-panel-title>
|
||||
{{'FORM-LOADING.FORM_DATA' | translate}}
|
||||
</mat-panel-title>
|
||||
<mat-panel-description>
|
||||
{{'FORM-LOADING.FORM_DATA_MESSAGE' | translate}}
|
||||
</mat-panel-description>
|
||||
<mat-panel-title>Form Data</mat-panel-title>
|
||||
<mat-panel-description>Enter values to populate the form</mat-panel-description>
|
||||
</mat-expansion-panel-header>
|
||||
<mat-list>
|
||||
<mat-list-item>
|
||||
<mat-form-field>
|
||||
<input matInput
|
||||
placeholder="{{'FORM-LOADING.TYPEAHEAD_PLACEHOLDER' | translate}}"
|
||||
[(ngModel)]="typeaheadFieldValue">
|
||||
<input matInput placeholder="Typeahead" [(ngModel)]="typeaheadFieldValue">
|
||||
</mat-form-field>
|
||||
</mat-list-item>
|
||||
<mat-list-item>
|
||||
<mat-form-field>
|
||||
<input matInput
|
||||
placeholder="{{'FORM-LOADING.SELECT_PLACEHOLDER' | translate}}"
|
||||
[(ngModel)]="selectFieldValue">
|
||||
<input matInput placeholder="DropDown" [(ngModel)]="selectFieldValue">
|
||||
</mat-form-field>
|
||||
</mat-list-item>
|
||||
<mat-list-item>
|
||||
<mat-form-field>
|
||||
<input matInput
|
||||
placeholder="{{'FORM-LOADING.RADIO_PLACEHOLDER' | translate}}"
|
||||
[(ngModel)]="radioButtonFieldValue">
|
||||
<input matInput placeholder="Radio Button" [(ngModel)]="radioButtonFieldValue">
|
||||
</mat-form-field>
|
||||
</mat-list-item>
|
||||
</mat-list>
|
||||
|
Reference in New Issue
Block a user