Steps
Steps
A navigation bar that guides users through the steps of a task.
| 가져오기import{ Steps }from"antd"; | 
| 가져오기import{ Steps }from"antd"; | 
When a given task is complicated or has a certain sequence in the series of subtasks, we can decompose it into several steps to make things easier.
Common props ref:Common props
The whole of the step bar.
| Property | Description | Type | Default | Version | 
|---|---|---|---|---|
| className | Additional class to Steps | string | - | |
| current | To set the current step, counting from 0. You can overwrite this state by using statusofStep | number | 0 | |
| direction | To specify the direction of the step bar, horizontalorvertical | string | horizontal | |
| initial | Set the initial step, counting from 0 | number | 0 | |
| labelPlacement | Place title and description with horizontalorverticaldirection | string | horizontal | |
| percent | Progress circle percentage of current step in processstatus (only works on basic Steps) | number | - | 4.5.0 | 
| progressDot | Steps with progress dot style, customize the progress dot by setting it to a function. labelPlacement will be vertical | boolean | (iconDot, {index, status, title, description}) => ReactNode | false | |
| responsive | Change to vertical direction when screen width smaller than 532px | boolean | true | |
| size | To specify the size of the step bar, defaultandsmallare currently supported | string | default | |
| status | To specify the status of current step, can be set to one of the following values: waitprocessfinisherror | string | process | |
| type | Type of steps, can be set to one of the following values: defaultnavigationinline | string | default | inline: 5.0 | 
| onChange | Trigger when Step is changed | (current) => void | - | |
| items | StepItem content | StepItem | [] | 4.24.0 | 
type="inline"| Property | Description | Type | Default | Version | 
|---|---|---|---|---|
| className | Additional class to Steps | string | - | |
| current | To set the current step, counting from 0. You can overwrite this state by using statusofStep | number | 0 | |
| initial | Set the initial step, counting from 0 | number | 0 | |
| status | To specify the status of current step, can be set to one of the following values: waitprocessfinisherror | string | process | |
| onChange | Trigger when Step is changed | (current) => void | - | |
| items | StepItem content. not supported: iconsubtitle | StepItem | [] | 4.24.0 | 
A single step in the step bar.
| Property | Description | Type | Default | Version | 
|---|---|---|---|---|
| description | Description of the step, optional property | ReactNode | - | |
| disabled | Disable click | boolean | false | |
| icon | Icon of the step, optional property | ReactNode | - | |
| status | To specify the status. It will be automatically set by currentofStepsif not configured. Optional values are:waitprocessfinisherror | string | wait | |
| subTitle | Subtitle of the step | ReactNode | - | |
| title | Title of the step | ReactNode | - | 
| 토큰 이름 | 설명 | 타입 | 기본값 | 
|---|---|---|---|
| customIconFontSize | 自定义图标大小 | number | 24 | 
| customIconSize | 自定义图标容器尺寸 | number | 32 | 
| customIconTop | 自定义图标 top | number | 0 | 
| descriptionMaxWidth | 描述区域最大宽度 | number | 140 | 
| dotCurrentSize | 点状步骤点当前大小 | number | 10 | 
| dotSize | 点状步骤点大小 | number | 8 | 
| iconFontSize | 图标大小 | number | 14 | 
| iconSize | 图标容器尺寸 | number | 32 | 
| iconSizeSM | 小号步骤条图标大小 | number | 24 | 
| iconTop | 图标 top | number | -0.5 | 
| navArrowColor | 可跳转步骤条箭头颜色 | string | rgba(0, 0, 0, 0.25) | 
| navContentMaxWidth | 可跳转步骤条内容最大宽度 | undefined | MaxWidth<string | number> | auto | 
| titleLineHeight | 标题行高 | string | number | 32 |