Skip to main content

Steps

The Steps component helps break down complex process into clear, manageable stages. It’s ideal for multi-step forms, onboarding flows, or approval processes, giving users a clear sense of progress and direction.

Properties

PropertyDescription
VariantChoose what you want to display on the component - Label, Number, Plain.
Dynamic OptionsToggle on to add steps dynamically or click on Add new option button to add a new step.
Current stepSelect which step should be selected by default.

Events

EventDescription
On selectTriggers whenever the user selects any step.
info

Check Action Reference docs to get detailed information about all the Actions.

Component Specific Actions (CSA)

The following actions of the component can be controlled using the component-specific actions (CSA), you can trigger it using an event or use a RunJS query.

Action
Description
RunJS Query
setStepVisible( )Set the step visibility.components.steps1.setStepVisible
setStepDisable( )Disables the step.components.steps1.setStepDisable
resetSteps( )Resets the completed steps, takes user to the default step.components.steps1.resetSteps
setStep( )Takes user to step ID, marks all the previous steps as completed.components.steps1.setStep
setVisibility( )Sets the visibility of the component.components.steps1.setVisibility(false)
setDisable( )Disables the component.components.steps1.setDisable(true)

Exposed Variables

Variables
Description
How To Access
currentStepIdHolds the ID of the currently selected step on the step component.{{components.steps1.currentStepId}}
stepsStores information of all the steps.{{components.steps1.steps}}
isVisibleIndicates if the component is visible.{{components.steps1.isVisible}}
isDisabledIndicates if the component is disabled.{{components.steps1.isDisabled}}

Additional Actions

Action
Description
Configuration Options
Steps selectableWhen disabled will disable the selection of steps.Enable/disable the toggle button or dynamically configure the value by clicking on fx and entering a logical expression.
VisibilityControls component visibility.Enable/disable the toggle button or dynamically configure the value by clicking on fx and entering a logical expression.
DisableEnables or disables the component.Enable/disable the toggle button or dynamically configure the value by clicking on fx and entering a logical expression.

Devices

Property
Description
Expected Value
Show on desktopMakes the component visible in desktop view.You can set it with the toggle button or dynamically configure the value by clicking on fx and entering a logical expression.
Show on mobileMakes the component visible in mobile view.You can set it with the toggle button or dynamically configure the value by clicking on fx and entering a logical expression.

Styles

Style
Description
Expected Value
Incompleted accentChoose color for incomplete accent.Select from theme or choose from color picker.
Incompleted labelChoose color for incomplete label.Select from theme or choose from color picker.
Completed accentChoose color for completed accent.Select from theme or choose from color picker.
Completed labelChoose color for completed label.Select from theme or choose from color picker.
Current step labelChoose color for current step label.Select from theme or choose from color picker.
info

Any property having fx button next to its field can be programmatically configured.