@xyflow/react 12.0.0-next.0 → 12.0.0-next.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/dist/base.css +3 -0
- package/dist/style.css +3 -0
- package/package.json +1 -1
package/dist/base.css
CHANGED
|
@@ -98,6 +98,9 @@
|
|
|
98
98
|
stroke-width: var(--xy-connectionline-stroke-width, var(--xy-connectionline-stroke-width-default));
|
|
99
99
|
fill: none;
|
|
100
100
|
}
|
|
101
|
+
.react-flow__edges {
|
|
102
|
+
position: absolute;
|
|
103
|
+
}
|
|
101
104
|
.react-flow__edge {
|
|
102
105
|
pointer-events: visibleStroke;
|
|
103
106
|
cursor: pointer;
|
package/dist/style.css
CHANGED
|
@@ -129,6 +129,9 @@
|
|
|
129
129
|
stroke-width: var(--xy-connectionline-stroke-width, var(--xy-connectionline-stroke-width-default));
|
|
130
130
|
fill: none;
|
|
131
131
|
}
|
|
132
|
+
.react-flow__edges {
|
|
133
|
+
position: absolute;
|
|
134
|
+
}
|
|
132
135
|
.react-flow__edge {
|
|
133
136
|
pointer-events: visibleStroke;
|
|
134
137
|
cursor: pointer;
|
package/package.json
CHANGED