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.05 kB
TypeScript
import { ElementRef, EventEmitter, OnInit } from '@angular/core';
import * as i0 from "@angular/core";
export declare class ResizableDirective implements OnInit {
private element;
model: any;
resizableOptions: any;
zoom: number;
resizeClick: EventEmitter<any>;
finalSize: EventEmitter<any>;
currentSize: EventEmitter<any>;
private currentlyDragged;
private currentlyResizing;
constructor(element: ElementRef);
onClick(event: any): void;
ngOnInit(): void;
private doResizeEnd;
private doCurrentlyDraggedUpdate;
private doResizeMove;
static ɵfac: i0.ɵɵFactoryDeclaration<ResizableDirective, never>;
static ɵdir: i0.ɵɵDirectiveDeclaration<ResizableDirective, "[resizable]", never, { "model": { "alias": "model"; "required": false; }; "resizableOptions": { "alias": "resizableOptions"; "required": false; }; "zoom": { "alias": "zoom"; "required": false; }; }, { "resizeClick": "resizeClick"; "finalSize": "finalSize"; "currentSize": "currentSize"; }, never, never, false, never>;
}