New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

react-input-date-mask

Package Overview
Dependencies
Maintainers
1
Versions
7
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

react-input-date-mask

Masked input component for React

latest
Source
npmnpm
Version
2.0.0
Version published
Weekly downloads
520
-6.81%
Maintainers
1
Weekly downloads
 
Created
Source

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

NameTypeDefaultDescription
mask{String}'dd.mm.yyyy'Mask format
showMaskOnFocus{Boolean}falseIf this option - true, the mask will only be displayed when an event occurs onFocus
showMaskOnHover{Boolean}falseIf 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

Keywords

react

FAQs

Package last updated on 10 Mar 2021

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts