From 08cb484d14cc93dcd73981018be1c1832902a2a0 Mon Sep 17 00:00:00 2001 From: Michael Haschke Date: Tue, 4 Mar 2025 13:40:13 +0100 Subject: [PATCH 1/3] do not render empty tag list items --- CHANGELOG.md | 5 +++++ src/components/Tag/TagList.tsx | 4 ++-- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 144187220..78320204e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -21,6 +21,11 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/) and this p - `Label` component - added `additionalElements` property to display elements at the end of the label +### Fixed + +- `` + - do not create empty list items + ## [24.0.1] - 2025-02-06 ### Changed diff --git a/src/components/Tag/TagList.tsx b/src/components/Tag/TagList.tsx index 64668e7dd..6aed6706c 100644 --- a/src/components/Tag/TagList.tsx +++ b/src/components/Tag/TagList.tsx @@ -10,11 +10,11 @@ function TagList({ children, className = "", label = "", ...otherProps }: TagLis const tagList = ( ); From 3474cd72d278ed83c42b21f78c319da99f0e9f59 Mon Sep 17 00:00:00 2001 From: Michael Haschke Date: Tue, 4 Mar 2025 16:13:54 +0100 Subject: [PATCH 2/3] add color for projects --- src/cmem/react-flow/configuration/_colors-workflow.scss | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/cmem/react-flow/configuration/_colors-workflow.scss b/src/cmem/react-flow/configuration/_colors-workflow.scss index 2f2ab0d17..7ef9ac1d9 100644 --- a/src/cmem/react-flow/configuration/_colors-workflow.scss +++ b/src/cmem/react-flow/configuration/_colors-workflow.scss @@ -1,3 +1,4 @@ +$reactflow-color-project-node: #A5356E !default; // Cannot be part of a workflow but we have no other place atm to configure it $reactflow-color-dataset-node: #3a7896 !default; $reactflow-color-linking-node: #0097a7 !default; $reactflow-color-transform-node: #40a691 !default; @@ -10,12 +11,14 @@ $reactflow-color-replaceable-input: #faa854 !default; } .#{eccgui}-configuration--colors__react-flow-workflow { + --projectNode: #{$reactflow-color-project-node}; --datasetNode: #{$reactflow-color-dataset-node}; --linkingNode: #{$reactflow-color-linking-node}; --transformNode: #{$reactflow-color-transform-node}; --taskNode: #{$reactflow-color-task-node}; --workflowNode: #{$reactflow-color-workflow-node}; --replaceableInput: #{$reactflow-color-replaceable-input}; + --projectNodeBright: #{bright($reactflow-color-project-node)}; --datasetNodeBright: #{bright($reactflow-color-dataset-node)}; --linkingNodeBright: #{bright($reactflow-color-linking-node)}; --transformNodeBright: #{bright($reactflow-color-transform-node)}; From 998b41dce719aa3ca2c41062b66032d4326c8d9f Mon Sep 17 00:00:00 2001 From: Michael Haschke Date: Thu, 20 Mar 2025 09:22:11 +0100 Subject: [PATCH 3/3] fix changelog sections --- CHANGELOG.md | 13 +++++-------- 1 file changed, 5 insertions(+), 8 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8a1d63f67..021819634 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,7 +8,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/) and this p ### Added -- Added custom icon for "Concatenate to file" operator (CMEM-6476). +- Added custom icon for "Concatenate to file" operator (CMEM-6476). - `` component - Manage display of a grouped content section. - Add info, actions and context annotations by using its properties. @@ -33,18 +33,15 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/) and this p ### Fixed -- `CodeAutocompleteField`: - - Code editor resets to initial value on every code editor instance re-init +- ``: + - Code editor resets to initial value on every code editor instance re-init +- `` + - do not create empty list items ### Changed - StickyNote data structure: Refactored position and dimension (breaking change) -### Fixed - -- `` - - do not create empty list items - ## [24.0.1] - 2025-02-06 ### Changed