File

src/progress-indicator/progress-indicator-step.interface.ts

Index

Properties

Properties

complete
complete: boolean
Type : boolean
Optional

Determines whether the step is complete or incomplete

description
description: string
Type : string
Optional

Icon description

disabled
disabled: boolean
Type : boolean
Optional

Determines whether the step is disabled or not

invalid
invalid: boolean
Type : boolean
Optional

Determines whether the step is invalid or valid

label
label: string
Type : string

The label of the step

onClick
onClick: Function
Type : Function
Optional

Function to execute on click

secondaryLabel
secondaryLabel: string
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;
}

results matching ""

    No results matching ""