mirror of
https://github.com/vitest-dev/vitest.git
synced 2025-12-08 18:26:03 +00:00
97 lines
1.6 KiB
TypeScript
97 lines
1.6 KiB
TypeScript
type ARIAWidgetRole =
|
|
| "button"
|
|
| "checkbox"
|
|
| "gridcell"
|
|
| "link"
|
|
| "menuitem"
|
|
| "menuitemcheckbox"
|
|
| "menuitemradio"
|
|
| "option"
|
|
| "progressbar"
|
|
| "radio"
|
|
| "scrollbar"
|
|
| "searchbox"
|
|
| "slider"
|
|
| "spinbutton"
|
|
| "switch"
|
|
| "tab"
|
|
| "tabpanel"
|
|
| "textbox"
|
|
| "treeitem";
|
|
|
|
type ARIACompositeWidgetRole =
|
|
| "combobox"
|
|
| "grid"
|
|
| "listbox"
|
|
| "menu"
|
|
| "menubar"
|
|
| "radiogroup"
|
|
| "tablist"
|
|
| "tree"
|
|
| "treegrid";
|
|
|
|
type ARIADocumentStructureRole =
|
|
| "application"
|
|
| "article"
|
|
| "blockquote"
|
|
| "caption"
|
|
| "cell"
|
|
| "columnheader"
|
|
| "definition"
|
|
| "deletion"
|
|
| "directory"
|
|
| "document"
|
|
| "emphasis"
|
|
| "feed"
|
|
| "figure"
|
|
| "generic"
|
|
| "group"
|
|
| "heading"
|
|
| "img"
|
|
| "insertion"
|
|
| "list"
|
|
| "listitem"
|
|
| "math"
|
|
| "meter"
|
|
| "none"
|
|
| "note"
|
|
| "paragraph"
|
|
| "presentation"
|
|
| "row"
|
|
| "rowgroup"
|
|
| "rowheader"
|
|
| "separator"
|
|
| "strong"
|
|
| "subscript"
|
|
| "superscript"
|
|
| "table"
|
|
| "term"
|
|
| "time"
|
|
| "toolbar"
|
|
| "tooltip";
|
|
|
|
type ARIALandmarkRole =
|
|
| "banner"
|
|
| "complementary"
|
|
| "contentinfo"
|
|
| "form"
|
|
| "main"
|
|
| "navigation"
|
|
| "region"
|
|
| "search";
|
|
|
|
type ARIALiveRegionRole = "alert" | "log" | "marquee" | "status" | "timer";
|
|
|
|
type ARIAWindowRole = "alertdialog" | "dialog";
|
|
|
|
type ARIAUncategorizedRole = "code";
|
|
|
|
export type ARIARole =
|
|
| ARIAWidgetRole
|
|
| ARIACompositeWidgetRole
|
|
| ARIADocumentStructureRole
|
|
| ARIALandmarkRole
|
|
| ARIALiveRegionRole
|
|
| ARIAWindowRole
|
|
| ARIAUncategorizedRole;
|