UNPKG

@alauda/ui

Version:

Angular UI components by Alauda Frontend Team.

17 lines (16 loc) 480 B
import { ValueOf } from '../internal/types'; export declare const StepState: { readonly Default: "default"; readonly Done: "done"; readonly Error: "error"; readonly Pending: "pending"; }; export type StepState = ValueOf<typeof StepState>; export interface StepItem { label: string; description?: string; state?: StepState; optional?: boolean; } export type StepsOrientation = 'horizontal' | 'vertical'; export type StepsType = 'progress' | 'step';