import { DATE_FIELD_PATTERNS, METADATA_DATE_PATTERNS, NAME_FIELD_PATTERNS } from "../../js/constants.js"; import "./types.js"; //#region src/react/charts/constants.d.ts /** CSS variable names for categorical chart colors (distinct categories) */ declare const CHART_COLOR_VARS_CATEGORICAL: readonly ["--chart-cat-1", "--chart-cat-2", "--chart-cat-3", "--chart-cat-4", "--chart-cat-5", "--chart-cat-6", "--chart-cat-7", "--chart-cat-8"]; /** CSS variable names for sequential chart colors (low → high) */ declare const CHART_COLOR_VARS_SEQUENTIAL: readonly ["--chart-seq-1", "--chart-seq-2", "--chart-seq-3", "--chart-seq-4", "--chart-seq-5", "--chart-seq-6", "--chart-seq-7", "--chart-seq-8"]; /** CSS variable names for diverging chart colors (negative ↔ positive) */ declare const CHART_COLOR_VARS_DIVERGING: readonly ["--chart-div-1", "--chart-div-2", "--chart-div-3", "--chart-div-4", "--chart-div-5", "--chart-div-6", "--chart-div-7", "--chart-div-8"]; /** Legacy: CSS variable names for chart colors (aliases to categorical) */ declare const CHART_COLOR_VARS: readonly ["--chart-1", "--chart-2", "--chart-3", "--chart-4", "--chart-5", "--chart-6", "--chart-7", "--chart-8"]; /** Fallback categorical colors */ declare const FALLBACK_COLORS_CATEGORICAL: string[]; /** Fallback sequential colors (light → dark blue) */ declare const FALLBACK_COLORS_SEQUENTIAL: string[]; /** Fallback diverging colors (blue → red) */ declare const FALLBACK_COLORS_DIVERGING: string[]; //#endregion export { CHART_COLOR_VARS, CHART_COLOR_VARS_CATEGORICAL, CHART_COLOR_VARS_DIVERGING, CHART_COLOR_VARS_SEQUENTIAL, FALLBACK_COLORS_CATEGORICAL, FALLBACK_COLORS_DIVERGING, FALLBACK_COLORS_SEQUENTIAL }; //# sourceMappingURL=constants.d.ts.map