mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-07-24 17:32:15 +00:00
11 lines
313 B
HTML
11 lines
313 B
HTML
<mat-form-field>
|
|
<input
|
|
matInput
|
|
[placeholder]="settings?.placeholder"
|
|
[(ngModel)]="value"
|
|
(change)="onChangedHandler($event)">
|
|
<button mat-button *ngIf="value" matSuffix mat-icon-button (click)="reset()">
|
|
<mat-icon>close</mat-icon>
|
|
</button>
|
|
</mat-form-field>
|