@eeacms/volto-arcgis-block 0.1.451 → 0.1.452
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.452](https://github.com/eea/volto-arcgis-block/compare/0.1.451...0.1.452) - 28 May 2026
|
|
8
|
+
|
|
7
9
|
### [0.1.451](https://github.com/eea/volto-arcgis-block/compare/0.1.450...0.1.451) - 21 May 2026
|
|
8
10
|
|
|
9
11
|
### [0.1.450](https://github.com/eea/volto-arcgis-block/compare/0.1.449...0.1.450) - 13 May 2026
|
package/package.json
CHANGED
|
@@ -5156,13 +5156,17 @@ class MenuWidget extends React.Component {
|
|
|
5156
5156
|
datasetChecks.forEach((element) => {
|
|
5157
5157
|
if (element) {
|
|
5158
5158
|
element.checked = value;
|
|
5159
|
-
|
|
5159
|
+
if (element.id.includes('family')) {
|
|
5160
|
+
this.toggleFamily(value, element.id, element);
|
|
5161
|
+
} else {
|
|
5162
|
+
this.toggleDataset(value, element.id, element);
|
|
5163
|
+
}
|
|
5160
5164
|
}
|
|
5161
5165
|
});
|
|
5162
5166
|
}
|
|
5163
5167
|
|
|
5164
5168
|
toggleFamily(value, id, element) {
|
|
5165
|
-
let familyDefCheck = element.
|
|
5169
|
+
let familyDefCheck = element.getAttribute('defcheck');
|
|
5166
5170
|
let splitdefCheck = familyDefCheck.split(',');
|
|
5167
5171
|
|
|
5168
5172
|
let datasetChecks = [];
|