angular formControl.disabled add disabled attribute to html, this attribute is not web accessibility and you need to use aria-disabled to web-accessibility. Is there a way to make formControl.disable not use disabled, but instead use aria-disabled?
angular form is not web accessibility
The following documentation on
aria-disabledmentions that it will inform the user that the current state of the interactive element (e.g. button, input) is disabled.However,
aria-disableddoesn't perform any style changes. With the regulardisabledattribute you'll get the correct state & visual changes (e.g. the cursor).So,
aria-disabledanddisabledboth inform the correct state to the user. But withdisabledyou'll have to do less yourself.