azure-maps-control 3.0.2 → 3.0.3
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/ReadMe.md +2 -2
- package/dist/atlas-core-bare-snr-min.js +1 -1
- package/dist/atlas-core-bare-snr.js +23 -3
- package/dist/atlas-core-bare.js +41 -20
- package/dist/atlas-core-bare.min.js +1 -1
- package/dist/atlas-core-snr.js +632 -221
- package/dist/atlas-core.js +650 -238
- package/dist/atlas-core.min.js +4 -4
- package/dist/atlas-esm.js +117160 -0
- package/dist/atlas-esm.min.js +108 -0
- package/dist/atlas.js +650 -238
- package/dist/atlas.min.js +4 -4
- package/package.json +5 -3
- package/thirdpartynotices.txt +0 -0
- package/typings/index.d.ts +2 -2
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "azure-maps-control",
|
|
3
3
|
"author": "Microsoft Corporation",
|
|
4
|
-
"version": "3.0.
|
|
4
|
+
"version": "3.0.3",
|
|
5
5
|
"description": "Map SDK for Azure Maps",
|
|
6
6
|
"keywords": [
|
|
7
7
|
"azure",
|
|
@@ -53,7 +53,7 @@
|
|
|
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.
|
|
56
|
+
"azuremaps-maplibre-gl": "^3.6.1",
|
|
57
57
|
"canvas": "^2.10.2",
|
|
58
58
|
"es-abstract": "^1.20.1",
|
|
59
59
|
"eslint": "^8.39.0",
|
|
@@ -85,6 +85,7 @@
|
|
|
85
85
|
"yargs": "^17.7.2"
|
|
86
86
|
},
|
|
87
87
|
"overrides": {
|
|
88
|
+
"@babel/core": "7.23.2",
|
|
88
89
|
"rollup": "^3.28.0"
|
|
89
90
|
},
|
|
90
91
|
"license": "SEE LICENSE IN LICENSE.TXT",
|
|
@@ -94,5 +95,6 @@
|
|
|
94
95
|
"thirdpartynotices.txt"
|
|
95
96
|
],
|
|
96
97
|
"types": "./typings/index.d.ts",
|
|
97
|
-
"main": "./dist/atlas.min.js"
|
|
98
|
+
"main": "./dist/atlas.min.js",
|
|
99
|
+
"module": "./dist/atlas-esm.min.js"
|
|
98
100
|
}
|
package/thirdpartynotices.txt
CHANGED
|
Binary file
|
package/typings/index.d.ts
CHANGED
|
@@ -4773,8 +4773,8 @@ declare namespace atlas {
|
|
|
4773
4773
|
*/
|
|
4774
4774
|
styleAPIVersion?: string;
|
|
4775
4775
|
/**
|
|
4776
|
-
* Enable accessibility
|
|
4777
|
-
*
|
|
4776
|
+
* Enable the accessibility feature to provide screen reader support for users who have difficulty visualizing the web application.
|
|
4777
|
+
* This property is set to true by default.
|
|
4778
4778
|
* @default true
|
|
4779
4779
|
*/
|
|
4780
4780
|
enableAccessibility?: boolean;
|