Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ovotech/react-datepicker
React Datepicker loosely based around Material UI design.
https://github.com/ovotech/react-datepicker
Last synced: 21 days ago
JSON representation
React Datepicker loosely based around Material UI design.
- Host: GitHub
- URL: https://github.com/ovotech/react-datepicker
- Owner: ovotech
- License: mit
- Created: 2018-11-30T15:03:17.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2020-12-02T06:35:43.000Z (about 4 years ago)
- Last Synced: 2024-11-02T22:23:42.267Z (about 2 months ago)
- Language: JavaScript
- Size: 164 KB
- Stars: 0
- Watchers: 10
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
# React DatePicker
Datepicker component loosely based around Material UI design.
Demo
----Todo...
Usage
-----```js
import Calendar from '@kaluza/react-datepicker';const Page = (props) => (
);
```Props
-----```js
maxDate PropTypes.string (ISO Formatted Date)
Default: Today
minDate PropTypes.string (ISO Formatted Date)
Default: 0000-01-01
mode PropTypes.oneOf(['DAY', 'MULTIDAY', 'MONTH', 'YEAR'])
Default: DAY
multidayNumberOfSelectedDays PropTypes.number
Default: 1
onCancel PropTypes.func
Default: () => {}
onSelect PropTypes.func
Default: () => {}
selectedDate PropTypes.string (ISO Formatted Date)
Default: Today```