Silviu Popa 7698fb8edb [AAE-534] Core - add search cloud component (#5193)
* [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
2019-10-30 07:44:37 +00:00

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>