0.10.0 • Published 3 months ago

@opentf/react-ta-input v0.10.0

Weekly downloads
-
License
MIT
Repository
github
Last release
3 months ago

 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)

0.10.0

3 months ago

0.9.0

3 months ago

0.9.1

3 months ago

0.8.0

3 months ago

0.7.0

3 months ago

0.6.0

3 months ago

0.5.0

3 months ago

0.4.0

3 months ago

0.3.2

3 months ago

0.3.1

3 months ago

0.3.0

3 months ago

0.2.0

3 months ago

0.1.0

3 months ago