# @vaadin/select

> vaadin-select

Latest version **25.2.12** (published 2026-09-17) · Apache-2.0 license · 0 weekly downloads

## Install

```sh
npm install @vaadin/select
pnpm add @vaadin/select
yarn add @vaadin/select
bun add @vaadin/select
```

## Health

**Score 65/100 (B)** — status: active.

Positive: has types; esm support; no vulnerabilities; recently updated; high maintenance score.

Warnings: low downloads.

## Facts

| | |
|---|---|
| Version | 25.2.12 |
| Published | 2026-09-17 |
| First published | 2021-09-02 |
| Weekly downloads | 0 |
| License | Apache-2.0 |
| TypeScript types | bundled |
| Module format | ESM + CommonJS |
| Dependencies | 12 |
| Unpacked size | 179.6 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 582 |
| Author | Vaadin Ltd |
| Maintainers | web-padawan, diegocardoso, alvarezguille, platosha, jouni, manolo, yuriyyev, vaadin-owner, tomivirkki, artur-, sunzhewyq, sissbruecker |
| Keywords | Vaadin, vaadin-select, web-components, web-component |

## Links

- npm: https://www.npmjs.com/package/@vaadin/select
- Repository: https://github.com/vaadin/web-components
- Homepage: https://vaadin.com/components
- Issues: https://github.com/vaadin/web-components/issues
- npm.io page: https://npm.io/package/@vaadin/select

## Dependencies (12)

- [lit](https://npm.io/package/lit.md) ^3.0.0
- [@vaadin/item](https://npm.io/package/@vaadin/item.md) ~25.2.12
- [@vaadin/button](https://npm.io/package/@vaadin/button.md) ~25.2.12
- [@vaadin/overlay](https://npm.io/package/@vaadin/overlay.md) ~25.2.12
- [@vaadin/list-box](https://npm.io/package/@vaadin/list-box.md) ~25.2.12
- [@vaadin/a11y-base](https://npm.io/package/@vaadin/a11y-base.md) ~25.2.12
- [@vaadin/field-base](https://npm.io/package/@vaadin/field-base.md) ~25.2.12
- [@vaadin/lit-renderer](https://npm.io/package/@vaadin/lit-renderer.md) ~25.2.12
- [@open-wc/dedupe-mixin](https://npm.io/package/@open-wc/dedupe-mixin.md) ^1.3.0
- [@vaadin/component-base](https://npm.io/package/@vaadin/component-base.md) ~25.2.12
- [@vaadin/input-container](https://npm.io/package/@vaadin/input-container.md) ~25.2.12
- [@vaadin/vaadin-themable-mixin](https://npm.io/package/@vaadin/vaadin-themable-mixin.md) ~25.2.12

## Recent versions

- 25.2.12 (latest) — 2026-09-17
- 25.3.0-rc1 (next) — 2026-09-16
- 25.3.0-dev.1fa5a51482 (dev-disable-dates) — 2026-07-25
- 24.4.0-dev.4b20a0c55.3 (canary) — 2024-03-22
- 25.3.0-beta3 — 2026-09-11
- 25.2.11 — 2026-09-11
- 25.1.14 — 2026-09-11
- 25.3.0-beta2 — 2026-09-07
- 23.6.6 — 2026-09-07
- 25.2.10 — 2026-09-03
- 25.1.13 — 2026-09-03
- 24.10.6 — 2026-09-03
- 24.9.18 — 2026-09-01
- 25.3.0-beta1 — 2026-08-31
- 25.2.9 — 2026-08-26
- … 638 more at https://npm.io/package/@vaadin/select/versions

## README

# @vaadin/select

A web component for selecting a single value from a list of options presented in an overlay.

[Documentation + Live Demo ↗](https://vaadin.com/docs/latest/components/select)

[![npm version](https://badgen.net/npm/v/@vaadin/select)](https://www.npmjs.com/package/@vaadin/select)

```html
<vaadin-select label="Sort by"></vaadin-select>
<script>
  document.querySelector('vaadin-select').renderer = (root) => {
    if (root.firstElementChild) {
      return;
    }

    // Note that innerHTML is only used for demo purposes here!
    // Consider using Lit or another template library instead.
    root.innerHTML = `
      <vaadin-list-box>
        <vaadin-item value="recent">Most recent first</vaadin-item>
        <vaadin-item value="rating-desc">Rating: high to low</vaadin-item>
        <vaadin-item value="rating-asc">Rating: low to high</vaadin-item>
        <vaadin-item value="price-desc">Price: high to low</vaadin-item>
        <vaadin-item value="price-asc">Price: low to high</vaadin-item>
      </vaadin-list-box>
    `;
  };
</script>
```

[<img src="https://raw.githubusercontent.com/vaadin/web-components/main/packages/select/screenshot.png" width="231" alt="Screenshot of vaadin-select">](https://vaadin.com/docs/latest/components/select)

## Installation

Install the component:

```sh
npm i @vaadin/select
```

## Contributing

Read the [contributing guide](https://vaadin.com/docs/latest/contributing) 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.

---
_Source: https://npm.io/package/@vaadin/select · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
