From aeb92db751d1a6a471719998eeede32180bfd5e8 Mon Sep 17 00:00:00 2001 From: SorsOps <80043879+sorsOps@users.noreply.github.com> Date: Mon, 9 Dec 2024 14:28:28 +0200 Subject: [PATCH] Fix issue with missing classname --- .changeset/real-radios-love.md | 5 +++++ packages/graph-editor/src/data/version.ts | 2 +- packages/graph-editor/src/editor/layoutController.tsx | 7 +++++-- 3 files changed, 11 insertions(+), 3 deletions(-) create mode 100644 .changeset/real-radios-love.md diff --git a/.changeset/real-radios-love.md b/.changeset/real-radios-love.md new file mode 100644 index 000000000..836b8ebca --- /dev/null +++ b/.changeset/real-radios-love.md @@ -0,0 +1,5 @@ +--- +"@tokens-studio/graph-editor": patch +--- + +The editor was missing the require `graph-editor` className that is used to create CSS layers for correct injectio of css vars diff --git a/packages/graph-editor/src/data/version.ts b/packages/graph-editor/src/data/version.ts index 5afede73c..cf3b8b5b6 100644 --- a/packages/graph-editor/src/data/version.ts +++ b/packages/graph-editor/src/data/version.ts @@ -1 +1 @@ -export const version = '4.3.2'; +export const version = '4.3.3'; diff --git a/packages/graph-editor/src/editor/layoutController.tsx b/packages/graph-editor/src/editor/layoutController.tsx index 9aa733715..1dd74e8e5 100644 --- a/packages/graph-editor/src/editor/layoutController.tsx +++ b/packages/graph-editor/src/editor/layoutController.tsx @@ -311,12 +311,15 @@ export const LayoutController = React.forwardRef< //Get the active Id to find the currently selected graph dispatch.graph.setCurrentPanel(graphContainer.activeId!); } - // dispatch. }; return ( - + {props.showMenu && }