All Downloads are FREE. Search and download functionalities are using the official Maven repository.

menu-barpackage.src.vaadin-menu-bar-item.js Maven / Gradle / Ivy

The newest version!
/**
 * @license
 * Copyright (c) 2019 - 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 MenuBarItem extends ItemMixin(ThemableMixin(DirMixin(PolymerElement))) {
  static get is() {
    return 'vaadin-menu-bar-item';
  }

  static get template() {
    return html`
      
      
      
`; } /** @protected */ connectedCallback() { super.connectedCallback(); // Set role in `connectedCallback()` instead of `ready()` // because the role is removed when teleporting to button. this.setAttribute('role', 'menuitem'); } } defineCustomElement(MenuBarItem); export { MenuBarItem };




© 2015 - 2024 Weber Informatics LLC | Privacy Policy