@eeacms/volto-arcgis-block 0.1.408 → 0.1.409

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,21 @@ 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.409](https://github.com/eea/volto-arcgis-block/compare/0.1.408...0.1.409) - 20 November 2025
8
+
9
+ #### :hammer_and_wrench: Others
10
+
11
+ - Merge pull request #1059 from eea/CLMS-293228 [Unai Bolivar - [`b4b62d5`](https://github.com/eea/volto-arcgis-block/commit/b4b62d570f56f4264417e83612c10e7beae3c3ca)]
12
+ - (bug): change font sizes for titles final [Unai Bolivar - [`083bf44`](https://github.com/eea/volto-arcgis-block/commit/083bf44f0e8024350f21b6fda30abb26ed54513b)]
13
+ - (bug): change font sizes for titles again [Unai Bolivar - [`bc267fe`](https://github.com/eea/volto-arcgis-block/commit/bc267fe92dba4b319d1225217d88b0a30c9a3554)]
14
+ - (bug): change font styles again [Unai Bolivar - [`a4a39f3`](https://github.com/eea/volto-arcgis-block/commit/a4a39f3b039e11b1385a37f70ceccf10d129f8dd)]
15
+ - (bug): change active layers title [Unai Bolivar - [`b2d96f2`](https://github.com/eea/volto-arcgis-block/commit/b2d96f210c9388e99adac6ddf6bfd3377907cd3f)]
16
+ - (bug): fixing font styles [Unai Bolivar - [`af1393c`](https://github.com/eea/volto-arcgis-block/commit/af1393c360de05fa09850b9b929a04ce619c9066)]
7
17
  ### [0.1.408](https://github.com/eea/volto-arcgis-block/compare/0.1.407...0.1.408) - 19 November 2025
8
18
 
9
19
  #### :hammer_and_wrench: Others
10
20
 
21
+ - Merge pull request #1058 from eea/develop [Unai Bolivar - [`715204e`](https://github.com/eea/volto-arcgis-block/commit/715204e198fa67a71766f5f315bb4062f2c86a25)]
11
22
  - (bug): Fixed child node dissappearing errors that crash the data viewer [Unai Bolivar - [`d2d3503`](https://github.com/eea/volto-arcgis-block/commit/d2d3503371e90f50668964d0771be7de7ca3e447)]
12
23
  - (feat): redid the titles produced for the error report [Unai Bolivar - [`08cd2bc`](https://github.com/eea/volto-arcgis-block/commit/08cd2bc75843b7313c54cffecd1b1c637ee2ab23)]
13
24
  ### [0.1.407](https://github.com/eea/volto-arcgis-block/compare/0.1.406...0.1.407) - 19 November 2025
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@eeacms/volto-arcgis-block",
3
- "version": "0.1.408",
3
+ "version": "0.1.409",
4
4
  "description": "volto-arcgis-block: Volto add-on",
5
5
  "main": "src/index.js",
6
6
  "author": "European Environment Agency: CodeSyntax",
@@ -62,7 +62,7 @@ class ErrorReport extends React.Component {
62
62
  pt.latitude.toFixed(4) +
63
63
  ' Lon ' +
64
64
  pt.longitude.toFixed(4) +
65
- '. Active datasets: ' +
65
+ '. Active layers: ' +
66
66
  ds.join(', ');
67
67
  try {
68
68
  if (
@@ -255,7 +255,7 @@ class ErrorReport extends React.Component {
255
255
  this.state.latlong.x +
256
256
  ' Lon ' +
257
257
  this.state.latlong.y +
258
- '. Active datasets: ' +
258
+ '. Active layers: ' +
259
259
  datasets.join(', ');
260
260
  try {
261
261
  if (navigator && navigator.clipboard && navigator.clipboard.writeText) {
@@ -407,7 +407,7 @@ class ErrorReport extends React.Component {
407
407
  {this.state.datasets && this.state.datasets.length > 0 && (
408
408
  <>
409
409
  <div className="error-report-datasets-title">
410
- Active datasets
410
+ Active layers
411
411
  </div>
412
412
  <ul className="error-report-datasets">
413
413
  {this.state.datasets.map((d, i) => (
@@ -334,21 +334,36 @@ button.upload-bookmark-button {
334
334
  color: white !important;
335
335
  }
336
336
 
337
+ .right-panel-header span,
338
+ .error-report-coords-heading,
337
339
  .error-report-datasets-title {
338
- margin-top: 1em;
339
- margin-bottom: 0.5em;
340
- font-size: 1.17em;
340
+ margin-top: 1rem;
341
+ margin-bottom: 0.5rem;
342
+ color: inherit;
343
+ font-size: 0.9rem;
341
344
  font-weight: bold;
342
345
  }
343
346
 
347
+ .error-report-coords,
348
+ .error-report-datasets,
349
+ .error-report-datasets li {
350
+ color: inherit;
351
+ font-size: inherit;
352
+ font-weight: inherit;
353
+ }
354
+
344
355
  body.section-map-viewer
345
356
  #page-document.ui.container
346
- .esri-widget__content--empty
347
- h1 {
348
- width: auto !important;
357
+ .esri-widget__content--empty {
358
+ margin-top: 1rem;
359
+ margin-bottom: 0.5rem;
360
+ color: inherit;
361
+ font-size: 1.25rem; /* Increased font size */
349
362
  }
350
363
 
351
- div.esri-popover
364
+ body.section-map-viewer
365
+ #page-document.ui.container
366
+ .esri-widget__content--empty
352
367
  div
353
368
  div.esri-button-menu__content
354
369
  ul.esri-button-menu__item-wrapper