Use [matAutocomplete] on my custom input component
问题 So I made my own lib-input component with custom styles that looks something like this: <div class="input"> <mat-form-field appearance="outline"> <input matInput [type]="type" placeholder="{{placeholder}}" [(ngModel)]="input" (input)="onChange()"> <ng-content></ng-content> </mat-form-field> </div> Now I want to use this lib-input with its custom styles for an input field that uses autocomplete. Something like this: <mat-form-field> <lib-input type="text" matInput [formControl]="myControl"