@eeacms/volto-clms-theme 1.1.247 → 1.1.248

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,15 @@ 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.248](https://github.com/eea/volto-clms-theme/compare/1.1.247...1.1.248) - 29 August 2025
8
+
9
+ #### :rocket: New Features
10
+
11
+ - feat: add status updates on download cart page for cdse datasets -refs #291057 [ana-oprea - [`dcb3ae0`](https://github.com/eea/volto-clms-theme/commit/dcb3ae0ebe2a572bfc07ccfc2aa6768b784c2f6e)]
12
+
13
+ #### :hammer_and_wrench: Others
14
+
15
+ - Refs #291136 - Add BYOC Collection field in DatasetDownloadInformationWidget. [GhitaB - [`107de57`](https://github.com/eea/volto-clms-theme/commit/107de57cacb9ea6691722937b42d625cc154e6b3)]
7
16
  ### [1.1.247](https://github.com/eea/volto-clms-theme/compare/1.1.246...1.1.247) - 8 August 2025
8
17
 
9
18
  #### :bug: Bug Fixes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@eeacms/volto-clms-theme",
3
- "version": "1.1.247",
3
+ "version": "1.1.248",
4
4
  "description": "volto-clms-theme: Volto theme for CLMS site",
5
5
  "main": "src/index.js",
6
6
  "author": "CodeSyntax for the European Environment Agency",
@@ -164,7 +164,11 @@ const FileCard = (props) => {
164
164
  width={['In_progress', 'Queued'].includes(item?.Status) ? 8 : 10}
165
165
  >
166
166
  <Header as="h3">{`Task ID: ${item?.TaskID}`}</Header>
167
- <Header.Subheader as="h4">{`Job ID: ${item?.FMETaskId}`}</Header.Subheader>
167
+ <Header.Subheader as="h4">{`Job ID: ${
168
+ item?.cdse_task_role === 'parent'
169
+ ? 'CDSE PROCESSING...'
170
+ : item?.FMETaskId
171
+ }`}</Header.Subheader>
168
172
  <Segment basic className="file-datetimes">
169
173
  {item?.RegistrationDateTime && (
170
174
  <>
@@ -14,6 +14,12 @@ const ItemSchema = () => ({
14
14
  description: '',
15
15
  type: 'string',
16
16
  },
17
+ byoc_collection: {
18
+ title: 'BYOC Collection',
19
+ description:
20
+ 'To download the datasets via CDSE, it is necessary to include a BYOC identifier. Example: 3fdh95a1-rc49-4676-b285-c1d00g4bag1a',
21
+ type: 'string',
22
+ },
17
23
  full_path: {
18
24
  title: 'Enter the path to the full dataset download file',
19
25
  description:
@@ -69,6 +75,7 @@ const ItemSchema = () => ({
69
75
  fields: [
70
76
  'name',
71
77
  'collection',
78
+ 'byoc_collection',
72
79
  'full_path',
73
80
  'full_format',
74
81
  'full_source',