@visactor/vchart 1.6.8 → 1.6.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.js +2 -2
- package/build/index.min.js +1 -1
- package/build/tsconfig.tsbuildinfo +1 -1
- package/cjs/chart/stack.js +1 -2
- package/cjs/compile/grammar-item.js +2 -1
- package/cjs/component/index.js +1 -1
- package/cjs/component/util.js +1 -1
- package/cjs/constant/index.js +2 -1
- package/cjs/constant/waterfall.js +1 -2
- 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/event/event.js +1 -2
- package/cjs/interaction/config.js +2 -1
- package/cjs/layout/base-layout.js +1 -1
- package/cjs/layout/index.js +1 -1
- package/cjs/layout/interface.js +1 -1
- package/cjs/mark/arc-3d.js +1 -1
- package/cjs/model/layout-item.js +1 -1
- package/cjs/model/layout-item.js.map +1 -1
- package/esm/chart/stack.js +1 -2
- package/esm/compile/grammar-item.js +2 -1
- package/esm/component/index.js +1 -1
- package/esm/component/util.js +1 -1
- package/esm/constant/index.js +2 -1
- package/esm/constant/waterfall.js +1 -2
- 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/event/event.js +1 -2
- package/esm/interaction/config.js +2 -1
- package/esm/layout/base-layout.js +1 -1
- package/esm/layout/index.js +1 -1
- package/esm/layout/interface.js +1 -1
- package/esm/mark/arc-3d.js +1 -1
- package/esm/model/layout-item.js +1 -1
- package/esm/model/layout-item.js.map +1 -1
- package/package.json +4 -4
package/build/index.js
CHANGED
|
@@ -54197,7 +54197,7 @@ C0.3-1.4,0.3-1.4,0.3-1.4z;`;
|
|
|
54197
54197
|
this._lastComputeRect = rect;
|
|
54198
54198
|
const bounds = Object.assign({}, this._boundsInRect(this._setRectInSpec(rect), rect));
|
|
54199
54199
|
this.changeBoundsBySetting(bounds);
|
|
54200
|
-
if (this._autoIndent) {
|
|
54200
|
+
if (this._autoIndent && bounds.x2 - bounds.x1 > 0 && bounds.y2 - bounds.y1 > 0) {
|
|
54201
54201
|
this._lastComputeOutBounds.x1 = Math.ceil(-bounds.x1);
|
|
54202
54202
|
this._lastComputeOutBounds.x2 = Math.ceil(bounds.x2 - rect.width);
|
|
54203
54203
|
this._lastComputeOutBounds.y1 = Math.ceil(-bounds.y1);
|
|
@@ -58099,7 +58099,7 @@ C0.3-1.4,0.3-1.4,0.3-1.4z;`;
|
|
|
58099
58099
|
};
|
|
58100
58100
|
registerVChartCore();
|
|
58101
58101
|
|
|
58102
|
-
const version = "1.6.
|
|
58102
|
+
const version = "1.6.9";
|
|
58103
58103
|
|
|
58104
58104
|
class ChartData {
|
|
58105
58105
|
get dataList() {
|