UNPKG

systelab-components

Version:

systelab-components is a set of components that use wide accepted and adopted standard technologies like Angular and Bootstrap, as well as other popular libraries. Please read the ATTRIBUTION.md file for a complete list of dependencies.

22 lines (21 loc) 1.09 kB
import { ElementRef, EventEmitter, OnInit } from '@angular/core'; import * as i0 from "@angular/core"; export declare class DraggableDirective implements OnInit { private readonly element; model: any; draggableOptions: any; zoom: number; draggableClick: EventEmitter<any>; finalPosition: EventEmitter<any>; currentPosition: EventEmitter<any>; private currentlyDragged; private currentlyResizing; constructor(element: ElementRef); onClick(event: any): void; ngOnInit(): void; private doCurrentlyResizingUpdate; private doDragEnd; private doDragMove; static ɵfac: i0.ɵɵFactoryDeclaration<DraggableDirective, never>; static ɵdir: i0.ɵɵDirectiveDeclaration<DraggableDirective, "[draggable]", never, { "model": { "alias": "model"; "required": false; }; "draggableOptions": { "alias": "draggableOptions"; "required": false; }; "zoom": { "alias": "zoom"; "required": false; }; }, { "draggableClick": "draggableClick"; "finalPosition": "finalPosition"; "currentPosition": "currentPosition"; }, never, never, false, never>; }