18 lines
573 B
JavaScript
18 lines
573 B
JavaScript
export const BYTES_IN_KIB = 1024;
|
|
export const HIDDEN_CLASS = 'hidden';
|
|
export const TRUNCATE_WIDTH_DEFAULT_WIDTH = 80;
|
|
export const TRUNCATE_WIDTH_DEFAULT_FONT_SIZE = 12;
|
|
|
|
export const DATETIME_RANGE_TYPES = {
|
|
fixed: 'fixed',
|
|
anchored: 'anchored',
|
|
rolling: 'rolling',
|
|
open: 'open',
|
|
invalid: 'invalid',
|
|
};
|
|
|
|
export const BV_SHOW_MODAL = 'bv::show::modal';
|
|
export const BV_HIDE_MODAL = 'bv::hide::modal';
|
|
export const BV_HIDE_TOOLTIP = 'bv::hide::tooltip';
|
|
export const BV_DROPDOWN_SHOW = 'bv::dropdown::show';
|
|
export const BV_DROPDOWN_HIDE = 'bv::dropdown::hide';
|