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 Aug 5, 2016
1 parent 24d357c commit 1824dba
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 6 deletions.
5 changes: 2 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -50,8 +50,7 @@
"classnames": "^2.1.1",
"immutable": "^3.7.2",
"moment": "^2.10.6",
"moment-range": "^2.0.3",
"react-addons-pure-render-mixin": "^0.14.0 || 15.x.x"
"moment-range": "^2.0.3"
},
"devDependencies": {
"babel": "^5.2.16",
Expand Down Expand Up @@ -88,8 +87,8 @@
"karma-webpack": "^1.7.0",
"object.assign": "^1.1.1",
"phantomjs": "^1.9.18",
"run-sequence": "~1.1.4",
"react-addons-test-utils": "^0.14.0 || 15.x.x",
"run-sequence": "~1.1.4",
"timekeeper": "0.0.5",
"transform-loader": "^0.2.1",
"underscore": "^1.8.3",
Expand Down
2 changes: 1 addition & 1 deletion src/DateRangePicker.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ import PaginationArrow from './PaginationArrow';

import isMomentRange from './utils/isMomentRange';

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 1824dba

Please sign in to comment.