@kepler.gl/constants 3.2.6 → 3.3.0-alpha.1
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/annotation.d.ts +23 -0
- package/dist/annotation.js +45 -0
- package/dist/color-palettes.d.ts +5 -5
- package/dist/dataset.d.ts +35 -7
- package/dist/dataset.js +36 -2
- package/dist/default-settings.d.ts +39 -13
- package/dist/default-settings.js +218 -9
- package/dist/gpu-parameters.d.ts +78 -0
- package/dist/gpu-parameters.js +125 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.js +25 -1
- package/dist/layers.d.ts +5 -1
- package/dist/layers.js +60 -3
- package/dist/time.d.ts +2 -2
- package/dist/tooltip.d.ts +1 -1
- package/dist/user-guides.d.ts +4 -4
- package/package.json +7 -5
- package/umd/keplergl.min.js +2 -2
package/dist/user-guides.d.ts
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
export declare const USER_GUIDE_DOC = "https://docs.kepler.gl/docs/user-guides";
|
|
2
2
|
export declare const ACTIONS_DOC = "https://docs.kepler.gl/docs/api-reference/actions/actions";
|
|
3
3
|
export declare const API_REFERENCE_DOC = "https://docs.kepler.gl/docs/api-reference";
|
|
4
|
-
export declare const EXPORT_HTML_MAP_DOC
|
|
5
|
-
export declare const ADD_DATA_TO_MAP_DOC
|
|
4
|
+
export declare const EXPORT_HTML_MAP_DOC = "https://docs.kepler.gl/docs/user-guides/k-save-and-export";
|
|
5
|
+
export declare const ADD_DATA_TO_MAP_DOC = "https://docs.kepler.gl/docs/api-reference/actions/actions#adddatatomap";
|
|
6
6
|
export declare const MAPBOX_ACCESS_TOKEN = "https://docs.mapbox.com/help/how-mapbox-works/access-tokens/";
|
|
7
|
-
export declare const EXPORT_HTML_MAP_MODES_DOC
|
|
8
|
-
export declare const GUIDES_FILE_FORMAT_DOC
|
|
7
|
+
export declare const EXPORT_HTML_MAP_MODES_DOC = "https://docs.kepler.gl/docs/user-guides/k-save-and-export#export-html-map";
|
|
8
|
+
export declare const GUIDES_FILE_FORMAT_DOC = "https://docs.kepler.gl/docs/user-guides/b-kepler-gl-workflow/a-add-data-to-the-map#supported-file-formats";
|
|
9
9
|
export declare const BUG_REPORT_LINK = "https://github.com/keplergl/kepler.gl/issues/new?assignees=&labels=bug&template=bug_report.md&title=%5BBug%5D";
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kepler.gl/constants",
|
|
3
3
|
"author": "Shan He <shan@uber.com>",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.3.0-alpha.1",
|
|
5
5
|
"description": "kepler.gl constants used by kepler.gl components, actions and reducers",
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"main": "dist/index.js",
|
|
@@ -30,7 +30,7 @@
|
|
|
30
30
|
"umd"
|
|
31
31
|
],
|
|
32
32
|
"dependencies": {
|
|
33
|
-
"@kepler.gl/types": "3.
|
|
33
|
+
"@kepler.gl/types": "3.3.0-alpha.1",
|
|
34
34
|
"@types/d3-scale": "^3.2.2",
|
|
35
35
|
"@types/keymirror": "^0.1.1",
|
|
36
36
|
"chroma-js": "2.1.2",
|
|
@@ -49,13 +49,15 @@
|
|
|
49
49
|
},
|
|
50
50
|
"maintainers": [
|
|
51
51
|
"Shan He <heshan0131@gmail.com>",
|
|
52
|
-
"Giuseppe Macri <gmacri@uber.com>"
|
|
52
|
+
"Giuseppe Macri <gmacri@uber.com>",
|
|
53
|
+
"Igor Dykhta <dikhta.igor@gmail.com>",
|
|
54
|
+
"Xun Li <lixun910@gmail.com>"
|
|
53
55
|
],
|
|
54
56
|
"engines": {
|
|
55
|
-
"node": ">=
|
|
57
|
+
"node": ">=20"
|
|
56
58
|
},
|
|
57
59
|
"volta": {
|
|
58
|
-
"node": "
|
|
60
|
+
"node": "20.19.3",
|
|
59
61
|
"yarn": "4.4.0"
|
|
60
62
|
},
|
|
61
63
|
"packageManager": "yarn@4.4.0",
|