You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
38 lines
1.8 KiB
38 lines
1.8 KiB
/**
|
|
* @license
|
|
* Copyright Google LLC All Rights Reserved.
|
|
*
|
|
* Use of this source code is governed by an MIT-style license that can be
|
|
* found in the LICENSE file at https://angular.io/license
|
|
*/
|
|
import { NgZone } from '@angular/core';
|
|
import { InteractivityChecker } from '../interactivity-checker/interactivity-checker';
|
|
import { ConfigurableFocusTrap } from './configurable-focus-trap';
|
|
import { ConfigurableFocusTrapConfig } from './configurable-focus-trap-config';
|
|
import { FocusTrapInertStrategy } from './focus-trap-inert-strategy';
|
|
import { FocusTrapManager } from './focus-trap-manager';
|
|
/** Factory that allows easy instantiation of configurable focus traps. */
|
|
import * as ɵngcc0 from '@angular/core';
|
|
export declare class ConfigurableFocusTrapFactory {
|
|
private _checker;
|
|
private _ngZone;
|
|
private _focusTrapManager;
|
|
private _document;
|
|
private _inertStrategy;
|
|
constructor(_checker: InteractivityChecker, _ngZone: NgZone, _focusTrapManager: FocusTrapManager, _document: any, _inertStrategy?: FocusTrapInertStrategy);
|
|
/**
|
|
* Creates a focus-trapped region around the given element.
|
|
* @param element The element around which focus will be trapped.
|
|
* @param config The focus trap configuration.
|
|
* @returns The created focus trap instance.
|
|
*/
|
|
create(element: HTMLElement, config?: ConfigurableFocusTrapConfig): ConfigurableFocusTrap;
|
|
/**
|
|
* @deprecated Pass a config object instead of the `deferCaptureElements` flag.
|
|
* @breaking-change 11.0.0
|
|
*/
|
|
create(element: HTMLElement, deferCaptureElements: boolean): ConfigurableFocusTrap;
|
|
static ɵfac: ɵngcc0.ɵɵFactoryDeclaration<ConfigurableFocusTrapFactory, [null, null, null, null, { optional: true; }]>;
|
|
}
|
|
|
|
//# sourceMappingURL=configurable-focus-trap-factory.d.ts.map
|