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

1.1.32 • Public • Published

A text area input component.

Install

npm install @fluid-topics/ft-text-area
yarn add @fluid-topics/ft-text-area

Usage

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

function render() {
    return html` 
            <ft-text-area label="Label"
                          value="Value"
                          @change=${(e: CustomEvent) => console.log("Value changed:", e.detail)}
                          @live-change=${(e: CustomEvent) => console.log("Value live changed:", e.detail)}
                          height="100">
            </ft-text-area>
           `
}

/@fluid-topics/ft-text-area/

    Package Sidebar

    Install

    npm i @fluid-topics/ft-text-area

    Weekly Downloads

    195

    Version

    1.1.32

    License

    ISC

    Unpacked Size

    291 kB

    Total Files

    12

    Last publish

    Collaborators

    • antidot
    • mike.antidot