mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
* Refactor and unify option creation between new visualizations * move to grafana/ui * move to grafana/ui * resolve duplicate scale config * more imports Co-authored-by: Ryan McKinley <ryantxu@gmail.com>
15 lines
462 B
TypeScript
15 lines
462 B
TypeScript
/**
|
|
* A library containing the different design components of the Grafana ecosystem.
|
|
*
|
|
* @packageDocumentation
|
|
*/
|
|
export * from './components';
|
|
export * from './types';
|
|
export * from './utils';
|
|
export * from './themes';
|
|
export * from './options';
|
|
export * from './slate-plugins';
|
|
|
|
// Exposes standard editors for registries of optionsUi config and panel options UI
|
|
export { getStandardFieldConfigs, getStandardOptionEditors } from './utils/standardEditors';
|