@vonage/vwc-select
Advanced tools
Weekly downloads
Readme
vwc-select
vwc-select
is a drop-down kind of input element.
This component is an extension of <mwc-select>.
Import the component in your context, to get it initialized:
import '@vonage/vwc-select/vwc-select.js';
// or, to be able to use casting in TypeScript, do
import { VWCSelect } from '@vonage/vwc-select/vwc-select.js';
import '@vonage/vwc-list/vwc-list-item.js';
We suggest as a rule of thumb to use vwc-list-item
component to provide the list of options.
vwc-list-item
is capable of holding any content, from simple text to rich HTML.
The following should provide you with a working example:
<vwc-select outlined label="VWC Select" helper="Helper text">
<vwc-list-item></vwc-list-item>
<vwc-list-item value="0">Item 0</vwc-list-item>
<vwc-list-item value="1">Item 1</vwc-list-item>
</vwc-select>
Few points to pay attention to, in order to get the expected result:
vwc-select
exposes the following properties, methods and events:
Property | Modifiers | Type | Description |
---|---|---|---|
disabled | boolean | ||
helper | string | ||
icon | string | ||
index | readonly | number | |
items | readonly | ListItemBase[] | |
label | string | ||
naturalMenuWidth | boolean | ||
outlined | boolean | ||
required | boolean | ||
selected | readonly | `ListItemBase \ | null` |
validateOnInitialRender | boolean | ||
validationMessage | string | ||
value | string | ||
appearance | ghost | no input border |
Method | Type |
---|---|
blur | (): void |
checkValidity | (): boolean |
click | (): void |
focus | (): void |
layout | (updateItems?: boolean | undefined): Promise<void> |
reportValidity | (): boolean |
select | (index: number): void |
setAriaLabel | (label: string): void |
setCustomValidity | (message: string): void |
Event | Description |
---|---|
action | {ActionDetail} |
change | |
closed | |
invalid | |
opened | |
selected | {SelectedDetail} |
FAQs
select component
The npm package @vonage/vwc-select receives a total of 624 weekly downloads. As such, @vonage/vwc-select popularity was classified as not popular.
We found that @vonage/vwc-select demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 3 open source maintainers collaborating on the project.
Did you know?
Socket installs a Github app to automatically flag issues on every pull request and report the health of your dependencies. Find out what is inside your node modules and prevent malicious activity before you update the dependencies.