You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Stores all completed steps. It is an array of step objects.
25
40
*/
26
-
completedSteps?: any[];
41
+
completedSteps?: Step[];
27
42
/**
28
43
* Stores all disabled steps. It is an array of step objects. Steps are still clickable/focusable,
29
44
* this only disables cursor change and removes onClick and onFocus event callbacks.
30
45
*/
31
-
disabledSteps?: any[];
46
+
disabledSteps?: Step[];
32
47
/**
33
48
* Stores all error steps. It is an array of step objects and usually there is only one error step, the current step. If an error occurs a second error icon should be placed to the left of related confirmation buttons (e.g. Cancel, Save) and an Error Popover should appear indicating there are errors. These additional items are NOT part of this component. This note was included for visibility purposes. Please refer to [SLDS website](https://www.lightningdesignsystem.com/components/progress-indicator/) for full details **
* Triggered when an individual step is focused. By default, it receives an event and returns step state and the step object clicked: `{ isCompleted, isDisabled, isError, isSelected, step }`. Users are able to pass a callback handleClick function in forms of: <function name>(event, data) where data is the callback result.
0 commit comments