@kepler.gl/components 3.3.0-alpha.4 → 3.3.0-alpha.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/common/styled-components.d.ts +2 -1
- package/dist/common/styled-components.js +8 -4
- package/dist/index.d.ts +1 -0
- package/dist/index.js +9 -1
- package/dist/loading-indicator.d.ts +1 -0
- package/dist/loading-indicator.js +5 -2
- package/dist/map/attribution.js +5 -3
- package/dist/map/map-scale.d.ts +11 -0
- package/dist/map/map-scale.js +162 -0
- package/dist/map-container.d.ts +3 -2
- package/dist/map-container.js +161 -80
- package/dist/modals/add-map-style-modal.js +48 -10
- package/dist/side-panel/layer-panel/raster-tile-layer-configurator.js +3 -3
- package/package.json +20 -21
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kepler.gl/components",
|
|
3
3
|
"author": "Shan He <shan@uber.com>",
|
|
4
|
-
"version": "3.3.0-alpha.
|
|
4
|
+
"version": "3.3.0-alpha.5",
|
|
5
5
|
"description": "kepler.gl constants used by kepler.gl components, actions and reducers",
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"main": "dist/index.js",
|
|
@@ -20,17 +20,15 @@
|
|
|
20
20
|
},
|
|
21
21
|
"scripts": {
|
|
22
22
|
"build": "rm -fr dist && ../../node_modules/.bin/babel src --out-dir dist --source-maps inline --extensions '.ts,.tsx,.js,.jsx' --ignore '**/*.d.ts'",
|
|
23
|
-
"build:umd": "webpack --config ./webpack/umd.js --progress --env prod",
|
|
24
23
|
"build:types": "tsc --project ./tsconfig.production.json",
|
|
25
24
|
"prepublishOnly": "babel-node ../../scripts/license-header/bin --license ../../FILE-HEADER && yarn build && yarn build:types",
|
|
26
25
|
"stab": "mkdir -p dist && touch dist/index.js"
|
|
27
26
|
},
|
|
28
27
|
"files": [
|
|
29
|
-
"dist"
|
|
30
|
-
"umd"
|
|
28
|
+
"dist"
|
|
31
29
|
],
|
|
32
30
|
"dependencies": {
|
|
33
|
-
"@deck.gl-community/editable-layers": "9.3.
|
|
31
|
+
"@deck.gl-community/editable-layers": "9.3.8",
|
|
34
32
|
"@deck.gl/core": "^9.3.1",
|
|
35
33
|
"@deck.gl/react": "^9.3.1",
|
|
36
34
|
"@deck.gl/widgets": "^9.3.1",
|
|
@@ -42,21 +40,21 @@
|
|
|
42
40
|
"@floating-ui/react": "^0.27.0",
|
|
43
41
|
"@hubble.gl/core": "2.0.0-alpha.4",
|
|
44
42
|
"@hubble.gl/react": "2.0.0-alpha.4",
|
|
45
|
-
"@kepler.gl/actions": "3.3.0-alpha.
|
|
46
|
-
"@kepler.gl/cloud-providers": "3.3.0-alpha.
|
|
47
|
-
"@kepler.gl/common-utils": "3.3.0-alpha.
|
|
48
|
-
"@kepler.gl/constants": "3.3.0-alpha.
|
|
49
|
-
"@kepler.gl/deckgl-layers": "3.3.0-alpha.
|
|
50
|
-
"@kepler.gl/effects": "3.3.0-alpha.
|
|
51
|
-
"@kepler.gl/layers": "3.3.0-alpha.
|
|
52
|
-
"@kepler.gl/localization": "3.3.0-alpha.
|
|
53
|
-
"@kepler.gl/processors": "3.3.0-alpha.
|
|
54
|
-
"@kepler.gl/reducers": "3.3.0-alpha.
|
|
55
|
-
"@kepler.gl/schemas": "3.3.0-alpha.
|
|
56
|
-
"@kepler.gl/styles": "3.3.0-alpha.
|
|
57
|
-
"@kepler.gl/table": "3.3.0-alpha.
|
|
58
|
-
"@kepler.gl/types": "3.3.0-alpha.
|
|
59
|
-
"@kepler.gl/utils": "3.3.0-alpha.
|
|
43
|
+
"@kepler.gl/actions": "3.3.0-alpha.5",
|
|
44
|
+
"@kepler.gl/cloud-providers": "3.3.0-alpha.5",
|
|
45
|
+
"@kepler.gl/common-utils": "3.3.0-alpha.5",
|
|
46
|
+
"@kepler.gl/constants": "3.3.0-alpha.5",
|
|
47
|
+
"@kepler.gl/deckgl-layers": "3.3.0-alpha.5",
|
|
48
|
+
"@kepler.gl/effects": "3.3.0-alpha.5",
|
|
49
|
+
"@kepler.gl/layers": "3.3.0-alpha.5",
|
|
50
|
+
"@kepler.gl/localization": "3.3.0-alpha.5",
|
|
51
|
+
"@kepler.gl/processors": "3.3.0-alpha.5",
|
|
52
|
+
"@kepler.gl/reducers": "3.3.0-alpha.5",
|
|
53
|
+
"@kepler.gl/schemas": "3.3.0-alpha.5",
|
|
54
|
+
"@kepler.gl/styles": "3.3.0-alpha.5",
|
|
55
|
+
"@kepler.gl/table": "3.3.0-alpha.5",
|
|
56
|
+
"@kepler.gl/types": "3.3.0-alpha.5",
|
|
57
|
+
"@kepler.gl/utils": "3.3.0-alpha.5",
|
|
60
58
|
"@lexical/link": "^0.9.0",
|
|
61
59
|
"@lexical/react": "^0.9.0",
|
|
62
60
|
"@lexical/selection": "^0.9.0",
|
|
@@ -67,6 +65,7 @@
|
|
|
67
65
|
"@mapbox/mapbox-sdk": "^0.15.3",
|
|
68
66
|
"@math.gl/web-mercator": "^4.1.0",
|
|
69
67
|
"@tippyjs/react": "^4.2.0",
|
|
68
|
+
"@turf/distance": "^7.2.0",
|
|
70
69
|
"@turf/helpers": "^7.2.0",
|
|
71
70
|
"@turf/transform-translate": "^7.2.0",
|
|
72
71
|
"@types/classnames": "^2.3.1",
|
|
@@ -88,7 +87,7 @@
|
|
|
88
87
|
"d3-array": "^2.8.0",
|
|
89
88
|
"d3-axis": "^2.0.0",
|
|
90
89
|
"d3-brush": "^2.1.0",
|
|
91
|
-
"d3-color": "^
|
|
90
|
+
"d3-color": "^3.1.0",
|
|
92
91
|
"d3-format": "^2.0.0",
|
|
93
92
|
"d3-scale": "^3.2.3",
|
|
94
93
|
"d3-selection": "^2.0.0",
|