When entering a placeholder for the mdChips component, the placeholder text is cut off prematurely.

Even though there is visually still a lot of space left, the text is cut off.
https://codepen.io/anon/pen/XqqKrY
The text should fill the entire remaining space.
The text is cut off prematurely.
Seeing more of the placeholder text will help users because they get information that was previously needlessly hidden. It will also help developers because they will have an easier time getting relevant placeholder information at that location.
I played around a bit with this approach. It looks good, but I don't know if it's the right way to go. Please let me know. I'd happily open a PR.
md-chips md-chips-wrap.md-chips {
display: flex;
flex-wrap: wrap;
}
md-chips .md-chip-input-container {
flex-grow: 1;
}
md-chips .md-chip-input-container input {
width: 100%;
}
CodePen: https://codepen.io/anon/pen/YLLWGz
Try to add many chips, they don't go to the next line now
Sorry, the CodePen was missing the flex-wrap: wrap;. It should work now.
https://github.com/angular/material/issues/10630 is already open for this issue. I know it's a significant problem and it is being worked on.
Most helpful comment
Sorry, the CodePen was missing the
flex-wrap: wrap;. It should work now.