@carto/api-client 0.5.2-alpha.1 → 0.5.2
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/CHANGELOG.md +8 -1
- package/build/api-client.cjs +28 -5426
- package/build/api-client.cjs.map +1 -1
- package/build/api-client.d.cts +28 -1
- package/build/api-client.d.ts +28 -1
- package/build/api-client.js +86 -5487
- package/build/api-client.js.map +1 -1
- package/package.json +4 -5
- package/src/fetch-map/layer-map.ts +14 -9
- package/src/fetch-map/parse-map.ts +1 -1
- package/src/fetch-map/utils.ts +18 -0
- package/src/sources/base-source.ts +5 -2
- package/src/sources/types.ts +5 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,13 @@
|
|
|
2
2
|
|
|
3
3
|
## 0.5
|
|
4
4
|
|
|
5
|
+
### 0.5.2
|
|
6
|
+
|
|
7
|
+
- feat(filters): Export getApplicableFilters (#162)
|
|
8
|
+
- fix(fetchmap): Bug fixes (#161, #163)
|
|
9
|
+
- fix(widgets): Fix error computing min/max for large datasets (#164)
|
|
10
|
+
- chore(build): Improve package compatibility (#158, #160)
|
|
11
|
+
|
|
5
12
|
### 0.5.1
|
|
6
13
|
|
|
7
14
|
- chore(types): Cleanup for tilesets, rasters, and backward-compatibility (#150)
|
|
@@ -18,7 +25,7 @@
|
|
|
18
25
|
|
|
19
26
|
### 0.4.10
|
|
20
27
|
|
|
21
|
-
- Add fetchMap
|
|
28
|
+
- feat: Add fetchMap() (#126, #132, #133, #135, #136, #137, #138, #139)
|
|
22
29
|
- chore(widgets,deps): Clean up dataResolution references, examples, deps (#134)
|
|
23
30
|
|
|
24
31
|
### 0.4.9
|