Browse Source

Fix typo: prop-types

master
Henning Hall 5 years ago
parent
commit
63f0cd83cf
1 changed files with 3 additions and 1 deletions
  1. +3
    -1
      propTypes.js

+ 3
- 1
propTypes.js View File

@ -14,7 +14,9 @@ export default {
minimumDate: DateType, minimumDate: DateType,
maximumDate: DateType, maximumDate: DateType,
mode: PropTypes.oneOf(['date', 'time', 'datetime']), mode: PropTypes.oneOf(['date', 'time', 'datetime']),
minuteInterval: 1 | 2 | 3 | 4 | 5 | 6 | 10 | 12 | 15 | 20 | 30,
minuteInterval: PropTypes.oneOf(
1 | 2 | 3 | 4 | 5 | 6 | 10 | 12 | 15 | 20 | 30
),
locale: PropTypes.string, locale: PropTypes.string,
textColor: PropTypes.string, textColor: PropTypes.string,
timeZoneOffsetInMinutes: PropTypes.number, timeZoneOffsetInMinutes: PropTypes.number,

Loading…
Cancel
Save