We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 07d0fa7 commit 830e677Copy full SHA for 830e677
1 file changed
packages/blockly/core/utils/aria.ts
@@ -202,6 +202,18 @@ export enum State {
202
* Value:one of {true, false, undefined}.
203
*/
204
SELECTED = 'selected',
205
+ /**
206
+ * See https://developer.mozilla.org/en-US/docs/Web/Accessibility/ARIA/Reference/Attributes/aria-valuemax.
207
+ *
208
+ * Value: a number representing the maximum allowed value for a range widget.
209
+ */
210
+ VALUEMAX = 'valuemax',
211
212
+ * See https://developer.mozilla.org/en-US/docs/Web/Accessibility/ARIA/Reference/Attributes/aria-valuemin.
213
214
+ * Value: a number representing the minimum allowed value for a range widget.
215
216
+ VALUEMIN = 'valuemin',
217
}
218
219
/**
0 commit comments