mirror of
https://github.com/elastic/kibana.git
synced 2025-06-27 18:51:07 -04:00
## 📓 Summary
Closes #165482
Closes #165489
This PR apply new default preferences to the DataGrid for the Log
Explorer:
- Display and resize additional columns for `service.name (240px)` and
`host.name (320px)` fields. The column's width is taken by the average
length of those specific fields.
- Display rows with single-line height by default.
<img width="3004" alt="data_grid"
src="48d69762
-969a-49a5-a6b1-fc86eeaf86a7">
---------
Co-authored-by: Marco Antonio Ghiani <marcoantonio.ghiani@elastic.co>
Co-authored-by: kibanamachine <42973632+kibanamachine@users.noreply.github.com>
22 lines
1 KiB
TypeScript
22 lines
1 KiB
TypeScript
/*
|
|
* 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 and the Server Side Public License, v 1; you may not use this file except
|
|
* in compliance with, at your election, the Elastic License 2.0 or the Server
|
|
* Side Public License, v 1.
|
|
*/
|
|
|
|
export { UnifiedDataTable, DataLoadingState } from './src/components/data_table';
|
|
export type { UnifiedDataTableProps } from './src/components/data_table';
|
|
export { getDisplayedColumns } from './src/utils/columns';
|
|
export { ROWS_HEIGHT_OPTIONS } from './src/constants';
|
|
|
|
export { JSONCodeEditorCommonMemoized } from './src/components/json_code_editor/json_code_editor_common';
|
|
|
|
export * from './src/types';
|
|
export * as columnActions from './src/components/actions/columns';
|
|
|
|
export { getRowsPerPageOptions } from './src/utils/rows_per_page';
|
|
export { popularizeField } from './src/utils/popularize_field';
|
|
|
|
export { useColumns } from './src/hooks/use_data_grid_columns';
|