@visactor/vchart-extension 2.0.23-alpha.1 → 2.0.23-alpha.2
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/cjs/charts/axis-3d/index.js +2 -1
- package/cjs/charts/axis-3d/log-axis.js +1 -2
- package/cjs/charts/bar-3d/chart-spec-transformer.js +1 -1
- package/cjs/charts/bar-3d/chart.js +1 -1
- package/cjs/components/histogram-regression-line/type.js +2 -1
- package/cjs/components/map-label/layout.js +1 -2
- package/cjs/components/series-break/util.js +2 -1
- package/cjs/components/series-label/index.js +1 -2
- package/cjs/type/index.js +1 -1
- package/cjs/type/type.js +1 -1
- package/esm/charts/axis-3d/index.js +2 -1
- package/esm/charts/axis-3d/log-axis.js +1 -2
- package/esm/charts/bar-3d/chart-spec-transformer.js +1 -1
- package/esm/charts/bar-3d/chart.js +1 -1
- package/esm/components/histogram-regression-line/type.js +2 -1
- package/esm/components/map-label/layout.js +1 -2
- package/esm/components/series-break/util.js +2 -1
- package/esm/components/series-label/index.js +1 -2
- package/esm/type/index.js +1 -1
- package/esm/type/type.js +1 -1
- package/package.json +2 -2
|
@@ -10,4 +10,5 @@ const layout_1 = require("../3d/layout"), plugin_1 = require("../3d/plugin"), ba
|
|
|
10
10
|
(0, symlog_axis_1.registerCartesianSymlogAxis3d)(), (0, log_axis_1.registerCartesianLogAxis3d)();
|
|
11
11
|
};
|
|
12
12
|
|
|
13
|
-
exports.registerAxis3dPlugin = registerAxis3dPlugin;
|
|
13
|
+
exports.registerAxis3dPlugin = registerAxis3dPlugin;
|
|
14
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -12,5 +12,4 @@ const vchart_1 = require("@visactor/vchart"), theme_1 = require("./theme"), vcha
|
|
|
12
12
|
}), (0, vchart_2.mixin)(AxisCls, axis_3d_mixin_1.Axis3dMixin);
|
|
13
13
|
};
|
|
14
14
|
|
|
15
|
-
exports.registerCartesianLogAxis3d = registerCartesianLogAxis3d;
|
|
16
|
-
//# sourceMappingURL=log-axis.js.map
|
|
15
|
+
exports.registerCartesianLogAxis3d = registerCartesianLogAxis3d;
|
|
@@ -150,5 +150,4 @@ function candidatesByOrient(positions, anchor, rect, offset = 0) {
|
|
|
150
150
|
|
|
151
151
|
exports.bound = bound, exports.layoutByPosition = layoutByPosition, exports.layoutOuter = layoutOuter,
|
|
152
152
|
exports.layoutOuter2 = layoutOuter2, exports.placeRectByOrient = placeRectByOrient,
|
|
153
|
-
exports.candidatesByOrient = candidatesByOrient;
|
|
154
|
-
//# sourceMappingURL=layout.js.map
|
|
153
|
+
exports.candidatesByOrient = candidatesByOrient;
|
package/cjs/type/index.js
CHANGED
|
@@ -18,4 +18,4 @@ var __createBinding = this && this.__createBinding || (Object.create ? function(
|
|
|
18
18
|
Object.defineProperty(exports, "__esModule", {
|
|
19
19
|
value: !0
|
|
20
20
|
}), __exportStar(require("../charts/ranking-bar/interface"), exports);
|
|
21
|
-
//# sourceMappingURL=index.js.map
|
|
21
|
+
//# sourceMappingURL=index.js.map
|
package/cjs/type/type.js
CHANGED
|
@@ -15,4 +15,5 @@ import { registerCartesianTimeAxis3d } from "./time-axis";
|
|
|
15
15
|
export const registerAxis3dPlugin = () => {
|
|
16
16
|
register3DPlugin(), registerLayout3d(), registerCartesianBandAxis3d(), registerCartesianLinearAxis3d(),
|
|
17
17
|
registerCartesianTimeAxis3d(), registerCartesianSymlogAxis3d(), registerCartesianLogAxis3d();
|
|
18
|
-
};
|
|
18
|
+
};
|
|
19
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -12,5 +12,4 @@ export const registerCartesianLogAxis3d = () => {
|
|
|
12
12
|
AxisCls.builtInTheme = Object.assign(Object.assign({}, AxisCls.builtInTheme), {
|
|
13
13
|
axisZ: Object.assign(Object.assign({}, CartesianLogAxis.builtInTheme.axisX), axisZ)
|
|
14
14
|
}), mixin(AxisCls, Axis3dMixin);
|
|
15
|
-
};
|
|
16
|
-
//# sourceMappingURL=log-axis.js.map
|
|
15
|
+
};
|
|
@@ -22,4 +22,4 @@ Bar3dChart.type = "bar3d", Bar3dChart.seriesType = SeriesType3dEnum.bar3d, Bar3d
|
|
|
22
22
|
export const registerBar3dChart = () => {
|
|
23
23
|
register3DPlugin(), registerLayout3d(), registerBar3dSeries(), Factory.registerChart(Bar3dChart.type, Bar3dChart);
|
|
24
24
|
};
|
|
25
|
-
//# sourceMappingURL=chart.js.map
|
|
25
|
+
//# sourceMappingURL=chart.js.map
|
|
@@ -1 +1,2 @@
|
|
|
1
|
-
export { };
|
|
1
|
+
export { };
|
|
2
|
+
//# sourceMappingURL=type.js.map
|
|
@@ -2,5 +2,4 @@ export { SeriesLabelComponent, registerSeriesLabel } from "./series-label";
|
|
|
2
2
|
|
|
3
3
|
export * from "./type";
|
|
4
4
|
|
|
5
|
-
export { getSeriesLabelConfig, appendSeriesLabelConfig } from "./util";
|
|
6
|
-
//# sourceMappingURL=index.js.map
|
|
5
|
+
export { getSeriesLabelConfig, appendSeriesLabelConfig } from "./util";
|
package/esm/type/index.js
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
export * from "../charts/ranking-bar/interface";
|
|
2
|
-
//# sourceMappingURL=index.js.map
|
|
2
|
+
//# sourceMappingURL=index.js.map
|
package/esm/type/type.js
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
export { };
|
|
2
|
-
//# sourceMappingURL=type.js.map
|
|
2
|
+
//# sourceMappingURL=type.js.map
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@visactor/vchart-extension",
|
|
3
|
-
"version": "2.0.23-alpha.
|
|
3
|
+
"version": "2.0.23-alpha.2",
|
|
4
4
|
"description": "vchart extension package, including extension plugins and components",
|
|
5
5
|
"sideEffects": false,
|
|
6
6
|
"main": "cjs/index.js",
|
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
"@visactor/vrender-kits": "1.0.45",
|
|
22
22
|
"@visactor/vrender-components": "1.0.45",
|
|
23
23
|
"@visactor/vrender-animate": "1.0.45",
|
|
24
|
-
"@visactor/vchart": "2.0.23-alpha.
|
|
24
|
+
"@visactor/vchart": "2.0.23-alpha.2",
|
|
25
25
|
"@visactor/vutils": "~1.0.23",
|
|
26
26
|
"@visactor/vdataset": "~1.0.23",
|
|
27
27
|
"@visactor/vlayouts": "~1.0.23"
|