@eeacms/volto-cca-policy 0.2.90 → 0.2.91

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,11 @@ 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.2.91](https://github.com/eea/volto-cca-policy/compare/0.2.90...0.2.91) - 8 January 2025
8
+
9
+ #### :hammer_and_wrench: Others
10
+
11
+ - Add include_archived facet [Tiberiu Ichim - [`376681d`](https://github.com/eea/volto-cca-policy/commit/376681d7f7d7bba1925cf5454504d2139853df66)]
7
12
  ### [0.2.90](https://github.com/eea/volto-cca-policy/compare/0.2.89...0.2.90) - 8 January 2025
8
13
 
9
14
  #### :rocket: New Features
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@eeacms/volto-cca-policy",
3
- "version": "0.2.90",
3
+ "version": "0.2.91",
4
4
  "description": "@eeacms/volto-cca-policy: Volto add-on",
5
5
  "main": "src/index.js",
6
6
  "author": "European Environment Agency: IDM2 A-Team",
@@ -3,6 +3,7 @@ import { multiTermFacet } from '@eeacms/search';
3
3
  import globalSearchBaseConfig from '@eeacms/volto-globalsearch/config/global-search-base-config.js';
4
4
 
5
5
  import {
6
+ include_archived,
6
7
  cca_climate_impacts,
7
8
  cca_adaptation_sectors,
8
9
  language,
@@ -47,6 +48,7 @@ const facets = [
47
48
  alwaysVisible: false,
48
49
  }),
49
50
  language,
51
+ include_archived,
50
52
  ...globalSearchBaseConfig.facets.filter((f) => f.field !== 'language'),
51
53
  ];
52
54