@visactor/vchart 2.1.0-alpha.8 → 2.1.0-alpha.9
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 +2467 -2265
- package/build/index.js +2467 -2265
- package/build/index.min.js +2 -2
- package/build/tsconfig.tsbuildinfo +1 -1
- package/cjs/chart/base/base-chart.js +12 -4
- package/cjs/chart/base/base-chart.js.map +1 -1
- package/cjs/component/index.js +1 -2
- package/cjs/component/util.js +1 -1
- package/cjs/constant/animate.js +2 -1
- package/cjs/constant/correlation.js +1 -2
- package/cjs/constant/marker.js +1 -1
- package/cjs/constant/polar.js +1 -1
- package/cjs/constant/scatter.js +1 -1
- package/cjs/constant/scroll-bar.js +1 -1
- package/cjs/constant/sunburst.js +2 -1
- package/cjs/constant/waterfall.js +1 -1
- package/cjs/constant/word-cloud.js +1 -1
- package/cjs/core/util.js +1 -1
- package/cjs/core/vchart.js +1 -1
- package/cjs/data/data-view-utils.js +1 -1
- package/cjs/data/initialize.js +1 -1
- package/cjs/data/register.js +1 -1
- package/cjs/mark/base/base-mark.js +1 -2
- package/cjs/mark/base/base-mark.js.map +1 -1
- package/cjs/series/base/base-series.js +2 -2
- package/cjs/series/base/base-series.js.map +1 -1
- package/esm/chart/base/base-chart.js +12 -4
- package/esm/chart/base/base-chart.js.map +1 -1
- package/esm/component/index.js +1 -2
- package/esm/component/util.js +1 -1
- package/esm/constant/animate.js +2 -1
- package/esm/constant/correlation.js +1 -2
- package/esm/constant/marker.js +1 -1
- package/esm/constant/polar.js +1 -1
- package/esm/constant/scatter.js +1 -1
- package/esm/constant/scroll-bar.js +1 -1
- package/esm/constant/sunburst.js +2 -1
- package/esm/constant/waterfall.js +1 -1
- package/esm/constant/word-cloud.js +1 -1
- package/esm/core/util.js +1 -1
- package/esm/core/vchart.js +1 -1
- package/esm/data/data-view-utils.js +1 -1
- package/esm/data/initialize.js +1 -1
- package/esm/data/register.js +1 -1
- package/esm/mark/base/base-mark.js +1 -2
- package/esm/mark/base/base-mark.js.map +1 -1
- package/esm/series/base/base-series.js +1 -1
- package/esm/series/base/base-series.js.map +1 -1
- package/package.json +10 -10
|
@@ -13,4 +13,4 @@ export const WORDCLOUD_DATA_TOTAL = `${PREFIX}_WORDCLOUD_DATA_TOTAL`;
|
|
|
13
13
|
export const WORD_CLOUD_TEXT = `${PREFIX}_WORD_CLOUD_TEXT`;
|
|
14
14
|
|
|
15
15
|
export const WORDCLOUD_SHAPE_DATA_TOTAL = `${PREFIX}_WORDCLOUD_SHAPE_DATA_TOTAL`;
|
|
16
|
-
//# sourceMappingURL=word-cloud.js.map
|
|
16
|
+
//# sourceMappingURL=word-cloud.js.map
|
package/esm/core/util.js
CHANGED
package/esm/core/vchart.js
CHANGED
|
@@ -1030,4 +1030,4 @@ export const registerVChartCore = () => {
|
|
|
1030
1030
|
Factory.registerRegion("region", Region), Factory.registerLayout("base", Layout),
|
|
1031
1031
|
registerGroupMark(), registerGesturePlugin(), registerElementHighlight(), registerElementSelect(),
|
|
1032
1032
|
registerTheme(darkTheme.name, darkTheme);
|
|
1033
|
-
//# sourceMappingURL=vchart.js.map
|
|
1033
|
+
//# sourceMappingURL=vchart.js.map
|
|
@@ -43,4 +43,4 @@ export const releaseDataViewWithDependencies = (dataView, shouldReleaseDependenc
|
|
|
43
43
|
};
|
|
44
44
|
collectReleaseDependencies(dataView), releaseDataViews([ dataView, ...releaseDependencies ]);
|
|
45
45
|
};
|
|
46
|
-
//# sourceMappingURL=data-view-utils.js.map
|
|
46
|
+
//# sourceMappingURL=data-view-utils.js.map
|
package/esm/data/initialize.js
CHANGED
|
@@ -81,4 +81,4 @@ export var TransformLevel;
|
|
|
81
81
|
TransformLevel[TransformLevel.linkDotInfo = -7] = "linkDotInfo", TransformLevel[TransformLevel.sankeyLayout = -7] = "sankeyLayout",
|
|
82
82
|
TransformLevel[TransformLevel.dataZoomFilter = -6] = "dataZoomFilter", TransformLevel[TransformLevel.legendFilter = -5] = "legendFilter";
|
|
83
83
|
}(TransformLevel || (TransformLevel = {}));
|
|
84
|
-
//# sourceMappingURL=initialize.js.map
|
|
84
|
+
//# sourceMappingURL=initialize.js.map
|
package/esm/data/register.js
CHANGED
|
@@ -5,4 +5,4 @@ export function registerDataSetInstanceTransform(dataSet, name, transform) {
|
|
|
5
5
|
export function registerDataSetInstanceParser(dataSet, name, parse) {
|
|
6
6
|
dataSet.getParser(name) || dataSet.registerParser(name, parse);
|
|
7
7
|
}
|
|
8
|
-
//# sourceMappingURL=register.js.map
|
|
8
|
+
//# sourceMappingURL=register.js.map
|
|
@@ -777,8 +777,7 @@ export class BaseMark extends GrammarItem {
|
|
|
777
777
|
const diffAttrs = this._excludeStateControlledDiffAttrs(g, getDiffAttributesOfGraphic(g, finalAttrs));
|
|
778
778
|
g.context.diffAttrs = diffAttrs, g.context.reusing ? (g.context.lastAttrs = g.attribute,
|
|
779
779
|
g.initAttributes(finalAttrs), g.context.reusing = !1) : hasStateAnimation || (hasAnimation ? g.setAttributesAndPreventAnimate(diffAttrs) : g.setAttributes(diffAttrs)),
|
|
780
|
-
!(null === (_c = this.renderContext) || void 0 === _c ? void 0 : _c.progressive) && this._product && g.parent !== this._product && this._product.appendChild(g)
|
|
781
|
-
hasAnimation && g.setFinalAttributes(finalAttrs);
|
|
780
|
+
!(null === (_c = this.renderContext) || void 0 === _c ? void 0 : _c.progressive) && this._product && g.parent !== this._product && this._product.appendChild(g);
|
|
782
781
|
} else {
|
|
783
782
|
const mockGraphic = g;
|
|
784
783
|
g = this._createGraphic(finalAttrs), hasAnimation && (null === (_a = g.setFinalAttributes) || void 0 === _a || _a.call(g, finalAttrs)),
|