Last change
on this file was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago |
initial commit
|
-
Property mode
set to
100644
|
File size:
1.1 KB
|
Rev | Line | |
---|
[6a3a178] | 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 { OverlayReference } from '../overlay-reference';
|
---|
| 9 | import { BaseOverlayDispatcher } from './base-overlay-dispatcher';
|
---|
| 10 | /**
|
---|
| 11 | * Service for dispatching keyboard events that land on the body to appropriate overlay ref,
|
---|
| 12 | * if any. It maintains a list of attached overlays to determine best suited overlay based
|
---|
| 13 | * on event target and order of overlay opens.
|
---|
| 14 | */
|
---|
| 15 | import * as ɵngcc0 from '@angular/core';
|
---|
| 16 | export declare class OverlayKeyboardDispatcher extends BaseOverlayDispatcher {
|
---|
| 17 | constructor(document: any);
|
---|
| 18 | /** Add a new overlay to the list of attached overlay refs. */
|
---|
| 19 | add(overlayRef: OverlayReference): void;
|
---|
| 20 | /** Detaches the global keyboard event listener. */
|
---|
| 21 | protected detach(): void;
|
---|
| 22 | /** Keyboard event listener that will be attached to the body. */
|
---|
| 23 | private _keydownListener;
|
---|
| 24 | static ɵfac: ɵngcc0.ɵɵFactoryDeclaration<OverlayKeyboardDispatcher, never>;
|
---|
| 25 | }
|
---|
| 26 |
|
---|
| 27 | //# sourceMappingURL=overlay-keyboard-dispatcher.d.ts.map |
---|
Note:
See
TracBrowser
for help on using the repository browser.