@keyvaluesystems/react-stepper
Version:
A fully customizable stepper component
35 lines • 1.16 kB
JavaScript
/**
* Enum for Label position
*/
export var LABEL_POSITION;
(function (LABEL_POSITION) {
LABEL_POSITION["LEFT"] = "left";
LABEL_POSITION["RIGHT"] = "right";
LABEL_POSITION["TOP"] = "top";
LABEL_POSITION["BOTTOM"] = "bottom";
})(LABEL_POSITION || (LABEL_POSITION = {}));
/**
* Enum for orientation
*/
export var ORIENTATION;
(function (ORIENTATION) {
ORIENTATION["HORIZONTAL"] = "horizontal";
ORIENTATION["VERTICAL"] = "vertical";
})(ORIENTATION || (ORIENTATION = {}));
/**
* Enum for elements of each node
*/
export var Elements;
(function (Elements) {
Elements["LabelDescription"] = "LabelDescription";
Elements["LabelTitle"] = "LabelTitle";
Elements["ActiveLabelTitle"] = "ActiveLabelTitle";
Elements["ActiveLabelDescription"] = "ActiveLabelDescription";
Elements["LineSeparator"] = "LineSeparator";
Elements["InactiveLineSeparator"] = "InactiveLineSeparator";
Elements["Node"] = "Node";
Elements["ActiveNode"] = "ActiveNode";
Elements["InActiveNode"] = "InActiveNode";
Elements["CompletedNode"] = "CompletedNode";
})(Elements || (Elements = {}));
//# sourceMappingURL=constants.js.map