@devtable/dashboard 10.16.0 → 10.17.0
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/viz-components/boxplot-chart/option/index.d.ts +1 -0
- package/dist/components/plugins/viz-components/cartesian/option/y-axis.d.ts +1 -0
- package/dist/components/plugins/viz-components/pareto-chart/option/index.d.ts +2 -0
- package/dist/components/plugins/viz-components/pareto-chart/option/y-axes.d.ts +2 -0
- package/dist/components/plugins/viz-components/scatter-chart/option/y-axis.d.ts +1 -0
- package/dist/dashboard.es.js +5 -1
- package/dist/dashboard.umd.js +5 -5
- package/dist/stats.html +1 -1
- package/package.json +1 -1
|
@@ -66,6 +66,7 @@ export declare function getOption(conf: IParetoChartConf, data: TPanelData, _var
|
|
|
66
66
|
yAxis: ({
|
|
67
67
|
name: string;
|
|
68
68
|
nameGap: number;
|
|
69
|
+
minInterval: number;
|
|
69
70
|
nameTextStyle: {
|
|
70
71
|
fontWeight: string;
|
|
71
72
|
align: "center" | "left" | "right";
|
|
@@ -99,6 +100,7 @@ export declare function getOption(conf: IParetoChartConf, data: TPanelData, _var
|
|
|
99
100
|
splitLine: {
|
|
100
101
|
show: boolean;
|
|
101
102
|
};
|
|
103
|
+
minInterval?: undefined;
|
|
102
104
|
})[];
|
|
103
105
|
series: ({
|
|
104
106
|
name: string;
|
|
@@ -3,6 +3,7 @@ import { TParetoFormatters } from './utils';
|
|
|
3
3
|
export declare function getYAxes(conf: IParetoChartConf, formatters: TParetoFormatters): ({
|
|
4
4
|
name: string;
|
|
5
5
|
nameGap: number;
|
|
6
|
+
minInterval: number;
|
|
6
7
|
nameTextStyle: {
|
|
7
8
|
fontWeight: string;
|
|
8
9
|
align: "center" | "left" | "right";
|
|
@@ -36,4 +37,5 @@ export declare function getYAxes(conf: IParetoChartConf, formatters: TParetoForm
|
|
|
36
37
|
splitLine: {
|
|
37
38
|
show: boolean;
|
|
38
39
|
};
|
|
40
|
+
minInterval?: undefined;
|
|
39
41
|
})[];
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { IScatterChartConf } from '../type';
|
|
2
2
|
export declare function getYAxes(conf: IScatterChartConf, labelFormatters: Record<string, (p: $TSFixMe) => string>): {
|
|
3
|
+
minInterval: number;
|
|
3
4
|
min: string | undefined;
|
|
4
5
|
max: string | undefined;
|
|
5
6
|
position: "left" | "right";
|
package/dist/dashboard.es.js
CHANGED
|
@@ -1164,7 +1164,7 @@ class oa {
|
|
|
1164
1164
|
}), this.instanceRegistry.clear(), this.factoryRegistry.clear();
|
|
1165
1165
|
}
|
|
1166
1166
|
}
|
|
1167
|
-
const lc = "10.
|
|
1167
|
+
const lc = "10.17.0", pf = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
1168
1168
|
__proto__: null,
|
|
1169
1169
|
version: lc
|
|
1170
1170
|
}, Symbol.toStringTag, { value: "Module" }));
|
|
@@ -3395,6 +3395,7 @@ function Km({
|
|
|
3395
3395
|
}],
|
|
3396
3396
|
yAxis: [{
|
|
3397
3397
|
name: o.name,
|
|
3398
|
+
minInterval: 1,
|
|
3398
3399
|
nameTextStyle: {
|
|
3399
3400
|
fontWeight: "bold"
|
|
3400
3401
|
},
|
|
@@ -4816,6 +4817,7 @@ function Zg(e, t) {
|
|
|
4816
4817
|
let c = s.position;
|
|
4817
4818
|
return c || (c = l > 0 ? "right" : "left"), {
|
|
4818
4819
|
...s,
|
|
4820
|
+
minInterval: 1,
|
|
4819
4821
|
show: a,
|
|
4820
4822
|
min: r || void 0,
|
|
4821
4823
|
max: o || void 0,
|
|
@@ -8397,6 +8399,7 @@ function xx(e, t) {
|
|
|
8397
8399
|
return [{
|
|
8398
8400
|
name: e.bar.name,
|
|
8399
8401
|
nameGap: 20,
|
|
8402
|
+
minInterval: 1,
|
|
8400
8403
|
nameTextStyle: {
|
|
8401
8404
|
fontWeight: "bold",
|
|
8402
8405
|
align: e.bar.nameAlignment
|
|
@@ -14661,6 +14664,7 @@ function a_(e, t) {
|
|
|
14661
14664
|
let l = a.position;
|
|
14662
14665
|
return l || (l = s > 0 ? "right" : "left"), {
|
|
14663
14666
|
...a,
|
|
14667
|
+
minInterval: 1,
|
|
14664
14668
|
min: r || void 0,
|
|
14665
14669
|
max: o || void 0,
|
|
14666
14670
|
position: l,
|