mirror of
https://gitee.com/ant-design/ant-design.git
synced 2024-11-30 02:59:04 +08:00
Merge pull request #633 from ant-design/update-simple-pagination
Update simple pagination
This commit is contained in:
commit
462f4432d7
@ -9,7 +9,9 @@
|
||||
````jsx
|
||||
import { Pagination } from 'antd';
|
||||
|
||||
ReactDOM.render(
|
||||
<Pagination size="small" defaultCurrent={2} total={50} />,
|
||||
document.getElementById('components-pagination-demo-mini'));
|
||||
ReactDOM.render(<div>
|
||||
<Pagination size="small" total={50} />
|
||||
<br />
|
||||
<Pagination size="small" total={50} showSizeChanger showQuickJumper />
|
||||
</div>, document.getElementById('components-pagination-demo-mini'));
|
||||
````
|
||||
|
@ -1,25 +1,37 @@
|
||||
import React from 'react';
|
||||
import Pagination from 'rc-pagination';
|
||||
import Select from 'rc-select';
|
||||
import Select from '../select';
|
||||
import zhCN from './locale/zh_CN';
|
||||
|
||||
const prefixCls = 'ant-pagination';
|
||||
class MiniSelect extends React.Component {
|
||||
render() {
|
||||
return <Select size="small" {...this.props} />;
|
||||
}
|
||||
}
|
||||
|
||||
MiniSelect.Option = Select.Option;
|
||||
|
||||
class AntPagination extends React.Component {
|
||||
render() {
|
||||
let className = this.props.className;
|
||||
let selectComponentClass = Select;
|
||||
|
||||
if (this.props.size === 'small') {
|
||||
className += ' mini';
|
||||
selectComponentClass = MiniSelect;
|
||||
}
|
||||
return <Pagination selectComponentClass={Select}
|
||||
|
||||
return <Pagination selectComponentClass={selectComponentClass}
|
||||
selectPrefixCls="ant-select"
|
||||
prefixCls={prefixCls}
|
||||
{...this.props} className={className}/>;
|
||||
{...this.props}
|
||||
className={className} />;
|
||||
}
|
||||
}
|
||||
|
||||
AntPagination.defaultProps = {
|
||||
locale: zhCN,
|
||||
className: '',
|
||||
prefixCls: 'ant-pagination',
|
||||
};
|
||||
|
||||
export default AntPagination;
|
||||
|
@ -105,7 +105,7 @@
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
white-space: nowrap;
|
||||
padding-left: 10px;
|
||||
padding-left: 8px;
|
||||
padding-right: 24px;
|
||||
line-height: 26px;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user