Skip to content

Commit

Permalink
Build v5.4.3
Browse files Browse the repository at this point in the history
  • Loading branch information
gpbl committed May 6, 2017
1 parent db9d581 commit c7e8656
Show file tree
Hide file tree
Showing 6 changed files with 48 additions and 31 deletions.
10 changes: 6 additions & 4 deletions lib/daypicker.js
Original file line number Diff line number Diff line change
Expand Up @@ -537,11 +537,13 @@
addDayToRange: addDayToRange,
addMonths: addMonths,
clone: clone,
isSameDay: isSameDay,
isDayInRange: isDayInRange,
isDayAfter: isDayAfter,
isDayBefore: isDayBefore,
isDayBetween: isDayBetween,
isPastDay: isPastDay,
isDayInRange: isDayInRange,
isFutureDay: isFutureDay,
isPastDay: isPastDay,
isSameDay: isSameDay,
};
//# sourceMappingURL=DateUtils.js.map

Expand Down Expand Up @@ -2044,7 +2046,7 @@
return DayPicker;
})(_react.Component);

DayPicker.VERSION = '5.4.2';
DayPicker.VERSION = '5.4.3';
DayPicker.propTypes = {
// Rendering months
initialMonth: _PropTypes2.default.instanceOf(Date),
Expand Down
20 changes: 11 additions & 9 deletions lib/daypicker.min.js
Original file line number Diff line number Diff line change
Expand Up @@ -146,11 +146,13 @@
addDayToRange: d,
addMonths: o,
clone: n,
isSameDay: r,
isDayInRange: c,
isDayAfter: i,
isDayBefore: s,
isDayBetween: f,
isPastDay: u,
isDayInRange: c,
isFutureDay: l,
isPastDay: u,
isSameDay: r,
});
},
function(e, t, a) {
Expand Down Expand Up @@ -589,14 +591,14 @@
j = o(W),
F = a(0),
q = o(F),
U = (function(e) {
B = (function(e) {
function t(e) {
i(this, t);
var a = u(
this,
(t.__proto__ || Object.getPrototypeOf(t)).call(this, e)
);
return B.call(a), (a.renderDayInMonth = a.renderDayInMonth.bind(
return U.call(a), (a.renderDayInMonth = a.renderDayInMonth.bind(
a
)), (a.showNextMonth = a.showNextMonth.bind(
a
Expand Down Expand Up @@ -1017,7 +1019,7 @@
},
]), t;
})(c.Component);
(U.VERSION = '5.4.2'), (U.propTypes = {
(B.VERSION = '5.4.3'), (B.propTypes = {
initialMonth: q.default.instanceOf(Date),
month: q.default.instanceOf(Date),
numberOfMonths: q.default.number,
Expand Down Expand Up @@ -1093,7 +1095,7 @@
onDayFocus: q.default.func,
onMonthChange: q.default.func,
onCaptionClick: q.default.func,
}), (U.defaultProps = {
}), (B.defaultProps = {
classNames: S.default,
tabIndex: 0,
initialMonth: new Date(),
Expand All @@ -1117,7 +1119,7 @@
classNames: S.default,
}),
});
var B = function() {
var U = function() {
(this.getStateFromProps = function(e) {
var t = N.startOfMonth(e.month || e.initialMonth), a = t;
if (e.pagedNavigation && e.numberOfMonths > 1 && e.fromMonth) {
Expand All @@ -1130,7 +1132,7 @@
return { currentMonth: a };
}), (this.dayPicker = null);
};
t.default = U;
t.default = B;
},
function(e, t, a) {
var n = a(9), o = a(2), r = a(3), s = a(6), i = a(8), u = a(7), l = a(0);
Expand Down
43 changes: 28 additions & 15 deletions lib/src/DateUtils.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion lib/src/DateUtils.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion lib/src/DayPicker.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion lib/src/DayPicker.js.map

Large diffs are not rendered by default.

0 comments on commit c7e8656

Please sign in to comment.