source: trip-planner-front/node_modules/@angular/cdk/overlay/dispatchers/overlay-outside-click-dispatcher.d.ts@ 6a3a178

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

initial commit

  • Property mode set to 100644
File size: 1.3 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 { OverlayReference } from '../overlay-reference';
9import { Platform } from '@angular/cdk/platform';
10import { BaseOverlayDispatcher } from './base-overlay-dispatcher';
11/**
12 * Service for dispatching mouse click events that land on the body to appropriate overlay ref,
13 * if any. It maintains a list of attached overlays to determine best suited overlay based
14 * on event target and order of overlay opens.
15 */
16import * as ɵngcc0 from '@angular/core';
17export declare class OverlayOutsideClickDispatcher extends BaseOverlayDispatcher {
18 private _platform;
19 private _cursorOriginalValue;
20 private _cursorStyleIsSet;
21 constructor(document: any, _platform: Platform);
22 /** Add a new overlay to the list of attached overlay refs. */
23 add(overlayRef: OverlayReference): void;
24 /** Detaches the global keyboard event listener. */
25 protected detach(): void;
26 /** Click event listener that will be attached to the body propagate phase. */
27 private _clickListener;
28 static ɵfac: ɵngcc0.ɵɵFactoryDeclaration<OverlayOutsideClickDispatcher, never>;
29}
30
31//# sourceMappingURL=overlay-outside-click-dispatcher.d.ts.map
Note: See TracBrowser for help on using the repository browser.