@devtable/dashboard 10.61.2 → 10.62.1
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.
- package/dist/components/plugins/common-echarts-fields/axis-label-overflow/types.d.ts +1 -1
- package/dist/components/plugins/viz-components/boxplot-chart/type.d.ts +2 -2
- package/dist/components/plugins/viz-components/cartesian/type.d.ts +1 -2
- package/dist/components/plugins/viz-components/heatmap/type.d.ts +2 -2
- package/dist/components/plugins/viz-components/horizontal-bar-chart/type.d.ts +1 -2
- package/dist/components/plugins/viz-components/pareto-chart/type.d.ts +1 -1
- package/dist/components/plugins/viz-components/scatter-chart/editors/x-axis/x-axis-label-formatter/types.d.ts +1 -4
- package/dist/components/plugins/viz-components/scatter-chart/type.d.ts +3 -2
- package/dist/dashboard.es.js +2055 -2017
- package/dist/dashboard.umd.js +65 -65
- package/dist/stats.html +1 -1
- package/package.json +1 -1
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import { TNumberFormat } from '../../../../utils';
|
|
2
1
|
import { IAxisLabelOverflow } from '../../../../components/plugins/common-echarts-fields/axis-label-overflow';
|
|
3
|
-
import { IXAxisLabelFormatter } from '../cartesian/editors/x-axis/x-axis-label-formatter/types';
|
|
4
2
|
import { IEchartsTooltipMetric } from '../../../../components/plugins/common-echarts-fields/tooltip-metric';
|
|
5
3
|
import { AnyObject } from '../../../../types';
|
|
4
|
+
import { TNumberFormat } from '../../../../utils';
|
|
5
|
+
import { IXAxisLabelFormatter } from '../cartesian/editors/x-axis/x-axis-label-formatter/types';
|
|
6
6
|
export interface IBoxplotReferenceLine {
|
|
7
7
|
name: string;
|
|
8
8
|
template: string;
|
|
@@ -1,7 +1,6 @@
|
|
|
1
|
-
import { TNumberFormat } from '../../../../utils';
|
|
2
1
|
import { IAxisLabelOverflow } from '../../../../components/plugins/common-echarts-fields/axis-label-overflow';
|
|
3
2
|
import { IRegressionLineConf, IRegressionTransform } from '../../../../components/plugins/common-echarts-fields/regression-line';
|
|
4
|
-
import { AggregationType } from '../../../../utils';
|
|
3
|
+
import { AggregationType, TNumberFormat } from '../../../../utils';
|
|
5
4
|
import { TEchartsDataZoomConfig } from './editors/echarts-zooming-field/types';
|
|
6
5
|
import { TScatterSize } from './editors/scatter-size-select/types';
|
|
7
6
|
import { IXAxisLabelFormatter } from './editors/x-axis/x-axis-label-formatter/types';
|
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import { TNumberFormat } from '../../../../utils';
|
|
2
1
|
import { IAxisLabelOverflow } from '../../../../components/plugins/common-echarts-fields/axis-label-overflow';
|
|
2
|
+
import { TNumberOrDynamic } from '../../../../components/plugins/common-echarts-fields/number-or-dynamic-value/types';
|
|
3
3
|
import { IEchartsTooltipMetric } from '../../../../components/plugins/common-echarts-fields/tooltip-metric';
|
|
4
|
+
import { TNumberFormat } from '../../../../utils';
|
|
4
5
|
import { IXAxisLabelFormatter } from '../cartesian/editors/x-axis/x-axis-label-formatter/types';
|
|
5
|
-
import { TNumberOrDynamic } from '../../../../components/plugins/common-echarts-fields/number-or-dynamic-value/types';
|
|
6
6
|
export interface IHeatmapConf {
|
|
7
7
|
x_axis: {
|
|
8
8
|
name: string;
|
|
@@ -1,7 +1,6 @@
|
|
|
1
|
-
import { TNumberFormat } from '../../../../utils';
|
|
2
1
|
import { IAxisLabelOverflow } from '../../../../components/plugins/common-echarts-fields/axis-label-overflow';
|
|
3
2
|
import { IEchartsTooltipMetric } from '../../../../components/plugins/common-echarts-fields/tooltip-metric';
|
|
4
|
-
import { AggregationType } from '../../../../utils';
|
|
3
|
+
import { AggregationType, TNumberFormat } from '../../../../utils';
|
|
5
4
|
import { IXAxisLabelFormatter } from '../cartesian/editors/x-axis/x-axis-label-formatter/types';
|
|
6
5
|
export interface IHorizontalBarChartReferenceLine {
|
|
7
6
|
id: string;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { TNumberFormat } from '../../../../utils';
|
|
2
1
|
import { IAxisLabelOverflow } from '../../../../components/plugins/common-echarts-fields/axis-label-overflow';
|
|
2
|
+
import { TNumberFormat } from '../../../../utils';
|
|
3
3
|
import { TEchartsDataZoomConfig } from '../cartesian/editors/echarts-zooming-field/types';
|
|
4
4
|
import { IXAxisLabelFormatter } from '../cartesian/editors/x-axis/x-axis-label-formatter/types';
|
|
5
5
|
export declare const DEFAULT_PARETO_MARK_LINE: {
|
|
@@ -2,7 +2,4 @@ export interface IXAxisLabelFormatter {
|
|
|
2
2
|
enabled: boolean;
|
|
3
3
|
func_content: string;
|
|
4
4
|
}
|
|
5
|
-
export declare
|
|
6
|
-
enabled: boolean;
|
|
7
|
-
func_content: string;
|
|
8
|
-
};
|
|
5
|
+
export declare function getDefaultXAxisLabelFormatter(): IXAxisLabelFormatter;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { TEchartsDataZoomConfig } from '../cartesian/editors/echarts-zooming-field/types';
|
|
2
2
|
import { TSeriesColor } from './editors/scatter/series-color-select/types';
|
|
3
|
-
import { IEchartsOverflow } from '../../../../components/plugins/common-echarts-fields/axis-label-overflow';
|
|
3
|
+
import { IAxisLabelOverflow, IEchartsOverflow } from '../../../../components/plugins/common-echarts-fields/axis-label-overflow';
|
|
4
4
|
import { IEchartsReferenceArea } from '../../../../components/plugins/common-echarts-fields/reference-area/types';
|
|
5
5
|
import { IEchartsTooltipMetric } from '../../../../components/plugins/common-echarts-fields/tooltip-metric';
|
|
6
6
|
import { ICartesianReferenceLine, IYAxisConf } from '../cartesian/type';
|
|
@@ -17,6 +17,7 @@ export interface IScatterChartConf {
|
|
|
17
17
|
axisLabel: {
|
|
18
18
|
rotate: number;
|
|
19
19
|
formatter: IXAxisLabelFormatter;
|
|
20
|
+
overflow: IAxisLabelOverflow;
|
|
20
21
|
};
|
|
21
22
|
};
|
|
22
23
|
y_axes: IYAxisConf[];
|
|
@@ -42,7 +43,7 @@ export interface IScatterChartConf {
|
|
|
42
43
|
reference_areas: IEchartsReferenceArea[];
|
|
43
44
|
dataZoom: TEchartsDataZoomConfig;
|
|
44
45
|
}
|
|
45
|
-
export declare
|
|
46
|
+
export declare function getDefaultScatterLabelOverfow(): {
|
|
46
47
|
label: IEchartsOverflow;
|
|
47
48
|
tooltip: IEchartsOverflow;
|
|
48
49
|
};
|