Hi, I am using the mask with 2 digits before and 2 after the dot. I entered 9999 and see in my input 99.99, so I expect to see a decimal 99.99 but got 9999. Even when I enter 99.99 I see 9999 as an input value. I think this is unexpected behavior... Or maybe I missed something with the configuration?
<input angularFormsCurrency
[maxIntegerDigits]="2"
[digitsAfterSeparator]="2"
[validateOnInit]="false"
formControlName="asd">
Hi, I am using the mask with 2 digits before and 2 after the dot. I entered 9999 and see in my input 99.99, so I expect to see a decimal 99.99 but got 9999. Even when I enter 99.99 I see 9999 as an input value. I think this is unexpected behavior... Or maybe I missed something with the configuration?