@hpcc-js/common 2.60.0 → 2.61.0
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/dist/index.es6.js +3 -3
- package/dist/index.es6.js.map +1 -1
- package/dist/index.js +3 -3
- package/dist/index.js.map +1 -1
- package/dist/index.min.js +1 -1
- package/dist/index.min.js.map +1 -1
- package/package.json +2 -2
- package/src/PropertyExt.ts +1 -1
- package/src/__package__.ts +2 -2
- package/types/__package__.d.ts +2 -2
- package/types-3.4/__package__.d.ts +2 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@hpcc-js/common",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.61.0",
|
|
4
4
|
"description": "hpcc-js - Viz Common",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"module": "dist/index.es6",
|
|
@@ -106,5 +106,5 @@
|
|
|
106
106
|
"url": "https://github.com/hpcc-systems/Visualization/issues"
|
|
107
107
|
},
|
|
108
108
|
"homepage": "https://github.com/hpcc-systems/Visualization",
|
|
109
|
-
"gitHead": "
|
|
109
|
+
"gitHead": "0ecc9bdf1688d237242e998f5c23e4355ee0586d"
|
|
110
110
|
}
|
package/src/PropertyExt.ts
CHANGED
|
@@ -754,7 +754,7 @@ export class PropertyExt extends Class {
|
|
|
754
754
|
const origFunc = args[args.length - 1];
|
|
755
755
|
let retVal;
|
|
756
756
|
if (stopPropagation) {
|
|
757
|
-
if (d3Event) {
|
|
757
|
+
if (d3Event && d3Event.stopPropagation) {
|
|
758
758
|
d3Event.stopPropagation();
|
|
759
759
|
}
|
|
760
760
|
[].push.call(args, origFunc);
|
package/src/__package__.ts
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
export const PKG_NAME = "@hpcc-js/common";
|
|
2
|
-
export const PKG_VERSION = "2.
|
|
3
|
-
export const BUILD_VERSION = "2.
|
|
2
|
+
export const PKG_VERSION = "2.61.0";
|
|
3
|
+
export const BUILD_VERSION = "2.95.0";
|
package/types/__package__.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
export declare const PKG_NAME = "@hpcc-js/common";
|
|
2
|
-
export declare const PKG_VERSION = "2.
|
|
3
|
-
export declare const BUILD_VERSION = "2.
|
|
2
|
+
export declare const PKG_VERSION = "2.61.0";
|
|
3
|
+
export declare const BUILD_VERSION = "2.95.0";
|
|
4
4
|
//# sourceMappingURL=__package__.d.ts.map
|
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
export declare const PKG_NAME = "@hpcc-js/common";
|
|
2
|
-
export declare const PKG_VERSION = "2.
|
|
3
|
-
export declare const BUILD_VERSION = "2.
|
|
2
|
+
export declare const PKG_VERSION = "2.61.0";
|
|
3
|
+
export declare const BUILD_VERSION = "2.95.0";
|
|
4
4
|
//# sourceMappingURL=__package__.d.ts.map
|