We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0e0de82 commit f66875aCopy full SHA for f66875a
packages/main/src/Select.hbs
@@ -8,6 +8,7 @@
8
aria-labelledby="{{_id}}-label"
9
aria-describedby="{{valueStateTextId}}"
10
aria-disabled="{{isDisabled}}"
11
+ aria-required="{{required}}"
12
@keydown="{{_onkeydown}}"
13
@keyup="{{_onkeyup}}"
14
@focusin="{{_onfocusin}}"
packages/main/src/Select.js
@@ -145,6 +145,18 @@ const metadata = {
145
defaultValue: ValueState.None,
146
},
147
148
+ /**
149
+ * Defines whether the <code>ui5-select</code> is required.
150
+ *
151
+ * @since 1.0.0-rc.9
152
+ * @type {Boolean}
153
+ * @defaultvalue false
154
+ * @public
155
+ */
156
+ required: {
157
+ type: Boolean,
158
+ },
159
+
160
_text: {
161
type: String,
162
noAttribute: true,
0 commit comments