@visactor/vchart 2.0.11-alpha.4 → 2.0.11-alpha.5
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 +6 -3
- package/build/index.js +6 -3
- package/build/index.min.js +1 -1
- package/build/tsconfig.tsbuildinfo +1 -1
- package/cjs/component/tooltip/tooltip.js +3 -1
- package/cjs/component/tooltip/tooltip.js.map +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/esm/component/tooltip/tooltip.js +2 -1
- package/esm/component/tooltip/tooltip.js.map +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/package.json +4 -4
package/build/index.es.js
CHANGED
|
@@ -61532,7 +61532,7 @@ const lookup = (data, opt) => {
|
|
|
61532
61532
|
});
|
|
61533
61533
|
};
|
|
61534
61534
|
|
|
61535
|
-
const version = "2.0.11-alpha.
|
|
61535
|
+
const version = "2.0.11-alpha.5";
|
|
61536
61536
|
|
|
61537
61537
|
const addVChartProperty = (data, op) => {
|
|
61538
61538
|
const context = op.beforeCall();
|
|
@@ -95816,9 +95816,12 @@ class Tooltip extends BaseComponent {
|
|
|
95816
95816
|
}
|
|
95817
95817
|
};
|
|
95818
95818
|
this._handleChartMouseOut = (params) => {
|
|
95819
|
+
var _a;
|
|
95819
95820
|
if (this._cacheActiveType &&
|
|
95820
|
-
|
|
95821
|
-
this._option.componentShowContent.tooltip
|
|
95821
|
+
((_a = this._option) === null || _a === void 0 ? void 0 : _a.componentShowContent) &&
|
|
95822
|
+
(this._option.componentShowContent.tooltip === false ||
|
|
95823
|
+
(isObject$2(this._option.componentShowContent.tooltip) &&
|
|
95824
|
+
this._option.componentShowContent.tooltip[this._cacheActiveType] === false))) {
|
|
95822
95825
|
return;
|
|
95823
95826
|
}
|
|
95824
95827
|
if (this._alwaysShow || this._isReleased || this._isEnterTooltip) {
|
package/build/index.js
CHANGED
|
@@ -61538,7 +61538,7 @@
|
|
|
61538
61538
|
});
|
|
61539
61539
|
};
|
|
61540
61540
|
|
|
61541
|
-
const version = "2.0.11-alpha.
|
|
61541
|
+
const version = "2.0.11-alpha.5";
|
|
61542
61542
|
|
|
61543
61543
|
const addVChartProperty = (data, op) => {
|
|
61544
61544
|
const context = op.beforeCall();
|
|
@@ -95822,9 +95822,12 @@
|
|
|
95822
95822
|
}
|
|
95823
95823
|
};
|
|
95824
95824
|
this._handleChartMouseOut = (params) => {
|
|
95825
|
+
var _a;
|
|
95825
95826
|
if (this._cacheActiveType &&
|
|
95826
|
-
|
|
95827
|
-
this._option.componentShowContent.tooltip
|
|
95827
|
+
((_a = this._option) === null || _a === void 0 ? void 0 : _a.componentShowContent) &&
|
|
95828
|
+
(this._option.componentShowContent.tooltip === false ||
|
|
95829
|
+
(isObject$2(this._option.componentShowContent.tooltip) &&
|
|
95830
|
+
this._option.componentShowContent.tooltip[this._cacheActiveType] === false))) {
|
|
95828
95831
|
return;
|
|
95829
95832
|
}
|
|
95830
95833
|
if (this._alwaysShow || this._isReleased || this._isEnterTooltip) {
|