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

1.1.88 • Public • Published

A select component.

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> 
    `
}

Dependencies (6)

Dev Dependencies (0)

    Package Sidebar

    Install

    npm i @fluid-topics/ft-select

    Weekly Downloads

    873

    Version

    1.1.88

    License

    ISC

    Unpacked Size

    454 kB

    Total Files

    12

    Last publish

    Collaborators

    • antidot
    • mike.antidot