react-input-date-mask

2.0.0 • Public • Published

react-input-date-mask

Input date masking component for React. React-input-date-mask requires React 16.8.0 or later.

Demo

Table of Contents

Install

npm install react-input-date-mask --save

Usage

import React from 'react';
import ReactInputDateMask from 'react-input-date-mask';

function DateInput(props) {
    return <ReactInputDateMask  mask='dd/mm/yyyy' showMaskOnFocus={true}  className={props.className} value={props.value} onChange={props.onChange} showMaskOnHover={true} />;
  
}

Properties

Name Type Default Description
mask {String} 'dd.mm.yyyy' Mask format
showMaskOnFocus {Boolean} false If this option - true, the mask will only be displayed when an event occurs onFocus
showMaskOnHover {Boolean} false If this option - true, when you mouse over the input, the mask appears, when you mouse leave the input, the mask disappears
className {String}
onChange {Function}
disabled {Boolean} false
readOnly {Boolean} false

mask

Mask format. Can be a string. There are two options. The first option by default: 'dd.mm.yyyy'. The second options: 'mm.dd.yyyy'. As a separator, you can use / or .

 <ReactInputDateMask mask='mm.dd.yyyy' or <ReactInputDateMask mask='dd.mm.yyyy'
 <ReactInputDateMask mask='mm/dd/yyyy' or <ReactInputDateMask mask='dd/mm/yyyy'

showMaskOnFocus

If this option - false, the mask will always be displayed. If this option - true, the mask will only be displayed when an event occurs onFocus

showMaskOnHover

This option is available when the option "showMaskOnFocus" - true. If this option - true, when you mouse over the input, the mask appears, when you mouse leave the input, the mask disappears

properties

You can also pass the following properties: className, disabled, readOnly, onChange

/react-input-date-mask/

    Package Sidebar

    Install

    npm i react-input-date-mask

    Weekly Downloads

    422

    Version

    2.0.0

    License

    ISC

    Unpacked Size

    11 kB

    Total Files

    3

    Last publish

    Collaborators

    • elena_tereshina