Socket
Book a DemoInstallSign in
Socket

@fluid-topics/ft-chip-choice

Package Overview
Dependencies
Maintainers
2
Versions
62
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@fluid-topics/ft-chip-choice

Chip-choice is a component used to make single-select or multi-select selections.

latest
npmnpm
Version
1.2.58
Version published
Weekly downloads
291
506.25%
Maintainers
2
Weekly downloads
 
Created
Source

Chip-choice is a component used to make single-select or multi-select selections. The appearance of chip-choice is based on the chip component, but the nature of chip-choice is different. In multi-select mode, chip-choice behaves like a group of checkboxes. In single-select mode, chip-choice behaves like a radiogroup.

Install

npm install @fluid-topics/ft-chip-choice
yarn add @fluid-topics/ft-chip-choice

Usage

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

function render() {
    return html`
        <ft-chip-choice multiselect>
            <ft-chip-choice-option value="1">Option 1</ft-chip-choice-option>
            <ft-chip-choice-option value="2">Option 2</ft-chip-choice-option>
            <ft-chip-choice-option value="3">Option 3</ft-chip-choice-option>
        </ft-chip-choice>
    `
}

Keywords

Lit

FAQs

Package last updated on 19 Sep 2025

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts