@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.
17 lines (16 loc) • 606 B
TypeScript
import { Point } from '@foblex/2d';
import { IFDragHandler } from './f-drag-handler';
import { ISelectable } from '../mixins';
import * as i0 from "@angular/core";
export declare class FDraggableDataContext {
selectedItems: ISelectable[];
isSelectedChanged: boolean;
onPointerDownScale: number;
onPointerDownPosition: Point;
draggableItems: IFDragHandler[];
reset(): void;
markSelectionAsChanged(): void;
isEmpty(): boolean;
static ɵfac: i0.ɵɵFactoryDeclaration<FDraggableDataContext, never>;
static ɵprov: i0.ɵɵInjectableDeclaration<FDraggableDataContext>;
}