@cpfr/tootframes 1.0.11 → 1.0.13
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/NodeEditor.d.ts
CHANGED
|
@@ -108,6 +108,8 @@ declare class NodeEditor extends Widget {
|
|
|
108
108
|
disconnect(output: NodePort, input: NodePort): void;
|
|
109
109
|
onDragStart(mouseEvt: MouseEvent): boolean;
|
|
110
110
|
onDragNodesStarted(): void;
|
|
111
|
+
_scrollOutOfBounds(x: number, y: number): void;
|
|
112
|
+
_checkOutOfBoundsScroll(mouseEvent: MouseEvent): void;
|
|
111
113
|
onDragging(dragInfo: DragInfo): void;
|
|
112
114
|
onDragEnd(mouseEvt: MouseEvent): void;
|
|
113
115
|
intersection(rect1: DOMRect, rect2: DOMRect): boolean;
|
|
@@ -157,7 +159,7 @@ declare class Node extends Widget {
|
|
|
157
159
|
_mapNodePort(nodePort: NodePort): NodePortClipboardData;
|
|
158
160
|
_copy(): NodeClipboardData;
|
|
159
161
|
_onConnectionAdded(connection: NodeConnection): void;
|
|
160
|
-
_onConnectionRemoved(connection: NodeConnection): void;
|
|
162
|
+
_onConnectionRemoved(connection: NodeConnection, fromOutput: NodePort, toInput: NodePort): void;
|
|
161
163
|
_removeDraggedConnection(connection: NodeConnection): void;
|
|
162
164
|
onAttached(): void;
|
|
163
165
|
_getViewport(): NodeEditorViewport;
|
|
@@ -170,7 +172,7 @@ declare class Node extends Widget {
|
|
|
170
172
|
addInput(name: string, canConnectCheck?: (other: NodePort) => boolean): NodePort;
|
|
171
173
|
addOutput(name: string, canConnectCheck?: (other: NodePort) => boolean, allowMultipleConnections?: boolean): NodePort;
|
|
172
174
|
addConnection(nodeConnection: NodeConnection): void;
|
|
173
|
-
removeConnection(nodeConnection: NodeConnection): void;
|
|
175
|
+
removeConnection(nodeConnection: NodeConnection, fromOutput: NodePort, toInput: NodePort): void;
|
|
174
176
|
onDragStart(mouseEvt: MouseEvent): boolean;
|
|
175
177
|
onDragStarted(): void;
|
|
176
178
|
onDragEnd(mouseEvt: MouseEvent): void;
|