mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-05-26 17:24:56 +00:00
* [AAE-534] - add search cloud component * change doc file * more changes on doc file * remove empty scss file * add animation and more customizations * add preselect value property * fix unit tests
14 lines
567 B
HTML
14 lines
567 B
HTML
<div class="adf-search-cloud-wrapper" #searchContainer>
|
|
|
|
<mat-form-field class="adf-search-text-cloud">
|
|
<input
|
|
matInput
|
|
[(ngModel)]="properties.value"
|
|
placeholder="{{ properties?.placeholder }}"
|
|
(input)="onChangedHandler($event)"
|
|
data-automation-id="search-project-field" />
|
|
<mat-icon matSuffix *ngIf="properties.value?.length > 0" (click)="clear()">close</mat-icon>
|
|
</mat-form-field>
|
|
|
|
<mat-icon class="adf-search-cloud-icon" (click)="toggle()" matSuffix>search</mat-icon>
|
|
</div> |