@visactor/vchart 1.13.14-alpha.0 → 1.13.14
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 +7 -6
- package/build/index.js +7 -6
- package/build/index.min.js +1 -1
- package/build/tsconfig.tsbuildinfo +1 -1
- package/cjs/animation/config.js +1 -2
- package/cjs/animation/utils.js +2 -1
- package/cjs/constant/funnel.js +1 -2
- 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/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 +6 -2
- package/cjs/core/vchart.js.map +1 -1
- package/cjs/env/env.js +1 -1
- package/cjs/env/index.js +1 -1
- package/cjs/event/index.js +1 -1
- package/cjs/event/interface.js +1 -1
- package/cjs/series/sankey/interface.d.ts +1 -1
- package/cjs/series/sankey/interface.js.map +1 -1
- package/esm/animation/config.js +1 -2
- package/esm/animation/utils.js +2 -1
- package/esm/constant/funnel.js +1 -2
- 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/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 +6 -2
- package/esm/core/vchart.js.map +1 -1
- package/esm/env/env.js +1 -1
- package/esm/env/index.js +1 -1
- package/esm/event/index.js +1 -1
- package/esm/event/interface.js +1 -1
- package/esm/series/sankey/interface.d.ts +1 -1
- package/esm/series/sankey/interface.js.map +1 -1
- package/package.json +12 -12
package/build/index.es.js
CHANGED
|
@@ -63321,7 +63321,7 @@ class VChart {
|
|
|
63321
63321
|
return this._beforeRender(option);
|
|
63322
63322
|
}
|
|
63323
63323
|
_reCompile(updateResult, morphConfig) {
|
|
63324
|
-
var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k;
|
|
63324
|
+
var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, _m;
|
|
63325
63325
|
if (updateResult.reMake) {
|
|
63326
63326
|
this._releaseData();
|
|
63327
63327
|
this._initDataSet();
|
|
@@ -63352,8 +63352,9 @@ class VChart {
|
|
|
63352
63352
|
}
|
|
63353
63353
|
if (updateResult.reSize) {
|
|
63354
63354
|
const { width, height } = this.getCurrentSize();
|
|
63355
|
-
this.
|
|
63356
|
-
this.
|
|
63355
|
+
this._currentSize = { width, height };
|
|
63356
|
+
(_l = this._chart) === null || _l === void 0 ? void 0 : _l.onResize(width, height, false);
|
|
63357
|
+
(_m = this._compiler) === null || _m === void 0 ? void 0 : _m.resize(width, height, false);
|
|
63357
63358
|
}
|
|
63358
63359
|
}
|
|
63359
63360
|
}
|
|
@@ -64240,7 +64241,7 @@ const registerVChartCore = () => {
|
|
|
64240
64241
|
};
|
|
64241
64242
|
registerVChartCore();
|
|
64242
64243
|
|
|
64243
|
-
const version = "1.13.14
|
|
64244
|
+
const version = "1.13.14";
|
|
64244
64245
|
|
|
64245
64246
|
const addVChartProperty = (data, op) => {
|
|
64246
64247
|
const context = op.beforeCall();
|
|
@@ -86099,7 +86100,7 @@ class SankeyLayout {
|
|
|
86099
86100
|
}
|
|
86100
86101
|
const isStartGap = "start" === this.options.gapPosition,
|
|
86101
86102
|
isMiddleGap = !isStartGap && "end" !== this.options.gapPosition,
|
|
86102
|
-
getNodeHeight = isNumber$1(this.options.nodeHeight) ?
|
|
86103
|
+
getNodeHeight = isNumber$1(this.options.nodeHeight) ? node => this.options.nodeHeight : isFunction$1(this.options.nodeHeight) ? this.options.nodeHeight : forceNodeHeight > 0 ? node => forceNodeHeight : node => Math.max(node.value * ky, 0),
|
|
86103
86104
|
getLinkHeight = isNumber$1(this.options.linkHeight) ? () => this.options.linkHeight : isFunction$1(this.options.linkHeight) ? this.options.linkHeight : (link, sourceNode, sourceNodeHeight) => Math.min(Math.max(sourceNode.value ? sourceNodeHeight * linkClampe(link.value / sourceNode.value) : 0, minLinkHeight, 0), maxLinkHeight);
|
|
86104
86105
|
for (let i = 0, columnCount = columns.length; i < columnCount; i++) {
|
|
86105
86106
|
const nodes = columns[i];
|
|
@@ -86110,7 +86111,7 @@ class SankeyLayout {
|
|
|
86110
86111
|
calculatedNodeHeight = 0;
|
|
86111
86112
|
for (let j = 0, len = nodes.length; j < len; j++) {
|
|
86112
86113
|
const node = nodes[j];
|
|
86113
|
-
gapY = getGapY(node), isStartGap && (y += gapY), calculatedNodeHeight = getNodeHeight(node
|
|
86114
|
+
gapY = getGapY(node), isStartGap && (y += gapY), calculatedNodeHeight = getNodeHeight(node), nodeHeight = Math.min(Math.max(calculatedNodeHeight, minNodeHeight), maxNodeHeight), node.y0 = y, node.y1 = y + nodeHeight, y = isStartGap ? node.y1 : node.y1 + gapY;
|
|
86114
86115
|
for (let k = 0, linkLen = node.sourceLinks.length; k < linkLen; k++) {
|
|
86115
86116
|
const link = node.sourceLinks[k];
|
|
86116
86117
|
link.thickness = getLinkHeight(link, node, calculatedNodeHeight);
|
package/build/index.js
CHANGED
|
@@ -63327,7 +63327,7 @@ C0.3-1.4,0.3-1.4,0.3-1.4z;`;
|
|
|
63327
63327
|
return this._beforeRender(option);
|
|
63328
63328
|
}
|
|
63329
63329
|
_reCompile(updateResult, morphConfig) {
|
|
63330
|
-
var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k;
|
|
63330
|
+
var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, _m;
|
|
63331
63331
|
if (updateResult.reMake) {
|
|
63332
63332
|
this._releaseData();
|
|
63333
63333
|
this._initDataSet();
|
|
@@ -63358,8 +63358,9 @@ C0.3-1.4,0.3-1.4,0.3-1.4z;`;
|
|
|
63358
63358
|
}
|
|
63359
63359
|
if (updateResult.reSize) {
|
|
63360
63360
|
const { width, height } = this.getCurrentSize();
|
|
63361
|
-
this.
|
|
63362
|
-
this.
|
|
63361
|
+
this._currentSize = { width, height };
|
|
63362
|
+
(_l = this._chart) === null || _l === void 0 ? void 0 : _l.onResize(width, height, false);
|
|
63363
|
+
(_m = this._compiler) === null || _m === void 0 ? void 0 : _m.resize(width, height, false);
|
|
63363
63364
|
}
|
|
63364
63365
|
}
|
|
63365
63366
|
}
|
|
@@ -64246,7 +64247,7 @@ C0.3-1.4,0.3-1.4,0.3-1.4z;`;
|
|
|
64246
64247
|
};
|
|
64247
64248
|
registerVChartCore();
|
|
64248
64249
|
|
|
64249
|
-
const version = "1.13.14
|
|
64250
|
+
const version = "1.13.14";
|
|
64250
64251
|
|
|
64251
64252
|
const addVChartProperty = (data, op) => {
|
|
64252
64253
|
const context = op.beforeCall();
|
|
@@ -86105,7 +86106,7 @@ C0.3-1.4,0.3-1.4,0.3-1.4z;`;
|
|
|
86105
86106
|
}
|
|
86106
86107
|
const isStartGap = "start" === this.options.gapPosition,
|
|
86107
86108
|
isMiddleGap = !isStartGap && "end" !== this.options.gapPosition,
|
|
86108
|
-
getNodeHeight = isNumber$1(this.options.nodeHeight) ?
|
|
86109
|
+
getNodeHeight = isNumber$1(this.options.nodeHeight) ? node => this.options.nodeHeight : isFunction$1(this.options.nodeHeight) ? this.options.nodeHeight : forceNodeHeight > 0 ? node => forceNodeHeight : node => Math.max(node.value * ky, 0),
|
|
86109
86110
|
getLinkHeight = isNumber$1(this.options.linkHeight) ? () => this.options.linkHeight : isFunction$1(this.options.linkHeight) ? this.options.linkHeight : (link, sourceNode, sourceNodeHeight) => Math.min(Math.max(sourceNode.value ? sourceNodeHeight * linkClampe(link.value / sourceNode.value) : 0, minLinkHeight, 0), maxLinkHeight);
|
|
86110
86111
|
for (let i = 0, columnCount = columns.length; i < columnCount; i++) {
|
|
86111
86112
|
const nodes = columns[i];
|
|
@@ -86116,7 +86117,7 @@ C0.3-1.4,0.3-1.4,0.3-1.4z;`;
|
|
|
86116
86117
|
calculatedNodeHeight = 0;
|
|
86117
86118
|
for (let j = 0, len = nodes.length; j < len; j++) {
|
|
86118
86119
|
const node = nodes[j];
|
|
86119
|
-
gapY = getGapY(node), isStartGap && (y += gapY), calculatedNodeHeight = getNodeHeight(node
|
|
86120
|
+
gapY = getGapY(node), isStartGap && (y += gapY), calculatedNodeHeight = getNodeHeight(node), nodeHeight = Math.min(Math.max(calculatedNodeHeight, minNodeHeight), maxNodeHeight), node.y0 = y, node.y1 = y + nodeHeight, y = isStartGap ? node.y1 : node.y1 + gapY;
|
|
86120
86121
|
for (let k = 0, linkLen = node.sourceLinks.length; k < linkLen; k++) {
|
|
86121
86122
|
const link = node.sourceLinks[k];
|
|
86122
86123
|
link.thickness = getLinkHeight(link, node, calculatedNodeHeight);
|