Text entry controls like Input and ComboBox need to have a red border when they are in a Field that has an error state. The proposal is to add a validationState prop (to match the Field's validationState)

Proposed solution
- Add a new prop
invalid to each control that needs it, and have it render a red border when invalid is set.
- Update Field to handle the control's
invalid prop as a synonym for validationState="error":
- Have Field set
invalid on the control when validationState="error"
- Have Field default
validationState="error" if invalid is set on the control.
Updates needed
Text entry controls like
InputandComboBoxneed to have a red border when they are in a Field that has an error state. The proposal is to add avalidationStateprop (to match the Field'svalidationState)Proposed solution
invalidto each control that needs it, and have it render a red border wheninvalidis set.invalidprop as a synonym forvalidationState="error":invalidon the control whenvalidationState="error"validationState="error"ifinvalidis set on the control.Updates needed