@esri/calcite-components
Version:
Web Components for Esri's Calcite Design System.
28 lines (25 loc) • 841 B
JavaScript
/*!
* All material copyright ESRI, All Rights Reserved, unless otherwise specified.
* See https://github.com/Esri/calcite-components/blob/master/LICENSE.md for details.
* v1.5.0-next.4
*/
;
const autoMode = "calcite-mode-auto";
const darkMode = "calcite-mode-dark";
const lightMode = "calcite-mode-light";
const CSS_UTILITY = {
autoMode,
darkMode,
lightMode,
rtl: "calcite--rtl",
calciteAnimate: "calcite-animate",
calciteAnimateIn: "calcite-animate__in",
calciteAnimateInUp: "calcite-animate__in-up",
calciteAnimateInDown: "calcite-animate__in-down",
calciteAnimateInRight: "calcite-animate__in-right",
calciteAnimateInLeft: "calcite-animate__in-left",
calciteAnimateInScale: "calcite-animate__in-scale"
};
exports.CSS_UTILITY = CSS_UTILITY;
exports.autoMode = autoMode;
exports.darkMode = darkMode;