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

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

primeNG components

  • 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 */
16export declare class OverlayOutsideClickDispatcher extends BaseOverlayDispatcher {
17 private _platform;
18 private _cursorOriginalValue;
19 private _cursorStyleIsSet;
20 private _pointerDownEventTarget;
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 /** Store pointerdown event target to track origin of click. */
27 private _pointerDownListener;
28 /** Click event listener that will be attached to the body propagate phase. */
29 private _clickListener;
30}
Note: See TracBrowser for help on using the repository browser.