UNPKG

@limetech/lime-elements

Version:
16 lines (15 loc) 373 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'; } //# sourceMappingURL=layout.js.map