This change affects all implementations of the text box component.
<input
class="form-control"
type="text"
id="TextBoxBasicRequired"
name="TextBoxBasicRequired"
value="" />
<input
class="form-control"
aria-required="true"
type="text"
id="TextBoxBasicRequired"
name="TextBoxBasicRequired"
value="" />
This change improves the accessibility of the text box component by ensuring required text box fields are programmatically identified as required for users of assistive technologies.
Benefits include:
After updating your Design System packages, we recommend reviewing text box usage in your application to confirm everything behaves as expected.
Areas worth checking:
Applications not using the NuGet package tag helpers should review any manually maintained text box markup and align it with the updated structure shown above and on the text box page in the form components section.
No changes are expected to form submission, model binding, or data persistence as part of this update.
For peace of mind, you may wish to perform a quick check in consuming applications to confirm text box values continue to submit and save as expected.
This change improves accessibility by ensuring required text box fields are programmatically identified as required for assistive technologies.
This pattern will be extended to other Design System form components in a future release.
Design System internal reference: 97877