npm.io
1.0.9 • Published 6 years ago

react-individual-input-box

Licence
MIT
Version
1.0.9
Deps
2
Size
99 kB
Vulns
0
Weekly
0
Stars
3

react-individual-input-box

React component for individual character input box

NPM JavaScript Style Guide

Example

Install

npm install --save react-individual-input-box

Usage

import * as React from "react";

import InputBox from "react-individual-input-box";

class Example extends React.Component {
  render() {
    return (
      <InputBox
        size={4}
        value={this.value}
        onChange={() => this.onChange()}
        isPassword
        onlyNumbers
      />
    );
  }
}

Props

Common props you may want to specify include:

  • size - number of input boxes
  • value - control the current value
  • isPassword - apply password dots to hide input data
  • onlyNumber - allow only numbers
  • isConfirmInput - allow use the input box component two times in screent as a confirm data input
  • onChange - subscribe to change events

License

MIT lucasga