@eeacms/volto-arcgis-block 0.1.379 → 0.1.380

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,10 +4,13 @@ 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.380](https://github.com/eea/volto-arcgis-block/compare/0.1.379...0.1.380) - 20 August 2025
8
+
7
9
  ### [0.1.379](https://github.com/eea/volto-arcgis-block/compare/0.1.378...0.1.379) - 11 August 2025
8
10
 
9
11
  #### :hammer_and_wrench: Others
10
12
 
13
+ - Merge pull request #999 from eea/develop [Unai Bolivar - [`f5b976f`](https://github.com/eea/volto-arcgis-block/commit/f5b976fdc7e5568973e7db87c29c05f8fe2abcbd)]
11
14
  - Merge pull request #998 from eea/CLMS-LOCAL-STORAGE-ISSUES-REFACTOR-CLEAN [Unai Bolivar - [`3b84fbd`](https://github.com/eea/volto-arcgis-block/commit/3b84fbd1cc3706976cc746a95c6885da7a746e22)]
12
15
  - (lint): cleared console statements [Unai Bolivar - [`f6d649d`](https://github.com/eea/volto-arcgis-block/commit/f6d649d51d9254a250e49ca31b83bc4cc8c6b30a)]
13
16
  - (bug): implemented safe store and recall for all user data in mapviewer fix [Unai Bolivar - [`a0491a7`](https://github.com/eea/volto-arcgis-block/commit/a0491a7bbeffdcd527eabc91b716757d680ea5d3)]
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@eeacms/volto-arcgis-block",
3
- "version": "0.1.379",
3
+ "version": "0.1.380",
4
4
  "description": "volto-arcgis-block: Volto add-on",
5
5
  "main": "src/index.js",
6
6
  "author": "European Environment Agency: CodeSyntax",
@@ -1093,7 +1093,6 @@ class MenuWidget extends React.Component {
1093
1093
  let button = familyDropdown.querySelector(
1094
1094
  '.ccl-expandable__button',
1095
1095
  );
1096
- scrollPosition = familyDropdown.offsetTop;
1097
1096
  if (button) {
1098
1097
  button.setAttribute('aria-expanded', 'true');
1099
1098
  }
@@ -1107,6 +1106,9 @@ class MenuWidget extends React.Component {
1107
1106
  button.setAttribute('aria-expanded', 'true');
1108
1107
  }
1109
1108
  }
1109
+ if (familyDropdown) {
1110
+ scrollPosition = familyDropdown.offsetTop;
1111
+ }
1110
1112
  let mapMenu = node.closest('.map-menu-dataset-dropdown');
1111
1113
  if (mapMenu) {
1112
1114
  scrollPosition = mapMenu.offsetTop;