kwikui
Version:
KwikID's UI Component Library in Angular
18 lines (17 loc) • 718 B
TypeScript
export declare enum EKwikUIStepperOrientation {
HORIZONTAL = "horizontal",
VERTICAL = "vertical"
}
export declare const VKwikUIStepperOrientation: readonly [EKwikUIStepperOrientation.HORIZONTAL, EKwikUIStepperOrientation.VERTICAL];
export declare type TKwikUIStepperOrientation = (typeof VKwikUIStepperOrientation)[number];
export declare type TKwikUIStep = {
label: string;
state: TKwikUIStepState;
};
export declare enum EKwikUIStepState {
NORMAL = "normal",
PASS = "pass",
ERROR = "error"
}
export declare const VKwikUIStepState: readonly [EKwikUIStepState.NORMAL, EKwikUIStepState.PASS, EKwikUIStepState.ERROR];
export declare type TKwikUIStepState = (typeof VKwikUIStepState)[number];