alfresco-content-app/src/app/components/search-input/search-input.component.html
Suzana Dirla 981b59095c [ACA-1449][ACA-1448] Show searched term on the extended search input (#411)
* [ACA-1449][ACA-1448] Show searched term on the extended search input

* [ACA-1449][ACA-1448] fix test
2018-06-14 14:26:25 +01:00

18 lines
671 B
HTML

<div class="adf-search-control-wrapper">
<button mat-icon-button
*ngIf="onSearchResults"
id="adf-search-button"
class="adf-search-button"
[title]="'SEARCH.BUTTON.TOOLTIP' | translate">
<mat-icon [attr.aria-label]="'SEARCH.BUTTON.ARIA-LABEL' | translate">search</mat-icon>
</button>
<adf-search-control #searchControl
[highlight]="true"
(optionClicked)="onItemClicked($event)"
[expandable]="!onSearchResults"
[liveSearchEnabled]="!onSearchResults"
(submit)="onSearchSubmit($event)"
(searchChange)="onSearchChange($event)">
</adf-search-control>
</div>