Security News
Weekly Downloads Now Available in npm Package Search Results
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.
react-multi-date-picker
Advanced tools
a simple React datepicker component for work with gregorian, persian and arabic calendars
npm install --save react-multi-date-picker
import react from "react";
import DatePicker from "react-multi-date-picker";
export default function Example() {
return <DatePicker />;
}
https://shahabyazdi.github.io/react-multi-date-picker
Key | value | default | Availability (DatePicker/ Calendar) |
---|---|---|---|
value | Date, DateObject, String, Number or Array | new Date() | both |
range | Boolean | false | both |
timePicker | Boolean | false | both |
onlyTimePicker | Boolean | false | both |
mustShowDates | Boolean | true (in multiple & range mode) | both |
range | Boolean | false | both |
format | String | YYYY/MM/DD | both |
local | en, fa or ar | en | both |
calendar | gregorian, persian or arabic | gregorian | both |
onChange | Function | undefined | both |
className | String | "" | both |
inputClass | String | "" | DatePicker |
name | String | "" | DatePicker |
placeholder | String | "" | DatePicker |
style | Object | {} | DatePicker |
<DatePicker
value={new Date()}
/>
<DatePicker
value={new Date(2020,9,27)}
/>
<DatePicker
value="2020/08/27"
/>
<DatePicker
value="2020/27/08"
format="YYYY/DD/MM"
/>
<DatePicker
value="August 27 2020"
format="MMMM DD YYYY"
/>
<DatePicker
value="2020/08/27 12:30:31"
format="YYYY/MM/DD HH:mm:ss"
timePicker
/>
<DatePicker
value={new Date()}
format="YYYY-MM-DD HH:mm:ss"
timePicker
/>
<DatePicker
value="August 27 2020 12:30:31 am"
format="MMMM DD YYYY hh:mm:ss a"
timePicker
/>
<DatePicker
value="12:30:31 am"
format="hh:mm:ss a"
onlyTimePicker
/>
<DatePicker
value={new Date()}
format="hh-mm-ss A"
onlyTimePicker
/>
<DatePicker
value={new Date()}
format="YYYY/MM/DD hh:mm:ss a"
timePicker
onChange={dateObject=>{
console.log(dateObject.toDate())
}}
/>
<DatePicker
value="2020/08/27 11:10:59 am"
format="YYYY/MM/DD hh:mm:ss a"
timePicker
onChange={dateObject =>{
if(dateObject.isValid){
console.log(dateObject.format())
}
}}
/>
<DatePicker
value={new Date()}
format="YYYY/MM/DD hh:mm:ss a"
calendar="persian"
local="fa"
timePicker
onChange={dateObject =>{
console.log(dateObject.convert("gregorian").format())
}}
/>
<DatePicker
value="1399/06/05 12:30:24 pm"
format="YYYY/MM/DD hh:mm:ss a"
calendar="persian"
local="en"
timePicker
/>
<DatePicker
calendar="arabic"
local="ar"
/>
FAQs
A simple React datepicker component for working with gregorian, persian, arabic and indian calendars with the ability to select the date by single, multiple, range and multiple range pickers.
The npm package react-multi-date-picker receives a total of 56,712 weekly downloads. As such, react-multi-date-picker popularity was classified as popular.
We found that react-multi-date-picker demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
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.
Security News
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.
Security News
A Stanford study reveals 9.5% of engineers contribute almost nothing, costing tech $90B annually, with remote work fueling the rise of "ghost engineers."
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.