forked from ant-design/ant-design
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
docs: steps translation (ant-design#2430)
- Loading branch information
Showing
9 changed files
with
112 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
--- | ||
category: Components | ||
type: Navigation | ||
cols: 1 | ||
title: Steps | ||
--- | ||
|
||
`Steps` is a navigation bar that guides users through the steps of a task. | ||
|
||
## When to use | ||
|
||
When the task is complicated or has a certain sequence in the series of subtasks, we can decompose it into several steps to make things easier. | ||
|
||
## API | ||
|
||
```jsx | ||
<Steps> | ||
<Step title="first step" /> | ||
<Step title="second step" /> | ||
<Step title="third step" /> | ||
</Steps> | ||
``` | ||
|
||
### Steps | ||
|
||
The whole of the step bar. | ||
|
||
Property | Description | Type | Default | ||
-----|-----|-----|------ | ||
current | to set the current step, counting from 0. You can overwrite this state by using `status` of `Step` | Number | 0 | ||
status | to specify the status of current step, can be set to one of the following values: `wait` `process` `finish` `error` | String | `process` | ||
size | to specify the size of the step bar, `default` and `small` are currently supported | String | `default` | ||
direction | to specify the direction of the step bar, `horizontal` and `vertical` are currently supported | String | horizontal | ||
|
||
### Steps.Step | ||
|
||
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 | - |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters