mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-24 11:10:01 +08:00
Merge branch 'master' of github.com:ant-design/ant-design into enterAnimation0.4.0
This commit is contained in:
commit
9b56e3753d
@ -80,14 +80,19 @@ const AntUpload = React.createClass({
|
||||
return {
|
||||
fileList: prevState.fileList.concat(info.file)
|
||||
};
|
||||
}, function() {
|
||||
info.fileList = this.state.fileList;
|
||||
this.props.onChange(info);
|
||||
});
|
||||
} else {
|
||||
this.setState({
|
||||
fileList: info.fileList
|
||||
}, function() {
|
||||
info.fileList = this.state.fileList;
|
||||
this.props.onChange(info);
|
||||
});
|
||||
}
|
||||
}
|
||||
this.props.onChange(info);
|
||||
},
|
||||
getDefaultProps() {
|
||||
return {
|
||||
|
5
index.js
5
index.js
@ -1,5 +1,4 @@
|
||||
import './style/index.less';
|
||||
import deprecate from 'util-deprecate';
|
||||
require('./style/index.less');
|
||||
|
||||
// matchMedia polyfill for
|
||||
// https://github.com/WickyNilliams/enquire.js/issues/82
|
||||
@ -48,7 +47,7 @@ const antd = {
|
||||
};
|
||||
|
||||
// deprecate antd.confirm
|
||||
antd.confirm = deprecate(antd.confirm, 'antd.confirm() is deprecated, use antd.Modal.confirm() instead');
|
||||
antd.confirm = require('util-deprecate')(antd.confirm, 'antd.confirm() is deprecated, use antd.Modal.confirm() instead');
|
||||
|
||||
module.exports = antd;
|
||||
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "antd",
|
||||
"version": "0.9.0-beta4",
|
||||
"version": "0.9.0-beta6",
|
||||
"stableVersion": "0.8.0",
|
||||
"title": "Ant Design",
|
||||
"description": "一个 UI 设计语言",
|
||||
|
Loading…
Reference in New Issue
Block a user