-
-
Notifications
You must be signed in to change notification settings - Fork 3.9k
Closed
Labels
Description
The next code
<label for="txt_number">Number: </label>
<a-input-number id="txt_number"/>Generate this HTML, the input does not have 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>