@eeacms/volto-arcgis-block 0.1.144 → 0.1.145
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
CHANGED
|
@@ -4,6 +4,11 @@ All notable changes to this project will be documented in this file. Dates are d
|
|
|
4
4
|
|
|
5
5
|
Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).
|
|
6
6
|
|
|
7
|
+
### [0.1.145](https://github.com/eea/volto-arcgis-block/compare/0.1.144...0.1.145) - 16 May 2023
|
|
8
|
+
|
|
9
|
+
#### :hammer_and_wrench: Others
|
|
10
|
+
|
|
11
|
+
- CLMS-2146 (fix): Hotspot widget no longer opens up automatically when a hotpost layer is checked. Hotspot container button appears when selecting any of the 4 hotspot layers. Ran linting scripts. [ujbolivar - [`b726561`](https://github.com/eea/volto-arcgis-block/commit/b726561fa1784492441640521d1a68fcd3148d10)]
|
|
7
12
|
### [0.1.144](https://github.com/eea/volto-arcgis-block/compare/0.1.143...0.1.144) - 15 May 2023
|
|
8
13
|
|
|
9
14
|
#### :hammer_and_wrench: Others
|
package/package.json
CHANGED
|
@@ -1655,7 +1655,7 @@ class MenuWidget extends React.Component {
|
|
|
1655
1655
|
delete this.timeLayers[elem.id];
|
|
1656
1656
|
}
|
|
1657
1657
|
this.updateCheckDataset(parentId);
|
|
1658
|
-
this.toggleHotspotWidget();
|
|
1658
|
+
//this.toggleHotspotWidget();
|
|
1659
1659
|
this.layersReorder();
|
|
1660
1660
|
this.checkInfoWidget();
|
|
1661
1661
|
// toggle custom legend for WMTS and TMS
|
|
@@ -3096,7 +3096,9 @@ class MenuWidget extends React.Component {
|
|
|
3096
3096
|
if (
|
|
3097
3097
|
/* layer.visible && */
|
|
3098
3098
|
key.includes('all_present_lc_a_pol') ||
|
|
3099
|
-
key.includes('
|
|
3099
|
+
key.includes('all_present_lc_b_pol') ||
|
|
3100
|
+
key.includes('all_lcc_a_pol') ||
|
|
3101
|
+
key.includes('all_lcc_b_pol')
|
|
3100
3102
|
) {
|
|
3101
3103
|
hotspotLayers.push(layer);
|
|
3102
3104
|
}
|