"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.defaultPaletteParams = exports.DEFAULT_PALETTE_NAME = exports.DEFAULT_COLOR_STEPS = void 0; var _shared_components = require("../../shared_components"); /* * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one * or more contributor license agreements. Licensed under the Elastic License * 2.0; you may not use this file except in compliance with the Elastic License * 2.0. */ const DEFAULT_PALETTE_NAME = 'status'; exports.DEFAULT_PALETTE_NAME = DEFAULT_PALETTE_NAME; const DEFAULT_COLOR_STEPS = 3; exports.DEFAULT_COLOR_STEPS = DEFAULT_COLOR_STEPS; const defaultPaletteParams = { ..._shared_components.defaultPaletteParams, maxSteps: 5, name: DEFAULT_PALETTE_NAME, continuity: 'all', rangeType: 'number', steps: DEFAULT_COLOR_STEPS }; exports.defaultPaletteParams = defaultPaletteParams;