Support for Right-to-Left (RTL) Languages? #214
Replies: 1 comment
-
Hey, do you have some knowledge about right 2 left coding? Thank you! |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I currently have a mask that looks like this:
#### #### #### ####
Let's say I have this number that I want to enter: 4111111111111111
And if I entered a number in a left-to-right (RTL) language, it'll look like
4111 1111 1111 1111
- which is correct and the expected results.However, if I have the
dir
direction set tortl
, the number is masking like this:1111 1111 1111 4111
Any idea how to address this? I've tried
data-masks-reverse
, but it didn't fix the issue.🙏
Beta Was this translation helpful? Give feedback.
All reactions