15 lines
310 B
TypeScript
15 lines
310 B
TypeScript
|
|
/**
|
||
|
|
*
|
||
|
|
* Focus Trap keeps focus within a certain DOM element while tabbing.
|
||
|
|
*
|
||
|
|
* [Live Demo](https://primevue.org/focustrap)
|
||
|
|
*
|
||
|
|
* @module focustrapstyle
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
import type { BaseStyle } from '@primevue/core/base/style';
|
||
|
|
|
||
|
|
export enum FocusTrapClasses {}
|
||
|
|
|
||
|
|
export interface FocusTrapStyle extends BaseStyle {}
|