You're Invited:Meet the Socket Team at BlackHat and DEF CON in Las Vegas, Aug 4-6.RSVP

@opentf/react-ta-input

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install
r

@opentf/react-ta-input

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

0.6.0
72

Supply Chain Security

100

Vulnerability

89

Quality

83

Maintenance

100

License

Unpopular package

Quality

This package is not very popular.

Found 1 instance in 1 package

Version published
Weekly downloads
0
-100%
Maintainers
1
Weekly downloads
 
Created
Issues
0

 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

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)

FAQs

Package last updated on 20 Jan 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