mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-07-24 17:32:15 +00:00
25 lines
799 B
HTML
25 lines
799 B
HTML
<mat-radio-group
|
|
[(ngModel)]="value"
|
|
(change)="changeHandler($event)">
|
|
<mat-radio-button
|
|
*ngFor="let option of options"
|
|
[value]="option.value">
|
|
{{ option.name | translate }}
|
|
</mat-radio-button>
|
|
</mat-radio-group>
|
|
|
|
<div class="facet-buttons" *ngIf="!options.fitsPage">
|
|
<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>
|