@veracity/vui
Version:
Veracity UI is a React component library crafted for use within Veracity applications and pages. Based on Styled Components and @xstyled.
29 lines (28 loc) • 952 B
JavaScript
//#region src/stepper/stepperConsts.ts
const STEP = "vui-stepperStep";
const CLASS = {
step: STEP,
tail: `${STEP}Tail`,
tailLeft: `${STEP}TailLeft`,
tailRight: `${STEP}TailRight`,
tailLeftIcon: `${STEP}TailLeftIcon`,
tailRightIcon: `${STEP}TailRightIcon`,
title: `${STEP}Title`
};
const CSS_VARS = {
vertGap: "--vui-stepper-vert-gap",
horizTailHeight: "--vui-stepper-horiz-tail-height",
vertTailMaxWidth: "--vui-stepper-vert-tail-max-width",
tailColor: "--vui-stepper-tail-color",
iconTailColor: "--vui-stepper-icon-tail-color",
titleColor: "--vui-stepper-title-color",
descColor: "--vui-stepper-desc-color",
indicatorBg: "--vui-stepper-indicator-bg",
indicatorBorder: "--vui-stepper-indicator-border",
indicatorColor: "--vui-stepper-indicator-color",
indicatorOutline: "--vui-stepper-indicator-outline"
};
//#endregion
export { CLASS, CSS_VARS };
globalThis.__vuiVersion__ = "5.3.0-alpha.2"
//# sourceMappingURL=stepperConsts.js.map