Research
Security News
Malicious npm Package Targets Solana Developers and Hijacks Funds
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
react-multi-date-picker
Advanced tools
a simple React datepicker component for work with gregorian, persian, arabic and indian 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 />;
}
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<title>React Multi Date Picker</title>
</head>
<body>
<span>Calendar Example :</span>
<div id="calendar"></div>
<span>DatePicker Example :</span>
<div id="datePicker"></div>
<script src="https://unpkg.com/react@17/umd/react.production.min.js"></script>
<script src="https://unpkg.com/react-dom@17/umd/react-dom.production.min.js"></script>
<script src="https://unpkg.com/babel-standalone@6/babel.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/date-object@1.1.7/dist/date-object.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/react-multi-date-picker@1.8.3/build/date-picker.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/react-multi-date-picker@1.8.3/build/calendar.min.js"></script>
<script type="text/babel">
ReactDOM.render(<Calendar />, document.getElementById("calendar"));
ReactDOM.render(<DatePicker />, document.getElementById("datePicker"));
</script>
</body>
</html>
https://shahabyazdi.github.io/react-multi-date-picker
Name | Type | Default | Availability (DatePicker/ Calendar) |
---|---|---|---|
value | Date, DateObject, String, Number or Array | new Date() | both |
multiple | Boolean | false (true if value is Array) | both |
range | Boolean | false | both |
timePicker | Boolean | false | both |
onlyTimePicker | Boolean | false | both |
onlyMonthPicker | Boolean | false | both |
onlyYearPicker | Boolean | false | both |
mustShowDates | Boolean | false (true in multiple & range mode) | both |
format | String | YYYY/MM/DD | both |
formattingIgnoreList | Array | undefined | both |
local | String | en | both |
calendar | String | gregorian | both |
mapDays | Function | undefined | both |
onChange | Function | undefined | both |
className | String | "" | both |
weekDays | Array | undefined | both |
months | Array | undefined | both |
showOtherDays | Boolean | true | both |
minDate | Date, DateObject, String or Number | undefined | both |
maxDate | Date, DateObject, String or Number | undefined | both |
disableYearPicker | Boolean | false | both |
disableMonthPicker | Boolean | false | both |
eachDaysInRange | Boolean | false | both |
zIndex | Number | 100 | both |
animation | Boolean | false | DatePicker |
inputClass | String | "" | DatePicker |
name | String | "" | DatePicker |
style | Object | {} | DatePicker |
type | String | input | DatePicker |
render | React.Component or Function | undefined | DatePicker |
disabled | Boolean | false | DatePicker |
placeholder | String | "" | DatePicker |
inputMode | String | undefined | DatePicker |
scrollSensitive | Boolean | true | DatePicker |
hideOnScroll | Boolean | false | DatePicker |
calendarPosition | String | auto | DatePicker |
containerStyle | Object | undefined | DatePicker |
containerClassName | String | undefined | DatePicker |
editable | Boolean | true | DatePicker |
onlyShowInRangeDates | Boolean | true | DatePicker |
Calendars | Locals |
---|---|
gregorian (default) | en (default) |
persian | fa |
arabic | ar |
indian | hi |
DatePicker Types | ||||
---|---|---|---|---|
input (default) | input-icon | icon | button | custom |
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 55,209 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.
Research
Security News
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
Security News
Research
Socket researchers have discovered malicious npm packages targeting crypto developers, stealing credentials and wallet data using spyware delivered through typosquats of popular cryptographic libraries.
Security News
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.