@visactor/vchart-extension 2.0.7-alpha.4 → 2.0.7-alpha.6

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.
@@ -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
@@ -21,5 +21,4 @@ const registerBar3dChart = () => {
21
21
  vchart_1.Factory.registerChart(Bar3dChart.type, Bar3dChart);
22
22
  };
23
23
 
24
- exports.registerBar3dChart = registerBar3dChart;
25
- //# sourceMappingURL=chart.js.map
24
+ exports.registerBar3dChart = registerBar3dChart;
@@ -22,5 +22,4 @@ const registerCandlestickChart = () => {
22
22
  (0, candlestick_1.registerCandlestickSeries)(), vchart_1.Factory.registerChart(CandlestickChart.type, CandlestickChart);
23
23
  };
24
24
 
25
- exports.registerCandlestickChart = registerCandlestickChart;
26
- //# sourceMappingURL=candlestick.js.map
25
+ exports.registerCandlestickChart = registerCandlestickChart;
@@ -27,4 +27,5 @@ const registerCombinationCandlestickChart = () => {
27
27
  (0, candlestick_1.registerCandlestickSeries)(), vchart_1.Factory.registerChart(CombinationCandlestickChart.type, CombinationCandlestickChart);
28
28
  };
29
29
 
30
- exports.registerCombinationCandlestickChart = registerCombinationCandlestickChart;
30
+ exports.registerCombinationCandlestickChart = registerCombinationCandlestickChart;
31
+ //# sourceMappingURL=combination-candlestick.js.map
@@ -95,4 +95,5 @@ function computeIndex(arrow, totalArrows) {
95
95
  return index;
96
96
  }
97
97
 
98
+ //# sourceMappingURL=arrow-data-transform.js.map
98
99
  exports.conversionArrowTransform = conversionArrowTransform;
@@ -21,5 +21,4 @@ const registerFunnel3dChart = () => {
21
21
  (0, layout_1.registerLayout3d)(), (0, series_1.registerFunnel3dSeries)(), vchart_1.Factory.registerChart(Funnel3dChart.type, Funnel3dChart);
22
22
  };
23
23
 
24
- exports.registerFunnel3dChart = registerFunnel3dChart;
25
- //# sourceMappingURL=chart.js.map
24
+ exports.registerFunnel3dChart = registerFunnel3dChart;
@@ -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
@@ -21,5 +21,4 @@ Bar3dChart.type = "bar3d", Bar3dChart.seriesType = SeriesType3dEnum.bar3d, Bar3d
21
21
 
22
22
  export const registerBar3dChart = () => {
23
23
  register3DPlugin(), registerLayout3d(), registerBar3dSeries(), Factory.registerChart(Bar3dChart.type, Bar3dChart);
24
- };
25
- //# sourceMappingURL=chart.js.map
24
+ };
@@ -19,5 +19,4 @@ CandlestickChart.transformerConstructor = CandlestickChartSpecTransformer;
19
19
  export const registerCandlestickChart = () => {
20
20
  registerDimensionTooltipProcessor(), registerMarkTooltipProcessor(), registerDimensionEvents(),
21
21
  registerDimensionHover(), registerCandlestickSeries(), Factory.registerChart(CandlestickChart.type, CandlestickChart);
22
- };
23
- //# sourceMappingURL=candlestick.js.map
22
+ };
@@ -25,4 +25,5 @@ mixin(CombinationCandlestickChart, StackChartMixin);
25
25
 
26
26
  export const registerCombinationCandlestickChart = () => {
27
27
  registerCandlestickSeries(), Factory.registerChart(CombinationCandlestickChart.type, CombinationCandlestickChart);
28
- };
28
+ };
29
+ //# sourceMappingURL=combination-candlestick.js.map
@@ -90,4 +90,5 @@ function computeIndex(arrow, totalArrows) {
90
90
  curArrow.layout.duplicateNode && duplicateCount++;
91
91
  }
92
92
  return index;
93
- }
93
+ }
94
+ //# sourceMappingURL=arrow-data-transform.js.map
@@ -21,5 +21,4 @@ Funnel3dChart.transformerConstructor = FunnelChartSpecTransformer;
21
21
  export const registerFunnel3dChart = () => {
22
22
  registerMarkTooltipProcessor(), register3DPlugin(), registerLayout3d(), registerFunnel3dSeries(),
23
23
  Factory.registerChart(Funnel3dChart.type, Funnel3dChart);
24
- };
25
- //# sourceMappingURL=chart.js.map
24
+ };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@visactor/vchart-extension",
3
- "version": "2.0.7-alpha.4",
3
+ "version": "2.0.7-alpha.6",
4
4
  "description": "vchart extension package, including extension plugins and components",
5
5
  "sideEffects": false,
6
6
  "main": "cjs/index.js",
@@ -16,7 +16,7 @@
16
16
  "@visactor/vrender-kits": "~1.0.21",
17
17
  "@visactor/vrender-components": "~1.0.21",
18
18
  "@visactor/vrender-animate": "~1.0.21",
19
- "@visactor/vchart": "2.0.7-alpha.4",
19
+ "@visactor/vchart": "2.0.7-alpha.6",
20
20
  "@visactor/vutils": "~1.0.12",
21
21
  "@visactor/vdataset": "~1.0.12",
22
22
  "@visactor/vlayouts": "~1.0.12"
@@ -43,9 +43,9 @@
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
49
  },
50
50
  "publishConfig": {
51
51
  "access": "public",