vaadin-context-menu

WebJar for vaadin-context-menu

Лицензия

Лицензия

Категории

Категории

Vaadin Взаимодействие с пользователем Веб-фреймворки
Группа

Группа

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

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

vaadin-context-menu
Последняя версия

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

3.0.0-beta1
Дата

Дата

Тип

Тип

jar
Описание

Описание

vaadin-context-menu
WebJar for vaadin-context-menu
Ссылка на сайт

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

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

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

https://github.com/vaadin/vaadin-context-menu

Скачать vaadin-context-menu

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

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

Зависимости

Библиотека не имеет зависимостей. Это самодостаточное приложение, которое не зависит ни от каких других библиотек.

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

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

<vaadin-context-menu>

Live Demo | API documentation

<vaadin-context-menu> is a Web Component providing a contextual menu, part of the Vaadin components.

npm version Build Status Published on webcomponents.org Published on Vaadin Directory Stars on vaadin.com/directory Discord

<vaadin-context-menu>
  Open a context menu with <b>right click</b> or with <b>long touch.</b>
</vaadin-context-menu>

<script>
  const contextMenu = document.querySelector('vaadin-context-menu');
  contextMenu.renderer = function(root) {
    let listBox = root.firstElementChild;
    // Check if there is a list-box generated with the previous renderer call to update its content instead of recreation
    if (listBox) {
      listBox.innerHTML = '';
    } else {
      listBox = document.createElement('vaadin-list-box');
      root.appendChild(listBox);
    }

    ['First', 'Second', 'Third'].forEach(function(name) {
      const item = document.createElement('vaadin-item');
      item.textContent = name + ' menu item';
      listBox.appendChild(item);
    });
  };
</script>

Screenshot of vaadin-context-menu

Note: <vaadin-list-box> component used in the above example should be installed and imported separately.

Installation

Install vaadin-context-menu:

npm i @vaadin/vaadin-context-menu --save

Once installed, import it in your application:

import '@vaadin/vaadin-context-menu/vaadin-context-menu.js';

Getting started

Vaadin components use the Lumo theme by default.

To use the Material theme, import the correspondent file from the theme/material folder.

Entry points

  • The component with the Lumo theme:

    theme/lumo/vaadin-context-menu.js

  • The component with the Material theme:

    theme/material/vaadin-context-menu.js

  • Alias for theme/lumo/vaadin-context-menu.js:

    vaadin-context-menu.js

Running API docs and tests in a browser

  1. Fork the vaadin-context-menu repository and clone it locally.

  2. Make sure you have node.js 12.x installed.

  3. Make sure you have npm installed.

  4. When in the vaadin-context-menu directory, run npm install to install dependencies.

  5. Run npm start, browser will automatically open the component API documentation.

  6. You can also open visual tests, for example:

Running tests from the command line

  1. When in the vaadin-context-menu directory, run npm test

Debugging tests in the browser

  1. Run npm run debug, then choose manual mode (M) and open the link in browser.

Following the coding style

We are using ESLint for linting JavaScript code. You can check if your code is following our standards by running npm run lint, which will automatically lint all .js files.

Big Thanks

Cross-browser Testing Platform and Open Source <3 Provided by Sauce Labs.

Contributing

To contribute to the component, please read the guideline first.

License

Apache License 2.0

Vaadin collects development time usage statistics to improve this product. For details and to opt-out, see https://github.com/vaadin/vaadin-usage-statistics.

org.webjars.npm

Vaadin

An open platform for building modern web apps for Java back ends

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

Версия
3.0.0-beta1