We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Why does the template of the Number component have a type="text" instead of type="number" ?
type="text"
type="number"
With type="number" there're some additional features possible (like step, shown in the screenshot).
Documentation <input type="number"> https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input/number
<input type="number">
Unfortunately it's not possible to override the type attribute from the Layout HTML Attributes, see screenshot below. The <input type="text"> remains.
type
<input type="text">
The text was updated successfully, but these errors were encountered:
Tatsiana8
No branches or pull requests
Why does the template of the Number component have a
type="text"
instead oftype="number"
?With
type="number"
there're some additional features possible (like step, shown in the screenshot).Documentation
<input type="number">
https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input/number
Unfortunately it's not possible to override the
type
attribute from the Layout HTML Attributes, see screenshot below.The
<input type="text">
remains.The text was updated successfully, but these errors were encountered: