mirror of
https://github.com/Alfresco/alfresco-content-app.git
synced 2025-05-26 17:24:45 +00:00
* [ACA-1449][ACA-1448] Show searched term on the extended search input * [ACA-1449][ACA-1448] fix test
18 lines
671 B
HTML
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>
|