Warning, file /firebird/firebird-ng/src/app/components/resource-select/resource-select.component.html was not indexed
or was modified since last indexation (in which case cross-reference links may be missing, inaccurate or erroneous).
0001 <mat-form-field class="full-width-field">
0002 <mat-label>{{this.label}}</mat-label>
0003 <input type="text" matInput [formControl]="value" [matAutocomplete]="auto">
0004 <mat-autocomplete #auto="matAutocomplete" [displayWith]="onDisplayValueChange" autoSelectActiveOption="true">
0005 <mat-option *ngFor="let option of filteredOptions | async" [value]="option">
0006 {{ option }}
0007 </mat-option>
0008 </mat-autocomplete>
0009 </mat-form-field>