UNPKG

@kelvininc/ui-components

Version:
19 lines (18 loc) 554 B
import { EventEmitter } from '../../stencil-public-runtime'; import { IStepBar, IStepBarEvents, IStepBarStep } from './step-bar.types'; export declare class KvStepBar implements IStepBar, IStepBarEvents { /** @inheritdoc */ label: string; /** @inheritdoc */ steps: IStepBarStep[]; /** @inheritdoc */ currentStep: number; /** @inheritdoc */ progressPercentage: number; /** @inheritdoc */ hasError: boolean; /** @inheritdoc */ stepClicked: EventEmitter<number>; private onStepClick; render(): any; }