source: trip-planner-front/node_modules/@angular/cdk/overlay/dispatchers/overlay-outside-click-dispatcher.d.ts.__ivy_ngcc_bak@ 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.1 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 */
16export declare class OverlayOutsideClickDispatcher extends BaseOverlayDispatcher {
17 private _platform;
18 private _cursorOriginalValue;
19 private _cursorStyleIsSet;
20 constructor(document: any, _platform: Platform);
21 /** Add a new overlay to the list of attached overlay refs. */
22 add(overlayRef: OverlayReference): void;
23 /** Detaches the global keyboard event listener. */
24 protected detach(): void;
25 /** Click event listener that will be attached to the body propagate phase. */
26 private _clickListener;
27}
Note: See TracBrowser for help on using the repository browser.