Skip to content

Commit

Permalink
Remove dependency on React internals
Browse files Browse the repository at this point in the history
  • Loading branch information
tschaub committed Nov 17, 2016
1 parent b2fa6ac commit c25058a
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 4 deletions.
1 change: 0 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,6 @@
"immutable": "^3.7.2",
"moment": "^2.14.1",
"moment-range": "^2.0.3",
"react-addons-pure-render-mixin": "^0.14.0 || 15.x.x"
},
"devDependencies": {
"babel-cli": "^6.14.0",
Expand Down
2 changes: 1 addition & 1 deletion src/DateRangePicker.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ import isMomentRange from './utils/isMomentRange';
import hasUpdatedValue from './utils/hasUpdatedValue';
import { getYearMonth, getYearMonthProps } from './utils/getYearMonth';

import PureRenderMixin from 'react-addons-pure-render-mixin';
import PureRenderMixin from './utils/PureRenderMixin';

const absoluteMinimum = moment(new Date(-8640000000000000 / 2)).startOf('day');
const absoluteMaximum = moment(new Date(8640000000000000 / 2)).startOf('day');
Expand Down
2 changes: 1 addition & 1 deletion src/Legend.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import React from 'react';

import BemMixin from './utils/BemMixin';

import PureRenderMixin from 'react-addons-pure-render-mixin';
import PureRenderMixin from './utils/PureRenderMixin';


const Legend = React.createClass({
Expand Down
2 changes: 1 addition & 1 deletion src/PaginationArrow.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import React from 'react';

import BemMixin from './utils/BemMixin';

import PureRenderMixin from 'react-addons-pure-render-mixin';
import PureRenderMixin from './utils/PureRenderMixin';


const PaginationArrow = React.createClass({
Expand Down

0 comments on commit c25058a

Please sign in to comment.