Digital ACT-191 CXTDT-546821 defect: Accessibility - Text area input field is not receiving swipe focus

This commit is contained in:
vasavk 2024-04-18 15:51:07 +05:30
parent 3201840cad
commit 14d77ef81f

View File

@ -160,7 +160,6 @@ open class TextArea: EntryFieldBase {
/// Called once when a view is initialized and is used to Setup additional UI or other constants and configurations.
open override func setup() {
super.setup()
accessibilityLabel = "TextArea"
validator = FormFieldValidator<TextArea>(field: self, rules: [.init(countRule)])
containerStackView.pinToSuperView(.uniform(VDSFormControls.spaceInset))
@ -239,10 +238,11 @@ open class TextArea: EntryFieldBase {
/// Used to update any Accessibility properties.
open override func updateAccessibility() {
super.updateAccessibility()
isAccessibilityElement = false
if showError {
setAccessibilityLabel(for: [titleLabel, textView, errorLabel, helperLabel])
accessibilityElements = [titleLabel, textView, icon, errorLabel, helperLabel]
} else {
setAccessibilityLabel(for: [titleLabel, textView, helperLabel])
accessibilityElements = [titleLabel, textView, helperLabel]
}
}