Skip to content

Commit 1fe9e1e

Browse files
committed
bump 2.6.0
1 parent 2fda629 commit 1fe9e1e

3 files changed

Lines changed: 5 additions & 6 deletions

File tree

HISTORY.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
# History
22
----
33

4+
## 2.6.0 / 2018-11-26
5+
6+
- add CSSMotion component
7+
48
## 2.3.0 / 2016-07-05
59

610
- support null/undefined child: https://github.com/react-component/animate/pull/11

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "rc-animate",
3-
"version": "2.6.0-beta.1",
3+
"version": "2.6.0",
44
"description": "css-transition ui component for react",
55
"keywords": [
66
"react",

src/Animate.js

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@ import {
88
isSameChildren,
99
} from './ChildrenUtils';
1010
import AnimateChild from './AnimateChild';
11-
import CSSMotion from './CSSMotion';
1211
import animUtil from './util/animate';
1312

1413
const defaultKey = `rc_animate_${Date.now()}`;
@@ -28,13 +27,9 @@ function getChildrenFromProps(props) {
2827
function noop() {
2928
}
3029

31-
export { CSSMotion };
32-
3330
export default class Animate extends React.Component {
3431
static isAnimate = true; // eslint-disable-line
3532

36-
static CSSMotion = CSSMotion;
37-
3833
static propTypes = {
3934
component: PropTypes.any,
4035
componentProps: PropTypes.object,

0 commit comments

Comments
 (0)