UNPKG

cfc-ds

Version:

Design System do Conselho Federal de Contabilidade baseado no govbr-ds

16 lines (15 loc) 418 B
import { TemplateRef } from "@angular/core"; import { StepStatus, StepTagType } from "../components/step/step.component"; export interface StepItem { id: number; label: string; status: StepStatus; disabled?: boolean; icon?: string; customContent?: TemplateRef<any>; errorMessage?: string; alertMessage?: string; tooltip?: string; tagType?: StepTagType; hovered?: boolean; }