2016-09-21 11:54:53 +08:00
|
|
|
import React from 'react';
|
2017-05-09 13:40:33 +08:00
|
|
|
import PropTypes from 'prop-types';
|
2016-03-18 10:31:25 +08:00
|
|
|
import RcSteps from 'rc-steps';
|
2015-06-26 10:43:01 +08:00
|
|
|
|
2016-08-10 09:46:56 +08:00
|
|
|
export interface StepsProps {
|
|
|
|
prefixCls?: string;
|
|
|
|
iconPrefix?: string;
|
|
|
|
current?: number;
|
|
|
|
status?: 'wait' | 'process' | 'finish' | 'error';
|
|
|
|
size?: 'default' | 'small';
|
|
|
|
direction?: 'horizontal' | 'vertical';
|
2017-01-23 14:37:40 +08:00
|
|
|
progressDot?: boolean | Function;
|
2016-08-10 09:46:56 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
export default class Steps extends React.Component<StepsProps, any> {
|
2016-03-29 14:01:10 +08:00
|
|
|
static Step = RcSteps.Step;
|
|
|
|
|
|
|
|
static defaultProps = {
|
|
|
|
prefixCls: 'ant-steps',
|
|
|
|
iconPrefix: 'ant',
|
2016-04-06 17:07:22 +08:00
|
|
|
current: 0,
|
2016-07-13 11:14:24 +08:00
|
|
|
};
|
2016-03-29 14:01:10 +08:00
|
|
|
|
2016-08-10 09:46:56 +08:00
|
|
|
static propTypes = {
|
|
|
|
prefixCls: PropTypes.string,
|
|
|
|
iconPrefix: PropTypes.string,
|
|
|
|
current: PropTypes.number,
|
|
|
|
};
|
|
|
|
|
2015-06-26 10:43:01 +08:00
|
|
|
render() {
|
2015-09-01 17:43:08 +08:00
|
|
|
return (
|
2016-07-07 15:42:00 +08:00
|
|
|
<RcSteps {...this.props} />
|
2015-09-01 17:43:08 +08:00
|
|
|
);
|
2015-06-26 10:43:01 +08:00
|
|
|
}
|
2016-03-18 10:31:25 +08:00
|
|
|
}
|