Gathering detailed insights and metrics for @adembacajdev/react-native-range-picker-calendar
Gathering detailed insights and metrics for @adembacajdev/react-native-range-picker-calendar
Gathering detailed insights and metrics for @adembacajdev/react-native-range-picker-calendar
Gathering detailed insights and metrics for @adembacajdev/react-native-range-picker-calendar
React Native Range Picker Calendar
npm install @adembacajdev/react-native-range-picker-calendar
Typescript
Module System
Min. Node Version
Node Version
NPM Version
JavaScript (100%)
Total Downloads
0
Last Day
0
Last Week
0
Last Month
0
Last Year
0
7 Commits
2 Branches
1 Contributors
Updated on Dec 08, 2022
Latest Version
1.0.0
Package Id
@adembacajdev/react-native-range-picker-calendar@1.0.0
Unpacked Size
19.38 kB
Size
5.16 kB
File Count
7
NPM Version
6.14.10
Node Version
12.19.0
Cumulative downloads
Total Downloads
Last Day
0%
NaN
Compared to previous day
Last Week
0%
NaN
Compared to previous week
Last Month
0%
NaN
Compared to previous month
Last Year
0%
NaN
Compared to previous year
3
1$ npm install @adembacaj/react-native-range-picker-calendar --save
1import RangePicker from '@adembacajdev/react-native-range-picker-calendar'; 2 3<RangePicker 4 startDate={"27022021"} 5 untilDate={"31032021"} 6 buttonColor={'red'} 7 buttonContainerStyle={{ 8 borderTopWidth: 0 9 }} 10 showClose={true} 11 showReset={true} 12 showButton={true} 13 buttonLabel="Submit" 14 onClose={toggle} 15 placeHolderStart="Checkin" 16 placeHolderUntil="Checkout" 17 selectedBackgroundColor={'red'} 18 maxMonth={12}dayHeadings={['Mo', 'Tu', 'Wed', 'Thu', 'Fri', 'Sat', 'Sun']} 19 blockedDates={[ '20210315', '20210317']} 20/>
1static defaultProps = { 2 initialMonth: '', 3 dayHeadings: ['S', 'M', 'T', 'W', 'T', 'F', 'S'], 4 maxMonth: 12, 5 buttonColor: 'green', 6 buttonContainerStyle: {}, 7 showReset: true, 8 showClose: true, 9 showSelectionInfo: true, 10 showButton: true, 11 ignoreMinDate: false, 12 isHistorical: false, //Switches direction of months from forward to a historical view with the current month on top. 13 onClose: () => {}, 14 onSelect: () => {}, 15 onConfirm: () => {}, 16 placeHolderStart: 'Start Date', 17 placeHolderUntil: 'Until Date', 18 selectedBackgroundColor: 'green', 19 selectedTextColor: 'white', 20 todayColor: 'green', 21 startDate: '', 22 untilDate: '', 23 minDate: '', 24 maxDate: '', 25 infoText: '', 26 infoStyle: {color: '#fff', fontSize: 13}, 27 infoContainerStyle: {marginRight: 20, paddingHorizontal: 20, paddingVertical: 5, backgroundColor: 'green', borderRadius: 20, alignSelf: 'flex-end'}, 28};
1static propTypes = {
2 initialMonth: PropTypes.string,
3 dayHeadings: PropTypes.arrayOf(React.PropTypes.string),
4 blockedDates: PropTypes.arrayOf(React.PropTypes.string),
5 maxMonth: PropTypes.number,
6 buttonColor: PropTypes.string,
7 buttonContainerStyle: PropTypes.object,
8 startDate: PropTypes.string,
9 untilDate: PropTypes.string,
10 minDate: PropTypes.string,
11 maxDate: PropTypes.string,
12 showReset: PropTypes.bool,
13 showClose: PropTypes.bool,
14 showSelectionInfo: PropTypes.bool,
15 showButton: PropTypes.bool,
16 ignoreMinDate: PropTypes.bool,
17 onClose: PropTypes.func,
18 onSelect: PropTypes.func,
19 onConfirm: PropTypes.func,
20 placeHolderStart: PropTypes.string,
21 placeHolderUntil: PropTypes.string,
22 selectedBackgroundColor: PropTypes.string,
23 selectedTextColor: PropTypes.string,
24 todayColor: PropTypes.string,
25 infoText: PropTypes.string,
26 infoStyle: PropTypes.object,
27 infoContainerStyle: PropTypes.object,
28}
No vulnerabilities found.
Reason
no binaries found in the repo
Reason
0 existing vulnerabilities detected
Reason
0 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 0
Reason
Found 0/7 approved changesets -- score normalized to 0
Reason
no SAST tool detected
Details
Reason
no effort to earn an OpenSSF best practices badge detected
Reason
security policy file not detected
Details
Reason
project is not fuzzed
Details
Reason
license file not detected
Details
Reason
branch protection not enabled on development/release branches
Details
Score
Last Scanned on 2025-07-07
The Open Source Security Foundation is a cross-industry collaboration to improve the security of open source software (OSS). The Scorecard provides security health metrics for open source projects.
Learn More