@visactor/vchart-extension 2.0.4-alpha.1 → 2.0.4-alpha.11
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/build/index.js +1602 -644
- package/build/index.min.js +2 -2
- package/cjs/charts/3d/interface.js +1 -2
- package/cjs/charts/axis-3d/linear-axis.js +2 -1
- package/cjs/charts/candlestick/candlestick.js +2 -1
- package/cjs/charts/conversion-funnel/util.js +1 -2
- package/cjs/charts/histogram-3d/chart.js +1 -1
- package/cjs/charts/histogram-3d/index.js +1 -1
- package/cjs/charts/histogram-3d/interface.js +1 -1
- package/cjs/charts/pictogram/element-highlight-by-graphic-name.js +1 -1
- package/cjs/charts/pictogram/element-select-by-graphic-name.js +1 -1
- package/cjs/charts/pictogram/index.js +1 -1
- package/esm/charts/3d/interface.js +1 -2
- package/esm/charts/axis-3d/linear-axis.js +2 -1
- package/esm/charts/candlestick/candlestick.js +2 -1
- package/esm/charts/conversion-funnel/util.js +1 -2
- package/esm/charts/histogram-3d/chart.js +1 -1
- package/esm/charts/histogram-3d/index.js +1 -1
- package/esm/charts/histogram-3d/interface.js +1 -1
- package/esm/charts/pictogram/element-highlight-by-graphic-name.js +1 -1
- package/esm/charts/pictogram/element-select-by-graphic-name.js +1 -1
- package/esm/charts/pictogram/index.js +1 -1
- package/package.json +13 -8
|
@@ -12,4 +12,5 @@ const vchart_1 = require("@visactor/vchart"), theme_1 = require("./theme"), vuti
|
|
|
12
12
|
}), (0, vutils_1.mixin)(AxisCls, axis_3d_mixin_1.Axis3dMixin);
|
|
13
13
|
};
|
|
14
14
|
|
|
15
|
-
exports.registerCartesianLinearAxis3d = registerCartesianLinearAxis3d;
|
|
15
|
+
exports.registerCartesianLinearAxis3d = registerCartesianLinearAxis3d;
|
|
16
|
+
//# sourceMappingURL=linear-axis.js.map
|
|
@@ -22,4 +22,5 @@ const registerCandlestickChart = () => {
|
|
|
22
22
|
(0, candlestick_1.registerCandlestickSeries)(), vchart_1.Factory.registerChart(CandlestickChart.type, CandlestickChart);
|
|
23
23
|
};
|
|
24
24
|
|
|
25
|
-
exports.registerCandlestickChart = registerCandlestickChart;
|
|
25
|
+
exports.registerCandlestickChart = registerCandlestickChart;
|
|
26
|
+
//# sourceMappingURL=candlestick.js.map
|
|
@@ -13,5 +13,4 @@ function isSameArrow(arrow1, arrow2) {
|
|
|
13
13
|
Object.defineProperty(exports, "__esModule", {
|
|
14
14
|
value: !0
|
|
15
15
|
}), exports.isSameArrow = exports.isArrowCross = void 0, exports.isArrowCross = isArrowCross,
|
|
16
|
-
exports.isSameArrow = isSameArrow;
|
|
17
|
-
//# sourceMappingURL=util.js.map
|
|
16
|
+
exports.isSameArrow = isSameArrow;
|
|
@@ -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("./chart"), exports), __exportStar(require("./interface"), exports);
|
|
21
|
-
//# sourceMappingURL=index.js.map
|
|
21
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -50,4 +50,4 @@ const registerElementHighlightByGraphicName = () => {
|
|
|
50
50
|
};
|
|
51
51
|
|
|
52
52
|
exports.registerElementHighlightByGraphicName = registerElementHighlightByGraphicName;
|
|
53
|
-
//# sourceMappingURL=element-highlight-by-graphic-name.js.map
|
|
53
|
+
//# sourceMappingURL=element-highlight-by-graphic-name.js.map
|
|
@@ -20,4 +20,4 @@ Object.defineProperty(exports, "__esModule", {
|
|
|
20
20
|
}), __exportStar(require("./pictogram"), exports), __exportStar(require("./interface"), exports),
|
|
21
21
|
__exportStar(require("./pictogram-transformer"), exports), __exportStar(require("./series/pictogram"), exports),
|
|
22
22
|
__exportStar(require("./series/svg-source"), exports), __exportStar(require("./series/interface"), exports);
|
|
23
|
-
//# sourceMappingURL=index.js.map
|
|
23
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -1,2 +1 @@
|
|
|
1
|
-
export { };
|
|
2
|
-
//# sourceMappingURL=interface.js.map
|
|
1
|
+
export { };
|
|
@@ -12,4 +12,5 @@ export const registerCartesianLinearAxis3d = () => {
|
|
|
12
12
|
AxisCls.builtInTheme = Object.assign(Object.assign({}, AxisCls.builtInTheme), {
|
|
13
13
|
axisZ: Object.assign(Object.assign({}, CartesianLinearAxis.builtInTheme.axisX), axisZ)
|
|
14
14
|
}), mixin(AxisCls, Axis3dMixin);
|
|
15
|
-
};
|
|
15
|
+
};
|
|
16
|
+
//# sourceMappingURL=linear-axis.js.map
|
|
@@ -19,4 +19,5 @@ CandlestickChart.transformerConstructor = CandlestickChartSpecTransformer;
|
|
|
19
19
|
export const registerCandlestickChart = () => {
|
|
20
20
|
registerDimensionTooltipProcessor(), registerMarkTooltipProcessor(), registerDimensionEvents(),
|
|
21
21
|
registerDimensionHover(), registerCandlestickSeries(), Factory.registerChart(CandlestickChart.type, CandlestickChart);
|
|
22
|
-
};
|
|
22
|
+
};
|
|
23
|
+
//# sourceMappingURL=candlestick.js.map
|
|
@@ -27,4 +27,4 @@ export const registerHistogram3dChart = () => {
|
|
|
27
27
|
registerDimensionEvents(), registerDimensionHover(), register3DPlugin(), registerLayout3d(),
|
|
28
28
|
registerBar3dSeries(), Factory.registerChart(Histogram3dChart.type, Histogram3dChart);
|
|
29
29
|
};
|
|
30
|
-
//# sourceMappingURL=chart.js.map
|
|
30
|
+
//# sourceMappingURL=chart.js.map
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
export { };
|
|
2
|
-
//# sourceMappingURL=interface.js.map
|
|
2
|
+
//# sourceMappingURL=interface.js.map
|
|
@@ -46,4 +46,4 @@ ElementHighlightByGraphicName.type = type;
|
|
|
46
46
|
export const registerElementHighlightByGraphicName = () => {
|
|
47
47
|
Factory.registerInteractionTrigger(ElementHighlightByGraphicName.type, ElementHighlightByGraphicName);
|
|
48
48
|
};
|
|
49
|
-
//# sourceMappingURL=element-highlight-by-graphic-name.js.map
|
|
49
|
+
//# sourceMappingURL=element-highlight-by-graphic-name.js.map
|
|
@@ -22,4 +22,4 @@ ElementSelectByGraphicName.type = type;
|
|
|
22
22
|
export const registerElementSelectByGraphicName = () => {
|
|
23
23
|
Factory.registerInteractionTrigger(ElementSelectByGraphicName.type, ElementSelectByGraphicName);
|
|
24
24
|
};
|
|
25
|
-
//# sourceMappingURL=element-select-by-graphic-name.js.map
|
|
25
|
+
//# sourceMappingURL=element-select-by-graphic-name.js.map
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@visactor/vchart-extension",
|
|
3
|
-
"version": "2.0.4-alpha.
|
|
3
|
+
"version": "2.0.4-alpha.11",
|
|
4
4
|
"description": "vchart extension package, including extension plugins and components",
|
|
5
5
|
"sideEffects": false,
|
|
6
6
|
"main": "cjs/index.js",
|
|
@@ -12,14 +12,14 @@
|
|
|
12
12
|
"build"
|
|
13
13
|
],
|
|
14
14
|
"dependencies": {
|
|
15
|
-
"@visactor/vrender-core": "1.0.11",
|
|
16
|
-
"@visactor/vrender-kits": "1.0.11",
|
|
17
|
-
"@visactor/vrender-components": "1.0.11",
|
|
18
|
-
"@visactor/vrender-animate": "1.0.11",
|
|
15
|
+
"@visactor/vrender-core": "1.0.11-alpha.2",
|
|
16
|
+
"@visactor/vrender-kits": "1.0.11-alpha.2",
|
|
17
|
+
"@visactor/vrender-components": "1.0.11-alpha.2",
|
|
18
|
+
"@visactor/vrender-animate": "1.0.11-alpha.2",
|
|
19
19
|
"@visactor/vutils": "~1.0.6",
|
|
20
20
|
"@visactor/vdataset": "~1.0.6",
|
|
21
21
|
"@visactor/vlayouts": "~1.0.6",
|
|
22
|
-
"@visactor/vchart": "2.0.4-alpha.
|
|
22
|
+
"@visactor/vchart": "2.0.4-alpha.11"
|
|
23
23
|
},
|
|
24
24
|
"devDependencies": {
|
|
25
25
|
"@rushstack/eslint-patch": "~1.1.4",
|
|
@@ -43,9 +43,14 @@
|
|
|
43
43
|
"rollup-plugin-bundle-size": "1.0.3",
|
|
44
44
|
"rollup-plugin-sizes": "1.0.5",
|
|
45
45
|
"rollup": "3.20.5",
|
|
46
|
-
"@internal/ts-config": "0.0.1",
|
|
47
46
|
"@internal/bundler": "0.0.1",
|
|
48
|
-
"@internal/eslint-config": "0.0.1"
|
|
47
|
+
"@internal/eslint-config": "0.0.1",
|
|
48
|
+
"@internal/ts-config": "0.0.1"
|
|
49
|
+
},
|
|
50
|
+
"repository": {
|
|
51
|
+
"type": "git",
|
|
52
|
+
"url": "https://github.com/VisActor/VChart",
|
|
53
|
+
"directory": "packages/vchart-extension"
|
|
49
54
|
},
|
|
50
55
|
"publishConfig": {
|
|
51
56
|
"access": "public",
|