src/progress-indicator/progress-indicator-step.interface.ts
Properties |
|
| complete |
complete:
|
Type : boolean
|
| Optional |
|
Determines whether the step is complete or incomplete |
| description |
description:
|
Type : string
|
| Optional |
|
Icon description |
| disabled |
disabled:
|
Type : boolean
|
| Optional |
|
Determines whether the step is disabled or not |
| invalid |
invalid:
|
Type : boolean
|
| Optional |
|
Determines whether the step is invalid or valid |
| label |
label:
|
Type : string
|
|
The label of the |
| onClick |
onClick:
|
Type : Function
|
| Optional |
|
Function to execute on click |
| secondaryLabel |
secondaryLabel:
|
Type : string
|
| Optional |
|
Optional label with additional information |
export interface Step {
/**
* The label of the `step`
*/
label: string;
/**
* Optional label with additional information
*/
secondaryLabel?: string;
/**
* Determines whether the step is complete or incomplete
*/
complete?: boolean;
/**
* Determines whether the step is invalid or valid
*/
invalid?: boolean;
/**
* Function to execute on click
*/
onClick?: Function;
/**
* Determines whether the step is disabled or not
*/
disabled?: boolean;
/**
* Icon description
*/
description?: string;
}