UNPKG

@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.

21 lines (20 loc) 1.27 kB
import { ElementRef, OnDestroy, OnInit } from "@angular/core"; import { FMarkerBase } from './f-marker-base'; import * as i0 from "@angular/core"; export declare class FMarkerDirective extends FMarkerBase implements OnInit, OnDestroy { private elementReference; get hostElement(): HTMLElement; width: number; height: number; refX: number; refY: number; type: string; orient: 'auto' | 'auto-start-reverse' | 'calculated' | string; markerUnits: 'strokeWidth' | 'userSpaceOnUse'; private _fMediator; constructor(elementReference: ElementRef<HTMLElement>); ngOnInit(): void; ngOnDestroy(): void; static ɵfac: i0.ɵɵFactoryDeclaration<FMarkerDirective, never>; static ɵdir: i0.ɵɵDirectiveDeclaration<FMarkerDirective, "svg[fMarker]", never, { "hostElement": { "alias": "hostElement"; "required": false; }; "width": { "alias": "width"; "required": false; }; "height": { "alias": "height"; "required": false; }; "refX": { "alias": "refX"; "required": false; }; "refY": { "alias": "refY"; "required": false; }; "type": { "alias": "type"; "required": false; }; "orient": { "alias": "orient"; "required": false; }; "markerUnits": { "alias": "markerUnits"; "required": false; }; }, {}, never, never, false, never>; }