diff --git a/packages/kbn-unified-data-table/src/components/compare_documents/hooks/use_comparison_cell_value.tsx b/packages/kbn-unified-data-table/src/components/compare_documents/hooks/use_comparison_cell_value.tsx index ff23f485ee7fc5..0f2591e9331fc0 100644 --- a/packages/kbn-unified-data-table/src/components/compare_documents/hooks/use_comparison_cell_value.tsx +++ b/packages/kbn-unified-data-table/src/components/compare_documents/hooks/use_comparison_cell_value.tsx @@ -16,9 +16,10 @@ import { } from '@elastic/eui'; import { css } from '@emotion/react'; import type { DataView, DataViewField } from '@kbn/data-views-plugin/common'; -import { formatFieldValue, getFieldTypeName } from '@kbn/discover-utils'; +import { formatFieldValue } from '@kbn/discover-utils'; import type { DataTableRecord } from '@kbn/discover-utils/types'; import type { FieldFormatsStart } from '@kbn/field-formats-plugin/public'; +import { getFieldTypeName } from '@kbn/field-utils'; import { FieldIcon } from '@kbn/react-field'; import { euiThemeVars } from '@kbn/ui-theme'; import { Change, diffChars, diffLines, diffWords } from 'diff'; diff --git a/packages/kbn-unified-data-table/src/components/data_table.scss b/packages/kbn-unified-data-table/src/components/data_table.scss index 25bce5cdf88c57..8fd41b7c4d23b9 100644 --- a/packages/kbn-unified-data-table/src/components/data_table.scss +++ b/packages/kbn-unified-data-table/src/components/data_table.scss @@ -32,10 +32,6 @@ background: transparent; } - .euiDataGrid__controls { - border-top: $euiBorderThin; - } - .euiDataGrid--headerUnderline .euiDataGridHeaderCell { border-bottom: $euiBorderThin; } diff --git a/packages/kbn-unified-data-table/src/components/data_table.tsx b/packages/kbn-unified-data-table/src/components/data_table.tsx index 03c6946b1cf90e..28b55adfea0b01 100644 --- a/packages/kbn-unified-data-table/src/components/data_table.tsx +++ b/packages/kbn-unified-data-table/src/components/data_table.tsx @@ -47,8 +47,6 @@ import type { FieldFormatsStart } from '@kbn/field-formats-plugin/public'; import type { ThemeServiceStart } from '@kbn/react-kibana-context-common'; import type { DataPublicPluginStart } from '@kbn/data-plugin/public'; import type { DocViewFilterFn } from '@kbn/unified-doc-viewer/types'; -import type { UnifiedDataTableSettings, ValueToStringConverter } from '../types'; -import { getFieldTypeName } from '@kbn/field-utils'; import type { UnifiedDataTableSettings, ValueToStringConverter,