@eccenca/gui-elements 24.3.0 → 24.3.1

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
@@ -6,6 +6,13 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/) and this p
6
6
 
7
7
  ## [Unreleased]
8
8
 
9
+ ## [24.3.1] - 2025-08-21
10
+
11
+ ### Fixed
12
+
13
+ - React flow v12:
14
+ - add missing styles from react flow library to ensure proper functionality of new connection lines
15
+
9
16
  ## [24.3.0] - 2025-06-05
10
17
 
11
18
  ### Added
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@eccenca/gui-elements",
3
3
  "description": "GUI elements based on other libraries, usable in React application, written in Typescript.",
4
- "version": "24.3.0",
4
+ "version": "24.3.1",
5
5
  "license": "Apache-2.0",
6
6
  "homepage": "https://github.com/eccenca/gui-elements",
7
7
  "bugs": "https://github.com/eccenca/gui-elements/issues",
@@ -1,5 +1,12 @@
1
- .react-flow .react-flow__edges svg {
1
+ // needed styles from "@xyflow/react/dist/style.css" to ensure proper functionality
2
+ svg.react-flow__connectionline {
3
+ position: absolute;
4
+ z-index: 1001;
2
5
  overflow: visible;
6
+ }
7
+
8
+ .react-flow .react-flow__edges svg {
3
9
  position: absolute;
10
+ overflow: visible;
4
11
  pointer-events: none;
5
12
  }