Importimport { Steps } from "antd"; |
Sourcecomponents/steps |
Importimport { Steps } from "antd"; |
Sourcecomponents/steps |
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 |
---|---|---|---|---|
classNames | Semantic DOM class | Record<SemanticDOM, string> | - | |
current | To set the current step, counting from 0. You can overwrite this state by using status of Step | number | 0 | |
To specify the direction of the step bar, horizontal or vertical | string | horizontal | ||
iconRender | Custom render icon, please use items.icon first | (oriNode, info: { index, active, item }) => ReactNode | - | |
initial | Set the initial step, counting from 0 | number | 0 | |
Place title and content with horizontal or vertical direction | string | horizontal | ||
orientation | To specify the orientation of the step bar, horizontal or vertical | string | horizontal | |
percent | Progress circle percentage of current step in process status (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. titlePlacement will be vertical | boolean | (iconDot, { index, status, title, content }) => ReactNode | false | |
responsive | Change to vertical direction when screen width smaller than 532px | boolean | true | |
size | To specify the size of the step bar, default and small are currently supported | string | default | |
status | To specify the status of current step, can be set to one of the following values: wait process finish error | string | process | |
styles | Semantic DOM style | Record<SemanticDOM, CSSProperties> | - | |
titlePlacement | Place title and content with horizontal or vertical direction | string | horizontal | |
type | Type of steps, can be set to one of the following values: default dot inline navigation panel | string | default | |
variant | Config style variant | filled | outlined | filled | |
onChange | Trigger when Step is changed | (current) => void | - | |
items | StepItem content | StepItem | [] | 4.24.0 |
A single step in the step bar.
Property | Description | Type | Default | Version |
---|---|---|---|---|
content | Description of the step, optional property | ReactNode | - | |
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 current of Steps if not configured. Optional values are: wait process finish error | string | wait | |
subTitle | Subtitle of the step | ReactNode | - | |
title | Title of the step | ReactNode | - |
Token Name | Description | Type | Default Value |
---|---|---|---|
customIconFontSize | Font size of custom icon | number | 24 |
customIconSize | Size of custom icon container | number | 32 |
customIconTop | Top of custom icon | number | 0 |
dotCurrentSize | Current size of dot | number | 10 |
dotSize | Size of dot | number | 8 |
iconFontSize | Size of icon | number | 14 |
iconSize | Size of icon container | number | 32 |
iconSizeSM | Size of small steps icon | number | 24 |
iconTop | Top of icon | number | -0.5 |
navArrowColor | Color of arrow in nav | string | rgba(0,0,0,0.25) |
navContentMaxWidth | Max width of nav content | undefined | MaxWidth<string | number> | unset |