mirror of
https://github.com/elastic/kibana.git
synced 2025-04-24 17:59:23 -04:00
[data views] Move data views api from data plugin and into its own (#113497)
* initial pass at moving data views into own plugin * require expressions plugin, fix META_FIELDS reference * bundle limits and localization * fix integration test * update plugin list and jest config * type fixes * search fixes * fix localization * fix mocks * fix mocks * fix stub * type fixes * fix import on test file * path fixes * remove shorted dotted from data plugin * more todo removal * eslint fixes * eslint fix * simplify data views server plugin * simplify data views server plugin * simplify data views server plugin * fix imports on api routes * fix imports on api routes * update plugin list * ts fixes * ts fixes * add deprecation notice * fix circular dependency and api integration test * fix circular dependency and api integration test * rename types for better clarity * path fixes * jest.config and tsconfig cleanup Co-authored-by: Kibana Machine <42973632+kibanamachine@users.noreply.github.com>
This commit is contained in:
parent
28702ff1c6
commit
bbb2e96dd5
169 changed files with 996 additions and 497 deletions
|
@ -23,7 +23,7 @@ import { roundToDecimalPlace, kibanaFieldFormat } from '../utils';
|
|||
import { ExpandedRowFieldHeader } from '../stats_table/components/expanded_row_field_header';
|
||||
import { FieldVisStats } from '../../../../../common/types';
|
||||
import { ExpandedRowPanel } from '../stats_table/components/field_data_expanded_row/expanded_row_panel';
|
||||
import { IndexPatternField } from '../../../../../../../../src/plugins/data/common/data_views/fields';
|
||||
import { IndexPatternField } from '../../../../../../../../src/plugins/data_views/common';
|
||||
|
||||
interface Props {
|
||||
stats: FieldVisStats | undefined;
|
||||
|
|
|
@ -13,7 +13,7 @@ import {
|
|||
import type { SavedSearchSavedObject } from '../../../../common';
|
||||
import type { SavedSearch } from '../../../../../../../src/plugins/discover/public';
|
||||
import type { Filter, FilterStateStore } from '@kbn/es-query';
|
||||
import { stubbedSavedObjectIndexPattern } from '../../../../../../../src/plugins/data/common/data_views/data_view.stub';
|
||||
import { stubbedSavedObjectIndexPattern } from '../../../../../../../src/plugins/data_views/common/data_view.stub';
|
||||
import { IndexPattern } from '../../../../../../../src/plugins/data/common';
|
||||
import { fieldFormatsMock } from '../../../../../../../src/plugins/field_formats/common/mocks';
|
||||
import { uiSettingsServiceMock } from 'src/core/public/mocks';
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue