@visactor/vchart 1.10.2-alpha.2 → 1.10.2-alpha.3

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 CHANGED
@@ -52344,7 +52344,9 @@
52344
52344
  style: {
52345
52345
  fill: { type: 'palette', key: 'axisGridColor' },
52346
52346
  opacity: 0.7,
52347
- lineDash: []
52347
+ lineWidth: 0,
52348
+ stroke: { type: 'palette', key: 'markLineStrokeColor' },
52349
+ lineDash: [2, 3]
52348
52350
  }
52349
52351
  },
52350
52352
  label: getLabelSpec()
@@ -64188,7 +64190,7 @@ C0.3-1.4,0.3-1.4,0.3-1.4z;`;
64188
64190
  registerComponentPlugin(CanvasTooltipHandler);
64189
64191
  };
64190
64192
 
64191
- const version = "1.10.2-alpha.2";
64193
+ const version = "1.10.2-alpha.3";
64192
64194
 
64193
64195
  const addVChartProperty = (data, op) => {
64194
64196
  const context = op.beforeCall();
@@ -89839,7 +89841,8 @@ C0.3-1.4,0.3-1.4,0.3-1.4z;`;
89839
89841
  }
89840
89842
  else {
89841
89843
  const style = line.style || {};
89842
- const _d = style, { strokeOpacity, fillOpacity, opacity, stroke, fill, lineWidth } = _d, restStyle = __rest$7(_d, ["strokeOpacity", "fillOpacity", "opacity", "stroke", "fill", "lineWidth"]);
89844
+ const { stroke, fill, lineWidth } = style;
89845
+ const _d = style, { strokeOpacity, fillOpacity, opacity } = _d, restStyle = __rest$7(_d, ["strokeOpacity", "fillOpacity", "opacity"]);
89843
89846
  const isLineType = hair.type === 'line';
89844
89847
  let finalOpacity = isLineType ? strokeOpacity : fillOpacity;
89845
89848
  if (isNumber$3(opacity)) {