Socket
Socket
Sign inDemoInstall

@fluid-topics/ft-radio

Package Overview
Dependencies
4
Maintainers
2
Versions
193
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    @fluid-topics/ft-radio

A radio component


Version published
Weekly downloads
305
increased by19.14%
Maintainers
2
Created
Weekly downloads
 

Readme

Source

A radio component

Install

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

Usage

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

function render() {
    return html` 
        <ft-radio-group name=${ args.name }
                        @change=${ (e: CustomEvent) => console.log("ft-radio-group change to :", e.detail) } >
            <ft-radio value="value 1" checked>
                Value 1
            </ft-radio>
            <ft-radio value="value 2">
                Value 2
            </ft-radio>
            <ft-radio value="value 3">
                Value 3
            </ft-radio>
        </ft-radio-group>
    `
}

Keywords

FAQs

Last updated on 30 May 2024

Did you know?

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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc