@hpcc-js/other 3.2.1 → 3.2.3
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.js +195 -199
- package/dist/index.js.map +1 -1
- package/dist/index.umd.cjs +4 -4
- package/dist/index.umd.cjs.map +1 -1
- package/package.json +6 -6
- package/src/Comms.ts +0 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@hpcc-js/other",
|
|
3
|
-
"version": "3.2.
|
|
3
|
+
"version": "3.2.3",
|
|
4
4
|
"description": "hpcc-js - Viz Other",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.umd.cjs",
|
|
@@ -37,12 +37,12 @@
|
|
|
37
37
|
"update-major": "npx --yes npm-check-updates -u"
|
|
38
38
|
},
|
|
39
39
|
"dependencies": {
|
|
40
|
-
"@hpcc-js/api": "^3.3.
|
|
41
|
-
"@hpcc-js/common": "^3.3.
|
|
42
|
-
"@hpcc-js/layout": "^3.2.
|
|
40
|
+
"@hpcc-js/api": "^3.3.2",
|
|
41
|
+
"@hpcc-js/common": "^3.3.2",
|
|
42
|
+
"@hpcc-js/layout": "^3.2.3"
|
|
43
43
|
},
|
|
44
44
|
"devDependencies": {
|
|
45
|
-
"@hpcc-js/esbuild-plugins": "^1.4.
|
|
45
|
+
"@hpcc-js/esbuild-plugins": "^1.4.2",
|
|
46
46
|
"d3-array": "^1",
|
|
47
47
|
"d3-collection": "^1",
|
|
48
48
|
"d3-format": "^1",
|
|
@@ -67,5 +67,5 @@
|
|
|
67
67
|
"url": "https://github.com/hpcc-systems/Visualization/issues"
|
|
68
68
|
},
|
|
69
69
|
"homepage": "https://github.com/hpcc-systems/Visualization",
|
|
70
|
-
"gitHead": "
|
|
70
|
+
"gitHead": "c54b3bd37ed839305001ba47f2657a1f8eb8628a"
|
|
71
71
|
}
|
package/src/Comms.ts
CHANGED
|
@@ -48,8 +48,6 @@ export class ESPUrl {
|
|
|
48
48
|
this._url = _;
|
|
49
49
|
const parser = document.createElement("a");
|
|
50
50
|
parser.href = this._url;
|
|
51
|
-
// eslint-disable-next-line no-self-assign
|
|
52
|
-
parser.href = parser.href; // This fixes an IE9/IE10 DOM value issue
|
|
53
51
|
|
|
54
52
|
const params = {};
|
|
55
53
|
if (parser.search.length) {
|