@eeacms/volto-arcgis-block 0.1.347 → 0.1.349
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,15 @@ 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.349](https://github.com/eea/volto-arcgis-block/compare/0.1.348...0.1.349) - 7 April 2025
|
|
8
|
+
|
|
9
|
+
### [0.1.348](https://github.com/eea/volto-arcgis-block/compare/0.1.347...0.1.348) - 3 April 2025
|
|
10
|
+
|
|
7
11
|
### [0.1.347](https://github.com/eea/volto-arcgis-block/compare/0.1.346...0.1.347) - 2 April 2025
|
|
8
12
|
|
|
9
13
|
#### :hammer_and_wrench: Others
|
|
10
14
|
|
|
15
|
+
- Merge pull request #923 from eea/develop [Unai Bolivar - [`8073c9e`](https://github.com/eea/volto-arcgis-block/commit/8073c9efeb07111d95eb0abdfc55738339590cbc)]
|
|
11
16
|
- CLMS-282464 (feat): package.json second modify [Urkorue - [`1677d0a`](https://github.com/eea/volto-arcgis-block/commit/1677d0ac1577f04578258c4158acb5d2de9bb071)]
|
|
12
17
|
- CLMS-282464 (feat): package.json modified [Urkorue - [`02fcba4`](https://github.com/eea/volto-arcgis-block/commit/02fcba4787d9cd838cb62acaf37802cf17e92569)]
|
|
13
18
|
- CLMS-282464 (feat): Family filter added [Urkorue - [`61268f3`](https://github.com/eea/volto-arcgis-block/commit/61268f3bb623260a559401f428f2dff913c84515)]
|
package/package.json
CHANGED
|
@@ -4743,7 +4743,7 @@ class MenuWidget extends React.Component {
|
|
|
4743
4743
|
hasFamily = true;
|
|
4744
4744
|
element.children.forEach((child) => {
|
|
4745
4745
|
selectedFamily.options.add(
|
|
4746
|
-
new Option(child.title, child.
|
|
4746
|
+
new Option(child.title, child.key, child.key),
|
|
4747
4747
|
);
|
|
4748
4748
|
});
|
|
4749
4749
|
}
|
|
@@ -4816,7 +4816,7 @@ class MenuWidget extends React.Component {
|
|
|
4816
4816
|
searchText === '' &&
|
|
4817
4817
|
componentFilter === 'default' &&
|
|
4818
4818
|
productFilter === 'default' &&
|
|
4819
|
-
familyFilter === 'default'
|
|
4819
|
+
(familyFilter === 'default' || familyFilter === '')
|
|
4820
4820
|
) {
|
|
4821
4821
|
this.filtersApplied = false;
|
|
4822
4822
|
componentFound = true;
|
|
@@ -4846,7 +4846,8 @@ class MenuWidget extends React.Component {
|
|
|
4846
4846
|
componentFilter ||
|
|
4847
4847
|
componentFilter === 'default') &&
|
|
4848
4848
|
(dataset?.FamilyTitle === familyFilter ||
|
|
4849
|
-
familyFilter === 'default'
|
|
4849
|
+
familyFilter === 'default' ||
|
|
4850
|
+
familyFilter === ''))
|
|
4850
4851
|
) {
|
|
4851
4852
|
this.filtersApplied = true;
|
|
4852
4853
|
componentFound = true;
|