@eeacms/volto-n2k 1.1.10 → 1.1.12

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,7 +4,14 @@ 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
- ### [1.1.10](https://github.com/eea/volto-n2k/compare/1.1.9...1.1.10) - 1 December 2025
7
+ ### [1.1.12](https://github.com/eea/volto-n2k/compare/1.1.11...1.1.12) - 27 January 2026
8
+
9
+ #### :hammer_and_wrench: Others
10
+
11
+ - rename lables for habitats priority [Claudia Ifrim - [`6822840`](https://github.com/eea/volto-n2k/commit/6822840653c41117dbbc3dae4c3a626c8ce69309)]
12
+ ### [1.1.11](https://github.com/eea/volto-n2k/compare/1.1.10...1.1.11) - 27 January 2026
13
+
14
+ ### [1.1.10](https://github.com/eea/volto-n2k/compare/1.1.9...1.1.10) - 2 December 2025
8
15
 
9
16
  #### :house: Internal changes
10
17
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@eeacms/volto-n2k",
3
- "version": "1.1.10",
3
+ "version": "1.1.12",
4
4
  "description": "volto-n2k: Volto add-on",
5
5
  "main": "src/index.js",
6
6
  "author": "European Environment Agency: IDM2 A-Team",
@@ -60,10 +60,10 @@ const ViewComponent = (props) => {
60
60
  return 'Conditional priority';
61
61
  }
62
62
  if (priority === null) {
63
- return 'Without priority';
63
+ return '';
64
64
  }
65
65
  if (priority === 1) {
66
- return 'With priority';
66
+ return 'Priority habitat';
67
67
  }
68
68
  }, [habitat_prioriy]);
69
69
 
@@ -96,7 +96,7 @@ div#view .site-habitats-list .habitats-list .ui.container > * {
96
96
  background-color: #fff !important;
97
97
 
98
98
  &.right.visible {
99
- z-index: 800;
99
+ z-index: 2000;
100
100
  box-shadow: 0px 0px 13px -5px #000000;
101
101
  }
102
102