clean up system

This commit is contained in:
peterkogo
2025-05-14 11:10:34 +02:00
parent 5a2d1919d4
commit 5724cbfcce
2 changed files with 1 additions and 16 deletions
+1 -7
View File
@@ -1,4 +1,4 @@
import { CoordinateExtent, HandleType, XYPosition } from './types';
import { CoordinateExtent, HandleType } from './types';
export const errorMessages = {
error001: () =>
@@ -36,9 +36,3 @@ export const infiniteExtent: CoordinateExtent = [
];
export const elementSelectionKeys = ['Enter', ' ', 'Escape'];
export const arrowKeyDiffs: Record<string, XYPosition> = {
ArrowUp: { x: 0, y: -1 },
ArrowDown: { x: 0, y: 1 },
ArrowLeft: { x: -1, y: 0 },
ArrowRight: { x: 1, y: 0 },
};
-9
View File
@@ -123,11 +123,6 @@
}
}
.xy-flow__edge-wrapper {
position: absolute;
overflow: visible;
}
.xy-flow__edge {
pointer-events: visibleStroke;
@@ -438,7 +433,3 @@ svg.xy-flow__connectionline {
}
}
}
.xy-flow__marker {
position: absolute;
}