"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.RESIZED_COLUMN_MIN_WITH = exports.DEFAULT_DATE_COLUMN_MIN_WIDTH = exports.DEFAULT_COLUMN_MIN_WIDTH = void 0; /* * 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. */ /** The default minimum width of a column (when a width for the column type is not specified) */ const DEFAULT_COLUMN_MIN_WIDTH = 180; // px /** The minimum width of a resized column */ exports.DEFAULT_COLUMN_MIN_WIDTH = DEFAULT_COLUMN_MIN_WIDTH; const RESIZED_COLUMN_MIN_WITH = 70; // px /** The default minimum width of a column of type `date` */ exports.RESIZED_COLUMN_MIN_WITH = RESIZED_COLUMN_MIN_WITH; const DEFAULT_DATE_COLUMN_MIN_WIDTH = 190; // px exports.DEFAULT_DATE_COLUMN_MIN_WIDTH = DEFAULT_DATE_COLUMN_MIN_WIDTH;