UNPKG

@material/web

Version:
32 lines (31 loc) 986 B
/** * @license * Copyright 2022 Google LLC * SPDX-License-Identifier: Apache-2.0 */ import { MenuItemEl } from './internal/menuitem/menu-item.js'; export { MenuItem } from './internal/controllers/menuItemController.js'; export { CloseMenuEvent } from './internal/controllers/shared.js'; declare global { interface HTMLElementTagNameMap { 'md-menu-item': MdMenuItem; } } /** * @summary Menus display a list of choices on a temporary surface. * * @description * Menu items are the selectable choices within the menu. Menu items must * implement the `MenuItem` interface and also have the `md-menu-item` * attribute. Additionally menu items are list items so they must also have the * `md-list-item` attribute. * * Menu items can control a menu by selectively firing the `close-menu` and * `deselect-items` events. * * @final * @suppress {visibility} */ export declare class MdMenuItem extends MenuItemEl { static styles: import("lit").CSSResult[]; }