source: trip-planner-front/node_modules/@angular/cdk/overlay/fullscreen-overlay-container.d.ts@ 6c1585f

Last change on this file since 6c1585f was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago

initial commit

  • Property mode set to 100644
File size: 1.4 KB
Line 
1/**
2 * @license
3 * Copyright Google LLC All Rights Reserved.
4 *
5 * Use of this source code is governed by an MIT-style license that can be
6 * found in the LICENSE file at https://angular.io/license
7 */
8import { OnDestroy } from '@angular/core';
9import { OverlayContainer } from './overlay-container';
10import { Platform } from '@angular/cdk/platform';
11/**
12 * Alternative to OverlayContainer that supports correct displaying of overlay elements in
13 * Fullscreen mode
14 * https://developer.mozilla.org/en-US/docs/Web/API/Element/requestFullScreen
15 *
16 * Should be provided in the root component.
17 */
18import * as ɵngcc0 from '@angular/core';
19export declare class FullscreenOverlayContainer extends OverlayContainer implements OnDestroy {
20 private _fullScreenEventName;
21 private _fullScreenListener;
22 constructor(_document: any, platform: Platform);
23 ngOnDestroy(): void;
24 protected _createContainer(): void;
25 private _adjustParentForFullscreenChange;
26 private _addFullscreenChangeListener;
27 private _getEventName;
28 /**
29 * When the page is put into fullscreen mode, a specific element is specified.
30 * Only that element and its children are visible when in fullscreen mode.
31 */
32 getFullscreenElement(): Element;
33 static ɵfac: ɵngcc0.ɵɵFactoryDeclaration<FullscreenOverlayContainer, never>;
34}
35
36//# sourceMappingURL=fullscreen-overlay-container.d.ts.map
Note: See TracBrowser for help on using the repository browser.