@visactor/vchart 2.0.20-alpha.4 → 2.0.20-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.
- package/build/es5/index.js +1 -1
- package/build/index.es.js +3 -0
- package/build/index.js +3 -0
- package/build/index.min.js +1 -1
- package/build/tsconfig.tsbuildinfo +1 -1
- package/cjs/chart/index.js +1 -1
- package/cjs/chart/stack.js +1 -1
- package/cjs/chart/util.js +1 -1
- package/cjs/component/util.js +1 -2
- package/cjs/constant/base.js +2 -1
- package/cjs/constant/scroll-bar.js +1 -2
- package/cjs/constant/word-cloud.js +2 -1
- package/cjs/core/interface.js +1 -1
- package/cjs/core/util.js +1 -1
- package/cjs/core/vchart.js +1 -1
- package/cjs/mark/base/base-mark.js +2 -2
- package/cjs/mark/base/base-mark.js.map +1 -1
- package/esm/chart/index.js +1 -1
- package/esm/chart/stack.js +1 -1
- package/esm/chart/util.js +1 -1
- package/esm/component/util.js +1 -2
- package/esm/constant/base.js +2 -1
- package/esm/constant/scroll-bar.js +1 -2
- package/esm/constant/word-cloud.js +2 -1
- package/esm/core/interface.js +1 -1
- package/esm/core/util.js +1 -1
- package/esm/core/vchart.js +1 -1
- package/esm/mark/base/base-mark.js +2 -2
- package/esm/mark/base/base-mark.js.map +1 -1
- package/package.json +5 -5
package/build/index.es.js
CHANGED
|
@@ -58746,6 +58746,9 @@ class BaseMark extends GrammarItem {
|
|
|
58746
58746
|
return;
|
|
58747
58747
|
}
|
|
58748
58748
|
this._product = mark.getProduct();
|
|
58749
|
+
if (!this._product) {
|
|
58750
|
+
return;
|
|
58751
|
+
}
|
|
58749
58752
|
this._product.clearStates();
|
|
58750
58753
|
this._graphics = mark.getGraphics();
|
|
58751
58754
|
this._graphics.forEach(g => {
|
package/build/index.js
CHANGED
|
@@ -58752,6 +58752,9 @@
|
|
|
58752
58752
|
return;
|
|
58753
58753
|
}
|
|
58754
58754
|
this._product = mark.getProduct();
|
|
58755
|
+
if (!this._product) {
|
|
58756
|
+
return;
|
|
58757
|
+
}
|
|
58755
58758
|
this._product.clearStates();
|
|
58756
58759
|
this._graphics = mark.getGraphics();
|
|
58757
58760
|
this._graphics.forEach(g => {
|