@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/es5/index.js +1 -1
- package/build/index.js +6 -3
- package/build/index.min.js +1 -1
- package/build/tsconfig.tsbuildinfo +1 -1
- package/cjs/chart/stack.js +2 -1
- package/cjs/compile/grammar-item.js +1 -2
- package/cjs/component/crosshair/base.js +1 -1
- package/cjs/component/crosshair/base.js.map +1 -1
- package/cjs/core/index.d.ts +1 -1
- package/cjs/core/index.js +1 -1
- package/cjs/core/index.js.map +1 -1
- package/cjs/theme/builtin/common/component/crosshair.js +12 -2
- package/cjs/theme/builtin/common/component/crosshair.js.map +1 -1
- package/esm/chart/stack.js +2 -1
- package/esm/compile/grammar-item.js +1 -2
- package/esm/component/crosshair/base.js +1 -1
- package/esm/component/crosshair/base.js.map +1 -1
- package/esm/core/index.d.ts +1 -1
- package/esm/core/index.js +1 -1
- package/esm/core/index.js.map +1 -1
- package/esm/theme/builtin/common/component/crosshair.js +12 -2
- package/esm/theme/builtin/common/component/crosshair.js.map +1 -1
- package/package.json +5 -5
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
|
-
|
|
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.
|
|
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
|
|
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)) {
|