@keyvaluesystems/react-stepper
Version:
A fully customizable stepper component
32 lines (31 loc) • 736 B
TypeScript
/**
* Enum for Label position
*/
export declare enum LABEL_POSITION {
LEFT = "left",
RIGHT = "right",
TOP = "top",
BOTTOM = "bottom"
}
/**
* Enum for orientation
*/
export declare enum ORIENTATION {
HORIZONTAL = "horizontal",
VERTICAL = "vertical"
}
/**
* Enum for elements of each node
*/
export declare enum Elements {
LabelDescription = "LabelDescription",
LabelTitle = "LabelTitle",
ActiveLabelTitle = "ActiveLabelTitle",
ActiveLabelDescription = "ActiveLabelDescription",
LineSeparator = "LineSeparator",
InactiveLineSeparator = "InactiveLineSeparator",
Node = "Node",
ActiveNode = "ActiveNode",
InActiveNode = "InActiveNode",
CompletedNode = "CompletedNode"
}