🚀 Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more
Socket
Book a DemoInstallSign in
Socket

@opentf/react-ta-input

Package Overview
Dependencies
Maintainers
1
Versions
13
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@opentf/react-ta-input

The Thamizhl (தமிழ்) language scripts input for ReactJS.

0.10.0
latest
Source
npm
Version published
Maintainers
1
Created
Source

 OPEN TECH FOUNDATION

React Ta Input

Virtual Keyboard

The Thamizhl (தமிழ்) language scripts input for ReactJS.

LIVE DEMO | DOCUMENTATION

Features

✅  Simple API

✅  It is based on the ta-input-spec specification

✅  Virtual Keyboard

✅  Easy switch between ta & System inputs methods

Upcoming

⏳ Drag virtual keyboard

⏳ Virtual Keyboard size variants

⏳ Option to pick various signs

⏳ Keyboard shortcut to change input language

Installation

npm install @opentf/react-ta-input
yarn add @opentf/react-ta-input
pnpm add @opentf/react-ta-input
bun add @opentf/react-ta-input

Usage

import { useRef } from "react";
import { TaInput } from "@opentf/react-ta-input";

export default function App() {
  const inputRef = useRef();

  const handleChange = (value) => {
    console.log(value);
  };

  return (
    <div>
      <TaInput inputRef={inputRef} onChange={handleChange}>
        <textarea ref={inputRef} rows={5} cols={50} />
      </TaInput>
    </div>
  );
}

License

Copyright (c) Thanga Ganapathy (MIT License)

Keywords

thamizhl

FAQs

Package last updated on 02 Feb 2024

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