UNPKG

@limetech/lime-elements

Version:
15 lines (14 loc) 357 B
/** * Maps a layout to a Tabulator layout * @param layout - the layout to map * @returns the Tabulator layout * @internal */ export function _mapLayout(layout) { const layouts = { stretchLastColumn: 'fitDataStretch', stretchColumns: 'fitColumns', lowDensity: 'fitData', }; return layouts[layout] || 'fitDataFill'; }