npm.io
25.2.8 • Published 1 week ago

@vaadin/combo-box

Licence
Apache-2.0
Version
25.2.8
Deps
10
Size
305 kB
Vulns
0
Weekly
0
Stars
579

@vaadin/combo-box

A web component for choosing a value from a filterable list of options presented in an overlay.

Documentation + Live Demo

npm version

<vaadin-combo-box
  label="User"
  placeholder="Please select"
  item-value-path="email"
  item-label-path="email"
></vaadin-combo-box>

<script>
  const comboBox = document.querySelector('vaadin-combo-box');

  fetch('https://randomuser.me/api?results=100&inc=name,email')
    .then((res) => res.json())
    .then((json) => (comboBox.items = json.results));
</script>

Screenshot of vaadin-combo-box

Installation

Install the component:

npm i @vaadin/combo-box

Once installed, import the component in your application:

import '@vaadin/combo-box';

Contributing

Read the contributing guide to learn about our development process, how to propose bugfixes and improvements, and how to test your changes to Vaadin components.

License

Apache License 2.0

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

Keywords