UNPKG

md2

Version:

Angular2 based Material Design components, directives and services are Accordion, Autocomplete, Chips(Tags), Collapse, Colorpicker, Data Table, Datepicker, Dialog(Modal), Menu, Multiselect, Select, Tabs, Tags(Chips), Toast and Tooltip.

75 lines (74 loc) 2.93 kB
import { NgZone } from '@angular/core'; import { PortalHost, Portal } from '../portal/portal'; import { OverlayState } from './overlay-state'; import { ScrollStrategy } from './scroll/scroll-strategy'; import { Observable } from 'rxjs/Observable'; /** * Reference to an overlay that has been created with the Overlay service. * Used to manipulate or dispose of said overlay. */ export declare class OverlayRef implements PortalHost { private _portalHost; private _pane; private _state; private _scrollStrategy; private _ngZone; private _backdropElement; private _backdropClick; private _attachments; private _detachments; constructor(_portalHost: PortalHost, _pane: HTMLElement, _state: OverlayState, _scrollStrategy: ScrollStrategy, _ngZone: NgZone); /** The overlay's HTML element */ readonly overlayElement: HTMLElement; /** * Attaches the overlay to a portal instance and adds the backdrop. * @param portal Portal instance to which to attach the overlay. * @returns The portal attachment result. */ attach(portal: Portal<any>): any; /** * Detaches an overlay from a portal. * @returns Resolves when the overlay has been detached. */ detach(): Promise<any>; /** * Cleans up the overlay from the DOM. */ dispose(): void; /** * Checks whether the overlay has been attached. */ hasAttached(): boolean; /** * Returns an observable that emits when the backdrop has been clicked. */ backdropClick(): Observable<void>; /** Returns an observable that emits when the overlay has been attached. */ attachments(): Observable<void>; /** Returns an observable that emits when the overlay has been detached. */ detachments(): Observable<void>; /** * Gets the current state config of the overlay. */ getState(): OverlayState; /** Updates the position of the overlay based on the position strategy. */ updatePosition(): void; /** Updates the text direction of the overlay panel. */ private updateDirection(); /** Updates the size of the overlay based on the overlay config. */ updateSize(): void; /** Toggles the pointer events for the overlay pane element. */ private _togglePointerEvents(enablePointer); /** Attaches a backdrop for this overlay. */ private _attachBackdrop(); /** * Updates the stacking order of the element, moving it to the top if necessary. * This is required in cases where one overlay was detached, while another one, * that should be behind it, was destroyed. The next time both of them are opened, * the stacking will be wrong, because the detached element's pane will still be * in its original DOM position. */ private _updateStackingOrder(); /** Detaches the backdrop (if any) associated with the overlay. */ detachBackdrop(): void; }