UNPKG

@esri/calcite-components

Version:

Web Components for Esri's Calcite Design System.

34 lines (33 loc) 889 B
import { ModeClass, ModeName } from '../components/interfaces'; export declare const autoMode = "calcite-mode-auto"; export declare const darkMode = "calcite-mode-dark"; interface Mode { name: ModeName; className: ModeClass; } export declare const MODES: Mode[]; export declare const CSS_UTILITY: { autoMode: string; darkMode: string; lightMode: string; rtl: string; calciteAnimate: string; calciteAnimateIn: string; calciteAnimateInUp: string; calciteAnimateInDown: string; calciteAnimateInRight: string; calciteAnimateInLeft: string; calciteAnimateInScale: string; }; export declare const TEXT: { loading: string; }; export declare const DEBOUNCE: { filter: number; nextTick: number; resize: number; reposition: number; }; export declare const resizeStep = 10; export declare const resizeShiftStep = 25; export {};