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
Most HTML controls have a property called id. This id is a unique identifier that identifies the element.
The id is also used to associate a label with an input. For instance,
Name
Under this situation if the user clicks on the label, the input is selected, input gains focus and handle keyboard events.
Unfortunately your component does not support the id property, therefore, it is not possible to associate a label to it.
Could you please add a prop id to your component? It would be a great accessibility improvement and I believe it would be very easy to do
Thanks in advance
The text was updated successfully, but these errors were encountered:
Most HTML controls have a property called id. This id is a unique identifier that identifies the element.
The id is also used to associate a label with an input. For instance,
Name
Under this situation if the user clicks on the label, the input is selected, input gains focus and handle keyboard events.
Unfortunately your component does not support the id property, therefore, it is not possible to associate a label to it.
Could you please add a prop id to your component? It would be a great accessibility improvement and I believe it would be very easy to do
Thanks in advance
The text was updated successfully, but these errors were encountered: