This repository has been archived by the owner on Sep 4, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 132
BUG: ? Optional (next character) - does not work #65
Comments
I am trying to get something similar for a currency. '#?#?#.##' except the ? does not allow 5.20 or 15.20 only 152.0 Is this possible? |
Here happens same thing, using '(##) ########?#' when typing the last char it adds for a moment the '?' in the input. Strange... |
@NaldoColella I'm currently working on better tests for the codebase. It should help to fix such cases |
I'm having same problem as @birdy247, v-mask="'#?#.##'" isn't allowing for 4.99 and 49.99 but instead gives 49.9 when 4.99 is the value. |
Merged
Fixed in |
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
When using the the optional '?' character, a question mark shows up in the output.
USE CASE:
'##/##/##?##'
To allow for: 05/05/95 and 05/05/1995
Input:
05/05/1995
Expected Result:
05/05/1995
Actual Result:
05/05/19?95
The text was updated successfully, but these errors were encountered: