UNPKG

450 BTypeScriptView Raw
1/**
2 * Specifies the popup kind for [aria-haspopup](https://developer.mozilla.org/en-US/docs/Web/Accessibility/ARIA/Attributes/aria-haspopup).
3 */
4export declare enum PopupKind {
5 /** The popup is a menu. */
6 MENU = "menu",
7 /** The popup is a listbox. */
8 LISTBOX = "listbox",
9 /** The popup is a tree. */
10 TREE = "tree",
11 /** The popup is a grid. */
12 GRID = "grid",
13 /** The popup is a dialog. */
14 DIALOG = "dialog"
15}