Files
grafana/packages/grafana-data/src/index.ts
Torkel Ödegaard 4527f712e0 Themes: V8 Theme model (#32342)
* Updated

* Progress

* Progress

* Added spacings

* Updated rich color to be more descriptibe

* Added more to getRichColor to showcase how it would work

* Added more to getRichColor to showcase how it would work

* Updated

* Started on storybook

* Rename to palette

* Storybook progress

* Minor update

* Progress

* Progress

* removed unused import

* Updated

* Progress

* Added typography to new theme model

* Added shadows and zindex to new theme

* Updated based on last discussions

* Updated

* Rename shadows

* Moving storybook to new theme, renaming stories and moving to single category

* Updated snapshot

* Updated jsdoc state tags

* Reducing annonying errors
2021-04-07 19:13:00 +02:00

25 lines
811 B
TypeScript

/**
* A library containing most of the core functionality and data types used in Grafana.
*
* @packageDocumentation
*/
export * from './utils';
export * from './types';
export * from './vector';
export * from './dataframe';
export * from './transformations';
export * from './datetime';
export * from './text';
export * from './valueFormats';
export * from './field';
export * from './events';
export * from './themes';
export {
ValueMatcherOptions,
BasicValueMatcherOptions,
RangeValueMatcherOptions,
} from './transformations/matchers/valueMatchers/types';
export { PanelPlugin, SetFieldConfigOptionsArgs, StandardOptionConfig } from './panel/PanelPlugin';
export { createFieldConfigRegistry } from './panel/registryFactories';
export { QueryRunner, QueryRunnerOptions } from './types/queryRunner';