@visactor/vchart-extension 1.13.21-alpha.5 → 1.13.21-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/index.js +3 -0
- package/build/index.min.js +1 -1
- package/cjs/charts/compare-sankey/compare-sankey.d.ts +3 -0
- package/cjs/charts/compare-sankey/compare-sankey.js +4 -3
- package/cjs/charts/compare-sankey/compare-sankey.js.map +1 -1
- package/cjs/charts/conversion-funnel/conversion-funnel-transformer.js +1 -0
- package/cjs/charts/conversion-funnel/interface.js +1 -2
- package/esm/charts/compare-sankey/compare-sankey.d.ts +3 -0
- package/esm/charts/compare-sankey/compare-sankey.js +5 -2
- package/esm/charts/compare-sankey/compare-sankey.js.map +1 -1
- package/esm/charts/conversion-funnel/conversion-funnel-transformer.js +2 -1
- package/esm/charts/conversion-funnel/interface.js +1 -2
- package/package.json +4 -4
package/build/index.js
CHANGED
|
@@ -4460,6 +4460,7 @@
|
|
|
4460
4460
|
constructor() {
|
|
4461
4461
|
super(...arguments);
|
|
4462
4462
|
this.type = 'compareSankey';
|
|
4463
|
+
this.seriesType = CompareSankeySeries.type;
|
|
4463
4464
|
this.transformerConstructor = CompareSankeyChartSpecTransformer;
|
|
4464
4465
|
}
|
|
4465
4466
|
}
|
|
@@ -4468,6 +4469,7 @@
|
|
|
4468
4469
|
class CompareSankeySeries extends vchart.SankeySeries {
|
|
4469
4470
|
constructor() {
|
|
4470
4471
|
super(...arguments);
|
|
4472
|
+
this.type = 'compareSankey';
|
|
4471
4473
|
this._fillCompareNode = (datum) => {
|
|
4472
4474
|
var _a, _b, _c;
|
|
4473
4475
|
if ((_a = this._spec.compareNodeColor) === null || _a === void 0 ? void 0 : _a[datum.type]) {
|
|
@@ -4663,6 +4665,7 @@
|
|
|
4663
4665
|
}
|
|
4664
4666
|
}
|
|
4665
4667
|
}
|
|
4668
|
+
CompareSankeySeries.type = 'compareSankey';
|
|
4666
4669
|
const registerCompareSankeyChart = (option) => {
|
|
4667
4670
|
const vchartConstructor = (option === null || option === void 0 ? void 0 : option.VChart) || vchart.VChart;
|
|
4668
4671
|
if (vchartConstructor) {
|