@eeacms/volto-arcgis-block 0.1.443 → 0.1.444

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.444](https://github.com/eea/volto-arcgis-block/compare/0.1.443...0.1.444) - 17 April 2026
8
+
7
9
  ### [0.1.443](https://github.com/eea/volto-arcgis-block/compare/0.1.442...0.1.443) - 10 April 2026
8
10
 
9
11
  ### [0.1.442](https://github.com/eea/volto-arcgis-block/compare/0.1.441...0.1.442) - 9 April 2026
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@eeacms/volto-arcgis-block",
3
- "version": "0.1.443",
3
+ "version": "0.1.444",
4
4
  "description": "volto-arcgis-block: Volto add-on",
5
5
  "main": "src/index.js",
6
6
  "author": "European Environment Agency: CodeSyntax",
@@ -4471,7 +4471,10 @@ class MenuWidget extends React.Component {
4471
4471
  .DatasetDownloadInformation,
4472
4472
  customLayerParameters: {
4473
4473
  SHOWLOGO: false,
4474
- TIME: payload.dates[payload.dates.length - 1] || '',
4474
+ TIME:
4475
+ payload.dates[payload.dates.length - 1] +
4476
+ '/' +
4477
+ payload.dates[payload.dates.length - 1] || '',
4475
4478
  },
4476
4479
  });
4477
4480
  }
@@ -347,6 +347,8 @@ class TimesliderWidget extends React.Component {
347
347
  SHOWLOGO: false,
348
348
  };
349
349
  this.layer.customLayerParameters['TIME'] =
350
+ timeDict[this.TimesliderWidget.timeExtent.end] +
351
+ '/' +
350
352
  timeDict[this.TimesliderWidget.timeExtent.end];
351
353
  } else {
352
354
  this.layer.customLayerParameters = {};
@@ -636,6 +638,8 @@ class TimesliderWidget extends React.Component {
636
638
  if (this.layer.type === 'wmts') {
637
639
  this.layer.customLayerParameters = {};
638
640
  this.layer.customLayerParameters['TIME'] =
641
+ timeDict[this.TimesliderWidget.timeExtent.end] +
642
+ '/' +
639
643
  timeDict[this.TimesliderWidget.timeExtent.end];
640
644
  } else {
641
645
  this.layer.customLayerParameters = {};