@syncfusion/ej2-maps 20.3.47 → 20.3.49
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 -0
- package/dist/ej2-maps.min.js +2 -2
- package/dist/ej2-maps.umd.min.js +2 -2
- package/dist/ej2-maps.umd.min.js.map +1 -1
- package/dist/es6/ej2-maps.es2015.js +12 -10
- package/dist/es6/ej2-maps.es2015.js.map +1 -1
- package/dist/es6/ej2-maps.es5.js +12 -10
- package/dist/es6/ej2-maps.es5.js.map +1 -1
- package/dist/global/ej2-maps.min.js +2 -2
- package/dist/global/ej2-maps.min.js.map +1 -1
- package/dist/global/index.d.ts +1 -1
- package/package.json +7 -7
- package/src/maps/layers/data-label.js +4 -4
- package/src/maps/layers/legend.js +4 -3
- package/src/maps/maps.js +1 -1
- package/src/maps/utils/helper.js +3 -2
package/CHANGELOG.md
CHANGED
|
@@ -10,6 +10,14 @@
|
|
|
10
10
|
|
|
11
11
|
### Maps
|
|
12
12
|
|
|
13
|
+
#### Bug Fixes
|
|
14
|
+
|
|
15
|
+
- `#I408673` - Data labels will now render properly when the values from `shapeDataPath` and `shapePropertyPath` are numbers.
|
|
16
|
+
|
|
17
|
+
## 20.3.47 (2022-09-29)
|
|
18
|
+
|
|
19
|
+
### Maps
|
|
20
|
+
|
|
13
21
|
#### Breaking Changes
|
|
14
22
|
|
|
15
23
|
- The `click` event is deprecated because it is triggered twice in the Angular application. The reason for this is that in Angular, the native `click` event is triggered first, followed by the `click` event available on Maps. To address this, we introduced a `onclick` event for the same functionality, which will now only trigger once.
|