@eeacms/volto-arcgis-block 0.1.375 → 0.1.376
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,8 @@ 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.376](https://github.com/eea/volto-arcgis-block/compare/0.1.375...0.1.376) - 17 July 2025
|
|
8
|
+
|
|
7
9
|
### [0.1.375](https://github.com/eea/volto-arcgis-block/compare/0.1.374...0.1.375) - 14 July 2025
|
|
8
10
|
|
|
9
11
|
### [0.1.374](https://github.com/eea/volto-arcgis-block/compare/0.1.373...0.1.374) - 9 July 2025
|
package/package.json
CHANGED
|
@@ -155,6 +155,7 @@ class AreaWidget extends React.Component {
|
|
|
155
155
|
});
|
|
156
156
|
this.props.uploadFileHandler(true);
|
|
157
157
|
this.clearWidget();
|
|
158
|
+
document.querySelector('.coordinateWindow').style.display = 'none';
|
|
158
159
|
this.removeFileUploadedLayer();
|
|
159
160
|
this.container.current.querySelector(
|
|
160
161
|
'#download_area_select_nuts0',
|
|
@@ -234,6 +235,18 @@ class AreaWidget extends React.Component {
|
|
|
234
235
|
document.querySelector('.coordinateWindow').style.display = 'block';
|
|
235
236
|
} else {
|
|
236
237
|
document.querySelector('.coordinateWindow').style.display = 'none';
|
|
238
|
+
if (document.getElementById('menu-north')) {
|
|
239
|
+
document.getElementById('menu-north').value = null;
|
|
240
|
+
}
|
|
241
|
+
if (document.getElementById('menu-south')) {
|
|
242
|
+
document.getElementById('menu-south').value = null;
|
|
243
|
+
}
|
|
244
|
+
if (document.getElementById('menu-east')) {
|
|
245
|
+
document.getElementById('menu-east').value = null;
|
|
246
|
+
}
|
|
247
|
+
if (document.getElementById('menu-west')) {
|
|
248
|
+
document.getElementById('menu-west').value = null;
|
|
249
|
+
}
|
|
237
250
|
}
|
|
238
251
|
}
|
|
239
252
|
nuts0handler(e) {
|
|
@@ -1059,6 +1072,7 @@ class AreaWidget extends React.Component {
|
|
|
1059
1072
|
infoPopupType: 'download',
|
|
1060
1073
|
});
|
|
1061
1074
|
this.props.uploadFileHandler(true);
|
|
1075
|
+
this.closeCoordinates();
|
|
1062
1076
|
}
|
|
1063
1077
|
this.props.updateArea({
|
|
1064
1078
|
origin: {
|