We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4f35c92 commit 0e0de82Copy full SHA for 0e0de82
packages/main/src/Input.hbs
@@ -24,6 +24,7 @@
24
aria-autocomplete="{{accInfo.input.ariaAutoComplete}}"
25
aria-expanded="{{accInfo.input.ariaExpanded}}"
26
aria-label="{{accInfo.input.ariaLabel}}"
27
+ aria-required="{{accInfo.input.ariaRequired}}"
28
@input="{{_handleInput}}"
29
@change="{{_handleChange}}"
30
@keydown="{{_onkeydown}}"
packages/main/src/Input.js
@@ -1014,6 +1014,7 @@ class Input extends UI5Element {
1014
"ariaExpanded": this._inputAccInfo && this._inputAccInfo.ariaExpanded,
1015
"ariaDescription": this._inputAccInfo && this._inputAccInfo.ariaDescription,
1016
"ariaLabel": getEffectiveAriaLabelText(this),
1017
+ "ariaRequired": (this._inputAccInfo && this._inputAccInfo.ariaRequired) || this.required,
1018
},
1019
};
1020
}
0 commit comments