azure-maps-control 3.1.1 → 3.2.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/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "azure-maps-control",
3
3
  "author": "Microsoft Corporation",
4
- "version": "3.1.1",
4
+ "version": "3.2.0",
5
5
  "description": "Map SDK for Azure Maps",
6
6
  "keywords": [
7
7
  "azure",
@@ -36,27 +36,27 @@
36
36
  "dependencies": {
37
37
  "@azure/msal-browser": "^2.32.1",
38
38
  "@mapbox/mapbox-gl-supported": "^2.0.1",
39
- "@maplibre/maplibre-gl-style-spec": "^19.3.0"
39
+ "@maplibre/maplibre-gl-style-spec": "^20.0.0"
40
40
  },
41
41
  "devDependencies": {
42
42
  "@mapbox/mapbox-gl-rtl-text": "^0.2.3",
43
- "@microsoft/applicationinsights-web": "^3.0.7",
44
- "@playwright/test": "^1.40.0",
43
+ "@microsoft/applicationinsights-web": "^3.1.1",
44
+ "@playwright/test": "^1.42.1",
45
45
  "@rollup/plugin-commonjs": "^25.0.4",
46
46
  "@rollup/plugin-json": "^6.0.0",
47
47
  "@rollup/plugin-node-resolve": "^15.1.0",
48
- "@testing-library/dom": "^9.3.1",
48
+ "@testing-library/dom": "^9.3.3",
49
49
  "@turf/intersect": "^6.3.0",
50
50
  "@types/jest": "^29.5.3",
51
51
  "@types/jwt-decode": "^3.0.0",
52
- "@types/lodash": "4.14.202",
52
+ "@types/lodash": "4.17.0",
53
53
  "@typescript-eslint/eslint-plugin": "^6.4.0",
54
54
  "@typescript-eslint/parser": "^6.4.0",
55
55
  "atob": "^2.1.2",
56
- "azuremaps-maplibre-gl": "^3.6.1",
56
+ "azuremaps-maplibre-gl": "^4.0.2",
57
57
  "canvas": "^2.10.2",
58
58
  "es-abstract": "^1.22.1",
59
- "eslint": "^8.55.0",
59
+ "eslint": "^8.56.0",
60
60
  "eslint-plugin-security": "^1.5.0",
61
61
  "estree-walker": "^3.0.0",
62
62
  "fs-extra": "^11.0.0",
@@ -77,7 +77,7 @@
77
77
  "rollup-plugin-sourcemaps": "^0.6.3",
78
78
  "rollup-plugin-uglify": "^6.0.4",
79
79
  "simplify-ts": "^1.0.2",
80
- "ts-jest": "^29.0.0",
80
+ "ts-jest": "^29.1.1",
81
81
  "ts-node": "^10.0.0",
82
82
  "typescript": "^5.0.0",
83
83
  "utf-8-validate": "^6.0.0",
@@ -85,7 +85,7 @@
85
85
  "yargs": "^17.7.2"
86
86
  },
87
87
  "overrides": {
88
- "@babel/core": "7.23.3",
88
+ "@babel/core": "7.24.0",
89
89
  "rollup": "^3.28.0"
90
90
  },
91
91
  "license": "SEE LICENSE IN LICENSE.TXT",
Binary file
@@ -3426,11 +3426,16 @@ declare namespace atlas {
3426
3426
  * @default 0.5
3427
3427
  */
3428
3428
  fillOpacity?: number | DataDrivenPropertyValueSpecification<number>;
3429
-
3430
3429
  /**
3431
3430
  * Name of image in sprite to use for drawing image fills. For seamless patterns, image width must be a factor of two (2, 4, 8, ..., 512).
3432
3431
  */
3433
3432
  fillPattern?: string | DataDrivenPropertyValueSpecification<string>;
3433
+ /**
3434
+ * Whether or not the fill should be antialiased.
3435
+ * Default `true`.
3436
+ * @default true
3437
+ */
3438
+ fillAntialias?: boolean;
3434
3439
  }
3435
3440
 
3436
3441
  /**
@@ -4333,8 +4338,8 @@ declare namespace atlas {
4333
4338
  /**
4334
4339
  * An offset in pixels to move the popup relative to the markers center.
4335
4340
  * Negatives indicate left and up.
4336
- * default `[0, -18]`
4337
- * @default [0, -18]
4341
+ * default `[0, 0]`
4342
+ * @default [0, 0]
4338
4343
  */
4339
4344
  pixelOffset?: atlas.Pixel;
4340
4345
  /**