22 lines
739 B
JavaScript
22 lines
739 B
JavaScript
'use strict';
|
|
|
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
|
|
const FOCUS_ON_MOUNT = "focus-trap.focus-on-mount";
|
|
const FOCUS_ON_UNMOUNT = "focus-trap.focus-on-unmount";
|
|
const FOCUS_ON_MOUNT_OPTS = {
|
|
cancelable: true,
|
|
bubbles: false
|
|
};
|
|
const ON_MOUNT_FOCUS_EVT = "mountOnFocus";
|
|
const ON_UNMOUNT_FOCUS_EVT = "unmountOnFocus";
|
|
const FOCUS_TRAP_INJECTION_KEY = Symbol("elFocusTrap");
|
|
|
|
exports.FOCUS_ON_MOUNT = FOCUS_ON_MOUNT;
|
|
exports.FOCUS_ON_MOUNT_OPTS = FOCUS_ON_MOUNT_OPTS;
|
|
exports.FOCUS_ON_UNMOUNT = FOCUS_ON_UNMOUNT;
|
|
exports.FOCUS_TRAP_INJECTION_KEY = FOCUS_TRAP_INJECTION_KEY;
|
|
exports.ON_MOUNT_FOCUS_EVT = ON_MOUNT_FOCUS_EVT;
|
|
exports.ON_UNMOUNT_FOCUS_EVT = ON_UNMOUNT_FOCUS_EVT;
|
|
//# sourceMappingURL=tokens.js.map
|