1.0.16 • Published 1 year ago

react-simple-otp-fields v1.0.16

Weekly downloads
-
License
MIT
Repository
github
Last release
1 year ago

React simple OTP fields

It is a minimal package that provides simple to use OTP input fields with most of the functionalities that are required. This package does not enforce any styles on the input fields.

Installation

npm install react-simple-otp-fields

Demo / Playground

Here is a link to the playground/demo where you can experience the package and also try out the themes, as well as make your own.

Usage

import { OtpFields } from "react-simple-otp-fields";
import { useState } from "react";

function App() {
    // state
    const [otp, setOtp] = useState([]);

    // handler functions
    function handleOnChange(val) {
        setOtp(val);
    }

    function handleOnComplete() {
        console.log("Completed");
    }

    return (
        <OtpFields 
            length={4} 
            gap={8} 
            otp={otp} 
            onChange={handleOnChange} 
            onComplete={handleOnComplete}
            seperator={"-"}
            inputAttr={{
                //input attributes
            }}
        />
    );
}

export default App;

Minimal styles

If some basic styling is required than the style.css from the package can be imported and used.

import { OtpFields } from "react-simple-otp-fields";
import "react-simple-otp-fields/dist/style.css";

Props

NameTypeDescription
lengthnumberThe number of input fields required, default = 2.
seperatorReactNode \| undefinedA react node placed between the input fields.
gapnumber \| string \| undefinedDefines the space between two adjacent input fields also takes into account the spacing for the seperator if a seperator is provided, default = 8.
onChange(val: string[], index?: number) => voidExecutes on every keystroke. Provides the updated OTP and an optional index number.
otpstring[]state variable passed onto the component props that wil reflect the latest change.
onComplete() => void \| undefinedExecutes when passed, after all the input fields are filled.
autoFocusboolean \| undefinedMakes the first input field focus when the component is mounted.
containerClassesstring \| undefinedclassnames applied to the enclosing container of the input fields.
inputClassesstring \| undefinedclassnames applied to each of the input fields.
containerAttrDetailedHTMLProps<HTMLAttributes, HTMLDivElement> | undefinedgives access to all the attributes for the enclosing container of the input fields.
inputAttrDetailedHTMLProps<InputHTMLAttributes, HTMLInputElement> | undefinedgives access to all the attributes of a input field.
1.0.16

1 year ago

0.0.15

2 years ago

0.0.14

2 years ago

0.0.13

2 years ago

0.0.12

2 years ago

0.0.11

2 years ago

0.0.10

2 years ago

0.0.9

2 years ago

0.0.8

2 years ago

0.0.7

2 years ago

0.0.6

2 years ago

0.0.5

2 years ago

0.0.4

2 years ago

0.0.3

2 years ago

0.0.2

2 years ago

0.0.1

2 years ago