Skip to content
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,18 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/) and this p

## [Unreleased]

### Fixed

- React flow v12:
- add missing styles from react flow library to ensure proper functionality of new connection lines

## [24.3.1] - 2025-08-21

### Fixed

- React flow v12:
- add missing styles from react flow library to ensure proper functionality of new connection lines

## [24.4.0] - 2025-08-07

### Added
Expand Down
9 changes: 8 additions & 1 deletion src/extensions/react-flow/_react-flow_v12.scss
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
.react-flow .react-flow__edges svg {
// needed styles from "@xyflow/react/dist/style.css" to ensure proper functionality
svg.react-flow__connectionline {
position: absolute;
z-index: 1001;
overflow: visible;
}

.react-flow .react-flow__edges svg {
position: absolute;
overflow: visible;
pointer-events: none;
}