Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

react-bootstrap-daterangepicker

Package Overview
Dependencies
Maintainers
1
Versions
57
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

react-bootstrap-daterangepicker - npm Package Compare versions

Comparing version 3.2.2 to 3.3.0

39

CHANGELOG.md
# Change Log
## [3.3.0](https://github.com/skratchdot/react-bootstrap-daterangepicker/tree/3.3.0) (2017-05-18)
[Full Changelog](https://github.com/skratchdot/react-bootstrap-daterangepicker/compare/2.1.1...3.3.0)
**Closed issues:**
- Display calendar above element [\#115](https://github.com/skratchdot/react-bootstrap-daterangepicker/issues/115)
**Merged pull requests:**
- Fixed prop-types and createClass issues [\#129](https://github.com/skratchdot/react-bootstrap-daterangepicker/pull/129) ([thevikas](https://github.com/thevikas))
## [2.1.1](https://github.com/skratchdot/react-bootstrap-daterangepicker/tree/2.1.1) (2016-10-07)
[Full Changelog](https://github.com/skratchdot/react-bootstrap-daterangepicker/compare/2.2.0...2.1.1)
**Closed issues:**
- v2.1.0 [\#92](https://github.com/skratchdot/react-bootstrap-daterangepicker/issues/92)
## [2.2.0](https://github.com/skratchdot/react-bootstrap-daterangepicker/tree/2.2.0) (2016-10-06)
[Full Changelog](https://github.com/skratchdot/react-bootstrap-daterangepicker/compare/2.1.0...2.2.0)
**Closed issues:**
- Is it possible to mount the daterangepicker within a given DOM node? [\#104](https://github.com/skratchdot/react-bootstrap-daterangepicker/issues/104)
- React 15.2.1 deprecation warning [\#80](https://github.com/skratchdot/react-bootstrap-daterangepicker/issues/80)
## [2.1.0](https://github.com/skratchdot/react-bootstrap-daterangepicker/tree/2.1.0) (2016-09-10)
[Full Changelog](https://github.com/skratchdot/react-bootstrap-daterangepicker/compare/3.2.2...2.1.0)
## [3.2.2](https://github.com/skratchdot/react-bootstrap-daterangepicker/tree/3.2.2) (2016-09-10)
[Full Changelog](https://github.com/skratchdot/react-bootstrap-daterangepicker/compare/1.1.0...3.2.2)
## [1.1.0](https://github.com/skratchdot/react-bootstrap-daterangepicker/tree/1.1.0) (2016-09-10)
[Full Changelog](https://github.com/skratchdot/react-bootstrap-daterangepicker/compare/3.2.1...1.1.0)
**Closed issues:**
- autoApply doesn't hide apply and cancel buttons [\#89](https://github.com/skratchdot/react-bootstrap-daterangepicker/issues/89)
## [3.2.1](https://github.com/skratchdot/react-bootstrap-daterangepicker/tree/3.2.1) (2016-08-26)

@@ -4,0 +43,0 @@ [Full Changelog](https://github.com/skratchdot/react-bootstrap-daterangepicker/compare/3.2.0...3.2.1)

94

lib/index.js

@@ -13,5 +13,7 @@ 'use strict';

var getOptions = require('./get-options.js');
var PropTypes = require('prop-types');
var createReactClass = require('create-react-class');
/* this is our export React class */
module.exports = React.createClass({
module.exports = createReactClass({
$picker: null,

@@ -95,51 +97,51 @@ options: getOptions(),

propTypes: {
"<input>": React.PropTypes.any,
alwaysShowCalendars: React.PropTypes.bool,
applyClass: React.PropTypes.string,
autoApply: React.PropTypes.bool,
autoUpdateInput: React.PropTypes.bool,
buttonClasses: React.PropTypes.array,
cancelClass: React.PropTypes.string,
dateLimit: React.PropTypes.object,
drops: React.PropTypes.oneOf(['down', 'up']),
endDate: React.PropTypes.oneOfType([
React.PropTypes.object,
React.PropTypes.string,
"<input>": PropTypes.any,
alwaysShowCalendars: PropTypes.bool,
applyClass: PropTypes.string,
autoApply: PropTypes.bool,
autoUpdateInput: PropTypes.bool,
buttonClasses: PropTypes.array,
cancelClass: PropTypes.string,
dateLimit: PropTypes.object,
drops: PropTypes.oneOf(['down', 'up']),
endDate: PropTypes.oneOfType([
PropTypes.object,
PropTypes.string,
]),
isCustomDate: React.PropTypes.bool,
isInvalidDate: React.PropTypes.func,
linkedCalendars: React.PropTypes.bool,
locale: React.PropTypes.object,
maxDate: React.PropTypes.oneOfType([
React.PropTypes.object,
React.PropTypes.string,
isCustomDate: PropTypes.bool,
isInvalidDate: PropTypes.func,
linkedCalendars: PropTypes.bool,
locale: PropTypes.object,
maxDate: PropTypes.oneOfType([
PropTypes.object,
PropTypes.string,
]),
minDate: React.PropTypes.oneOfType([
React.PropTypes.object,
React.PropTypes.string,
minDate: PropTypes.oneOfType([
PropTypes.object,
PropTypes.string,
]),
onApply: React.PropTypes.func,
onCancel: React.PropTypes.func,
onEvent: React.PropTypes.func,
onHide: React.PropTypes.func,
onHideCalendar: React.PropTypes.func,
onShow: React.PropTypes.func,
onShowCalendar: React.PropTypes.func,
opens: React.PropTypes.oneOf(['left', 'right', 'center']),
parentEl: React.PropTypes.any,
ranges: React.PropTypes.object,
showCustomRangeLabel: React.PropTypes.bool,
showDropdowns: React.PropTypes.bool,
showISOWeekNumbers: React.PropTypes.bool,
showWeekNumbers: React.PropTypes.bool,
singleDatePicker: React.PropTypes.bool,
startDate: React.PropTypes.oneOfType([
React.PropTypes.object,
React.PropTypes.string,
onApply: PropTypes.func,
onCancel: PropTypes.func,
onEvent: PropTypes.func,
onHide: PropTypes.func,
onHideCalendar: PropTypes.func,
onShow: PropTypes.func,
onShowCalendar: PropTypes.func,
opens: PropTypes.oneOf(['left', 'right', 'center']),
parentEl: PropTypes.any,
ranges: PropTypes.object,
showCustomRangeLabel: PropTypes.bool,
showDropdowns: PropTypes.bool,
showISOWeekNumbers: PropTypes.bool,
showWeekNumbers: PropTypes.bool,
singleDatePicker: PropTypes.bool,
startDate: PropTypes.oneOfType([
PropTypes.object,
PropTypes.string,
]),
template: React.PropTypes.any,
timePicker: React.PropTypes.bool,
timePickerIncrement: React.PropTypes.number,
timePicker24Hour: React.PropTypes.bool,
timePickerSeconds: React.PropTypes.bool,
template: PropTypes.any,
timePicker: PropTypes.bool,
timePickerIncrement: PropTypes.number,
timePicker24Hour: PropTypes.bool,
timePickerSeconds: PropTypes.bool,
},

@@ -146,0 +148,0 @@ render: function () {

{
"name": "react-bootstrap-daterangepicker",
"version": "3.2.2",
"version": "3.3.0",
"description": "A date/time picker for react (using bootstrap). This is a react port of: https://github.com/dangrossman/bootstrap-daterangepicker",

@@ -21,32 +21,36 @@ "main": "./lib/index.js",

"dependencies": {
"bootstrap-daterangepicker": "^2.1.24",
"object-assign": "^4.1.0"
"bootstrap-daterangepicker": "^2.1.25",
"object-assign": "^4.1.1"
},
"peerDependencies": {
"create-react-class": ">=15.5.0",
"jquery": ">=2.0.0",
"react": ">=15.0.0"
"prop-types": ">=15.5.0",
"react": ">=15.5.0"
},
"devDependencies": {
"babel-preset-es2015": "^6.14.0",
"babel-preset-react": "^6.11.1",
"babel-preset-stage-0": "^6.5.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"babelify": "^7.3.0",
"bootstrap": "^3.3.7",
"cheerio": "^0.22.0",
"gulp": "^3.9.1",
"create-react-class": "^15.5.3",
"gulp-babel": "^6.1.2",
"gulp-browserify": "^0.5.1",
"gulp-connect": "^5.0.0",
"gulp-cssmin": "^0.1.7",
"gulp-cssmin": "^0.2.0",
"gulp-download": "0.0.1",
"gulp-less": "^3.1.0",
"gulp-nodemon": "^2.1.0",
"gulp-less": "^3.3.0",
"gulp-nodemon": "^2.2.1",
"gulp-rename": "^1.2.2",
"gulp-uglify": "^2.0.0",
"gulp-uglify": "^2.1.2",
"gulp": "^3.9.1",
"jsxhint": "^0.15.1",
"moment": "^2.14.1",
"react": "^15.3.1",
"react-bootstrap": "^0.30.3",
"react-dom": "^15.3.1",
"request": "^2.74.0",
"moment": "^2.18.1",
"prop-types": "^15.5.10",
"react-bootstrap": "^0.31.0",
"react-dom": "^15.5.4",
"react": "^15.5.4",
"request": "^2.81.0",
"wordwrap": "^1.0.0"

@@ -53,0 +57,0 @@ },

@@ -10,3 +10,4 @@ # react-bootstrap-daterangepicker

A date/time picker for react (using bootstrap). This is a react port of:
A date/time picker for react (using bootstrap). This is a react wrapper around
an existing jQuery/bootstrap library (it is not a pure react port):

@@ -96,6 +97,6 @@ [bootstrap-daterangepicker](https://github.com/dangrossman/bootstrap-daterangepicker)

- React 15: react-bootstrap-daterangepicker v3.0.0+
- React 14: react-bootstrap-daterangepicker v1.0.0+
- React 13: react-bootstrap-daterangepicker v0.0.1+
- React 14/15 Experimental: react-bootstrap-daterangepicker v2.0.0+ (do not use)
- React 15: react-bootstrap-daterangepicker v3.x.x
- React 14: react-bootstrap-daterangepicker v1.x.x
- React 13: react-bootstrap-daterangepicker v0.x.x
- React 14/15 Experimental: react-bootstrap-daterangepicker v2.x.x (do not use)

@@ -102,0 +103,0 @@

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is too big to display

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc