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
Is the feature you're requesting related to a challenge you're experiencing?
PhoneNumberInput should have support for autocomplete="tel". DatePicker should have support for autocomplete="bday".
According to WCAG 1.3.5 inputs should always use the autocomplete attribute if there is an attribute that matches the purpose of the input.
How can we solve it?
PhoneNumberInput
Either:
Add new optional prop autocomplete where <PhoneNumberInput autocomplete="tel"> results in the countryCode-input having autocomplete="tel-country-code" and the nationalNumber-input having autocomplete="tel-national"
or
Add autocomplete attributes by default and a new optional prop noAutocomplete to opt out
DatePicker
Add optional prop autocomplete that supports the attribute "bday"
The text was updated successfully, but these errors were encountered:
matsaaj
changed the title
Accessibility issue: PhoneNumberInput doesn't support autocomplete
Accessibility issue: PhoneNumberInput and DatePicker doesn't support autocomplete
Jan 21, 2025
Is the feature you're requesting related to a challenge you're experiencing?
PhoneNumberInput should have support for autocomplete="tel". DatePicker should have support for autocomplete="bday".
According to WCAG 1.3.5 inputs should always use the autocomplete attribute if there is an attribute that matches the purpose of the input.
How can we solve it?
PhoneNumberInput
Either:
autocomplete
where<PhoneNumberInput autocomplete="tel">
results in the countryCode-input havingautocomplete="tel-country-code"
and the nationalNumber-input havingautocomplete="tel-national"
or
noAutocomplete
to opt outDatePicker
autocomplete
that supports the attribute "bday"The text was updated successfully, but these errors were encountered: