23.0.4 • Published 11 months ago
@logo-elements/combo-box v23.0.4
@logo-elements/combo-box
A web component for choosing a value from a filterable list of options presented in an overlay.
<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:
23.0.4
11 months ago
23.0.3
12 months ago
23.0.2
12 months ago
23.0.1
12 months ago
23.0.0
3 years ago
1.2.0
3 years ago
1.0.3
3 years ago
1.0.2
3 years ago
1.0.1
3 years ago
1.0.0
3 years ago
0.0.10
3 years ago
0.0.11
3 years ago
0.0.12
3 years ago
0.0.3
3 years ago
0.0.2
3 years ago
0.0.9
3 years ago
0.0.8
3 years ago
0.0.5
3 years ago
0.0.4
3 years ago
0.0.7
3 years ago
0.0.6
3 years ago
0.0.1
4 years ago