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
The next code
<label for="txt_number">Number: </label> <a-input-number id="txt_number"/>
Generate this HTML, the input does not have id
id
<label for="txt_number">Number: </label> <div class="ant-input-number"> <div class="ant-input-number-handler-wrap"> <span class="ant-input-number-handler ant-input-number-handler-up " unselectable="unselectable" role="button" aria-label="Increase Value"> <i aria-label="icon: up" class="ant-input-number-handler-up-inner anticon anticon-up">...</i> </span> <span class="ant-input-number-handler ant-input-number-handler-down " unselectable="unselectable" role="button" aria-label="Decrease Value"> <i aria-label="icon: down" class="ant-input-number-handler-down-inner anticon anticon-down">...</i> </span> </div> <div role="spinbutton" class="ant-input-number-input-wrap"> <input autocomplete="off" class="ant-input-number-input" /> </div> </div>
That does not comply with accesibility lines
<a-input-number id="txt_number"/>
The text was updated successfully, but these errors were encountered:
fix: inputNumber props id name no work #1477
82ea4bb
This issue has been automatically locked since there has not been any recent activity after it was closed. Please open a new issue for related bugs.
Sorry, something went wrong.
No branches or pull requests
What problem does this feature solve?
The next code
Generate this HTML, the input does not have
id
That does not comply with accesibility lines
What does the proposed API look like?
The text was updated successfully, but these errors were encountered: