Specifies a pipe to be used on focus.
<input [focusedValuePipe] = "inputFormatPipe">
Specifies if the bound value includes the formatting symbols.
<input [includeLiterals] = "true">
Sets the character representing a fillable spot in the input mask. Default value is "'_'".
<input [promptChar] = "'/'">
Emits an event each time the value changes.
Provides rawValue: string
and formattedValue: string
as event arguments.
<input (valueChanged) = "valueChanged(rawValue: string, formattedValue: string)">
Specifies a pipe to be used on blur.