kibana/packages/kbn-lens-embeddable-utils/index.ts
Carlos Crespo ad5c9d805a
[Infra UI] Refactor host view and asset details dashboards configuraton (#163918)
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
2023-08-16 09:01:48 +02:00

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';