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 | */
|
---|
8 | import { OnDestroy } from '@angular/core';
|
---|
9 | import { OverlayContainer } from './overlay-container';
|
---|
10 | import { 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 | */
|
---|
18 | import * as ɵngcc0 from '@angular/core';
|
---|
19 | export 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 |
---|