Revert "chore: remove unused statuses (#9698)" (#9700)

This reverts commit 229450a1b7.
This commit is contained in:
Michael Harvey
2026-04-10 16:52:21 -04:00
committed by GitHub
parent 229450a1b7
commit 956f049dbd
+61 -1
View File
@@ -123,13 +123,19 @@ export enum State {
*
* Value: one of {true, false}.
*/
ATOMIC = 'atomic',
ATOMIC = 'ATOMIC',
/**
* See https://developer.mozilla.org/en-US/docs/Web/Accessibility/ARIA/Reference/Attributes/aria-checked.
*
* Value: one of {true, false, mixed, undefined}.
*/
CHECKED = 'checked',
/**
* See https://developer.mozilla.org/en-US/docs/Web/Accessibility/ARIA/Reference/Attributes/aria-colcount.
*
* Value: an integer representing the number of columns in a grid.
*/
COLCOUNT = 'colcount',
/**
* See https://developer.mozilla.org/en-US/docs/Web/Accessibility/ARIA/Reference/Attributes/aria-controls.
*
@@ -190,18 +196,72 @@ export enum State {
* Value: one of {polite, assertive, off}.
*/
LIVE = 'live',
/**
* See https://developer.mozilla.org/en-US/docs/Web/Accessibility/ARIA/Reference/Attributes/aria-orientation.
*
* Value: one of {horizontal, vertical, undefined}.
*/
ORIENTATION = 'orientation',
/**
* See https://developer.mozilla.org/en-US/docs/Web/Accessibility/ARIA/Reference/Attributes/aria-posinset.
*
* Value: an integer representing the position of the element within a set of related elements.
*/
POSINSET = 'posinset',
/**
* See https://developer.mozilla.org/en-US/docs/Web/Accessibility/ARIA/Reference/Attributes/aria-pressed.
*
* Value: one of {true, false, mixed, undefined}.
*/
PRESSED = 'pressed',
/**
* See https://developer.mozilla.org/en-US/docs/Web/Accessibility/ARIA/Reference/Attributes/aria-readonly.
*
* Value: one of {true, false}.
*/
READONLY = 'readonly',
/**
* See https://developer.mozilla.org/en-US/docs/Web/Accessibility/ARIA/Reference/Attributes/aria-required.
*
* Value: one of {true, false}.
*/
REQUIRED = 'required',
/**
* See https://developer.mozilla.org/en-US/docs/Web/Accessibility/ARIA/Reference/Attributes/aria-roledescription.
*
* Value: a string.
*/
ROLEDESCRIPTION = 'roledescription',
/**
* See https://developer.mozilla.org/en-US/docs/Web/Accessibility/ARIA/Reference/Attributes/aria-rowcount.
*
* Value: an integer representing the number of rows in a grid or table.
*/
ROWCOUNT = 'rowcount',
/**
* See https://developer.mozilla.org/en-US/docs/Web/Accessibility/ARIA/Reference/Attributes/aria-rowindex.
*
* Value: an integer representing the index of the element within a set of related elements.
*/
ROWINDEX = 'rowindex',
/**
* See https://developer.mozilla.org/en-US/docs/Web/Accessibility/ARIA/Reference/Attributes/aria-rowspan.
*
* Value: an integer representing the number of rows a cell spans in a grid or table.
*/
ROWSPAN = 'rowspan',
/**
* See https://developer.mozilla.org/en-US/docs/Web/Accessibility/ARIA/Reference/Attributes/aria-selected.
*
* Value:one of {true, false, undefined}.
*/
SELECTED = 'selected',
/**
* See https://developer.mozilla.org/en-US/docs/Web/Accessibility/ARIA/Reference/Attributes/aria-setsize.
*
* Value: an integer representing the total number of elements in a set of related elements.
*/
SETSIZE = 'setsize',
/**
* See https://developer.mozilla.org/en-US/docs/Web/Accessibility/ARIA/Reference/Attributes/aria-valuemax.
*