context-menupackage.src.vaadin-context-menu-item.js Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of vaadin-webcomponents Show documentation
Show all versions of vaadin-webcomponents Show documentation
Mvnpm composite: Vaadin webcomponents
The newest version!
/**
* @license
* Copyright (c) 2016 - 2024 Vaadin Ltd.
* This program is available under Apache License Version 2.0, available at https://vaadin.com/license/
*/
import { html, PolymerElement } from '@polymer/polymer/polymer-element.js';
import { defineCustomElement } from '@vaadin/component-base/src/define.js';
import { DirMixin } from '@vaadin/component-base/src/dir-mixin.js';
import { ItemMixin } from '@vaadin/item/src/vaadin-item-mixin.js';
import { ThemableMixin } from '@vaadin/vaadin-themable-mixin/vaadin-themable-mixin.js';
/**
* An element used internally by ``. Not intended to be used separately.
*
* @customElement
* @extends HTMLElement
* @mixes DirMixin
* @mixes ItemMixin
* @mixes ThemableMixin
* @protected
*/
class ContextMenuItem extends ItemMixin(ThemableMixin(DirMixin(PolymerElement))) {
static get is() {
return 'vaadin-context-menu-item';
}
static get template() {
return html`
`;
}
/** @protected */
ready() {
super.ready();
this.setAttribute('role', 'menuitem');
}
}
defineCustomElement(ContextMenuItem);
export { ContextMenuItem };