interface AccessibilityState {
    busy?: boolean;
    checked?: boolean | "mixed";
    disabled?: boolean;
    expanded?: boolean;
    selected?: boolean;
}

Properties

busy?: boolean

When present, informs accessible tools if the element is busy

checked?: boolean | "mixed"

For items like Checkboxes and Toggle switches, reports their state to accessible tools

disabled?: boolean

When true, informs accessible tools if the element is disabled

expanded?: boolean

When present, informs accessible tools the element is expanded or collapsed

selected?: boolean

When true, informs accessible tools if the element is selected