mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-07-24 17:32:15 +00:00
* Add tests for text widget * Propose refactor search filters component * Fix lint errors * [ADF-3715]Refactor searchFiltersPage * Change describe * Replaced use of searchDialog with browser.get * Added a test case * Modifications to enterConfiguration method * Create a new method enterBigConfigurationText * Fix lint issues * no message
36 lines
1.2 KiB
HTML
36 lines
1.2 KiB
HTML
<div class="checklist">
|
|
<mat-checkbox
|
|
*ngFor="let option of options"
|
|
[checked]="option.checked"
|
|
[attr.data-automation-id]="'checkbox-' + (option.name)"
|
|
(change)="changeHandler($event, option)">
|
|
{{ option.name | translate }}
|
|
</mat-checkbox>
|
|
</div>
|
|
|
|
<div class="facet-buttons" *ngIf="options.fitsPage">
|
|
<button mat-button color="primary" (click)="reset()">
|
|
{{ 'SEARCH.FILTER.ACTIONS.CLEAR-ALL' | translate }}
|
|
</button>
|
|
</div>
|
|
|
|
<div class="facet-buttons" *ngIf="!options.fitsPage">
|
|
<button mat-icon-button
|
|
title="{{ 'SEARCH.FILTER.ACTIONS.CLEAR-ALL' | translate }}"
|
|
(click)="reset()">
|
|
<mat-icon>clear</mat-icon>
|
|
</button>
|
|
<button mat-icon-button
|
|
*ngIf="options.canShowLessItems"
|
|
title="{{ 'SEARCH.FILTER.ACTIONS.SHOW-LESS' | translate }}"
|
|
(click)="options.showLessItems()">
|
|
<mat-icon>keyboard_arrow_up</mat-icon>
|
|
</button>
|
|
<button mat-icon-button
|
|
*ngIf="options.canShowMoreItems"
|
|
title="{{ 'SEARCH.FILTER.ACTIONS.SHOW-MORE' | translate }}"
|
|
(click)="options.showMoreItems()">
|
|
<mat-icon>keyboard_arrow_down</mat-icon>
|
|
</button>
|
|
</div>
|