Form field aria-describedby fixes #30015
Merged
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Includes the following fixes for how we deal with
ariab-describedby
in the form field:fix(material/form-field): avoid touching the DOM on each state change
Currently we set the
aria-describedby
every time the state of the form control changes. This is excessive, because it only needs to happen if the error state oruserAriaDescribedBy
change.fix(material/input): preserve aria-describedby set externally
Currently there are two sources of an
aria-describedby
for amatInput
: the IDs of the hint/error message in the form field and any custom ones set througharia-describedby
. This is insufficient, because the ID can also come from a direct DOM manipulation like in theAriaDescriber
.These changes tweak the logic to try and preserve them, because currently they get overwritten.
Fixes #30011.