@devtable/dashboard 14.60.7 → 14.60.8

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -120,5 +120,6 @@ export declare function getOption({ config, data, variables, t }: IGetOption): {
120
120
  boxWidth?: undefined;
121
121
  encode?: undefined;
122
122
  })[];
123
+ animation: boolean;
123
124
  };
124
125
  export {};
@@ -55,4 +55,5 @@ export declare function getOption(conf: ICalendarHeatmapConf, data: TPanelData,
55
55
  grid: {
56
56
  containLabel: boolean;
57
57
  };
58
+ animation: boolean;
58
59
  };
@@ -7,5 +7,11 @@ export declare function getOption(conf: IFunnelConf, data: TPanelData): {
7
7
  bottom: number;
8
8
  };
9
9
  tooltip: any;
10
- series: {}[];
10
+ series: {
11
+ data?: {
12
+ name: string;
13
+ value: string | number;
14
+ }[];
15
+ }[];
16
+ animation: boolean;
11
17
  };
@@ -1,2 +1,9 @@
1
1
  import { IFunnelConf } from '../type';
2
- export declare function getSeries(conf: IFunnelConf, data: TPanelData): {}[];
2
+ type SeriesDataType = {
3
+ name: string;
4
+ value: string | number;
5
+ };
6
+ export declare function getSeries(conf: IFunnelConf, data: TPanelData): {
7
+ data?: SeriesDataType[];
8
+ }[];
9
+ export {};
@@ -1,4 +1,4 @@
1
1
  import { ITemplateVariable } from '../../../../../utils';
2
- import { IHeatmapConf } from '../type';
3
2
  import { SeriesDataItem } from '../render/use-heatmap-series-data';
3
+ import { IHeatmapConf } from '../type';
4
4
  export declare function getOption(conf: IHeatmapConf, data: TPanelData, seriesData: SeriesDataItem[], variables: ITemplateVariable[], width: number, height: number): {};
@@ -150,6 +150,7 @@ export declare function getOption(conf: IParetoChartConf, data: TPanelData, vari
150
150
  bottom: number;
151
151
  containLabel: boolean;
152
152
  };
153
+ animation: boolean;
153
154
  } | {
154
155
  series: never[];
155
156
  grid: {
@@ -41,4 +41,5 @@ export declare function getOption(conf: IPieChartConf, data: TPanelData, width:
41
41
  left: number;
42
42
  right: number;
43
43
  };
44
+ animation: boolean;
44
45
  };