Library: Angular Material (material2)
I would like to use the MdInputContainer's floatPlaceholder directive, so that the placeholder/hint never floats.
I don't see where it states the values it expects in the documentation:
@Input() floatPlaceholder: Whether the placeholder should always float, never float or float as the user types.
taken from: https://material.angular.io/components/input/api
<md-input-container [floatPlaceholder]="false">
<input type="text" mdInput placeholder="Search...">
</md-input-container>
I've tried false and "never" for the values as my best guesses, but neither prevents the placeholder from floating above the input.