We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 120cf34 commit 045d802Copy full SHA for 045d802
package.json
@@ -38,8 +38,8 @@
38
"timers": "fake"
39
},
40
"peerDependencies": {
41
- "react": ">=15.0.0",
42
- "react-dom": ">=15.0.0"
+ "react": "^15.0.0 || ^16.0.0",
+ "react-dom": "^15.0.0 || ^16.0.0"
43
44
"dependencies": {
45
"chain-function": "^1.0.0",
src/TransitionGroup.js
@@ -76,6 +76,8 @@ class TransitionGroup extends React.Component {
76
}
77
78
79
+ // If we want to someday check for reordering, we could do it here.
80
+
81
let keysToEnter = this.keysToEnter;
82
this.keysToEnter = [];
83
keysToEnter.forEach(key => this.performEnter(key, this.childRefs[key]));
0 commit comments