@visactor/vchart 1.11.1-alpha.1 → 1.11.1-alpha.2
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 +10 -1
- package/build/index.min.js +1 -1
- package/build/tsconfig.tsbuildinfo +1 -1
- package/cjs/animation/config.js +1 -2
- package/cjs/component/marker/base-marker.d.ts +7 -0
- package/cjs/component/marker/base-marker.js +5 -0
- package/cjs/component/marker/base-marker.js.map +1 -1
- package/cjs/component/util.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/event/event-dispatcher.js +2 -1
- package/cjs/event/index.js +1 -2
- package/esm/animation/config.js +1 -2
- package/esm/component/marker/base-marker.d.ts +7 -0
- package/esm/component/marker/base-marker.js +6 -1
- package/esm/component/marker/base-marker.js.map +1 -1
- package/esm/component/util.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/event/event-dispatcher.js +2 -1
- package/esm/event/index.js +1 -2
- package/package.json +3 -3
package/build/index.js
CHANGED
|
@@ -66019,7 +66019,7 @@ C0.3-1.4,0.3-1.4,0.3-1.4z;`;
|
|
|
66019
66019
|
registerComponentPlugin(CanvasTooltipHandler);
|
|
66020
66020
|
};
|
|
66021
66021
|
|
|
66022
|
-
const version = "1.11.1-alpha.
|
|
66022
|
+
const version = "1.11.1-alpha.2";
|
|
66023
66023
|
|
|
66024
66024
|
const addVChartProperty = (data, op) => {
|
|
66025
66025
|
const context = op.beforeCall();
|
|
@@ -97046,6 +97046,15 @@ C0.3-1.4,0.3-1.4,0.3-1.4z;`;
|
|
|
97046
97046
|
}
|
|
97047
97047
|
super.onLayoutStart(layoutRect, chartViewRect, ctx);
|
|
97048
97048
|
}
|
|
97049
|
+
_compareSpec(spec, prevSpec) {
|
|
97050
|
+
const result = super._compareSpec(spec, prevSpec);
|
|
97051
|
+
if (!isEqual$1(prevSpec, spec)) {
|
|
97052
|
+
result.reRender = true;
|
|
97053
|
+
result.reMake = true;
|
|
97054
|
+
result.change = true;
|
|
97055
|
+
}
|
|
97056
|
+
return result;
|
|
97057
|
+
}
|
|
97049
97058
|
}
|
|
97050
97059
|
|
|
97051
97060
|
function markerRegression(_data, opt) {
|