@fluid-topics/ft-select
TypeScript icon, indicating that this package has built-in type declarations

1.1.32 • Public • Published

A selector for a predefined list of choices.

Install

npm install @fluid-topics/ft-select
yarn add @fluid-topics/ft-select

Usage

import { html } from "lit"
import "@fluid-topics/ft-select"

function render() {
    return html`
        <ft-select label="label"
                   @change=${ (e: CustomEvent) => console.log("Value changed:", e.detail) }>
            <ft-select-option></ft-select-option>
            <ft-select-option label="Option 1" value="Value 1"></ft-select-option>
            <ft-select-option label="Option 2" value="Value 2"></ft-select-option>
            <ft-select-option label="Option 3" value="Value 3" selected></ft-select-option>
            <ft-select-option label="Option 4" value="Value 4"></ft-select-option>
        </ft-select> 
    `
}

Readme

Keywords

Package Sidebar

Install

npm i @fluid-topics/ft-select

Weekly Downloads

245

Version

1.1.32

License

ISC

Unpacked Size

308 kB

Total Files

12

Last publish

Collaborators

  • antidot
  • mike.antidot