iron-menu-behavior

WebJar for iron-menu-behavior

Лицензия

Лицензия

BSD 3-Clause
Группа

Группа

org.webjars.bower
Идентификатор

Идентификатор

iron-menu-behavior
Последняя версия

Последняя версия

1.1.2
Дата

Дата

Тип

Тип

jar
Описание

Описание

iron-menu-behavior
WebJar for iron-menu-behavior
Ссылка на сайт

Ссылка на сайт

http://webjars.org
Система контроля версий

Система контроля версий

https://github.com/PolymerElements/iron-menu-behavior

Скачать iron-menu-behavior

Как подключить последнюю версию

<!-- https://jarcasting.com/artifacts/org.webjars.bower/iron-menu-behavior/ -->
<dependency>
    <groupId>org.webjars.bower</groupId>
    <artifactId>iron-menu-behavior</artifactId>
    <version>1.1.2</version>
</dependency>
// https://jarcasting.com/artifacts/org.webjars.bower/iron-menu-behavior/
implementation 'org.webjars.bower:iron-menu-behavior:1.1.2'
// https://jarcasting.com/artifacts/org.webjars.bower/iron-menu-behavior/
implementation ("org.webjars.bower:iron-menu-behavior:1.1.2")
'org.webjars.bower:iron-menu-behavior:jar:1.1.2'
<dependency org="org.webjars.bower" name="iron-menu-behavior" rev="1.1.2">
  <artifact name="iron-menu-behavior" type="jar" />
</dependency>
@Grapes(
@Grab(group='org.webjars.bower', module='iron-menu-behavior', version='1.1.2')
)
libraryDependencies += "org.webjars.bower" % "iron-menu-behavior" % "1.1.2"
[org.webjars.bower/iron-menu-behavior "1.1.2"]

Зависимости

compile (3)

Идентификатор библиотеки Тип Версия
org.webjars.bower : github-com-PolymerElements-iron-selector jar [1.0.0,2)
org.webjars.bower : github-com-Polymer-polymer jar [1.2.4,2)
org.webjars.bower : github-com-polymerelements-iron-a11y-keys-behavior jar [1.0.0,2)

Модули Проекта

Данный проект не имеет модулей.

Published on NPM Build status Published on webcomponents.org

IronMenuBehavior, IronMenubarBehavior

IronMenuBehavior and IronMenubarBehavior implement accessible menu and menubar behaviors.

See: Documentation, Demo.

Usage

Installation

npm install --save @polymer/iron-menu-behavior

In a Polymer 3 element

import {PolymerElement} from '@polymer/polymer/polymer-element.js';
import {mixinBehaviors} from '@polymer/polymer/lib/legacy/class.js';
import {html} from '@polymer/polymer/lib/utils/html-tag.js';

import {IronMenuBehavior} from '@polymer/iron-menu-behavior/iron-menu-behavior.js';

class SimpleMenu extends mixinBehaviors(IronMenuBehavior, PolymerElement) {
  static get template() {
    return html`
      <style>
        :host > ::slotted(*) {
          display: block;
        }

        :host > ::slotted(.iron-selected) {
          color: white;
          background-color: var(--google-blue-500);
        }
      </style>

      <slot></slot>
    `;
  }
}

customElements.define('simple-menu', SimpleMenu);

Then, in your HTML:

<script type="module" src="./simple-menu.js"></script>

<style>
simple-menu .iron-selected {
  background-color: blue;
  color: white;
}
</style>

<simple-menu>
  <div role="menuitem">Item 0</div>
  <div role="menuitem">Item 1</div>
  <div role="menuitem" disabled aria-disabled="true">Item 2 (disabled)</div>
</simple-menu>

Contributing

If you want to send a PR to this element, here are the instructions for running the tests and demo locally:

Installation

git clone https://github.com/PolymerElements/iron-menu-behavior
cd iron-menu-behavior
npm install
npm install -g polymer-cli

Running the demo locally

polymer serve --npm
open http://127.0.0.1:<port>/demo/

Running the tests

polymer test --npm
org.webjars.bower

Версии библиотеки

Версия
1.1.2
1.1.1
1.1.0