diff --git a/components/steps/demo/error.md b/components/steps/demo/error.md index 37ae33b4ef..9e1d2adf5a 100644 --- a/components/steps/demo/error.md +++ b/components/steps/demo/error.md @@ -19,10 +19,9 @@ const Step = Steps.Step; ReactDOM.render( - - - - + + + , mountNode); ```` diff --git a/components/steps/demo/icon.md b/components/steps/demo/icon.md index 044b445f0d..51383431ad 100644 --- a/components/steps/demo/icon.md +++ b/components/steps/demo/icon.md @@ -14,14 +14,14 @@ title: You can use your own custom icons by setting the property `icon` for `Steps.Step`. ````jsx -import { Steps } from 'antd'; +import { Steps, Icon } from 'antd'; const Step = Steps.Step; ReactDOM.render( - - - + + + } /> , mountNode); ```` diff --git a/components/steps/demo/simple.md b/components/steps/demo/simple.md index 5b5fe58e12..94b16ab46d 100644 --- a/components/steps/demo/simple.md +++ b/components/steps/demo/simple.md @@ -19,10 +19,9 @@ const Step = Steps.Step; ReactDOM.render( - - - - + + + , mountNode); ```` diff --git a/components/steps/demo/small-size.md b/components/steps/demo/small-size.md index 2fdd7448a4..abecad0e19 100644 --- a/components/steps/demo/small-size.md +++ b/components/steps/demo/small-size.md @@ -19,10 +19,9 @@ const Step = Steps.Step; ReactDOM.render( - - - - + + + , mountNode); ```` diff --git a/components/steps/demo/step-next.md b/components/steps/demo/step-next.md index 2edab70db3..1a5727d232 100644 --- a/components/steps/demo/step-next.md +++ b/components/steps/demo/step-next.md @@ -18,7 +18,7 @@ import { Steps, Button } from 'antd'; const Step = Steps.Step; const array = [...Array(Math.floor(Math.random() * 3) + 3)]; const steps = array.map((item, i) => ({ - title: `步骤${i + 1}`, + title: `Step ${i + 1}`, })); const App = React.createClass({ @@ -38,12 +38,12 @@ const App = React.createClass({ const { current } = this.state; return (
-
当前正在执行第 {current + 1} 步
+
Curent Step {current + 1}
{steps.map((s, i) => )}
- +
); diff --git a/components/steps/demo/vertical-small.md b/components/steps/demo/vertical-small.md index 65fcae0079..c794845993 100644 --- a/components/steps/demo/vertical-small.md +++ b/components/steps/demo/vertical-small.md @@ -19,10 +19,9 @@ const Step = Steps.Step; ReactDOM.render( - - - - + + + , mountNode); ```` diff --git a/components/steps/demo/vertical.md b/components/steps/demo/vertical.md index ac7f3c0d98..8a27dc8b30 100644 --- a/components/steps/demo/vertical.md +++ b/components/steps/demo/vertical.md @@ -19,10 +19,9 @@ const Step = Steps.Step; ReactDOM.render( - - - - + + + , mountNode); ```` diff --git a/components/steps/index.en-US.md b/components/steps/index.en-US.md index db7db5f73a..61f1f82508 100644 --- a/components/steps/index.en-US.md +++ b/components/steps/index.en-US.md @@ -39,6 +39,6 @@ A single step in the step bar. Property | Description | Type | Default -----|-----|-----|------ status | to specify the status. It will be automatically set by `current` of `Steps` if not configured. Optional values are: `wait` `process` `finish` `error` | String | wait -title | title of the step | React.Element | - -description | detail of the step, optional property | React.Element | - -icon | icon of the step, optional property | React.Element | - +title | title of the step | React.ReactNode | - +description | detail of the step, optional property | React.ReactNode | - +icon | icon of the step, optional property | string or React.ReactNode | - diff --git a/components/steps/index.zh-CN.md b/components/steps/index.zh-CN.md index c0a8fc6f1f..83a40d8ff1 100644 --- a/components/steps/index.zh-CN.md +++ b/components/steps/index.zh-CN.md @@ -40,6 +40,6 @@ title: Steps | 参数 | 说明 | 类型 | 默认值 | |----------|-----------------------------------------|------------|-------| | status | 指定状态。当不配置该属性时,会使用 Steps 的 `current` 来自动指定状态。可选:`wait` `process` `finish` `error` | String | wait | -| title | 标题 | React.Element | - | -| description | 步骤的详情描述,可选 | React.Element | - | -| icon | 步骤图标的类型,可选 | string | - | +| title | 标题 | React.ReactNode | - | +| description | 步骤的详情描述,可选 | React.ReactNode | - | +| icon | 步骤图标的类型,可选 | string or React.ReactNode | - | diff --git a/package.json b/package.json index 5f19802f18..c567fb97de 100644 --- a/package.json +++ b/package.json @@ -60,7 +60,7 @@ "rc-rate": "~1.1.2", "rc-select": "~6.5.1", "rc-slider": "~5.1.0", - "rc-steps": "~2.1.5", + "rc-steps": "~2.2.0", "rc-switch": "~1.4.2", "rc-table": "~5.0.0", "rc-tabs": "~7.0.5",