mirror of
https://github.com/elastic/kibana.git
synced 2025-06-27 18:51:07 -04:00
closes [#163797](https://github.com/elastic/kibana/issues/163797) ## Summary This PR extracts the dashboard configuration from the components that renders them to common. This aims to make discoverability and maintainability easier. It doesn't change any functional behaviour ### How to test - Start a local kibana instance - Navigate to `Infrastructure` > `hosts` - Verify if the charts still work as expected
30 lines
851 B
TypeScript
30 lines
851 B
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 * from './attribute_builder/types';
|
|
|
|
export type {
|
|
MetricLayerOptions,
|
|
MetricLayerConfig,
|
|
XYLayerOptions,
|
|
XYLayerConfig,
|
|
XYReferenceLinesLayerConfig,
|
|
XYVisualOptions,
|
|
} from './attribute_builder/visualization_types';
|
|
|
|
export {
|
|
FormulaColumn,
|
|
MetricChart,
|
|
MetricLayer,
|
|
StaticColumn,
|
|
XYChart,
|
|
XYDataLayer,
|
|
XYReferenceLinesLayer,
|
|
} from './attribute_builder/visualization_types';
|
|
|
|
export { LensAttributesBuilder } from './attribute_builder/lens_attributes_builder';
|