@eeacms/volto-arcgis-block 0.1.388 → 0.1.389

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,12 @@ 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.389](https://github.com/eea/volto-arcgis-block/compare/0.1.388...0.1.389) - 18 September 2025
8
+
9
+ #### :hammer_and_wrench: Others
10
+
11
+ - Merge pull request #1018 from eea/CLMS-291307-ADAPT-DATA-VIEWER-TIME-SLIDER-FOR-CDSE-TIME-SERIES-DATASETS [Unai Bolivar - [`da9c70f`](https://github.com/eea/volto-arcgis-block/commit/da9c70f56b030432f95b07487775be947d6c668c)]
12
+ - (bug): time slider widget turns off logo for cdse tiles [Unai Bolivar - [`555b466`](https://github.com/eea/volto-arcgis-block/commit/555b466b3fe54ca44a20c97102846651d825f7ef)]
7
13
  ### [0.1.388](https://github.com/eea/volto-arcgis-block/compare/0.1.387...0.1.388) - 17 September 2025
8
14
 
9
15
  #### :hammer_and_wrench: Others
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@eeacms/volto-arcgis-block",
3
- "version": "0.1.388",
3
+ "version": "0.1.389",
4
4
  "description": "volto-arcgis-block: Volto add-on",
5
5
  "main": "src/index.js",
6
6
  "author": "European Environment Agency: CodeSyntax",
@@ -3850,7 +3850,6 @@ class MenuWidget extends React.Component {
3850
3850
  } else {
3851
3851
  this.url = serviceLayer.ViewService;
3852
3852
  }
3853
- // const isCDSE = !!this.url && this.url.toLowerCase().includes('/ogc/');
3854
3853
  const isCDSE =
3855
3854
  !!this.url &&
3856
3855
  ['/ogc/', '/cdse/'].some((s) => this.url.toLowerCase().includes(s));
@@ -384,7 +384,9 @@ class TimesliderWidget extends React.Component {
384
384
  };
385
385
 
386
386
  if (this.layer.type === 'wmts') {
387
- this.layer.customLayerParameters = {};
387
+ this.layer.customLayerParameters = {
388
+ SHOWLOGO: false,
389
+ };
388
390
  const time = times[this.layerName].array.map(
389
391
  (d) => new Date(d),
390
392
  );
@@ -426,7 +428,9 @@ class TimesliderWidget extends React.Component {
426
428
  this.TimesliderWidget.stop();
427
429
  }
428
430
  if (this.layer.type === 'wmts') {
429
- this.layer.customLayerParameters = {};
431
+ this.layer.customLayerParameters = {
432
+ SHOWLOGO: false,
433
+ };
430
434
  this.layer.customLayerParameters['TIME'] =
431
435
  timeDict[this.TimesliderWidget.timeExtent.end];
432
436
  } else {