mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-05-19 17:14:57 +00:00
* add stylelint * fix style first part * fix style second part * fix style third part * fix style fourth part * Fix e2e tests first part * Fix e2e tests second part * Rebase branch * fix style third part * fix style fourth part * Fix list error * fix insights * fix style abotu component * Fix e2e tests second part * Rebase branch * fix style third part * fix style fourth part * Fix list error * Fix e2e tests second part * Rebase branch * fix style third part * fix style fourth part * Fix list error * [ADF-3746] Rebase branch * Fix e2e tests second part * Rebase branch * fix style third part * fix style fourth part * Fix list error * Fix e2e tests second part * Rebase branch * Fix list error * fix new style added * tslint fix * [ADF-3746] Fix scss errors on Process Filters Cloud component
73 lines
2.8 KiB
HTML
73 lines
2.8 KiB
HTML
<div class="adf-content adf-header-data">
|
|
<h1>Header data</h1>
|
|
<mat-card>
|
|
<div>
|
|
<mat-checkbox [(ngModel)]="checkbox" (change)="hideButton()">Show menu button</mat-checkbox>
|
|
</div>
|
|
|
|
<div>
|
|
<label>Choose header color</label>
|
|
<select (change)="changeColor($event.target.value)">
|
|
<option value="primary">Primary</option>
|
|
<option value="accent">Accent</option>
|
|
<option value="warn">Warn</option>
|
|
</select>
|
|
OR
|
|
<input type="text" name="color" (keyup.enter)="changeColor($event.target.value)"
|
|
placeholder="hex color code">
|
|
<p>*Choose only one value at a time: either hex code or theme color.</p>
|
|
<p>*press enter for submitting new hex color</p>
|
|
</div>
|
|
|
|
<div>
|
|
<label>Change title</label>
|
|
<input type="text" name="title" (keyup.enter)="submitTitle($event.target.value)"
|
|
placeholder="{{ 'APP_LAYOUT.APP_NAME' | translate}}">
|
|
<p>*press enter for submitting new title</p>
|
|
</div>
|
|
|
|
<div>
|
|
<label>Change logo</label>
|
|
<input type="text" placeholder="URL path" (keyup.enter)="submitLogo($event.target.value)">
|
|
<p>*press enter for submitting new logo</p>
|
|
</div>
|
|
|
|
<div>
|
|
<label>Change logo link</label>
|
|
<input type="url" placeholder="Redirect URL" (keyup.enter)="submitRedirectUrl($event.target.value)">
|
|
<p>*Input JSON friendly array or explicit string. E.g. ["/test", 33, "user", 11] or "/test"</p>
|
|
<p>*press enter for submitting new link on logo</p>
|
|
</div>
|
|
|
|
<div>
|
|
<label>Change logo tooltip</label>
|
|
<input type="text" placeholder="Tooltip text" (keyup.enter)="submitTooltip($event.target.value)">
|
|
<p>*press enter for submitting new tooltip</p>
|
|
</div>
|
|
|
|
<div>
|
|
<label>Sidebar Position </label>
|
|
|
|
<mat-radio-group [(ngModel)]="position" (change)="changePosition()">
|
|
<mat-radio-button value="start">Start</mat-radio-button>
|
|
<mat-radio-button value="end">End</mat-radio-button>
|
|
</mat-radio-group>
|
|
</div>
|
|
<br>
|
|
<br>
|
|
<section>
|
|
<mat-slide-toggle id="adf-hide-sidenav" [color]="'primary'" (click)="changeSidenavVisibility()">
|
|
Hide Sidebar
|
|
</mat-slide-toggle>
|
|
</section>
|
|
|
|
<div>
|
|
<mat-radio-group [(ngModel)]="position" (change)="changePosition()">
|
|
<mat-radio-button value="start">Start</mat-radio-button>
|
|
<mat-radio-button value="end">End</mat-radio-button>
|
|
</mat-radio-group>
|
|
</div>
|
|
|
|
</mat-card>
|
|
</div>
|