azure-maps-control 3.1.1 → 3.1.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/dist/atlas-core-bare-snr-min.js +1 -1
- package/dist/atlas-core-bare-snr.js +27 -6
- package/dist/atlas-core-bare.js +27 -6
- package/dist/atlas-core-bare.min.js +1 -1
- package/dist/atlas-core-snr.js +27 -6
- package/dist/atlas-core.js +27 -6
- package/dist/atlas-core.min.js +1 -1
- package/dist/atlas-esm.js +27 -6
- package/dist/atlas-esm.min.js +1 -1
- package/dist/atlas.css +3 -2
- package/dist/atlas.js +27 -6
- package/dist/atlas.min.css +1 -1
- package/dist/atlas.min.js +1 -1
- package/package.json +3 -3
- package/typings/index.d.ts +6 -1
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.
|
|
4
|
+
"version": "3.1.2",
|
|
5
5
|
"description": "Map SDK for Azure Maps",
|
|
6
6
|
"keywords": [
|
|
7
7
|
"azure",
|
|
@@ -41,7 +41,7 @@
|
|
|
41
41
|
"devDependencies": {
|
|
42
42
|
"@mapbox/mapbox-gl-rtl-text": "^0.2.3",
|
|
43
43
|
"@microsoft/applicationinsights-web": "^3.0.7",
|
|
44
|
-
"@playwright/test": "^1.
|
|
44
|
+
"@playwright/test": "^1.41.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",
|
|
@@ -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.
|
|
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",
|
package/typings/index.d.ts
CHANGED
|
@@ -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
|
/**
|