@visactor/vchart 1.13.0 → 1.13.1-alpha.0
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 -5
- package/build/index.min.js +1 -1
- package/build/tsconfig.tsbuildinfo +1 -1
- package/cjs/chart/stack.js +1 -2
- package/cjs/compile/compilable-base.js +2 -1
- package/cjs/component/data-zoom/util.js +2 -2
- package/cjs/component/data-zoom/util.js.map +1 -1
- package/cjs/constant/hierarchy.js +1 -2
- package/cjs/constant/layout.js +2 -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/core/vchart.js +1 -2
- package/cjs/data/register.js +2 -1
- package/esm/chart/stack.js +1 -2
- package/esm/compile/compilable-base.js +2 -1
- package/esm/component/data-zoom/util.js +3 -3
- package/esm/component/data-zoom/util.js.map +1 -1
- package/esm/constant/hierarchy.js +1 -2
- package/esm/constant/layout.js +2 -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/core/vchart.js +1 -2
- package/esm/data/register.js +2 -1
- package/package.json +3 -3
package/build/index.js
CHANGED
|
@@ -62492,7 +62492,7 @@ C0.3-1.4,0.3-1.4,0.3-1.4z;`;
|
|
|
62492
62492
|
};
|
|
62493
62493
|
registerVChartCore();
|
|
62494
62494
|
|
|
62495
|
-
const version = "1.13.0";
|
|
62495
|
+
const version = "1.13.1-alpha.0";
|
|
62496
62496
|
|
|
62497
62497
|
const addVChartProperty = (data, op) => {
|
|
62498
62498
|
const context = op.beforeCall();
|
|
@@ -93610,12 +93610,13 @@ C0.3-1.4,0.3-1.4,0.3-1.4z;`;
|
|
|
93610
93610
|
return statisticsData;
|
|
93611
93611
|
}
|
|
93612
93612
|
const fields = originalFields();
|
|
93613
|
-
|
|
93613
|
+
const realField = isArray$1(datumField) ? datumField[0] : datumField;
|
|
93614
|
+
if (statisticsData[realField] &&
|
|
93614
93615
|
fields &&
|
|
93615
|
-
fields[
|
|
93616
|
-
fields[
|
|
93616
|
+
fields[realField] &&
|
|
93617
|
+
fields[realField].lockStatisticsByDomain &&
|
|
93617
93618
|
!isContinuous()) {
|
|
93618
|
-
statisticsData[
|
|
93619
|
+
statisticsData[realField].values = newDomain;
|
|
93619
93620
|
}
|
|
93620
93621
|
return statisticsData;
|
|
93621
93622
|
};
|