You are here:
Wizard Lightning Web Component ReadMe (Managed Package)
For the managed package runtime, this page contains the Wizard LWC ReadMe for each Vlocity release.
This information is for Omnistudio for Managed Packages. For Omnistudio on standard runtime, see Omnistudio Help.
Vlocity Insurance and Health Spring '20
The Wizard Lightning Web Component displays a modal that enables navigating between steps in a process and displays a progress bar that shows where the user is in the process. The Wizard LWC supports custom labels.
Available Attributes
Attribute |
Value |
Type |
Required |
Description |
|---|---|---|---|---|
header |
string |
This sets the header of the wizard component. |
||
theme |
slds, nds (Default: slds) |
string |
Specifies the theme to use |
Example of c-wizard component
<c-wizard header="Wizard Component">
<div slot="content">
<c-wizard-item label="Step1">...</c-wizard-item>
<c-wizard-item label="Step2">...</c-wizard-item>
<c-wizard-item label="Step3">...</c-wizard-item>
</div>
</c-wizard>
Available Custom Labels
Label |
ApiName |
Description |
|---|---|---|
Close |
cmpClose |
Assistive text for the close icon. |
Cancel |
cmpCancel |
Text for the cancel button. |
Back |
cmpBack |
Text for the button that returns user to previous step. |
Step |
cmpStep |
Text visible on mouse over of a step icon on the progress bar in the wizard. |
Next |
cmpNext |
Text for the button that navigates to the next step in the wizard. |
Save |
cmpSave |
Text for the button that saves the process executed in the wizard. |
