Input date masking component for React. React-input-date-mask requires React 16.8.0 or later.
npm install react-input-date-mask --save
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} />;
}
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 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'
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
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
You can also pass the following properties: className
, disabled
, readOnly
, onChange