You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Which package(s) are relevant/related to the feature request?
@maskito/core
Description
Actually, I don't know how can I tell this so I will try to tell this with an example case:
On react-masked-input package, when I use "0 (599) 999 99 99" as a mask pattern, the text input box starts with an empty value and on my first keypress, It automatically calculates if I press "0", "(" or "5" and then it prevents me to put 5 twice on the beginning like "0 (55": instead, it writes down "0 (5".
Lots of our users get confused because of this missing cursor position calculation feature and I believe it would be great if you guys add this feature to maskito
The text was updated successfully, but these errors were encountered:
Could you check this Stackblitz ?
If your issue still persists or I incorrectly understand your problem, make your Stackblitz reproduction + video-demonstration, please.
Which package(s) are relevant/related to the feature request?
@maskito/core
Description
Actually, I don't know how can I tell this so I will try to tell this with an example case:
On react-masked-input package, when I use
"0 (599) 999 99 99"
as a mask pattern, the text input box starts with an empty value and on my first keypress, It automatically calculates if I press "0", "(" or "5" and then it prevents me to put 5 twice on the beginning like"0 (55
": instead, it writes down"0 (5"
.I checked react-masked-input's codes a little bit and I guess the related code is this: https://github.com/lucasbasquerotto/react-masked-input/blob/master/src/utils/mask.ts#L103
Lots of our users get confused because of this missing cursor position calculation feature and I believe it would be great if you guys add this feature to maskito
The text was updated successfully, but these errors were encountered: