In mat-form-field with outline appearance you can insert a mat-chip-list inside the form-field but the label doesn't go above the input
it's look like a bug, because if we insert the mat-chip-list outside or if we change the appearance everything look good

Stackblitz to see what i mean
https://stackblitz.com/edit/angular-dydyib
The label should go above the input like that

The label stay in the input
"@angular/material": "^6.3.2"
OS: MacOS Mojave
Hello,
@Splaktar don't know if is a bug actually, because it's work fine if the mat-label is outside the mat-chip-list.
this work
<mat-form-field>
<mat-label></mat-label>
<mat-chip-list>
<mat-chip></mat-chip>
<input>
</mat-chip-list>
<mat-autocomplete>
</mat-autocomplete>
</mat-form-field>
but if we move the mat-label inside like that, the label don't have the correct render
<mat-form-field>
<mat-chip-list>
<mat-chip></mat-chip>
<mat-label></mat-label>
<input>
</mat-chip-list>
<mat-autocomplete>
</mat-autocomplete>
</mat-form-field>
This is certainly a hole in our documentation. As you found, the mat-label needs to be in the mat-form-field and not within the mat-chip-list. Here's a working StackBlitz.
Thank you for pointing this out.
Pull request created #16578
Most helpful comment
Hello,
@Splaktar don't know if is a bug actually, because it's work fine if the mat-label is outside the mat-chip-list.
this work
but if we move the mat-label inside like that, the label don't have the correct render