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
Admittedly a niche case, but we'd like to hide/show sensitive inputs with a mask using something like type="{ isHidden ? 'password' : 'text' }", but there's some interaction where the user can just no longer enter characters and the input doesn't handle the mask correctly
The text was updated successfully, but these errors were encountered:
We will analyze the use of the "password" type for correct operation with the mask, but you should understand that if you, for example, want to hide characters using the "password" type, then in fact all characters will be replaced by placeholders, i.e. the value "123 789" with a space will be displayed as "•••••••", where the space is also replaced by a placeholder.
If there is a need to replace only the characters entered by the user, then report this in the comments.
Admittedly a niche case, but we'd like to hide/show sensitive inputs with a mask using something like
type="{ isHidden ? 'password' : 'text' }"
, but there's some interaction where the user can just no longer enter characters and the input doesn't handle the mask correctlyThe text was updated successfully, but these errors were encountered: