@hpcc-js/map 2.61.0 → 2.66.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 +2698 -2676
- package/dist/index.es6.js.map +1 -1
- package/dist/index.js +2698 -2676
- 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 +11 -11
- package/src/Choropleth.ts +1 -1
- package/src/ChoroplethCounties.ts +1 -1
- package/src/ChoroplethCountries.ts +1 -1
- package/src/ChoroplethStates.ts +1 -1
- package/src/TopoJSONChoropleth.ts +2 -2
- package/src/__package__.ts +2 -2
- package/src/leaflet/Countries.ts +1 -1
- package/src/leaflet/Region.ts +1 -1
- package/src/leaflet/TopoJSON.ts +1 -1
- package/src/leaflet/USCounties.ts +1 -1
- package/src/leaflet/USStates.ts +1 -1
- 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/map",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.66.0",
|
|
4
4
|
"description": "hpcc-js - Viz Map",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"module": "dist/index.es6",
|
|
@@ -38,16 +38,16 @@
|
|
|
38
38
|
"docs": "typedoc --options tdoptions.json ."
|
|
39
39
|
},
|
|
40
40
|
"dependencies": {
|
|
41
|
-
"@hpcc-js/api": "^2.8.
|
|
42
|
-
"@hpcc-js/common": "^2.
|
|
43
|
-
"@hpcc-js/graph": "^2.
|
|
44
|
-
"@hpcc-js/layout": "^2.
|
|
45
|
-
"@hpcc-js/leaflet-shim": "^2.1.
|
|
46
|
-
"@hpcc-js/other": "^2.13.
|
|
47
|
-
"@hpcc-js/util": "^2.
|
|
41
|
+
"@hpcc-js/api": "^2.8.54",
|
|
42
|
+
"@hpcc-js/common": "^2.59.0",
|
|
43
|
+
"@hpcc-js/graph": "^2.71.0",
|
|
44
|
+
"@hpcc-js/layout": "^2.39.0",
|
|
45
|
+
"@hpcc-js/leaflet-shim": "^2.1.18",
|
|
46
|
+
"@hpcc-js/other": "^2.13.72",
|
|
47
|
+
"@hpcc-js/util": "^2.40.0"
|
|
48
48
|
},
|
|
49
49
|
"devDependencies": {
|
|
50
|
-
"@hpcc-js/bundle": "^2.10.
|
|
50
|
+
"@hpcc-js/bundle": "^2.10.20",
|
|
51
51
|
"@rollup/plugin-alias": "3.1.0",
|
|
52
52
|
"@rollup/plugin-commonjs": "12.0.0",
|
|
53
53
|
"@rollup/plugin-node-resolve": "8.0.0",
|
|
@@ -70,7 +70,7 @@
|
|
|
70
70
|
"rollup-plugin-postcss": "3.1.1",
|
|
71
71
|
"rollup-plugin-sourcemaps": "0.6.2",
|
|
72
72
|
"terser": "4.0.0",
|
|
73
|
-
"topojson": "3.0
|
|
73
|
+
"topojson-client": "3.1.0",
|
|
74
74
|
"tslib": "2.3.0",
|
|
75
75
|
"typedoc": "0.14.2",
|
|
76
76
|
"typescript": "4.3.4"
|
|
@@ -86,5 +86,5 @@
|
|
|
86
86
|
"url": "https://github.com/hpcc-systems/Visualization/issues"
|
|
87
87
|
},
|
|
88
88
|
"homepage": "https://github.com/hpcc-systems/Visualization",
|
|
89
|
-
"gitHead": "
|
|
89
|
+
"gitHead": "7800ddc2075f4e2e64c2e3454bf271c60ebb2a0e"
|
|
90
90
|
}
|
package/src/Choropleth.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { InputField } from "@hpcc-js/common";
|
|
2
2
|
import { json as d3Json } from "d3-request";
|
|
3
3
|
import { select as d3Select } from "d3-selection";
|
|
4
|
-
import * as topojson from "topojson";
|
|
4
|
+
import * as topojson from "topojson-client";
|
|
5
5
|
import { Choropleth, topoJsonFolder } from "./Choropleth";
|
|
6
6
|
|
|
7
7
|
let usCounties = null;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { json as d3Json } from "d3-request";
|
|
2
2
|
import { select as d3Select } from "d3-selection";
|
|
3
|
-
import * as topojson from "topojson";
|
|
3
|
+
import * as topojson from "topojson-client";
|
|
4
4
|
import { Choropleth, topoJsonFolder } from "./Choropleth";
|
|
5
5
|
|
|
6
6
|
let countries = null;
|
package/src/ChoroplethStates.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { InputField } from "@hpcc-js/common";
|
|
2
2
|
import { json as d3Json } from "d3-request";
|
|
3
3
|
import { select as d3Select } from "d3-selection";
|
|
4
|
-
import * as topojson from "topojson";
|
|
4
|
+
import * as topojson from "topojson-client";
|
|
5
5
|
import { Choropleth, topoJsonFolder } from "./Choropleth";
|
|
6
6
|
|
|
7
7
|
let usStates = null;
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
import { json as d3Json } from "d3-request";
|
|
2
2
|
import { select as d3Select } from "d3-selection";
|
|
3
|
-
import * as topojson from "topojson";
|
|
3
|
+
import * as topojson from "topojson-client";
|
|
4
4
|
import { Choropleth, topoJsonFolder } from "./Choropleth";
|
|
5
5
|
|
|
6
6
|
export function TopoJSONChoropleth() {
|
|
7
7
|
Choropleth.call(this);
|
|
8
8
|
|
|
9
|
-
this.projection("
|
|
9
|
+
this.projection("Mercator");
|
|
10
10
|
}
|
|
11
11
|
TopoJSONChoropleth.prototype = Object.create(Choropleth.prototype);
|
|
12
12
|
TopoJSONChoropleth.prototype.constructor = TopoJSONChoropleth;
|
package/src/__package__.ts
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
export const PKG_NAME = "@hpcc-js/map";
|
|
2
|
-
export const PKG_VERSION = "2.
|
|
3
|
-
export const BUILD_VERSION = "2.
|
|
2
|
+
export const PKG_VERSION = "2.66.0";
|
|
3
|
+
export const BUILD_VERSION = "2.92.0";
|
package/src/leaflet/Countries.ts
CHANGED
package/src/leaflet/Region.ts
CHANGED
package/src/leaflet/TopoJSON.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { GeoJSON, Map } from "@hpcc-js/leaflet-shim";
|
|
2
2
|
import { json as d3Json } from "d3-request";
|
|
3
|
-
import * as topojson from "topojson";
|
|
3
|
+
import * as topojson from "topojson-client";
|
|
4
4
|
import { topoJsonFolder } from "../Choropleth";
|
|
5
5
|
import { FeatureLayer } from "./FeatureLayer";
|
|
6
6
|
|
package/src/leaflet/USStates.ts
CHANGED
package/types/__package__.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
export declare const PKG_NAME = "@hpcc-js/map";
|
|
2
|
-
export declare const PKG_VERSION = "2.
|
|
3
|
-
export declare const BUILD_VERSION = "2.
|
|
2
|
+
export declare const PKG_VERSION = "2.66.0";
|
|
3
|
+
export declare const BUILD_VERSION = "2.92.0";
|
|
4
4
|
//# sourceMappingURL=__package__.d.ts.map
|
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
export declare const PKG_NAME = "@hpcc-js/map";
|
|
2
|
-
export declare const PKG_VERSION = "2.
|
|
3
|
-
export declare const BUILD_VERSION = "2.
|
|
2
|
+
export declare const PKG_VERSION = "2.66.0";
|
|
3
|
+
export declare const BUILD_VERSION = "2.92.0";
|
|
4
4
|
//# sourceMappingURL=__package__.d.ts.map
|