Chore: Move internal GraphNG+Timeseries components into core (#77525)

* move to core where possible

* update imports

* ignore import order for now

* add graveyard files

* update codeowners
This commit is contained in:
Ryan McKinley
2023-11-01 21:59:55 -07:00
committed by GitHub
parent fb9732e319
commit c6e27e00b4
50 changed files with 3091 additions and 102 deletions

View File

@ -13,10 +13,10 @@ import {
TimeRange,
} from '@grafana/data';
import { convertFieldType } from '@grafana/data/src/transformations/transformers/convertFieldType';
import { applyNullInsertThreshold } from '@grafana/data/src/transformations/transformers/nulls/nullInsertThreshold';
import { nullToValue } from '@grafana/data/src/transformations/transformers/nulls/nullToValue';
import { GraphFieldConfig, LineInterpolation } from '@grafana/schema';
import { applyNullInsertThreshold } from '@grafana/ui/src/components/GraphNG/nullInsertThreshold';
import { nullToValue } from '@grafana/ui/src/components/GraphNG/nullToValue';
import { buildScaleKey } from '@grafana/ui/src/components/GraphNG/utils';
import { buildScaleKey } from '@grafana/ui/src/components/uPlot/internal';
type ScaleKey = string;