23.0.0 • Published 2 years ago

@logo-elements/combo-box v23.0.0

Weekly downloads
-
License
See license in LI...
Repository
-
Last release
2 years ago

@logo-elements/combo-box

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

npm version

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

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

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

Installation

Install the component:

npm i @logo-elements/combo-box

Once installed, import the component in your application:

import '@logo-elements/combo-box';

For more detailed information, please visit:

Logo Elements Documentation ↗

23.0.0

2 years ago

1.2.0

2 years ago

1.0.3

2 years ago

1.0.2

2 years ago

1.0.1

2 years ago

1.0.0

2 years ago

0.0.10

2 years ago

0.0.11

2 years ago

0.0.12

2 years ago

0.0.3

2 years ago

0.0.2

2 years ago

0.0.9

2 years ago

0.0.8

2 years ago

0.0.5

2 years ago

0.0.4

2 years ago

0.0.7

2 years ago

0.0.6

2 years ago

0.0.1

2 years ago