@hpcc-js/map 3.5.2 → 3.5.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/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/index.umd.cjs +1 -1
- package/dist/index.umd.cjs.map +1 -1
- package/package.json +9 -9
- package/src/Layered.ts +1 -1
- package/types/Layered.d.ts +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@hpcc-js/map",
|
|
3
|
-
"version": "3.5.
|
|
3
|
+
"version": "3.5.5",
|
|
4
4
|
"description": "hpcc-js - Viz Map",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.umd.cjs",
|
|
@@ -39,15 +39,15 @@
|
|
|
39
39
|
"update-major": "npx --yes npm-check-updates -u"
|
|
40
40
|
},
|
|
41
41
|
"dependencies": {
|
|
42
|
-
"@hpcc-js/api": "^3.4.
|
|
43
|
-
"@hpcc-js/common": "^3.7.
|
|
44
|
-
"@hpcc-js/graph": "^3.7.
|
|
45
|
-
"@hpcc-js/layout": "^3.5.
|
|
46
|
-
"@hpcc-js/other": "^3.5.
|
|
47
|
-
"@hpcc-js/util": "^3.5.
|
|
42
|
+
"@hpcc-js/api": "^3.4.16",
|
|
43
|
+
"@hpcc-js/common": "^3.7.6",
|
|
44
|
+
"@hpcc-js/graph": "^3.7.5",
|
|
45
|
+
"@hpcc-js/layout": "^3.5.11",
|
|
46
|
+
"@hpcc-js/other": "^3.5.5",
|
|
47
|
+
"@hpcc-js/util": "^3.5.5"
|
|
48
48
|
},
|
|
49
49
|
"devDependencies": {
|
|
50
|
-
"@hpcc-js/esbuild-plugins": "^1.8.
|
|
50
|
+
"@hpcc-js/esbuild-plugins": "^1.8.7",
|
|
51
51
|
"@types/leaflet-draw": "1.0.13",
|
|
52
52
|
"@types/leaflet.heat": "0.2.5",
|
|
53
53
|
"@types/leaflet.markercluster": "1.5.6",
|
|
@@ -77,5 +77,5 @@
|
|
|
77
77
|
"url": "https://github.com/hpcc-systems/Visualization/issues"
|
|
78
78
|
},
|
|
79
79
|
"homepage": "https://github.com/hpcc-systems/Visualization",
|
|
80
|
-
"gitHead": "
|
|
80
|
+
"gitHead": "6f134126379fe058a052986758b792d7b4ddb84b"
|
|
81
81
|
}
|
package/src/Layered.ts
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
import { geoPath as d3GeoPath } from "d3-geo";
|
|
3
3
|
import { select as d3Select } from "d3-selection";
|
|
4
4
|
import { resolve, types as projectionTypes } from "./Projection.ts";
|
|
5
|
-
import "./Utility"; // For albersUsaPr
|
|
5
|
+
import "./Utility.ts"; // For albersUsaPr
|
|
6
6
|
|
|
7
7
|
import "../src/Layered.css";
|
|
8
8
|
|
package/types/Layered.d.ts
CHANGED