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
It would be good if FormInput could handle numeric input. Caveat: The number needs to be parsed with the browser locale.
It's not enough to simply send the change events through a Number() call, because then you can't type "12.3", because the dot would be stripped when you type it.
FormInput should accept a number type, and provide onChange events with the value as a Number.
The text was updated successfully, but these errors were encountered:
It would be good if
FormInput
could handle numeric input. Caveat: The number needs to be parsed with the browser locale.It's not enough to simply send the change events through a
Number()
call, because then you can't type "12.3", because the dot would be stripped when you type it.FormInput
should accept anumber
type, and provideonChange
events with the value as a Number.The text was updated successfully, but these errors were encountered: