@foblex/flow
Version:
An Angular library designed to simplify the creation and manipulation of dynamic flow. Provides components for flows, nodes, and connections, automating node manipulation and inter-node connections.
13 lines (12 loc) • 440 B
TypeScript
import { IPoint } from '@foblex/2d';
import { IFDragHandler } from '../f-drag-handler';
import { Injector } from '@angular/core';
export declare class FCanvasDragHandler implements IFDragHandler {
fEventType: string;
private readonly _fComponentsStore;
private _onPointerDownPosition;
constructor(_injector: Injector);
prepareDragSequence(): void;
onPointerMove(difference: IPoint): void;
onPointerUp(): void;
}