Docs: fix grafana/ui docsExtract REF_NOT_FOUND errors (#33905)
* fix(grafana-ui): re-export commonOptionsBuilder namespace for api-extractor to work * docs(grafana-ui): add docblock annotations for exported interfaces * docs(grafana-ui): export ScaleDistribution from uplot
This commit is contained in:
@@ -227,6 +227,7 @@ export { LegacyForms, LegacyInputStatus };
|
||||
|
||||
// WIP, need renames and exports cleanup
|
||||
export * from './uPlot/config';
|
||||
export { ScaleDistribution } from './uPlot/models.gen';
|
||||
export { UPlotConfigBuilder } from './uPlot/config/UPlotConfigBuilder';
|
||||
export { UPlotChart } from './uPlot/Plot';
|
||||
export * from './uPlot/geometries';
|
||||
|
||||
@@ -27,6 +27,9 @@ export enum LineInterpolation {
|
||||
StepAfter = 'stepAfter',
|
||||
StepBefore = 'stepBefore',
|
||||
}
|
||||
/**
|
||||
* @alpha
|
||||
*/
|
||||
export enum ScaleDistribution {
|
||||
Linear = 'linear',
|
||||
Log = 'log',
|
||||
|
||||
@@ -1,4 +1,5 @@
|
||||
// namespace is too big
|
||||
export * as commonOptionsBuilder from './builder';
|
||||
import * as commonOptionsBuilder from './builder';
|
||||
export { commonOptionsBuilder };
|
||||
|
||||
export * from './models.gen';
|
||||
|
||||
@@ -2,6 +2,9 @@
|
||||
|
||||
import { VizLegendOptions } from '../components';
|
||||
|
||||
/**
|
||||
* @alpha
|
||||
*/
|
||||
export interface OptionsWithLegend {
|
||||
legend: VizLegendOptions;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user