mirror of
https://github.com/grafana/grafana.git
synced 2025-02-20 11:48:34 -06:00
18 lines
555 B
TypeScript
18 lines
555 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';
|
|
|
|
// Moved to `@grafana/schema`, in Grafana 9, this will be removed
|
|
export * from './schema';
|
|
|
|
// Exposes standard editors for registries of optionsUi config and panel options UI
|
|
export { getStandardFieldConfigs, getStandardOptionEditors } from './utils/standardEditors';
|