UNPKG

@rxap/window-system

Version:

A module for creating and managing windows within an Angular application. It provides components for window containers, toolbars, resizers, action bars, and task bars, along with services for managing window instances and configurations. This library allo

18 lines (17 loc) 888 B
import { ElementRef, EventEmitter, OnDestroy, OnInit } from '@angular/core'; import { WindowRef } from '../window-ref'; import * as i0 from "@angular/core"; export declare class WindowResizerComponent implements OnInit, OnDestroy { containerRef: ElementRef<any>; windowRef: WindowRef<any>; resizerRef: ElementRef<any>; width$: EventEmitter<string>; height$: EventEmitter<string>; resizing$: EventEmitter<boolean>; private _subscription; constructor(context: any); ngOnDestroy(): void; ngOnInit(): void; static ɵfac: i0.ɵɵFactoryDeclaration<WindowResizerComponent, never>; static ɵcmp: i0.ɵɵComponentDeclaration<WindowResizerComponent, "rxap-window-resizer", never, { "containerRef": { "alias": "containerRef"; "required": true; }; }, { "width$": "width"; "height$": "height"; "resizing$": "resizing"; }, never, never, true, never>; }